toilet-0.3/0000755000175000017500000000000011737655770007677 500000000000000toilet-0.3/README0000644000175000017500000000024411334132123010446 00000000000000 This is experimental software. Do not rely on it for strong and secure ASCII art generation, it will only output ugly things. See NEWS for the work in progress. toilet-0.3/.auto/0000755000175000017500000000000011737655770010725 500000000000000toilet-0.3/.auto/missing0000755000175000017500000002415211737655633012246 00000000000000#! /bin/sh # Common stub for a few missing GNU programs while installing. scriptversion=2012-01-06.13; # UTC # Copyright (C) 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005, 2006, # 2008, 2009, 2010, 2011, 2012 Free Software Foundation, Inc. # Originally by Fran,cois Pinard , 1996. # 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, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. if test $# -eq 0; then echo 1>&2 "Try \`$0 --help' for more information" exit 1 fi run=: sed_output='s/.* --output[ =]\([^ ]*\).*/\1/p' sed_minuso='s/.* -o \([^ ]*\).*/\1/p' # In the cases where this matters, `missing' is being run in the # srcdir already. if test -f configure.ac; then configure_ac=configure.ac else configure_ac=configure.in fi msg="missing on your system" case $1 in --run) # Try to run requested program, and just exit if it succeeds. run= shift "$@" && exit 0 # Exit code 63 means version mismatch. This often happens # when the user try to use an ancient version of a tool on # a file that requires a minimum version. In this case we # we should proceed has if the program had been absent, or # if --run hadn't been passed. if test $? = 63; then run=: msg="probably too old" fi ;; -h|--h|--he|--hel|--help) echo "\ $0 [OPTION]... PROGRAM [ARGUMENT]... Handle \`PROGRAM [ARGUMENT]...' for when PROGRAM is missing, or return an error status if there is no known handling for PROGRAM. Options: -h, --help display this help and exit -v, --version output version information and exit --run try to run the given command, and emulate it if it fails Supported PROGRAM values: aclocal touch file \`aclocal.m4' autoconf touch file \`configure' autoheader touch file \`config.h.in' autom4te touch the output file, or create a stub one automake touch all \`Makefile.in' files bison create \`y.tab.[ch]', if possible, from existing .[ch] flex create \`lex.yy.c', if possible, from existing .c help2man touch the output file lex create \`lex.yy.c', if possible, from existing .c makeinfo touch the output file yacc create \`y.tab.[ch]', if possible, from existing .[ch] Version suffixes to PROGRAM as well as the prefixes \`gnu-', \`gnu', and \`g' are ignored when checking the name. Send bug reports to ." exit $? ;; -v|--v|--ve|--ver|--vers|--versi|--versio|--version) echo "missing $scriptversion (GNU Automake)" exit $? ;; -*) echo 1>&2 "$0: Unknown \`$1' option" echo 1>&2 "Try \`$0 --help' for more information" exit 1 ;; esac # normalize program name to check for. program=`echo "$1" | sed ' s/^gnu-//; t s/^gnu//; t s/^g//; t'` # Now exit if we have it, but it failed. Also exit now if we # don't have it and --version was passed (most likely to detect # the program). This is about non-GNU programs, so use $1 not # $program. case $1 in lex*|yacc*) # Not GNU programs, they don't have --version. ;; *) if test -z "$run" && ($1 --version) > /dev/null 2>&1; then # We have it, but it failed. exit 1 elif test "x$2" = "x--version" || test "x$2" = "x--help"; then # Could not run --version or --help. This is probably someone # running `$TOOL --version' or `$TOOL --help' to check whether # $TOOL exists and not knowing $TOOL uses missing. exit 1 fi ;; esac # If it does not exist, or fails to run (possibly an outdated version), # try to emulate it. case $program in aclocal*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified \`acinclude.m4' or \`${configure_ac}'. You might want to install the \`Automake' and \`Perl' packages. Grab them from any GNU archive site." touch aclocal.m4 ;; autoconf*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified \`${configure_ac}'. You might want to install the \`Autoconf' and \`GNU m4' packages. Grab them from any GNU archive site." touch configure ;; autoheader*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified \`acconfig.h' or \`${configure_ac}'. You might want to install the \`Autoconf' and \`GNU m4' packages. Grab them from any GNU archive site." files=`sed -n 's/^[ ]*A[CM]_CONFIG_HEADER(\([^)]*\)).*/\1/p' ${configure_ac}` test -z "$files" && files="config.h" touch_files= for f in $files; do case $f in *:*) touch_files="$touch_files "`echo "$f" | sed -e 's/^[^:]*://' -e 's/:.*//'`;; *) touch_files="$touch_files $f.in";; esac done touch $touch_files ;; automake*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified \`Makefile.am', \`acinclude.m4' or \`${configure_ac}'. You might want to install the \`Automake' and \`Perl' packages. Grab them from any GNU archive site." find . -type f -name Makefile.am -print | sed 's/\.am$/.in/' | while read f; do touch "$f"; done ;; autom4te*) echo 1>&2 "\ WARNING: \`$1' is needed, but is $msg. You might have modified some files without having the proper tools for further handling them. You can get \`$1' as part of \`Autoconf' from any GNU archive site." file=`echo "$*" | sed -n "$sed_output"` test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"` if test -f "$file"; then touch $file else test -z "$file" || exec >$file echo "#! /bin/sh" echo "# Created by GNU Automake missing as a replacement of" echo "# $ $@" echo "exit 0" chmod +x $file exit 1 fi ;; bison*|yacc*) echo 1>&2 "\ WARNING: \`$1' $msg. You should only need it if you modified a \`.y' file. You may need the \`Bison' package in order for those modifications to take effect. You can get \`Bison' from any GNU archive site." rm -f y.tab.c y.tab.h if test $# -ne 1; then eval LASTARG=\${$#} case $LASTARG in *.y) SRCFILE=`echo "$LASTARG" | sed 's/y$/c/'` if test -f "$SRCFILE"; then cp "$SRCFILE" y.tab.c fi SRCFILE=`echo "$LASTARG" | sed 's/y$/h/'` if test -f "$SRCFILE"; then cp "$SRCFILE" y.tab.h fi ;; esac fi if test ! -f y.tab.h; then echo >y.tab.h fi if test ! -f y.tab.c; then echo 'main() { return 0; }' >y.tab.c fi ;; lex*|flex*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified a \`.l' file. You may need the \`Flex' package in order for those modifications to take effect. You can get \`Flex' from any GNU archive site." rm -f lex.yy.c if test $# -ne 1; then eval LASTARG=\${$#} case $LASTARG in *.l) SRCFILE=`echo "$LASTARG" | sed 's/l$/c/'` if test -f "$SRCFILE"; then cp "$SRCFILE" lex.yy.c fi ;; esac fi if test ! -f lex.yy.c; then echo 'main() { return 0; }' >lex.yy.c fi ;; help2man*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified a dependency of a manual page. You may need the \`Help2man' package in order for those modifications to take effect. You can get \`Help2man' from any GNU archive site." file=`echo "$*" | sed -n "$sed_output"` test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"` if test -f "$file"; then touch $file else test -z "$file" || exec >$file echo ".ab help2man is required to generate this page" exit $? fi ;; makeinfo*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified a \`.texi' or \`.texinfo' file, or any other file indirectly affecting the aspect of the manual. The spurious call might also be the consequence of using a buggy \`make' (AIX, DU, IRIX). You might want to install the \`Texinfo' package or the \`GNU make' package. Grab either from any GNU archive site." # The file to touch is that specified with -o ... file=`echo "$*" | sed -n "$sed_output"` test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"` if test -z "$file"; then # ... or it is the one specified with @setfilename ... infile=`echo "$*" | sed 's/.* \([^ ]*\) *$/\1/'` file=`sed -n ' /^@setfilename/{ s/.* \([^ ]*\) *$/\1/ p q }' $infile` # ... or it is derived from the source name (dir/f.texi becomes f.info) test -z "$file" && file=`echo "$infile" | sed 's,.*/,,;s,.[^.]*$,,'`.info fi # If the file does not exist, the user really needs makeinfo; # let's fail without touching anything. test -f $file || exit 1 touch $file ;; *) echo 1>&2 "\ WARNING: \`$1' is needed, and is $msg. You might have modified some files without having the proper tools for further handling them. Check the \`README' file, it often tells you about the needed prerequisites for installing this package. You may also peek at any GNU archive site, in case some other package would contain this missing \`$1' program." exit 1 ;; esac exit 0 # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC" # time-stamp-end: "; # UTC" # End: toilet-0.3/.auto/config.sub0000755000175000017500000010517611737655633012640 00000000000000#! /bin/sh # Configuration validation subroutine script. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, # 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, # 2011, 2012 Free Software Foundation, Inc. timestamp='2012-02-10' # This file is (in principle) common to ALL GNU software. # The presence of a machine in this file suggests that SOME GNU software # can handle that machine. It does not imply ALL GNU software can. # # This file 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 of the License, 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, see . # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # Please send patches to . Submit a context # diff and a properly formatted GNU ChangeLog entry. # # Configuration subroutine to validate and canonicalize a configuration type. # Supply the specified configuration type as an argument. # If it is invalid, we print an error message on stderr and exit with code 1. # Otherwise, we print the canonical config type on stdout and succeed. # You can get the latest version of this script from: # http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD # This file is supposed to be the same for all GNU packages # and recognize all the CPU types, system types and aliases # that are meaningful with *any* GNU software. # Each package is responsible for reporting which valid configurations # it does not support. The user should be able to distinguish # a failure to support a valid configuration from a meaningless # configuration. # The goal of this file is to map all the various variations of a given # machine specification into a single specification in the form: # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM # or in some cases, the newer four-part form: # CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM # It is wrong to echo any other type of specification. me=`echo "$0" | sed -e 's,.*/,,'` usage="\ Usage: $0 [OPTION] CPU-MFR-OPSYS $0 [OPTION] ALIAS Canonicalize a configuration name. Operation modes: -h, --help print this help, then exit -t, --time-stamp print date of last modification, then exit -v, --version print version number, then exit Report bugs and patches to ." version="\ GNU config.sub ($timestamp) Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." help=" Try \`$me --help' for more information." # Parse command line while test $# -gt 0 ; do case $1 in --time-stamp | --time* | -t ) echo "$timestamp" ; exit ;; --version | -v ) echo "$version" ; exit ;; --help | --h* | -h ) echo "$usage"; exit ;; -- ) # Stop option processing shift; break ;; - ) # Use stdin as input. break ;; -* ) echo "$me: invalid option $1$help" exit 1 ;; *local*) # First pass through any local machine types. echo $1 exit ;; * ) break ;; esac done case $# in 0) echo "$me: missing argument$help" >&2 exit 1;; 1) ;; *) echo "$me: too many arguments$help" >&2 exit 1;; esac # Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any). # Here we must recognize all the valid KERNEL-OS combinations. maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'` case $maybe_os in nto-qnx* | linux-gnu* | linux-android* | linux-dietlibc | linux-newlib* | \ linux-uclibc* | uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | \ knetbsd*-gnu* | netbsd*-gnu* | \ kopensolaris*-gnu* | \ storm-chaos* | os2-emx* | rtmk-nova*) os=-$maybe_os basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'` ;; android-linux) os=-linux-android basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`-unknown ;; *) basic_machine=`echo $1 | sed 's/-[^-]*$//'` if [ $basic_machine != $1 ] then os=`echo $1 | sed 's/.*-/-/'` else os=; fi ;; esac ### Let's recognize common machines as not being operating systems so ### that things like config.sub decstation-3100 work. We also ### recognize some manufacturers as not being operating systems, so we ### can provide default operating systems below. case $os in -sun*os*) # Prevent following clause from handling this invalid input. ;; -dec* | -mips* | -sequent* | -encore* | -pc532* | -sgi* | -sony* | \ -att* | -7300* | -3300* | -delta* | -motorola* | -sun[234]* | \ -unicom* | -ibm* | -next | -hp | -isi* | -apollo | -altos* | \ -convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\ -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \ -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \ -apple | -axis | -knuth | -cray | -microblaze) os= basic_machine=$1 ;; -bluegene*) os=-cnk ;; -sim | -cisco | -oki | -wec | -winbond) os= basic_machine=$1 ;; -scout) ;; -wrs) os=-vxworks basic_machine=$1 ;; -chorusos*) os=-chorusos basic_machine=$1 ;; -chorusrdb) os=-chorusrdb basic_machine=$1 ;; -hiux*) os=-hiuxwe2 ;; -sco6) os=-sco5v6 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco5) os=-sco3.2v5 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco4) os=-sco3.2v4 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco3.2.[4-9]*) os=`echo $os | sed -e 's/sco3.2./sco3.2v/'` basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco3.2v[4-9]*) # Don't forget version if it is 3.2v4 or newer. basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco5v6*) # Don't forget version if it is 3.2v4 or newer. basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco*) os=-sco3.2v2 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -udk*) basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -isc) os=-isc2.2 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -clix*) basic_machine=clipper-intergraph ;; -isc*) basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -lynx*) os=-lynxos ;; -ptx*) basic_machine=`echo $1 | sed -e 's/86-.*/86-sequent/'` ;; -windowsnt*) os=`echo $os | sed -e 's/windowsnt/winnt/'` ;; -psos*) os=-psos ;; -mint | -mint[0-9]*) basic_machine=m68k-atari os=-mint ;; esac # Decode aliases for certain CPU-COMPANY combinations. case $basic_machine in # Recognize the basic CPU types without company name. # Some are omitted here because they have special meanings below. 1750a | 580 \ | a29k \ | aarch64 | aarch64_be \ | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \ | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \ | am33_2.0 \ | arc | arm | arm[bl]e | arme[lb] | armv[2345] | armv[345][lb] | avr | avr32 \ | be32 | be64 \ | bfin \ | c4x | clipper \ | d10v | d30v | dlx | dsp16xx \ | epiphany \ | fido | fr30 | frv \ | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \ | hexagon \ | i370 | i860 | i960 | ia64 \ | ip2k | iq2000 \ | le32 | le64 \ | lm32 \ | m32c | m32r | m32rle | m68000 | m68k | m88k \ | maxq | mb | microblaze | mcore | mep | metag \ | mips | mipsbe | mipseb | mipsel | mipsle \ | mips16 \ | mips64 | mips64el \ | mips64octeon | mips64octeonel \ | mips64orion | mips64orionel \ | mips64r5900 | mips64r5900el \ | mips64vr | mips64vrel \ | mips64vr4100 | mips64vr4100el \ | mips64vr4300 | mips64vr4300el \ | mips64vr5000 | mips64vr5000el \ | mips64vr5900 | mips64vr5900el \ | mipsisa32 | mipsisa32el \ | mipsisa32r2 | mipsisa32r2el \ | mipsisa64 | mipsisa64el \ | mipsisa64r2 | mipsisa64r2el \ | mipsisa64sb1 | mipsisa64sb1el \ | mipsisa64sr71k | mipsisa64sr71kel \ | mipstx39 | mipstx39el \ | mn10200 | mn10300 \ | moxie \ | mt \ | msp430 \ | nds32 | nds32le | nds32be \ | nios | nios2 \ | ns16k | ns32k \ | open8 \ | or32 \ | pdp10 | pdp11 | pj | pjl \ | powerpc | powerpc64 | powerpc64le | powerpcle \ | pyramid \ | rl78 | rx \ | score \ | sh | sh[1234] | sh[24]a | sh[24]aeb | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3ele \ | sh64 | sh64le \ | sparc | sparc64 | sparc64b | sparc64v | sparc86x | sparclet | sparclite \ | sparcv8 | sparcv9 | sparcv9b | sparcv9v \ | spu \ | tahoe | tic4x | tic54x | tic55x | tic6x | tic80 | tron \ | ubicom32 \ | v850 | v850e | v850e1 | v850e2 | v850es | v850e2v3 \ | we32k \ | x86 | xc16x | xstormy16 | xtensa \ | z8k | z80) basic_machine=$basic_machine-unknown ;; c54x) basic_machine=tic54x-unknown ;; c55x) basic_machine=tic55x-unknown ;; c6x) basic_machine=tic6x-unknown ;; m6811 | m68hc11 | m6812 | m68hc12 | m68hcs12x | picochip) basic_machine=$basic_machine-unknown os=-none ;; m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | v70 | w65 | z8k) ;; ms1) basic_machine=mt-unknown ;; strongarm | thumb | xscale) basic_machine=arm-unknown ;; xgate) basic_machine=$basic_machine-unknown os=-none ;; xscaleeb) basic_machine=armeb-unknown ;; xscaleel) basic_machine=armel-unknown ;; # We use `pc' rather than `unknown' # because (1) that's what they normally are, and # (2) the word "unknown" tends to confuse beginning users. i*86 | x86_64) basic_machine=$basic_machine-pc ;; # Object if more than one company name word. *-*-*) echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 exit 1 ;; # Recognize the basic CPU types with company name. 580-* \ | a29k-* \ | aarch64-* | aarch64_be-* \ | alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \ | alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \ | alphapca5[67]-* | alpha64pca5[67]-* | arc-* \ | arm-* | armbe-* | armle-* | armeb-* | armv*-* \ | avr-* | avr32-* \ | be32-* | be64-* \ | bfin-* | bs2000-* \ | c[123]* | c30-* | [cjt]90-* | c4x-* \ | clipper-* | craynv-* | cydra-* \ | d10v-* | d30v-* | dlx-* \ | elxsi-* \ | f30[01]-* | f700-* | fido-* | fr30-* | frv-* | fx80-* \ | h8300-* | h8500-* \ | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \ | hexagon-* \ | i*86-* | i860-* | i960-* | ia64-* \ | ip2k-* | iq2000-* \ | le32-* | le64-* \ | lm32-* \ | m32c-* | m32r-* | m32rle-* \ | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \ | m88110-* | m88k-* | maxq-* | mcore-* | metag-* | microblaze-* \ | mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \ | mips16-* \ | mips64-* | mips64el-* \ | mips64octeon-* | mips64octeonel-* \ | mips64orion-* | mips64orionel-* \ | mips64r5900-* | mips64r5900el-* \ | mips64vr-* | mips64vrel-* \ | mips64vr4100-* | mips64vr4100el-* \ | mips64vr4300-* | mips64vr4300el-* \ | mips64vr5000-* | mips64vr5000el-* \ | mips64vr5900-* | mips64vr5900el-* \ | mipsisa32-* | mipsisa32el-* \ | mipsisa32r2-* | mipsisa32r2el-* \ | mipsisa64-* | mipsisa64el-* \ | mipsisa64r2-* | mipsisa64r2el-* \ | mipsisa64sb1-* | mipsisa64sb1el-* \ | mipsisa64sr71k-* | mipsisa64sr71kel-* \ | mipstx39-* | mipstx39el-* \ | mmix-* \ | mt-* \ | msp430-* \ | nds32-* | nds32le-* | nds32be-* \ | nios-* | nios2-* \ | none-* | np1-* | ns16k-* | ns32k-* \ | open8-* \ | orion-* \ | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \ | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* \ | pyramid-* \ | rl78-* | romp-* | rs6000-* | rx-* \ | sh-* | sh[1234]-* | sh[24]a-* | sh[24]aeb-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \ | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \ | sparc-* | sparc64-* | sparc64b-* | sparc64v-* | sparc86x-* | sparclet-* \ | sparclite-* \ | sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | sv1-* | sx?-* \ | tahoe-* \ | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \ | tile*-* \ | tron-* \ | ubicom32-* \ | v850-* | v850e-* | v850e1-* | v850es-* | v850e2-* | v850e2v3-* \ | vax-* \ | we32k-* \ | x86-* | x86_64-* | xc16x-* | xps100-* \ | xstormy16-* | xtensa*-* \ | ymp-* \ | z8k-* | z80-*) ;; # Recognize the basic CPU types without company name, with glob match. xtensa*) basic_machine=$basic_machine-unknown ;; # Recognize the various machine names and aliases which stand # for a CPU type and a company and sometimes even an OS. 386bsd) basic_machine=i386-unknown os=-bsd ;; 3b1 | 7300 | 7300-att | att-7300 | pc7300 | safari | unixpc) basic_machine=m68000-att ;; 3b*) basic_machine=we32k-att ;; a29khif) basic_machine=a29k-amd os=-udi ;; abacus) basic_machine=abacus-unknown ;; adobe68k) basic_machine=m68010-adobe os=-scout ;; alliant | fx80) basic_machine=fx80-alliant ;; altos | altos3068) basic_machine=m68k-altos ;; am29k) basic_machine=a29k-none os=-bsd ;; amd64) basic_machine=x86_64-pc ;; amd64-*) basic_machine=x86_64-`echo $basic_machine | sed 's/^[^-]*-//'` ;; amdahl) basic_machine=580-amdahl os=-sysv ;; amiga | amiga-*) basic_machine=m68k-unknown ;; amigaos | amigados) basic_machine=m68k-unknown os=-amigaos ;; amigaunix | amix) basic_machine=m68k-unknown os=-sysv4 ;; apollo68) basic_machine=m68k-apollo os=-sysv ;; apollo68bsd) basic_machine=m68k-apollo os=-bsd ;; aros) basic_machine=i386-pc os=-aros ;; aux) basic_machine=m68k-apple os=-aux ;; balance) basic_machine=ns32k-sequent os=-dynix ;; blackfin) basic_machine=bfin-unknown os=-linux ;; blackfin-*) basic_machine=bfin-`echo $basic_machine | sed 's/^[^-]*-//'` os=-linux ;; bluegene*) basic_machine=powerpc-ibm os=-cnk ;; c54x-*) basic_machine=tic54x-`echo $basic_machine | sed 's/^[^-]*-//'` ;; c55x-*) basic_machine=tic55x-`echo $basic_machine | sed 's/^[^-]*-//'` ;; c6x-*) basic_machine=tic6x-`echo $basic_machine | sed 's/^[^-]*-//'` ;; c90) basic_machine=c90-cray os=-unicos ;; cegcc) basic_machine=arm-unknown os=-cegcc ;; convex-c1) basic_machine=c1-convex os=-bsd ;; convex-c2) basic_machine=c2-convex os=-bsd ;; convex-c32) basic_machine=c32-convex os=-bsd ;; convex-c34) basic_machine=c34-convex os=-bsd ;; convex-c38) basic_machine=c38-convex os=-bsd ;; cray | j90) basic_machine=j90-cray os=-unicos ;; craynv) basic_machine=craynv-cray os=-unicosmp ;; cr16 | cr16-*) basic_machine=cr16-unknown os=-elf ;; crds | unos) basic_machine=m68k-crds ;; crisv32 | crisv32-* | etraxfs*) basic_machine=crisv32-axis ;; cris | cris-* | etrax*) basic_machine=cris-axis ;; crx) basic_machine=crx-unknown os=-elf ;; da30 | da30-*) basic_machine=m68k-da30 ;; decstation | decstation-3100 | pmax | pmax-* | pmin | dec3100 | decstatn) basic_machine=mips-dec ;; decsystem10* | dec10*) basic_machine=pdp10-dec os=-tops10 ;; decsystem20* | dec20*) basic_machine=pdp10-dec os=-tops20 ;; delta | 3300 | motorola-3300 | motorola-delta \ | 3300-motorola | delta-motorola) basic_machine=m68k-motorola ;; delta88) basic_machine=m88k-motorola os=-sysv3 ;; dicos) basic_machine=i686-pc os=-dicos ;; djgpp) basic_machine=i586-pc os=-msdosdjgpp ;; dpx20 | dpx20-*) basic_machine=rs6000-bull os=-bosx ;; dpx2* | dpx2*-bull) basic_machine=m68k-bull os=-sysv3 ;; ebmon29k) basic_machine=a29k-amd os=-ebmon ;; elxsi) basic_machine=elxsi-elxsi os=-bsd ;; encore | umax | mmax) basic_machine=ns32k-encore ;; es1800 | OSE68k | ose68k | ose | OSE) basic_machine=m68k-ericsson os=-ose ;; fx2800) basic_machine=i860-alliant ;; genix) basic_machine=ns32k-ns ;; gmicro) basic_machine=tron-gmicro os=-sysv ;; go32) basic_machine=i386-pc os=-go32 ;; h3050r* | hiux*) basic_machine=hppa1.1-hitachi os=-hiuxwe2 ;; h8300hms) basic_machine=h8300-hitachi os=-hms ;; h8300xray) basic_machine=h8300-hitachi os=-xray ;; h8500hms) basic_machine=h8500-hitachi os=-hms ;; harris) basic_machine=m88k-harris os=-sysv3 ;; hp300-*) basic_machine=m68k-hp ;; hp300bsd) basic_machine=m68k-hp os=-bsd ;; hp300hpux) basic_machine=m68k-hp os=-hpux ;; hp3k9[0-9][0-9] | hp9[0-9][0-9]) basic_machine=hppa1.0-hp ;; hp9k2[0-9][0-9] | hp9k31[0-9]) basic_machine=m68000-hp ;; hp9k3[2-9][0-9]) basic_machine=m68k-hp ;; hp9k6[0-9][0-9] | hp6[0-9][0-9]) basic_machine=hppa1.0-hp ;; hp9k7[0-79][0-9] | hp7[0-79][0-9]) basic_machine=hppa1.1-hp ;; hp9k78[0-9] | hp78[0-9]) # FIXME: really hppa2.0-hp basic_machine=hppa1.1-hp ;; hp9k8[67]1 | hp8[67]1 | hp9k80[24] | hp80[24] | hp9k8[78]9 | hp8[78]9 | hp9k893 | hp893) # FIXME: really hppa2.0-hp basic_machine=hppa1.1-hp ;; hp9k8[0-9][13679] | hp8[0-9][13679]) basic_machine=hppa1.1-hp ;; hp9k8[0-9][0-9] | hp8[0-9][0-9]) basic_machine=hppa1.0-hp ;; hppa-next) os=-nextstep3 ;; hppaosf) basic_machine=hppa1.1-hp os=-osf ;; hppro) basic_machine=hppa1.1-hp os=-proelf ;; i370-ibm* | ibm*) basic_machine=i370-ibm ;; i*86v32) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-sysv32 ;; i*86v4*) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-sysv4 ;; i*86v) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-sysv ;; i*86sol2) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-solaris2 ;; i386mach) basic_machine=i386-mach os=-mach ;; i386-vsta | vsta) basic_machine=i386-unknown os=-vsta ;; iris | iris4d) basic_machine=mips-sgi case $os in -irix*) ;; *) os=-irix4 ;; esac ;; isi68 | isi) basic_machine=m68k-isi os=-sysv ;; m68knommu) basic_machine=m68k-unknown os=-linux ;; m68knommu-*) basic_machine=m68k-`echo $basic_machine | sed 's/^[^-]*-//'` os=-linux ;; m88k-omron*) basic_machine=m88k-omron ;; magnum | m3230) basic_machine=mips-mips os=-sysv ;; merlin) basic_machine=ns32k-utek os=-sysv ;; microblaze) basic_machine=microblaze-xilinx ;; mingw32) basic_machine=i386-pc os=-mingw32 ;; mingw32ce) basic_machine=arm-unknown os=-mingw32ce ;; miniframe) basic_machine=m68000-convergent ;; *mint | -mint[0-9]* | *MiNT | *MiNT[0-9]*) basic_machine=m68k-atari os=-mint ;; mips3*-*) basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'` ;; mips3*) basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`-unknown ;; monitor) basic_machine=m68k-rom68k os=-coff ;; morphos) basic_machine=powerpc-unknown os=-morphos ;; msdos) basic_machine=i386-pc os=-msdos ;; ms1-*) basic_machine=`echo $basic_machine | sed -e 's/ms1-/mt-/'` ;; msys) basic_machine=i386-pc os=-msys ;; mvs) basic_machine=i370-ibm os=-mvs ;; nacl) basic_machine=le32-unknown os=-nacl ;; ncr3000) basic_machine=i486-ncr os=-sysv4 ;; netbsd386) basic_machine=i386-unknown os=-netbsd ;; netwinder) basic_machine=armv4l-rebel os=-linux ;; news | news700 | news800 | news900) basic_machine=m68k-sony os=-newsos ;; news1000) basic_machine=m68030-sony os=-newsos ;; news-3600 | risc-news) basic_machine=mips-sony os=-newsos ;; necv70) basic_machine=v70-nec os=-sysv ;; next | m*-next ) basic_machine=m68k-next case $os in -nextstep* ) ;; -ns2*) os=-nextstep2 ;; *) os=-nextstep3 ;; esac ;; nh3000) basic_machine=m68k-harris os=-cxux ;; nh[45]000) basic_machine=m88k-harris os=-cxux ;; nindy960) basic_machine=i960-intel os=-nindy ;; mon960) basic_machine=i960-intel os=-mon960 ;; nonstopux) basic_machine=mips-compaq os=-nonstopux ;; np1) basic_machine=np1-gould ;; neo-tandem) basic_machine=neo-tandem ;; nse-tandem) basic_machine=nse-tandem ;; nsr-tandem) basic_machine=nsr-tandem ;; op50n-* | op60c-*) basic_machine=hppa1.1-oki os=-proelf ;; openrisc | openrisc-*) basic_machine=or32-unknown ;; os400) basic_machine=powerpc-ibm os=-os400 ;; OSE68000 | ose68000) basic_machine=m68000-ericsson os=-ose ;; os68k) basic_machine=m68k-none os=-os68k ;; pa-hitachi) basic_machine=hppa1.1-hitachi os=-hiuxwe2 ;; paragon) basic_machine=i860-intel os=-osf ;; parisc) basic_machine=hppa-unknown os=-linux ;; parisc-*) basic_machine=hppa-`echo $basic_machine | sed 's/^[^-]*-//'` os=-linux ;; pbd) basic_machine=sparc-tti ;; pbb) basic_machine=m68k-tti ;; pc532 | pc532-*) basic_machine=ns32k-pc532 ;; pc98) basic_machine=i386-pc ;; pc98-*) basic_machine=i386-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentium | p5 | k5 | k6 | nexgen | viac3) basic_machine=i586-pc ;; pentiumpro | p6 | 6x86 | athlon | athlon_*) basic_machine=i686-pc ;; pentiumii | pentium2 | pentiumiii | pentium3) basic_machine=i686-pc ;; pentium4) basic_machine=i786-pc ;; pentium-* | p5-* | k5-* | k6-* | nexgen-* | viac3-*) basic_machine=i586-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentiumpro-* | p6-* | 6x86-* | athlon-*) basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentiumii-* | pentium2-* | pentiumiii-* | pentium3-*) basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentium4-*) basic_machine=i786-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pn) basic_machine=pn-gould ;; power) basic_machine=power-ibm ;; ppc | ppcbe) basic_machine=powerpc-unknown ;; ppc-* | ppcbe-*) basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ppcle | powerpclittle | ppc-le | powerpc-little) basic_machine=powerpcle-unknown ;; ppcle-* | powerpclittle-*) basic_machine=powerpcle-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ppc64) basic_machine=powerpc64-unknown ;; ppc64-*) basic_machine=powerpc64-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ppc64le | powerpc64little | ppc64-le | powerpc64-little) basic_machine=powerpc64le-unknown ;; ppc64le-* | powerpc64little-*) basic_machine=powerpc64le-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ps2) basic_machine=i386-ibm ;; pw32) basic_machine=i586-unknown os=-pw32 ;; rdos) basic_machine=i386-pc os=-rdos ;; rom68k) basic_machine=m68k-rom68k os=-coff ;; rm[46]00) basic_machine=mips-siemens ;; rtpc | rtpc-*) basic_machine=romp-ibm ;; s390 | s390-*) basic_machine=s390-ibm ;; s390x | s390x-*) basic_machine=s390x-ibm ;; sa29200) basic_machine=a29k-amd os=-udi ;; sb1) basic_machine=mipsisa64sb1-unknown ;; sb1el) basic_machine=mipsisa64sb1el-unknown ;; sde) basic_machine=mipsisa32-sde os=-elf ;; sei) basic_machine=mips-sei os=-seiux ;; sequent) basic_machine=i386-sequent ;; sh) basic_machine=sh-hitachi os=-hms ;; sh5el) basic_machine=sh5le-unknown ;; sh64) basic_machine=sh64-unknown ;; sparclite-wrs | simso-wrs) basic_machine=sparclite-wrs os=-vxworks ;; sps7) basic_machine=m68k-bull os=-sysv2 ;; spur) basic_machine=spur-unknown ;; st2000) basic_machine=m68k-tandem ;; stratus) basic_machine=i860-stratus os=-sysv4 ;; strongarm-* | thumb-*) basic_machine=arm-`echo $basic_machine | sed 's/^[^-]*-//'` ;; sun2) basic_machine=m68000-sun ;; sun2os3) basic_machine=m68000-sun os=-sunos3 ;; sun2os4) basic_machine=m68000-sun os=-sunos4 ;; sun3os3) basic_machine=m68k-sun os=-sunos3 ;; sun3os4) basic_machine=m68k-sun os=-sunos4 ;; sun4os3) basic_machine=sparc-sun os=-sunos3 ;; sun4os4) basic_machine=sparc-sun os=-sunos4 ;; sun4sol2) basic_machine=sparc-sun os=-solaris2 ;; sun3 | sun3-*) basic_machine=m68k-sun ;; sun4) basic_machine=sparc-sun ;; sun386 | sun386i | roadrunner) basic_machine=i386-sun ;; sv1) basic_machine=sv1-cray os=-unicos ;; symmetry) basic_machine=i386-sequent os=-dynix ;; t3e) basic_machine=alphaev5-cray os=-unicos ;; t90) basic_machine=t90-cray os=-unicos ;; tile*) basic_machine=$basic_machine-unknown os=-linux-gnu ;; tx39) basic_machine=mipstx39-unknown ;; tx39el) basic_machine=mipstx39el-unknown ;; toad1) basic_machine=pdp10-xkl os=-tops20 ;; tower | tower-32) basic_machine=m68k-ncr ;; tpf) basic_machine=s390x-ibm os=-tpf ;; udi29k) basic_machine=a29k-amd os=-udi ;; ultra3) basic_machine=a29k-nyu os=-sym1 ;; v810 | necv810) basic_machine=v810-nec os=-none ;; vaxv) basic_machine=vax-dec os=-sysv ;; vms) basic_machine=vax-dec os=-vms ;; vpp*|vx|vx-*) basic_machine=f301-fujitsu ;; vxworks960) basic_machine=i960-wrs os=-vxworks ;; vxworks68) basic_machine=m68k-wrs os=-vxworks ;; vxworks29k) basic_machine=a29k-wrs os=-vxworks ;; w65*) basic_machine=w65-wdc os=-none ;; w89k-*) basic_machine=hppa1.1-winbond os=-proelf ;; xbox) basic_machine=i686-pc os=-mingw32 ;; xps | xps100) basic_machine=xps100-honeywell ;; xscale-* | xscalee[bl]-*) basic_machine=`echo $basic_machine | sed 's/^xscale/arm/'` ;; ymp) basic_machine=ymp-cray os=-unicos ;; z8k-*-coff) basic_machine=z8k-unknown os=-sim ;; z80-*-coff) basic_machine=z80-unknown os=-sim ;; none) basic_machine=none-none os=-none ;; # Here we handle the default manufacturer of certain CPU types. It is in # some cases the only manufacturer, in others, it is the most popular. w89k) basic_machine=hppa1.1-winbond ;; op50n) basic_machine=hppa1.1-oki ;; op60c) basic_machine=hppa1.1-oki ;; romp) basic_machine=romp-ibm ;; mmix) basic_machine=mmix-knuth ;; rs6000) basic_machine=rs6000-ibm ;; vax) basic_machine=vax-dec ;; pdp10) # there are many clones, so DEC is not a safe bet basic_machine=pdp10-unknown ;; pdp11) basic_machine=pdp11-dec ;; we32k) basic_machine=we32k-att ;; sh[1234] | sh[24]a | sh[24]aeb | sh[34]eb | sh[1234]le | sh[23]ele) basic_machine=sh-unknown ;; sparc | sparcv8 | sparcv9 | sparcv9b | sparcv9v) basic_machine=sparc-sun ;; cydra) basic_machine=cydra-cydrome ;; orion) basic_machine=orion-highlevel ;; orion105) basic_machine=clipper-highlevel ;; mac | mpw | mac-mpw) basic_machine=m68k-apple ;; pmac | pmac-mpw) basic_machine=powerpc-apple ;; *-unknown) # Make sure to match an already-canonicalized machine name. ;; *) echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 exit 1 ;; esac # Here we canonicalize certain aliases for manufacturers. case $basic_machine in *-digital*) basic_machine=`echo $basic_machine | sed 's/digital.*/dec/'` ;; *-commodore*) basic_machine=`echo $basic_machine | sed 's/commodore.*/cbm/'` ;; *) ;; esac # Decode manufacturer-specific aliases for certain operating systems. if [ x"$os" != x"" ] then case $os in # First match some system type aliases # that might get confused with valid system types. # -solaris* is a basic system type, with this one exception. -auroraux) os=-auroraux ;; -solaris1 | -solaris1.*) os=`echo $os | sed -e 's|solaris1|sunos4|'` ;; -solaris) os=-solaris2 ;; -svr4*) os=-sysv4 ;; -unixware*) os=-sysv4.2uw ;; -gnu/linux*) os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'` ;; # First accept the basic system types. # The portable systems comes first. # Each alternative MUST END IN A *, to match a version number. # -sysv* is not here because it comes later, after sysvr4. -gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \ | -*vms* | -sco* | -esix* | -isc* | -aix* | -cnk* | -sunos | -sunos[34]*\ | -hpux* | -unos* | -osf* | -luna* | -dgux* | -auroraux* | -solaris* \ | -sym* | -kopensolaris* \ | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \ | -aos* | -aros* \ | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \ | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \ | -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* \ | -openbsd* | -solidbsd* \ | -ekkobsd* | -kfreebsd* | -freebsd* | -riscix* | -lynxos* \ | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \ | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \ | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \ | -chorusos* | -chorusrdb* | -cegcc* \ | -cygwin* | -msys* | -pe* | -psos* | -moss* | -proelf* | -rtems* \ | -mingw32* | -linux-gnu* | -linux-android* \ | -linux-newlib* | -linux-uclibc* \ | -uxpv* | -beos* | -mpeix* | -udk* \ | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \ | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \ | -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* \ | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \ | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \ | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \ | -skyos* | -haiku* | -rdos* | -toppers* | -drops* | -es*) # Remember, each alternative MUST END IN *, to match a version number. ;; -qnx*) case $basic_machine in x86-* | i*86-*) ;; *) os=-nto$os ;; esac ;; -nto-qnx*) ;; -nto*) os=`echo $os | sed -e 's|nto|nto-qnx|'` ;; -sim | -es1800* | -hms* | -xray | -os68k* | -none* | -v88r* \ | -windows* | -osx | -abug | -netware* | -os9* | -beos* | -haiku* \ | -macos* | -mpw* | -magic* | -mmixware* | -mon960* | -lnews*) ;; -mac*) os=`echo $os | sed -e 's|mac|macos|'` ;; -linux-dietlibc) os=-linux-dietlibc ;; -linux*) os=`echo $os | sed -e 's|linux|linux-gnu|'` ;; -sunos5*) os=`echo $os | sed -e 's|sunos5|solaris2|'` ;; -sunos6*) os=`echo $os | sed -e 's|sunos6|solaris3|'` ;; -opened*) os=-openedition ;; -os400*) os=-os400 ;; -wince*) os=-wince ;; -osfrose*) os=-osfrose ;; -osf*) os=-osf ;; -utek*) os=-bsd ;; -dynix*) os=-bsd ;; -acis*) os=-aos ;; -atheos*) os=-atheos ;; -syllable*) os=-syllable ;; -386bsd) os=-bsd ;; -ctix* | -uts*) os=-sysv ;; -nova*) os=-rtmk-nova ;; -ns2 ) os=-nextstep2 ;; -nsk*) os=-nsk ;; # Preserve the version number of sinix5. -sinix5.*) os=`echo $os | sed -e 's|sinix|sysv|'` ;; -sinix*) os=-sysv4 ;; -tpf*) os=-tpf ;; -triton*) os=-sysv3 ;; -oss*) os=-sysv3 ;; -svr4) os=-sysv4 ;; -svr3) os=-sysv3 ;; -sysvr4) os=-sysv4 ;; # This must come after -sysvr4. -sysv*) ;; -ose*) os=-ose ;; -es1800*) os=-ose ;; -xenix) os=-xenix ;; -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) os=-mint ;; -aros*) os=-aros ;; -kaos*) os=-kaos ;; -zvmoe) os=-zvmoe ;; -dicos*) os=-dicos ;; -nacl*) ;; -none) ;; *) # Get rid of the `-' at the beginning of $os. os=`echo $os | sed 's/[^-]*-//'` echo Invalid configuration \`$1\': system \`$os\' not recognized 1>&2 exit 1 ;; esac else # Here we handle the default operating systems that come with various machines. # The value should be what the vendor currently ships out the door with their # machine or put another way, the most popular os provided with the machine. # Note that if you're going to try to match "-MANUFACTURER" here (say, # "-sun"), then you have to tell the case statement up towards the top # that MANUFACTURER isn't an operating system. Otherwise, code above # will signal an error saying that MANUFACTURER isn't an operating # system, and we'll never get to this point. case $basic_machine in score-*) os=-elf ;; spu-*) os=-elf ;; *-acorn) os=-riscix1.2 ;; arm*-rebel) os=-linux ;; arm*-semi) os=-aout ;; c4x-* | tic4x-*) os=-coff ;; tic54x-*) os=-coff ;; tic55x-*) os=-coff ;; tic6x-*) os=-coff ;; # This must come before the *-dec entry. pdp10-*) os=-tops20 ;; pdp11-*) os=-none ;; *-dec | vax-*) os=-ultrix4.2 ;; m68*-apollo) os=-domain ;; i386-sun) os=-sunos4.0.2 ;; m68000-sun) os=-sunos3 ;; m68*-cisco) os=-aout ;; mep-*) os=-elf ;; mips*-cisco) os=-elf ;; mips*-*) os=-elf ;; or32-*) os=-coff ;; *-tti) # must be before sparc entry or we get the wrong os. os=-sysv3 ;; sparc-* | *-sun) os=-sunos4.1.1 ;; *-be) os=-beos ;; *-haiku) os=-haiku ;; *-ibm) os=-aix ;; *-knuth) os=-mmixware ;; *-wec) os=-proelf ;; *-winbond) os=-proelf ;; *-oki) os=-proelf ;; *-hp) os=-hpux ;; *-hitachi) os=-hiux ;; i860-* | *-att | *-ncr | *-altos | *-motorola | *-convergent) os=-sysv ;; *-cbm) os=-amigaos ;; *-dg) os=-dgux ;; *-dolphin) os=-sysv3 ;; m68k-ccur) os=-rtu ;; m88k-omron*) os=-luna ;; *-next ) os=-nextstep ;; *-sequent) os=-ptx ;; *-crds) os=-unos ;; *-ns) os=-genix ;; i370-*) os=-mvs ;; *-next) os=-nextstep3 ;; *-gould) os=-sysv ;; *-highlevel) os=-bsd ;; *-encore) os=-bsd ;; *-sgi) os=-irix ;; *-siemens) os=-sysv4 ;; *-masscomp) os=-rtu ;; f30[01]-fujitsu | f700-fujitsu) os=-uxpv ;; *-rom68k) os=-coff ;; *-*bug) os=-coff ;; *-apple) os=-macos ;; *-atari*) os=-mint ;; *) os=-none ;; esac fi # Here we handle the case where we know the os, and the CPU type, but not the # manufacturer. We pick the logical manufacturer. vendor=unknown case $basic_machine in *-unknown) case $os in -riscix*) vendor=acorn ;; -sunos*) vendor=sun ;; -cnk*|-aix*) vendor=ibm ;; -beos*) vendor=be ;; -hpux*) vendor=hp ;; -mpeix*) vendor=hp ;; -hiux*) vendor=hitachi ;; -unos*) vendor=crds ;; -dgux*) vendor=dg ;; -luna*) vendor=omron ;; -genix*) vendor=ns ;; -mvs* | -opened*) vendor=ibm ;; -os400*) vendor=ibm ;; -ptx*) vendor=sequent ;; -tpf*) vendor=ibm ;; -vxsim* | -vxworks* | -windiss*) vendor=wrs ;; -aux*) vendor=apple ;; -hms*) vendor=hitachi ;; -mpw* | -macos*) vendor=apple ;; -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) vendor=atari ;; -vos*) vendor=stratus ;; esac basic_machine=`echo $basic_machine | sed "s/unknown/$vendor/"` ;; esac echo $basic_machine$os exit # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "timestamp='" # time-stamp-format: "%:y-%02m-%02d" # time-stamp-end: "'" # End: toilet-0.3/.auto/config.guess0000755000175000017500000012743211737655633013174 00000000000000#! /bin/sh # Attempt to guess a canonical system name. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, # 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, # 2011, 2012 Free Software Foundation, Inc. timestamp='2012-02-10' # This file 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 of the License, 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, see . # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # Originally written by Per Bothner. Please send patches (context # diff format) to and include a ChangeLog # entry. # # This script attempts to guess a canonical system name similar to # config.sub. If it succeeds, it prints the system name on stdout, and # exits with 0. Otherwise, it exits with 1. # # You can get the latest version of this script from: # http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD me=`echo "$0" | sed -e 's,.*/,,'` usage="\ Usage: $0 [OPTION] Output the configuration name of the system \`$me' is run on. Operation modes: -h, --help print this help, then exit -t, --time-stamp print date of last modification, then exit -v, --version print version number, then exit Report bugs and patches to ." version="\ GNU config.guess ($timestamp) Originally written by Per Bothner. Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." help=" Try \`$me --help' for more information." # Parse command line while test $# -gt 0 ; do case $1 in --time-stamp | --time* | -t ) echo "$timestamp" ; exit ;; --version | -v ) echo "$version" ; exit ;; --help | --h* | -h ) echo "$usage"; exit ;; -- ) # Stop option processing shift; break ;; - ) # Use stdin as input. break ;; -* ) echo "$me: invalid option $1$help" >&2 exit 1 ;; * ) break ;; esac done if test $# != 0; then echo "$me: too many arguments$help" >&2 exit 1 fi trap 'exit 1' 1 2 15 # CC_FOR_BUILD -- compiler used by this script. Note that the use of a # compiler to aid in system detection is discouraged as it requires # temporary files to be created and, as you can see below, it is a # headache to deal with in a portable fashion. # Historically, `CC_FOR_BUILD' used to be named `HOST_CC'. We still # use `HOST_CC' if defined, but it is deprecated. # Portable tmp directory creation inspired by the Autoconf team. set_cc_for_build=' trap "exitcode=\$?; (rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null) && exit \$exitcode" 0 ; trap "rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null; exit 1" 1 2 13 15 ; : ${TMPDIR=/tmp} ; { tmp=`(umask 077 && mktemp -d "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } || { test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir $tmp) ; } || { tmp=$TMPDIR/cg-$$ && (umask 077 && mkdir $tmp) && echo "Warning: creating insecure temp directory" >&2 ; } || { echo "$me: cannot create a temporary directory in $TMPDIR" >&2 ; exit 1 ; } ; dummy=$tmp/dummy ; tmpfiles="$dummy.c $dummy.o $dummy.rel $dummy" ; case $CC_FOR_BUILD,$HOST_CC,$CC in ,,) echo "int x;" > $dummy.c ; for c in cc gcc c89 c99 ; do if ($c -c -o $dummy.o $dummy.c) >/dev/null 2>&1 ; then CC_FOR_BUILD="$c"; break ; fi ; done ; if test x"$CC_FOR_BUILD" = x ; then CC_FOR_BUILD=no_compiler_found ; fi ;; ,,*) CC_FOR_BUILD=$CC ;; ,*,*) CC_FOR_BUILD=$HOST_CC ;; esac ; set_cc_for_build= ;' # This is needed to find uname on a Pyramid OSx when run in the BSD universe. # (ghazi@noc.rutgers.edu 1994-08-24) if (test -f /.attbin/uname) >/dev/null 2>&1 ; then PATH=$PATH:/.attbin ; export PATH fi UNAME_MACHINE=`(uname -m) 2>/dev/null` || UNAME_MACHINE=unknown UNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEASE=unknown UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown # Note: order is significant - the case branches are not exclusive. case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in *:NetBSD:*:*) # NetBSD (nbsd) targets should (where applicable) match one or # more of the tuples: *-*-netbsdelf*, *-*-netbsdaout*, # *-*-netbsdecoff* and *-*-netbsd*. For targets that recently # switched to ELF, *-*-netbsd* would select the old # object file format. This provides both forward # compatibility and a consistent mechanism for selecting the # object file format. # # Note: NetBSD doesn't particularly care about the vendor # portion of the name. We always set it to "unknown". sysctl="sysctl -n hw.machine_arch" UNAME_MACHINE_ARCH=`(/sbin/$sysctl 2>/dev/null || \ /usr/sbin/$sysctl 2>/dev/null || echo unknown)` case "${UNAME_MACHINE_ARCH}" in armeb) machine=armeb-unknown ;; arm*) machine=arm-unknown ;; sh3el) machine=shl-unknown ;; sh3eb) machine=sh-unknown ;; sh5el) machine=sh5le-unknown ;; *) machine=${UNAME_MACHINE_ARCH}-unknown ;; esac # The Operating System including object format, if it has switched # to ELF recently, or will in the future. case "${UNAME_MACHINE_ARCH}" in arm*|i386|m68k|ns32k|sh3*|sparc|vax) eval $set_cc_for_build if echo __ELF__ | $CC_FOR_BUILD -E - 2>/dev/null \ | grep -q __ELF__ then # Once all utilities can be ECOFF (netbsdecoff) or a.out (netbsdaout). # Return netbsd for either. FIX? os=netbsd else os=netbsdelf fi ;; *) os=netbsd ;; esac # The OS release # Debian GNU/NetBSD machines have a different userland, and # thus, need a distinct triplet. However, they do not need # kernel version information, so it can be replaced with a # suitable tag, in the style of linux-gnu. case "${UNAME_VERSION}" in Debian*) release='-gnu' ;; *) release=`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/\./'` ;; esac # Since CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM: # contains redundant information, the shorter form: # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used. echo "${machine}-${os}${release}" exit ;; *:OpenBSD:*:*) UNAME_MACHINE_ARCH=`arch | sed 's/OpenBSD.//'` echo ${UNAME_MACHINE_ARCH}-unknown-openbsd${UNAME_RELEASE} exit ;; *:ekkoBSD:*:*) echo ${UNAME_MACHINE}-unknown-ekkobsd${UNAME_RELEASE} exit ;; *:SolidBSD:*:*) echo ${UNAME_MACHINE}-unknown-solidbsd${UNAME_RELEASE} exit ;; macppc:MirBSD:*:*) echo powerpc-unknown-mirbsd${UNAME_RELEASE} exit ;; *:MirBSD:*:*) echo ${UNAME_MACHINE}-unknown-mirbsd${UNAME_RELEASE} exit ;; alpha:OSF1:*:*) case $UNAME_RELEASE in *4.0) UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $3}'` ;; *5.*) UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $4}'` ;; esac # According to Compaq, /usr/sbin/psrinfo has been available on # OSF/1 and Tru64 systems produced since 1995. I hope that # covers most systems running today. This code pipes the CPU # types through head -n 1, so we only detect the type of CPU 0. ALPHA_CPU_TYPE=`/usr/sbin/psrinfo -v | sed -n -e 's/^ The alpha \(.*\) processor.*$/\1/p' | head -n 1` case "$ALPHA_CPU_TYPE" in "EV4 (21064)") UNAME_MACHINE="alpha" ;; "EV4.5 (21064)") UNAME_MACHINE="alpha" ;; "LCA4 (21066/21068)") UNAME_MACHINE="alpha" ;; "EV5 (21164)") UNAME_MACHINE="alphaev5" ;; "EV5.6 (21164A)") UNAME_MACHINE="alphaev56" ;; "EV5.6 (21164PC)") UNAME_MACHINE="alphapca56" ;; "EV5.7 (21164PC)") UNAME_MACHINE="alphapca57" ;; "EV6 (21264)") UNAME_MACHINE="alphaev6" ;; "EV6.7 (21264A)") UNAME_MACHINE="alphaev67" ;; "EV6.8CB (21264C)") UNAME_MACHINE="alphaev68" ;; "EV6.8AL (21264B)") UNAME_MACHINE="alphaev68" ;; "EV6.8CX (21264D)") UNAME_MACHINE="alphaev68" ;; "EV6.9A (21264/EV69A)") UNAME_MACHINE="alphaev69" ;; "EV7 (21364)") UNAME_MACHINE="alphaev7" ;; "EV7.9 (21364A)") UNAME_MACHINE="alphaev79" ;; esac # A Pn.n version is a patched version. # A Vn.n version is a released version. # A Tn.n version is a released field test version. # A Xn.n version is an unreleased experimental baselevel. # 1.2 uses "1.2" for uname -r. echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[PVTX]//' | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` # Reset EXIT trap before exiting to avoid spurious non-zero exit code. exitcode=$? trap '' 0 exit $exitcode ;; Alpha\ *:Windows_NT*:*) # How do we know it's Interix rather than the generic POSIX subsystem? # Should we change UNAME_MACHINE based on the output of uname instead # of the specific Alpha model? echo alpha-pc-interix exit ;; 21064:Windows_NT:50:3) echo alpha-dec-winnt3.5 exit ;; Amiga*:UNIX_System_V:4.0:*) echo m68k-unknown-sysv4 exit ;; *:[Aa]miga[Oo][Ss]:*:*) echo ${UNAME_MACHINE}-unknown-amigaos exit ;; *:[Mm]orph[Oo][Ss]:*:*) echo ${UNAME_MACHINE}-unknown-morphos exit ;; *:OS/390:*:*) echo i370-ibm-openedition exit ;; *:z/VM:*:*) echo s390-ibm-zvmoe exit ;; *:OS400:*:*) echo powerpc-ibm-os400 exit ;; arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*) echo arm-acorn-riscix${UNAME_RELEASE} exit ;; arm:riscos:*:*|arm:RISCOS:*:*) echo arm-unknown-riscos exit ;; SR2?01:HI-UX/MPP:*:* | SR8000:HI-UX/MPP:*:*) echo hppa1.1-hitachi-hiuxmpp exit ;; Pyramid*:OSx*:*:* | MIS*:OSx*:*:* | MIS*:SMP_DC-OSx*:*:*) # akee@wpdis03.wpafb.af.mil (Earle F. Ake) contributed MIS and NILE. if test "`(/bin/universe) 2>/dev/null`" = att ; then echo pyramid-pyramid-sysv3 else echo pyramid-pyramid-bsd fi exit ;; NILE*:*:*:dcosx) echo pyramid-pyramid-svr4 exit ;; DRS?6000:unix:4.0:6*) echo sparc-icl-nx6 exit ;; DRS?6000:UNIX_SV:4.2*:7* | DRS?6000:isis:4.2*:7*) case `/usr/bin/uname -p` in sparc) echo sparc-icl-nx7; exit ;; esac ;; s390x:SunOS:*:*) echo ${UNAME_MACHINE}-ibm-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; sun4H:SunOS:5.*:*) echo sparc-hal-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*) echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; i86pc:AuroraUX:5.*:* | i86xen:AuroraUX:5.*:*) echo i386-pc-auroraux${UNAME_RELEASE} exit ;; i86pc:SunOS:5.*:* | i86xen:SunOS:5.*:*) eval $set_cc_for_build SUN_ARCH="i386" # If there is a compiler, see if it is configured for 64-bit objects. # Note that the Sun cc does not turn __LP64__ into 1 like gcc does. # This test works for both compilers. if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then if (echo '#ifdef __amd64'; echo IS_64BIT_ARCH; echo '#endif') | \ (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \ grep IS_64BIT_ARCH >/dev/null then SUN_ARCH="x86_64" fi fi echo ${SUN_ARCH}-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; sun4*:SunOS:6*:*) # According to config.sub, this is the proper way to canonicalize # SunOS6. Hard to guess exactly what SunOS6 will be like, but # it's likely to be more like Solaris than SunOS4. echo sparc-sun-solaris3`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; sun4*:SunOS:*:*) case "`/usr/bin/arch -k`" in Series*|S4*) UNAME_RELEASE=`uname -v` ;; esac # Japanese Language versions have a version number like `4.1.3-JL'. echo sparc-sun-sunos`echo ${UNAME_RELEASE}|sed -e 's/-/_/'` exit ;; sun3*:SunOS:*:*) echo m68k-sun-sunos${UNAME_RELEASE} exit ;; sun*:*:4.2BSD:*) UNAME_RELEASE=`(sed 1q /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null` test "x${UNAME_RELEASE}" = "x" && UNAME_RELEASE=3 case "`/bin/arch`" in sun3) echo m68k-sun-sunos${UNAME_RELEASE} ;; sun4) echo sparc-sun-sunos${UNAME_RELEASE} ;; esac exit ;; aushp:SunOS:*:*) echo sparc-auspex-sunos${UNAME_RELEASE} exit ;; # The situation for MiNT is a little confusing. The machine name # can be virtually everything (everything which is not # "atarist" or "atariste" at least should have a processor # > m68000). The system name ranges from "MiNT" over "FreeMiNT" # to the lowercase version "mint" (or "freemint"). Finally # the system name "TOS" denotes a system which is actually not # MiNT. But MiNT is downward compatible to TOS, so this should # be no problem. atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*) echo m68k-atari-mint${UNAME_RELEASE} exit ;; atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*) echo m68k-atari-mint${UNAME_RELEASE} exit ;; *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*) echo m68k-atari-mint${UNAME_RELEASE} exit ;; milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*) echo m68k-milan-mint${UNAME_RELEASE} exit ;; hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*) echo m68k-hades-mint${UNAME_RELEASE} exit ;; *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*) echo m68k-unknown-mint${UNAME_RELEASE} exit ;; m68k:machten:*:*) echo m68k-apple-machten${UNAME_RELEASE} exit ;; powerpc:machten:*:*) echo powerpc-apple-machten${UNAME_RELEASE} exit ;; RISC*:Mach:*:*) echo mips-dec-mach_bsd4.3 exit ;; RISC*:ULTRIX:*:*) echo mips-dec-ultrix${UNAME_RELEASE} exit ;; VAX*:ULTRIX*:*:*) echo vax-dec-ultrix${UNAME_RELEASE} exit ;; 2020:CLIX:*:* | 2430:CLIX:*:*) echo clipper-intergraph-clix${UNAME_RELEASE} exit ;; mips:*:*:UMIPS | mips:*:*:RISCos) eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #ifdef __cplusplus #include /* for printf() prototype */ int main (int argc, char *argv[]) { #else int main (argc, argv) int argc; char *argv[]; { #endif #if defined (host_mips) && defined (MIPSEB) #if defined (SYSTYPE_SYSV) printf ("mips-mips-riscos%ssysv\n", argv[1]); exit (0); #endif #if defined (SYSTYPE_SVR4) printf ("mips-mips-riscos%ssvr4\n", argv[1]); exit (0); #endif #if defined (SYSTYPE_BSD43) || defined(SYSTYPE_BSD) printf ("mips-mips-riscos%sbsd\n", argv[1]); exit (0); #endif #endif exit (-1); } EOF $CC_FOR_BUILD -o $dummy $dummy.c && dummyarg=`echo "${UNAME_RELEASE}" | sed -n 's/\([0-9]*\).*/\1/p'` && SYSTEM_NAME=`$dummy $dummyarg` && { echo "$SYSTEM_NAME"; exit; } echo mips-mips-riscos${UNAME_RELEASE} exit ;; Motorola:PowerMAX_OS:*:*) echo powerpc-motorola-powermax exit ;; Motorola:*:4.3:PL8-*) echo powerpc-harris-powermax exit ;; Night_Hawk:*:*:PowerMAX_OS | Synergy:PowerMAX_OS:*:*) echo powerpc-harris-powermax exit ;; Night_Hawk:Power_UNIX:*:*) echo powerpc-harris-powerunix exit ;; m88k:CX/UX:7*:*) echo m88k-harris-cxux7 exit ;; m88k:*:4*:R4*) echo m88k-motorola-sysv4 exit ;; m88k:*:3*:R3*) echo m88k-motorola-sysv3 exit ;; AViiON:dgux:*:*) # DG/UX returns AViiON for all architectures UNAME_PROCESSOR=`/usr/bin/uname -p` if [ $UNAME_PROCESSOR = mc88100 ] || [ $UNAME_PROCESSOR = mc88110 ] then if [ ${TARGET_BINARY_INTERFACE}x = m88kdguxelfx ] || \ [ ${TARGET_BINARY_INTERFACE}x = x ] then echo m88k-dg-dgux${UNAME_RELEASE} else echo m88k-dg-dguxbcs${UNAME_RELEASE} fi else echo i586-dg-dgux${UNAME_RELEASE} fi exit ;; M88*:DolphinOS:*:*) # DolphinOS (SVR3) echo m88k-dolphin-sysv3 exit ;; M88*:*:R3*:*) # Delta 88k system running SVR3 echo m88k-motorola-sysv3 exit ;; XD88*:*:*:*) # Tektronix XD88 system running UTekV (SVR3) echo m88k-tektronix-sysv3 exit ;; Tek43[0-9][0-9]:UTek:*:*) # Tektronix 4300 system running UTek (BSD) echo m68k-tektronix-bsd exit ;; *:IRIX*:*:*) echo mips-sgi-irix`echo ${UNAME_RELEASE}|sed -e 's/-/_/g'` exit ;; ????????:AIX?:[12].1:2) # AIX 2.2.1 or AIX 2.1.1 is RT/PC AIX. echo romp-ibm-aix # uname -m gives an 8 hex-code CPU id exit ;; # Note that: echo "'`uname -s`'" gives 'AIX ' i*86:AIX:*:*) echo i386-ibm-aix exit ;; ia64:AIX:*:*) if [ -x /usr/bin/oslevel ] ; then IBM_REV=`/usr/bin/oslevel` else IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} fi echo ${UNAME_MACHINE}-ibm-aix${IBM_REV} exit ;; *:AIX:2:3) if grep bos325 /usr/include/stdio.h >/dev/null 2>&1; then eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #include main() { if (!__power_pc()) exit(1); puts("powerpc-ibm-aix3.2.5"); exit(0); } EOF if $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` then echo "$SYSTEM_NAME" else echo rs6000-ibm-aix3.2.5 fi elif grep bos324 /usr/include/stdio.h >/dev/null 2>&1; then echo rs6000-ibm-aix3.2.4 else echo rs6000-ibm-aix3.2 fi exit ;; *:AIX:*:[4567]) IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'` if /usr/sbin/lsattr -El ${IBM_CPU_ID} | grep ' POWER' >/dev/null 2>&1; then IBM_ARCH=rs6000 else IBM_ARCH=powerpc fi if [ -x /usr/bin/oslevel ] ; then IBM_REV=`/usr/bin/oslevel` else IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} fi echo ${IBM_ARCH}-ibm-aix${IBM_REV} exit ;; *:AIX:*:*) echo rs6000-ibm-aix exit ;; ibmrt:4.4BSD:*|romp-ibm:BSD:*) echo romp-ibm-bsd4.4 exit ;; ibmrt:*BSD:*|romp-ibm:BSD:*) # covers RT/PC BSD and echo romp-ibm-bsd${UNAME_RELEASE} # 4.3 with uname added to exit ;; # report: romp-ibm BSD 4.3 *:BOSX:*:*) echo rs6000-bull-bosx exit ;; DPX/2?00:B.O.S.:*:*) echo m68k-bull-sysv3 exit ;; 9000/[34]??:4.3bsd:1.*:*) echo m68k-hp-bsd exit ;; hp300:4.4BSD:*:* | 9000/[34]??:4.3bsd:2.*:*) echo m68k-hp-bsd4.4 exit ;; 9000/[34678]??:HP-UX:*:*) HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` case "${UNAME_MACHINE}" in 9000/31? ) HP_ARCH=m68000 ;; 9000/[34]?? ) HP_ARCH=m68k ;; 9000/[678][0-9][0-9]) if [ -x /usr/bin/getconf ]; then sc_cpu_version=`/usr/bin/getconf SC_CPU_VERSION 2>/dev/null` sc_kernel_bits=`/usr/bin/getconf SC_KERNEL_BITS 2>/dev/null` case "${sc_cpu_version}" in 523) HP_ARCH="hppa1.0" ;; # CPU_PA_RISC1_0 528) HP_ARCH="hppa1.1" ;; # CPU_PA_RISC1_1 532) # CPU_PA_RISC2_0 case "${sc_kernel_bits}" in 32) HP_ARCH="hppa2.0n" ;; 64) HP_ARCH="hppa2.0w" ;; '') HP_ARCH="hppa2.0" ;; # HP-UX 10.20 esac ;; esac fi if [ "${HP_ARCH}" = "" ]; then eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #define _HPUX_SOURCE #include #include int main () { #if defined(_SC_KERNEL_BITS) long bits = sysconf(_SC_KERNEL_BITS); #endif long cpu = sysconf (_SC_CPU_VERSION); switch (cpu) { case CPU_PA_RISC1_0: puts ("hppa1.0"); break; case CPU_PA_RISC1_1: puts ("hppa1.1"); break; case CPU_PA_RISC2_0: #if defined(_SC_KERNEL_BITS) switch (bits) { case 64: puts ("hppa2.0w"); break; case 32: puts ("hppa2.0n"); break; default: puts ("hppa2.0"); break; } break; #else /* !defined(_SC_KERNEL_BITS) */ puts ("hppa2.0"); break; #endif default: puts ("hppa1.0"); break; } exit (0); } EOF (CCOPTS= $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null) && HP_ARCH=`$dummy` test -z "$HP_ARCH" && HP_ARCH=hppa fi ;; esac if [ ${HP_ARCH} = "hppa2.0w" ] then eval $set_cc_for_build # hppa2.0w-hp-hpux* has a 64-bit kernel and a compiler generating # 32-bit code. hppa64-hp-hpux* has the same kernel and a compiler # generating 64-bit code. GNU and HP use different nomenclature: # # $ CC_FOR_BUILD=cc ./config.guess # => hppa2.0w-hp-hpux11.23 # $ CC_FOR_BUILD="cc +DA2.0w" ./config.guess # => hppa64-hp-hpux11.23 if echo __LP64__ | (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | grep -q __LP64__ then HP_ARCH="hppa2.0w" else HP_ARCH="hppa64" fi fi echo ${HP_ARCH}-hp-hpux${HPUX_REV} exit ;; ia64:HP-UX:*:*) HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` echo ia64-hp-hpux${HPUX_REV} exit ;; 3050*:HI-UX:*:*) eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #include int main () { long cpu = sysconf (_SC_CPU_VERSION); /* The order matters, because CPU_IS_HP_MC68K erroneously returns true for CPU_PA_RISC1_0. CPU_IS_PA_RISC returns correct results, however. */ if (CPU_IS_PA_RISC (cpu)) { switch (cpu) { case CPU_PA_RISC1_0: puts ("hppa1.0-hitachi-hiuxwe2"); break; case CPU_PA_RISC1_1: puts ("hppa1.1-hitachi-hiuxwe2"); break; case CPU_PA_RISC2_0: puts ("hppa2.0-hitachi-hiuxwe2"); break; default: puts ("hppa-hitachi-hiuxwe2"); break; } } else if (CPU_IS_HP_MC68K (cpu)) puts ("m68k-hitachi-hiuxwe2"); else puts ("unknown-hitachi-hiuxwe2"); exit (0); } EOF $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` && { echo "$SYSTEM_NAME"; exit; } echo unknown-hitachi-hiuxwe2 exit ;; 9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:* ) echo hppa1.1-hp-bsd exit ;; 9000/8??:4.3bsd:*:*) echo hppa1.0-hp-bsd exit ;; *9??*:MPE/iX:*:* | *3000*:MPE/iX:*:*) echo hppa1.0-hp-mpeix exit ;; hp7??:OSF1:*:* | hp8?[79]:OSF1:*:* ) echo hppa1.1-hp-osf exit ;; hp8??:OSF1:*:*) echo hppa1.0-hp-osf exit ;; i*86:OSF1:*:*) if [ -x /usr/sbin/sysversion ] ; then echo ${UNAME_MACHINE}-unknown-osf1mk else echo ${UNAME_MACHINE}-unknown-osf1 fi exit ;; parisc*:Lites*:*:*) echo hppa1.1-hp-lites exit ;; C1*:ConvexOS:*:* | convex:ConvexOS:C1*:*) echo c1-convex-bsd exit ;; C2*:ConvexOS:*:* | convex:ConvexOS:C2*:*) if getsysinfo -f scalar_acc then echo c32-convex-bsd else echo c2-convex-bsd fi exit ;; C34*:ConvexOS:*:* | convex:ConvexOS:C34*:*) echo c34-convex-bsd exit ;; C38*:ConvexOS:*:* | convex:ConvexOS:C38*:*) echo c38-convex-bsd exit ;; C4*:ConvexOS:*:* | convex:ConvexOS:C4*:*) echo c4-convex-bsd exit ;; CRAY*Y-MP:*:*:*) echo ymp-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; CRAY*[A-Z]90:*:*:*) echo ${UNAME_MACHINE}-cray-unicos${UNAME_RELEASE} \ | sed -e 's/CRAY.*\([A-Z]90\)/\1/' \ -e y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/ \ -e 's/\.[^.]*$/.X/' exit ;; CRAY*TS:*:*:*) echo t90-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; CRAY*T3E:*:*:*) echo alphaev5-cray-unicosmk${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; CRAY*SV1:*:*:*) echo sv1-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; *:UNICOS/mp:*:*) echo craynv-cray-unicosmp${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; F30[01]:UNIX_System_V:*:* | F700:UNIX_System_V:*:*) FUJITSU_PROC=`uname -m | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` FUJITSU_REL=`echo ${UNAME_RELEASE} | sed -e 's/ /_/'` echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" exit ;; 5000:UNIX_System_V:4.*:*) FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` FUJITSU_REL=`echo ${UNAME_RELEASE} | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/ /_/'` echo "sparc-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" exit ;; i*86:BSD/386:*:* | i*86:BSD/OS:*:* | *:Ascend\ Embedded/OS:*:*) echo ${UNAME_MACHINE}-pc-bsdi${UNAME_RELEASE} exit ;; sparc*:BSD/OS:*:*) echo sparc-unknown-bsdi${UNAME_RELEASE} exit ;; *:BSD/OS:*:*) echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE} exit ;; *:FreeBSD:*:*) UNAME_PROCESSOR=`/usr/bin/uname -p` case ${UNAME_PROCESSOR} in amd64) echo x86_64-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; *) echo ${UNAME_PROCESSOR}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; esac exit ;; i*:CYGWIN*:*) echo ${UNAME_MACHINE}-pc-cygwin exit ;; *:MINGW*:*) echo ${UNAME_MACHINE}-pc-mingw32 exit ;; i*:MSYS*:*) echo ${UNAME_MACHINE}-pc-msys exit ;; i*:windows32*:*) # uname -m includes "-pc" on this system. echo ${UNAME_MACHINE}-mingw32 exit ;; i*:PW*:*) echo ${UNAME_MACHINE}-pc-pw32 exit ;; *:Interix*:*) case ${UNAME_MACHINE} in x86) echo i586-pc-interix${UNAME_RELEASE} exit ;; authenticamd | genuineintel | EM64T) echo x86_64-unknown-interix${UNAME_RELEASE} exit ;; IA64) echo ia64-unknown-interix${UNAME_RELEASE} exit ;; esac ;; [345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*) echo i${UNAME_MACHINE}-pc-mks exit ;; 8664:Windows_NT:*) echo x86_64-pc-mks exit ;; i*:Windows_NT*:* | Pentium*:Windows_NT*:*) # How do we know it's Interix rather than the generic POSIX subsystem? # It also conflicts with pre-2.0 versions of AT&T UWIN. Should we # UNAME_MACHINE based on the output of uname instead of i386? echo i586-pc-interix exit ;; i*:UWIN*:*) echo ${UNAME_MACHINE}-pc-uwin exit ;; amd64:CYGWIN*:*:* | x86_64:CYGWIN*:*:*) echo x86_64-unknown-cygwin exit ;; p*:CYGWIN*:*) echo powerpcle-unknown-cygwin exit ;; prep*:SunOS:5.*:*) echo powerpcle-unknown-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; *:GNU:*:*) # the GNU system echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-gnu`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'` exit ;; *:GNU/*:*:*) # other systems with GNU libc and userland echo ${UNAME_MACHINE}-unknown-`echo ${UNAME_SYSTEM} | sed 's,^[^/]*/,,' | tr '[A-Z]' '[a-z]'``echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-gnu exit ;; i*86:Minix:*:*) echo ${UNAME_MACHINE}-pc-minix exit ;; aarch64:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; aarch64_be:Linux:*:*) UNAME_MACHINE=aarch64_be echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; alpha:Linux:*:*) case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in EV5) UNAME_MACHINE=alphaev5 ;; EV56) UNAME_MACHINE=alphaev56 ;; PCA56) UNAME_MACHINE=alphapca56 ;; PCA57) UNAME_MACHINE=alphapca56 ;; EV6) UNAME_MACHINE=alphaev6 ;; EV67) UNAME_MACHINE=alphaev67 ;; EV68*) UNAME_MACHINE=alphaev68 ;; esac objdump --private-headers /bin/sh | grep -q ld.so.1 if test "$?" = 0 ; then LIBC="libc1" ; else LIBC="" ; fi echo ${UNAME_MACHINE}-unknown-linux-gnu${LIBC} exit ;; arm*:Linux:*:*) eval $set_cc_for_build if echo __ARM_EABI__ | $CC_FOR_BUILD -E - 2>/dev/null \ | grep -q __ARM_EABI__ then echo ${UNAME_MACHINE}-unknown-linux-gnu else if echo __ARM_PCS_VFP | $CC_FOR_BUILD -E - 2>/dev/null \ | grep -q __ARM_PCS_VFP then echo ${UNAME_MACHINE}-unknown-linux-gnueabi else echo ${UNAME_MACHINE}-unknown-linux-gnueabihf fi fi exit ;; avr32*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; cris:Linux:*:*) echo ${UNAME_MACHINE}-axis-linux-gnu exit ;; crisv32:Linux:*:*) echo ${UNAME_MACHINE}-axis-linux-gnu exit ;; frv:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; hexagon:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; i*86:Linux:*:*) LIBC=gnu eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #ifdef __dietlibc__ LIBC=dietlibc #endif EOF eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^LIBC'` echo "${UNAME_MACHINE}-pc-linux-${LIBC}" exit ;; ia64:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; m32r*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; m68*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; mips:Linux:*:* | mips64:Linux:*:*) eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #undef CPU #undef ${UNAME_MACHINE} #undef ${UNAME_MACHINE}el #if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL) CPU=${UNAME_MACHINE}el #else #if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB) CPU=${UNAME_MACHINE} #else CPU= #endif #endif EOF eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^CPU'` test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; } ;; or32:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; padre:Linux:*:*) echo sparc-unknown-linux-gnu exit ;; parisc64:Linux:*:* | hppa64:Linux:*:*) echo hppa64-unknown-linux-gnu exit ;; parisc:Linux:*:* | hppa:Linux:*:*) # Look for CPU level case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in PA7*) echo hppa1.1-unknown-linux-gnu ;; PA8*) echo hppa2.0-unknown-linux-gnu ;; *) echo hppa-unknown-linux-gnu ;; esac exit ;; ppc64:Linux:*:*) echo powerpc64-unknown-linux-gnu exit ;; ppc:Linux:*:*) echo powerpc-unknown-linux-gnu exit ;; s390:Linux:*:* | s390x:Linux:*:*) echo ${UNAME_MACHINE}-ibm-linux exit ;; sh64*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; sh*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; sparc:Linux:*:* | sparc64:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; tile*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; vax:Linux:*:*) echo ${UNAME_MACHINE}-dec-linux-gnu exit ;; x86_64:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; xtensa*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; i*86:DYNIX/ptx:4*:*) # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there. # earlier versions are messed up and put the nodename in both # sysname and nodename. echo i386-sequent-sysv4 exit ;; i*86:UNIX_SV:4.2MP:2.*) # Unixware is an offshoot of SVR4, but it has its own version # number series starting with 2... # I am not positive that other SVR4 systems won't match this, # I just have to hope. -- rms. # Use sysv4.2uw... so that sysv4* matches it. echo ${UNAME_MACHINE}-pc-sysv4.2uw${UNAME_VERSION} exit ;; i*86:OS/2:*:*) # If we were able to find `uname', then EMX Unix compatibility # is probably installed. echo ${UNAME_MACHINE}-pc-os2-emx exit ;; i*86:XTS-300:*:STOP) echo ${UNAME_MACHINE}-unknown-stop exit ;; i*86:atheos:*:*) echo ${UNAME_MACHINE}-unknown-atheos exit ;; i*86:syllable:*:*) echo ${UNAME_MACHINE}-pc-syllable exit ;; i*86:LynxOS:2.*:* | i*86:LynxOS:3.[01]*:* | i*86:LynxOS:4.[02]*:*) echo i386-unknown-lynxos${UNAME_RELEASE} exit ;; i*86:*DOS:*:*) echo ${UNAME_MACHINE}-pc-msdosdjgpp exit ;; i*86:*:4.*:* | i*86:SYSTEM_V:4.*:*) UNAME_REL=`echo ${UNAME_RELEASE} | sed 's/\/MP$//'` if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then echo ${UNAME_MACHINE}-univel-sysv${UNAME_REL} else echo ${UNAME_MACHINE}-pc-sysv${UNAME_REL} fi exit ;; i*86:*:5:[678]*) # UnixWare 7.x, OpenUNIX and OpenServer 6. case `/bin/uname -X | grep "^Machine"` in *486*) UNAME_MACHINE=i486 ;; *Pentium) UNAME_MACHINE=i586 ;; *Pent*|*Celeron) UNAME_MACHINE=i686 ;; esac echo ${UNAME_MACHINE}-unknown-sysv${UNAME_RELEASE}${UNAME_SYSTEM}${UNAME_VERSION} exit ;; i*86:*:3.2:*) if test -f /usr/options/cb.name; then UNAME_REL=`sed -n 's/.*Version //p' /dev/null >/dev/null ; then UNAME_REL=`(/bin/uname -X|grep Release|sed -e 's/.*= //')` (/bin/uname -X|grep i80486 >/dev/null) && UNAME_MACHINE=i486 (/bin/uname -X|grep '^Machine.*Pentium' >/dev/null) \ && UNAME_MACHINE=i586 (/bin/uname -X|grep '^Machine.*Pent *II' >/dev/null) \ && UNAME_MACHINE=i686 (/bin/uname -X|grep '^Machine.*Pentium Pro' >/dev/null) \ && UNAME_MACHINE=i686 echo ${UNAME_MACHINE}-pc-sco$UNAME_REL else echo ${UNAME_MACHINE}-pc-sysv32 fi exit ;; pc:*:*:*) # Left here for compatibility: # uname -m prints for DJGPP always 'pc', but it prints nothing about # the processor, so we play safe by assuming i586. # Note: whatever this is, it MUST be the same as what config.sub # prints for the "djgpp" host, or else GDB configury will decide that # this is a cross-build. echo i586-pc-msdosdjgpp exit ;; Intel:Mach:3*:*) echo i386-pc-mach3 exit ;; paragon:*:*:*) echo i860-intel-osf1 exit ;; i860:*:4.*:*) # i860-SVR4 if grep Stardent /usr/include/sys/uadmin.h >/dev/null 2>&1 ; then echo i860-stardent-sysv${UNAME_RELEASE} # Stardent Vistra i860-SVR4 else # Add other i860-SVR4 vendors below as they are discovered. echo i860-unknown-sysv${UNAME_RELEASE} # Unknown i860-SVR4 fi exit ;; mini*:CTIX:SYS*5:*) # "miniframe" echo m68010-convergent-sysv exit ;; mc68k:UNIX:SYSTEM5:3.51m) echo m68k-convergent-sysv exit ;; M680?0:D-NIX:5.3:*) echo m68k-diab-dnix exit ;; M68*:*:R3V[5678]*:*) test -r /sysV68 && { echo 'm68k-motorola-sysv'; exit; } ;; 3[345]??:*:4.0:3.0 | 3[34]??A:*:4.0:3.0 | 3[34]??,*:*:4.0:3.0 | 3[34]??/*:*:4.0:3.0 | 4400:*:4.0:3.0 | 4850:*:4.0:3.0 | SKA40:*:4.0:3.0 | SDS2:*:4.0:3.0 | SHG2:*:4.0:3.0 | S7501*:*:4.0:3.0) OS_REL='' test -r /etc/.relid \ && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ && { echo i486-ncr-sysv4.3${OS_REL}; exit; } /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;; 3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*) /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ && { echo i486-ncr-sysv4; exit; } ;; NCR*:*:4.2:* | MPRAS*:*:4.2:*) OS_REL='.3' test -r /etc/.relid \ && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ && { echo i486-ncr-sysv4.3${OS_REL}; exit; } /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ && { echo i586-ncr-sysv4.3${OS_REL}; exit; } /bin/uname -p 2>/dev/null | /bin/grep pteron >/dev/null \ && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;; m68*:LynxOS:2.*:* | m68*:LynxOS:3.0*:*) echo m68k-unknown-lynxos${UNAME_RELEASE} exit ;; mc68030:UNIX_System_V:4.*:*) echo m68k-atari-sysv4 exit ;; TSUNAMI:LynxOS:2.*:*) echo sparc-unknown-lynxos${UNAME_RELEASE} exit ;; rs6000:LynxOS:2.*:*) echo rs6000-unknown-lynxos${UNAME_RELEASE} exit ;; PowerPC:LynxOS:2.*:* | PowerPC:LynxOS:3.[01]*:* | PowerPC:LynxOS:4.[02]*:*) echo powerpc-unknown-lynxos${UNAME_RELEASE} exit ;; SM[BE]S:UNIX_SV:*:*) echo mips-dde-sysv${UNAME_RELEASE} exit ;; RM*:ReliantUNIX-*:*:*) echo mips-sni-sysv4 exit ;; RM*:SINIX-*:*:*) echo mips-sni-sysv4 exit ;; *:SINIX-*:*:*) if uname -p 2>/dev/null >/dev/null ; then UNAME_MACHINE=`(uname -p) 2>/dev/null` echo ${UNAME_MACHINE}-sni-sysv4 else echo ns32k-sni-sysv fi exit ;; PENTIUM:*:4.0*:*) # Unisys `ClearPath HMP IX 4000' SVR4/MP effort # says echo i586-unisys-sysv4 exit ;; *:UNIX_System_V:4*:FTX*) # From Gerald Hewes . # How about differentiating between stratus architectures? -djm echo hppa1.1-stratus-sysv4 exit ;; *:*:*:FTX*) # From seanf@swdc.stratus.com. echo i860-stratus-sysv4 exit ;; i*86:VOS:*:*) # From Paul.Green@stratus.com. echo ${UNAME_MACHINE}-stratus-vos exit ;; *:VOS:*:*) # From Paul.Green@stratus.com. echo hppa1.1-stratus-vos exit ;; mc68*:A/UX:*:*) echo m68k-apple-aux${UNAME_RELEASE} exit ;; news*:NEWS-OS:6*:*) echo mips-sony-newsos6 exit ;; R[34]000:*System_V*:*:* | R4000:UNIX_SYSV:*:* | R*000:UNIX_SV:*:*) if [ -d /usr/nec ]; then echo mips-nec-sysv${UNAME_RELEASE} else echo mips-unknown-sysv${UNAME_RELEASE} fi exit ;; BeBox:BeOS:*:*) # BeOS running on hardware made by Be, PPC only. echo powerpc-be-beos exit ;; BeMac:BeOS:*:*) # BeOS running on Mac or Mac clone, PPC only. echo powerpc-apple-beos exit ;; BePC:BeOS:*:*) # BeOS running on Intel PC compatible. echo i586-pc-beos exit ;; BePC:Haiku:*:*) # Haiku running on Intel PC compatible. echo i586-pc-haiku exit ;; SX-4:SUPER-UX:*:*) echo sx4-nec-superux${UNAME_RELEASE} exit ;; SX-5:SUPER-UX:*:*) echo sx5-nec-superux${UNAME_RELEASE} exit ;; SX-6:SUPER-UX:*:*) echo sx6-nec-superux${UNAME_RELEASE} exit ;; SX-7:SUPER-UX:*:*) echo sx7-nec-superux${UNAME_RELEASE} exit ;; SX-8:SUPER-UX:*:*) echo sx8-nec-superux${UNAME_RELEASE} exit ;; SX-8R:SUPER-UX:*:*) echo sx8r-nec-superux${UNAME_RELEASE} exit ;; Power*:Rhapsody:*:*) echo powerpc-apple-rhapsody${UNAME_RELEASE} exit ;; *:Rhapsody:*:*) echo ${UNAME_MACHINE}-apple-rhapsody${UNAME_RELEASE} exit ;; *:Darwin:*:*) UNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown case $UNAME_PROCESSOR in i386) eval $set_cc_for_build if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then if (echo '#ifdef __LP64__'; echo IS_64BIT_ARCH; echo '#endif') | \ (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \ grep IS_64BIT_ARCH >/dev/null then UNAME_PROCESSOR="x86_64" fi fi ;; unknown) UNAME_PROCESSOR=powerpc ;; esac echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE} exit ;; *:procnto*:*:* | *:QNX:[0123456789]*:*) UNAME_PROCESSOR=`uname -p` if test "$UNAME_PROCESSOR" = "x86"; then UNAME_PROCESSOR=i386 UNAME_MACHINE=pc fi echo ${UNAME_PROCESSOR}-${UNAME_MACHINE}-nto-qnx${UNAME_RELEASE} exit ;; *:QNX:*:4*) echo i386-pc-qnx exit ;; NEO-?:NONSTOP_KERNEL:*:*) echo neo-tandem-nsk${UNAME_RELEASE} exit ;; NSE-?:NONSTOP_KERNEL:*:*) echo nse-tandem-nsk${UNAME_RELEASE} exit ;; NSR-?:NONSTOP_KERNEL:*:*) echo nsr-tandem-nsk${UNAME_RELEASE} exit ;; *:NonStop-UX:*:*) echo mips-compaq-nonstopux exit ;; BS2000:POSIX*:*:*) echo bs2000-siemens-sysv exit ;; DS/*:UNIX_System_V:*:*) echo ${UNAME_MACHINE}-${UNAME_SYSTEM}-${UNAME_RELEASE} exit ;; *:Plan9:*:*) # "uname -m" is not consistent, so use $cputype instead. 386 # is converted to i386 for consistency with other x86 # operating systems. if test "$cputype" = "386"; then UNAME_MACHINE=i386 else UNAME_MACHINE="$cputype" fi echo ${UNAME_MACHINE}-unknown-plan9 exit ;; *:TOPS-10:*:*) echo pdp10-unknown-tops10 exit ;; *:TENEX:*:*) echo pdp10-unknown-tenex exit ;; KS10:TOPS-20:*:* | KL10:TOPS-20:*:* | TYPE4:TOPS-20:*:*) echo pdp10-dec-tops20 exit ;; XKL-1:TOPS-20:*:* | TYPE5:TOPS-20:*:*) echo pdp10-xkl-tops20 exit ;; *:TOPS-20:*:*) echo pdp10-unknown-tops20 exit ;; *:ITS:*:*) echo pdp10-unknown-its exit ;; SEI:*:*:SEIUX) echo mips-sei-seiux${UNAME_RELEASE} exit ;; *:DragonFly:*:*) echo ${UNAME_MACHINE}-unknown-dragonfly`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` exit ;; *:*VMS:*:*) UNAME_MACHINE=`(uname -p) 2>/dev/null` case "${UNAME_MACHINE}" in A*) echo alpha-dec-vms ; exit ;; I*) echo ia64-dec-vms ; exit ;; V*) echo vax-dec-vms ; exit ;; esac ;; *:XENIX:*:SysV) echo i386-pc-xenix exit ;; i*86:skyos:*:*) echo ${UNAME_MACHINE}-pc-skyos`echo ${UNAME_RELEASE}` | sed -e 's/ .*$//' exit ;; i*86:rdos:*:*) echo ${UNAME_MACHINE}-pc-rdos exit ;; i*86:AROS:*:*) echo ${UNAME_MACHINE}-pc-aros exit ;; x86_64:VMkernel:*:*) echo ${UNAME_MACHINE}-unknown-esx exit ;; esac #echo '(No uname command or uname output not recognized.)' 1>&2 #echo "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" 1>&2 eval $set_cc_for_build cat >$dummy.c < # include #endif main () { #if defined (sony) #if defined (MIPSEB) /* BFD wants "bsd" instead of "newsos". Perhaps BFD should be changed, I don't know.... */ printf ("mips-sony-bsd\n"); exit (0); #else #include printf ("m68k-sony-newsos%s\n", #ifdef NEWSOS4 "4" #else "" #endif ); exit (0); #endif #endif #if defined (__arm) && defined (__acorn) && defined (__unix) printf ("arm-acorn-riscix\n"); exit (0); #endif #if defined (hp300) && !defined (hpux) printf ("m68k-hp-bsd\n"); exit (0); #endif #if defined (NeXT) #if !defined (__ARCHITECTURE__) #define __ARCHITECTURE__ "m68k" #endif int version; version=`(hostinfo | sed -n 's/.*NeXT Mach \([0-9]*\).*/\1/p') 2>/dev/null`; if (version < 4) printf ("%s-next-nextstep%d\n", __ARCHITECTURE__, version); else printf ("%s-next-openstep%d\n", __ARCHITECTURE__, version); exit (0); #endif #if defined (MULTIMAX) || defined (n16) #if defined (UMAXV) printf ("ns32k-encore-sysv\n"); exit (0); #else #if defined (CMU) printf ("ns32k-encore-mach\n"); exit (0); #else printf ("ns32k-encore-bsd\n"); exit (0); #endif #endif #endif #if defined (__386BSD__) printf ("i386-pc-bsd\n"); exit (0); #endif #if defined (sequent) #if defined (i386) printf ("i386-sequent-dynix\n"); exit (0); #endif #if defined (ns32000) printf ("ns32k-sequent-dynix\n"); exit (0); #endif #endif #if defined (_SEQUENT_) struct utsname un; uname(&un); if (strncmp(un.version, "V2", 2) == 0) { printf ("i386-sequent-ptx2\n"); exit (0); } if (strncmp(un.version, "V1", 2) == 0) { /* XXX is V1 correct? */ printf ("i386-sequent-ptx1\n"); exit (0); } printf ("i386-sequent-ptx\n"); exit (0); #endif #if defined (vax) # if !defined (ultrix) # include # if defined (BSD) # if BSD == 43 printf ("vax-dec-bsd4.3\n"); exit (0); # else # if BSD == 199006 printf ("vax-dec-bsd4.3reno\n"); exit (0); # else printf ("vax-dec-bsd\n"); exit (0); # endif # endif # else printf ("vax-dec-bsd\n"); exit (0); # endif # else printf ("vax-dec-ultrix\n"); exit (0); # endif #endif #if defined (alliant) && defined (i860) printf ("i860-alliant-bsd\n"); exit (0); #endif exit (1); } EOF $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null && SYSTEM_NAME=`$dummy` && { echo "$SYSTEM_NAME"; exit; } # Apollos put the system type in the environment. test -d /usr/apollo && { echo ${ISP}-apollo-${SYSTYPE}; exit; } # Convex versions that predate uname can use getsysinfo(1) if [ -x /usr/convex/getsysinfo ] then case `getsysinfo -f cpu_type` in c1*) echo c1-convex-bsd exit ;; c2*) if getsysinfo -f scalar_acc then echo c32-convex-bsd else echo c2-convex-bsd fi exit ;; c34*) echo c34-convex-bsd exit ;; c38*) echo c38-convex-bsd exit ;; c4*) echo c4-convex-bsd exit ;; esac fi cat >&2 < in order to provide the needed information to handle your system. config.guess timestamp = $timestamp uname -m = `(uname -m) 2>/dev/null || echo unknown` uname -r = `(uname -r) 2>/dev/null || echo unknown` uname -s = `(uname -s) 2>/dev/null || echo unknown` uname -v = `(uname -v) 2>/dev/null || echo unknown` /usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null` /bin/uname -X = `(/bin/uname -X) 2>/dev/null` hostinfo = `(hostinfo) 2>/dev/null` /bin/universe = `(/bin/universe) 2>/dev/null` /usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null` /bin/arch = `(/bin/arch) 2>/dev/null` /usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null` /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null` UNAME_MACHINE = ${UNAME_MACHINE} UNAME_RELEASE = ${UNAME_RELEASE} UNAME_SYSTEM = ${UNAME_SYSTEM} UNAME_VERSION = ${UNAME_VERSION} EOF exit 1 # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "timestamp='" # time-stamp-format: "%:y-%02m-%02d" # time-stamp-end: "'" # End: toilet-0.3/.auto/compile0000755000175000017500000001533711737655633012232 00000000000000#! /bin/sh # Wrapper for compilers which do not understand '-c -o'. scriptversion=2012-01-04.17; # UTC # Copyright (C) 1999, 2000, 2003, 2004, 2005, 2009, 2010, 2012 Free # Software Foundation, Inc. # Written by Tom Tromey . # # 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, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # This file is maintained in Automake, please report # bugs to or send patches to # . nl=' ' # We need space, tab and new line, in precisely that order. Quoting is # there to prevent tools from complaining about whitespace usage. IFS=" "" $nl" file_conv= # func_file_conv build_file lazy # Convert a $build file to $host form and store it in $file # Currently only supports Windows hosts. If the determined conversion # type is listed in (the comma separated) LAZY, no conversion will # take place. func_file_conv () { file=$1 case $file in / | /[!/]*) # absolute file, and not a UNC file if test -z "$file_conv"; then # lazily determine how to convert abs files case `uname -s` in MINGW*) file_conv=mingw ;; CYGWIN*) file_conv=cygwin ;; *) file_conv=wine ;; esac fi case $file_conv/,$2, in *,$file_conv,*) ;; mingw/*) file=`cmd //C echo "$file " | sed -e 's/"\(.*\) " *$/\1/'` ;; cygwin/*) file=`cygpath -m "$file" || echo "$file"` ;; wine/*) file=`winepath -w "$file" || echo "$file"` ;; esac ;; esac } # func_cl_wrapper cl arg... # Adjust compile command to suit cl func_cl_wrapper () { # Assume a capable shell lib_path= shared=: linker_opts= for arg do if test -n "$eat"; then eat= else case $1 in -o) # configure might choose to run compile as 'compile cc -o foo foo.c'. eat=1 case $2 in *.o | *.[oO][bB][jJ]) func_file_conv "$2" set x "$@" -Fo"$file" shift ;; *) func_file_conv "$2" set x "$@" -Fe"$file" shift ;; esac ;; -I*) func_file_conv "${1#-I}" mingw set x "$@" -I"$file" shift ;; -l*) lib=${1#-l} found=no save_IFS=$IFS IFS=';' for dir in $lib_path $LIB do IFS=$save_IFS if $shared && test -f "$dir/$lib.dll.lib"; then found=yes set x "$@" "$dir/$lib.dll.lib" break fi if test -f "$dir/$lib.lib"; then found=yes set x "$@" "$dir/$lib.lib" break fi done IFS=$save_IFS test "$found" != yes && set x "$@" "$lib.lib" shift ;; -L*) func_file_conv "${1#-L}" if test -z "$lib_path"; then lib_path=$file else lib_path="$lib_path;$file" fi linker_opts="$linker_opts -LIBPATH:$file" ;; -static) shared=false ;; -Wl,*) arg=${1#-Wl,} save_ifs="$IFS"; IFS=',' for flag in $arg; do IFS="$save_ifs" linker_opts="$linker_opts $flag" done IFS="$save_ifs" ;; -Xlinker) eat=1 linker_opts="$linker_opts $2" ;; -*) set x "$@" "$1" shift ;; *.cc | *.CC | *.cxx | *.CXX | *.[cC]++) func_file_conv "$1" set x "$@" -Tp"$file" shift ;; *.c | *.cpp | *.CPP | *.lib | *.LIB | *.Lib | *.OBJ | *.obj | *.[oO]) func_file_conv "$1" mingw set x "$@" "$file" shift ;; *) set x "$@" "$1" shift ;; esac fi shift done if test -n "$linker_opts"; then linker_opts="-link$linker_opts" fi exec "$@" $linker_opts exit 1 } eat= case $1 in '') echo "$0: No command. Try '$0 --help' for more information." 1>&2 exit 1; ;; -h | --h*) cat <<\EOF Usage: compile [--help] [--version] PROGRAM [ARGS] Wrapper for compilers which do not understand '-c -o'. Remove '-o dest.o' from ARGS, run PROGRAM with the remaining arguments, and rename the output as expected. If you are trying to build a whole package this is not the right script to run: please start by reading the file 'INSTALL'. Report bugs to . EOF exit $? ;; -v | --v*) echo "compile $scriptversion" exit $? ;; cl | *[/\\]cl | cl.exe | *[/\\]cl.exe ) func_cl_wrapper "$@" # Doesn't return... ;; esac ofile= cfile= for arg do if test -n "$eat"; then eat= else case $1 in -o) # configure might choose to run compile as 'compile cc -o foo foo.c'. # So we strip '-o arg' only if arg is an object. eat=1 case $2 in *.o | *.obj) ofile=$2 ;; *) set x "$@" -o "$2" shift ;; esac ;; *.c) cfile=$1 set x "$@" "$1" shift ;; *) set x "$@" "$1" shift ;; esac fi shift done if test -z "$ofile" || test -z "$cfile"; then # If no '-o' option was seen then we might have been invoked from a # pattern rule where we don't need one. That is ok -- this is a # normal compilation that the losing compiler can handle. If no # '.c' file was seen then we are probably linking. That is also # ok. exec "$@" fi # Name of file we expect compiler to create. cofile=`echo "$cfile" | sed 's|^.*[\\/]||; s|^[a-zA-Z]:||; s/\.c$/.o/'` # Create the lock directory. # Note: use '[/\\:.-]' here to ensure that we don't use the same name # that we are using for the .o file. Also, base the name on the expected # object file name, since that is what matters with a parallel build. lockdir=`echo "$cofile" | sed -e 's|[/\\:.-]|_|g'`.d while true; do if mkdir "$lockdir" >/dev/null 2>&1; then break fi sleep 1 done # FIXME: race condition here if user kills between mkdir and trap. trap "rmdir '$lockdir'; exit 1" 1 2 15 # Run the compile. "$@" ret=$? if test -f "$cofile"; then test "$cofile" = "$ofile" || mv "$cofile" "$ofile" elif test -f "${cofile}bj"; then test "${cofile}bj" = "$ofile" || mv "${cofile}bj" "$ofile" fi rmdir "$lockdir" exit $ret # Local Variables: # mode: shell-script # sh-indentation: 2 # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC" # time-stamp-end: "; # UTC" # End: toilet-0.3/.auto/install-sh0000755000175000017500000003325611737655633012660 00000000000000#!/bin/sh # install - install a program, script, or datafile scriptversion=2011-01-19.21; # UTC # This originates from X11R5 (mit/util/scripts/install.sh), which was # later released in X11R6 (xc/config/util/install.sh) with the # following copyright and license. # # Copyright (C) 1994 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 CONNEC- # TION 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 deal- # ings in this Software without prior written authorization from the X Consor- # tium. # # # FSF changes to this file are in the public domain. # # Calling this script install-sh is preferred over install.sh, to prevent # `make' implicit rules from creating a file called install from it # when there is no Makefile. # # This script is compatible with the BSD install script, but was written # from scratch. nl=' ' IFS=" "" $nl" # set DOITPROG to echo to test this script # Don't use :- since 4.3BSD and earlier shells don't like it. doit=${DOITPROG-} if test -z "$doit"; then doit_exec=exec else doit_exec=$doit fi # Put in absolute file names if you don't have them in your path; # or use environment vars. chgrpprog=${CHGRPPROG-chgrp} chmodprog=${CHMODPROG-chmod} chownprog=${CHOWNPROG-chown} cmpprog=${CMPPROG-cmp} cpprog=${CPPROG-cp} mkdirprog=${MKDIRPROG-mkdir} mvprog=${MVPROG-mv} rmprog=${RMPROG-rm} stripprog=${STRIPPROG-strip} posix_glob='?' initialize_posix_glob=' test "$posix_glob" != "?" || { if (set -f) 2>/dev/null; then posix_glob= else posix_glob=: fi } ' posix_mkdir= # Desired mode of installed file. mode=0755 chgrpcmd= chmodcmd=$chmodprog chowncmd= mvcmd=$mvprog rmcmd="$rmprog -f" stripcmd= src= dst= dir_arg= dst_arg= copy_on_change=false no_target_directory= usage="\ Usage: $0 [OPTION]... [-T] SRCFILE DSTFILE or: $0 [OPTION]... SRCFILES... DIRECTORY or: $0 [OPTION]... -t DIRECTORY SRCFILES... or: $0 [OPTION]... -d DIRECTORIES... In the 1st form, copy SRCFILE to DSTFILE. In the 2nd and 3rd, copy all SRCFILES to DIRECTORY. In the 4th, create DIRECTORIES. Options: --help display this help and exit. --version display version info and exit. -c (ignored) -C install only if different (preserve the last data modification time) -d create directories instead of installing files. -g GROUP $chgrpprog installed files to GROUP. -m MODE $chmodprog installed files to MODE. -o USER $chownprog installed files to USER. -s $stripprog installed files. -t DIRECTORY install into DIRECTORY. -T report an error if DSTFILE is a directory. Environment variables override the default commands: CHGRPPROG CHMODPROG CHOWNPROG CMPPROG CPPROG MKDIRPROG MVPROG RMPROG STRIPPROG " while test $# -ne 0; do case $1 in -c) ;; -C) copy_on_change=true;; -d) dir_arg=true;; -g) chgrpcmd="$chgrpprog $2" shift;; --help) echo "$usage"; exit $?;; -m) mode=$2 case $mode in *' '* | *' '* | *' '* | *'*'* | *'?'* | *'['*) echo "$0: invalid mode: $mode" >&2 exit 1;; esac shift;; -o) chowncmd="$chownprog $2" shift;; -s) stripcmd=$stripprog;; -t) dst_arg=$2 # Protect names problematic for `test' and other utilities. case $dst_arg in -* | [=\(\)!]) dst_arg=./$dst_arg;; esac shift;; -T) no_target_directory=true;; --version) echo "$0 $scriptversion"; exit $?;; --) shift break;; -*) echo "$0: invalid option: $1" >&2 exit 1;; *) break;; esac shift done if test $# -ne 0 && test -z "$dir_arg$dst_arg"; then # When -d is used, all remaining arguments are directories to create. # When -t is used, the destination is already specified. # Otherwise, the last argument is the destination. Remove it from $@. for arg do if test -n "$dst_arg"; then # $@ is not empty: it contains at least $arg. set fnord "$@" "$dst_arg" shift # fnord fi shift # arg dst_arg=$arg # Protect names problematic for `test' and other utilities. case $dst_arg in -* | [=\(\)!]) dst_arg=./$dst_arg;; esac done fi if test $# -eq 0; then if test -z "$dir_arg"; then echo "$0: no input file specified." >&2 exit 1 fi # It's OK to call `install-sh -d' without argument. # This can happen when creating conditional directories. exit 0 fi if test -z "$dir_arg"; then do_exit='(exit $ret); exit $ret' trap "ret=129; $do_exit" 1 trap "ret=130; $do_exit" 2 trap "ret=141; $do_exit" 13 trap "ret=143; $do_exit" 15 # Set umask so as not to create temps with too-generous modes. # However, 'strip' requires both read and write access to temps. case $mode in # Optimize common cases. *644) cp_umask=133;; *755) cp_umask=22;; *[0-7]) if test -z "$stripcmd"; then u_plus_rw= else u_plus_rw='% 200' fi cp_umask=`expr '(' 777 - $mode % 1000 ')' $u_plus_rw`;; *) if test -z "$stripcmd"; then u_plus_rw= else u_plus_rw=,u+rw fi cp_umask=$mode$u_plus_rw;; esac fi for src do # Protect names problematic for `test' and other utilities. case $src in -* | [=\(\)!]) src=./$src;; esac if test -n "$dir_arg"; then dst=$src dstdir=$dst test -d "$dstdir" dstdir_status=$? else # Waiting for this to be detected by the "$cpprog $src $dsttmp" command # might cause directories to be created, which would be especially bad # if $src (and thus $dsttmp) contains '*'. if test ! -f "$src" && test ! -d "$src"; then echo "$0: $src does not exist." >&2 exit 1 fi if test -z "$dst_arg"; then echo "$0: no destination specified." >&2 exit 1 fi dst=$dst_arg # If destination is a directory, append the input filename; won't work # if double slashes aren't ignored. if test -d "$dst"; then if test -n "$no_target_directory"; then echo "$0: $dst_arg: Is a directory" >&2 exit 1 fi dstdir=$dst dst=$dstdir/`basename "$src"` dstdir_status=0 else # Prefer dirname, but fall back on a substitute if dirname fails. dstdir=` (dirname "$dst") 2>/dev/null || expr X"$dst" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$dst" : 'X\(//\)[^/]' \| \ X"$dst" : 'X\(//\)$' \| \ X"$dst" : 'X\(/\)' \| . 2>/dev/null || echo X"$dst" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q' ` test -d "$dstdir" dstdir_status=$? fi fi obsolete_mkdir_used=false if test $dstdir_status != 0; then case $posix_mkdir in '') # Create intermediate dirs using mode 755 as modified by the umask. # This is like FreeBSD 'install' as of 1997-10-28. umask=`umask` case $stripcmd.$umask in # Optimize common cases. *[2367][2367]) mkdir_umask=$umask;; .*0[02][02] | .[02][02] | .[02]) mkdir_umask=22;; *[0-7]) mkdir_umask=`expr $umask + 22 \ - $umask % 100 % 40 + $umask % 20 \ - $umask % 10 % 4 + $umask % 2 `;; *) mkdir_umask=$umask,go-w;; esac # With -d, create the new directory with the user-specified mode. # Otherwise, rely on $mkdir_umask. if test -n "$dir_arg"; then mkdir_mode=-m$mode else mkdir_mode= fi posix_mkdir=false case $umask in *[123567][0-7][0-7]) # POSIX mkdir -p sets u+wx bits regardless of umask, which # is incompatible with FreeBSD 'install' when (umask & 300) != 0. ;; *) tmpdir=${TMPDIR-/tmp}/ins$RANDOM-$$ trap 'ret=$?; rmdir "$tmpdir/d" "$tmpdir" 2>/dev/null; exit $ret' 0 if (umask $mkdir_umask && exec $mkdirprog $mkdir_mode -p -- "$tmpdir/d") >/dev/null 2>&1 then if test -z "$dir_arg" || { # Check for POSIX incompatibilities with -m. # HP-UX 11.23 and IRIX 6.5 mkdir -m -p sets group- or # other-writeable bit of parent directory when it shouldn't. # FreeBSD 6.1 mkdir -m -p sets mode of existing directory. ls_ld_tmpdir=`ls -ld "$tmpdir"` case $ls_ld_tmpdir in d????-?r-*) different_mode=700;; d????-?--*) different_mode=755;; *) false;; esac && $mkdirprog -m$different_mode -p -- "$tmpdir" && { ls_ld_tmpdir_1=`ls -ld "$tmpdir"` test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1" } } then posix_mkdir=: fi rmdir "$tmpdir/d" "$tmpdir" else # Remove any dirs left behind by ancient mkdir implementations. rmdir ./$mkdir_mode ./-p ./-- 2>/dev/null fi trap '' 0;; esac;; esac if $posix_mkdir && ( umask $mkdir_umask && $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir" ) then : else # The umask is ridiculous, or mkdir does not conform to POSIX, # or it failed possibly due to a race condition. Create the # directory the slow way, step by step, checking for races as we go. case $dstdir in /*) prefix='/';; [-=\(\)!]*) prefix='./';; *) prefix='';; esac eval "$initialize_posix_glob" oIFS=$IFS IFS=/ $posix_glob set -f set fnord $dstdir shift $posix_glob set +f IFS=$oIFS prefixes= for d do test X"$d" = X && continue prefix=$prefix$d if test -d "$prefix"; then prefixes= else if $posix_mkdir; then (umask=$mkdir_umask && $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir") && break # Don't fail if two instances are running concurrently. test -d "$prefix" || exit 1 else case $prefix in *\'*) qprefix=`echo "$prefix" | sed "s/'/'\\\\\\\\''/g"`;; *) qprefix=$prefix;; esac prefixes="$prefixes '$qprefix'" fi fi prefix=$prefix/ done if test -n "$prefixes"; then # Don't fail if two instances are running concurrently. (umask $mkdir_umask && eval "\$doit_exec \$mkdirprog $prefixes") || test -d "$dstdir" || exit 1 obsolete_mkdir_used=true fi fi fi if test -n "$dir_arg"; then { test -z "$chowncmd" || $doit $chowncmd "$dst"; } && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dst"; } && { test "$obsolete_mkdir_used$chowncmd$chgrpcmd" = false || test -z "$chmodcmd" || $doit $chmodcmd $mode "$dst"; } || exit 1 else # Make a couple of temp file names in the proper directory. dsttmp=$dstdir/_inst.$$_ rmtmp=$dstdir/_rm.$$_ # Trap to clean up those temp files at exit. trap 'ret=$?; rm -f "$dsttmp" "$rmtmp" && exit $ret' 0 # Copy the file name to the temp name. (umask $cp_umask && $doit_exec $cpprog "$src" "$dsttmp") && # and set any options; do chmod last to preserve setuid bits. # # If any of these fail, we abort the whole thing. If we want to # ignore errors from any of these, just make sure not to ignore # errors from the above "$doit $cpprog $src $dsttmp" command. # { test -z "$chowncmd" || $doit $chowncmd "$dsttmp"; } && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dsttmp"; } && { test -z "$stripcmd" || $doit $stripcmd "$dsttmp"; } && { test -z "$chmodcmd" || $doit $chmodcmd $mode "$dsttmp"; } && # If -C, don't bother to copy if it wouldn't change the file. if $copy_on_change && old=`LC_ALL=C ls -dlL "$dst" 2>/dev/null` && new=`LC_ALL=C ls -dlL "$dsttmp" 2>/dev/null` && eval "$initialize_posix_glob" && $posix_glob set -f && set X $old && old=:$2:$4:$5:$6 && set X $new && new=:$2:$4:$5:$6 && $posix_glob set +f && test "$old" = "$new" && $cmpprog "$dst" "$dsttmp" >/dev/null 2>&1 then rm -f "$dsttmp" else # Rename the file to the real destination. $doit $mvcmd -f "$dsttmp" "$dst" 2>/dev/null || # The rename failed, perhaps because mv can't rename something else # to itself, or perhaps because mv is so ancient that it does not # support -f. { # Now remove or move aside any old file at destination location. # We try this two ways since rm can't unlink itself on some # systems and the destination file might be busy for other # reasons. In this case, the final cleanup might fail but the new # file should still install successfully. { test ! -f "$dst" || $doit $rmcmd -f "$dst" 2>/dev/null || { $doit $mvcmd -f "$dst" "$rmtmp" 2>/dev/null && { $doit $rmcmd -f "$rmtmp" 2>/dev/null; :; } } || { echo "$0: cannot unlink or rename $dst" >&2 (exit 1); exit 1 } } && # Now rename the file to the real destination. $doit $mvcmd "$dsttmp" "$dst" } fi || exit 1 trap '' 0 fi done # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC" # time-stamp-end: "; # UTC" # End: toilet-0.3/.auto/depcomp0000755000175000017500000004755611737655633012241 00000000000000#! /bin/sh # depcomp - compile a program generating dependencies as side-effects scriptversion=2011-12-04.11; # UTC # Copyright (C) 1999, 2000, 2003, 2004, 2005, 2006, 2007, 2009, 2010, # 2011 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, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # Originally written by Alexandre Oliva . case $1 in '') echo "$0: No command. Try \`$0 --help' for more information." 1>&2 exit 1; ;; -h | --h*) cat <<\EOF Usage: depcomp [--help] [--version] PROGRAM [ARGS] Run PROGRAMS ARGS to compile a file, generating dependencies as side-effects. Environment variables: depmode Dependency tracking mode. source Source file read by `PROGRAMS ARGS'. object Object file output by `PROGRAMS ARGS'. DEPDIR directory where to store dependencies. depfile Dependency file to output. tmpdepfile Temporary file to use when outputting dependencies. libtool Whether libtool is used (yes/no). Report bugs to . EOF exit $? ;; -v | --v*) echo "depcomp $scriptversion" exit $? ;; esac if test -z "$depmode" || test -z "$source" || test -z "$object"; then echo "depcomp: Variables source, object and depmode must be set" 1>&2 exit 1 fi # Dependencies for sub/bar.o or sub/bar.obj go into sub/.deps/bar.Po. depfile=${depfile-`echo "$object" | sed 's|[^\\/]*$|'${DEPDIR-.deps}'/&|;s|\.\([^.]*\)$|.P\1|;s|Pobj$|Po|'`} tmpdepfile=${tmpdepfile-`echo "$depfile" | sed 's/\.\([^.]*\)$/.T\1/'`} rm -f "$tmpdepfile" # Some modes work just like other modes, but use different flags. We # parameterize here, but still list the modes in the big case below, # to make depend.m4 easier to write. Note that we *cannot* use a case # here, because this file can only contain one case statement. if test "$depmode" = hp; then # HP compiler uses -M and no extra arg. gccflag=-M depmode=gcc fi if test "$depmode" = dashXmstdout; then # This is just like dashmstdout with a different argument. dashmflag=-xM depmode=dashmstdout fi cygpath_u="cygpath -u -f -" if test "$depmode" = msvcmsys; then # This is just like msvisualcpp but w/o cygpath translation. # Just convert the backslash-escaped backslashes to single forward # slashes to satisfy depend.m4 cygpath_u='sed s,\\\\,/,g' depmode=msvisualcpp fi if test "$depmode" = msvc7msys; then # This is just like msvc7 but w/o cygpath translation. # Just convert the backslash-escaped backslashes to single forward # slashes to satisfy depend.m4 cygpath_u='sed s,\\\\,/,g' depmode=msvc7 fi case "$depmode" in gcc3) ## gcc 3 implements dependency tracking that does exactly what ## we want. Yay! Note: for some reason libtool 1.4 doesn't like ## it if -MD -MP comes after the -MF stuff. Hmm. ## Unfortunately, FreeBSD c89 acceptance of flags depends upon ## the command line argument order; so add the flags where they ## appear in depend2.am. Note that the slowdown incurred here ## affects only configure: in makefiles, %FASTDEP% shortcuts this. for arg do case $arg in -c) set fnord "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" "$arg" ;; *) set fnord "$@" "$arg" ;; esac shift # fnord shift # $arg done "$@" stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile" exit $stat fi mv "$tmpdepfile" "$depfile" ;; gcc) ## There are various ways to get dependency output from gcc. Here's ## why we pick this rather obscure method: ## - Don't want to use -MD because we'd like the dependencies to end ## up in a subdir. Having to rename by hand is ugly. ## (We might end up doing this anyway to support other compilers.) ## - The DEPENDENCIES_OUTPUT environment variable makes gcc act like ## -MM, not -M (despite what the docs say). ## - Using -M directly means running the compiler twice (even worse ## than renaming). if test -z "$gccflag"; then gccflag=-MD, fi "$@" -Wp,"$gccflag$tmpdepfile" stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" echo "$object : \\" > "$depfile" alpha=ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz ## The second -e expression handles DOS-style file names with drive letters. sed -e 's/^[^:]*: / /' \ -e 's/^['$alpha']:\/[^:]*: / /' < "$tmpdepfile" >> "$depfile" ## This next piece of magic avoids the `deleted header file' problem. ## The problem is that when a header file which appears in a .P file ## is deleted, the dependency causes make to die (because there is ## typically no way to rebuild the header). We avoid this by adding ## dummy dependencies for each header file. Too bad gcc doesn't do ## this for us directly. tr ' ' ' ' < "$tmpdepfile" | ## Some versions of gcc put a space before the `:'. On the theory ## that the space means something, we add a space to the output as ## well. hp depmode also adds that space, but also prefixes the VPATH ## to the object. Take care to not repeat it in the output. ## Some versions of the HPUX 10.20 sed can't process this invocation ## correctly. Breaking it into two sed invocations is a workaround. sed -e 's/^\\$//' -e '/^$/d' -e "s|.*$object$||" -e '/:$/d' \ | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; hp) # This case exists only to let depend.m4 do its work. It works by # looking at the text of this script. This case will never be run, # since it is checked for above. exit 1 ;; sgi) if test "$libtool" = yes; then "$@" "-Wp,-MDupdate,$tmpdepfile" else "$@" -MDupdate "$tmpdepfile" fi stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" if test -f "$tmpdepfile"; then # yes, the sourcefile depend on other files echo "$object : \\" > "$depfile" # Clip off the initial element (the dependent). Don't try to be # clever and replace this with sed code, as IRIX sed won't handle # lines with more than a fixed number of characters (4096 in # IRIX 6.2 sed, 8192 in IRIX 6.5). We also remove comment lines; # the IRIX cc adds comments like `#:fec' to the end of the # dependency line. tr ' ' ' ' < "$tmpdepfile" \ | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' | \ tr ' ' ' ' >> "$depfile" echo >> "$depfile" # The second pass generates a dummy entry for each header file. tr ' ' ' ' < "$tmpdepfile" \ | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' -e 's/$/:/' \ >> "$depfile" else # The sourcefile does not contain any dependencies, so just # store a dummy comment line, to avoid errors with the Makefile # "include basename.Plo" scheme. echo "#dummy" > "$depfile" fi rm -f "$tmpdepfile" ;; aix) # The C for AIX Compiler uses -M and outputs the dependencies # in a .u file. In older versions, this file always lives in the # current directory. Also, the AIX compiler puts `$object:' at the # start of each line; $object doesn't have directory information. # Version 6 uses the directory in both cases. dir=`echo "$object" | sed -e 's|/[^/]*$|/|'` test "x$dir" = "x$object" && dir= base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'` if test "$libtool" = yes; then tmpdepfile1=$dir$base.u tmpdepfile2=$base.u tmpdepfile3=$dir.libs/$base.u "$@" -Wc,-M else tmpdepfile1=$dir$base.u tmpdepfile2=$dir$base.u tmpdepfile3=$dir$base.u "$@" -M fi stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" exit $stat fi for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" do test -f "$tmpdepfile" && break done if test -f "$tmpdepfile"; then # Each line is of the form `foo.o: dependent.h'. # Do two passes, one to just change these to # `$object: dependent.h' and one to simply `dependent.h:'. sed -e "s,^.*\.[a-z]*:,$object:," < "$tmpdepfile" > "$depfile" # That's a tab and a space in the []. sed -e 's,^.*\.[a-z]*:[ ]*,,' -e 's,$,:,' < "$tmpdepfile" >> "$depfile" else # The sourcefile does not contain any dependencies, so just # store a dummy comment line, to avoid errors with the Makefile # "include basename.Plo" scheme. echo "#dummy" > "$depfile" fi rm -f "$tmpdepfile" ;; icc) # Intel's C compiler understands `-MD -MF file'. However on # icc -MD -MF foo.d -c -o sub/foo.o sub/foo.c # ICC 7.0 will fill foo.d with something like # foo.o: sub/foo.c # foo.o: sub/foo.h # which is wrong. We want: # sub/foo.o: sub/foo.c # sub/foo.o: sub/foo.h # sub/foo.c: # sub/foo.h: # ICC 7.1 will output # foo.o: sub/foo.c sub/foo.h # and will wrap long lines using \ : # foo.o: sub/foo.c ... \ # sub/foo.h ... \ # ... "$@" -MD -MF "$tmpdepfile" stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" # Each line is of the form `foo.o: dependent.h', # or `foo.o: dep1.h dep2.h \', or ` dep3.h dep4.h \'. # Do two passes, one to just change these to # `$object: dependent.h' and one to simply `dependent.h:'. sed "s,^[^:]*:,$object :," < "$tmpdepfile" > "$depfile" # Some versions of the HPUX 10.20 sed can't process this invocation # correctly. Breaking it into two sed invocations is a workaround. sed 's,^[^:]*: \(.*\)$,\1,;s/^\\$//;/^$/d;/:$/d' < "$tmpdepfile" | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; hp2) # The "hp" stanza above does not work with aCC (C++) and HP's ia64 # compilers, which have integrated preprocessors. The correct option # to use with these is +Maked; it writes dependencies to a file named # 'foo.d', which lands next to the object file, wherever that # happens to be. # Much of this is similar to the tru64 case; see comments there. dir=`echo "$object" | sed -e 's|/[^/]*$|/|'` test "x$dir" = "x$object" && dir= base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'` if test "$libtool" = yes; then tmpdepfile1=$dir$base.d tmpdepfile2=$dir.libs/$base.d "$@" -Wc,+Maked else tmpdepfile1=$dir$base.d tmpdepfile2=$dir$base.d "$@" +Maked fi stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile1" "$tmpdepfile2" exit $stat fi for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" do test -f "$tmpdepfile" && break done if test -f "$tmpdepfile"; then sed -e "s,^.*\.[a-z]*:,$object:," "$tmpdepfile" > "$depfile" # Add `dependent.h:' lines. sed -ne '2,${ s/^ *// s/ \\*$// s/$/:/ p }' "$tmpdepfile" >> "$depfile" else echo "#dummy" > "$depfile" fi rm -f "$tmpdepfile" "$tmpdepfile2" ;; tru64) # The Tru64 compiler uses -MD to generate dependencies as a side # effect. `cc -MD -o foo.o ...' puts the dependencies into `foo.o.d'. # At least on Alpha/Redhat 6.1, Compaq CCC V6.2-504 seems to put # dependencies in `foo.d' instead, so we check for that too. # Subdirectories are respected. dir=`echo "$object" | sed -e 's|/[^/]*$|/|'` test "x$dir" = "x$object" && dir= base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'` if test "$libtool" = yes; then # With Tru64 cc, shared objects can also be used to make a # static library. This mechanism is used in libtool 1.4 series to # handle both shared and static libraries in a single compilation. # With libtool 1.4, dependencies were output in $dir.libs/$base.lo.d. # # With libtool 1.5 this exception was removed, and libtool now # generates 2 separate objects for the 2 libraries. These two # compilations output dependencies in $dir.libs/$base.o.d and # in $dir$base.o.d. We have to check for both files, because # one of the two compilations can be disabled. We should prefer # $dir$base.o.d over $dir.libs/$base.o.d because the latter is # automatically cleaned when .libs/ is deleted, while ignoring # the former would cause a distcleancheck panic. tmpdepfile1=$dir.libs/$base.lo.d # libtool 1.4 tmpdepfile2=$dir$base.o.d # libtool 1.5 tmpdepfile3=$dir.libs/$base.o.d # libtool 1.5 tmpdepfile4=$dir.libs/$base.d # Compaq CCC V6.2-504 "$@" -Wc,-MD else tmpdepfile1=$dir$base.o.d tmpdepfile2=$dir$base.d tmpdepfile3=$dir$base.d tmpdepfile4=$dir$base.d "$@" -MD fi stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" "$tmpdepfile4" exit $stat fi for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" "$tmpdepfile4" do test -f "$tmpdepfile" && break done if test -f "$tmpdepfile"; then sed -e "s,^.*\.[a-z]*:,$object:," < "$tmpdepfile" > "$depfile" # That's a tab and a space in the []. sed -e 's,^.*\.[a-z]*:[ ]*,,' -e 's,$,:,' < "$tmpdepfile" >> "$depfile" else echo "#dummy" > "$depfile" fi rm -f "$tmpdepfile" ;; msvc7) if test "$libtool" = yes; then showIncludes=-Wc,-showIncludes else showIncludes=-showIncludes fi "$@" $showIncludes > "$tmpdepfile" stat=$? grep -v '^Note: including file: ' "$tmpdepfile" if test "$stat" = 0; then : else rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" echo "$object : \\" > "$depfile" # The first sed program below extracts the file names and escapes # backslashes for cygpath. The second sed program outputs the file # name when reading, but also accumulates all include files in the # hold buffer in order to output them again at the end. This only # works with sed implementations that can handle large buffers. sed < "$tmpdepfile" -n ' /^Note: including file: *\(.*\)/ { s//\1/ s/\\/\\\\/g p }' | $cygpath_u | sort -u | sed -n ' s/ /\\ /g s/\(.*\)/ \1 \\/p s/.\(.*\) \\/\1:/ H $ { s/.*/ / G p }' >> "$depfile" rm -f "$tmpdepfile" ;; msvc7msys) # This case exists only to let depend.m4 do its work. It works by # looking at the text of this script. This case will never be run, # since it is checked for above. exit 1 ;; #nosideeffect) # This comment above is used by automake to tell side-effect # dependency tracking mechanisms from slower ones. dashmstdout) # Important note: in order to support this mode, a compiler *must* # always write the preprocessed file to stdout, regardless of -o. "$@" || exit $? # Remove the call to Libtool. if test "$libtool" = yes; then while test "X$1" != 'X--mode=compile'; do shift done shift fi # Remove `-o $object'. IFS=" " for arg do case $arg in -o) shift ;; $object) shift ;; *) set fnord "$@" "$arg" shift # fnord shift # $arg ;; esac done test -z "$dashmflag" && dashmflag=-M # Require at least two characters before searching for `:' # in the target name. This is to cope with DOS-style filenames: # a dependency such as `c:/foo/bar' could be seen as target `c' otherwise. "$@" $dashmflag | sed 's:^[ ]*[^: ][^:][^:]*\:[ ]*:'"$object"'\: :' > "$tmpdepfile" rm -f "$depfile" cat < "$tmpdepfile" > "$depfile" tr ' ' ' ' < "$tmpdepfile" | \ ## Some versions of the HPUX 10.20 sed can't process this invocation ## correctly. Breaking it into two sed invocations is a workaround. sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; dashXmstdout) # This case only exists to satisfy depend.m4. It is never actually # run, as this mode is specially recognized in the preamble. exit 1 ;; makedepend) "$@" || exit $? # Remove any Libtool call if test "$libtool" = yes; then while test "X$1" != 'X--mode=compile'; do shift done shift fi # X makedepend shift cleared=no eat=no for arg do case $cleared in no) set ""; shift cleared=yes ;; esac if test $eat = yes; then eat=no continue fi case "$arg" in -D*|-I*) set fnord "$@" "$arg"; shift ;; # Strip any option that makedepend may not understand. Remove # the object too, otherwise makedepend will parse it as a source file. -arch) eat=yes ;; -*|$object) ;; *) set fnord "$@" "$arg"; shift ;; esac done obj_suffix=`echo "$object" | sed 's/^.*\././'` touch "$tmpdepfile" ${MAKEDEPEND-makedepend} -o"$obj_suffix" -f"$tmpdepfile" "$@" rm -f "$depfile" # makedepend may prepend the VPATH from the source file name to the object. # No need to regex-escape $object, excess matching of '.' is harmless. sed "s|^.*\($object *:\)|\1|" "$tmpdepfile" > "$depfile" sed '1,2d' "$tmpdepfile" | tr ' ' ' ' | \ ## Some versions of the HPUX 10.20 sed can't process this invocation ## correctly. Breaking it into two sed invocations is a workaround. sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" "$tmpdepfile".bak ;; cpp) # Important note: in order to support this mode, a compiler *must* # always write the preprocessed file to stdout. "$@" || exit $? # Remove the call to Libtool. if test "$libtool" = yes; then while test "X$1" != 'X--mode=compile'; do shift done shift fi # Remove `-o $object'. IFS=" " for arg do case $arg in -o) shift ;; $object) shift ;; *) set fnord "$@" "$arg" shift # fnord shift # $arg ;; esac done "$@" -E | sed -n -e '/^# [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' \ -e '/^#line [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' | sed '$ s: \\$::' > "$tmpdepfile" rm -f "$depfile" echo "$object : \\" > "$depfile" cat < "$tmpdepfile" >> "$depfile" sed < "$tmpdepfile" '/^$/d;s/^ //;s/ \\$//;s/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; msvisualcpp) # Important note: in order to support this mode, a compiler *must* # always write the preprocessed file to stdout. "$@" || exit $? # Remove the call to Libtool. if test "$libtool" = yes; then while test "X$1" != 'X--mode=compile'; do shift done shift fi IFS=" " for arg do case "$arg" in -o) shift ;; $object) shift ;; "-Gm"|"/Gm"|"-Gi"|"/Gi"|"-ZI"|"/ZI") set fnord "$@" shift shift ;; *) set fnord "$@" "$arg" shift shift ;; esac done "$@" -E 2>/dev/null | sed -n '/^#line [0-9][0-9]* "\([^"]*\)"/ s::\1:p' | $cygpath_u | sort -u > "$tmpdepfile" rm -f "$depfile" echo "$object : \\" > "$depfile" sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s:: \1 \\:p' >> "$depfile" echo " " >> "$depfile" sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::\1\::p' >> "$depfile" rm -f "$tmpdepfile" ;; msvcmsys) # This case exists only to let depend.m4 do its work. It works by # looking at the text of this script. This case will never be run, # since it is checked for above. exit 1 ;; none) exec "$@" ;; *) echo "Unknown depmode $depmode" 1>&2 exit 1 ;; esac exit 0 # Local Variables: # mode: shell-script # sh-indentation: 2 # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC" # time-stamp-end: "; # UTC" # End: toilet-0.3/ChangeLog0000644000175000017500000013064111737655563011376 00000000000000Commit: UNSUBMITTED Author: Sam Date: Fri Apr 6 22:20:43 2012 +0200 fix: use the upcoming libcaca's canvas width and smushing mode features. src/figlet.c | 3 +++ src/main.c | 12 ++++++------ src/toilet.h | 10 +--------- 3 files changed, 10 insertions(+), 15 deletions(-) Commit: 4682 Author: sam Date: Thu Oct 7 21:43:58 2010 +0000 Remove useless reference to deprecated libcucul. configure.ac | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) Commit: 4681 Author: sam Date: Thu Oct 7 21:38:43 2010 +0000 Remove the build dependency on the getopt implementation and use libcaca instead. configure.ac | 18 +------- src/Makefile.am | 9 +--- src/main.c | 38 ++++++----------- src/mygetopt.c | 120 ------------------------------------------------------- src/mygetopt.h | 29 ------------- 5 files changed, 18 insertions(+), 196 deletions(-) Commit: 4356 Author: sam Date: Tue Feb 9 01:22:20 2010 +0000 Update ChangeLog. ChangeLog | 25 +++++++++++++++++++++++++ 1 files changed, 25 insertions(+), 0 deletions(-) Commit: 4355 Author: sam Date: Tue Feb 9 01:21:56 2010 +0000 No longer check for zlib, it's provided by libcaca. configure.ac | 6 +----- src/Makefile.am | 2 +- 2 files changed, 2 insertions(+), 6 deletions(-) Commit: 4354 Author: sam Date: Tue Feb 9 01:07:02 2010 +0000 Set version to 0.2 and update COPYING, NEWS, README, TODO... COPYING | 4 +- ChangeLog | 100 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Makefile.am | 2 + NEWS | 16 +++++++++ README | 1 + TODO | 3 -- configure.ac | 4 +- 7 files changed, 123 insertions(+), 7 deletions(-) Commit: 4353 Author: sam Date: Tue Feb 9 00:50:15 2010 +0000 Improve testsuite. test/Makefile.am | 4 ++-- test/check-build | 38 -------------------------------------- test/check-fonts | 39 ++++++++++++++++++--------------------- test/check-source | 37 +++++++++++++++++++++++++++++++++++++ 4 files changed, 57 insertions(+), 61 deletions(-) Commit: 4350 Author: sam Date: Tue Feb 9 00:24:47 2010 +0000 Get rid of $Id$ keywords. NEWS | 1 - README | 1 - TODO | 1 - bootstrap | 1 - configure.ac | 10 ++-------- doc/Makefile.am | 1 - src/export.c | 2 -- src/export.h | 2 -- src/figlet.c | 2 -- src/filter.c | 2 -- src/filter.h | 2 -- src/main.c | 2 -- src/render.c | 2 -- src/render.h | 2 -- src/term.c | 2 -- src/toilet.h | 2 -- test/Makefile.am | 1 - tools/Makefile.am | 1 - 18 files changed, 2 insertions(+), 35 deletions(-) Commit: 4349 Author: sam Date: Tue Feb 9 00:09:34 2010 +0000 Get rid of deprecated libcaca calls now that beta17 is out. src/render.c | 6 +++--- tools/caca2tlf.c | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) Commit: 4348 Author: sam Date: Tue Feb 9 00:09:29 2010 +0000 Put package version in manual page. doc/toilet.1.in | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) Commit: 4347 Author: sam Date: Mon Feb 8 23:56:33 2010 +0000 Add mygetopt.c to the project. Fixes #42. configure.ac | 9 +++- src/Makefile.am | 14 +++++-- src/main.c | 78 ++++++++++++------------------------ src/mygetopt.c | 120 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ src/mygetopt.h | 29 +++++++++++++ 5 files changed, 192 insertions(+), 58 deletions(-) Commit: 4345 Author: sam Date: Mon Feb 8 23:34:05 2010 +0000 Search for missing fonts in the current directory (Fixes #40) and display an error message in case of failure. doc/toilet.1.in | 1 + src/figlet.c | 9 ++++++++- 2 files changed, 9 insertions(+), 1 deletions(-) Commit: 4344 Author: sam Date: Mon Feb 8 23:21:46 2010 +0000 Build-depend on libcaca 0.99.beta17, to get colour font support. configure.ac | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) Commit: 4343 Author: sam Date: Mon Feb 8 23:21:40 2010 +0000 Better ChangeLog generation. ChangeLog | 1606 +++++++++++++++++++++++++++++++++++++++++++++++------------ Makefile.am | 5 + 2 files changed, 1303 insertions(+), 308 deletions(-) Commit: 4306 Author: sam Date: Wed Jan 27 00:48:05 2010 +0000 Two new automatic fonts: biggray9 and biggray12. Makefile.am | 2 ++ fonts/biggray12.tlf | Bin 0 -> 116661 bytes fonts/biggray9.tlf | Bin 0 -> 84507 bytes 3 files changed, 2 insertions(+), 0 deletions(-) Commit: 4305 Author: sam Date: Wed Jan 27 00:47:58 2010 +0000 Generate colour fonts with caca2tlf. tools/caca2tlf.c | 67 +++++++++++++++++++++++++++++++++++++++++++++-------- 1 files changed, 57 insertions(+), 10 deletions(-) Commit: 4295 Author: sam Date: Sun Jan 24 01:47:14 2010 +0000 Add a test to check that all fonts can be loaded. fonts/Makefile.am | 2 ++ test/Makefile.am | 4 ++-- test/check-build | 6 +++++- test/check-fonts | 34 ++++++++++++++++++++++++++++++++++ 4 files changed, 43 insertions(+), 3 deletions(-) Commit: 4293 Author: sam Date: Thu Jan 21 15:55:56 2010 +0000 Remove spaces from the pagga font, to make it look nicer with proportional fonts. fonts/pagga.tlf | 40 ++++++++++++++++++++-------------------- 1 files changed, 20 insertions(+), 20 deletions(-) Commit: 4276 Author: sam Date: Mon Jan 18 02:01:44 2010 +0000 Add a new CP437 font: pagga.tlf fonts/Makefile.am | 2 +- fonts/pagga.tlf | 534 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 535 insertions(+), 1 deletions(-) Commit: 4138 Author: sam Date: Wed Dec 16 19:20:26 2009 +0000 Fix a crash with multiline input caused by losing the figfont information. src/figlet.c | 9 +++++++-- 1 files changed, 7 insertions(+), 2 deletions(-) Commit: 4136 Author: sam Date: Wed Dec 16 15:54:17 2009 +0000 Add a source code sanity check. Makefile.am | 2 +- configure.ac | 1 + src/Makefile.am | 2 ++ test/Makefile.am | 6 ++++++ test/check-build | 34 ++++++++++++++++++++++++++++++++++ tools/Makefile.am | 2 ++ 6 files changed, 46 insertions(+), 1 deletions(-) Commit: 4135 Author: sam Date: Wed Dec 16 00:37:44 2009 +0000 New ASCII fonts based on a simple translation of the Monospace ones. Makefile.am | 27 ++++++++------- fonts/Makefile.am | 2 + fonts/ascii12.tlf | Bin 0 -> 57675 bytes fonts/ascii9.tlf | Bin 0 -> 43154 bytes fonts/bigascii12.tlf | Bin 0 -> 85164 bytes fonts/bigascii9.tlf | Bin 0 -> 63228 bytes fonts/bigmono12.tlf | Bin 96310 -> 96319 bytes fonts/bigmono9.tlf | Bin 71379 -> 71389 bytes fonts/letter.tlf | 8 +++- fonts/mono12.tlf | Bin 64756 -> 64764 bytes fonts/mono9.tlf | Bin 47390 -> 47399 bytes fonts/smascii12.tlf | Bin 0 -> 50934 bytes fonts/smascii9.tlf | Bin 0 -> 39922 bytes fonts/smmono12.tlf | Bin 57408 -> 57416 bytes fonts/smmono9.tlf | Bin 43288 -> 43296 bytes src/main.c | 2 +- tools/caca2tlf.c | 89 ++++++++++++++++++++++++++++++++++++-------------- 17 files changed, 88 insertions(+), 40 deletions(-) Commit: 4134 Author: sam Date: Wed Dec 16 00:37:31 2009 +0000 Routine cleanup: update links and e-mail addresses in source and documentation, and update fonts using the latest libcaca version. doc/toilet.1.in | 4 ++-- fonts/bigmono12.tlf | Bin 86088 -> 96310 bytes fonts/bigmono9.tlf | Bin 63466 -> 71379 bytes fonts/circle.tlf | 4 ++-- fonts/emboss.tlf | 4 ++-- fonts/emboss2.tlf | 4 ++-- fonts/future.tlf | 6 +++--- fonts/mono12.tlf | Bin 55455 -> 64756 bytes fonts/mono9.tlf | Bin 40250 -> 47390 bytes fonts/smblock.tlf | 4 ++-- fonts/smbraille.tlf | 6 +++--- fonts/smmono12.tlf | Bin 48946 -> 57408 bytes fonts/smmono9.tlf | Bin 36832 -> 43288 bytes fonts/wideterm.tlf | 4 ++-- src/export.c | 2 +- src/export.h | 2 +- src/figlet.c | 2 +- src/filter.c | 2 +- src/filter.h | 2 +- src/main.c | 6 +++--- src/render.c | 2 +- src/render.h | 2 +- src/term.c | 2 +- src/toilet.h | 2 +- tools/caca2tlf.c | 2 +- 25 files changed, 31 insertions(+), 31 deletions(-) Commit: 4133 Author: sam Date: Wed Dec 16 00:37:20 2009 +0000 Revert previous fix for deprecated libcaca versions. It's possible we have a TOIlet release before a libcaca one. src/render.c | 6 +++--- tools/caca2tlf.c | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) Commit: 4068 Author: sam Date: Mon Nov 30 00:47:24 2009 +0000 Add a "border" filter to add a border around text. src/filter.c | 14 ++++++++++++++ 1 files changed, 14 insertions(+), 0 deletions(-) Commit: 4067 Author: sam Date: Mon Nov 30 00:47:18 2009 +0000 Update bootstrap script. bootstrap | 47 +++++++++++++++++++++++++++++++---------------- 1 files changed, 31 insertions(+), 16 deletions(-) Commit: 4066 Author: sam Date: Mon Nov 30 00:47:13 2009 +0000 Fix deprecated libcaca calls. src/render.c | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) Commit: 3552 Author: sam Date: Tue Jul 14 10:00:03 2009 +0000 Added "letter.tlf", a font designed by Francesco Poli. fonts/Makefile.am | 2 +- fonts/letter.tlf | 836 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 837 insertions(+), 1 deletions(-) Commit: 2988 Author: sam Date: Sat Oct 18 21:36:17 2008 +0000 Port toilet to the unified libcaca 0.99.beta15 API. configure.ac | 4 +- doc/toilet.1.in | 2 +- src/Makefile.am | 4 +- src/export.c | 6 ++-- src/figlet.c | 12 +++++----- src/filter.c | 48 +++++++++++++++++++------------------- src/main.c | 2 +- src/render.c | 44 ++++++++++++++++++------------------ src/term.c | 12 +++++----- src/toilet.h | 6 ++-- tools/Makefile.am | 4 +- tools/caca2tlf.c | 64 ++++++++++++++++++++++++++-------------------------- 12 files changed, 104 insertions(+), 104 deletions(-) Commit: 2537 Author: sam Date: Wed Jul 16 13:30:02 2008 +0000 * configure.ac: fix libcucul-dev dependency value. configure.ac | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) Commit: 2420 Author: sam Date: Sun Jun 15 15:02:23 2008 +0000 * Get rid of io.c/io.h: IO functions are now in libcucul. src/Makefile.am | 1 - src/figlet.c | 1 - src/io.c | 213 ------------------------------------------------------- src/io.h | 24 ------ 4 files changed, 0 insertions(+), 239 deletions(-) Commit: 2419 Author: sam Date: Sun Jun 15 14:59:25 2008 +0000 * Re-add the cx->torender trick to avoid crashing on filters. This really needs some architecture thinking. src/figlet.c | 5 ++++- src/render.c | 3 ++- 2 files changed, 6 insertions(+), 2 deletions(-) Commit: 2418 Author: sam Date: Sun Jun 15 14:47:12 2008 +0000 * Require cucul >= 0.99.beta15. Not released yet, but at least we won't get any complaints about crashes or compilation issues. configure.ac | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) Commit: 2417 Author: sam Date: Sun Jun 15 14:47:08 2008 +0000 * Add a .gitignore files for git-svn users. .gitignore | 22 ++++++++++++++++++++++ 1 files changed, 22 insertions(+), 0 deletions(-) Commit: 2416 Author: sam Date: Sun Jun 15 14:47:04 2008 +0000 * Put autotools files in ./.auto instead of ./autotools. configure.ac | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) Commit: 2415 Author: sam Date: Sun Jun 15 14:46:59 2008 +0000 * Fix a compilation warning due to libcucul API changes. tools/caca2tlf.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) Commit: 2414 Author: sam Date: Sun Jun 15 14:46:54 2008 +0000 * Get rid of all the FIGlet font handling: everything is moving into libcucul. src/figlet.c | 422 +--------------------------------------------------------- src/render.c | 13 +- src/render.h | 2 +- 3 files changed, 14 insertions(+), 423 deletions(-) Commit: 2214 Author: sam Date: Thu Jan 24 19:47:49 2008 +0000 * Fix a bashism in the configure script that the FreeBSD guys apparently never bothered to tell me about. configure.ac | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) Commit: 1831 Author: sam Date: Sun Sep 30 15:45:42 2007 +0000 * Added left and right filters for 90-degree rotations. * Bumped libcucul versioned dependency accordingly. configure.ac | 4 ++-- src/filter.c | 26 +++++++++++++++++++++----- 2 files changed, 23 insertions(+), 7 deletions(-) Commit: 1830 Author: sam Date: Sun Sep 30 15:44:21 2007 +0000 * New version of the bootstrap script. bootstrap | 25 ++++++++++++++----------- 1 files changed, 14 insertions(+), 11 deletions(-) Commit: 1811 Author: sam Date: Thu Aug 2 15:41:12 2007 +0000 * Wide terminal font (ASCII only) fonts/Makefile.am | 2 +- fonts/wideterm.tlf | 132 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 133 insertions(+), 1 deletions(-) Commit: 1810 Author: sam Date: Tue Jul 17 21:09:58 2007 +0000 * Oops, I forgot to add an additional line of comments when I added the no warranty clause to the fonts. fonts/bigmono12.tlf | Bin 75353 -> 86088 bytes fonts/bigmono9.tlf | Bin 56049 -> 63466 bytes fonts/circle.tlf | 2 +- fonts/emboss.tlf | 2 +- fonts/emboss2.tlf | 2 +- fonts/future.tlf | 2 +- fonts/mono12.tlf | Bin 49122 -> 55455 bytes fonts/mono9.tlf | Bin 35751 -> 40250 bytes fonts/smblock.tlf | 6 +++--- fonts/smbraille.tlf | 2 +- fonts/smmono12.tlf | Bin 43402 -> 48946 bytes fonts/smmono9.tlf | Bin 32653 -> 36832 bytes 12 files changed, 8 insertions(+), 8 deletions(-) Commit: 1765 Author: sam Date: Tue Jun 12 16:45:21 2007 +0000 * 0x0153 œ LATIN SMALL LIGATURE OE fonts/smblock.tlf | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) Commit: 1469 Author: sam Date: Thu Dec 14 21:38:06 2006 +0000 * Fix build for systems with no zlib-devel. src/io.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) Commit: 1468 Author: sam Date: Thu Dec 14 21:18:54 2006 +0000 * Fix --as-needed issue, thanks to Pavlov Konstantin. tools/Makefile.am | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) Commit: 1461 Author: sam Date: Tue Dec 12 01:50:48 2006 +0000 * Bwarf, typo in the no warranty clause. fonts/circle.tlf | 2 +- fonts/emboss.tlf | 2 +- fonts/emboss2.tlf | 2 +- fonts/future.tlf | 2 +- fonts/smblock.tlf | 2 +- fonts/smbraille.tlf | 2 +- src/export.c | 2 +- src/export.h | 2 +- src/figlet.c | 2 +- src/filter.c | 2 +- src/filter.h | 2 +- src/io.c | 2 +- src/io.h | 2 +- src/main.c | 2 +- src/render.c | 2 +- src/render.h | 2 +- src/term.c | 2 +- src/toilet.h | 2 +- tools/caca2tlf.c | 2 +- 19 files changed, 19 insertions(+), 19 deletions(-) Commit: 1451 Author: sam Date: Mon Dec 11 15:10:28 2006 +0000 * Add a no warranty clause to the code. fonts/circle.tlf | 3 ++- fonts/emboss.tlf | 3 ++- fonts/emboss2.tlf | 3 ++- fonts/future.tlf | 3 ++- fonts/smblock.tlf | 3 ++- fonts/smbraille.tlf | 3 ++- src/export.c | 7 ++++--- src/export.h | 7 ++++--- src/figlet.c | 7 ++++--- src/filter.c | 7 ++++--- src/filter.h | 7 ++++--- src/io.c | 7 ++++--- src/io.h | 7 ++++--- src/main.c | 7 ++++--- src/render.c | 7 ++++--- src/render.h | 7 ++++--- src/term.c | 7 ++++--- src/toilet.h | 7 ++++--- tools/caca2tlf.c | 7 ++++--- 19 files changed, 64 insertions(+), 45 deletions(-) Commit: 1442 Author: sam Date: Thu Nov 30 16:58:39 2006 +0000 * Use PKG_CHECK_MODULES the right way. Fixes build on Alt Linux. configure.ac | 2 +- src/Makefile.am | 4 ++-- tools/Makefile.am | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) Commit: 1441 Author: sam Date: Thu Nov 30 16:51:38 2006 +0000 * Cosmetic. src/main.c | 90 ++++++++++++++++++++++++++++++----------------------------- 1 files changed, 46 insertions(+), 44 deletions(-) Commit: 1418 Author: sam Date: Thu Nov 16 15:31:51 2006 +0000 * Added Hangul and CJK shit to the Circle font. fonts/circle.tlf | 70 +++++++++++++++++++++++++++++++++++++++++++++++++++++- 1 files changed, 69 insertions(+), 1 deletions(-) Commit: 1410 Author: sam Date: Thu Nov 16 00:34:48 2006 +0000 * I hate SVN keywords. Here, fixed at last. configure.ac | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) Commit: 1409 Author: sam Date: Thu Nov 16 00:33:32 2006 +0000 * Added a "make upload" rule for releases. Makefile.am | 6 ++++++ configure.ac | 2 +- 2 files changed, 7 insertions(+), 1 deletions(-) Commit: 1408 Author: sam Date: Thu Nov 16 00:25:17 2006 +0000 * Grmbl, set $Id on configure.ac. Commit: 1407 Author: sam Date: Thu Nov 16 00:24:33 2006 +0000 * Set version to 0.1. * Added ChangeLog, updated TODO/NEWS/README. ChangeLog | 489 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Makefile.am | 2 +- NEWS | 6 + README | 6 + TODO | 14 ++ configure.ac | 4 +- 6 files changed, 518 insertions(+), 3 deletions(-) Commit: 1406 Author: sam Date: Thu Nov 16 00:12:06 2006 +0000 * Fix layout information of shipped fonts. fonts/emboss.tlf | 2 +- fonts/emboss2.tlf | 2 +- fonts/future.tlf | 2 +- fonts/smblock.tlf | 2 +- fonts/smbraille.tlf | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) Commit: 1405 Author: sam Date: Thu Nov 16 00:05:22 2006 +0000 * Define default layout as fullwidth for generated fonts. fonts/bigmono12.tlf | Bin 75318 -> 75353 bytes fonts/bigmono9.tlf | Bin 56026 -> 56049 bytes fonts/mono12.tlf | Bin 49089 -> 49122 bytes fonts/mono9.tlf | Bin 35733 -> 35751 bytes fonts/smblock.tlf | 106 +++++++++++++++++++++++++------------------------- fonts/smmono12.tlf | Bin 43378 -> 43402 bytes fonts/smmono9.tlf | Bin 32628 -> 32653 bytes tools/caca2tlf.c | 8 +++- 8 files changed, 60 insertions(+), 54 deletions(-) Commit: 1404 Author: sam Date: Thu Nov 16 00:04:39 2006 +0000 * Completed support for -s, -S, -k, -W, -o. src/figlet.c | 116 ++++++++++++++++++++++++++++++++++++++++------------------ src/main.c | 16 ++++---- src/toilet.h | 3 +- 3 files changed, 90 insertions(+), 45 deletions(-) Commit: 1403 Author: sam Date: Wed Nov 15 23:12:58 2006 +0000 * Updated help and manpage. doc/toilet.1.in | 16 +++++++++++++++- src/main.c | 28 ++++++++++++++++------------ 2 files changed, 31 insertions(+), 13 deletions(-) Commit: 1402 Author: sam Date: Wed Nov 15 12:07:00 2006 +0000 * Fix universal smushing. src/figlet.c | 8 +++++--- 1 files changed, 5 insertions(+), 3 deletions(-) Commit: 1401 Author: sam Date: Wed Nov 15 03:29:34 2006 +0000 * Smushing support. Yeah baby. src/figlet.c | 151 ++++++++++++++++++++++++++++++++++++++++++++++++---------- src/main.c | 21 +++++++- src/toilet.h | 3 +- 3 files changed, 146 insertions(+), 29 deletions(-) Commit: 1400 Author: sam Date: Tue Nov 14 23:42:11 2006 +0000 * Kerning support. We used to have: __ __ _ \ \ / / (_) ___ _ _ __ __ _ __ ___ _ _ __ \ V / | | / -_) | || | \ \ / | '_ \ / _ \ | '_| / _| \_/ |_| \___| \_,_| /_\_\ | .__/ \___/ |_| \__| |_| Now we have: __ __ _ \ \ / /(_) ___ _ _ __ __ _ __ ___ _ _ __ \ V / | |/ -_)| || |\ \ / | '_ \/ _ \| '_|/ _| \_/ |_|\___| \_,_|/_\_\ | .__/\___/|_| \__| |_| Now we just need smushing. src/figlet.c | 53 +++++++++++++++++++++++++++++++++++++++++++++-------- src/toilet.h | 6 +----- 2 files changed, 46 insertions(+), 13 deletions(-) Commit: 1385 Author: sam Date: Mon Nov 13 01:02:05 2006 +0000 * Support for ANSI escape codes in the input: http://zoy.org/~sam/toilet-ansi.png http://zoy.org/~sam/toilet-ansi2.png * Empty lines are currently broken. src/figlet.c | 15 ++++++++--- src/render.c | 82 +++++++++++++++++++++++++++++++++++++++++---------------- src/term.c | 5 ++- src/toilet.h | 2 +- 4 files changed, 74 insertions(+), 30 deletions(-) Commit: 1382 Author: sam Date: Sun Nov 12 22:52:05 2006 +0000 * Fix max width in smblock.tlf. fonts/smblock.tlf | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) Commit: 1376 Author: sam Date: Sun Nov 12 20:37:58 2006 +0000 * Now that libcaca 0.99.beta10 is out, we can switch to the new API. configure.ac | 4 ++-- doc/Makefile.am | 2 +- src/figlet.c | 27 +++++++++------------------ src/filter.c | 10 +++++----- src/render.c | 10 +++++----- src/term.c | 2 +- tools/caca2tlf.c | 29 +++++++++++++++-------------- 7 files changed, 38 insertions(+), 46 deletions(-) Commit: 1368 Author: sam Date: Sun Nov 12 18:09:54 2006 +0000 * Double width support in caca2tlf. fonts/bigmono12.tlf | Bin 63251 -> 75318 bytes fonts/bigmono9.tlf | Bin 46988 -> 56026 bytes fonts/mono12.tlf | Bin 41823 -> 49089 bytes fonts/mono9.tlf | Bin 30477 -> 35733 bytes fonts/smmono12.tlf | Bin 36946 -> 43378 bytes fonts/smmono9.tlf | Bin 27838 -> 32628 bytes tools/caca2tlf.c | 44 ++++++++++++++++++++++++++------------------ 7 files changed, 26 insertions(+), 18 deletions(-) Commit: 1367 Author: sam Date: Sun Nov 12 18:02:15 2006 +0000 * Add a "make fonts" rule to rebuild all generated fonts. Makefile.am | 15 +++++++++++++++ 1 files changed, 15 insertions(+), 0 deletions(-) Commit: 1327 Author: sam Date: Fri Nov 10 14:58:12 2006 +0000 * Generate the manpage in the make rule, not the configure rule, because at configure time ${datarootdir} depends on ${prefix} which is defined a bit too late in the script. configure.ac | 1 - doc/Makefile.am | 4 ++++ 2 files changed, 4 insertions(+), 1 deletions(-) Commit: 1326 Author: sam Date: Fri Nov 10 14:30:22 2006 +0000 * Allow setting the font directory using --datadir / --datarootdir. configure.ac | 1 + doc/Makefile.am | 2 +- doc/toilet.1 | 152 ------------------------------------------------------- doc/toilet.1.in | 152 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ src/Makefile.am | 1 + src/main.c | 2 +- 6 files changed, 156 insertions(+), 154 deletions(-) Commit: 1325 Author: sam Date: Fri Nov 10 14:19:13 2006 +0000 * Do not cache ac_build_date. configure.ac | 16 ++++++++-------- 1 files changed, 8 insertions(+), 8 deletions(-) Commit: 1323 Author: sam Date: Fri Nov 10 08:54:04 2006 +0000 * Add a manual page. Makefile.am | 2 +- configure.ac | 1 + doc/Makefile.am | 6 ++ doc/toilet.1 | 152 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 160 insertions(+), 1 deletions(-) Commit: 1322 Author: sam Date: Fri Nov 10 08:29:10 2006 +0000 * Output filter list to stdout, not stderr. src/filter.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) Commit: 1321 Author: sam Date: Fri Nov 10 07:56:55 2006 +0000 * Moved export stuff in export.c. * Bail out with an error if the requested export format is unsupported. src/Makefile.am | 1 + src/export.c | 58 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ src/export.h | 20 +++++++++++++++++++ src/main.c | 22 ++++---------------- 4 files changed, 84 insertions(+), 17 deletions(-) Commit: 1320 Author: sam Date: Fri Nov 10 07:51:21 2006 +0000 * Fix signed/unsigned warning. src/filter.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) Commit: 1319 Author: sam Date: Fri Nov 10 07:47:17 2006 +0000 * Use "-F list" to list available filters. * Use "-E" to specify export format, "-E list" to list them. src/filter.c | 24 ++++++++++++++++++------ src/filter.h | 1 + src/main.c | 50 +++++++++++++++++++++++++++++++++++++------------- 3 files changed, 56 insertions(+), 19 deletions(-) Commit: 1318 Author: sam Date: Fri Nov 10 07:38:52 2006 +0000 * Don't crash if an export error occurs. src/render.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) Commit: 1317 Author: sam Date: Thu Nov 9 21:58:43 2006 +0000 * Updated code to the beta9 API. src/filter.c | 20 +++++++------------- 1 files changed, 7 insertions(+), 13 deletions(-) Commit: 1316 Author: sam Date: Thu Nov 9 21:58:21 2006 +0000 * Minor cosmetic change in the configure output. configure.ac | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) Commit: 1299 Author: sam Date: Mon Nov 6 17:39:42 2006 +0000 * Ignore negative indices in font data. src/figlet.c | 8 ++++++++ 1 files changed, 8 insertions(+), 0 deletions(-) Commit: 1298 Author: sam Date: Mon Nov 6 17:33:31 2006 +0000 * Make figlet font importer more tolerant with empty lines. src/figlet.c | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) Commit: 1297 Author: sam Date: Mon Nov 6 17:24:40 2006 +0000 * Updated mono9 and mono12 fonts and added small and big variants. fonts/Makefile.am | 5 ++++- fonts/bigmono12.tlf | Bin 0 -> 63251 bytes fonts/bigmono9.tlf | Bin 0 -> 46988 bytes fonts/mono12.tlf | Bin 63363 -> 41823 bytes fonts/mono9.tlf | Bin 47020 -> 30477 bytes fonts/smmono12.tlf | Bin 0 -> 36946 bytes fonts/smmono9.tlf | Bin 0 -> 27838 bytes 7 files changed, 4 insertions(+), 1 deletions(-) Commit: 1296 Author: sam Date: Mon Nov 6 17:24:02 2006 +0000 * Add --half and --quarter options to caca2tlf. tools/caca2tlf.c | 144 ++++++++++++++++++++++++++++++++++++++++++----------- 1 files changed, 114 insertions(+), 30 deletions(-) Commit: 1293 Author: sam Date: Mon Nov 6 01:13:38 2006 +0000 * Got rid of the mono9.c renderer. We now have a .tlf font instead. src/Makefile.am | 2 +- src/main.c | 2 +- src/mono9.c | 131 ------------------------------------------------------- src/render.c | 3 - src/render.h | 1 - 5 files changed, 2 insertions(+), 137 deletions(-) Commit: 1292 Author: sam Date: Mon Nov 6 01:11:27 2006 +0000 * Added two new fonts created with caca2tlf: caca2tlf "Monospace 9" | zip >| fonts/mono9.tlf caca2tlf "Monospace Bold 12" | zip >| fonts/mono12.tlf fonts/Makefile.am | 2 +- fonts/mono12.tlf | Bin 0 -> 63363 bytes fonts/mono9.tlf | Bin 0 -> 47020 bytes 3 files changed, 1 insertions(+), 1 deletions(-) Commit: 1291 Author: sam Date: Mon Nov 6 01:09:44 2006 +0000 * Added the caca2tlf tool, which converts a libcaca font into a TOIlet font using a naive pixel-to-glyphs algorithm. I will improve it later. Makefile.am | 2 +- configure.ac | 5 +- tools/Makefile.am | 8 +++ tools/caca2tlf.c | 152 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 164 insertions(+), 3 deletions(-) Commit: 1290 Author: sam Date: Mon Nov 6 00:55:49 2006 +0000 * Distribute fonts with the tarball. fonts/Makefile.am | 7 +++++-- 1 files changed, 5 insertions(+), 2 deletions(-) Commit: 1289 Author: sam Date: Mon Nov 6 00:45:34 2006 +0000 * Add a sanity check to the FIGlet font loader. src/figlet.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) Commit: 1288 Author: sam Date: Mon Nov 6 00:45:14 2006 +0000 * Add missing toilet.h to the toilet sources. src/Makefile.am | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) Commit: 1272 Author: sam Date: Sat Nov 4 17:43:13 2006 +0000 * Fix uninitialised variable in the filter handler. src/filter.c | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) Commit: 1243 Author: sam Date: Thu Oct 26 13:30:14 2006 +0000 * Make filters line-feed aware. src/filter.c | 64 +++++++++++++++++++++++++++++----------------------------- src/render.c | 28 +++++++++++++++---------- src/render.h | 1 - src/toilet.h | 2 +- 4 files changed, 50 insertions(+), 45 deletions(-) Commit: 1242 Author: sam Date: Thu Oct 26 13:14:37 2006 +0000 * Factor code from renderers to main render.c functions. src/figlet.c | 5 ----- src/mono9.c | 5 ----- src/render.c | 6 ++++++ src/term.c | 5 ----- src/toilet.h | 2 +- 5 files changed, 7 insertions(+), 16 deletions(-) Commit: 1241 Author: sam Date: Thu Oct 26 13:07:58 2006 +0000 * Make stdin input line-aware so that we don't have to wait until EOF to display stuff. * Reorganise stuff and fix memory leaks. src/Makefile.am | 2 +- src/figlet.c | 17 +++++- src/figlet.h | 18 ------ src/filter.c | 9 +++- src/filter.h | 1 + src/main.c | 68 ++------------------- src/mono9.c | 136 ++++++++++++++++++++++++++++++++++++++++++ src/render.c | 178 +++++++++++++++++-------------------------------------- src/render.h | 7 ++ src/term.c | 113 +++++++++++++++++++++++++++++++++++ src/toilet.h | 2 + 11 files changed, 344 insertions(+), 207 deletions(-) Commit: 1240 Author: sam Date: Thu Oct 26 12:12:44 2006 +0000 * Get rid of -g -i -m short options, only keep --gay --irc --metal. * Add --html and --tga flags. src/main.c | 51 +++++++++++++++++++++++++++++---------------------- 1 files changed, 29 insertions(+), 22 deletions(-) Commit: 1228 Author: sam Date: Wed Oct 25 16:06:19 2006 +0000 * Added filter_flip, filter_flop and filter_rotate. * Add a -F flag to specify filters to apply. Can be specified more than once, and filters can be chained using ":", eg. "-F flip:gay". src/filter.c | 94 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++-- src/filter.h | 5 +-- src/io.c | 2 +- src/main.c | 29 ++++++++++-------- src/toilet.h | 6 +++- 5 files changed, 115 insertions(+), 21 deletions(-) Commit: 1227 Author: sam Date: Tue Oct 24 12:39:57 2006 +0000 * Renamed filters.* to filter.*. src/Makefile.am | 2 +- src/filter.c | 119 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ src/filter.h | 21 ++++++++++ src/filters.c | 119 ------------------------------------------------------- src/filters.h | 21 ---------- src/main.c | 2 +- 6 files changed, 142 insertions(+), 142 deletions(-) Commit: 1206 Author: sam Date: Thu Oct 19 20:55:44 2006 +0000 * Support for PKZIP-compressed fonts using zlib. src/Makefile.am | 2 +- src/io.c | 167 +++++++++++++++++++++++++++++++++++++++++++++++++++++-- src/io.h | 6 +-- 3 files changed, 164 insertions(+), 11 deletions(-) Commit: 1205 Author: sam Date: Thu Oct 19 20:53:36 2006 +0000 * Check for zlib if available. configure.ac | 6 +++++- 1 files changed, 5 insertions(+), 1 deletions(-) Commit: 1204 Author: sam Date: Thu Oct 19 20:53:07 2006 +0000 * Minor debugging information in the FIGlet font parser. src/figlet.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) Commit: 1202 Author: sam Date: Fri Oct 13 13:38:50 2006 +0000 * Add feof() to the list of I/O functions. src/figlet.c | 2 +- src/io.c | 5 +++++ src/io.h | 1 + 3 files changed, 7 insertions(+), 1 deletions(-) Commit: 1201 Author: sam Date: Fri Oct 13 13:36:23 2006 +0000 * Moved I/O functions into a separate module. src/Makefile.am | 1 + src/figlet.c | 19 ++++++++++--------- src/io.c | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ src/io.h | 26 ++++++++++++++++++++++++++ 4 files changed, 87 insertions(+), 9 deletions(-) Commit: 1200 Author: sam Date: Fri Oct 13 13:19:45 2006 +0000 * Use fgets() instead of fscanf(). Uses an additional memory buffer, but paves the way for custom IO functions. src/figlet.c | 24 +++++++++--------------- 1 files changed, 9 insertions(+), 15 deletions(-) Commit: 1199 Author: sam Date: Fri Oct 13 13:11:20 2006 +0000 * Fix a crash when font opening fails. src/main.c | 11 +++++++---- 1 files changed, 7 insertions(+), 4 deletions(-) Commit: 1197 Author: sam Date: Tue Oct 10 07:24:41 2006 +0000 * Fixed an ifdef error that caused -t to be ignored. src/main.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) Commit: 1196 Author: sam Date: Tue Oct 10 07:20:15 2006 +0000 * Fixed the FIGlet renderer. It now has char wrapping and stdin input. src/figlet.c | 211 +++++++++++++++++++++++++++++++-------------------------- src/figlet.h | 3 +- src/main.c | 4 +- src/toilet.h | 9 +++ 4 files changed, 128 insertions(+), 99 deletions(-) Commit: 1195 Author: sam Date: Tue Oct 10 07:15:28 2006 +0000 * Properly handle \r \n \t in the big and tiny renderers. src/render.c | 44 ++++++++++++++++++++++++++++---------------- 1 files changed, 28 insertions(+), 16 deletions(-) Commit: 1194 Author: sam Date: Mon Oct 9 23:54:40 2006 +0000 * The mono9 driver works again. With wrapping and stdin reading. src/main.c | 22 ++-------- src/render.c | 129 +++++++++++++++++++++++++++++++++++----------------------- src/render.h | 1 + src/toilet.h | 6 +++ 4 files changed, 90 insertions(+), 68 deletions(-) Commit: 1193 Author: sam Date: Sun Oct 8 12:14:13 2006 +0000 * Break everything. Temporarily. Only the term output works. * Allow to read from stdin. * Wrap at terminal width (currently letter-wrap, not word-wrap). src/figlet.c | 15 ++++-- src/figlet.h | 3 +- src/main.c | 149 ++++++++++++++++++++++++++++++++++----------------------- src/render.c | 80 +++++++++++++++++++++++++++---- src/render.h | 3 +- src/toilet.h | 19 ++++++- 6 files changed, 186 insertions(+), 83 deletions(-) Commit: 1192 Author: sam Date: Sun Oct 8 12:04:04 2006 +0000 * Retrieve the configure.ac timestamp at configure time and store it in a C macro for better FIGlet emulation. configure.ac | 10 ++++++++++ 1 files changed, 10 insertions(+), 0 deletions(-) Commit: 1190 Author: sam Date: Thu Oct 5 21:43:53 2006 +0000 * Fully reworked the katakana part of Small Block. fonts/smblock.tlf | 666 ++++++++++++++++++++++++++-------------------------- 1 files changed, 333 insertions(+), 333 deletions(-) Commit: 1189 Author: sam Date: Wed Oct 4 22:15:23 2006 +0000 * Added Unicode drawing blocks to Small Block. fonts/smblock.tlf | 90 ++++++++++++++++++++++++++++++++++++++++++++++++++--- 1 files changed, 85 insertions(+), 5 deletions(-) Commit: 1188 Author: sam Date: Wed Oct 4 21:58:52 2006 +0000 * Added most of latin1 additional characters. fonts/smblock.tlf | 265 ++++++++++++++++++++++++++++++++++++++++++++++++++++- 1 files changed, 263 insertions(+), 2 deletions(-) Commit: 1184 Author: sam Date: Wed Oct 4 02:21:24 2006 +0000 * Added a new font: "Small Block". fonts/Makefile.am | 2 +- fonts/smblock.tlf | 853 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 854 insertions(+), 1 deletions(-) Commit: 1183 Author: sam Date: Mon Oct 2 19:17:00 2006 +0000 * Use ${datadir} for fonts instead of ${datarootdir}. fonts/Makefile.am | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) Commit: 1182 Author: sam Date: Mon Oct 2 19:09:58 2006 +0000 * Oops, fixed the lowercase "x" in Future. fonts/future.tlf | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) Commit: 1181 Author: sam Date: Mon Oct 2 19:08:14 2006 +0000 * Big update to the Future font. fonts/future.tlf | 147 +++++++++++++++++++++++++++++++++++++++++++++++++----- 1 files changed, 134 insertions(+), 13 deletions(-) Commit: 1180 Author: sam Date: Mon Oct 2 12:17:39 2006 +0000 * Updated "Future" font. fonts/future.tlf | 86 +++++++++++++++++++++++++++++------------------------- 1 files changed, 46 insertions(+), 40 deletions(-) Commit: 1178 Author: sam Date: Sun Oct 1 15:10:27 2006 +0000 * Oops, fixed typo in fonts/Makefile.am. fonts/Makefile.am | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) Commit: 1177 Author: sam Date: Sun Oct 1 15:09:29 2006 +0000 * Added "Future" font. fonts/Makefile.am | 2 +- fonts/future.tlf | 329 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 330 insertions(+), 1 deletions(-) Commit: 1176 Author: sam Date: Sun Oct 1 14:21:25 2006 +0000 * Added simple "Circle" font. fonts/Makefile.am | 2 +- fonts/circle.tlf | 117 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 118 insertions(+), 1 deletions(-) Commit: 1170 Author: sam Date: Sun Oct 1 07:55:45 2006 +0000 * Allow the hardblank character to be UTF-8. src/figlet.c | 7 +++++-- 1 files changed, 5 insertions(+), 2 deletions(-) Commit: 1162 Author: sam Date: Sat Sep 30 20:18:32 2006 +0000 * There is no way emboss.tlf can have proper lowercase characters. Filled them with the uppercase ones. fonts/emboss.tlf | 184 ++++++++++++++++++++++++++-------------------------- fonts/emboss2.tlf | 184 ++++++++++++++++++++++++++-------------------------- 2 files changed, 184 insertions(+), 184 deletions(-) Commit: 1158 Author: sam Date: Sat Sep 30 19:05:41 2006 +0000 * Require libcucul 0.99.beta6 (utf8 import). configure.ac | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) Commit: 1151 Author: sam Date: Sat Sep 30 18:06:47 2006 +0000 * Fixed a few unimportant memory leaks upon error. src/figlet.c | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) Commit: 1150 Author: sam Date: Sat Sep 30 17:53:59 2006 +0000 * Fixed a lot of memory leaks and added a few error checks. src/figlet.c | 40 ++++++++++++++++++++++++++++++++++++---- src/main.c | 4 +++- 2 files changed, 39 insertions(+), 5 deletions(-) Commit: 1147 Author: sam Date: Sat Sep 30 16:24:27 2006 +0000 * Updated font data. fonts/emboss.tlf | 27 +++++++++++++++------------ fonts/emboss2.tlf | 27 +++++++++++++++------------ fonts/smbraille.tlf | 5 ++++- 3 files changed, 34 insertions(+), 25 deletions(-) Commit: 1146 Author: sam Date: Sat Sep 30 16:19:42 2006 +0000 * New font: Small Braille. fonts/Makefile.am | 2 +- fonts/smbraille.tlf | 216 +++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 217 insertions(+), 1 deletions(-) Commit: 1145 Author: sam Date: Sat Sep 30 11:47:22 2006 +0000 * Created emboss2.tlf with a simple sed rule. fonts/Makefile.am | 2 +- fonts/emboss.tlf | 5 +- fonts/emboss2.tlf | 321 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 326 insertions(+), 2 deletions(-) Commit: 1144 Author: sam Date: Sat Sep 30 11:34:37 2006 +0000 * Created emboss.tlf, a Unicode font for the official TOIlet distribution. Makefile.am | 4 +- configure.ac | 2 +- data/Makefile.am | 1 - fonts/Makefile.am | 5 + fonts/emboss.tlf | 318 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 5 files changed, 326 insertions(+), 4 deletions(-) Commit: 1143 Author: sam Date: Sat Sep 30 11:06:20 2006 +0000 * Better error checking in the figlet renderer. * Allow to open fonts that have Unicode data (requires libcucul 0.99.beta6 which is not yet released). src/figlet.c | 31 ++++++++++++++++++++----------- src/figlet.h | 3 +-- src/main.c | 29 +++++++++++++++++------------ src/toilet.h | 21 +++++++++++++++++++++ 4 files changed, 59 insertions(+), 25 deletions(-) Commit: 1142 Author: sam Date: Sat Sep 30 10:48:32 2006 +0000 * Make the --metal filter only change the colour, not the characters. src/filters.c | 30 ++++++++++-------------------- 1 files changed, 10 insertions(+), 20 deletions(-) Commit: 1116 Author: sam Date: Wed Sep 27 07:18:20 2006 +0000 * Implemented figlet's -t (adapt to terminal's width). configure.ac | 15 ++++++++++++++- src/main.c | 24 +++++++++++++++++++++--- 2 files changed, 35 insertions(+), 4 deletions(-) Commit: 1115 Author: sam Date: Tue Sep 26 23:13:01 2006 +0000 * Added -d and completed -I options. src/main.c | 19 +++++++++++++------ 1 files changed, 13 insertions(+), 6 deletions(-) Commit: 1114 Author: sam Date: Tue Sep 26 22:54:15 2006 +0000 * Implemented figlet's -I (infocode) option. * Added -w flag. Ignored for now. src/main.c | 105 +++++++++++++++++++++++++++++++++++++++++++++-------------- 1 files changed, 80 insertions(+), 25 deletions(-) Commit: 1113 Author: sam Date: Tue Sep 26 21:58:26 2006 +0000 * Crop the final canvas to the effective width. * Fixed a bug that prevented loading characters after 127. * Allow to load fonts that hex-encode their Unicode values. src/figlet.c | 19 +++++++++++++++---- 1 files changed, 15 insertions(+), 4 deletions(-) Commit: 1112 Author: sam Date: Tue Sep 26 21:51:13 2006 +0000 * Fix libcucul font rendering. Now that the default canvas has a transparent background, we need to explicitely draw our temporary string in white on black. src/render.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) Commit: 1110 Author: sam Date: Tue Sep 26 21:40:35 2006 +0000 * Don't autocrop final canvas if it was rendered with the figlet engine. src/main.c | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) Commit: 1109 Author: sam Date: Tue Sep 26 21:39:07 2006 +0000 * Do not try to autocrop a canvas that has only spaces. src/filters.c | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) Commit: 1106 Author: sam Date: Tue Sep 26 13:57:01 2006 +0000 * Improved support for figlet fonts. We can now load them and print text. Still no smushing, no hard blanks, no line wrapping... src/figlet.c | 166 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++- 1 files changed, 164 insertions(+), 2 deletions(-) Commit: 1102 Author: sam Date: Sat Sep 23 22:58:02 2006 +0000 * Added content description to all source files. src/figlet.c | 4 ++++ src/figlet.h | 3 +++ src/filters.c | 4 ++++ src/filters.h | 4 ++++ src/main.c | 4 ++++ src/render.c | 4 ++++ src/render.h | 4 ++++ 7 files changed, 27 insertions(+), 0 deletions(-) Commit: 1101 Author: sam Date: Sat Sep 23 22:53:17 2006 +0000 * Created skeleton for future FIGlet font handling. Nothing here yet. src/Makefile.am | 5 ++++- src/figlet.c | 34 ++++++++++++++++++++++++++++++++++ src/figlet.h | 16 ++++++++++++++++ src/main.c | 45 ++++++++++++++++++++++++++++++++------------- 4 files changed, 86 insertions(+), 14 deletions(-) Commit: 1100 Author: sam Date: Sat Sep 23 19:54:20 2006 +0000 * Split main.c into main.c/render.c/filters.c. src/Makefile.am | 2 +- src/filters.c | 122 ++++++++++++++++++++++++++++++++++++ src/filters.h | 17 +++++ src/main.c | 183 +----------------------------------------------------- src/render.c | 88 ++++++++++++++++++++++++++ src/render.h | 16 +++++ 6 files changed, 248 insertions(+), 180 deletions(-) Commit: 1099 Author: sam Date: Sat Sep 23 19:27:19 2006 +0000 * Added -m/--metal flag. Pretty ugly. src/main.c | 56 +++++++++++++++++++++++++++++++++++++++++++++++++++++--- 1 files changed, 53 insertions(+), 3 deletions(-) Commit: 1087 Author: sam Date: Fri Sep 22 23:36:35 2006 +0000 * Import toilet source code from libcaca's repository. configure.ac | 12 ++- src/Makefile.am | 2 +- src/main.c | 293 ++++++++++++++++++++++++++++++++++++++++++++++++++++--- 3 files changed, 289 insertions(+), 18 deletions(-) Commit: 1084 Author: sam Date: Fri Sep 22 17:03:41 2006 +0000 * Initial tree. COPYING | 14 ++++++ Makefile.am | 7 +++ bootstrap | 123 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ configure.ac | 44 +++++++++++++++++++ data/Makefile.am | 1 + src/Makefile.am | 7 +++ src/main.c | 27 ++++++++++++ 7 files changed, 223 insertions(+), 0 deletions(-) toilet-0.3/config.h.in0000644000175000017500000000327511737655637011653 00000000000000/* config.h.in. Generated from configure.ac by autoheader. */ /* Define the version date */ #undef DATE /* Define to 1 if you have the header file. */ #undef HAVE_INTTYPES_H /* Define to 1 if you have the header file. */ #undef HAVE_MEMORY_H /* Define to 1 if you have the header file. */ #undef HAVE_STDINT_H /* Define to 1 if you have the header file. */ #undef HAVE_STDLIB_H /* Define to 1 if you have the header file. */ #undef HAVE_STRINGS_H /* Define to 1 if you have the header file. */ #undef HAVE_STRING_H /* Define to 1 if you have the header file. */ #undef HAVE_SYS_IOCTL_H /* Define to 1 if you have the header file. */ #undef HAVE_SYS_STAT_H /* Define to 1 if you have the header file. */ #undef HAVE_SYS_TYPES_H /* Define if you have TIOCGWINSZ */ #undef HAVE_TIOCGWINSZ /* Define to 1 if you have the header file. */ #undef HAVE_UNISTD_H /* Define to 1 if your C compiler doesn't accept -c and -o together. */ #undef NO_MINUS_C_MINUS_O /* Name of package */ #undef PACKAGE /* Define to the address where bug reports for this package should be sent. */ #undef PACKAGE_BUGREPORT /* Define to the full name of this package. */ #undef PACKAGE_NAME /* Define to the full name and version of this package. */ #undef PACKAGE_STRING /* Define to the one symbol short name of this package. */ #undef PACKAGE_TARNAME /* Define to the home page for this package. */ #undef PACKAGE_URL /* Define to the version of this package. */ #undef PACKAGE_VERSION /* Define to 1 if you have the ANSI C header files. */ #undef STDC_HEADERS /* Version number of package */ #undef VERSION toilet-0.3/tools/0000755000175000017500000000000011737655771011040 500000000000000toilet-0.3/tools/Makefile.in0000644000175000017500000003516111737655634013031 00000000000000# Makefile.in generated by automake 1.11.3 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software # Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ target_triplet = @target@ noinst_PROGRAMS = caca2tlf$(EXEEXT) subdir = tools DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = PROGRAMS = $(noinst_PROGRAMS) am_caca2tlf_OBJECTS = caca2tlf-caca2tlf.$(OBJEXT) caca2tlf_OBJECTS = $(am_caca2tlf_OBJECTS) caca2tlf_DEPENDENCIES = caca2tlf_LINK = $(CCLD) $(caca2tlf_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ $(LDFLAGS) -o $@ DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/.auto/depcomp am__depfiles_maybe = depfiles am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ SOURCES = $(caca2tlf_SOURCES) DIST_SOURCES = $(caca2tlf_SOURCES) ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CACA_CFLAGS = @CACA_CFLAGS@ CACA_LIBS = @CACA_LIBS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ GREP = @GREP@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LDFLAGS = @LDFLAGS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ caca2tlf_SOURCES = caca2tlf.c caca2tlf_CFLAGS = @CACA_CFLAGS@ caca2tlf_LDADD = @CACA_LIBS@ all: all-am .SUFFIXES: .SUFFIXES: .c .o .obj $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign tools/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign tools/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): clean-noinstPROGRAMS: -test -z "$(noinst_PROGRAMS)" || rm -f $(noinst_PROGRAMS) caca2tlf$(EXEEXT): $(caca2tlf_OBJECTS) $(caca2tlf_DEPENDENCIES) $(EXTRA_caca2tlf_DEPENDENCIES) @rm -f caca2tlf$(EXEEXT) $(caca2tlf_LINK) $(caca2tlf_OBJECTS) $(caca2tlf_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/caca2tlf-caca2tlf.Po@am__quote@ .c.o: @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` @am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` caca2tlf-caca2tlf.o: caca2tlf.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(caca2tlf_CFLAGS) $(CFLAGS) -MT caca2tlf-caca2tlf.o -MD -MP -MF $(DEPDIR)/caca2tlf-caca2tlf.Tpo -c -o caca2tlf-caca2tlf.o `test -f 'caca2tlf.c' || echo '$(srcdir)/'`caca2tlf.c @am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/caca2tlf-caca2tlf.Tpo $(DEPDIR)/caca2tlf-caca2tlf.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='caca2tlf.c' object='caca2tlf-caca2tlf.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(caca2tlf_CFLAGS) $(CFLAGS) -c -o caca2tlf-caca2tlf.o `test -f 'caca2tlf.c' || echo '$(srcdir)/'`caca2tlf.c caca2tlf-caca2tlf.obj: caca2tlf.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(caca2tlf_CFLAGS) $(CFLAGS) -MT caca2tlf-caca2tlf.obj -MD -MP -MF $(DEPDIR)/caca2tlf-caca2tlf.Tpo -c -o caca2tlf-caca2tlf.obj `if test -f 'caca2tlf.c'; then $(CYGPATH_W) 'caca2tlf.c'; else $(CYGPATH_W) '$(srcdir)/caca2tlf.c'; fi` @am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/caca2tlf-caca2tlf.Tpo $(DEPDIR)/caca2tlf-caca2tlf.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='caca2tlf.c' object='caca2tlf-caca2tlf.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(caca2tlf_CFLAGS) $(CFLAGS) -c -o caca2tlf-caca2tlf.obj `if test -f 'caca2tlf.c'; then $(CYGPATH_W) 'caca2tlf.c'; else $(CYGPATH_W) '$(srcdir)/caca2tlf.c'; fi` ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ mkid -fID $$unique tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) set x; \ here=`pwd`; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(PROGRAMS) installdirs: install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-noinstPROGRAMS mostlyclean-am distclean: distclean-am -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ clean-noinstPROGRAMS ctags distclean distclean-compile \ distclean-generic distclean-tags distdir dvi dvi-am html \ html-am info info-am install install-am install-data \ install-data-am install-dvi install-dvi-am install-exec \ install-exec-am install-html install-html-am install-info \ install-info-am install-man install-pdf install-pdf-am \ install-ps install-ps-am install-strip installcheck \ installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-compile \ mostlyclean-generic pdf pdf-am ps ps-am tags uninstall \ uninstall-am echo-sources: ; echo $(SOURCES) # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: toilet-0.3/tools/caca2tlf.c0000644000175000017500000002147111334123542012563 00000000000000/* * caca2tlf Create a TOIlet font from a libcaca font * Copyright (c) 2006 Sam Hocevar * All Rights Reserved * * $Id$ * * This program is free software. It comes without any warranty, to * the extent permitted by applicable law. You can redistribute it * and/or modify it under the terms of the Do What The Fuck You Want * To Public License, Version 2, as published by Sam Hocevar. See * http://sam.zoy.org/wtfpl/COPYING for more details. */ /* * This is the main program entry point. */ #include "config.h" #if defined(HAVE_INTTYPES_H) # include #endif #include #include #include #include enum mode { GRAY, HALFBLOCKS, QUARTERBLOCKS } mode; enum charset { SPACES, ASCII, UTF8 } charset; static void list_fonts(void); static void add_char(unsigned long int); caca_font_t *f; caca_canvas_t *out, *onechar; uint32_t const *blocks; uint8_t * image; unsigned int w, h, gw, fgw, gh, iw, ih; int main(int argc, char *argv[]) { char *flag1, *flag2; unsigned int b, i; if(argc < 2) { fprintf(stderr, "Usage: %s [--half|--quarter] [--spaces|--ascii|--utf8] \n", argv[0]); list_fonts(); return -1; } if((!strcmp(argv[1], "--half") || !strcmp(argv[1], "-h")) && argc > 2) { flag1 = "--half "; mode = HALFBLOCKS; argv++; argc--; } else if((!strcmp(argv[1], "--quarter") || !strcmp(argv[1], "-q")) && argc > 2) { flag1 = "--quarter "; mode = QUARTERBLOCKS; argv++; argc--; } else { flag1 = ""; mode = GRAY; } if((!strcmp(argv[1], "--spaces") || !strcmp(argv[1], "-s")) && argc > 2) { flag2 = "--spaces "; charset = SPACES; argv++; argc--; } else if((!strcmp(argv[1], "--ascii") || !strcmp(argv[1], "-a")) && argc > 2) { flag2 = "--ascii "; charset = ASCII; argv++; argc--; } else if((!strcmp(argv[1], "--utf8") || !strcmp(argv[1], "-u")) && argc > 2) { flag2 = "--utf8 "; charset = UTF8; argv++; argc--; } else { flag2 = ""; charset = ASCII; } f = caca_load_font(argv[1], 0); if(!f) { fprintf(stderr, "Font \"%s\" not found.\n", argv[1]); list_fonts(); return -2; } w = caca_get_font_width(f); h = caca_get_font_height(f); iw = w * 2 + 1; ih = h + 1; switch(mode) { case GRAY: gw = w; fgw = w * 2; gh = h; break; case HALFBLOCKS: gw = w; fgw = w * 2; gh = (h + 1) / 2; break; case QUARTERBLOCKS: gw = (w + 1) / 2; fgw = (w * 2 + 1) / 2; gh = (h + 1) / 2; break; } blocks = caca_get_font_blocks(f); onechar = caca_create_canvas(0, 0); caca_set_color_ansi(onechar, CACA_WHITE, CACA_BLACK); image = malloc(4 * iw * ih); out = caca_create_canvas(0, 0); printf("tlf2a$ %u %u %u -1 4 0 0 0\n", gh, gh - 1, fgw + 2); printf("==============================================" "==================================\n"); printf(" This font was automatically generated using:\n"); printf(" %% caca2tlf %s%s\"%s\"\n", flag1, flag2, argv[1]); printf("==============================================" "==================================\n"); for(i = 32; i < 127; i++) add_char(i); add_char(196); add_char(214); add_char(220); add_char(228); add_char(246); add_char(252); add_char(223); for(b = 0, i = 0; blocks[i + 1]; i += 2) { int j, n = (int)(blocks[i + 1] - blocks[i]); for(j = 0; j < n; j++) { char buf[7]; unsigned int len; unsigned long int ch = blocks[i] + j; if(ch <= 127 || ch == 196 || ch == 214 || ch == 220 || ch == 228 || ch == 246 || ch == 252 || ch == 223) continue; len = caca_utf32_to_utf8(buf, ch); buf[len] = '\0'; printf("0x%.04lX %s\n", ch, buf); add_char(ch); } } caca_free_canvas(out); caca_free_canvas(onechar); free(image); caca_free_font(f); return 0; } static void list_fonts(void) { char const * const * fonts; unsigned int i; fprintf(stderr, "Available fonts:\n"); fonts = caca_get_font_list(); for(i = 0; fonts[i]; i++) fprintf(stderr, " \"%s\"\n", fonts[i]); } static void add_char(unsigned long int ch) { static char const * chars[][16] = { { "_", "_", "_", "_", " " }, { " ", "_", "_", "_" }, { " ", "_", "_", "_", "_", "_", "_", "_", "_", "_", "_", "_", "_", "_", "_", "_" }, { "#", "$", ":", ".", " " }, { " ", "\"", "m", "#" }, { " ", "`", "'", "\"", ",", "[", "/", "P", ".", "\\", "]", "T", "m", "b", "d", "W" }, { "█", "▓", "▒", "░", " " }, { " ", "▀", "▄", "█" }, { " ", "▘", "▝", "▀", "▖", "▌", "▞", "▛", "▗", "▚", "▐", "▜", "▄", "▙", "▟", "█" } }; static uint8_t fgs[][4] = { { CACA_DEFAULT, CACA_DARKGRAY, CACA_LIGHTGRAY, CACA_WHITE }, { CACA_DEFAULT, CACA_DEFAULT, CACA_DEFAULT, CACA_DEFAULT }, }; static uint8_t bgs[][4] = { { CACA_DEFAULT, CACA_DARKGRAY, CACA_LIGHTGRAY, CACA_WHITE }, { CACA_DEFAULT, CACA_DEFAULT, CACA_DEFAULT, CACA_DEFAULT }, }; char const **str; void *buf; size_t len; unsigned int x, y, myw, mygw; int coff = 0, aoff = 0; int full = caca_utf32_is_fullwidth(ch); caca_set_canvas_size(onechar, full ? 2 : 1, 1); caca_put_char(onechar, 0, 0, ch); caca_render_canvas(onechar, f, image, iw, ih, 4 * iw); myw = full ? 2 * w : w; mygw = full ? fgw : gw; caca_set_canvas_size(out, (full ? fgw : gw) + 2, gh); caca_clear_canvas(out); switch(charset) { case SPACES: coff = 0; aoff = 0; break; case ASCII: coff = 3; aoff = 1; break; case UTF8: coff = 6; aoff = 1; break; } switch(mode) { case GRAY: str = chars[coff]; for(y = 0; y < h; y++) for(x = 0; x < myw; x++) { uint8_t c = image[4 * (x + y * iw) + 2]; if(c >= 0xc0) { caca_set_color_ansi(out, fgs[aoff][3], bgs[aoff][3]); caca_put_str(out, x, y, str[0]); } else if(c >= 0x90) { caca_set_color_ansi(out, fgs[aoff][2], bgs[aoff][2]); caca_put_str(out, x, y, str[0]); } else if(c >= 0x80) { caca_set_color_ansi(out, fgs[aoff][2], bgs[aoff][2]); caca_put_str(out, x, y, str[1]); } else if(c >= 0x40) { caca_set_color_ansi(out, fgs[aoff][1], bgs[aoff][1]); caca_put_str(out, x, y, str[2]); } else if(c >= 0x20) { caca_set_color_ansi(out, fgs[aoff][1], bgs[aoff][1]); caca_put_str(out, x, y, str[3]); } else { caca_set_color_ansi(out, fgs[aoff][0], bgs[aoff][0]); caca_put_str(out, x, y, str[4]); } } break; case HALFBLOCKS: str = chars[coff + 1]; for(y = 0; y < gh; y++) for(x = 0; x < mygw; x++) { uint8_t p1 = image[4 * (x + y * 2 * iw) + 2]; uint8_t p2 = image[4 * (x + (y * 2 + 1) * iw) + 2]; caca_put_str(out, x, y, str[(p1 > 0x80) + 2 * (p2 > 0x80)]); } break; case QUARTERBLOCKS: str = chars[coff + 2]; for(y = 0; y < gh; y++) for(x = 0; x < mygw; x++) { uint8_t p1 = image[4 * (x * 2 + y * 2 * iw) + 2]; uint8_t p2 = image[4 * (x * 2 + 1 + y * 2 * iw) + 2]; uint8_t p3 = image[4 * (x * 2 + (y * 2 + 1) * iw) + 2]; uint8_t p4 = image[4 * (x * 2 + 1 + (y * 2 + 1) * iw) + 2]; caca_put_str(out, x, y, str[(p1 > 0x80) + 2 * (p2 > 0x80) + 4 * (p3 > 0x80) + 8 * (p4 > 0x80)]); } break; } caca_set_color_ansi(out, CACA_DEFAULT, CACA_DEFAULT); if(ch == ' ' || ch == 0xa0) { caca_draw_line(out, mygw - 1, 0, mygw - 1, gh - 1, '$'); caca_draw_line(out, mygw / 2, 0, mygw / 2, gh - 1, '$'); } caca_draw_line(out, mygw, 0, mygw, gh - 1, '@'); caca_put_char(out, mygw + 1, gh - 1, '@'); buf = caca_export_canvas_to_memory(out, "utf8", &len); fwrite(buf, len, 1, stdout); free(buf); } toilet-0.3/tools/Makefile.am0000644000175000017500000000023211334125276012772 00000000000000 noinst_PROGRAMS = caca2tlf caca2tlf_SOURCES = caca2tlf.c caca2tlf_CFLAGS = @CACA_CFLAGS@ caca2tlf_LDADD = @CACA_LIBS@ echo-sources: ; echo $(SOURCES) toilet-0.3/src/0000755000175000017500000000000011737655771010467 500000000000000toilet-0.3/src/export.c0000644000175000017500000000244511334125234012054 00000000000000/* * TOIlet The Other Implementation’s letters * Copyright (c) 2006 Sam Hocevar * All Rights Reserved * * This program is free software. It comes without any warranty, to * the extent permitted by applicable law. You can redistribute it * and/or modify it under the terms of the Do What The Fuck You Want * To Public License, Version 2, as published by Sam Hocevar. See * http://sam.zoy.org/wtfpl/COPYING for more details. */ /* * This file contains export functions. */ #include "config.h" #if defined(HAVE_INTTYPES_H) # include #endif #include #include #include #include #include "toilet.h" #include "export.h" int export_list(void) { char const * const * exports, * const * p; printf("Available export formats:\n"); exports = caca_get_export_list(); for(p = exports; *p; p += 2) printf("\"%s\": %s\n", *p, *(p + 1)); return 0; } int export_set(context_t *cx, char const *format) { char const * const * exports, * const * p; cx->export = format; exports = caca_get_export_list(); for(p = exports; *p; p += 2) if(!strcmp(*p, format)) return 0; fprintf(stderr, "unknown export format `%s'\n", format); return -1; } toilet-0.3/src/main.c0000644000175000017500000001570311737642475011502 00000000000000/* * TOIlet The Other Implementation’s letters * Copyright (c) 2006 Sam Hocevar * All Rights Reserved * * This program is free software. It comes without any warranty, to * the extent permitted by applicable law. You can redistribute it * and/or modify it under the terms of the Do What The Fuck You Want * To Public License, Version 2, as published by Sam Hocevar. See * http://sam.zoy.org/wtfpl/COPYING for more details. */ /* * This is the main program entry point. */ #include "config.h" #if defined HAVE_INTTYPES_H # include #endif #if defined HAVE_SYS_IOCTL_H && defined HAVE_TIOCGWINSZ # include #endif #include #include #include #include #include "toilet.h" #include "render.h" #include "filter.h" #include "export.h" static void version(void); static void usage(void); int main(int argc, char *argv[]) { context_t struct_cx; context_t *cx = &struct_cx; int infocode = -1; cx->export = "utf8"; cx->font = "ascii9"; cx->dir = FONTDIR; cx->term_width = 80; cx->hmode = "default"; cx->filters = NULL; cx->nfilters = 0; for(;;) { #define MOREINFO "Try `%s --help' for more information.\n" int option_index = 0; static struct caca_option long_options[] = { /* Long option, needs arg, flag, short option */ { "font", 1, NULL, 'f' }, { "directory", 1, NULL, 'd' }, { "width", 1, NULL, 'w' }, { "termwidth", 0, NULL, 't' }, { "filter", 1, NULL, 'F' }, { "gay", 0, NULL, 130 }, { "metal", 0, NULL, 131 }, { "export", 1, NULL, 'E' }, { "irc", 0, NULL, 140 }, { "html", 0, NULL, 141 }, { "help", 0, NULL, 'h' }, { "infocode", 1, NULL, 'I' }, { "version", 0, NULL, 'v' }, { NULL, 0, NULL, 0 } }; int c = caca_getopt(argc, argv, "f:d:w:tsSkWoF:E:hI:v", long_options, &option_index); if(c == -1) break; switch(c) { case 'h': /* --help */ usage(); return 0; case 'I': /* --infocode */ infocode = atoi(caca_optarg); break; case 'v': /* --version */ version(); return 0; case 'f': /* --font */ cx->font = caca_optarg; break; case 'd': /* --directory */ cx->dir = caca_optarg; break; case 'F': /* --filter */ if(!strcmp(caca_optarg, "list")) return filter_list(); if(filter_add(cx, caca_optarg) < 0) return -1; break; case 130: /* --gay */ filter_add(cx, "gay"); break; case 131: /* --metal */ filter_add(cx, "metal"); break; case 'w': /* --width */ cx->term_width = atoi(caca_optarg); break; case 't': /* --termwidth */ { #if defined HAVE_SYS_IOCTL_H && defined HAVE_TIOCGWINSZ struct winsize ws; if((ioctl(1, TIOCGWINSZ, &ws) != -1 || ioctl(2, TIOCGWINSZ, &ws) != -1 || ioctl(0, TIOCGWINSZ, &ws) != -1) && ws.ws_col != 0) cx->term_width = ws.ws_col; #endif break; } case 's': cx->hmode = "default"; break; case 'S': cx->hmode = "smush"; break; case 'k': cx->hmode = "kern"; break; case 'W': cx->hmode = "none"; break; case 'o': cx->hmode = "overlap"; break; case 'E': /* --export */ if(!strcmp(caca_optarg, "list")) return export_list(); if(export_set(cx, caca_optarg) < 0) return -1; break; case 140: /* --irc */ export_set(cx, "irc"); break; case 141: /* --html */ export_set(cx, "html"); break; case '?': printf(MOREINFO, argv[0]); return 1; default: printf("%s: invalid option -- %i\n", argv[0], c); printf(MOREINFO, argv[0]); return 1; } } switch(infocode) { case -1: break; case 0: version(); return 0; case 1: printf("20201\n"); return 0; case 2: printf("%s\n", cx->dir); return 0; case 3: printf("%s\n", cx->font); return 0; case 4: printf("%u\n", cx->term_width); return 0; default: return 0; } if(render_init(cx) < 0) return -1; if(caca_optind >= argc) render_stdin(cx); else render_list(cx, argc - caca_optind, argv + caca_optind); render_end(cx); filter_end(cx); return 0; } #define USAGE \ "Usage: toilet [ -hkostvSW ] [ -d fontdirectory ]\n" \ " [ -f fontfile ] [ -F filter ] [ -w outputwidth ]\n" \ " [ -I infocode ] [ -E format ] [ message ]\n" #define HELP \ " -f, --font select the font\n" \ " -d, --directory specify font directory\n" \ " -s, -S, -k, -W, -o render mode (default, force smushing,\n" \ " kerning, full width, overlap)\n" \ " -w, --width set output width\n" \ " -t, --termwidth adapt to terminal's width\n" \ " -F, --filter apply one or several filters to the text\n" \ " -F, --filter list list available filters\n" \ " --gay rainbow filter (same as -F gay)\n" \ " --metal metal filter (same as -F metal)\n" \ " -E, --export select export format\n" \ " -E, --export list list available export formats\n" \ " --irc output IRC colour codes (same as -E irc)\n" \ " --html output an HTML document (same as -E html)\n" \ " -h, --help display this help and exit\n" \ " -I, --infocode print FIGlet-compatible infocode\n" \ " -v, --version output version information and exit\n" static void version(void) { printf( "TOIlet Copyright 2006 Sam Hocevar\n" "Internet: Version: %s, date: %s\n" "\n" "TOIlet, along with the various TOIlet fonts and documentation, may be\n" "freely copied and distributed.\n" "\n" "If you use TOIlet, please send an e-mail message to .\n" "\n" "The latest version of TOIlet is available from the web site,\n" " http://libcaca.zoy.org/toilet.html\n" "\n" "%s", VERSION, DATE, USAGE); } static void usage(void) { printf("%s%s", HELP, USAGE); } toilet-0.3/src/Makefile.in0000644000175000017500000006122211737655633012454 00000000000000# Makefile.in generated by automake 1.11.3 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software # Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ target_triplet = @target@ bin_PROGRAMS = toilet$(EXEEXT) subdir = src DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = am__installdirs = "$(DESTDIR)$(bindir)" PROGRAMS = $(bin_PROGRAMS) am_toilet_OBJECTS = toilet-main.$(OBJEXT) toilet-render.$(OBJEXT) \ toilet-filter.$(OBJEXT) toilet-export.$(OBJEXT) \ toilet-term.$(OBJEXT) toilet-figlet.$(OBJEXT) toilet_OBJECTS = $(am_toilet_OBJECTS) toilet_DEPENDENCIES = toilet_LINK = $(CCLD) $(toilet_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ $(LDFLAGS) -o $@ DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/.auto/depcomp am__depfiles_maybe = depfiles am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ SOURCES = $(toilet_SOURCES) DIST_SOURCES = $(toilet_SOURCES) ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CACA_CFLAGS = @CACA_CFLAGS@ CACA_LIBS = @CACA_LIBS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ GREP = @GREP@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LDFLAGS = @LDFLAGS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ toilet_SOURCES = main.c toilet.h \ render.c render.h \ filter.c filter.h \ export.c export.h \ term.c figlet.c toilet_CPPFLAGS = -DFONTDIR=\"$(datadir)/figlet\" toilet_CFLAGS = @CACA_CFLAGS@ toilet_LDADD = @CACA_LIBS@ all: all-am .SUFFIXES: .SUFFIXES: .c .o .obj $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign src/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): install-binPROGRAMS: $(bin_PROGRAMS) @$(NORMAL_INSTALL) test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)" @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ for p in $$list; do echo "$$p $$p"; done | \ sed 's/$(EXEEXT)$$//' | \ while read p p1; do if test -f $$p; \ then echo "$$p"; echo "$$p"; else :; fi; \ done | \ sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \ -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ sed 'N;N;N;s,\n, ,g' | \ $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ if ($$2 == $$4) files[d] = files[d] " " $$1; \ else { print "f", $$3 "/" $$4, $$1; } } \ END { for (d in files) print "f", d, files[d] }' | \ while read type dir files; do \ if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ test -z "$$files" || { \ echo " $(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ $(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ } \ ; done uninstall-binPROGRAMS: @$(NORMAL_UNINSTALL) @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ files=`for p in $$list; do echo "$$p"; done | \ sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ -e 's/$$/$(EXEEXT)/' `; \ test -n "$$list" || exit 0; \ echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ cd "$(DESTDIR)$(bindir)" && rm -f $$files clean-binPROGRAMS: -test -z "$(bin_PROGRAMS)" || rm -f $(bin_PROGRAMS) toilet$(EXEEXT): $(toilet_OBJECTS) $(toilet_DEPENDENCIES) $(EXTRA_toilet_DEPENDENCIES) @rm -f toilet$(EXEEXT) $(toilet_LINK) $(toilet_OBJECTS) $(toilet_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/toilet-export.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/toilet-figlet.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/toilet-filter.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/toilet-main.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/toilet-render.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/toilet-term.Po@am__quote@ .c.o: @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` @am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` toilet-main.o: main.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(toilet_CPPFLAGS) $(CPPFLAGS) $(toilet_CFLAGS) $(CFLAGS) -MT toilet-main.o -MD -MP -MF $(DEPDIR)/toilet-main.Tpo -c -o toilet-main.o `test -f 'main.c' || echo '$(srcdir)/'`main.c @am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/toilet-main.Tpo $(DEPDIR)/toilet-main.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='main.c' object='toilet-main.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(toilet_CPPFLAGS) $(CPPFLAGS) $(toilet_CFLAGS) $(CFLAGS) -c -o toilet-main.o `test -f 'main.c' || echo '$(srcdir)/'`main.c toilet-main.obj: main.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(toilet_CPPFLAGS) $(CPPFLAGS) $(toilet_CFLAGS) $(CFLAGS) -MT toilet-main.obj -MD -MP -MF $(DEPDIR)/toilet-main.Tpo -c -o toilet-main.obj `if test -f 'main.c'; then $(CYGPATH_W) 'main.c'; else $(CYGPATH_W) '$(srcdir)/main.c'; fi` @am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/toilet-main.Tpo $(DEPDIR)/toilet-main.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='main.c' object='toilet-main.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(toilet_CPPFLAGS) $(CPPFLAGS) $(toilet_CFLAGS) $(CFLAGS) -c -o toilet-main.obj `if test -f 'main.c'; then $(CYGPATH_W) 'main.c'; else $(CYGPATH_W) '$(srcdir)/main.c'; fi` toilet-render.o: render.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(toilet_CPPFLAGS) $(CPPFLAGS) $(toilet_CFLAGS) $(CFLAGS) -MT toilet-render.o -MD -MP -MF $(DEPDIR)/toilet-render.Tpo -c -o toilet-render.o `test -f 'render.c' || echo '$(srcdir)/'`render.c @am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/toilet-render.Tpo $(DEPDIR)/toilet-render.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='render.c' object='toilet-render.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(toilet_CPPFLAGS) $(CPPFLAGS) $(toilet_CFLAGS) $(CFLAGS) -c -o toilet-render.o `test -f 'render.c' || echo '$(srcdir)/'`render.c toilet-render.obj: render.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(toilet_CPPFLAGS) $(CPPFLAGS) $(toilet_CFLAGS) $(CFLAGS) -MT toilet-render.obj -MD -MP -MF $(DEPDIR)/toilet-render.Tpo -c -o toilet-render.obj `if test -f 'render.c'; then $(CYGPATH_W) 'render.c'; else $(CYGPATH_W) '$(srcdir)/render.c'; fi` @am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/toilet-render.Tpo $(DEPDIR)/toilet-render.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='render.c' object='toilet-render.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(toilet_CPPFLAGS) $(CPPFLAGS) $(toilet_CFLAGS) $(CFLAGS) -c -o toilet-render.obj `if test -f 'render.c'; then $(CYGPATH_W) 'render.c'; else $(CYGPATH_W) '$(srcdir)/render.c'; fi` toilet-filter.o: filter.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(toilet_CPPFLAGS) $(CPPFLAGS) $(toilet_CFLAGS) $(CFLAGS) -MT toilet-filter.o -MD -MP -MF $(DEPDIR)/toilet-filter.Tpo -c -o toilet-filter.o `test -f 'filter.c' || echo '$(srcdir)/'`filter.c @am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/toilet-filter.Tpo $(DEPDIR)/toilet-filter.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='filter.c' object='toilet-filter.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(toilet_CPPFLAGS) $(CPPFLAGS) $(toilet_CFLAGS) $(CFLAGS) -c -o toilet-filter.o `test -f 'filter.c' || echo '$(srcdir)/'`filter.c toilet-filter.obj: filter.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(toilet_CPPFLAGS) $(CPPFLAGS) $(toilet_CFLAGS) $(CFLAGS) -MT toilet-filter.obj -MD -MP -MF $(DEPDIR)/toilet-filter.Tpo -c -o toilet-filter.obj `if test -f 'filter.c'; then $(CYGPATH_W) 'filter.c'; else $(CYGPATH_W) '$(srcdir)/filter.c'; fi` @am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/toilet-filter.Tpo $(DEPDIR)/toilet-filter.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='filter.c' object='toilet-filter.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(toilet_CPPFLAGS) $(CPPFLAGS) $(toilet_CFLAGS) $(CFLAGS) -c -o toilet-filter.obj `if test -f 'filter.c'; then $(CYGPATH_W) 'filter.c'; else $(CYGPATH_W) '$(srcdir)/filter.c'; fi` toilet-export.o: export.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(toilet_CPPFLAGS) $(CPPFLAGS) $(toilet_CFLAGS) $(CFLAGS) -MT toilet-export.o -MD -MP -MF $(DEPDIR)/toilet-export.Tpo -c -o toilet-export.o `test -f 'export.c' || echo '$(srcdir)/'`export.c @am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/toilet-export.Tpo $(DEPDIR)/toilet-export.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='export.c' object='toilet-export.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(toilet_CPPFLAGS) $(CPPFLAGS) $(toilet_CFLAGS) $(CFLAGS) -c -o toilet-export.o `test -f 'export.c' || echo '$(srcdir)/'`export.c toilet-export.obj: export.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(toilet_CPPFLAGS) $(CPPFLAGS) $(toilet_CFLAGS) $(CFLAGS) -MT toilet-export.obj -MD -MP -MF $(DEPDIR)/toilet-export.Tpo -c -o toilet-export.obj `if test -f 'export.c'; then $(CYGPATH_W) 'export.c'; else $(CYGPATH_W) '$(srcdir)/export.c'; fi` @am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/toilet-export.Tpo $(DEPDIR)/toilet-export.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='export.c' object='toilet-export.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(toilet_CPPFLAGS) $(CPPFLAGS) $(toilet_CFLAGS) $(CFLAGS) -c -o toilet-export.obj `if test -f 'export.c'; then $(CYGPATH_W) 'export.c'; else $(CYGPATH_W) '$(srcdir)/export.c'; fi` toilet-term.o: term.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(toilet_CPPFLAGS) $(CPPFLAGS) $(toilet_CFLAGS) $(CFLAGS) -MT toilet-term.o -MD -MP -MF $(DEPDIR)/toilet-term.Tpo -c -o toilet-term.o `test -f 'term.c' || echo '$(srcdir)/'`term.c @am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/toilet-term.Tpo $(DEPDIR)/toilet-term.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='term.c' object='toilet-term.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(toilet_CPPFLAGS) $(CPPFLAGS) $(toilet_CFLAGS) $(CFLAGS) -c -o toilet-term.o `test -f 'term.c' || echo '$(srcdir)/'`term.c toilet-term.obj: term.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(toilet_CPPFLAGS) $(CPPFLAGS) $(toilet_CFLAGS) $(CFLAGS) -MT toilet-term.obj -MD -MP -MF $(DEPDIR)/toilet-term.Tpo -c -o toilet-term.obj `if test -f 'term.c'; then $(CYGPATH_W) 'term.c'; else $(CYGPATH_W) '$(srcdir)/term.c'; fi` @am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/toilet-term.Tpo $(DEPDIR)/toilet-term.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='term.c' object='toilet-term.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(toilet_CPPFLAGS) $(CPPFLAGS) $(toilet_CFLAGS) $(CFLAGS) -c -o toilet-term.obj `if test -f 'term.c'; then $(CYGPATH_W) 'term.c'; else $(CYGPATH_W) '$(srcdir)/term.c'; fi` toilet-figlet.o: figlet.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(toilet_CPPFLAGS) $(CPPFLAGS) $(toilet_CFLAGS) $(CFLAGS) -MT toilet-figlet.o -MD -MP -MF $(DEPDIR)/toilet-figlet.Tpo -c -o toilet-figlet.o `test -f 'figlet.c' || echo '$(srcdir)/'`figlet.c @am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/toilet-figlet.Tpo $(DEPDIR)/toilet-figlet.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='figlet.c' object='toilet-figlet.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(toilet_CPPFLAGS) $(CPPFLAGS) $(toilet_CFLAGS) $(CFLAGS) -c -o toilet-figlet.o `test -f 'figlet.c' || echo '$(srcdir)/'`figlet.c toilet-figlet.obj: figlet.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(toilet_CPPFLAGS) $(CPPFLAGS) $(toilet_CFLAGS) $(CFLAGS) -MT toilet-figlet.obj -MD -MP -MF $(DEPDIR)/toilet-figlet.Tpo -c -o toilet-figlet.obj `if test -f 'figlet.c'; then $(CYGPATH_W) 'figlet.c'; else $(CYGPATH_W) '$(srcdir)/figlet.c'; fi` @am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/toilet-figlet.Tpo $(DEPDIR)/toilet-figlet.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='figlet.c' object='toilet-figlet.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(toilet_CPPFLAGS) $(CPPFLAGS) $(toilet_CFLAGS) $(CFLAGS) -c -o toilet-figlet.obj `if test -f 'figlet.c'; then $(CYGPATH_W) 'figlet.c'; else $(CYGPATH_W) '$(srcdir)/figlet.c'; fi` ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ mkid -fID $$unique tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) set x; \ here=`pwd`; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(PROGRAMS) installdirs: for dir in "$(DESTDIR)$(bindir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-binPROGRAMS clean-generic mostlyclean-am distclean: distclean-am -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-binPROGRAMS install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-binPROGRAMS .MAKE: install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-am clean clean-binPROGRAMS \ clean-generic ctags distclean distclean-compile \ distclean-generic distclean-tags distdir dvi dvi-am html \ html-am info info-am install install-am install-binPROGRAMS \ install-data install-data-am install-dvi install-dvi-am \ install-exec install-exec-am install-html install-html-am \ install-info install-info-am install-man install-pdf \ install-pdf-am install-ps install-ps-am install-strip \ installcheck installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-compile \ mostlyclean-generic pdf pdf-am ps ps-am tags uninstall \ uninstall-am uninstall-binPROGRAMS echo-sources: ; echo $(SOURCES) # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: toilet-0.3/src/render.c0000644000175000017500000000661411334125253012015 00000000000000/* * TOIlet The Other Implementation’s letters * Copyright (c) 2006 Sam Hocevar * All Rights Reserved * * This program is free software. It comes without any warranty, to * the extent permitted by applicable law. You can redistribute it * and/or modify it under the terms of the Do What The Fuck You Want * To Public License, Version 2, as published by Sam Hocevar. See * http://sam.zoy.org/wtfpl/COPYING for more details. */ /* * This file contains text to canvas rendering functions. */ #include "config.h" #if defined(HAVE_INTTYPES_H) # include #endif #include #include #include #include #include "toilet.h" #include "render.h" #include "filter.h" static int render_flush(context_t *); int render_init(context_t *cx) { cx->x = cx->y = 0; cx->w = cx->h = 0; cx->lines = 0; cx->cv = caca_create_canvas(0, 0); if(!strcasecmp(cx->font, "term")) return init_tiny(cx); return init_figlet(cx); } int render_stdin(context_t *cx) { caca_canvas_t *cv; char *line; int i, len; /* FIXME: we can't read longer lines */ len = 1024; line = malloc(len); cv = caca_create_canvas(0, 0); /* Read from stdin */ while(!feof(stdin)) { if(!fgets(line, len, stdin)) break; caca_set_canvas_size(cv, 0, 0); caca_import_canvas_from_memory(cv, line, strlen(line), "utf8"); for(i = 0; i < caca_get_canvas_width(cv); i++) { uint32_t ch = caca_get_char(cv, i, 0); uint32_t at = caca_get_attr(cv, i, 0); cx->feed(cx, ch, at); if(caca_utf32_is_fullwidth(ch)) i++; } render_flush(cx); } free(line); return 0; } int render_list(context_t *cx, int argc, char *argv[]) { caca_canvas_t *cv; int i, j, len; char *parser = NULL; cv = caca_create_canvas(0, 0); for(j = 0; j < argc; ) { char *cr; if(!parser) { if(j) cx->feed(cx, ' ', 0); parser = argv[j]; } cr = strchr(parser, '\n'); if(cr) len = (cr - parser) + 1; else len = strlen(parser); caca_set_canvas_size(cv, 0, 0); caca_import_canvas_from_memory(cv, parser, len, "utf8"); for(i = 0; i < caca_get_canvas_width(cv); i++) { uint32_t ch = caca_get_char(cv, i, 0); uint32_t at = caca_get_attr(cv, i, 0); cx->feed(cx, ch, at); if(caca_utf32_is_fullwidth(ch)) i++; } if(cr) { parser += len; render_flush(cx); } else { parser = NULL; j++; } } render_flush(cx); caca_free_canvas(cv); return 0; } int render_end(context_t *cx) { cx->end(cx); caca_free_canvas(cx->cv); return 0; } /* XXX: Following functions are local */ static int render_flush(context_t *cx) { size_t len; void *buffer; /* Flush current line */ cx->flush(cx); /* Apply optional effects to our string */ filter_do(cx); /* Output line */ buffer = caca_export_canvas_to_memory(cx->torender, cx->export, &len); if(!buffer) return -1; fwrite(buffer, len, 1, stdout); free(buffer); caca_free_canvas(cx->torender); return 0; } toilet-0.3/src/export.h0000644000175000017500000000115011334125236012053 00000000000000/* * TOIlet The Other Implementation’s letters * Copyright (c) 2006 Sam Hocevar * All Rights Reserved * * This program is free software. It comes without any warranty, to * the extent permitted by applicable law. You can redistribute it * and/or modify it under the terms of the Do What The Fuck You Want * To Public License, Version 2, as published by Sam Hocevar. See * http://sam.zoy.org/wtfpl/COPYING for more details. */ /* * This header defines export functions. */ extern int export_list(void); extern int export_set(context_t *, char const *); toilet-0.3/src/filter.h0000644000175000017500000000127711334125243012027 00000000000000/* * TOIlet The Other Implementation’s letters * Copyright (c) 2006 Sam Hocevar * All Rights Reserved * * This program is free software. It comes without any warranty, to * the extent permitted by applicable law. You can redistribute it * and/or modify it under the terms of the Do What The Fuck You Want * To Public License, Version 2, as published by Sam Hocevar. See * http://sam.zoy.org/wtfpl/COPYING for more details. */ /* * This header defines post-processing filter functions. */ extern int filter_list(void); extern int filter_add(context_t *, char const *); extern int filter_do(context_t *); extern int filter_end(context_t *); toilet-0.3/src/figlet.c0000644000175000017500000000434311737645646012031 00000000000000/* * TOIlet The Other Implementation’s letters * Copyright (c) 2006 Sam Hocevar * All Rights Reserved * * This program is free software. It comes without any warranty, to * the extent permitted by applicable law. You can redistribute it * and/or modify it under the terms of the Do What The Fuck You Want * To Public License, Version 2, as published by Sam Hocevar. See * http://sam.zoy.org/wtfpl/COPYING for more details. */ /* * This file contains functions for handling FIGlet fonts. */ #include "config.h" #if defined(HAVE_INTTYPES_H) # include #endif #include #include #include #include #include "toilet.h" #include "render.h" #define STD_GLYPHS (127 - 32) #define EXT_GLYPHS (STD_GLYPHS + 7) static int feed_figlet(context_t *, uint32_t, uint32_t); static int flush_figlet(context_t *); static int end_figlet(context_t *); int init_figlet(context_t *cx) { char path[2048]; snprintf(path, 2047, "%s/%s", cx->dir, cx->font); if(caca_canvas_set_figfont(cx->cv, path)) { snprintf(path, 2047, "./%s", cx->font); if(caca_canvas_set_figfont(cx->cv, path)) { fprintf(stderr, "error: could not load font %s\n", cx->font); return -1; } } caca_set_figfont_smush(cx->cv, cx->hmode); caca_set_figfont_width(cx->cv, cx->term_width); cx->feed = feed_figlet; cx->flush = flush_figlet; cx->end = end_figlet; return 0; } static int feed_figlet(context_t *cx, uint32_t ch, uint32_t attr) { return caca_put_figchar(cx->cv, ch); } static int flush_figlet(context_t *cx) { /* We copy cx->cv into cx->torender instead of swapping pointers * because that would lose the figfont information. */ /* FIXME: use caca_copy_canvas() or whatever when it's implemented. */ int ret = caca_flush_figlet(cx->cv); cx->torender = caca_create_canvas(caca_get_canvas_width(cx->cv), caca_get_canvas_height(cx->cv)); caca_blit(cx->torender, 0, 0, cx->cv, NULL); caca_set_canvas_size(cx->cv, 0, 0); return ret; } static int end_figlet(context_t *cx) { return caca_canvas_set_figfont(cx->cv, NULL); } toilet-0.3/src/toilet.h0000644000175000017500000000220511737647754012061 00000000000000/* * TOIlet The Other Implementation’s letters * Copyright (c) 2006 Sam Hocevar * All Rights Reserved * * This program is free software. It comes without any warranty, to * the extent permitted by applicable law. You can redistribute it * and/or modify it under the terms of the Do What The Fuck You Want * To Public License, Version 2, as published by Sam Hocevar. See * http://sam.zoy.org/wtfpl/COPYING for more details. */ /* * This header defines global variables. */ struct toilet_context { char const *export; char const *font; char const *dir; unsigned int term_width; caca_canvas_t *cv; caca_canvas_t *torender; unsigned int w, h, ew, eh, x, y, lines; /* Render methods */ int (*feed)(struct toilet_context *, uint32_t, uint32_t); int (*flush)(struct toilet_context *); int (*end)(struct toilet_context *); /* Used by the FIGlet driver */ char const *hmode; unsigned int *lookup; /* Render filters */ void (**filters)(struct toilet_context *); unsigned int nfilters; }; typedef struct toilet_context context_t; toilet-0.3/src/term.c0000644000175000017500000000444011334125255011502 00000000000000/* * TOIlet The Other Implementation’s letters * Copyright (c) 2006 Sam Hocevar * All Rights Reserved * * This program is free software. It comes without any warranty, to * the extent permitted by applicable law. You can redistribute it * and/or modify it under the terms of the Do What The Fuck You Want * To Public License, Version 2, as published by Sam Hocevar. See * http://sam.zoy.org/wtfpl/COPYING for more details. */ /* * This file contains text to canvas rendering functions. */ #include "config.h" #if defined(HAVE_INTTYPES_H) # include #endif #include #include #include "toilet.h" #include "render.h" static int feed_tiny(context_t *, uint32_t, uint32_t); static int flush_tiny(context_t *); static int end_tiny(context_t *); int init_tiny(context_t *cx) { cx->ew = 16; cx->eh = 2; cx->feed = feed_tiny; cx->flush = flush_tiny; cx->end = end_tiny; return 0; } static int feed_tiny(context_t *cx, uint32_t ch, uint32_t attr) { switch(ch) { case (uint32_t)'\r': return 0; case (uint32_t)'\n': cx->x = 0; cx->y++; return 0; case (uint32_t)'\t': cx->x = (cx->x & ~7) + 8; return 0; } /* Check whether we reached the end of the screen */ if(cx->x && cx->x + 1 > cx->term_width) { cx->x = 0; cx->y++; } /* Check whether the current canvas is large enough */ if(cx->x + 1 > cx->w) { cx->w = cx->x + 1 < cx->term_width ? cx->x + 1 : cx->term_width; if(cx->w > cx->ew) cx->ew = cx->ew + cx->ew / 2; } if(cx->y + 1 > cx->h) { cx->h = cx->y + 1; if(cx->h > cx->eh) cx->eh = cx->eh + cx->eh / 2; } caca_set_attr(cx->cv, attr); caca_set_canvas_size(cx->cv, cx->ew, cx->eh); caca_put_char(cx->cv, cx->x, cx->y, ch); cx->x++; return 0; } static int flush_tiny(context_t *cx) { cx->torender = cx->cv; caca_set_canvas_size(cx->torender, cx->w, cx->h); cx->ew = 16; cx->eh = 2; cx->x = cx->y = 0; cx->w = cx->h = 0; cx->cv = caca_create_canvas(cx->ew, cx->eh); return 0; } static int end_tiny(context_t *cx) { return 0; } toilet-0.3/src/render.h0000644000175000017500000000142611334125254012017 00000000000000/* * TOIlet The Other Implementation’s letters * Copyright (c) 2006 Sam Hocevar * All Rights Reserved * * This program is free software. It comes without any warranty, to * the extent permitted by applicable law. You can redistribute it * and/or modify it under the terms of the Do What The Fuck You Want * To Public License, Version 2, as published by Sam Hocevar. See * http://sam.zoy.org/wtfpl/COPYING for more details. */ /* * This header defines text to canvas rendering functions. */ extern int init_tiny(context_t *); extern int init_figlet(context_t *); extern int render_init(context_t *); extern int render_stdin(context_t *); extern int render_list(context_t *, int, char *[]); extern int render_end(context_t *); toilet-0.3/src/filter.c0000644000175000017500000001371311334125242012017 00000000000000/* * TOIlet The Other Implementation’s letters * Copyright (c) 2006 Sam Hocevar * All Rights Reserved * * This program is free software. It comes without any warranty, to * the extent permitted by applicable law. You can redistribute it * and/or modify it under the terms of the Do What The Fuck You Want * To Public License, Version 2, as published by Sam Hocevar. See * http://sam.zoy.org/wtfpl/COPYING for more details. */ /* * This file contains post-processing filter functions. */ #include "config.h" #if defined(HAVE_INTTYPES_H) # include #endif #include #include #include #include #include "toilet.h" #include "filter.h" static void filter_crop(context_t *); static void filter_gay(context_t *); static void filter_metal(context_t *); static void filter_flip(context_t *); static void filter_flop(context_t *); static void filter_180(context_t *); static void filter_left(context_t *); static void filter_right(context_t *); static void filter_border(context_t *); struct { char const *name; void (*function)(context_t *); char const *description; } const lookup[] = { { "crop", filter_crop, "crop unused blanks" }, { "gay", filter_gay, "add a rainbow colour effect" }, { "metal", filter_metal, "add a metallic colour effect" }, { "flip", filter_flip, "flip horizontally" }, { "flop", filter_flop, "flip vertically" }, { "rotate", filter_180, NULL }, /* backwards compatibility */ { "180", filter_180, "rotate 180 degrees" }, { "left", filter_left, "rotate 90 degrees counterclockwise" }, { "right", filter_right, "rotate 90 degrees clockwise" }, { "border", filter_border, "surround text with a border" }, }; int filter_list(void) { unsigned int i; printf("Available filters:\n"); for(i = 0; i < sizeof(lookup) / sizeof(lookup[0]); i++) if(lookup[i].description) printf("\"%s\": %s\n", lookup[i].name, lookup[i].description); return 0; } int filter_add(context_t *cx, char const *filter) { unsigned int n; int i; for(;;) { while(*filter == ':') filter++; if(*filter == '\0') break; for(i = sizeof(lookup) / sizeof(lookup[0]); i--; ) if(!strncmp(filter, lookup[i].name, strlen(lookup[i].name))) { n = strlen(lookup[i].name); break; } if(i == -1 || (filter[n] != ':' && filter[n] != '\0')) { fprintf(stderr, "unknown filter near `%s'\n", filter); return -1; } if((cx->nfilters % 16) == 0) cx->filters = realloc(cx->filters, (cx->nfilters + 16) * sizeof(lookup[0].function)); cx->filters[cx->nfilters] = lookup[i].function; cx->nfilters++; filter += n; } return 0; } int filter_do(context_t *cx) { unsigned int i; for(i = 0; i < cx->nfilters; i++) cx->filters[i](cx); return 0; } int filter_end(context_t *cx) { free(cx->filters); return 0; } static void filter_crop(context_t *cx) { unsigned int x, y, w, h; unsigned int xmin, xmax, ymin, ymax; xmin = w = caca_get_canvas_width(cx->torender); xmax = 0; ymin = h = caca_get_canvas_height(cx->torender); ymax = 0; for(y = 0; y < h; y++) for(x = 0; x < w; x++) { unsigned long int ch = caca_get_char(cx->torender, x, y); if(ch != (unsigned char)' ') { if(x < xmin) xmin = x; if(x > xmax) xmax = x; if(y < ymin) ymin = y; if(y > ymax) ymax = y; } } if(xmax < xmin || ymax < ymin) return; caca_set_canvas_boundaries(cx->torender, xmin, ymin, xmax - xmin + 1, ymax - ymin + 1); } static void filter_metal(context_t *cx) { static unsigned char const palette[] = { CACA_LIGHTBLUE, CACA_BLUE, CACA_LIGHTGRAY, CACA_DARKGRAY, }; unsigned int x, y, w, h; w = caca_get_canvas_width(cx->torender); h = caca_get_canvas_height(cx->torender); for(y = 0; y < h; y++) for(x = 0; x < w; x++) { unsigned long int ch = caca_get_char(cx->torender, x, y); int i; if(ch == (unsigned char)' ') continue; i = ((cx->lines + y + x / 8) / 2) % 4; caca_set_color_ansi(cx->torender, palette[i], CACA_TRANSPARENT); caca_put_char(cx->torender, x, y, ch); } } static void filter_gay(context_t *cx) { static unsigned char const rainbow[] = { CACA_LIGHTMAGENTA, CACA_LIGHTRED, CACA_YELLOW, CACA_LIGHTGREEN, CACA_LIGHTCYAN, CACA_LIGHTBLUE, }; unsigned int x, y, w, h; w = caca_get_canvas_width(cx->torender); h = caca_get_canvas_height(cx->torender); for(y = 0; y < h; y++) for(x = 0; x < w; x++) { unsigned long int ch = caca_get_char(cx->torender, x, y); if(ch != (unsigned char)' ') { caca_set_color_ansi(cx->torender, rainbow[(x / 2 + y + cx->lines) % 6], CACA_TRANSPARENT); caca_put_char(cx->torender, x, y, ch); } } } static void filter_flip(context_t *cx) { caca_flip(cx->torender); } static void filter_flop(context_t *cx) { caca_flop(cx->torender); } static void filter_180(context_t *cx) { caca_rotate_180(cx->torender); } static void filter_left(context_t *cx) { caca_rotate_left(cx->torender); } static void filter_right(context_t *cx) { caca_rotate_right(cx->torender); } static void filter_border(context_t *cx) { int w, h; w = caca_get_canvas_width(cx->torender); h = caca_get_canvas_height(cx->torender); caca_set_canvas_boundaries(cx->torender, -1, -1, w + 2, h + 2); caca_draw_cp437_box(cx->torender, 0, 0, w + 2, h + 2); } toilet-0.3/src/Makefile.am0000644000175000017500000000053111453436570012427 00000000000000 bin_PROGRAMS = toilet toilet_SOURCES = main.c toilet.h \ render.c render.h \ filter.c filter.h \ export.c export.h \ term.c figlet.c toilet_CPPFLAGS = -DFONTDIR=\"$(datadir)/figlet\" toilet_CFLAGS = @CACA_CFLAGS@ toilet_LDADD = @CACA_LIBS@ echo-sources: ; echo $(SOURCES) toilet-0.3/bootstrap0000755000175000017500000000754211334125324011546 00000000000000#! /bin/sh # bootstrap: generic bootstrap/autogen.sh script for autotools projects # # Copyright (c) 2002-2009 Sam Hocevar # # This program is free software. It comes without any warranty, to # the extent permitted by applicable law. You can redistribute it # and/or modify it under the terms of the Do What The Fuck You Want # To Public License, Version 2, as published by Sam Hocevar. See # http://sam.zoy.org/wtfpl/COPYING for more details. # # The latest version of this script can be found at the following place: # http://caca.zoy.org/wiki/build # Die if an error occurs set -e # Guess whether we are using configure.ac or configure.in if test -f configure.ac; then conffile="configure.ac" elif test -f configure.in; then conffile="configure.in" else echo "$0: could not find configure.ac or configure.in" exit 1 fi # Check for needed features auxdir="`sed -ne 's/^[ \t]*A._CONFIG_AUX_DIR *([[ ]*\([^] )]*\).*/\1/p' $conffile`" pkgconfig="`grep '^[ \t]*PKG_PROG_PKG_CONFIG' $conffile >/dev/null 2>&1 && echo yes || echo no`" libtool="`grep '^[ \t]*A._PROG_LIBTOOL' $conffile >/dev/null 2>&1 && echo yes || echo no`" header="`grep '^[ \t]*A._CONFIG_HEADER' $conffile >/dev/null 2>&1 && echo yes || echo no`" makefile="`[ -f Makefile.am ] && echo yes || echo no`" aclocalflags="`sed -ne 's/^[ \t]*ACLOCAL_AMFLAGS[ \t]*=//p' Makefile.am 2>/dev/null || :`" # Check for automake amvers="no" for v in 11 10 9 8 7 6 5; do if automake-1.${v} --version >/dev/null 2>&1; then amvers="-1.${v}" break elif automake1.${v} --version >/dev/null 2>&1; then amvers="1.${v}" break fi done if test "${amvers}" = "no" && automake --version > /dev/null 2>&1; then amvers="`automake --version | sed -e '1s/[^0-9]*//' -e q`" if expr "$amvers" "<" "1.5" > /dev/null 2>&1; then amvers="no" else amvers="" fi fi if test "$amvers" = "no"; then echo "$0: you need automake version 1.5 or later" exit 1 fi # Check for autoconf acvers="no" for v in "" "259" "253"; do if autoconf${v} --version >/dev/null 2>&1; then acvers="${v}" break fi done if test "$acvers" = "no"; then echo "$0: you need autoconf" exit 1 fi # Check for libtool if test "$libtool" = "yes"; then libtoolize="no" if glibtoolize --version >/dev/null 2>&1; then libtoolize="glibtoolize" else for v in "16" "15" "" "14"; do if libtoolize${v} --version >/dev/null 2>&1; then libtoolize="libtoolize${v}" break fi done fi if test "$libtoolize" = "no"; then echo "$0: you need libtool" exit 1 fi fi # Check for pkg-config if test "$pkgconfig" = "yes"; then if ! pkg-config --version >/dev/null 2>&1; then echo "$0: you need pkg-config" exit 1 fi fi # Remove old cruft for x in aclocal.m4 configure config.guess config.log config.sub config.cache config.h.in config.h compile libtool.m4 ltoptions.m4 ltsugar.m4 ltversion.m4 ltmain.sh libtool ltconfig missing mkinstalldirs depcomp install-sh; do rm -f $x autotools/$x; if test -n "$auxdir"; then rm -f "$auxdir/$x"; fi; done rm -Rf autom4te.cache if test -n "$auxdir"; then if test ! -d "$auxdir"; then mkdir "$auxdir" fi aclocalflags="${aclocalflags} -I $auxdir -I ." fi # Explain what we are doing from now set -x # Bootstrap package if test "$libtool" = "yes"; then ${libtoolize} --copy --force if test -n "$auxdir" -a ! "$auxdir" = "." -a -f "ltmain.sh"; then echo "$0: working around a minor libtool issue" mv ltmain.sh "$auxdir/" fi fi aclocal${amvers} ${aclocalflags} autoconf${acvers} if test "$header" = "yes"; then autoheader${acvers} fi if test "$makefile" = "yes"; then #add --include-deps if you want to bootstrap with any other compiler than gcc #automake${amvers} --add-missing --copy --include-deps automake${amvers} --foreign --add-missing --copy fi # Remove cruft that we no longer want rm -Rf autom4te.cache toilet-0.3/test/0000755000175000017500000000000011737655771010657 500000000000000toilet-0.3/test/Makefile.in0000644000175000017500000002775711737655634012664 00000000000000# Makefile.in generated by automake 1.11.3 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software # Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ target_triplet = @target@ subdir = test DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = SOURCES = DIST_SOURCES = am__tty_colors = \ red=; grn=; lgn=; blu=; std= DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CACA_CFLAGS = @CACA_CFLAGS@ CACA_LIBS = @CACA_LIBS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ GREP = @GREP@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LDFLAGS = @LDFLAGS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ EXTRA_DIST = check-source check-fonts TESTS = check-source check-fonts all: all-am .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign test/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign test/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): tags: TAGS TAGS: ctags: CTAGS CTAGS: check-TESTS: $(TESTS) @failed=0; all=0; xfail=0; xpass=0; skip=0; \ srcdir=$(srcdir); export srcdir; \ list=' $(TESTS) '; \ $(am__tty_colors); \ if test -n "$$list"; then \ for tst in $$list; do \ if test -f ./$$tst; then dir=./; \ elif test -f $$tst; then dir=; \ else dir="$(srcdir)/"; fi; \ if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ *[\ \ ]$$tst[\ \ ]*) \ xpass=`expr $$xpass + 1`; \ failed=`expr $$failed + 1`; \ col=$$red; res=XPASS; \ ;; \ *) \ col=$$grn; res=PASS; \ ;; \ esac; \ elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ *[\ \ ]$$tst[\ \ ]*) \ xfail=`expr $$xfail + 1`; \ col=$$lgn; res=XFAIL; \ ;; \ *) \ failed=`expr $$failed + 1`; \ col=$$red; res=FAIL; \ ;; \ esac; \ else \ skip=`expr $$skip + 1`; \ col=$$blu; res=SKIP; \ fi; \ echo "$${col}$$res$${std}: $$tst"; \ done; \ if test "$$all" -eq 1; then \ tests="test"; \ All=""; \ else \ tests="tests"; \ All="All "; \ fi; \ if test "$$failed" -eq 0; then \ if test "$$xfail" -eq 0; then \ banner="$$All$$all $$tests passed"; \ else \ if test "$$xfail" -eq 1; then failures=failure; else failures=failures; fi; \ banner="$$All$$all $$tests behaved as expected ($$xfail expected $$failures)"; \ fi; \ else \ if test "$$xpass" -eq 0; then \ banner="$$failed of $$all $$tests failed"; \ else \ if test "$$xpass" -eq 1; then passes=pass; else passes=passes; fi; \ banner="$$failed of $$all $$tests did not behave as expected ($$xpass unexpected $$passes)"; \ fi; \ fi; \ dashes="$$banner"; \ skipped=""; \ if test "$$skip" -ne 0; then \ if test "$$skip" -eq 1; then \ skipped="($$skip test was not run)"; \ else \ skipped="($$skip tests were not run)"; \ fi; \ test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \ dashes="$$skipped"; \ fi; \ report=""; \ if test "$$failed" -ne 0 && test -n "$(PACKAGE_BUGREPORT)"; then \ report="Please report to $(PACKAGE_BUGREPORT)"; \ test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \ dashes="$$report"; \ fi; \ dashes=`echo "$$dashes" | sed s/./=/g`; \ if test "$$failed" -eq 0; then \ col="$$grn"; \ else \ col="$$red"; \ fi; \ echo "$${col}$$dashes$${std}"; \ echo "$${col}$$banner$${std}"; \ test -z "$$skipped" || echo "$${col}$$skipped$${std}"; \ test -z "$$report" || echo "$${col}$$report$${std}"; \ echo "$${col}$$dashes$${std}"; \ test "$$failed" -eq 0; \ else :; fi distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am $(MAKE) $(AM_MAKEFLAGS) check-TESTS check: check-am all-am: Makefile installdirs: install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: check-am install-am install-strip .PHONY: all all-am check check-TESTS check-am clean clean-generic \ distclean distclean-generic distdir dvi dvi-am html html-am \ info info-am install install-am install-data install-data-am \ install-dvi install-dvi-am install-exec install-exec-am \ install-html install-html-am install-info install-info-am \ install-man install-pdf install-pdf-am install-ps \ install-ps-am install-strip installcheck installcheck-am \ installdirs maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-generic pdf pdf-am ps ps-am uninstall \ uninstall-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: toilet-0.3/test/check-fonts0000755000175000017500000000074711334127252012716 00000000000000#!/bin/sh ret=0 # # Check that we have no tabs or trailing spaces in the source code # nfails=0 nfonts=0 for x in $(make -s echo-fonts -C ../fonts); do case "$x" in *.tlf|*.flf) ;; *) continue ;; esac nfonts=$(($nfonts + 1)) if ../src/toilet -d ../fonts -f "$x" Hello World >/dev/null; then : else echo "Error loading font $x" nfails=$(($nfails + 1)) fi done echo "$nfonts fonts, $nfails load errors" if test "$nfails" != "0"; then exit 1 fi exit 0 toilet-0.3/test/check-source0000755000175000017500000000153011334130271013047 00000000000000#!/bin/sh # # Check that we have no tabs or trailing spaces in the source code # nfails=0 nfiles=0 nlines=0 for dir in $(make -s echo-dirs -C ..); do if [ ! -d "../$dir" ]; then continue; fi for x in $(make -s echo-sources -C ../$dir); do case "$x" in *.c|*.cpp|*.h|*.m|*.php|*.cs|*.java|.py|.pl) nfiles=$(($nfiles + 1)); nlines=$(($nlines + `grep -c . "../$dir/$x"`)) ;; *) continue ;; esac if grep '[[:space:]]$' "../$dir/$x" >/dev/null 2>&1; then echo "error: $dir/$x contains trailing spaces" nfails=$(($nfails + 1)) fi if grep ' ' "../$dir/$x" >/dev/null 2>&1; then echo "error: $dir/$x contains tabs" nfails=$(($nfails + 1)) fi done done echo "$nfiles files, $nlines lines, $nfails errors in source code" if test "$nfails" != "0"; then exit 1 fi exit 0 toilet-0.3/test/Makefile.am0000644000175000017500000000011211334127455012607 00000000000000 EXTRA_DIST = check-source check-fonts TESTS = check-source check-fonts toilet-0.3/Makefile.in0000644000175000017500000006021611737655634011670 00000000000000# Makefile.in generated by automake 1.11.3 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software # Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ target_triplet = @target@ subdir = . DIST_COMMON = README $(am__configure_deps) $(srcdir)/Makefile.am \ $(srcdir)/Makefile.in $(srcdir)/config.h.in \ $(top_srcdir)/configure .auto/compile .auto/config.guess \ .auto/config.sub .auto/depcomp .auto/install-sh .auto/missing \ COPYING ChangeLog NEWS TODO ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \ configure.lineno config.status.lineno mkinstalldirs = $(install_sh) -d CONFIG_HEADER = config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ html-recursive info-recursive install-data-recursive \ install-dvi-recursive install-exec-recursive \ install-html-recursive install-info-recursive \ install-pdf-recursive install-ps-recursive install-recursive \ installcheck-recursive installdirs-recursive pdf-recursive \ ps-recursive uninstall-recursive RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \ $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \ distdir dist dist-all distcheck ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) distdir = $(PACKAGE)-$(VERSION) top_distdir = $(distdir) am__remove_distdir = \ if test -d "$(distdir)"; then \ find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \ && rm -rf "$(distdir)" \ || { sleep 5 && rm -rf "$(distdir)"; }; \ else :; fi am__relativize = \ dir0=`pwd`; \ sed_first='s,^\([^/]*\)/.*$$,\1,'; \ sed_rest='s,^[^/]*/*,,'; \ sed_last='s,^.*/\([^/]*\)$$,\1,'; \ sed_butlast='s,/*[^/]*$$,,'; \ while test -n "$$dir1"; do \ first=`echo "$$dir1" | sed -e "$$sed_first"`; \ if test "$$first" != "."; then \ if test "$$first" = ".."; then \ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ else \ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ if test "$$first2" = "$$first"; then \ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ else \ dir2="../$$dir2"; \ fi; \ dir0="$$dir0"/"$$first"; \ fi; \ fi; \ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ done; \ reldir="$$dir2" DIST_ARCHIVES = $(distdir).tar.gz $(distdir).tar.bz2 GZIP_ENV = --best distuninstallcheck_listfiles = find . -type f -print am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \ | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$' distcleancheck_listfiles = find . -type f -print ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CACA_CFLAGS = @CACA_CFLAGS@ CACA_LIBS = @CACA_LIBS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ GREP = @GREP@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LDFLAGS = @LDFLAGS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ SUBDIRS = src tools fonts doc test DIST_SUBDIRS = $(SUBDIRS) EXTRA_DIST = bootstrap AUTOMAKE_OPTIONS = dist-bzip2 CACA2TLF = $(top_builddir)/tools/caca2tlf FONTDIR = $(top_builddir)/fonts webhost = poulet.zoy.org webdir = /srv/libcaca.zoy.org/var/www/ all: config.h $(MAKE) $(AM_MAKEFLAGS) all-recursive .SUFFIXES: am--refresh: Makefile @: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ echo ' cd $(srcdir) && $(AUTOMAKE) --foreign'; \ $(am__cd) $(srcdir) && $(AUTOMAKE) --foreign \ && exit 0; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ echo ' $(SHELL) ./config.status'; \ $(SHELL) ./config.status;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) $(SHELL) ./config.status --recheck $(top_srcdir)/configure: $(am__configure_deps) $(am__cd) $(srcdir) && $(AUTOCONF) $(ACLOCAL_M4): $(am__aclocal_m4_deps) $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) $(am__aclocal_m4_deps): config.h: stamp-h1 @if test ! -f $@; then rm -f stamp-h1; else :; fi @if test ! -f $@; then $(MAKE) $(AM_MAKEFLAGS) stamp-h1; else :; fi stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status @rm -f stamp-h1 cd $(top_builddir) && $(SHELL) ./config.status config.h $(srcdir)/config.h.in: $(am__configure_deps) ($(am__cd) $(top_srcdir) && $(AUTOHEADER)) rm -f stamp-h1 touch $@ distclean-hdr: -rm -f config.h stamp-h1 # This directory's subdirectories are mostly independent; you can cd # into them and run `make' without going through this Makefile. # To change the values of `make' variables: instead of editing Makefiles, # (1) if the variable is set in `config.status', edit `config.status' # (which will cause the Makefiles to be regenerated when you run `make'); # (2) otherwise, pass the desired values on the `make' command line. $(RECURSIVE_TARGETS): @fail= failcom='exit 1'; \ for f in x $$MAKEFLAGS; do \ case $$f in \ *=* | --[!k]*);; \ *k*) failcom='fail=yes';; \ esac; \ done; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ list='$(SUBDIRS)'; for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" $(RECURSIVE_CLEAN_TARGETS): @fail= failcom='exit 1'; \ for f in x $$MAKEFLAGS; do \ case $$f in \ *=* | --[!k]*);; \ *k*) failcom='fail=yes';; \ esac; \ done; \ dot_seen=no; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ rev=''; for subdir in $$list; do \ if test "$$subdir" = "."; then :; else \ rev="$$subdir $$rev"; \ fi; \ done; \ rev="$$rev ."; \ target=`echo $@ | sed s/-recursive//`; \ for subdir in $$rev; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done && test -z "$$fail" tags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ done ctags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ done ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ mkid -fID $$unique tags: TAGS TAGS: tags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: CTAGS CTAGS: ctags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) $(am__remove_distdir) test -d "$(distdir)" || mkdir "$(distdir)" @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test -d "$(distdir)/$$subdir" \ || $(MKDIR_P) "$(distdir)/$$subdir" \ || exit 1; \ fi; \ done @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ $(am__relativize); \ new_distdir=$$reldir; \ dir1=$$subdir; dir2="$(top_distdir)"; \ $(am__relativize); \ new_top_distdir=$$reldir; \ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ ($(am__cd) $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$$new_top_distdir" \ distdir="$$new_distdir" \ am__remove_distdir=: \ am__skip_length_check=: \ am__skip_mode_fix=: \ distdir) \ || exit 1; \ fi; \ done -test -n "$(am__skip_mode_fix)" \ || find "$(distdir)" -type d ! -perm -755 \ -exec chmod u+rwx,go+rx {} \; -o \ ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \ ! -type d ! -perm -400 -exec chmod a+r {} \; -o \ ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \ || chmod -R a+r "$(distdir)" dist-gzip: distdir tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz $(am__remove_distdir) dist-bzip2: distdir tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2 $(am__remove_distdir) dist-lzip: distdir tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz $(am__remove_distdir) dist-lzma: distdir tardir=$(distdir) && $(am__tar) | lzma -9 -c >$(distdir).tar.lzma $(am__remove_distdir) dist-xz: distdir tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz $(am__remove_distdir) dist-tarZ: distdir tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z $(am__remove_distdir) dist-shar: distdir shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz $(am__remove_distdir) dist-zip: distdir -rm -f $(distdir).zip zip -rq $(distdir).zip $(distdir) $(am__remove_distdir) dist dist-all: distdir tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2 $(am__remove_distdir) # This target untars the dist file and tries a VPATH configuration. Then # it guarantees that the distribution is self-contained by making another # tarfile. distcheck: dist case '$(DIST_ARCHIVES)' in \ *.tar.gz*) \ GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\ *.tar.bz2*) \ bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\ *.tar.lzma*) \ lzma -dc $(distdir).tar.lzma | $(am__untar) ;;\ *.tar.lz*) \ lzip -dc $(distdir).tar.lz | $(am__untar) ;;\ *.tar.xz*) \ xz -dc $(distdir).tar.xz | $(am__untar) ;;\ *.tar.Z*) \ uncompress -c $(distdir).tar.Z | $(am__untar) ;;\ *.shar.gz*) \ GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\ *.zip*) \ unzip $(distdir).zip ;;\ esac chmod -R a-w $(distdir); chmod a+w $(distdir) mkdir $(distdir)/_build mkdir $(distdir)/_inst chmod a-w $(distdir) test -d $(distdir)/_build || exit 0; \ dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \ && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \ && am__cwd=`pwd` \ && $(am__cd) $(distdir)/_build \ && ../configure --srcdir=.. --prefix="$$dc_install_base" \ $(AM_DISTCHECK_CONFIGURE_FLAGS) \ $(DISTCHECK_CONFIGURE_FLAGS) \ && $(MAKE) $(AM_MAKEFLAGS) \ && $(MAKE) $(AM_MAKEFLAGS) dvi \ && $(MAKE) $(AM_MAKEFLAGS) check \ && $(MAKE) $(AM_MAKEFLAGS) install \ && $(MAKE) $(AM_MAKEFLAGS) installcheck \ && $(MAKE) $(AM_MAKEFLAGS) uninstall \ && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \ distuninstallcheck \ && chmod -R a-w "$$dc_install_base" \ && ({ \ (cd ../.. && umask 077 && mkdir "$$dc_destdir") \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \ distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \ } || { rm -rf "$$dc_destdir"; exit 1; }) \ && rm -rf "$$dc_destdir" \ && $(MAKE) $(AM_MAKEFLAGS) dist \ && rm -rf $(DIST_ARCHIVES) \ && $(MAKE) $(AM_MAKEFLAGS) distcleancheck \ && cd "$$am__cwd" \ || exit 1 $(am__remove_distdir) @(echo "$(distdir) archives ready for distribution: "; \ list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \ sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x' distuninstallcheck: @test -n '$(distuninstallcheck_dir)' || { \ echo 'ERROR: trying to run $@ with an empty' \ '$$(distuninstallcheck_dir)' >&2; \ exit 1; \ }; \ $(am__cd) '$(distuninstallcheck_dir)' || { \ echo 'ERROR: cannot chdir into $(distuninstallcheck_dir)' >&2; \ exit 1; \ }; \ test `$(am__distuninstallcheck_listfiles) | wc -l` -eq 0 \ || { echo "ERROR: files left after uninstall:" ; \ if test -n "$(DESTDIR)"; then \ echo " (check DESTDIR support)"; \ fi ; \ $(distuninstallcheck_listfiles) ; \ exit 1; } >&2 distcleancheck: distclean @if test '$(srcdir)' = . ; then \ echo "ERROR: distcleancheck can only run from a VPATH build" ; \ exit 1 ; \ fi @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \ || { echo "ERROR: files left in build directory after distclean:" ; \ $(distcleancheck_listfiles) ; \ exit 1; } >&2 check-am: all-am check: check-recursive all-am: Makefile config.h installdirs: installdirs-recursive installdirs-am: install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive uninstall: uninstall-recursive install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-recursive install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-recursive clean-am: clean-generic mostlyclean-am distclean: distclean-recursive -rm -f $(am__CONFIG_DISTCLEAN_FILES) -rm -f Makefile distclean-am: clean-am distclean-generic distclean-hdr distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f $(am__CONFIG_DISTCLEAN_FILES) -rm -rf $(top_srcdir)/autom4te.cache -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-recursive mostlyclean-am: mostlyclean-generic pdf: pdf-recursive pdf-am: ps: ps-recursive ps-am: uninstall-am: .MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) all \ ctags-recursive install-am install-strip tags-recursive .PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \ all all-am am--refresh check check-am clean clean-generic \ ctags ctags-recursive dist dist-all dist-bzip2 dist-gzip \ dist-lzip dist-lzma dist-shar dist-tarZ dist-xz dist-zip \ distcheck distclean distclean-generic distclean-hdr \ distclean-tags distcleancheck distdir distuninstallcheck dvi \ dvi-am html html-am info info-am install install-am \ install-data install-data-am install-dvi install-dvi-am \ install-exec install-exec-am install-html install-html-am \ install-info install-info-am install-man install-pdf \ install-pdf-am install-ps install-ps-am install-strip \ installcheck installcheck-am installdirs installdirs-am \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-generic pdf pdf-am ps ps-am tags tags-recursive \ uninstall uninstall-am fonts: tools/caca2tlf FORCE $(CACA2TLF) -u "Monospace 9" | zip > $(FONTDIR)/bigmono9.tlf $(CACA2TLF) -u "Monospace Bold 12" | zip > $(FONTDIR)/bigmono12.tlf $(CACA2TLF) -h -u "Monospace 9" | zip > $(FONTDIR)/mono9.tlf $(CACA2TLF) -h -u "Monospace Bold 12" | zip > $(FONTDIR)/mono12.tlf $(CACA2TLF) -q -u "Monospace 9" | zip > $(FONTDIR)/smmono9.tlf $(CACA2TLF) -q -u "Monospace Bold 12" | zip > $(FONTDIR)/smmono12.tlf $(CACA2TLF) -a "Monospace 9" | zip > $(FONTDIR)/bigascii9.tlf $(CACA2TLF) -a "Monospace Bold 12" | zip > $(FONTDIR)/bigascii12.tlf $(CACA2TLF) -h -a "Monospace 9" | zip > $(FONTDIR)/ascii9.tlf $(CACA2TLF) -h -a "Monospace Bold 12" | zip > $(FONTDIR)/ascii12.tlf $(CACA2TLF) -q -a "Monospace 9" | zip > $(FONTDIR)/smascii9.tlf $(CACA2TLF) -q -a "Monospace Bold 12" | zip > $(FONTDIR)/smascii12.tlf $(CACA2TLF) -s "Monospace 9" | zip > $(FONTDIR)/biggray9.tlf $(CACA2TLF) -s "Monospace Bold 12" | zip > $(FONTDIR)/biggray12.tlf upload: FORCE scp $(distdir).tar.gz $(webhost):$(webdir)/files/ update-changelog: FORCE git --help >/dev/null 2>&1 \ && test -d .git \ && git log --stat | awk 'function flush() { if (m != "") { print "Commit: " v "\nAuthor: " a m } m=""; v="UNSUBMITTED" } { if ($$1 == "commit") flush(); else if ($$1 == "Author:") { a = $$2 } else if ($$1 == "git-svn-id:") { split($$2,tmp,"@"); v=tmp[2] } else if ($$_ != " ") { m=m "\n" $$_ } } END { flush() }' > ChangeLog echo-dirs: ; echo src tools FORCE: # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: toilet-0.3/configure.ac0000644000175000017500000000344311737655614012106 00000000000000 AC_INIT(toilet, 0.3) AC_PREREQ(2.50) AC_CONFIG_SRCDIR(src/main.c) AC_CONFIG_AUX_DIR(.auto) AC_CANONICAL_SYSTEM AM_INIT_AUTOMAKE(toilet, 0.3) AM_CONFIG_HEADER(config.h) AM_PROG_CC_C_O AC_PROG_CPP dnl AC_PROG_EGREP only exists in autoconf 2.54+, so we use AC_EGREP_CPP right dnl now otherwise it might be set in an obscure if statement. Same thing for dnl PKG_PROG_PKG_CONFIG which needs to be called first. AC_EGREP_CPP(yes, foo) PKG_PROG_PKG_CONFIG() dnl Don't let pkg-config fuck our cross-compilation environment m4_pattern_allow([^PKG_CONFIG_LIBDIR$]) if test "$build" != "$host" -a "${PKG_CONFIG_LIBDIR}" = ""; then export PKG_CONFIG_LIBDIR=/dev/null fi AC_CHECK_HEADERS(sys/ioctl.h) AC_CACHE_CHECK([for TIOCGWINSZ], [ac_cv_have_tiocgwinsz], [AC_TRY_COMPILE( [#include ], [struct winsize ws; ioctl(1, TIOCGWINSZ, &ws);], ac_cv_have_tiocgwinsz=yes, ac_cv_have_tiocgwinsz=no)]) if test "${ac_cv_have_tiocgwinsz}" = "yes"; then AC_DEFINE(HAVE_TIOCGWINSZ, 1, [Define if you have TIOCGWINSZ]) fi PKG_CHECK_MODULES(CACA, caca >= 0.99.beta18, [:], [AC_MSG_RESULT(no) AC_MSG_ERROR([you need libcaca version 0.99.beta18 or later])]) AC_MSG_CHECKING([for release date]) tmp="${stamp%-*}" ac_build_date="${stamp##*-} ${tmp#*-} ${stamp%%-*}" AC_MSG_RESULT([$ac_build_date]) AC_DEFINE_UNQUOTED(DATE, "$ac_build_date", [Define the version date]) # Optimizations CFLAGS="${CFLAGS} -g -O2 -fno-strength-reduce -fomit-frame-pointer" # Code qui fait des warnings == code de porc == deux baffes dans ta gueule CFLAGS="${CFLAGS} -Wall -Wpointer-arith -Wcast-align -Wcast-qual -Wstrict-prototypes -Wshadow -Waggregate-return -Wmissing-prototypes -Wnested-externs -Wsign-compare" AC_OUTPUT([ Makefile src/Makefile tools/Makefile fonts/Makefile doc/Makefile test/Makefile ]) toilet-0.3/COPYING0000644000175000017500000000074411334132322010627 00000000000000 DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE Version 2, December 2004 Copyright (C) 2004 Sam Hocevar Everyone is permitted to copy and distribute verbatim or modified copies of this license document, and changing it is allowed as long as the name is changed. DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. You just DO WHAT THE FUCK YOU WANT TO. toilet-0.3/aclocal.m40000644000175000017500000012242511737655633011463 00000000000000# generated automatically by aclocal 1.11.3 -*- Autoconf -*- # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, # 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, # Inc. # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. m4_ifndef([AC_AUTOCONF_VERSION], [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.68],, [m4_warning([this file was generated for autoconf 2.68. You have another version of autoconf. It may work, but is not guaranteed to. If you have problems, you may need to regenerate the build system entirely. To do so, use the procedure documented by the package, typically `autoreconf'.])]) # pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*- # serial 1 (pkg-config-0.24) # # Copyright © 2004 Scott James Remnant . # # 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 of the License, 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # PKG_PROG_PKG_CONFIG([MIN-VERSION]) # ---------------------------------- AC_DEFUN([PKG_PROG_PKG_CONFIG], [m4_pattern_forbid([^_?PKG_[A-Z_]+$]) m4_pattern_allow([^PKG_CONFIG(_(PATH|LIBDIR|SYSROOT_DIR|ALLOW_SYSTEM_(CFLAGS|LIBS)))?$]) m4_pattern_allow([^PKG_CONFIG_(DISABLE_UNINSTALLED|TOP_BUILD_DIR|DEBUG_SPEW)$]) AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility]) AC_ARG_VAR([PKG_CONFIG_PATH], [directories to add to pkg-config's search path]) AC_ARG_VAR([PKG_CONFIG_LIBDIR], [path overriding pkg-config's built-in search path]) if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then AC_PATH_TOOL([PKG_CONFIG], [pkg-config]) fi if test -n "$PKG_CONFIG"; then _pkg_min_version=m4_default([$1], [0.9.0]) AC_MSG_CHECKING([pkg-config is at least version $_pkg_min_version]) if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then AC_MSG_RESULT([yes]) else AC_MSG_RESULT([no]) PKG_CONFIG="" fi fi[]dnl ])# PKG_PROG_PKG_CONFIG # PKG_CHECK_EXISTS(MODULES, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) # # Check to see whether a particular set of modules exists. Similar # to PKG_CHECK_MODULES(), but does not set variables or print errors. # # Please remember that m4 expands AC_REQUIRE([PKG_PROG_PKG_CONFIG]) # only at the first occurence in configure.ac, so if the first place # it's called might be skipped (such as if it is within an "if", you # have to call PKG_CHECK_EXISTS manually # -------------------------------------------------------------- AC_DEFUN([PKG_CHECK_EXISTS], [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl if test -n "$PKG_CONFIG" && \ AC_RUN_LOG([$PKG_CONFIG --exists --print-errors "$1"]); then m4_default([$2], [:]) m4_ifvaln([$3], [else $3])dnl fi]) # _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES]) # --------------------------------------------- m4_define([_PKG_CONFIG], [if test -n "$$1"; then pkg_cv_[]$1="$$1" elif test -n "$PKG_CONFIG"; then PKG_CHECK_EXISTS([$3], [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes ], [pkg_failed=yes]) else pkg_failed=untried fi[]dnl ])# _PKG_CONFIG # _PKG_SHORT_ERRORS_SUPPORTED # ----------------------------- AC_DEFUN([_PKG_SHORT_ERRORS_SUPPORTED], [AC_REQUIRE([PKG_PROG_PKG_CONFIG]) if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi[]dnl ])# _PKG_SHORT_ERRORS_SUPPORTED # PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND], # [ACTION-IF-NOT-FOUND]) # # # Note that if there is a possibility the first call to # PKG_CHECK_MODULES might not happen, you should be sure to include an # explicit call to PKG_PROG_PKG_CONFIG in your configure.ac # # # -------------------------------------------------------------- AC_DEFUN([PKG_CHECK_MODULES], [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl AC_ARG_VAR([$1][_LIBS], [linker flags for $1, overriding pkg-config])dnl pkg_failed=no AC_MSG_CHECKING([for $1]) _PKG_CONFIG([$1][_CFLAGS], [cflags], [$2]) _PKG_CONFIG([$1][_LIBS], [libs], [$2]) m4_define([_PKG_TEXT], [Alternatively, you may set the environment variables $1[]_CFLAGS and $1[]_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details.]) if test $pkg_failed = yes; then AC_MSG_RESULT([no]) _PKG_SHORT_ERRORS_SUPPORTED if test $_pkg_short_errors_supported = yes; then $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$2" 2>&1` else $1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$2" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD m4_default([$4], [AC_MSG_ERROR( [Package requirements ($2) were not met: $$1_PKG_ERRORS Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. _PKG_TEXT])[]dnl ]) elif test $pkg_failed = untried; then AC_MSG_RESULT([no]) m4_default([$4], [AC_MSG_FAILURE( [The pkg-config script could not be found or is too old. Make sure it is in your PATH or set the PKG_CONFIG environment variable to the full path to pkg-config. _PKG_TEXT To get pkg-config, see .])[]dnl ]) else $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS $1[]_LIBS=$pkg_cv_[]$1[]_LIBS AC_MSG_RESULT([yes]) $3 fi[]dnl ])# PKG_CHECK_MODULES # Copyright (C) 2002, 2003, 2005, 2006, 2007, 2008, 2011 Free Software # Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 1 # AM_AUTOMAKE_VERSION(VERSION) # ---------------------------- # Automake X.Y traces this macro to ensure aclocal.m4 has been # generated from the m4 files accompanying Automake X.Y. # (This private macro should not be called outside this file.) AC_DEFUN([AM_AUTOMAKE_VERSION], [am__api_version='1.11' dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to dnl require some minimum version. Point them to the right macro. m4_if([$1], [1.11.3], [], [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl ]) # _AM_AUTOCONF_VERSION(VERSION) # ----------------------------- # aclocal traces this macro to find the Autoconf version. # This is a private macro too. Using m4_define simplifies # the logic in aclocal, which can simply ignore this definition. m4_define([_AM_AUTOCONF_VERSION], []) # AM_SET_CURRENT_AUTOMAKE_VERSION # ------------------------------- # Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced. # This function is AC_REQUIREd by AM_INIT_AUTOMAKE. AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], [AM_AUTOMAKE_VERSION([1.11.3])dnl m4_ifndef([AC_AUTOCONF_VERSION], [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))]) # AM_AUX_DIR_EXPAND -*- Autoconf -*- # Copyright (C) 2001, 2003, 2005, 2011 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 1 # For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets # $ac_aux_dir to `$srcdir/foo'. In other projects, it is set to # `$srcdir', `$srcdir/..', or `$srcdir/../..'. # # Of course, Automake must honor this variable whenever it calls a # tool from the auxiliary directory. The problem is that $srcdir (and # therefore $ac_aux_dir as well) can be either absolute or relative, # depending on how configure is run. This is pretty annoying, since # it makes $ac_aux_dir quite unusable in subdirectories: in the top # source directory, any form will work fine, but in subdirectories a # relative path needs to be adjusted first. # # $ac_aux_dir/missing # fails when called from a subdirectory if $ac_aux_dir is relative # $top_srcdir/$ac_aux_dir/missing # fails if $ac_aux_dir is absolute, # fails when called from a subdirectory in a VPATH build with # a relative $ac_aux_dir # # The reason of the latter failure is that $top_srcdir and $ac_aux_dir # are both prefixed by $srcdir. In an in-source build this is usually # harmless because $srcdir is `.', but things will broke when you # start a VPATH build or use an absolute $srcdir. # # So we could use something similar to $top_srcdir/$ac_aux_dir/missing, # iff we strip the leading $srcdir from $ac_aux_dir. That would be: # am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"` # and then we would define $MISSING as # MISSING="\${SHELL} $am_aux_dir/missing" # This will work as long as MISSING is not called from configure, because # unfortunately $(top_srcdir) has no meaning in configure. # However there are other variables, like CC, which are often used in # configure, and could therefore not use this "fixed" $ac_aux_dir. # # Another solution, used here, is to always expand $ac_aux_dir to an # absolute PATH. The drawback is that using absolute paths prevent a # configured tree to be moved without reconfiguration. AC_DEFUN([AM_AUX_DIR_EXPAND], [dnl Rely on autoconf to set up CDPATH properly. AC_PREREQ([2.50])dnl # expand $ac_aux_dir to an absolute path am_aux_dir=`cd $ac_aux_dir && pwd` ]) # AM_CONDITIONAL -*- Autoconf -*- # Copyright (C) 1997, 2000, 2001, 2003, 2004, 2005, 2006, 2008 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 9 # AM_CONDITIONAL(NAME, SHELL-CONDITION) # ------------------------------------- # Define a conditional. AC_DEFUN([AM_CONDITIONAL], [AC_PREREQ(2.52)dnl ifelse([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])], [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl AC_SUBST([$1_TRUE])dnl AC_SUBST([$1_FALSE])dnl _AM_SUBST_NOTMAKE([$1_TRUE])dnl _AM_SUBST_NOTMAKE([$1_FALSE])dnl m4_define([_AM_COND_VALUE_$1], [$2])dnl if $2; then $1_TRUE= $1_FALSE='#' else $1_TRUE='#' $1_FALSE= fi AC_CONFIG_COMMANDS_PRE( [if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then AC_MSG_ERROR([[conditional "$1" was never defined. Usually this means the macro was only invoked conditionally.]]) fi])]) # Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2009, # 2010, 2011 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 12 # There are a few dirty hacks below to avoid letting `AC_PROG_CC' be # written in clear, in which case automake, when reading aclocal.m4, # will think it sees a *use*, and therefore will trigger all it's # C support machinery. Also note that it means that autoscan, seeing # CC etc. in the Makefile, will ask for an AC_PROG_CC use... # _AM_DEPENDENCIES(NAME) # ---------------------- # See how the compiler implements dependency checking. # NAME is "CC", "CXX", "GCJ", or "OBJC". # We try a few techniques and use that to set a single cache variable. # # We don't AC_REQUIRE the corresponding AC_PROG_CC since the latter was # modified to invoke _AM_DEPENDENCIES(CC); we would have a circular # dependency, and given that the user is not expected to run this macro, # just rely on AC_PROG_CC. AC_DEFUN([_AM_DEPENDENCIES], [AC_REQUIRE([AM_SET_DEPDIR])dnl AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl AC_REQUIRE([AM_MAKE_INCLUDE])dnl AC_REQUIRE([AM_DEP_TRACK])dnl ifelse([$1], CC, [depcc="$CC" am_compiler_list=], [$1], CXX, [depcc="$CXX" am_compiler_list=], [$1], OBJC, [depcc="$OBJC" am_compiler_list='gcc3 gcc'], [$1], UPC, [depcc="$UPC" am_compiler_list=], [$1], GCJ, [depcc="$GCJ" am_compiler_list='gcc3 gcc'], [depcc="$$1" am_compiler_list=]) AC_CACHE_CHECK([dependency style of $depcc], [am_cv_$1_dependencies_compiler_type], [if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then # We make a subdir and do the tests there. Otherwise we can end up # making bogus files that we don't know about and never remove. For # instance it was reported that on HP-UX the gcc test will end up # making a dummy file named `D' -- because `-MD' means `put the output # in D'. rm -rf conftest.dir mkdir conftest.dir # Copy depcomp to subdir because otherwise we won't find it if we're # using a relative directory. cp "$am_depcomp" conftest.dir cd conftest.dir # We will build objects and dependencies in a subdirectory because # it helps to detect inapplicable dependency modes. For instance # both Tru64's cc and ICC support -MD to output dependencies as a # side effect of compilation, but ICC will put the dependencies in # the current directory while Tru64 will put them in the object # directory. mkdir sub am_cv_$1_dependencies_compiler_type=none if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp` fi am__universal=false m4_case([$1], [CC], [case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac], [CXX], [case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac]) for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and # we should not choose a depcomp mode which is confused by this. # # We need to recreate these files for each test, as the compiler may # overwrite some of them when testing with obscure command lines. # This happens at least with the AIX C compiler. : > sub/conftest.c for i in 1 2 3 4 5 6; do echo '#include "conftst'$i'.h"' >> sub/conftest.c # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with # Solaris 8's {/usr,}/bin/sh. touch sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf # We check with `-c' and `-o' for the sake of the "dashmstdout" # mode. It turns out that the SunPro C++ compiler does not properly # handle `-M -o', and we need to detect this. Also, some Intel # versions had trouble with output in subdirs am__obj=sub/conftest.${OBJEXT-o} am__minus_obj="-o $am__obj" case $depmode in gcc) # This depmode causes a compiler race in universal mode. test "$am__universal" = false || continue ;; nosideeffect) # after this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested if test "x$enable_dependency_tracking" = xyes; then continue else break fi ;; msvc7 | msvc7msys | msvisualcpp | msvcmsys) # This compiler won't grok `-c -o', but also, the minuso test has # not run yet. These depmodes are late enough in the game, and # so weak that their functioning should not be impacted. am__obj=conftest.${OBJEXT-o} am__minus_obj= ;; none) break ;; esac if depmode=$depmode \ source=sub/conftest.c object=$am__obj \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep $am__obj sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message # that says an option was ignored or not supported. # When given -MP, icc 7.0 and 7.1 complain thusly: # icc: Command line warning: ignoring option '-M'; no argument required # The diagnosis changed in icc 8.0: # icc: Command line remark: option '-MP' not supported if (grep 'ignoring option' conftest.err || grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else am_cv_$1_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_$1_dependencies_compiler_type=none fi ]) AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type]) AM_CONDITIONAL([am__fastdep$1], [ test "x$enable_dependency_tracking" != xno \ && test "$am_cv_$1_dependencies_compiler_type" = gcc3]) ]) # AM_SET_DEPDIR # ------------- # Choose a directory name for dependency files. # This macro is AC_REQUIREd in _AM_DEPENDENCIES AC_DEFUN([AM_SET_DEPDIR], [AC_REQUIRE([AM_SET_LEADING_DOT])dnl AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl ]) # AM_DEP_TRACK # ------------ AC_DEFUN([AM_DEP_TRACK], [AC_ARG_ENABLE(dependency-tracking, [ --disable-dependency-tracking speeds up one-time build --enable-dependency-tracking do not reject slow dependency extractors]) if test "x$enable_dependency_tracking" != xno; then am_depcomp="$ac_aux_dir/depcomp" AMDEPBACKSLASH='\' am__nodep='_no' fi AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno]) AC_SUBST([AMDEPBACKSLASH])dnl _AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl AC_SUBST([am__nodep])dnl _AM_SUBST_NOTMAKE([am__nodep])dnl ]) # Generate code to set up dependency tracking. -*- Autoconf -*- # Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2008 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. #serial 5 # _AM_OUTPUT_DEPENDENCY_COMMANDS # ------------------------------ AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], [{ # Autoconf 2.62 quotes --file arguments for eval, but not when files # are listed without --file. Let's play safe and only enable the eval # if we detect the quoting. case $CONFIG_FILES in *\'*) eval set x "$CONFIG_FILES" ;; *) set x $CONFIG_FILES ;; esac shift for mf do # Strip MF so we end up with the name of the file. mf=`echo "$mf" | sed -e 's/:.*$//'` # Check whether this is an Automake generated Makefile or not. # We used to match only the files named `Makefile.in', but # some people rename them; so instead we look at the file content. # Grep'ing the first line is not enough: some people post-process # each Makefile.in and add a new line on top of each file to say so. # Grep'ing the whole file is not good either: AIX grep has a line # limit of 2048, but all sed's we know have understand at least 4000. if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then dirpart=`AS_DIRNAME("$mf")` else continue fi # Extract the definition of DEPDIR, am__include, and am__quote # from the Makefile without running `make'. DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` test -z "$DEPDIR" && continue am__include=`sed -n 's/^am__include = //p' < "$mf"` test -z "am__include" && continue am__quote=`sed -n 's/^am__quote = //p' < "$mf"` # When using ansi2knr, U may be empty or an underscore; expand it U=`sed -n 's/^U = //p' < "$mf"` # Find all dependency output files, they are included files with # $(DEPDIR) in their names. We invoke sed twice because it is the # simplest approach to changing $(DEPDIR) to its actual value in the # expansion. for file in `sed -n " s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do # Make sure the directory exists. test -f "$dirpart/$file" && continue fdir=`AS_DIRNAME(["$file"])` AS_MKDIR_P([$dirpart/$fdir]) # echo "creating $dirpart/$file" echo '# dummy' > "$dirpart/$file" done done } ])# _AM_OUTPUT_DEPENDENCY_COMMANDS # AM_OUTPUT_DEPENDENCY_COMMANDS # ----------------------------- # This macro should only be invoked once -- use via AC_REQUIRE. # # This code is only required when automatic dependency tracking # is enabled. FIXME. This creates each `.P' file that we will # need in order to bootstrap the dependency handling code. AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS], [AC_CONFIG_COMMANDS([depfiles], [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS], [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"]) ]) # Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 8 # AM_CONFIG_HEADER is obsolete. It has been replaced by AC_CONFIG_HEADERS. AU_DEFUN([AM_CONFIG_HEADER], [AC_CONFIG_HEADERS($@)]) # Do all the work for Automake. -*- Autoconf -*- # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, # 2005, 2006, 2008, 2009 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 16 # This macro actually does too much. Some checks are only needed if # your package does certain things. But this isn't really a big deal. # AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE]) # AM_INIT_AUTOMAKE([OPTIONS]) # ----------------------------------------------- # The call with PACKAGE and VERSION arguments is the old style # call (pre autoconf-2.50), which is being phased out. PACKAGE # and VERSION should now be passed to AC_INIT and removed from # the call to AM_INIT_AUTOMAKE. # We support both call styles for the transition. After # the next Automake release, Autoconf can make the AC_INIT # arguments mandatory, and then we can depend on a new Autoconf # release and drop the old call support. AC_DEFUN([AM_INIT_AUTOMAKE], [AC_PREREQ([2.62])dnl dnl Autoconf wants to disallow AM_ names. We explicitly allow dnl the ones we care about. m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl AC_REQUIRE([AC_PROG_INSTALL])dnl if test "`cd $srcdir && pwd`" != "`pwd`"; then # Use -I$(srcdir) only when $(srcdir) != ., so that make's output # is not polluted with repeated "-I." AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl # test to see if srcdir already configured if test -f $srcdir/config.status; then AC_MSG_ERROR([source directory already configured; run "make distclean" there first]) fi fi # test whether we have cygpath if test -z "$CYGPATH_W"; then if (cygpath --version) >/dev/null 2>/dev/null; then CYGPATH_W='cygpath -w' else CYGPATH_W=echo fi fi AC_SUBST([CYGPATH_W]) # Define the identity of the package. dnl Distinguish between old-style and new-style calls. m4_ifval([$2], [m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl AC_SUBST([PACKAGE], [$1])dnl AC_SUBST([VERSION], [$2])], [_AM_SET_OPTIONS([$1])dnl dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT. m4_if(m4_ifdef([AC_PACKAGE_NAME], 1)m4_ifdef([AC_PACKAGE_VERSION], 1), 11,, [m4_fatal([AC_INIT should be called with package and version arguments])])dnl AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl _AM_IF_OPTION([no-define],, [AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package]) AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])])dnl # Some tools Automake needs. AC_REQUIRE([AM_SANITY_CHECK])dnl AC_REQUIRE([AC_ARG_PROGRAM])dnl AM_MISSING_PROG(ACLOCAL, aclocal-${am__api_version}) AM_MISSING_PROG(AUTOCONF, autoconf) AM_MISSING_PROG(AUTOMAKE, automake-${am__api_version}) AM_MISSING_PROG(AUTOHEADER, autoheader) AM_MISSING_PROG(MAKEINFO, makeinfo) AC_REQUIRE([AM_PROG_INSTALL_SH])dnl AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl AC_REQUIRE([AM_PROG_MKDIR_P])dnl # We need awk for the "check" target. The system "awk" is bad on # some platforms. AC_REQUIRE([AC_PROG_AWK])dnl AC_REQUIRE([AC_PROG_MAKE_SET])dnl AC_REQUIRE([AM_SET_LEADING_DOT])dnl _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], [_AM_PROG_TAR([v7])])]) _AM_IF_OPTION([no-dependencies],, [AC_PROVIDE_IFELSE([AC_PROG_CC], [_AM_DEPENDENCIES(CC)], [define([AC_PROG_CC], defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl AC_PROVIDE_IFELSE([AC_PROG_CXX], [_AM_DEPENDENCIES(CXX)], [define([AC_PROG_CXX], defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl AC_PROVIDE_IFELSE([AC_PROG_OBJC], [_AM_DEPENDENCIES(OBJC)], [define([AC_PROG_OBJC], defn([AC_PROG_OBJC])[_AM_DEPENDENCIES(OBJC)])])dnl ]) _AM_IF_OPTION([silent-rules], [AC_REQUIRE([AM_SILENT_RULES])])dnl dnl The `parallel-tests' driver may need to know about EXEEXT, so add the dnl `am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen. This macro dnl is hooked onto _AC_COMPILER_EXEEXT early, see below. AC_CONFIG_COMMANDS_PRE(dnl [m4_provide_if([_AM_COMPILER_EXEEXT], [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl ]) dnl Hook into `_AC_COMPILER_EXEEXT' early to learn its expansion. Do not dnl add the conditional right here, as _AC_COMPILER_EXEEXT may be further dnl mangled by Autoconf and run in a shell conditional statement. m4_define([_AC_COMPILER_EXEEXT], m4_defn([_AC_COMPILER_EXEEXT])[m4_provide([_AM_COMPILER_EXEEXT])]) # When config.status generates a header, we must update the stamp-h file. # This file resides in the same directory as the config header # that is generated. The stamp files are numbered to have different names. # Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the # loop where config.status creates the headers, so we can generate # our stamp files there. AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], [# Compute $1's index in $config_headers. _am_arg=$1 _am_stamp_count=1 for _am_header in $config_headers :; do case $_am_header in $_am_arg | $_am_arg:* ) break ;; * ) _am_stamp_count=`expr $_am_stamp_count + 1` ;; esac done echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count]) # Copyright (C) 2001, 2003, 2005, 2008, 2011 Free Software Foundation, # Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 1 # AM_PROG_INSTALL_SH # ------------------ # Define $install_sh. AC_DEFUN([AM_PROG_INSTALL_SH], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl if test x"${install_sh}" != xset; then case $am_aux_dir in *\ * | *\ *) install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; *) install_sh="\${SHELL} $am_aux_dir/install-sh" esac fi AC_SUBST(install_sh)]) # Copyright (C) 2003, 2005 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 2 # Check whether the underlying file-system supports filenames # with a leading dot. For instance MS-DOS doesn't. AC_DEFUN([AM_SET_LEADING_DOT], [rm -rf .tst 2>/dev/null mkdir .tst 2>/dev/null if test -d .tst; then am__leading_dot=. else am__leading_dot=_ fi rmdir .tst 2>/dev/null AC_SUBST([am__leading_dot])]) # Check to see how 'make' treats includes. -*- Autoconf -*- # Copyright (C) 2001, 2002, 2003, 2005, 2009 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 4 # AM_MAKE_INCLUDE() # ----------------- # Check to see how make treats includes. AC_DEFUN([AM_MAKE_INCLUDE], [am_make=${MAKE-make} cat > confinc << 'END' am__doit: @echo this is the am__doit target .PHONY: am__doit END # If we don't find an include directive, just comment out the code. AC_MSG_CHECKING([for style of include used by $am_make]) am__include="#" am__quote= _am_result=none # First try GNU make style include. echo "include confinc" > confmf # Ignore all kinds of additional output from `make'. case `$am_make -s -f confmf 2> /dev/null` in #( *the\ am__doit\ target*) am__include=include am__quote= _am_result=GNU ;; esac # Now try BSD make style include. if test "$am__include" = "#"; then echo '.include "confinc"' > confmf case `$am_make -s -f confmf 2> /dev/null` in #( *the\ am__doit\ target*) am__include=.include am__quote="\"" _am_result=BSD ;; esac fi AC_SUBST([am__include]) AC_SUBST([am__quote]) AC_MSG_RESULT([$_am_result]) rm -f confinc confmf ]) # Copyright (C) 1999, 2000, 2001, 2003, 2004, 2005, 2008 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 6 # AM_PROG_CC_C_O # -------------- # Like AC_PROG_CC_C_O, but changed for automake. AC_DEFUN([AM_PROG_CC_C_O], [AC_REQUIRE([AC_PROG_CC_C_O])dnl AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl AC_REQUIRE_AUX_FILE([compile])dnl # FIXME: we rely on the cache variable name because # there is no other way. set dummy $CC am_cc=`echo $[2] | sed ['s/[^a-zA-Z0-9_]/_/g;s/^[0-9]/_/']` eval am_t=\$ac_cv_prog_cc_${am_cc}_c_o if test "$am_t" != yes; then # Losing compiler, so override with the script. # FIXME: It is wrong to rewrite CC. # But if we don't then we get into trouble of one sort or another. # A longer-term fix would be to have automake use am__CC in this case, # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)" CC="$am_aux_dir/compile $CC" fi dnl Make sure AC_PROG_CC is never called again, or it will override our dnl setting of CC. m4_define([AC_PROG_CC], [m4_fatal([AC_PROG_CC cannot be called after AM_PROG_CC_C_O])]) ]) # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- # Copyright (C) 1997, 1999, 2000, 2001, 2003, 2004, 2005, 2008 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 6 # AM_MISSING_PROG(NAME, PROGRAM) # ------------------------------ AC_DEFUN([AM_MISSING_PROG], [AC_REQUIRE([AM_MISSING_HAS_RUN]) $1=${$1-"${am_missing_run}$2"} AC_SUBST($1)]) # AM_MISSING_HAS_RUN # ------------------ # Define MISSING if not defined so far and test if it supports --run. # If it does, set am_missing_run to use it, otherwise, to nothing. AC_DEFUN([AM_MISSING_HAS_RUN], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl AC_REQUIRE_AUX_FILE([missing])dnl if test x"${MISSING+set}" != xset; then case $am_aux_dir in *\ * | *\ *) MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; *) MISSING="\${SHELL} $am_aux_dir/missing" ;; esac fi # Use eval to expand $SHELL if eval "$MISSING --run true"; then am_missing_run="$MISSING --run " else am_missing_run= AC_MSG_WARN([`missing' script is too old or missing]) fi ]) # Copyright (C) 2003, 2004, 2005, 2006, 2011 Free Software Foundation, # Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 1 # AM_PROG_MKDIR_P # --------------- # Check for `mkdir -p'. AC_DEFUN([AM_PROG_MKDIR_P], [AC_PREREQ([2.60])dnl AC_REQUIRE([AC_PROG_MKDIR_P])dnl dnl Automake 1.8 to 1.9.6 used to define mkdir_p. We now use MKDIR_P, dnl while keeping a definition of mkdir_p for backward compatibility. dnl @MKDIR_P@ is magic: AC_OUTPUT adjusts its value for each Makefile. dnl However we cannot define mkdir_p as $(MKDIR_P) for the sake of dnl Makefile.ins that do not define MKDIR_P, so we do our own dnl adjustment using top_builddir (which is defined more often than dnl MKDIR_P). AC_SUBST([mkdir_p], ["$MKDIR_P"])dnl case $mkdir_p in [[\\/$]]* | ?:[[\\/]]*) ;; */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;; esac ]) # Helper functions for option handling. -*- Autoconf -*- # Copyright (C) 2001, 2002, 2003, 2005, 2008, 2010 Free Software # Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 5 # _AM_MANGLE_OPTION(NAME) # ----------------------- AC_DEFUN([_AM_MANGLE_OPTION], [[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])]) # _AM_SET_OPTION(NAME) # -------------------- # Set option NAME. Presently that only means defining a flag for this option. AC_DEFUN([_AM_SET_OPTION], [m4_define(_AM_MANGLE_OPTION([$1]), 1)]) # _AM_SET_OPTIONS(OPTIONS) # ------------------------ # OPTIONS is a space-separated list of Automake options. AC_DEFUN([_AM_SET_OPTIONS], [m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])]) # _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET]) # ------------------------------------------- # Execute IF-SET if OPTION is set, IF-NOT-SET otherwise. AC_DEFUN([_AM_IF_OPTION], [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])]) # Check to make sure that the build environment is sane. -*- Autoconf -*- # Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005, 2008 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 5 # AM_SANITY_CHECK # --------------- AC_DEFUN([AM_SANITY_CHECK], [AC_MSG_CHECKING([whether build environment is sane]) # Just in case sleep 1 echo timestamp > conftest.file # Reject unsafe characters in $srcdir or the absolute working directory # name. Accept space and tab only in the latter. am_lf=' ' case `pwd` in *[[\\\"\#\$\&\'\`$am_lf]]*) AC_MSG_ERROR([unsafe absolute working directory name]);; esac case $srcdir in *[[\\\"\#\$\&\'\`$am_lf\ \ ]]*) AC_MSG_ERROR([unsafe srcdir value: `$srcdir']);; esac # Do `set' in a subshell so we don't clobber the current shell's # arguments. Must try -L first in case configure is actually a # symlink; some systems play weird games with the mod time of symlinks # (eg FreeBSD returns the mod time of the symlink's containing # directory). if ( set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` if test "$[*]" = "X"; then # -L didn't work. set X `ls -t "$srcdir/configure" conftest.file` fi rm -f conftest.file if test "$[*]" != "X $srcdir/configure conftest.file" \ && test "$[*]" != "X conftest.file $srcdir/configure"; then # If neither matched, then we have a broken ls. This can happen # if, for instance, CONFIG_SHELL is bash and it inherits a # broken ls alias from the environment. This has actually # happened. Such a system could not be considered "sane". AC_MSG_ERROR([ls -t appears to fail. Make sure there is not a broken alias in your environment]) fi test "$[2]" = conftest.file ) then # Ok. : else AC_MSG_ERROR([newly created file is older than distributed files! Check your system clock]) fi AC_MSG_RESULT(yes)]) # Copyright (C) 2001, 2003, 2005, 2011 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 1 # AM_PROG_INSTALL_STRIP # --------------------- # One issue with vendor `install' (even GNU) is that you can't # specify the program used to strip binaries. This is especially # annoying in cross-compiling environments, where the build's strip # is unlikely to handle the host's binaries. # Fortunately install-sh will honor a STRIPPROG variable, so we # always use install-sh in `make install-strip', and initialize # STRIPPROG with the value of the STRIP variable (set by the user). AC_DEFUN([AM_PROG_INSTALL_STRIP], [AC_REQUIRE([AM_PROG_INSTALL_SH])dnl # Installed binaries are usually stripped using `strip' when the user # run `make install-strip'. However `strip' might not be the right # tool to use in cross-compilation environments, therefore Automake # will honor the `STRIP' environment variable to overrule this program. dnl Don't test for $cross_compiling = yes, because it might be `maybe'. if test "$cross_compiling" != no; then AC_CHECK_TOOL([STRIP], [strip], :) fi INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" AC_SUBST([INSTALL_STRIP_PROGRAM])]) # Copyright (C) 2006, 2008, 2010 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 3 # _AM_SUBST_NOTMAKE(VARIABLE) # --------------------------- # Prevent Automake from outputting VARIABLE = @VARIABLE@ in Makefile.in. # This macro is traced by Automake. AC_DEFUN([_AM_SUBST_NOTMAKE]) # AM_SUBST_NOTMAKE(VARIABLE) # -------------------------- # Public sister of _AM_SUBST_NOTMAKE. AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)]) # Check how to create a tarball. -*- Autoconf -*- # Copyright (C) 2004, 2005, 2012 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 2 # _AM_PROG_TAR(FORMAT) # -------------------- # Check how to create a tarball in format FORMAT. # FORMAT should be one of `v7', `ustar', or `pax'. # # Substitute a variable $(am__tar) that is a command # writing to stdout a FORMAT-tarball containing the directory # $tardir. # tardir=directory && $(am__tar) > result.tar # # Substitute a variable $(am__untar) that extract such # a tarball read from stdin. # $(am__untar) < result.tar AC_DEFUN([_AM_PROG_TAR], [# Always define AMTAR for backward compatibility. Yes, it's still used # in the wild :-( We should find a proper way to deprecate it ... AC_SUBST([AMTAR], ['$${TAR-tar}']) m4_if([$1], [v7], [am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'], [m4_case([$1], [ustar],, [pax],, [m4_fatal([Unknown tar format])]) AC_MSG_CHECKING([how to create a $1 tar archive]) # Loop over all known methods to create a tar archive until one works. _am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none' _am_tools=${am_cv_prog_tar_$1-$_am_tools} # Do not fold the above two line into one, because Tru64 sh and # Solaris sh will not grok spaces in the rhs of `-'. for _am_tool in $_am_tools do case $_am_tool in gnutar) for _am_tar in tar gnutar gtar; do AM_RUN_LOG([$_am_tar --version]) && break done am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"' am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"' am__untar="$_am_tar -xf -" ;; plaintar) # Must skip GNU tar: if it does not support --format= it doesn't create # ustar tarball either. (tar --version) >/dev/null 2>&1 && continue am__tar='tar chf - "$$tardir"' am__tar_='tar chf - "$tardir"' am__untar='tar xf -' ;; pax) am__tar='pax -L -x $1 -w "$$tardir"' am__tar_='pax -L -x $1 -w "$tardir"' am__untar='pax -r' ;; cpio) am__tar='find "$$tardir" -print | cpio -o -H $1 -L' am__tar_='find "$tardir" -print | cpio -o -H $1 -L' am__untar='cpio -i -H $1 -d' ;; none) am__tar=false am__tar_=false am__untar=false ;; esac # If the value was cached, stop now. We just wanted to have am__tar # and am__untar set. test -n "${am_cv_prog_tar_$1}" && break # tar/untar a dummy directory, and stop if the command works rm -rf conftest.dir mkdir conftest.dir echo GrepMe > conftest.dir/file AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar]) rm -rf conftest.dir if test -s conftest.tar; then AM_RUN_LOG([$am__untar /dev/null 2>&1 && break fi done rm -rf conftest.dir AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool]) AC_MSG_RESULT([$am_cv_prog_tar_$1])]) AC_SUBST([am__tar]) AC_SUBST([am__untar]) ]) # _AM_PROG_TAR toilet-0.3/configure0000755000175000017500000052407011737655633011534 00000000000000#! /bin/sh # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.68 for toilet 0.3. # # # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, # 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software # Foundation, Inc. # # # This configure script is free software; the Free Software Foundation # gives unlimited permission to copy, distribute and modify it. ## -------------------- ## ## M4sh Initialization. ## ## -------------------- ## # Be more Bourne compatible DUALCASE=1; export DUALCASE # for MKS sh if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case `(set -o) 2>/dev/null` in #( *posix*) : set -o posix ;; #( *) : ;; esac fi as_nl=' ' export as_nl # Printing a long string crashes Solaris 7 /usr/bin/printf. as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo # Prefer a ksh shell builtin over an external printf program on Solaris, # but without wasting forks for bash or zsh. if test -z "$BASH_VERSION$ZSH_VERSION" \ && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='print -r --' as_echo_n='print -rn --' elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='printf %s\n' as_echo_n='printf %s' else if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' as_echo_n='/usr/ucb/echo -n' else as_echo_body='eval expr "X$1" : "X\\(.*\\)"' as_echo_n_body='eval arg=$1; case $arg in #( *"$as_nl"*) expr "X$arg" : "X\\(.*\\)$as_nl"; arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; esac; expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" ' export as_echo_n_body as_echo_n='sh -c $as_echo_n_body as_echo' fi export as_echo_body as_echo='sh -c $as_echo_body as_echo' fi # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then PATH_SEPARATOR=: (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || PATH_SEPARATOR=';' } fi # IFS # We need space, tab and new line, in precisely that order. Quoting is # there to prevent editors from complaining about space-tab. # (If _AS_PATH_WALK were called with IFS unset, it would disable word # splitting by setting IFS to empty value.) IFS=" "" $as_nl" # Find who we are. Look in the path if we contain no directory separator. as_myself= case $0 in #(( *[\\/]* ) as_myself=$0 ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break done IFS=$as_save_IFS ;; esac # We did not find ourselves, most probably we were run as `sh COMMAND' # in which case we are not to be found in the path. if test "x$as_myself" = x; then as_myself=$0 fi if test ! -f "$as_myself"; then $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 exit 1 fi # Unset variables that we do not need and which cause bugs (e.g. in # pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" # suppresses any "Segmentation fault" message there. '((' could # trigger a bug in pdksh 5.2.14. for as_var in BASH_ENV ENV MAIL MAILPATH do eval test x\${$as_var+set} = xset \ && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : done PS1='$ ' PS2='> ' PS4='+ ' # NLS nuisances. LC_ALL=C export LC_ALL LANGUAGE=C export LANGUAGE # CDPATH. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH if test "x$CONFIG_SHELL" = x; then as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on \${1+\"\$@\"}, which # is contrary to our usage. Disable this feature. alias -g '\${1+\"\$@\"}'='\"\$@\"' setopt NO_GLOB_SUBST else case \`(set -o) 2>/dev/null\` in #( *posix*) : set -o posix ;; #( *) : ;; esac fi " as_required="as_fn_return () { (exit \$1); } as_fn_success () { as_fn_return 0; } as_fn_failure () { as_fn_return 1; } as_fn_ret_success () { return 0; } as_fn_ret_failure () { return 1; } exitcode=0 as_fn_success || { exitcode=1; echo as_fn_success failed.; } as_fn_failure && { exitcode=1; echo as_fn_failure succeeded.; } as_fn_ret_success || { exitcode=1; echo as_fn_ret_success failed.; } as_fn_ret_failure && { exitcode=1; echo as_fn_ret_failure succeeded.; } if ( set x; as_fn_ret_success y && test x = \"\$1\" ); then : else exitcode=1; echo positional parameters were not saved. fi test x\$exitcode = x0 || exit 1" as_suggested=" as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" && test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1 test \$(( 1 + 1 )) = 2 || exit 1" if (eval "$as_required") 2>/dev/null; then : as_have_required=yes else as_have_required=no fi if test x$as_have_required = xyes && (eval "$as_suggested") 2>/dev/null; then : else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR as_found=false for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. as_found=: case $as_dir in #( /*) for as_base in sh bash ksh sh5; do # Try only shells that exist, to save several forks. as_shell=$as_dir/$as_base if { test -f "$as_shell" || test -f "$as_shell.exe"; } && { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$as_shell"; } 2>/dev/null; then : CONFIG_SHELL=$as_shell as_have_required=yes if { $as_echo "$as_bourne_compatible""$as_suggested" | as_run=a "$as_shell"; } 2>/dev/null; then : break 2 fi fi done;; esac as_found=false done $as_found || { if { test -f "$SHELL" || test -f "$SHELL.exe"; } && { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$SHELL"; } 2>/dev/null; then : CONFIG_SHELL=$SHELL as_have_required=yes fi; } IFS=$as_save_IFS if test "x$CONFIG_SHELL" != x; then : # We cannot yet assume a decent shell, so we have to provide a # neutralization value for shells without unset; and this also # works around shells that cannot unset nonexistent variables. # Preserve -v and -x to the replacement shell. BASH_ENV=/dev/null ENV=/dev/null (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV export CONFIG_SHELL case $- in # (((( *v*x* | *x*v* ) as_opts=-vx ;; *v* ) as_opts=-v ;; *x* ) as_opts=-x ;; * ) as_opts= ;; esac exec "$CONFIG_SHELL" $as_opts "$as_myself" ${1+"$@"} fi if test x$as_have_required = xno; then : $as_echo "$0: This script requires a shell more modern than all" $as_echo "$0: the shells that I found on your system." if test x${ZSH_VERSION+set} = xset ; then $as_echo "$0: In particular, zsh $ZSH_VERSION has bugs and should" $as_echo "$0: be upgraded to zsh 4.3.4 or later." else $as_echo "$0: Please tell bug-autoconf@gnu.org about your system, $0: including any error possibly output before this $0: message. Then install a modern shell, or manually run $0: the script under such a shell if you do have one." fi exit 1 fi fi fi SHELL=${CONFIG_SHELL-/bin/sh} export SHELL # Unset more variables known to interfere with behavior of common tools. CLICOLOR_FORCE= GREP_OPTIONS= unset CLICOLOR_FORCE GREP_OPTIONS ## --------------------- ## ## M4sh Shell Functions. ## ## --------------------- ## # as_fn_unset VAR # --------------- # Portably unset VAR. as_fn_unset () { { eval $1=; unset $1;} } as_unset=as_fn_unset # as_fn_set_status STATUS # ----------------------- # Set $? to STATUS, without forking. as_fn_set_status () { return $1 } # as_fn_set_status # as_fn_exit STATUS # ----------------- # Exit the shell with STATUS, even in a "trap 0" or "set -e" context. as_fn_exit () { set +e as_fn_set_status $1 exit $1 } # as_fn_exit # as_fn_mkdir_p # ------------- # Create "$as_dir" as a directory, including parents if necessary. as_fn_mkdir_p () { case $as_dir in #( -*) as_dir=./$as_dir;; esac test -d "$as_dir" || eval $as_mkdir_p || { as_dirs= while :; do case $as_dir in #( *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( *) as_qdir=$as_dir;; esac as_dirs="'$as_qdir' $as_dirs" as_dir=`$as_dirname -- "$as_dir" || $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_dir" : 'X\(//\)[^/]' \| \ X"$as_dir" : 'X\(//\)$' \| \ X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$as_dir" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` test -d "$as_dir" && break done test -z "$as_dirs" || eval "mkdir $as_dirs" } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" } # as_fn_mkdir_p # as_fn_append VAR VALUE # ---------------------- # Append the text in VALUE to the end of the definition contained in VAR. Take # advantage of any shell optimizations that allow amortized linear growth over # repeated appends, instead of the typical quadratic growth present in naive # implementations. if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : eval 'as_fn_append () { eval $1+=\$2 }' else as_fn_append () { eval $1=\$$1\$2 } fi # as_fn_append # as_fn_arith ARG... # ------------------ # Perform arithmetic evaluation on the ARGs, and store the result in the # global $as_val. Take advantage of shells that can avoid forks. The arguments # must be portable across $(()) and expr. if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : eval 'as_fn_arith () { as_val=$(( $* )) }' else as_fn_arith () { as_val=`expr "$@" || test $? -eq 1` } fi # as_fn_arith # as_fn_error STATUS ERROR [LINENO LOG_FD] # ---------------------------------------- # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are # provided, also output the error to LOG_FD, referencing LINENO. Then exit the # script with STATUS, using 1 if that was 0. as_fn_error () { as_status=$1; test $as_status -eq 0 && as_status=1 if test "$4"; then as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 fi $as_echo "$as_me: error: $2" >&2 as_fn_exit $as_status } # as_fn_error if expr a : '\(a\)' >/dev/null 2>&1 && test "X`expr 00001 : '.*\(...\)'`" = X001; then as_expr=expr else as_expr=false fi if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then as_basename=basename else as_basename=false fi if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then as_dirname=dirname else as_dirname=false fi as_me=`$as_basename -- "$0" || $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ X"$0" : 'X\(//\)$' \| \ X"$0" : 'X\(/\)' \| . 2>/dev/null || $as_echo X/"$0" | sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/ q } /^X\/\(\/\/\)$/{ s//\1/ q } /^X\/\(\/\).*/{ s//\1/ q } s/.*/./; q'` # Avoid depending upon Character Ranges. as_cr_letters='abcdefghijklmnopqrstuvwxyz' as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' as_cr_Letters=$as_cr_letters$as_cr_LETTERS as_cr_digits='0123456789' as_cr_alnum=$as_cr_Letters$as_cr_digits as_lineno_1=$LINENO as_lineno_1a=$LINENO as_lineno_2=$LINENO as_lineno_2a=$LINENO eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" && test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || { # Blame Lee E. McMahon (1931-1989) for sed's syntax. :-) sed -n ' p /[$]LINENO/= ' <$as_myself | sed ' s/[$]LINENO.*/&-/ t lineno b :lineno N :loop s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/ t loop s/-\n.*// ' >$as_me.lineno && chmod +x "$as_me.lineno" || { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; } # Don't try to exec as it changes $[0], causing all sort of problems # (the dirname of $[0] is not the place where we might find the # original and so on. Autoconf is especially sensitive to this). . "./$as_me.lineno" # Exit status is that of the last command. exit } ECHO_C= ECHO_N= ECHO_T= case `echo -n x` in #((((( -n*) case `echo 'xy\c'` in *c*) ECHO_T=' ';; # ECHO_T is single tab character. xy) ECHO_C='\c';; *) echo `echo ksh88 bug on AIX 6.1` > /dev/null ECHO_T=' ';; esac;; *) ECHO_N='-n';; esac rm -f conf$$ conf$$.exe conf$$.file if test -d conf$$.dir; then rm -f conf$$.dir/conf$$.file else rm -f conf$$.dir mkdir conf$$.dir 2>/dev/null fi if (echo >conf$$.file) 2>/dev/null; then if ln -s conf$$.file conf$$ 2>/dev/null; then as_ln_s='ln -s' # ... but there are two gotchas: # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. # In both cases, we have to default to `cp -p'. ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || as_ln_s='cp -p' elif ln conf$$.file conf$$ 2>/dev/null; then as_ln_s=ln else as_ln_s='cp -p' fi else as_ln_s='cp -p' fi rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file rmdir conf$$.dir 2>/dev/null if mkdir -p . 2>/dev/null; then as_mkdir_p='mkdir -p "$as_dir"' else test -d ./-p && rmdir ./-p as_mkdir_p=false fi if test -x / >/dev/null 2>&1; then as_test_x='test -x' else if ls -dL / >/dev/null 2>&1; then as_ls_L_option=L else as_ls_L_option= fi as_test_x=' eval sh -c '\'' if test -d "$1"; then test -d "$1/."; else case $1 in #( -*)set "./$1";; esac; case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in #(( ???[sx]*):;;*)false;;esac;fi '\'' sh ' fi as_executable_p=$as_test_x # Sed expression to map a string onto a valid CPP name. as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" # Sed expression to map a string onto a valid variable name. as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" test -n "$DJDIR" || exec 7<&0 &1 # Name of the host. # hostname on some systems (SVR3.2, old GNU/Linux) returns a bogus exit status, # so uname gets run too. ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q` # # Initializations. # ac_default_prefix=/usr/local ac_clean_files= ac_config_libobj_dir=. LIBOBJS= cross_compiling=no subdirs= MFLAGS= MAKEFLAGS= # Identity of this package. PACKAGE_NAME='toilet' PACKAGE_TARNAME='toilet' PACKAGE_VERSION='0.3' PACKAGE_STRING='toilet 0.3' PACKAGE_BUGREPORT='' PACKAGE_URL='' ac_unique_file="src/main.c" # Factoring default headers for most tests. ac_includes_default="\ #include #ifdef HAVE_SYS_TYPES_H # include #endif #ifdef HAVE_SYS_STAT_H # include #endif #ifdef STDC_HEADERS # include # include #else # ifdef HAVE_STDLIB_H # include # endif #endif #ifdef HAVE_STRING_H # if !defined STDC_HEADERS && defined HAVE_MEMORY_H # include # endif # include #endif #ifdef HAVE_STRINGS_H # include #endif #ifdef HAVE_INTTYPES_H # include #endif #ifdef HAVE_STDINT_H # include #endif #ifdef HAVE_UNISTD_H # include #endif" ac_subst_vars='am__EXEEXT_FALSE am__EXEEXT_TRUE LTLIBOBJS LIBOBJS CACA_LIBS CACA_CFLAGS PKG_CONFIG_LIBDIR PKG_CONFIG_PATH PKG_CONFIG EGREP GREP CPP am__fastdepCC_FALSE am__fastdepCC_TRUE CCDEPMODE am__nodep AMDEPBACKSLASH AMDEP_FALSE AMDEP_TRUE am__quote am__include DEPDIR OBJEXT EXEEXT ac_ct_CC CPPFLAGS LDFLAGS CFLAGS CC am__untar am__tar AMTAR am__leading_dot SET_MAKE AWK mkdir_p MKDIR_P INSTALL_STRIP_PROGRAM STRIP install_sh MAKEINFO AUTOHEADER AUTOMAKE AUTOCONF ACLOCAL VERSION PACKAGE CYGPATH_W am__isrc INSTALL_DATA INSTALL_SCRIPT INSTALL_PROGRAM target_os target_vendor target_cpu target host_os host_vendor host_cpu host build_os build_vendor build_cpu build target_alias host_alias build_alias LIBS ECHO_T ECHO_N ECHO_C DEFS mandir localedir libdir psdir pdfdir dvidir htmldir infodir docdir oldincludedir includedir localstatedir sharedstatedir sysconfdir datadir datarootdir libexecdir sbindir bindir program_transform_name prefix exec_prefix PACKAGE_URL PACKAGE_BUGREPORT PACKAGE_STRING PACKAGE_VERSION PACKAGE_TARNAME PACKAGE_NAME PATH_SEPARATOR SHELL' ac_subst_files='' ac_user_opts=' enable_option_checking enable_dependency_tracking ' ac_precious_vars='build_alias host_alias target_alias CC CFLAGS LDFLAGS LIBS CPPFLAGS CPP PKG_CONFIG PKG_CONFIG_PATH PKG_CONFIG_LIBDIR CACA_CFLAGS CACA_LIBS' # Initialize some variables set by options. ac_init_help= ac_init_version=false ac_unrecognized_opts= ac_unrecognized_sep= # The variables have the same names as the options, with # dashes changed to underlines. cache_file=/dev/null exec_prefix=NONE no_create= no_recursion= prefix=NONE program_prefix=NONE program_suffix=NONE program_transform_name=s,x,x, silent= site= srcdir= verbose= x_includes=NONE x_libraries=NONE # Installation directory options. # These are left unexpanded so users can "make install exec_prefix=/foo" # and all the variables that are supposed to be based on exec_prefix # by default will actually change. # Use braces instead of parens because sh, perl, etc. also accept them. # (The list follows the same order as the GNU Coding Standards.) bindir='${exec_prefix}/bin' sbindir='${exec_prefix}/sbin' libexecdir='${exec_prefix}/libexec' datarootdir='${prefix}/share' datadir='${datarootdir}' sysconfdir='${prefix}/etc' sharedstatedir='${prefix}/com' localstatedir='${prefix}/var' includedir='${prefix}/include' oldincludedir='/usr/include' docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' infodir='${datarootdir}/info' htmldir='${docdir}' dvidir='${docdir}' pdfdir='${docdir}' psdir='${docdir}' libdir='${exec_prefix}/lib' localedir='${datarootdir}/locale' mandir='${datarootdir}/man' ac_prev= ac_dashdash= for ac_option do # If the previous option needs an argument, assign it. if test -n "$ac_prev"; then eval $ac_prev=\$ac_option ac_prev= continue fi case $ac_option in *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;; *=) ac_optarg= ;; *) ac_optarg=yes ;; esac # Accept the important Cygnus configure options, so we can diagnose typos. case $ac_dashdash$ac_option in --) ac_dashdash=yes ;; -bindir | --bindir | --bindi | --bind | --bin | --bi) ac_prev=bindir ;; -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*) bindir=$ac_optarg ;; -build | --build | --buil | --bui | --bu) ac_prev=build_alias ;; -build=* | --build=* | --buil=* | --bui=* | --bu=*) build_alias=$ac_optarg ;; -cache-file | --cache-file | --cache-fil | --cache-fi \ | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c) ac_prev=cache_file ;; -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \ | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*) cache_file=$ac_optarg ;; --config-cache | -C) cache_file=config.cache ;; -datadir | --datadir | --datadi | --datad) ac_prev=datadir ;; -datadir=* | --datadir=* | --datadi=* | --datad=*) datadir=$ac_optarg ;; -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \ | --dataroo | --dataro | --datar) ac_prev=datarootdir ;; -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \ | --dataroot=* | --dataroo=* | --dataro=* | --datar=*) datarootdir=$ac_optarg ;; -disable-* | --disable-*) ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid feature name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "enable_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--disable-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval enable_$ac_useropt=no ;; -docdir | --docdir | --docdi | --doc | --do) ac_prev=docdir ;; -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*) docdir=$ac_optarg ;; -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv) ac_prev=dvidir ;; -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*) dvidir=$ac_optarg ;; -enable-* | --enable-*) ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid feature name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "enable_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--enable-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval enable_$ac_useropt=\$ac_optarg ;; -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \ | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \ | --exec | --exe | --ex) ac_prev=exec_prefix ;; -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \ | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \ | --exec=* | --exe=* | --ex=*) exec_prefix=$ac_optarg ;; -gas | --gas | --ga | --g) # Obsolete; use --with-gas. with_gas=yes ;; -help | --help | --hel | --he | -h) ac_init_help=long ;; -help=r* | --help=r* | --hel=r* | --he=r* | -hr*) ac_init_help=recursive ;; -help=s* | --help=s* | --hel=s* | --he=s* | -hs*) ac_init_help=short ;; -host | --host | --hos | --ho) ac_prev=host_alias ;; -host=* | --host=* | --hos=* | --ho=*) host_alias=$ac_optarg ;; -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht) ac_prev=htmldir ;; -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \ | --ht=*) htmldir=$ac_optarg ;; -includedir | --includedir | --includedi | --included | --include \ | --includ | --inclu | --incl | --inc) ac_prev=includedir ;; -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \ | --includ=* | --inclu=* | --incl=* | --inc=*) includedir=$ac_optarg ;; -infodir | --infodir | --infodi | --infod | --info | --inf) ac_prev=infodir ;; -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*) infodir=$ac_optarg ;; -libdir | --libdir | --libdi | --libd) ac_prev=libdir ;; -libdir=* | --libdir=* | --libdi=* | --libd=*) libdir=$ac_optarg ;; -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \ | --libexe | --libex | --libe) ac_prev=libexecdir ;; -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \ | --libexe=* | --libex=* | --libe=*) libexecdir=$ac_optarg ;; -localedir | --localedir | --localedi | --localed | --locale) ac_prev=localedir ;; -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*) localedir=$ac_optarg ;; -localstatedir | --localstatedir | --localstatedi | --localstated \ | --localstate | --localstat | --localsta | --localst | --locals) ac_prev=localstatedir ;; -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \ | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*) localstatedir=$ac_optarg ;; -mandir | --mandir | --mandi | --mand | --man | --ma | --m) ac_prev=mandir ;; -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*) mandir=$ac_optarg ;; -nfp | --nfp | --nf) # Obsolete; use --without-fp. with_fp=no ;; -no-create | --no-create | --no-creat | --no-crea | --no-cre \ | --no-cr | --no-c | -n) no_create=yes ;; -no-recursion | --no-recursion | --no-recursio | --no-recursi \ | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) no_recursion=yes ;; -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \ | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \ | --oldin | --oldi | --old | --ol | --o) ac_prev=oldincludedir ;; -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \ | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \ | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*) oldincludedir=$ac_optarg ;; -prefix | --prefix | --prefi | --pref | --pre | --pr | --p) ac_prev=prefix ;; -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*) prefix=$ac_optarg ;; -program-prefix | --program-prefix | --program-prefi | --program-pref \ | --program-pre | --program-pr | --program-p) ac_prev=program_prefix ;; -program-prefix=* | --program-prefix=* | --program-prefi=* \ | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*) program_prefix=$ac_optarg ;; -program-suffix | --program-suffix | --program-suffi | --program-suff \ | --program-suf | --program-su | --program-s) ac_prev=program_suffix ;; -program-suffix=* | --program-suffix=* | --program-suffi=* \ | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*) program_suffix=$ac_optarg ;; -program-transform-name | --program-transform-name \ | --program-transform-nam | --program-transform-na \ | --program-transform-n | --program-transform- \ | --program-transform | --program-transfor \ | --program-transfo | --program-transf \ | --program-trans | --program-tran \ | --progr-tra | --program-tr | --program-t) ac_prev=program_transform_name ;; -program-transform-name=* | --program-transform-name=* \ | --program-transform-nam=* | --program-transform-na=* \ | --program-transform-n=* | --program-transform-=* \ | --program-transform=* | --program-transfor=* \ | --program-transfo=* | --program-transf=* \ | --program-trans=* | --program-tran=* \ | --progr-tra=* | --program-tr=* | --program-t=*) program_transform_name=$ac_optarg ;; -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd) ac_prev=pdfdir ;; -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*) pdfdir=$ac_optarg ;; -psdir | --psdir | --psdi | --psd | --ps) ac_prev=psdir ;; -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*) psdir=$ac_optarg ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil) silent=yes ;; -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb) ac_prev=sbindir ;; -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \ | --sbi=* | --sb=*) sbindir=$ac_optarg ;; -sharedstatedir | --sharedstatedir | --sharedstatedi \ | --sharedstated | --sharedstate | --sharedstat | --sharedsta \ | --sharedst | --shareds | --shared | --share | --shar \ | --sha | --sh) ac_prev=sharedstatedir ;; -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \ | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \ | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \ | --sha=* | --sh=*) sharedstatedir=$ac_optarg ;; -site | --site | --sit) ac_prev=site ;; -site=* | --site=* | --sit=*) site=$ac_optarg ;; -srcdir | --srcdir | --srcdi | --srcd | --src | --sr) ac_prev=srcdir ;; -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*) srcdir=$ac_optarg ;; -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \ | --syscon | --sysco | --sysc | --sys | --sy) ac_prev=sysconfdir ;; -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \ | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*) sysconfdir=$ac_optarg ;; -target | --target | --targe | --targ | --tar | --ta | --t) ac_prev=target_alias ;; -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*) target_alias=$ac_optarg ;; -v | -verbose | --verbose | --verbos | --verbo | --verb) verbose=yes ;; -version | --version | --versio | --versi | --vers | -V) ac_init_version=: ;; -with-* | --with-*) ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid package name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "with_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--with-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval with_$ac_useropt=\$ac_optarg ;; -without-* | --without-*) ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid package name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "with_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--without-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval with_$ac_useropt=no ;; --x) # Obsolete; use --with-x. with_x=yes ;; -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \ | --x-incl | --x-inc | --x-in | --x-i) ac_prev=x_includes ;; -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \ | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*) x_includes=$ac_optarg ;; -x-libraries | --x-libraries | --x-librarie | --x-librari \ | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l) ac_prev=x_libraries ;; -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \ | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*) x_libraries=$ac_optarg ;; -*) as_fn_error $? "unrecognized option: \`$ac_option' Try \`$0 --help' for more information" ;; *=*) ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='` # Reject names that are not valid shell variable names. case $ac_envvar in #( '' | [0-9]* | *[!_$as_cr_alnum]* ) as_fn_error $? "invalid variable name: \`$ac_envvar'" ;; esac eval $ac_envvar=\$ac_optarg export $ac_envvar ;; *) # FIXME: should be removed in autoconf 3.0. $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2 expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2 : "${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}" ;; esac done if test -n "$ac_prev"; then ac_option=--`echo $ac_prev | sed 's/_/-/g'` as_fn_error $? "missing argument to $ac_option" fi if test -n "$ac_unrecognized_opts"; then case $enable_option_checking in no) ;; fatal) as_fn_error $? "unrecognized options: $ac_unrecognized_opts" ;; *) $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;; esac fi # Check all directory arguments for consistency. for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \ datadir sysconfdir sharedstatedir localstatedir includedir \ oldincludedir docdir infodir htmldir dvidir pdfdir psdir \ libdir localedir mandir do eval ac_val=\$$ac_var # Remove trailing slashes. case $ac_val in */ ) ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'` eval $ac_var=\$ac_val;; esac # Be sure to have absolute directory names. case $ac_val in [\\/$]* | ?:[\\/]* ) continue;; NONE | '' ) case $ac_var in *prefix ) continue;; esac;; esac as_fn_error $? "expected an absolute directory name for --$ac_var: $ac_val" done # There might be people who depend on the old broken behavior: `$host' # used to hold the argument of --host etc. # FIXME: To remove some day. build=$build_alias host=$host_alias target=$target_alias # FIXME: To remove some day. if test "x$host_alias" != x; then if test "x$build_alias" = x; then cross_compiling=maybe $as_echo "$as_me: WARNING: if you wanted to set the --build type, don't use --host. If a cross compiler is detected then cross compile mode will be used" >&2 elif test "x$build_alias" != "x$host_alias"; then cross_compiling=yes fi fi ac_tool_prefix= test -n "$host_alias" && ac_tool_prefix=$host_alias- test "$silent" = yes && exec 6>/dev/null ac_pwd=`pwd` && test -n "$ac_pwd" && ac_ls_di=`ls -di .` && ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` || as_fn_error $? "working directory cannot be determined" test "X$ac_ls_di" = "X$ac_pwd_ls_di" || as_fn_error $? "pwd does not report name of working directory" # Find the source files, if location was not specified. if test -z "$srcdir"; then ac_srcdir_defaulted=yes # Try the directory containing this script, then the parent directory. ac_confdir=`$as_dirname -- "$as_myself" || $as_expr X"$as_myself" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_myself" : 'X\(//\)[^/]' \| \ X"$as_myself" : 'X\(//\)$' \| \ X"$as_myself" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$as_myself" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` srcdir=$ac_confdir if test ! -r "$srcdir/$ac_unique_file"; then srcdir=.. fi else ac_srcdir_defaulted=no fi if test ! -r "$srcdir/$ac_unique_file"; then test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .." as_fn_error $? "cannot find sources ($ac_unique_file) in $srcdir" fi ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work" ac_abs_confdir=`( cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error $? "$ac_msg" pwd)` # When building in place, set srcdir=. if test "$ac_abs_confdir" = "$ac_pwd"; then srcdir=. fi # Remove unnecessary trailing slashes from srcdir. # Double slashes in file names in object file debugging info # mess up M-x gdb in Emacs. case $srcdir in */) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;; esac for ac_var in $ac_precious_vars; do eval ac_env_${ac_var}_set=\${${ac_var}+set} eval ac_env_${ac_var}_value=\$${ac_var} eval ac_cv_env_${ac_var}_set=\${${ac_var}+set} eval ac_cv_env_${ac_var}_value=\$${ac_var} done # # Report the --help message. # if test "$ac_init_help" = "long"; then # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF \`configure' configures toilet 0.3 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... To assign environment variables (e.g., CC, CFLAGS...), specify them as VAR=VALUE. See below for descriptions of some of the useful variables. Defaults for the options are specified in brackets. Configuration: -h, --help display this help and exit --help=short display options specific to this package --help=recursive display the short help of all the included packages -V, --version display version information and exit -q, --quiet, --silent do not print \`checking ...' messages --cache-file=FILE cache test results in FILE [disabled] -C, --config-cache alias for \`--cache-file=config.cache' -n, --no-create do not create output files --srcdir=DIR find the sources in DIR [configure dir or \`..'] Installation directories: --prefix=PREFIX install architecture-independent files in PREFIX [$ac_default_prefix] --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX [PREFIX] By default, \`make install' will install all the files in \`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify an installation prefix other than \`$ac_default_prefix' using \`--prefix', for instance \`--prefix=\$HOME'. For better control, use the options below. Fine tuning of the installation directories: --bindir=DIR user executables [EPREFIX/bin] --sbindir=DIR system admin executables [EPREFIX/sbin] --libexecdir=DIR program executables [EPREFIX/libexec] --sysconfdir=DIR read-only single-machine data [PREFIX/etc] --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] --localstatedir=DIR modifiable single-machine data [PREFIX/var] --libdir=DIR object code libraries [EPREFIX/lib] --includedir=DIR C header files [PREFIX/include] --oldincludedir=DIR C header files for non-gcc [/usr/include] --datarootdir=DIR read-only arch.-independent data root [PREFIX/share] --datadir=DIR read-only architecture-independent data [DATAROOTDIR] --infodir=DIR info documentation [DATAROOTDIR/info] --localedir=DIR locale-dependent data [DATAROOTDIR/locale] --mandir=DIR man documentation [DATAROOTDIR/man] --docdir=DIR documentation root [DATAROOTDIR/doc/toilet] --htmldir=DIR html documentation [DOCDIR] --dvidir=DIR dvi documentation [DOCDIR] --pdfdir=DIR pdf documentation [DOCDIR] --psdir=DIR ps documentation [DOCDIR] _ACEOF cat <<\_ACEOF Program names: --program-prefix=PREFIX prepend PREFIX to installed program names --program-suffix=SUFFIX append SUFFIX to installed program names --program-transform-name=PROGRAM run sed PROGRAM on installed program names System types: --build=BUILD configure for building on BUILD [guessed] --host=HOST cross-compile to build programs to run on HOST [BUILD] --target=TARGET configure for building compilers for TARGET [HOST] _ACEOF fi if test -n "$ac_init_help"; then case $ac_init_help in short | recursive ) echo "Configuration of toilet 0.3:";; esac cat <<\_ACEOF Optional Features: --disable-option-checking ignore unrecognized --enable/--with options --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) --enable-FEATURE[=ARG] include FEATURE [ARG=yes] --disable-dependency-tracking speeds up one-time build --enable-dependency-tracking do not reject slow dependency extractors Some influential environment variables: CC C compiler command CFLAGS C compiler flags LDFLAGS linker flags, e.g. -L if you have libraries in a nonstandard directory LIBS libraries to pass to the linker, e.g. -l CPPFLAGS (Objective) C/C++ preprocessor flags, e.g. -I if you have headers in a nonstandard directory CPP C preprocessor PKG_CONFIG path to pkg-config utility PKG_CONFIG_PATH directories to add to pkg-config's search path PKG_CONFIG_LIBDIR path overriding pkg-config's built-in search path CACA_CFLAGS C compiler flags for CACA, overriding pkg-config CACA_LIBS linker flags for CACA, overriding pkg-config Use these variables to override the choices made by `configure' or to help it to find libraries and programs with nonstandard names/locations. Report bugs to the package provider. _ACEOF ac_status=$? fi if test "$ac_init_help" = "recursive"; then # If there are subdirs, report their specific --help. for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue test -d "$ac_dir" || { cd "$srcdir" && ac_pwd=`pwd` && srcdir=. && test -d "$ac_dir"; } || continue ac_builddir=. case "$ac_dir" in .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` # A ".." for each directory in $ac_dir_suffix. ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` case $ac_top_builddir_sub in "") ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; esac ;; esac ac_abs_top_builddir=$ac_pwd ac_abs_builddir=$ac_pwd$ac_dir_suffix # for backward compatibility: ac_top_builddir=$ac_top_build_prefix case $srcdir in .) # We are building in place. ac_srcdir=. ac_top_srcdir=$ac_top_builddir_sub ac_abs_top_srcdir=$ac_pwd ;; [\\/]* | ?:[\\/]* ) # Absolute name. ac_srcdir=$srcdir$ac_dir_suffix; ac_top_srcdir=$srcdir ac_abs_top_srcdir=$srcdir ;; *) # Relative name. ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix ac_top_srcdir=$ac_top_build_prefix$srcdir ac_abs_top_srcdir=$ac_pwd/$srcdir ;; esac ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix cd "$ac_dir" || { ac_status=$?; continue; } # Check for guested configure. if test -f "$ac_srcdir/configure.gnu"; then echo && $SHELL "$ac_srcdir/configure.gnu" --help=recursive elif test -f "$ac_srcdir/configure"; then echo && $SHELL "$ac_srcdir/configure" --help=recursive else $as_echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2 fi || ac_status=$? cd "$ac_pwd" || { ac_status=$?; break; } done fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF toilet configure 0.3 generated by GNU Autoconf 2.68 Copyright (C) 2010 Free Software Foundation, Inc. This configure script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it. _ACEOF exit fi ## ------------------------ ## ## Autoconf initialization. ## ## ------------------------ ## # ac_fn_c_try_compile LINENO # -------------------------- # Try to compile conftest.$ac_ext, and return whether this succeeded. ac_fn_c_try_compile () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack rm -f conftest.$ac_objext if { { ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_compile") 2>conftest.err ac_status=$? if test -s conftest.err; then grep -v '^ *+' conftest.err >conftest.er1 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then : ac_retval=0 else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_c_try_compile # ac_fn_c_try_cpp LINENO # ---------------------- # Try to preprocess conftest.$ac_ext, and return whether this succeeded. ac_fn_c_try_cpp () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack if { { ac_try="$ac_cpp conftest.$ac_ext" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.err ac_status=$? if test -s conftest.err; then grep -v '^ *+' conftest.err >conftest.er1 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } > conftest.i && { test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || test ! -s conftest.err }; then : ac_retval=0 else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_c_try_cpp # ac_fn_c_check_header_mongrel LINENO HEADER VAR INCLUDES # ------------------------------------------------------- # Tests whether HEADER exists, giving a warning if it cannot be compiled using # the include files in INCLUDES and setting the cache variable VAR # accordingly. ac_fn_c_check_header_mongrel () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack if eval \${$3+:} false; then : { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } else # Is the header compilable? { $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 usability" >&5 $as_echo_n "checking $2 usability... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 #include <$2> _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_header_compiler=yes else ac_header_compiler=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_compiler" >&5 $as_echo "$ac_header_compiler" >&6; } # Is the header present? { $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 presence" >&5 $as_echo_n "checking $2 presence... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include <$2> _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : ac_header_preproc=yes else ac_header_preproc=no fi rm -f conftest.err conftest.i conftest.$ac_ext { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc" >&5 $as_echo "$ac_header_preproc" >&6; } # So? What about this header? case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in #(( yes:no: ) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&5 $as_echo "$as_me: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 $as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} ;; no:yes:* ) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: present but cannot be compiled" >&5 $as_echo "$as_me: WARNING: $2: present but cannot be compiled" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: check for missing prerequisite headers?" >&5 $as_echo "$as_me: WARNING: $2: check for missing prerequisite headers?" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: see the Autoconf documentation" >&5 $as_echo "$as_me: WARNING: $2: see the Autoconf documentation" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&5 $as_echo "$as_me: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 $as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 else eval "$3=\$ac_header_compiler" fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } fi eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_check_header_mongrel # ac_fn_c_try_run LINENO # ---------------------- # Try to link conftest.$ac_ext, and return whether this succeeded. Assumes # that executables *can* be run. ac_fn_c_try_run () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack if { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { ac_try='./conftest$ac_exeext' { { case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_try") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; }; then : ac_retval=0 else $as_echo "$as_me: program exited with status $ac_status" >&5 $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=$ac_status fi rm -rf conftest.dSYM conftest_ipa8_conftest.oo eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_c_try_run # ac_fn_c_check_header_compile LINENO HEADER VAR INCLUDES # ------------------------------------------------------- # Tests whether HEADER exists and can be compiled using the include files in # INCLUDES, setting the cache variable VAR accordingly. ac_fn_c_check_header_compile () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 #include <$2> _ACEOF if ac_fn_c_try_compile "$LINENO"; then : eval "$3=yes" else eval "$3=no" fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_check_header_compile cat >config.log <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. It was created by toilet $as_me 0.3, which was generated by GNU Autoconf 2.68. Invocation command line was $ $0 $@ _ACEOF exec 5>>config.log { cat <<_ASUNAME ## --------- ## ## Platform. ## ## --------- ## hostname = `(hostname || uname -n) 2>/dev/null | sed 1q` uname -m = `(uname -m) 2>/dev/null || echo unknown` uname -r = `(uname -r) 2>/dev/null || echo unknown` uname -s = `(uname -s) 2>/dev/null || echo unknown` uname -v = `(uname -v) 2>/dev/null || echo unknown` /usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown` /bin/uname -X = `(/bin/uname -X) 2>/dev/null || echo unknown` /bin/arch = `(/bin/arch) 2>/dev/null || echo unknown` /usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown` /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown` /usr/bin/hostinfo = `(/usr/bin/hostinfo) 2>/dev/null || echo unknown` /bin/machine = `(/bin/machine) 2>/dev/null || echo unknown` /usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown` /bin/universe = `(/bin/universe) 2>/dev/null || echo unknown` _ASUNAME as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. $as_echo "PATH: $as_dir" done IFS=$as_save_IFS } >&5 cat >&5 <<_ACEOF ## ----------- ## ## Core tests. ## ## ----------- ## _ACEOF # Keep a trace of the command line. # Strip out --no-create and --no-recursion so they do not pile up. # Strip out --silent because we don't want to record it for future runs. # Also quote any args containing shell meta-characters. # Make two passes to allow for proper duplicate-argument suppression. ac_configure_args= ac_configure_args0= ac_configure_args1= ac_must_keep_next=false for ac_pass in 1 2 do for ac_arg do case $ac_arg in -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil) continue ;; *\'*) ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; esac case $ac_pass in 1) as_fn_append ac_configure_args0 " '$ac_arg'" ;; 2) as_fn_append ac_configure_args1 " '$ac_arg'" if test $ac_must_keep_next = true; then ac_must_keep_next=false # Got value, back to normal. else case $ac_arg in *=* | --config-cache | -C | -disable-* | --disable-* \ | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \ | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \ | -with-* | --with-* | -without-* | --without-* | --x) case "$ac_configure_args0 " in "$ac_configure_args1"*" '$ac_arg' "* ) continue ;; esac ;; -* ) ac_must_keep_next=true ;; esac fi as_fn_append ac_configure_args " '$ac_arg'" ;; esac done done { ac_configure_args0=; unset ac_configure_args0;} { ac_configure_args1=; unset ac_configure_args1;} # When interrupted or exit'd, cleanup temporary files, and complete # config.log. We remove comments because anyway the quotes in there # would cause problems or look ugly. # WARNING: Use '\'' to represent an apostrophe within the trap. # WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug. trap 'exit_status=$? # Save into config.log some information that might help in debugging. { echo $as_echo "## ---------------- ## ## Cache variables. ## ## ---------------- ##" echo # The following way of writing the cache mishandles newlines in values, ( for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do eval ac_val=\$$ac_var case $ac_val in #( *${as_nl}*) case $ac_var in #( *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; esac case $ac_var in #( _ | IFS | as_nl) ;; #( BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( *) { eval $ac_var=; unset $ac_var;} ;; esac ;; esac done (set) 2>&1 | case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #( *${as_nl}ac_space=\ *) sed -n \ "s/'\''/'\''\\\\'\'''\''/g; s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p" ;; #( *) sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" ;; esac | sort ) echo $as_echo "## ----------------- ## ## Output variables. ## ## ----------------- ##" echo for ac_var in $ac_subst_vars do eval ac_val=\$$ac_var case $ac_val in *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; esac $as_echo "$ac_var='\''$ac_val'\''" done | sort echo if test -n "$ac_subst_files"; then $as_echo "## ------------------- ## ## File substitutions. ## ## ------------------- ##" echo for ac_var in $ac_subst_files do eval ac_val=\$$ac_var case $ac_val in *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; esac $as_echo "$ac_var='\''$ac_val'\''" done | sort echo fi if test -s confdefs.h; then $as_echo "## ----------- ## ## confdefs.h. ## ## ----------- ##" echo cat confdefs.h echo fi test "$ac_signal" != 0 && $as_echo "$as_me: caught signal $ac_signal" $as_echo "$as_me: exit $exit_status" } >&5 rm -f core *.core core.conftest.* && rm -f -r conftest* confdefs* conf$$* $ac_clean_files && exit $exit_status ' 0 for ac_signal in 1 2 13 15; do trap 'ac_signal='$ac_signal'; as_fn_exit 1' $ac_signal done ac_signal=0 # confdefs.h avoids OS command line length limits that DEFS can exceed. rm -f -r conftest* confdefs.h $as_echo "/* confdefs.h */" > confdefs.h # Predefined preprocessor variables. cat >>confdefs.h <<_ACEOF #define PACKAGE_NAME "$PACKAGE_NAME" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_TARNAME "$PACKAGE_TARNAME" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_VERSION "$PACKAGE_VERSION" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_STRING "$PACKAGE_STRING" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_URL "$PACKAGE_URL" _ACEOF # Let the site file select an alternate cache file if it wants to. # Prefer an explicitly selected file to automatically selected ones. ac_site_file1=NONE ac_site_file2=NONE if test -n "$CONFIG_SITE"; then # We do not want a PATH search for config.site. case $CONFIG_SITE in #(( -*) ac_site_file1=./$CONFIG_SITE;; */*) ac_site_file1=$CONFIG_SITE;; *) ac_site_file1=./$CONFIG_SITE;; esac elif test "x$prefix" != xNONE; then ac_site_file1=$prefix/share/config.site ac_site_file2=$prefix/etc/config.site else ac_site_file1=$ac_default_prefix/share/config.site ac_site_file2=$ac_default_prefix/etc/config.site fi for ac_site_file in "$ac_site_file1" "$ac_site_file2" do test "x$ac_site_file" = xNONE && continue if test /dev/null != "$ac_site_file" && test -r "$ac_site_file"; then { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5 $as_echo "$as_me: loading site script $ac_site_file" >&6;} sed 's/^/| /' "$ac_site_file" >&5 . "$ac_site_file" \ || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "failed to load site script $ac_site_file See \`config.log' for more details" "$LINENO" 5; } fi done if test -r "$cache_file"; then # Some versions of bash will fail to source /dev/null (special files # actually), so we avoid doing that. DJGPP emulates it as a regular file. if test /dev/null != "$cache_file" && test -f "$cache_file"; then { $as_echo "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5 $as_echo "$as_me: loading cache $cache_file" >&6;} case $cache_file in [\\/]* | ?:[\\/]* ) . "$cache_file";; *) . "./$cache_file";; esac fi else { $as_echo "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5 $as_echo "$as_me: creating cache $cache_file" >&6;} >$cache_file fi # Check that the precious variables saved in the cache have kept the same # value. ac_cache_corrupted=false for ac_var in $ac_precious_vars; do eval ac_old_set=\$ac_cv_env_${ac_var}_set eval ac_new_set=\$ac_env_${ac_var}_set eval ac_old_val=\$ac_cv_env_${ac_var}_value eval ac_new_val=\$ac_env_${ac_var}_value case $ac_old_set,$ac_new_set in set,) { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 $as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} ac_cache_corrupted=: ;; ,set) { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was not set in the previous run" >&5 $as_echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;} ac_cache_corrupted=: ;; ,);; *) if test "x$ac_old_val" != "x$ac_new_val"; then # differences in whitespace do not lead to failure. ac_old_val_w=`echo x $ac_old_val` ac_new_val_w=`echo x $ac_new_val` if test "$ac_old_val_w" != "$ac_new_val_w"; then { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' has changed since the previous run:" >&5 $as_echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} ac_cache_corrupted=: else { $as_echo "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5 $as_echo "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;} eval $ac_var=\$ac_old_val fi { $as_echo "$as_me:${as_lineno-$LINENO}: former value: \`$ac_old_val'" >&5 $as_echo "$as_me: former value: \`$ac_old_val'" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: current value: \`$ac_new_val'" >&5 $as_echo "$as_me: current value: \`$ac_new_val'" >&2;} fi;; esac # Pass precious variables to config.status. if test "$ac_new_set" = set; then case $ac_new_val in *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; *) ac_arg=$ac_var=$ac_new_val ;; esac case " $ac_configure_args " in *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy. *) as_fn_append ac_configure_args " '$ac_arg'" ;; esac fi done if $ac_cache_corrupted; then { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5 $as_echo "$as_me: error: changes in the environment can compromise the build" >&2;} as_fn_error $? "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5 fi ## -------------------- ## ## Main body of script. ## ## -------------------- ## ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu ac_aux_dir= for ac_dir in .auto "$srcdir"/.auto; do if test -f "$ac_dir/install-sh"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/install-sh -c" break elif test -f "$ac_dir/install.sh"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/install.sh -c" break elif test -f "$ac_dir/shtool"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/shtool install -c" break fi done if test -z "$ac_aux_dir"; then as_fn_error $? "cannot find install-sh, install.sh, or shtool in .auto \"$srcdir\"/.auto" "$LINENO" 5 fi # These three variables are undocumented and unsupported, # and are intended to be withdrawn in a future Autoconf release. # They can cause serious problems if a builder's source tree is in a directory # whose full name contains unusual characters. ac_config_guess="$SHELL $ac_aux_dir/config.guess" # Please don't use this var. ac_config_sub="$SHELL $ac_aux_dir/config.sub" # Please don't use this var. ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var. # Make sure we can run config.sub. $SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 || as_fn_error $? "cannot run $SHELL $ac_aux_dir/config.sub" "$LINENO" 5 { $as_echo "$as_me:${as_lineno-$LINENO}: checking build system type" >&5 $as_echo_n "checking build system type... " >&6; } if ${ac_cv_build+:} false; then : $as_echo_n "(cached) " >&6 else ac_build_alias=$build_alias test "x$ac_build_alias" = x && ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"` test "x$ac_build_alias" = x && as_fn_error $? "cannot guess build type; you must specify one" "$LINENO" 5 ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` || as_fn_error $? "$SHELL $ac_aux_dir/config.sub $ac_build_alias failed" "$LINENO" 5 fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_build" >&5 $as_echo "$ac_cv_build" >&6; } case $ac_cv_build in *-*-*) ;; *) as_fn_error $? "invalid value of canonical build" "$LINENO" 5;; esac build=$ac_cv_build ac_save_IFS=$IFS; IFS='-' set x $ac_cv_build shift build_cpu=$1 build_vendor=$2 shift; shift # Remember, the first character of IFS is used to create $*, # except with old shells: build_os=$* IFS=$ac_save_IFS case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking host system type" >&5 $as_echo_n "checking host system type... " >&6; } if ${ac_cv_host+:} false; then : $as_echo_n "(cached) " >&6 else if test "x$host_alias" = x; then ac_cv_host=$ac_cv_build else ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` || as_fn_error $? "$SHELL $ac_aux_dir/config.sub $host_alias failed" "$LINENO" 5 fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_host" >&5 $as_echo "$ac_cv_host" >&6; } case $ac_cv_host in *-*-*) ;; *) as_fn_error $? "invalid value of canonical host" "$LINENO" 5;; esac host=$ac_cv_host ac_save_IFS=$IFS; IFS='-' set x $ac_cv_host shift host_cpu=$1 host_vendor=$2 shift; shift # Remember, the first character of IFS is used to create $*, # except with old shells: host_os=$* IFS=$ac_save_IFS case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking target system type" >&5 $as_echo_n "checking target system type... " >&6; } if ${ac_cv_target+:} false; then : $as_echo_n "(cached) " >&6 else if test "x$target_alias" = x; then ac_cv_target=$ac_cv_host else ac_cv_target=`$SHELL "$ac_aux_dir/config.sub" $target_alias` || as_fn_error $? "$SHELL $ac_aux_dir/config.sub $target_alias failed" "$LINENO" 5 fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_target" >&5 $as_echo "$ac_cv_target" >&6; } case $ac_cv_target in *-*-*) ;; *) as_fn_error $? "invalid value of canonical target" "$LINENO" 5;; esac target=$ac_cv_target ac_save_IFS=$IFS; IFS='-' set x $ac_cv_target shift target_cpu=$1 target_vendor=$2 shift; shift # Remember, the first character of IFS is used to create $*, # except with old shells: target_os=$* IFS=$ac_save_IFS case $target_os in *\ *) target_os=`echo "$target_os" | sed 's/ /-/g'`;; esac # The aliases save the names the user supplied, while $host etc. # will get canonicalized. test -n "$target_alias" && test "$program_prefix$program_suffix$program_transform_name" = \ NONENONEs,x,x, && program_prefix=${target_alias}- am__api_version='1.11' # Find a good install program. We prefer a C program (faster), # so one script is as good as another. But avoid the broken or # incompatible versions: # SysV /etc/install, /usr/sbin/install # SunOS /usr/etc/install # IRIX /sbin/install # AIX /bin/install # AmigaOS /C/install, which installs bootblocks on floppy discs # AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag # AFS /usr/afsws/bin/install, which mishandles nonexistent args # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" # OS/2's system install, which has a completely different semantic # ./install, which can be erroneously created by make from ./install.sh. # Reject install programs that cannot install multiple files. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5 $as_echo_n "checking for a BSD-compatible install... " >&6; } if test -z "$INSTALL"; then if ${ac_cv_path_install+:} false; then : $as_echo_n "(cached) " >&6 else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. # Account for people who put trailing slashes in PATH elements. case $as_dir/ in #(( ./ | .// | /[cC]/* | \ /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \ ?:[\\/]os2[\\/]install[\\/]* | ?:[\\/]OS2[\\/]INSTALL[\\/]* | \ /usr/ucb/* ) ;; *) # OSF1 and SCO ODT 3.0 have their own names for install. # Don't use installbsd from OSF since it installs stuff as root # by default. for ac_prog in ginstall scoinst install; do for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; }; then if test $ac_prog = install && grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then # AIX install. It has an incompatible calling convention. : elif test $ac_prog = install && grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then # program-specific install script used by HP pwplus--don't use. : else rm -rf conftest.one conftest.two conftest.dir echo one > conftest.one echo two > conftest.two mkdir conftest.dir if "$as_dir/$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir" && test -s conftest.one && test -s conftest.two && test -s conftest.dir/conftest.one && test -s conftest.dir/conftest.two then ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c" break 3 fi fi fi done done ;; esac done IFS=$as_save_IFS rm -rf conftest.one conftest.two conftest.dir fi if test "${ac_cv_path_install+set}" = set; then INSTALL=$ac_cv_path_install else # As a last resort, use the slow shell script. Don't cache a # value for INSTALL within a source directory, because that will # break other packages using the cache if that directory is # removed, or if the value is a relative name. INSTALL=$ac_install_sh fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INSTALL" >&5 $as_echo "$INSTALL" >&6; } # Use test -z because SunOS4 sh mishandles braces in ${var-val}. # It thinks the first close brace ends the variable substitution. test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}' test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}' test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether build environment is sane" >&5 $as_echo_n "checking whether build environment is sane... " >&6; } # Just in case sleep 1 echo timestamp > conftest.file # Reject unsafe characters in $srcdir or the absolute working directory # name. Accept space and tab only in the latter. am_lf=' ' case `pwd` in *[\\\"\#\$\&\'\`$am_lf]*) as_fn_error $? "unsafe absolute working directory name" "$LINENO" 5;; esac case $srcdir in *[\\\"\#\$\&\'\`$am_lf\ \ ]*) as_fn_error $? "unsafe srcdir value: \`$srcdir'" "$LINENO" 5;; esac # Do `set' in a subshell so we don't clobber the current shell's # arguments. Must try -L first in case configure is actually a # symlink; some systems play weird games with the mod time of symlinks # (eg FreeBSD returns the mod time of the symlink's containing # directory). if ( set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` if test "$*" = "X"; then # -L didn't work. set X `ls -t "$srcdir/configure" conftest.file` fi rm -f conftest.file if test "$*" != "X $srcdir/configure conftest.file" \ && test "$*" != "X conftest.file $srcdir/configure"; then # If neither matched, then we have a broken ls. This can happen # if, for instance, CONFIG_SHELL is bash and it inherits a # broken ls alias from the environment. This has actually # happened. Such a system could not be considered "sane". as_fn_error $? "ls -t appears to fail. Make sure there is not a broken alias in your environment" "$LINENO" 5 fi test "$2" = conftest.file ) then # Ok. : else as_fn_error $? "newly created file is older than distributed files! Check your system clock" "$LINENO" 5 fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } test "$program_prefix" != NONE && program_transform_name="s&^&$program_prefix&;$program_transform_name" # Use a double $ so make ignores it. test "$program_suffix" != NONE && program_transform_name="s&\$&$program_suffix&;$program_transform_name" # Double any \ or $. # By default was `s,x,x', remove it if useless. ac_script='s/[\\$]/&&/g;s/;s,x,x,$//' program_transform_name=`$as_echo "$program_transform_name" | sed "$ac_script"` # expand $ac_aux_dir to an absolute path am_aux_dir=`cd $ac_aux_dir && pwd` if test x"${MISSING+set}" != xset; then case $am_aux_dir in *\ * | *\ *) MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; *) MISSING="\${SHELL} $am_aux_dir/missing" ;; esac fi # Use eval to expand $SHELL if eval "$MISSING --run true"; then am_missing_run="$MISSING --run " else am_missing_run= { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \`missing' script is too old or missing" >&5 $as_echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;} fi if test x"${install_sh}" != xset; then case $am_aux_dir in *\ * | *\ *) install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; *) install_sh="\${SHELL} $am_aux_dir/install-sh" esac fi # Installed binaries are usually stripped using `strip' when the user # run `make install-strip'. However `strip' might not be the right # tool to use in cross-compilation environments, therefore Automake # will honor the `STRIP' environment variable to overrule this program. if test "$cross_compiling" != no; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. set dummy ${ac_tool_prefix}strip; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_STRIP+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$STRIP"; then ac_cv_prog_STRIP="$STRIP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_STRIP="${ac_tool_prefix}strip" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi STRIP=$ac_cv_prog_STRIP if test -n "$STRIP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5 $as_echo "$STRIP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_STRIP"; then ac_ct_STRIP=$STRIP # Extract the first word of "strip", so it can be a program name with args. set dummy strip; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_STRIP+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_STRIP"; then ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_STRIP="strip" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP if test -n "$ac_ct_STRIP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5 $as_echo "$ac_ct_STRIP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_STRIP" = x; then STRIP=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac STRIP=$ac_ct_STRIP fi else STRIP="$ac_cv_prog_STRIP" fi fi INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a thread-safe mkdir -p" >&5 $as_echo_n "checking for a thread-safe mkdir -p... " >&6; } if test -z "$MKDIR_P"; then if ${ac_cv_path_mkdir+:} false; then : $as_echo_n "(cached) " >&6 else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/opt/sfw/bin do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in mkdir gmkdir; do for ac_exec_ext in '' $ac_executable_extensions; do { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; } || continue case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #( 'mkdir (GNU coreutils) '* | \ 'mkdir (coreutils) '* | \ 'mkdir (fileutils) '4.1*) ac_cv_path_mkdir=$as_dir/$ac_prog$ac_exec_ext break 3;; esac done done done IFS=$as_save_IFS fi test -d ./--version && rmdir ./--version if test "${ac_cv_path_mkdir+set}" = set; then MKDIR_P="$ac_cv_path_mkdir -p" else # As a last resort, use the slow shell script. Don't cache a # value for MKDIR_P within a source directory, because that will # break other packages using the cache if that directory is # removed, or if the value is a relative name. MKDIR_P="$ac_install_sh -d" fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MKDIR_P" >&5 $as_echo "$MKDIR_P" >&6; } mkdir_p="$MKDIR_P" case $mkdir_p in [\\/$]* | ?:[\\/]*) ;; */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;; esac for ac_prog in gawk mawk nawk awk do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_AWK+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$AWK"; then ac_cv_prog_AWK="$AWK" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_AWK="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi AWK=$ac_cv_prog_AWK if test -n "$AWK"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AWK" >&5 $as_echo "$AWK" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$AWK" && break done { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \$(MAKE)" >&5 $as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; } set x ${MAKE-make} ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` if eval \${ac_cv_prog_make_${ac_make}_set+:} false; then : $as_echo_n "(cached) " >&6 else cat >conftest.make <<\_ACEOF SHELL = /bin/sh all: @echo '@@@%%%=$(MAKE)=@@@%%%' _ACEOF # GNU make sometimes prints "make[1]: Entering ...", which would confuse us. case `${MAKE-make} -f conftest.make 2>/dev/null` in *@@@%%%=?*=@@@%%%*) eval ac_cv_prog_make_${ac_make}_set=yes;; *) eval ac_cv_prog_make_${ac_make}_set=no;; esac rm -f conftest.make fi if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } SET_MAKE= else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } SET_MAKE="MAKE=${MAKE-make}" fi rm -rf .tst 2>/dev/null mkdir .tst 2>/dev/null if test -d .tst; then am__leading_dot=. else am__leading_dot=_ fi rmdir .tst 2>/dev/null if test "`cd $srcdir && pwd`" != "`pwd`"; then # Use -I$(srcdir) only when $(srcdir) != ., so that make's output # is not polluted with repeated "-I." am__isrc=' -I$(srcdir)' # test to see if srcdir already configured if test -f $srcdir/config.status; then as_fn_error $? "source directory already configured; run \"make distclean\" there first" "$LINENO" 5 fi fi # test whether we have cygpath if test -z "$CYGPATH_W"; then if (cygpath --version) >/dev/null 2>/dev/null; then CYGPATH_W='cygpath -w' else CYGPATH_W=echo fi fi # Define the identity of the package. PACKAGE=toilet VERSION=0.3 cat >>confdefs.h <<_ACEOF #define PACKAGE "$PACKAGE" _ACEOF cat >>confdefs.h <<_ACEOF #define VERSION "$VERSION" _ACEOF # Some tools Automake needs. ACLOCAL=${ACLOCAL-"${am_missing_run}aclocal-${am__api_version}"} AUTOCONF=${AUTOCONF-"${am_missing_run}autoconf"} AUTOMAKE=${AUTOMAKE-"${am_missing_run}automake-${am__api_version}"} AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"} MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"} # We need awk for the "check" target. The system "awk" is bad on # some platforms. # Always define AMTAR for backward compatibility. Yes, it's still used # in the wild :-( We should find a proper way to deprecate it ... AMTAR='$${TAR-tar}' am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -' ac_config_headers="$ac_config_headers config.h" DEPDIR="${am__leading_dot}deps" ac_config_commands="$ac_config_commands depfiles" am_make=${MAKE-make} cat > confinc << 'END' am__doit: @echo this is the am__doit target .PHONY: am__doit END # If we don't find an include directive, just comment out the code. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for style of include used by $am_make" >&5 $as_echo_n "checking for style of include used by $am_make... " >&6; } am__include="#" am__quote= _am_result=none # First try GNU make style include. echo "include confinc" > confmf # Ignore all kinds of additional output from `make'. case `$am_make -s -f confmf 2> /dev/null` in #( *the\ am__doit\ target*) am__include=include am__quote= _am_result=GNU ;; esac # Now try BSD make style include. if test "$am__include" = "#"; then echo '.include "confinc"' > confmf case `$am_make -s -f confmf 2> /dev/null` in #( *the\ am__doit\ target*) am__include=.include am__quote="\"" _am_result=BSD ;; esac fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $_am_result" >&5 $as_echo "$_am_result" >&6; } rm -f confinc confmf # Check whether --enable-dependency-tracking was given. if test "${enable_dependency_tracking+set}" = set; then : enableval=$enable_dependency_tracking; fi if test "x$enable_dependency_tracking" != xno; then am_depcomp="$ac_aux_dir/depcomp" AMDEPBACKSLASH='\' am__nodep='_no' fi if test "x$enable_dependency_tracking" != xno; then AMDEP_TRUE= AMDEP_FALSE='#' else AMDEP_TRUE='#' AMDEP_FALSE= fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. set dummy ${ac_tool_prefix}gcc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_CC="${ac_tool_prefix}gcc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_CC"; then ac_ct_CC=$CC # Extract the first word of "gcc", so it can be a program name with args. set dummy gcc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_CC="gcc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 $as_echo "$ac_ct_CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi else CC="$ac_cv_prog_CC" fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. set dummy ${ac_tool_prefix}cc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_CC="${ac_tool_prefix}cc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi fi if test -z "$CC"; then # Extract the first word of "cc", so it can be a program name with args. set dummy cc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else ac_prog_rejected=no as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then ac_prog_rejected=yes continue fi ac_cv_prog_CC="cc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS if test $ac_prog_rejected = yes; then # We found a bogon in the path, so make sure we never use it. set dummy $ac_cv_prog_CC shift if test $# != 0; then # We chose a different compiler from the bogus one. # However, it has the same basename, so the bogon will be chosen # first if we set CC to just the basename; use the full file name. shift ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@" fi fi fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then for ac_prog in cl.exe do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_CC="$ac_tool_prefix$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$CC" && break done fi if test -z "$CC"; then ac_ct_CC=$CC for ac_prog in cl.exe do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_CC="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 $as_echo "$ac_ct_CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$ac_ct_CC" && break done if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi fi fi test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "no acceptable C compiler found in \$PATH See \`config.log' for more details" "$LINENO" 5; } # Provide some information about the compiler. $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5 set X $ac_compile ac_compiler=$2 for ac_option in --version -v -V -qversion; do { { ac_try="$ac_compiler $ac_option >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_compiler $ac_option >&5") 2>conftest.err ac_status=$? if test -s conftest.err; then sed '10a\ ... rest of stderr output deleted ... 10q' conftest.err >conftest.er1 cat conftest.er1 >&5 fi rm -f conftest.er1 conftest.err $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } done cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF ac_clean_files_save=$ac_clean_files ac_clean_files="$ac_clean_files a.out a.out.dSYM a.exe b.out" # Try to create an executable without -o first, disregard a.out. # It will help us diagnose broken compilers, and finding out an intuition # of exeext. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler works" >&5 $as_echo_n "checking whether the C compiler works... " >&6; } ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` # The possible output files: ac_files="a.out conftest.exe conftest a.exe a_out.exe b.out conftest.*" ac_rmfiles= for ac_file in $ac_files do case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; * ) ac_rmfiles="$ac_rmfiles $ac_file";; esac done rm -f $ac_rmfiles if { { ac_try="$ac_link_default" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link_default") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then : # Autoconf-2.13 could set the ac_cv_exeext variable to `no'. # So ignore a value of `no', otherwise this would lead to `EXEEXT = no' # in a Makefile. We should not override ac_cv_exeext if it was cached, # so that the user can short-circuit this test for compilers unknown to # Autoconf. for ac_file in $ac_files '' do test -f "$ac_file" || continue case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; [ab].out ) # We found the default executable, but exeext='' is most # certainly right. break;; *.* ) if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no; then :; else ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` fi # We set ac_cv_exeext here because the later test for it is not # safe: cross compilers may not add the suffix if given an `-o' # argument, so we may need to know it at that point already. # Even if this section looks crufty: it has the advantage of # actually working. break;; * ) break;; esac done test "$ac_cv_exeext" = no && ac_cv_exeext= else ac_file='' fi if test -z "$ac_file"; then : { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error 77 "C compiler cannot create executables See \`config.log' for more details" "$LINENO" 5; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler default output file name" >&5 $as_echo_n "checking for C compiler default output file name... " >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_file" >&5 $as_echo "$ac_file" >&6; } ac_exeext=$ac_cv_exeext rm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out ac_clean_files=$ac_clean_files_save { $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of executables" >&5 $as_echo_n "checking for suffix of executables... " >&6; } if { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then : # If both `conftest.exe' and `conftest' are `present' (well, observable) # catch `conftest.exe'. For instance with Cygwin, `ls conftest' will # work properly (i.e., refer to `conftest.exe'), while it won't with # `rm'. for ac_file in conftest.exe conftest conftest.*; do test -f "$ac_file" || continue case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` break;; * ) break;; esac done else { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "cannot compute suffix of executables: cannot compile and link See \`config.log' for more details" "$LINENO" 5; } fi rm -f conftest conftest$ac_cv_exeext { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5 $as_echo "$ac_cv_exeext" >&6; } rm -f conftest.$ac_ext EXEEXT=$ac_cv_exeext ac_exeext=$EXEEXT cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main () { FILE *f = fopen ("conftest.out", "w"); return ferror (f) || fclose (f) != 0; ; return 0; } _ACEOF ac_clean_files="$ac_clean_files conftest.out" # Check that the compiler produces executables we can run. If not, either # the compiler is broken, or we cross compile. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are cross compiling" >&5 $as_echo_n "checking whether we are cross compiling... " >&6; } if test "$cross_compiling" != yes; then { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } if { ac_try='./conftest$ac_cv_exeext' { { case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_try") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; }; then cross_compiling=no else if test "$cross_compiling" = maybe; then cross_compiling=yes else { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "cannot run C compiled programs. If you meant to cross compile, use \`--host'. See \`config.log' for more details" "$LINENO" 5; } fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $cross_compiling" >&5 $as_echo "$cross_compiling" >&6; } rm -f conftest.$ac_ext conftest$ac_cv_exeext conftest.out ac_clean_files=$ac_clean_files_save { $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5 $as_echo_n "checking for suffix of object files... " >&6; } if ${ac_cv_objext+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF rm -f conftest.o conftest.obj if { { ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_compile") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then : for ac_file in conftest.o conftest.obj conftest.*; do test -f "$ac_file" || continue; case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) ;; *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'` break;; esac done else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "cannot compute suffix of object files: cannot compile See \`config.log' for more details" "$LINENO" 5; } fi rm -f conftest.$ac_cv_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_objext" >&5 $as_echo "$ac_cv_objext" >&6; } OBJEXT=$ac_cv_objext ac_objext=$OBJEXT { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5 $as_echo_n "checking whether we are using the GNU C compiler... " >&6; } if ${ac_cv_c_compiler_gnu+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { #ifndef __GNUC__ choke me #endif ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_compiler_gnu=yes else ac_compiler_gnu=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_cv_c_compiler_gnu=$ac_compiler_gnu fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5 $as_echo "$ac_cv_c_compiler_gnu" >&6; } if test $ac_compiler_gnu = yes; then GCC=yes else GCC= fi ac_test_CFLAGS=${CFLAGS+set} ac_save_CFLAGS=$CFLAGS { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5 $as_echo_n "checking whether $CC accepts -g... " >&6; } if ${ac_cv_prog_cc_g+:} false; then : $as_echo_n "(cached) " >&6 else ac_save_c_werror_flag=$ac_c_werror_flag ac_c_werror_flag=yes ac_cv_prog_cc_g=no CFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_g=yes else CFLAGS="" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : else ac_c_werror_flag=$ac_save_c_werror_flag CFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_g=yes fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_c_werror_flag=$ac_save_c_werror_flag fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5 $as_echo "$ac_cv_prog_cc_g" >&6; } if test "$ac_test_CFLAGS" = set; then CFLAGS=$ac_save_CFLAGS elif test $ac_cv_prog_cc_g = yes; then if test "$GCC" = yes; then CFLAGS="-g -O2" else CFLAGS="-g" fi else if test "$GCC" = yes; then CFLAGS="-O2" else CFLAGS= fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5 $as_echo_n "checking for $CC option to accept ISO C89... " >&6; } if ${ac_cv_prog_cc_c89+:} false; then : $as_echo_n "(cached) " >&6 else ac_cv_prog_cc_c89=no ac_save_CC=$CC cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #include #include /* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ struct buf { int x; }; FILE * (*rcsopen) (struct buf *, struct stat *, int); static char *e (p, i) char **p; int i; { return p[i]; } static char *f (char * (*g) (char **, int), char **p, ...) { char *s; va_list v; va_start (v,p); s = g (p, va_arg (v,int)); va_end (v); return s; } /* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has function prototypes and stuff, but not '\xHH' hex character constants. These don't provoke an error unfortunately, instead are silently treated as 'x'. The following induces an error, until -std is added to get proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an array size at least. It's necessary to write '\x00'==0 to get something that's true only with -std. */ int osf4_cc_array ['\x00' == 0 ? 1 : -1]; /* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters inside strings and character constants. */ #define FOO(x) 'x' int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1]; int test (int i, double x); struct s1 {int (*f) (int a);}; struct s2 {int (*f) (double a);}; int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); int argc; char **argv; int main () { return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; ; return 0; } _ACEOF for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \ -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" do CC="$ac_save_CC $ac_arg" if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_c89=$ac_arg fi rm -f core conftest.err conftest.$ac_objext test "x$ac_cv_prog_cc_c89" != "xno" && break done rm -f conftest.$ac_ext CC=$ac_save_CC fi # AC_CACHE_VAL case "x$ac_cv_prog_cc_c89" in x) { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 $as_echo "none needed" >&6; } ;; xno) { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 $as_echo "unsupported" >&6; } ;; *) CC="$CC $ac_cv_prog_cc_c89" { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5 $as_echo "$ac_cv_prog_cc_c89" >&6; } ;; esac if test "x$ac_cv_prog_cc_c89" != xno; then : fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu depcc="$CC" am_compiler_list= { $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 $as_echo_n "checking dependency style of $depcc... " >&6; } if ${am_cv_CC_dependencies_compiler_type+:} false; then : $as_echo_n "(cached) " >&6 else if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then # We make a subdir and do the tests there. Otherwise we can end up # making bogus files that we don't know about and never remove. For # instance it was reported that on HP-UX the gcc test will end up # making a dummy file named `D' -- because `-MD' means `put the output # in D'. rm -rf conftest.dir mkdir conftest.dir # Copy depcomp to subdir because otherwise we won't find it if we're # using a relative directory. cp "$am_depcomp" conftest.dir cd conftest.dir # We will build objects and dependencies in a subdirectory because # it helps to detect inapplicable dependency modes. For instance # both Tru64's cc and ICC support -MD to output dependencies as a # side effect of compilation, but ICC will put the dependencies in # the current directory while Tru64 will put them in the object # directory. mkdir sub am_cv_CC_dependencies_compiler_type=none if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` fi am__universal=false case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and # we should not choose a depcomp mode which is confused by this. # # We need to recreate these files for each test, as the compiler may # overwrite some of them when testing with obscure command lines. # This happens at least with the AIX C compiler. : > sub/conftest.c for i in 1 2 3 4 5 6; do echo '#include "conftst'$i'.h"' >> sub/conftest.c # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with # Solaris 8's {/usr,}/bin/sh. touch sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf # We check with `-c' and `-o' for the sake of the "dashmstdout" # mode. It turns out that the SunPro C++ compiler does not properly # handle `-M -o', and we need to detect this. Also, some Intel # versions had trouble with output in subdirs am__obj=sub/conftest.${OBJEXT-o} am__minus_obj="-o $am__obj" case $depmode in gcc) # This depmode causes a compiler race in universal mode. test "$am__universal" = false || continue ;; nosideeffect) # after this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested if test "x$enable_dependency_tracking" = xyes; then continue else break fi ;; msvc7 | msvc7msys | msvisualcpp | msvcmsys) # This compiler won't grok `-c -o', but also, the minuso test has # not run yet. These depmodes are late enough in the game, and # so weak that their functioning should not be impacted. am__obj=conftest.${OBJEXT-o} am__minus_obj= ;; none) break ;; esac if depmode=$depmode \ source=sub/conftest.c object=$am__obj \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep $am__obj sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message # that says an option was ignored or not supported. # When given -MP, icc 7.0 and 7.1 complain thusly: # icc: Command line warning: ignoring option '-M'; no argument required # The diagnosis changed in icc 8.0: # icc: Command line remark: option '-MP' not supported if (grep 'ignoring option' conftest.err || grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else am_cv_CC_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_CC_dependencies_compiler_type=none fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CC_dependencies_compiler_type" >&5 $as_echo "$am_cv_CC_dependencies_compiler_type" >&6; } CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type if test "x$enable_dependency_tracking" != xno \ && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then am__fastdepCC_TRUE= am__fastdepCC_FALSE='#' else am__fastdepCC_TRUE='#' am__fastdepCC_FALSE= fi if test "x$CC" != xcc; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC and cc understand -c and -o together" >&5 $as_echo_n "checking whether $CC and cc understand -c and -o together... " >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether cc understands -c and -o together" >&5 $as_echo_n "checking whether cc understands -c and -o together... " >&6; } fi set dummy $CC; ac_cc=`$as_echo "$2" | sed 's/[^a-zA-Z0-9_]/_/g;s/^[0-9]/_/'` if eval \${ac_cv_prog_cc_${ac_cc}_c_o+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF # Make sure it works both with $CC and with simple cc. # We do the test twice because some compilers refuse to overwrite an # existing .o file with -o, though they will create one. ac_try='$CC -c conftest.$ac_ext -o conftest2.$ac_objext >&5' rm -f conftest2.* if { { case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_try") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && test -f conftest2.$ac_objext && { { case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_try") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then eval ac_cv_prog_cc_${ac_cc}_c_o=yes if test "x$CC" != xcc; then # Test first that cc exists at all. if { ac_try='cc -c conftest.$ac_ext >&5' { { case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_try") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; }; then ac_try='cc -c conftest.$ac_ext -o conftest2.$ac_objext >&5' rm -f conftest2.* if { { case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_try") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && test -f conftest2.$ac_objext && { { case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_try") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then # cc works too. : else # cc exists but doesn't like -o. eval ac_cv_prog_cc_${ac_cc}_c_o=no fi fi fi else eval ac_cv_prog_cc_${ac_cc}_c_o=no fi rm -f core conftest* fi if eval test \$ac_cv_prog_cc_${ac_cc}_c_o = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } $as_echo "#define NO_MINUS_C_MINUS_O 1" >>confdefs.h fi # FIXME: we rely on the cache variable name because # there is no other way. set dummy $CC am_cc=`echo $2 | sed 's/[^a-zA-Z0-9_]/_/g;s/^[0-9]/_/'` eval am_t=\$ac_cv_prog_cc_${am_cc}_c_o if test "$am_t" != yes; then # Losing compiler, so override with the script. # FIXME: It is wrong to rewrite CC. # But if we don't then we get into trouble of one sort or another. # A longer-term fix would be to have automake use am__CC in this case, # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)" CC="$am_aux_dir/compile $CC" fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C preprocessor" >&5 $as_echo_n "checking how to run the C preprocessor... " >&6; } # On Suns, sometimes $CPP names a directory. if test -n "$CPP" && test -d "$CPP"; then CPP= fi if test -z "$CPP"; then if ${ac_cv_prog_CPP+:} false; then : $as_echo_n "(cached) " >&6 else # Double quotes because CPP needs to be expanded for CPP in "$CC -E" "$CC -E -traditional-cpp" "/lib/cpp" do ac_preproc_ok=false for ac_c_preproc_warn_flag in '' yes do # Use a header file that comes with gcc, so configuring glibc # with a fresh cross-compiler works. # Prefer to if __STDC__ is defined, since # exists even on freestanding compilers. # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. "Syntax error" is here to catch this case. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifdef __STDC__ # include #else # include #endif Syntax error _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : else # Broken: fails on valid input. continue fi rm -f conftest.err conftest.i conftest.$ac_ext # OK, works on sane cases. Now check whether nonexistent headers # can be detected and how. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : # Broken: success on invalid input. continue else # Passes both tests. ac_preproc_ok=: break fi rm -f conftest.err conftest.i conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. rm -f conftest.i conftest.err conftest.$ac_ext if $ac_preproc_ok; then : break fi done ac_cv_prog_CPP=$CPP fi CPP=$ac_cv_prog_CPP else ac_cv_prog_CPP=$CPP fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CPP" >&5 $as_echo "$CPP" >&6; } ac_preproc_ok=false for ac_c_preproc_warn_flag in '' yes do # Use a header file that comes with gcc, so configuring glibc # with a fresh cross-compiler works. # Prefer to if __STDC__ is defined, since # exists even on freestanding compilers. # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. "Syntax error" is here to catch this case. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifdef __STDC__ # include #else # include #endif Syntax error _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : else # Broken: fails on valid input. continue fi rm -f conftest.err conftest.i conftest.$ac_ext # OK, works on sane cases. Now check whether nonexistent headers # can be detected and how. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : # Broken: success on invalid input. continue else # Passes both tests. ac_preproc_ok=: break fi rm -f conftest.err conftest.i conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. rm -f conftest.i conftest.err conftest.$ac_ext if $ac_preproc_ok; then : else { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "C preprocessor \"$CPP\" fails sanity check See \`config.log' for more details" "$LINENO" 5; } fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu { $as_echo "$as_me:${as_lineno-$LINENO}: checking for grep that handles long lines and -e" >&5 $as_echo_n "checking for grep that handles long lines and -e... " >&6; } if ${ac_cv_path_GREP+:} false; then : $as_echo_n "(cached) " >&6 else if test -z "$GREP"; then ac_path_GREP_found=false # Loop through the user's path and test for each of PROGNAME-LIST as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in grep ggrep; do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext" { test -f "$ac_path_GREP" && $as_test_x "$ac_path_GREP"; } || continue # Check for GNU ac_path_GREP and select it if it is found. # Check for GNU $ac_path_GREP case `"$ac_path_GREP" --version 2>&1` in *GNU*) ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_found=:;; *) ac_count=0 $as_echo_n 0123456789 >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" $as_echo 'GREP' >> "conftest.nl" "$ac_path_GREP" -e 'GREP$' -e '-(cannot match)-' < "conftest.nl" >"conftest.out" 2>/dev/null || break diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break as_fn_arith $ac_count + 1 && ac_count=$as_val if test $ac_count -gt ${ac_path_GREP_max-0}; then # Best one so far, save it but keep looking for a better one ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_max=$ac_count fi # 10*(2^10) chars as input seems more than enough test $ac_count -gt 10 && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out;; esac $ac_path_GREP_found && break 3 done done done IFS=$as_save_IFS if test -z "$ac_cv_path_GREP"; then as_fn_error $? "no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 fi else ac_cv_path_GREP=$GREP fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_GREP" >&5 $as_echo "$ac_cv_path_GREP" >&6; } GREP="$ac_cv_path_GREP" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for egrep" >&5 $as_echo_n "checking for egrep... " >&6; } if ${ac_cv_path_EGREP+:} false; then : $as_echo_n "(cached) " >&6 else if echo a | $GREP -E '(a|b)' >/dev/null 2>&1 then ac_cv_path_EGREP="$GREP -E" else if test -z "$EGREP"; then ac_path_EGREP_found=false # Loop through the user's path and test for each of PROGNAME-LIST as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in egrep; do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext" { test -f "$ac_path_EGREP" && $as_test_x "$ac_path_EGREP"; } || continue # Check for GNU ac_path_EGREP and select it if it is found. # Check for GNU $ac_path_EGREP case `"$ac_path_EGREP" --version 2>&1` in *GNU*) ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_found=:;; *) ac_count=0 $as_echo_n 0123456789 >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" $as_echo 'EGREP' >> "conftest.nl" "$ac_path_EGREP" 'EGREP$' < "conftest.nl" >"conftest.out" 2>/dev/null || break diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break as_fn_arith $ac_count + 1 && ac_count=$as_val if test $ac_count -gt ${ac_path_EGREP_max-0}; then # Best one so far, save it but keep looking for a better one ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_max=$ac_count fi # 10*(2^10) chars as input seems more than enough test $ac_count -gt 10 && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out;; esac $ac_path_EGREP_found && break 3 done done done IFS=$as_save_IFS if test -z "$ac_cv_path_EGREP"; then as_fn_error $? "no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 fi else ac_cv_path_EGREP=$EGREP fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_EGREP" >&5 $as_echo "$ac_cv_path_EGREP" >&6; } EGREP="$ac_cv_path_EGREP" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ foo _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "yes" >/dev/null 2>&1; then : fi rm -f conftest* if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args. set dummy ${ac_tool_prefix}pkg-config; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_PKG_CONFIG+:} false; then : $as_echo_n "(cached) " >&6 else case $PKG_CONFIG in [\\/]* | ?:[\\/]*) ac_cv_path_PKG_CONFIG="$PKG_CONFIG" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi PKG_CONFIG=$ac_cv_path_PKG_CONFIG if test -n "$PKG_CONFIG"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PKG_CONFIG" >&5 $as_echo "$PKG_CONFIG" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_path_PKG_CONFIG"; then ac_pt_PKG_CONFIG=$PKG_CONFIG # Extract the first word of "pkg-config", so it can be a program name with args. set dummy pkg-config; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_ac_pt_PKG_CONFIG+:} false; then : $as_echo_n "(cached) " >&6 else case $ac_pt_PKG_CONFIG in [\\/]* | ?:[\\/]*) ac_cv_path_ac_pt_PKG_CONFIG="$ac_pt_PKG_CONFIG" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_path_ac_pt_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi ac_pt_PKG_CONFIG=$ac_cv_path_ac_pt_PKG_CONFIG if test -n "$ac_pt_PKG_CONFIG"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_pt_PKG_CONFIG" >&5 $as_echo "$ac_pt_PKG_CONFIG" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_pt_PKG_CONFIG" = x; then PKG_CONFIG="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac PKG_CONFIG=$ac_pt_PKG_CONFIG fi else PKG_CONFIG="$ac_cv_path_PKG_CONFIG" fi fi if test -n "$PKG_CONFIG"; then _pkg_min_version=0.9.0 { $as_echo "$as_me:${as_lineno-$LINENO}: checking pkg-config is at least version $_pkg_min_version" >&5 $as_echo_n "checking pkg-config is at least version $_pkg_min_version... " >&6; } if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } PKG_CONFIG="" fi fi if test "$build" != "$host" -a "${PKG_CONFIG_LIBDIR}" = ""; then export PKG_CONFIG_LIBDIR=/dev/null fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5 $as_echo_n "checking for ANSI C header files... " >&6; } if ${ac_cv_header_stdc+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #include #include int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_header_stdc=yes else ac_cv_header_stdc=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext if test $ac_cv_header_stdc = yes; then # SunOS 4.x string.h does not declare mem*, contrary to ANSI. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "memchr" >/dev/null 2>&1; then : else ac_cv_header_stdc=no fi rm -f conftest* fi if test $ac_cv_header_stdc = yes; then # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "free" >/dev/null 2>&1; then : else ac_cv_header_stdc=no fi rm -f conftest* fi if test $ac_cv_header_stdc = yes; then # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi. if test "$cross_compiling" = yes; then : : else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #if ((' ' & 0x0FF) == 0x020) # define ISLOWER(c) ('a' <= (c) && (c) <= 'z') # define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c)) #else # define ISLOWER(c) \ (('a' <= (c) && (c) <= 'i') \ || ('j' <= (c) && (c) <= 'r') \ || ('s' <= (c) && (c) <= 'z')) # define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c)) #endif #define XOR(e, f) (((e) && !(f)) || (!(e) && (f))) int main () { int i; for (i = 0; i < 256; i++) if (XOR (islower (i), ISLOWER (i)) || toupper (i) != TOUPPER (i)) return 2; return 0; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : else ac_cv_header_stdc=no fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_stdc" >&5 $as_echo "$ac_cv_header_stdc" >&6; } if test $ac_cv_header_stdc = yes; then $as_echo "#define STDC_HEADERS 1" >>confdefs.h fi # On IRIX 5.3, sys/types and inttypes.h are conflicting. for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \ inttypes.h stdint.h unistd.h do : as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default " if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF fi done for ac_header in sys/ioctl.h do : ac_fn_c_check_header_mongrel "$LINENO" "sys/ioctl.h" "ac_cv_header_sys_ioctl_h" "$ac_includes_default" if test "x$ac_cv_header_sys_ioctl_h" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_SYS_IOCTL_H 1 _ACEOF fi done { $as_echo "$as_me:${as_lineno-$LINENO}: checking for TIOCGWINSZ" >&5 $as_echo_n "checking for TIOCGWINSZ... " >&6; } if ${ac_cv_have_tiocgwinsz+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main () { struct winsize ws; ioctl(1, TIOCGWINSZ, &ws); ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_have_tiocgwinsz=yes else ac_cv_have_tiocgwinsz=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_have_tiocgwinsz" >&5 $as_echo "$ac_cv_have_tiocgwinsz" >&6; } if test "${ac_cv_have_tiocgwinsz}" = "yes"; then $as_echo "#define HAVE_TIOCGWINSZ 1" >>confdefs.h fi pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for CACA" >&5 $as_echo_n "checking for CACA... " >&6; } if test -n "$CACA_CFLAGS"; then pkg_cv_CACA_CFLAGS="$CACA_CFLAGS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"caca >= 0.99.beta18\""; } >&5 ($PKG_CONFIG --exists --print-errors "caca >= 0.99.beta18") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_CACA_CFLAGS=`$PKG_CONFIG --cflags "caca >= 0.99.beta18" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test -n "$CACA_LIBS"; then pkg_cv_CACA_LIBS="$CACA_LIBS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"caca >= 0.99.beta18\""; } >&5 ($PKG_CONFIG --exists --print-errors "caca >= 0.99.beta18") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_CACA_LIBS=`$PKG_CONFIG --libs "caca >= 0.99.beta18" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test $pkg_failed = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then CACA_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "caca >= 0.99.beta18" 2>&1` else CACA_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "caca >= 0.99.beta18" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$CACA_PKG_ERRORS" >&5 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } as_fn_error $? "you need libcaca version 0.99.beta18 or later" "$LINENO" 5 elif test $pkg_failed = untried; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } as_fn_error $? "you need libcaca version 0.99.beta18 or later" "$LINENO" 5 else CACA_CFLAGS=$pkg_cv_CACA_CFLAGS CACA_LIBS=$pkg_cv_CACA_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } : fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for release date" >&5 $as_echo_n "checking for release date... " >&6; } tmp="${stamp%-*}" ac_build_date="${stamp##*-} ${tmp#*-} ${stamp%%-*}" { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_build_date" >&5 $as_echo "$ac_build_date" >&6; } cat >>confdefs.h <<_ACEOF #define DATE "$ac_build_date" _ACEOF # Optimizations CFLAGS="${CFLAGS} -g -O2 -fno-strength-reduce -fomit-frame-pointer" # Code qui fait des warnings == code de porc == deux baffes dans ta gueule CFLAGS="${CFLAGS} -Wall -Wpointer-arith -Wcast-align -Wcast-qual -Wstrict-prototypes -Wshadow -Waggregate-return -Wmissing-prototypes -Wnested-externs -Wsign-compare" ac_config_files="$ac_config_files Makefile src/Makefile tools/Makefile fonts/Makefile doc/Makefile test/Makefile" cat >confcache <<\_ACEOF # This file is a shell script that caches the results of configure # tests run on this system so they can be shared between configure # scripts and configure runs, see configure's option --config-cache. # It is not useful on other systems. If it contains results you don't # want to keep, you may remove or edit it. # # config.status only pays attention to the cache file if you give it # the --recheck option to rerun configure. # # `ac_cv_env_foo' variables (set or unset) will be overridden when # loading this file, other *unset* `ac_cv_foo' will be assigned the # following values. _ACEOF # The following way of writing the cache mishandles newlines in values, # but we know of no workaround that is simple, portable, and efficient. # So, we kill variables containing newlines. # Ultrix sh set writes to stderr and can't be redirected directly, # and sets the high bit in the cache file unless we assign to the vars. ( for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do eval ac_val=\$$ac_var case $ac_val in #( *${as_nl}*) case $ac_var in #( *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; esac case $ac_var in #( _ | IFS | as_nl) ;; #( BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( *) { eval $ac_var=; unset $ac_var;} ;; esac ;; esac done (set) 2>&1 | case $as_nl`(ac_space=' '; set) 2>&1` in #( *${as_nl}ac_space=\ *) # `set' does not quote correctly, so add quotes: double-quote # substitution turns \\\\ into \\, and sed turns \\ into \. sed -n \ "s/'/'\\\\''/g; s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p" ;; #( *) # `set' quotes correctly as required by POSIX, so do not add quotes. sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" ;; esac | sort ) | sed ' /^ac_cv_env_/b end t clear :clear s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/ t end s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/ :end' >>confcache if diff "$cache_file" confcache >/dev/null 2>&1; then :; else if test -w "$cache_file"; then if test "x$cache_file" != "x/dev/null"; then { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5 $as_echo "$as_me: updating cache $cache_file" >&6;} if test ! -f "$cache_file" || test -h "$cache_file"; then cat confcache >"$cache_file" else case $cache_file in #( */* | ?:*) mv -f confcache "$cache_file"$$ && mv -f "$cache_file"$$ "$cache_file" ;; #( *) mv -f confcache "$cache_file" ;; esac fi fi else { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5 $as_echo "$as_me: not updating unwritable cache $cache_file" >&6;} fi fi rm -f confcache test "x$prefix" = xNONE && prefix=$ac_default_prefix # Let make expand exec_prefix. test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' DEFS=-DHAVE_CONFIG_H ac_libobjs= ac_ltlibobjs= U= for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue # 1. Remove the extension, and $U if already installed. ac_script='s/\$U\././;s/\.o$//;s/\.obj$//' ac_i=`$as_echo "$ac_i" | sed "$ac_script"` # 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR # will be set to the directory where LIBOBJS objects are built. as_fn_append ac_libobjs " \${LIBOBJDIR}$ac_i\$U.$ac_objext" as_fn_append ac_ltlibobjs " \${LIBOBJDIR}$ac_i"'$U.lo' done LIBOBJS=$ac_libobjs LTLIBOBJS=$ac_ltlibobjs if test -n "$EXEEXT"; then am__EXEEXT_TRUE= am__EXEEXT_FALSE='#' else am__EXEEXT_TRUE='#' am__EXEEXT_FALSE= fi if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then as_fn_error $? "conditional \"AMDEP\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then as_fn_error $? "conditional \"am__fastdepCC\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi : "${CONFIG_STATUS=./config.status}" ac_write_fail=0 ac_clean_files_save=$ac_clean_files ac_clean_files="$ac_clean_files $CONFIG_STATUS" { $as_echo "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5 $as_echo "$as_me: creating $CONFIG_STATUS" >&6;} as_write_fail=0 cat >$CONFIG_STATUS <<_ASEOF || as_write_fail=1 #! $SHELL # Generated by $as_me. # Run this file to recreate the current configuration. # Compiler output produced by configure, useful for debugging # configure, is in config.log if it exists. debug=false ac_cs_recheck=false ac_cs_silent=false SHELL=\${CONFIG_SHELL-$SHELL} export SHELL _ASEOF cat >>$CONFIG_STATUS <<\_ASEOF || as_write_fail=1 ## -------------------- ## ## M4sh Initialization. ## ## -------------------- ## # Be more Bourne compatible DUALCASE=1; export DUALCASE # for MKS sh if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case `(set -o) 2>/dev/null` in #( *posix*) : set -o posix ;; #( *) : ;; esac fi as_nl=' ' export as_nl # Printing a long string crashes Solaris 7 /usr/bin/printf. as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo # Prefer a ksh shell builtin over an external printf program on Solaris, # but without wasting forks for bash or zsh. if test -z "$BASH_VERSION$ZSH_VERSION" \ && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='print -r --' as_echo_n='print -rn --' elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='printf %s\n' as_echo_n='printf %s' else if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' as_echo_n='/usr/ucb/echo -n' else as_echo_body='eval expr "X$1" : "X\\(.*\\)"' as_echo_n_body='eval arg=$1; case $arg in #( *"$as_nl"*) expr "X$arg" : "X\\(.*\\)$as_nl"; arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; esac; expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" ' export as_echo_n_body as_echo_n='sh -c $as_echo_n_body as_echo' fi export as_echo_body as_echo='sh -c $as_echo_body as_echo' fi # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then PATH_SEPARATOR=: (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || PATH_SEPARATOR=';' } fi # IFS # We need space, tab and new line, in precisely that order. Quoting is # there to prevent editors from complaining about space-tab. # (If _AS_PATH_WALK were called with IFS unset, it would disable word # splitting by setting IFS to empty value.) IFS=" "" $as_nl" # Find who we are. Look in the path if we contain no directory separator. as_myself= case $0 in #(( *[\\/]* ) as_myself=$0 ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break done IFS=$as_save_IFS ;; esac # We did not find ourselves, most probably we were run as `sh COMMAND' # in which case we are not to be found in the path. if test "x$as_myself" = x; then as_myself=$0 fi if test ! -f "$as_myself"; then $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 exit 1 fi # Unset variables that we do not need and which cause bugs (e.g. in # pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" # suppresses any "Segmentation fault" message there. '((' could # trigger a bug in pdksh 5.2.14. for as_var in BASH_ENV ENV MAIL MAILPATH do eval test x\${$as_var+set} = xset \ && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : done PS1='$ ' PS2='> ' PS4='+ ' # NLS nuisances. LC_ALL=C export LC_ALL LANGUAGE=C export LANGUAGE # CDPATH. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH # as_fn_error STATUS ERROR [LINENO LOG_FD] # ---------------------------------------- # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are # provided, also output the error to LOG_FD, referencing LINENO. Then exit the # script with STATUS, using 1 if that was 0. as_fn_error () { as_status=$1; test $as_status -eq 0 && as_status=1 if test "$4"; then as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 fi $as_echo "$as_me: error: $2" >&2 as_fn_exit $as_status } # as_fn_error # as_fn_set_status STATUS # ----------------------- # Set $? to STATUS, without forking. as_fn_set_status () { return $1 } # as_fn_set_status # as_fn_exit STATUS # ----------------- # Exit the shell with STATUS, even in a "trap 0" or "set -e" context. as_fn_exit () { set +e as_fn_set_status $1 exit $1 } # as_fn_exit # as_fn_unset VAR # --------------- # Portably unset VAR. as_fn_unset () { { eval $1=; unset $1;} } as_unset=as_fn_unset # as_fn_append VAR VALUE # ---------------------- # Append the text in VALUE to the end of the definition contained in VAR. Take # advantage of any shell optimizations that allow amortized linear growth over # repeated appends, instead of the typical quadratic growth present in naive # implementations. if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : eval 'as_fn_append () { eval $1+=\$2 }' else as_fn_append () { eval $1=\$$1\$2 } fi # as_fn_append # as_fn_arith ARG... # ------------------ # Perform arithmetic evaluation on the ARGs, and store the result in the # global $as_val. Take advantage of shells that can avoid forks. The arguments # must be portable across $(()) and expr. if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : eval 'as_fn_arith () { as_val=$(( $* )) }' else as_fn_arith () { as_val=`expr "$@" || test $? -eq 1` } fi # as_fn_arith if expr a : '\(a\)' >/dev/null 2>&1 && test "X`expr 00001 : '.*\(...\)'`" = X001; then as_expr=expr else as_expr=false fi if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then as_basename=basename else as_basename=false fi if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then as_dirname=dirname else as_dirname=false fi as_me=`$as_basename -- "$0" || $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ X"$0" : 'X\(//\)$' \| \ X"$0" : 'X\(/\)' \| . 2>/dev/null || $as_echo X/"$0" | sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/ q } /^X\/\(\/\/\)$/{ s//\1/ q } /^X\/\(\/\).*/{ s//\1/ q } s/.*/./; q'` # Avoid depending upon Character Ranges. as_cr_letters='abcdefghijklmnopqrstuvwxyz' as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' as_cr_Letters=$as_cr_letters$as_cr_LETTERS as_cr_digits='0123456789' as_cr_alnum=$as_cr_Letters$as_cr_digits ECHO_C= ECHO_N= ECHO_T= case `echo -n x` in #((((( -n*) case `echo 'xy\c'` in *c*) ECHO_T=' ';; # ECHO_T is single tab character. xy) ECHO_C='\c';; *) echo `echo ksh88 bug on AIX 6.1` > /dev/null ECHO_T=' ';; esac;; *) ECHO_N='-n';; esac rm -f conf$$ conf$$.exe conf$$.file if test -d conf$$.dir; then rm -f conf$$.dir/conf$$.file else rm -f conf$$.dir mkdir conf$$.dir 2>/dev/null fi if (echo >conf$$.file) 2>/dev/null; then if ln -s conf$$.file conf$$ 2>/dev/null; then as_ln_s='ln -s' # ... but there are two gotchas: # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. # In both cases, we have to default to `cp -p'. ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || as_ln_s='cp -p' elif ln conf$$.file conf$$ 2>/dev/null; then as_ln_s=ln else as_ln_s='cp -p' fi else as_ln_s='cp -p' fi rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file rmdir conf$$.dir 2>/dev/null # as_fn_mkdir_p # ------------- # Create "$as_dir" as a directory, including parents if necessary. as_fn_mkdir_p () { case $as_dir in #( -*) as_dir=./$as_dir;; esac test -d "$as_dir" || eval $as_mkdir_p || { as_dirs= while :; do case $as_dir in #( *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( *) as_qdir=$as_dir;; esac as_dirs="'$as_qdir' $as_dirs" as_dir=`$as_dirname -- "$as_dir" || $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_dir" : 'X\(//\)[^/]' \| \ X"$as_dir" : 'X\(//\)$' \| \ X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$as_dir" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` test -d "$as_dir" && break done test -z "$as_dirs" || eval "mkdir $as_dirs" } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" } # as_fn_mkdir_p if mkdir -p . 2>/dev/null; then as_mkdir_p='mkdir -p "$as_dir"' else test -d ./-p && rmdir ./-p as_mkdir_p=false fi if test -x / >/dev/null 2>&1; then as_test_x='test -x' else if ls -dL / >/dev/null 2>&1; then as_ls_L_option=L else as_ls_L_option= fi as_test_x=' eval sh -c '\'' if test -d "$1"; then test -d "$1/."; else case $1 in #( -*)set "./$1";; esac; case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in #(( ???[sx]*):;;*)false;;esac;fi '\'' sh ' fi as_executable_p=$as_test_x # Sed expression to map a string onto a valid CPP name. as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" # Sed expression to map a string onto a valid variable name. as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" exec 6>&1 ## ----------------------------------- ## ## Main body of $CONFIG_STATUS script. ## ## ----------------------------------- ## _ASEOF test $as_write_fail = 0 && chmod +x $CONFIG_STATUS || ac_write_fail=1 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # Save the log message, to keep $0 and so on meaningful, and to # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" This file was extended by toilet $as_me 0.3, which was generated by GNU Autoconf 2.68. Invocation command line was CONFIG_FILES = $CONFIG_FILES CONFIG_HEADERS = $CONFIG_HEADERS CONFIG_LINKS = $CONFIG_LINKS CONFIG_COMMANDS = $CONFIG_COMMANDS $ $0 $@ on `(hostname || uname -n) 2>/dev/null | sed 1q` " _ACEOF case $ac_config_files in *" "*) set x $ac_config_files; shift; ac_config_files=$*;; esac case $ac_config_headers in *" "*) set x $ac_config_headers; shift; ac_config_headers=$*;; esac cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 # Files that config.status was made for. config_files="$ac_config_files" config_headers="$ac_config_headers" config_commands="$ac_config_commands" _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 ac_cs_usage="\ \`$as_me' instantiates files and other configuration actions from templates according to the current configuration. Unless the files and actions are specified as TAGs, all are instantiated by default. Usage: $0 [OPTION]... [TAG]... -h, --help print this help, then exit -V, --version print version number and configuration settings, then exit --config print configuration, then exit -q, --quiet, --silent do not print progress messages -d, --debug don't remove temporary files --recheck update $as_me by reconfiguring in the same conditions --file=FILE[:TEMPLATE] instantiate the configuration file FILE --header=FILE[:TEMPLATE] instantiate the configuration header FILE Configuration files: $config_files Configuration headers: $config_headers Configuration commands: $config_commands Report bugs to the package provider." _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ toilet config.status 0.3 configured by $0, generated by GNU Autoconf 2.68, with options \\"\$ac_cs_config\\" Copyright (C) 2010 Free Software Foundation, Inc. This config.status script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it." ac_pwd='$ac_pwd' srcdir='$srcdir' INSTALL='$INSTALL' MKDIR_P='$MKDIR_P' AWK='$AWK' test -n "\$AWK" || AWK=awk _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # The default lists apply if the user does not specify any file. ac_need_defaults=: while test $# != 0 do case $1 in --*=?*) ac_option=`expr "X$1" : 'X\([^=]*\)='` ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'` ac_shift=: ;; --*=) ac_option=`expr "X$1" : 'X\([^=]*\)='` ac_optarg= ac_shift=: ;; *) ac_option=$1 ac_optarg=$2 ac_shift=shift ;; esac case $ac_option in # Handling of the options. -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) ac_cs_recheck=: ;; --version | --versio | --versi | --vers | --ver | --ve | --v | -V ) $as_echo "$ac_cs_version"; exit ;; --config | --confi | --conf | --con | --co | --c ) $as_echo "$ac_cs_config"; exit ;; --debug | --debu | --deb | --de | --d | -d ) debug=: ;; --file | --fil | --fi | --f ) $ac_shift case $ac_optarg in *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; '') as_fn_error $? "missing file argument" ;; esac as_fn_append CONFIG_FILES " '$ac_optarg'" ac_need_defaults=false;; --header | --heade | --head | --hea ) $ac_shift case $ac_optarg in *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; esac as_fn_append CONFIG_HEADERS " '$ac_optarg'" ac_need_defaults=false;; --he | --h) # Conflict between --help and --header as_fn_error $? "ambiguous option: \`$1' Try \`$0 --help' for more information.";; --help | --hel | -h ) $as_echo "$ac_cs_usage"; exit ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil | --si | --s) ac_cs_silent=: ;; # This is an error. -*) as_fn_error $? "unrecognized option: \`$1' Try \`$0 --help' for more information." ;; *) as_fn_append ac_config_targets " $1" ac_need_defaults=false ;; esac shift done ac_configure_extra_args= if $ac_cs_silent; then exec 6>/dev/null ac_configure_extra_args="$ac_configure_extra_args --silent" fi _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 if \$ac_cs_recheck; then set X '$SHELL' '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion shift \$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6 CONFIG_SHELL='$SHELL' export CONFIG_SHELL exec "\$@" fi _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 exec 5>>config.log { echo sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX ## Running $as_me. ## _ASBOX $as_echo "$ac_log" } >&5 _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 # # INIT-COMMANDS # AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir" _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # Handling of arguments. for ac_config_target in $ac_config_targets do case $ac_config_target in "config.h") CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;; "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;; "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; "src/Makefile") CONFIG_FILES="$CONFIG_FILES src/Makefile" ;; "tools/Makefile") CONFIG_FILES="$CONFIG_FILES tools/Makefile" ;; "fonts/Makefile") CONFIG_FILES="$CONFIG_FILES fonts/Makefile" ;; "doc/Makefile") CONFIG_FILES="$CONFIG_FILES doc/Makefile" ;; "test/Makefile") CONFIG_FILES="$CONFIG_FILES test/Makefile" ;; *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;; esac done # If the user did not use the arguments to specify the items to instantiate, # then the envvar interface is used. Set only those that are not. # We use the long form for the default assignment because of an extremely # bizarre bug on SunOS 4.1.3. if $ac_need_defaults; then test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands fi # Have a temporary directory for convenience. Make it in the build tree # simply because there is no reason against having it here, and in addition, # creating and moving files from /tmp can sometimes cause problems. # Hook for its removal unless debugging. # Note that there is a small window in which the directory will not be cleaned: # after its creation but before its name has been assigned to `$tmp'. $debug || { tmp= ac_tmp= trap 'exit_status=$? : "${ac_tmp:=$tmp}" { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status ' 0 trap 'as_fn_exit 1' 1 2 13 15 } # Create a (secure) tmp directory for tmp files. { tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` && test -d "$tmp" } || { tmp=./conf$$-$RANDOM (umask 077 && mkdir "$tmp") } || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5 ac_tmp=$tmp # Set up the scripts for CONFIG_FILES section. # No need to generate them if there are no CONFIG_FILES. # This happens for instance with `./config.status config.h'. if test -n "$CONFIG_FILES"; then ac_cr=`echo X | tr X '\015'` # On cygwin, bash can eat \r inside `` if the user requested igncr. # But we know of no other shell where ac_cr would be empty at this # point, so we can use a bashism as a fallback. if test "x$ac_cr" = x; then eval ac_cr=\$\'\\r\' fi ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' /dev/null` if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then ac_cs_awk_cr='\\r' else ac_cs_awk_cr=$ac_cr fi echo 'BEGIN {' >"$ac_tmp/subs1.awk" && _ACEOF { echo "cat >conf$$subs.awk <<_ACEOF" && echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' && echo "_ACEOF" } >conf$$subs.sh || as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'` ac_delim='%!_!# ' for ac_last_try in false false false false false :; do . ./conf$$subs.sh || as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X` if test $ac_delim_n = $ac_delim_num; then break elif $ac_last_try; then as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 else ac_delim="$ac_delim!$ac_delim _$ac_delim!! " fi done rm -f conf$$subs.sh cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 cat >>"\$ac_tmp/subs1.awk" <<\\_ACAWK && _ACEOF sed -n ' h s/^/S["/; s/!.*/"]=/ p g s/^[^!]*!// :repl t repl s/'"$ac_delim"'$// t delim :nl h s/\(.\{148\}\)..*/\1/ t more1 s/["\\]/\\&/g; s/^/"/; s/$/\\n"\\/ p n b repl :more1 s/["\\]/\\&/g; s/^/"/; s/$/"\\/ p g s/.\{148\}// t nl :delim h s/\(.\{148\}\)..*/\1/ t more2 s/["\\]/\\&/g; s/^/"/; s/$/"/ p b :more2 s/["\\]/\\&/g; s/^/"/; s/$/"\\/ p g s/.\{148\}// t delim ' >$CONFIG_STATUS || ac_write_fail=1 rm -f conf$$subs.awk cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 _ACAWK cat >>"\$ac_tmp/subs1.awk" <<_ACAWK && for (key in S) S_is_set[key] = 1 FS = "" } { line = $ 0 nfields = split(line, field, "@") substed = 0 len = length(field[1]) for (i = 2; i < nfields; i++) { key = field[i] keylen = length(key) if (S_is_set[key]) { value = S[key] line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3) len += length(value) + length(field[++i]) substed = 1 } else len += 1 + keylen } print line } _ACAWK _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g" else cat fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \ || as_fn_error $? "could not setup config files machinery" "$LINENO" 5 _ACEOF # VPATH may cause trouble with some makes, so we remove sole $(srcdir), # ${srcdir} and @srcdir@ entries from VPATH if srcdir is ".", strip leading and # trailing colons and then remove the whole line if VPATH becomes empty # (actually we leave an empty line to preserve line numbers). if test "x$srcdir" = x.; then ac_vpsub='/^[ ]*VPATH[ ]*=[ ]*/{ h s/// s/^/:/ s/[ ]*$/:/ s/:\$(srcdir):/:/g s/:\${srcdir}:/:/g s/:@srcdir@:/:/g s/^:*// s/:*$// x s/\(=[ ]*\).*/\1/ G s/\n// s/^[^=]*=[ ]*$// }' fi cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 fi # test -n "$CONFIG_FILES" # Set up the scripts for CONFIG_HEADERS section. # No need to generate them if there are no CONFIG_HEADERS. # This happens for instance with `./config.status Makefile'. if test -n "$CONFIG_HEADERS"; then cat >"$ac_tmp/defines.awk" <<\_ACAWK || BEGIN { _ACEOF # Transform confdefs.h into an awk script `defines.awk', embedded as # here-document in config.status, that substitutes the proper values into # config.h.in to produce config.h. # Create a delimiter string that does not exist in confdefs.h, to ease # handling of long lines. ac_delim='%!_!# ' for ac_last_try in false false :; do ac_tt=`sed -n "/$ac_delim/p" confdefs.h` if test -z "$ac_tt"; then break elif $ac_last_try; then as_fn_error $? "could not make $CONFIG_HEADERS" "$LINENO" 5 else ac_delim="$ac_delim!$ac_delim _$ac_delim!! " fi done # For the awk script, D is an array of macro values keyed by name, # likewise P contains macro parameters if any. Preserve backslash # newline sequences. ac_word_re=[_$as_cr_Letters][_$as_cr_alnum]* sed -n ' s/.\{148\}/&'"$ac_delim"'/g t rset :rset s/^[ ]*#[ ]*define[ ][ ]*/ / t def d :def s/\\$// t bsnl s/["\\]/\\&/g s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ D["\1"]=" \3"/p s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2"/p d :bsnl s/["\\]/\\&/g s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ D["\1"]=" \3\\\\\\n"\\/p t cont s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2\\\\\\n"\\/p t cont d :cont n s/.\{148\}/&'"$ac_delim"'/g t clear :clear s/\\$// t bsnlc s/["\\]/\\&/g; s/^/"/; s/$/"/p d :bsnlc s/["\\]/\\&/g; s/^/"/; s/$/\\\\\\n"\\/p b cont ' >$CONFIG_STATUS || ac_write_fail=1 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 for (key in D) D_is_set[key] = 1 FS = "" } /^[\t ]*#[\t ]*(define|undef)[\t ]+$ac_word_re([\t (]|\$)/ { line = \$ 0 split(line, arg, " ") if (arg[1] == "#") { defundef = arg[2] mac1 = arg[3] } else { defundef = substr(arg[1], 2) mac1 = arg[2] } split(mac1, mac2, "(") #) macro = mac2[1] prefix = substr(line, 1, index(line, defundef) - 1) if (D_is_set[macro]) { # Preserve the white space surrounding the "#". print prefix "define", macro P[macro] D[macro] next } else { # Replace #undef with comments. This is necessary, for example, # in the case of _POSIX_SOURCE, which is predefined and required # on some systems where configure will not decide to define it. if (defundef == "undef") { print "/*", prefix defundef, macro, "*/" next } } } { print } _ACAWK _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 as_fn_error $? "could not setup config headers machinery" "$LINENO" 5 fi # test -n "$CONFIG_HEADERS" eval set X " :F $CONFIG_FILES :H $CONFIG_HEADERS :C $CONFIG_COMMANDS" shift for ac_tag do case $ac_tag in :[FHLC]) ac_mode=$ac_tag; continue;; esac case $ac_mode$ac_tag in :[FHL]*:*);; :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;; :[FH]-) ac_tag=-:-;; :[FH]*) ac_tag=$ac_tag:$ac_tag.in;; esac ac_save_IFS=$IFS IFS=: set x $ac_tag IFS=$ac_save_IFS shift ac_file=$1 shift case $ac_mode in :L) ac_source=$1;; :[FH]) ac_file_inputs= for ac_f do case $ac_f in -) ac_f="$ac_tmp/stdin";; *) # Look for the file first in the build tree, then in the source tree # (if the path is not absolute). The absolute path cannot be DOS-style, # because $ac_f cannot contain `:'. test -f "$ac_f" || case $ac_f in [\\/$]*) false;; *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";; esac || as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;; esac case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac as_fn_append ac_file_inputs " '$ac_f'" done # Let's still pretend it is `configure' which instantiates (i.e., don't # use $as_me), people would be surprised to read: # /* config.h. Generated by config.status. */ configure_input='Generated from '` $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g' `' by configure.' if test x"$ac_file" != x-; then configure_input="$ac_file. $configure_input" { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5 $as_echo "$as_me: creating $ac_file" >&6;} fi # Neutralize special characters interpreted by sed in replacement strings. case $configure_input in #( *\&* | *\|* | *\\* ) ac_sed_conf_input=`$as_echo "$configure_input" | sed 's/[\\\\&|]/\\\\&/g'`;; #( *) ac_sed_conf_input=$configure_input;; esac case $ac_tag in *:-:* | *:-) cat >"$ac_tmp/stdin" \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;; esac ;; esac ac_dir=`$as_dirname -- "$ac_file" || $as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$ac_file" : 'X\(//\)[^/]' \| \ X"$ac_file" : 'X\(//\)$' \| \ X"$ac_file" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$ac_file" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` as_dir="$ac_dir"; as_fn_mkdir_p ac_builddir=. case "$ac_dir" in .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` # A ".." for each directory in $ac_dir_suffix. ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` case $ac_top_builddir_sub in "") ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; esac ;; esac ac_abs_top_builddir=$ac_pwd ac_abs_builddir=$ac_pwd$ac_dir_suffix # for backward compatibility: ac_top_builddir=$ac_top_build_prefix case $srcdir in .) # We are building in place. ac_srcdir=. ac_top_srcdir=$ac_top_builddir_sub ac_abs_top_srcdir=$ac_pwd ;; [\\/]* | ?:[\\/]* ) # Absolute name. ac_srcdir=$srcdir$ac_dir_suffix; ac_top_srcdir=$srcdir ac_abs_top_srcdir=$srcdir ;; *) # Relative name. ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix ac_top_srcdir=$ac_top_build_prefix$srcdir ac_abs_top_srcdir=$ac_pwd/$srcdir ;; esac ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix case $ac_mode in :F) # # CONFIG_FILE # case $INSTALL in [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;; *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;; esac ac_MKDIR_P=$MKDIR_P case $MKDIR_P in [\\/$]* | ?:[\\/]* ) ;; */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;; esac _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # If the template does not know about datarootdir, expand it. # FIXME: This hack should be removed a few years after 2.60. ac_datarootdir_hack=; ac_datarootdir_seen= ac_sed_dataroot=' /datarootdir/ { p q } /@datadir@/p /@docdir@/p /@infodir@/p /@localedir@/p /@mandir@/p' case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in *datarootdir*) ac_datarootdir_seen=yes;; *@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 $as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;} _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_datarootdir_hack=' s&@datadir@&$datadir&g s&@docdir@&$docdir&g s&@infodir@&$infodir&g s&@localedir@&$localedir&g s&@mandir@&$mandir&g s&\\\${datarootdir}&$datarootdir&g' ;; esac _ACEOF # Neutralize VPATH when `$srcdir' = `.'. # Shell code in configure.ac might set extrasub. # FIXME: do we really want to maintain this feature? cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_sed_extra="$ac_vpsub $extrasub _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 :t /@[a-zA-Z_][a-zA-Z_0-9]*@/!b s|@configure_input@|$ac_sed_conf_input|;t t s&@top_builddir@&$ac_top_builddir_sub&;t t s&@top_build_prefix@&$ac_top_build_prefix&;t t s&@srcdir@&$ac_srcdir&;t t s&@abs_srcdir@&$ac_abs_srcdir&;t t s&@top_srcdir@&$ac_top_srcdir&;t t s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t s&@builddir@&$ac_builddir&;t t s&@abs_builddir@&$ac_abs_builddir&;t t s&@abs_top_builddir@&$ac_abs_top_builddir&;t t s&@INSTALL@&$ac_INSTALL&;t t s&@MKDIR_P@&$ac_MKDIR_P&;t t $ac_datarootdir_hack " eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \ >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5 test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } && { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' \ "$ac_tmp/out"`; test -z "$ac_out"; } && { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir' which seems to be undefined. Please make sure it is defined" >&5 $as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir' which seems to be undefined. Please make sure it is defined" >&2;} rm -f "$ac_tmp/stdin" case $ac_file in -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";; *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";; esac \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;; :H) # # CONFIG_HEADER # if test x"$ac_file" != x-; then { $as_echo "/* $configure_input */" \ && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" } >"$ac_tmp/config.h" \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 if diff "$ac_file" "$ac_tmp/config.h" >/dev/null 2>&1; then { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5 $as_echo "$as_me: $ac_file is unchanged" >&6;} else rm -f "$ac_file" mv "$ac_tmp/config.h" "$ac_file" \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 fi else $as_echo "/* $configure_input */" \ && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" \ || as_fn_error $? "could not create -" "$LINENO" 5 fi # Compute "$ac_file"'s index in $config_headers. _am_arg="$ac_file" _am_stamp_count=1 for _am_header in $config_headers :; do case $_am_header in $_am_arg | $_am_arg:* ) break ;; * ) _am_stamp_count=`expr $_am_stamp_count + 1` ;; esac done echo "timestamp for $_am_arg" >`$as_dirname -- "$_am_arg" || $as_expr X"$_am_arg" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$_am_arg" : 'X\(//\)[^/]' \| \ X"$_am_arg" : 'X\(//\)$' \| \ X"$_am_arg" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$_am_arg" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'`/stamp-h$_am_stamp_count ;; :C) { $as_echo "$as_me:${as_lineno-$LINENO}: executing $ac_file commands" >&5 $as_echo "$as_me: executing $ac_file commands" >&6;} ;; esac case $ac_file$ac_mode in "depfiles":C) test x"$AMDEP_TRUE" != x"" || { # Autoconf 2.62 quotes --file arguments for eval, but not when files # are listed without --file. Let's play safe and only enable the eval # if we detect the quoting. case $CONFIG_FILES in *\'*) eval set x "$CONFIG_FILES" ;; *) set x $CONFIG_FILES ;; esac shift for mf do # Strip MF so we end up with the name of the file. mf=`echo "$mf" | sed -e 's/:.*$//'` # Check whether this is an Automake generated Makefile or not. # We used to match only the files named `Makefile.in', but # some people rename them; so instead we look at the file content. # Grep'ing the first line is not enough: some people post-process # each Makefile.in and add a new line on top of each file to say so. # Grep'ing the whole file is not good either: AIX grep has a line # limit of 2048, but all sed's we know have understand at least 4000. if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then dirpart=`$as_dirname -- "$mf" || $as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$mf" : 'X\(//\)[^/]' \| \ X"$mf" : 'X\(//\)$' \| \ X"$mf" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$mf" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` else continue fi # Extract the definition of DEPDIR, am__include, and am__quote # from the Makefile without running `make'. DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` test -z "$DEPDIR" && continue am__include=`sed -n 's/^am__include = //p' < "$mf"` test -z "am__include" && continue am__quote=`sed -n 's/^am__quote = //p' < "$mf"` # When using ansi2knr, U may be empty or an underscore; expand it U=`sed -n 's/^U = //p' < "$mf"` # Find all dependency output files, they are included files with # $(DEPDIR) in their names. We invoke sed twice because it is the # simplest approach to changing $(DEPDIR) to its actual value in the # expansion. for file in `sed -n " s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do # Make sure the directory exists. test -f "$dirpart/$file" && continue fdir=`$as_dirname -- "$file" || $as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$file" : 'X\(//\)[^/]' \| \ X"$file" : 'X\(//\)$' \| \ X"$file" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$file" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` as_dir=$dirpart/$fdir; as_fn_mkdir_p # echo "creating $dirpart/$file" echo '# dummy' > "$dirpart/$file" done done } ;; esac done # for ac_tag as_fn_exit 0 _ACEOF ac_clean_files=$ac_clean_files_save test $ac_write_fail = 0 || as_fn_error $? "write failure creating $CONFIG_STATUS" "$LINENO" 5 # configure is writing to config.log, and then calls config.status. # config.status does its own redirection, appending to config.log. # Unfortunately, on DOS this fails, as config.log is still kept open # by configure, so config.status won't be able to write to it; its # output is simply discarded. So we exec the FD to /dev/null, # effectively closing config.log, so it can be properly (re)opened and # appended to by config.status. When coming back to configure, we # need to make the FD available again. if test "$no_create" != yes; then ac_cs_success=: ac_config_status_args= test "$silent" = yes && ac_config_status_args="$ac_config_status_args --quiet" exec 5>/dev/null $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false exec 5>>config.log # Use ||, not &&, to avoid exiting from the if with $? = 1, which # would make configure fail if this is the last instruction. $ac_cs_success || as_fn_exit 1 fi if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5 $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;} fi toilet-0.3/fonts/0000755000175000017500000000000011737655771011031 500000000000000toilet-0.3/fonts/letter.tlf0000644000175000017500000002202311324661024012732 00000000000000tlf2a 6 5 8 -1 17 0 0 0 =============================================================================== This is letter.tlf, or “Letter”, Copyright (c) 2008 Francesco Poli 2008-09-21 -- Francesco Poli font creation This font is free software. It comes without any warranty, to the extent permitted by applicable law. You can redistribute it and/or modify it under the terms of the Do What The Fuck You Want To Public License, Version 2, as published by Sam Hocevar. See http://sam.zoy.org/wtfpl/COPYING for more details. Missing characters: many... This font is part of TOIlet’s official distribution. More information on the TOIlet website at http://caca.zoy.org/wiki/toilet =============================================================================== @ @ @ @ @ @@ ! @ ! @ ! @ @ ! @ @@ " " @ " " @ @ @ @ @@ # # @ ##### @ # # @ ##### @ # # @ @@ $$$ @ $ $ @ $$$ @ $ $ @ $$$ @ @@ %% % @ %% % @ % @ % %% @ % %% @ @@ & @ & & @ && & @ & & @ && & @ @@ ' @ ' @ @ @ @ @@ ( @ ( @ ( @ ( @ ( @ @@ ) @ ) @ ) @ ) @ ) @ @@ * @ * * * @ *** @ * * * @ * @ @@ @ + @ +++ @ + @ @ @@ @ @ @ @ , @ ,, @@ @ @ --- @ @ @ @@ @ @ @ .. @ .. @ @@ / @ / @ / @ / @ / @ @@ 000 @ 0 0 @ 0 0 0 @ 0 0 @ 000 @ @@ 1 @ 11 @ 1 @ 1 @ 111 @ @@ 222 @ 2 2 @ 22 @ 2 @ 22222 @ @@ 33333 @ 3 @ 33 @ 3 3 @ 333 @ @@ 4 @ 44 @ 4 4 @ 44444 @ 4 @ @@ 55555 @ 5 @ 5555 @ 5 @ 5555 @ @@ 666 @ 6 @ 6666 @ 6 6 @ 666 @ @@ 77777 @ 7 @ 7 @ 7 @ 7 @ @@ 888 @ 8 8 @ 888 @ 8 8 @ 888 @ @@ 999 @ 9 9 @ 9999 @ 9 @ 999 @ @@ @ @ : @ @ : @ @@ @ @ ; @ @ ; @ ;; @@ @ < @ < @ < @ @ @@ @ @ === @ === @ @ @@ @ > @ > @ > @ @ @@ ??? @ ? ? @ ? @ @ ? @ @@ @@@ # @ @ # @ @@ # @ @@ # @ # @@@@ ## A @ A A @ AAAAA @ A A @ A A @ @@ BBBB @ B B @ BBBB @ B B @ BBBB @ @@ CCC @ C C @ C @ C C @ CCC @ @@ DDDD @ D D @ D D @ D D @ DDDD @ @@ EEEEE @ E @ EEEE @ E @ EEEEE @ @@ FFFFF @ F @ FFFF @ F @ F @ @@ GGG @ G @ G GG @ G G @ GGG @ @@ H H @ H H @ HHHHH @ H H @ H H @ @@ III @ I @ I @ I @ III @ @@ JJJ @ J @ J @ J J @ JJ @ @@ K K @ K K @ KKK @ K K @ K K @ @@ L @ L @ L @ L @ LLLLL @ @@ M M @ MM MM @ M M M @ M M @ M M @ @@ N N @ NN N @ N N N @ N NN @ N N @ @@ OOO @ O O @ O O @ O O @ OOO @ @@ PPPP @ P P @ PPPP @ P @ P @ @@ QQQ @ Q Q @ Q Q Q @ Q QQ @ QQQQ @ @@ RRRR @ R R @ RRRR @ R R @ R R @ @@ SSSS @ S @ SSS @ S @ SSSS @ @@ TTTTT @ T @ T @ T @ T @ @@ U U @ U U @ U U @ U U @ UUU @ @@ V V @ V V @ V V @ V V @ V @ @@ W W @ W W @ W W W @ W W W @ W W @ @@ X X @ X X @ X @ X X @ X X @ @@ Y Y @ Y Y @ Y @ Y @ Y @ @@ ZZZZZ @ Z @ Z @ Z @ ZZZZZ @ @@ [[ @ [ @ [ @ [ @ [[ @ @@ \ @ \ @ \ @ \ @ \ @ @@ ]] @ ] @ ] @ ] @ ]] @ @@ ^ @ ^ ^ @ @ @ @ @@ @ @ @ @ _____ @ @@ ` @ ` @ @ @ @ @@ A a A A a AAAAA a A A a A A a aa BBBB b B B b BBBB b B B b BBBB b bb CCC c C C c C c C C c CCC c cc DDDD d D D d D D d D D d DDDD d dd EEEEE e E e EEEE e E e EEEEE e ee FFFFF f F f FFFF f F f F f ff GGG g G g G GG g G G g GGG g gg H H h H H h HHHHH h H H h H H h hh III i I i I i I i III i ii JJJ j J j J j J J j JJ j jj K K k K K k KKK k K K k K K k kk L l L l L l L l LLLLL l ll M M m MM MM m M M M m M M m M M m mm N N n NN N n N N N n N NN n N N n nn OOO o O O o O O o O O o OOO o oo PPPP p P P p PPPP p P p P p pp QQQ q Q Q q Q Q Q q Q QQ q QQQQ q qq RRRR r R R r RRRR r R R r R R r rr SSSS s S s SSS s S s SSSS s ss TTTTT t T t T t T t T t tt U U u U U u U U u U U u UUU u uu V V v V V v V V v V V v V v vv W W w W W w W W W w W W W w W W w ww X X x X X x X x X X x X X x xx Y Y y Y Y y Y y Y y Y y yy ZZZZZ z Z z Z z Z z ZZZZZ z zz {{ @ { @ {{ @ { @ {{ @ @@ | @ | @ | @ | @ | @ @@ }} @ } @ }} @ } @ }} @ @@ ~ ~ @ ~ ~ @ @ @ @ @@ Ä Ä @ Ä @ Ä Ä @ ÄÄÄÄÄ @ Ä Ä @ @@ Ö Ö @ ÖÖÖ @ Ö Ö @ Ö Ö @ ÖÖÖ @ @@ Ü Ü @ @ Ü Ü @ Ü Ü @ ÜÜÜ @ @@ Ä Ä ä Ä ä Ä Ä ä ÄÄÄÄÄ ä Ä Ä ä ää Ö Ö ö ÖÖÖ ö Ö Ö ö Ö Ö ö ÖÖÖ ö öö Ü Ü ü ü Ü Ü ü Ü Ü ü ÜÜÜ ü üü ßß @ ß ß @ ßßßß @ ß ß @ ß ß @ @@ 0x2500 ─ BOX DRAWINGS LIGHT HORIZONTAL @ @ ──────@ @ @ @@ 0x2501 ━ BOX DRAWINGS HEAVY HORIZONTAL @ ━━━━━━@ ━━━━━━@ ━━━━━━@ @ @@ 0x2502 │ BOX DRAWINGS LIGHT VERTICAL │ @ │ @ │ @ │ @ │ @ │ @@ 0x2503 ┃ BOX DRAWINGS HEAVY VERTICAL ┃┃┃ @ ┃┃┃ @ ┃┃┃ @ ┃┃┃ @ ┃┃┃ @ ┃┃┃ @@ 0x250C ┌ BOX DRAWINGS LIGHT DOWN AND RIGHT @ @ ┌┌┌┌@ ┌ @ ┌ @ ┌ @@ 0x250F ┏ BOX DRAWINGS HEAVY DOWN AND RIGHT @ ┏┏┏┏┏@ ┏┏┏┏┏@ ┏┏┏┏┏@ ┏┏┏ @ ┏┏┏ @@ 0x2510 ┐ BOX DRAWINGS LIGHT DOWN AND LEFT @ @ ┐┐┐ @ ┐ @ ┐ @ ┐ @@ 0x2513 ┓ BOX DRAWINGS HEAVY DOWN AND LEFT @ ┓┓┓┓ @ ┓┓┓┓ @ ┓┓┓┓ @ ┓┓┓ @ ┓┓┓ @@ 0x2514 └ BOX DRAWINGS LIGHT UP AND RIGHT └ @ └ @ └└└└@ @ @ @@ 0x2517 ┗ BOX DRAWINGS HEAVY UP AND RIGHT ┗┗┗ @ ┗┗┗┗┗@ ┗┗┗┗┗@ ┗┗┗┗┗@ @ @@ 0x2518 ┘ BOX DRAWINGS LIGHT UP AND LEFT ┘ @ ┘ @ ┘┘┘ @ @ @ @@ 0x251B ┛ BOX DRAWINGS HEAVY UP AND LEFT ┛┛┛ @ ┛┛┛┛ @ ┛┛┛┛ @ ┛┛┛┛ @ @ @@ 0x251c ├ BOX DRAWINGS LIGHT VERTICAL AND RIGHT ├ @ ├ @ ├├├├@ ├ @ ├ @ ├ @@ 0x2523 ┣ BOX DRAWINGS HEAVY VERTICAL AND RIGHT ┣┣┣ @ ┣┣┣┣┣@ ┣┣┣┣┣@ ┣┣┣┣┣@ ┣┣┣ @ ┣┣┣ @@ 0x2524 ┤ BOX DRAWINGS LIGHT VERTICAL AND LEFT ┤ @ ┤ @ ┤┤┤ @ ┤ @ ┤ @ ┤ @@ 0x252B ┫ BOX DRAWINGS HEAVY VERTICAL AND LEFT ┫┫┫ @ ┫┫┫┫ @ ┫┫┫┫ @ ┫┫┫┫ @ ┫┫┫ @ ┫┫┫ @@ 0x252c ┬ BOX DRAWINGS LIGHT DOWN AND HORIZONTAL @ @ ┬┬┬┬┬┬@ ┬ @ ┬ @ ┬ @@ 0x2533 ┳ BOX DRAWINGS HEAVY DOWN AND HORIZONTAL @ ┳┳┳┳┳┳@ ┳┳┳┳┳┳@ ┳┳┳┳┳┳@ ┳┳┳ @ ┳┳┳ @@ 0x2534 ┴ BOX DRAWINGS LIGHT UP AND HORIZONTAL ┴ @ ┴ @ ┴┴┴┴┴┴@ @ @ @@ 0x253B ┻ BOX DRAWINGS HEAVY UP AND HORIZONTAL ┻┻┻ @ ┻┻┻┻┻┻@ ┻┻┻┻┻┻@ ┻┻┻┻┻┻@ @ @@ 0x253c ┼ BOX DRAWINGS LIGHT VERTICAL AND HORIZONTAL ┼ @ ┼ @ ┼┼┼┼┼┼@ ┼ @ ┼ @ ┼ @@ 0x254B ╋ BOX DRAWINGS HEAVY VERTICAL AND HORIZONTAL ╋╋╋ @ ╋╋╋╋╋╋@ ╋╋╋╋╋╋@ ╋╋╋╋╋╋@ ╋╋╋ @ ╋╋╋ @@ 0x2578 ╸ BOX DRAWINGS HEAVY LEFT @ ╸╸╸ @ ╸╸╸ @ ╸╸╸ @ @ @@ 0x2579 ╹ BOX DRAWINGS HEAVY UP ╹╹╹ @ ╹╹╹ @ ╹╹╹ @ @ @ @@ 0x257A ╺ BOX DRAWINGS HEAVY RIGHT @ ╺╺╺╺@ ╺╺╺╺@ ╺╺╺╺@ @ @@ 0x257B ╻ BOX DRAWINGS HEAVY DOWN @ @ ╻╻╻ @ ╻╻╻ @ ╻╻╻ @ ╻╻╻ @@ 0x2580 ▀ UPPER HALF BLOCK ▀▀▀▀▀▀@ ▀▀▀▀▀▀@ ▀▀▀▀▀▀@ @ @ @@ 0x2584 ▄ LOWER HALF BLOCK @ @ ▄▄▄▄▄▄@ ▄▄▄▄▄▄@ ▄▄▄▄▄▄@ ▄▄▄▄▄▄@@ 0x2588 █ FULL BLOCK ██████@ ██████@ ██████@ ██████@ ██████@ ██████@@ 0x25A0 ■ BLACK SQUARE @ ■■■ @ ■■■ @ ■■■ @ @ @@ toilet-0.3/fonts/Makefile.in0000644000175000017500000002707711737655633013030 00000000000000# Makefile.in generated by automake 1.11.3 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software # Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ target_triplet = @target@ subdir = fonts DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = SOURCES = DIST_SOURCES = am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; am__install_max = 40 am__nobase_strip_setup = \ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` am__nobase_strip = \ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" am__nobase_list = $(am__nobase_strip_setup); \ for p in $$list; do echo "$$p $$p"; done | \ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ if (++n[$$2] == $(am__install_max)) \ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ END { for (dir in files) print dir, files[dir] }' am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__uninstall_files_from_dir = { \ test -z "$$files" \ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ $(am__cd) "$$dir" && rm -f $$files; }; \ } am__installdirs = "$(DESTDIR)$(fontdir)" DATA = $(font_DATA) DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CACA_CFLAGS = @CACA_CFLAGS@ CACA_LIBS = @CACA_LIBS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ GREP = @GREP@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LDFLAGS = @LDFLAGS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ allfonts = wideterm.tlf circle.tlf emboss.tlf emboss2.tlf future.tlf \ ascii9.tlf smascii9.tlf bigascii9.tlf \ ascii12.tlf smascii12.tlf bigascii12.tlf \ mono9.tlf smmono9.tlf bigmono9.tlf \ mono12.tlf smmono12.tlf bigmono12.tlf \ pagga.tlf letter.tlf smblock.tlf smbraille.tlf EXTRA_DIST = $(allfonts) font_DATA = $(allfonts) fontdir = $(datadir)/figlet all: all-am .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign fonts/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign fonts/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): install-fontDATA: $(font_DATA) @$(NORMAL_INSTALL) test -z "$(fontdir)" || $(MKDIR_P) "$(DESTDIR)$(fontdir)" @list='$(font_DATA)'; test -n "$(fontdir)" || list=; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(fontdir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(fontdir)" || exit $$?; \ done uninstall-fontDATA: @$(NORMAL_UNINSTALL) @list='$(font_DATA)'; test -n "$(fontdir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(fontdir)'; $(am__uninstall_files_from_dir) tags: TAGS TAGS: ctags: CTAGS CTAGS: distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(DATA) installdirs: for dir in "$(DESTDIR)$(fontdir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-fontDATA install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-fontDATA .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic distclean \ distclean-generic distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-fontDATA \ install-html install-html-am install-info install-info-am \ install-man install-pdf install-pdf-am install-ps \ install-ps-am install-strip installcheck installcheck-am \ installdirs maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-generic pdf pdf-am ps ps-am uninstall \ uninstall-am uninstall-fontDATA echo-fonts: ; echo $(allfonts) # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: toilet-0.3/fonts/mono12.tlf0000644000175000017500000017637411327706453012602 00000000000000PK- ;V,-F 8W-ɕ&W=\q`m@FWf͂Azh:(.e235 Pnf|>wS<縙׷?+v]}q_t?/_????__toxOϿ_??_k1 Y|p[(tRCP%|R^:|:kV*Ww(|[˿t֠䁚$6"$t1 .6K277!T#u<ՙf D!xlnFM'MD\ZV`Hpt6+g3W}tv@.Jt7tCF(ؚ9If qK!ýsNZ ,"TB#U<;;7BW9 Wd, /3h.Nl f 6~&S:V*'Qrt鮇r@#UxT  ndt>`7e8: jz*4>{RI/xJ 9U:H_RV$mZT}l+K:E֓mQ-i'SQJ"I+0 za0h@bA WaW`0b.b!E,bT$uض\$M; L4RR >*魜v|.頜eW%XH}geW>7mdI!0)k VPbkKf yCT%IUmHN/֐b9AIlW*#W2C+-_)`6룰,C!LEg |66gR1j `92 Okld))U+$e f=},a<"-}&~WXSǘm~.NChNH^Vg|k3!-w-ahN?G?[ d1!?#]ê H1C5ƸU󱃧oa)j5jnט8H&ě]k4iHe C1K:[l#Ӊ0:|7s[!#6V:ށ`D,s5Tw. 7QHEWJ6*8Nq{CӸp`Z&]CjAȐrsM@!~3Ѧ`e_k4rPrk}up[d?/ 906\:>)Z>^Pc\$0RZ .ӡT.F do_)|A8Ƽjg-EiM-iKP8QmLoDemڎ,/qKE*o>DyoBڴZZ7MG\U)qE0TcfQ|hyҖcI頕O!1'3Bs9!ԫ(AJ ]^.g 7pBEȶJp #c4wnuJ2>N/ Wߙt:/%fE}7| z/yCFr.=Ζ"x&ex h:r0ۇW`F&dS R>B W ILå';qjtK"Xb)#J@!%ȍ9e +7 1J7${(}R B[o!JGV D 54 kr]x3"Ɏ׉UݜlbxGù[P 4Fk,f0+9M6X..-Pj2y~eG/ />vYx9s?]^n<Yx~-O\^nL;/\^xYx~e˗\^zYxy~%N_>yYx ˧. /~e%/uYx 뗅PqYx ˛PuYx ۗPsYx ˻PwYx g. /~e%/,󗄗{~yo~_xJK?5/@),_lN=at~| 7ވҿx3—Uŗ “ŰWl6.\jvмj>hSB"Yr3W}*~ ?)D@WX]jyDG;K;ɩ3l„I8_:CP9|m<8Xh .\#1*ĎS˾6)+^<ݳȴoBg@yŒU eS8²6*o\=-/$J (Lggqy9-yP_T76;I4yߦ>w:~@-G T x,۶@uˏ,m$w5ㅉ"ƄFA߯tLJnq<+)طVT`b7ac@JVuXejJ+Zx?ȸcЦ) TXz\\LZH6_At$/Wg*E+AzW~Vz!HM\3.4IXfVS@bڱ~RfYJȨhSZ!v#Q,ddp1Vi֒Wb~|``FK=+qq{Z<>p?|ZƳbGҾ lCnbc#WkX"g]D~Z`HoPa!w|pOQ1rgĿ&ῐ\z~Óae>]3 U@P\x0T2U5/(GgW WިԜPüU0$Lb.~%Cza[M,|ˬ8Q'jHݲ1R,`\=xP]3y.5揯k?'[Y" r𯚭þOj~{eYceE,/;%.xy~X-9'P?m8;A0h~L#W&Q3:JhUUW܄*Dϖ6z(O3Ps˙1?+&vy U^ mS&C英tZǛ$,4Ja`Y#y `QW:0h$(|HZlTq,6;AN{Q Wi&F$Ȉ'D}ĬYyY}<wc+W܏|9 |?ZE:\H VɫW=WDsy5z5Ƌ}/}̣{L[gGt41>677܏? ~Feln}Z1l0#=s>r?2V oY.cl܉ф.j ttE2D.nT;p~Wt+1x:z~GLr.dSYeF1w==v?z/2G,K9CP/}GSΜ668U}J z[sY<<A~|`7M*ޓ{}j^/LzcZj7y 5j/cI~J.&tiPs(9jnbkwiC%I /?3(͈Hs9F_>k{;P K)yy0x\-_l-*#ߵP>1pEܵP[3\%h,zՆKP~N2rmMn/j꿯|D$WD^;%p8?擫wuTr\TT7(a<Ċe~BVd9ntpgx[~FnBuY\d݄&0)i%T^,؋Pk58NX/RkpNFCL_ Zc#hdRiqr=TH߭SM f}'C#`E=~c[ 6Ev`4ЙF @..ʔ1o-+Ӝp;'֌;]ӛLoj&'bbn(RjK =AEsɎ7C{Y!},|F-JIbd(I6=g 3 h 4]|֭#;B5.|P".Ƈ dȪM^B&LE828\' Dv*{e$Z3PuP#>ad]m+~`kDWk\ԫ xKܴqk ހ;wk0SrKaŝZI܏MNHa6,.rV- n>nUMG?\yvXt,g܏?+ \_4U,G2lO߯uN, _bed]W#g=ʓ8HB }^ԘY|w?V;g_\y*g&F7q64x 7BŤ1߈- VgikTVZ^ׁҷe]6֬~׃nJ[ |niOD-7D{*7+ @#ͺFr@꠷{j I42>E 5+Țu$uk {BPCOl`1SQ]y߸wP-}#=%|*.CE%sz2*q*Zx̴5)m59*'v𻛡R^y3T_rŐ"s.iYI7 >7-1X HРԹm4IH7ԗ3})TM_1ILqɀG ^߳x\JMH :T#TN<)8ȍL@v"$v&̉afǍKJy.~B(`u* PYs UϷ.vB=yJ|j*B&2x:*g%2fu*$.r{;yjdbɌ\{w#,|yf|$R(փDs# UU?L Bc)AL}V:ud V2$Kx c (jLg:KjwT˽QPuN8JZ="SJ1_ _*I*4:a0`\*݅JC*2~t+&98SP n!JM+'D ޵Grv2+~M&޴hEwDT*:S}L$00_KOj iO.8qK:LΝfd-Z2α](Z &)"-usNt?Q+e{=Ko@;P~Ü['8(f|SyݖVnULYB͌0agmqD~I4;^#: r)_$gVf w?Q+VJ0i|]Xn r"[vg\^U<]aPK |:I}爫bbF찴3yBXTT"dsD.8;vQhS PG}lxH tHvH-ŋB=Y(3[piWHzc__=Ҍȁ$J/I*P@P=bPgRN3;ih/ eCW[&CEKme.vr1+1B-%I pAiP:ت*Afu 5j*,LQC#ud3iiB7C c*bo59 u?P .EeD`IG0,PXB eYՐ%*#- ",cjbSt5mgB#T5B1?1f}EP먵Ix ¦PD&BcE9X?DR:YSpowh6^$Q}7=4mwkrmP[֦DEHZuSg3kT7眧^|[e pnT!Т^SIZ紒=Q+9ѻi+C{L PK ϸx[Ɗnk_8}O54GYܱw;ru8(Av5Ts?+[A,hNSD1g]l5q>p?kN*V} q!gT>t?}_oF Q7V?=y1K1+<=r?F ( v ijs]:՘*enfs1 BP:Å4Wc)ICfgh~BBVFCWcVQ>vR8>ɩG?|3#[:.:[u|'Jj;☶(]OBQP֛b|ƅW(]5:;2:>npP]W#EȌ62S+U瀠YiS"o\Lؽ{Uczq0 ;$ (;n$ Xegx3<@\4;n2i\8 W9qd=]` Xr!Fx뷸P5)]hD%=JDFF21곯디09Î7OV33.#c7Il`è"2wp3jE:m9,QD98 Yc (qqNBc P_i⌓W˾݌(͂mo<0Aw5{Qھud 㙜1cRs(d8Pu2#['l8ԇBf-?%#|^#k(~3JR$$zj}"zfzO|3j{&mU?Nͦ Hnb(ELDfͅzHtw:'٭3(jdu2-Ե:Pը*zV`LxOOc|V7d=%#KA:hmL>hi:QkU2NMIӹašӏ/*͡Prlż@>O8n@|*kJvT9vj͛.r>SdP>Ф=j"etYU[ވ_4%ZAl`[,&g Wpv3)`P]vBci1sI`vN&x,PL}ۣkW}DuLQ]8}*s`'J U8cH< 3gʔ0j ț3XM}i^3+OPϦZ3Ƀ@"oTMgcNZ{,tүFwr~W>u)iURB20( `C3m 6ڕGgV0c3M23P{}r:A5Fp"s xܶ %^)Ets{"= ֧NWy[A;턺$V.|kWCjF}x`B*Siڎe0?$Z+QrC%3]d2a[ڑJx>{RQ[z;z\uP'w<ԫ*- N#*s)-FXPdZ%\$a2# v|%̮#V GF OmP4JPQ+MpZ<4 :NEz :|+=_O9[d9pY#F! \P}C~j,–&Y~yZ9F P_}5Y5q Uٷlf*Tcjeъv (*RNW/n)2oqeuxb5 ;X&VjRQa0̠&~,3 \J|GqsLwL5*&ky9e/t0!̅by#C܄!aŒ6}qTebX*ݑrjr_qfln]cO:XJۊBx4싺|jfNԙ/`,3b~Pƈ^PD*˥\B-|"<جzl3!Y`DžPƠx 5Zܠ#uH,]Diuqx+JXiY3K^3aqopHاRG(ʃ$[]-qs?wvB9F q qqa3$h ѪԍM4,Ph%慣kw{$5]\AEzwzJx(3-4Hv5̠VU+%8' `҅|]h~#})dun5sm@˅ @xg7ϛqFLv dӷ?,y@ 7,yܕE' G$%nW$n8z/ 2 -q?o|5=v⬂'S>!h~^FtIgU.(7C$ɬpsځĂ=gyBSz* 왣9wܕ=bPw |}Bɪђ9 U\R< OS*2 ɠ-6R(u"n&T%. Ņ޲ IӾrLH0*3LGFcXVN:x pJ* C**;$SrUFW},7Bne \ݤ2MP0K&&TмC3Y#b-+WhK3B 3:G^+qE ՝F30W]Fp;hؠ޴3@9 :!]UН 3/mNBbi MRN*p^B%ҿ^* y\{yT*!wmB2NdEZcӽPL}U-_5Cqsj+$‚I ugWu*uZ{opzygl8a\r7ݯ~H[:!xC#?ِͳ`g?y sYh~%+ QО Z ¹ǎ̅;W/Ho FmՋƼ!7]T[?8 LV /ݯF!FD>)b7ˮܯ^ieĮ>'2"8篃W+0lД z_j|_~k;&Uc5{E;P|!z4h7|ʘN +Q3,،i"g;BMrlȁP!߉57-kc1B73u2B!o;B+{xDQe)^+.*jr'!qBL*M"ipv'6j FHrT™7i;P+3GjU4#8rX'In?[+q&W(:rEF3+yLOj+Xx^W;) '^  I50,jĎvd4bt90b ѓCqѪyz/TKrh1 R9l.\qy$Z,%TdZCYX8 Ց\eoBE^2Ń1P;ɵA6s/TI_Lǯ:H(3-Ԗ޺ݑ:?r}ATU`%M)qxF$?rB=Շ쎒:<3j*P}=k^Å:6?/΅ZZij,3-ҙC`uy.TB֪aD /o<=fwqg~р EVFӄsnDCݏ*1ȸd̀)Fo3F0(Zũ{PUyl] +]!Eh]g+̶[2@ݫ%RpW!aF~<4Lo8Q&*X 1h^ctKJ5m H * 5Rl㽅tɅũf+9ؖ^m"Vq{7%|wB3փPc@O^$ޒቤA.*Fai$U !cP#T0#_D[rh󅍾*X0$,G$8^nP'l$%R}6!!g>XHtUfkߏ&WoaUZzl=Dp\uԄ~.T1-}u끕+6^0"g*bwmpxpZ~עgxpEzz Z/e*SJI[׃ߵ8 2NH͍(g>Q+4 9~…;T8P/wܯGtڞ [>CNO~q102{GK~ֿtS~r1 媙SFݯ0-nNN+ܯ_hd|*h?7a!{0֦O33eY_X7B%KMʭ6kh \3 I^ׁY ~o.j`4hfqT! *6+It9|[]8=*E%eg2WLGX> ]> UvFW[I0v@yj%e1fn\gsΖ/$svV܄:+bMmGm.T4_pM?0q%T64TQL`im?sQPzOQ**KZJ6sYOa1AO"@*uʩbgޗՌEdOd ,c^m]ZٜHP?U}'0ONثM'ŽFOfn][42X$pf (0||QRJ_Ԑ[TS`Rn+.m*E$+TYᛄy "Jod܄:FK#hNٱ k2ݘɷtC&d#[G({Mա.WgJL?-҅ђ'dGZ(jWl/i4e8H5{ X81~:Utkh)V"d,fǛͬu^4r1T=50m *COS8U2# VJ2⢳bWq벆ZeRMŞkѭ9F]C*TLŵ2Gz0DdURLUF0*v-s3V֠{JsK1PȐz1AMP+lr!5r'We![yy@TX,xT1RgiCֿFGceckU rxN*u ٶu*m9{O]7 3V(̀IM.qC@0ddK:kNS*qPq |DۓU.,^D>x8lQ}XiL#uyMB%`qȃLZ˝+*4rm.I)pbVގeJI(jOB2kjBۖ1F$Fr5M O:\fT ԩhmݹ>TAZx5?R$T>_e9WԢc}P57"DZx !`EiQ P{*$4E9\+GXV?vή\qQ,@S6 ։XxwvsQb^s+xlTSL`737g+f8M|,=!,X r,.o5>DƊ  +]~V39?uMZd ظ#dwDW@t=\*DS$ 3afB ѿ3ށ1~: \t|neRkh BioT&.vqP'UOiFƈ"z}0n Ւ\Jd#/YBm5IKf6 Y™VG3`qo[hH.veV:dvd ^Yd"3,d^rzW490ܼ(6V2F#s*(Iѭs!Ǭ^ƙECEտɴUBǍ2(X_@k롆ҫ$+Qnp' Gf$k zY$`& >ְ’B4 n Y~y &hJK&C)q5$m.teof fkzNZħ,:sHԚ'!8QnBstv=T5,2A}Wh T.#mB%-Pe,ʓPkJPt?~iG%׳|hR"IckC_R&ʴ4Diy?D 8+/h\lo+3<aأy~; oemi.nߎ| igyl *[_{ ~{/l P@+|WH814x'ҙߪxXLG3ovn= ^mP?G;{~k}āN,H,>&bgoa<+S1^^V0ί˸ BL 0y#T? ~L0q_CR\MH<' pB>Ŷlɦ䀙0T0rU^كfxE)k[a-lgHV@.l9hŮͶ P_ʪo[U2laF` g)*#飇K]qC2}ZcVɄ*mNBERGȀ5٨| "$=jc}5 i3P |i4fuk~ /e. ",iN8f2 1LYزP |ч %J1qIH \ cu>QiIΉX5Hc_6S^W@6j#)P4 BO@F]=?.[5-#}>ek;~gT'X^t䅚237֎y: VMj9%@Co7+YywK ,~e1V%,R.`~fc 7Qhrd)Y턀K,pXP }U'>/( QqDZP |;sN t2%J"[ 9](i֥jDYDW.\XGQVt` +8,uTfbLH;fΉZ5H"37iZ8lH>' I5Tƪ9Uq,PGWy$+dG.峒x8BBcHFE!D*;6Umi,B"/aPK}@nAjZ*܄ GP{i'TCk@4,H [B#؜#Tj)&itSBUa꙱dɍpm %"DSd*Jb ^-x+dldDcW"!Z;opϒ3aZUv,`fWZAn0gD5g؝\sXEՔl6eI1RwkJur~gy6p_qdZn82->!E<ծOm;G [:rblEl:=6] YDOi~ZXd \0܍c!V;fxJfϬ2w{5.?U{=DbΠqN88[`R\ٹ &U'-RNigKU}YPFrɝ՚u"6w4db۴|,W7V.^1o0A# 9W8ncld(tK]3*闲43llcz2 þxg OhNFK'B/VO͏#`mk$z i]38%BV=heK (-ٹBҿ6Bz!Iv/ɰr0paEH`"5opݚ=؉b-8jA("2+sPը/4usL7diDt&T68s[M 3.TJFh#Sf}?f_ɗi4%ede|PSG@n r!Tu;1%.~?TߵeXDCnܭZ_pT]NgPCU+LsKZT !;]%MG j+ ́Al?ZjfZ@+ 1;P#t,(2XMMƢ;T oK0Cd(xe5fnh8S7FXPr;WZ&oQw% z X!6'uq.\ڡm[vPyW0 i WQ1N[ U\K0 WE"j_x]91j'aG#RU uDL= %rȁ.9;Kbn&5b'ToLWЍ,+uČ GGі/kK2W=:X!\u.^>bf+zzf)uT:s"wkj:?gݒrBT 0lv 6d'C 7}㋌B*3*zq ^Ip يl A4%=@O+Un߯]a3هHeO$~/oխ3PNм,<ܫ{m/a87eC(T`ggs^"d=\Hh^P̆MLﮋr G5/a%(sc&,7{OW|²ggN |F,?t]őBwhF̊G_'v l9.JoYz=F"m> u'k3OK,7Z1^Sy< Չ{ O;Cl/Bd$\qG\JA(Cid*bziTG僂2B̐q'}z(T#=\cz(j+-GdqȜvZ>U7An\0W# <#ptV/fqW1 Tt?j?"7djwg>"2E~3dm:{$z{nk^(P[/)1odXc V.ZȊ}eAY>SqCu>?5n^;HfmLdt؄/yB{cXZJ#I!G^hЏH00e\]t>pˀ5qY%qC7FOMs./ w<mz?`avd)W#Թ䓘\o&xЏoDFr01 8GQ@!fcɤa*W_ǂ))2 x1t_]sZ܃ ;)8eWGUɓ qd=Ĭ!=NNI>6i8BGY^DŽ -)ؿ6ԫ;{}l)<5&o5/H?ؿ:k=EwVQk - R;']1#5.*|SNǫ"})R 4Ǥ"_=p_ͭIj&)rr}MCǑ536.T>r\,'=~dJ?vNE+%- #~rRBm)΢Ρ8vq8Naaצ.J2U߉Q&wզ} to#J'#m q6ʱze^7\)(‡br~T% z7Z2O4J (9QF@oR5I)alv&8`շ.Ǿ}Yx XWM6kNZsVcU*Oc:*eMLe~)C\ < >QcTB"]@UuDHQ~#H6w3`'$& ';ȩrɢ_e ݏU7fGK.TAFX9Iw0/1Ų AR̽pl` 9 x(Vtʀ`G ,[׵BBkU V\a  /^e~;q̀M*K]g4 lxXـ@G%)!SUt@ƷX{ǸU֥^Vln eZz'+92# @a@C_)ւ`&N"r.~3zBo(( ?]wKc:\QTq¤V1 <**z퟽CStDۦ4`ׁR TH4 U]Gj퟿ⴙ־w֝Hu`KbvGuQjU~ 0൬ȷi ȴ1[U3ATK0сeZ ms4ؚT:03V3 сBj CV@Wuq D߸ĄL2h-)tZ^UApk htݪ.eF "FLxgm\#T+ V[ 8t+6,e(J'q?+,M93q%,1? K4{Zbݟft1]<B}!Vd5{ԜȊC2. j,ߺB}i A(k*`ӽ d5 ̸d^7vxs7|m钼}i`80+mWɶui7A5)e/ /ݟ^,q*BR l!7vO"- ?]$~f <[!)N]-{Mhg%9@f0{2vQjȆbL3G8<)6 5xNeFfŬ.ug:S f ;Ḧ́3b|B;u͟b6oU 5؞k#¡cZǹͯ[( $tMƊmq ;-`lUkPH[@2 n5cgV #6|Ӝ\بD/$NY?$_<1Bх!>I&r#.fKq,DI 5JseTz5z_,SL5!Wh0.Ier!.oyƞVter Q3Tt >@w hj,, bpBbHf!(am颭.HzH:EhjD fW!-7be͂-&ݽ*LpeұɾNXZ/HY$|P^%)䘌3* IL'䉩sR2pՑE(t}ilL*!^@2VD&U-$tWHڪ@5{oI$Ycdu:.0K%g*9m9ٝ3YJ2s(bϋH%b-}+ E><.CU/,Yݬ|{{u:5WFdi2'!Q绮|n-%4ڿBK|1@35J4R4r-) IШZ >? ;8ݸz$]M&mVg}]i^+y`(,s ^a[Sܪ1Y7I -MYEi&'ԧMj3$!KPp4X}sn9Oߘ|P9 +$53 Q4זGg@g%Wҽ4D6#2 >R}>x>i0jq!z:K>3:o.gr$l.y "ol]=VSeHx1][>ބ4•oU9KgVQ)2.R Ikc(* ׇG1vZoj9oju?~C" 1b@珌6#!\hzR x"'0⺙"n+mBLvIq`+_"4j':TwMxV+'#=EZOSVD^잻jfA߬8HXMBO#M ct8T3 EvC]37 "ĮJ[ ф,W~.'YK4⻈$lF~ol!Pڹ0]Ja7,7BMo=>˜=Hwiy+7yB funC lnC ígf&p1fY*%҉!/ ',ꋦ4$ .=}MB_9Ʀ=񉑻 %@95B#&"D6EDFܜ\>V,s+n#s;ӿ푉Ys?n# r?yY< Ĭ۩<ĬqukbYs*?0j٬d`wRUJ l$,Խg @LLHa;,FjEJJㄅhBZ|H>n̆ F˘ ) c@8p,%~ Y1xK!&aG47󆭘[#|f=Fojq{" Y=[{gb) $'9fk5‚ON)utWCy41Nhјx\W\^eGLGлtx3š N$yIxs9<2"z&䦸c!03S(__&.9@ Ә!|xs 1 €5zQܔskgnN ᶭ%:29 jhtO8|Q'^ƻ?X f|3MԜX{9DOs0|;LK>35> "0Gȭ %Lp!lf.TCfaǪYi\+hN-% -!Vǥ /ה2PfBc.K܁,lݮvs=`i cI.5Gnd.IE49vs1ťf}~;F_a9wOQͪj|SAƙU&[ywd:t >`!{f Fý{ ūU !G9s {8q.=R8L ]MBrILQ=i Cʹ'M0J9 &tA~0C¬ߺ,ea0w.3Wiqi?ݠ}qӋx* k⫴/Ѯ:)gploIn,D3f]Bc}~#ٰ6G$ܾQ2K͟뗇}et⡟KdD2~gɰ%,~"ksha$5la,;ߩQ 3_2'bJ^׽Ҽ]*2LPHL 7;S 0pUZAnIqcNc v EФM!xa2jQ(*ТF8ψDFحms^f&0%c6P쌙:QEwDzE$7.sq.%5t>Ty{0̹MmXIQ4-aɃg`DZ$ir̐cr  pVqiޕG/vnd#pp>C#Yd‹]>5tzNPӞZ9F̅`$Õ$,77H$ĩye%\X|HssM 2 3C\~'%r;vJyְx3kCWa$HDŽ=C]NbPc!p(!LxXY-\qmr m934 L6Eǔjf*2̱gɼfPz\d+`1C/8-JJ*I&ɴӁm gxw/s4!ua"IVA h",ɘG]z^rsφ9n' M&xe1f!Hqfn{KI2*yB&)jۜ`xIa dՎί2Lי!Vn)?MgdG4ozE7wL9id"_9tʒdQ9f6.03 ܳD{ힴq?wn;` JZRNf2$:?GyVB ã/N~&,<$(aE.uc.&׌eL2s ܅Y!l߿ B٠Ǟ- DѝvL5P'Ys8䄪 uGe5Ӣ T#wbJ` )ZDl؁z2>XGh/E߂d$Rp 6Y FY@L~L>V1F!HL&/rhN^F) LShrW>ì͚8=C;> ;̔:ّ#^Bױ)Rpdfjf@ +K|)ى+x` \|?6cT$H\_~+-حV:U#ks)^h!| 51h= !Ӓ4y+*~f8Uf>% "{԰| W*'JD/=Hd_Ñ6 ezu:d*dEv>LݻŬXEw Bu9P +D'xzҼB$uLz< ן儀}&`Ws|M21cMF듧S/ٻ ԫ~fzt@xK gL=?⨇x>v DQy zaܸ8bO9`BBK/}$۽7Rn ^@#܉-$4 #NI>8xa*`p-Ă0G9l@g1zk]o0h\IT<7T%O^=5" wڅ:Hu9p}3"laH y-]D輱G\DvV+ ߗ~E ']_KXLJ7` u\ p&U%^etn"ZK;f:q*̛8 Wm 544Ls2 MwUd*S$V ^.X2H հUI*‚ɾ"n3F.z}3`;, sȝ$nv pP'q[GzS_(/zal X(&ȎTGr*L_8HJ\} IPRa N6 6c0 +Q#10Y&Ռr]V+ ɀ_ L9`t*_CB|@/YUU SR_F^u.Qf;wc[ΰJSL^h~+ hd"O4⅑W..ͮbPwКo3| Tr!JF^h|ݐ`U*/oG0D5N;]ΐ5/3EuPu9X|$ryEW(O6 kأ*: AԀ@{ U*uֹ0FU + rΨ2z/|ZbCRDj3L U8{T)5sMsb urr( R#U̬Ta}>#7-64S6ΛTq=遽d(KW|d8*9ߤᙩdse.R-V]Ы.&}[]V/?&Uff_tch~Q6ʂG>?2$2{FnR&V vHXvġq7ldl'2<+6«:$Ǥ`<:cȖYΕ}lRW]cr ]fϋM{֣<} ?Y$k4ЀToaj=6%G]|KF@ rz3aohlO,lPEg|[|0*oD=hJs$RmVfbxPB/#'`ő/)2ag!0/}F`v>@[Of^]56.W -ݡMϩѣwG{ D< mIFKZw*! =W!{2Bf6uuSnH2_Jll5iY P~KㅃTp<I*F`@/熗r>Poĉ 8|oE_ 5nA\/տ\r~e/JmFV~k5V'Ž_j_T`E6z'֙,y; Rs5? *|;_a 'Cv/)/vdB}il4Txɹdc [?]_Mց"Vh$k+PK'67t5n'!!9օ:)ه|FEc PUcPqk 6bBiJ09e{^-x:UǂW9 %C ;Yb҃Q!auk6Ocԏğs6frM<R3$\u(|yͮ)rvّ̓pk6*^v;4w܊5Wy ZgqkɎQD|d)},$Fk a&ȝ8-;C9Z5`cgH-u;N$)e*|lHP;3IԐ06aPxb*L~r~[@oRҚɆ W%]AU,^qP`ne( 90R SXj,*Td[WuYyDU0͆j  :"/]9.tth3IՍ5+1 ]dњDa.t<)ZC{Tߘ1#a~gYiMre| (`Rc`jyJQu.b?x(ުEɨᴒEUE_1h(|,R52]GH39 O*l,h]ى QM?#^8c Rb]1vJkϡ7@#,&mKAo'N o Q&ı DTpe줜$١:4/f ԞI>>:JV8,U_}ɜ@d6c lB-KZآ 4ß`՜!%{3Lѕ .2[Tq} 91K3&c3ӏ%h,(i3JUp)B^fY+nDR5X=⯁+"S%u stZ HXs϶GX_c bѢ_M8U#JL9HapiHY&q|p9?!hÐˌP~&ɖi 3TiL{YAe]Io6]tKJ{'ɦE"TT;0ʬ6R06L5\QfYAߨEQIJCDk3gu񘥪tPbE')O~!KfT!$ f@G1UXjmIj䩦R0yJ^^d>;[̆vPpƐ_ uW ~r8NyS"C=L_ٗf%+ z …)./RsPzuK RͭY}l._꬗Wm%ឺbxDd[jzKgA|^Vbo.+ 5pa,C%^Bnvǚ ަ!9#/50,kWB-^VqTa h6Ijg"_AMp@/E%#.FyؼBV/cHJ~R=FV@/֡*H`FYe% H]Sp- X :"Q 0 ֞CdMHt`})p$eiM{YK2ӁmxԏeI(ud(/ 6#=Qᭊ QWp,xw%' v霫\C!^EVE?l`_<#@_0&^]Y%ڗeeEIƑ%wZr!g}MCJMwBNs5ȹj𛎞\%,ڽ#|84iGvo(+eUckLnxB6UcU顐O/$Mt+B!-v]&Q5w[2fq9h%7]zDJX2Lq I'=qJ5=JV+˟R`tNxc D۽\Ϣs62@|kI(˻̊Bd z (kv_"jcG*oyV}V}RDdn98n[͙He{\Jx}̄8«+x/0c*DKjJ]E1xSfD!-vuo#y'd\'z~1KEݹ<Ě V@œrvC1ڵ' [ڌ od$n3BXr3.M[ ~MVl'n-Df( J@69]qsFdm0 aF^Pg$F 5Ҕu[b 8$M/QUսH%DC'gG!3"ik,$35nĞ*EIRxc O*WOF cr@a #qu~W>j09XEv Tbr'S!ht\ă,^,~HٌG?f<\9%LGfd[P;\Q%df$*x340BJ":L&lsߒe2}(!OL+ rXVWPE]_?:o\g=A5 W<_ye>ݨ 0W07@L%NHCgckY _q)ڇV%9vg{.$*ICL"c@^҄9! P\ɿ6yvIjqF| o=t 5+X9)9 ǝ QmH"9eY {5+|0X^RNM:+S v]DYfq<,}*Ov2[u%8fݠ Smtɲ3,nPi#1(&D !;\6w1E!%'s( 2Ak)# %Uy 2 <獅g+Л;-s 䊈%biD rK;lUxoA,;R<҅2fif`<#=$݂vXUJ;n%ͭnV[8^ "f:Zn' auݤ/ټAEi&UY_0&N%A@> QMŏ85$F/ s <%9a._W, ýB.1725BS,(%VIjDYǞa Iڙ4O`&T͔uzҤ5Z\+V27LZhHB/X*5j:C\c Y;53H"(EVe&:A%e#fJ2vh\:@a$bM`^^(DUA fؙJ} RWvH2M;RY! ,baoY~~gb{bxVy^4$P&TNjW H6D^ rnXE*U|A;e{R3Y|Y%._97T Fq(iL+TU5&R2AGT*i\D5>ĀMwSaA 3qsa+%x6 v3E jņ[އJ- Qm$qN̴sjwlh9&Atp%3 22`aZ*T|]\<%EKXc.-Au1,fN0 5z,Fo ha*?JQ<~={Cm0n &/,lU%`CLl&~!P `%;Y /;,>6ØBc )RW x ^b H)[}s; u2; h付«i݌@hiB0wkxd]t #'4y $˵ c`Ҡ4p  }픯 q-ZR#^`gG]n,?L~@ZW֑/ơ̄ۖ_5Pd!KT0Ey3,ғ0+ "# "P;Crnp : ]р#9 WU!BI )I(fa HUE EI6]-ll i#H9e`)s?DW]O6AB!z0qy鄪K#:as=U e Zlb&0'ac 8UN:9dT TqiGl*ڙ&s5$y+!vؐ|\dZR:@Bo7fdV&rN8WNYUi@rC(0`)=iנm.x4c{t̸0cᙀx>績Og6Q4T|vr'a4bR 1,SUއ'pS{([6Me38T||40Q=jSR5 Q0IsŽzpO hdx){-\3ʳ&ih_}$Ȁcl8JT7Ohk+o'qr؜ց 0AHo\KC{(k oʜ0798Ku`D HeT  Otȉ#\n|aVʼn#w] |qy&ĥ/58 ";^<ۗiv[$F `~Oػ6c_dQ ~&rMG4aI~^dU ^6fɯ, MYEgf,g?B Vs'iiN ?>,#HƇ^~Xr*ϨQ#Vx Y H |= obao^O|(CR"ϜLFlcc-_ӳb\ 矅&gX_xd`Ҿ^|]5wG":׌ǒ6%<~IxKd@dIZuD>Mj,}MΧ: % Yj34LlN|g_3/$`,rItB*!<5?q( ,]n+lywɗc,d܋{!~ODu~ݰxyA0!MILxS}Իp0I'M0o]$ 'M0[9 ~LXG=i ]O`r7&вzsSO`rILXe=i 'M0a9 &<,绞4'M0a9K &<,g͞4,ړ&U{smOW~O>HO7Vt!0S4:b5]KӞݡg˹i Ց{_fW3w9J}ݘ E~H~N}&ˈA1x8$*2?btK$6pR~p$Qs@7)[es?tvt]R7<_0K X64d6[ڲŀG_ok=YPNWg6h^*wDlg]#bb@}pᣫ:MLJHs<ՂUm*YBmhBQ<܋RUžolDHXE,7+O[I[{t "}{ sBC4Y6}@*\%V3wbC%& bG%"0ga_~3M8snjǐ4aϟYK5@5´O'a;\ q%OKV3AHCL-Ab}z ;E5k'dͮACh" ƳL{W蘲1:F8\{,ik {v^`kIo _v0'ZĖi ѮvÉ' .vh:ps_i3A({G]*Z%$9%͈&4IxM4_E4a* &ʵ-?7"܊x ˑdnvOh_ˏr29͉'3OH0q|b ,7;GAGf#7|X=Ȑcw 6g 71]9,ԢMKóPq1Aj7Hvk&T oppfBƋ0"בu*7灟T,`8ۮr> 5fD]ݥCun|yPV.dz}ޠ*`J/4jǟMSYqT|d3!e'['#vAxݏ#!nȶ0u{!G* ˎޖxkwFfdfC +DT#Gu=I6BWPgCo2|0k!p;e!~8{-u-Nd<"pgm uH8!nL%!Lf?w,Qd> cŸg9:vI x)?w~+;9wCϐcX|'}`Q5w%.yU_B6n-F?CTS~iSkpt!30Ymq [1 xFU[]OY$!Dfr"#.;I eiVWsdnf#`߷F} dM"9֯B*y9 ̀tZ *a8ĀkZ2l - ^ssZJP xb}{T$Ua%ZExߪWf'! wp}kNq\q ":"~nI{F-[K~<&f,`^'uKI|[䳿9*Fo"e0[/ k$Ὁi$=$A9 ܧtV6u,iH+ Csz: /opiOR48*Y+zuCAdJFUy +VT2GA;7C_ٌ9^sXW0VCCZC9. W1_i=q Gt !wD&:&CdZdh4a|j6ejT{ H @(Yf{Ts;ԦYiA?mPS_Vydf5rv,ʝz/a"]GR}ȳArGXUTﭸ 锪όp)+ĤO5p3t,؉3TCt/Y_#/"2=*{>*VV2l TY`fȨW0lqx=m-taTueW Yʤ[0FްQ ҽrI! 4LM2U+ P: YL ]i?{AR1D AhMu&_gPɅ9[= Zo~<1U_inܹ9W%8;=ǁ(dKu (` {!zAg)5F6+6xۏH/;H"\xIO1e"{o~WtW{h}Bb6(wI@aR gŤ3{1@KMP@o`bE,9E_7 X-`G`!&߷U$ h1`_Gt ܊>{J@oB͉hh铟'^/}_3 済>7xԃR%+ڷpⲘ||"`T#8p&?`ܷkehE@MyxmY%{i"=F&n$bi߶xD0A;^ \fDOeۭRbu.GM!Xvf- ߷W!tolOUµ oODzxP|"t`> rg:1@,L1|'Lc*!y(PrkJH|XY"^uH(> r@ SYfl伦Pn>f =`5l["hf *rM;C5.e [2r+a3!EDAY^]jfgXȇ`!\pvvbldw~ms퓃jJ7;,bzg8cHq..儳DX·s}cEbh@-xCb->Zhm gw1 hɎ6Bn1z̓1| KXɴto{yܒ`U09&s*xYf=0ܓhJeŤ c~Xc2º%en:CL?wdjϳ#qQQ.@L 4zy8Nߏ|3".$ޥ)u$;fIs0̐\.GN{yl^F6L'cɽK an #T Ϯw6ajy&LPКiPBN. ti (-Dȗ sQ&8%J9]X&0`f* 5 uwtʨŮmuB@ULd i%[T^KRvMNm=~fUFCIL&! s5'-a47x1c,/DRPC o%3ey-7~a@QpOY#<9`lJ$]3NRPӚWʹl&FK4c ]G{RKq/3+kƵK)#Zg24"u6xQ, w3rCij%!Nuq yaf$g.l^qiƙ`o8h&7wÃΣW9; z*oSd)`z?)ܝ~gd/ѴS j;Cv0;ފXyL-A0o!/{Fc?'إc5o'Cv/ek-Ӛ딬ฐ=9v3:A6C }}7䘼ƙ 2@ @P;1 HCV@#eiZ`B82\HX=ܓRR\A9 1';Z B:E0yRKJ5AkI7?9,7OLYs"1!eۉZ"0Мm:T}#q <N7ɄQ֍WkqU} ~*?x}l ,1WC,aG @xhq)c]&ۿv+)j Z`vBt¶۪$܌aPlDO-NLY`i]'nk>G̼؁ڕ:h¾C+R ʺgMOs-\Ȃ&v, o 1>1ss:C|04V yDs ½ݻv8B}s5J͗kv*ƙ!4ڍs|I;lݻt7[B{kD\?V೛sVF:ou!0pkksWcCgP5 t[P1Nܸz>Vd, T%tۘqm" 3QGЮ@/ 8 Fud40B#!-y'Sgyu8_AK _g9WwHE5"0/ۻIEW8TBuCq0>c ]L4a C]gzENSz@c:PBs"5U K4L3QrCM0e߲* aɘgNvHKԾ[AP(ń)WC:>&99FCtݻ5T?D3;sb3ʪ>@! 5WaےٿG#c_$(?N3`%K;3gi7Ē2d^I (l͈Cn!`#O)!Ŋ$\S$p|a<\pDk/g{v]%ԛggGM2r3Ҥ8$u9E[txPґNI뵆hWuS&!'k318aC\vht vAGe:=µ9c5Ktv]< sa;V )"%!)2%lJ!m :|=f^(˸tSeH(d4G rN(V1 DpfLMAI: ϲf7O5E4@Sp,;7B l3B5l6i|Yڼ:ujD,%#0v}gUi ˙'M0a9 &<,go4&𰜩}O`rvILxX|H3H3~r&<,z4&}O`rILxX|=4~'M0a9+ &<,B4\&|sO`r&ILxX΀>eO`rILxXl>i 'M0a9 &<,-4,&𰜕|U4&q|O`rvILx"#~Lx"#~Lx#~߽闠yaj`-4͒ xx_G7} L]d<\ضzOޙ\iK}mۙbHpE" ]9>K|Fp>6Xtw|Ҕ;.txi,)=d,on=_ *ULD.`yv,yN02un}B% ΅:fd:ս+2.[A,Xu? Hq#FCiT5/¸13ô$ؚBG9J N 0"]*|iDeo ׈䴋i¸bDž){)0z.YHr+` ~K i쮥 ^HBZxR<<6RJ<yy᜗Yܮ÷Z%A_taL0+xY(QKroWuԾu<ym P]ɬU$jAae9SAI3숡lVuT @ź ȧ(.$/F]fEYStFc-UpV͟.0E yQ=灏f` 1иKpP+CJG*M1̛(fxAu T):sƐ#u^%ZGB"_PU)^r*ঀFu0OFw`U@kk") ;C9DvO$k̜3-|%8[9!@kE#*_"gGO>E 4j'ùݾs|Y rP7޾F#/et pJtA^ E:@%"QW__[auL[`4Xh&~HзM`ѣo1QN0}d:>iG}:$ߔ1,3ߞ ymYUHu ;xT~1.;z-ҽ}lh}uI`j*_D%ǥ-;yZn= d%̴"޳QOE$ҷ(k2ۤ}OOXMg=|E 4uT(aU3QRTQjo6F 1-VK㏌".4W*ⅹN>G$ݔىqJlbj=NkjBAp9>@4n +)臲K}VwpЈ?5o%|U!$,犰bY>~W{X &m@^0i_ȷyr&cCN&_4N2tr_Hbu8&A#uUl5,'DgL:̃JQQTw屛1lQ&Ss15Ϸ`ʡҕbRo؜8zIW1@&UzYf3{8 ⅌yAW""'a@ YNiUR)&ynUEpQ!AU Rfl31`$YJ]@@ɕEMղssSP4i%(6]JxRe!gU#z1فɺi1rV>+9I"_Yj.h)}Ǽ|qxN&Vds6*k+y)hL!}-㊿1Ρi"ct\E4FUAP]̓ H0^p+`Z .7c@ɝ WS"ѩwj;b،%7j zK4j K,rIk!Mm+|8*^({OC2u͈-M\p4BUD)"v&X͸Uz*kʤ.*$و Q2K(4Oj2%dDc}|ᅎZ=LM5_ڸ r4Bo6q`ȅ&LWNKqa:2S&1qӎg6u#d}kq¥v|s!%0dfnhs,QјKN),,tFh坯, ҙyTt4nt)PG>?fUQWVȂQ~V6k..P,,\ ЈXewD@xBw_!cw5[Ye)߄I¤+ )E!PO;i_q[֌=&GDґDؒU]4VU+qo6Sg)\0k.fC2b6w8ѓ~ݾG=HH]; gJ)2 /Vs.7!٬9ŭ [ƔB189B991“%@aqp1R'։Z_}dw]%KS׃ OWFjȂ\^+AXkw*)DѶ{f# B1ṛP##|*1?ѬOg!^ >I߇Y# X̭i1A!(]?f jʛ7ƶ_BvEMi0) hpޕQiAߓdVEU,^oM6VƮ.6yc / Xa,Ɇ&%<ѬWFJD:o.'T~G;Mj Lo1%0z/0znjZOp> 4n%pX|vSuKq%{hY^BӈO},YV| F٭txV9w:1x1|e߇HHAaR] o6/ϯ,du#0:/Ҝxm~7Ǻ 9#uܣ'k\ŗ~ =of%`u.RvxE,,"/j]qf*n) ;h^DD#%"Uz!ȧ;:YA"=G.*[C%'  EޏgTacEC㝉W}f")- xjnˌFB֬J3R hX+)a9RRa[6/B>PfspҴ:jGyl_hԊf+ jM6(FeCdANߩ )Z܎MbF-4/b>OA+cHGݥz{$Np6yȽG'Q-,T&S|~am8KI捵X]HeZ1fzLS*uaMc'0-s[?[%|_hlHg3hk;׃*uxxwh| )%EaK–SLUT]V ƀvS 3 61^.|_ۖhLH$l "*tqE#Cr,̩PG Wf gO6ch^D#FrwBedXQSP*2)/h< SRivIES&o!Ht*>R"uA?(As]gҶ 1NJ .q!}͂qBMPM5/B1'Gq"VK"i3BҐF LBNnK:F""s= iJqH.h䩲B R$Ģ#9~)jM!ӂ@ .hkR'R$5( kz-Jmh $*2f 3}P"dGCPhgm`7ZhRuע79Qv{)f%lrQy d vQ «R*TG+OlcrUWiGGf*%K&6,w'boz}cHh}MurEx:OƁzv͖Q2On9bqC ow\D#DBW)11T5nj2s{<Ѣ'zM;;Dc;0Xdw(vX""9ySPbQfmfBU~%hhܨQT[[zUN.r5vϕQv#͚na^:3+s1-D9Eցm Uw'jE  촡$0`F7.Zg=4Vvעf[}!3J,edWqB˃ɀZ G4BE=eKr(]16""jb2;Űl{UwxM-QmxݡNGGT~VQRfjdp:qѨpdb0bCܠk;RĕHh4Q)f3%٩`@ARȐ41l To:ThOTԆkBB,ؙȶ:;&qrWr4ɪ"hDGHsS9#[{ 52Uk ۏ2/{SUR Fw%rBY* #0&1w"7(r8?n; #fmjvY/+vܺx\CDF8E E%qXbo Y).d7[d'3U >%^ycsjOp_Ý ms0_sY+ȡezgv14ȱiw^]ҊŜx[?XX.TֵRk`C]5/"yDRgY$3G0cہ͋1csp ծ5K(OUc">1;V*)| yH ʳ&phDsMSjˎTWa͋hdG3lDT$]zUiH.$}SQѕ2̓37GUw*q)Sc*1p+q敪g0A鯝JKB""aM\Cxm?dcěaO4" ӌr)%a>>ބW]> ~g4/yraŰYz|F&2_*L4x͋Ph,GdAFskҳ=%h|m` #XFZ),F7kovͺ8Lk/RVyi 7uHVyVT04&-~.7/њn3v9PjWa6I;7 vY?RAͽ][k4ۈT&%8Fv`XKˉu/;7Ai0R| iL9LFzC6T]j{L|` $g UvIŃ>ƈ e/2y=Uw1 %|10ڙKpLW3c1/CƉEcF]j 6VUr,0á̈́+DO}nN+v3ϳmYru|e`Ž4b+nB-ucٛD.&NSې+5tES&uQш.u8 %H.RrƟ*P #uQD¡1n8}NT;OdB6sjK2W F;@Rܕѩ2rx2 "12S['6aE$̪o[Nxivj: ׉Ɨ*t J^V]gif,dcBͦG^^,ӐJ]X4/:1l]I-"QwR 9ԕ4v1:9S2E& xSf[3۪]S$4A)ţ^E<?}#ngnS;rv_;؄hyaj`S@9F=S&'{v-SR00tjؕ8p,N4׃h>v41gr$& ]5^ qIyy71N87p;7ۊ%"qfuDS'V^_N:R$mP`j;6s!ڠ"ܗ&% eT .6D6W/!w~hDBFPJ:`w]3ʭNURMQJmfsO"UUFR>o|Ɣ/DWˎn(˓Xhwaor\vE("M,HėFpPi$|lujEW><zjQ#|ОJMpl[D#mZU9`EBrulP6&(i{,.R7~09vJZ8$j+Spj5Ե#Mn£E(D ySw5 oj k͒%JdVlҶdhRU 2ل/]J|FxVf`FCd"|2{DmkVoەZ@4S͏rO+r m]A&7Vu}̱ IX5 j#LSo&K\y~9( BL KCH4"Jg̈i`2фa[ӖMMHktcx*h09-]wmp?C/SPfY'6oFlo-6tX-dҙN_%u b3U@ NR ~0X$G#DI&A8>iݼȏd m-d!i РZyYq;|;j͘5 00jaS>z;`>2Ue쐓-kE FPn܀?e;`6.Jd@<_)H-*yBD k`C RwȀq?DJ˙ ݅E$B/JM$6r?~%RN`̅ JI)EZ^LxԂ$&R&{uR k5F3G"C F]g䲾8<@k;|? }m|Ev\+bN=&a>,-pkCd0 kaƌɚ;kF= p,2#Em3 /-$eE&?%88©_ĩ)Rg e[B ~F͍%t]. OkDf 1nO(!ҿ"~2c|xR%4Nb$rUN4nC*oXro g gؕZ ~D$?2EU0=H]d5K]1t%R1Kw=uU3bh!-e">a %#٠NٰߔlB[ e4­o_@D X<8N"jf󎂵R5֡ɱ a^$4 !G@;=Oጜ,ot^` Ϲإ3MF͋yCO%Y3/| x$ul(u#ʅ?rrQ&F;$͋ RYIB̗Os`ꢯ/]kc.d2RC2&KCEz Q\GtAngw QXIx?9e5g@>I0RU4# vQw 1T1u` aT']986] th螃-$EчDNŃpL4S(. It was created on August 2nd, 2007. This font is free software. It comes without any warranty, to the extent permitted by applicable law. You can redistribute it and/or modify it under the terms of the Do What The Fuck You Want To Public License, Version 2, as published by Sam Hocevar. See http://sam.zoy.org/wtfpl/COPYING for more details. Missing: Ä Ö Ü ä ö ü ß This font is part of TOIlet’s official distribution. More information on the TOIlet website at http://caca.zoy.org/wiki/toilet =============================================================================== @ !! "" ## $$ %% && '' (( )) ** ++ ,, -- .. // 00 11 22 33 44 55 66 77 88 99 :: ;; << == >> ?? @@ AA BB CC DD EE FF GG HH II JJ KK LL MM NN OO PP QQ RR SS TT UU VV WW XX YY ZZ [[ \\ ]] ^^ __ `` aa bb cc dd ee ff gg hh ii jj kk ll mm nn oo pp qq rr ss tt uu vv ww xx yy zz {{ || }} ~~ Ä@ Ö@ Ü@ ä@ ö@ ü@ ß@ 0x00a2 ¢ CENT SIGN ¢@ 0x00a3 £ POUND SIGN £@ 0x00ac ¬ NOT SIGN ¬@ 0x00af ¯ MACRON  ̄@ 0x00a6 ¦ BROKEN BAR ¦@ 0x00a5 ¥ YEN SIGN ¥@ 0x20a9 ₩ WON SIGN ₩@ toilet-0.3/fonts/circle.tlf0000644000175000017500000000474211324661024012704 00000000000000tlf2a 1 1 3 -1 15 0 0 0 =============================================================================== This is circle.tlf, or “Circle”, by Sam Hocevar . It was created on October 1st, 2006. This font is free software. It comes without any warranty, to the extent permitted by applicable law. You can redistribute it and/or modify it under the terms of the Do What The Fuck You Want To Public License, Version 2, as published by Sam Hocevar. See http://sam.zoy.org/wtfpl/COPYING for more details. Missing: ! " # $ % & ' ( ) , : ; < > ? @ [ \ ] ^ _ ` { | } ~ Ä Ö Ü ä ö ü ß This font is part of TOIlet’s official distribution. More information on the TOIlet website at http://caca.zoy.org/wiki/toilet =============================================================================== @ !@ "@ #@ $@ %@ &@ '@ (@ )@ ⊛* ⊕+ ,@ ⊖- ⊙. ⊘/ ⓪0 ①1 ②2 ③3 ④4 ⑤5 ⑥6 ⑦7 ⑧8 ⑨9 :@ ;@ <@ ⊜= >@ ?@ @# ⒶA ⒷB ⒸC ⒹD ⒺE ⒻF ⒼG ⒽH ⒾI ⒿJ ⓀK ⓁL ⓂM ⓃN ⓄO ⓅP ⓆQ ⓇR ⓈS ⓉT ⓊU ⓋV ⓌW ⓍX ⓎY ⓏZ [@ \@ ]@ ^@ _@ `@ ⓐa ⓑb ⓒc ⓓd ⓔe ⓕf ⓖg ⓗh ⓘi ⓙj ⓚk ⓛl ⓜm ⓝn ⓞo ⓟp ⓠq ⓡr ⓢs ⓣt ⓤu ⓥv ⓦw ⓧx ⓨy ⓩz {@ |@ }@ ~@ Ä@ Ö@ Ü@ ä@ ö@ ü@ ß@ 0x3131 ㄱ HANGUL LETTER KIYEOK ㉠@ 0x3134 ㄴ HANGUL LETTER NIEUN ㉡@ 0x3137 ㄷ HANGUL LETTER TIKEUT ㉢@ 0x3139 ㄹ HANGUL LETTER RIEUL ㉣@ 0x3141 ㅁ HANGUL LETTER MIEUM ㉤@ 0x3142 ㅂ HANGUL LETTER PIEUP ㉥@ 0x3145 ㅅ HANGUL LETTER SIOS ㉦@ 0x3147 ㅇ HANGUL LETTER IEUNG ㉧@ 0x3148 ㅈ HANGUL LETTER CIEUC ㉨@ 0x314A ㅊ HANGUL LETTER CHIEUCH ㉩@ 0x314B ㅋ HANGUL LETTER KHIEUKH ㉪@ 0x314C ㅌ HANGUL LETTER THIEUTH ㉫@ 0x314D ㅍ HANGUL LETTER PHIEUPH ㉬@ 0x314E ㅎ HANGUL LETTER HIEUH ㉭@ 0xAC00 가 HANGUL SYLLABLE GA ㉮@ 0xB098 나 HANGUL SYLLABLE NA ㉯@ 0xB2E4 다 HANGUL SYLLABLE DA ㉰@ 0xB77C 라 HANGUL SYLLABLE RA ㉱@ 0xB9C8 마 HANGUL SYLLABLE MA ㉲@ 0xBC14 바 HANGUL SYLLABLE BA ㉳@ 0xC0AC 사 HANGUL SYLLABLE SA ㉴@ 0xC544 아 HANGUL SYLLABLE A ㉵@ 0xC790 자 HANGUL SYLLABLE JA ㉶@ 0xCC28 차 HANGUL SYLLABLE CA ㉷@ 0xCE74 카 HANGUL SYLLABLE KA ㉸@ 0xD0C0 타 HANGUL SYLLABLE TA ㉹@ 0xD30C 파 HANGUL SYLLABLE PA ㉺@ 0xD558 하 HANGUL SYLLABLE HA ㉻@ 0x6B63 正 CJK UNIFIED IDEOGRAPH-6B63 ㊣@ 0x4E0A 上 CJK UNIFIED IDEOGRAPH-4E0A ㊤@ 0x4E2D 中 CJK UNIFIED IDEOGRAPH-4E2D ㊥@ 0x4E0B 下 CJK UNIFIED IDEOGRAPH-4E0B ㊦@ 0x5DE6 左 CJK UNIFIED IDEOGRAPH-5DE6 ㊧@ 0x53F3 右 CJK UNIFIED IDEOGRAPH-53F3 ㊨@ toilet-0.3/fonts/ascii9.tlf0000644000175000017500000012422211327706453012631 00000000000000PK- ;$q-nΧͽْ&xOz.,c1cfd jˬ56Um3sL'E"(J$%jJI3~f`^aR8;~>8>8_wW{jcW NNOkwJӿ_Q;O_/UGx?|?w}_I?GuOT=z [ozRTZJ[)E@2'ڭjĖ6 -k ǽfcxZk<ַL|E[oz>kk& X3x ~}V>k d={O+{Rkznf [{Q?5Sޮx6}2hop| gm τq9hmcY%k. a=6 9 'oiJOV8/ [pAxm0y;/g˻KߡG쫶jcuj+;=#Sϱ|y^_T?͡NŅ\03>GV64Ekg+$#m诱5 1gu*}#-0fU5(3gs>6ry"r#l Ͽq)>Q>M~D\/@]<_j՞Cc[axxfO^21~ZCł1>f},>1;>>b Ĭ5F*TZ1F?a:ZW<3@KEcĞ3>fUYoomڴW-jRkekNQ6TТ}z*j,Ǜ2=n=5v <,CkhċkbQ \p<(oCN3gDό^ɾL+ax={>8H^UzVb?ﭰJ51{5M +={(00ޚ/|g]AlHis5详Q)Ru7!({QcHY:#-%nLU5UA1M<&6 jŞ 'F[%ֵYC7z B=':wAףE oȻKJGW+#*DƄ>iTg|<}zz|ϣ".EP\8MœAR<}2K'ydw;==γ'޹|2+'|FsdϪw z S8#͓A>V:N{' ?do 2A~{2N ??8d' dp2/ 2' A>_[kC~Q&V{%[*myd Ȥ$05Nu?ɐc^ @D]!?TX'cu^\et?cˬ3KҚĿzd矧?23k|UVyG~~YX W@#?BxAO4h2OZL"1#?2 Jsՠϯt^luϯ#_ffVxZ d_vg=A_6~~]fdi&2o\vy6{d d3'"Z+jF dg>22ZZ*6 ?u>breKgY6ǴO4 -u#!8=K9|/=[+G2__uCBVXR{it 2ːu8d緒_N*K*m3ݾ-uLۃ-?V?Y΅CP^Hyh]ț݋XԻO'5kFQ>_r3!w[gQEb<qDݜԻfnvVvջyV*z uC>޽{Ϫw{TkC>T^/}l5n9kA>R,c@>,kCÍimRh7p㌴Lm ,|2_zvkC~0ڐEU\MH )EיьԆE쉺k3胄7 8d`ч o XQkC{ټm \b#c^r#`_)%nᐁr]Ƚ\ 8_)Eq 2K5_ǯ q^2dCAqޞ~Ce[W#`Ty)S/^ 闩^ )U/YM !{gVx׽VuyUd~]ziF+zKFguz#X4U/cp^.C]o q}cUd7~^Xt@cYQ3jpHQ)o:+q ,zX!/!7VEKo \fY.QMl5{]CKJf7NV=l] ޅz/^-F8޻x*9.{O̿nzR؜T;gd؊ͻIcd~ֽ4FUy?޻<頟ޕ7]g{WzZfs7|޻>$Q]{7bE{7ulV'8}޻5!ҟy7ODc~^HƮf9߯K~~oNY~ |7,.9S/1fymsm~~Л{6g G'7p*-@Ի.?ԹC~~T׭f~^M#sl7Lm~3Qgvy&l~)kUdE??[(Vz-lE6?s-wb3NW\ؑ>Qz&sUM_r\ϙb_=wf3syk%dD]`UdT˝_)z#[B&~~Z8AY9e 9r_LT!|˙y[Ͽeol?ZnE%;l~N2Q9e_u~NTbxLYP0r@FՋrRw߭|=id.?/3,}NJ~>Psٰէ&`ϨޥZkl)ޚ:k+>AbzL[G9~?(k27>lֳGms?'߱OώØڿM~~審͊ z]';kcv4AZC~ƜunmF_;B͎''6?O]~~oDKS D;dT(:4V!?l~nϫ b<)Vwu]9eE??smobwl- },0k9?=%6 ~Ynsф*Vvl#?s/udwN IʋT_i7v3Y>ZF./[υ_M &4WW'c3󯓙$l~~mfs?'߱I.j*;?Oc{fC 2s?1ʰC~CoF{\d.~F9䟮fg\u}9RVE_쐁~_k;XKl~~3a ϵU2JJuuTP A?_9 Ər MHW\{#l A>P\FDY!uj͠:T(F Z\J[kOF?}V\]sl CwnyCr/kY3yTFW%>~~{rh^31G-kg \wQ'sØ`;~-3EzC>=RZ3ן- s$˧Ѻ39[? s/An79f~M_xM;2oM q1͍md燙7J8, o{9՟)8Lъ*l #O QKuj!??A=IAg5d+TfY(9+x9w~~\C1dUlʠ2ޠ79#|g곎 U+d\9Ṗ -nV8 9 xhaȱ2O~Ҹx3XŖfm] sL}-.Fs)JтisI/*8&s#?"S3C3B%^4+WZMYfz[W3ϯVuRSؒ ײaLTc],ȑEIߎ!? 5,㡲U; ϕ:ZZZ/7qZf7E|olb/6Yo~~l^te${O0Q,E2OgU:0Au"[hs n8R>=Zy[}i6RV+wԇ4r]a2Q +C+=yO}ls5pCW^\ aZÊA3ëuwfLLAՇc# sCԟ_]H}ksx>F^wUl2ruj瀟yQf9'>?#mjlsϨ?SZl~˟[*2m}6?;9fg?m}6??L{l~~t2~~vs¸._5g09vF7|(5ڕ#eE?~~l>~Qbs2<ͫ-#Tf6ϯq,;}+49iiSA&u <3 YSy]d_g3u ?~j)ώdGMp j>>c3kuoj3s.U9Q`h(uMǢ\[9՟|E ,ϫ菁ZY?>kc&9\w a_Qq]ۙ!BfK^yK뎁xj Pj-'Ǐ*K[G~v3j -;Lp~N.wz פ?+F:~?#?U5̲q \?WƠ17:+ӧGOx|Mj ??oT]Luټ>zdlV]xl?>3=Ԑ<>.GY{gO}ϡo'VO<}>+!Q]-Ϫ͇s[zyFG꣛ ocѭyzF 67a=R yU26?N\|7VS77&~^Nf: ᳚#??N*23ql3k y U2p +2o*fqj *ϒ[UmJIjFC29267󿎮RdSA~#''Lgq=arsdן1S&b <>_W"?l 9wvf"Gl)%} 8KUr\77_J)B)/L;f~bb~|n+~FMOߘ Z:M_}m=~~?y[ϯ'}m~M yPcas 9՟Ta^Rbs 9n/˵7&f7*h*)œV7g@ٶm~n d2C-뱹.rTX%%i跀!*2s~KN^8]7& ddLq i>0jvd:Md7Ux؝ j[<9[KAΟ[ ,?G##H't@>v^FnE_noE SEf{Uѳ.mno=]G;ޅ(M?oo5QoDF3D)ۻoRgWrqtәxOƞ[QqđߤqGw|>P"xlYeg߮J^~iVzP9k)Z(-PM.G5~PsoR O5u'-EgʡU&L?/~~XGNLStQE~~$YzigI(TՃ7w9=A3]}o?woX' vEKx6_TA~~,E#%z_)l ,Hy5]tYПݠlrsE ,1Fz йj]g)tikcT_ʼK>mV9^ ߘ\3sV[HgK ϲ\ Ͽ#[Ɠ%rfW2>[zo3s^@F%f7_kմ]ױ2zڸϿ?T~ߘlJdgArи~d3Ex&:ԙY̼QbK#=gX0T\5%uV 3WEz)> ? 3I'La?+>t2seO ^ =k26FS>A~-ř.xwe;&, Mϙ\]i)z6jiZ)<~{P5p,1)^;~g }MϺϹgZT{#? s5y?s*1lvreYПO͘7\YZz#?K3::lSӟdD0R:m~?\F:,?F BUMmoE di & Ǩ ժ<2sq`$}@~~W5Q ڽ9&# #? c,ZPl;gS9fhz]ޟ+ssTg3ϯ|{ϯ ~V&F& 缐6?&5_U2U袺Ss#eolVH3}]#@PHsnhRM?k4К.GRo݌$mI?}ݾ} ?2y]I?[Am\laFX{Q-K~1V[}| E|>џ Q njYɀ+Q'=D֟U6*0¿cѭsY.l3l>R3jlA:[9m '>ː7է[S!yUmi?[=m3 x LJQab1z~pkO}7y})ןu<@lfJ5?>Z\E.mUh>Tr5jڶϩO2ԧ\^۹c}+;7FJYC[yD|G^_ uj- orG#^B~ӵy #?&Al7-zqVd燢7Vuu]??@ָ{觖Ut g [/O0_E/A~.\luqct~KB~.g֯L&;3Ra? 'M30#~ϼ5sg?/*8?/\5UPF=2s?"2 k2sZO~(w6?KϫHgQ^{ͽ3ϯ05 Lf5I7rw?W8SuWu9bcK2s^Ƣ(,)^RaMn2q􄻦{[g畞Yfx 5X 2sOOUau"uYR> ό79"?W)gSrJ-sh,| d ? 3υ_,sv`|W;e:sYgAoĖX ? s%y.ga3[7x|PfjfG~XPkh|\β~ n$is<+-)#gy LMxnFe}WF>?Js9Ց~srO3ן'{ÖV' ?92 '#~o3nvZUҟiuAa&)ПhE딺73}d9eVN15dgF;?nisF/-MFEUъ dTf쟛Agr9ӟ G껦#Ǚ'u\[騕E3X ,Q YV'5~M 7~%Ͱ: ?hi`u?Hԑ:{Grgo&;#f*~&o?TnFfxVz9.l6x$,u?sua ܭCzvTj9Gis:{g8]MOt_ԓqvsu|#J^g{YU@`1֑sYkI)]o(Zb#gs#jώ!? Hy"cY5* EBYDKJ[?sjS|k43s?GKk`;~n(bn|3*8~?|p*ׂk1?|l*ωfTc?5+rfc?ް;e["2V&De Qydt>2󛽾/'>A緻6ۨڼ}4O:ԑ7NkATsyp+&m<#ϤK5Wh(ؼ>˾Q;A $ ϿlS?[ /잹̓ۧWr? cmwS!iubk5ךB>0 JCYʪ3aen!oN#Jg6;={DezI|>Oil!o??g)fhs?7O$y{D7ORL=})O$y{nuP z iS&2PM)kѽd~~TռUek"' >3>2^Zs?gcPk&c7g)oo?gzփۛ\1Mڭ:2O}cv^:^K+p:S?۬ r7<0Wem^YݰY3yRϿHa) yՖC23ן-ӟMl݇ig~~%*RewϯO0ɦ%2s?O-GSQݸ~U o$irK-dFD-'UB~o$~zM[ϩL$m%,#ד~ JK@~?&kŝW 2s#̼7%ջ t3-߾,H֜?H~N4^D򟷷%~ Fs+Vv \<\o{ Y"#?i.-OP_?T_ϣ:T~mE?Ogswg[3ۣ{{W}!?*#%zB\AnR /H?o/.rg϶zYEsbixv}lϩ/|=bG A`TB>V_HV97{9ӟjsք #82ޔR* .ϖNNl 6?wdU<t`yc,9=ynlp%dZ2pw=AC7E;R2yc9џ*2sVvcA̿?FZqϕТkQ!??3F}`47OSn?3ŕZZ73I'uωl/&%{N#ZOTM~?' j#v=9L}(ތab,Edg1|FFJ g3-U36Z$kcx<"~%ןm7UP,|F})?褑 P'W=Fy~XVXw85!/Ss(җ[xRПKH}y3 B|L4 =|gXfa\$dpkϷ \?种Myo3p y \?6'{ &m)ly~?l6dsaMfJs CxD~oVb!v,άϲ~~Q9ކGjҭjiUA??Nf|Y֟W9:jTkug2qot)ZD.Y OsXlA ,ߘ0adFsC~$0m~oȝȓҎD ,`St8IS ?gsSO d'(<2?PՑlc˜buMl~|9Vjհ?Z9yn}g9[4K/֊|yHn؜WtϿl6?fuYПɰ\&~tcmњޘ.D ~Vjl= ?X_ϲ?1>?'I6M/?́#(~#?7r.vi٘aG@~Ng8?x}dglV%~?GkN5ߚaUqgΩfz_|73N bNnRɬtnpK}J)J\7WBg 4C;+!YQdT+;%xcW}%Qph{=ϹOV~W_+Q?@l@}%?;Of1gW\E>6gw!皟qtJПϯ>1eaA?2Ҝ~~3\?iѷo~NgtBq23,[ϩ\^f3s׃rp5Ƀ5ś{瀟.Gk395sĢ瀟ƢsY3t=c1i/Ggm>7qaf3sVڟ  uW?`ބ nƌ3GϏϬφDu?$e~gUs]V+ C+T8~~7<~U>R]9.xcɗc1S6?uuS9Ul~}Ut Fό,&?9'ҊZK ܨQrgxd?2= C\VOW8+} ,ߠ1Qᬇ? w'Sdgsh폰F yEY!| q ,ߨ0ixdg͚lִ_m:~XYt$ ?H=,ݴkj;[k|J<87/摷$t)jmP)ؚfr"隷H_n#rϻk>Ra?OΙǝ=ճ();[k>Ҫ}@}-OaU#Q_C|P=yg?G܁Ҭm>T_Kl-HϩuB>R_ls"~N5m>9/xRIyC}#G"735;ۛ>Ru󽱥'TYA@w7 ӥe9^{ noAsjFL{q%lSuvw7`37R}jVg7t}݆6USb/mCT;ϩo+uG`u4Gct>*`s\c62sq>`~ZQ1~~^D r7v)~8:gwvHt056[u ,x#62t?,-h9|DVm;OAݾ'- Gf5dlp,2t>zΖ?tʪ/rfR=2s?gn']'ҟwAފ#9#<]O):h0zdz}$2mJXxdg|4ь v_FNIf3Tu9eɊ>nR~C+=~ȉYD(Ѷ]g| e7x4[h}u;6?JB=jqY8R1FH']?SZms>R- O_yY+GEoݽ,<Кe=g~X֪dIςOA%ZԹj%Z5~gg|JݧH{ϽAgg~Nsw0s ޜLh~nָ\ Bl?=?K("oo%tT\*#oo9FZgݽgfڟշ8~+umQJS`W}+oV:sO]c&$LsY9z:*jZ{MP}ʔu%}f@h֔LVSi衷q0 [=S8Y-mAtaw@Kآ"F-]·&k# v Yfdj֢*RubMB^-;Kvэl Ї8LXXMlm9nS!,_Zc\16Tvk }нS$!  FO-ݧG#Awaȡk&k.=4c[OaU@ +^አh@ K] иɖ¦!e\NSSԚfYhkTa!@dxhka۰v!V#_w1'! b H%hkdaN*4ujH/oQێ2Cܸ|*ғ\|-WcV lk{Najum3aD~p|-պR&Ck CD6Lxx _gsy@#_ۉlif/lRu&Պld|#:g@#_Vf;z :S M|84Ֆ h|_F)_|n,֒:?yZm1,Y_#_{q4@4u!|-TkDoˌ4u+F3؊oN |ou}ouz Q1.~Cүm h7$΀~CүLř |ƳBˬf5A-~Cid oHf :~MYˬ~Cүyj7=ρ Q^H괻`U|-׼`aZүmu_!!ע~RA/}.q_׆L'͎C#_JCfZүyذ1"_w+)Yao@#_5Nj@#_K54?AQÌ~7ג~'Z(kkA[HO wu=#]_OaӗFbY):4u][&ImKO|=7FaښAF+z~=2B=4uL}_X} Fl{fZ1yz\Bs*!GgHЯw{a&Zu(4WwaTLfY([kZ<C-}H^l7{_ uIMuu+C/ Ǹ|ݿ20zGN,E[== zˠw{Jf.@qYнݸe8) @Y}w/>n2s˿^}\At7zu7Fʏxh~"h)3kPF_/F6|== zү y~ |=#Ҋ7yhb^+4u_׽k%ࡑ3Ʌs5 hDvU]QLp:կI\]k&xhD?j+̶zq1jj&@ǵ|ׯS&u_644u_F^_V_3F^~A#_KΠץ_g39bNG}z4 z5ׯ_>֣5|]ׯ |g|L5 hۺ#'ŁM|5%<, h~.{srUyuz~=Zү /:j~fQe-To@#_w ;uZ$2O;z@.@#_k}DAIp.@ӂFNIRHB_Iש~lDt|\?\e _Яۭdݸ |}|r:O-Цq/H6i*iZB_!1GB_y&l B_!cfA__p`JD2/l A5WD*"e1 |}!ѯRr)8YM kMh s"9J䡁/Hu#VMGg:Яb¸4ɺ=Ё/kptR0@E2 h 3g @AׯioZЯ;?ѝA#_ U1a N Qz|=_W2Fׯ;dAk _Vjk~HiU^C#_ 5O:|ݫ6f@#_7|F~AɃO|_Ѿ@'-SF-͍_[V#_ !5ׂ~0qFۚw 4 K@#_ɿ|(ץ~m+-lUF.@#_ZKz-ץ~h_LA~d_=hNW'|듀|K16} /I|/ezHH!{ߥ}V2-Bh|Krt@XAT<4%C(ZIK}!wi )Qng |}Ic񊵊m`>ߥ$Ϻkʝ_3>JYzM[ח0d)ؒr<4%ŠBIC_xO'`^SYft=5%nWH:u$!ΘHT V__J~>Iǖ |}!qSz[V .5R[ |Kj ~衑|J.Hc|K65}7K.ׂŠ9%}MyhkA1 C=IKGʸBO=,||ңݷVl^V#_ᏱyM@#_ zqAhݹ. |4ۧ:Cl8K7E3f?h7oWZCpOVNIגZ[ׂbi|Cl| opfSjw1vu ^U՘w!6{c1t\?|XzM}[ hz5ؚΘnM<||>O|Fchu;]zvV+`?a-FA![.6i t$R@*|=$XT%mIN4u?C||ěk`\FM_#_|Y^eلnքFNu^]ghy|Z*\kh]-ىz[wgH1ցOFpSn~X|Ky=@-[t=jh$38Juz>|-GU~wwCB3&d6ྜྷU_FΣ.-NM)gغ= :!'>j]@#_'|mbW2XuMhkϧF5Z!|-EoF .:|Z!1K3$Gg>:.=L_#_ qd-Z8+'?H̊E(oUmUjl'@c>34X@]ndT:Ghxε_ŅjrHҪB_?@O&43Y>eN|lsokF{ԯ5rur~Fx*M&ͩ`/|jCSy/ou+Zf/|#%2y~mחgL` Tք |kt}`/ |cMo-Ӹ-Eh˷r-/Oиx9oL"4)yb57^^auX){xxO7C‡B5?=Yo3hk1:NLg5u߸8xYοC|4X?ڰ0eC#__ܮU{h1~Ie' ցFߘf} 4uFvc0׽!Y41i!Z@#_ Lc!ˏ7}Euid&4uMNiX/iC#_٭ 4X?) /OVElU .!Qc`&7^o|[MC#_Cs!k<0b2ˍ!_ӕy~#ee!"|-7&scpkLn[ZQF_\@z|݈F2r-SQ7^9?9- |}_xeF+Q4BFj+!z 4~kmoJW:tFO W:JǠHe 6=h+ז +r`6cB__P+u@%h+B*%h^=4~ٝJ[\t} |}Eod9rAw2T(!U+~czC~@=hkutPK$!WCrǖ>CLؼs||ݭ\h~Fb|ב\;jkA؋ftr%ӯc;v:կmAYkc|q:ˠ%-ƹq:ѯ-ک)ssg,X?o?hn;c!W!4S`f3rE8/SrCSF׿<6iA#_w_G%C4kԅlR zhkAfoxz|ݨݲ]|-={rF1ҋK1"_'槸DMrEmE,yT>acg):&4|^plK\(>hCeL TzX|-6J =4|%#`8F",!_wotIkC#_wo\zZk5|^f%_#_7E6T'݂FocO9د*ӄ=4\)G㡑چjfU[@C2ԊZ#Cײ~*b]B'?sZ&Io!_ 5kW&euGSCo,FBje*yhk`5|}l5Y%D>˴8d_[>PAp |}UԯCwx&aO;*6ٽUAj뫢~M麔ު`_GpvEzM5 _p__kW9?f`wqꡁ 5jҔ(ԯ 㒺 |}Uԯ;6mh뫂~u$'8__1BǡΩ=j뫂~{b, _ u6(LC#_ 3_;VgƠgԿjyhտN%3gn 6%A+V'wZʿ&hN;|-_G%zX5|-Xs!Ru|na8Z̿CbӳZүcvM,at[S1&!_K Z`A !CNrkAVM߃V#_w_G[z4TIC^>9q-'67uՇF3ِ5 j,o\2Бk<>|-~x3M߆Fol8i4uWV@f_:]:CeZBw(ӇFfk;A#_\p|- hn%6Zʿ6G3|͵VG=|&dA?3|˿1W&*|˿fЬDYkYZ ,j5uLy?>v^fq @___;9v1kʂ&ag+!!5K:e$x64~ ˑjZ]0FqZ]ֆg8CkuZA_1< |}M uk?7_[F?0P hkzOԛ sג~m1 @#_kcxD.R@#_ukDau ph=4u_>l:Q[V#_' ;W9)Nׅ~M+[rqR=|2P2h;2x<4u_S #>4j5>:;|]EaLTfZC+/єS9Ӭ2qC#_K5{:j,J!!I٫"RF7Lu^kkAf VZ)G׏R6ܗPZOCZ}|!u#{ CSF_/J9F+Pu=hkY,y> ݞя :'ʬ)|ȿfl6rq|c5u_PtUhkAv1!A.Я Ŭ9:ѯlPCL7:ͿN}>4_ӗ0bWT{{+8Zү/f3F~;wC"VXzIֿկ-I ҄t0Vkh h!'Z8ױ&ڵ)4u~Hśן~hh$|NI׋ۭ5cպ׶bWekׯښiRF{umSpͻWW/X= 7e~|-_ۨ(+xhnkCr\1hn b\kF_k`x|ݭr[Xz_VX>7P h$6z-}&C%E=`,oxl __(}$asGl5=)-Iʟ3t.,=4_6F~oh@#__ZH{.g!ڜ?k|s?Qyhnu'}=塑ujֿ.Aj M2 __FӮ[ N`X~M'GmaAv`k׳C#_c:gO;\[P$צ}]ʿ6aBgu:ׯMpQ _Ku-Sldu/%:.N z}Я5q2."P"4 _cC! aA]UkiCa!7.wO1o$5  t9yF_7Ŗ |}Z05˷6u'ݨUa6O`?#Vk7Rh'0C[u4Lɘ.`~=T2pB|EKkI|{R퐝ֿ<|6悸tLj7!_`C __SK[ k}N0ZAa,n|X|}Ou:#v>LqoX|׿.wL+UeQJ׽!nkv@;k~ڀFRl#U}SLEjcA^W7[i|k9t!_KCXnl>/UZ-}q/j5ֿ#r!ڝ_1 l3ц(W<,F'8ֿ!տf ֿ:C_%_oFCؔ&h _k*K:m5_GPJc"ֿ!QQn?il{hko%tܢ tDN|p`\ho5%'+n%GOׯImhN84@z-Y=45ׯ5k5?VmH_x=1#d:Y _[m>PEq:˿jV WHFVqt҄FkK xB'ׂ~j|`fL ZWuyֿ!!U%u†JZʿB;1:`7/aZcD_HRQ_ V#_!>;o;j h,:xS[a S {#7-,OSי~7kToK̘CN鬖W|ֿy~ F7~u㺥/a7nhִ!B_߬׿+K[ZXf_ZMc0d_[)?F?Um}؋ =84/:+CWF~ Y#4}A#_wN4 ֿ׫x[|ݫno6_ֿ<45ׯ]2n ʜy ZCFue+*֦2) _u%-7g:zFh~"S -z}Sԯ[6{C#_QxiA_/myh?^_?~cKFտ<4bkC؇M}"4uu Xa[?{*Se~$9x?ֿה:v ׷.ΰ_&tt>}*4Tx}j[Y3K;wЖB%}qj[*4K;12 k׷gY |}KmZ P?h@_ߪb>עcO׷7R%I6Oғ1W׷04P?Z,gDa[!nlO!ZC#_ꇰ$9V#_D`C#_K7rXfZүVf Z1,AXV~A<FNj^8졑{b[yui1dk|ݭ ZҘWR׷g@ZqUywƽdmX 0%]/h顑ǎ9_ؒqSYܞoת̫C#_K|=~wektu_ahku5wC$_7[c;!'gjqL֤{k:Ac瓛X[_Z 7C_ֿ?un( |}wHWr:@kh7LqHXpXwl. xh\n@7Tj^k"ejuP8Iy|ׯA_@#_ {-|s_WSڪXacsc!XxkAף'}OЯVP"==)X^]x B+.4uW53]b{Bu\7򀝧T5q}=塑ᵵ'}_"$-!Cu؞Jcj~65u]NVj!QB$!4@5 hkZu|~eSI0[Nqh}_ QSK|Fk}_f _1cAk}fztIIuX,=I^ZүWtu]N{$ws#ֿ'ln܈k,P8fTr|Ϳ6 n$h&Q'~M9{X^_V,zaCv]hGϒbɓ65_$}5_ς?_YEך\ӆկY |}Я$}VlC |}?ѯ,S!S-_2X_c6{2.bu   SD9%i5FInCM_41ۆhF1>C_kNVen ױCvc-|=Vˤ]}ō;<4_ӦNѵ\FoFxY_ߟmwl י~:׿$Ʊ"4=$)=YqXtca%Z׽|xƩqHBo hkANS~{jt#_F>wuDo*U|׌Eq KnBB#_kƫ&L qJF׬Y>ᡑ!4<,M.ֿ߭+XFk"UiN0jwjLCӴ{/׭YuZU$=aB '>S&4ꀑ\n S=FkQ+swΔ~{hkY*39NC^d]}|zt_da:4ֿ/_,%bBu, ZȿVDŽn]hk![ZЯ{myhkA|-=_4t0~N%:گ'b=a~-AAhkAqT NC<4uC${G=h\n硑:5Y 5h|Ij@ү n^ `5~$M=뉪c5AvtgkS2r4AvwH\ǜ_?k7:eZ H!ڣ_?kL=Kգ vTŅqSqzue˒T{s__?k7m: ̰~եW UꡁxF#t~ЯMNKZXXOLVz뒑c ̰14eln8Cc~G3 |]ׯm\CpNKlsv_?זT/A#_ 5K7u$|\ ע~m+-9 hYCD+k x8/A#_PK#64_/myh~u__Mq]X\ pZЯO0ֿ~ n!ukwIaٚm5_GZKT*jDOXxXC#__χF`\!׽ F"w\'Y|-_[C|>C+C#_uSݱ~) ը롑EVAZEi塑%:V!-R5#U`Nkku#ֿ~0,8{_04ֿ~ }%g~HmB#_8!a\=uka!,CC8FĽQrx|ݯm>fF׿!!4u5V״Zh k@үiW.N.4&4u7:gu`6_cՌL@ʿ67סc{<b뇂~@Qx_ס04Æ~ uzj뇂~͠Mmg_f!b!H+CdBpnncb5_Hχ~(iXT?:u¾7>_wnck&4ֿ~(׶iB#_ qvaG+c]~ Q$hkƘlkf+Rm8Xa?ŒnHT:ӯYҝ)/B#_w_:s:ֿ~(סXV+Jb5;3FUPԯmH= wI{__?ky|4!s*r~iܑd!b^fd\y=ՖWYRK'7L'U_?,k[if|]3b_[ýC-XTڥoׂ~PSxh\D~5LkjȗhkIy\UqѫFH>n,{16ϳׅ~Mé:7ݞD ;CT:V0vkFlHe>]|-6!\㪗)S,%ڒkHZү-vzz~A>B;}= h~V ){4m!Zb_?Lk }yn ֿ~ׯk]hL GjnmsP]'w :I:H>=a뇓~MazqLLlt|זh>̕ah\&x_RѺ1_?L|oJkB#_1ţ{:~C#_)5hBuKI4NiA#_sƨ}_?K5e;HPAIgs#ֿ~XTR^ 4u__?:ߝL4#1:BG}mm,AXQ_~]CF/׏Jz-Q_Q_Q_Q_Q_Q_Q_Q_Q_Q_Q__?*@#_ZKz-ץ~hR^ 4uhR^ 4u_ԯ|]kF.@#_ZKz-eZOF׏NF׏ 4u_ԯ|]_ԯ|]_̿^ 4uh2z-ץ~hR^ 4u_ԯ|]kF.@#_:2z-ץ~h2z-eZ@#_kF.|]_̿^ 4uh2z-eZKz-'_cG'_cG'_o>}Zχw=I`҅OBz&mI?m Mz_VK7d"ڴp_GX;U0 z:]IM&]f۩6AzS+u7pv6̶q\o .mɤ=0١O϶ `>tdo6٧MWP|mt&]?6򏔠#& d;xH 3,tc K GJ!$_R\ tM:&t/e/&Ia?^2Sdl9gt &ݪZK.I`Mx9/l~smLVkgKd 駻/dN蛄J%iYY7QA6 Wl¿$oQG&aDc,ejXAݰ0Qqfhwy޴R5O䅮I/~qB!f :1 㥟0&t:dK?T7: }J5mdK~_LfmUj: |ںI/$9a |I/\xsPLlV0^zyS&b$~Q1I⧋1änzNLxa̾/X$Mx长/0^z$^2 _,'~weK/ zLx.re?{6[]"f*P ՛Rװ٧m Y繳0I ɛDB}d}:4 ߯f.bKoTMP)S?nc :P&2zC@<骫2 ل4G'v/I:Ƴ-(xNI%G/&aIFe|A_ҟk&>/{,rfujw/NC\$"< g4Tnx[} )'WN1oQ]YZ&aDC(){:%0^z˕p8O_VdBB4 㥷7dl -P&<ɤm. t!^ /T0M7%.l[-,vCOS414] l ^0`$XoK*K6a*SD^fKsJcg[zj#GLxw}odrS"32 ^0Txi*#u /SN = ^p2?BW탘RH&-gI/]2h9ɳf9z ^p%C+/ЄiXDG^nSӛg/]V}Ͳ-0*Fy0 JڋI҅ `tLb$.B<)0^Wy.z|!݌K%HM\=)0^ux5 7X- ue x!D&afߞr(Hh5s(8ɞp[$Kɚ 7;$tHoLҺ (r gK/&Mx/FJs3n4`(MxlRғ3 U8_&٠|fe>S[q0^K1> mD+ɘOo^HĉL2.K?0>8;GVw1^laI/I.K%͟BAC@wZdR'cK/W߬miCOd /B6)s1 _V{ҽYܨ1orZgΛ/bJ/tpKKn? K0<0^Q:y|lUQtvӢߠ6 h$^;UYr/8^-?|>0}-m+q0^/OشkW &rJz$()UN܈ʉjfJwڰ=lKGrL2 %DN^z&am:S-ңk2y 0^DI_⹫} R=IBL"jˋ L!3gI/U&O$jKޤi;P񉘄񒔿6t#zq޼7 z3 jgcoSqr&aT_r\a'שQV㥿ƿ9n2)=90^z8=M 810^zU\ q3So;Ky)Q½I/]}f,~ȸI/]%=8v7_8&=8NͳM:xйgsFoq:4K߫=xٔPn^C&a|el_|N(* $0^/"jz$r?Mx\W62<ٻ\Mxا!8H }Ie~>§\a̎0^wu_&a@viyEuMxeR5i%=R5 j/\_ZfK%\<Q/的T0LU6֚Ig0^z\}p6ŋf`Kg0^"I3; <~$~\yzF]0^ld~R&aJPc)zRl]>x &x3 L)'+3zI/T8HU\mLx鷢I眘,CLxdU…0eKa>2bb_&Ŵ'gK,xz anwL#&ahR~$I/tUVkz΢0 z/E#R5l[ωecK$KO$wH`j&K0DKg1^ly қ҃KsZ15R)/P0^zf;H`- KoCtj6LEE$F3L:x (məT)vX̖:*}⥧/&Lx)ˋsg?1 ⥧)vxԁؗ V8x阿p.5. FI SbMxq:Fڱ/ٙ}i /B/IӗO)iP^}edKO_MJe<) ^zWn2UȊxΤKO/, hdKO_9-㧝IIpks\%UBtRi#(<-D/8]oKO7'U W-E|<ј3u4gփ;R5)'nKߓOL&bSb]&a|5 +Lp?C$jKJU|pO$jKI?0^/R|R 2> Lxi4); ft\,@1|[a0i:˜#{a KRR1mFU)eWόR5IG]0\/"ȞSfXI+N21הSW0晄_bіM|w9{NR$K6yp*nI/I_3R5B0gZI/U*crjgY$jKӿ KMJOқR -9n䅖IǧO՗ 0)/4gP<]6N8c2y&=M}?v7|(&1benRqA'XM_ |M;=TA 6 J|}fT(c5`Ks7<&]fIz3I`ҕS |vVt$Lfr@GZK//G\ޘ\fK㼗|Uј`KSOxǚR=i &a$/rRaVqedKbI;rfK/>=LW5vڬl 0 j*ZN`GΌIlwYd$~ ɤMWMrkc ̓qyR s3s$y+Ӯ>`-\;\˛R-)" {W̥M%G߱/| Yl7 zR|Y0^/M njcc2/M! cK&%^jX R=)vi^p&DB$_1 ZҔMޛFB$Pz;61^%wfz z~ R51 %uEԽ YR-=6i]2",01 %_*- (~Z 񒜿{!u /40 㥱/XoI/yVuMx c.lG cva0 7/{{޶I1݆xK`,!^zSTȤIѤ ^zs,**^xj%ȂxNx?_u3dKoF>4yv ^zr̓#.'K7 7ߜf5/IoA қR\*qTdgқ.[S[ ^zS_ZGAPtuR upzAp#?қcK>қzڊOK{F%ER-0fK$<@[p\ͻʏq碾񒐿%ZU`4vu.k$gq҂|қ]zLx|K8{gS0^T>Rݱkvw0^j_b/[O.xqIyf@ &aye |aV!0 㥐T6cY ]0^zᔪ(\&Ash4I/%/'UT%=~e$~wt.KLxVjyh{~Bc17V~!@c%?Ou1Y0a7 ^JҧLZ~O_b r.q~Yyd`Ih_|8蠙CR"*qe!yʟIW$C~&_So:Wh-xXq>zM9:$j]ՂyW]_@^עCl!zH{Kj})4ozn=hCdC?<Wdãqodn hlnAC瘔`g;z^Y|GFBU/Ӄ͗)z|׺Cl5 tCbE& |VS8ZXMD6߮C|y_ DOo]lCihTæCV_to]J+pHz&xd< ~u_8_LCd2? ˢqǹxh뷮dpHl[|o] (ia4[_shxFuc~ tz4FU |:t6RV%.iC_u+uүuNnȮ)K+UXG%_bzA]aƛ(G׍wEm_#_n!ݘZ8Qmh)tb kYjG1w!6U _?Z+qP t @W_ە>_sVKf<494Zʚ }qн_Y-7Khk_jTuj &NjY=| KPX`|ӤT(|:|P|gh2v/ Е"K?>ƕ|mZVl h_/fC!,)@Z$>4+ 1( X!`/_͠ |hR(E`ߙi8A#_*w o/21_KI|-L9Y3Pb!VX ׿v>[pF52_M,h%VŁ Aqhtׂ~ʹƠsV+/}FhqD9.X|auC 5͍j|n<|הA2Lj|!B]Bzmv͎׍X@#_'5 h՟·|o?h/ 4۩~mbsCNk lⶱQ@_}I:T2]o?#Xj9 ]hs:|2D\k+$5N_}d:WN\ __}kMkDmI.%PHkSp~LV_ :v~Vjbⱹs'!_dsZXsz97R=|w}j|œF@!_?/n)dz$qezhxVso|нbj&?ӟX 0u)^qvɟi:Ώw `$W*u'5wRH&|T;7 籟YFtCRmJ){RbG&.ӳˏ0o|NefC|+}AgNG8ߦ U|q{k5η֭؁^ηyk"Ơ~m=404η|a20Ы2&yepծaPK- ;$qΧn-PK,-/PK0PK/toilet-0.3/fonts/ascii12.tlf0000644000175000017500000016051311327706453012706 00000000000000PK- ;v^-Ymq. [ث_roV@=^ŵ/m̝^O5[$ے,MUf%@}~~@ dA9+2S+s;n+u|ˑ:U6<?QD}??O_?Vǟ_p?|O迩_Oԟ?'ۧ࿪;G:: }VxCX c [߈Q g῝1yxzh@-| z!eGRhxa>e߰|KQfoG6q腒+ڔ8H7"ǰ\1sBgm6J0C` C`jW$(^)ZX=xPSm9 j|Rh)knk+Vzo`hf`g{σ}⸠ȤX՟Td;|C%S||,#pX7ç.JlD@?~CX :t+J!t=`DJ)mnt2? ZVb˶@ <2!V$#*@<灕)&V1ű&=e^3.z$k1MܶŸ!Gg`&e/Q"([Inlg&V1;'ʸJF&UrA3zP}*hmYEk boBP>{P >Q|&^-gK!B{mTqd GZ3:G6OlW|)XZ%(! 0# [Ճ= al=5X,mF ۷i9:;˃75Z nYT])6&q-,hW{kyRW|{'\-CBMw6#087 ^~RX'ncIE4sgs,@'Fi=z9gAc?Pjhdjx 2U1ANLI#[ ˘g= 7HuG2iAگEnl(?YSh(DQnkm諔[^uZ 1CPzX(\Deiesm9 UZ%NnK}itEWqr6342o7&*>|&%W"rYSʃ|lσX 7Ny}SM7 𗿸)XqSy`M훂;7 wo /,_޿)X|`n /_!Xny/4K 3bg+=2_|yqZ+چm~S2|;tXe6-4d:#9573( 𗯌Ͻ ~X|UcBt/_[?XCw aW]eؾVeLZ3:_\Hzןoz{ٷAXM%_ڷ _G5bDj_y0/:,_-#ųX,AIq޲a om ,paҧvH;,_cUSU9,_5^wӆj2bEBکnO}r˷k(bԡh\{Nu7}c A\Qw٪( BRp٦ ä&עwX|0ѽ_+~)-ZXsuYW{/fm`Xntar^)+@OrXzr_}| 8{gPXgtvO~IuWPRōnF`gL66DrX3|Rw-_:W;,RrF˛: o7 n%~= TTilKC5"ލ |,-R׽Oa^_89?/ets@ _(#fzEw}mccEКk/K=Y* t g,0y p?^FO/ia 7OYvX`l,5Mce1>`Mk6Ѯnk^+n ʭ?]h&Cn>5 A ӥY_銆U_p@SS}{'8 Asl_$8C!np4׍銆Ԝ2&}X3Lۋ۞9}ф8ĺ9ݐ/¹f1y|P7ǣv͌Uprݾ5 prݾ5 b8,0Ngk?-}EsX`.ʛ^-etuأ[G*tC8Oֱ>gˉE_g[˩8I^#2,g/̎Gż8T˹[˺3x ʺe|K'~r˕`KTX}|rmu՗aݞ+/_--_=8>1,_sѺnt3K摯!_|XR8GG_bi}:Xys-_.4_T4--~K!C0MyI"_@{E;b tײfǣ/_( /{˗c/O~Pr e"V~K%V>AXcE _|噕z)xK3&r3vt %y4ES /΃ '_8I BlIc}t yئFUG_C Σ7_|3/_ G{o)tx@ B瑽dwreR_N,Ŋ`^ Lai ;/M S;K er{O!n]<(NGwXTtiچ˓&/yP_J1!e_Ij76 \sue\s ʣ 9M4eX5q ,LtM'9,_rɞ]_||5-K!$a?R1_eԿP%{/_rR}i{-%T[/Ge&PI<7/l}ȗ˾NZa{{tz~Pѿ4~Or~םq+Z&N/PM\Gvy~Xa3H,Vm ˹a"}u[5'4uԳ)Z}k9aiA,w&ZYFChkH7˨ 3s16J>_g1Nore^֏mYՆP &)/zYXbos,_J@(08e䘌k}/U=;^x9ס}ECc7vD;>oOR)J/%ӿtwx1f(S/EscPkag{R_4ײ,f^yZF6D's(пg-h 8.BԨ4՘,_ޫG쳡- g BBj |Q66Q^62/ţdp'X+/:/<2Cf4M /.)/->,tH°)/fM-d%z i eX;G $i0{9d3Kg ^jl]0/chG,_|Cp bRx#`!JulTi U~%ft6B#ǣy)dc K=Kz0+8W78N\GSt„KaWQXlzC>_n)i0`|MK^V15KT d4I"__s~lVwb;Z ԿC&gMr-{@Kq+#?CYF٬T ծ˗ %Ϳ 0cKŠ 3a8}KyOè+9CV6=!E7{St[;_F6W2"8q΃%|C.130w-[ !%Whkd/*9Mbco,=)2v /_3ĺz@4xO_kGuKKj"6_j5 Ѧ90-4 i`R_GS+*ߘF/ˈy4V<b{KaFڙ wԏ*5|"ưQi狑]Mtih+#Ɔ(T r)uo=YwLі@Xԏ,cnbXՏԥX9/- K :&\U? Xh r~T׿lۖO߽R?čjO`f4Q h( R3[Fwԏ_v2/wՏJK,Tܰ,{G>SdŦN AДx#&e}\tþ@cg588y{Ki lcbbbR_F|maY/^=b~تvt˛τ=o/_ 8 ν9usy۽^ aqN/_uUǁ`_C oJ}9/&*__ZF >J1y/_:, 9n<+=/_uJ+iA+1|Ky /_*RaҲu KlJuVhOAX,7w1I*Y>B\&}R:`NRy__ E:TF]¢P|Sל5wGeX` o:Z}/Ͻ&,e57l2vMƚ԰pö~ l,_r`|_/X竍b͢8P)/~w[E=̚}/GK{ ZW{п:6a &/U,c/_imҿ9_$/ktkTc.P_ZtXY]~_$ͬbEb1eK*]e[URY{k;^ΒA?K-$]X],_%_T7>3,_^(Pi=/_?7>RӿtײR+ r|C7ao~ec|kϗRb\K][?U&s$[gDžeXԨ84vCֹe`r~\_eor~$_V~|Jп˘nmPrGԿ4~+xt {Ee[ ǯсqe8_|:F>艬ݸ%SqzQ/u|reS TaB 3O% ԂX|: _T?,Uk/o#/Ge*^w孢(_= wJ,m~> w1´aR2,h3 :6r>I ZNWw˜./AEѽo #|N/J%rv7˸%{cXف,n&ߴ3ρELn|E.%{<>hGFXdŲ53 K%XoL@pyWQSH~5`(__nlpKh,qu| /nD*"eIه`R-c%׿밍=31a2,K`|8J 𗯕#A뎁T?:Key)[9b_ƺys玏|\c \?} a//_鱤ښ EYq^{~˷0/_ B|96Ӯ1_N}Q_/_!  |m9>R_LJPȸ,nHSFՀF- ,_/IůFَ|RӿT0L ,=~Mn\/@kàJ%櫱JA!ݿXr /ciOH,_*_f}BJMrӬ/E%Hrw$(w&_* ?I&,_ {Q-ŧ/K;^w_2Ͳ(>g=lģ2Lt *Ӵ#*R?y8e܇MY ],G'/"X>AS,EhWF'/CĆW2IL/J >}!U ˩I7IYoW1.'T?jymV& /:oiC/tH#Lz<,m×QPX,Ib- )+֜e| /E}zI/}aKE/*Ro?]8Hro"AJ PԿ4TU%!tK]! i. oZ/8XLMTph0_T?_ /KH#`Pbfe\bCgG5Tr5kXKA:Xt? 65h-˸%,[ȓĊ&bQ}i`Q~>vLo ϗ ˱eFI3AA^/ZZc^/ ,cZ,g꧹[:C&r,5veDAG/HL{%wݕ>3_n>_7V?׿"{e;\s웸~:s5`aZ歌k.著_2QpH"@MفOk ߤE*{/5/n"__J6;A- }TymQ iы˱׿N$|ւOKB؄~WQ/_f/M,wmfEK%ˎXHS%׿dsQc Ba.R}{cā6jrX1^)/Kei4)cSe,_*_FeА~/9-`:W͑]׿.+ 1reXB0`k8Rտp"s\KTL!e\0& Go#z`Rӿ;1դ胋Gb20=e[4IK#~[4)ˠC6Kuwg_(/йvKbcfU T/|lT&\ճnϧ2oTOd@ ԿiXvV燶0RoGXL".e5,_ 0 3\dFM`R4%K|HKOӚG13,_Jxhv[㮼r- $6Cп:6| ^2Kv d(g^$ˤv}Q oLa1 rQZuka:m#MHjiMn)?DS_q`ІkXQFFK`NEv_ ExrqKl\6%|3*ְ-_ MݛIŢ]UfRr~6aF@ؤܼDl\O-ѧS%Se ,gguTr~ӿXnh#Ht6m! r-$4EcvwReU2{~6ibQz2~VտMTb~6ZŷD#:]Ηg_mb]NCs[|a~6 __k6q3DnX&uMdryK=ct{ˑe9_x2]yOɰx0TF¨˩yUVzry~3W4q/s\X+%94)'k̮B/bT?/[/ó"=`xJ<ӿ$:`r&y52VtryG|&2*5̉\U?/g x'W5M`v*I%Ob~_⩞\>P?(dв:=wrc֑FUF[i#p%׿֬\/vt 24} XT⿴(ԩ/izȡ%,_rpl<6^/_Џ* a_5N_{}$ƣ+/@ KyJk|5> VSLe6zi \'UDVW÷rd/6D`XKE`+/ĨY>`R_Rڵq_.ߢ %׿8CSRy1>Nҋ\ ;36k6ϿPMaSάb_22,1jwoY:hP~m/_͋@>m/ieIcSCM26 %׿1 ٽԷ6\e0\6oH,kG_j// 3 1CgwRӿtq\_5Znp8RX4:q 40bxc Tj;wrx;_ KKֹ1w!KKla2cu-XLK='w/&/2_ {l%g{~1Ŧ1xMZW__L_(#bEm_t? j1EyQsa PuӚ踺˅D73zW(Aq_C<]Rb#ә]/W'{s,lMxV(hBr ]Zo߱EMRDz|~QR@%FPd>K{gl4N(*{_/=30eޭR_Zjot{&b3|g0/<K )E=}L`g3Ƚ/`XL6|(,_*56"gе6=;6R;jTFb/T?&*IhQ3,6oa//xԚ-#/_zU%úO*J v*>I,_?*mi+S<_vմ1c\CpK% P,FQoM˴)/𗧕rUeq}NN,r G}#lqTsỊBUŒdek C mbeXꎩx]܌WbuL`R9ȫ⠗iX/6O"+e0me|&Kr|nx:ڴM뿡䓸UiKTEx]",z_*_`1,R$H`MM3_M<)4&=@i5Z_lΧ h㚓_%x6iR`2eG FEX:/dS\*ub-ZwC(#//u7rh%W]/e4_a!_NoR|Zױ j/=#&X2ӿDTj-*$cDjx;RP9['^42d GN/+v$h1֙ekJ博u|;>?0 :u~Y_޺PsߎR_q(,ptoJfP2R,/ߕ߸{ a,/3/d6&9KtX_cC_7U|!޺~j16fX{7dl//Qpt,KPٴዚ,xę09R__گ2dt7#/Z{!G>8Ӟ/Sg#=!_Nܐ/G_/ bQ-ĩW rz%ӿx?5M%HO;ƭ0)/jrjާG_rˡƀ#/1pXܐ/G_ ˎmVB9=RQ**K]X ,_XVżw3Ԫy#/.~|9t`+_*1^~wKeTPD5h Α/_Z\ZȼC. ;֯gAOK}]>%b3v%׿ um&^GTe_x0/e.vt[/㿴 obc/a-#/G:tiR2#@:_I / $}CP!*#/(}c/uI¿ n@RKqRq뵂ObLBn`#X!]04am~ CiZ]y0K)voZ+_˸.%k:U/'_&?|{M/'_*5 J0TϹ&`Bv՟i OO_b}a%!iiNO_Ls2f5ɬ92Ť!Vx]ȰԦR*0ij'_ N,_nH/eCϿu/'_f1ϟncΔ/cKupebtl2ep*jeRz8e#/{̞_Mv_ >=QyV4qكY:SFَX/"gyt?x&}OLM뎔cxf8r~5ӋJoRj?__Nԯ`-WEA(|#ڧ1VưtzGj#B_bx}U/wկj_3cwG}M~rPM}Z5ɘ0/z,ԯ_a%e3Ty79R_3iݫ{Ҏ_,_*dN$\IK^)ps8آ _ɰ/VF{9R9eHIpmiVbqEjpEZ%ұ˼i_*bc " ,_&,bp2)ؔ@ Jǣhcw:,_r}M3/?8m{:Ri{;R_saπ_ZEi~Wg jri=9ia2$BmW%-c;HMFblռVA2//XC7bu7fb|b>Rѿ xu=:/_,y%&Ú/wKy©Uh Ʒ\Fe;2`1C8΃ &߯e,_/ݸ8#fxl<2%,Cxa 5؎_:oEͦ;-1W6$8xX4eފ6)5ҎT mx~̳bV Za=K54KȾ0-5ӿ,[ !'̤6 b>1MQg#=7 Bbl1lEx5yЂai/>4 q/h\_CoZTMXL )9=(cbŀ`ߦ1, U ˠ29(6Qt'KWbpdAލ ʲJ).L_őF'`Ⱥ4K_1,*M|)Vп)NQk6}/ _2`0`!c|/B3KAmMn~z㑦٠6LK)˳(+űXҜTǣ_ +Z = 7(] Ku´N(aRտ4Z6h E#u21^,^F-,_/WQ,9(ǚ|R99ߘsz5$,_&?Rm.bRѿȅ$[k -_X_bS!?3ȖÍU,_/_"%,_/4 ɌDENa eR9/Jė3He/E|Q,_4˗/U¤KaE-kGw/F=G\5\W'Wr}20~, 0,,w;_z_Bn=seOXF4wtob'׿ ?-aưds&LEvT1w.lK/߬S 48P,)NLa䄡 qB;b'aҍ׏a7iK*I+be8_*og%"C|wY)woP"x9~Xпb]5mM5n߲,_/Wb_wRV|/_2zصvKu7'L ˮqJNL/_ KgZwy X[>B"dIxİܳ|Ka>M/"_<ǀ_^ B-_|6N\CT?Q<E]>oZ,ac3)㿴ƣ{9=P<RԪ/{/ RCnxVI|O5Ҟkf%ـ>҄-?R_:jJX_d_l1Ҟ_)/b'!Ka֟XXey /cm6/q75ki1N I=2@Z&D S GdtyP% e#nČxI4|&,_?Z/ |2_Nn~; ?EG5{05ҦNo,*hX*UXv"~6mk/KDv\ UK&ڧ_ V,ؚɩ@,e&I,#r~;.dwY"2ߎh5R C]Bvޫ͐#ov$,7.:ݳ+ۙu(a/c)FQ벎uV/)8 {NMq"hxEj ]q5BJ:=aeI/*}vr_v9792S-|) ?O2Y8e@g5%G#=Ve8~4f/bAɈxʗ<Je,_,ҹ-F,CKXǯ̧ I΁u _F@^_+#V9Cli6̥΁,įkڨn;F,-R`2c ɿa+Hs/d;ZWFm,_o -YwaM_' ~16̮Tz:̑[BOӶT&}g3_W5jW,=,_o\Sw.̜/x/#5X=X׵EoxteF,3I˄EQcECX;qh06  EWVE1/_&2v?$A =.L_1_&/axe~x_ |5"`2aVۮ/`Yߥ">kmabYb(s2 חX Zk<V\,]R{OX3^g3]ϝߘapy~?u~3 S#T~Q{'֟*gkoH+}subG윟N]ߗsZ _WDz9n2{y~? S+!z5+er ]rGRFw_)X߿zSW`y~rt-õ\eI2:K`Z"{d&qi`hl܋Us `)|* l:6'0'f3?B@QΰbʌPI O*C\@%dl1YB`:֒W" O\ kYΨ*M@M0L4>\&,r yaAFBϰo|/0LF5QJ\ 9Yqs21р(&`ugQ[kM6) ?ɅP0b^ndj5x50j `(DzX>,R >Y7bI%C]/h(%:fB+ 1`N{)WLGg&ܰYo& t9TF`L(zIc٩1a Io;X3B0 Y̌aXEQi@e#%k` z Go0~;"!ѩwh P1=ʘJsw|fF V@`όK 788eL%07e& k`όG2ÊQ; '}O| [`̅ zhQ&0gSr&3DIW%9qA>3~:57LNULԽI`(;V m{ ,؜D 8g38jof H YAct?ooc3$YAXk;e uߢdC4|f7f#}3D!gU<,t`h]0gV|+I~7b)Ջ ̌ηi顯O| B So➻I ڗu4R3rHρA>S}y*Jd0d[A>3 T%0'gJo3<3X5:gNϔ_+ >K Rk[XS6a7nMg ݯs\U,˙v |ʖ`ϔ&7m3Ƚ"gpp6gJoFԚٸTi(fۜA>SdczlB>3xӉ3 vݨ|vFm6P B%WgN|fd8Ps~vJf+) _}];|o[Lg>Xψ2|J33~t |uz 3#. w0g>(3歕3&3T3Φjb>~*0d`6-&3,g{dћ ldc v?9]>A_?y5u`|PgXHYcQ] Yt-[5SNm ̂~ ϰ q glΈΝ(|akGٮ(oӛ\!YXQ2{3gg&3ָBw% ~ƺ:]mͶ9|Y1Cv|f~&̂m̄~JXH;7)3. a %0g3r憇t:su|:cL`3f{ aP*^ɲ`KP_|fe<%.X  َ - WIh3~=~aLYt|f&\7B?|!m$m%A>3/o̠E>3Ƣu_׊D1#<`2Lb`D̛ʙ ||fmȼ݆} ,A>33o0M 򙹠yR$Q *R|fmԼ,3d9!,c# c A%Hp-+0|f6r^ӈbSщ!0gVΣ1{*0}Xfz`o|f/&(w~5\ kB!|KG[nÇ5Yfk0fmϬs `ƟYEos0fe\ugL$_0Wf}$0ۄ.0+lYf{0̺3{?5#3+HCaׁA>6`l&F0A>Am 8Tr`lf0g? gƌ$BK g拯Kc3LE?#h|xr) ugFk  )3B'Wϵ)U )3!2a4|p0b kFfU|f]!l 3b-z:g<nڝ a5s`T3|fB?c0u ɒ w"J0gϴ|jf&A>~Ƙ (|6fs`줟Imf37C?` A>s33`Ϭ=lrs0gvl Z`lY L!76Oq].'GC= ~C}Tl8p@ -A>S?\1!)3%hA>xv'qӉYڝm|f`3A+ 60|и [U[ 3+6іR ψ][v%f3 Sҕ0|Q `ҔKpM? ]|QÜXȠW[ny33gܐe7b#2c)GqQ&އ5H~yu0gτ0M%t>h~Trխ4&y~ ,Xs 2>h~ϜIۄR oaoF`3;ʶ:P gTz]M} C|f~mvt@`lYgCN eL397u 9|f&i_,rA>3ᬁZYMj`,9p&do(~z*]239|ȖJ |&gDjCScX= Ɵ{ +&0tRױf"' ~v L_?#,jSۺ`Lğٓ#yzS Yw~ Yfc0g?3_3~xFfjT 6H23gr 3|& \?s00g~SZo0gyS ̷ۛn 3w3~{_POGKS=mHrwכēM4̒A`<78,"Y#\"3(q WHV"Q-# 0W ǵ&3i!?.% CiVb/>Xo~>d3տb16ga3y<_jUxilM4FJ>&3'k[)4MY~߯fu}5f)v2(F5yb5iZaɿkMO5OwŮjy}c|qe)uz%?PEʙu9Ft~;` *ÎF gaqڏ;0\d`(|- ~]ּ0gZS A>r*Vxah`P2\ 4ip  (.~~c> |B?*5y~zYߟdoLTNB~zw:Xm{Kf YM9-_Дly3h Pؤ6w f|fڏ&Lѥ>FJE=(E #ܯ_o7>f}icg{`ܯxx&^&kb=(B ~\ٯ͋{*I"oG<B2SZNp1~~m(̱1dBkI@e0g~mS)e ViI*03ڌ\dIhmtF3ڌAOPus%Zv:`Ϭ> ̓ZIw~mQkFZߥ3_qNx[Ďp`*0~\ٯ+t+ׅ{Nx! ءu>sÿڏ\uİ?K O@@X|fy6l*+z $bB>3_ۻ!jPwI~mzi#?H5122͡ A>3_;LbaINCxnA>߯-֨53@qA>SݯӠHur6~<{ށ|?i;&3j~XghzbCTiyV{WQ%ڄ[; ks )k VNh_q_r1~cy HwDTZfxp`TbPQ  ~nCf:VghjXoH?[(/d/i8JZc -[eX NܯB]? FHOw !g ͋CvVܰϦX#|慖~Wyӟ:}7W{?mp*6(q 3睄Uj[ B2F&t&=@3#v`ϼPw01gl#rgn2+0^ѬdKCG mŜ9[tj`ϼ0_۽Ck&no]T) {[yanv>禘F6֞w`h-ڙru7t|sz'{FW(4M s-&0gǟ OajvBcgI[>*J| BI7~ *7 y2~~% c8߁tz'7 x\P=YO( [Ux4>gdTp*۹N/Ʀ E`3u~Sd0qJ ̌Ok'm50gE6ME0gXxXH1!3z'Xm5-6X.A>p޶ 3z`Ԋ HG֢ A Rv q=e109qiZz`b /3:C ?y #r V1]o2FGI 4ޢ@CلOZۈ~ksLNOc?:IJ6{`? z`˫I[X%0go2`94mvM|VCmVHҬǨ~2q~r|(?ꁟL聹*c??ioIпL&m҄Ɉͻ93$n&d6)K`gm t4z`3Q,63 Yޅ5 z'=ea|.51i#(ؠ[~R<3Ԛݔ^ʙeW2.N)_|v~pYkvwavZfx%#l 35=0Wd~,Eˍn )|f@̘҃utJOz̀qf`OFkz~^C`,Bl>ۉz'7 1ReNSL&D4e`9#nRtz'Kz^1:I)nS~2fḭ8x$;A>;)7 Feb ٙgڻ ,B;:/>\WL*ڱH0g^;)MTM >M+%50g^?cRh~qY?uz~;00Lq03/3( ft63/`ϼ89J֚23`ϼ؏ J Qj3oFM`ϼXg`oT`JF5 ̋'{QSe˘jalLOOi3gx sHX3)2͞ \6edM{|x;P‰qA>g&]i3N?c?Psń7t'N$'3dt63]L.)3R[ӜA>Ӎ'~@ )ʄ^LOMʏn]A>3II$htP3E[A>EuLN X! z`t339|fD?c0ōC"(C`R6ι?-|B.WWxƆ,A>S684X`okSL+^2ؖ&b@ _3T(w7OmRK;hN3_{ xzX˙<蹆{J<L_شޤ&~F6u VLLa q|f&2h؎# + A>Sԍl&ۚ!A>YQgXΘQ0g魩31g3KIR5I!i!0gPK[Ba0r$"V5揮g& (:ނ ș0X|krih"glZo 5; 1gnk3К,X['&eH`t3s`q`68)x&|fY?37aF ~f*gjs |楇U0|(OrNBZkJ'(jαon%jT3̈D5R`zahiY *g^Z?&FΌ>Ғ~FhspOg.ϼ, bֵ\]yi<`Τc,s5U6m3/u3>ɬ3Ƥ>ș 0g^gv3F {=0𙗺u&MW>ybi4KcQ4F`ϼ4O/ -`ϼ4O&ryi<^[&#`όGFa16A>جi7sdRLW?Sybf|f@?S30+3Sg Ì#9|fI?hp` F4~B()?PҸ+3KFs0]R L<Ņ&,Ha-`,şiQR; 3b"u0pj70gΣlq<˰2 3qdLɬ|e;g?&0FY3g4:w3gP3Q) |f<ʼd`;=ſsӕ`ΰ ~gv|f ̢1Z Yw !̘1 L]?# r0=|f.LX ?# . 0g&pCX D1t\ o#?ÛIaD0 R|f$gxHc] EO w̲~ Ɔ`p5*0g&Σ,+F:~m1!8Ұ]f5Zq3eV*?F\3yumi-reP`LG2oy̸~ceƒCP|fy$H>0gϣ彉|р >R)Au{ïrUȗ;gϣyoK #dČ;gτaS1|7}0gی4 |x vӃ/'ML 5 D4|e cje0g L "GVW9Ȣ 3gϘYd&V;gfk6EZMY;h.΀[8ݪ$E9s7oe2;f)3/3N<6hyyD?3cx0;3/ߔ|O43%A`ϼ<~~Sn^?Ԍ)rW|~&38fNG5w|(~U~ 7G0v3/,|bw0g^^~ 0g^X)riA 𙗧or2CrPɧU.Σo8hlxm6,}|̸~&2RW2o N\ r:J!Y?P1A~wDbMZ =37%qES0!G=RLg7*[ɰ+Q. gxצ䩋,g4ho#?# 3UScRS}A>3q~˴ƙtaLd7G=O;!9)EhO;%b gha.QŜJm=3ULZbc ڰw:v0=M&HL|Sg,{W* ʸ-D0g3Wځ ń|f&$" e7%U_= oZrLW?S7-:jT˙g&Ì(a`,3Z)鑩Mq{`(Z LM?LD&4)+1"X0aM3UPlGf59Y?#,!0g*OR6쌐 g2!ۮn|~-^̌~Ǝ7l ̸~?w; ̲~fSwFٲ/Z`t3kwF?LK?cllIoq gBZ,=һJ5` fz`|1%#2.ur&JՇ  Tt4o!g\n f%96e`T3v;7½||fB? o4tp'Py|fL5g0E a}0gr̳44|f@?[{D^'0g>@< lu36̄~fWlqAgyh|M6gsM B?^Ťw)&33{ə833u0lgsfM1!3E2ˋ~x|&ϴT`LD:K7ȋMj 0K Li7m3 gF4AN@9sr + Nt{#7D(-3̝Đ)ı jO#0g^?tiK,q&3,gx0w߳ye~iSs1IUD`ϼR??f`4Z;3g|B?c%+mj[g^)3ֲk=Ytr +~)1ќ9|R?#64b!W:3T3{R|]3k!ŧ3?^MyeI?{ 3+K:"gvs|fF?Ì 3HJEm]q$0g&3ov!ND+(Ll-3g8/aeG 61M4ng̤~eJ03a/}t|~ĭBiVѰCMRQة#Y?4п [G_3Q+&A>&7n6 ]`L_?c87#%~toY.A>3gHݻ0|f8̒Q_3J`E_ms`όǟNc77u1%LNFl! ?=P#PƐN^~:ggwWHaddNp9ґvNfF 37O1UK ~ȌDc?9%r|f!R{ _q:9|f" E!F %g\3ULMXZ=0aGD0fWXq|f:̈jOAT+s@|f"a=z Y`N좟IUlm&lVq ^(A>2L+⌌o -mRڙFVw|f3m0/k'gv?XgpOϬ? 3avv3yB 1^|_g4?ְ f3*'XMgS\ oY)nk̿ Q4t3ƅ ?I3\?go`L0d-;|;]0Ѷ JϺ-h3>L˽fM8v Դ4jsL7<_1ID<86 3<Gdڡg1{o S3>B3tg鮵y W3L=6w4\78`+)W3L҃mzpȦ2kCR,3hMg^}~!cc7fnڧg^}c9چ"f]d"`ϼ3b? હoͧk`ϼg `F@=>3xY,f,W `Mߌ>jI}s>6!\&{2#2S3YQAɞ3cU9>QM<9ﻊF{ L{>>j uz`qyٍtߡ6|bxcW_-:]!py7ľ960g^gba(@Wg3|JH5>jpkJ[I@h9C>颟1~͜435t|&6S3|33͚-μfuٴ^tab>C>g.Lр8 or8(bB>gi_hI] 〩Sf0\?v D;w ީ}|&g֌.e~XF>vI!X^Ӛ}TM LE?^JaU R|`䨭⺾)qȌA>a=7ڰ74̸~&3^3}TLg|Bqe_d_X3N?c/ ?!׻7ܪTF /4m]4rLW? 0}pr וKgl):G>tcc9G>LϤ63(CFބ=KEVuw3}ޟl6 <{r|^ B?[6 3ѨԵrXznV ~&5I<9.kDճ | [n,͂(t ~1>O? Fcc)]RM(<,L7 3|lP48vW!6F ޞ#)3Q(?b~N$rmrD`mA5F)oTϽ=G>3iceps3L!h挖k!8M7'v`s} q|9WjGdl5eփ`goVx|\WmL{6P^MW)/3fX ŭ[Qi"? 3ff3~~'5P>cB9ք|f&/7rq8M;W^||f~:CB1!$]LLy~Na֯ȌF*w(&3o9Eɰ|S\ /K`ϼ])xrΩ15 0~23Q?cّQq[F <o+a-{Ϩ5Y|Fll26 ѰA>~Nq; sfA#~@`|nv6r0g>6l _IJ4YaaM b2g.tF6%:s̗To# iM嵂a 3_ɋIu*0c`|oUE!BKF>?Of;] }?O8q o[߯! ğŮH?yG -fzm:SW]W%J`osQ#bqCHX ~FlîA`lf0g3qHm `T3s-4L2D8y[|1+uŒ;g32 L?Ӛ?3-Laj0g&oL|fi3 glߴb|F)g^ht(bP4}c~F{!C(&'`l yAw +0qfIᚺ ~cb;7S&>zT +73$|MnX 3z``ϼ^3k[sL;gV`ϼ^9|~F ucov>z&V/ 4Vy}2+P9#-iZ>M`N"=3;=0g7 )J 9ҽZ`S[ :Ȭ `L Y3CP5Q!9! 0gV$mRϬ=pÈ|{~SӈF v|fMV) l淬|fMj#ǟ1`o`0zp<L0 M|g:{g6;iG0< ?{u>Ml3MQVB h c@yL5<ʄRЧQ&߄ `ό$ g MrrEU۟ECl1!>ɽ?y$FN3Lɰ08 b7Oʄg='fAzb|&?c|uY1t{v~G>ǟ93yA>ǟ93yA>t00gr 3L93~``gL93~``A>gL93~``A>ǟ93~``A>gL93~@`nyaac~g^|[ ^?cMeh^?c 5\~v ~f擴ڱy0| Kޭy Rw5v3gR! 3oǟioi7pÆM!\;[>K ۮ&`u/&bx3o,gF YyB+ƦU`ϼ1˙B7f39ZIïWϬd Yrf<)# :Yrfg0gޘXiX97wjM yk&c{Yk y{0 wS0tPYk̻oR9gVA>bJu̚] y3(U`|n~fg>s|{gVA>msQLc c1ș5`|i=b:F>}T59|/3k 6cӚbB>=M 6cm 3{? !?F>33A>.L^ULgo#>rf 3MӆoM;gr̘Q(w|f&a)3gş鯪s|fw'>s|f8g(0gj7 יրA>3q~S3: d} ;A>;LY̿3[ޞ U*g!v-&3ը+3ClZg9iA>m) 7gv|=3 x0g|M?s1y&xw>s |6ə ys~*&3o>C 7_G?ϼi3S3oNgǦU|' 7_GkZ̛/mҚ63o.gVՙ5`ϼ~F{9n̛3Xi3ye{vU>k+j3gggbϮtX)33N?c. Ժ}|fenhw̺3TF)g[:0gv4[\ w3v,:C>z0{`3*~kZv/&EA>Uw .`|ai؄|招 ǻMgnӚvΑ|iit|˛9ܦ5<6#Yρ״s3k0(Ď D^ΰִϬl煮#Ʀ(9Yߚ9|f~(Ǧs3ئ۽5!6Ŵ{kB>N?SV)&33@k`ݪ ,_̷Wz] 3I?ãE6?:?sehĿ]n`3Zsy2ܐ٤D6)Í&sr ڵ6iܵK3o=띃ƎR%g.ϼ.CW,5[V3oUoyk3;V:|歵g?[0goyoY [/62C퍈%vzgz F4}l%y#b`ϼe0_y2g 6sA`ϼZ{0t3oegGnkWg>]!e~ g\uL/3Wg>XLd\_|/0k2(:#|ظ%]WgZ`gĜA>~=%1_!dg6w6Mu̻q$!,6ʙ 0khoVW`3{`fsLYCF>S;i}bB>S;i %m3OMm37łxJm3Ml X8~@g7Ռ,g|Qc"g g$70,3GW}K` gdvkm#`rW*gh ._T `TgܟZMA>#Kj_7|&?iԠd < o;@2r4\Þ|f]5k3+П!̌~ׅ33g|-Iߌ!0wϬ?fhUhl|f]O`߻A>3fgV'o.׈<3`Lş`4;&0D' Y! &òiiL~~J0F̍` gL"n[#+E0g3rGC9 7|Y0gg\a0fr oZF YqCuFj+ u9+3-zS-c UXfL~~S so}"jm׀A>N?CYf_s a0I ?v0wϼpLFJCql6,`9(>~ 0[,3oMyt g kJ0g^񳊬IUI0g^!0~ng0g(r&97g=r;'0gg`)'Y0gޞ9)?6E0'hfy{&?%閭p~ |MZi->KMMD3ĥWs'.F8b<`ϼDvM[ˍ >PHy{< dF3<1o`(_{j `΄֌Cj@bWLy{0B1b1aN>Msr-GC>3ĦM7"37(E3dǜ 3=όǟi幧==3gŴ33g`bB>3(iMfӵM0g&34=TyaD'j@B`3liܳIHfpd g`ބ*aȪ SXleYX|3=]3yA>[e얀"g3 77 ~faG6~fd>򙧫*6RL gچX\G>3 Pa$æ>aT=Ds{;3g3!n7zxށ8A 7x~>0PG>35SלLǞ& ϸ2'7(| 9|fB?ݲ3k3TkSf/&3)@sWmʌ$L?̰~Ƹ)L`L5mX&g )L{Ev0~̔~Fcךt A>3F B8?&挊#4̸~ߡ}dt, -QuWc:g3 U39̰~&Q5=@>3鋓-VA>33Yw ̸~I>suf343a{?@>3 F: 3bRά.&3>o47:̸~ƘԴi6-K'>atU4wUJ\!4 3> ;1 F3.A>3Fς1̰~&hKKvR C_0& ǟW)o*(E=wn-|CΚ?[KZ|H=. |~ ;Sā׏kSC`ϼ胄z w6?# Qa-3$*S|~ |杺~9s{,f<'V<@[%|\?G ?Thi05 ]';p`j|杊~4fbdM4PQe0gga6% 3Md!>΀~M6;0$ ĸÔJ`:f`ϼS$>~oͨEK:av w3ī+&Y >( ag"K|qL0\[:?B>3a>fGg&3 WO B>f/ v"Y0g)s3Mɖ849B>&hN"3o*L_?cdkYj@˜3g~ۂG+Xz w&JJhtCf(?"M3Nq[_"+wZd??B>i%R8VL#T"0g3T2IYB]3g3{1 0t L?+3gXc3OWuG)Vgj@ԼO5K~ā2~KM ϸ7$y *c` g2êT2bPfh>F>n4Q-zKI#0g*>`7|fh1!g8[j~;ɫ gk3a¨(D*3mD ЃuLE?#8`7O3MύA>X}m~wΠOgόǟ|9pPm8#uzV9G3K - ܅p A>V|7F âh1 q IVؤ}hh`3cMLd2Q<3gwNόǟtXxB6|f33 YϤ f#t)8jvar ~mMK<.Vណsu~|φ`3[0Hq'ic5_50g&oʴlz- B?#wrI?w`S3k g,gmU0(+<`lL_?ZM 㖢 Ü۹s |݇8f'a\, NUM93.gRi{׃igτ7/Xaֵz_KR w3*jiq-W9za MggltYzR48Yt |ݮ~x\d7qCk$vVg`ϼ1lv7!(ּ wgߖu:A])@n ĝyzE4 ѵ gP8~ط+)wL2l I<>n? 8ߍE|D˵i)w3Wŕ-&{O"gޝ?mt:]CDDcS1P3.gR jCRw3NүyfY,9C>RnL mEbn=A>31AXg])3F9q4m[~A>Hm텦ex[ëJ09̔~&uz36i|f m37ymZzA>ϸ%Z%*àjbN!:S8^MجY6 333̌~FK%:QZ3*XwCM%c033g"aB?+<ޚ,g-WJbB>3+5 [d|fI?=JÝ(Fx?|fJ?? Ofw#y:ϱYzFYN'A>A |f:̾ Yψ)1!tRgbg ?7l|\ح*&{#@6 0 R7ZS}3g0A>3fԐ;Gs33k93RL9A3L/ %ɽl `7g3̂~F=2XV>_t50g֝߄LJl~.33gڋ50gf3~Z ˾y0g3b=5AT޴o%6*0goڋA`̜dlN_ 1_rSC`L$pQR`̜d r`όg^b7@dk ̸~&3"gw3S75fĽ@>3s~EdeIŤX337 bR"g̜ĴN! GLwzg&3<8L0PxD>h3~~p Y{~!V&3}L8"-)m1n$We %c ]̈LL]yo8L|3}0,gV>MVв|3}0Yd>p ]y93gޛ? ?C){37yxVv|潉*SϾd rRx &ϴY {5D>M+ JV.ϼ7~~0b\?SϰbVM)3h&@|T^MNh8e Wg&32 W`U+-1<Ʊ:|fA?}}eҤ&L2гPq$UyF`$ [oChdh6%# A>gDh39?4tm# \?s(0<]77+N!d#` g؜~ 6FF>3<$+4I O"0& !fsUV 3VFJ߶l@682㕋e_|f@?"ēb|;G\ڄ/n,=Z 0go\Τ2LYS}f  X]4$OY=J=vp_O`L:IZm#? 0em 򙠟aԴ[ƐYg3i ;iro]ݱu 8vxj̘|f9 +r` 3S7y a7,33ն9ӍݿD:}.[LM 9v2Rkao5V|H& ѢŶ1J; -Ȇ gkGj4a8510Q!0g -jIa_uM?gT3Cs3Qu7E "M R?NŮM۸@PL!o 50gjߒ 26"=:_3~p0 # 7U* A>󯔱)" BƁ9QBA>Sg< Բ:tW+MZ0aF>3_?&}jZ#k50gr"JHNTf#Y0g8t0t]ʳL9,3~``C |f&3gbQN.3w?3g_q:_-oy?y? sy? sy? sy? sy? sy? =3~``A>gL93~``A>gL93~``A>gL93~``gMC>sS3<)`A>gL93~``A>ǟ93yA>ǟ93~``A>gL93~``A>g\?s00gr 3|& \?s00gr 3|& < 3|& \?s00gr )gn~򙛡9u>|Ȯ7n2%htm+.S!mkk[ )'| *//EoSH}M+a=N?l&$mvĿI|rQ:)qA_0/蕗ye/k9Vmb.?^@y;K0VyʬJY??_$.[ aUՇL]fަ%牑wfˮ$˦(U >B/و/JTL 61<)]Ujcj_ޤ W_ϼXJY?C+>K!w܊FmH F/?4xY"}>`wTH>&.= FinɎ66/י0Ŧ?tjR4o37({K5Ӷ2P\U0<٭?NY&6XzP?|{z)ܜ˺`op?19ĿUb75!@,rȊ x87%/㸯 i2{?~[^?e]@.S^ؐe]\N-X\M0_i5ҭ`JJrIEX7jS#w|7em9$L/OYxdQgcYҽ.m "Rր8|_][d'%gSMn$1qMu-AQ{dlMxWyˊ 4_גwH0_gEr.3`)?SL F[{ neJ0wc@?'{oGbZ(1, %_![gcѕkn -u5S6k`>w 9IrWm$s!^6J.7DNYz2%\[cؚ\癙_9*RKpnt+$z)Ӎ4Z8Vilk)s!lDHf87]s&BljuOk4Ҥ%5ԆQr<.tH.1t4n~9?CV]ɡ?o*eQOcj)ɫ2``-E_x]jųM-f F?B:#~W Vw F;f=t\*OBy.~H^;EW%a'CSK[MTV0!jcp?a$ICF+[v!AYm9;˹.qermz?qJʔXMJ7Dž.cݰO~?)Ïxݍߔf&B!'3NhQM Q?\sNm4_!)d@[.asr=(6mw)Ï6?ذF !r/+:L0Ïı$$:cZaI%l!j9Qpm+6Q{)?J0ÏY<ϯKomm 5Uu]_OVJ0Ïnk}d){IXU ž 'KI]*ᢒj:j "eK1?zq~ +TR4m)ez;(?ziň¹eAYޡȉr-Yg`=2 ں)4'6*L Olz?8&:C8?ir铖`􇿘nF~/r:f_ur2({0,3g|Sy>E SE 𗸗PХX=\R#Ӵ*"c]Lp.S6|pof"x /N-?\^b'?EWڥ( FU9 fX? FYR oW/Wb7up{pJm$8i(nJn[\7oa+>=;MAAJ''2rͳ^"+G{,RcewчS5'Sϣ.\F}1mHB-]. |ee%o.v әβ&.)I6-+W_Y1kES F؝(jb}rY}iV;E@x!e? % Hy3Ū|kgj0?X=L,'3]m_L_zlkJ\Y=TF竇` K0?Ras0f}b?h9&߱u,eV^ y,_ F8?9:6@U'X7?/ U%X* H0(^}9$wLi8/6M8r$;'lpK??\DP$[*ά Fxipr`w*$Zۊ]???ش=s]n|2:Y Fa|<hTv2wKb'OrPa ퟀ?S *jwU~j=ĥlL.` w6g^4sc3!:2?0ㄋ(J˲M>wK2^`[?\.|DŽl/+JE$90Ƈ8S߸7`qLY!5?ws%˔iш%5mׂKP :l]5qS~nq.g-:`ӆɈI\.Rfg5?rp)Z,2?cp$|hE-˔`ם?lý UԂH,\*ϵ?Op*׆o?tef YS$Iڵ Fs0!/-z麧?2y56ɫ~ap j<4˵H-6j˹|= F8?<@bJÒ3Y.g~5M Fx4wŔM;*ҌxHHh`-Ԟׇo?t&kZm/#)E%8J0KW.p[׊TY,qw\v,Z0e%tC.u@Ӧ?唙2HD./ˤ#e[eJ0Ý%ÝVږfU, a;jv[p8o9!$?\Yi 5]K$z'$ӪEsYLY?/2:yކ? FxarJsд,1-;ˢi($Z|^H켋˛xKw?ܚ1!hs7%^WE ECI>1 Fxah2rC,Isvy `2%|pf K?_aKd1./Y"uO9Kp΢<OX^*d7g& PSZ:)'|jtHH' )tH`r^5˔`K.\S7<*6ʐ2fjQsqxZw0-J/24j|+7/};?0L"ZģJ%[B8?8jITd22ak%{X~2/,yI)<&8V&.?ri*̪?\zެnޕ ˍwqw~*8@/W]=2%떰K^11F'7<{ryzp_6  -o,36 HY^[$òJWGJ)Jqn1Sɟ%?,)%(Jz O?:˕ZHէX>P~0/ZÛ`ijTvRݥUMUecb/?=8Wf)3e[ԥ[R)M88+dji(W.7p˔`?\˕V;sM?9I*/3/giy ӕ~زC|ᘶڑP;`#."??L"riAOXlrxxi_RpYxHN>0:kyYfe˕H 7)mj{H/]+]nU<+pg0@4p8]^]]y,a2+9O??R\C<K0ý;D·>,' = P^?<8 :f%JG=i߬?K M ?1{ Q.xN?x?=8)T<$J*{i1*U^"i* 6& /olJ0#eaʼi饫&#)=Tm 9iwgo%Uff?^Te[tʚ6L Fxd/*ҦaT8Yu F%^\֬˙wyeK )' n5Pw݅=DZDwYJPy$TK[I\h..S^x2\څn$Xjc?4yMll)xs&a_[?ppO*TRISO0Ë[9|mNnIX`g_<4aѶlcO@ FxdpvVWl^sU.F 2%|o)ʽ[&2a!ͩE F8?\a>9_'ˡVbk~~ˋ1ܺyx @m| ^?BwܨtJ1$8?~cOe&e?'HC*d:qsrpwveׇ!a[;+VӲSIᲫ?!5F*F wl!4"1 $3#"4.aQ dZg3`Q& ,JiLj`svM κ,Y 9)`Oy_FOJ_-ⱴlL *+KԲϮ#ɫRoC/WcvJ`) ;IP[uN |xJzXu=~δB/7 6  ?3  ^s1 ~ .fTaZ_\\# 4;\n<[^ Fxqp6֎=^pczeJ0ÝÊJ@Y`{$8[q)wLTy^-e\ k<״{W&y={|2宷+y^`9U:o5q\l0 Cw2Z3ݝWF/8lK?v燱#J 7j#q4z.wS5Z8$ iPYMפ-Oa wXi+^X]0fMxe?\^nES.&L Fx}am Fxõ1z"<ɫto#JJO0+_f~;wΗ)eN4NMUBT򕻉* Fx=qs#1OVmms'9, y2>:1ٰ*Hy>L0Ë=r'jL y}]1^ZJjk]09@y62CDG,̇Y`?,S%wJ%ųsu҆ E8|QfPM\zjR??tNctyw2BS>~YtZŠ2g NeY\f)2r9/ F86,kc\ֆ}uJ-pgN(ʼQ.\" =$Z"J FxJZ.oi?|n [-.Rs )] P[S4yz6uz]YVuk/Q{Ggp{0ID)wF㗵ObC;pg)*zi^t| ;!z/㰄pwpcvKظ̸̽r{ӪH$DpezJ0{.aˇX:4cieH??\p6td//xYvN%lTvCr =\`|0rr"M.oNyܞܢFWE[agoucewaLG>BS9IACQ~7+JL^M槐%"~Eˣi4J4W˲0^d??LQ鿋IPJzaJ+[pO'!'q``o|?g ? ce5P{H.Spu"Qۇ).5]yEZ; K?,5/עⲤq1yK0nyp7S,v!?ÅUOlm3mІpq0Okgg]/gUGR8 CoEeMkt)Je1V0.i޶߽^?1: we:K-ar  4>ryJ]ݸϕ3Guu Z}]6?f0RSk3FA`RΤf>ol@ܨJ50gmEJ? Ў3NR͖^td6 h21(3]ykA>q7g{h.y6\Lg>zg Iђ%0-U0g>zcՄ VM2W_3K3=/&4MhdQJ>b2llfߤɽZr G{`L0V|]M}$> ݜaINk17Xóg>n)ƦY+.3y9TM8[P̂C`|Jh@Wg ^\, M3/&Ŏ0VШ°#`|rLLc2eyhGL0]9%^]3!F:Yÿ{dj`|Zs2%^_YLV)Q| ̧9#&%z6'dWg>/& 7 x23Dx' X# _S"癒h1!y3F&zn3D1]5}+3o+ ]!yF|cK ``7 q|| MlMϷ0f3_,J&&'g2o3fFT 3q42:r̗`[A>91^Sy`d5m#/ jE&cz90 u4 NbB>]0&}#x~f`M _,g?9|]0Fa͖w|9POkt`vf-s`|` ۢX#7&vA>J1_r&V+0יTfy` vYḶ5 d3_=v`Yv L?t|s0Vခ1 Ϧ}LB?I6|ϰLNmF>SgHz+X2ເA>gr ^0|z`p`5jk|LrrÐm^GR531=;g>31|&p+gF͛6oȔ]3?)`|覀>q1h3v1 se] baFsc0g>.32\ sǹ~F t}aoɘn MoOnJ>7 +^el^g|\gX|W3w3rKZx 3W3)ɲa:;3yʈ ƷIm  |̧oHӾ|37 ~YNȷoMt3򯲝oLE?kfd`ϔ!ge!d=3Pl޴33G;;7i#yA>pcˮLE?Xm|Ծ|iA>Rg|ᦀA>>:C/gq.+ˆe7eh`Mسgf)ș27\4e~7Ec+YqDW <$) O`e_0. It was created on September 30th, 2006. This font is free software. It comes without any warranty, to the extent permitted by applicable law. You can redistribute it and/or modify it under the terms of the Do What The Fuck You Want To Public License, Version 2, as published by Sam Hocevar. See http://sam.zoy.org/wtfpl/COPYING for more details. Missing characters: # $ % , ; < > To create emboss2.tlf, use the following command: $ sed '/@@/,$y/━┃┏┓┗┛/═║╔╗╚╝/' < emboss.tlf > emboss2.tlf This font is part of TOIlet’s official distribution. More information on the TOIlet website at http://caca.zoy.org/wiki/toilet =============================================================================== @ @ @@ ┃! ┛! ┛!! ┛┛" " "" @ @ #@@ @ @ $@@ @ @ %@@ ┏┛┃ & ┃━┏┛& ━━┛ && ┛' ' '' ┛( ┃ ( ┛(( ━ ) ┃) ━ )) ┛ ┛* ━┏┛* ┛ ┛** ┃ + ━┏┛+ ┛ ++ @ @ ,@@ - ━┛- -- . . ┛.. ┛/ ┛ / ┛ // ┏━┃0 ┃┛┃0 ━━┛00 ━┃ 1 ┃ 1 ━━┛11 ━━┃2 ┏━┛2 ━━┛22 ━━┃3 ━━┃3 ━━┛33 ┃ ┃4 ━━┃4 ┛44 ┏━┛5 ━━┃5 ━━┛55 ┏━┛6 ┏━┃6 ━━┛66 ┏━┃7 ┃7 ┛77 ┏━┃8 ┏━┃8 ━━┛88 ┏━┃9 ━━┃9 ━━┛99 : ┛: ┛:: @ @ ;@@ @ @ <@@ = ━━┛= ━━┛== @ @ >@@ ┏━┃? ┛? ┛ ?? ┏━┃@ ┃┛┛@ ━━┛@@ ┏━┃A ┏━┃A ┛ ┛AA ┏━ B ┏━┃B ━━ BB ┏━┛C ┃ C ━━┛CC ┏━ D ┃ ┃D ━━ DD ┏━┛E ┏━┛E ━━┛EE ┏━┛F ┏━┛F ┛ FF ┏━┛G ┃ ┃G ━━┛GG ┃ ┃H ┏━┃H ┛ ┛HH ┛I ┃I ┛II ┛J ┃J ━┛JJ ┃ ┃K ┏┛ K ┛ ┛KK ┃ L ┃ L ━━┛LL ┏┏ M ┃┃┃M ┛┛┛MM ┏━ N ┃ ┃N ┛ ┛NN ┏━┃O ┃ ┃O ━━┛OO ┏━┃p ┏━┛P ┛ PP ┏━┃ Q ┃ ┃ Q ━━━┛QQ ┏━┃R ┏┏┛R ┛ ┛RR ┏━┛S ━━┃S ━━┛SS ━┏┛T ┃ T ┛ TT ┃ ┃U ┃ ┃U ━━┛UU ┃ ┃V ┃ ┃V ┛ VV ┃┃┃W ┃┃┃W ━━┛WW ┃ ┃X ┛ X ┛ ┛XX ┃ ┃Y ━┏┛Y ┛ YY ━━┃Z ┏┛ Z ━━┛ZZ ┏┛[ ┃ [ ━┛[[ ┛ \ ┛ \ ┛\\ ━┃] ┃] ━┛]] ┛ ^ ┛ ┛^ ^^ _ _ ━━┛__ ┛ ` ┛` `` ┏━┃a ┏━┃a ┛ ┛aa ┏━ b ┏━┃b ━━ bb ┏━┛c ┃ c ━━┛cc ┏━ d ┃ ┃d ━━ dd ┏━┛e ┏━┛e ━━┛ee ┏━┛f ┏━┛f ┛ ff ┏━┛g ┃ ┃g ━━┛gg ┃ ┃h ┏━┃h ┛ ┛hh ┛i ┃i ┛ii ┛j ┃j ━┛jj ┃ ┃k ┏┛ k ┛ ┛kk ┃ l ┃ l ━━┛ll ┏┏ m ┃┃┃m ┛┛┛mm ┏━ n ┃ ┃n ┛ ┛nn ┏━┃o ┃ ┃o ━━┛oo ┏━┃p ┏━┛p ┛ pp ┏━┃ q ┃ ┃ q ━━━┛qq ┏━┃r ┏┏┛r ┛ ┛rr ┏━┛s ━━┃s ━━┛ss ━┏┛t ┃ t ┛ tt ┃ ┃u ┃ ┃u ━━┛uu ┃ ┃v ┃ ┃v ┛ vv ┃┃┃w ┃┃┃w ━━┛ww ┃ ┃x ┛ x ┛ ┛xx ┃ ┃y ━┏┛y ┛ yy ━━┃z ┏┛ z ━━┛zz ┏┛{ ━┃ { ━┛{{ ┃| ┃| ┛|| ━┃ } ┏┛} ━┛ }} ┛ ┛~ ┛ ┛ ~ ~~ ┏━┃┏━┛Ä ┏━┃┏━┛Ä ┛ ┛━━┛ÄÄ ┏━┃┏━┛Ö ┃ ┃┏━┛Ö ━━┛━━┛ÖÖ ┃ ┃┏━┛Ü ┃ ┃┏━┛Ü ━━┛━━┛ÜÜ ┏━┃┏━┛ä ┏━┃┏━┛ä ┛ ┛━━┛ää ┏━┃┏━┛ö ┃ ┃┏━┛ö ━━┛━━┛öö ┃ ┃┏━┛ü ┃ ┃┏━┛ü ━━┛━━┛üü ┏━┛┏━┛ß ━━┃━━┃ß ━━┛━━┛ßß toilet-0.3/fonts/smascii9.tlf0000644000175000017500000011576211327706453013202 00000000000000PK- ;e-A).Y#I^B<}7| 2hJ JwB[]g-g-KkwWuWUwfW/>=| Y]38yxsws3R;j[c/cJw_?~?/K/o~wzNjHs(4)g͉B.'WWnf2JR+ge'|6T$u4E_"3) j6tH#/rKUZ7Uf xJsy<(*KV85,'_̝ʊ߂FU]25SQǩOsH+]{TukݔJVK2۽MJmk3&esLuiwk*}-$;ϡͥ;ʢywOE8s4`uw_W~M_w7Sk '3n*bZsg/mQǬjpf];,Og]nܚrXX#}Ϊ:Q&9uIHzT9Gq1zR#{W؍S4YEWQq#.\vmX>סM|Ő|2꩙yBwj5NK;TQѶ^y:Gn{)ZKQGg士~Dj$9hRMd #s]4-#Uu|6l`dbt6nIWz곓ngSُKy8E X;ªo>XWfǞAg7KQZWN/yuV3t/_s!k@I!xNZ8 Pszz943%4V OyYKY!rrY د>Eݺ5Gx7ʥ$ ,Z5nv>Pk*A%E396(.-nϭ>3vy|]re zF,%+j''vNOZ[j b)lOS^O><@}xv=MԇYOa[}z ;)/>¾z )p>±Z 'S><O|z )n|z )|xf=ó)[OZ {z2]*~=Sah=duFOK+>UWd^*6Y+4f,/xdz|x_rG.&+^6)ɌoR  , J+~MҮu2,MiYwZzr#[HckBI>3ct5K;$mԖF뺋*jr1 ܶ/L ?UoO{XßIhI*ީQûa"{D>WRK5ߢC)Q^J[| {tW>_!Y>|)dME>; %}GP>gs0/R_|xhME4iW#yi(ӅP'G'kӲRaC}t zl5 L6GGːBTRl͊Y9i,MLPV=^fB6vGuk.P*쪏.秊GyJ K U6GܦT8T]a#UVP8V]ayCOk8 >yI=t(`t?eT!J uC7 aVR}+~PSfᇫG o\ݲ ] 0q=T}׌`t3b%2,Q*|jIl_![R[Ⱥo.yBQ*Ȳ 0}K)Ȫݺs/if97]3+ЩsF+PFKqC0oz9ޚ-JY[WVFVk0oC{R^=,cMTy-S8]횧<:Ҽy 5CT'O6e 0,v 0o#v wzXRF祭NJ:eW{ -7U}-ڟ 0?bIbIehMQ*4;VoS*جvI{2l8>>ia+6NlOya9kDO}|Lw+>>Sfys@}|je;¦00˰>=/Ò¶*Zx, ;Y UMreS_4ʰ>TAP&n2TZ G㫺;/GQ*U_6ky76OVmA|xlW`ll3ZncpjU|gT2nƕ|%ve>ܮC2>܉s2^+{ʺdP|x6X .U*e><2eKnU!81_ ļ .]|`i +w^ s-|0{b2^~,I#Xi>T{-^y2xR>nL+76,۔a(@|xۚ>?1__t2F:? Q2;Bۊ}>xERPj)ļMX:&&T>փuLN|xoyH6_:T>ͪ2|0'm=2 Cub>$]z۔apB}rRI2 6'2P㨩 = b4.Ҧ2'ghs@}bHhw>16ez`K}G ¶q3YT;\=Oa?6f_8PaO}r'C#U}ɥej2/Vuҍ?,xo 'Wme8VTY|6Otz6] ` $o5ll. p* |yP!P**[Ga z |OIR z>T-Wsjt^RPܳRL`6X TUݹ &y?ԕ!P>L?v|066·>ڈe}c \:G|x*C8jp b/*^ꁽa|x٘ V>Tv9\dpc 𪙬V*5o@,Y놓+Pf e>^oy0˕aW*6?tW)ڔ!l(7oPvs ` VP*}t)OmCڷ<>W+}ϧ}6RPy/(TڜOT>; Z cs-|x,Y?Ke>XfYoR6ԤΆ?PI ZrE_BO}zRpO Q;} qYUf iMSa>%9C˂Y*lO-vN[\lO-$l J>=®YaW}zjNwԧ= UguW^w ?O/WmNCYT8T^k2 ;Gӫ޸]_~էAg,k2sND. LhvOZ DK$P>Tmu5Q3)*P:㢾5w>Ӿ9DK m.:pb3^oXn |%)Y.zd9N2g]Ce>Tf=djJ [8oΓ6bKo|OGժBP><tZ1.٪&3~e9Q5ƙ|x*ƳZ :rE#8{Љ~\ #_=oF*?:X;X*3/x[~פض/&[Zaj{6"e>n%=@ޱ?Z=J%?yJz^jX+^j/R{?c@:r2y=~D§u-Q{+a\@`O=&DwtO%>jhI= |>CqP*]l}t2]' ?[@d_mZsWJBO";w[ף&,w z/i )E>*b$y ۂނZ(2*S(n5 |ך35 |x;n><2mfv>*,ãxM"MͰ&NNz*½&zAQ[8ԿEM@}fQdVԌbq>;*%g/iٖ*>n bmAGwgWaG}vIǛ>/:Ag2h!~W]jR/ÁcAxkҠp>VTV*:8V]Ma-7OxeXZ^҃Z'A~=,u s|(V(Y1,׶T>2+p۸ Te2Lje>[ϘJe><|ԫz59ݣtm|xS8l[<>ٱ$qvУ8>T_Y_WB2+c{a1DŽVcP?x1?i~9IgB~,UH~Y1!ް1#sפESkVMVPJݢhR>Uca9J26>&G ɕ(6aCDO}~JDJ3a>?NމMxNlc-PmaG}~~,y ^ڱN/;>^WT8T_ڢͮwH}~ X kkamv^߾|xKze>\_RpX{;*e>Z ;k"u:͢R>H>?V'><㿅NgS&3$9*޿|x-R棒F|x\MU+w^2&f it4`!=8Ӽ~$(pO'闍/+,x H]3̽>XXa>˭zz]01v *^56Y^n^ZΛ='2+Al|^d2ފe6m1_ }ɶe>I+ ʥz};ոNV<Ͱv|oL35&i&>=j s {2֤^ߣT&?V}CqQX#0;h [bΝ2]> -Dӱ p]z}0((M*v4KdY= +<uatz~VCkgf!Oa=,i7/BH{MEeNeU` Av{^͎5b[}x&Es2KQMfI+/ s'`W}q 1DRS_\K47W_&iӣ2t B o>*^}$zHcӝ>bp&A-lk |xXo.6O *doǗ c(+MKVQᆯ`zX)LCe+>Q zLi,I>{M`hw>(x_GMJP> `eIQ߫٩5d-m|y Q髶 _d<6SIam |?0LxA͍|zTQt _qfNZ>4 Cm|OVz;癜~tUo Q;F!wEx RP_4K/h>[ Wce>V}s-2^+N>!![*#7-1--fBYo_4(xvmCpccEN GHqT|I"D~Edgm-3"5 |0l NFI㼌L36!?C\vgPvj|d+u'A?#[m?ڨ|nlt-/f!?(}"F1AE>Z'!s ;'ԗ'V+{H% x[hǻľ7S_i+ NW_B0P_L^ H?趈7oM9>-mo9 4PQ_!yX K}h8ԗUPW_'ut4u /}^N MJYs./&[DH}yU]N6PcoIWhFGaKO]`g;,hoԷgW>\?7$Wڐ8Ǧ~ Ez}p+^d:gC`ZHJѸ%g|[1ji |&ZI^|I윾9k|I?gCl<AM{L^u_>(!5!H?>C|d #k`,|Ot0mBGkSie|C(#3^[^h(8>_/s7yŠ&&&ra5̂>xN%>T>0Me4i3_PzS&^}9uryˁe|~.prߚÌ+|x{ 'qS|xKRpڪE*?)mBU ʞ:M =oHGN] }U`ǰyV*ueT_2oo*Â&l(e,$]mp{f^f6mxUp{\]hh?DY3 WC#T|CUhː6H}SWBmsB}}r= `hS_ mkaIڿM״6%] ;kcU_tΞU{wגCp6 C`h[#?79V_C< 0Ȅ\]~^4 |/Vջc0vFZ_ӖBߴ~>\ (neh7v7=2wUU.";^k.7wwX"Ƽ |ת5z>TYfq] a9k:1=kd*~\Z^#-o Khoz mn3=[h9rMhNTM*k\Bf>A?躛8bPtX`RaPݿ}[6bS'q|?,գahm{{O|O.'a;@*{: '}oFš<2?缚1[C?pGPk_]H _PߜQR#^PAO}Ҹ8oV0P_ħ.Wlo i7~ɑ3ϝ״RV߄:tg~v7 `®&UZ㮈ÞXe{ ?,:T\,ÑjTMoxqW);8 POz q4oScXP&5s/VS>)*yNF!TY%q?7ͱ `J BE{cB "-+*Dᯣ&! gF[đ|x7ۣ9y̾eihQٙ;r#iޅO,Cp={!j䉧|U۹|Z4HL8HaENvYT7o|Ȝ^${|x)^IiZ#C}QR%h2 :|?x$m҅~|WO]i˭j6lG ns'g1WG@0Cd3?>'I?7/RGM|֓G?mXZc 8qϢ1!?QfzA2c_+uh/1?Bc;wwy |/9KEV 1JN +c_f̓`\q;>0-+U7(rc8-Xُ04dJ]sL|?Ƚ:׽R><7kaRMI# - IsS u27NԷIn $0Qoxw.u981Pߞ12Jm18+܄>8M՚'շcQߞ&=]medC'(spĞ˚1[(X T88T Է-g+fd1&v$N#U/\gmkRfmM\c?ͫjwJaPV^lzK룒```p=(C&級a-(4Fn. r뮞Qzu {V=]Rk? 6o/`ךKy/ 6χ} |%=CeXa=9a߃A{-#m_G#+nS\(/xeX`>Cu[b-cT?x= Jz }|0-e&t>f36UM GXnBU5,-=by!u&9&6J" J|0 ; c$P_PTSB_,t>T9EwŠ|KE b| Nu!8 N4}]֣A_C!(Cen"k|Xa>آP!H>KD b|?,C IalG ;uq0|C.?L~`ڕ]l= 6wCfqt .?Y㓣F wAG!UQi0U{;?OS83}]$JY~08P'2YC]f,ϳ7:,T l$Vo*Cfo5m*dlA+pXKڮ|(zh~>'5咢-Aɺ{BCG.s`PXo$h |OR\^C}r_'6}0.6ЪG *n |QZz0C|Ʊ;IU-}=BPb vHa|0=Von>>F|Or9h)hЛF*pH"aU!գC-C~ ԇC Q>$џ+6La ?^q!(/pHBtQ>'ՐQńIB tj|?$\B,0J!ݮ1=[7[&fzF!m ¥= Q.'Ȉ>>oQϓm_ 0$S9.tq0)m4\^ !i&&fm?LNJ2 Y:7H57&a/] )!K ![ chOyv?r zBVDC@}$$[6!?ԶCO^z *'MLi6?n.3on,xܽsB}T]iW"'w6!K8nMBz{@`_tC1`+ g^¦"-Y-WIV)Î#RUCg8mP*/򮥠j3 B{vR>WI}epPxV{zzE++CeZ BKLR>r%me(|ܩz`;Ve>'Xu GMaChp@{މnT)XH ?P}+x]xE %T>Xڃ,7?:4Hx C'G !)*M^3;!|t|><痁. {i+){Ъ {T4բ0ޚ{ B3FVcVFS7>LZ *OK p\o0ŤUVE *"_X>,WPZxds_jB?#{m^RrIP?b|U&``ڳoܤ +}|_SrTLadHP>C+>nU>,jI|$W?X?^ֳz^Ull77 4* ¾P<}>YICdz^g qhI2pȶtv|uPppBpjV?P?/+yq :T=]:V?@Wt-6*"yR+`KB( eYa[U;rr=^= \]`nZÞ!?B|b.*.փJ CpI2+|CwCTZE-!"mZЃrCCe`<0O9f2*Ѷ A{E(3rakT"!222 3(D*"E9>J5J/a2^a+^G|gpp|xUpkYk~=,WZ&zF-ZOެ QEG-=o[)/1qѶ ?Wc=>T-Tx\d1x=m>>'32(knMx& FTˉ|:]LwMi>1< -D Z0; |e%/ +wQR2UeP?& MZs~퓮cTNmcf~ ػ]0B_G%55Dج0P?96Տ}-w b=l,Ș>mc67 IaG܏\[(uFLQaOn O]?&Տ>UEf5\cq}oՏ> If}Hu~ U8V?|0ҵ eP?x7 ≯Zhmz >+)!}SnaSQa~퓩3QO6O}2Ֆ%VR?I" ?m'"b8eS`75~ ܐ4Z{~1 '?;BH>y~ ✔p~ ̛#Sh̝Y? OӚ{G | nMJ ~^]*M?+|a\"&!"7JnFM9}Y[lZ>ޛ[k7S>T+prPgy}[ W|xF=[vsP'k LܸB`hQ>_?l|`4~| ?*=k+,]EaWh|> a>J(!*b-~ zenWa-}R$O# >>V-N˷>Y!l3|CkҙS 7}-:ZG̋`!B ?>+Z:jG[(弅m9̿>x՛>a8(ʫIatoy~6XL;bz&|M[x?oǮTY~^'osjv|쓦z>IOJ>ɴekB W!>G˰sB|MI~刱MS?KZZWρ!r @G*aSG9};[ ?Ll.·V?Cu E7zv~>zrgW& ~ZZrvϗ{WS8R?_]OX|m 'tRx !ػ[TXFhD`hgu,swBYAwx/`DωHNT,GM(Gj@$-(ݬ{# Ab${9rֱ_$) btLߌ:.Hʸ.}3 $@B@xc $W=VxLf @^fK'wK:M?3Gio /n׾D%gӵX#BH-Ń}4‘c;EDqH /J[ӕ@^ѝ\ KoE<H /$ Z:"/h\>iR=ںQSC:{ KFsH#C^&L_y!0YB'IA^FLnvIVuR@^lv0N>) y `t~x6"c64DS N_y!2^' C^L㮕H/M^o4=XyzzmG"@CK /˶?r=)}~l-T ̙:v @^Lncˑ#/*wA=kU>8n@^W~ZmE ş3G; E`\E/"D%_x \Tya5IbIyQ6Cɖuxߗ:7Mȋ|  SE%bF<ߍJ /*J] y[7JfBB*$ EeKz'o`:B$wOw+׵ZUxeHt~1^/8aoK ŻS,"ŻY.)Mcv^[/EKxnh]f6/ ,e3^/ex1^/K5*~8 o^/~! X^/w ȋ~O6ク.6Bwv/2 MJ /$E݋ /۵ E`Xkm"/ U'B U$*T„Q E`!`Rt%Q]@^ ޔ;h{eb oDhq% Ko%-x],hU$I ~(nT[$"J /% `%Ay`*K /E˲)l!/$EDPB_=Ky!/j%} _%D^4/t8pn=:b y!8c1d1)OXy!xcyPFyc#);yA /|U.d#)~F^ }H]X !cm䅔2%=eׅ9DյS"Y>i΃R /D,e7[jo#/Xu*m-LT,:vZjӪȋ1k)[6Br^]WF^HYTE3;] @y!8giAUw"/, )މGdb?F^4ď*ڤ̍nFjĉ9yryRHZ$z !hDE$ !_ )UKm/JDj)]-" [']Ry!_P%1N'AR+h =oH軹C dO c>n Ey MwvB $CQ:Q [y–@^`%F LRy!/I /$EK EI0 ,LԌftl2yV·_L Q]EsMO*/>AhnWy/y?.DJWyQoh@^ +·_%=~Q XJ d.R /$Q K /mjZ2LKuE.tp䅱_DoxNu"h*3@^T m)O" cX)S[4*~}պs8uyֲ0,8e/v3Y"%hhl+8UoH>J/N -Telyο:Te]kb?Fο/8e|U1)p2#N )" r}t{xq/U&3HJ8ՐB^ ٖ/4+8%ŏNEp4$ňV,9%|^:,8UoH&~oC or:4$"㴿LZphg׋ E"OD^/u\wy/ȋ(l.ܫJ$-y_@^#-u"pߠ;@^XWEYB@^XS%??%veta.{ع/X)q@^ Xy!ď4>Hb yq= 䅔B_@^4_4I /F/H /lEy_ ŋI /^ZOyzȋW֓@^^ /^[Oyzȋ7֓@^u$6<ɀ4!NlStjRxqڏrw\,tԳgpзi{ ޹gX]paf>hT=H/ΞӞ]ͦ RI|t˦u8+: SK/:Ϣ꧟ُE)e(cƩ3fы@xqވL&:QG"H/79:#HZƏRu/ΚȘQ9݁g%ȅF^5*~# ȋ1u m SW|œ쨕J] SϚT}ې{.3g]86<9OMt}] y៧[:MȋEO^?7Eу$+H;# [M mK 8;v"\Zͣ꡽ϋeZ0 I 8oBfJGN/dX.)<; y)'fiC{z:=EQ^#|L!t 8c!E8mt,I/_|$4H;{q߉ 3C{'RN7dzh<_?և]yЅ1>"tș,K|y>J /{'g6~/ɈC{y٥N,wpYya;'Uu.=GO@^; R !g=&K /4S`J /|{Z> w\2 'WygS儍$}£w}5DuZງ/G4( {K ܤH /ٕ@^#n IsXy;c R /CvejDxq$0Yxq!ѣU/.#4*~.B`\Ld;B`t%Ə\w*볍ȋ ETB`~h)+Ə\GP" !~$'s !EFC ~ȋ~dlDђ?r_WV d&^̋ /E"ODJ /ER"ZI /"$w(,jW?r~s_=3r&K /vh/Ə\GIB1~嶦?@^H/s:cIfG./ =/ʙ#^Bc*K /|vL5ȋ0E>0@^x)D EΙ:-x#T'/R{iZ^ߴ,_hKm ǖy濠(χuiώ#B-4+l0~BE*SrJF^;勤tad)ȋ0'!ϒo!L`y!(KQHc 䅐3^yX E诵T] /4bLnq@^/tg:..a"Qr}zǥK#||9s'*[^\ /(Ȃ x)8K/.I>x59K/.YV@&d68/.GIJKbrI/. vK"[$m|Gizw$ěq($b\N cW:@^^RJ /*̨c!K /|I?D^T tJY@^95Jֿ" ~A C䅱_;eV"/*CK΃=oe 䅱_ 2٭{Êya/\Q:+< E/:qAty!ܟ 2q[ !~DG E?Rd)y>pH.BӟW|Jӵmʖ;йY6!M'G ~A܌d-ϩ[Vұ" [YYD#oȜ`̼/\1J ~vi}_;B^ lY@^ݜry/w²_aia;DyQ/{3h;P;au²_k*yԌ#dz0禡95)Æ"_d" !_N 1GI#/= ~?9"_*e ~A.8<-Sy/ֱX##/ޭwB)З@^&cJ["ȋNk9ȋ >>R/0 Dw8wyQ_ "xYy/1C~yaXgYEB+ȋ~oO­\(E_\>vf}qY_d*Ն1$r^D^\>}1#rS] S |nJ[xq9Y,#\/xJXxΜыTGX˕"z2,|oԺR׹1KԔ¿Υ/.EK/. X)K/.S/r pζ$*1e!&a+/2dԕ@^HDN TN?451~Фni01ec`Mؘ`c˾EӥEV{}qYUm|}q_ eN砏/. <lfq63K /E0\ Eh *hw>0 $0կ-l5M',O0@^4?R{׺/. NeAYO&r` S 5qY_ v6Ԃ_\Y٭ .c~- 3p%aߢxBhd pj'`t}qٲ_\Ët/.C9?+ 8X ep O?M/. bORVi+Ote_:UÄ/.|濸l"ՁYB% h%}qTl*I /"Ixf Oc~%[&Z cR͌,o5/.KPM(f*I />%(N^yL')#ČBaQ,"xM㌝39/dbI /& 9gJWU1e'vWNȣ}U^\9UU*\us> _\11ȐyPa8)>濸r&L81LkQ1ŕ~Ecֵ[Dxq)ev3b+K$,$WڀrTtEW t46%WSt6I' ^\*&ᶏ/\s>,u>DG*濸r9 1Ʉ;EExq/#ui uIc }H/TQeEmG0~ѢkՋ;z:Z/t1Z91ŕt.Lrݱ-hTqxpS$_\1xL"ijI. qFUn۴ͥxH /nuk yDyQ/FK_8Ɖ<1!~dNׅi )'&LϺ ~!ʳz?ғ K$d=PyШ*NE?/2/Lf}q徰\s W~M:-Bb+sJf(ȋ~ɭ"J%u-qu-q/t-VgyfY%b+"ɕ9(ȋ~CΩJں@^#\DH>濸(fɦt#/cҵ9D}q_|TyU)h_\y#nPKy!ŏDNi⊱_Tk-qFᐚpc+~1Vi=/0c_X~*W* U!i[WE RH_\ N2·_c#}q%ї5~/9|R@/#U'"QS=K /uuya(%E١Q;[\:׷ ^OLBi?|%ִR LU3Dq呟I䛁g_\=)w1dW% >M&濸*th[.B^\_5yE_\ڟ Ǭ>/Lr1Mf!H/V b6G}#2_\ +e*Lj?¶l"#AN';)uF}q5 !KV1^\G} E0濸zYCfB#;-WHn 濸Z_MJEfc"ڕ^\5| C^ #/VJeyb^oEWK1/S S~)@^d6}qȴcg/X&$c~mb"Xa0}A^/xB9Ez0~4i71U_8]SA1K /Z)GV̴_\{԰Ò@^<[/ypVa s{~pG\% 濸#/$R ].0WNqwk濸$濸"+U'Zy ֋ /^2#ս:S 濸r|ý.$L)ե$R /^#I /^J4B- `?U ?}y]j?Rfc?o` 䅱_L;dȶKRpKy >V:# w{Xyalu-{EE·_jL)_\ uN xy /G 5)[H /qBX4@^_{vq:=!L_\_5H`k'h`u)s=q/;ZFxqt})rw)S1ŵ3@vQb)z/ڹ6_xq7DFMx_\{{%%η)"kl=q%/K/8"5cxq͏q?;o^\G]}okB̹Z^\ GQrdgP_\{b+D !~MC˜+Gt(>濸&ď0KG 156'yXy/̃EmׄS9QSׄl$ l紋/ \.!]YUW 䅐Y*[d_\[*~$Wm|m%#m%&~K̕B濸f_?En?ׄGZck#I\wbkA+@^]3s+98%/Q$'xm= I /XOyzȋ֒^Oy$ZOy$'xw= _֓@^u= {I /_Oyzȋ'zȋI /'x&濸~C,.ݟJvȕ^\?ڷnbg*a^\Iz}a^{ξ/F̤^\ܯ -Ἵm⺐EQzxL&Nc xqRUKb u1]#b^\Iz#*g / ;R⺐BsMq]_^4H /)E`$UNqFى/߬_S)P I#71;_ȋ/Y Aag e71g(xQJx7AyVSzqwS*J!I /P?F؉/jȋLjtJ /^jxzvb/7AyJ*Նl(ⵆR4H /GlV?R1u35H /]a;I_\`M:1T  .$ p_aְ7m ȋ4 濸׆R4H /ޫES] /o ȋ"ȋ5AyVB@^[QT@^H cQU]` w@^H;&$ł*s A^wy!_,dvi@^ E~S(]I^ܬ%7 5_^O~6"翨lDxq|R4=h/n^$:kG=` KI/n^e?@H/n.)i/q#F*З7?J_|t擏2ۿ/n>X[oex,xL&y䅟-Xy!?RyQo`K\BFE^nu/S+1Gj!_ܼPA^ܫ$.E:JT ų͕_Wȋj%A^< Q? `[Ϣ7Iq߮"?u*h&濸R̜mHE$z.aK /|aN1H /|E$"u1ѐ=)61M?'K e"x&I /KBߩ/FS71Moz7 }1UJ /P%#$є$0M) HTYy!_n$3qS`GA/nJ ϵ]_x䅔%*\//n a 9E` 4FfB$&濸)/.-k !$B/ʷ$@^ d  ~0|{(iI /&5Y&J /$yӉ_臶K`['^#9ӟE$$EVQoN%ob[M80 `[$}h 陰ĕ^GH[3gaC^wftȈ(J[BHR/n ;5-OS.A s^pė^ wr)ki'J_wyQR:[S _ƼRc[AHF/2ԿV?¥[D_H`[$cEB)0ŭ ~DȘZTV4*g[_y_8u:1ŭ{ E`p$fA^ @΂s$;1ŭ~+Xa6,P,|tt<÷kw4,[+!g` t=xg#yܟ-B'r6 @^/,*eq%OͤFE^4p% q~H-)_SNia[4fe3fRS9ؘfx&B_b] /S$KEE%78 {3qK_0#Zy!/J:R /|)Ef/BKqaJGxOiJ Boɘ"B7eN3aώ/n jb|W|ԨoY}`["J /|E"A^i_ nЋL"d) E`XE´֭g'濸?V`UNwNR /E~hBEJ/x>" !'_s2濸%/xd$KBF濸}Rhu-濸ARr _ܖ@s _-vEd jlKZe m~Ѷۖo2=^p mc\PhNh1/nh}{]܌nS-q۷_ '!ѰhJmaaHyEZso/n_[Dޑxq۷_V.6" /!3/nhꝘ⶜pGv} GR"_-kl; %oabNW_ȋz E4L&ȋ~X.Qoj@^%S-q;Gru"/jLٛǵ)w0T':Jֳr _9[??±/nb[v;(X+濸};W. ~IsM@y!/"'g[`o//"aX PJy!ď8PyQ/xSC: T u?KӞS&-qe xPy/܉K;H濸/2i̩S /raN+$-q;_ ]y㧒"_pvh1'Eާ %q[aqk _Z0Zx ~u@^ s9^y/t)ZJ /|E. Iyܟ Qy/u!J /|E.D ogr[#HG[v`DQ.00m~K ~k\Əz E}HvKWy/W\J /,EPE'P"濸/.|fNJK`;'-ަt_ l;~7m2m&-qǷ_ڟ"2oE$w|E>AZ-qǷ_9>*\i-=%w|EgT~/g _ܩ~b1Ma;ESzM ц濸/F %Mo0q!P/lXV`+A2Q^ܑ_Пna;E(|2-tfK/℈/ HQ[Nh_V!$C+w{u"nw$_~ډՖ@^2'T%áIC E`ȜG88\ ECH" "O#g[?eUq-qG ~E /BW_ /2zq$B?DL4b;"sZi濸/x.?oB*"_8]ځ濸sߗ;gpoa;k?/$©(BѶ ~1wzk(y_j#/|"_D_ GrǖC\He _ _J(/;഻/4( EY(շ"_yީw6͵~ȋ ~HtH /w6NqGgigoTqGI %RK / }۩@^H/(7WF,_t$"*䅔BK )-8swgyii[}g(O=J^`;/1ŝ½|6ܘIO -S~G^Fcpfo$ ~Av^DS)w}{L^mZӕ^G9u%wJ:`fB -%w#Ζ1 ~$*ё$wwR/ ;EtW +_$0]~ۚu ~4h/ |R֬(#Ayd_;wP1"qWP6B/濸[/a(n ?i/JAn`g]!+E(E$EQ_ d9`V6@^HPW]D^Ǐ4J / jż4V8`_EvM݋usҬ$<×@^<濸{vp#QoawrL!T'濸Hy\Ӟ}AY+^1@^*UZlGeȋ~dp=EtP7Y,*M9# w"4])&ۦ.9f/^ȆiYy/[mB3]r%bN~T{e濸/d._?QLp%s+iJq7/BR=Nb[neX؆N+zJa5=ȋ~As_F޺9sj: B,[+vȖf3qyXN)"T;S>]G*濸[/:W!q²_tӲ_, neۏ( ڮq {)h2w Չ݌/};D7g u0F'צ wB#\e o)$rgqvbkݟ/u濸[I|a^, {™*_B0v$ꓲna{g׫NŽsI/f= Žד^;ޅ$.'wi= ŽI/]YOxqz{֒XOyzȋ֓@^<zȋI /n'zȋ;I /'$Ϯ'X~/g'zȋ߭'zȋ?'xa= ŋI /^ZOyzȋW֓@^$'xc= śI /ZK_{{= ד@^i= şד@^$YOy$'x= I /I /ֳ_`{/0Žu'N;7@|/m { }ZT5 3/ly2YAzgw PɌZ 9SKb &QMFIGKgKwGWYLi%Sԗz O2t7wZ!S  ҏsIH&VJ\IUӉ/H4k& )d~[T_}Xn*a~e~j}B>Ҿp #U!҇ }EH]ŤIK{”zblҶ }ql"Z ^]:71wjO⁰q:6G2e=@y UuͿ&0lZ}U4H#~ǜ<;OԓF^}jQ[ÑE4FΡ\כES]#K{Мzs{VO?F~&G!_5y}1\VVR#z iYWe4]e|R#XS1-J%F^ݭKӦF^?W륫 W4C=};p$u3-? T8 륑׿4} 4J#O/UV_4U:F]Iqkf&Ԥ&S!:1WEǙ^ ^_/9?Nֹr7IyyiMeH[XF^bI+&rݛE*UK#_-ݕǹ Z,&QikiiikoC>2OfKK#Kj55 :4򺴷vNZ0GofJ'6K#TVm)L #H#i#:S4][:ң#UZK C' F3z2JE)#/7}_h̚Gxu2ok9?tI22{؆/K#߷sSWEvџZoK#?'1 &h{W]x1iߢӮze' o5uFY.uV5Лg4l6뇏ej{Z%fU 5S}C^?~u2 ק\!2fz}590V}קN?F=^39c%LwUrr>%ٯW(&kjS, >eۯ;#o.\DSe̜ͪ4گf[D-fUs >%دR/fgY/ק[ pj%̒G4?j__*, >u)2PEu6p:~nO]rfopL AkFM^"Dj^b-ŰRoIJ}.zگ,3/# >u͙VMGWQMT\*tiuk3vlOr7ץdzHslk~cfoگlSs.V kOsc5O$;,aN0ּLTo67Ki^4/וF^߲~V:iT!ۮtǔ(֑F^_ުMax3,i=7n"tz J#?(nN͓AQQL5LF^?ISfŵ:Ck݌&4{ծ2m|\>]SyPz͑L[Mbd폤=i*Z T-#T^, 5ݢ^yMkSӌmәVF^^X=U_t=\'XyW[~(늼i-Ok~ kj]fkFOy(J뗝iZ>"ivׯxҦI#_u”˥Y22L7F^N`q6!d>L2+5wקX^ 7vE^v׹4^aN tf\eeŝ/k2O_:?_MB% vקmYߛRPYf0l^.6nPjXW.7JO_YU45x糸26lĺ0* >}MM?M3\!4xB. BzFYP] ǰl:i%C9KtTCz؟-Z]S֠\/' ;_lyد]!q8;5v׎)2}.g9ք}ʕF^߈+pdzr"i E^ߌKwt 3"C C:M]a.?Fy}{)ǦW,W4?k*5ڱ_wϹ?[~:i]>:V`99Ҩ-0D[lkS=o>7Ʀ]JY?JX1V k~m\"?x?6CFmTCԕς񊚘?5-/:]Θ6sD9L㕝ɠ~IkdJx$ICTba VS4xk!_Jmv`fYS3"_ȑa #A=#v%6뤑ׯ=n8fTڑJe@됆F^Iغ7 C o-#Ӡilĥoz\uo݉UEG}ŧbĆ#ܿjK# ten .{y'o6Y&י T5Gƞw}5ٯQzV"w% Id2[jU}EF^4ڱ_f/cEj&LxT/~ϓ4ڱ_; ܋*ʵU#گWSmOmKk<Ϝa uJ;^9LSnTQDM3N")t3.j꺱_סE}=k\!3kXF42XH6@x}70`PM,XLQ+ >_zdsvIa M~:RUq>s-^si:TcBd[ V! zF_Syc>iɊUOY?vwu7&Lu5%8D^?Iiw=iuWZpimΔ2IKtr.WSoFAWcjC5_/4-1^ă ~=EמZL(g/|D*ҎK#B֕F^?I3Cfjk~Z3YvJ1_K#u:>\A{jjMAy}qx0 GK#}Շ! ո;B^Ϋk=mحwƾ@#dM] iF?B^;kwKJNhF^KkUffjOŸ ,Q-R?!׋ĘfW EF^̲PkKU~==^yد]"ؘk#Krץeyj #: ސ+ &&cuid}j8k7WUiFs\ד1!*Utwn.L,l~sXSЬU|ץu5h55h`17H# }VPe#oIc]#k{,߶#k)Tfi;bAg,h1ȏY:ou'c_լj}VpvC#3Jka*~ڱ~^yMkl MVU9 ׮u+rrG iF^+9FyW#vv#ՆCR ~8 HRjS5,~Eyߨ*>>>qB?ٲkSP964ڵ_W“ٙ4Ouk~ ܩ4~C7 ڵ_w9n7Ae{$ ?HF^JWqTzonJ=SiKIW'H#5ϸ c^;Jk~qC3=|kڎ6iC^cߒN ׎zT n23$76yBׯҕL54#ڶ_c/{18t\];k~=hr=4mftiDt8N(CFɍyjrOi3)H#dEa`73S։=;z4ڱ_w5CPΔPEk;5ffTUe-^e׶:I}_JJ\]ִ#m5"]sUv!S GN;-8=yG^^zfD^;kpZ|gŢ.sH#K,Mx6Q/c|WK%3F^?LfDUZ ~Uȵ57Ay-دkZIN߬86^ꏈ[-&3imxH87W5iڞy!jI]m:UHFzԩ^?s I\jFsCf2ᚯ}Ix@h6W%yino! `ޙ75 _^:r֮OAxT! ͊B\u[6VA~e}ǤlGJ{ObIŚ=x@𿎬^Y=m"}kݠJq}:@^Cl";f/94oϐMMuWGfikk6'_C*F^ CsΗՒ4:?Vi ,H#oE NYYi77ׂuU!rOkl mFby*g̢2㛻y4בc z[~ֱ U\y`6Uܘѥ!Iu_u H5k1k_ϖxrw\魇(4o?)zK O_>hW_R5 = K~Yi蛅$|9(:)+pj({%|9h`rUE7C k~|"ȩ} >reC BHzҋ wBq> ȗpZd.6rmaTm@^1n=syQfؘ%$e޹xAwn#/%ALl_nnɜy~߳J /%bDmbsۚ⃠Eh1[U拙"vD$ .괪 aC!)@^< :)l!H //j*^<<v9'Ŝ^7%Ou;JxxF.R/;8?8D'J$yЕ L,o֢BR1v/F4_\ϩCIxb'Σ,LGᥠQT^<h;5Y)$c02IxZ/$a;+xHtp*P읻ȋ'=x3!fޙ ȋ߀n}E^<J`rfҋ /:#a?u.F q ȋAG9uyq+p^a.v5ftⴼc$2{p9yӅ\zeF.W ^#/$:y/*_UعxN ~ȋ1d{=5)&MbI /b#UAȋ: i/8+dڝҕ@^y&c&nXyalIeW oT ŋM$/yչ /^%u%J+Kx՗ ҆{V4/ԐѼ^yz%9V cXt(a!A$+x*upZCrUy_>.4H#/ޮ^&b٨[/רΏY8 c'k@^E$h?5H /$fuy/x:ن(Lu+΄ip%y@R /$wv c4ڱ:_V$-x ~CC+0 s|XZdԨȋGk-N'xtj= ţ~ڝ/U ^.1HGgRa{f#J/K؏R/Y 7D4⑱_Yixz xta= ţ~]$Σ..yuLGc]/ gmu%x/GVR/U¢r]S&$yжnthN!I |Wh. It was created on September 30th, 2006. This font is free software. It comes without any warranty, to the extent permitted by applicable law. You can redistribute it and/or modify it under the terms of the Do What The Fuck You Want To Public License, Version 2, as published by Sam Hocevar. See http://sam.zoy.org/wtfpl/COPYING for more details. Missing characters: # $ % , ; < > To create emboss2.tlf, use the following command: $ sed '/@@/,$y/═║╔╗╚╝/═║╔╗╚╝/' < emboss.tlf > emboss2.tlf This font is part of TOIlet’s official distribution. More information on the TOIlet website at http://caca.zoy.org/wiki/toilet =============================================================================== @ @ @@ ║! ╝! ╝!! ╝╝" " "" @ @ #@@ @ @ $@@ @ @ %@@ ╔╝║ & ║═╔╝& ══╝ && ╝' ' '' ╝( ║ ( ╝(( ═ ) ║) ═ )) ╝ ╝* ═╔╝* ╝ ╝** ║ + ═╔╝+ ╝ ++ @ @ ,@@ - ═╝- -- . . ╝.. ╝/ ╝ / ╝ // ╔═║0 ║╝║0 ══╝00 ═║ 1 ║ 1 ══╝11 ══║2 ╔═╝2 ══╝22 ══║3 ══║3 ══╝33 ║ ║4 ══║4 ╝44 ╔═╝5 ══║5 ══╝55 ╔═╝6 ╔═║6 ══╝66 ╔═║7 ║7 ╝77 ╔═║8 ╔═║8 ══╝88 ╔═║9 ══║9 ══╝99 : ╝: ╝:: @ @ ;@@ @ @ <@@ = ══╝= ══╝== @ @ >@@ ╔═║? ╝? ╝ ?? ╔═║@ ║╝╝@ ══╝@@ ╔═║A ╔═║A ╝ ╝AA ╔═ B ╔═║B ══ BB ╔═╝C ║ C ══╝CC ╔═ D ║ ║D ══ DD ╔═╝E ╔═╝E ══╝EE ╔═╝F ╔═╝F ╝ FF ╔═╝G ║ ║G ══╝GG ║ ║H ╔═║H ╝ ╝HH ╝I ║I ╝II ╝J ║J ═╝JJ ║ ║K ╔╝ K ╝ ╝KK ║ L ║ L ══╝LL ╔╔ M ║║║M ╝╝╝MM ╔═ N ║ ║N ╝ ╝NN ╔═║O ║ ║O ══╝OO ╔═║p ╔═╝P ╝ PP ╔═║ Q ║ ║ Q ═══╝QQ ╔═║R ╔╔╝R ╝ ╝RR ╔═╝S ══║S ══╝SS ═╔╝T ║ T ╝ TT ║ ║U ║ ║U ══╝UU ║ ║V ║ ║V ╝ VV ║║║W ║║║W ══╝WW ║ ║X ╝ X ╝ ╝XX ║ ║Y ═╔╝Y ╝ YY ══║Z ╔╝ Z ══╝ZZ ╔╝[ ║ [ ═╝[[ ╝ \ ╝ \ ╝\\ ═║] ║] ═╝]] ╝ ^ ╝ ╝^ ^^ _ _ ══╝__ ╝ ` ╝` `` ╔═║a ╔═║a ╝ ╝aa ╔═ b ╔═║b ══ bb ╔═╝c ║ c ══╝cc ╔═ d ║ ║d ══ dd ╔═╝e ╔═╝e ══╝ee ╔═╝f ╔═╝f ╝ ff ╔═╝g ║ ║g ══╝gg ║ ║h ╔═║h ╝ ╝hh ╝i ║i ╝ii ╝j ║j ═╝jj ║ ║k ╔╝ k ╝ ╝kk ║ l ║ l ══╝ll ╔╔ m ║║║m ╝╝╝mm ╔═ n ║ ║n ╝ ╝nn ╔═║o ║ ║o ══╝oo ╔═║p ╔═╝p ╝ pp ╔═║ q ║ ║ q ═══╝qq ╔═║r ╔╔╝r ╝ ╝rr ╔═╝s ══║s ══╝ss ═╔╝t ║ t ╝ tt ║ ║u ║ ║u ══╝uu ║ ║v ║ ║v ╝ vv ║║║w ║║║w ══╝ww ║ ║x ╝ x ╝ ╝xx ║ ║y ═╔╝y ╝ yy ══║z ╔╝ z ══╝zz ╔╝{ ═║ { ═╝{{ ║| ║| ╝|| ═║ } ╔╝} ═╝ }} ╝ ╝~ ╝ ╝ ~ ~~ ╔═║╔═╝Ä ╔═║╔═╝Ä ╝ ╝══╝ÄÄ ╔═║╔═╝Ö ║ ║╔═╝Ö ══╝══╝ÖÖ ║ ║╔═╝Ü ║ ║╔═╝Ü ══╝══╝ÜÜ ╔═║╔═╝ä ╔═║╔═╝ä ╝ ╝══╝ää ╔═║╔═╝ö ║ ║╔═╝ö ══╝══╝öö ║ ║╔═╝ü ║ ║╔═╝ü ══╝══╝üü ╔═╝╔═╝ß ══║══║ß ══╝══╝ßß toilet-0.3/fonts/bigascii9.tlf0000644000175000017500000017337411327706453013327 00000000000000PK- ; -8׮n9v& S"2h ~N]:R>d2"H^) }&wWhIrGVc曃?uqW]\{]kuQOM_~^~ӿ???տw?O_PS`TKꌤ@XVi)QixLUj|Ѥԡ+, s6HN?D¯1iL|JTq߫҂d^7^gS6j3[6\*s.iȿ_Ka_VT7 ի&AAp{kRW4haU6+c; CQ:xG2TԷ$C H clD;,IjpX}t%OV( R(EepV\H+P:GW{^:nT3ITb+QC寳X@2w=20dCBƲe_z`&$* #ypi%}Zh/W銾ܐ6beyf؊q(Ee+uA(Z#Ag(PەۭT1\wKNdRYPzKuRi&]CoR_7X*EaY-ɼ.+XF R3)IEf{ʱ gXʺ,Qeeۣ+)6(ڑІdn[We da‡Oa;)?o/j])jk=f~sӦUCuMQ: Aro=RMJ:5TO7+K0fs+NBЯ5ߊ&*-aN_7$Tǃ #Am詌{Pm-hRW|X ~qvJǿ,"jO fV 1u;]mY%wگtOk_\C"jaBDm٦eq]D= A ЃW:խMZxՏΰѣfuu\&Q3|)\ҧ\OCKbIS`|?ooXo~iȖK}dCQE:_Uh0xO5[kG[&٪ yY6hkkPu "5ےEI@%YHyúZMI$Lj*ƓO&m] [ w;u5*z3 v=o80"f}Jnײ^}۲m:^`2NcOVx,#K]\Νwԗ_d3>J]B}R}ߕ/3k]W=_:g|՗=P_~=T_~=R_~=V_~=Q_~=U_~=S_~=W_~=Wz>w<{y93>>p<3󿏡LbyMnεkT}oL[]'>~` I+IЂe:_.3+#P*Qu#w9  Y&4y#M<~Iˢx}/~< NH5vh<{ )0v!Iu:;h,2Cey>to}dZᨧ ֏?;4?F >bg?)qosP/K|y=ﯚw?HagA_=E%-G+߫WhQt}Ƅbiw<۞$,.|]:>)ڎ}b [r[H 5h|Jy,!&"*UQߗ*#paա e'{5*3Ir!.d[8]G|OP[D3>߅JSR}hJ}Ca^=|wW^ibQ&fZ[Hn=_ڼ.K4Sʆő)uWd+ /r)ca8ʫN]CZm{zk|M|WuayI>[]=S_y+ j|O=ܥ[QT,[^78W[ 0ly~k{K>ϯ~oߵZ6yn&>ϯ>y]O`ZYs.r;w?{'zջ5g:|_}МkW=Wy~asE|_}Ԝo/mũ <u(߁qy~qh~7p7?sSjM6n!G6>ϯxi͵$`D) mW5W%Q>ϯC[ ?9>_9->bK?g[:}4݀N܈.Q_}xw.W?_fw.WaEoߕ/ִv;/7liZƗKP,xwO}5.O-vr|W7)&3E=P_}u]9=T_}za.p;{Wq{u57'oZ]>ޢUN *]|R_.׍cɄj|.c;ay{Ohc[ZF%|t#5 _:<A2glZ<5 >kěCuϻ)yk'|AZk_3> g|Y_M_ ߕBu\7a iH;_3>ȘW;lmǕ:ݒ6v/oʿx|?}&jVЁ(y3_[/! P_k/ n榏ߥ/WJfsxG tׂvo\\_o>t}W}w#+J_}5kހ*@}u7tAr0J:[j{zO[Cp`꼤sZ_1K~YŹ4Oתs.ͽ[s|Mn!W{ mw]<~Zyka:0Ӓ{U??_ 9`^4ѩA-Gto7?_U3J;=/WyU IM|ת˛_ѾqfGPY%|&?_oڟf!>KcFԕ:bCZXNO>|$!Rqw-)ҟkv~6w[-{67yҞcVzYxԞ>?Gq9Us_-n`n#~]'Əҟ/z45?$-0wzYrqo}m.ҟoӗ_O ҟq/:ސ{WinQ=mnJ5sP-sV0=HLchNGo->Ł1XD`]#! d:'{Wsu1!T.j{[=ףYf_oV_ח? lŔuF_Ip.N rߦS'+Z?KT"B z;dsOGY z"Kc睸n@1!03I_ݴ{M?>l Ǧѽ7,k5hD.˜=C/?@}Hk8|׭sK,%)zP}N|Ts=x × 'ִ^$U:X}[xeHR*X4j$Y( UX.Fd*HÊS_I2`j5G 4$cۃgoϿQ5iM=W_߈$GkeB]W}u=k}[<ۈGm SU[Lޏį]3pN=稕Mwj8&>zXKl(&|:q ?kzZ ͺ8) 19>sݣ`vHC/^!"zo,:(>C6^\I–C*I'˒'";C'jJ珸J%w~{_0- [XCZh&ie Gkvhjc}FRV!C6SMe:qp:ya2d%>']MwzW*<'l5Y:?Upm4No3KFiXbxBń%q?x$뿏t~ 퓏<'|Χ\DS-:qBy׌W|In[v/-F'|_+nCi9dUڭvJm ~f?pi` .8xoT3Z~vF`NmZ8)+gN-ٵ_yL6]HRgD`Dj9>CB+f?CIb8^T/GM?C lo9mIo3cF0sfb>Ge"7oN~4>cj, ~պι*&Q4ԟEF yZ{)i7t+ȓHvm,qǓ tfhR}WrG{Y<׮vRߨI|;]o4R(s~y]vtotAh@I{W_CzY6Foߪ{/xJ;=Rhk`I®X}7/G:F9UiDt3_u~Fyw{ zW/yO=fPD'-w?uUfw?IԟUWX<|FՑ޼<6<=ݞ<?;x^7>1q-_Irr}ix6MX_-!O^Yq߲ &҃=wy+3%y~o[ԟm"y{%H U>&y=m7d?x_k14CX1Wh&[։K %ǦswyeXw.7+N]rrzK_XqwYsߵzKhTΥoVgSto;7wYl7ꛯv?yI>foI.uJ|7wK{Yl7' {kMwoVoL}sWoQ7k:ǿozsY7wϲ\fϾ!y+J9U5_WK҄_nQmϿ7?Zn&%FTy׌WY_%IZ)I-|58\7*<c_^x׊K pcTy*> X˪C=["a-iCYI CAo$݈[uIXX`V+7$sy_G?'T7J@$N6Xf^џ)$ؗdv0~Zilo*_y] b-Z',D,+(j{c*ej2sH<ێ"ĪW Dn|P_,!nᄐ(d?mO>S^eOz@ZI/U)-?/@, 7?V6_+_󿿪 Fu{z@zoȹF^^y+'4*֪tVy׌W,puo"I|,(ίjo_|[MkXө?$!RɿfRσ3=\Ks !3Cu5?xd?G{'y׎g)^#˧ȴ3urEaή?#kX֨( }8Iɐ}7_GߒN!^'5pLI,Ͷ_3%- L|[ q\oo,bIVG?)yVCie,"έߖWjkJf)=Q;5랒=PuEIo~ՎWfIZu=Rj+Jte':'[ȃJ{׮%ufG r|w`LL @+>Q@6o-cF)?זjV3o QE<ȏO[b[ #u-qa&a]Kx{`6ilK*/l_;oIwRD_=V]ra||o?o 1RlMSt<ڦ2?]ZσɡbKQ0h!+ Vy(e Rq!rݡS!¬ʠ ;y**{] ; _~=k$oo(WRmAK^ή+X-i?'vy_Ir-G[De2ִ'c-uGzQ^+[?]M%y:!ix7g~C_&T*QM|Me9gC P1>{[,&YÅLArweEڗC{}<3> x|639?S21dkyϚOUde.Go>ߌP֐IJ-m{Mq yT0=w$\qľoB|+3e|94:]JfoOa?$?(1g!=' HͻzבwQثV챠$9]Áߔj72> t% mK#KPX1}SC'SBJ">V59@NyWwNB"@_9o ]0xcShrD?&/JƠxٚyI}5 O\ mK09RS;ݏ ufR;)Sg5%jd+_G\B%dM)%ҊT <|Է{ 6kYҟ8=?3"Fߢ3wn{ߔ_^r|˜+e>w)?'8 MbN?(2<.=ېޙӞ:_Ξ#.鄻ɾct*TߛyBgN<ŽvH_6藙-ЍS=>;Db}s<8&u cPӫ?*?XҞ#_+lk0!N}c\6Cz V#RC1򀨒ݣNtϩIN?WqOs<YW_ԟm=c0~~?I&8H'0L3|qi$A/YT.y"DqƗ$pB]35ɡE~IK6_$͒Y,OV;Bu߱*i\kh?גH~O |5ȓH9:olO{IZʗPџM?klY4` BsMxӶ q|[RD)#r?$\e9J_F;vz`Wi| 1C#S3OӯH-|ns}O^(J kaŬ[1sb&yzٖ8%ݏ7m?x`+E~?m_o&,Z\񡃼Og(='u |7?u |SRu)isǞUKgB p8ҹ|.,%-|cn„w*Ht¿ٞH{7wCcjTG^Ko.a>M$|)?ݰI$6AӲ5y3r1 kKDZ{\=oo/g"oG[zA)`t@f_zrO}o0Z|`]nZ&(W5Wߛ #[\krXZBgh0o*oHb9v/lm{u=:Hv}i19>U[3>n(dx`E3EvG{ JD%g0ìQ!t?8KGu+uSEf fS ͔ue3Anv?K={2L ES;d7+2IJenTy+\V5}|&Bt_E.Ƭ! dV2(~56_;!0-rY3-khaS9tXw哵PWF#<+`5dT[;8ބf:mlW.eݛF$,#_;@bHG0ƞMFD돨qP=zzj^mz_;"C{.?0vR.kK̀3 d#ty)#oU;0'_Ce*e-haR& %+D͵Tu?ҟu?O"`\M$|ϊ?"&)TKC8e:n{|~T_qOđ^O!2_c{VP${>*O>"/y_5Jg=zF${]["鋶f8 ytCR>fYH]#GS^C)逞~d#7y_CI{1]V2/vd|L?o{fs|V?S@H.ׅbpMVI$}~m#l˕9UD~].<饍~/h4G8)]xבWhw}_3;4g3w}_W. K.YI7]J+|q Z ,G8zm^9u#|ө=k-Jy1߈h )?Ͷ&W$u6>.F{Sj#9[K|Q2u &]֯3.Lz-P|rT6> [K)BD*3$ WEt$a$h즱ΩiLlײ >8S=C 4cwo.ۯ4fidŜ4$y7Ny7 9]Q?x1F/KekԸw~0vx^؋KS0C@$ j-]T\?NL?* a_PC+?_\Qm=#HQ]W?@@gy{%i[fڶo~~0o7R#v\j&-,Y #_g[`He?DoS=օ6EI*ŻZΉ9-|6gQ\?БN:]g{*CĨQO뷻xF]7z[/z#i|&FyWGYJz7p\ Ns"H!P'_;_.F=&27yWOzWfw=5τ܀})jbvH\GFw= \[ƒ 緢o{ O4Z(^;HQ+H.-'+ N}/6IDGJdILMY)hʘy7F 8\tN iN!>G -|(Rgp)sL nh\S5),RSIB|oϰF. Zr8Z1| d4kNC`OXb>jW!!K2i/=[BX,?*āET_ݔQ?|Q ^'e /*I2+jɟ\oq+/x]הwtj ߥaϭٳޭZx.d)gV] zw]J?rW SBbk3DP0U鄙Oꥯ]F*;'M?Sf!)M9^8HvqoSh/0δl6;R/*X>Ϳ:_)|g`(1>O°ø8u1^J8뎑%y׌WB؄["\9[Ij?5޿t;>+B?~ߜߖZSYIGk1 vV?G;xu׬NY O`+$T_;DEHR޾Fer|52>!yNէߜ_:?_/Ʒl:gѾ!O4^G Q9|5ui8DEk!GL_#oV UϏZ`MlW 9_fBR&C1oט5sօV?`H]@rٯx] 3Ayb)&IGs*z[bRNV?C7Fo4O =Ǟ35u4(Hˎ_+߄䪃W'=o&_<:v;O5%ߓ;G/Zد$w~[go3ՓKfwCw\gpWYSUI o.'G?4ru-|UK3RbZdY2˝S?ǒX%$(O_Tײ7~'ԏ ¯v?a-k{~4/IJϩSL?!iځzDezSӉQPRF;&Z>?{~4T'T)Sd]S~SNp(Я422Xf>S?ǒhNQt:s8)u*So3V2RO=mb$O=[їjюd#Z}w6>jc0/?oTҟ^U>oJ׭}6y+bEyב7|S7XnӾ_O=BO]luşz`NuyG.oKʜFߟb~gʘo"3V s!sU*oBԲ,?jlEywͺAwH*#aQԟmgKG/{_q~z\T&=9ے.Z|LTFR])߿{u~<٘dmd׋R<6+ڋBЉS;r?V?nĬ5r\HOlhYѿxqfT>?wO8z_I~!@/l໯~<@SW>= k;=P?nRo;HFPxEY |uO'}Q2|ԏ{a' @9>q?/i [ j})i^*{~<8+mb=U?vaðRbna=S?t*Eq$ )2w`|~~Qw(mt|~bd|vYI@ JԋBd$39Dq׺ =>Iu5KzLՓt!MIhZVsV %ǿMV??r6|4;|wOVz4hc+ү{'?/4R/%]DEHw}_u#|y*֒-_щ%7+d!jXK+>#,^?R?8a) C%58#!7~~94!KZ[:M2S =Q?9?+KkOOgLd?hehBT{~2> g\z/c[XS룻u&|qIo:G:1%G Wo` +Hș8D~w=k0EV1™ʦ§c a|0rUGZ撈cg]Zh7Q\9/"I?>?l3>*?1ۼtǡR_+RzS:)>?8!l; mȕga99>*?D[soqÊ[ B)2Sfd:EK K{?oKy;Z:#xEo&jEYuyW>qd3FŻËL  D\ՕK~-)??3G5-x<~5RY%K>Gﲅo sT`(+ X}(Q%AJ$݃s> 5}l:9j̱ćz?RN{ϲb}ϫVFvW5_gIVg?5ڮ) MV' Io|VgOGu-OD%>-Z|w}F$? k6_׸{<؃ Ȳ8P AWVm}OFĘiM(lKڭ2|t?1eO7x7ví1;C'>Woy7y B$mf>~Fƿ%˽w~:Wҟ%727bvO8>T?+I OGx/8>C˲]3E2<ߵiՌX/dԟة]ӑBH;3HR{_ے~ At.lC$2Qm\Htgg!yv{~97Sӷ3ӷsw;w^ց);L.;xN2(vTF Jѩ Kpd<.KcD7$0 ӲvCem#G8ਤbxRWeYxN%)IF2CD |GUw=IXԖ!01Xv-c|G=pg9Kx;Guh <үA䯮8PѰФ_1y. {N_/~N1 5`9|C:{Ȅi#0*%K{gA%MbzІiOo!ߑ?/|N%ih]ΰS4HC@NzI)2 Pjgt ELº*]]$yMg?P_9%9"T!Zү>8r"dSr:ErÏK; Ҩ.] jl&L ْ5 VIlheQ |v C!!%F ƪ5![ŽlXźJ3tJ̨y2\>)d.ݑ9v[%L}\|d NI JTɩ;>8 @IbբT|}4S:*w`;7H'0:2MJׇC*H .!VGQvTIf(RjD1 "㒘u2((`Kv!84?(8ŏj>@"Va3)MpzY`󸈥^AKal_p(v5c4@EH2O&2PfcW `xFh&4hF t>ؑ1^dĝcl1""4!8ѝ `̈-X.PDu: ho:+3j- O Ue86"ڠِ q6ύk*Nfs4+#"t0|yrQ? eO,\lbkHrܟώ{t`uPt0|}xĉi-yb3G(9a&gs~|}|DAV_-|y~݂0j~= ^{>MF t@KJN2 _lc46y aԣk8?([CM0 z>Av3KKQ>p@8?Q26x= ժ]䥪_)u|mAA jMuמ~0_P{>A'4(( Q=aFʧb8?(gq!מ~q,8`Hox z>qL|# RTIhj/6aM-m[6  |pВ ;( 7J>8?(lr&ɤbDG5o9Tw`Li*=pǂJ8?:o̺'Wm}9POt*oB/; ڨ qk@6u `' = !ӰbmQ"6صsN_h-V )A>Ze+ Y@35t!Rsj,L[?АJ 4Xe Y#QJb\tL?(%f!ʹ Q )8 '>>xM#@|(c$@GІ9;>xJ &.@ΡiM iR'8H4>/tl _$q9 0$U |?tMqK~h},UAaN.I#R$N-r3`X4%6HNl֨}'b+8 /A`G=; 뗪>ɐӝQ!8M%ˎb,e Ò* 1}|p(d4;#Db(B'Т>3tI(y*^.;4 'yB>\ib?FVhsKUAI-I ->8ySsQ=Sگrqq ox^ЩEIlƲpl={؃Bġگg; >'჌nh4<C}Z!A#TvbfRć,4|p,t]l%hQ6pB>]R<{'aiV"ƊΝ;)ഔ^x<KpgOp7kx<*I?x =p*M|D}R?x<s'x|RGA||0C;<*I?xc@ 7ꛕ :G)>X[7:>X$0bi{?ؔ>8>X9 {j #^my غ)?ؒ>8>X$2%+ '%I2bVT|;P%LSP i+Ai"R[_7);%S5>vAJ|pP\:ZpyOvQt7A:@-Akm',z1RciO'uI_W%&&fWF |M8 .a$GI5,4>Z[ձI65x\~J [ tWX(vV.`ma)%L}^{>34jg7rJ *w|Vr 0=0Xѥ@??H ERk!LȻb5x7<ÖSm| $~3=%ERP]x'y3|UAK(7$,߁bW@?[٦VIAr^L5PJ|;ՉC{!DوL=l:ȧg0015E@ɹ 烟?U5fܰ$qV ~vH nX&u |Ir c~zgO?sk) |xċtIOIާ$1Gpc6ܭߖ<PcI!w S@t. |p;̉'+Rѫ{4|p.q uon A˾4lAj"@c- {F uU |p$ /r`/"EuRZپw,lK:OmqL5ҡđ8lحK"+> 8¯&8Yfޮٳ@]_k69[hQJRFŧ"{?u0$xO0˰椵;>(-qhQ ؅$ ,TRe`) ?8gs| ?9^ |O ?;gs|/ěyEk"3ErmXN9p0GR. wDGH~ ? :4alZ-ؠwR-H#}Ka iwkf6A1<-6H /MYtc;KKN;M l  J@_~sC)j\\Bhy) _< /Cgw~66f=|_5D])^@(P9iͼ\/ldq. tkeφDf^/L?V]5'jzf^sTø%_U%$ WGa_ R}-/|cV$jhڐ|_lir7ԎR:2 In!Cnͼܿ_ IIG:j%DI< 0@b A ȷHHaB-n~9:] b`/P_Zt{X*B7U8uA7~1I7ċ`T%GWĉvO@PoC{BrXVPxY|p$ތq)xLU'JTsz( iTGE8!G$4i#RyOR#{^Ńn?> WGUa ZMQ.M jnATf-iN}XJLKǛYve5Е$ sA7rkXWY/4_|_FLHW-|p~I"yKfjw=␭qƓg>ozqLA8#corE/2~= x3d~-ѯ~&uě1a,~)."TlT˂a=ͼ\7.J3֊·Io}q C/˂<.N7CFX4Ax3ТZXi #L)xg:>7FH)q6{ 9ˢJx8mf ªj|Ce\bY\t2tʸ+|o71tOh.Ʒ5b7pR5i^æ7x3Д(Ǫ4;t${Nś験h:be`-vXx3/i6[9/r6t6i\|o[O<bKcYzBad:/[n9v%Qy;y(9F@|u*0NOdr!`papK:ͼ<.twq3F?+Lnof 6֥v4뺙c J엢0@x3|8Sh\U'"Pw. g;/ x3Zjpa$33Plƛ)uڔv x3iTjBt#2Vfl:ܫb1n,sKYd]w>8@$le]wͼ<OM(I}J9"5Vwmn)CX!J 3|&cfH*|x3@X=|#L)qDӘDBSeͼWGas!Kar{wXŞ?hV"7)x@obO3GE ~)i6l 烯嫳{дL9 -ح; 烯1!rlJmK&vc/ +|u$Z>-z>JP#=-$ŽT[A_iś_zI%}{`&IM f^:)lc,9(k[ nEPu+t=|e$ތIJUnРAx#Zӫ=|e6LBբV][|ftHE'Sx I^}Ѹ%+?@T^ӞF;x {oPK8O:YIb@vHzd'le:ؑR&bYbW 烯6 #Xl v~Km|՞)`d`5hЃUk m@__q(v8}ҝC`L.{׺J$#9"<{J^6pl= 烯 fG~ch kwPW|"ElFq3^3T5z>čyHc# f&du-3rY*4u=9|&d[bóJI j%K^Z? Sk$i4B[H1a$\iUPUltΓZ+ϓhxGڴ*VŤsfR|p& F._UR4G[vdO\ V#)\ׯA]Ix/<ɫSš]anأ^pŨ؏pk4dWx2V_Zg?-*걃<@$& +DJ`euB$)BDn$Ko|p_/9ҹl''Γ8+pՏǾORuDN{[ |Q:E>qI'e%uC fjuxMr I^ϓ6_s?iq6LwHI@#Ip[J8vګ VpfMHB B<HFM+N/旰50@zƀ I^:Oخ ]Dpm T^4}\ hg@q) _Wr8eI\ "0~ELr0K y2~S!3+:,$N (a#O&@8OjEǐ/h 5UCJ+DOAɑd{.<ɫ$s oWIR7NAmkIb(z@]IOzIbK=&If_@ðvޛl/ړ{@uA_yW&Dc^qL_UUumΓa6HHV|pZWₔP@܄]z>ڌ K9;lKl烯vо$'I҂!40]x[kmM)ls6A0''>OR4tStú%=烯`]PpI<|xi z>Lbw I_ۗ8C1Ceqw\1 ΓޣJ6YOu!s\-m~$͝'o.ů / - H]>8? ҈ 6@l@s!31jN,jIAs __ >ØQ _l(56cmArW!@-X{tM*; -y=ȭ!9@5AGXtTs*>XGMt]$N\54)FUO `:{hqnj`h'|?hBB )D;]'>$#D2y;m'ů}<;W*M`rY k ťqE/~m01ݴ>l6/~?1zk !d#KA$C]^7`9u K`xAGzK%5< uFAt5>8?, S0Vˋ2n ) 8=P:W3 v|ppHV>?SucsF^R̕K^4+6|?hh]`I| y$H,ꪑ@xis.J"g0C(ϴ.!kxepoa<K fvAM:csjBr< Y { ]BQ s1F\8Fx`;uM‹n­IP1@5 7:Y-Oct)KUq]+>8z!-5DԴNsu!'%I-!X ;7@cmmA8` "Ac` Wjm``.H Hx+lm0l34Z'KM6K"cԢr%{)f& jZ ΁͚AG` h ֠5s |[Bg18w8 M>~A9ѯf, ,ٴ:ڐHfzs1WXj9(GK'2u.l HRo8>;@?N͹{@}#TpHxꁎ7w@-Y Fҝ2烯 D2QҒۥ^L!V)N*~=4+@q=L҇y/AJ~qgSv[܌烯::dQ,̙h&2t (NvUCIf8< .s.kDS|c--h 6E\=|}(-M_̧ѯC-o烯8jyN;-05A_LY 5E-Z @_2, l 烯l3=|}0Sg,~65*X·j_Z qsקT+Xre!y@_v!~k&ɮ^זwt>8?xf[.@39@ТtI}H`ds|pPX Ak0І4fxJ<%@E@SR619wyv&0TVIŀj0+'~RV*v6bpyV|?ث=X VI-~U&@r;4|p*` Zl܋վN|p& vQ3tA8_20&*4hijB-mb5T": >8?X n.8q4|mK}]@Q(y˔|XNC"P:+>JK r >8?XrX)}o˺|p)J4oo>8ad00R2xJ'|'`Di W-ZtKJpsQR!Wq)+ Sut@AJf} U˛$m`{➺ d ;7{ZږqL*M37j; F5t/g̽$mPs.6,|^|p(2_,Iuȗ`&q+s4;@I4JJ$%@Sw@^eNdLPp8@#5IH @AM#u = إS!QD1紵e̞铴cbno>/` `0eiXY>pO2B@+IăK ,<|#7s#oK=\"_?)C/ 4hO<|?HYC- ))~f_'Q#*>s@ߘ?H`Xvh)?`LvG;@ߘ_\tA|^3LZܰCk o]dPrbNct]4 |Y 2;E%@h%a]m09VG|{Po@hZz 4,L#ch1. Roq{4$i'|"$;my@jpT8r / hSh)O<| >̌{>x72hl }^OkR̽k=P-|PkgĿx{4|?(˥VkG`pۖal{0|$|?pta?Ea*dJiFn0xr A? 96FMm`g`+aEBj g$VK[`J)P[)ilڜi UC~ao@y0 َ} |0SxttRh$a ,^c4@-Ad>Ɖ8h~ A",kWCFgU |pБ#Iu>?6x;VM!8N [X8 ƎgviƨY5 g?Р/#Nhkx& :a茻5`KA)!˿bD'Q (:i:;Ne|P@ȵMc <4V2F<> `` Y ]x}7`\ےO&Ő-;\Ep$ys 1@Sbi s?8/zv'@}ӑ*,q1@6@-*ReG{9xEKc0>T>"I{\+&>X,d(iQ0bI \'3nQNkh;7tDC0WlBK}~ jAX_ȿ@ GY?@cԹ^Iϋ?RBXsN >ADAK @Xv0'LaѺ Aɪ1PSt:pXa^\0+ss%0 %VSW ,C7 XU |p? ҭi0 Ocn 6aUŖx_Db=' '{`&TlSVEY]'CܒW׹Fl A'.dt15\8 9)Ag%&NWnб\rȞk* - 3A艆^5;4|?ȯPLrp ]#u-Ww<|L զq ]_|k nF0z$FJ7'ӢL<`pz3I7;,;i!J^Wz>l.YCMGl|3l'ω#u[a.'9?ڑ==@߬98]!JzOaJo|ͪ MC2jɺ"@߬RXd38|vQ/T#|͎'ӛ1Aߜ?Xx' y odz>f0j$;=| v,>8$jYt ~A 6'4hw= YKs4wE @`.RPgNd h?>Fdb':@2@8>8Nʃ32&);I D|| B`3^zVEY׽!V<@&~r 1&u9f<|p*`ANh,Ns>8([:gJa&)Ʒp< 忺>(FS0f})BrCN^ux^ `ӄӛ,d`x!.j7?$J:+Lvh c]تRȣ_JV3$5J [-#Y-eG'>8*L#"ɃX 0*M^VhV Qmbi.(}2WgMk0,H&grLtHkv%fq@Si) JΛt lϣ =E+4Wwu |p Ό_!lni`TK1j-IRtz/a|4%8@gO$֒W b31mm6a>؎?(#hj,^9s ` meՎm|k-Z;`kүs ܻ]UB[9>?N&Ԓf7NGMw p:@=IU(-E ("4OWb@I|  G khZóm@zQuG!I+Z4hpP12,,-jEܥ;L)t͜@e&@pI`9.N% R6E$xe>X`XOU< ӌ^kkc+HU2*/Wg{\Ym`"b4:Z԰,?XޗL Uq +kF.=P?H0JqSPS=|E[oE ޡcmv oWTBFÑB!I=|?() 0P>$yj6z>V>z]X!?DSVk3מUl bv: 5Nu6@ZrP2G$*Rx>V?@{;z>VnqnEL{U[e~zg[ż4<>f|ifR7qsaF^qn4]{>V05zJdtuz>MX #YXl:IYC-}[e@;Eq Ь$ַ"AoA*.Ҽ 3!8"%06io5U1SPLϛze=|+]] 2@&Nj\%kYwC 4RwҐk)΂Ȑӭa.Sʆ4MuVX(r_$pHq4̈я#8=>X\AHN_僎#N 0ڱ ݃FE|Q6`>?HC2C %KCJQH<>U _L6ՌI!nL ÌI EZo)N/Eu+0U |p$`9Kd \A@ː T]ʓDNĿSƥ\ 0L|pH@ŠVZi1o tlY[kGV|PZEeV%+>[xt* 6Mw50s S%|pp@|?Xs@`PGk%)4=Y UF :.^˝`:˦id2@v7q C㯃* ԴhXڻO 8I=aAIJq).[imj!MPIJ~,5^nG칺|p?X6% ƶtK MlNk"$1 `nNND:ӄ:zJn>X\ T ~>>ʥƯhӂSNd mS2 5`; 4YC 1_{"Nz'@sd9oPoe![2)>8?HCka%ܻ3 _[m8ª2ZdFc/мi}>ش,>8XA fX9O5DJey$R.f_|H'i_L!m01U |(ޑ܊?H^Z4s&Z@48ԢAoKRG^$@K" x|?WB:Nn+MXKZ2^O,-dsϫ|/*c:Za#7*RF!Kb 0P-^=0A.na7ȫ@?I$Wc_6f92)w$?0#IF0 fJw Vl:eRž sAңنj27zQyR=|?DcZ͈ o/NZ>Js|1[~% @Piz3(G]t6ݎ? %ǩL;-c(.0X}?+pDC7.İU`0;\"R8qfUB4WGx>v2@!`oZ;&3=|PRBklibpChzA`X2|sCmk`5I5|p*`Z`; o8)0)JYܘU/-"_jX`0c JIj6h*>(-Tfl ⢉nQ:8Z["T/fɐ?@gM1p) .5wD[a՜ яkhHivҢDm B A?ȷcuOTIۆ&A2yxKa߈QN`nLJ|odͨĮ"+U"y^!<~| x QUe£$kK ?țoBx`QG6%kլl(|:#sƽ=@5a|U|nIj&9^ |sWT1?H|V.jX9)> -űLJEB#H$%Q(>'Ai>n~|&5$VP&` NVq|1_b#i|?ho K`>^ckn$^'@DTd#v$db"v kEj6BaQ,Xj^G?#' ѽԐ  kz#HhJ꒴i)ޱpq"R4eSx`P" )K A?5 @$q7ȭ'|p*&< 7n>1i5|~Tp;ShApY䈃 Tu.IΰRڛA%ܼ=|T5z>N5bߩ/.DɅ#a}NYǥwz>@aXɂ/ZMA #_Z$iK_\hŒN7! wpd1v t/.Htr!ơY/6WG)CO|?v:Ǧdg_5>31K"X57ܗ ]`Ov/"Pfts@C^H5|?qX66^rM+|p_~}H|# )m~ |6`Wbˋ['Oπ~ܼEVVߪ,/v =7UArI闔 N$>Nݖ`OASi#Ii1q`;bX,;>8(qFSa4:|p& - lOk"%wg+Ap!MR谳qX4 90(YJDH PY: iӽkQ@|9> 3@~9>g 9:gs|o ;gx9> ?3@t9>/ ࿞3@v~|޽^b CM,H8깚|s@?239 )|s?͝vUw1thXwA?KsmPP̣;@?7K9mM,H<0@Yc烟{KGKו+.,A?F v:՚SM=܀`sqT@/|sMYq.7$9y>9{N jpji)Nu_<Էs?X1tQAh,` 5A<A?AO? .}>As@P.?< qp~t@# AcU@qqp>w _88OU|a>I5 >`a&/aUlєT;;qkK\ ?8/}IE%?:w>R*>'vܷ>'NG^.6s |^>'l3Q$?X `9Ijp8x|xDvpo/>_+BG/.k0oz@wLq> Wx%d ?Pqp ?>|6|d3=֭+|u>brwAzqpݺ>o>ӎON;x/N;kI;>z໿pR GVf]k}@ f}w_9gܷ&|Id 5ɵw_=@ot໯l )wV?:ip) ?A$zè=|AṪ e3ÌsX'zm,W Ao+%,9n<,bwj5X_75>/ Kn]a*>xXԃ: JXA /9e@GnN~pqpVGLD/ާAT^<o^ <챢OBM~z\ |Nы''8xǧŻ{zS={^ IjI&z={nCݩAs5<{ uً K=vw/>'❽bG.$kYoDA% p3#@T٨DANA`ط$iG`2@.CQ4;E  Mi#(z2J^Y.UI3EbB#@Koe҄%ޢ10=jz]ʕL_Od~^>_<./׳6|(dj/|p&qS:SܾYI0Cv|(֞@|?tB܇3/fwXJ54|(A)o R˾^ |SIx>ދFڻ^/x>QH-z>^5ɥI=|:{G,x@;*1]m7$|J z/{Yo#>nZJ=|x ܸz>ޛs>R{eAK|uXݴz>^9`o )|rAK)||0*L:i0Kn,>k``[.KzHH@e,]w*)>?hoXJ?͜<61J*i@Gh6|x'@wA,/>*>X_ Y$[V`=,@X-T8<"G?n(XXGg"7"c+K|x[pM{v!F[/tHN \\IS브|pP6~8膤p r? %;3^bɱI b*"Ŝơ ?["  |#LRxG{;$2n=9>)8J +)DS|9'>x$@s%J!@sQ vKںNaQu1`?>xTA PGTœN\K]P8hIk~ |p2` ER$X rꈰv>xVKú`Fx y Wr =W L>[khH x-tbZR;NAڑRޭi% tdv>PFc)۠[!JH[P1  [^y<&@`!"@O]d/]Wtxr|y4H O<i8Un/I`:AE)-???LCu@v=8[\RZU!U:?vny Pz>#س@???ā cWg"l[{G[MjeF BfGʌ|!p% Irp:7/ }7L{%Czf"m~?OWI[&8"Uz)Ї1ypE0Uܴ!).]5'"KJ. e +kouɩ+=\A . $dW{5ub4Vb??."f6 "@:IB2k0>8X89)jKPŨA?9!U |p.`g 7̏O}cz1IA&qX;bIRj{)9Aq'=eWU$gnGI)t$m>Xp"sԶ o:$yi< ,Ȏ[MIbt~3nh`pK4yvMؗ|?xP5. .H¨xTh`P33Q9"9E QACJ{;AqcmE#6h_i*_:zG|p%V%ŒbI>']Y1uY1V I7&^/gw ngB:"m)JߏE@*e*O㠶O @V>8?(A2aǞg'Q-c6zK7@K)ȚqKATnn 1OάKK*gLs3Nь=5\ 3kaӋl LL>8? %3U |pPI4It$ j99ESx6jmD|p.`cUhz Ujz 0&j6:&y|pPIG&kR쩠; `cI%M:N=u.;@<樓4$j>8peR'@3B K׼,$k>PF,RY>o]2;߻/F`VGzI"׍@?mAաoD {qpk#] BXNr+5%b1XG y[E Ksky-:eOĽ3Pũ?+Z5]%ڊte,A¢#z>~Nxg&W,f1$_$E(@ߟ ta$8"txj{>~ I'N4X8b66 V1|~AR5:` Zt=|2mow#.( 'Hw[w{ه\;+N-0`Hgh '%Roz> ʓ_a"0x=f}tjCڠ@Sh Pk-q:7\ܗؒ>L[@mRyk4|pTSx)=A`IM@i>8?t,5tS0 sċ:l_-6H(|u7@P%I:died `%i:@^.;3wqGu@ed*9$MŅ " cr%1e[[gT\[:*6|p0 $a?Pq%Kn>?ICpR$.BxT|pU[Ҍ+TWtbG`/%HhCkY>L$QrtS`gO8Wŗ6mQ`$hbq d iѻ\߅hcpDbMN$]v/;/..v M6wؕ~=^ NQFh1 MEO` RsOk4(k(u>?#ƑV,2e+NorY 6lL2Uz r`?*>?Hf\*\R[R ECOc^06۟iJT6U5HȐ3cWq@ |p2A@dA`4iNА#b !Al=Jޜ#F䌚s]C !A9faJJӟF6r.Nr-%x)XMNŽ+؋Qp80^5ڨ 2C-o`{WgaÚ>8?XѠr0Ihxgڠ"j 6 mp@S>3e_Jft<ȓEVpaVN8|p aK c0ɒz>8? 0lGyG άQ^Β'Opds,YdP@Ncޱ.mђ[ ]\ ` lk_EQ- Ir=#k?x1I@&F0($\8T+;|!Abr[1|jFJ=`PRoҲP![Thkm UaP삍AU]Xq| R XwCSӯ+z*=*9(=GT&Yо|A2ZuR""z'ŘHh{K__{>AAk_T/7(̬o@ %KCS|mso~ aCW*6yZ=`&`($yVz>  ;|9g|Q%on' |pps50&ڠs@S]3*g lde-FP`7l[&|p0Έ Сæ?MPaJdyvf?H)hr >[+ہ/wezv6?0&q?pIV8ز$`acf m)UɛB@=z%AөAs4bx)l]k]'hóͫX BC6@8~1?HaZ" ƹLytֻ'㯤^ |p.hyԋ bXR+]$GM-q_N|p2`o?זYB];ҷ> ̰Ro(K,>B@]KL1扣L5RQ{+EviOpmU |p(`AVrKJG m9mgeOa!A^29t/HK d}sԫ%VOqI$aTk{_hK9L11!_ C!C!aW%>H KЅD;4|p. ;& #`HQط|p.` E Z sܙMk|p2q)fE|a!mS0HdbE@J-p _L+,ɝQ n1@ A`>8P+7 :h =HtK$ |p. [qh|=@4{<p..@?_=>z[|ùsg4!K~8xF?Ȯx&"3U-6@LkjX#@;NT>lAفNHpq }fu!lO98FI Q0n=>8?bwCΎIC y AԇuTQʉ8t/Nuۨ_%b"=I Cj@5蛊p4IJQe;fRj>8?h(b UIdpӑ^EߖV4!N~c:VgHs\ m뇀d3]ʏ+_L]: k9֊2Nu$wth3-jPDg\ pP itbD]k(lʖ\?+u& A?ȑ}]4Eɺ: e AMfҏ :c~o.>yM) y/=hb0征3e"Qg3 P )UӅ, !Bi&Me]&;-mXKILbw¬`iTptKGJ F~ u&ŶLD_8+c{;鬒Ib3xY:S*!Ė#%C%1>0a"64tfi_@KA adP?~v%ٴBClɴ&K0>XD/J 6tNO7K˨?Fv_4S[l  d&#C  W,w)!>8Pj db5ar! 'Y\G|p. S P[NSL0} @h5 !7?>$c`_sZ;,7ac\7A5&@mAl>$-]*fX%ɕ\::Be ~^)9^J_kKWtLL YJA JD#]kF v[rp{7Z9Ĵ d^WgL (Y"#RqT֫ZKFkN|? 1@]ZىHgA< Hi8wu n+kp |î@rp|p^K:ʃK1A?xn֭t~rx>ыLC8tz`B=~?Q˰La y ~4?h)NN Me{z>ц`zIXu3P?|#?xv^9g~K ~z>ѫ ^;g~9|7y=sGo3@?z>>+ ௞3@v9>s|s|s|    G o3@yS? o3@s9>{ 3@p9>G 3@r9>g 3@q|| >gs| /3@9> ?3@|9> 9>>xρ՝;w (HqZo vWAĥ/ , [1R4q5Gwftu&x|k1/Yo!\(u ٭ tD3b4N,P&s$NH ַd8 {Kc5M}WKU) Z8j`Ś_Eo9I4_ 7&>Yw\_q.[jI`xtÞgAPA'E/5}0S 糴q2е2Y'>~b떚zlab͂B#'>*\l <ƉfAz&>͋*iXx!h&oqNcY4߬_B aQM} V5:H}y|h%'>֮Hbі!^"틆wcAIkæ~umPoݣ OA.S\ &>A'#&)h+j+~FKL 2s/ޮ-.Pz]]T kW[,-U%5?VήТ`zI`Í^k4?D+18f#I6֬q V$ֻKOIU`OQ[ğOMxM}&&>S^`OqA'L ݪ&>W73!34/nY`ά [8uKww*0fv96_ˡgGI`aÝj 8sL-ٱvo-N ѫL%լ5m^Lk~V $c VMUT<%M}n]4O O|}vԐgZWzE\`iwwH$ \NӰpI~"ո6w*Pbhy yPԁi_j ZW@v7 bkV|Vc.l.Md@^~Qs?ޝcƄl ] L{K 2M}4At }6ې&4ⰷ ҨY'K.s<s% Ui.& 5$˂%E8 4@/NA`63C(̦ \?M'>񯅋όxd,Xt@`%o j` @M}>#*/vILd6S&>Zlv4Gҟ(X)/iyK.]}KI`nnZ>_.@Ez|g_hֻ ygXUVƻ =C\׷hAo$M\zMOuCdMg,?\߹ - Djw\W^Ɵhd]+O6mjϫh_AĵD%vήWvS> N^zغC'V=PzxMxA>k?):iOIJ4efu˚+Ѳvhīn4Az>[Һqd%ik'k6q+Zk8VA#{"/X]z}ˢT6-E3%;^o]Y9VW(_.LeRO&'K&䩆)M<şYj,, mY|& >\>#VhGϼ&j'hXϒ&{MOq, `şIJpiL`dCԢ;o(|3 OOiH?kDWHW ]YwE,vfA'6O1.GLq7$,Xv- OO.V4z5F}gY.'ޫkbߡ?cD)DVPk7S7+M荂 Olğ&+xó'> 0 0SZ-yjeB`4 Q4Rr%G͛?D9DG\юC56k#dN\4qhb|5._h]Vn[g Xw M}w6.m%+8[kB&>wW0떷 Olğh~cD>ɵZ,nQnM}^ZO&>"_9|.ȞZI`?ѭ-9k]Qը{`ş(A*x]'J'M@~V.I4?s@&$|-#'J']dVZj" -(e*N؇4R r, \`5ŇsArCZsD)DO]$BH6dw@,вkW?SDouw\;Z4u](e/jD=DWmS-}gh4ND^W>Q?!Z14j ı3 OTOT# @ [#+J6[q"{ |>'O,Q>ݚV 1Y?ך'']5$ݒEQ{/~M}3DB(|5B&݅&W|j4^rS.{'{^ǫHeA':ODzS Oş_W$ӥ Otş[ joh|b6T`(ş?HϦ&>o= 5SEĢ?v9CM}\nI7;;uߒ]=C25M}B71f5T5N-r[7LÚxpG_xQ&uC\|F p$kw&.&j'6nF+ Y*_)Y}qDEUjH/Yb*3pz+b&&N"[ qz,PiiĵD5jX:]PSi$} ]şP+mʱb$IMoܒ=MS/J*$H-^oLhOzo5ZoL^' w wF*X0hD%DAY_~O@Fd/B߇&';_n..vFAkc:k:c ͱL7ڄ_X;GX<(ƟZv2HzHhj4X #VlJO&j'2N(dmbkx5Q? hW[-r" -H&{MOQʂ-Y˦5f-pdxZL5ޱ.X[FX˩L9-qM}Բ[ "梑WCAo9M}"F=B)Ћgdy6`?ULWq؛`&- i}'T޲S/ߒ Qơ٭ OTO-Ҷ"lcChy#kk/pCLyㄮBr8fەJ\R'*' 9#Tb)u H^ m[1'J'15R4:hwI`pDuŧ i'~'O, Oş t󊾂|, )+ i}'z]QT3 iyAѮ" I\n.F$D|"1"a~Գϧ# z%$M}b$`AeuA]C2`@m6 Otş8ϝ]P< OtƟ*(w J3THM}3\ a/ ?D9@],H5y:$He^E!Tke4J|D=b/oYF"T!&.ྲO`ğ(jb#ϧ\`(Ɵ`5V+cM5M}E6'' (вvpSZ2m6Nh1''qj"zS\}|''g%f̝6SMSWE jJ`(ƟhbH9wUsF@ Q-?d*#I`B<5M}b#DѠbM}"KKH:MKyK` ]f4zE0UtM}3D4@ ]]&xnHA':O)BF Ӥ O ğX|A ;C볊+hMCF &>1_`jM}+ T W!3e4?w-K].M}b+ZS OlşXjQ"1 .bnA$M}"/`>(V9y#*HD1DIkH+-?›ևbjҔSMP-C^Cb&0KZM<(ƟPyl4d x)=!}8F&O ́`g[v$M<(Ɵh!T]B-۾ \efSO&j'ڽgOFoY<#&| *JlvtqM<?μ lRA&73N<(Ɵ)&!A˦*Շ QO>߯jM}R3M-"8j] پg,酯4 Q*X}ŧF`?X5d2,hs'"V$4.zSOOl$$X("W?R2v])'J' t큫; Bm*/"I`?7 >͚Ğ] O&>Q?˂ՅchZXPE: OO^crtk5҂O3X`?ì֝^jMXtsЗI`?QrV(|g#^Y5 O֘Zp]Ԣ2Z^^- i#'roB*tsXV\1'O8!!em_o*[qZ'NY4.mS!MD_ ]Њbf! O4 DOa9w}b 5w|.8`'n2Ī Ff K|bme`լ&doID_ ETjC5'[&>B1w]P`cOTO.ΟW[zzP.M}bY+a̚^r J *Xz0&>Q?q|Al؋r nj`(ǟTŇ pj F`(Ɵ(i]P.+ԦF˨zm`X`(Ɵ*hFS Ăl9N<D1D`7-M s ps'Jxf&4Z {`$ ֪-F2 OO.ЍakWl`D, &>Q? M⻹լs!MDgR/b]}^w 5M}3 \ڽg &>B suDrݚHe^gSH7 &>⠂])5xF^(HHEA>{u4MOC)HDCWy OTO 4RA7tw__Iqkk"kT0,^4q5 q{aWR4q54t-;[@5!t@<߲v&&*'U"{ J[U!wƥ'^' Ϳge$ iD-6qn$M<?1Z&Nڑ^'շ9w @PYM\}7^' ks`SDwl,[ z-0#4񅋺ЌRJG[[DA'OvVBq]'$ge±JN-6G5fWסnM}bY7wl'6O,>&6 Wdm ]Y4|ΧM}7Q_nL`?*=IZ/HD- xFshNI`ş(*tq*,Y"F-=kI`ş[ ewA'OáKgt6*yEmY4ZK*(}g634;}{8tLǓ̞q£KZueMڦW4X.Y-D^Z*i7vn%'O[ xCs`SDw ⃢ݮ\ꓠ JUH`^':OU뱦Ppm}'rI6@g@EyV;zw aGޣ OƟX/y} łŔxhؔ&>"2v5UQ('OfM0nܔ tc Oş11XG AWh!Zo9a^l >oY$M}'!r" Q*x@-_KL&`D_|7 T6oO催w,1 OƟmf {ha8dD5ĢuC W`ğ&MZ.PA1&*' AQ@ES_}XA ŞY{4qkSe7ڇ nM(ǟ(_6Vv0^|谰Q,4q ^v}cgAu=^Mvy) 'yMOo㖽:qD_ޱnz}tsk7ٮO&N"]23@+Ȍx5q4w<،?`t W!.'zO :@Y˂6˂AI`?,X/xYݢU\vR`?1^ Z/8ODo>[T`?1\[[zDg|~+x i'zODά aq'F f\.!SDoႎޑxVMC8]OƟ8ɇ{Xc'vğh,o.oww>!OY/1м V4ju} o$M}7?#$](%=t]C+HDWՊ K~GtQ4R fAX{`jk:\BRY~GfߩAU!(LIwXMԮb18̐d6iprN*u?ዝC*;4@m Dx_,H4>e_^ CJxo.Mpy!Hrԭ49>7H3Լ5ѨAR,) 1>XuIB,->; $'0sߵ4+6jޙxMQj| Na8֘m}7uUTQ2}{=k)hzm>*& or'qkɒ3yPmL6@Pcj *U+8Ky~,A-¨AÚ sX wkc0Ϩ2@ajl0mқj^lL&F}RІV4*L lϨ_NpfbРu,i kڭYXppq&UL5ue7RBR?x #?NĘ:KdRh?iU1϶f[-%\o3Ux>q+ Pt;)[\<|Kmh{Cr[r֠ai=/4:PNSeD@Kg ;Sv{>_lE'19hh`s{^.DmU:Pؼ]Ş~镚m7k  /Ri.C1¨x>_n=Zzu1qKD,VGlk/Zh7M XO߅ 'ۋ+ @ZG5ez+K<(|~&z_zpEza$-[ z>7-DJt x>E 3LXm,<|KoB(qE:R$= $~V F04QZ?y_zrv/g.f@ K4-~7[btztfn׿ZfZ>$¨im i ۨC7Y%W}6|@Ck M~MҹL- ^%%I[,u ?hZG T 4vGN|7GtƀmPll3f MHlZ]ay] //$gjJŢdGSN׃iTrcw `Poo$]rK%K֑Gl:z]⅄"@-@O>{. [E5M>\,cjn%@> `p{bH!в $[:~VfIůiE|? lXObY*Tq`Pe r~|?hk r'UŏuTV1bly*օ*ޣ[ˑnP9>>pk Rd/)BI[M\v0`%KTԾ1 Kk_jz@ Vg.u6` >d ` `bUGg|?jZrD$+E0[iYx |?K|?r/@F˯&Z^)C~z9ߞx>ɋs'=g~R8XJK 烟$ѳSR'~ur 烟T;˽|`% (~R[KLtVz>܆?yz>I;jR'uj;z>I, ide=?Qaz!Z>L~R ώΤYbOر{'uޔ >>X$}G$@ skp||c,8+zQ/8Q;@Fnxh'jA߮]N[dWl* g"-`dGjtݭw+ǁ>IAP//hwF_q&ޙ@]M E -20@r̯kU(io ?T.XtdҾB(8FrX>ȟ҂5d[ ID)&DE,FCouU7? n(UR xtZ((,FA º懻C3_D? x4M-o[u@Om4|,$*k,Y%;K1@@JutIV'ɸ(9uPK- ; 8-PK,-/kPKPK/ktoilet-0.3/fonts/mono9.tlf0000644000175000017500000013444711327706453012523 00000000000000PK- ;ne-cս%Ǒ&xϧp4z.e 5] T 13wdN'ERHL~b`^a򄻛{ĉ?8qgfnn{Ŀ?n?:Ӗu'_Wϟ~o~O??O'O?y?؄?ߓn'ounՑ8yǏƏo>~W?UY>z›'8C_g_;^tjAL6Z*@ĻnOm*IJK+VL F-Gb-{߻4}24joLO5c~~;>`:R^yv*Bԙ5))EI[YI/~hb\=5xyc.|r6h<ы4L˻Q>Y#z7[-H.I?]c6}DZj=G|혖=ޓ?ft=ԍQ-GKPV CD1[Kz˫f qwM Mb*oY=cz,Q4VF7m}9;ҽiVZEaw䎴Mfaki4dYfV > 'mmhhG$Nlsl!El*jXL=:~J%Rc H'r[KzgyPX؊-ۑO&3Iϖl؎6 |&,%{3x:'L?g9T~X-cTƊ_(QFNgТ4}9N~l/c7d04L)=%=Iqs2\[-gH\;O 0ZE"$X%xQ1Ca9!iD; |W%lښaDvÁzfm|"}圜n0/c=]F ?]ޞڻm"Y>zr/#>XMW}}-$KxCvhɲ˷m=!gc=!2]Q$<ԊCmbF<ѫŎ-zQled~YDi%rz;ƘVIW>-#Jlt+W,pGZYSQ}r8~~d8k<kc>&GVEVfq\FfDaqηQ">k{S+Hz"s=2Fpb{fr<2uÌDQ|)\ b%,O&}D!#v8y+hYuNN~}Q3h,t٣6 ZBlz[I̱~GmMUl8rS d1}鱴pRvrRr\=x)NOg'\c_Q30⯦ Yo0;pQ oE"v"h; ]݂L^g):)(QOF{Oi)mS;p%VjTb3T`ߙޞ~/{YznEe}VVV+kF(lP&yG% -Pߜ\'>sIS VB|W7>Bt1BU)vJc"qf@u3߅qW,CSH=6>=~ɯ7>fK.rrrSpj?zwƒi%c 㺕.=JjJ+,O/^Rw^zKr}z 1)NOT|#]w:)Պ7lZCoz7{ XO@_bew1Gxe7 $z9urI 6ɴ&r>Ёq2}CuP3}xqoQGv" HVSorg?P_,gT}C 6 {W8ӶZ2=%2}#: BVpI}9[h/LrGLW<ԑO<>]A\iM`o=nߌhu>c:IC5>eTM~ъeC}fy]z}wc?F>D/eсS-]uJa"ѻm7\roeYmҲg9!Ϣu8qIg;#󑙫>YJoƮ}KoF^yyM<Hpb~ϢrxQG`?>=L-oa`}X=lǰ剿?vvUy{.U8}^%rA9p#iqgz֒o:Nkׇm?- Kf-K mm{ߨ0ͩy̲^c[8v72،wVv5ql2D +ؠlA~BL,bN`xŪ% lE- 6 `{hC?sai^ |ZW~8WIW];ayF>1&dV4]kΐЊ1Eܠ֐ fKL„QOWچ׋uI` T74VݼY}X, B~^[#ߘF!Tpy8Du1w)e6Ѯ;n 1 `§E(";rϨzsPfwk]c,kRAC7U#&p7~и[{Hz6ʑ lTb: UoW? [=_Bc9yPu+!0Gsx Y*VVU4_hIG-r[1r>ۨ]^ n?j\DW?Cx1n{hd5vl?kU$ #= ]׶v??ȷE#OQ^j41gZ3,#`OqKzL!dC}>rx< x;I+4̳Ϥw^lg)¯x+>=֯O3ׅah#?CFy,?OuK\z1W2=ou?}X7o,9e^\}×d&)nvOˎ 4`[yް mYrl$z3Bۀ_75: ǁ3=c3 r1rɺKC>Oٱr!\Aي{%q`$n->o5{Mg:wB̝s{)=: =,޷bvOo(#mK'=> Od&ȯ',M-=>u;'nJ.Z,qxsߑ͢Sc e ڍ]c]aat]}:!eI?cyAbZOϮ#x0zҳ+ϸĮmaAVs~W1`g-eV??̭ԺcHI]5B*7E4+:Fm=we䪥 1|F;,}I7=-Cu5ֶq̗i>tm0F 57| dٜvm@{Yyg}4(Cqs 鮣7,CЁ0bk5+;˽9^y\rֲxY-?0 G䣇/j'5\'Ҿ#04tt7Gq`|K?"$w'*cy8ptkMei p'Vh> c/}I$ O0gdW*-p>>I.LoW6_ǁY#!bhd#60[G~<8ES%l=8wPDR.+Z9f:prMĵ{Ǟ*!+oU3 }_80[U+Mئ_e80k2F[S[nՌ0UKq 8sl uu&ݦ'Q=)%? ȃ#ZO&"ZsB a a,o_ںɥ}B `V] "K*.G,>r4`բ',E7~UƦ>9Åb8 ,vc ?rT%tj❃'{hx˝7rrosd&pϟʬF=#Rp= Nquk9Fr}Ο=Pw?>vHgS^ހq}.zt_ѯnegNϯѝs@G&spw!Cq.i9*2hy$^d U?>YhC(VS]zjI *ٳe;إlʧnj7r 9+m6Bpj"?~~ f@r79p-B0s6WOo`;1zo:u}8X}n~h|Z8hnZ[?y$-1h5gQoBgN{T) N?PژjHưQ݁_NY/%ґc xU.$MŠOHK-h:.:U_Qe'K!JHF6Pܪp_+ R [yHRoMOo꫔%k '}BSE9_oٷq9#1< ,x1B :QAXr jL[^buc6̚;? ,/j*ղ|X0|Og㍷q~q .+yo-=,^岸28Z{{&fK`ME3޿dp)l;jh'TigU; pU0wqF4|9>\ycվlEOk N?bo2nLNjOixeUˢ’34 X5 9]WlpSFe_UW#XO|:4n:c# 6`ԃ2=E,7PJo,Xc,}h}qN#6Bytu_tQ8;EwH6Uhv\DΟrJk#zq!Gg7\}:ɱglU} ꛑ+x%Ga_guoI# XV/tdz`u&ҼR-P)}_Ha!T:Rvt2O/8RY [8 Lmt1~MZ[U/\8l wm;# ~ozX>{ yXpCFc`w8 :"Y&:.p|rk bHKD&&"+.ںdatcqLq}U<PՍJ`؈ x\?Yj9G4"] efD'1Bg CqiFX 9$:?Mq]D>\70G-9H]9fd`V\iIhA3CX+?O}{b9[5sQ_!a42zoI0qd`Y,rn(T5==KT&YocB k1nNՋVV-5汩вJ}h}MiKr)՞f=iSIl"##IyՑj0pl`f`7t2M MGӂfV=O':ڤ.}Yc"86рC'9KR8nN}ϭ#'mM/~23XE8?y)AYSs70%IVFT`w-]` 5&صo -f)OG1g8b%tJ:;V$1L->i=ř0}$U&BN3{LoU-&_ QN`YQ`WJ6@>d70~ஊ286cjWZm0sώl8)0frkBG5i"r%,Θ, wdڃ"︿h2eX/}yU=Z܆bih,MH_d5Tڒ̯Ա(hxG_gfh~QT{sEUD/rA}zwEV@A?kQc5UZ/$1E)y#I+8:Nأj P)eQdQ.¨:2rY1 d7j4=G[f_my_'xST>V$Tyǀ5e i]:H;'LM5VNݫ܇x^9Vx0Q bZ:Ht k&.Q޶z1`QYL" T~ҧFDQI RB~1y ׈O Ԫs !O7hV=\=NLF6U~ғFd`ԟ NcD֭k |={?ʸIA;*NuwrޯHaaw)T$݆= {fʳ')a:\YwvVsv]{EWyQ^ S?|u_mR_[Op/t#{JֆpH)}O_nʛθo3NR"ј,{w Wɣc04a>[Žꐘãl:JiDVvN>- *J_#=2=hyuj6zlď}'ĕz)`ɯyJ=)Wj {k5*fv4nϞZGN_"Y 8=Pq#[O~ݎ,+/KWS\`Jeсbč 0 kډPIͪL$P: |@mG&bTXnT< x֫HcL2GP5 L^Բ\^.kD_!`~HwNʝjcXE,fO_WYjX{U;E$?1r^ylCw-Go%dd{`7u.CZ$%WUfNj̳k7z^v7b>K|Wf(k}d$_ı':j1hb`fc`|z`dsd ^SgQyuzrlWg؊GvYs&)4Wq~ x٨JuY= 0uY-c@ǤSq+$Xԧ@#Ǣ"ì@׼:R9<GB8)TK 0ZwOl;15Ľb3>R J);4ʢXS>{ɮk̕7tΏK82c ^E}Gf}4Aamwr_U:{{9+,)WgG/+Z,G8\ i]S& vW v[:ﺯ]%o7tW*YlLs _/=t}y-d FpRKYqxW%f.$0##LغW|mէ@M.o'ɮ,O.sD GVMQN*|M`FxvFԁFKWx>bupZ>QgT"AF׎jFkBk24d[ =񰂕1uomS>-}ǻ1w ct?Jl}{zwiy|>SFc_߶Of$Q33-`;"†c0]; ww C'۟(T?[rﯴ7gE~ֻ4ۿ-vjаImQݫܖ .Һbsgڴ*8cێu<`hx&'[jo~SQkU[oǵQ$7eP_;V@|j6praGp%>x:=ndkت ,Ka/X3kg 4 -"cpчzz,k1?= J*pY'Fm$_2Qޱ>1 8ɿVgŤ'+qgOhg^ic$ H꫶_AY+ kӿ(/M1сw9.Cũvg}KF6uj|3&ڊ: ,]GZ԰Z-0]^00<ګǾ{iB@&|eIzJ|4{UtoMe}0$} y2Slk`a-iXEuM]Sh Aul k]R-D`(#ʎ2>.L!|kQ=hq'$Toɭ_J#Vƴ8`7K K8q1gr1ï_bM1nXDg3#>R̟FD`^Z$X,K)v(jgKWMXkzff]$|DmK۔Uyəu\IpyD$ 2ݒ֋+ȟcS?{W"R'Vfi˘"n38z}5/]ccD|-Q%i?=O }DvȊ/wcOS&SB<׎4LF]MbXbI= rA8yjV:yZ̾op}ߝ6G 0cw^и[BckZ(7z֥AWpR>"\vt!<_m M|,ǢnMQ?龹"ۋRib|-ZfS*rlNoԆr}s-C=Izr}cU&#Mb 1PQ|5ڱ<6Z{TC; h@ǔ4zhgր/ka}vis)٪U6IYe1༬ډeHeCNFAYas 8x:3mOY}-9LY}/w@1{c{5s*-^ivH[$' zU5+xk$;bmNb{V) tz8yic%zGm,eU./?s̪k;3_zFF}=ٻ]8ǁ_LkvTM]H/`Wו>&ƎGSZb&fT^1s^;fIm,k7}ǁ;/vգx2{2Wߞ]ef(FkyiRh^ڑlL dm&*׻4"(Kɦ͜Cygqҋ2yxV6y`fԓ8^T24eMǓ+`V|׆vWhnL `w=HFF߬ Zen)0޻bF5;g*)-URe|bIHDetíaJtL!h͒N =<+c",X ʳ@zMsvO8~Z4> b0יSL):O3=;ș}Mo{YW݁gVz'?/0~ixp |ePy7dv2링0=(Թ<> o8u9gGO$YL`Dd`v6GfgJcG ?nH,ys Ko`Wmoߌef,>3֟q޿8Rͱiw |5r{8ު%"ǿh 9I~;vw3c_ Dw i}g>\{{Y~qV7P{v6VC=75X}r}o?,eZC9澷)ty40q(^p&״:7Y?ue{Y3)}eW<9=/1M"ôvyqp֝8Ү-W>LvOrOgvw.}fYϏy]ND+l@׻;ӋytӒd:XQrwmN2#Rbe\/P Z ;9f;WAg8leW$ V،t]zyA!W/seIB飋vO6D Xz"9)0pr"ך6џ8Nk>wnZxWJm5Pq=R2/TGug}ӈ˞ٌ+3%eV9R}"5f)uI;('P˗Zb_#zѺ;QUG"WVO 'moٜ ݊GGj+Fݐ.fȟsw!o}nQo f/-s#PLR_q ҠWI ]r?uzIIㄲ~*;RV}lv6;Czu%zg`9CI=<>1:z`ExhAsٵՎ>l_ӘܓaJu?>?z`Ԁ!=_w?~6wpo+/)ՃKqp:uޫcZ`bV%vgeC"V\d'd_(K/rݘIWA ^}=7<u*qlx 4C#q5o5gO[C_TXUJ;*)2aPdHoc8Ccwf43=Œ GӪCI<Z fZ-0Ni-!7!c!wZk7ґUc/2hdOk1VM9/G0dIkU;]5QQWdIc)$$vDƎg ?r؂=9h#,$XD$O%|qG($]ꕀ%0`O*i[pȏs[6%0+UcS$W(e}AS 2L2-9<ʧ^Ȗ TxO\~U#SXs_?L&"W gquȝ&G"݄l96rgmH(9\zd)FZY[NǠQYTSiM_4ƅ{9a)ujnGdَmdHcʼn~$#Q#>r C`!kPYɬȓjt4. D#/k TNu])$ 4rgmՊY@HAb^dJid{1=#ȇbeL1;,h-Y\|ٓE9vE/9Maq>=>Ƣ-O@ʟ}y%=0=ژ{0rX |GD1e@\DXQ#A i& d Z9 0VIL@ƨUs̩C!sX%0)նY=7~(>C.kHnϞ|LW#<eC jt2q3[jnP_Ju. 9٘϶ۘYc0/OvazćY|D~֬juY^if=Lusq/2}œ"A5@^Vqq!Dx`͎=#ڏ]wegmT{ErƆM$PU,tɮr,i>7cy%) CI8U${$ejцTxl;ϴDά==f$'Tɠ̰ȗӞNۇrKD'ܺe[oí뛯gznݾ3lҭw]_nwpgܺSk歏­ /^ ;8ܺe[[vWͼIuu'ռ[[Nͼiun}n]4[Qm2]۴);|{i h(?e?l j\X?a8& EA{OHXkygKicZ٧^33In^s ŐwT|8n\SJfN'l#j!KdzelIM@*(Snڠ#DkQ C RTH:Ѡmib۱Y/d=u45b: rQ/L=EX@=#[vfi!eǾ(m:*r)!l4ܰ܋_pJ!tFu}@^NfyEs0:gM=Z02΃]snLҰgέ1pkdW a1E 8c_=VtE@ o䵠A9j y]ha7gx1~ub ӝ/g**&FZG=&de6 pe'fqeq3e*8`f#$phwCZՍjԍf,sd]1mɭ ؑeZ3 ?)vpI'40`Kx1 g.6r |kf팕AQ%!y|6h{>I310_Q0J'm=ެ$0swQ-j-(Ȥxf IFA;c>3 sr3t,@+Sfq;9]o묭a'iӍO>ݻ<л_#>+͘sJl xhD5׾(~{9yst }eLjC< ڑ`iWxK{ik~JzXO`Sh3$-##7xg-@:uҒȣ B̌a?ʎLY[d'w(U@'9#R+%\C;c|la2BLx?}8vt,Hմx=˂+,h̙dLPyΞ-f%vUz(29ڋ[CWxWDΫ` Xs5\җRUd'™eHSTw?ZK7ʁf˶9ӍRHq_J$I!l'g= iOo*]>5u\߽4!n=0*8\'9ZOAyl9XO5C< [s'92u$æm"6$ xd>b+i,pCZ6zTIݥLЂEN}s\cdI-CICwuhҷ6{I%hIdٷ B W!?`}GA}"Nd߾[`10 و܀Gt I5I( {:<{;i 6fȾt#c GQd^~s t*O*u5~QD$v7+OL y=FςHpOׂ\1qHqEW{a:w<A]Ry38 ϝJEB4AGĉ"~\l5|b]y. #71H<- LpZees4*pc Ы  zA^;&^4B}.m7|דpR}J* a 1 %t5=7Y/̒R>"Lуsn ^r["1,P)6WIoQ6'0-5{ylƁҏH .½2kJ7m\J}O0.N}ΠaJWQ}00j3jY+9n-Dkp"p2?L$XbWjF(Zق$L7jBo{z۟ݨY؛ihVB;yኙS[]žY+_.VF[+9>W b4] bnt ҨfhT~uѨܩFXzQf λX}\ȐNJdgw~\6(Rs* sgb2m־6@Gq$XX} W(ּhheHXLHGW Fvrt'^4$O En5ߥ7TGQXdZtx !|3T-h퍻%X3UP#knU["VxZ m|E^}r^ըn]ȴKXkȳVzNϧ"۲bht$\p\YW$DM\ {AA 8۳5`eEfTϜh?sՓdЯ58'^4pލAf=Kb]{B FUF.01bxU榹?m|E)7ZB[@./%q=H!J .2ŀ`1%հOvySK{vЦPG`dz͍t03򢖎|>E-2v,s>lA&ǝ$Nd=cbabKF9&i|@69AKZ[/m |fN:e?x5T:KosZs9CN5Ʌ=<" m ǐWʲDU@g NxOgxkoiUIzZl$y<-S8iՎxK1,C#kϯ4T{>NYM) ͿvYYxק?uuqO!7J w4!`jϖwrήv5@n+UR,a$mN RH,C8r03z4t"% T띎GuAVil1 5x4xA*ό)'q]ty:Wm Į8@-͝!C)>/֞TI9X,V>0d9X]iiR4B"vZ0,a_!j{G H{&$] > HF9:LMyeLNKn\t4w*: ,t\.q= ,'?~%8ysupLFl ɀHUo%`^YkzIJG&$~r.ܚ Ѳ@#cK]nPO]kl1Ro5MȉNc]kj'TI e$^€Z\Iy ta&eZ O;]6jiCXBv /(D6SHYJ\[ Rzތ)I5@"oZ̓boNk?I[0J%b-:|&h $ ܠ+2MB1~%$|+$r]( 7-R63p Y0Lig/5L?(\HMҤ ue-4pML.UO\/eA$yx$2,k?5C#%=3f=%b5m\(n̨2yE es I4caز:Әe"!@ RG Sf0 vpF@Ua\*42Y <7,1jYvػYȜEFM" W+v!U`F*<|@1zۧ=]`k=`F7k4~= >H.eCV0TFhԤs\"C*9t$22X&镤*Jٜ? +M| !*&qQ¿Q7m0gv`yld]c%3 *)k@ *P`Q*#c9PS9ZA)һ V| 6=r)[d߼ȧFMQIh72jV\oȮY%"F#m\+*$;dCW9<22pG-64p`*ƚbE~ ^xFL,lUW AnM푡g-jkW":C}yF;{6@~:({uYfrނ&Y]6 p}  L}FKIkIZ_=װ<@`+Og&I^ݖ+m<{E}vcI\ePTۧxʥLA#03mK J>GJb5L\bv\>+fZn+ݕW# wݕW̽1/;!CV2pO1-`օ )%,m0KGt[K%a_1."Sc'( e{-TkIHc!o++|zv;u_MavWϓNC$Ɠr>v<!݉uC#,>Qf<7^^yzٔ'Pmv9C(seCnGAgyoxk䯆:K&&!fyXUt ֖-Lz7^ oSpCb+X9 H@m"7HRH+(!Xbf,JŚZ+X@ҚLL}WDUp1.#s'$+N>y8GR4} [;|^k fȅ 4b)ao"7uLvcQY}2A_SYY%ni|:哏u>XE_#@_>OVV0ȓh&ɳэ+ 2It}>$' &Ja4 rGmpǍQrSAd2a c;!1}ؼRħ;֥wu&H6H{;ݗ$X8?м3xy՛1+pWϖܭ44lyGŵ yCYP<-^lb1rCX_UɯoY ]L9kzk*'9WXAߦ<3UqN>+;D(Wn팒)ALj?SQ!\eu,Ny5s>I0wHV?jVLF]M=oCp{.X4IV HE÷^2H8:_ Ϭy~9ի D˃;+P dWIXsM>{7ZȬjVQ]* )&ҫϘ=OޘeEY&B q}vҫ?e1o!- cH7$5z ҫ{LJ.Kޏ0zC"x,g|4̾UcM7hZ:,E#˽!r 3ۍ$][g@Ԃ MX9?)p#fcxL7k#,r}shҔyq(_yzZ + |$+S|\=NQcoLM+: ԖL1aB;nҫֻI5B6*?>'6Lvc_ ='EgoMݣWE%Z bɠ8=^¹ȦVE:7{7e=0`%38dWґR+vJqȮ;DJ|r%T6*rꛙnF0ɺ 1ġB %ړԡxf3 ]Jұ>)! ]jq 1C@^5 I~ቢjt. d,A93z7L<9bQ8weۑ-q<h8ĩ"Z =⥱e{Gi=5*ECfdasF5jo?+JyzN/3n؋34y@ތ jt%K10w5zkt֍CSd`͠˴9rqP*7v ZG9Ȳ5F!~$)ѝw!g謬ȹgkG DK" 2RO1b&rx@##ye8`%o0<)2PRI+|絖})z҆>+^3 ?^z!vMwI;0ҌDA8Z|'EfDnvatNB`ёO} ,쵬,ԕ ]t k%AqO%6"0^3CL&%,]MV co$5eSSXbn<~RH {xۧKG@74tC|3mYv|أSnEl6ӬG@dPQ]%fȚg O o/m;"ln\!75ƛ#+]}_X'NP,roƂ 8:ǐJoAcD:5+rބ}SnWI0iuv|!u#9͑>0/mIxBvb:h5 B*Mi"O];!̫N;!{fc QzC\oB o%nV|u/)fr!M*`IfB1=nap:\Ixzt\B)KSIlSsjxzW1E~ay4,BIif6 a>ܠ30kf0s5bb&)&0`S z፩=X?V~) +5n۱Xنp הN0uiI3:$Fh O5![i{^.2̀E'+eߛz<{g=ޕA"K#|j%Il& 2׍A n7AM:]7nf)!^rew&Vw 9 (ՠ6Ȇ[AO >t,2twb}/,ŷDxDeP-7^^̱E6#{N[(oLnD&}mḣ -ȨX˸>[yt%/g6#9Ŵ%q^cwO(| mkp OUA DMYh}i7o͖7\@kZݼvlE95A_[(# kIȯ[ykȪ_7OD6` 6ږȢXE@#q bC?\C@#w~'O'5|升K6XҏmȩMʛ~!nl|'ͳ{(o[HBޜVlemML|DDk^ya}g|蛕 |}R:'fpi8%7/MniUbf1oWenZ ^8Y xvں03\ȫoYuúY 7}beꏛfjq޲ț5Ь<M+4Z8?,\ H763]lD$Оv v ssYvJ-껦# 2!99c#MͽU + $<mF}ɼS_ZIfa|{xgMo&owϥx|͟/sE@mWy1)-vbkc:rs[=z2 -K o˹mϊțondkuz|{99~ț*Mm%@俞@V@~țLr$m@̡2Lڪ%-k]l[ybrn|H4}-X|#ՙ>b&㭓)wT4C2^Ga 8{##j7:rJk R?ȩk:k;oZt̏2Ul&iS;FMLIo9ۤYkOxS6M kzvbrݐgXsBz4UV>AoysBy5y6 VR & |w֖o |wKg\Bb ovzj,5C@`[ 7/ qb:@T[~fJic<%[\e6t<ܺBJǢms$ѭSȘn]˄gO5BtOac(53jF<3o=jd^=g2OE~DG]V =DE;['pA0@銩G#fl[c5zOAl=BcdpD3]3;dh\.MkNM-jHˍOZnsMn\F>x~#5u\@r .Tȧ!iF|0[`7% 悳Sご,@y^֝L`z=|-\~ /.jyfydj EE{`΢r -/fyLFOi绊HχJm"a?M@sxZoϣ΁ݪ7BUasa nƟmBC]g(@caH >ǤY^$: V}/}nЪaUX/"7_!RFo- V>Űi\-jX1 t#ۢ V[^9c@=?I}y="VH(誉XPȪՕQ™Q"e}#Sk%H̻} `)`Ȁ rheT `POlIGdW_]S7w d<yf3Yo a4w2n46an7»z|>f%0-+%H+rsմ{emDԹ)0p[V?DH vU\Y][;"zACM٬w y :O@P`էroF_`Ӻy"#8e*\yeΎ ҼHf-٨bV<Mpu]KQ4pq tj7޶v+)\J6)Tm=[5r TSw޶[@c&2(>t[v2vʊ5.,_}L{ڙtnVC ;['S]e{3ɭwxYޮӬY{+Q>Cfj< k^-![p"!}\l_)rU/DKn>HfdY'7>: U=_SpWJo1 9ff}#;zlTVwQPt{?qo`6[a3CFo_Nk# |{mF̏"/;0[ <׉F}Pk0zoO 퉼lkW ̤|j_19qmԣȽ3jxekjg䚭)zFz%5Z?ȅ9 9Tʖs`ܩhbжW?UGlx9!LΥԘ+vd- Tw#o6T`>Hz6,!a5ckGZLPX|m.;izev(uXd]:;4`VayjN Umdff~0!7mUt7 |lUu7lpa[.Wl Ӗ]o5_6%)%÷%߮WEAw?W|gyuʍ%!Vg9LvaꯄO:s&.,(jW^83,`dz)C/O|{b!w/U /45;ޙK>BeeQ;j/%-[&ּcV|TKwwO5pߝndwǛ^ lwZӝٝfdNtR 6sV& aw߭o9R$tב@k ^ !r%PK a)<{ۢɪ|4rQ =;K ;ϜXnoc6涣bm_Vra|.j3 u.ucՔ?,ߙnB7S߳|gŽ^2-cPʍ tdFkIGtHGu^9(B$uPdz2 k 7C{ւFc"+dHy\lw ߝbngL<863lfFWC|슢OnHgeM{Co$=ENZy˨(&o2q p3H=ǽ& U `Wm˚"uJê߻lX: <߻{ێ[#5r~k/:Yo2Z LV{SL ϬCk¿BۧAL.xG@2i2(Hb]nNym\ҧlHdE[ͶwZbʦ@wRͳ^ۻ3ZM_:h52R9d8j5:njA%WƷޭ?5v&"?՟̪sgD'MlE66[-C,UmnڨPS[qS aXn% V-I}`2GJ!gۻV- V-5Sv$saԟm{ҚNrCk+͑=zvfAIN}h6|=)AI'ɾW*{n8|ULAp{FU\ѽ8^C]?Vu>g zz!eRv7qٕޫ>'Wgc@M3Tdqجy;6g>ߵllJ:|=빮 0 ^"W{^zK& p=:7K\ S)#SVrHDOT-A";Z; H{h8# a}O!9J9ݨU-·޻)o"6F8)\x]Őݪo CV̊ʎxvE!|=uZ($S#3z!7z2V7ׅ|c,#mnynG ;MPYZ1%|l Ы DGvc_=V@ݲ >{Ar(;isAwR@(maliH LVh#[4RLo9}>Q#Y5;%pb#>ÛCl'yPF!<4PxdLziVޓKb#"b7 Aڬ>`5@dNvH,@UW>*b*PȨ!O !V4";C>QçNTosķB{'7HIFN|Zl#Vc a"A"$VLVh x ZJ'Qٓ|Sގ^ ;Q|#'!li)K¼j\Bo7d5Y²@nCϔpc& }~/Y|_x-pe_Gp6!}'Y ·54I Qi3qط!S[{ yOG ^꽫5By?Q. y?D. Lx?H. w?K. v?<. u?.. kx ռAOv lRJ'M 䵺AOZ 'AO 'AO]q {A>w- |׽A>ɫ\ 䕭AO* 'yja䓼j0I^Zߌw?0I^Z$0Ima| 'AO}m A>- |S[$ߛ0I#ma䓼0ɦk,oƲs!zNfWQ-l믇N\7mD;~HEϷ[/lݢs uB%tZ_d.pu;b!`w7І!Tp"{ȅp/7i'>pE&a-oF3U\!I(k_G h(4ZW ^OKKDZrSvJvx@ rvt[;]bF DzfL=\zDv"gu&QOW2^aZ-|D@īnI~datOעkuFSCZ"S6L f_EœO kf9pBdu Od2!dj:2d6=cSmϮimr<}l!zOVTzn۪aَ†˄m &$f7 )1$$fQwu%!7I*> {ݚs 3';;5b,RI'O11Ou).- Ŭ^tJ7k'e3E,~٣4'Bs5?_m"3@9p`[ Nw//>AJ? 30 s68  vq-ر@;#01"t(C35)yraW7~'1190LC%OIdo_!*QXtSilN4nEH(3W0q#v") nOLX:I ۠*<0 =P8d\w1P+yY,_xR^-Oz*40r~uDd6˓.nM ; Ye'v0X~*k7r3T&2f0w [' zfI7O*cG/d+OGc_/hJpJ=IsSWաd_DȘ?L[,!1 :?Z<@t2Tb԰bDU?|9A|E^ m 5v!>v!>k!֒b^\;}ELTRE)l칕hNx1L|5ڎF O?|f&u #?ۼ*Y \E4CL'A~VYlR: sү\,q! ?{x|EDσ*~<#A~~ZRK?B ?{]oG`) 4dhZҭ31ecޑͰiq1ObB@(cX˰gF|]vD6):8YGc2?Y܋Dvq&kȓ_ps֪'9M3'E/ dTn^0,Q"EU9cR321!O)Mbn$( T W`.!d`Js 9an)"ɿ%0]!*Tl2ĊhW ݫk m~j`vgY"f bT-~@?/Lb>bh3fk34$S;vFS(%()SYØ?+cSOɽKC(zc1 \xCZK|p7P_  AD'E0ybȴh;%1-BbvJEN]C_zM) %2EVym$%A9o_%x$:~cޮ&VՋ9HYd;UdYY5*gҮH5Z58(j/oF2U,M/\G"sS!;^vPEu":)Yɾ_BUU0 Sg)B|P`"PiߴRdž!0$M`^-ff {qS" Mdޔs\H8bSoNdI{yBG0*Еjamw0@rx!/QgrZcoɔ8* ++hH)}<3fã0938ni A]K/M#cRGڊLH\rHUX O"tmrYXB_+᥺G: Gq:(sr|/øn 1G;=79%cL5%?Z$/9xp>S]1u c`OywqS&upƦANlNJ7(ul$F 8 sޘ53D :n |bsl7-Y˵4s'yVFەq9}E065]yzB3wl*Ov%%<%εߏ[QwlPTUm"\Xӟ{j!+D"PS©2ZMs08׸?W3ev-7lduap)FxZYM1&S JdZLP 1)Wt4 c:4 s0\1Sh%ap!~ pL[ۤYF ,9-apR!I,y|nۋ볓̺F )ؽHdrBEB+OpGa .Zz"ϘML􍴀%៻V8Z 7;:Ioyԟ"2d算܅YZX0~b.3',.PmFiH5t4gݷ]݃cUO#zs2BTMRroiYu1!^;'enü-,9Bc p];Ѭ<4ͧObb2$%Wc`՚>8&qG|K]攭ˌ&6tR:z4u &I.力+>fw;y%NBaV~$o5 ٷB?u|=;A*݋vyc\{BofE'L|Cg?茁,FRv1e^;AȺTJiASmL}5<#E-v;\i3L}MvB)lteǎ;fo@ V־qzXi2KWȈAxQ゛s)GAxSliT3߷-ОJǯ拹mfǿjQ@P3_?!4`Z|:K^DO`>I{Rz |H">!1l!h=se1.uiwbX#9R9*|Hsp9;&-\t)x(&L|ǡq=88x 8C^MvuN蘥͟ˏKu"1qJ" cή&sBc=TgO LnؘOJbx~cƮ>{tȥtᐞ1L$AUTVGfmʈ A"2?nfM!(g'?zR4Ţ1, 'Qx">d$L`F7򶡝:gzIϟk?0? [??e5;5Ɯ8푮U BB^~^yzzIRK^xiUudSL", ,QB9@&ņS6Sr6֣,)n7ύ'!?awCh )S+ȣt\X4Ž2bce&69+hY >?MOM6%Аo]bNHY\vFRI*@}x~zwJ D'bK飪K-C~Z!ɖ p 67#|6:#+8NaN٨Ŝْgsk;& 7*6?U.&F$w =2ҐAGv15ա@t̪It+l~+YY( M؉^l -1ÎkS~䟩gv 8fַ]-:fΕ)SheF&N0u4sb6m"uj^rS}p[0iۄ#3-=GS OM ̫u#pm1A%l3m}v1XF,@kbƼ~qV'sV ixb,?mc^X͝hǕ9֘;;mjQ6[ԞQ!Q}U\uu⩫ Rǒci̾ՕܳSV$eQ.ǬuaM `f'a@Ɠ ob6=ܥ!IXQ9ɒnӪd1 1 KIIʓUfpz Jǜb%[e:$Q1c{qlI&0֟*^;a(S,QX̲R0sU߆,̲Q%˴Ho㵩o#S3r` `>Ud EOj*3A|̼'<ѯg b^6R$jC G9"]98'XJBvq17]Wzcv̵e} *3n)ɏH$X@ik"116HS![ ~ib.Mj\G&BAq̇<ĸA=PBQ.8Ml^HC;zcF$iW0($>; L :N:j^RˠSS: =ztMv ZL9mԴ_L؁@ċO8rR0hRA9,א FS2tp%SV_{q1%/O:Md}Y䃅ҕf;h3`mk4mJ27Βu1+֟lw.e`)]!lw>D]dv'* &Me07laSƬVr=Z(m. 6 T!y,ękKv1I~\W_g Z/9v=5Ab [ WJg[ךOd&md"6fvB:7 fyBЫZ7k3`}ŰK`q*f K4)EůMjOWwb\ 񃢰^JQ851Wi"-\œ K8͏F0kI09n,P4YbSؘSkkebP'~N %%>aA JVH]l̯ēl?MXsluq&6^8'K3P -J`/ޜJ|[__z ~4'cɖ9}kؤjhzq!՚2K@>)ODY'w0M rn/gɴj":*Pi A]߭,Y!,L;WyjfcܝoA>îAM;x `rd 2{SfjyIVu# fښОsy/G]`ƕZB70jpRWAƵuekYMw0מ)vKuPFsXhلHTdDMD'h @"4iEżapb*%*f iD:—ɯ\0$A1n[<֏$Y]ȰzUJG_PJ g~mdw芼+Bv1WTfc)d&kZMd1LsY]Ȅ3RPzA3~ ËȽ!Nm`9.;$OFw& Cus/ޚX }hy^6>lZ1I ±)P.:CG;ظ'4K0濅43|`fMӚT:^jwg:i]dƔV|/Ia6O{zm^̈uҙYМMb']ed+ ""rVS 5b'4RWM"֛El}۞\s  b=̀ ^fX~0c Pevt|㘁/ fimt&?N/+_ n.$am.|;5^J:kaG~oJLAJD!59y4tjDVu2 vCV0/W?YEv2*ӗe'[asv$}SD v|aH %HdGdO*M^yxc<kG>>+&HMˌF`QຏڏPgoxfnu#5\q' Шϯ>+-HຏZlQ&? ,՟qEhmGWd#FQe,}}|ҋZ.(A}|Yc#J: WLk&_'39 UF*Ȍ5dbCV>|]>h-wUgG\`.@Cn{&Tt8r yYZ9.$Qϔ~*2 O Zǐݞ')h!j-ѷ5E?Ƌ;G"ٓcy7ut]䆵DλehYL!C޻]iVIl+A"zZ1VM02D; \?\hpk}dQdqS0#YI%NT(3)>U`>21}Uu[OKI0aN!>s]2/2:GZ[-7Sȣ/$s6BV _"s<UEo&Q $\~<*SiMoXwݦyw ѻ/Qf3d#j"B| <@ gp-L̪W1N#>'e/qp~"ڇ;ㄎ|<1ja$I0dNPIF%ucRץ $;i e^m;qڭ,$d pd[o9H}ʧ:1!.3{dVݑLVsdio8.4>?A5̠~EbX7Rc?}3/knrh''=1zC>F??W!avuG;_KߙRYBj̪,;*9˕\Ug<?BGIe`s+ߵ `;Ĺ88@ /;%!ۿO~Cok'$C&߇ۿ?C{'Q2(!&Yh-&ZClmVu s'i-HvmR> uߒB4Nm%]M6|.rb ߫Mz)GC[eQ*mA~$ays^˶6mg|$ܿ٢qXҸi?^-5Mʤ1]/զ778`d+瓨+gvcZ,`~H% lsP{z)_$%n)Pfe)^7w}9$3vuSޥ>OrWuh,++%/_ѿ(~WN^˗<-G)e7~?mx6 yv._e~ww?0üū{ZӤvH7n<0xlq-z ו-2a< {au )ƣi70k !Iq~%{{ZǓa<Դ>$Ox |jFk$gGQe-g=UZzEo!hݰ}nZ?QN_"9Z#{g#:Xr#n~,k 2“+˾;+ /(^k:,5R>/5y태!Bj=-sxv0ϫuZ{%72\&4oh<'MWCّ9/v$평[FWE?x~) 5=5w<WY'͵/y:6Dוr%C^x_4䃴I|h6{R9@#$weW9_ae*d߲/CE9OigͺKoe89rKK$e7δRU:=~mO3;.[/Jn+?g~8_#Z|0/`6zm=?3'xe'˯|f;oڌϦgKv_6t1_+zi(k=.G!tWXL3 Oۗ9igU$?wC(y toC{u swnB{_~;J/ȿxOޮox\+miO:[?,*S}-qׅ gOo ;aG7i띍| ~zs?ȇ⧯H kA(~ ~d?g⧷|.~zg?ȗO_e7|E~5A.~`/2 ?b? h?Ϗ d?O l? ~?d ?K/^u i֎] m@~k)w{U +i鴞 ?v Md7s/0 ?οPA 8dϫrz3X  e?Th⌓i?ɿsF_8 ~% ڪsmU%ʾ1a!?e7OqyA~j 1f8O[idwfEF~D k 2='~9`%~t6@dž0xbo0 [O<`ܙҀ m] Ƒ\GK ?rZHľ[C+ ]s?; |ieߵ/$ߧ3YQ%Jܫ=myr -fyn CĭӃ?e^TiO=m(dm>\?QI4jA'Ehts$z2A~~o ds*cM?62hw}?pp[WA-ѳ=_ ~vC@즦"Nv|$~*v8kC EVΐ/}x¢+d,T5NJ]S GQfTvAX m5vO= Qnȗ^Wnȗ{jW{GqU{%5%u~TwZ d`я)FU ,qly@86v|,~pD~~42.ExmNA1t֝梘 ,԰$1mtIHf`g#?(^`@}>.Eyuo)w= }j wws@kH/ƿFh H_in E9AF0Q>x(i:JS e+/ ,c<1m20~0җBn8ˡQ920WBnsd`${jwz0z@_ }ݯm_[ _սzviZqi2潴iXۺ9f,݀ ,}l,v v$6ME52Sm4E!#2{2 |پ5!E5E?F3d`QhVuye4*{@=ޏ_4Ou[|p mup@&untpPi2:>Fc[S&va#6kdsº|Q M~T\1݌$_߀|&~~ChԹ}̗_IRo8cۡWQo؁{E2 _?e'7Oy/>ƃ9dN|[?\v>8~DhMtoupP1Ne~~ZS6܉Ϻ:yFfx^WܷZ?? s2*@~~ fo?ҿnh@~~koz|@~nNfCspc_e>~Dn#3̺'HTWϟ󯙛j@~K9m( Ahdg͗vd"?Sewz>~vEn#ї cn?Q4 5b!m{l-7QY̸N-*c@e򷔹 \΁|2ˍ;A2 ?Gב5%:%4g̀ ^buFoi##;ʋ3 ?8Xz~#Q74=Cf]ћ}C^,6z~ gōWü72 SU#+[O{:2_͔}_gf D5M<)/>lShT#ڎ~z>=osS[R]7/0k 5މ|IumPҊCR5ec#_xc#_;;8*~3qkG|2_>2?Ve>~u#U]z #_Sc㹞Lɳ'ϟb%Nj̿2#/yʆYdo*Oѳ2sG TNϚ>FcDϚٲ 6@8 ?rd~T?jzmxYw!_~~1;EglY2"^?O9]~TulLoEM΀ͭ> ?^- D3|]O, 3#sGL<^fxϚ9#s]vy?Tfgl٢[ `_NK-ȧYUK2١#yh!_#Xlc[_pt\RrHK-9#KFX@(~9RfG{+ufY8n!9uv&~y[ЖߢWqr?|.~yGag/_ 4B /_~gӿwe^1lsM{5l ґ?RT[i"i-r2't՝|He%3@UJ~#yg9qlߒy j *܆ϣ>*"PImCOƵ{eSĶ b%\G07ln?]4qɣu| }]Cf+Wz B}mʡ+^OǀGW\XjSl5rMqB>@dBj2BN-l+92;8E6|&~u{#dsC>3EȼE$~䛰f8B"V49yV+WwfD(ߜ#_.ΕkWq}:W_=wx*G2oq*&{ 7 x,Wze&*#3+d~~< veWb{w(33@_\fcL.e~~s?z~}2?eel3PKXJA?e1 6SvS9?Z;; }w?x-\~vUS&SJ=}6{F <.}`ȓ>]p!׀QEnkϚynv;#J7ǯ?;*E[2xkρJpLq\RfyV2?W7㹶=\~l:uo; iugW;܂?&97ϣ>W-U+jg#C?4{ta 3́ n_~diug?StEVZIyYmH!=d2PC\wh#]~F񞦌 ٺ2u2o;(L+w{n /_v/ف׷wC‰k!=oCE+=TS도g׷;Os;~=o <~~[xzޥOy+uk+d:<~W@~7@~~s*s||/'xMwB~U(BA =O?5~V/Ʊ +g$-dG ?uюlq]27gԹWfx{OJY' TF+]n 9I#:;-y8;B~Z;NI r / nr!&z)o^=8_O ܁]wU׹Ubȼ]wΘ{UNf篍2<'md~8wh??#47#"gB؁G n.3󷕭 GϚ:"/˥t_EpoZ[uS*7cԻ?;eU7?8<~?[d@G+U?nd֐dȼ = //=_#8wJ'e=;Mv'?O=ؗ7pl|?kg>cd,Uw~?)4lfex9\7j{%%*} ͍ oM9oCqVߓM22%WLJ7/eCQi@>yՏ̷ϔэrH֑Moix*)+WAoo$=e喅a]!+33}bki%?ǶiƩ4y Mw= zC;ocm &#Yۖ6ل|If W"3L6$r@f<۪7ic<'3aI#Y5Eo{pqSgd; ?Xwmx(#NNNϪU5+jeiS@k}6:{l?olWf&;?SNI>ѮO7xz5 y Vn; <~][Z ?<~PH]^cVx>gW><~7OoSg#FB\ _'t<?="s#NπN7Ɩx^*w<?jvsgooD=R9ʼc@}$rg7>%/ώousFkplXcE!qM{c7ÎSS[y~<83[er\6SJ3WWpvI̥2׍9?e@R >{FvE6_fě] X.dopEϞ]x35X6Z~$pj9s1rW3;,)놢 ?O/LxE~\o]usYρkT8 ?gyPTn~m?z-C=UT!txl+e.KGg?ӌHL/9V{RHfV2R]tgxG??Ͼ_~~ؓҒ GF2wk#q 0%ģsTPKϺRDY+{KU)*iwtا\~ױ6DƠ䏮Q rEz%ϯ<0y'C Ѧb)NzK!m?q:JAX*l &4f Kϣ9"[q_Ncl?;nk鴍,;[ )v_@> (B2|k!dE$scXN?&)]]2W$L9;DGgܖm̠2=9p9FN#⟃9.w3\~?vw;w} YaEd+E+[I^UgvOc+A?%>:&~?wxF' :~voriQ<Ϻyg΁G| axt ==; Q"d~v?F1v ycY?Y@eb&s+lyk!M]~yGEʽ g\g#p.?㟷Ϛyd~Z2jͻbQ.?e\JL6\u{7!?W}Qf٪~=?یϣY%z0WVu.+sƹeg632u%c[~ ?~tZRq7/?^V&Agc15r̿!5>㨖| c\CGW.?"8VSz ?*JyGW޾3h^Wgu1]E?LoQq+'#+앋r|W+lĶ4S@s7zcHU哨Σ+gP3+C0Fmh\$?x^=y~sF*pϋ8Z20, CFZNjgW牽B E?l>- @i7k\~\e;8~R}WGsKdNsz :S3q1U;Ƕx?ώOȰVgƜtkur*sYxm?'4'kwY,sTsVy v6- ٟC˱`aDjϺ9#{y-CC[S}X Ug8GVr9Q3ݏ?gM3o)˅G&^BӳD.6_NQfb;ےϿ畳f7Ǐ?f Crg \R0ؕ26rLwҏ?7zIQvI{:Tj9PHmN2k5g=˘2oj_֍[hJ2z_ ,3~I@z2?$Wf%͔\>d$e9s03YrFdPj'~qIɤ,RƔ>u`t `].( 2y{:TÌhHi 9{5=5/rA 263cf!?|Ew!?;?,wyGρWׁYyR:{3c*Ց?gz8Z=1q =p$gyZ ⏷k#~v_84?oXɁ|QU\SǏD>mٻ1{y|\ sͮjn-N(+P-%SX,%y⏣yc W3ew1?I!g6O;*^k_~אeOviʏ$fx xQai)zvuzE)??sϩ(`~??%>ǘrQt:vF~Kݽ63x,yNTs|D׆A'7*5e>Sv6ٽSd??N^B~K[6v|]ۮ9m! 'm||l~3m y?r=~6r6Qהd20ϟ״XC[A^Zb)_ !Yqz9"yLLJ_yVZ 'l:0o?kDPms1 Б4~=?r:~>_,Wpߠ徤Hs* .^dgy0pl}ȿy#oH3{n#gyLbGρbg~>~FKqmG烰F~[l}|mQDjy7k T9f֒9~dGy/GρcFz~##@s99[6v676 <>~v12_G<@))S YGO-?gS&UwɪRQp'sl7b/?ױT)l_Us~>>(y~>> ?m\.K3>I9Ѫڥ\`i!VlGS.v~>"찣mOt{*}||M)TPOv8Qş;^{O57Ng;~dgc3Y[\+:gRY'z=͍gAZ i#v:~:53y<#?q,uO6Oז9"9 >ۯgggu>Ha8ˌ"y?;[ ]mg-bm)'Ϛmc}??gs":ԛ8bD'!a}ρ`VHĔ#;?b1~ ?jȸk+ߒ9~(Bd-sʷBz~6P&2ڢ烧kC[Y?gIPآgğoh\]9GMB AY8ސ{,gϡ.I\[ ّ|ZB> D Gƚ:el|& ,YϜ0iϣO6,^'7/?ϋL9d-H]#[퍳ρ 4r4NHIs⎈?O\=Fx9~sMlrm(Xb?O*Ϩ:Z~K/`)`!r= YAD"?gy7D?;1rρ>忏5Y9 ?h\ʬQָSs?O\vT.I.sg3'AޔB^s9caa"CRY9S]kFVӮ-=?Ɯ4V~و=}RMf՜ϔmtgg*%TU2 FwmF3~m[Smn-;(S/<]79"5W$39^{@iN~\!eb$sUe| Vo 5Y4X"?kT244iϗ7JCdgg+mk >U>dgGA0>gGUM-d@]|fD.g ׽)Px//?1Tdg- wƊ{dgGg٨?lǗᗹ(&o/?gΫ27RfIݰu8Z~tZ=ҐG3XŜ>(T(龕 *v\S3 a4U*0۶ؿWO$"dg Z"ք> <F嬦ڟJV)BρgzU'ϙYP\(!&dx~_2Ԙ}F xs@Vv\eisG`s#H${WHm`}w[PmT;A~?cMf+~O^ɯ /7FfBr rsW_4&g}LټOȽUpX4 *#}6 r"?הyڌZ`ה+_"Hm ʩG = M{LY_WʼuS/iuv*!=o|q\dʋ1z12w\~V?אO8nc&ϟQjj?k3 ^7w)3y 0s;'s Y?[ܴws0} Y?K[ ur K5ye5篫O25gl67_?%d-0Ve~u#t{=?WeWܕ=}ybN얢ugC;ubC?,v:zug n3}٤tEZJ4d@H3BLs3E~z9sE^rNrdYy7|mQr.r|Goh;ׁ79q 2-)nhρ325dNGO.~sa"Ǻ-|݊?9:K4^C43c!,ӕ0%|rt$?̚t#ÓTx'G⯁H̦i2Umx/'bE? ^jTiAϵ۳ +gHaJ~\5p?e)膜\TqO~p!_ 3}/Z~1L91Ӣ1zLog|_'GW_\/]ч7o1-8ٖ< ^~~Gf57/ KjB>Oy=QLJo)׉iG> OY&r'ho!m >i럃'oDX=h1?xr|Q>rN5cOƏ|*ȏ¬_3EiJ)goA?m~[|0d%-uXWB$8$i#'4/Ib)W烠熐j}.*v|r|U>a5`aWЛ6u@~egs+];!?~hyǖ/o?;0i%&e98~9v_fdMEA~U ȏZQ[#90d?#D+/'bI;Ɋ9*/V~d'{ٵ??2v> sur\KZ~$2޼[j!?y"pD~Sv8 \^T$q&2*Nő;wc!_~~|>-fLYUZ Vpd~vGڴ%v;Ed& 쿟mH9J3[dwuSRW2C+i]~OqhCfrh>WOȏVTd=S&Z nQ̱ 8{PZ4-Ś|#3x"s~i1ST{j;S-hoEHufBLe~_֔s %ag-)Nsef ~k)s ?L)ρH)Y*m!?GGj[eޘ)s ?ebьݯ nʥ)|~$Ak ?st'πʊ`S MwNv2Ogeg1:ffHhnIo_烶W3gA3J+8~?L7uwNSe"oX!gN#2֗MyP=G,zv$ʏD#V$wnxv":VEo,L$KIP3ؘI%Iq=9;ٹ{z]Zgy/m\|M~? ybDI:%} Q4U'1!#'Їh.#_Iɭ}+r[\}cHbGlGiaK~EKnP @ϳtO˄r (K4@_k*uY^_B y%SQ$5~S3R4Q"2-<sTRQ"8} 穚3mK}sFH'uZ,Ztta,Arb;BPQW }665Nsz $@_y!<Y˨(qPHׁCV.N4̓CFR/J=vpF4uЖfgI 3 oFZm/뉢ϧyhY)@J!u3yiŷhO1`Jauкڟn"-Eߧh맳j)(*|Hq:*1N_ZEIM.2^圍vB$L9 zn ֕qJ|nmiX)/g2vk6e_exVFխ@y࿳)$_DZv#f*xz yOҲY9]vtc;D?C5AW:s(zQ]j]!.z|?E=Gsn/i Iz"a0ڤq(:Tgj;-)H6ILGA(LA#f|=8BSMWu(EE`S'E]+m _}m!BuCq@#_뇉qȸc*|&2e !:|' _,M5kC#_yiK|Z;Pdprҋ>Bm'FZ):!G"3Ebv}hkP1PDcX\!_P'{^@#_o.!ڹByu˂9]_!?u-ZyR` GBŅIOZ;\d,7!EE#Ԋ!|/N17thD!x׽MOw1@!:̀:׬g9]ZPSf}uY^^mjkuHbI~_CWun~VV+]ZYQt.:׊KWcwk{\KA__Oxj\smu}|_-ܮ|_vve =G Rҍ R;v" Av{K׼GZ_CEpIFvb7:IVbaU5[Q5~i:z=;_n%h,*XWhk:\=lWVu񻂋/fu]d'T&+~h@IO JO|=VAS[T]D_Vyu9u}# 9%c/_j5Ef-h]#_}mFN!."_῎j :4uz-hQ6T]5 /"__)<10 e%56RF*Z B_D\ᖊK3O(S k2pQC}]!ׁ 1lNK.A#_*S똒TV@d 7NfסK18ꖓFґv|q+FIQR;|OkAJ*үUЍFm0\KJ@#_띝"_G܌ڔ+)CvŃ@Wc)KF*1¥jTI7fH:"B`O/L^Iݵ3Qc2#K YN΃oFO7j!_2Y8E^?הھk_6Vb .ύ{X#7>+2@>j1@8@>EGq>덠:is)%^:З:&Wz>z#=5:@G_o}|=2sFכ@#__\,:>z-h@ҦmׂF6Ն:>bjZF6 .u֫Zs4oA#__O[7 hk1UXl.5濦|eۍߚ@W&˳5,hIDQƾ)ףq(Sjԇ//pYj]@#_zm;ká1G?|_ÞW@#_ῶqF_ES|3k!{|v\ozkFއh 1ɜ6F_|z}u ;noatwt \Ubt*{Vʖ:vu'~@#_׍l(Z_/;@#_OB|H͚>UF^4O8ؙDzz݃ΫRfiRGMhNޖKkc I9H(kJA+f^!ף:"]ut~XlEKNBך2'-_˰5 +?G4͛FA#_o࿎>yo |}sR3jr@_ 3Ϫl<$R~ |}3`N`i3JEExhm^;1A_*f oLojWq³4M=iU]M4zF4eqh뛷5hN0A:j@e.o+o9&: IMhGQR4M:s "T%Ԏ 5hkCmib |}s]T\ 45= \Kal!G7י}|?Ыƫk:ꇏ3kW4-Lϙ?7Lv.5u(ۣxl;$G hkɴ2*#5^= 53HOM2(`,"^bFL15ɼ-hkgR{I P-BZ nK4CֵEш@#_ޥ[!4ͱ8%)Фg{)9]#_;,!(y} GH$Ԩj >ށi :ZJT"C1"8U*driA#_O!|u~5 S|u!nI59:kzZ/4()[uUYSrO1FC2H bdx?5u( /#,Xu+ݷ]Q=^OER|{|+Y/yNVe ,_k帏NWWP2w/b<-}t¯-*;%q-x4OEYhyvTA)`MI[皮=z|^L!>X+"^7n}Zm^0-AuG5vRx[? /R/|O~n5Y IaUt^34?lYpH,)B;1Q#!WϜ#-Tۜ)|cu7+)v`6b<-<_Q,OJI}':5H!i^u*ٵT!(ۤJ'1|*50 몖Z6ʶ*p 8A#_FIUS꨺4[!#/T7|r)&{N~I +"xa#0zkJtFS"J*lZƬ$h@<_L~x|izvx-8,y1 PTKho7b<߭oM1~&6̵)QĂFGO8ޚcbL}|x>>XE G_,ōu&p5=Èm6_|A[YuJ |^j">zG;mg..{|I쨖4#xlS;A0ϧv- rL#Yr+%+ u|M!\] %N:f7CsՐ5D0/w4y#LRʚto|&<~Ԃw! v]vA&tאǬ'copj݇.44_o,yBz&ա1=}o̐R 5ނrZs3XZA#4|-=dn]yy^uSy :PK>%rF6wuo7މ}5+5u(m=[yPyy#\fS7G}en$Wa\ABԮ!4#uF+(p UƬ}ܲ4u05]+Rur$ÿgA#__ӥ(^. .ǐ|==on-[xx#PEM5kHs25 -Eh#}獷լZHiѲZ7ҔqFƴ |C*ytLn&CCT#IM;TF)hݶkn2Z]r8XҾ5&xxՉy#v״6vUkFPQUFBym~#u4yA~$E;Cy#ceU%(rV " Z?odO%,ph|@#_;ñ77qb8X}Ƈxx}8J qwFv77فy`N42xx{?$d*ƒZKFkyD!B0}#7ޞ=5uDkH<ׁר >4 }Cr[c ڕzo;kCHZENMFvޗaӦ|~uF{κ砮eiCFn ⎒y;Bjk]S%ezΨzaA#_Ґ>L|ݗi)dhw-㱷F# Z_g2B.-X7FYC6F~[Uy0հd44Ȝ1.3_dwaFޗsE!\ jP:o% |ͥH> hkFAqQsu he҂,Sx K/ hk'uiJ]:F A#_O",j0'_I2V+_7"_Um=WK oiٲ>B#__!7lti臘?35ŅSB@bF6pC8ːNllĄ5|B|/#GBϙv7^FY.<+`'; D?EvoB3w')V :p_FIM#6R̽@ѥNhkzFԔ-X'4̜Ԡk?4-#=Ev[+ݶjiW.h1(VQ dƤˉSLu,XEu[JܔtH| twC”zUԔgYZ:Fv翖?4SEXSu5;)$9/9A#_;׽\:y;.f y6ޓҪKZsFkJ*(F428o1#)=A#_;Nu)%3thSu@jC7 Z.#_*%By,gT!gׯkJ@~k\ 'GHǫ Ikc~=3j""N u#>Rc#>π_w+Sꎦg!ʔAVR_wyY5cJ-+_>_sT!Js3םd\F L̀_с/kZ&d]kH~῎uIG@|=kڢ_+j**TrM תM桁_3۩h桁_ߗ}eW }|Des r-hkGkz-h[>G_!qC-hkN8r-*y)1m[s#_ tO A׮k-S6OYSlۗ׮k Z0@%5+R<"Fv{aERwFv_#-PrYFv{N:BjkW5t|폿)"MҦ{|lDSYK/桋NBv4Rb8E44u|#߂F4uL @#_k&Mr|m<|FFFr2e C#_o>B#_+Z:=e!6*E Bu~#KG':\tSLy|G<|4vJUߍׁ|O)RC+= U3 }鿶[x :Wyߩ/2t6[rZ!yǀF{ڞ) WFR ￞JrH> 2|'֚RD?ce]щ4?O:d궔AҗtI=T;43[\\$Ic֛qVv!h:-8ͮn55*ߊeֵ112;t{2^ ef謬[Ս//eu:(W}G!^F_WVY8 /#_7YL¤RǷthѡctgB&tÙ ! [/#7n'zw zp紨"4nu>.LwWQm2֤f_2ߑ|^ o=e Y[,d6ANC5_-|Z_᏿z\_ሿfR^3QQ 4xPG~^ |ƼZqoT\?2 !!Ҹ03 |O 2|W 8yNBk--p W]ײ,(.[RfLV4u H'ZuU*e7٦ix|U5h]2Vws#* 5gN"k1HU26%+5?Z/Th@ C/r0{ K_Eo>.WR4;4az̒ ZZ.QG>q|=_%Ĵh' w5P \B|mTzT02GrJף:Sם8_]x@pRF8 "hkچrǫګׁz*J k<=ŇH8Թ,\Ecbz *-uj: C8xK$uIa%2| td5*#p^UKF6Lt/㯁[n\k A)ͣhz3]Gא7vI^idINhJyKA#_OZ5w_s^i҂ɨCx\2Uῖ4@U UصT(MZM͈ &hw\RKg(" &b3A#_K{Ij*Vfe'%RC;2!_k_!bs`1A#_b:Ul1js:u(!|=_ @#_;YA Xd{) _KR/}Gtqy#_\2P+TmAB}I+;W84濶BzRHlߍ*Fa$mPַ^.MdT5P:кPjQׁ!G23=%N|=WKݓR#_O*XXI9{VpzGn(bA&Є?OwהJ*\̪x#}Kѥnn[A18s3;V>6u8/s 4]}?8wt;|s'w<{3cR|;10]G֤#Fv7:qH |}7M.:_ߝkAF@_u'_УИnM${ 4u Z$ ~HA|_x v)w\`CQ2nA#_B:J. /0;BD@#_Vnv_S v5 64#J,V]'tYM;_nnDUݙȨft`eg&=w]BJ)R3o_ӵay&hk:O#f|_'k7ד]c#jbJ.h}U `u+OU;<9wA`v#濾-4|q#}7Po6`T)]kN*4,ӂݶ%lTE3 nv |_zYV|폿^,ue3ߵ͙w?}hS$^ݝN<`w׽w_-瓍a뻆+$j?T3tϪ@Z*>)4u8ݦJrA[P:|QoV Yi% _ߍ_ɌѨ>uEvˮ@͓#}7>ZСmhԋF_)J$濾=J-jZz)ߓ3y0}o_t: \R@%@]$|}]J謤^ u.;h[N_+ 5#m*rݙx;_DTׂIl_8RlL ܺOI%=0)*qU4ma\18S}b:Br F u*z_3Wj#V6r՝lSqu3A( f]}6At骥?hZ&Q/–ATq141gSh||=1)5MgYl>E#åkGFe ZX,(вTR#_\`E^QX ^׸w}*0qc{yiAz^Vu"' }6ٿ%5濾1cp.4gFӦ-Gp%tAQ+R.^|_jrvRkM禌 Z_b)FטeMcbDj @#_kb1#{-mk!}j+y.(: ڨHmG@Sut.;|_SRu |R)D[(}.GC~5[P+ iK*ڟ?$+%WR[tٖJ8Gu H'Gc4MbBNCb11=]".ѵF Z36sG:4X+.)D+HL z~lCX0J@#_kJpP*&EȵX82:kh O _߿WJ&7yYlc0@T#h2,+!9dLfWawY2TebA_$ad,eM!^04 :B[B_{YCSCa-ȼj/|-spL CR_oڅKP4@F:=L]dý-4P]gM44@"bAO&L=:濾Wm2U##(/6ޙ&hkGd&+bMiF9!ﺯ%h뵠'crj4 *.^`8 4GzZQDFU|ڵ]|=<|_?128p(jbTҡkt˼g^z,$94W'*-ƒR4 YT !h& Ѡ^[[jL4 |ShSVhB_?T!v}hז:j_?z2AG^}m\w8_?pQ|`?$L* NF3+lJ&A 57zpo(_?b[4?=?;,h@#JM#heCFݕވݘ|WpZ݈|?DRB`B#__킠u,BH4uDIFD7"_;6X ڑ?$[JB#__o4#62ZC1ӏtֺZLb\nc~\cx҃NdI/0P)=!vIKA#ɵ9ւF^XꂥbZ˳Y ֜;v-!gpA#_u*٩2@VmJa_4W|@#_hF^1o[F~h@#_o?4|@#_h??4O|~4>oXk`mM4C_{tk!w~DNDF|^߯ek [1k wd/<a|T㯹]dbjQE:n[5]_?|#Bljp9~!T~8Z hAGꈉ|0T'<4~8$g>pS9F_+xR=e/?PWFQ 5B"~K|$z}F(&b$4YȞ4q||^!O6,h7g19#?Ƹk u4kH| RG@#_z83tcן@hϭ! ~ 8$ kpH|qβmׁF2_Bэ!5W7:ڬj1_,a5):&41AG4=!__O= Иa|kט|멮##_Su'Up>Tߍ5|OkL<{1R[:1R10KO|?z}]#_8Fu|5uz-3"y"~_Yojk 4=z$T2{k-Rc=a'k\lzoLk+ ]U5/4u( ZM9Hy}eBg;ftI/1c_?ٞfݪRM.hk:ξ*GFoeUZHcA))~_34y6|_99 +;<í7"~zҷĻ[EDQO׊a tE4俖k#/YO,l6fBCO㯹YPDOcmsv9+,hF-A_?5פCOgt |_&r/b맣9#˒&|cdyHjq8;§ق~#ݑg0e)|t^ru_QYhS:u#4^:Lj=+k!z{WAʊsE˯D$A_?u e@1Է:)>_A_?MmMES+5~_8}v"U4fU><Zu5XH# =k>)#ZVsF^x@#__ћZ)^&l8GFAvR6. :PlQ= d :P1[ qNNB4Fw#~#TRzڋs)|_{錫˜:ޤ%hk㡑שұ <700S-@M(.]ׯ hk:dE4sq>\ څTއ1yA5gpJQ[ Z_%J%fc*; _a MXi6]C#_k^E*JP ̗-r#_u|%B(Fi4m5*hkjʷ2U".Pbn\#_jQՃO_37]kYYzja6rv\#_ȥ+4% <%Okt2c#7C|;>9X:l_&[! _?^X￞J-⡑k@#_^] ~hګhګhګhkZn9Ktr䎩bA#_;n)0W+݂Fv'b}hkoUQX<4u 򩊵}H ЃljmB'_A"6+:לh)8;Ip=_?A!>s]үs!hg.”/ݯ*I13z;@紤0.rv`g.\f&Yvѵ!՝Mwl꿮ł\m'u\ iJ8 y -'7d pEH5桁9ɴQO^uq`gka jQw)wk1@hwckΓP ]фF {ט#ҊȆ6_?sW"@GOR_? _/U+?WmÑMSbI!-qثg~u haWxBO.bg.uRQy!d;,hks558^"_͗e]@4Wr$:婳"]/bg!2i#,r:hkɛ3>:[b2V. ~BSuL _? 7j :࿶Rڌ*fS'a{||X03:k|dU5txս!.55_qiY*:S^!hko=BҪиFA^ Z4KZF_o |_@t>#L7bg'#'F:};b\4B:s1kB"k!x03:"k_jkWu 8l _?s`@ X_EVu7dg=]`g1i0}4u :[Cu5$킠y_?sy<HS%\knF߸VKׁ!׷\4r׵[%?I0Pf@݋FB#_d>t::+H!rdY1Z+:Z隥^K|bAי 50@lE=Ұ'/5u ݢ"ZK|dt]ɍuZs1"Uч堈\-Y GHԔ%"q8#>r*9ה Vŧ҅?ՋBoxLwteA!_?_kЕ$?z C_?QDf. _?_O:(5sXm5+5@u:!D#gds_?I $ |ohѭ |ܟ?$ }מ.bg1@<5k zhݒq))JQ54uM5CtS ]c!+ux.u;1댟ɚE9kM0H6iC;PYFY\Ȳى=jSGG=\eFvٌX9@0t^!.5鼕u;A ZT?4u傘:"HrW4yhkZ*qii]U󿂠6Z.K l*hYʦz_ |{v F~{/И٨7 SFv D9Ԥ2ߍy zYt؍5?` .4Y))hkWu^|p-*^N2$v1]-mhk:-$ ~딂9ڶ^88 ڕ?E^Iz (T,Ng@y|-T!85Cȉ.7sTp7~!f|!Lv$gen\=BaZ$! 4࿦G),C^zWῦe2 9YO`A#_;'+CVI; |팿&hv6s19,4u(Hֲ/UvkMuFrEMROor{]_u!yF“ٺΫ","1s,<&u0)|kXt򰤦P܊7t:ǩb?u-mTkDIBkEN5|m+!ķX1Ŝ4@hB^5 A#_OӔ$K$:z_R4{opuYԙLte XF{Lר|s#__SᝉVt2@2n~@_@_@_y{?o47 |@_yo?o4~?hF~hGF~h'F~hgF~h7|@#_h1_c7_F~?hF~h/F~hw|@#_}? 4~F~hF~w?4|@#_p??4|@#_܏_х  O$ss/!KX0 +k|=[hUKl-_ϻs֢t#aA[9/)[5v)J_e-*#_6Qœ0)*0ەRrd2Eî-L%%?$Jx]֨g}3ʼF70 #IC9u6F} 1`[jƯ}6!zo]c`_PsKLC+!]__hb3 R3@d@ehjPF> _ jC '9_Xw45Ն\aN?T'=^cdD>60WA{k,G}o%$5S3c/xl|?}Ư ̃7^{똇ھy쥖 0h|%?T轜?LH"2v=qCCI/_O7 ' 0T;aОyX76ew1A{- 5cM0o9cU;u ̓ Xe1īgW/| aОyfMm7KʂY3L\ =ٌ40hϼiڽ0h|2ni&G|a_}@ =CB7Sͺ2! 3>L4f2Jg[pmZL s̋\2/+~Y $2j-aОC&!aОCVmИO/ 3{F!66xhQ-, 3s|Ha+PhKj10lR# 3+p\lF0h4h4/^zXjW {vҗ,xNgA{}ChϧiʚƩRɐzXiB?ݖeWg>)OjŘ쬥 0`ܼObv=ss&~FMIi m_Uo1J!gn398L1+C ,ZBVT-T͐8Fgn?czjEyHW\_.!a9p*_9T1R)V$ 37'3CH8ҏx 5Ign~xPQ я(M}я<]% ͙3.f2[9Z7:t2€=sZ,蔅4OS=+KF/HhK~fՋn{x,~XWjtVʖU6v`ZX왛l ,B1I'@Hd-h!g!b{!5fWzK=Jz1ȉ# 37'3( tYayo:+}Q[_捆5RK=oDKWa{}f4:jSnE06_uPLHgnR.nL'tg>F͖)iٛ0h|ǯy(n\`avӃ6fP s90A{,BO0?Fg3"$ļcv1ϩGt3?>$s =h3+^L`1lV)ܞ.a+M:Cf&Q*ni'q'h3+y- 9 gyJi2sh{7ޫNm^ 'h<1=ή_3=l=i2 Bp ̛E i-JB;ўQ3 MfA# 3=K4pv9E{06i=s ό'C0hϼ | r4H]X63ˁ`CV}V"3/Hf\P̞A{ӓW}>0ϛ XeEg>CŒ]% <Úٳ0h3& E.ўqh:Dv*2YeA{goB ?a/wIkqJ! 3_t(KkƦITzty=j[-/, 3_?S52FIQfhnoW@0h|eBz,~} e՗,IZ~Lv홯Z2n~ҰL8 _N*cnW m[6D0hϼ3շjNWNxz5ud > li41 =5ށ62`\jx(1/hs%MfО>eS)7ZMVڹXJw 3aО mXJ}?2^60\o0 gaОK3˕&L̷'Z(z~G FC5#~0hϨ& uFq~A{f?P7IaV0hLgofdCnAf5&( #aО^gߴWaОC3Y2s˔KYg3ƃqs2XB݉rVg&3vWl0h3_6CvaA{ƎY=[J3whϨ&LQA{=ں0. ޳0h.7t @Oo&EYw d"`z=Xfd*Q12F-q.F7FL8%s gxt}}/ =2K&5>aA;^c0@Cna.0AZ/De}1^Najަ e?u# V%g+ $~&bIV $LÎ+?xة \aTL}HQ{ܘsu?/3IT4!4fb# 3#v80k#5?35㽸g? =3k݄3/ղ̙!s A{fƊ{BGYB駇aОX cz"rD3hL{dVֳ))]&gMuA=a7jc69ў[^j3*%fk3v 2h_J*$?# 34-4J3i3v .qwe613L+>+(󰘫2|Jf3v&0 Ԣ=1s98B{Ǝ](&"z6=c˜L-B߷teĞ=cπ@(3u͙jଳf,vv7#}ߍKgc[R[(SZIWA{Ǝ1t85;cI 3_h?cxu\0htR}ݺiƯ tʚWR0hϼ݆ڢ<!~s'p} aО!InC֌\3`ϼ爟=>-/S -!f%h7Q€=+ 42C1FBI#cg[#LhC҇lw {MfR!3RNĝ=LfW=='13M7eڀ`<{潙MfD74d_{~6Igޛ &~9Aỳ=$L ``ϼ爟)_=,t( ,`ϼgϤϥPկtUY4Q{i/Y~M`ϼ?.~R? /Jg[#~ȒnvD^h1YC =?jtkKJK) 3CZ-UszpSKg&3!h76zRJ5/ 3_d:Wկ.'hϬQ  ;*Mi*gNОgES>Z'ݪxFvqI*@gfިW#cp$M0h8xi4MoHJ $>9A{f&~FemK 6esaО݉$`?IBbf8_#< =3.([ A{`-$ ED}L Ɛ=?cBaCj>?ũz&.犞+vUkRWۡRԸ~)uU;)4_CRC0cX!5A>r W8WT6څW!}5 E ڬr|qz+iH Owºڬ/ U51L=;qMF`vrꈄF_קߜ,c1r"_+0 Iں6N55ہYIHi?O1 )F+3 cf)4 K$!_j͘eiP7"xV;O5C3w*S4YǁnD$]tYʜ"_p MND֩%m'?]}f:쐚FBYVh,| t::^XSt|^L (t]A[|6/M**UL&E0w |gߘJZ]и.Lc@_ӱ& sV+;Sq8eZj⎺^X6_<`_aI~ۖ |])-: Xg8!j |G#z궔//4KG VJ[9s#Bq``} rUZtTDz#029(dP:߿*6_?Ȩ[VQmT |Gl:Rc֪̱+8~B4ܘ;GzkUϑ?2kj+5,%+;G;hUZz_/GH&R#_a mjh/Nq' AFnvh/Oy twZ_ԼVU559b_~?h45{Zs\1~|}+7^l|\#M൩ԉn$5 Zhk@_$^o{60'_p{?;D1uRF`Vq!4uܛ(Dor[%H |5XoI>'Lf薛wUe]E~J^v7!Wkn-H*I7 Gј4濦'hU^o`_E~ތǏt_ 7IZ(A缆k¤bho\y{.C&$ "VÒ+gugR1@Jeg<4w3a*LN6+?)O0ۮ ".Q&幆I.c\3Jt @< 84xx]Z5\?C[Hg ~_Cи~=r@(XxIKGȗ#h&B9'y!!V:'j2]%y7 PK- ;ċ2[f-PK,-/ePKPK/etoilet-0.3/fonts/smmono12.tlf0000644000175000017500000016011011327706453013117 00000000000000PK- ;1=-,Y$DZ& W\ylʭ"mPvistyW!VEX$@&ᾼO0ajyddFsHwW553T_7:nCԱ{A_~o_7_?oguR/E__?[/f9/}ڤ~=U"geou6 ~|=iדy'\|cG}sn=0'3EͿ)vK%ٸ_7QGx=V?s=߼O3*Lg?ľ}K{EDgy{t󪥽[2iNg7P"#K~4wj^7(cᨣ>̊m.c}L/\5VЙzJ_KJ U;SO\-fXc%ux}C\w=Qّ}֩oUl%)\7W8TIލӖ)zr\_DQdVCnWz#AQ>&QľYh5+GnwƦԜp.p6-\Ř]k9\m31j7Loq]ˋHJX mfMD'(CO j( Ѯ\7/ZNGߕVϕ|g86A팯F>3C3%Iiǔu.F;>pamhU#Ś=1qOO3eE~ yaaxǿ8ZBJ4q|-'QmO@xQt3GhR guP1Ma0ylv]x%Şt4byD/iϋIeaqR^Y~Y:O|%0w!?TB5QA/6V8Hc!m%$tJvsc+\qx#nZEߋr0Dp#_lI y{ SϥފD;6by _: kՐiAǽg}WU?jͶkaGGɾE PvCEGn3>zsm[HZ'-ok.5#Ѥ]+\waIWsgF\+AZ=* hhծ~iq!*ٗ\lXܾ/~/OrfTN-rς(gx>EuD}Z:6eT8a(sDmsҷطbJye?8Ixk]kNrhBֳH$R4XYJV1+և;MmA/Cc uz%ݧ #rFٺ˙arV섑[5֙')ꍋxۻUj 1h.{>>52>SU{SNmژ߈{,Йg^a*>X%)^q[V[57ŊZ(fw5s".G/x\aN+5:_Qt3b|dbFUI du(Wѷdᔢu^2w*-SHCS_h)ݩTb7<{v_\\o F2'/p\b h<7SYo}}!h/?M++W_Q?yrpɷ/'<h|rprpI{98dz98dv98d~98dq98dy98h|rz98du)8v]5`f7;W} |M&ވsuE^ y;'7sb pQw~|x5217faeeKc n4^ύ}c&'4/o(i&d}q[Nc[o'vw3vyp;CqScOj xdq\Bpd樁洣P`Omݴ[!1YQUm| vmXmb#yZ mPv^ZG"VN[=oVQ'4jf8*h䀆Zn5n(v[v~KzZٚ?@zƅlxVن?HtejHC%miiKZMǥoRӖnS@u9<4RWccg/ 25{S^h P8--DaeUS|yD˕?)h HH_0lbuirw2YvtTl-m>OӚ>EbB;n|_ڋ^}FsFާ] 'OU_B)Kq\˃_Ih($*E;YhuTtū5jȈW/*Oҹfl8Pօsq~+>/^~ ٞr6|_bGZ%_RϏLRgK#!̥s/ Kka *1Sb/%:S`K'}1/W7/[F~1xrerkqX6c}C#i.]Ǿ8/DF CB*X_K׾qk%(6i?C;Fosf_< gX晏ɏmraz-;.EsG};/L#Z^ɠ(i~ >C41,1{p<1JE /m;OZCbS +6>3+bOJqW|*\Ή /~hpzQhk{j{+bFÏXEfpmԛJ_^ql~;Sk ,4c|hKv_.^ѷƾm;Il8V|9ія gr-{L.)v#έܶV1r>lT}v#qp.ӶߏMk'}b3gDd'c^aLJ{O#פ;˹B3dr\͇uÅF{d3>.fmsQif潙nFg)jT3\-C^DWz\[uюXs=mό^8so\,qmꗽr9ڪ贷a86!rO[ٯy$**!=r~yߓEu1뵃+ꗛ{ۃL/_歏]L/Gq+Ki4ā;sq~J L8uYOF<_~3`ZWk4l>GF9 3 44YGtֆ#|N,XQ5 W@R|!:H9Q:}XhB$F4,?;SA߳42Մ~:HH;*YbY X pҒ8-ONse~FFXf wF@,?c* -R?jkaDWrh-ŵ\xv|Z1ʇwf5=iik<2.[3zZ~A .4҈8ߞ>xOعeX0gjDFE5͓ޒCQ/n_]F[~v\5J@>|n _Ÿ\ϫтGXdGF| .B˜G)vxbQ9"2.4" H# ~r1r;65.pLBѠ1sřf@/IψИ᫈$+ 1ѷ<,_UCF0R4ԯI?..Ca}+lmp~rDOyW2$wkW~x 4Uoz|{wJikWߊ.x~Us\Ј~шjZS6ULk^@Ms+8ĨU~}S<~E~Nn_afJ<ڹ|p|GJpN?8~8O*ԯEw,eKg.NۏTN4yٸA/Hq(htz8j ! ġ{οѡ>P׉< Ɛ n%u;,N4y]AXˈ9$eJهuORp$#7J9uCS#I/V)Ls1Mj wTLL([fl]Zd]c1y4fDsjGirJT|UrEwzS^,wor$dʩHe!FdP?DURRXQ?UU+=|Ob5v1*o>9jwa3~z*-\8{i[WI~Uc7'fVz{ d{]㎷H2̴_cH|ϯX%ڭUn\Bds"sb+eQq)1{|IH#?RHH !Z/4*UT>]ӸcχrdtMcxz9K )isQ.F> 64V8W\XC'Z1Z+bJׄ7nx1ͺ{=zy2}NIǝ2L"S=Q4q(=^'9?)B'$lvQFY;obԯ_&i/}lLF)i{w8hge0" ~D0O{.?;^=qIΊU<]Y;e*SdsOYINB@nh҄#&+Kx>>7rk1krNIIx-!A9wC8Vzl|#%HPha#[V 3r,Xi<}_CкhKO74xxe>B5w wǤZa+-w HOi`)o)gL|Ok1_ZF._[p}RcɌ5pZ}_TRUt܌״ey3A݌?λfbȑF#A}mdkjb6rQ۾vqf1OeWBs8%N:oøML/{$[Zx8|p6oML cWjgЪ՛}㷋l$Zͯ"VF#{sK\,j@{3\ y\sGfG['lˢW|hB-#>qXiF4~늠h6DPp8/bV|_h#$Y&WP^^9)^wY1| ^pLDkw5JoV䃶3qGl~yh;+pKgAXkT& g]Uyԓ}O .=ztDGϢp y-ZὲWJI^W4Vi_H5aGjJ%,B5kF?Kw|TN fuf~ni< Nj-yxYIRVE4n%O}y0^r:5 ˙\KDcSO[ټ uG#UD?u Abw5z_ _ljD_6#L4"zÍJ 4]Z^ מa%IЌAfy!Lc$ILάo]E//z~2b3.˹"3\䶉&r55K NU}Wc7ŗH٬\HD+?.ȹ2w5y 0ezEIDw5 y$!XZޜK4~'~WcwyJow]o"9{yH}_[.|Уy/H:|{S^q~q{|\~ hj˦hOcf買OcXxÜwS{Z⏡5#j/qrO$Ѷ,NR XR1{e|&־s*4`Y<{Rs~O# sF Q<ѳMO͹Fze_AOc ?{c,dzS./]-͍ 3i eƸ=#B a,ӤRh6n)i xhI) 3:n%qsxmE:P\ʁ٘Tf\ʡKZO߾4pߎȭ߾R>~|+Wo鍞K!k2WJoPm-5 ,JFLvMeMۇR}l$Ooߎc}\+wom?v+pxp\O.ol3v,Ui gJbm wt)-~% ?e$U5R#O~sm4>y֫_l0;d5'm )i|2qi laUf/ OVHKXc#Ģ5CY"*C]#E( m? S'RR׸e_&Q{!S9n0gjsƩOJuG;Vq\/'ѽ[帟xVfXvWi߽ u׎/+}oHnE*(Jy}t ՛wam)UӦIk{כ vyȲm\`^GpK.o})]n0oe*$u j]LTƴu~9kz_jRqui]J #w0fS{Rn}D0%\u-vY~Ed[ ]amqnщدW|tfۉدo%d䆭M 'ڂ3C,?=οQđOc<]JyGz Cxm?&'cgճ}X؛,._,Rieu9і\Ոr|ge/=ޚh`Im{cW*(h$0pV]vi7EL!8H JAZyFkiҙ h V7F$ik$!} r׍ d YkT>C&6,D#U!z%C v@F-4bZHr\מީL J8CKEԑuUҧ~( bʭf9Ѩ!@S"0j@ W5V)t^2J.7G>JqAޅρ*~:KW\&BZ&\',rf z7wrs۩vxUc/lNU |pK笌 Ď:W5&HE@ ί@@BT;vTC l?[0i|ћSyGkWP.H+bP7`.=-|(M̙3WɜMtxM#ɷ霉gT!WӦu{m)y, &8UׂFs<[0{9\BGI^d5NHxS~E*͢v\s\jl_?PW\`^?Tl3h'F#{yG+жHrLbyc׏GeT+ŁO_a},c;[!3_UN%.=}:/`y.B#YBoV467{żDi=sS>/ZFߋ{'//-tGaogo%3^)a\~*oBwy@l۶ޘXgH}: 9؎a7U`\ Gl+xAKA]tH4K ڄ#;v&?@ K3d"/@XiF8SwzYp "|2 x煔']įH s(6p֮𗵸d!vh_<Scɱ,e/|3f|YpKMUbFhݕ756.ۑ6l#QU{MI$W͆T>q#Mz@>~͝sŬq4x+6Wl$2cƯM{K`oj\v|.cfs;CWusS#wT;tU 3̎ΛY|"4:X^9IaE|6ZF. }1vpTܘzDŽr.+mGnjl~0*`B9~[zuWεZu]|vfFUAũiaZr M% RPs|Dw:G׮?s 1  d~ai?D]SΦ+S\mtSm"oIJ7m٣woh: ʿ=CclG7Uvr}{W8iIxY-a!WU`%nhlrرݺ$ˑۮR8Ǐ gvFz6EPGe2rC#l &a{q^c\i\۹Zӑ:6 q(k I(97QW)s8,FniTcI+f#.ƕR~3?+{J`\7H"G|-!>㣠";7,]jHҙ8Wi"տ1cchEo@-r{X] 1)Uӂ!vr=Ƙv]S<+; ]Tnٯ=*#z㉾*E@)GCn@;-#lHC]YOa1Zz+= ޾xomݷ~bԟz򏔗<=Γs߶k )9՟ҵ=^CdqC͟t'̎ʛOlŇoRz9ϋO|buzޖӣ.Yw՟=1.bDS 4^o^&rzs,*F{Ԭ4jFhdٻ6Vb;)G n`ZMF#Y1Årkoڼh'fI[ㅧo"9%@^=mJZevZ;QL<.lM缶aFmۤf,o>Ε>1Y""$G+l @c^|ȝ,WܟP\ **ƃFTt"(kLC00n|Gc.E:?m^ʵ8IxM7 ڱH:4>sk.mфw'xE5YwKN(y0&Nn~?a.>N[ws3XpqD+J뫖kyV}jWxر7F|bsDX3ϼCP|^Ǩ@# ~MPrvɣ[IYrgf'5>'YO#P<0U#Z}}W y2JrL'ؓX}S]>'W#z ۊہ9F(p,b2nl];s^E*FcI\*"_aˣ -/Żr[]Nk5tvƸѸ}THcRA">b&3. oV΃FAȎrFƚ'SZ;u(WcWc !S;'UG|Ϧ!6I,)"jm ~5Bc!rvUZE;]t8IϹg_5eF"Q>jׯpO#Nkɨ!rTbD0=A~$FBH nPKF"aJ5ϮU BQGiؓPM59v8ʵsmZ9t5E3s0ίiTYo/M-p:YנL?WT̃0]Rwyr1|i:Y&8c=*U,\qՅLpEF#Ks=(GN58Y:+6s݉UzO#g3JT~dir8rEo)y;r|?_՟_bsֱ抠lLtJ~+G/sdʱhvzʉ+|6q>k#tN)!|kS(Uosz=9\+ԟi_Ww>*G^Kˤ~C/qͯJ'XMFJeWWn?Lnvko\R~sqz*}VjlQ~ڽ#孏6gQ"l+Ϗ7ScJ}΍q$ ъ]{ƿEԟy ܳ5)pM \>F%O}Eus5w^h8bhreheljv ='?i'AnG677+TDZBxhd3 umā;F\4 4554ZXh$t kh<ԅ=֮ӾOs|q)}մ8>HhU/FB m9ִ8>x\P#7}Õg!q| qPc?aZ\aXSj\.6c/ hzAy:7͝lNj`']j$p|̃FJ!ßF4߿pF5޹ϴD&s0|\/ 1cȻ3M9mo<|nXɏ(eGvmkC]X^Ji`$j"NPnZ;ޓ;T'҈#.v^cOOU+3 ! Ѱ FK͡ #鱺۝bGsU$>dz4ɜ!JBU{'9:9t?VKHsI|gG䨈Թ,/38KH#\oc.q}#JzjuXЋ?#J܌GOZE0 r.4)yI7[챊3B"@ F"GITxEFIϱ4(E+~Y>.4Ȝ4r4vHW6|W_<v||RPՃk]edkyl8>RIWْրvsE54c/c;뽫.ڷD%WI@TD?EP⚷oq|U%Wcj 5Z}svy M_W9*7_xArSa{yf&%_MոBKKVQ}-eP yoez+;/Ns\w_xrŒVP5%yޮkΏ..h jwJ!UJêD#Qcshtg|/5X.BUKhdp~464Q{gG̉T=Qó mc\=!^F<1ͅ!{P7sFN4bs4557LAO46p]@SLsla6<3ڼґ&8ѯ@ ,k?^>x`) ;x=U>WU>B0^K5Fk,nn nvhhtYxIQ}>*~K5KtiWkkت#+YȓuW 4X4XZ~;2ަګ-hAI{+&\Qxj%VS+m}ӱ\oWZNSXMCy ].ksmz _\DKb|T>Oqr.n hdi7R̠QcvCcHoa=[ׄ;On" Yna|>W3O0QU-| "z,MˉF8#l{Ԝ͜tt5f,LHgohpi'bfm8֦#'JIx9.kMh{S\Y2<4Η}5Ӈ:@u Flv1Adg`9T,l+SgR>P0;ֵVV}FHd} ?$3S|TjOwn跏1rOd=am?6[&~/7/gwnAݾVݧyI4Upa}M[Wўk;x_WѾۙq+qoV.h>z[z׽k}gތT,2ҴlyKH?Tzf|YojNcWnR+IK[O=ኤ?eRbt[z}ݦ}={ˎ{o,7@5,2:S{G#&ueT8q$;=۫..^ۇD46oyE[u^Cvpk1ɡ EI)4y_[^N+w#'цUZa-o 裶3pGct^k;?#7ϋc$"WgB4xt^4{coH?!c.D2g,UCB]&Nsv}Qjy%ѻ<8hUV'U1hr)[uw541./ڡ\"F/ox25[Cr^4~]j|\>R-F4ߋ!!+my.Db#VX/m!!|νN]mDVqKdo_`8ٜ4EJYbpWcwC_h^l i~܊;Xyw5OK;nxW{5J`']sW#ܠ{|Z86~BL-גv%΃FOGy|ZRp(@'8?-bj#}z Qtn7+3U-2u\t8V?ƨi>#}ymªH)\ز8S VØ5WьcHr%d+OsY&t_OOU܉G9sjBo&4[H{.lqxo0d;6ʌLOng*V!-}MeX」^\Һ(]~1I4?9;Iѡּvhؼ;khd72q3jU]B[Cnbm*0L2M}7?2YP˔2[[xK#wO#\VHgR/N_xxú=9rw?pXEI9}|O#{Ωr+޷5Yx-ayӉJ> z抯x&W<([m_f53I~ Wh˗=T鵞)ΆxOaZ$ʌև=D[IM6pab72}h)[>YOn~ j>*tIYYwv9Omú4ɺBzdko>Um!3 %#W TJ73buERaUm2RA"e~e]gUm3gX=W5Vaބ:O]aqZ%NlwetװO:!u>{i؟}C3B[l F<}96؋"g;zg9|4P9v¥m]Ǘ{O.'w\QOͲfF6oflF?y,M."f)n&6kܢL]'Okoʄ[S{I_q~MݕWv(wJ5#Rl᮷34**Mߢ@BqW<[ҧ#BPFm C6 > G2-W욟äluM2WDVs*SQ4g I+,m%zS-)"O *޶[Lbƹ { ]/Mۚd&1_k*nw4tfGR6xīҡc 2rW3RR$ldƅ0o(d3CWfbP RP`3)D\"ۆV$"Kr&H#ǫzl[2gRb2`Z̶ %cD9 l:o;3d(XtN&O [6 A8HjBq8- s [`'E(@wh`% 6w^^ +AX2V`ӧuI; ]v&NrE)t]qo'\4_;o-vfUXxNTZN\9ؑ" 7w:׈]Kfyj/RlpFZ=`KdͶڞc8Y% M?`KR7Ӳe%0'( ؜& M[TID`ӛ$3adDXJm[JC|_f\e1V`$t'' swUy阖LS(6/\?q;Qz!`w- })d[g9$'mp"{MnJhE#Cf. cln&)ݯ䴲'i;tUw'rؚ^rp㸜UK ,tqWaѷ) `g?Bv** B{ue6J~"ZAX#f9WUB lSB-$XßVMٲ5TxRpL ՖlM$ĔX Vds6#X<$I<>hӑl`r<_Zr̺ *>̵&A lלX֨uki˩,YkdRjX9VSqPr8k+a-FVBVHLԷޭ+K HT:j$zX[O#Ϡo0K[O#N]#WKm.g۴K۴O%UlٶQ۴OET/֎Ũ-ۧf kF"> iFFۥ-ڧet]kki$^a \lF-Am>%s=L[OʼnEbb,'=vv,GX~7XH1\^rʸ 5DUxv,Wl9OEb~iمDve#BglY``mţ(ruyr*&oتL= ':"V*,&)0gp1RDS)R,y| e|n&`% *H*^UR`q;  CדWV=ͬfEjQ[mQY3gdָSEƱw1ʧ-\cOy%V ƈHt{v m_ VSKVlb#k@D}5X٠W}* z5ؤW*end$آC3o)jY+m[:Ka\")U *S zŀS]tE$ S,a^X;L BXj+5gIKg( I>'ȂE(hvCX" 3Z\OVuh`ly'X6"wY6X:]Ra 3.2naou59s6p l`ƸlTb<ێR,~ʾ/K^bTѹ.jRICKjam+vÉ>`wtNRgUDzt5U^L'K mIV8CpMX8&mGʱ6؏l*8'}({8қE4{W\Q:_}_]qWWGw$X`6>ѯ.ͫWnՙRgy [~C^}KV_ݿ/oWѯիW vm;I(!Z`@wƷtԥD@Ӷ癢ٻ!|ږD@NjSUH4~t++/Ē+cO,a}w=K,F#vXGBo¦I}`&&bɉay9]A H5%P0K&j kem[vyvx(dB`}ߊ딉1]dPKE#ZR8szvkk S1־,4*NJU]Jli ؤ0W%:~5X0W"Tj7ey5ؖW-)ljc;%>;6 ˘8Fk,Y5bUY {;͓G`7 \0+G5&h2;ՌwBQGvh`9iOuc8gHغzͪjN֦(xVضℚXXZC>8*Y^8O`]`UɠlU_[PenQhɁ-{񟏲/?Kѵ_`מϫ~WP`Jbmj9v_ y5X4z/NhVxvlt;\E?)zb\UJo8بE;""1w9X;`,^V~tX9\Qjвv XZ|q|3Y_|@6(˵skb]8!'=QƏW: hTv[ٚך۞`*iUT]njd0}(W65Q;X`$kP`shpCаpdodVp Vne&|>mּF`yש΄^ L<'}=4F8sj$dm+*Ca F|ښ=% fHM# !c2X%Sr8({2=?P/9茪cN@*;aʈ{⃱l5|+gvBu?p$N:GO\2K-</vf ~b W)OQrf=/#Á{4vV캲g}h]%!4+82=\)Yܝ,K{?y~el{v3a|6`k>f?`!wFNwpmQ X) eRoX2fDk%L>9L2$bD&Ϲ&0Ĉ|cA^F##bBrR7^wk`IE+ ~ ;" 3f1E?y`\9_X;+[{bqeG0> p&IU"q%~PSk km9c=f9*ʍ90Wlg.QږO]W6,C_Z&_nLwwe8hUvv>P,5ŷCF];^dχL؁T9l{".Mv'隕[aHn%m_WFN@>oh\3 ,z%&Qڎ.\xW,B~\xͺ,a+A<ޝ&w ҭ3flX Jd7c ́֟Kv!<w3bgxgwh|?\:,o5cF {J&xXqh&4,2$gh^]MFDjrmL(8Wgb3rT׾d:ss?H0kdq^!dW$V%>3bBLiPc:\y)uX`C9A$-#!u2q;a^6ag^ɒZT,% R۶]@uc|+> ߯:".f:_܁.Cd\JKD @rlC;UEݺVUaNřKhƂ)!4*\n -Ϝڗc׃U24b Su[(@^= U.5g{Yr2ż`wL;ZKۄ=3P%L5/6e85CzydfO+k*43#nUt f\>& uWnDyƶ& RFNLD#vl Fʇܷ:]_z@K5M*OX4/-ipLrY`_w9x;vq頲lM8_B. 1"! cmiا\ۼά<k5n־jmlfpC }n G+,]2~Xg }jFG[.3Zjmv4K%ŏ*4cYJL+`Bb=c L K,.$hM.qtYnu$m[ʟCel9 zՑ5Z e}=Xε? d=;(k 6.VM>ܵ:<1icQK^eV TXEŗ 64sΩffI HBYh@'X3e)^3|DxoY5I#-ރt,|zk ]o(3Үh8Àc1B Ԓq<4籡H,yxlұh RY Jʩʎ"ybkWN2͐GlH^~>Ì{،<;`>/õQO^[X2.qkCfpA\-mXiI+2˄b_׼t<8u';) gvJ4Fbdoqq 1U^U0aGAyebeCYޞ@]0>33H"vn`q}#lU|J۫.D,+3dƊ-%zYScD Q@XD Nv|՞,AuAw,Hǥ} FCRT֛[qvfvSqmleE@>XLډ# T1U00_aKI83[ PCE+Sl&<5IbͲ7M n|kQ嶖[!g, qrn3qpo/ 7CK, $9CօJxXr Y''Ӈ*^:/Dk<᭹$ZtJɛU5"ljilgUWjf,ɲO_,ͣnHA@ԋf=2UxҨ28>=Ȱ8GI3%:RH!v1vSN$ol?8n#Q,y=Zk&>.Ŝ|!Vye˜~x C4rEJ+=;&#}n$o"ؐspN&VZ9Zڤl,#227@Sk/kYfol% ,\׈a<8:Ŵ$mrjڰ3kg}pjb3db/&I5 F';#[I#\r/uD8N4T ,1h޻o8}^OoNALع`\gz Oz]D";d@Dm$\'/;h* 𱜊5=ZcEU#`TWͧ@[˫٨6FUƨ 6jF##hFu`clH@YuvSb,e,z윟1`eԱmXH́2CMlsF]ȹ?} =FlblK,|JAa`s5 HvᩬiQ}4>(!zkcu5 SM@χO|} ˍM1}~OqXGkW2dF|`K-hSfZMr@W gZ`%4& [: j }[tDQhsWggok jVo @*,#+=nkjR8$~ܯMiKLW>wMS 7;m&ec0!fQ+AM~۲RfZ2f>_9K|ē>? !Uזk9j|5tB6)% n6hdU*䪐FJ梤]ex#ޫ}AKHHh"M,As{[[WsWe#M-ID.䓆%R-Su 62]9mezxBрO!0Ou DrGWnC:¦ba_#:@Fy&ArLQw-)gOplgxOm2)rCrzw;1Lx8l˘qXLuVn$XcMNU ;`3)ލ(WWܹ9^y}M1]h奶L5nr6)`8*- yF=EQ3gV8[vS@XyB24.SkxejuWfṔ_HxejM! & b6Բ { ?TObH׆u,wvnf[G;A6wWá?6~; b#I|j6!7.]I<܇jtEn{]$,Ԓ9;a=,c wl0ɍ`&)v>;X 9^|xS3[{ѭOqJe@8*zpw "Á^m`0UfW?v`p` pK&&VÕb(R*Z6ˤcОU| W)0&$vA1ճ#%䲌Ɖ@?˾5?䵔@82#[ M~т WEt 8ItB,< @+e]$g%`Y;dvnq,'؝B"#%HM&2)ىll CoЕ@ZRU}GPJ&bN3vEB 8{E ^kxhێ(?`4&VFݘeukM9=@?\,jDf6k oB*t#Z^"˟9ba'v߫8b,Ox'*4:I`},;`=9vvvS%$ f>ݒ)@:5z2;k!ܗȓP5|cşn>7?2=ϣq$Dx+%8s-'7v vHno;GIKѸb\S21SGMK2N)`#-Xa1I픴oqaCx9+Uˢd a9A,\j#oüz5ײ/gŦd1˷P<ѭ`2{D̞i@H$7TXEy_i6OwrsvZr``zQH;5!Q|3?Wi|#wXOv#֭|hef Zt#wN kv-3!|#/7wO]1(% --؎aU6ضHDV` _G[zq v["-ođ#֡)"pY샳C:KlIM@RHtq`ed8|\ؾ!+) )6- 땊*C:̚FeZH%KGpn*fʽCfx")£* `z! N{rj,=woD=H䂙N -خP0×_h{X(8|_Lүs!ɒ[FZ.lLOx+&kWܟ`DA>c[95lug&`2f` ;Y~h )6fJfL -b:=쏠k^ '"nĮ]}0z:upȕ=X]_ɘl X}bVܢKaPhp|7qFV֯h7q(_n+AZB`~@]Pk/pkkTn^Yԡ`m1mFތ}N|;U,[F.t F7{O-Q Xџ3hcE'5?eLa `{?Raƒjcc.dlv'[`vBtmfRSj?c+/*leBcXEʱt#s«%\QcQ)&0Ӌ\GU7X[2Ml#93.[iذLc˔m~讶/[A8GKs)DqfczfRdf ^FFv&s ]>VieQGBgR_;mϠL+@8:O%^@]v63wEFA ^I~F@ݘY1˸;BGVRIfUXH葈O@3a6hふLh1/WRŔU;[K(~&}HAf 0hƒQ뵵!ƆMڵ0' aP2#qʣGc4-2 fm^CVjtMchkbE(H-_p'Wk0'Ip~q5)ݲn"UV(/Ou 56zF_dJ̇ f[\.sQ%6}ȼr73#P~ E݀\"q}aƧuYby@08/N *5c%âK*{HgEl F0o[^!T>BMq]Ib[jRLO̥!x8/-3/K=j#܂RNX)͜tGymW&yC.xY' [(eBe 0\4`H¦5\R-A0D${!Bp$H*I@orRKʽ[ePeXۓIw #plyBs1Laa`[玙HeFZ?d*o;6?cv5*P<|V"͟$!һ¼tf\seH^O2kG7-1 T- `WGE9) P Z@FI叾+(ΖM~_y*VW,wAiL wpl$nAj)7s>8 l+)$QTk-Y}^jdl߽=S^.5no9Cho;F^zpA-vS,`ɧ& WEl:f.Tl|;6`gLXi~ܽb\6^!V31cLu԰qnL{k,(`fh2l#3e*Frȏ_qr`ͻAIr;{m'F`OӯKSbP8X񮯈y⋒s:Z Elر됂Sqa#s!'|BEKlSrf(e~F.ݷvOd т-~uoZ͖g)+'?~'LcdzI˸ ! ;lP<Zi*Gpwυh`M#{H,%?f9z-Bń~sY XT/ o)ZgGAcѢ݁\1R`% H킀 *3R`E;Shbf(:|#:dWoݥ-+}]+D6ٴw^V`5Ètl԰=xXYB`)+ z5X\yBWj-ŕv(D+/0ng"F"P*<)Q3X6^Keg'vVD~e%jxlz۔NAyߎ%V)ܽ.2D,88I|j sfMwh=v ߿Ā $ Lb {3TŢP `0r(Qս1WJWeR+ܩްmޔs|_/`qz8XE"v=ӕ|/`/`/`/`?q۟8X88EOEE"}{很=j_'p(w `~t9mBحhr?7RovmA,Qy5>0RY@פ@Q kخv t ٮ**N+6@Ef[9drA%Uo#lQL &#C,r˙Mv;qȂm;rmRrTsO洛$}gGz\pF7v6[ ;km1Y;v.doH 3iz8Qoo1STp~޽vnG,g>żu ^Jւ-}og-& 6UdKv+??8̷# b阣VnU,ssLr+; '??鸤'I -84”O@.b`A?VŻUbI?, v'[yF=b{OjIm+2ֶhkqmyY],rmc/rYq$V9Dwꝫk NG{1im=dgYr <:ͯX\P +,]7Fnx*t&WU_T1fo:e`*e#nX F]%8uRE>Vv8)uҿ?49d˒m>!u2}򰄵]F=B2 }>2mߤhVߚ-m-' ; jk; OUX Y! L$$< ^4')2a7s8$qՐEt…2t e6;zli3yɉ]_Wkv /;y;J1bMCCrWp~ uB^T! 퉲CU¦e{>`ol-鿛_'TWb{!8bp'2GxlHBz?L ZӸJ/@Mӝ_v@˞@;L:t EԮs&i@YU9$t;U 'O<2c;1b,vden 3N1'Ͳjl<{nK꽋^ 13cns6rK Hm=a7Gb LZb9dv#É,!KBcVFlaĦOb]p j<ϟ0:rc=LQcIĴKw1M1'p$}9G.[:Yϕ *! v?ڴ`m=8 b;!d)m#D_s+P";&QC׶PxO7Ac!_lmI6Yȉ>ūm`[=!t&8NK iזHGśk{~m%xZZbrŎMfxeALLKX6[H^lZC5g6vFiI&lBK씠"9L#CSbp ņ<8OT4f%oQ7nl #gq,d`Rm/\\檱+doeWښ[ZsmHpk O7d$YmKzlZl gi}ں1oQǘ`%QVC:@6]Y@d!72?~z؀ӑ.}dcAce!dXf92`#VQ8 '.>7 r NЏ("1/];gd$RT©mz~Yt޵O|Dn:6zPx)$ >?74%*jkz]6a7H+-Zn݊Kh Zg^Т-ytH\NnHٙv 1"?@sss5P.-"MtkSƲh-Yӆi"qmq8u:XQJ$(`|kPF05BNno 2͆OjCa\6OVj5Vr@s 9m.r3a8"I0X\䘿d*L7S4ׯ`sQ∃&(3kt҆Nns;N[ŹX ޠ學 CwR ƃvdNy|$`_ӑXVĘtv l I5E6+;i.od\s\,X^ޘ;Lj,O,pn?$n\Lfo a4tt[W 06ŋH)"8MG.R NnQ]l?$6IOPz-`)a]V>W%y$GCVpu4!~[hNnsi럋> OǠh_R[F aݦ#%Lo)[ [ӞoqCNRY˰W4UA '^OI|tW8Xlq87q@Cn.$4vX`oq#C WϭdEheD[i 4L#;_{}ŞDYW\i.^_jH/9(B[j 9=}^Z̦\o٢Z.\y>[7L3FGm==eFGfmgD4i~,DvuC<E"`"́f5om3K[;2!.#)ʫh.'J)6gq$XŷIg98vw-ƓYz7}f^+NBk K|#Wr#/ ,"w!vo1 um55@,+t QtjK,;v3S3Ӆ],*OqOvnvg1Eʧ4*ab,jөQt2A8檅#)zN)8M{򰦹?::Re}8[{Zrjʬ܈7jcWq%ݞ梫;6Ԯ˜IC ҹ8k,XHVB 6R11=- D`AǢ.ajHǶ#uh5f\--QK}$w:wi!?n"&U/q@l/quvҀ"qِt\r_n⫓e*1x S=٩#vpKj浒@l|B=/8{*b^PtU7Pl:ܱ IH Stٌ}"x"B,=ChBc(H81=%"v2%m,K"A[ KEcI'8U.~uh |RQY͔(*0vzES).Mh8{k]Ѡ«:96B8Unxi< F L̎sӷ6$n3 8%-,ukqOTYdXxs.pWUÉ޳p2,2Msg=XǁzRC*g/'JSrNYY lNEv ꀑdhh/=E{,BVZӽ[!s{2:6nvSh,.`@YLUzB^6SHud Xp-61XS%KB8zۅF*=xI9 }"]Zӳh /[rUeMb"M픕10O4?,Ilm,Y$ΈElO!P*`JNfSSڂe #*Glg(*tF\r8iɠDҽrpnͪ8?%.pn4|$VYF $mf񩹞#QbrغƋ#k6\W,`d/rM gοq_8⠐P<GDE4vLX h8KwӘWm%rd}^Dw6Z $Bݯ@݅_0vzʾk澈k־k+E\[Ń}זzp_ĵ^/Z/"Ѿk+x/J/8hEk"}{}{t_?q}{8龈=8=_8很=Ebpb_1p8iw|_g_/`Ͽ/`Ͽ/`qo8E;""}{޾=_/`?q8Żx_`_p_h_/`?q?q?q888E"|_Qq8w8˻OTʕ+[Ubo,3~n-/CKj/|06 ;Ҍ<9>Ԛ1E>أ)Jq(ǚ%[7&xpwa3zFkxH׶Ԋb(̞D rmSff6ֽ=FNYSqb61e᫚oƾUלMrשce*̰o F+cf[}C99b߷55UBBGCd(* ރ2D m`|.oy{*~MJB >|im LȄHWܣ3=x`*{K'D0"ӟDEqzdr$m:nۡe*.C_Ւȝ uT%x2 ޗx U*7poi^_MfY`gW? ]VzT'BSkP}BP]rX/H]iL9!rFH?'%vggDcb0shvoA-o3y@`,~QLƖaP}Q ]Ap`W?[ {b`lX- c 0i SoA'1Ώ >ϿGS=m[cEJk[d^ؑ0 3nD ;E>mc /qncg|0-mI@ GX2;z4:I/2`E܌F# 1']nÖ薝K+N &G#ܤB-G ~vlDbpWC:;e;;S;o-tFvk;vu |Y,}(Pጋ˄ T7@?цb#VsUj\yzծY(̘4lش%De@pgr[@#i*`ޟh2Ksx.yq?  ?2bE;kw ~ W2k-zŇx` Ô˩ N\7@t/Àqzni+o~s\^~˔b;KuuML$vJ%*MudXR'_\A|QXc=XGE+c|hC8BY ɢ nK_2E%T1wEJ.OI0_3cKD5ھ? 7Hk 8SZ`yE<Uiɱ|\~ܧi6dPJZǜݩ[X~u+o LŪg[{=3|j !&|r':(?D )9Yf؆b=9R!SduZJ#AEYX~bL/+ߑdP޺!9m#3.e[H$*[08D(J?ZT-:V'Z5bH5]_}ieZ ]cu=,Uy46XvqN]Yr]1v^ 5v hXӶ'phˀߏ(Īnp_Иɽ! ) E?fceWWQTl>AF {*o1ņVc+F.Wǃ4 09;5DGCQ# CSٲ>w_wG\p+!ohfݔޝKhH1m5@&RCV! }4ck]f&ad>Lab A;xV6qf 2ϼp }@a61OC'd~Ng~n~/:)Rq]1E\m,Ǭn4M*y?Iț|KSMBz )ֲ,}bSo)4+C3>\ Bc ,%Ag{FgFE©L\kpV4F/U/8K&\L&yN:Rv[Ka"G?B? @qYOlϚIֳ5/ۛ ެa~CQa_3%<%,&FBp^:p:K/f m6Y} |Z>qXF/ui9)Z~ b5E8kPvnLM 244sQ|8Yk}uV-*֞V TCAEFsp7+#L,*bYY L0Ѧ(saPiè;LRcTXuVP"E[Uyï䰊HiL4=ܦ5@=xAASi֛q&*b[#zσA)[ťGVcZc"5@e,62x!r}v ǰ/=)dpNU!tY]q.a:+Q`onB1Ͻ3ʺT/m`6j+dˇ E65ͿuJ`ky?\aP 'MYXm"g _KOUV{Q"u6H+&v~dˠ 7Yc,-gN#4_kyZӕ:OZIMB9F_ig>T gE%HndePa,;eǾ> ?@-E v77cO2h{<=U~mn,KҖ!1/jr$ W9΍Tv7!>&SF9;5@~EhTZU?ڋ1赧.4f-1#o)!?ޮ&N*A_s7՟R*%]%aR,aP_nqiŞ,/wEo͓Ta..%0[D֮ڒ|U9쑠k<9ׯM tQAnfa`2iQzbor k>2.%GeaXHXIM;eؿIP,À L܍|H2z?ݬUGoR|7:bg/xty\o:;M0UIcoƝ*b eY̛4)Y$( d:"6;ʭ4o36K7G {pR3ύ4:GɆ՝yσs醀of bR h?iLr43rLv 0nP:CB@a휭މ0&g*W{eo^4Vfv3z2J+*`OB +Odp^clu\-D<[B[X o߃hj d CӤ[ವ 5"Y$mc9cA`oiP dԝEY > uǽ1h:bzn6P4fc$l{*+rw:ANx{F*6Q PLIgX[ =e=A i\xm@_6*ah9R<зEs#rl'^ ϋi>0J2u]?˷5j~J@7/0Gر9Xhp+NԴNX_izѫ4-d]l1Q/0[芊Kx5f~y@gŒ݄Qp2*? jrkG.K_T^0cyl]*,P+aV_ \a"!(3ݴ?e.}xTokrKyaib \#tPAA&F/c^,ֲw3QuQ>wy'>ʽ2uz[㗃:<[Ɩ1C1օ* go[#Fg5 @wR-˵W roB8Z$V:HP|縐BLmM_ (ׯHbsҵ+Q" X>b ~;o1Ҝ>wf2m:6*juA o]#3ޞWR 3L[u!7R{Y9T#DϠ$:C!tAud4^Ct4Kqo* w<eU X̘ؼZ+/.AQ ` 9^2Xз/ra)UyF]@&&O2AF*"WqNg]+߻cم߇<F3)A8޲ctU!ؼ (y@U gcSsg wy1f&2dYcX:T=L'oӇi]b(8Ly*oYkYwNhxU+;g,.0A`mPJV}<sE.|O 2 ''W^bu>t{pc6`ݰpbV>YW`x yex%6O钘4Z=y&놵 ʣ͂glXyk֜)TvJ}ҟ`UL_֢8?eUNҍ ]yH>ǢIDެ0Ӗc0[k#E7+xkS \&tcE|I:{'~g=ny7$c%`heݘY-Mwޕ+Eu!19Dsds(}Sy;O-k䗌`jfpjX764z>ʯâ;# gP0 41(<>}I?eV>"c/[JgXAG N#Zh@V;l/axIԃ;"=ag&?66"2UŪ9A'i+ 5i: *e|2\GWrz5SI69̞g3HpZ@G^cpj pi}kY|T`T4~*E91FFQ "Mi{PUd0|V)N sK<ihIHHt@g 6O^E ̊=< ԯ>ʼSuԊA ڥL}>6wFĴ,a0o1@ ~c;SE Ys.0 YeG&cLsA.?fēu;𯟽*I/ZbY͠ ?R;Dmcq~F+h7> 69ݯ,LրV+qQ-[-LЛ_!: b?&1s>!O+G*bpX17znL?@:$R"RyOP"^?N8k{M#)*"YqUhGr[ndoڬH€V$SVl@Xho&Ibs!wC&`f?u#14u<|d]B!2ZX_ hV os` xSfٙEw[,],ˀ#uqw*gLef i㪡Da%X)/D? 4Q0uV{9[Ev0(Lܾߥ#@ԟҦbuvG#0 ,9#@~^ 4 g?/6l;ԍB>\#@^t!/i{XꆱKbqڢnn3%]Ut3YY#C9NK!%z(?)￲BxϧM=-;|ZbXzEy2e- .0img& /^`h z[%q-]Y_iA} m7`e2 AiX&ޣbkeeKLVzcG:ָH>n&WAF:4ڞ(USkgX/_ Z[TIupÕc\P+XN#y6ɱF_kS8gS-MFeTej+(犗a*oWqA~fA;;~IKBhO/+S~\hLk,e*m8Vl>(CL]iePVs,AhҸh%:[MO~V-NJ%5T kVJ9n\/,g05<6*iD cPElkL F ÆO˾ղ!hmN[O,Vrq 5V}GsՇDŠ 4ͱmЩն۴h4d%=G0KR=,07 ,|2YЊhLA$$ \)amD}'G,KڵɇMnZ4X[84S= '#Q`s1RjNF&4FOzH;9lx&a˫|@=]Z񼃢c[_\b^/Ug.)=_cާ|'EJLN~.qP V}]';] 2 R#Esw\zIcQf^hKRNxgTZ̲ g1µc֚3%\KYJ6l(Ȉ#]ungП B)EH etb*ޗ$7a'4j1gY;2=ZS4[;%+7]9(b ]瞝UgcU휅^9'\eExNIhaᆟZBh8/mU\,.`.R|[6a)|&Ym.$K]&|uny@X[2oR- @Bݶ߁A en2z@?}=LA>"@9ݳ)M5r +vLEqc$(G; A1$&W_5ZPE|,0fPK- ;1=,-PK,-/PKPK/toilet-0.3/fonts/bigmono9.tlf0000644000175000017500000021333511327706453013177 00000000000000PK- ;.h-k ٮ-ɑ&)?~]w Zݿhu jHˬʬYA*2kfy8^WYfNJڇjalr3,|nnu7︛vq7}ʹ?wu~گkگ?/w~?ڭ_/o/_r ^qgtJ8 wh]O,Q2<ţgn75hI|z7Ɩ'CN/7  /.]gCIzrH͉CVI<-ы+V 99(]xb= o J}DQ!47P2YtՐ^ύ'. 4 LM~wӄLYw(2dV= H_O^'$GPi,\%#ݭߐSqF(CDZr;+0'x :F:S^2,i[\,eM 4=eEI#H ]3sIخyww7)1seV 6x{{9,KrG}BsHg8EJNI~LgztԯT_^%/m^ip]SXc^Q tP&(7Oŷ@8v3wVyYZ3z Ƴ^u O9F[~OFe8d^f?EPL+48UܟK(Mp*KQG@;*Sێݜ2:xQWMgliM7XѺV=X]ӱ1YZO||D_pxˆO2H=Tp(e}*nGY.!,qfq'곹O\PY&iB#~:~Kb焳5.=F ^r\yQIk;*<&̄ŗA{<>RUK?וlBS"fMv+ DR'/{O ר5$56Kj*IJZظfi ҢwE2qL}=JU}[]iTpGjkմ  ޤ*tN $ ^p Eҹc7p_u%/:m_̠Wx}[x}7_v︯x}{x}_v/;|y|c_v}ݗg<>w_KCeeeeϼ16Fyg<<wq#K^qm.o<3ScM~P:%A"'D/@S&qgyڜ_φTpJ8]+ƶo_/O-q@xΒJq8#R WaH+&qvX_y}5Ɂo4Czyxk,\;X.w7ht%m=R^Ў[[96zkVMA|Zdz)1-0'UXo7xn;a5Ȏ"4ǎw}qzVOJ=vx[ +w6/Yrc=5NoG'7;77\^s^\YY̭>x}3=g{UգV[Ƙ8UyLTuϯɟIMwH >d-|Q.|}ʖ3z棎lʶqD}lj#;+G20_^ d dRQR?3WcYZ:O+kg>')%: o;_p䧯w>g.ΑP$qjp3lNdt\\w)}Lys}}k>s=|,ucw+Kw7f^|\jՒF3 Kniug>o.Rhpv {ώ˳ē c ϐ'g.FsgY _~of34f]mu|n_{.g@FӬg\:=(uXR#bc%DΞ}TϬȟ}uxV숍@WuG9 QE΍'J3.zkgŗG GKZkغNf(HrF!=eAJ|8OlhwhyqCG;/|lhOdܺ+@JJh=z=GY߼q} x?7 b*koe߼q}͞9ϻȍ.Y{Q7+^!zm@Fo|Ob/GCͤyq}ukv笳Go_lWWS7^n3w (WRSO7-'E%Hg7Tm M򬏹o8Swgg|u%8N!L;PU^lnz寋C]%my 0O1XuYip#Z2.AG]U}k9/~7 a-x,Ӛc϶hsqSC:S4NY a$>=Z|E1 J5{ˣO-:w'J󈮾](Yw6*N\ #?ꉚ1O@zu&To:hEj BS&דGz_d4K $*KQbc=5<+/J urxt%E?t4\,s/_}@c駎iã ꩗Ɖ]սT.Unr1Uq6Qvj+U=ڴʥvN" R6<)J||y׶3`htDyj:a\=Kuϗ˗z4<&Ju.VD~Ip֫'utߪΥZ;xNrq]r]|G|4byv};DMBlҀޠ:9S-G}(ԅ#YRs}:Jhk=޹U k}Nc\ }5k u^}=ja%?ׂnK̤*/ܷC`Gan3Ee{0 o;OܷQ} EoR"ɍ7Fq3_O([}vqfdt±@?B1ú1Zt9՛Dk?׶w=n+͒r,ٴY+N$jqޯ[yf|ףM{\nfy!;e[cQ1?ٹ%'ĚwqEF1RX ߲B1`@88DDXҼR¬9BnT9]cvυzt;?J#gG.=nsK@bKJ3V.[{x:=J:g'y4W%eg4ǭ6[qޓGoGjE):l#?nIylŇeLGiak\xհF yMxE3wˑоg 9Hy1WyҐ5C| #v<*XʟqUV֏V_:J㩕yMRycxYu_Xv&Q_a4߽{Ta;yi sN뜼#wXya_gr;xUO?{#QQKif%&hN\[._h9YqԝjCgKmr.+1pO]0C>uQ[y*VOqKM3ⓦs+xlYzj:ȭ0K֎GiJjpQ[a˛xdyV參y2Uέy~p}J2"$3LvL"_hI7TTK~,jqმ۵a2 gUFq/F$}g3|B[ۅc|d%‚ʱAUbcZ8N彵ѢK;}+FPҞs/L5z}aو\Y9QY-CJY$GS noWgI74H-cŕzBvz}{u1ɩiԇfN]Ƴ+6ej:((}4L $I=#| w͖ʜܦ?̙%DVaf9~޶l6)y$wjʾ^IɏI߱ۦA-B^=l+/3+e/-zZGn_暇2>{A-aB-Sʬ"1g-fg<>x4x0"| q6 ~dG+^EV^6Lt`0e-C%LE޲}hs4GD:#=$dcD4I_|w~뢒l'=\ڙdWx}춷XVm#Ɇr9JuJA> ҧUy8:'nzj#\3:I#&z)mMG=W~ْzXmyC-{AT@a^4 H \T(TiˏWxJ[҈ib1zn<:AՋc!c '}K {SOB+qHa :CnKO<}h~#5[Gvo R`Y#3F h%/njR2Ig1sLL9oՔj<Ź#\<0'Ӱ""q_Xqq">WrG~ґSNr}Y|>AkW?mG_II~j^eQd .Rˈ-YgBriu2 +_zZIBZ-؍V#Նy{$C:y,,~T˘sY|<'>=J,?f5(g,b lrIMTkjQr~^+ғy6 =2m 3CΖrфY"="O7LW[ri\3 -5/2P?WTCYGv}[~q&*8̚SQDތ,rҌC)G_".f{swK|3/$:NpJx/ m}f^t_#I_J=+G$36(5'1rç|kc8w՝Jܲ9g`^E? w {0'Խ+vKxs1CA'Hoa!U#4?pec3ǩKB<}^ɿKp5>Kg5;5x Yr2,2k|b([dv/ic| Ly$~mUWKK|<7_7f|4g\3>(Z/Gb߬KФG`@ٯI7rcZ''A Whm318O,Y}׊~%i T ez@QZu(} O#e\54g#jOˑVٞyְGuY& =gہ܈=)'~q5x#?IX~&ME!29ᗵ  u-z$W_ )j>ELr5oyt& V9|Lʏ*(FEA?xN?Ǔ9]9 ;cT7'/fsYQPx'#{o^ 9Y2aUۣƧrM#%c]_\Gl9Vz$tysj"NԽBfw[fh6@7Ftk|hبejs,' c'It1oBXgsS/ElZyQ_ҟEMp{,ʵ`R u΁W5vЂNC8`lk<޺q}UV12ݺq}0 yGy~˻uo,<{uuz}wu9Q]` 8g}q}=ו^*-A]v}0W22OK@M֏ָuo)\WIswK3ú9jpDcOJO~Oe[")뒸y+g3cw-vdܺTXw2{Y*G t T*TeuӣҎoW5(Z`QC2t:rڤxe1ъ;q}.-̷ffLܺ1Xa_Mkykg3'n8_WB_y_HWs\^44dUx#c`鴶F]U-K Xu5H)G9].EKv<6+FGR~?]}V.<*Vzbl;mtb0'"N;h:Ǒj6v\!QW I(W1.)3h$9xߘyz4۹(Kq5YqܗmT9^pU[}$G%vE៯2PY۠Ѣڋlՠnjn{WO|\M}m-T=[y7-1Mr o:Z^yr W+ƃT9>RMy<%P&E\Z#YfRw<3rujL3዆8CnHVOQՖYh"r ft\SߤD=e눟{ 'K8}ոQ18q?g@cS9 l/<&84M#0}syE2"zc9j%˥Om9BNo-:;]o}nL5W-T H6  ؽYo^W=6K~-:Ͽ|&~Шߋ7GN=هmӹR 2yuSX%}S?O@8<ui'Iu]zWv5\ S>i`uȳ"/ &tNcFvy GJWR,e>ʁ}Lf(:8Z@Fa"uK}Gr=}_ț+2+hVGu_aOAl3D=y&< 7+L@M|^w)@̘65d K8"=l;h|xf2JGq۰G[JԨpd=f,vU85WK^\{X4O ژS&{3*1=nfae7@UUwmAgl"v}ˏu$bbJ3M\zYW2eKyn~[yȫ.kvZ6ryqY."Go37E:h`#;h ܠħǗyqE>uEG~R4Qw3xySqxK.ΎSڜY6k,jσl!}3Frc9YEy4N>>/6,j-1F~f#ix̹inKFxĹLt\eP8Gs}^/og­cY53?O`4Ogn6QHOGg)`^| fu۹pO!w)-rO/ks G3{W1YlY7uǃnC;|%$~ObP\)qMꜵ(=-wH[af4^tKeތN҇|sbU=":~6ط)JF{~un[3zx~g#}wJLr2ǎ| )j *by*1.F Pc- GfFjK-wamqD'f)ߡ&jPe"u*e븁{B4:TJMh8ɶ:ރg-*z@ ^1`;ky{_tK/BIme>)ڥ>I̩kdيez\iKg̜EUY K56C '!h(Qsgx3ɞC튻ԢE6:mTQ +JJ LDnB =S>5`uYȋGtYY/ &8Vq%/gm`d]1H܇kg:fܔzy#3OA Or`j! C<~8k/ZSʣ-~@ˑ~IԭSLtۯm +1Z=:5BNy 7US"u84/#?7y›mc(/U>& w4p[ܾñjsI^Q.yXTGhfIT6mBlJId9GD~؇m7##1gRWU{q'[=G6RzLG% q우)GUgo)FۄgTWեGoyF-#KRp]#塔P3iY+B):)=ВV" 0QSqYüFN79SBWި}qѻqB$ȹGr 3vܣc!G8L#V5^l>8Y>+,3@$9Y_o/\g݊=k7G!K;'u1L}>= lanD}nDyj?L`ufemhoBxT#^EViROr`M%>=f,,ګ0ޤF|,F9'5Q=/PEj2S>v8e 3kgcGֻfu u)p^}=L4ΛqT]@"` G (Hۦf#0s&4l99ƎfoTfO!O=AN1}%7_W,NIAmٵ?r?hv#<7:HcMs(#*W2(9m"rDw:&i ßhSMsjZp \N6D#i뙗EemSHslkORIam>ܵr?ͫ҃YyRzpfj Ok-3C{^4$GgGК `h}h:aafSXxvOQУ9: K/F0a6K$g睓=ذ:7/H%u=˞ݓm>V^zaһן>8:(zgsϦ TAWf)zar;OUgY=98kjyQY҅ys 3vyUw]y1Xu]ɂq&!t6>"_Ž#jGӗs.y\ޣ9ٙyUjUp2EW&&Ɲ` 3 KW\3L"^t"C*7Vta[&s6h.h#Jmi_R[NԸ \\/XyFV[4-mD_Yީ,}[jBAO`S zLVĭ /3],&T%qcAmۿ=z(5ǜyԥRxEEgضmv$r N*~$"`=Ǔ#-"'"ޜd4c WVaYqy2[ndIO|gMNjhNfUjFg~ڦwg{Ve viI4'(ƕ\q!F#MЧI~Yi^f):W~RPdYϱn15{(mn.:3l|x.jk > u^<ΉBISF::'p9%*2ZlL}z[7mk˜C tETYl88s3]ӏ[sV<n%Nv=UD*DZx4T~~G~=۴[cL6v{'7܏^ۤ-hM-XЩ&-;T.4eڔ=~԰cۚ2?C-*ժk6wa~<~ms<~԰q z79.kM瑻G[f~A bZˤZDչ򥩂! 48#lQ(ۜYF `P.kV9k>خ6S&6R/ (Gd!g5q,i]V=^n/čqfgKZ&G|b]kOo# Lç(4TਵO5L (ncL:@dEJbd<%eyaQ KV•$3+WLO /hy)R!ױG՝8(A_C+]%=YeNvXלY^טzX3i|45֘G OCMoR3Ӏ"C^y<ذ#JOm[^xu,agȗz ;H[ D?V2걢 3䪳V4; < fӓsf> 5zWEݎCe^8y>C&4*!Rnyg[.Yg%\=ӥ &DO#$'N3N7s2)V&bBjKV/j/ȧRf=îdž}dR%Zbhl޿qog)(~.Ur3V**n|G{ܴfcm~Tb7L+פIu"S9C5.a? {ױ[Y0ΘqT'5]yNa_^!e=+·)62?Mq.kyTsC#5QUriԐ9#s{YGBSf?aHE 8E<΋9:N!k07IUrߛ?ȗpqb?NEmrbQ|f{e6cNBE|yY^Y f4QܖRƕ?ܸ~j~`\d<m;Yٝ7ݏ_SײYtGxCۘ򚐠h?WβEdr9smXWNmߤkq F~v6ux>oK◷U/)=㑞΍yv5E%%.mˡFi 7}squ%S8~JWn5;77˟1u/FWgi$U hނ=[ŷ> /S?r?ҋ}PF d@x%'S6P _;ۥK$&~ ow$S {~nG65c23b苎 2x7%rQ#d"1m|>s?~":EԗFf5k&z4SsJe>w?J9ZcObr ozX蜐`6awOs#pc9ӓ;ęxF3_} wz}2Rs~p><3Gyh%MjC#&s L /AwDJL1H vm沄MY#jo+VgQ@ yM#?ڐ]Y~=z| sӣ\<˧Im΋w}\VuM}m a0$beEN,:wQfe,](;B  Taƹm^=ªv˿Qg9.E ϭg@3~Òsqwc-$wDZ!7~u.qwPl5sWqaEm4\^ wn{iE[*tsO+˶WX^=W}[g=Zyu&brҲJtv&Vj쵅GE_^Az!(^KM{;ݹQ= _?'z6ja4~_x;yU‘˄}q[#[\Xu~<*bK/ouywGX[樭3s$ \x,urjDM؟f# _SmOG΁MYdt^b1Ѧv'i W7spܹ~u'YΝ['o,+ר~iw6K0"he3i.˜*A ”l~RUZB@=ύg~eG$ 4H7XrnO6v O}-{RրG╎5dˎl[D2\]..{~RW-?bgYoel)m#3#Y>Y.d=ٴWޥN$NpT&XpW^z< q:\iQrzkU]P|-ѵ§IH t1p%QSiQSj1e8һC"N/I)9];GK9k1?ݫE$ ꓲ^__cg+4>>&ZWyMdCoL#0=:k-Z FGnK:A-J)CwbjcldӅOXh=&ɘgGUaS2cɨueFQb@3Tl㮆MÌy 69j!=o QSm~Rhlˎa1w&rsc>){c7/cGGBQ|B의=Pz|*(&0?1]Ykx̖Ij)|ΗGw,SaKڃ()k)&)աnPaz_EmߣR"3K(뵴*c@MG!ɴأ)8:Ѳgy?Ui7GքeFc#cvΆQ>CV/xVLRm#^bkZb!e),Z$%:oԣGØOJ/^(Q,Cw"-|Qη^͙?Ĝvp,~8ߤȺ 9zc¼d#)Wg86҇7`h|cX酸vjA|;Zw=^V wOvKƙsrcБp>'xm1(OctXĈ%B1Y!(L[v':~EE#mO^Dώx4iJgߖ*6ע8תO]_U6e\.W9Q,)$[Ғ3I!ȓG' CH}*)9cԈAkڬq=|"n`L -bs:{?WvL)*q3ݢft;8v 2qe}tIC>"-RS z#GL}+Ubdı9@d#cNN/fhe/{%_X&sJx6:ΕG- &"?Cv36uL9귑LR9,$8KsO48U1Fʫ:};-T8#UֺǠynJQ*v5k>K4#j_C6GJƒ3Df+09?hQx/=Dǥؑ[qhz><DF(F´YuTϠժ˛v84q?qPW{)~lկ.<O\体?%STH(~Z/ 2ZdJH8X{o.q'S3/CS{^Z 5uYo$p*Ț["O{1n^aI2 `iz{u}AKf`O7N\oN3}KGĹ3 ,$3&|1C/iK>WWf}?E}&(8OSFU=zhq6K <mwOZyQOy}=JV]sgun͒Kq4FY]2䗍,g9#CUq.)W.H۰'5}x<*>{+SZmzZ pWjȣLvw*ejaTuL{x3l(1ĊOʾxϣ=&2gɑT$ŰL--R?x,Wë$kOpF 4\x4WݽIh`b2#9 )weƑGtg ~paIv|ȣOoXAeq CӉ{Qy\L7Iɴ192rا$cBOl[D.3Ϙs{zҀ)y["ٔs`meMƞ6$*䇭~,\!CQӖf#R擐OjQ+Eޗ?j˲d<d3c 8}fA߆#iS3Gd#UDq'!Bj;.yȩߘ{pN|Β)wXXQ#ڼGN_9.̓QA=eɚŭSc~]7h#L0OB{a<(ct:+erVOziX.WH|I3.ت#y&ȬʚYsem͋4rŅ>"X1թ^ģ^^Pz)w n\p\I- xlu~]hwѤ^}=*̮׎)$aǝyHG覨gq*H}`I+%jj&ק[xԖ]ObZo㒡18zc|~e3T?ƺtp6~-d ɻ(&u&@&3ЦV{MTj^ԧ#1p}YJX8gؤ<ek‘ؚ"!+ :ъ>s?۴gy6RXS~2Ig-jpYgeyx|1dY~e%0ֶdy+ <<~ڣ_ZSJJ}F]2Ti|t;`qN<;{7՚ȹyIRa=5tEv%a *z~=8m?;rwtRb̑P/[9rǁdƬe^$m[Qjqc:iy_<#̓]<π[ d[ga=a~s(Sd<ϋ+!86pX3u~z3wƙ~:JbpԂ5)ypহsԝp!}(H@"NՎ!48K}Vh#4=J _?953wqgLx,j)rd}6^kaxeunrSyyJ q?I_pb}~^$FW`V$OQWD6I{1_Ys3<O"d:4?/Vt%uW-ҹV JkU͖UŖFܣ UYK`̐ͽpx fR}s6; <>c/Q~N}'l(pɑ~`acDkZ *Gʣ|=;hc%ΓGt9~Gʛ%fCiTȉGh={ɝC٨= uqWm^; plj~wo :kb^C߾&<2{_ayTR:qFVISqfuSNY&{ؐk "pE$>=2{٠q= [2+h+4 ݽ}\qv}fC+j>w?o>`lmEQeW-+sH)3ɭWAkE>˳&tqҤ1k: ~Qo-O RǛ-Em<2E kO沧-qh_ -HώyYD4ϒ(GuEZVBȃ*mܮ{+|@F)zCvtq‡*2 fQr(+ϏQu;eum^6]r,. j=? :`VM[y~ѱ659feE0=ʖQ\][/w{VF 5?Ya¾EYu9 9A{5@H>g˨>7o ;,q !s_=T0@)MLΑǨ[1VY{C99cA<}5 +J,d$y/@Пlooya!+ks@X>c[G;}3~xHj?2;Gj~cЇ/;VtyߚmzQ#!]RLq- c{v#1z Y`Uh裰>%UJ/N,>/i8SGA_jMKt ;pq2v.nl'/ƦU Gyj!4;:j{ң kTg`X,2PcB ?29Hd˞é^I#Q@"0M ecΗG"] G2 ϓ5X(8 k\dJ.IKNo mx&Cݴ$Ly'TـZ{%F0cM;j  &!aK.keGH r kvNJ=j,,y\H"C]fʀɚD~ M4[ܔKd&das=2+#9FCRD-@#ArQF6♁rO ܭHc $C7ΝSye/`8Ex2X5M[J}}(/-ɉcF1{i=|׽Jx| ۊ}zHB;D|6<1dMj3 c}Gv4qkcj"LmȨ8LFVgՎ7l\O$3d# GeY_y4tܺsi~#Tޱt׹`fu6RVIY'~yLIwT嫗wRoY|g3hJZ@z<74+l+iuTڎeIt'O\n_͠<)q4EwQyNA Y9˖5ra ޠ?gҦ usuIJ>N0"}=˞=tIj&msfiew,̺=̿pVO^dOsχo+‡N4$+V10w!z@4@:ˑ,I+1/(Pq  Jb:L+s&ٶAAO*%+LI΢*.1 (.p 2a@ T;,2H!l925Z>n=esl[Ғa߱pVRW , : G;$dU6"ٸLAMoJdq]5F`xB+\iߤ&\v`j&9e\tRI: f*r;IP|l( Jb$`e(%cf/wLJ]?R_s\'`BGyHO x@z cYt͠t @GJǚtd|&.c+:]gTOzɵ`e#Pk ףw΄Q_.P+L9dwe~NѵoQ_MbB@Յ4[‡Ue?V @!1$4Ѵ@fs'2ߓDu?&!A#8=ev;DP4O4jJoJyͶEϨFHN>?cf gI/&' PO=B9fD Vii@9^5U2S?ӄTwyP,+VW (>a!L|tXgPDv3^$g>qc̜$x/=:Z}&i&-s7样[Gת3H2B^N`ld _}?aop$yˀZu V\ԅx844d+wC1" "/Dӑ=N2C-12cm֐=̭(+XbR!ߴ#8srCveƲpZw菝: M"d}-ZmO|S=7dC0Ќ䐯\PLw7oQH51M!;>2NMX-o4`?fgn>m+f}@SXzh\OxN5ơl#;#(\JߐKb/<ؤo[0R5rYh)d3Će/#BNO#1F䒅B=\ EDշ2 4SWW,S}.4;S\ȡ5or45ާJn%=YI)&GC޾x G.FqHN$3d{ߋLvDf/#+ԐrJO@*4u&:;}|{d~;;)riIcP'v0md*d "*o ϧ\j=_" !o YVwEc tmO>X00I ny_\pn~6KMh FhſHGFj%ASNF1 b~ 6%WAO2Bu_DLV}c8@C110Iu>ag7~-vk6Kt/6ۂ$ǒF4m9n"«FѾ#G:Μ $ڴ|Ɖ%~>׵s?  B9Q0L̍@x@?'D!Tkq+ђ*$D#0P#quܳqFRDa>{˒cQ7vfhnݸq-zʞ(x' 'ȭNKmO)w8;|8w={pywۧI| ܴExr'%'p N@cO^{'.8O={Ppy_$>_ #?!7~+mDnZ yu/ܐEr 9a,9vs8r}TҌyhq<1qVCFZ?䈡D\/HRCnתգGRCZ.'[d#Ĝx㩤p?\\4.(:d @w%:{J_;:^G~??~˘(G8vjZ[!ñwlާ#6!>vG$2Fb?L'%0d'|$CfZ,g1 PqH01o#:*^jc#i.-xN?|t ;,sx|zA :SLW{Y![E WH Ym4Oh+b1rdޏVG*fL_y C\֔HvT+8ᙘ}>;ͬLЍ:be0rG#O ^$ercT+ܑnYrl1&xCOLj%8zxu%k ;&dd(1ڞ^g ձv U:JKI][yzK 67ύNQ8h"7VyQkny|\w|^+ NBRlB hϐ>idg5M$y00/Ѥ1{EC?rc|ثE뿶8bgE2}Zh @tHEN*cq(e,A5F|ZqqL>`F)}IyZq̲ЍO+gPIza`#jc(R @c*hpRLg5 &![KC&7 K9̄q5~K3PΔGUXGXk2a h@ƴd)ghm7wh#׎8JYhL^Ӧy(>܋9'2HY-, & Pqcd׎-3C hіG-7&\fj IWWaǣN18+KI]3ܺk'YJ@Bs1z*F oSاGvrXe1Dt;i"3?f݁d_Tg07<;Pc׏d9 Dbω3 fR̦(Sq-2Auh!`%)^ClxbpBlWpx޳4Y}tDdOY4 <ձR]Qi$8zĻC a, Hb |ˊ&>cfFLרC0m&$qBq }ڨ&ӨD?!_2h VڿI[/Vk~ !߲^ y'N !o߲W1ߟ[b Yn(ǝ͙ہɐ}XwH}F%<3ѐ|DI\E1'{w܉M[\&"ZL51k1Pҟ]&ɾǩ30W^v&ɀeg2ȿ|ְ|:R;'W>CːO/!G*2<~}%1R: !rݣyĆ%V<}>Z. =~v˯DPT~ħ:uP:/1뿙-lwIEAT^qdhҊGϯFɾ2A4SlKt̿Otiz"+i0 9b ^@H$;&XhԈPZ$lxlzR 2^9A,h :w#nH5AS7jwM\Gz!z ,*9o/_/9YH&8sͫtߕSgcŨ8~=>n )yqX8p?aA8%f]Ɠ4G-r[")(ՙP;019;| w@[ؚҧRPmFݑÅa4y(Xr 9O9G% q:<5={}ޒFmSIyN}aωW7#QoJ(+'ޮf=r2 f$7ڑ kNfBYNt)p %>".d x s̹:ڨ 4س*0a.33"cNy2Sh51 Idj` H$. В+Z,[%xk6=Ji>^H)\v =&\L&s8#^ ٌXp+ (W}zj ml(ND;8Q{9 e\Ν9a?)=B@8n bյ*K`XC(Ҕ[[J">27n!7`ژR幌&,lFvvkǏ8e>*SlInzo?92 cb5U /ƔusIP(=3~Vh~^3@E~>g^?ee,ȓ7F"wX ggܬVji$## kBޱ&4@|GbQt'iN܅WSDaVB-ItL]+"T(rRٕ q]j*t:h' Jթ/'/ tmJn܁RkT4ȾeL8CG&=IeΈ2c۽ 諼B?P|[oeIs@ 0I sI"ƧP4ϣYqm.(S8EA{f%AsfKL]b/i"3]R3*(Rwfӊ X@ob^$ˬ P'2z"_ЩR뵕…#GMg}rߕFē3O Wf@j*%g+y!&̰2.5 `/{|֭L7=&J/(`0JCZ5떳|V ##aD&ԓE+lI> c ,c!`:{} A9Y7>I3Q09JPa*8{s-.uF֘Z;ЪSb7HyQ gXF@m=롫xXd c`vكEYR^nZbz%YDV8تG^Ig;PK-U6 eTAR LBIǀ琬O 8:!e?r;#;}UWdīk oZ5=ʿUߒe tqdz#XeBMۖWnc@^W=D-3ܤVoER8fMP&ֵqoфpSj9Yd=6{exȾON-fʕD沂$"ýQ[Q>*a6sAvi61Aި%ا:ZYtq+6^c+-~k&ӑGroV'Љ!~t$fp7IoC(F&*p57;!zFtA2bճ)|;Qtu{Em{G={gUzsR&9'B̓ǒIt."~ b.7++UOnՉsoBPo5EH=AOչF%0PGjF2QޑrdT0O QI۸'DA6F=NW.UvcqP}Cn8zR*5XOj#Єorfe";#!"qڠʦGwCy7Ĕdt΂Q(:óځޫ-K%=<֠AMu8^uMnuMڳrrEyLJu=BQI?sv`+i24`oyi00Ӭ,t:e=/.#98١a_vy\};5Hl@[vB_Bs ^3f9ZZ1_ii~4+ygwy_kZPY<"i/`7O21V mh "!.!EBpckmy?M- '˓x=6ܞ-7Gn1Y#]!25?DLGg 8h Qr7&5Y8I,cA bN)22pASK:3nˬPMa펅KrKh&f`][tf .;`K갎gǪۭR أch3 jf&1|' PO! G$tѲ Y"gL /V\Z6aae n HaX$TKmLPF:&R)Š oVWl(iCLvfgoʏd#)X9/+VY-3 (YlL8">eƏu-Jl%UYY[@tNN Vr,TWaC;C KȲoX=Hg2%l==5݂l"żYz:u F5*&:)xtf}&qBEbPq:ԪixCvAG"y&_1W$ƌa֡Ggon[A~'*̸jMbK琰Ûyؓ}ѻG|tunOZ͹k-1Zd{HVsN1PLA˱9{6YJRcYR3F=Y,eWצ:zEc";;݀xHt.(2ݠ-~1Ge9 0*Zp:5́H܌ h4t2 Wa? SW\dˌWk9wԄs. 8imђи;=$7"4xI Up;?\28] X H yEk\͹{Y}5g+ d%}"o`32OI:s) Ȭp3WƴFLibuVYol<׾?yjwK?45W<")m|7Guh?k[{7]t>ɮʟ {fVY: g3=Z*p(v@[faQ:͡*e3YZ'DG~>|vJq,2F{j mIW8UGH\y}nIKFZa0 ̾Mx% \ |k od8iIVGɐ9bXj貾q]oc7c+m#&r ;rF,ͻ*24c@P]dTmNd5`ήQY9h~ SD z˸břY+GIh3|bGwD"0yd@}Maf}MM2,r__||}S5c?}5`ϦbV!?(m*ۺH52g}Y~In_:^adpim^1eʹ `]:ѕ_I_[ePs)Ad5 ԶY~j)犐a%) Ed3`SkE1{;dGoڢO-jemL+ Imc}IdcַZfs]EkOWrrO?G&=Z}k,C=׃k!MEv<2}kB 7_>Tq(ʐGo4 Գ6Eߏ" [ֲZy_1{bc u v2q[M}? #طE\eɷg&>'j͞c~vs;2w0r#g: L=뤣~(m(+Deje,K؊S h{1Q[=/j0 EQdcŷg^hOݏI20qS*$'i@^Njom_h: t[n/<2|k CS_%Iz XJWǁom]Xąhx]׌xid" #Àg^h*ږt[LĶ\C-.-z0_#Sm(&o"v) CņDph)U$ژ hmb%fw 3؜b3MٔBBer= Pܦ]V4F3pۦ6F=_ҿL3Z6M2 8qNzyh. ح8q3fk[;6MW35wImكM%Kt Di :vikeLb b&,Tg8Qkp0c>3ͫѷ/OH}V"?=g6:"qό<\-vpeF kPd-PB=渝 B{Ut;w~k8Cs=$d3p̩Do(}`͗hǶf 6σ8a' HI1%uU.nSW0FoU.~jgX }rH6SV:jgB\%Ah Ԟ ؟-)g(`9z[(R+jcq+%?T4G+{Ap#歗Ӵ Hp6yZحɋ,>wH'wZ3qr y1{x^R#yl[#֐\uE;"sl-g9n]6fYG?v4=-nfH[Z-IM0Fţ qkL": sf9 )tq׳UOBp@=-b*kk!9n_S`r[Ċ8npW~0UƱ҃WX5m^a" 8+q`Rȥj,p~g5g)m'Sz}3)/PtR.& y&'ݣ=X{_DqtƐvM0MgorR%}ߓ#Yi4D2EҙK2?~$tEؑ`wiZw)\@ՙ3ϣs)ٹ% 2VlkRdC4|oc..F*)αIz?"B=PʌxLV)̱) o qrޣ(30N˜'dXGQ0R4QiPxOm 8^חY`M.|>ryE ȧ>G>M4tQ&ȁ_$.}e4<Ć276\dTImcjf42gN魥fK Qne7/{n6Fڣ@ys]ZA#tT"q@޷t)'$-m, 4>Ebְ׆nޖy6l&O0eW:0:>ɀfF8GŸ1lZ{G6)$ϮTαMl52R9^X j1@(]̂pGaIx?=6IU@3MK@lju qN ,%kH z5 HuL \,7I$QiZ:E,hoF󔱚4&k!Be23)k2ȞfzmŸKE!" 7ۛd晞M-Xg^zPᏃ]9Ho0TIt{2cR H)xNgUN 9T;̖%$uj@v7SQ{MϼmHFdvŧwps۬B3}¨G+$9S,K #XC퀢k9֬AaM4_鲐UgLlt sJ9E䈜u\VSd+\H9 QVKxQdr64t5b+`\=# ?',ބFȁgqɊ` AI4 lZW3@CzPJͨQ:h6{ o_3dv2ۡ|+>sL",5Z VyuA[ hmFR jh /$ f*Ψ`(fqGvtV5{Xˬ%"R8͙Z'Wg~S-| w Y k'f"ѴXgN6I ]jh00.@#9T~ /¬UeUƬn2O]5i[~8ӑE$]xIٶW2 ;fLr=)E_ȖG4 TL=VE=|gC0xE0PFSI$w;"W-)`vSYM32[ω-)ZzJ !OeUX\;n@-/lDpLyNqt5.l yN}g$|B!iR4 `#w6xU8FB<:;ͼ#ʞPk{; '1 %EX䝆yu]2މܛMlc: {ؠg\TzVp#t>'ҿ3<0g!`kF6`wl, tے&fbD5иXf~hՉ\.9qy P.it-%kX= Ljh=xh#0$|҈i;E1tRe'؋4Ɠ$g#Ayǡ&jg;˖M:46Jx@2[vPj8ڬoLI@ץQF;׋ .G3PME/ΡeΑCglKIuΞu]olm-rYq d‸jמ nӾS`{ѣE7hJiee[t3*d|& WbXkxu [t엤BR׈hd?LnH RY'D |_YQ4ҲCt:7lxࢷSTZ=φtt x ȥİip)rɖAqWD ^/c-yAt:ѫu46kM6϶9D 0np;`EZ2A,r&{(a⌑k;p0,Wv@7YIKUp66&:UqoZTœ0^L]+f5B:r%ü~ɋd<#MUjcTv*2MaY aYSbW=˧$ۅҊ~B˿Ho|ɤ( # {faD7[̧ܵĈAvIX̠oIM$+%D׹Qse'ڡp6,BJ@wܢfb?ڂKLge1g-# @CR%rZ8BV!ԯߧ,I !Z~hh1nfE_͞MoL$HmVlok<(Q&U| 2Q7*^gNJڦ[$Lx=KnԹ2:"T4%l䈀]{ъ0r70LnF Ô!P g%.QxniHh.8 < f{ޚA+S& 0n>kc\T9 ٞ"v#RC.4  r/", k{7` l9Q#dllA poZ u<ژ ۞Xr&|L (aO)-G#&nܧqbѷ(H9Z慆P< 9&ܲahI>T p`J.@N!NY+u (o^H< KW`& sy🍳4wx=ߌ%*Yh6D1ǹ"w -ncrm;JI=`r̸K:H9#;c4'p4eMxN·Ir=B}ldrq"4áG^-7yVJgvgɚy f cvEG] HVKl;PfLUwu+֬zŀ9ɽ?ְxN35pʬMz &)t/4mW}AEcu\w|OK\[Kd12'4X'!gqn#P@k=1M& !պGa@m"wfc*U ʉB('%HS{Y 7kLVEnlt=F6eJ|@~D)zZlCRIϙJ zwN@awm#Yq@洨léw%{W32N4,.J(T;`Rb~S[왞kC,9 M~bUq02%f̢zOM8^[WGlV 1:H" a Xeg;)D>duslSiAY~oVH=? ini*gF"13iF%)<@, 7{jE #YأҀ™DC exº!Ԙ M3 {fKAPxl~r s(46@9K(ql5H)k_ײ;\K% lm0ܳb14m M]40ڮs}RFJ&8\CIK碼)L}DB_/}mX;cA"@"P l0n1#HP%9@OIx>;Se5LE_oLogzYDb%n1T7XCFwyQ{nVy AN7u2rΏ[Gdmڽ-1Ȧ p,Dh„ɆmE<*{on5N=ҟ:9(SJT63Q{ eG4!KQ4D(~-^㶂{dϣ6̉Jā2s}G#4cԣ\Gv +UbvYuH|D!WQ<&"dZT:ז%>.s &IkG={uuzHUGmRDA-d|W&0SȜgU$ZG'QDőC\1tA$Ơ z^}׹v%?;ㅰ{ {Y (y"(0FCS#2G}+s'#bb< [Ӕ&{%{ŝ(aֳ$@m"QF:#?M%D<{) Il0XЭڐWAaj' [|^q= C"EW&6اM}i4|4Zb,4PঝjDDݑ]}>eZa3*E]CqM[DV"3ͨKP1dF勖ÀJžy-h2ͦB'Sw %LɘiJBTͩ"6t+ +/;Q-#%JcgxjCd<51N7Klep$O ofЗYXvT-Z˶둈!JĿ"-G6!ijegDݱq8ċ@t$`84ަc"[ Re_Yd-ۋ5[9/Zh8UE؝ -E,bKz8~EBa=tv`Q}\EEmir`+ :Bd-`O6CBg z]ɣëZ*eՀ.08n799x$ke-Yr$aƻ,}g #@j 8e:lG.,by*1Pߗ.k ˟"X0%k8^@y_Usr.YEϷ(},W89wa/0P_q .fķm=8N@paTlӝDgId. Hz@lr~\̟\#(L$> j?#, ? p5x޽ZPWIόAile3OHv˕k kq(qS&ǯ 9aFJͩV="s#1G |ZDe۲A3V HV;«,{]Gqdʙ+ȧ>mn}$iɏ"|RXcmW[~~"(=" JV2.C߾^[q "!ox m'?jB M(%+M$U4pO(f:;g%Of_%}%Yō{G=*tqCe&-r:B.A!fPhz; |8 姳ySAbH`mE"#tH,8=,8f,Ģ ;/km|:Ua`p ^x^ ]x\A)K|8rsy-xNG2>n'1n#|q|ޅ<:@6r=rtqRAJL mqnYx*G' U1T;Y!챋Ȍ:g,Վ(ф,IXLo{ѧ%9KvGHx=,TN487m\Lq>Q# a&ɦ9BQga,T磯G}P􇋔~vz 7N< 4Hry9I8CkJi {]5]\4 ;]$=}:^x^HoБ_m$Ko10FH@2#A ]l( Cd:d{"YG& RQVj{x \FY흎dmNFe̜ͅ a{;y|ӚuÜ\F h5FC;)!3v͌9?Usv$Jws=Od4x(ZL51|k1ЗTS@__SMLjb /TSy-Wb) SMLސIS[jb ^&Pcڵjb SMLbb)ԛZL51z?^&Pok1M|-B_TS7뵘jb SMLbZ7Ww鄰{ӓi>H[j%źwt-o>6?frɿs=_a+o~^#w<녹GcCT3w=yD 53)җ8a\xx=g䷎1b{ޱ;jk<)gvk4>?;<"̦L=J[tZҢE»J}£ϼO7[\Sk?n=g:f{VԵImytY L@yq,xͳ%RJN\!9RBDYv@7y?3;j(.}tʇ'Cf9NC|tGF0_zӑ sY*-: w/'-!F]̀w>}\@B_w+`OT~@U7"[ Z~al+ ?9GGv}>g Gyd3 HX_s}ǐ}"|tFSǘ=zZ8ߧQgvw_XY% C 1g߼#Ͼu Dg _p!ţ?όzٽfr5ZZy1G6<{'nl=.xLO_Cb|n@{++zn@ֆ\F #8s0;$A#ۘp ]$9 dM&nGl\hxo%m&_r1P)gvz.1F"B彀|=i]E S+RjhK=znN;;LKx>(2`@{ڮ{wd-/qQ'~ 6 ʽf\3rӷçc{{$; ¿<3cB9~?:!0 b#ytZ9:{A)j2~n4A?ųAo:lT7JWKIbԓ3E&EB:h+Ѿj!  !"/gtA<OVQӎE#نc 43DJ'3u4=($kQ-Ko p`.~u>Flb+`Ipc1$u?ޑl=h!}Y _N'Cs&/EnP3\h.%sϔ`(xF:yW% &3(&8w~̅zt$A/QZ2ǯCq~վ.-T_E!:ćJI۬H9#ᡢq4>%j{͌GXI%w={t>l [ 3؅w?WjcͿ{vYDKfK.StI5_A;ףS\$,q:,1w1 h"Y',! xssᾺknv[fڮ*\|~@2怢2͞]ϹE eNnG >E$ȟ)Pt69Oz)~Q?mH]|4]fqSPܘ\ vǟ]`NƗ5ymڲ kTEB'b!Cjs0P"~&wv: K3݁JǬe:} mPA|H裓UC('4=Ӓ K]jE; 8xA XK!VsMb"ݍ{.V 2K,Vt}7k8`rB֣e q_; `љJ` `-s9? yN[*7J6 oY0Rьs\:eB|;C99פ1[FǓϽZHXyVa~Ct:*{Q$O9ġ/@م~lmԃ0DoD,:xVx$t.b'TmAlVa+l>>;DtՂ1z s;(f,sBHS(<Ч68^>arIgm'{,(`CjͲS>cpZWK} U>2tLd',41?0s,X%#|>;:*d[tVۥC>Yni26C{ 6s`sw{VfoAv < m.+3}\qmnwi@S_"c G]s$]Ϫ) =iڐ&< }S"vAD 2oh9a,-]$b>B>stL-e0᳀+wE]B="f+ƕ6jk֟^quLxcm#ڒam.oq3ǫqg̅?2ïh{#>S.Z]p¶!%u[M> oYqģڈg|@qg8C^lq|&e۪!r&&FyK^ Ҍww2P֖pG={N飴YrxmJŔ씧U/&А l|udqHisؽcpE`1 {n#M|Ʃ1葸Rz<iFQeN"_2TZZ><r˜Jh)M027o#-H&Nl@[f7 nj 9 mV>Qj#> Dߝ_nwćx跊A "FMm'#s>;рkdzV+0e؝DC,P}N9 oi'2PY2dwt@ޏ̘ǭ;i3enGUd H 18p24P& D g0iTeFz5 MjvZ1݇=Yt.i]=d:\5=1!=)5½};@ *Nѐ|BD i`#׸}9|9.8x̄ǂ0.b.]# q(52ևMsS8 }B p$O34`4BYR6(P0[**sfJHQ̍ݽe}u6cf8`cɒGƹͥd8to}0G)B}H,$13k6rVBjԠ_V$F9 rfAN쌽}wQQ}4sM'},'bvXI0g-`ۖwã[6‹O>"L͙ [ FKYa dfZAWܖͅvݸ كuM)#z-!&$ :/e3ed1E{_dޟS:KߩdZۭɸ/6fmjiu#nMG+ %3n.2070Í3Duy>;(E LMRlA_6*)bp3,`-R LɿH9js~F53PȒd,c*Jm졽*}+`O%5@c3!CvЮAQvfDp+`LДKb0U Oa`DgѤ` #|#VpަYF2LhQ䔅\Qi2CPid86&=UuTKlr%Ղld af`nNIܾycVk .]5oqqjlW-(S[@:FA̷lu A"Eǁ.[gEm8pܖ9FgB.<ˑS6zGz"F."l1)kmܥ-KoƟKb0Ц[guC%cHH[ud9VTg9`yyf&$BЀ6 p8 ؀#ne+Ms)A)0Frx>A y, l}Vi3NJa\v@fdFYx'm3 k72߶9z`՝!mA仦b oܼN^&nw}͌$e>މLqGS} q|2Pb;)ql?Mb L<^4e9.`X!H,E/RõDa=X g1,.`p vډ/{ |loHqRՎY׀`;ή| YCSA|FG⪹,|t0duVPHdER/ t' -1l,0/<(e,0s-"uvB`3>9{s3\G"BY<3N XnٌWv i`c ‘qx޻"s~5OȒc\ .Ű%21G}_LNxF>xQl=vcpD"jGL}#\iĹDͽqG{')Qi0s0 $JD GD;+ ژOps3G=s(a_dsBȝ~CvŞqUg%4K&̸%}!Nv=z}¤®EN%äȔZ.`y<ש yі}GaFlx]2'Y죞Y}̒n<-pǴLI ƦGgu?(KU1{r%Q03XH,>Yx1<.kWB"u)ώ٦(f'擾4u{HE)E3G[, qy+~ ZSUڎ{DQ?@_CEĨRJz|wGF0+Ltf襗rZyFсaגٔI'DU4mСL ;POu,:-,'ҨÀ(,,&Mxʁe0` LRI~L}fWNd@zvs$Є lxFdwnVvA>2^ Dt1.Qeר6x2 fJ,U@̻SLe8Z+vGv'o>[PPܦ쒤qi1 Aؑ1Qi߬3\/o RycNJ"/f=M7Dm)8qQxniL@i]s+= 8Fʿ1פO]N@owѫM!0zP'I͐ x!0Цavԝ־#v& (۴B>+SŸ#tպfAV7YlJn_r?SfljftZ@h];(2w?0Ώ 8}=qeW2(dN?g@d]{qANؔY gG>|zXQ1yKH ۲Ϟx !)>%gcKNߪzPpX :T=yq)',pWÌ .R&yw:n"Rbj%'sU mscyɋRxՀzrӴr]L^ JfAqQM̍v n@Z,SnEgI'Z^-1"egl'}hze2M746-ΧL趲QvH!ǥ+ Nq!} Ǹ-SPj`cʏv+3):K155r;3q32=ffBl +=M e[nˏkLϻ0=m`cΏ̟;ES~1n_r]'~5-?4=~ɐGof]+}5 턺d㸏>W+10`M{% O!rXut6'8#l1,ō,r̔&5rżŀˎ[ bI4Ap- pcu3˿LKbRD7VxA>1{< k2֕1r1G&ut㒄a˓,Υ`KY:/$uG&R@Bc2{迠CXT >܂`(TB6g,YQv6;ݖ5J] =fyw7ϫ3,Y>NԣL{B^zHF󠥇u&c/(Q zJ9x'yCG#yO\}1~q6)Kt#՟4e#uuFMJqa_"?Iu4P"~g+ѱD~Wc0 *=g@&Z-\2ڱ0#)x ޻@Pme@\8Leݠ ~+^ 1eήUAd1rbKFAL}ZL1= xZS}e g|.3mģ籽_v7t+SY1 _q;0ᣀ {氁|"(&1`4~//k#%E6Bl鈴6gcN.A:J`,Ufv\ x: ] @Lc_%K3HRX@4-2gl#g̎2k,Ri+{]Jr ¯ZWpʬ8IphS(%))q=1-SN<"uʙrљC#pT9vLIEҐ\bP!qE< ,#F@9vR_5^"ʗo*30립(NQ+g=wY`BVLYd+ Ԟ}Ѐg4Gx,˟'@@]}lhl݉Lv%?JW軶0gsƑ@-w#WnmN(š830.6=#hѹ6 ڇBwKbKm6 rsC #⃌_VDTP١ 0,(~;t.?׸bR 5/rKWmbnS%Tcm納Bd>)!*~|1GzzA^DBTEpDBU gBR[CIUG> [IoPcp̗H)r9#9r/ρ9^$=[F>gIa$i`ʁwM`|nB=/-jr QBrGknb;6KM ?YY#{3ۤjoTEH1ߌ~P_7aOLZ^)+23]}˔Z]fUp?(9^ҌYB!J(˖X}5/1(PkRl֌+ӛ5e 50TھԤHc.ϗ,Ski$Pyʵ4wf4wf 7DIz_ I*ۡWETR^3Z/YRץuqyl3MyO !6Jfz 4k1k4H2̄A Qr7e1IMBtF3\F#5SWR"?#&lк5*R U^L #j!-63)3)jsF!(Pw-Erxvv2 "Ƈ5Ztuc=4$Ǽ(BA5']v~劓 lK9)(>2,!' bئPh]e2Qai}9D?$3QON˅i781*%q&pH$QQy aJ/# OGi"TBH ?_{նAdht/mcY4oziguLɐ{+Q=V=-gd͚l3w^wlv4I(W) G, w]FqZ&K躻 Ӗd(;^6EN{mT1k% O'^^uvh(pL'SGC=/ZkdWs4%ojߚhJeuB4e`ˬI=֒`fj3Y5wkUdͭ $^jo.i6hX*k Q^jB.dR6ڼ ?RR]93"c/ͷuUȾd-J%ky|eX^^.娚ed˲_ؠ|_z%xl$d1MϼK+*KҴ_]Y>, XJ*$Fڥ u-R.Pq3W3KQRi>F8ќBZ@Ƃ 㺖㍻ִ_ݷJmӼ CjCTחly+A_R6&-14Dyv_󥮐3'{T78VQz&z!A+.PV7eoJCRԭ e)dEc4]BƄHFi`qypƵ Ԕfu  Yk9r :ku>AN:_ 9e&W5=TDAq C}m>iV?2V :^ ںcATW9UEC\ϙke n7Ut/BM^X6Lװ/ڞVjlMP98NۉqwN2 :kV;J 8%fd!G>aLCu?۹dLX!gښeÕ7ڄ]y?ۏVG6LMf=HRyUi&ҵj|ŕ%9ײ]m&M,bI;2/ F]ca6J}l~uH}di"P\[PST*r C{¼_ܣ+MRF & a]"6Rhd_ӯ CmXepEyז{/CyZ J(yO}vnԦ=cCO06EOn7r UŶ5U#.RW_qYaZxcHA99ʤhX=Ce|-PSKGo7 AZ|C}_[g)_&]ø2H8T )' zŧk!4C\^ƯAO,C6è `t⺥j)MVo K}KmQ)"Y3]FI,gY՗,_%Y7Æܾ -OB΄|pKo=>d[g*({VW kMңo{p=).٨;RM eu=Dy*g:b7}vl𚖏(t2ex5\[ޜDP Q 랗o5 urAͩj?F@, ^[կm2PR6eBQ۲$KoU?)?#o2$dCFZcK_AzҼrcoSS3_RIj5HɛK>֜ lĖզSE^jmkysEsk8F 2]mg&'^J~F2:fD)G]Yy tXdhz)3zvh6-CP%=+w|_tcp c(1{%fc {p~nXZ Q܌>aV3g&goDszx.yTxm[$j{z~Xxy1eYZC5J\֓6I^i?&idUbn Jȯ%2;DCq?#HھєzY0 d/V7`G^׶Ӷ.FP㭦fN9>%*x[b>/.69mΰG,=4:ӞkU@SQ6e`J3TEBQGξ!J#T>Ɏ^vչ^vUkEʈR 9[ (P% 1Gm"=收t8ƴ47.6mzGC>vīR}jfls!S>rx6$P +Va.6Y.!)Թ+6p&m q@c&=iBeZ'].w&Ǻqѵ>ZM=GVwMcnSlj26D*VϺw -1YlSj9TiM6M3ԅbC5'|ͪB^NױjH\ Ӆ&Vi!W 5 䵦(P\A_ uDC$lJY(c=.{ȳctkk3 +#P[[N7W}ʲ PRCQŕVwA ϑ~1-ՍR(ԺB\FNeVcȁ=_f8=o+7$;eM/ mF Vdb Ua5ؓy'5KrGP?2exDwϖk'!ljcQBwk y!O I'{e'[%ZַT(Ȅd&ٔX3U#vKl@uBK]q%^r+k^H MWS~̕ /mnd].$K\e,)0Nb֜e }^ "{c/#,9&3dxq/ZizeeVoPa@Ej?_YV.DWePS/im2ӷ\Pd;RвT5m3/rIXU5ɶ2t칗VږiJx;֙aOѷnDyRzem+1V٫2z񏑊M %bD)|شy$i>d`Mk9/B}i3m kWD UmrTAwޤܞݤcLS!rB~wbcAhijcL J>lJ- Y-TȬȶ5]Lws%o3 :~h u޵2ƗONvc:>P^uY:XiM&Gg'A*PͩM2 JfnQfr ղhŗnbVd{djgVN[QTP ^iHIl!+TT Z={^ ٽǓpֳPUdsYEgޘ17BSRЍ][M\CCYfJXkL_BVPKf)#PW۴zZ4yf_ӶNJݔ=dr]l?ò!/NZђjqD].(PQk[UMضt4ySn79LLDd<֯$PI;Jk%Id`,I)TJ6(òda ך * 1egZt,]qв u5وQi˴i2 פ+eh`%# ڷaEZx Qrֺ*Քǎ}"f\++BF{cW:eq_tpBښl@vl27]q/[Ax 5zj jLyqUzyAJ&#\IrVXQm:bm^frwP$Ryp&Dv|P33WL3_k]uWuL>j[M+tIV]7VVyZJRF^Ʌ V\d]j Uʫk_ŅJUy.+M3~9DPZYK jo)- 5ոņ(Pj]ƶ+m,TZ:-e5vI UUT TrCLU`;6C Q::UZj`jV"4Y~b*[+5DYUiŭc)>(PjZSKk\ւ]vj^gGG6DYVi=-E9f-du:?Vu}[ r~=7ZgYV1a+n8ob+ zc$o>ZQvFֶ@] -nmx$jf+p{~5@di[-V$*g+q6,Zh<{ ճԫTZgZl~Mr մW%PQk]+sy;Ѭd~naeF6I0ٚBV2sbeqm UnЕ^|S*lL#:mֶzp`yo#uJWlʎc5U J[MUy.γh ռDDtZK٠%jym|%͉f͢כ,dسXBu%0ݯ>IU[>Pl7cԽj~DRZc~ӎ[| ^ґ L(|P۳S$,h\rǡBHb+1Te5۽XJQwd+!P+&rDR5پƻl u5T2[xj{Mk%(zcmnZ구"&<\vpM~8ZC[$|MmCjv^٭K,r&P[[켤w1#%qeDB}_`3e?ޕnQ,34"L؟XK(@WOlW!zڮ"IyVu?I,+|6c50AHPJջU\lM}*ksbmRo_&|+qGr;<_ɒe;_ɰX1$ 2m. q>QX$!.:+@o/AXgIF%:=3oh/0^>%Q&Gh:ϔX/Tb:݄\.,nW)4&` |D")H00?Nj1$/C:D:[pYr;.$0Y+zc,0Ϻ[2['35w2 HC?R~'`™iT{0"Q' `(P-mmL=޽BΞt8|y˳ hC?IR})`r@iƫ  g;n y [.kbb ^SX|ġhNAs$W= />D(+r/C$:DA@]V=- YՑ"w!j#Un;jP7g qDI,Ry/?ӗ$;k`91 i9&JA>Yj'kV2)>@&6d'๛a_bC^v˜!OWQav3_kJއ5[u<6jA9.9얏aOi \;i[%R/T-B؉*Fi)Ch7P+'.cz|t>c O >R&PSzNfVHwG!9O.*}N|x.QPK- ;.hk -PK,-/LPK{PK/Ltoilet-0.3/fonts/smbraille.tlf0000644000175000017500000000467211324661024013417 00000000000000tlf2a 2 3 6 -1 15 0 0 0 =============================================================================== This is smbraille.tlf", or “Small Braille”, by Sam Hocevar . It was created on September 30th, 2006. This font is free software. It comes without any warranty, to the extent permitted by applicable law. You can redistribute it and/or modify it under the terms of the Do What The Fuck You Want To Public License, Version 2, as published by Sam Hocevar. See http://sam.zoy.org/wtfpl/COPYING for more details. Missing characters: # $ % & * + , : ; < > ? This font is part of TOIlet’s official distribution. More information on the TOIlet website at http://caca.zoy.org/wiki/toilet =============================================================================== @ @@ ⡇! ⠅!! ⠃⠃" "" @ #@@ @ $@@ @ %@@ @ &@@ ⠃' '' ⡔⠁( ⠣⡀(( ⠈⢢) ⢀⠜)) @ *@@ @ +@@ @ ,@@ - ⠉⠉-- . ⠶.. ⡜/ ⠎ // ⣎⣵0 ⠫⠜00 ⢺ 1 ⠼⠄11 ⠊⡱2 ⠮⠤22 ⢉⡹3 ⠤⠜33 ⢇⣸4 ⠸44 ⣏⡉5 ⠤⠜55 ⣎⡁8 ⠣⠜88 ⠉⡹7 ⠸ 77 ⢎⡱8 ⠣⠜88 ⢎⣱9 ⠠⠜99 @ :@@ @ ;@@ @ <@@ ⣀⣀= ⠒⠒== @ >@@ @ ?@@ ⣎⣱@ ⠫⠥@@ ⣎⣱A ⠇⠸AA ⣏⡱B ⠧⠜BB ⡎⠑C ⠣⠔CC ⡏⢱D ⠧⠜DD ⣏⡉E ⠧⠤EE ⣏⡉F ⠇ FF ⡎⠑G ⠣⠝GG ⣇⣸H ⠇⠸HH ⡇I ⠇II ⠈⢹J ⠣⠜JJ ⣇⠜K ⠇⠱KK ⡇ L ⠧⠤LL ⡷⢾M ⠇⠸MM ⡷⣸N ⠇⠹NN ⡎⢱O ⠣⠜OO ⣏⡱P ⠇ PP ⡎⢱Q ⠣⠪QQ ⣏⡱R ⠇⠱RR ⢎⡑S ⠢⠜SS ⢹⠁T ⠸ TT ⡇⢸U ⠣⠜UU ⡇⢸V ⠸⠃VV ⡇⢸W ⠟⠻WW ⢇⡸X ⠇⠸XX ⢇⢸Y ⠇YY ⢉⠝Z ⠮⠤ZZ ⡏[ ⣇[[ ⢣ \ ⠱\\ ⢹] ⣸]] ⠊⠂^ ^^ _ ⠤⠤__ ⠑` `` ⢀⣀a ⠣⠼aa ⣇⡀b ⠧⠜bb ⢀⣀c ⠣⠤cc ⢀⣸d ⠣⠼dd ⢀⡀e ⠣⠭ee ⣰⡁f ⢸ ff ⢀⡀g ⣑⡺gg ⣇⡀h ⠇⠸hh ⠄i ⠇ii ⠠j ⡸jj ⡇⡠k ⠏⠢kk ⡇l ⠣ll ⣀⣀ m ⠇⠇⠇mm ⣀⡀n ⠇⠸nn ⢀⡀o ⠣⠜oo ⣀⡀p ⡧⠜pp ⢀⣀q ⠣⢼qq ⡀⣀r ⠏ rr ⢀⣀s ⠭⠕ss ⣰⡀t ⠘⠤tt ⡀⢀u ⠣⠼uu ⡀⢀v ⠱⠃vv ⡀ ⢀w ⠱⠱⠃ww ⡀⢀x ⠜⠣xx ⡀⢀y ⣑⡺yy ⣀⣀z ⠴⠥zz ⡰⠁{ ⠘⠄{{ ⡇| ⠇|| ⠈⢆} ⠠⠃}} ⡠⡠~ ~~ ⣕⣪Ä ⠇⠸ÄÄ ⡕⢪Ö ⠣⠜ÖÖ ⡅⢨Ü ⠣⠜ÜÜ ⢂⣐ä ⠣⠼ää ⢂⡐ö ⠣⠜öö ⡂⢐ü ⠣⠼üü ⡔⡢ß ⡇⠜ßß toilet-0.3/fonts/smmono9.tlf0000644000175000017500000012444011327706453013053 00000000000000PK- ;f- \ŽَI.vϧpG`eU;~f0@]Lv'$M澰}oN^+,##"3jYU[fnnn's`͡[f\l]0_뿘W___׿?m/oֿ?׿oo_ߛu YpBVBKXއ~" U0nXW$QG q#†d% e5Buꟲ7Q(wvZR$뻶]j+D>N-V-{+/P?U UW9kaDd\Ѻ;܀Z^=V72b.{;m,cVTs4& sNžvR{y)R,5_ ;|tNJJY--a߬ dTʶ5JfVUgj87밋ebcmVna{%0~\;|VOR$ځO˜Q tzZv{*S&p]Rw~f{7i,+a̹~$T(>_"BU)j_>;XƽX]o6nQ?`ksvFjNxD|ҩTa ߧcqD1Nm4~./b:D@oCOګn.<5:+LY4mޥ#zf֕)JcBW>,3ܡÓcʄELܭәrK}ib [n=;V:;k.0k˜ qDI, LM@sc1OhQk伦Q?7m˹j)쯇8UpG:Su6Oh'yS)fhΦq'Zc6Їfz=tBi4[/_/\4_d{mVE+[J|q[6_\=Vvoe|q[3_mM|Gf |"MW%7R12G+.0뛕@D|tD:K]cD+4(Ӡo=/ ÷0|`ŏK S ԥ2+QKD6_IO(N-tUw:uZBGc!X:Cۨpu' + 0ާR]Gm^wwi)QYs15N![Xa>m쮘M~B6$郎p ̜ϓ3vg%Z}|2?t7p̗i42_^)h,j-E5_^ fe]+="FQF!C5'IngJ"/;^% /S-l# ͷpll5%eWк➚/o=!ϛB?]:P~ SMYZ}Y Fd| L`)D1_ E :@s~Ҷ,vLMϓX#%>QJd7k4<; xAt`}\.*,85 `SOӖSD[\F1%Y%+d,a7EF>7BF>7By1vo(D ꒤hIjM/pE82[#z jޭ Z歋 :Nc ys \aϽ%F-&g48b^j X]sWUs5VWqu| |@3X= 1s}+`OFE|v(YG~"&+\OM3A6{X&+l2% 雜}Xm[/2g-eA7.WW!WW97m]1_!owWג`y`gzbSX|H=\ |)\!W&6|5L}|lI%bi/ aA&$>1_V7ԧt2"v |usPw ܢ[[Oq^PHr秣Y-glz맭-`껒4'=02+}?囗{PYK > }mc{,>Jjr&8OKgקKeu\S[3ue9U #l j7-`<5oۋMIϲBח7<Xpi$S}@`UDXp^zzZ/R/Qגea傍PsִLktnLO,^p gfd^`2 |F1ܧj)FsEw 9` |Mkf} nҟy(Uqs}Վl 诧3$u\) o x"ot}kؗlm&dQOvytPI5l4l0cq~bH!n~R3Fy;+D`بՔQS`\ZWN2}dv(k,ܣbm|Q9oW}kɫxeamU Ȣxlol/lglVhnV6p3w1ڈ+\0:ݰz|zɁ|/u [_^Gjw8j{=q3sY-Dw0d\ř[{//?\W޸_f50KeZ!1*0˥^ER`WVþeo729ggm?ƧYR7.ĆR7Hyiyͤ^~N~;0#M$^~JLMI LbK,Dgm֗7fqb4zĪ *7F6*g?2ǹkfo\x >"=q Aq+xK@0? bkNFQЪ-1pCq]Ԑُլup|u-)4-e"[ ۻ CQƔ[+d%7Ki+oo*W#H̎;e-surk 3-K*&@gn"qӒeWM)wǾ瘥f+bAz|s=ԇr[77.0>=Lvl)겒z_2t>Zd3|b_xi[#ȧ kuw߇rop=Bc hIq!0uO@ki!0SSB9v#T`f6D3M!%̨ufP/'vmw6vn,w ~V W8=NaM$oMՋ8>>c) 8.#Ɣzz!1͔&i@[sG&g33Rc2'=сǼGtnJzƜ f"Kx*=KnR|70s:>spxf?C<bŴph<-N~6x+ݝ7Qh4w\`x(1h?\'GcI u伃?v483'n*Մb>Q]H}%6ɔ"ўeAΧ48~EvLWÑs)]>vZ Rax68:F.S^0j/dIrP]Wd7%6:>~ۣRΕrbc`wZ>y ++Tcwhd ҌrڠҚǗ=?jQ`%mEC;5bkxg\9@ًD<Ӕd7~J˗'mz[EZ8rn&׀i:Vs \KXV{6p'z?{[VEErN;4Vl˚XV`~ q%g-v6$ sEW%(UGa{ڎj102:) >njw.q8D:6ެN"R-5fi6NͷH4Wҙ3+npQ5Lŧo('>^+'88ּ+rU=N;W5t3W5$9iK*:i^v`a1M;.yH<1遣'ShPv`^Xr6t&1ۅ`26 {سS`g4I < l~)p\ExKTu .v5vO&שxk{9U99Q櫴w5N~wʱϽSѝhu xz4'7ep]ف\o :5aHDJ΀QgzU΀iZ3h-ֻκ 8g 86Mr0.|km;w_ku=N)6H K^ G΀W䖛i++Փ}Zπ?eѭz}ؖh06dl@fT3=n:*27 ?&Ikv3cݭwY7j]2)q|Ŗ ɼmz>2b0plT{]ݵ2dR=iwO滎Vc. 2oEl]<2{zCYw7V3ݭjQ/ٺxjGr[=Uo-`fUZ[Oݐ4+5ݠɳl!lmOnPjyH 0秉!jXo:],k$x+ UXZ%-i B>Ȩ?Ghܲ!cVYYZ+^S|)d}j#gp 6Q`<ܻ+ow@Icq -3? ]@#v&sR,Iͯa ,eǼ0I\(yO)8w@T@^bJK@Y)#m_bf*-`㸮V*-`W{]-ԍJ~ Jߝ#2v-`יF4ߵWܚ~cفߌk=e["6SNZ2ohˢ1 1ɁD%61o m8$$[`\ r$GW"C+>:̷4I{hmO,͉kQheU ,d"MuL^*28 1'\~X}f]~b~:{~Wk9ɭmވIaԽK598[&Ոw0Hw\88rs [z=Y䝋ښanU$f,ŝJ()06_@Y最)fcÇ)ٹliLq̜Hbzg*4bs%擃qGz`SDv_d?p|=aA0|#P2|̢7?6߇u㩪k -%,΁ 4nfhZQ|b*Q>u|[%jc'$W+vwT Q 9Pm&I$V=:s UK |Tr|_kWp075: ;T_k^Y&h ߳)=*=}{q :;I :L'`NvYud[cIcXDQְT[ yŸZ F{8]@yp^{{`d-AY`.0TQ2Yg9ϡWz_?Awyn+=`ذ~Dq N=`0q!$ eQǮaNk8V.V-T+WHLٗ"Ųnk:(/7+,+TY3{R$#2gH~}-y=:Y ]T&n}DԃfU!o<Pȗei=v};J%UZaep}}`6?wQy}E6\2?qTO#c&lNj\N8GtLG@=5?.9[Q3CM #]bUebxa$0)B`+\Ph?1Tzf;}CO-~!gxp?3bdѻ23;=3XY$תڥC>A* LI ;.:s+C`0vZ7C:7FO IT^L`S;{>޽0nO2*}FO*)|0#`ΨaX"c#:`&i;uĬ=jue\.ipZ>FG=ߗEPOڻj@]?қx*o+.]!" .#%#oH |ɀZ#7%Ml>K}+ OGqe8~;=W:(WIYFbe~"C e~ #v%=mDm~bt;[ҎE i((2'^niƟw>]~ _ gO*n(:+qɛ?.yE#bոfU#VVAql~b<њX) K8~*w.'8zʴEDRR襠| #3Rx\4?eblduIm~ :kc옟|ʪ]욟?'T!홟\dq5rvi`hmr`~"d6TOqc'O7" W+}pl~Ҳ4+k%Svc'xNOJL|'rX]Ow;;%HX8kY{z\/Cb.8\<{@p6?a'>3~<Xn~`7* sޫ zrle;ջt[ʧCNk:p,;o}.<~+}ACɚz_`ݩ,Z_^4-X7\lyjv9#͋JW;OIpt+,*OG?eyg$@O*229>-f_#Nd:ZR򊐁_&}k@\lNY@'}+MbrwX9~:= qp~>qmxcГc$ K,Y#`ܷ\kC};5=cwogL>;7c`(9ƉnRgpxXTs8~%Ff0΍XCƜT;(2Xu9q ,Ls;}fMp|1tZ X7`󥼲10.+Nx !߆Quoj ㆱR)'i+iJԄkkMgN׮ }9%‰e~U$yI2? %g SpiEbCG<1ݧ;vU%.>S/횟PrXK{d}8JS]\W3o~cZ9La},>R/,2qKN98O"G.oQ7]:6?+Y7ՇK.T}n1'[r2o+ ݙUg5T>́POm{d ,8}J&k%ԩ2~'$;G}/]C>4&nP\_=J'%-S[:+j b|6]Z;5E L~Te؎Ѱ ?Nʺ +ɻs%[5mo7մsqr9[5BrKq fS{njlJ*v._4ELKk] FC8)1 w}'E-8d~lCu޷ɦߒV-w/$yzYgbѻIc͆J}ҍĮ[sr]+lb<ͺڹxj~]LYe%}f~!ẙXwkY;[OEs\c0[S|hNpuT Q٘=.ݍ>;[Yg~@g횙ؔ*3oYܚتg X|̞f(ͷ~;[ꓠq/<Ubs>f)};[sQ'76_fkJФ-` Y;?x,FV;-`缼@ga3 ,rsL'u++(͍/1U{wZ$rCqD-N x[JV'E$MBg$k[Jz.Kr/aorvZԯ1L-(aZԯӱ4WC%*p*_3p1 <ĮɩƿQrE~7f)遱f{ã3aB=>Ueog][*S;qU_ ҉U -Ԥ%d!Nl֢ )2:κU2PBc;QVY[yc\4f%nΖBr]5[жͯ`rw._i K؇]la"2gw̯`,`:wͯBE[W#_ja94 ˵=qd~۶u%3rsILn*ֶqsdݹd~ S윘_jW‰;W0Z~z&r6)k lKʮQ.-ZNܐ\XiI blRN8"pV ܛ/[\u[øwot*z-I7##V3 |;`#L`\RvL]`Z0Ve.0lT֪j׿fTva'gݏa3]Y+mZ_qϴ |׿pc7%AٮM7->U_𭘧,<ه,גo%%1`gl歳6]it7pU 0UMT|}x֣n~'NӹT=_!gxӚr&/:8c6o&%kOn89ZyS>Cfo3~ܔfBEZ`e!WywM,rS6r\61 5"m˪q<ۡuq=7-q=`巼E a ʇ/ H} Ls۲Mh[tg>̱Rx8Q73H07|1٨|>pRiqHwTzS*\ B}}xe_6C 8 bHm6_\Ёw?b]8hBf`^ `dFOlSnQ0bh03[f{26,<0؟L݁;2 cv]Cᵐ!/0[o$&LsdO\kw߮zCVg}aɎjC5%$gDo$p7RMg CH9ko1֑[5h|8}tԤӁ c7r0/+FUp2AdF+PYŎ‰[$z ujFkL?ߢ\goc</!0*6K֫Av\<v2AC#sq~/QP^ ]>jՒ8Wˮ!-#.wt9΍Gxb0 yEGׁa ؔVsE{V?58pgc2d , v!р@&\5V9 :d0ؼ9O.p&!^ w\'<#mCسcNzjMۇ8r^ 2x 1 eǥr )䥲yO 9p&qYi`ْ*o¬^8i-A2kpl.`Gs%=YCp 3(.߲%-^n27}Rc,ڹoWlWW̉u7voag voaH8L{淨F/8Lo~{2˸躠rOߢ|&Yo _:4y'oQ\4eIciM c%[*e ITdS4iHvm{4eM" h2ou͗6zv6% -d͌`Z'x?aX |[!RdkTjI /90Bu<oʃ:`=`Ey&?z>#;M{ <.DZ9||b2 sr |<1okH(9RPSt8L<F6YsX]~5\Jbcف_{}sH&U N,ӗ5΍N|D9rfcnYp;oH3w8e]߻S_U΀'r&67r k=x#~~3C$L#\mViAp[ͳ8cn9Dgq k='o2nmjHs3kem?f x:K|h 3`0,7a+x{8>0 #׷yJ<%3`8]f} i3XwW|YhV1;o8Sv.T`+ Cu6m.ԬF gțo1Ukl_4]{?S½~3i?k=Zuʹ{Xf<4 _ɓvd~EmyRrC 7G;` ]&h  u s4FQp7Fh#{˕Y \X[R6dVN/buu!mr ߌf+֎#rvhkk ucgWqgh8ʥ˜$vw=CX%,C3wq=<~7Y?J.NȲPBrwbw8vNs ܄(vi,a %3* xpdteϬ]`4#c%.z$L]5?Fͳskᮕ4[hXl⽐n83 Xnp^.[fNֻ4aAv鍐ѩj(tjNYp4X Ҹs `yڵǒL <`'EjBݴxPŸy˯3Y,Ѐ*(~-R3e_J4zOJ'T8B=`WTw8` y7I@.*x=೸RmI|o'!ZKG`g)ފ"͆J-̠gk(1{(:9>0\|bb~>0p{ScL0>0Ri$7{ Q>#I}ನRqr5?dQuhmX,CCX,S,"m|-(>:}} SlG'+>-ebʎ(L0!hά`ʮC`Y+_ Of"𗶷@g]ߊ:hWzl?85W=h@21xRϙ~O!ϘFucrDɪʵkr#}b̟Beէ!dӽܴ^Z(ι͟a$.z@8ʑSC<86 /qI^\m fQR iVYA3P Yf0KAF.e("!B Ȥ6QU0TD,ԩn sX]yx+ay8DNDKA"w M} $.1rh\ϧ.T0Fȡq#&s]ȝsEyW9a (2g\xs%c-dzvRj!*;..yC.! alBZȢM'Uck!{1ddz$}+0YC*`B"zߐxP`=Z;Z8O.pփ(:H=_=nI' AQhmLL**.r MkXV4^QBt?~EңZV}='!;zVW vyɀqd&-VG: YII*H-\mENbrNUhdD#GE(d(td|ޘn*zLj܍294SqclWaݯzU.rTm[:Edh9EM3wj4=dZi0lWE~W!QZ~CDSj4PR X44/%&B+̋ yLӃ2,ǒ> )14L`ÔX)̌ґ/ t3rWiː NrBalkLIa^T@WN{hs怑ݢfDz ")u©rc = ȓr7 /H񝙗S(TP;fN(#j -7 +h)m#w'F76S sժXV%7Ft!lKQm pdU 0Zn>rjiU͓h2rk'cŋ2[U'@l}] ZuEmHgBWb l{J^UKvׂ8-"@ B"%PBQW gdUBP?ɣ rWy,-s? eՄBcA!eUB^HYX!CIgrO. sJ3"@.P? (ykJM0@x99` #d$zKzPLZNZOZ32ԂkWӌ'$k![ݏ{b*}$l!s=[9",2#ëb LJdh i1Rt,W0ZZql{TLH91 #ϟwfqNQ?q.[vݲz;5Y=f*ZL >{cT8rP\$3'qQ:6U \$2ZdA. O6k޹`VQ*||ٗ!"wBVbN)] BvҏLy >yrfV rgas.u|jGObf:&CN`קJDwK8'bu 2.8VPK&Q"~0,A- (`$DNy!f`H ((+R [;|wiV~0ui$Bp7(\wyAg$Ʌ|A.?A@wǩ"<)67]cfcXO6y6Q!M`Г$)o^Kj5Rr^&\z:/) BVo$HtQ8 ej1q/d2zt0 2Ljڄ0,QmY$tGDg!)>K!oЬ\E*B 3䖕A #zf˻@3V4[ f9[Ѿj-q ,6y9--hiRِb NĠE \ܾFȋ \c`~; .,aVȒ&@\CZ-UnwRq_ y3R@b~n9n_]NkS !SEmzR/5;m &7wxǓ\k\l%ȆբF]&6I+fvc}# f&2a"DZDi=!)ȪGV0}@\d lPG溴׎? 2/OwW`K[8g f~iT[)R\Ww.z,~LߜovYmtecKrtՑc}Hz_ #Qȹ‰AV>\ɌQ˛2l?N>Œv1c&I$C0FCK|0~' +eqjpqR Z/U>yyz^i`nM;^B2Lw0˦{[߆VȤUZ[wӾ!B~[H)IrcMYwg U)E _H9EC"j=TR~,C*;TߚŒv+eYA+'SaAOQ{w!5)YNCM]iY<+ ׈[Ϗ },z=04{7#G;xd7XYsLi 5`;grm;@6vQ[UVVx!hPd`%ϨX: DIpsfա3v##J8L(Bj9't-dG\I_!)Q KG J] ~?4+^;CKNKYXK ׻n墁!g>/"P܏<;(w` S(24#Aȸ\zw &;2aa.S[>%G{@<%MTD E8g!GU}9VV30T:g#>RVsn%;'u^vG ocra v4<}ݠŪLh/!^#Z^6$c?s;H,k]6j֨*55[zxP`kuljQ6yqu{6ﺣrvWo>X2-_dipWso|(qhɃwS#Xh]uN i'(v<_c{uMVȶvv* /x `c;ؔ:[/ia;a9gdL-\WaieGݡb :M't# ڡ;b\swCd;Q`m;|g# vwb1_LxV}4s)ɬ vSXpW# "!](1u$wȖBBd-uΈJ!)٫P\ `+#7J?X!=2acuV?U#.B5X@ =TKNh׫ d1z}XuH3Nx qul֚0Ȅ]&Is58@x>xdxl}D֋++%,ݫ>犝$4C~{63+=Ot;X(5sYUUbq<ȕB8d9%4!rMzܩ꼸nN;_s3w:-}]AGܛꄧ̉ѵ ZT'ڗҶ}G/d2HpC w=A< x]q-|fTttV9qG/T4񺜓O&'uy`KVG^ϾsF[Kŀ1'g6=)]>u(o{Yhzۓx6tP*" wTգwxNz|NEҲ *<)=>)DeX"*mPv^EU*Tu _clzVyu@Щ?53*rjd kYV*Up9uJ`{h|=`dWᦘI+r"Ι |CYWG%MsNY 7LL E<=>O픺G*@ժiڞvFVdHAdb \#'X=K ΢-@Ns뚟UZEjS4P_:s&Hxd2ԯ3'8 uᢺFjҸ >d,)rt\N6#gVSMdp=v%dN25Y{nY'iJ9C["]7>;'F˨\cn\\2U#C+?ma`ps'q^# ߊClSq:%ua1cMcr>c pJ)0Mo3GN\K8#/,2Azde)%Ic!# g6܉'BLGnv}I33uo}8$Q|vߘ#k )0ZzaEӔ72AZ( "[+$VI5Kr|CGKɀw?N97o% L|Cz@sKtYoq` p'7Hp5 7Xpn0V9Y._Q78+-MYpGIw,|# [G~Li)W.!ƈ(l|#W4 e$  "@ Qˤx$y(Y"ˆX rXdظRjG!lSy6;Qh82nrOFT \*TJe~a|GG6&CgRBF6rP=S'\a2pdTon:pL@*B# :$1TGngZSZ<*2p&y$Ffngzr ۊ7S.I:̏,,ggF>B&_=}g"-#69w{\zd2,1ZۥPErq[zl' j;Ǩ4YU_zxe qZ u0d(*Kz~qVrV92uiiK->BNT)Pȁ=L!s kwt0d=A)WW}EF\}$;FV>/t;Jݒ=FR 8tr d,5^yˢUI!ki=Jf^K5@Yd%#7|@ 2zwko0{fMKI542жi%`jan*8XKa7І]&%mǡ]FINW'm7Srҧ /^Y: 0M3ٖ,5n9knq%BKr7\R?$J GŞ_ n7,&n qRf KAݔ2FF:pM5GmI,w3 .}Y\ E ปj b9:An#{ӱ: \pCM yόDRF#7I* )I;;A>"")(>jLhdA>'x r[3{9Hh{o8Kveto*{C$)xJءfA &C7;A8aSxd0v!Sdh-_9 $"W1BޤJlD"c֚MGVbmUo"ho%XV<.eg, MB`d8X%5*3^.*"om$#ɚ:YS78PyNS[@}:2f$ <+ɺ-|P_9Y_K{{O YX%amI?ZBf6SiqU{N9h! U7ϐSg=!ŠI4eȺQ4ncrQȼKFףެK}+omHl͒ 1IKI:i7KzXctƺ])ݱŲY$ujeW`]@(tܐw(C@CoW>tKuH`eه}p2Xc󿩺Sviu6dk# MT{X{Sy.YEZ&36~U#Q +ERM5`ĮpjT@QNI6튷ػDM|Td[dHCS/-Xf_UpuZ.fYJ(YlcϮr,iIQ6VOΡ7g\{,̂ťXs6W'g_TT#*5AyP6V펥>3神~X; A M7ƇEůGU4,(d[ IqLUcOF!cn;EڽO2i3,i:)ET|m U2+jLRs4l_{v(fC5#+LDS#zzk5oKRJd%=3wVOɋ,<p4Co#[A9Nϋ[!YHOKƚ]!bBLvKȂ[0~#VFZ黴to15?7}d(&}63iZbn$krVs='qAGJ}+5spY ,2),.v%Er-) dH-Uk@ȋ>MHHF۩*6V~zϺz_ Y;f,IL% 7G3 NDPZ]JvxsN3Cz+65@`[ásG]_v-l& "V*EG;\W&e%MKq~hՄ;?"?Q#4ֵL*#{j0&o]8dSE@ 4pƀ_ao=y#wt;ou*גo] PWbB)`JeF '(㴀E#/> n K{_PXɺݾ~έn D-=\&_,q,7-(MߺMao[wmUyZ-w]cJX+V/ [š8֌E䆦XA|dkzzm^lgs+>r]BPMzjZ( J+޺L. ¯SW{MSLz!GTϧK3UDƧ9e"N \{t @#'/b,V@#kDf2C!^m=&=Zzk6iti_w6\=fZc[ZZd$6XJKk c[^pyad;҃lX}siQXƏg>}A4rtc^̸Z-)Wgj`[/ 8Oz%a0-DeiXze"WWһMǤR.9nRs!l2[צ`7Z9O[יx|빶-zK7=6dAE&Ee۾,mbH*(HUoÚn:pܧ:𽥻L9PUoGzҍdI.|.9h7C ToEX@/ #aDİs4Fu(}rcz+%kw ]"]ZZ[eגEˢjwwB# 7]7hȼB=g4 GSo,521ur`v>?'Buc)02zq\!JR@"> 4 C1}))-In2c[Wг$6Mio4qRߒJS6B^*cM="\>1mzTJYԗiM'=t\q!Xei]"GZzre+&_5h?H zfczֶ(rPgչMz{0v֭S%C]T;3](vnS4 <զK Okޞ*IHdYUȑ _XޮE3P13iC>dYwq~:k=8Hz9Q;?Ui=URo?k# G\#Ro?dF{ r͎#aD΋#OZ y-S*gʬE-*F?UQ (d8 wiNImz;#*^3J띌5%mL1v vےb ip`;W[jɨVls57JK^EYJj;mK6sm=:XB_qM0NΓvl xe\y6x*p@`;Urf+Ky']:+{ kH%2 ;ar&1J:aXtX;Pl,^@ea18V9Ȩad^1A*{ S3`( *Re J$Rk! rbt]օʡ أ'ҽʮw;8j +Q+ c ycSRoW @<%T>gCI}i]$ܧTd <߾TΝmzV+޹O9R LޜTS|'0uH0I]fpeC,!/ բ`Pi=BVCN&C6*] n23|@n'ho4{1yj!۫M!M!ڛM!r a;4lnS`{5~S`o4 )0Cv)0䳏C>)0OC>)0ϛC>{٣7>f? 쮒ԥ1.{eݫxg+{޽㖵J*BMM\T >ptUĥf@owHFa ҏrwÊ%BdwWɽ|}ཻQnbյ(鮙ԓ}wo=9jUhZ󓌔%s8vS;{Xn$#OB`ǻMMXR*Xc}-k4ܮ)xJUnډs.aEBO.+46v:18'SihF'YZZ"3+Z\Au NzAI[ V[] >A#g9m_M:YZ!3jRklRC4riZU{Gu3+'^zo\؟jphdI*i* rV'Tc{*hC ;_SJ&rb XQ5gЕtaM{טZM=zzO͋MĒNBֲd9mX~MAOƨmmV>Z,SFXޫ5E>Q#'RT%z|z7oIuuy?6p0HW!b=VF!]f8\)`FiSfm6yl#uE6_F2{"h X#lOo{5v "<5g,ѿާ$*55y{hKGʾ-š/ t~gNK\XSW`o@B%ԮlJ.Ղta@-hGMPcߣʙE5j]c1K待]NWzIѕX<ڨ`c ,y3*@s0RrK ._UkZ7re$bgJ|zm_&ʨ Zע$fL VkUk a`ȲJlou8`ÁfwbMn)@ʭ]b_ujAcXqTX_N`A\q} <9"+e«+'1GrŤ6dtKr /0 f˹n iwUuزJ;%EZATA#_Up*;׍)30<D91A7LR`ǡL>c zC%[U"`!\?ŷc{n袮UؔrH]ũq-@a՞[)#tH8RYk#ntVVNj0xv+I<2S;;('=^4A|>Ow) PM:I#2^TOlY3"pyJw\Gpz/E쒌Zĺz/SHBG{XwJ$+51$\ }\Xw~%NQf,: M?Nɪ[{ !EF³@.Tcu`8HT)ϖ&sr2b"{3JcZCVP6#ܱG% s_g4*=X#5DizHu9 #cׄG ^.W#qz}G6c> '}9Pzg'$܁. `di1JIn`u]00VY|X;]R2>%# ѰZ8*?-@hYefv t7zOq0M2Ͻ1&6+(K5=*(^b A BxxG.IK~. wLwF0YwuxwF5$X?vz1N땸0Uo5_g^偔yxGas= Q=;z M'`0y%=*wGaiJC.JT507m`|_VP$! y,`CGq$4O-((\2W^WRmjk莄|~N;M"E{XSw$dֹQʺ#!KbMGjG,2ƺ#5s\ U)<Redpqn&c=qU:d(33(R-"5_/ʬ E<RX;NT;TdCy87 ʂ8rB<$a%Qi%!q5p陔ęM&Y+"ˠr(:6K1Wt 'Ilfmhqtz]5&@*T?<:V{HP$08VB ɴ*$4B;d?*`=! K]K&XG9Se߲ym"2`бQiʹ)+@s|v#:VZp~XEt,6 VXꑯ "S Ys?0%O1*[c%qYq;[bjr,uI+ i9 1}Y1ʘӶe1S:~%QaMB>Ϯ|'0hezXsLcNP{ a LfrB!/jCrU8b$ k \,{|H.N8\f/: yQȻ m riȒ/2}jOL!cȘ/Qpwɧ98a&e6nn%}ۑڗFeٙX 􅟸e|=alPK=dB |<*D1gSqQQ8Y=9υ脛*_S,h,pȨJ$ΰyi =9V2't$z2@9~d{)lq׋>ȴ(%D}oۡ^=gdBG}̐+zQR8`XUz:WҹatbqV? ]ҧu>VEɆϦ γt)X9H=}D`ǂXُ#9+1c-3_D6W" :~ug8Xs"uXx,{,pXdlq4]YMFkzx!O4z<ǏC~dK" !ҹ..":'Q^U5D-V\%h:+Xsnj(I'ך<ɦ#''כh xor)0`I)0`ɭ&fi kiNzM!=M!=ݦ5|o lٰ)0QS`g&M!MC>5|T kPNAb%Ϟm 칦Ϟo 셦^l 쥦^n 앦^m 쵦^o 썦l 쭦n k@Ni ݦk >h AS`g6|QS`g7|IS`g6|YS`g7|T$ +.NaI3/7VmT@oe}% rب4pEm`* h?6u7 M\U葌"\hMwq_foOU,0/O! 9\0,Ϯ""VB lDU;H4.{IV UTdgT}hIyD5sQBC?Ng;of녬-zwjA37^&SG{ٛC7/doQPD~3@њMvsiie?C;\N[*#f˚9fn粵tQ,i ysEI7v9C6lS6ǿl;m4i`u;?a )Ò=Úp L(TݿD@x`vTgݻ`:Nm}lm]?j²sd~.4ހDp2 sZ26/e(ThGe~KS+yGceQ)ǚHh#'ҨVb[&-ɯ}6/3}G @fci!*4vr~ן 5vq+S@ }nxBk!?bf$- gƧ޳ Z e𩞕?t\lY|t<$hZh_]l|Jf*x!_l6:'}2>-4ɗ؏՗m B՞2434L]MU|%TDG*kЦ[$սin|o#}O@*ϥF~ϥa USj8 Mߣ~@=Ŧ[he ^T QfWKMRwjZ׀Q5[2Þ2mrSck1?M,\[<[czahXB,|ݮǐ$ w:~rLo[O5c#!OcM:†X+|Oڽ+]t.H-W} OՒhGIs`ǯs^bf߬o3zCgl袲yWi.Rlio)HfWi'b> Mcs64`? b`ɯ(;T̨-hY6ݾ`?K #KW.Z:AO[ uU`ӯ܈gע}M³jjf%m]ǑaE83~Z OJ;~/x7-<+1`9=V[Wnkhy Ήl,; j4C=D;+60掓][eg?3Jw!m-f3b*]MmMO=0ŝb d:>w-gylX)Ih Aw{K)cL[ -M'3{%il|- ߾`˞qV^[=6T)Βd#?yscUIuʎ#p-fx1&}kRjh!X<56^i1S] "qLlm}.y;`Fٳ%B$sB}V5v9w,ߡdc~87/RwoƱ:]/ڎBou?qDӋ۰5EBڥ"5g[f.r!#g/Yeho},i#Dh ^Pge]Gmϫq >wղeR~CG1.\=X\wߔ)('%͢zcvf˱S,ScoM1j)Lao) 7oioKIIs6PB%R?FNHlΞ}%4K"ؓ81ih-ߕB 6zAieFnҝԥ #)l~7=ђ]T;ir1Qu}GSkvy6,4Z͌OZs-/I͓'VjhAcCsH XhiuӍ޲!SSAO2wTh?%z -7r6ܚB>Jg(?W -̓-%F MR \{5g:Z^g\{hdžqa/˚{{y}:f%W ޙ vEMW;q+jj 5VukLM6j~jW%FDmJ:,՛ܯ$;gq#Qs`]vE9?}L`ѧHF1.euGv%m T^ ;c ֘$`eޑG2aB2I%=Aڋލ7vQ?I{6ך U}M8$BvxIɒ#zUkYwfl7)FOY-%R E6 gqLa~g~UXќ5}NI^h@}∬sKm)TmUڐ`9pʼS/pZ6>͢](.<Ƒedy66%DM3y¾k۱SSVYk m+HYd-_BqiF]:'niKThONPgOO5uniXS7'kp#SI)Z7<{PWsTrIzyo.+iaR,>.)˷ld'̃/Igh-(=TGUy2Xim"5^<`U3IA?wlj!r4I<ތJV GR[xVZ!Z2KZ'޺b% gh??,o0=%=Ӳy6=5SG$_*q-O09?fZwRΗ:W|mh3 4kScnzjS2M;@mkS(3ι8yHЍ~7#Sfb\b Eh 6d`f0{ vc%U{_6T6˜'wTrP!>$Ixr5;Yj4@C`,\{x-[ ;JMg'z?4ٷy՗(VqlmfF+kw+ny (BcÎp؅ ѺG3/@ `zl~>fhMadhe}9gekMٛy!ik6m W3klFKaYᚍ]:Jhi-i2SϷTv` "ڏ9ppJL%KRhqӘ.d%AtVi{a{B L1fu)_q xޮ Z3hi*>v]Ц>~̟|"m;dGN2㢷І*'T/D3;`3fEӝNFUx/˿E04!2۰6 eC?( %|=)8LQnv='# KlIknJ+r`j`fv`>41.]9غm֓o}W^v=P?n<4c;M׷i;`'LuI6Ͳlٚ2]]3=YTLjFԷ\Lp-X"yT`]碥`*'Ee/<)`]VEKpt9,߈tBw-|:`%9N ]]T&XW7$0U,.Z?k;B>r̒}c50Af|8^4Pp9#yu7'C>X3gB֦Q1('YҙKND^T(&DfJF8!<:hFn|X:}d )c!Hi_yD$rїleFLqP`G#{O8.h ԏI4T&J2t$sM ɻ-Ȥ?H`GO4,+rϩ#uEpGsz&v/C;>)*5TV;>Fz9n|t+vP^pg )]dbpg8):9| chDC"?d?hJf!S*މ<6V@(զ!3kocEawXFA %͊9DWai{CD '.3)5QDNȗCJ>e­:D19ɋL?GOri h7t.7D~uAYȱo2il'G. z? y,8, y3{6rL,Y78,#;󁏌8z0`ȺE 8;f_>fȫ'ߕ_V~Ll$?nK8@~|M1?T1}?I^$iSs |7ߙXˏo=Qs`Q6 Fd0ǷWUxBY & Qx~I I``wiys^yNw{X'ȻO3ȻOoh r3 y{7:me̕:(=A ]M,vjvۯ#k!~[DC:!οd0K,v8~Uxvn}Oggߗȼoyxq͜";_}㇠]Dbk?7]ҳгtYdUxIC}OVCg9!,uBO;E*d?Z_+~*A^pxBo6I@#xp il~cYiAy/]qC5NNe-l.1H>E[ʪ/k<NKC )Z C %kYdhYވ$P z%]9ShK<ݼJuӕ@ 1\&Y~[;Yt?PK- ;f\ -PK,-/PKPK/toilet-0.3/fonts/pagga.tlf0000644000175000017500000002314111326432124012513 00000000000000tlf2a$ 3 3 8 0 15 0 64 0 =============================================================================== This is pagga.tlf, or “Pagga”, by Sam Hocevar and pagga. 2010/01/17 -- Sam Hocevar font creation, all base characters This font is free software. It comes without any warranty, to the extent permitted by applicable law. You can redistribute it and/or modify it under the terms of the Do What The Fuck You Want To Public License, Version 2, as published by Sam Hocevar. See http://sam.zoy.org/wtfpl/COPYING for more details. This font is part of TOIlet’s official distribution. More information on the TOIlet website at http://caca.zoy.org/wiki/toilet =============================================================================== ░░@ ░░@ ░░@@ ░█@ ░▀@ ░▀@@ ░▀░▀@ ░░░░@ ░░░░@@ ░▄█▄█▄@ ░▄█▄█▄@ ░░▀░▀░@@ ░▄█▀@ ░▀██@ ░▀▀░@@ ░▀░█@ ░▄▀░@ ░▀░▀@@ ░▄▀░@ ░▄█▀@ ░░▀▀@@ ░▀@ ░░@ ░░@@ ░▄▀░@ ░█░░@ ░░▀░@@ ░▀▄░@ ░░█░@ ░▀░░@@ ░▄░▄@ ░▄█▄@ ░▄▀▄@@ ░░░░@ ░▄█▄@ ░░▀░@@ ░░░░@ ░░░░@ ░▄▀░@@ ░░░░@ ░▄▄▄@ ░░░░@@ ░░░@ ░░░@ ░▀░@@ ░░░█@ ░▄▀░@ ░▀░░@@ ░▄▀▄@ ░█/█@ ░░▀░@@ ░▀█░@ ░░█░@ ░▀▀▀@@ ░▀▀▄@ ░▄▀░@ ░▀▀▀@@ ░▀▀█@ ░░▀▄@ ░▀▀░@@ ░█░█@ ░░▀█@ ░░░▀@@ ░█▀▀@ ░▀▀▄@ ░▀▀░@@ ░▄▀▀@ ░█▀▄@ ░░▀░@@ ░▀▀█@ ░▄▀░@ ░▀░░@@ ░▄▀▄@ ░▄▀▄@ ░░▀░@@ ░▄▀▄@ ░░▀█@ ░▀▀░@@ ░░░░@ ░░▀░@ ░░▀░@@ ░░░░@ ░░▀░@ ░▄▀░@@ ░░▄▀@ ░▀▄░@ ░░░▀@@ ░░░░@ ░▀▀▀@ ░▀▀▀@@ ░▀▄░@ ░░▄▀@ ░▀░░@@ ░▀▀█@ ░░▀░@ ░░▀░@@ ░▄▀▄@ ░█▀▀@ ░░▀░@@ ░█▀█@ ░█▀█@ ░▀░▀@@ ░█▀▄@ ░█▀▄@ ░▀▀░@@ ░█▀▀@ ░█░░@ ░▀▀▀@@ ░█▀▄@ ░█░█@ ░▀▀░@@ ░█▀▀@ ░█▀▀@ ░▀▀▀@@ ░█▀▀@ ░█▀▀@ ░▀░░@@ ░█▀▀@ ░█░█@ ░▀▀▀@@ ░█░█@ ░█▀█@ ░▀░▀@@ ░▀█▀@ ░░█░@ ░▀▀▀@@ ░▀▀█@ ░░░█@ ░▀▀░@@ ░█░█@ ░█▀▄@ ░▀░▀@@ ░█░░@ ░█░░@ ░▀▀▀@@ ░█▄█@ ░█░█@ ░▀░▀@@ ░█▀█@ ░█░█@ ░▀░▀@@ ░█▀█@ ░█░█@ ░▀▀▀@@ ░█▀█@ ░█▀▀@ ░▀░░@@ ░▄▀▄@ ░█\█@ ░░▀\@@ ░█▀▄@ ░█▀▄@ ░▀░▀@@ ░█▀▀@ ░▀▀█@ ░▀▀▀@@ ░▀█▀@ ░░█░@ ░░▀░@@ ░█░█@ ░█░█@ ░▀▀▀@@ ░█░█@ ░▀▄▀@ ░░▀░@@ ░█░█@ ░█▄█@ ░▀░▀@@ ░█░█@ ░▄▀▄@ ░▀░▀@@ ░█░█@ ░░█░@ ░░▀░@@ ░▀▀█@ ░▄▀░@ ░▀▀▀@@ ░█▀░@ ░█░░@ ░▀▀░@@ ░█░░@ ░░▀▄@ ░░░▀@@ ░▀█░@ ░░█░@ ░▀▀░@@ ░▄▀▄@ ░░░░@ ░░░░@@ ░░░░@ ░░░░@ ░▀▀▀@@ ░▀▄@ ░░░@ ░░░@@ ░█▀█@ ░█▀█@ ░▀░▀@@ ░█▀▄@ ░█▀▄@ ░▀▀░@@ ░█▀▀@ ░█░░@ ░▀▀▀@@ ░█▀▄@ ░█░█@ ░▀▀░@@ ░█▀▀@ ░█▀▀@ ░▀▀▀@@ ░█▀▀@ ░█▀▀@ ░▀░░@@ ░█▀▀@ ░█░█@ ░▀▀▀@@ ░█░█@ ░█▀█@ ░▀░▀@@ ░▀█▀@ ░░█░@ ░▀▀▀@@ ░▀▀█@ ░░░█@ ░▀▀░@@ ░█░█@ ░█▀▄@ ░▀░▀@@ ░█░░@ ░█░░@ ░▀▀▀@@ ░█▄█@ ░█░█@ ░▀░▀@@ ░█▀█@ ░█░█@ ░▀░▀@@ ░█▀█@ ░█░█@ ░▀▀▀@@ ░█▀█@ ░█▀▀@ ░▀░░@@ ░▄▀▄@ ░█\█@ ░░▀\@@ ░█▀▄@ ░█▀▄@ ░▀░▀@@ ░█▀▀@ ░▀▀█@ ░▀▀▀@@ ░▀█▀@ ░░█░@ ░░▀░@@ ░█░█@ ░█░█@ ░▀▀▀@@ ░█░█@ ░▀▄▀@ ░░▀░@@ ░█░█@ ░█▄█@ ░▀░▀@@ ░█░█@ ░▄▀▄@ ░▀░▀@@ ░█░█@ ░░█░@ ░░▀░@@ ░▀▀█@ ░▄▀░@ ░▀▀▀@@ ░░█▀@ ░▀▄░@ ░░▀▀@@ ░░█░@ ░░█░@ ░░▀░@@ ░▀█░@ ░░▄▀@ ░▀▀░@@ ░▄▀▄▀@ ░░░░░@ ░░░░░@@ ░█▀█@ ░█▀█@ ░▀░▀@@ ░█▀█@ ░█░█@ ░▀▀▀@@ ░█░█@ ░█░█@ ░▀▀▀@@ ░█▀█@ ░█▀█@ ░▀░▀@@ ░█▀█@ ░█░█@ ░▀▀▀@@ ░█░█@ ░█░█@ ░▀▀▀@@ ░█▀▀░█▀▀@ ░▀▀█░▀▀█@ ░▀▀▀░▀▀▀@@ 0x00C0 À LATIN CAPITAL LETTER A WITH GRAVE ░█▀█@ ░█▀█@ ░▀░▀@@ 0x00C1 Á LATIN CAPITAL LETTER A WITH ACUTE ░█▀█@ ░█▀█@ ░▀░▀@@ 0x00C2  LATIN CAPITAL LETTER A WITH CIRCUMFLEX ░█▀█@ ░█▀█@ ░▀░▀@@ 0x00C3 à LATIN CAPITAL LETTER A WITH TILDE ░█▀█@ ░█▀█@ ░▀░▀@@ 0x00C5 Å LATIN CAPITAL LETTER A WITH RING ABOVE ░█▀█@ ░█▀█@ ░▀░▀@@ 0x00C6 Æ LATIN CAPITAL LETTER AE ░█▀█▀▀@ ░█▀█▀▀@ ░▀░▀▀▀@@ 0x00C7 Ç LATIN CAPITAL LETTER C WITH CEDILLA ░█▀▀@ ░█░░@ ░▀▀▀@@ 0x00C8 È LATIN CAPITAL LETTER E WITH GRAVE ░█▀▀@ ░█▀▀@ ░▀▀▀@@ 0x00C9 É LATIN CAPITAL LETTER E WITH ACUTE ░█▀▀@ ░█▀▀@ ░▀▀▀@@ 0x00CA Ê LATIN CAPITAL LETTER E WITH CIRCUMFLEX ░█▀▀@ ░█▀▀@ ░▀▀▀@@ 0x00CB Ë LATIN CAPITAL LETTER E WITH DIAERESIS ░█▀▀@ ░█▀▀@ ░▀▀▀@@ 0x00CC Ì LATIN CAPITAL LETTER I WITH GRAVE ░▀█▀@ ░░█░@ ░▀▀▀@@ 0x00CD Í LATIN CAPITAL LETTER I WITH ACUTE ░▀█▀@ ░░█░@ ░▀▀▀@@ 0x00CE Î LATIN CAPITAL LETTER I WITH CIRCUMFLEX ░▀█▀@ ░░█░@ ░▀▀▀@@ 0x00CF Ï LATIN CAPITAL LETTER I WITH DIAERESIS ░▀█▀@ ░░█░@ ░▀▀▀@@ 0x00D1 Ñ LATIN CAPITAL LETTER N WITH TILDE ░█▀█@ ░█░█@ ░▀░▀@@ 0x00D2 Ò LATIN CAPITAL LETTER O WITH GRAVE ░█▀█@ ░█░█@ ░▀▀▀@@ 0x00D3 Ó LATIN CAPITAL LETTER O WITH ACUTE ░█▀█@ ░█░█@ ░▀▀▀@@ 0x00D4 Ô LATIN CAPITAL LETTER O WITH CIRCUMFLEX ░█▀█@ ░█░█@ ░▀▀▀@@ 0x00D5 Õ LATIN CAPITAL LETTER O WITH TILDE ░█▀█@ ░█░█@ ░▀▀▀@@ 0x00D8 Ø LATIN CAPITAL LETTER O WITH STROKE ░█▀█@ ░█░█@ ░▀▀▀@@ 0x00D9 Ù LATIN CAPITAL LETTER U WITH GRAVE ░█░█@ ░█░█@ ░▀▀▀@@ 0x00DA Ú LATIN CAPITAL LETTER U WITH ACUTE ░█░█@ ░█░█@ ░▀▀▀@@ 0x00DB Û LATIN CAPITAL LETTER U WITH CIRCUMFLEX ░█░█@ ░█░█@ ░▀▀▀@@ 0x00DD Ý LATIN CAPITAL LETTER Y WITH ACUTE ░█░█@ ░░█░@ ░░▀░@@ 0x00E0 à LATIN SMALL LETTER A WITH GRAVE ░█▀█@ ░█▀█@ ░▀░▀@@ 0x00E1 á LATIN SMALL LETTER A WITH ACUTE ░█▀█@ ░█▀█@ ░▀░▀@@ 0x00E2 â LATIN SMALL LETTER A WITH CIRCUMFLEX ░█▀█@ ░█▀█@ ░▀░▀@@ 0x00E3 ã LATIN SMALL LETTER A WITH TILDE ░█▀█@ ░█▀█@ ░▀░▀@@ 0x00E5 å LATIN SMALL LETTER A WITH RING ABOVE ░█▀█@ ░█▀█@ ░▀░▀@@ 0x00E6 æ LATIN SMALL LETTER AE ░█▀█▀▀@ ░█▀█▀▀@ ░▀░▀▀▀@@ 0x00E7 ç LATIN SMALL LETTER C WITH CEDILLA ░█▀▀@ ░█░░@ ░▀▀▀@@ 0x00E8 è LATIN SMALL LETTER E WITH GRAVE ░█▀▀@ ░█▀▀@ ░▀▀▀@@ 0x00E9 é LATIN SMALL LETTER E WITH ACUTE ░█▀▀@ ░█▀▀@ ░▀▀▀@@ 0x00EA ê LATIN SMALL LETTER E WITH CIRCUMFLEX ░█▀▀@ ░█▀▀@ ░▀▀▀@@ 0x00EB ë LATIN SMALL LETTER E WITH DIAERESIS ░█▀▀@ ░█▀▀@ ░▀▀▀@@ 0x00EC ì LATIN SMALL LETTER I WITH GRAVE ░▀█▀@ ░░█░@ ░▀▀▀@@ 0x00ED í LATIN SMALL LETTER I WITH ACUTE ░▀█▀@ ░░█░@ ░▀▀▀@@ 0x00EE î LATIN SMALL LETTER I WITH CIRCUMFLEX ░▀█▀@ ░░█░@ ░▀▀▀@@ 0x00EF ï LATIN SMALL LETTER I WITH DIAERESIS ░▀█▀@ ░░█░@ ░▀▀▀@@ 0x00F1 ñ LATIN SMALL LETTER N WITH TILDE ░█▀█@ ░█░█@ ░▀░▀@@ 0x00F2 ò LATIN SMALL LETTER O WITH GRAVE ░█▀█@ ░█░█@ ░▀▀▀@@ 0x00F3 ó LATIN SMALL LETTER O WITH ACUTE ░█▀█@ ░█░█@ ░▀▀▀@@ 0x00F4 ô LATIN SMALL LETTER O WITH CIRCUMFLEX ░█▀█@ ░█░█@ ░▀▀▀@@ 0x00F5 õ LATIN SMALL LETTER O WITH TILDE ░█▀█@ ░█░█@ ░▀▀▀@@ 0x00F8 ø LATIN SMALL LETTER O WITH STROKE ░█▀█@ ░█░█@ ░▀▀▀@@ 0x00F9 ù LATIN SMALL LETTER U WITH GRAVE ░█░█@ ░█░█@ ░▀▀▀@@ 0x00FA ú LATIN SMALL LETTER U WITH ACUTE ░█░█@ ░█░█@ ░▀▀▀@@ 0x00FB û LATIN SMALL LETTER U WITH CIRCUMFLEX ░█░█@ ░█░█@ ░▀▀▀@@ 0x00FC ü LATIN SMALL LETTER U WITH DIAERESIS ░█░█@ ░█░█@ ░▀▀▀@@ 0x00FD ý LATIN SMALL LETTER Y WITH ACUTE ░█░█@ ░░█░@ ░░▀░@@ 0x00FF ÿ LATIN SMALL LETTER Y WITH DIAERESIS ░█░█@ ░░█░@ ░░▀░@@ 0x0153 œ LATIN SMALL LIGATURE OE ░█▀█▀▀@ ░█░█▀▀@ ░▀▀▀▀▀@@ toilet-0.3/fonts/smblock.tlf0000644000175000017500000004106411324663205013076 00000000000000tlf2a$ 4 3 8 0 16 0 64 0 =============================================================================== This is smblock.tlf, or “Small Block”, by Sam Hocevar. 2006/10/04 -- Sam Hocevar font creation, all base characters additional characters: latin1, katakana, blocks This font is free software. It comes without any warranty, to the extent permitted by applicable law. You can redistribute it and/or modify it under the terms of the Do What The Fuck You Want To Public License, Version 2, as published by Sam Hocevar. See http://sam.zoy.org/wtfpl/COPYING for more details. This font is part of TOIlet’s official distribution. More information on the TOIlet website at http://caca.zoy.org/wiki/toilet =============================================================================== $@ $@ $@ $@@ ▐ @ ▐ @ ▝ @ ▝ @@ ▜▝▌@ ▘▝$@ @ @@ $@ ▟▟▖@ ▟▟▖@ ▝▝$@@ ▗▙▖@ ▚▙ @ ▄▙▘@ ▘$@@ █ ▌@ ▞$@ ▞▗▖@ ▘▝▘@@ ▞▚ @ ▚ $@ ▌▚▘@ ▝▘▘@@ ▝▌@ ▝ @ @ @@ ▞ @ ▐$ @ ▝▖ @ ▝ @@ ▝▖ @ ▐ @ ▞ @ ▝ @@ ▖ @ ▚▙▘@ ▘▌▘@ @@ ▖ @ ▄▙▖@ ▌$@ @@ @ @ ▗▖@ ▗▘@@ @ ▄▄▖@ @ @@ @ $@ ▗▖@ ▝▘@@ ▌@ ▞$@ ▞$ @ ▘ @@ ▞▀▖@ ▌▞▌@ ▛ ▌@ ▝▀ @@ ▗▌$@ ▌$@ ▌$@ ▝▀$@@ ▞▀▖@ ▗▘@ ▗▘ @ ▀▀▘@@ ▞▀▖@ ▄▘@ ▖ ▌@ ▝▀ @@ ▌ ▌@ ▚▄▌@ ▌@ ▘@@ ▛▀▘@ ▙▄ @ ▖ ▌@ ▝▀ @@ ▞▀▖@ ▙▄ @ ▌ ▌@ ▝▀ @@ ▛▀▌@ ▐ @ ▌ @ ▘ @@ ▞▀▖@ ▚▄▘@ ▌ ▌@ ▝▀ @@ ▞▀▖@ ▚▄▌@ ▖ ▌@ ▝▀ @@ @ ▐▌@ ▗▖@ ▝▘@@ @ ▐▌@ ▗▖@ ▗▘@@ ▖@ ▃▀ @ ▀▖@ @@ @ ▀▀▘@ ▀▀▘@ @@ ▖ @ ▝▚▖@ ▞▘ @ @@ ▞▀▖@ ▗▘@ ▘ @ ▘ @@ ▞▀▖@ ▌▙▌@ ▌▀ @ ▝▀ @@ ▞▀▖@ ▙▄▌@ ▌ ▌@ ▘ ▘@@ ▛▀▖@ ▙▄▘@ ▌ ▌@ ▀▀ @@ ▞▀▖@ ▌ $@ ▌ ▖@ ▝▀ @@ ▛▀▖@ ▌ ▌@ ▌ ▌@ ▀▀ @@ ▛▀▘@ ▙▄ @ ▌ @ ▀▀▘@@ ▛▀▘@ ▙▄ @ ▌ @ ▘ @@ ▞▀▖@ ▌▄▖@ ▌ ▌@ ▝▀ @@ ▌ ▌@ ▙▄▌@ ▌ ▌@ ▘ ▘@@ ▜▘@ ▐ @ ▐ @ ▀▘@@ ▜▘@ ▐ @ ▌▐ @ ▝▘ @@ ▌ ▌@ ▙▞ @ ▌▝▖@ ▘ ▘@@ ▌ @ ▌ @ ▌ @ ▀▀▘@@ ▙▗▌@ ▌▘▌@ ▌ ▌@ ▘ ▘@@ ▙ ▌@ ▌▌▌@ ▌▝▌@ ▘ ▘@@ ▞▀▖@ ▌ ▌@ ▌ ▌@ ▝▀ @@ ▛▀▖@ ▙▄▘@ ▌ @ ▘ @@ ▞▀▖@ ▌ ▌@ ▌▚▘@ ▝▘▘@@ ▛▀▖@ ▙▄▘@ ▌▚ @ ▘ ▘@@ ▞▀▖@ ▚▄ @ ▖ ▌@ ▝▀ @@ ▀▛▘@ ▌ @ ▌ @ ▘ @@ ▌ ▌@ ▌ ▌@ ▌ ▌@ ▝▀ @@ ▌ ▌@ ▚▗▘@ ▝▞ @ ▘ @@ ▌ ▌@ ▌▖▌@ ▙▚▌@ ▘ ▘@@ ▌ ▌@ ▝▞ @ ▞▝▖@ ▘ ▘@@ ▌ ▌@ ▝▞ @ ▌ @ ▘ @@ ▀▀▌@ ▞ @ ▞ @ ▀▀▘@@ ▐▀▘@ ▐$ @ ▐$ @ ▝▀▘@@ ▌ @ ▝▖ @ ▝▖@ ▘@@ ▀▜ @ ▐ @ ▐ @ ▀▀ @@ ▗▚ @ ▘ ▘@ @ @@ @ @ @ ▀▀▀@@ ▚ @ ▘@ @ @@ @ ▝▀▖@ ▞▀▌@ ▝▀▘@@ ▌ @ ▛▀▖@ ▌ ▌@ ▀▀ @@ @ ▞▀▖@ ▌ ▖@ ▝▀ @@ ▌@ ▞▀▌@ ▌ ▌@ ▝▀▘@@ @ ▞▀▖@ ▛▀ @ ▝▀▘@@ ▗▀▖@ ▐ $@ ▜▀ @ ▐ @@ @ ▞▀▌@ ▚▄▌@ ▗▄▘@@ ▌ @ ▛▀▖@ ▌ ▌@ ▘ ▘@@ ▗ @ ▄ @ ▐ @ ▀▘@@ ▖@ ▗▖@ ▌@ ▄▘@@ ▌ @ ▌▗▘@ ▛▚ @ ▘ ▘@@ ▜ @ ▐ @ ▐ @ ▘@@ @ ▛▚▀▖@ ▌▐ ▌@ ▘▝ ▘@@ @ ▛▀▖@ ▌ ▌@ ▘ ▘@@ @ ▞▀▖@ ▌ ▌@ ▝▀ @@ @ ▛▀▖@ ▙▄▘@ ▌ @@ @ ▞▀▌@ ▚▄▌@ ▌@@ @ ▙▀▖@ ▌ $@ ▘ @@ @ ▞▀▘@ ▝▀▖@ ▀▀ @@ ▐ @ ▜▀ @ ▐ ▖@ ▀ @@ @ ▌ ▌@ ▌ ▌@ ▝▀▘@@ @ ▌ ▌@ ▐▐ @ ▘ @@ @ ▌ ▌@ ▐▐▐ @ ▘▘ @@ @ ▚▗▘@ ▗▚ @ ▘ ▘@@ @ ▌ ▌@ ▚▄▌@ ▗▄▘@@ @ ▀▜▘@ ▗▘ @ ▀▀▘@@ ▗▀ @ ▞$ @ ▐ @ ▀ @@ ▐ @ ▐ @ ▐ @ ▝ @@ ▝▚ @ ▝▖@ ▐ @ ▝▘ @@ @ ▗▖▖@ ▘▝ @ @@ ▚▄▘@ ▙▄▌@ ▌ ▌@ ▘ ▘@@ ▚▄▘@ ▌ ▌@ ▌ ▌@ ▝▀ @@ ▘ ▘@ ▌ ▌@ ▌ ▌@ ▝▀ @@ ▝▝ @ ▝▀▖@ ▞▀▌@ ▝▀▘@@ ▝▝ @ ▞▀▖@ ▌ ▌@ ▝▀ @@ ▝▝ @ ▌ ▌@ ▌ ▌@ ▝▀▘@@ ▄ @ ▞▗▘@ ▌ ▌@ ▌▀ @@ 0x00C0 À LATIN CAPITAL LETTER A WITH GRAVE ▝▖ @ ▞▀▖@ ▛▀▌@ ▘ ▘@@ 0x00C1 Á LATIN CAPITAL LETTER A WITH ACUTE ▞ @ ▞▀▖@ ▛▀▌@ ▘ ▘@@ 0x00C2  LATIN CAPITAL LETTER A WITH CIRCUMFLEX ▗▚ @ ▞▀▖@ ▛▀▌@ ▘ ▘@@ 0x00C3 à LATIN CAPITAL LETTER A WITH TILDE ▞▞ @ ▞▀▖@ ▛▀▌@ ▘ ▘@@ 0x00C5 Å LATIN CAPITAL LETTER A WITH RING ABOVE ▐▜ @ ▞▀▖@ ▛▀▌@ ▘ ▘@@ 0x00C6 Æ LATIN CAPITAL LETTER AE ▞▀▛▀▘@ ▙▄▙▄ @ ▌ ▌ @ ▘ ▀▀▘@@ 0x00C7 Ç LATIN CAPITAL LETTER C WITH CEDILLA ▞▀▖@ ▌ @ ▌ ▖@ ▝▛ @@ 0x00C8 È LATIN CAPITAL LETTER E WITH GRAVE ▝▖ @ ▛▀▘@ ▛▀ @ ▀▀▘@@ 0x00C9 É LATIN CAPITAL LETTER E WITH ACUTE ▞ @ ▛▀▘@ ▛▀ @ ▀▀▘@@ 0x00CA Ê LATIN CAPITAL LETTER E WITH CIRCUMFLEX ▗▚ @ ▛▀▘@ ▛▀ @ ▀▀▘@@ 0x00CB Ë LATIN CAPITAL LETTER E WITH DIAERESIS ▘ ▘@ ▛▀▘@ ▛▀ @ ▀▀▘@@ 0x00CC Ì LATIN CAPITAL LETTER I WITH GRAVE ▚ @ ▜▘@ ▐ @ ▀▘@@ 0x00CD Í LATIN CAPITAL LETTER I WITH ACUTE ▗▘@ ▜▘@ ▐ @ ▀▘@@ 0x00CE Î LATIN CAPITAL LETTER I WITH CIRCUMFLEX ▞▖@ ▜▘@ ▐ @ ▀▘@@ 0x00CF Ï LATIN CAPITAL LETTER I WITH DIAERESIS ▘▘@ ▜▘@ ▐ @ ▀▘@@ 0x00D1 Ñ LATIN CAPITAL LETTER N WITH TILDE ▗▚▘@ ▙ ▌@ ▌▚▌@ ▘ ▘@@ 0x00D2 Ò LATIN CAPITAL LETTER O WITH GRAVE ▝▖ @ ▞▀▖@ ▌ ▌@ ▝▀ @@ 0x00D3 Ó LATIN CAPITAL LETTER O WITH ACUTE ▞ @ ▞▀▖@ ▌ ▌@ ▝▀ @@ 0x00D4 Ô LATIN CAPITAL LETTER O WITH CIRCUMFLEX ▗▚ @ ▞▀▖@ ▌ ▌@ ▝▀ @@ 0x00D5 Õ LATIN CAPITAL LETTER O WITH TILDE ▞▚▘@ ▞▀▖@ ▌ ▌@ ▝▀ @@ 0x00D8 Ø LATIN CAPITAL LETTER O WITH STROKE ▞▚▘@ ▌▞▌@ ▜ ▌@ ▘▀ @@ 0x00D9 Ù LATIN CAPITAL LETTER U WITH GRAVE ▝▖ @ ▌ ▌@ ▌ ▌@ ▝▀ @@ 0x00DA Ú LATIN CAPITAL LETTER U WITH ACUTE ▞ @ ▌ ▌@ ▌ ▌@ ▝▀ @@ 0x00DB Û LATIN CAPITAL LETTER U WITH CIRCUMFLEX ▗▚ @ ▖ ▖@ ▌ ▌@ ▝▀ @@ 0x00DD Ý LATIN CAPITAL LETTER Y WITH ACUTE ▞ @ ▚▗▘@ ▌ @ ▘ @@ 0x00E0 à LATIN SMALL LETTER A WITH GRAVE ▝▖ @ ▝▀▖@ ▞▀▌@ ▝▀▘@@ 0x00E1 á LATIN SMALL LETTER A WITH ACUTE ▞ @ ▝▀▖@ ▞▀▌@ ▝▀▘@@ 0x00E2 â LATIN SMALL LETTER A WITH CIRCUMFLEX ▗▚ @ ▝▀▖@ ▞▀▌@ ▝▀▘@@ 0x00E3 ã LATIN SMALL LETTER A WITH TILDE ▗▚▘@ ▝▀▖@ ▞▀▌@ ▝▀▘@@ 0x00E5 å LATIN SMALL LETTER A WITH RING ABOVE ▐▜ @ ▝▀▖@ ▞▀▌@ ▝▀▘@@ 0x00E6 æ LATIN SMALL LETTER AE @ ▝▀▞▀▖@ ▞▀▛▀ @ ▝▀▝▀▘@@ 0x00E7 ç LATIN SMALL LETTER C WITH CEDILLA @ ▞▀▖@ ▌ ▖@ ▝▛ @@ 0x00E8 è LATIN SMALL LETTER E WITH GRAVE ▝▖ @ ▞▀▖@ ▛▀ @ ▝▀▘@@ 0x00E9 é LATIN SMALL LETTER E WITH ACUTE ▞ @ ▞▀▖@ ▛▀ @ ▝▀▘@@ 0x00EA ê LATIN SMALL LETTER E WITH CIRCUMFLEX ▗▚ @ ▞▀▖@ ▛▀ @ ▝▀▘@@ 0x00EB ë LATIN SMALL LETTER E WITH DIAERESIS ▝▝ @ ▞▀▖@ ▛▀ @ ▝▀▘@@ 0x00EC ì LATIN SMALL LETTER I WITH GRAVE ▚ @ ▄ @ ▐ @ ▀▘@@ 0x00ED í LATIN SMALL LETTER I WITH ACUTE ▚ @ ▄ @ ▐ @ ▀▘@@ 0x00EE î LATIN SMALL LETTER I WITH CIRCUMFLEX ▞▖@ ▄ @ ▐ @ ▀▘@@ 0x00EF ï LATIN SMALL LETTER I WITH DIAERESIS ▖▖@ ▄ @ ▐ @ ▀▘@@ 0x00F1 ñ LATIN SMALL LETTER N WITH TILDE ▞▞ @ ▛▀▖@ ▌ ▌@ ▘ ▘@@ 0x00F2 ò LATIN SMALL LETTER O WITH GRAVE ▝▖ @ ▞▀▖@ ▌ ▌@ ▝▀ @@ 0x00F3 ó LATIN SMALL LETTER O WITH ACUTE ▞ @ ▞▀▖@ ▌ ▌@ ▝▀ @@ 0x00F4 ô LATIN SMALL LETTER O WITH CIRCUMFLEX ▗▚ @ ▞▀▖@ ▌ ▌@ ▝▀ @@ 0x00F5 õ LATIN SMALL LETTER O WITH TILDE ▞▚▘@ ▞▀▖@ ▌ ▌@ ▝▀ @@ 0x00F8 ø LATIN SMALL LETTER O WITH STROKE @ ▞▚▘@ ▚▘▌@ ▘▀ @@ 0x00F9 ù LATIN SMALL LETTER U WITH GRAVE ▝▖ @ ▌ ▌@ ▌ ▌@ ▝▀▘@@ 0x00FA ú LATIN SMALL LETTER U WITH ACUTE ▞ @ ▌ ▌@ ▌ ▌@ ▝▀▘@@ 0x00FB û LATIN SMALL LETTER U WITH CIRCUMFLEX ▗▚ @ ▖ ▖@ ▌ ▌@ ▝▀▘@@ 0x00FC ü LATIN SMALL LETTER U WITH DIAERESIS ▝▝ @ ▌ ▌@ ▌ ▌@ ▝▀▘@@ 0x00FD ý LATIN SMALL LETTER Y WITH ACUTE ▞ @ ▌ ▌@ ▚▄▌@ ▗▄▘@@ 0x00FF ÿ LATIN SMALL LETTER Y WITH DIAERESIS ▝▝ @ ▌ ▌@ ▚▄▌@ ▗▄▘@@ 0x0153 œ LATIN SMALL LIGATURE OE @ ▞▀▞▀▖@ ▌ ▛▀ @ ▝▀▝▀▘@@ 0x2580 ▀ UPPER HALF BLOCK ███@ ███@ $@ $@@ 0x2584 ▄ LOWER HALF BLOCK $@ $@ ███@ ███@ 0x2588 █ FULL BLOCK ███@ ███@ ███@ ███@@ 0x258C ▌ LEFT HALF BLOCK █▌$@ █▌$@ █▌$@ █▌$@@ 0x2590 ▐ RIGHT HALF BLOCK ▐█@ ▐█@ ▐█@ ▐█@@ 0x2596 ▖ QUADRANT LOWER LEFT $@ $@ █▌$@ █▌$@@ 0x2597 ▗ QUADRANT LOWER RIGHT $@ $@ ▐█@ ▐█@@ 0x2598 ▘ QUADRANT UPPER LEFT █▌$@ █▌$@ $@ $@@ 0x2599 ▙ QUADRANT UPPER LEFT AND LOWER LEFT AND LOWER RIGHT █▌$@ █▌$@ ███@ ███@@ 0x259A ▚ QUADRANT UPPER LEFT AND LOWER RIGHT █▌$@ █▌$@ ▐█@ ▐█@@ 0x259B ▛ QUADRANT UPPER LEFT AND UPPER RIGHT AND LOWER LEFT ███@ ███@ █▌$@ █▌$@@ 0x259C ▜ QUADRANT UPPER LEFT AND UPPER RIGHT AND LOWER RIGHT ███@ ███@ ▐█@ ▐█@@ 0x259D ▝ QUADRANT UPPER RIGHT ▐█@ ▐█@ $@ $@@ 0x259E ▞ QUADRANT UPPER RIGHT AND LOWER LEFT ▐█@ ▐█@ █▌$@ █▌$@@ 0x259F ▟ QUADRANT UPPER RIGHT AND LOWER LEFT AND LOWER RIGHT ▐█@ ▐█@ ███@ ███@@ 0x25A0 ■ BLACK SQUARE $@ ███@ ███@ $@@ 0x30A1 ァ KATAKANA LETTER SMALL A @ ▄▄▖ @ ▐▞$ @ ▘ @@ 0x30A2 ア KATAKANA LETTER A ▗▄▄▄▖@ ▙▞ @ ▗▘$ @ ▘ @@ 0x30A3 ィ KATAKANA LETTER SMALL I @ ▄▘ @ ▗▞▌ @ ▌ @@ 0x30A4 イ KATAKANA LETTER I ▗▘@ ▗▟▘ @ ▀▘▐ @ ▐ @@ 0x30A5 ゥ KATAKANA LETTER SMALL U @ ▄▙▖ @ ▌ ▌ @ ▗▞ @@ 0x30A6 ウ KATAKANA LETTER U ▌ @ ▛▀▀▀▌@ ▘ ▞ @ ▄▀ @@ 0x30A7 ェ KATAKANA LETTER SMALL E @ ▄▄▖ @ ▌ @ ▝▀▀▀ @@ 0x30A8 エ KATAKANA LETTER E @ ▝▀▛▀ @ ▌ @ ▀▀▀▀▘@@ 0x30A9 ォ KATAKANA LETTER SMALL O @ ▄▟▄ @ ▗▜ @ ▘▟ @@ 0x30AA オ KATAKANA LETTER O ▐ @ ▀▀█▀▘@ ▞▐ @ ▀ ▟ @@ 0x30AB カ KATAKANA LETTER KA ▐ @ ▀▜▀▜ @ ▌ ▐ @ ▝ ▀▘ @@ 0x30AC ガ KATAKANA LETTER GA ▐ ▝▝@ ▀▜▀▜ @ ▌ ▐ @ ▝ ▀▘ @@ 0x30AD キ KATAKANA LETTER KI ▚▄▘ @ ▀▀▖▄▖@ ▄▀▛ @ ▐ @@ 0x30AE ギ KATAKANA LETTER GI ▚▄▘▞@ ▀▀▖▄▖@ ▄▀▛ @ ▐ @@ 0x30AF ク KATAKANA LETTER KU ▙▄▄ @ ▞ ▐ @ ▄▘ @ ▀ @@ 0x30B0 グ KATAKANA LETTER GU ▙▄▟▝@ ▞ ▐ @ ▄▘ @ ▀ @@ 0x30B1 ケ KATAKANA LETTER KE ▌ @ ▞▀▀▛▘@ ▄▘ @ ▀ @@ 0x30B2 ゲ KATAKANA LETTER GE ▌ ▝▝@ ▞▀▀▛▘@ ▄▘ @ ▀ @@ 0x30B3 コ KATAKANA LETTER KO @ ▀▀▀▜ @ ▐ @ ▀▀▀▀ @@ 0x30B4 ゴ KATAKANA LETTER GO ▝▝@ ▀▀▀▜ @ ▐ @ ▀▀▀▀ @@ 0x30B5 サ KATAKANA LETTER SA ▌ ▌ @ ▀▛▀▛▘@ ▘▗▘ @ ▝▘ @@ 0x30B6 ザ KATAKANA LETTER ZA ▌ ▌▞@ ▀▛▀▛▘@ ▘▗▘ @ ▝▘ @@ 0x30B7 シ KATAKANA LETTER SI ▝▄ @ ▝▄ ▖@ ▄▞ @ ▀▀ @@ 0x30B8 ジ KATAKANA LETTER ZI ▝▄▝▝@ ▝▄ ▖@ ▄▞ @ ▀▀ @@ 0x30B9 ス KATAKANA LETTER SU ▄▄▄▄ @ ▞ @ ▗▞▚ @ ▀▘ ▘@@ 0x30BA ズ KATAKANA LETTER ZU ▄▄▄▟▝@ ▞ @ ▗▞▚ @ ▀▘ ▘@@ 0x30BB セ KATAKANA LETTER SE ▐ @ ▀▜▀▜▘@ ▐ ▘ @ ▝▄▄▖@@ 0x30BC ゼ KATAKANA LETTER ZE ▐ ▝▝@ ▀▜▀▜▘@ ▐ ▘ @ ▝▄▄▖@@ 0x30BD ソ KATAKANA LETTER SO ▖ ▗ @ ▝ ▞ @ ▗▞ @ ▀▘ @@ 0x30BE ゾ KATAKANA LETTER ZO ▖ ▐▝@ ▝ ▞ @ ▗▞ @ ▀▘ @@ 0x30BF タ KATAKANA LETTER TA ▖ @ ▟▀▀▌@ ▀ ▚▞ @ ▗▄▀ @@ 0x30C0 ダ KATAKANA LETTER DA ▖▝▝@ ▟▀▀▌@ ▀ ▚▞ @ ▗▄▀ @@ 0x30C1 チ KATAKANA LETTER TI ▄▟▘ @ ▄▄▟▄▖@ ▐ @ ▄▘ @@ 0x30C2 ヂ KATAKANA LETTER DI ▄▟▚▝@ ▄▄▟▄▖@ ▐ @ ▄▘ @@ 0x30C3 ッ KATAKANA LETTER SMALL TU @ ▖▖ @ ▘▗▘ @ ▄▘ @@ 0x30C4 ツ KATAKANA LETTER TU ▖ ▖@ ▝▖▝▗▘@ ▄▘ @ ▝▀ @@ 0x30C5 ヅ KATAKANA LETTER DU ▖▝▞@ ▝▖▝▗▘@ ▄▘ @ ▝▀ @@ 0x30C6 テ KATAKANA LETTER TE ▄▄▖ @ ▄▄▄▄▖@ ▐ @ ▄▘ @@ 0x30C7 デ KATAKANA LETTER DE ▄▄▞▝@ ▄▄▄▄▖@ ▐ @ ▄▘ @@ 0x30C8 ト KATAKANA LETTER TO ▐ @ ▐▄ @ ▐ ▀ @ ▐ @@ 0x30C9 ド KATAKANA LETTER DO ▐ ▝▝@ ▐▄ @ ▐ ▀ @ ▐ @@ 0x30CA ナ KATAKANA LETTER NA ▌ @ ▀▀▛▀▘@ ▗▘ @ ▝▘ @@ 0x30CB ニ KATAKANA LETTER NI @ ▀▀▘ @ @ ▀▀▀▀▘@@ 0x30CC ヌKATAKANA LETTER NU ▄▄▄▄ @ ▗▖▞ @ ▗▞▚ @ ▀▘ @@ 0x30CD ネ KATAKANA LETTER NE ▗▄▙▖ @ ▗▘ @ ▄▞▌▀▖@ ▌ @@ 0x30CE ノ KATAKANA LETTER NO ▖@ ▗▘@ ▗▞▘ @ ▀▘ @@ 0x30CF ハ KATAKANA LETTER HA @ ▗ ▚ @ ▗▘ ▝▖@ ▘ ▘@@ 0x30D0 バ KATAKANA LETTER BA ▗▗@ ▗ ▚ @ ▗▘ ▝▖@ ▘ ▘@@ 0x30D1 パ KATAKANA LETTER PA ▗▚@ ▗ ▚▘@ ▗▘ ▝▖@ ▘ ▘@@ 0x30D2 ヒ KATAKANA LETTER HI ▗ @ ▐▄▞▘ @ ▐ @ ▀▀▀▘@@ 0x30D3 ビ KATAKANA LETTER BI ▗ ▝▝@ ▐▄▞▘ @ ▐ @ ▀▀▀▘@@ 0x30D4 ピ KATAKANA LETTER PI ▗ ▗▚@ ▐▄▞▘▘@ ▐ @ ▀▀▀▘@@ 0x30D5 フ KATAKANA LETTER HU ▄▄▄▄ @ ▞ @ ▗▞ @ ▀▘ @@ 0x30D6 ブ KATAKANA LETTER BU ▄▄▄▟▝@ ▞ @ ▗▞ @ ▀▘ @@ 0x30D7 プ KATAKANA LETTER PU ▄▄▄▄▚@ ▞▘@ ▗▞ @ ▀▘ @@ 0x30D8 ヘ KATAKANA LETTER HE ▖ @ ▄▀▝▚▖ @ ▝▘@ @@ 0x30D9 ベ KATAKANA LETTER BE ▖ ▖▖@ ▄▀▝▚▖ @ ▝▘@ @@ 0x30DA ペ KATAKANA LETTER PE ▖ ▞▖@ ▄▀▝▚▞ @ ▝▘@ @@ 0x30DB ホ KATAKANA LETTER HO ▐ @ ▀▀▜▀▀ @ ▞▐▝▖ @ ▝ ▟ ▝ @@ 0x30DC ボ KATAKANA LETTER BO ▐ ▘▘@ ▀▀▜▀▀ @ ▞▐▝▖ @ ▝ ▟ ▝ @@ 0x30DD ポ KATAKANA LETTER PO ▐ ▗▚@ ▀▀▜▀▘▘@ ▞▐▝▖ @ ▝ ▟ ▝ @@ 0x30DE マ KATAKANA LETTER MA ▄▄▄▄▖@ ▄ ▄▘@ ▀▖ @ ▝ @@ 0x30DF ミ KATAKANA LETTER MI ▝▚▖ @ ▀▄▖ @ ▀▄▖ @ ▝▀ @@ 0x30E0 ム KATAKANA LETTER MU ▐ @ ▌▗ @ ▐ ▗▙ @ ▀▀▘ ▘@@ 0x30E1 メ KATAKANA LETTER ME ▖@ ▝▖▗▘@ ▗▞▚ @ ▀▘ @@ 0x30E2 モ KATAKANA LETTER MO ▗▄▄▖ @ ▄▟▄▄ @ ▐ @ ▀▘ @@ 0x30E3 ャ KATAKANA LETTER SMALL YA @ ▐▄▖ @ ▝▜▝ @ ▝ @@ 0x30E4 ヤ KATAKANA LETTER YA ▐ ▄▖@ ▄▞▛▗▘@ ▚ @ ▝ @@ 0x30E5 ュ KATAKANA LETTER SMALL YU @ ▗▄▖ @ ▌ @ ▝▀▀ @@ 0x30E6 ユ KATAKANA LETTER YU @ ▀▀▜ @ ▌ @ ▝▀▀▀▘@@ 0x30E7 ョ KATAKANA LETTER SMALL YO @ ▗▄▖ @ ▄▌ @ ▗▄▌ @@ 0x30E8 ヨ KATAKANA LETTER YO ▗▄▄▄ @ ▌@ ▝▀▀▌@ ▗▄▄▄▌@@ 0x30E9 ラ KATAKANA LETTER RA ▝▀▀▘ @ ▀▀▀▀▌@ ▞ @ ▗▄▀ @@ 0x30EA リ KATAKANA LETTER RI ▌ ▐ @ ▌ ▐ @ ▗▞ @ ▝▘ @@ 0x30EB ル KATAKANA LETTER RU ▗ @ ▌▐ ▖@ ▗▘▐▗▘@ ▘ ▝▘ @@ 0x30EC レ KATAKANA LETTER RE ▗ @ ▐ ▖@ ▐ ▄▀ @ ▝▀ @@ 0x30ED ロ KATAKANA LETTER RO ▄▄▄▄▖@ ▌ ▌@ ▌ ▌@ ▀▀▀▀▘@@ 0x30EE ヮ KATAKANA LETTER SMALL WA @ ▄▄▖ @ ▘ ▌ @ ▗▞ @@ 0x30EF ワ KATAKANA LETTER WA ▄▄▄▄▖@ ▌ ▌@ ▐ @ ▗▞▘ @@ 0x30F0 ヰ KATAKANA LETTER WI ▐ @ ▝▛▜▀ @ ▄▙▟▄▖@ ▐ @@ 0x30F1 ヱ KATAKANA LETTER WE ▗▄▄▄ @ ▙▞ @ ▌ @ ▀▀▀▀▘@@ 0x30F2 ヲ KATAKANA LETTER WO ▄▄▄▄▖@ ▄▄▄▌@ ▐ @ ▗▞▘ @@ 0x30F3 ン KATAKANA LETTER N ▄ @ ▘ ▌@ ▄▀ @ ▀▀ @@ 0x30F4 ヴ KATAKANA LETTER VU ▌▝▝@ ▛▀▀▀▌@ ▘ ▞ @ ▄▀ @@ 0x30F5 ヵ KATAKANA LETTER SMALL KA @ ▄▙▖ @ ▗▘▌ @ ▘▝▘ @@ 0x30F6 ヶ KATAKANA LETTER SMALL KE @ ▐▄▄ @ ▘▐ @ ▗▘ @@ toilet-0.3/fonts/future.tlf0000644000175000017500000001377011324661024012756 00000000000000tlf2a 3 3 8 -1 22 0 0 0 =============================================================================== This is future.tlf, or “Future”, by Sam Hocevar. 2006/10/01 -- Sam Hocevar font creation still missing: # % ( ) * / < > \ ^ ~ 2006/10/02 -- Sam Hocevar added Unicode block and line glyphs added: % ( ) * / \ ~ fixed: & 2 5 X This font is free software. It comes without any warranty, to the extent permitted by applicable law. You can redistribute it and/or modify it under the terms of the Do What The Fuck You Want To Public License, Version 2, as published by Sam Hocevar. See http://sam.zoy.org/wtfpl/COPYING for more details. Missing characters: # < > ^ This font is part of TOIlet’s official distribution. More information on the TOIlet website at http://caca.zoy.org/wiki/toilet =============================================================================== @ @ @@ ╻! ╹! ╹!! ╻╻" " "" @ @ #@@ ┏┳┓$ ┗╋┓$ ┗┻┛$$ ┏┓╻% ┏━┛% ╹┗┛%% ┏┓ & ┃╺╋╸& ┗━┛ && ╻' ' '' ┏╸( ┃ ( ┗╸(( ╺┓) ┃) ╺┛)) ╻ ╻* ╺╋╸* ╹ ╹** ╻ + ╺╋╸+ ╹ ++ , , ┛,, - ╺━╸- -- . . ╹.. ╻/ ┏┛/ ╹ // ┏━┓0 ┃┃┃0 ┗━┛00 ╺┓ 1 ┃ 1 ╺┻╸11 ┏━┓2 ┏━┛2 ┗━╸22 ┏━┓3 ╺━┫3 ┗━┛33 ╻ ╻4 ┗━┫4 ╹44 ┏━╸5 ┗━┓5 ┗━┛55 ┏━┓6 ┣━┓6 ┗━┛66 ┏━┓7 ┃7 ╹77 ┏━┓8 ┣━┫8 ┗━┛88 ┏━┓9 ┗━┫9 ┗━┛99 : ╹: ╹:: ; ╹; ┛;; @ @ <@@ = ╺━╸= ╺━╸== @ @ >@@ ┏━┓? ╺┛? ╹ ?? ┏━┓@ ┃┣┛@ ┗━╸@@ ┏━┓A ┣━┫A ╹ ╹AA ┏┓ B ┣┻┓B ┗━┛BB ┏━╸C ┃ C ┗━╸CC ╺┳┓D ┃┃D ╺┻┛DD ┏━╸E ┣╸ E ┗━╸EE ┏━╸F ┣╸ F ╹ FF ┏━╸G ┃╺┓G ┗━┛GG ╻ ╻H ┣━┫H ╹ ╹HH ╻I ┃I ╹II ┏┓J ┃J ┗━┛JJ ╻┏ K ┣┻┓K ╹ ╹KK ╻ L ┃ L ┗━╸LL ┏┳┓M ┃┃┃M ╹ ╹MM ┏┓╻N ┃┗┫N ╹ ╹NN ┏━┓O ┃ ┃O ┗━┛OO ┏━┓P ┣━┛P ╹ PP ┏━┓Q ┃┓┃Q ┗┻┛QQ ┏━┓R ┣┳┛R ╹┗╸RR ┏━┓S ┗━┓S ┗━┛SS ╺┳╸T ┃ T ╹ TT ╻ ╻U ┃ ┃U ┗━┛UU ╻ ╻V ┃┏┛V ┗┛ VV ╻ ╻W ┃╻┃W ┗┻┛WW ╻ ╻X ┏╋┛X ╹ ╹XX ╻ ╻Y ┗┳┛Y ╹ YY ╺━┓Z ┏━┛Z ┗━╸ZZ ┏━ [ ┃ [ ┗━ [[ ╻ \ ┗┓\ ╹\\ ━┓] ┃] ━┛]] @ @ ^@@ _ _ ╺━╸__ ┓` ` `` ┏━┓a ┣━┫a ╹ ╹aa ┏┓ b ┣┻┓b ┗━┛bb ┏━╸c ┃ c ┗━╸cc ╺┳┓d ┃┃d ╺┻┛dd ┏━╸e ┣╸ e ┗━╸ee ┏━╸f ┣╸ f ╹ ff ┏━╸g ┃╺┓g ┗━┛gg ╻ ╻h ┣━┫h ╹ ╹hh ╻i ┃i ╹ii ┏┓j ┃j ┗━┛jj ╻┏ k ┣┻┓k ╹ ╹kk ╻ l ┃ l ┗━╸ll ┏┳┓m ┃┃┃m ╹ ╹mm ┏┓╻n ┃┗┫n ╹ ╹nn ┏━┓o ┃ ┃o ┗━┛oo ┏━┓p ┣━┛p ╹ pp ┏━┓q ┃┓┃q ┗┻┛qq ┏━┓r ┣┳┛r ╹┗╸rr ┏━┓s ┗━┓s ┗━┛ss ╺┳╸t ┃ t ╹ tt ╻ ╻u ┃ ┃u ┗━┛uu ╻ ╻v ┃┏┛v ┗┛ vv ╻ ╻w ┃╻┃w ┗┻┛ww ╻ ╻x ┏╋┛x ╹ ╹xx ╻ ╻y ┗┳┛y ╹ yy ╺━┓z ┏━┛z ┗━╸zz ┏╸{ ╺┫ { ┗╸{{ ╻| ┃| ╹|| ╺┓ } ┣╸} ╺┛ }} ~ ┏━┛~ ~~ ┏━┓┏━╸Ä ┣━┫┣╸ Ä ╹ ╹┗━╸ÄÄ ┏━┓┏━╸Ö ┃ ┃┣╸ Ö ┗━┛┗━╸ÖÖ ╻ ╻┏━╸Ü ┃ ┃┣╸ Ü ┗━┛┗━╸ÜÜ ┏━┓┏━╸ä ┣━┫┣╸ ä ╹ ╹┗━╸ää ┏━┓┏━╸ö ┃ ┃┣╸ ö ┗━┛┗━╸öö ╻ ╻┏━╸ü ┃ ┃┣╸ ü ┗━┛┗━╸üü ┏━┓┏━┓ß ┗━┓┗━┓ß ┗━┛┗━┛ßß 0x2500 ─ BOX DRAWINGS LIGHT HORIZONTAL @ ━━━@ @@ 0x2501 ━ BOX DRAWINGS HEAVY HORIZONTAL @ ■■■@ @@ 0x2502 │ BOX DRAWINGS LIGHT VERTICAL ┃ @ ┃ @ ┃@@ 0x2503 ┃ BOX DRAWINGS HEAVY VERTICAL █ @ █ @ █@@ 0x250C ┌ BOX DRAWINGS LIGHT DOWN AND RIGHT @ ┏━@ ┃ @@ 0x250F ┏ BOX DRAWINGS HEAVY DOWN AND RIGHT @ ▄■@ █ @@ 0x2510 ┐ BOX DRAWINGS LIGHT DOWN AND LEFT @ ━┓ @ ┃@@ 0x2513 ┓ BOX DRAWINGS HEAVY DOWN AND LEFT @ ■▄ @ █@@ 0x2514 └ BOX DRAWINGS LIGHT UP AND RIGHT ┃ @ ┗━@ @@ 0x2517 ┗ BOX DRAWINGS HEAVY UP AND RIGHT █ @ ▀■@ @@ 0x2518 ┘ BOX DRAWINGS LIGHT UP AND LEFT ┃ @ ━┛ @ @@ 0x251B ┛ BOX DRAWINGS HEAVY UP AND LEFT █ @ ■▀ @ @@ 0x251c ├ BOX DRAWINGS LIGHT VERTICAL AND RIGHT ┃ @ ┣━@ ┃ @@ 0x2523 ┣ BOX DRAWINGS HEAVY VERTICAL AND RIGHT █ @ █■@ █ @@ 0x2524 ┤ BOX DRAWINGS LIGHT VERTICAL AND LEFT ┃ @ ━┫ @ ┃@@ 0x252B ┫ BOX DRAWINGS HEAVY VERTICAL AND LEFT █ @ ■█ @ █@@ 0x252c ┬ BOX DRAWINGS LIGHT DOWN AND HORIZONTAL @ ━┳━@ ┃ @@ 0x2533 ┳ BOX DRAWINGS HEAVY DOWN AND HORIZONTAL @ ■▄■@ █ @@ 0x2534 ┴ BOX DRAWINGS LIGHT UP AND HORIZONTAL ┃ @ ━┻━@ @@ 0x253B ┻ BOX DRAWINGS HEAVY UP AND HORIZONTAL █ @ ■▀■@ @@ 0x253c ┼ BOX DRAWINGS LIGHT VERTICAL AND HORIZONTAL ┃ @ ━╋━@ ┃ @@ 0x254B ╋ BOX DRAWINGS HEAVY VERTICAL AND HORIZONTAL █ @ ■█■@ █ @@ 0x2578 ╸ BOX DRAWINGS HEAVY LEFT @ ■■ @ @@ 0x2579 ╹ BOX DRAWINGS HEAVY UP █ @ ▀ @ @@ 0x257A ╺ BOX DRAWINGS HEAVY RIGHT @ ■■@ @@ 0x257B ╻ BOX DRAWINGS HEAVY DOWN @ ▄ @ █@@ 0x2580 ▀ UPPER HALF BLOCK ███@ ▀▀▀@ @@ 0x2584 ▄ LOWER HALF BLOCK @ ▄▄▄@ ███@ 0x2588 █ FULL BLOCK ███@ ███@ ███@@ 0x25A0 ■ BLACK SQUARE ▄▄▄@ ███@ ▀▀▀@@ 0x5350 卐 CJK UNIFIED IDEOGRAPH-5350 ╻┏╸@ ┗╋┓@ ╺┛╹@@ 0x534D 卍 CJK UNIFIED IDEOGRAPH-534D ╺┓╻@ ┏╋┛@ ╹┗╸@@ toilet-0.3/fonts/Makefile.am0000644000175000017500000000067611326541236012776 00000000000000 allfonts = wideterm.tlf circle.tlf emboss.tlf emboss2.tlf future.tlf \ ascii9.tlf smascii9.tlf bigascii9.tlf \ ascii12.tlf smascii12.tlf bigascii12.tlf \ mono9.tlf smmono9.tlf bigmono9.tlf \ mono12.tlf smmono12.tlf bigmono12.tlf \ pagga.tlf letter.tlf smblock.tlf smbraille.tlf EXTRA_DIST = $(allfonts) font_DATA = $(allfonts) fontdir = $(datadir)/figlet echo-fonts: ; echo $(allfonts) toilet-0.3/fonts/bigascii12.tlf0000644000175000017500000024625411327706453013377 00000000000000PK- ;UG(- Kٮmu% +:.A ^[q#nEf۲-r%˥d Wuv hz$;9Q͹e:18Nl~D9}:=_.??(~Џ???w_l:_ȿͿo/._iY#͟v}B< '@)9,v;ζ6J`͠Z ~ر'Z }I_I=BIMb'`kߛ,FBR,UbMG< mcjP?VΒܫ1>(|"nn~bgm }cUa4|IjJ iҏIfʻM%*o`{숌,6&Z˨`!DՓ4ȎbzKF`ЦS 0@M5Y^6n[]@fXbCهN}Impy$d_k:[D|?k1$ CC57@<ٽ|V}+?`oX<v%aLk/%W쐙\Y # &!F`btZM*`WOFuU5ŤW,v||;6똲bIh|0`aKqF˱أK.xAV,v0+*ڕ:X|]GEvV/&̛"t|j{+xʨ.2u{*uk{_;v)ފj4˓AaIob%VBNZ]u.)^7Ŗ@d%-vm#pY)e'M ,D(mA,PlC)-kF\C-?EPW(z2EC!X F(}|"B1 [0r5\s9 2U$ ?*^cew4 Lo5Rk$-~Ta[؝P5>%zU>b۶3 m p c 'X M bE*zq rZc Pwp6_a`+߆Y ŔE:Hk{`7ֶ:fe`MXF©u*v+ `(\{4 `̄X%zZU:UD-.OmWjwƃrFbmOocmC7{0i@]Aq.KH\6 ysQN޶7\5Caw +6v _%]Z@8A?L-ufyao]wNƁ& Dc>E#XLad.V&2? ՄNPJA(!O6!<ȣwSOy.pFOU3>&Ĥp}/`U3O-V9}H@$=swOG|~w"' !ݯ|`.韭7:jԠLm on\sK'xCObq'r U5AH@'F^ >ؽܣYu8٨oX׫` N`5y8`e-G̻lPL!=DV_oCV o6X &'_{9-NߎHV[0VU[pFOnq!Q pNO~\/OfY.\񵌂 8PxM$ :L%=u/Db‰So{ N$jgXwlR}`=ƅ=16@4%W@cNk, piZ@ZZ۷[zcPe]%hI+L{# \w(lWO'`c5e.u,p@2ڭmv~><?3Mʲ2ÇG1}'[%s \M='0ܘM pvʿAI3l\6'|fMFN!r4`枸: zx ImnS&nP)@'@G 3C$C$sےpEzP\ GL">!pCj bx\7|?W̞ ڡB":A(oT/v2IXX0QYeM'J@3F}/Dr=tW{H}$>!LAX .:.4; _I(LCweRDnЗh+|e/O@3xvxFD@3pvXJ& 8;\9bO4sʅB)'Gg{ `&f$C)lv/R?z%mSh*dhZ֧@UCxڠ;4im  /ΉM ei0gdh}" m8:;O4GgՈK WᣳS|I;'m*lp>>7QGg|="඙8:K~Ng650ݴ /qI;CEo4Ggku.΅bLG(Cf - h#w {J}wY%9Gg]A?V,!u'GZ}VT'G-ԌKEG᪡1B%b*x``c'LON ,ۿآWzƓcf:" ;rf1iPj1/!'ܻUG5<#'  `TB ߩ[f68पT~o,`o}Q66ک}zV^ؕXXNDгxrT,3l'GpJ6Mz'`Yu)ѳ"7 > 8g%yb'v-l9óKzV^< xGpEϾnhgx jwoг_JA<  wA.f/[zV^  ej^@D&~g"{1ߧg˛Pp-}#: фTYy?gh]!Z1=+/^`JD>Y =5;-::[ӽ3zVt[9=+/^veSg5n.p-`TM1xY>AMٷ١bΎ ZP<,-qxt#3kzV^.s[{fPDL =Έó[zV^,Ե{b{ó}z٘S1l$?;|_,Aٿ!"@03u(8g(Qw}ݲ>poNгuyQ>X)=?=o 8gs uKL"xRB#G% M%i -:=^S7{pE)kz6|z|l>Y =qݶYKn٦㕹,xZ_+ݵ:L>=[傧np|=>=J~KkoQ9{$pHφOC^Ia.3NDoytpDÅwl}"2UwŔ0"1=pz|ºz>`1?I =x96ҚRkOfތk6: %Puf?&xxJ+U 4@hNj*ذl#-~# 0ϣ;T-XzpAa`gL#_|o-`\ѳK@fF(3ә t&`/ pKW~PpGϿ؂Xy~p5јB`iǗcr(8dna^!pV|bh' Zp?:ܟѣcz^p_-`` ttBG<]])=w՛t&m.K5} pN7$g#Б.tXL$영Xuuv`P : L%=PӮׇBTWq.\?V?N?r[z>0=zK}7QzxpO7 ɿhl&REKp@ϿQ5ĚɀOM * @mpHG(4WS +IO#F7:-Jyn3V`u,Զwz sK$-bj|X?hk⛙`"'x)=_fo0g72=. 쓓{t,` z^8;a DOL d+ݚZb%=aq.gǕxh9`LlKpEϿ]6s:nyw4,! ˳-n~# B=zp-`\M1|X?@tAM}'^?( *ĝIM6fZAb'G}j+8[ Ġ4)f wpB,j,O}~hg^? d+Y znuq= `O.y~CKz>B?`7l 8c !  oeiL!æƟeqJj+pIڲ\zExcpM OU]i7|X?@vv=[z^dWjV8ۣ_ }`Lnbb1TL {v´Vn(Wuoq@NE~@iه3Nc9n+ B8 FhrQpF/~hnaC7Ħ^ 62fc3ZS%Ă'b֔IS41 Į86q1&4|3Ӌ \]8# o ۅ-RgYgM@ ,pI/q\vѸ=saȆRn>Y ^ыz.",@>Q87NЬ?/m6m@[K RJl 2 Ћa 0$>,Eβr7aq"ZX*13mm^izK VMH i߱87b("j^~1pmpX{0>}zYo}˻S 8uпFf0(U-^@`J&pD/`Nk ^Л?:%-jO'%A%m!^@1h^ReltqZSzYmWcvjQe~ P9z!& ԠhI.e~sv};%@0 &^nhfP1e}5t.VyT'nKm^3JKܛiKi4;A2 l7q%AQeg 1%>bq[z 3lk0)\a)m0aDs- o_4T0 )HL$^L̘ph3vu?oDjpH/lGrX?`,M)X>-է-^@7(.hڽSz@PQYdGa7K,^֘!ރKzP,^~;X**15PL(Yv l6-P5= /Y>l[5:S6bk;7튁buԆD2Td!,$Ǹ.M)l6.k.,\2#zY0Z-fl@a2cJdD+J3MG LΔ}7r~lh |0=,FO7B08{oT*is+.@$^Q>&[Cju Mq$sАt5xHhN8H{W'EUwE ȓoݚ20g2*( cP0_ Wm G ?G@yB((b%5qFl~6pA/7 #c󴽅i\?:*"04&FOz:`}[$<ht`tr r/f- ❟Z>7x{F/+: .MEp\blJp&qn)`tM1rX?@El|@Ϋq)>ϝ&\.,Y#O=@DEǖKzI?@_̾RTZ~I?@ \oxx+Cr~q}ZK{=]~H.#A/`ɹ]W*ChP&pK/7[^A Bdpk:_\3 웍,B{{ gVl8ۧW IG pw@~k3WS5zpH6[ZS&l7W}@ !P@ 8W|άPh 3s8W?Uҫ |}3zq֙Ũh50IӫAI>%`&pA~~-^m\ѫ;?`܋{7}[zѫ_9쵫tl\pa|#i@!`^ '/ 2p *,&p@Qҫ_AppN}#z> PeɃcz@0e4+jOq}?-`4;V{y: 7zLx 8WlcR0f{Ea8@~EKC$&^V婕k8 @ k t& G٘aU~NY Lnف9bںnOKj0ؔ 095U&M8*'pHm|p{Nհ~@xG{N7ID=M ;?0OvCdz%j(ZXlF7=, W-~ pD5n_onհ~@Ft-p^uY>j g69sĸ %ܧ(mVIҫU[VpM6d Egk+8@`Jj@'A)Qz.+}tj6&^z(1ՇhVa.7$pI7r/  C%P+zUBn k!}4S#=g&e~@ԺOLDj}`z ,-m Ū8V6oLS3 k!-%z ΂}zQ?`40`őPEIo?PK2 D<('zqtze!ѿgݓs!^\?@D:,. #S|"Q O78ÏFta(B13G^?`krZ cz~WFa4Fi|"'6 b8_9ImQfsEpJ7#^XT(H b CObbx*lاj+pNl5 `7yӳ-`,`ԺzUEala0·N6(Mn  .V#FIah{RVgpM[#LAp}$^0=~DQ0F̓9RrsY8So$ %IP$^^x 4 xX̤=zݡpo NuK?`>ܠ(dQL @,a4zWKɐ3wf>M1ēM> 8#*-@43-j/{*]8=׃S =* ," ,و2zi8BXUifpWІŔ%ZT0M(pJ֌3X9 @D{PyP#Í 8Ƅ0z~ВZɓz'xvHo60xԣ:VkLbm'1:ћ# ;X۠?b_aU͠~SY *V\#=*6?!JЛ-Cf*P9B4hLŚ@қv5Ok %pFov4KȜӛ4nR"TRkM97xvAoo) #XLN .&Mw3CF %,0V)a(3ѥ!<(pEoT)րMV{ u0tXf2svMo t(L 앍y>8XTQRnO!ތqH;bSm"pKo>̷^ ~;H쥚DYZ?k)jZ(ᚉ |VcҪL2TQV }z~@۠ei0a5$ j&l>?7+L$  Xf4%i( aCz3B?`:f:V wlݣRVЙ;DΏXpP1dTŲENhav-[SL1٨?6B[F&zD ٠s7Z:CJ2b24;Nyf~r"+gf!y 4~ͤ'3 9Ăsz~wj:ul,@) W!r|p6 f\<ឳBND#5&<0նhl$߱q[ D:bftM1WfqQфe{7|PpMo6Q3Syf3nA幵7#Л L]N|&-R>Qx@%oygJ`Fg4pGo5Nň?oUVj+JRV` ";%0]blpZgt@C<{!<܅H>`M ݙT 87QTfT1tz viGDkD&\p :_ ix`5UM0[LE'.[VFpDohUp{XR )?AI:SFor-kȟ_!6 p _ӛM +}浼' JF4bbЛM̌2 \ך Rst&$FbN&Jۚ_|B. ^Zk k#p$xqFo6Y) BkͿykr@,~4X@JͪRFgӛ }|R DV0xf)@r{CaP N &)d1{|sZKݢ9Mf~@[?G`kZ7idBOLXYtq]\ћA^`B2^hoXf93¸f:})5& NaLCyy*fP?`^e56;Xn:S 4"]ЛaiY#z7mTjVl9pqKo .[+^l MFN|4^@Xg8bs 8-0XTX#&|?EKkTӊ 8-= Cq 2'iV/{K!Ytd 8M=hw?9{t1bؖ_[3ް~L`,^HgA`ou`7H.{ G>K*Svc\=1LJ{+@]=R}|͆ZXFpM[\? Y aL pC[C?@ѣA`M[bDKw?ZorKf'pGoخA Fz,bS1i07^}z~i&H]^?`)fbZo n[ۍn_"J 8?Y_2U\{FfAx/4T߄yM cwEƁ3xϘ8pV<<; ٣pFob]NP@GpNox"< 38L%H STL0I\ۥ vF Q ESk%\! ~Vi<Ͷ!tv"vqI^=NW % *VzOs<3`% lW1u&Mِɒp6>ą/!d}{fA% 'GȦOo}Cz[%"%C!_{4]`L< 8?/^Jݠ :J^V7q_P!l;[I{цpLo7-Zz$Б ?/;lBw^*܇"pJo7χ"&4L%ގJ5c pɼ04a|`k($\`v~ytPh~(`=(0P*9|L%ܝn0YG0*Tx_hf I m ^ۍX1CtSp(,:Tnm~@s^OL15E]m 0[z;B?7poCb{ņ»S اZyڮS 8:EB{"RUP"4) ϊ߄ CzI? 6W!tO%ƗA]z~@ /8Pq'&,~qBo`-Ot2 %)-fх83L#VP,sֲ>TJٞ.'VX|%bb}bDyJY^ V..ퟆ\%TM׀%Zd/pEo7'udK"&)nY:p@125)Wl^\ۍ(DKe"L! .m&U$uxqKo@Xܹ=zcJV+~pnъ*oO1OIuIe#'xy@o7R zw X>KJ +o^}^4^58K\9xoP\BJm;=*9N Gv~7!@`#Cl +Π΅B`y1]^?.O~@yI,ة)A,(Lo1h|ͨV@uWk8}]Mp('/MR= 6܋ًbJ-"0<`{# z~\F;-oH,fpIoPO09.y 'BJL'Fw5+z~@(}jϳnU]EA+]E5]Z?ZSpb[ĘUtu<#*Mh5;7vX?TGB_≌wѠN& .0`XVXCbDFNmW{ Hߦ foL%`-ف&TwJQ 8w+mK1-]c61*pNx%ve/Tp B"x8Fr{l(o1OK49qjS k150ҠqqmM&y@<2#6Iz70P,Ox 1g|bHh-GS6e)(<PUztt=߈Ԫr03zI?L/ EjfOL9nب$ $ ?*S[ zW`;!PAP˂\һAs,Pc;A[nr1+AZw,wOM)Ggo]~@HB^"wJ/ZrIu{sZ7xC$X f$0o]~f- 8ۣ_|@︄m@0&Ta}zc_a;1Sz6@ԅ{cz?B?X2m m(N˚IM$ޏ2Kf P&pJ:8~tb D857N]Jd @EAq-!wDPP7J waLxBr z&@܏L"W<Ġm۰oMق?y5@aizx/3vOz_.jSz_0-˶5 l8l,B3z_f$}~!@-.}~@Rl'a<~j2V`HH{'t,WX - 6j,*zKU/=`2W^? xYLE^5[`~Kn}~E9l05I(Ez5h;;-ޏC\9V1 &fv; Oft] rEfS`~R2hfO7hp4؋)?;bcaNVb9m_\? yھ~wo=! 84ז 8#jM'<* 3 8I9CԆL:0!|e2'~iCʝCؔ +L&Tu\a1~XZmgYm_nBտVNca z_P \&AYCHS @r9W],+z~۬D78~T}~@5!0<pC0*2On}~@%Xj׵=}c7#wtt@dU$O,ڋ1$GxY1t^Qt_ާ`O{8c*W^g od/ G pLFwwf 8#j Zj=҇0 b! (pFFTP׸1TC~!@-.C~@%hm#p {!w*3?@M(pI ^Z@ @;_]чN+=?4Q=D<.ϕMi V=:0.T#v7Sp2^?D.*NL4spG4n_ 4vOC0`īѴAxoTb9PsY{ >l`5,Y kK"t&>!1m $@z!cPP ,}G^2?2ziy ;$N&a uFTNC~@m/p8 [sK8 JiJV%qAXIG.re u4{=Z.o0HYK0@ lNzJ}ب0v {C> L }OЇaI-}6x\4[v]8٣_(fA6-X e0&pOT-&O&tnT&դ3Їz ŅjĄceӟiM4T.&q}dG!}8OMu2HQ­*&Tzx1A/ 9pDF ,1Kͽ@C/?)8LdiG;:94;42-'޺9]0Z˞L4pB_n܈#P܀OGF28wfى9Ʀɐx: qլSP0`4 =(@[h8&pA*(o p7oA~346.XOa_< @fYOߴS3GW^?؆Og 4zthF[p|\ӇzJ`9" g@J޸1B ړ 3;1OE\ \c+Ѷ)6((#|ɮ38 ~A -mBTO\P^?ୈ&vu;7=R&O4:AcEcǡ=۠'͢.>@}XZ?\Mj%q@XqH']60>L>}ؠP 0tH8 r湽u VRfÏ$>,P ,8nɋa!7n |Rr#5ty3 .2&|M҇>~Mz7f8 "0ay>5!ä2d.3O9,+#O8nAAY)}`ɍkʨ]30F?B0TKӗy'Pt4U>ߤY?Ml YOs00mh<^}riǸ2O鴱( g r 0N?$cl4hߦabX!g".a,om_27+ Snj)*I}l&d:8A-@+ l& @gs6xzMȲOXhe68`lr҄=Oszpça~@`)Y&'qVc.%6N&'LI}~:1F)9u 晀~&qbg81y[)p<LSC~L}ppL 8ǖ~ 9 ~ s 385lVb÷y=A x_`i'MdǎpNR+,@~k~!dS"}ߴ XR[V~<̯ ~2i,Ol  H&>.0B3 <_0%xa) 13C2&>.ƻel6mK_[ ^=U̧K6XCwqAnf`Z(x ;c_ PagYN|EV(h `"qX?G+6I<q.DJ!}ܨ0t[AgGlozTc~D MwC:((qD,pL[ 1p58G4x#OnQ!E)'J>RtX[rFm/0OUҍMȿQ 6Sa:H3:D1{A, pF7d`4ةtf%]@"?As dC R-w@j:AÂ`gs~@\,3X ;C<*f&P.<=uZeja5@ArC\aI`\2,*l 2H@:\Ǎ'E.rJQ)PE)}\E? -4hij1m~Iݒ~zoq^TKx`q)h%qq65E D7=*~q~<+ʶw$ ?*C8 0cK~nB}H?¼x9|km ;3A]UdyL0 1 `6KJ9L FŜpK@;G\}\H? Y 0hZ? 7]%V( !IhSsi>.p]ojFP[ld:uH-.;6 .4U[rvN|^i9Cc&>k &Z :ӗs#5N>v:ZBY:tkOy*S8U?` 6f PLA-ذ L}9GIXb+0- k&>.@}i -,AX 8O^QՄ*@i L%}b7rbH0K\j6 P?N{{W ygYRJQg~: 8cakا0X8 d}Gju@DEAgϟQB@[gҖ >|$VzPZKMg òFEVO-} j-Y1]I[=E}E_%*0q'j.`+u&A-xā,G[G, 5[r",oQ1;jiX?~Zj0i`]dS~@FɔKJioJ<1=;?&P0,b}Z\?`FI)x[e{/ZB5FĮ̹r_ 4W*䂰M9iQ ,\ҧ~@/ ~hBx7R@8OC@qђ <(=2suN&o=1\Fߙ.2U@mhZLm"iP? DBP}TB'`r G. "kX1Wi T) vhr(K@Ύ]]ӧXx[~8L5QIN>+C(< si>-P J9^omo wyOPc M0>{Ğīv=Ǧ/[@vtѥQ}40~:sneX ')݈XЧo+CC4B?@=~,>ErAANj vPP 8OذgUgrxK((%@2‰ Kڊe)Ч_vu#h@W{H)} DSh0 ;mWhѧz8˦U<'Seܻ٣.ӧu';Kjj$9Uxhi~@OӷkKƮ* }NmqIҧ#|@:*$nӗ_+iੜuY15Gx넏>.7UtxDw1҅ $mrӠQlɵI[8zs@~+in,b X %`e -k 8O#F$vSCѧ?n< 8O oӄR;[@cA\@dg"i~+3U:'HmަyI]NaӅLD7.@XC⨝z148O1EMgpd> !Z%}P}+%Q5eƼbʓ F9^">O21I\ӧ<x  ,b`zA,oiw7/jǸtjPJQ%^HT Q' XW.n*(E6( ^RLRdfŏ;@Jn_C}4B?+ 8O~1/3je5. 7w7M,`[ 8O=¶Ï ,2x 8O# ⶅvt=NS~Xטp" C2&]T&>- I) 7{1$~пU>]mtÉN2*-U`(XX;x2k 8O#xҲ̺4(@C1'>  8HX :*\ҧzHSοE@]*O悐I>'-y J0˦ٻ8ȴ e(ò8\ӧ%剰Mk=K{p)pC´ ິINBK%˃d'݊D( gK9VM$>-4PiKL`LLJ{RO0zg_32>,O.)O_ZOЈ|lf"nޞs`PHtyd_'8 `)2泬i'ݖ'F5pH_FOb& [&d?eQZ:44ԟB=Ds 8/'3Z[Wx[ BaF,Y zHTK  -85O (fشߧ8/'X|c)rU˽XBC{ lAphyMx<@GM=)\Ǔ@c K}=A?S{]@F 8/'( HM T9TMvy5Dj+|T.kL""ʹ w*i[@c70ϜK+0hFaKwFlP7LƁYpE_<k~'&pM_:tk'5d Xpd8H%)E-B I dgs& N5pB,&)W_8=[~" 3G^Ove\Cy_fx# }Ei 2>:L9}^FO0jr7LS_lag('].|Q b;jrFCzj}.yUd v̜Km ϿUuݞ|Kcb|e">G=A[o8sJ6+60`CƼ *L5}ԲJ޻SqxCsCƅ3b L-}vz C IJHv ub=@| y70`^H W.(clG 8#{A zQF[QA"lVٓGnQ7Cz pJG S1ik) 5pFG Z V@]%DmñpNa(-6 #.a \ϕ֌ vڿ~s=pAtbb:oΞ8#{ 25~oXC&@#{Z@2l Q HFe5g 9nn_,RB͛kv2N tAwX7M;y'y`/nt"DLHAnJ=Ql] (|GK`[Nef9ݧ XT*<5F}<hbhNiy!`¶GZ@po #ǝe -|B=ɚۃFo6nHB#$P >`H>/0Jblj fWpBgkճˠ;2{d@>/0&Oz7#3#^TP>/P,28 T 88c؏ ON/HIXfaC~a` ^m N!\pE'|@ VKA!>XJk==Ak }^LO&%9.D?yz~O:́Ww٣b(yG?b> >ZPs3O?XF?Ŭ؋%Tc%t=lXr"8,Pbmp 4 @l6Ǵ=_Q>\^M4&ѝ?"[pD?XH?be(xCT ޽>TN<I `!vy8/ NRCF*pJ?x 4^M mA'4-$vvF?(>s2X'' &Y`!@ qmF/pI?(WkA[Aؿۣؕ;)<@1q/kIlWgmF),X'ŵX3۷;ɯ'`! g!Ikd  KGZwC5pCf= Gݩ1 ; 9@}g.g}6} @20y;b(TGT9HEXF!0%Qu 0IT=j٫J .|iXG^p#Px0t$::<8O2p0hCW=[:"Y75+FDA]|`!@\ S,s DU0.>*4o 1N0.>ATIN] Bj͏2.>x`t\#$F}mi"1o ۣ62 &`CCbX}ܝ@3~'J) .>Z_c&/&o,| 0.> S΢⡎*4@ ̀:;(ȃ=bg)# .>P n DyA v %&Z: QBpRKMQ[h5Z7po @Rn6d+? ^L^>Q<S1 .\hɱ?|Je366 wh ]2 ˲3o($ÀN_mfi5V[!ikJ|3rw~V %O}UG>yhH "P`l[ >l?K 62_r$2\1.>EA@K7̕r} .>MJм-&1КKV&1ȀlOtPE*`\(w}~X} JN x6+vR7LAUX".>M>;?qn A^V@/P!~pEtZ'VVO†+ HmR!a\|`ƒ@%W3 Qf<882c OE8"S̀,'= NXm*}:XB{pMǁL3^`20+jdƈnQi@Ϙ}.1)36l AmEXZӅBkg MZ!?@tSJVRvCخvŀ,? l Ԗ`FZO+leE'f2=@(*s TD⛍Öp"hx)f  BhwB*ߎM~A.]!BhyETkDjbF@tf«͝h.>0FЈ<۞š]]|`WH@[A?NƄR!DXlS] ]|`q?xvV3w`ft# (3i;o.>0BZ9Uabƈjљy HmW ji7i` `k"epr{p-yT ᵜg1x) \|`+;ٱEXN/-U,~'Z݁QA@PP-8YʗȀV/>섁Æn,CSL!,Pz~a`U1xB(ռ3|]@F.Ids C`H92İa3ӆqM69ye+]̦dt}Y8k7 LH0't'`ba`>/]6 L_&:pENI}j?)YU a`t5v<]xJѷLŵb}3Ndf # x~@E~ft u N@[1᱋L00&,XJs~Ph*-c?7"Ũ0w V|pDTl};(74j1pU6^]ModVp+kf̛+l96pQxՂ k!/0D (tvc?``DTuCfpE } ð^5*Gym֤,5`xg y$%@*%_sS[3+Dx 6))S =h@pUXF`@c^p$$Nb"R*O,܍ fS޸{"q[V@4'-k.>R[A>bh5-fـ? oc`1ښm; H.W fp]xb Nv7d\|., ʊ3wD`ۀp񁻠? ]`\|n,ԣ]/ZדVuLd1 r~&g Z  9ޙ?@imօ X ]y|n*d:F?0hDWܓXf'Crz-0$3 finM=葳Ц}c֍IF;W˗SUxvq,d\|`@>OUPa? `!`E51E' zK~n 3#vybk@IE#`0M! 5kp5g tAX0l'HQabx&fFT`Xh~OM貌LG Xz/ x^`',+9 8Cr#vD+0šgJ \*e@  xB {Ž'@0blh} *ǤAUԌ~bݰ/e\|`A15riOD\|`Uq8T0B`I橛 ~ FŨýIsN!lsMc() mH_|qʹ} 7 xH8hxP8l?p3p00C>fa`Id ӆ 0g  `k \4 L߀l?p3p00Y~fa`Md ۆ ]|`@e|e\|``W t@̀LX?.>@.>Y@KPǀ߈ 3cı8FvD@=`tfF np;% .>`ڙؤ?Pg{ 0NV%j`\|^Qj<Pd2#bqZ@pcº;Ȁ?Xvfmy7mp.vfӷOςr :ڠ2.>0J` ,.>yZE0. ^ ,XD P(Jn-g%B3=I/΀N`& &Г3[;s&fsc&3[Ȯe\|4 #hpG?0w\`- `\|`w0.>UTS>Z hƘpNI%MfF4hudk)YmOwZcCד0pi$kX$D:d\|`w 0.>A@$Jrsw6XBg2Vxo'_t5Eq߰a3KX2)P ׺o' av[0 LYPv7 D,ܢNpw@Vx`כ؂o-,≼h^6k;Iĺ>#O Og4goDZ*0M`; ]|G{b_$0 wQ&@%JyVc( csAB讌8ԁ]lr16X5 +n/Ha6Xw(K355r?a D%4Y.q&pݨ6J[ 0%5M{0' ʛӯd}f@dG8mp=Ͷ."6VGPg txX4w4,Bz0V\@>ibm. <ȁf* .H|YO Eh X>hƆ:^k}3-@gX,`ϝ]6 ,?`_?M~[/~R8Q!_wu U Dj \7 lQ 60lJm*7 wP{|档/T1p0+͍\4]|`W(]٦jםUf؆.̀,?:bw.oi+] *Ҋ)X;H5Hf\|`Wd->Q9h5s ]1Lf0.0 uSP>#wcӏZ f~{B&._3pdݩy+̀,?КdL9NMpyObn[ՙ@>dYb&Нfd .>0J;b/ڠ]>2I뜚Jz .>P?`7ݦߑ?:Vuc{U0I Fٟrt @'*V_8ڀ~ 0iS}Ia pX綾L;xm".>0?pA`yfvɀx8p`\|`(D?}C0?;)aym&nCAx$loKQ]Ҧ#i]EsbJŀ(.>P<Jŀ(.>P<.\|xL <19SEr{G _qjMצ1m<ܤe4Oh=uoX|"ԛhʩ(27f@cl=Q2A8hsZ,AoqW4DҼ@pJÆ%r泖BOzMAXH:(# 5 :_ ـ 4ht0 I]qZq vxsd@A *&rvbGG0p0ƚTUƀ EmX7Kj&8mX~CX,Ĺ Äd[?;رjeJXfa` {)Cc ,[j0n@8Zstϯ5Ѣ:ϴ1 JGQ Lv~] \4 }ĥ~kuh/.)DJàD OK'Vˆ1 V0lu> tڦMb@Ct`+XYcfa`ǾWa/ShAn:,?DXX"cJS?_/C] GU9q}wW7/0S=@ cB:Z@Nfh%&XʭMK7/EDZͻy Ḓ'K+ M{v$A9 _܌]~v'gP.XbWg.>0|AVD$3,&m7x*Zr>pe7 TtYcIX ]i>٩d|`Ts@u?Q}OFxk\#.>qHi41~“8oz@ cD~ï.}a%Sm-AXGd K \||"žMyy^"М^4C B `MGǃ Uփ][N轷ntzBb+cJ|oq pce$2uxl 0h?&z{ +87ۚPs~\|`>˒+7UO\d;W'2.>eAU2(搗/ oDjwҨ7ǶԬt!E9no)zeU>gɢ(O|Z `DS -Gt Za 5xoR .>MbOd&?&\%>C.bwW-4}c]n,M B:quyS7Ds :x@Tsz V.>P}@xXCYqep\U6\|` -^5 aOJUjFi5yL4&ˣZ.3o(b7āy.l iB=O-' ) =:̀ oh-M!4؃b9-~C |lT~']SYqchk4U%\|`8#, i@A6t(-80\|` Ĩ;]b+&*/*ШR- wWGo^2naTl¨I'oN"O7 PNEJ\|`~)@xWXe~hӆ?v& <p et&*mMcI` XOaFoXObƯy<+6b,'ߏFf%k Ap rV6XzW3v20gqb0wO~Q$!f2Cisc56Xc3{ܟO1zn.f3ϡyaJxAƃR}+z$A: (lj0KLEPyfRo  @!2;Դ/U0aBjV ]0H/Y}Y̩F`_ñU}C:REUjl{#&/>7Wn@*e@X \7 ,?ZZ`kA  RQ+9;^!pJ}37 kohphQ$ i@#*ix"2 ۼPa3]ߌ¶,ļLv<Nk_LJ+Dy_* iq8ezX&׌s(\M"_~enK̖iI곇iO1hy:L, D !ɰ.IOhR]hZt8@[fa`d| BZ/VtBU1p00*>P@߄ѼY8n03g XɱL Sa!>,p Ul'nx 6F0N?;q ȫФEFtтc &Z7ӆAU{,Qq/΃ pdNi 5 'ټ0-O Q 7 l,6lw\Q#&z{gQR>y ˙s6H@$ Qfa:>bD`t@(ga9@LZd6̀ AQ2⬙I ߡ+Ľ놁 (l®0v33 4 ,-w[`* QeP2 6QOQ3w: N'U)Q#h WnTb1 ,?-\|`} LVr }BkI 0BG|#L "  Lf'&9kh hGkejp/MLl -FQwvS=->ˀN)(EʝҼgp P@m*rQk-€O7#pxDTx"Y)ò,O8 ] >'fXȿT:4& a깧l>* {,k:R̳5FKE1ik[ {J9͑ }B`x'X[nAn ;o,\Kf`', cXd[4*_ gf,t1K `aq (>rSSJEpx2[ 2e~9i%-by&үJ[n 2.>0O <NSX @}LFT;SHhm".>POlE`rLh&Vn$&(&j1p}B@.>>!$ Is @?O2.>ЩO?ˀL',CPy D z( $0.>>!Qы[HSa/ca3rT&@FpQ=(EDΌ$^v9b`M)ƀ,OX#2<{Ht]bSpz}~4*Ea'U5cp?p|f91Uj:*^3J \gc6> 8}¯'5No-}F4;ue\QuN¯Б"35 X\ =*Ŋ?\g/b8C 1M7%ǘ x 0; %Oc4 9X{[vli2ܮWs܂pz}µ0;`fb!66065f. <}}a\|`>ᶪ}a\|`!}ʉM}ω|`' ѓL }c*8nŀ'$TG0 VIś5悤ƚqIOd'X%;̀,O$Jth>'XAB9`9gc3R,JMT-Ȁ+i+ V"<~dsXw rQ0hR8}ŸbmqJBGQPs9}ŸYFyg]l)SzBqzRE复80'Ad P^dUU72p00QF>8:^Gk8j? gS3wJe` Jߩ8Uㆁ%k5c6^J:ba` u 3nȀ9bNa0A( Iea`@ex#MuFf`*O 6 WyBV c 8?ã;>,?0a2 |u=e@>NR Ӽ=$Ng6lHܑa`q6$9w `b5S33 4 ,?`tl;miA( q_NJщ 6 ,O8 ]|`E0E*K3囩 @`GG0UmT16ffY*i,? DOŞPr~ @O H ?Wb^kD ^3pU ]|`#:oRL6R&)Nt͇gs?pƁݬ< a:VB2m:H1@+SyiߪcSMq;9x;|a u>LEA+N.>0B+GI]%#ྱ:U`.@dh~W6KJGf]gq?H.@Yoy 01)?ec\4ئWtߪf"] @PYώ{kΈƻ fkG&WJ x" zqe\|S``tco O7ԖeH[H*,\ , [fe[D= ؤ:@w/ k؀Z-0*mjWx`TIŶ~"YGx)4GdIiuCٔ{9\ɵBd|? uu$Z4Q)[k|b`&>53m "$D ͷ!ljbMGv~%3p~.Sǀ컷Y9; 2QXpZKj}(8.497xKnܽ<+V67 fFH OKjr[bDD8VlB)X|&"0.>0N`d0,q3U536۾m,πزb 2~dP;Y:#L䦉;wjIԪ? ~Ep Bl@LFfvfF<,pk ئ]2Gev 4 _qir)!DGEv0pk74)usMRih`Cxykp`\|Zq"SS‘i,g'Z:5I ܤbGkzn\|`6J""3.>P?]ڗ`l~_%v ܈rHX[]apHe`a`ʀsJ[#w }N`aPh\tW}xd"yeLr(@/H}$ ^98pڪC6`0PpeN ̺軋ㆁ9] ۀEkrЪ`a`-Uzb8V.CjnW]677~N&#iFjyTFe+}&}*eFr6e?lnI^&vۀ [}L2vofa`@d Դh:ۀp)8`an FE \c+PR\G`a`6@{UCD1?JsRnx-ONq/3:nXZ`^XhM2@3[œ̀Yۆ%z[/;޿!@.>0]]7<Cpu;:ֲr\|`s1pY[*{B-7 ycȧZ L2Vk`H":zBӯ~ΧPa(;T1ѹf\|`Rċ)aȑp +`ng<~A0k"p1S0 I,`vMpȭxS@vZVd@mVzdK8$ka6*OfZf'TpK@ǀ|{6ẁ0<؆  ް/bou4Mz(MXH@e Dty1 ̀C }4.> xyiu."kXX@i~kX'a3s"iSdzjSg.>0M5#@1t X@@D = S~?ct7mi 3R q 7>%xX\|^`&x z#ި'=`0Kl۴'ZM?K<0w&?0l'2໌nOBE`* ]|`M~4hv7IިlK?P p/E܁e!y'>3@\ծYbn#.>0G`.}O@+z QI9 y@Fe'\e{4\|`@:S78?ű3`=lج?0:+ M- ^H`I\|`@/0 +AL Ɓ*iF@UZ ?2&wY:#)=` '-l]q.߇Q.ʀ Ľ4[s:tD) Ȁ T2n'#g;0 h @#PL(0t'uCjpjY@>o$hToxG?/V(È[Q .-C7D.x}RG000N`3< 5LrUl{ (828;J*> 20LeqmARdon$n3A<3|%Z@&(QfH;49(bD}zAXx 5Lz@?Uk LatMqgfҼ  m8(.~N.>0Q@+8s揍B_P?y#7,5bf>ϴLrfI dXH[@ܗ pgH8n%933I_%-oTdeˤbYJ2cUA‹0.>@.Yjn7W`^呹f\|` :,]\VwL6[a\|`u[DP9ɝf'kN@˅8 d$ I@Ÿ @A0pu[80^1tIyŌg/#..{r(1|ō|RZl~wkf:P<S(IhBHoe*_ O FȀ$Hnx;B5iRq'4p1^{LTO*]M:pt׭Ph4(MiA]ߗ%U׬٤7phEwl6wǀLئJg4!J q763c61J +sB!Ks[o 7E3KXg;h(o X?;i5fvvU p*Qhm(J!gMN evTJ yJ n*35R3Q>Tڤ҄!M"PZ -fVn]=JVp>;SKP&'-)Qa,~W)86|V=mRES*Sfb`7D 'ټ]9ـa: p14pqTXD igl';[؆UfAo5a\|^`_ƈ? VlT7AXDM\t- L9@]Z;uqɯ~c8gPN| ~T5NdVMzrG`l1k22.>7q/ >h6[,FW[͆V15q[ if12( Ly5[pii9nL ] . 9?sp (FAAxGÀ L:x8l9^+epjIy`%pzްo Vd]3+Aߌj_b?7Ǭ$Z4ellψWo. ŻPҏN530N@4Pg"֧klda`Xx@Q 6 L 섁}XCL~@𱏤.ITFenCЕp6Z1$ SL]mD  $`) ?^ ^0.>0QjʧlkܵŊ.N7Zt٦cg~u%B̀L&LKfpݍeq]DllXBKB&fMkq:G-3I\|`P`.HWEEI( M֬/mz///R*߇0.>0B m.+֧P ZWfF`Zֹe\|`t&IXU @G[4Z\|QٴXkuc.K,e &❀5#l +(3#6w;tOx#@`.>0Q@Ig7U7iSQklb& OƆg,ׁ zPO0nXh\|`A'@iuF[ǒ hob?  Nv OWZZbe.>0Z`m#s8k Hq#|Z.حiܫB‘I;,fc @&`pK̳E1g/L@MlJ ;W lpvI=?33? Ol<8Z3}ςmӉ[C\ fFXfL@Z8 ofzv [/N JÄ z {D0b\|`mn#D8xN\zUàlO`a:NH-0p.@|M\hp)7# )iC@1jrgfIT8k2a\|`@cDp1U&p~pqw4NVX$)0T'2.>7wMs\7t(,[g] }' _h`L972-U`Au .>P2$ t;)ؗEG+TqS$ݟT\|&3`ș?s͈}j~$ KyͿC6&G]\|Wm&l_H8~_( r. \|2*[;OfaF=eA\|A6G %EI@ n l2C\1uܟ @=Q̀{BVMŷ[66ކ``,0.>P?V6!gjd*RKu9`h~_LMK5 p($꜊ 7 iB_1\x7}1k8{#>AhH 8f^Axљo`aǫ?)2#) u ]Pi7i gc8l(flz-K^ǿ<=i|ڵFGG _]p朅䡎H-w,c `sjv 7 d/U" ԴJzLFkIc%f fa`j}P f \6  _* mhDP:mq+IW|'Xٔ끹U@?iT \?<@( 29? ϏiPa4L_7 |M#\E9 Dx#<4pG;; 4 lPQQ3{#:'y}# 8ժ@\,+@/pd8vB`p<`\\zZUe'.>P?0BZY6.>0E 3sl3mr\d̯ 3֦rJ%rAoox@}_ӺN^ySTlvcf5C.KStsNs` cw@QoCgV^w\|S`iZ'VOIԲd 9'#E&#zC?xPL|W8YjZ5fYf Ԇa?5k%wha _ʊRV엒"3;pUHMX9M km-? RM(x-O9nx oN&~a|Xpۧ+H= u2x"0AM%2.>P,Xs)8FLut jP;oA8U4:X͒;cFq|9TlSL(ڔʠ]q6- z0q!<60p~Dk(>G͉ \|`XAyƂk:IQ@vFfg".>0U`4"Ȁ*vFDpAؾUj9`=1d?y`6.>Y[ Mz {"4\|`@oXZ"L4'eg".>0U56 }#)ch0|[=.>@hz##Dg1+&6U!xҊ {0 p()VvŠ$\|`d/.Bg:L?aĬ( }[ẑz\| L8_P La/sc ,UXAN$U͸? w%Q2k:f\|>;68 B@:m :OۉX.A&ΎO]|/{ȼ؊p_1#צ2Y=]sX)0oRa{`կpQj3 =VᡊB[hsFf`fR&KZ][LMȍ`"tZ`]X^0.x9X^byt;mI6,D|w|-w1X.>)@ǦA_64? ?)KQ/nBz $ eX4 "C]A Βd낁0b`i "Pu@|1 G=|ءp*~#Umr~vEfӴrW[~$~bx$d\|_sK3pHRN ^[6#8ֱۣۭ[OF~ =p>]跮*~-̀+\Z-=,B;R `Sez ? <@ X\1\v/@`r.aO,̀< _$hW1D~ hkDfaC_h0I@[ٕ aj;E0 ?R6-m`' ?.*33ٜ൜8E i tV94mt-5%7SES*1`uj60~u6.q d bw #'EJ0p0_d%=6O%ba`H [OB>r:w1 FdV~Mkͳ!ΥoF[^jR==jXs_m]%wZP:ZS2m6~1J061pl~eф7> ]Gk34ы'6z9/ymLs0:(?i0q'չt$`q.Wpk֚?f w75Xq~XoqTLpx_8T 9D7ݘM0.>P`+H .`Q LS [=JF%f iR?L@,8M*C @ciBD2shH.NH pf#["-+]GUIh{zCl~(,7BHck.SnkV9n` EtS`\|'S7%\anE3+V(SZivfSvZ^ڛrd3#(5`f~g.\|iU֍N ZG~5lk {ݯ2.>dp{]rd y gf <3ka]  ⓔG't?yfvɀ3<@n.>_)bcXM 3  }̀?˞p]t<߬̀ΫcPNJfkg\|OFv \|ϼAٜJIzg .>[0HŖ7_fΫci ,W4X;3p{@,{#.>]Uzab7=>2hֹyٞʟ=DTHxu/(SuiuDc)J":BA0Eb.҆&\|[oX1 v,cLCiCDp i;BUPUE@UT/3QOB_@R-u'Ȁ,?@U(}RZUޘ_m?eqM(u@`])̀,?p?3C(R @9вK\|`Z@X`m;9`\|$f6Jf厉33+$wvF3 \ _K!`ڿƪawd8C8Du%M,L_v300?2}824vnb(rM_M=6`ϓ⑸)6@aOi,6]?ZV|6Y7~ Dna¥Xߖf-D+Q@@.q|8npl`Vp0Э?P@ p{nz+J-S~g> C`n1p0I.a`P` 3p0I`\.(+m1p00?P V+3놁 U@yIv+>/+Oїaa`$X"h2&.vZ5Umǽ4<+D$Le~ieߵP̀ x%'LLjJX#̀lX ~<Q:t0.>@?CX6(6-ȀRd(6Ph6l~uk hG}Ž̀ w}w^[.>PlaL`%\|P`e\|S`}C`e\|XLjkzBĴ 'mLԶ gf wśoT#׻P΍ <3;d\¯G`ZG.ݝgf }t5:y%@0LX6Q>ow$;3qu.7(6`R ”|#*,*PUh`)6ǼiXdϡa\|gk p?dcT|Ux8\|/s]䋼Z6`E`\|vrit.):4 ҅'n{8,_Vũ[t14ߧoDn-qMbtPẕS xmBkހ MRSĦ'xTHZ[y33p?} =j\|5.>5.>P<.\|xT ܺ@?pRq1bJŀ(.>P<.\|x\ @?pRq1bJŀ(.>P<.\|xL ń&=)r 7 Dj9`J1fa%fa`P`=688]">!-ㆁM+'$ -'v+~a৖i^/Y(ifai^F"󓶂;M+M8^o*\|kbEo7 b&1LdMOV3p0[HX<.jeMmQwD~a`I a2+8&nXB`"+2p0@@XdXuT|0Pna,;w&Br_A.>djLb+8pY+Qn2l+JvF dh7`x^7bʀXΒEJ\| l00bnf+p?ݡ'b`Up?6*.>Pl +J-_^@z \|5- -l`[3#( VfJ-A?8tR`K m1@?̀[~`U\|6C ;=gt6pݡ ԍdmn<&.>wy!<~WoU?2K"Z*.>8Nŀ˝ɀWmpk6=v? \5&\5 |u61 7 .] N @a`5k0 7 ] Veag`_=?p00Y`[~`Uv?Α8ݖfa`Gm`/X%M//RC{ۆ_܍t8vg5 m[P&<836 +eH C'@zUmBg? c5<'XzB!?g᱋nZA\FV@eb.>[ mG1<@$*.>e5/Xs<mև:8v6//5mV@~ w ܢ ̶4(]|෷Vhg 3&.>;9/p]_`4)F|ym N\|w|_~ow}A[tmEHN\|b_yz}n W N\|ƀ'#:q?6n.>=`řщ4;.[f'.>' (gs6nݻK \|`+^_~[ؑ@fDb-! 2Hs!~bը;If0}kP_dN]|/Z}B o.>,~ =Mp+\6.u*t ҃,NoDJ40`@eb\|௾/i?(>R6 y! :XQMԨ,p6 GlQdᲪ؀GԻهB;5Td@d |` D6pY_PcO3;hUV62kFDۺ@0bـpMEp@dJpa+Mfǹn m']qmـHf·pa_йblޑ@48ۣG~ݍ`-WA߁lV΍ 6 (@?KhKCfaૻ)Km ?9j N~!s# ?=ψv972p0gf 7 LEM O`.~v3}}l 2P3p0^zn;fa`n~qAo"GeL)B>a\|_i)>a\|W "BŃ} @J%LNf0iC̀H@ %f?v j `\|7VloYc\|m613.>Vm~n-{B`SVs'X.\|Ie݅Zʥ;B@$qw .>{K#2[լ6um 9qK%l p"Y< ۯmL`.>@Q;Z[4Y EE):Ћh :lBw&.>_Wk-".GM^O0Օ bxe0vcs?': D`p?YΕ됍O,n 1@If ?kzi\|`%kl-di~g.>;c@.>=w#>XGH/ǀlO@2`40e3VĀ^XZ u78 HaNMcφ~ BGo,0`r 4 l[u 4v F DvÆmlfQl[~ n 8n؞@da`i?F*tF~4(#BCaø~8m?03&EtT `d`3`eakk3WF`"D?'̢ 7 L6mNPN.Z0qߴ},#ȍ[3R>T3p00?6'6q |5c:O725;` MM:lX|EEpﰎ0"fGGN/` ݞJn*O5} Q328ea`H`6B@0tsawMo8ޒÆ6p00?/Hm*:i CK0=bYUniܖ`~iuޅǢ ƙdlf`noxxdA'ai$ ,DSȳm6mc/Wr+p_s~Ӳbpm^@D&1Uk3Ϛm*:]FE{xM$Qј 4Eh< Y#p!:}2#y>],9 ̀ Ldj .*haY60d"a j^Qf̀5U80.>0?5mZ6l&@oW_Emۀl D_Pљ-ŀl @: {C.>Q`@c'pͤэ|xGJXǀ,?0ی߸韱>qWA@P`XZ@jHSГVr\v!38eq;9)](PN-\|`i]QAEJ#(KSrae OU;7K4[\7o++~vEv@ Ďs?pE޷nk;g[pcOR(Y8Tgc/8=BvOPM [ \&L3PdӶߦ>(CNd6e ~9) ]ӥVzd->ENӃ|cn'ٴQBn63MBЈde.qGv}&kMx2pUCG )* 4/W?@?i@.7/[BIRwC$^ X+w}77i r\^]@  B蒞ۃspߣ@H酬 /+Wz4W&vs 7lXoB"%u$(rzGe32ZW ,g4I]%Xmr y+GG'ld> 'јȀV7MD~SW Yf2pJK&xaʈLr)9Uҳ]!*Pe:u2ee-<+Z3.85/-~KdZ~d/2} 踰lxX0i?pz)E۝bjHXP;^(č7t%'w yWT0'!rY!?0 vPS539 8{lt.}NON?++Xx:l0gg&zx>8'SGɻ$eoM ! s{kMNu?@A.PUBI0 yrc %v6fߊI_De ̃Ab[f c) <>aճ[Pp))cjof]c `+HDXOΓp28;@s^ #wClq.`˃`1\No' [4їs `0vzfKA#_&9,V!{bt!g9?|+o W},tujZd%nJt0*fj}^Ԓ7z^SQ5whPzHJO8H4 9tE$@1#!l&e<^h6?քah_t ¨K~'>>7 DLI?G,pP>xDh-3OKȧ#G$?0ŁÃRf)8sa{lB>Xc[h˂\,D  ! ƃX/~-؛X?03&NC.GOo&-Ji84 !1Zb#R,@v"m< +zHtXN|'C9?0Tg%C h3aVHNlUIMAHY(+/sgt8)N`v?0hrx((S).Tµ `>ޥCzXd{)}]c̅˲7ЁaBcN5Qs0?p~f٢ СY",q+V_v57NQ'@tm#!]߶ 0v%oy]4hk2$cӀʆV,8'z:Q؉E(mrGQQ%yy2ʳDb v}D?pv"ЗH Yl"\}4Mۍ @ov(DQ.fgЛ5\;P( j5\;p28?ִS ZN'38z|D!-;YJ67 nhhǵtc(7}  aBFEQ .*m6t9@,1Gp#!t?02`>r]ȸ>qT!`g}yx$%mr 8/wcŐ9[$?ПW🅤_+i  b3%)c FoC15+Æf|:EPH \ XY3腓I?ПD @YQ߁~)"$ Z ǺLfk68K$^ ?=:(@t6kz.I"$!scS칰vҦdYoaF!tho?& u%V[޸l ;a^ X/N[Kޯe&ҋ`QbpYiIFp(-$oV@m>|>+ ̧>i9*x20/"N j!ؐ9<mb8w+Z/N||daAKGW_i)`1%#gV %4ey#Q!.,_"d+ O<cݸv"W̖bWȰQlmI"i:o?pBKΑ#ѢrͮUhA0fKsԣީìdkF9KfRZBGC8tYx*3m7# D+"T)S.蛰v^r1jy Xp9 CHyɢ_2؊V2΄Oꉀ8'.L2Ul.L /Q^C AWX&CCt;;ī.ю35 __q1WGo?pN8?O}׮Z^C?O.*Ssj}#91+v},~ʭg[[h>;҃)G:2H R_޲! c> ( 2 ;o%(<ѯk4-өET!&^2dg!F~0pk͍ nAKLa49G Ϗ874,$8%@|5 6(t>I.먍±Fld=HҞj0m+L2?dqfo7e>TÜ3z U§e/6r(B`lw.N`^2F H+:S@{O yHNfȻ< -hct@HQO?%IbŲ(jB 8r@bC~)nU5h=h>=b -~ DsJ;2C7g#4GRo:$g[̩G(}s© sGt Yಇ?N}W>WyMnoˋ(g÷?@[~bCǻ]! 깰xܲT!?}a<·D,P7Ό >l0e\p,h'I;g$?0Ns&V_O,6MX0B|N^֠(T?  B=̧eQdPN1 ^< NADCBK1 H5<$,D7(/yץB?pNL> wإmc/m@ ,)7wxHyH'x,M~)P񚔧'd K?&9 ꪸcu.| '|+w j:Ԧ@H]^4o+=(9_zw\RSXU $޲C[1 "^}1Ov0[t3@BiGKC"[FZLvۤo+m)?ПKS<'0je`8ѿZS>Gg0ze` 0.7+s}k) ]? nA<-r;|Dc0=oz{~ ߭ p64T@\BGH=5nvRy{$$3pж`i@za[8!|:g+gas{okw W|~w {> ``KqI2pN40 _VN?pkޕsz"aLjاg>dO$?]D& 4WMB\R,YхY?pm;jvr-';(BKCgB+?\ C?cAR bPz}Ul/⻴.RN?@F/Gy ^УbчbF?0@VˑÖ0e^GIʖ/~ᓫ[wa6"^SK1qYy|JsCh)ywx|zj㩩IlAW8JƲhGLJl?0ɘIM̆Jy7yŏ&m`N?; C &q&e)G$V{ ||d3UI,q}odi膫8?CEidy|}KX̧+Kd灗8#7lҡu1]cHٶ$WH/iFZO^޹,sk K3gys6-Z"vXq ¿AXб:tf<\f{t_}P t:ᔂteBo%!VɽPt8@cw5!Ȃ ZK#$aII;5 7&>o`8{8-M9~"CN `>&h gI[\lTIڼsԥ%zژ6F݉a{fys-VRuƉL0ۑ)$_ &'N& mcI쫴*$/kBg&?1lZexT֒IOF/σ69mS;X}.=u>7ѸCw=znoLڱh ͡|VpI8ֹFd3ۈ<&eLMQvV8POG~\7.;M2sߐߐҌ)5@ Xϝ8ܚ0r6&&((%a,ҽД]bbN @?@g)%oJn s~D`YK}P͏?x ?t"@k.] {?2N@"aW!-3tTZM>?lg[0tOȂBX4?-:]XMu `$@^󮄸*MNGо5qg2?p$(|e2/;SR#iRۓ-0#$J3 ,2 TSѸ9?RƔa\^rcǸi8x<,Zis%@Őzt'?`Zሠ3yf\ZW eoT]VOa^k FkO8tKx["azOIIeQk oPt2Hk`cP(]Yf!>?0KQ}+R=`Wc'~3vX(#T~Pp.Z-Z9FZh84{48Q[.'Y <9[Cy  \@]%Yb4(!?2 7<Nl?П +lg;TwySIzNDŮz#g@%?ПWf64 7БOvL3qv9nOegD!pfky;?P |].fy/ ) &F|)~sn X?jqkBRoHv.H'718U/+bRT^ 1鉀ݦ>$'ژ}XHk#/G@,ᛕx2<Vxb?X |XVxb?X |2<Vxb?X |YOxbOW)qD`Kd}^gJru{؊0<מRk5=á p^Zn%L[W嫕B`&O6G3?ˍj[3cQ:<KWgg9)xB!{؜'A_p|%| _k8燲m=O=uVQR?ۍZn`~73ڥ`*^8nQ : =+Z)S5mm Iy66v6VTiĶAׇ~ N15,b~RJ /ঢfeO [p҂o?Q5‹{3 [oy'Ho|5Mx`h?s$0m ÇCboZ.KRV plyV^+#R;k keak{k ;wSAr57%~|]u.W;8xzևusC.,]%lH6؛=˛EDYRގ0]c$} ʳA N`3 {G#nw7f Nϗg`N0@`;$>aX)DK+tS?A7r"%p٭F lXsgN  dw_?)kZ~{Ȕ ? =@$A?(Bf06G)yi`1a#N.vva6g\&A│?d8>>YxXoxXg T IY5\'TPn;^c~ ?)yĭ_V6 6z\m9l#f)+mf\Bh V7̍vSo͓IdrV]QF-WJ[ai R ed8jBj'V9Naam),O#za<ǵlfCݵʄbJrNi`sfߙ`m#~xf"eB`ɰSv:U [ay&|ZG'[wX@ٖcuc+kT&UU;+鷈f)X,k6Eê!a.>E9=j* Vzd[?[yaoscuxyf0[X8M[)૫Mn!8㪿:ͫY}yN!+@zP6I*~F-kб2 8Ӫ#.),3mY#h$^1r˚[j0-u0~KC?{NJ0󪿽H7e$Y7Ng4G[¬︞amO3S߹nz({9>S{'YDiiq gU8[w2}k k%4v'$tI8))07f:|僞 k-q{mr8 J?;3'AO?Ow-O ݚCT{R[6菷̦D1bi?28NI܁ֱP`%n?c3:5GfP=p#ݭ0U_lgDXv2!Bg)oNV5hkORxM AuI+apfj v\߉솣B.Ϡ1ǟ~eYЏhjl}K)RԚeQM/݆yw49ïМN8 ж0h'5NߡZ3"R?2dJ5w 6ӢU )؈2)A?l[zEswN߁׉uMELbيa k5Q-,TAo?R^8@Y!?Mge}pX4f2A:'$v wfXBqc> ˊGԈ8 jS??VL n{=tglYF ɍ?ip{:lIkܺyp;ZU2RlZI??MX4OFm Sv1m[Vƕc#JyA/OERl;Kc8oϜ 7lUˊiesm `6^7'h ckw!C s' *j0 gƀ킥NG%6C |zo[8Ub>Zdh?6l5-^[&[l29~Վ+9|Ypv eZYpvSaRV-yLpLWMX۹nw`^?\AA9O:-4EuY8~YCgnWkh!뀓 7s>Z0.TP.)ip=)` vUTjTV7Ŝ,}Y6GI~?-ؒQ jVS/S{/<+VQT%o[[0`je!#yѴ1m9X7{֩4'B)Q]CkXݿTuEIT'uY#W 媿kJ!#כLiM­F Z?s{I1!SGR7lj&v?,6N{o?7 NTrzBN*lN1cT3Z-) )qnu׈Mि7nrwtZt͖}VXwNoWC ËބGl#~l)\V6lю^zN{Sa+˃1'V\wYqmS~6nJ/}8l0l?êF׿` +V,tk βm ـY!Iۋ7>Ow㤡nMg4rځu0C{ eU3qvaUok:T%fb$ZI>s~RL,?[F}t祣(#Vx5S AqbIV'O6ZEQ7gGsU{]48,N ھ +3'}Yuxz lI[|ڊ8rGƅZ#)@"9i#O q_&z0\1!*0.;2xUnXa |[o-k7_?تk˖:k!V(9JqQX4;B(NV%Rinii?N$'X-gH÷Tz40]x?'S?jGVx-Vuz[GgN;&T`"粍3d~i7!9N^1aZ̲98oB0^ZJŽj;TJ We+K d0-Dn9VYf l¾v Uv `2l08 | ?= {0lexj+gT뇓 w8 7} ??u7??Mwles!V^oieขo'A xUZVz)AoAyEfm}޵pgeCs~ZP_%~u0XVo~q_8f*' L;xǯv{& 'Ao{Cvvkk3fI>oNE V-O<"L#asNߑIq<K/hXnOۈug4 0(>Nòyb;.#Vݨ-,k }, '(2f*[ZQXl~i-x5,X c.#LxڗaL߁T"K \Zv5n&ß9Ao?2 `֤5b1*w0[j$ w2(ÚFnk?!7wLQh9DY뇓 qo?m 0.5װa.#[8Vl_>>ZG4.QT3Ќ7詊b_ݕRZ8A6fڦdU\BYp:j 9n L{XV!&p:_+G߳I8Oqbd%CHX 9A?[*g4iigk!3?͝'4Y;T6*ZI1EY=NI(p\}/03*\]p[Z ˨>73y5'(J8Ū2z2k c޶4ܛgvD :媿hW@ (nm8ժ'=o*Ѵ(B!l#j^=oöCv&eŭTAkEcs{?~n^Zc5a4c#J\}=@Uun/?wV J[wߨv>*s`y[#<0nzҥMa"杆5+??H ݪ`YN-XٛWi??: 8+W;'MD_} &}o18k ja#Y rbJ㥁vӪd[1`pVw2I黊d UhFԐY/Ӻ6B֨?cs@je.[W,ۑ[Ea˰š Q C,OAO?; 5XQJ*P-DOQhZmgNȴF޲r%2vJ͚OZ ']p?O!J?!,u?N?[|YNNoVGʶT fW}5gt<gx&k!#9AoLT)EƊ"<<+jNQ8ikdjez5 P/_-+LI:On]w-aDwKn8 BO^EZ{ᨿi/yWL2oT 8޸SRa w? vꢶ4VrʒFQr&FHܧz|Q6rCi`6~O}LF!-Vۖ:|: X)I9oc)%9p,aly X)Nߓw!,d X_-'&;ً_mP7+s+SҤ?}EkN ]A}8'lٳ,+ժ-7&e˧vF]ۇiZXP1¨ QFG?uӅ˭܂EaՈ9'Ao?Rˬ ʅ0 b22V3ݠS&WۻEFQE鮠9'Ao?Zb(ȶ+>K#j
} n^f+)J`aQd9Ao~83CMVק/(_M>7@)z)tC)=!GsCgV0A;O<,ohQ+y+0*U -eMa)]NF-LZqbp?z1j&|93?uwYeIj`2LSq||)1G?xJ;l-,]oS#S_Ь )ƼwG )C Rnޟ4j> ܳ w1x~aMۃ@e˅N&W`3 | I/V͞7fp6CS[ۤ:pxjkgmn{w'Zs%DLMEռ^7y`+y+ޒ wV6kC3T 6ि7:C0-EUF@0 #Z(A+H 7qb[Ϝޮ:m4 Ty]8Di1L=2 5ICݩN|Emݪx5r-a'_ua+_-"N<>h*eW8ê124|fInCbPؑdTH#ZHx\V4SU''y?mM`s: Ԏ s*x;8Ӫ~ϫwXe_Vx<2OH%hY h4-z^@o?g?NW >5su㺼tI< Xi y,?ͭ&7G1yZZ'-T?wP|-@܌BZ,[Xo 7uu# VʦO]hWMᨿnrcaaAk [S VHdQRI!!I?NzlD[zjWgZ_޳NGZș#j a}&#X+19VjrmAoy:##HT9SǨ+W p۽]=~K@hϩj]Ye07c+p[v|D;ok<,y6OtӭU'Ao\'"?mq9'6Kp6ߎY5LK=( c՜'Ao?`U~b>'aKx.NwʾAoI  7~_bmd#J\o'TAo$j3)_dQR>AQ%}CVr۬ bSJ)}絝??+ü۴8[Jq|g0(CG_iLW$Vjʰru uƦgA道 w6H{[VΥ3cI3QHo*Y3<'X7{uG埶&jX1"ܼ`j Kr4\}-,ι{ ׯVǠ X>'^7ydY~|E< +LlF+7>milXF\ߍUSڢmﮙ*Iw&V3ihEVyoMI{?wC(िۀ[q wwfSzJBBZ bώ>8O>e?4Z;jR!- 9IUs=ZOzƟ'l<9d,&yU?$@JMzk<G[9VZj#^I=:XGįf̟ +4'])d䳣?͝w!& #o {V+W+bglUG\~[/wf- (Bb"h}Í_/{M {h#ٛ ҪPDq~n" ⎿wAZCt#*B!1?+j!\4]FTB1dobaYH}_]JzNlJddjf5~ 2:M?K`N5Mh,vL ??uHgUI{UX(XuH_N_.\C[r{ŋ&:ZR @l.piH;Ofײi/\ޡ"YpX@5w `%Yl5[QYKX,y`& ͂ t2~)ޡxב_>s‘gwKP\:| kk@\:.b[a3!/|>&A2]u 8\w-]MH /FltjyL7FOV!2iRpq2L߸;Vًwd Yt.= bT.Sj. ,B8'f{/'rv [ 3@?a-,`<ad9;n.8OI@fqv1iCGHm?QF B\`vd=g'vs(S3`/*)06Q}. QzX:$,l!KLU[PbeF[\k; o4eӒgaT\HY!63@ ^%[BO%4B5 Lw=N(X$8:Q}Ő5!2a@  za6%ux2 s}dL-rgpzx 8˕_eUr p\[Â_:> :[2Ks xpkyIPCJi]Hg?n4q>@{ZaS}~KfeEAMI,ăە4sW'Ŀ,jx2s!kBEU[= ~WrV(g?`zJk.RS5 xKo<jzÄ-> >ofӟ7k lJ'w+tN=g y^Pi AVyeoBb?cn nYPhm4Y  D+2%XH̅d"PɨEie1 W☮E?aM\/0O$`+:s2x S_t2X$(<%[İ`}_V~mJc$^'H#SjHք$bAȵH0)ž*,|~/dځ䗪픖c`#O#$B*靀o Z;ZG6&ږKt6~dC =YxRXp||E[#_#s v$-!Bg,6Vf[F@쑯8.t$\~B-4(9|1nB0D'O617CkBFN xs_7q L O# 3Czejr{z"_1ҳsx)xG4 ٔ.iu$*:棰>g FнL~s{`Pz\K!!e9%s{l J} ?gMv u<ѳ!gvݐX;qiBb@Ӄޙ<}XmS=_0yYA )$? k .@wh 2@=I@w{%e,^uX<ME@w7']@wo*}3#?й*t,07܃%@wkf.X""Xz~{"?Нn_ ?`KM(`<=?@gpu!L.ly\t ;n;=?`(Y4(@Fہ6Zbp끏?0Ӵg6W˞tg|s׳G`"蓦UG ^A@K[cjktd ;1 Q:kOP6;~ t ?m90pf|De,O̸:/M%?Н`lX`z2W)*z7C3bex,^ lBz`Ckpx2.]Do +>!7+{!]+{:cMw.w+{Hp{w _k62<߭ sFA%Bb^ѡmW&PO@,1ie`/@O'\U@{}n[k6DV2WHUOj6E:? _ s3d6R}n~2?vvOFM35> ?pfP'cTE*ܤk6?X `2*լ; ?Ha{2+< x,?<?#lضp60lMYd#8Fkp.ݒTTԻm ^&<4~߿J=px`b h1aLc?-/V3ciI5jKx4Uv)Q?і.> >Y73)S!O)$ܝoii=* pwK*-ܝo9b@JObfNܙyΓ:>?;̕1* ?;,D@h#BXhoI V;$Dk:n}GZO,]l 9T[WFӁtpzph2:ȷ唝2PK- ;UG(K -PK,-/LPKJLPK/Ltoilet-0.3/fonts/bigmono12.tlf0000644000175000017500000027407711327706453013263 00000000000000PK- ;OY-f{wY%Ovק8hh}`xZ# 3$J"HEQŭjMq{&PV{Om9mȼ^Vs77Ŏ3??K8#?ٿ/OԿg?O?O g/ ?u??SKtt?|5Gc?[,߬'aPM$o biw7U(1vhݗ;N/HTQq[ߓ#meT+B@bd{F"g-n^zr7t 0`>>@[N#tSHx_\`ϛ¦=B UjY {N_6Iv-#UKtFËՊ#,zd1F 94mĘ TʺSdOQ;䙒5+qJ B t&tTЀ*Jù ]t6ג[j9{㗬R 3 eJW(enҕ{p-d(d[`HsLa7'/ԑ݀"VX\W !HvWOrHhV>N!Rv1zq3MЃGW S5>4$E$΁_$.Ymv] J5yt mwlw?j&3Sj9ڄ9]k|dn=ƁMK B|gLub/i(yPɢ(I,l@9eW%t$DXW4&CaUCDQDL mI&';H}a2uF ,/{jNHX6w"uBt\x1~Geh#3j Ս7g}`>lg6Wǃv=Uej#B"ntC6 m^Ғw81Cpmwm ɤ܈$|B B(p ɩ=՚!+[蝑7#.CV=Y$b1fxJ30_&_S1O%oQ?Wο+2:?gzv~mdW0WDU)a$!|XӁnDrk56(kT{'=(FXElJϱAq.5/1U}d_8Oe&.s WL-@`OMAa҄7u:gS{g=fɶZ6b]2e3 5{sry+‡CP}'>\eH챫A*{KJ5:#.@h .DY GTʾ́k<‚ ݇~3Pɣ59_:zsY['tu];6<d0B C,̎XI!*+6#ɑLg.T=.%]`yza YIo C")$4hnZtm1 1v/Kɔ?]JnbwPRtVۆ"n"^VA/2Zap0K L ,t*.iJ]P:ȥ%** u>eƆĻDb}*A~JxQcSɷ="@`8h}AGV%b vzm"3~= q浣K7Ct,V58+{>T3f/qu.3S5+'nQI/] ҍ[XW;iXHTjJNf8J4#ͲlOcOu.جTLq3V*#6~>{FtذD#>wk+m#>@%hS~V $]ZdЈT]LEK ZДTM'?xA^x{>'xA/^ x^Kx{ 'xAow/cxk{'x9/o^Cx^#x^cx^x= | O>' ^ x/%<= |O~{_Ó^x= 'xA^xHGk#1œ{7C)OE= U&@Fz$qm e ;1<eRxSʏ1a!vSTv9(O <ҭƷe-"ߨ%iA;-@G*Ҫڋ5“{7Yw c8fQ=4α/9b푇\ЯM;>f \/ntr27Y~ kx'K?q!jaI@˺hD>G7O7gI'@F*҄6@='u۽ F' Y(]bp3"nIzx"M/ok'K3.U%(_@A)`&C-P6/JDF6 #x_*V/A₆) 0ÓmSA|v ;'!hjq Okxl&݄ñW gf8{h$F}Ū6T |0+QSlg| 䯷nӔf}q O۴Y<:A۝<͐"cR\҄@ҥ"j@'GYGh[7MDsؒ7"7p=e"UIT7󬉤Ν "JwX ׃V#J0Ӡ?'ŀnaA$"A' }˂$WO͆";n<?ۑEn+@,H-+ʮsAYV9z{O3k-bdT8ej`$sF³)Ճςp~l3nH'ϥ`Qˆxw5! $y&&̎Sx "4toL8g߬8'jSIzk@aN_)P_,A0{Y,7~:ƯDx5WW&"n3>kxEwf/kow[3 ɽOgcxk8: -m~ -i!R.y'{ +{=ߤE^8gG0t Ԑ`YQe? ۹]؇UA@01=acx;TtD&#dAz F:Z-^kQ6j nZu{=3}[Lm9:g4ܸPįה#xHѽא a1<+Hύ MW.{m-'~}=&pX ?}~w_kSD` w|Y~vy} IgCGn/#X lbVX"aJ'| ϒ13>EB>L\Ѐ, ?gPb%65<+D>q!7O1se--k,ɐ7M>*n?ȓh{N)"6óby0 ΀1,]?j*pz KxfRǃ(!r<X]@0gQ1۸gDƇC.Y]!_d >%338 G#2 4BE"1XY~Jq>Փx͖*6-'(u<9R?_곖-'g'05{_,O/}),pϛ ԍT;"_TvW.#8_Q|XUR1ވo" '}tED0&W]vG@kȷTE&\\ټI%owsfWZvuK stYMaT> #DvRï}xr 2z{]̒;x>Y{c^73'A5ؾwwSE{#BQA=QHAEʌcx^=:P@=^- GQA^sXqϿGw[m0iDZJq~΄εf8NOy<;M%ua)U-kJ]03x)vd/S:get*|A2-л !7NF׳<Nj$׬:(W'-ҝuDAQ?[VO)yU kxƎ3c!0j>`|7[ʘ fnA7!p!Khcx\{] 1no׋^sE 3NfBr֧Bmϊxu^_Gy< `:|3)G? s]ɶX#RvS w; r5WoR7ZY0W|U3Fu%دk^koK_?$ɓ +ny<"GeP^z wLAPGJ7k)5qof.Evvٻi+oN QYUR2EMLHCEIIöςe;ÈfUp쨆ʥZKzq /P! vƯ\⍖ U(w䟁"Us/\F%`znOt3 :1j.Ԣ 餔,2[GY^|o @aASG |mE(B;a`opx(ѫBAmsnůo eV ;x-P.(rb}7Zs5۳yͩgԑ:GXꏠ]&}/݈w"޺g]89eH4 2 u[}!G{@V=ȵNo)t3K*1CI"qƸ:׉ k5Mv(؏E!He(s$x}0pѱ >5ф-.)kq<-Q'{%W)$u#.حT0ЛdȎT`=#:35R2ShXu /b_ 'N ୰ǝeaGϨRiUMHz)!g{y$lA =Y+sx݂;f-g3ێ&R9%F,xH%}cgFCUX .JxvxV ws.E+@[ &qT'0&0u5|9N*Dhzo9}U.-}Sq瓤}%Ҝv:%J$^Ŀm=$h;_@XoV9~j,Qw?̂x]Y+ڌc:k!5rJ^֬l;^ȴ"TRr2dHDh`elSpQم+ajW "2&Hϰ^|+!1{R_q Y)Fo$PNNd&+y03Z4ͭ(Ņ$H Ň4_fŷS i Qu;>[>LٷJǰ^Ŀ0Z4<%F>>p5}qT-Ru_A=^ w~.V)&2RI/<ΐ󼡓H+/ nt洱;evFԵ]L83rI#Z˶xÝ5ءk+)5Pg vTvYΟsIoXr /R_d w .'ܑ~늽5A+Jg1:_h%Iy8|J+(DEmW%$֘2.cEËoWPS#'8J9U|z$cȴl\qH`z^g_3081 Mq-֊k+l/E-ވD5P)\)q$r;וX5J0b4A adHdΠX8 #tَ$i 6~mT\ËbAI @7D'T )m Ҏ\qvlJÆxD}&'.IԤ# eJ-Ë2 @6t,+D/O'~ /Tqg5 N8|'4 wB~3#hVP_w#zc曹/*#|UY`? Cx&* _I `mE=jtl !,XT=G,VI]?\~鯀QG+"A%J^7(Qpij a=;6ູf^dM-e# J"n^O(Jf#~/aVɪb;"V޶j8Itup /_@hPJ&ΕcqI*ovEr4Ihvh_0?2`jr*" ڃ>GXG pfdZ!DeD'.^ܕlxЁB6]fV\ٔ^{Xtn֎qD"UmJiCn..۰S+euˀ7D .F6يk0ϐ:\5*8ѮDP~OV[7iuvգ]o[;{u⍤^t֯Y)v+2&n _PuTKa jGVrP$MxO4Y1@D5V)GPƽZ<ǿM<'ӹO^ĿA |{S1uꕆ yEYOO ,(:O [ ^|kc^MIΒibG&qlOh'4H%LC؛xML7,7_P^ 2+F(θc_wT_Ls[{{|^1iL8ѯ_xsz8 xY T 20ǐUX= }  um(`JF'- CeeDFΐ7tL6`$/pˌo0h$YQp2ԢU +1[2վ̓"%@o\'{/۹T8hҌMGpU# t/&&2^וx󉩰Y1($M #ΈcxҎ$wcD Qsj"aa g _^Y F g`2/EylUݶo]5Nd/ xi2sAK~Uɿ3Aٿ=wׁI_`鎽lPnpFxsr/s |ѵ]fҾ(FZ"N؛\Z섵똙çw8=Sxʦ>^ y\3t<$Г`J3"H;֞>ODv;;Ô3x7BdF"|.TDZw6>On4& ƳK횫kY=t W] g8JAs+*If^kQ[a򏾣*Q5Xh&S499VEdٌ< 9]+Kx0 ޠv, }Ch)<|D3]g ^&2Yy"l5"*;eIy\Հ^U^/fcxȎQ{ ጸ^a}-OYxvw*m,SUe|%uן1.l| HRV(M`-2^3Wd+B,`4LuCx=(̮ͦ2kNH4he ҵ) QJF']}ad;ٹei0((kV"% Kmdʐ Ipëo rFxIGʟ9⃦aXIJZ+ ZoC׺%2o}7 L!1UCǢ« hUG%BWiW9+junB[;8W #C-!p$M[h?+x0~pb>T"p^ 9M1 F MIj#JŲ>,EzJMhUcs\U[J]R'ɱòP/U+ T~'bH_S$ܞ"LWB\JW_세b?>70:?yUG=O=ɑ(oj=Ʊ,vàkxeD%`KaS|^v`I0kǷ bozI!p=Y&L78s(6/W^=1v)XcEҶ>o}jë|Wf96.Ym$JTD طdӚY̎- (S"$ |0HSg;xAqAsJMfZ ΰ)a& F(?֐31ɞǍ89wpHT:!~@bs!,ZOCd0E"ΥK&7qv2TB V7AY21s n\Gȍ&nb2 YϠVílg R7':e Vb4-?$X|2PhV`x^su& Oۄ D N ^n 4+^Q9/u4(I(\*gqĎ |WWꫴ4dv?0{9< $=^tt\ed@:]\ FVYWa`$M쪅S#ow^~:/,?Q`%Tbu{1l2\:CH#ܺ#)v:-ʘA%0NZ¦[Ā. q?8&bD |ՎЁD wd 4:2y^.xKiwG(VDb[0O:aR@4s2l8S GKDgzH13:艪:q 0#xmB Z!a\Tў:GH4?ש| 0 Ζ`IC&*u1Y%ְ^& {oTZj|Zx}{*:y~ZA i /yKu)b$#e^s*㜞'o-=<!ƪtΫcTkOyr4 I~FKRâsxE/#P~x,BP(Sq\}?-+Ez#Q0$EqJ)[Rdk&.u61g ZsgTz&kozzs.7V8i 8uXMoPgHƐR%OO7?zr`A'ad٠~JA҃`!0̮Xd#8))-D.ٔ Ԝcx];Z佇g?K!㙐=0wamSرr:*ńPN)w0" @TΛһ]p| ,˞DšQmҝ׿(ߚCҸ ,=fGfOՄsxm,?o̵Hj·AUWpE dPuEY<|/n=KgVa!N͟-r}w+9O娰1u*Hj/ q.R0ˤ#x]=gжU"]z*rCx'v1_Gʬ)bi@嵑r7ɳdFnnrHQ08#fGY})40`3!q^&*y*8Ϲ/dedߙɜ2tXXI7n`QQ,Æ:~όI$5U<_)F]DV|%H!Cp"E"$9 PCI|CCճ^)d.HZ9+x-2,Jڒ^kPLyG{.D$`VRc;!WqU1^ @a('Uc`֦&1#h!l [@^[L1}qk࿅wA_c㿘ȔDqUwcbZ'Цz֢Pe.NQa.GvkU|(4iMjryQx߳b6+0FUHZd`_5(庌¶[U)wG <#x_j/ќpaA ,9鏓v*زF"pEW9Ϭcx]H0zQEҞ Wu̶+$XD7m':1J v:G)\ER(nRzl*~,ÄSx];kXh+KDm:rAQ& dNa ,8%򧰀J:Kfg0U)ɻF3ҜC= q..9{godWxg&vtkf'\ MK:FK, i5~cMyo3[-Y`%ӊ!7*O3/} MP 4:J-e 7KD("&sa}5$M'z.E Mo H$l2WkiA8{7c,=a CX|&\Û ^>($'/'ȡ,j#2=uAGt2Gx^,E&g2G ǙQ1&e.!RPrHr!c"]z`| r›,f邳$F#x)Z 8܁T3,H֏7}ǏՠI7`o0{uo-۫077V 'ö%|B/){h Ư@"ЖI&|S!`xK<0 'n4("_O }vjI~c.Ak`|݂ ?,FB N. !ȓh{&3C+  G}wxsFryӪ5BoꆚP]4~){NM H>Ň=V7[ ?*T6gJo:I'e fjXw oR2ILf;u`B~0 ޤp T41tpQ6 E*#b?34k)YD-+hqoR8/{9mBbPY*e2l$b pBDVxe0 otX 2DJ'b 5$hV&{%ޑ2 GΫAglwH8hyW&:䜆if͘a*g_1& )J%҅Itm!DɈÎlD]&C:p@c ~!X։)"8NSP >xG /][+].ߑnȳ WZy o_iUu+WI:ohT{yC65-I}yű09+r mSY TR>o`~o3JLy" HsrIrO.QXݺW} =t5 Xvjs!`'D  ,sRl~THD5ۉSoЛ̐ 1?Oc>G,df{|=d ^1}& 1s[`R}@,_`9ϼs +zN@W ?LF ,g ݼDNIo7@;߰@#n"SHT䒁~49g;9YAG̀c.DKӮhij$^Zf~T? !٪DF* 5@/G_P}` ~@ 6xs`m-]-;ꁷY$;.IM*Z[Co@ t7#No IPČ =lJhaOC~t\cQBbS'$PzC2x ?Z"_:)(V$E)y֑Lwl^ mUF&K^Ps#Oz5֕%AhsvkXu}0mLƥ4^=$G~Vu{ o9ЀYLuqg&G=76?3BTӂXDe8sRNUL vmb~ o5~KQX-3Rѡ6%EQM<<6? t( I[D9RO=U^^W +xZʩ@ۂ,B-( 6|)ĩDf`rG{\=j_b S>,j"p\/طبf+d}Q76mTgt"[j̧}YjWݒ>U7^y@ݻLy o2%1`Z>q 8Yi HMl5om4+|юv3VOInDŰFsg 7U%.pT|ga>mWo.TߡVWƭr}o*Oel8x'T(1źW Ot #*ErpE8R=>J\ٱίfi&A.~XP816&pex 5fF<1:t+4En1"F|u.[E1.×o῁ճu{tѠ ~>G˫Qvno$TO{3Vp8Ya+>G\WPk ط6|jʕyrlgNұ'=hCX6|% #{K10#7'hM33@HT]LBgIϚofIblءɁb&Zvr%ZAqO%>6BR;7XN,(1(k{~s <_h#Zi[6h ioN]27zi!Kٯw7Ӎ(_fnTX/ ah"j'g(tdĝ2}~9bV9w9wPPbh Q@IrƋz˅q.M~3YهwLNh%堟T=G4,k]SZ4f/n20.skgUۂ30&w˫-'y<>w|¨QTh&P?3ߡ]l۫,O=>w| Kvn9xP{͍XL))P*}$Ϣ#xa"G5Қ 4f_k߰TՁ y[tH2ûXNjM_P .:S{dL{{+wWB甖=>w V` b3],ZVTH|Q>aT:we Ycd4e+h~*.j7jIz%V׏/HlY\3ZP]» dsw} Qw_"*Mf~ )XAA3yD89wwj @ֹTqukxW]\R%Pwu: "R/IS6@P M rE ];$B,$ '칐$iXWd0-;eI5u@_Wo]w ȧY ,VC_4ބŐu[l* Kop6_zɈH5.A6X&W1G>TEJwTĞ(g@.qG3o]W r v/px cĕ=p@*zb:XT*,'&Q]w8!'.[B3>^_4(\.~dHe@qZyB ʰe!@ CW".\iO)7vW9w BC!Eg.{ TQ}9E㖯KQw|b?!3c_-so "śn]W BȜduvh*AkS i ݈<(gfqﲿ Lts]1R,f!%7 lHʅaȧ # 6zv]»X4 1' _uHDs33|M|3.Й-zpE,C6^tb'![\E9ٿ3+W MuHTKa5"T 4ΊqhS.7Fsc qioygn]`_&ࡥ8 Dǫ^ { 8Rdm|ؖ1K~AcY^LV,XwUE0Lq!WYDKVa. ./٤H(Ŋ~@Y!Gd35!91% >HX6c \.Nfv8˜x˹_Q n/OhRAu׆ݱcK|bJAD'i %jN`Z:PzKA0ûԷ#X ~2(qғ*lǁWKlx*gçt]HKV‰]ﱖ)Pftk` ܨu3s,Y^ w(JGp/ ſ"1Hy8x^:c|NvX,}AtGNyI-v4EZXZԾF x4#*e$/]`+跡Q rd*8<3̸w%}P,o(f[>j<~e-I@7"]7.J}Z KA'|D%$y2k]s u"V%=e _3U٫y|Qb }၈8 E1b7A]W*hOиFKŵ=3ySS[xR-lmԉ>Ȼ6qPlAȻ)'jKZG'+ESipVe*S~|V%P G> wlڝ.cH-Ci|Ox8kH;|]OYcFszqBPC /&ol7:98P8M*H~IQzn}3-7Wn%r1|'g{!ڃ)=9%܀,F\/"x DM7Czg [M%rfgV j$9nQ;ս6 E̓VK{6[VbU/f%7vkUū % ڗ)Xū1Ǿ^_U_M` %3 g! ("fmdW@h{NTf<lweN.Ȍ P*ت*OF5ap* <1׭cg6kY:1Q?D[DCԽV;'uLUa$E5&/] %"S~+McO}吞Y`.=T^"8ඵ)> )HlnaMe\H\PWr c_H3ea8a*'{wJWvUA{cN}[\6*ἱU.[̀kx_ 1fdMq{̸)+Lٰ ߛEWX JT/>,'*ƌ3gq*Sw*(Sv$4o,'•r@ C0w> _xt]0r#Lޗ|oB,4}-0Gi <_°~ /gвW:0gm`s$t2j"N}P'%p,I)X~(o>̕*PrTo7X{ +kC?_QEۑʩ_Vlv1+x#7OoIHCNP}3^ Npsh50\B0te*M7v%F܊Vz2n}$/@P%R7M1ju7%p>%;G ?zo"~]]_AuW=vT:3CJ,ǂUR`9а@M֙;x_E倯2TyտK~Z>L_YYoDԗ !IU&&L| !7Q(^gFHQO}(5QG];_ya\r<>>f+=]GELڀv4.ZD8_9,h{WaEU$ikWT F{"=Y~m Oق{)9PrV=XFy*ؗ>{s࿂_3-t q26ЎA| !*9i|~\izʊJo}/ T2Pz(C*Ǥb(O1z@ʙ-/J@^!I8 _J @dvK#'ᛥLT7% _GfONC,Dm0 csK=ECa v׉fKE*|[5$1 |(ɬ_.Z(ۯ(J1":@>CU SNCA'u)5+z{)3PO`pc˨6 /$ɒ)L& mE zEʩ_‡\_諍+7?u@FH8S)d~itg'"g5|esx_\1+=jg^DHG?]nKiAbޣ>k*ïՇ`ܭ}`=蔦ӻ<+^3'׫q8tvDRة*J=K56h1Pw!?}nA]gO[um=kX?1~z9ɤHo C~yƈ{6>3ɻp^ǒM Ӧ+hF*5F#̨+)whDF~W:K!'-ptQJ{ > S&F`9'=)Abv@̧zsOT.P/C*GC6%|VWsME02>YD?ڸOxÿᛒSX >T+bÙWb*-+djZhXq whyw̏!XU`$ʪʌ̹>o!ka cϧ>;Ѕ:'C ]?00>gV,Ia*/Wm=;df_E)<MuOnUԪdȯ:)stvJ2g,6$:O$"$bdMmTO3|ϽN h_R`jm~nft6[5M*UxDIl"j>яgCvvZa?)O#J;?tb0~{|axOCQHtl"ē118=0HJ FCi ا!?zfAhW;jAS,;HL\&,b~?9cmד@&E2uȵ6BY+;g/f\%uD|7[,߆5!?K{AAP*s=p~8S!c-># $现&~J2P {;?.:ս #ybUr!ƞK=P܂3Hܲyǚ#[,rRiN) >dge.PY9w(Y=U ̞hbZ?~L_ÇL빅ą֕a^Y<49y}*Ѱ)N ;=吞uX`iJC5%߭e p5t1|ϡY k<).|W|+d‡?w:OY6"! 4V"Mu?-oJdGbRc^l5@XG%cm]sC~v۸`M^tV{}Foa`@[vKm6WSE|Gvu~mX#CUiERar;g?pmZܤ\a,{s x.YPd,LOt\)R0ClRSc~]#rq&ޫ4o\fXpYT;()7T-~a M2ZYE$6$l<Ӳ#/CaYtcL'p52PYc'[& drE5Fy~^XSP?kz=jȖ^^R7L`XCؖ >1К[qsoIÇݤ}ƭMN/Q/CIs:l, #s>9:*oCUs8|~"c:NqϩvrXa5L\S 1xE갱3O%Yjt熧**;B"4bi!D_}DȰ>"O hkH :XF5+c#"+69[b1sm=ճ?>r SX=(c\`8"O95Yf6Y 8Rx\D t@CgO4%flOF"w@w cyÙI>) g4h-6.>| >‹Wa]U:rٿpBֈ"a;K(=!|,- :AA5=d3xm\ہJ$N6Uʓ U%M>&sj08Vok\q7%M>ނDc)OКЀc8ٻF\9K+&LJk֌m-b|Lev3 6@Q1INd/#01;G*g?l3;`𔴦w@,E2o&>d7Z,i[PGx%= L+w$i*s.c*/h,l΄=]~dm sv]bACkB g*B&<[퍨7찇 FW^ 0^I?LT ]Ekd>C7:,,@%Q/ĝ;EjٹZπ^.ЃTY}X=S( ZL]D9V&Y[EiRg| kL$:dMc$6y6"Ueq>HEҘ1W^6콤aIrhU,&n#6[䛐ȫm Lrl,p46,&(gXCX=Swd6[ fg&]bgU4LJ++WTA2n6IƾA *˟EߨmhDDTNXl=ݫX!ӷW).0VvA9ɚ .Ns zV>V/WM]vUcavmy* hDl=cŬ-ޭb j3tW%e1>.K۳HQx2 h@#pq/ip ;R/۸ޭԆ]Q&ŕiY$ %m 9{׺%|: !;ԀAF&ζHS:^ǒJQ;Ge-!io&M@7"]2 OvN wB>V[ 'Cn}/D!*PԁƗc`"L0ǶFXGrI#y36ݦ*)RHa`^e!LD#5HR[ qBc~\^xޘDT4\AՋo{ȘS|~Ԋoh⻕=e>pmtcψK_ tL 8٢}'b bR.jbiΝz>V*>Jx…$Pi`)gZuU_i9IA Gl#h>/H>8RV>.eZzϛlod;^ jIBh{/LgQ3] H(L"Tmx7Ax} XV$0 8`>SJLQ[d@!:mAےzb XY:P%N FldY1xS^&վB1"\=XUw Hyl[d1^h6gNtLj2ɵI=^9xY KMTLf5|&58ɣl N>< 7?ld^.]YsAq1=vМMw,1| ey.;fHxBDڶqhFVO㼹=_4V(-|K` [?_sImXZ.3 Sn3>tj 5"mHЧoi櫀navo9ЄHmL( gl(yfpzw}_\8d1ױ?_@I1mVrtX{__ca{~s♜'2qӆ< 7R92*ѓs sAaڋ*!aOAEU ; h< UǤoPWw+>Ua|}t_amnawMppb[y2 )|Q[M)#]vR7Ѣts6;Wыv&jAt tF CK7IU02+Aʊ=̯0<`>2O*(<8#V_IeN(3jhU gvҨKi>)= <=`E`[ cRٶ_:3*vl=GdQ^i>Esc͋^ NoVW=Iz)2::q>Ug*&6T4 Rp?2]PHHUçͽF lCߢ 㚁U}``0!۬H^LBŋ;#92OrEbMTqV1NejD֘S"9V_,PRF0ߴSx"VDi2E9”A젓Cv|hpN!|g3, r?ޡ TΉ1  Mi9ʈ#ŅfçA׋"6`P*y@;XuOw|)YkeW29,9O dL{ENЪ}6Yuad,%$FGfϘs;M B?(kTSp9ϧ2"V1#Mju>&=>7;ERmj]e;k iMe3Y;+ӽнTւkT|Zd |T|FT6} m_ŬWuI̸O9ݧ}Ue&A~{-cUyBV؝  2^r;c}HgEDAs9J RVSA>sMzUM=lo׏OSN#NFz!q8O/L~GXX?]WdT,jwz䐋ذ>䣟=0LU(0"~wu`?O0c&Ē:q r^30g=_*%2fUn,RN<+DçX.31QWGzU >w"8 UMDMPmQ?YMO/k+HLAKHՖ`q>eWf:"~g Â+Ǔm_S&yS,O:P+~(Zvߢ""MB ȣщEX8my =P *<h˫]6&JĿ>0|Hv* nӟHpp"\7€ ;n*`q)X o ;TB!+R>#P)Ԇx:V]tHS Ep$$;O1բe§L^ȏ&{M );k{q%Zqr]G4+PΎ-B(STM-El^P > 4҃&ЏOWDȚAIyޓS/ DzP'AYdmHX =y7szPܧe*2;'a|z989n$FT˵a%|*D?7W4+w3QI3NVtlXHxI"(.pm1y 򿷰5AU`_w*Ah7ix ̀OYX8g!79/>9f=cT+ EzVX)Ae@PێH>U4:W&8y'(2u%Z?Hl^#{ћG+@o |u%DX$6rSYgqG0Oz3VB ~\>"ഇ([d@{" ]P' Lr@_؂4e4~P6б+O58z5(uv!kZFz/`~Q|+NssSJ[说4qo]BV":bչ໵VHT-B%(sЦv ?5\!w~}"N%ldU P+|WAGE y8c[+Β jBژ/L5#eiZ~@bZĤ]; ]|wf&Welt*:k0%q;[h51LrLW^n_ G`r+\[B::3H]ڃ'"D!H?و*:!@8B9)aMѧ +l+z~+}2˖IB~|o$/حB=DB||c\k{h][̗&5e¯5 E%gYݚ-w9M TIPPCreBpWz>v.K}Lo¹^-CcnA.;P-8c$<ߴ:ĄbK@8adI|[9@tZB-@3 >v $IfvOjpB>/Q{]Vg Bޝ pnup-IQG;4 994=z)&Lviepu ԏfb#zȉpн@/}ǫ&'#\sN {:Tg۽??uv-XXM9cn8W'7.&d\ܠAYkl;(>;"ToKJq#{Jqg䕤 ^c\% GH7uxEBZlТHZՊ(JϘ(OlP݌DXݮ} UjnOhXɣ[]̓:M@Por0rƗ'KHec30]/g-n}oIݵkWd*=45*# &P7OneMA ]^?$1#/}k\Ũ`A]TM@?ݤtg3dX;Kc)#BUxyYUCZ\2{S`jZGlaD| ~Dq4*9{ 6yv颎J:XX7$8|.6REbXFUuB"'T'1TN6lD"<'2>ݭC's<(qn0ɹcftځ+LE-Vg45;IĂٺLS#\) cNv^_L󓅿 UDsyw \$3 DCtLuN&L]/!i[? |qѫ%0 8#*yb2)6`8mr~ kg` gI Hg$3ᰝT}UUfe/͟òz^HL KB#m ~,?- /s܊9G{RŬGX.}tV!OY/K'a8|8ϛfJٶƽs0b{+yߓY`efF2 |fu$~uZg[ k| 7+6+Cuens2/E_J\8 |]uD'+5{l0+C|\i17۴uڭ'P~R'b^ r"t6 ǮQOk)7:~R)b&T& a0cf8T{Hg)kZr:he6;Թ r#U\Y}8'JY_n>teϜΑSÏ?Q ZHځϋ3I tٞzZ= 9:ւTB/10OGoE9,IgRߤRnjf瘴\OxP/V~seWQ6q/'u3ւ\eJd58I',-X*Pfq B*Ox=5~ ?y~) ]\ 7ۚъѓ,NJE)٧ q0Zb m5,Xn2 b`>tVp, zu jaiOw'-uT)) 5򵃨- G:{q7qΑ@Im0SL 3jPi 3VS K0F͓5?\],6s ?mǀ[-dd|V"qB+2P1ZV(16ڟ-$YQ=;Tr*`L*`|Ƹo&MI(^Q_KjLm jUw}ԏ M]b$]p kkGa6"$Γ`uAdJ2h_RX7;B"6H]=tI딎,#ځBlT"Zo;!$5P^4fhӱ5v4a V[c6Fy UvMv~$5 z$cDA{UYW]q,Em ~ݍ)b?c>'J).#etb#ڶB$9FpVNiXL,Xܓ-`Tz[1jHQ:ܙP^䯋X`4.j(P!$C$'zb% ^x)n0&'T'&1c[gt64 JY , όVnDH"0mSZG5HqJA9cB Q\X7b_J|I-:#_ff}Yk -Hφ RE5;ƅKH7DZ S6 hA(9r~΀#I-xO]4"2>嵜@s`h Ƃ(jCDD 73@ h1PeUL'P&&vgƋk̇8nP#|ޭjz7ƯIeIzs% kDZiɷYl!kP>NE]c(H-,DZEWLUj_۬e`A+܇aC8Q,(YxbD&--'kZiȂo$gVwhhQhݾ-Hbgwת(6w !vXu$=&hD!ۅ۱V{^a[ ‚"N"hX&jo!,*RB!l~hi4x| /$f <'J]=7=: o!⨷ѪkG@i!y'oJ}*hA@#4eR:$O^V4xF斐;Y#7#&  {} R&P;]6=GK?%u<9%qgk&\W!f[F ;Ꝓ<-dtz]g܋5ze/"dտ \8=%mےN?ATx`i]flK|kܦ,;JVR>c5flI$.6O<^6=sEZ&EVc=,Y& <#IWJC,S 5f"C^B7R}$Z'\T"n]v:Dgz3+z[FpM̚g5%OD ں!7=cgʰ*[QygN +y\6P<̅(qvm5 s!Cд!6#Flڥ&rl[QvC.}x-JǻZaXןxbf!d  aXM = n݃bkUS̩E/8mQjdR6ժ)\ sJ%7D%ksηgxGr,_٧bj[Gq$: me66t{eO%_5x 32gWƠiF<!hFAd:W&F!a+"Bx jCTv@Z*tJ v 5Ҫ ,EgoDl}'B^ǘa$2YWYv/ :9I_FC֪ e*82RO;E%||!x^>GM Cl2m`"bn s Cj3y`e-W!&1ZTHVIy¦_CibNdA.;@?~d@&7*&W@GG(Hb$ ;T@WZ:f£h%qsgSd+:7}paIbC _s;yo JT";B7RT >(zIDBK}8̔q>D 2m *q _ŮُP&zvOQ&mPpf%{XQv(` d|~:/L%i@'[IWg #GMp789y Ѹu[) /re9,D t7ׂS9sũ0\|KHu_O<&*7DJmYW! "銢;19 5,nyc zTH_AvBhD³߸b<<ޘكa˪;@~=J*؜ RK aQ dy.=g}|>7 m'!>ܜ#1DG 2)>H~n#F BU4\=2h؂,|Y*5!Tni,Ͱ෰8ԇHmIƾX tM+*d"6D])(v;z1|K#e )5 0Xh=tx CԵ {_`Q~^eNs*Sq0Qׂ~( B2ƫm"El8e<ENȾwiԪ=FD`7 5Ah@~/`8^#0=gރ.N} 5=Allt`8_#PQK*.eb 53=Ajl`^#0=ڃ.nLΖ k={v pF ؗT8ӳ,ayT`U G^!%^ Aj7LUH q9v!~p#59ҙy 1^P&t RC$HENaD4T0 Q]APm4 _k†b"/[>}WS0sD, rY`4fny6?_Au6s roa|2 ⻃ 1EkU( jC(]˙0o{C,Qѻ.9x~GC۪#\t儇mAtXzXn(DT5YhJ}p1Xl\=| 1 UeW6؝ eY*M4faͽ l'`]Wk쵔WLFi{m<4¦z!Z#0D<[kWgk<[K Cis9v`bFW#h)XngzZ0"pc> q@h< wXc^y`@vI[K)WSBAA"?d!q MCzM;2 *Cm,U89|S)G:sdP:\{V.Ѯ0x{*jGnp:ZT)7]QrY~&L>@he:D5R+STlo`1/8^gR6^,}K1[#cLB1*j']1"t:DIkbۤj^9`Ul!Z#{LT6hq0r$*jl^uf@JXoqQ q1(meQ֕0t #&\!F 6V0NXki.OU$|x J_z]bԛJ]rcD;?78LA{s 䴸%loi+ ѭc[ޡ;,: C ~6nCbWx2qMuM5 QΒmXh\IzTXBs|FENheQ^7TGi[Cw01488>:DO;ѧ;1!MDf1dwi"nCDdЇusEy,MPxi9 X;Ӿ:*M^8RH=a"vu[+c QɂuPSCw$,vŖ:!.nFΆ[6bE侜A`-! CJW0 4q-წ\k%<4YQ<*mŝp4>dVkE哻ב:g,{:7A],Ѹ9Dx&=7*7#ϘCY|<លCĘgc B9Ėy=5"<brpM82φG&Clg#\ÃX7a]w덓d ԩl]}=0Қ!='z;'Kuxn$/輏o1qcJ PL=`D{ DIV#X# ܎ָ&XlQo>7DJHbR J NwQƮ\Tר 3ȍNL߰4,᮸o3ddVQ*LJw_CBE d=b6D'2ޜyȅ9/+ڮ0,i!evS~)vgky V-{)l0'C܌%(k[z%t|D# ArFԅdQAO ^`q|zʳgqn͉v;I33X[\ѻI-\!Llsy5!@!.i]ye8”Z@!?kg:{8![G?+Qrv^H:ɛ7Ғr@Uqf 8_ v: 7r8)ɬwc(ID@|4h - 5N qꉹ+͆۸26P&m$ڹz{L~$9ȜCzbNI;8ʜɎn- rIpijMj)pPDt v`dQ_k"Bd ũżk4Dd 24uKG lf׮o(8ϴ+P[aMyR<ɉ c&\P"t+ 1QGM7!sp$ h trd.DaX秚zUȶ6uӸJ81yt3ch&ycGxNAbpȉ尪XsFAu\x /"aucYk7۞,=έQ~,,BM,j |{NZtB5˸d>,$HJv-nLE ]Lg y}&/j; Z" ;_bj>\"[ oDqmnSqS~;2;ɋ V Nܨ3rϿvH)$uC[]!vZ!_Ft / ޘP;iLSqs <f{y0bUv.Hj'tIBOxbg!;gh۳D4l3GdKϘvAa1@wT:7wQ?X8 !ߪ7@;Yv!)Y )s0[Ii-1jF[FƇ5/fE'I*5,6꠲@z-V 93Ĩ;2^F9"|mꞚ%u,丰'"wnf q迫hAugݹm.8[E2nY (h1! dڹ;^r;>+sQr.L'0D7}Q&֡?D ]}ʝo<2G_F͗@F|g}N` 9}{ c>Y w:pa;c2uaKf{YStB=(GVP-b'JRpZ, ~F|j)b8W386yBq<|3-鍃r̓(P!D{E_y烼e-ʰ!{~Vc}ƺƗ ZIK*FvSu{#6n>ٔ|AKnZ옉u _d&^[!wd͇Aρ$¨-]4C4'A@o 8E-F Gcg|F( [tVx'[q$ c^3ڴ!Ul~ 9Y-Ȟ-S ,N~疃ƬDRI7׺ǏPžU؅ɽ8n-t gkK-I-\Z; 2zElB\QF-%Y2q7+kdG_ K׵Ѷ[bJʹF4+!GנQbZ/9쨹֗IzP ix<Լ#iǢ07kD^%-愻B"G|5f;r i*%WW =`5&Tgbо]]=0_GTܭ9un 59/t6iY|Ej m_4Hg"_TaE c-8 HrH 3}b~OBp`gy!UKT^(wBhX8dy.\^ie6)|'6-jnt\`Ancx*PId°b$ c7:fJ$lǂ';v7ѽ#}$Cĵk _DApc` kili; ~4Hs[dS{FV BY{<5i^Y! Z{fx^?V#mcc9UEݑFU"yniI˨9mU<^yo\!% ~O,ӁqC8Jca)l wЅ8F%ȯrM,lrJ~(=D\KRjKb7FӖJ7% |)_ 4Dz@`GqD+وhriBdWƭũ_:C_\ rKUvҢ[e?Z: C$— hFDoN iľs8th|`]"S3wqacpE$ ,k]ȗ$0 WU eeCwX( ss(^1!pE[G$RwqubhCg!'OOD&= .{o1Nj!3`鋝 }6eShl,ti QGduIU{Ԡ-۫n 2ҋ?\n/+!VP jk,Z PT$^d%7 ?Z</*HCT仉4bk_Lؽ$dzj"HnѮ U' 2oŲˉMɗ|ޮ?*K72B;?s崼9ÀsԪ~p/Qu}~COEۺ5"xcݏyO~xꍭTXb<rda2ad 8YL!X"9e&R /2~`f@I"Hhu4G5}slCC2Me|(bk]l-t8/2rG. J[5 Uߩ 2}qؓ C{ 7'K=ɠ0D+}usL".IĆso /R=G|O{ 0:đ=(xC2UE&kv!N\黁mWچ^r۹29mwi"C\"[!Z}@ Ξ)_!I< ` xƌe9Mnv y8Gk)H1E V&fNΓpEOC>`9Ǣ+xk׶h1^E7wd.Jw]or@E t`B3DϮsh&'i{SOo,9 2#Hc=g-bj\A;&j5fXr^Hy̓D~d񜬸`x7xJ<oP{`=@9smX\i&r۫Y<8[${fy4g>fR^8E*煻18_cW.I 5kƖiJJܡnP).)ɡU(k0^vV kD3fN}sޗyE웋xI4/a0Zc^%.ђ=/Zܯ׼ l[g&lg_ ߊtNd̚kUkEH[+3&ZtѝKԦ\ڀ9{ -L klE#@gɈr銁u6p0YD֘fV1Q!=1K-FF7qK9!FCtf3 ;+c(@vWDjDB ur/`юD`=D N:9@/"UgkQދ渭k9^@^YϪv+ىH +L^oa[r"OB;Sb%xQx>t{iEhbo=GwO|$o?iХaN3:{nxn qsxC&c){N"2FFh8zU@&2jeF.^(7%yO!4TVx=Wl/%y)=cpG&ݑ);MGOǥgf85Teίa_e^q`zGx>> @j./0uN\@'ZHoBbnS]V%M󌻞vUח &E"`_1YFMfpq_tnV-D[9j?e~n$rF'ל(z¼:w8I49T Y Bhހi 6h(ABRn?(y7Qԕ#&N bdO5^U\<a%<1.2:X.N@ҍkJxi5y_rڼs} v`69==0{Fsf@:';kL2$Ϻl둺iq0?* :[w.)+CpHT3-îo1>&_Pt}uSl_yk~sMӐT뺅tM5̙<^ӳ G JVvo!|I煴ΰ{SCkMB—7Wn8#V=':DBJvvp3.5..[F}xf LD 7YyF1]cX{50Ԉ='R3(Ɠ3KxƱ7 \2rwI^G .T“/ !Rd`s@`n=V=G'< /Pf3+ N _RCdK̰0K  T%p YUq\q;X O\g{KL$en8Ǭ:TXU?ì/鲼uaFڥm+)@4߻ HIÕa7&rEZ@|sS\v_hX L 4\J-E:|c/>Cm nx" ‰^cWɰY.hRix,c N)/Zjc8?@}.qe`>ƝpƁc㑙OԘ^ GL/oQL3$0'8vEg~6ƕ;Aow~!J4 CȟR*"c t3a{åb ?k\v" `z%36]Xei ul\v1|a9] eUl+Ŝ;-[ٛMPk=aga7uv"!,KS[ Jwd =Hn4mGEmoQB >B7 VޏݍbT%ׯ=W}6f P \h@8!:^#?t:ΘGvf%J$a#GqLh;+s2{ >b;ėG ^IeLHWc*Au No=M Alun.4.hydm:Ds_ˌl!F[%<Ӓbp!Ǽ3ˉmq&RC4J2K9E]r8!~qAj[l@|9)[Xb$N=S_x'3U(neR"3bTD|Eĕ߾\=nlKduk CTbV #6l^cs똠MAhξ]Q#EiN %6xq 9Y8hLK#X4Ć, nWHz4 Yt~` MT *867|)_VPbl iKX!vΕ,8{Rdf6݁Lh1vmD ]^w@x$&V;o{Cs;);MY艙 d@d,j䕶wDDGeEƳ^ܐ>"[N@jSTdF0YJLEv"(g<'\α+9/J1 4DM3e' (*1aZzl,ƶsPbgV?cW~[# 5o{=bss_f8Oo m.qa#XQngJ9bkrC xgŚ?֓X"-ޖ[=xt{Ip )`lԡ̎֘Mc@hȬH3X~fURkYb*DwIDS+ yƱgf8D{`XSEx9꽪aI&KYyUa"=>gTrq׭s/W{__KY,`_w9t(r6lϭ|ȴ]>q. 9}$eY&RQN9ׂaw@iRLL lkE_^jz=8nEv^4n 1|y 78Jh wFg(! /;o؆)4feS #?noSMm!s:s biXF0;hwSJajKRlnbx|Z&f9f'qieɜ~&ZYX* ݗ<5-YаkS13 q@9bVjذT9obޑK |8qc5^ _'̢mzFS`OcYmn_كAc_v39EaQ5r˂RVJPccGs6 k-wsn\aש0Km( AUrgL'?*6afáyh`e$t 3ߗQKf\{c21lx}Mh5X%.!%␮+bʜ ~OGdnQ4 KZ%)&j9_N_ OypQF쐞R '5D1q}p>,CK|>1^9 N3 mw'V/ב:2v2/I]Hn1ze9w. J2H}6 >;Ӿ ax2$ro' +ZI^([WӰkϭ?0:~@76݈NʲբѬØA|Uʺ95mQ(~V]s2-װS3]i^򞱈^c]eQc5xh^*8<ſCydj2d ej6T἞վŕ@E-=mZi"#XH<L6rQ< Z 1FB٨RC61Ȃ\BnR+ n)*XdA\PVi%m!*Yi|Y<4GqbY/`sc1,H 1o ? ѳ l\3HXK h5$Lvk\R ABH͵c=D5 ^/U Ӓ֎wU"W;!rYSz#Gw`3D!'mC5h~k6zċ+4j.)^ļTOrOṊ Hi0iZ9%ȷ.$aee$f$jqˊ ȽuJEi&ۭҙwgΞ=ӟ)=ąxryjn #x.xxu mxJC}zg6Nex@VE_77.ƒ^\y;~D%|efg-NF,$)QZvJ 섀."v:=r)eYSay:>G0 S7z:kԓ8!6 @Ыr6{hx77ǏU(wu='ϳΦe|Gt;=T}$V~t!;W%('`..:or՛=OѭԜ[ {jrns:>v1OQ1mgPcnrf|LӀ`h29aM%\ۅ L8BO:brݭL BԻ 5v{tn5D.snv 쐐1h[!b.P 6s.]u`i7A[r MUt{4eYۇ~R=4 rV,lɻT;"s=ld/ aM,KaWue% B1%$q"ê5""*WB"1! Geo١VzC` !(lYxo[5ҪT-"5OapKr{F=֨Wqq{b^`ܛ4|6Hƚ#*ihWax7DoXÇ8n]KlE\: t) !hϬ,!w+Yizc|*󰖒$1Rkl89=;n4b /! eۯÚQF2Ө 2>\pQY~ѥVߧ9HqlΚx4sDQ; `(◅ %\6rl(UUOp1|psU@ǰ#VFx!=4`B&CO)xqH b'o #LO-.ը!xL]Y*bkXD`"s6S^OF:+ k1hEcCdlXEխɊƏe$M!ϙkO<xL`ob6!O " jKu:<=^n~$hW.f^z=[]EĠ5ĺd2F,q_Au9Rp'H2Xd y}:>]\Q!.in'2GnnLPs|58zVbkX-*%XYO`B\Ҧ\&_IJ9;6N*%\6?V~ EJA+4;4Џ%a\Dh_L'e9'К^9ʺL + Xa&^#S È-"z;`L=\5C`̃1%t=<偸Z:ѹ{s7k}IXs]0؎;vྸVw Z nh?2Q2O9,)B,""Ie"=J. REz~U:JeqhF+{;t?Wu`۵iHaM 5R^8=scy̖n{6mzk+A2NA]ې 2LkEJ{S 2egPgHY~~svsklE3uN/.^p ߍvܑJoQJfug.K'c "[WR#aw~?_i.U!<]{ݒ/>&rP鞛k{8G>Jf"|r+RM 94It'Y 9Ǽ֡R9 ;,Y٥p6|-![QZ]PΆU V Q%eR?예xtbpΫm_V>bk aW#W#[kSؖKW6t*N'{eS,yrg^zW}=ˍcSFc0SpN&8WU&aGm/JfH֢Z 0^x|gc:DB̡}vi<&5Ι|L\#ZRabhSsP^Ŗۦe?W8Dȧ~G?0$J+:HP#]1bUqW *効`'Bl.U0 ۆ^b=65=-ԔiESP4DK=Z hɐY%&2f [Oɇ,l[+xeb{ϧ!gށ/z;EB4DC͎M*CT{,p#&4ȹM\2/:Ct}{a;qM+Q%?X A Hvb/(8-=0;7otD 6*,jYvE5*E~6$߇hx2\T -@sx ٸ'ԌX]2uJȿN`Pe_ӠݱnY&2itn:5 Ee~Ϋ&0M[8Y)Aq_*'8SH9 _G8w̝oeRH6*wm%mN_\{ԯ(C~y=/`8a1$Ap_aCJR\HY>"%$r\a$ /{k TT^B!_~咍+zb$8{(B~N1}U6 m\eíCTTy? L]N_ﻗO]^@{0JbfnӬ>:Gh(lӰ7 W8 2|56Uxa\XvOV٭i (TnĹEQj̀ aw؎"G M9/A{'(rD؉Xr>Z*UYs TGp|m#HAۓ~q*`7jM* 9;0-בdz]~bNDdCCAEǶyqgjK%23v_۰QkdX:{ebI\0]od[3K?59..+ ;ʗV^P/k\e4Nºc:v ̵ȯpN[ 9kV럏stƷv lzFqD@>Ual\>]# E~6š^+$j8ϳ5^dt?˩%&m;"x`֪76tU,wS0n4{ D]<טRU*+aԡذ,k PXԁׁK-<`v (DAB ՆD:/DoBk| əHꠍǎ ,pC#^;o) ), ]`A6q9ĉ_1/˄,~?"k$j=z_JV)dj3Q:AP FqYfh[xs 5 rdAfDho򭯼"~m UD`x\xk`w.lUuD#+Kw޺ݷw ѻ5jv[ؙSD+X{|xoSȰ"źVSr)fXƖGR0x?L92R!͘ ?G2dXl7i27/C\ҿw*`+T?#9&rd{N1kIP~TAr@!*BYD2VlvOJc>Dg'%d*FY"FQ頒.Ϛ+X]ݭ2,sJPet&] $II̯K#f.wu a!ˀ~%g{M5ґ_)<xRiD0 ]C\ϢDDf;@F ?k%؍<8մ<`V G&!^>-wt2@TF{.j[3 !]='fQ"Q6EŸ񦓒Ԇ(ZLa ]8}8:%E3͒+16RnNY┮M{a C,38c/2H Ȭõ 'L^$Aj=Мqn RC̭$7p:LH슅; !F렲"v}aDVM⎘HwC2kd{}/ Z͐[OvK]ٲv=skq|tF3!tpA!UB3GR=l5ҩ9'jh1W62< =5=hC ||r&7 nv XaSe3~.8{+Fg!d) / g~=/Lo i( /sBۺ)<ļ~0-TЬyvB  6Cwޙm"0D~wN[+N$$2V qzg_~B?VNa3D~;M'Mi$rOzK$:vhon\.MsT#Hvk,v]I \C<~E\<8]Z+") ㆃ[q> 1?؜vmNf1|~o'tO6:B)Uu)@.7ΞeO9lZֆxR۾@y#-9$ [liU\0Y3ԘhzZurqwr鸧`=DH[c[h:sl倎A.u7Y{$=rOv̮$cb ps=7nq?s =7n?s =7nmq͇!ϳ-@y7+{n>Tn;!TnI<枛Þ޹C氛3P9{n>Tn<랛&-C氿ɳP9o {n>Tn< &ϔC氿ɳ9P9o{n>Tn}K5!U?{ޣr 󏏤"Pa@UP6,e2Tz%-{uF,僮>JϏПMtR:/П|)`2*,q9U_B[9Tu{I|:IWGE>Z;I3\Tޘ޸BuiLfaW~žB/ Y|Ž> 9}3dӏX~of(Ke(CRqp6ߵ|3':nULZSPaTe-ϕM&9C5χTAx o*P{bB.I#J]2ԙz ,s8ΰWE*;7̶] T~ 4s1z_&8 B|t#90P+38Q]ԥu~7?\Ԯ}5vD{k#ZGDLaT_+N][6&\վg'Ǔ4>} -elR^x23 -cNO'ISRI4>~6bݞ9yAu d#:KgP0 x86TOiblj<CFZӄPIA +&jY 4Y%fP)N#f ؛JYY@Q wDK լ%&:[x8b%g,3}.BVC; r7]*Pպ(B#pz 쏏׻mrkSd3N|y@b?t-POJzIP?^"O:m6=ZϏgR.Wp2_Yn%BE8irp!d'oZB#B>:]QN>^mWN{_`GqF@"F~ .0d836B!~s+ ,[J: ~{Z`Yy7~P{_NtwN 0nȁ].p1#\ @".bݞt)O |RJQPCgSGBhc9%Y+"S 4eSLSa`HGh;c 5#,bBhHSH[éDcֺ3ަ9̕w#]R :eau*9֣@#I;{9t}} JOr͢u?Kw2W˞A;쯼%e/d8js@H9VU`0*vSC*!?-~ O ;bʰb jw 30jwAjk&U;CDVehz>,D]J:)]0~Dpm ./Y$?qasH=;}4!*H6I ?HWqI9Ԧ}:I7'8-x6i;ۛ N[ ݹNŤ}H39xc;ә'Bxpc^#ëIX 7~ '&i~";͞pF\Jtx3I˳ K;ÍAr(PJez@χ^֍|HNwabs°~8=s_!|h'oviB 7!Yo8't$a;,d-mg23WpX7º7?JʷE-$|;_7<8 $;-uܴ` Gj1}Wȍs*Xo޽ǚ`N ? a572;zE'އի++ /:tam+_/2>I6f6/V~FQ9a>рTEV~.˧sɋml֋Z"Gc0ۂ c-Vot2: hGt8 IXUknle=^"u=" aMn#IXَ69l@b%P:0Sy'TKVMGIc03hrI>,X/4$GbI'4Pf0AkaH2 A;y'H{fCIš/-ƅb-C~uL~-H+"ke^At`O7ss68÷{-^w{xǔvp5itĶ:hBESDa auS@i"3[pV j< bD(^9`o $&kQXu,Gv9%y`])3~ 5ƻCEv18A B n7%T7|3IpFe`Æ65ڿQm$Zv' *tC%Km5cڡ ufbӥ&2ʈbGvogU&ɸzYhAS/қ!0zzzL>F0~ 7;ޗ [´$“L:d` Εy"WP&5-%쭴Fp 4MCÛ"{ٯ=CML4LTiZƌwV]'GuLx|]H 16E(d ч[WQis%5m 5b 6HļhX=] 8F?͒ 3O0PVɄvos^JawsۢtB/.= U"TW(b?qվ|y|rEWټTKA' wLûGc׉FWea=\OuTp 2\ [ʽX@&w/&S;s8룞@ŵA;Aru' H)b*,#QY.'9@?F1<DJx:\ JsX'ႌrh˺ҷ"9^ ͡jB;:VAԆ[ť#1-$$.C5k_jE)A\G ׷ AnO.'$S lPQ'zfKON:q¨E77Rү#r߂Sc n ( =ڵ~)̂Yjn|Zrz ENh$ _TX$H)>_CcG ARO^8r ڤ 6hjPFY\D@ x<w&t^Y^PT~~;7¦ꐸC>k#<Ҡ?kswuUGEe'1)22[z4`U+ *A2 ikAꢫЅ.~__6f'JatG3vwe:Axװ*ޝP2 ᙊUC[{!x`gN/1Q#ǁ)*\1&EfE5NVuVOUMj3$'F"N56єxٽ<;ٌB;b.1/>3}"YD˳[Xo}@oZ'287SeYIK; º-|F T4(/c~6h 83 AwxC}|'g1; J?{6qa%xC]N0`u_g Jf3? ]7Թ[Ne $ 1ApDڮ)ZF*넧.PcO񈃰hNP>Pgfp@A[:jkcG-d"31>ۮ1ԓ\qV! zWXIZigM7-ڰuv#vockfvT=zr)y[ozH*KBIv[/:S @ؐ2`2|-[5 !C-ӛy"O>-YdyC?U aԞ>a-FL1`)q.>r~-{=}Ev!ٌdv,T[{Ȯ[5F̽#јx]A^:ʑ;|pTfsFFGR'w4\h4q4D ogD^wƇQpу30X.D˨//DhM>xzǕP<LxA$ Yʊ^隆 ׵Ngr!-'৘EV& ww'L@Q ~}z} B~t1@r!^O&VsNLnx)}Z݅33=џȝ:$NH8G2a w٣VPzLi*{6Wx!1z!pHIk1 <T KE΅ue=-ٍ!XbdG}11"8'h&P)6. Ω}05ZdV9`|g/}їCN.w?EïW[;ts}!"q Eh Ў yD簨lo = ЎCVX >gZ_ ] ~4>4:V<__#rCZTl2h^]{3;A@UcCk8|Meva9U!&Yr[!7*׭wOpjS GiK)}C8Kp *{:d$S=?ZY!"Hea-> Ǎ2c%q h0 EZz+:aD5>/:OOQG_ 2?C Dr1㥷虘;: SG>ޓ\ ux :QR8 Xrp=OU'%6QW3 (R<A߻GסڙԧY>"ɔmR% a,cDI Y4ΰ*HR.Ti-v pKK*r1P ]`9"vq N50o0BQ;L Y'^tPe.CNNT/K Eǁtm1!j)Pg.+Z:"X=4HarH\U! U撽ܝW!HeG,^ЁvH!f*1p~Ѫ`#d)S$|'`;Єoݝ1Ƥ~WK7]9SUHBݷ~ehDlɛ!\"96쩉[ o/c:6aMqjJV F'ljmh:,ʗwNcu0DPb)I8L(ԳFc y JɾFG^ $u}R"@qjWP wpxsrD(PQnò2#'tq^-!}>< v”-fE >GPnR+ UPZ- ϩȺQKRsJpԤJX^g3}njGPn'39`}C ݇t0uӢ t}M!hu/Qt띕Kg!,wG*ͭOF a?x~Y@\(C>8! 烳?a@8|FB~b?xf(zhQ6FR fq^ZQڞ{!ZTw<5]W2v3&O "?5&AB'Fi<:$3 cl ❔q**s1d-EGx<+}A@*M=Bn//'10*ŸtM պn@?$q { q!Qm0Ebz"d<3?pߙXy?ŷ6r ޽`]DG GFnjlOlB`f) "Ǩ(՘0-܏yɇ.ez =0g:WIx8 )K0J986G /-No& 4٭9z@bQ.}0H4'H]$!yjnӲ7x7}TڻXqؔtĘF T̂F$=:D'QQ U'`pN0z8 Rt>q}Dl!N"L"! bWt@ ~nzZln^ʗ!ٮ׽ N%݇7LxpƣrAEr`E&mHl+<(Zt82Tm{\mVh肳Dew%BM bF#ptةᙇ' 8 Duy/=+*mvPg_coΞ1e)]U5 K#EQ"Q;TX6Q @ _G0#ڹ"ٖzwAGBYt}P3.ڃ>ot$9N+Ď7~GΕ ķ'+l mvC1@HAۢw:8"w1\f 'rAь0)֗$ZUz;^҈ .|z+O#(BƗ~$I5d\ 6ę /4L6:bPm1( E:EQ>`oAW?D8'+̌mb/yUN4#e9Y֯AZ@c! VP#.=:^e<]XADy&,H%Pmw9TdO]_>a9@v3p1L74Y2b츜8P3<}*k䎌zF5Nt(Nnhm)T?nWjbhrH =n9J\r<;˰l]8/Q)"% ~>Χ{$iu}87AWs7_ Agk5ꝎC IUN1~Y| ٪jѽ HibP^3r 5.($$z-:R[o.fp lXym A/ ~8T]JΚH[<TvE&ZYHV2GP=@%"\3Clje\2qBE$)BZSBD"5݆ؒd(Iz1'#GVZ|[M! At^#TnQ=`n=|{{56{2]`A0Y7g7tȺ>2jmv62Ҙ#N3lo,4C҈d*:DhFJ!c=F +Dqbsl<;*C/` 5F lhgxX 9ܫ-!]IYK"~2$2 {CapTR|9B7Eb |j0Qطׇ (ǢJ DQeqz U)$K4bT#Du"^ƇZ!z r0- .g_^Af>0~ťP{}TU;a18Q mkR5Pgޭ7h/3|E^#쎉=FAId -3TiwMk㣁=pu8bu ]gbGMO>zmnwá`aAO\ lQ1.`4@~_]@Kw x2b`qC`p)75(cbs#W*' [!4_@  pkFUsֳHC9w_Ϟ|$ ⌰hU?]$H!PԧNŀE)vu& 7vDp`\B:A1A>#jqĦ;:83MO0 %OSI$⽂Ha_U>*n;C/YxF-1cXfM䲖/C<_X>܋8hL XV$̼bȴg컨L-ɋI& v3dB uq#)Mh,,*4[ R/X$h1%T#G$PD-?>CP1RwUcއc֚8p6a@ԽeTa F{eCjPڌaۑ WX*L{#XV|U)̜Ⱦ`-dn*V"EP<' 1b}kcfB>ˀo9HqBaT! ;vR)RW_5M8ЌpQtI]FuhCU߳7:5눈PtV()6R8C [3+| 򉓻 K/|/_-F'i~t~QtUy*u:v/lAMџGzYHP&T7i^4߇*+YɁZdM9rȷC"U%PaX94G|p E.zτ[ `Q\xj [~8'j).l)ϟaben$?9Cp*YRҬ4O%2@Ezbt״%S\ڇKPÒW;տK,M.a'}Im +(s^QT8&gC+?22`3iNx@ @ x2hltE2gXZP}/Uϭ:$TeR/FNm;.QY#O$Y T썽/#4&a QţđJWn'''#E-Zuڪ 뒅<˨|='E+F]sxq޿S/=&iD%,f)> V`=@/^wl`NAy!53ͩX5(Z? ?_DB=pL)8q jJ[ :0$8@ h-Xǎ) 1p}Ⱦ,On1T] ƈ0׈+9QׯkA`[KcHqNztu3$'K;8Ag]t ADfP#1ۊ ʙ %;Ha2H`.BJ0 #;'GKg2bEB1w&prµ\3Td !L?9O KO|ZԢS~]eOzE}BI)곐I U/4,||oü˂= !H My ~NZ @l9D[G¨C D!H~5T"bh l:p!`ZF;9Q\4Vx>ߞ.].}b[M*MKoҼRi~^wmbBƘ>D1_G"*<sB7^񳗏7 ղ#$ҍhFN!LgAl,1!tX';vFj* sMWz 6Z x=KC?Ãfj8?p.$bԐqW (KDjgK$-J_k~2I}J$MwM*g47i^4O仇ߤy|1I;~JI|4U&ioҼVi~0IJ$M'M*747i^4N{ߤy| o7i^4aݏ&kI7i^4a&k&owAܤy҄MN4U߀qJ7{6nҼVi&M*MXIZ $7i^4a}1&k&oܤy҄M֗4Uy{}&o,sO7?IH7mnҼVi>߼sJ7{znҼVi&M*MXoIZ }A7i^4a}&k&o7ݤy҄M֣4U߰tJ7{nҼVi&M*MXﺺIZ M[7i^4a}&+[XoIZ =e7i^4NCIZ ]k7i^4a}&k&oݤy҄Mv4U߲wJ7nҼVi&M*MX*IZ =7i^4a}&k&oy_ 뛷CiB{?эo䣑La:5CeϿS<|,Na:5GEvG%`%u`q@v|4SlǴ7qY`IfNtk|O~Su TcJWu 完aιu= "O:,ձSAp$?E{S߼2FמVq.h"JSNi\xEN~4c? P$; D-JN>p;ð @a%;:Gf8 -KtEaz}:4lxxuBVmSr[6L6˿*4lxs#?3(0M>L;?N3`Lhc|tZ|\L]6;Lb4Śx[m$Q3mZuOsrzO(|dzMpX1#'=Z9]Fv!_G_6o_~N "9~E>inm{@\+`^y{35#ard'Kx"5]zZZ[z=p<о=:YK7jO3ם@rSS=g? ;%8黓OgO'iiEpF?>? 7bBhre~y[:Ts?kӍє- ;“?nlIĢՒ-iO 2 ]iU ʵBghXTs0w*K%%;݀'~7U O"kpz~/@X@U<7,ȐdG樬hFz*U*!Qns/pz&YsZsLٞrt^.Vk)&X)7ν>xM'3;b0\puc^P^g~kf9x%2.?lwizrޝF~#!pGOא-:G3QNz?(P;$  opZ {SZ36/FWbD+>NQ#_2|OFg"87" z4hBz1ηٗe┇z S`O#<šY{ZᲴeqQE'gAsํVkF#"ޝBFtTJmL lygBVq"'qd`HtS ?f}v#9yiD8h 构訫|WL'$= +(qK$X4wXRN3[N?J3j,L qBI0zJ(2}B4D нz $ BvϡE)㱁(04)T|h jGhCF:X{VYJsGtغ&~Dv:Ϛ8uR ҌvgL1,9z22xzm4B=ҋl9"6_!s}g5Ax^LRFDqcʓ`ҏOlY㓾嵈'Cȉحfv!ōq2^']d!`{<.a=\cKlŤiӼeVE%~4WGjۊ "UCM!h,%$Y< }S'?@[7ގIi1@͖nLyպ⯛?i6`40Vxq^2]!x_.^K4Y]WO~ɚv~P^\L:,XuDI@I&#&3KS.|0—ꂎ0ekoZ' 39kQS 镼eIݬZ:q'R씦:f҉/g"!$:nwD-0̬W;qH@jDLҚ=H-ch+1jӏ~|e"9}$:c)&Ott-n %< (&I IG+cQEs$# ]%qJܔҬ[|b~ |'BCxi PxnC7ִ<׈XR/Z g.g$rS'xR{Y&L302vC7]P59d TS 681 B$OLcW$ CBKSA7[ծd/!8St&@< nz^?O g|!Xgrkei0BasSz cHc@цm&>u0S0~ >B M+ xG+N\$X< MeɸNikFlppfP%E睴ق]hŠa&-$='`pXF Y Waؽ2aNVɁ-h5Etqi@5)yM{l u]{K2eAt2E{CQX9Q-/fI iȟo. Eb0[qS'4%.TrrT' #Upob0o3LQظ vLNKn:K񲱚09QrJTT}ji^َ|MXEYT\l]sp|ᙉ.hO\:e}7YW鈿5 1%dl& 7ٵ :I֓/?Ἄ'˜>hE0*KXqKޭ9QQf:v m:x0'*۳5uVb瘝˅]G7L@uCe _ )k1?!M:'͕MQ!WrqBvd҅0u"\DI9Urܽ}FI3O'-l>2I~3Ñx¯xQlma}31JCMo+MikacjͼɶlğO?Y <*LJØYu$ 邼{?MŤ_Eg4LJ9<0Ju00Iq}E,Ѥ|RJXmOC20)SD6ۊ%yV1Kp5I5d&0^3guZ2nrɂ:J ӄ&MRBךn{aL&waNqE?UdB6U풐}v۱c-";x=i# ]Jo6Wzco&E{5&enKk%(ydfQGA呝NJ}VXL,m+C /v+)5O /+M摝VS ̅B=L|,ƙdiO1NQ'UDc[Kj7MjI7gJ'obIav;aLNCCO [:GDzb=K(nyݿ:Nwt8R8pwW8rC`݁>KwThD3JQߢ .t-C1+08ȵ%5:kL3 _7/40 <)7nq_Yfz+O4|k )N57$oZNdwnxd'Ix;uqr'܁srpgYt5ېTa{ze&\7G[9U7ͥ_q,W80zDTF~x)a+b (N KTNb&u$Gqi-J[އ7p-xzb6#aT@# >N P̰r;:-";)[I"tUX.PW~R,,#;v6c3,OڧEV]{dh#;O02ߦS(1ڮ\Oΰz=d!#HPQ1\xRo%DɧNڰӺ8V&(%Ӛ1lckOթnIVvY1y+oׯnнPjFS9 7gi̭bB C=q0{X=.xY(]["jVDo ,s_.\{՚8}56 y%ʲ9v%;5_?4u"Y k;eމl0jzλP*[It=b2ЬTl,S"1J61;̓/ӾH5tAek"&Y+qmW+r1_wr9T`uEa TҗHR(_ȪwK fAo+Xn@ֽ0fPGda ʸg~v󿫲/)`21֕?E{ f<^+<-2Q-t P1s,Ct ~X5(d!on*=gY%bi)W /mḛc7i< vCv܁юX'ȍ-t[hEd'cx/?umId &7uL#:E62JO/y _U;`{|ժm=Xd[Ҟ-!{MxX{M{!{qs.B`SRYElѱvHy&3=XGUgdOaK! Bxt c)TyS!6XG'yBLMH$2 oI؊ +ZƦ),_u R$s`Z VJF7u`vM--9ug&o*SY<sU< wfM9XR똨91}蚉2UZ/:oU 덚֚MaGbLاN'rA熥ig &MԊӉd)"%6Sm뒌sIn/1kfVMdRLvO>`)TO&yf_Ws;3bJRW6'ǽY|[?$vB{NYjf슈Xu v $e]Z̜[.MtnQ-v ^1c6ApL.$bIZ 0IިM3#'_K*@ajd }IUoAz_b^QUpivIIڗ܍^Y S! f`^K۶q "B;5]N'ϽLNN 耸obJ԰hԺbaՓ`{-iTwċU 7I7կOVza-k݂HaSya&"װ^yYͺJfIP95{#sXCy9ntr¢mqgFHF Ev҅S76.eŠYbtIۿs8YL"kMd'mX=|/pX1Hd W[ܲ;+A |fk=EzX]|{1ԌsM+8;iϽ' K\R3@uN/`)9p Cr|?!e]a'0&;|;2Dbkt@g([t(I&U (/~V2C'F/`)3 +#c1fa~m+vzXщGW{Y[IOz,FiX!hpQ.l+Xx['eaf2Oea:q[3g@dP{tHPtx3izNzm8s0!Nh_Ьkv4-";YÚ|ݻJ6 (Q:̅xU,vX0'_z%4X{dEug#kc⭲]"<׽I>ʹw=Y|Y[fu̷ga"s)  H"LuLPT3j Xy|YJ_ؙ&] 2YLg33C^'0a(c؊5 fWroŻ)I~˼6B 1iHW.AŕN0Ut([^LWڹe~d>Nȍbmp/#lW[Ҥ-/Zų:D%_l531*l%X6Py]jw'gXof9r]G q RGMH2}ȵcKJְ*\C+q͙6}Cai^V!^y>[}Uؗc ѳk1/z|9y2܄^sa]G" bN:#@cu|5+/yB,foa5x̷'YmWYX땩)Fy7I֮ޤUAo߾^XsN~&վp|/pj#(5V Js$c8<$י7KWbIX歛:LArdό~<]FiDl wJ+r\k >kniƓI32zZѳǎ?&u $T&iOʡ56bխ`2 `%;>utҍ+ڜԤBn%r%+Q~G%>9PihaJ:lґwT~F&d',ޅN]FdhayݭʆݸC$;zmEp]wwp^NO}yJtz8X󦵔"+w|$o=^S{]s|erpaҶ6Iso1?4ZNo&.x+1ȕ}GW ;9r`i(k"SEu4]~MV<.fE=H`f nU7PsOa-5y622578' .\OtV*^qQc|EZj$9ݜD%;ݶⷍhBHvfn:ƽN63:ZIv+5ovR˭Ę1uD- D]sag}\UtzR-,e*MsZ9>P罃sb f !Xơꣳ3 kat N氒]BFVz,4t a:e%}L6>}s K%p+<,zzEv77!^孋wfLae;d) F +eFYcĝKI0w3zϽE|[2>sc7{;jS40F*Ww2{g)Ėd'gX/z# Yv%+Yl-)SEa$k&<]E?tBǖ)#1;Mb ݀v5ddi ׾5t);bRc!s!Ie=B`=*0g\Cϳ v̀w>k#? P–K2VbDԘfgl;KN `3l`kQi5],<2埦+O R5*C3 ϛ+qIV*4 Xïx_yQ,1D6L7+ԅGBŻqXRsXr{CQngލ~OqC=ǰ%IT/ɄϺe&גeݭ,],CX ?LBݻԥ>"\s?$ ۋvR:c|Ny7#rU*{n"yxꬷJɽd|C)'UC7yy,e*Eמw˙|=ǾgM超l4JAJj9 XzdaUFlOc00"d; p㇓܋1;ʮ؊V yJ+ݑ اMryd-\zFmIBI•o3R~5I]mVf²|d+Qd.|[/$ç4 M嶐I{gIV-_ik2/)cClQrڅCbX0璝a[$8g3ęrMs b/eo":+OzSXX?`g~ăG}<珆鋈41ewg,XGaWۆu=:;hy{A~G" c"3B7X mr;;6;kW7d i[!ka?]t2F n_:́'c?SvSږ);lU1cBAEHz)5}#g,>Y|UpHq)ŖH/ڃ$;*2CG;>!H *" @$$xN>P)q)`r"KTNf"Żvѵa3&*vم;ˉBU E0HeyI?o`SbS!) EȂ! u? k&v6`7X$IfI.\Fqg<T2ue)s  ]ޮsF(+/QJ0E>՗z6(CE(|bJH L=6j fG# zB cY%cĴ'ڄM$k"-wL:/+ϠlT1#%B7?`B X@!B91-VraiC1ZGD*Gi/)Q#RwT8=̿dGiFOWD4˅?jtV\0Fe:KankB' MJzECBuPg-:ɰgv}:)0 4QF'_CτzǕj+#XzSsDpa %=N,U]:㏝ȰDA8U<]9D{ _incJp=!5g+s д+z/|%iLNcQbM~^kGKƬJxڊ˲D᧼>d->/cS$B>߭$+u g[EIzKPY/@I|M~0Rdm!V'ٛ]m,Q|\O~ʞ0ru'`=xNzqƒdB3EλGw NDQk&}ޕHU1}:aL+ pA>EVWgB\6j&>W܊w] FbFl #3],k}>{*%a@'aIfNDȗEwF_C)K%k ! eGIzfPY(/yFyI,z*("Š&H46G'URU333h1{aju؆:$O}]̕:q7PIT4L~Aݺ螙ԌLI~zB?dÐ@JB OD!C'}꩷ x 3zfha&:ݛ /!$"uhFPBF6]<2!ecdE~ڎR4gGWuf>Gsb8Q`㣁,, ,I̝ē BΜ^@-?@y 9P؊I5}*0]P+0D~@~IbLsw'dBC%]hZ T*٦|T8x`RgfPXB錾D>+F̈́1v8|iR|ٔ |j(xyG'E,̡D- Hs@*rHυ%3+xuԯi:є:~13OyLPEфo=+m(Y,ٚQTi~} W*djqjb<;& /Z\ccB,6-$*P !ixbD䭽+$B&17k1N8D_.Stc`RC&b - jߪQeO9$#fw$jO0|3;~;=g坉B5<~'Ɗl.Y CUzw2:Dҧ_F`\#11't-]'r@pB]{IthD{ T[{R@,d4} 6Ccd/*!@{l9q3{lG56wfE #l6f-]e@=1{_(v&fyyew:RP'wF9*V&w *}i6q*v;g&lG8RP93{V˲4{/mK城ɡ> &/QN$!SHĝw *[{^C/E jqU.۸*!2뎀ԧw$gˈbhVP޽2%@^A5+{oJbV;|+"cK{mP U~ >̡k?fd_!RPuRw-%eWau$czpfP*#2vP:~tS (CY{:2eȨ[f[!ի})HV䩡^ae9>PwjTE@u],u,'>G:oԞl]%^?{n y璼nJG*sA=D.e$y;!xB(^EYJ{!dBfn/6RPAx~sRtAPy62!RtB8B'u31@y'B  as ?!<2g=[!jBfn)&*Qg^o;YD^O#g+r4OPZuy3!4[~Dv%`%o]z;a5[BA^C݋6w"C݋vC%PZJLn8\Uy`8J1pq"}Jv?+C' #y{v..8󇔔unhAknO-4j>P܉<|P }fށN:a}}nDj_;m7ITv+ˣlcd5KW;dA*\|gg!y&}nDj| ~bݖ; Sjgxbep3b4 u|+H0NP7A]{I8#xF50][sA LtB85ީKDvZ6M,X K~NPQa{H2+{:4j?>LnlRs$L]R%2,\O)&znזyh=YǺçȼ]\pHg4f[tC< Aإ%%,eD>Dz9tb'cʓK^Vķ`x- 1X/rSOz9L`'{U؛n6UBEy8a>;X6?o[Q/[{J:.Q+8!N=]*4]Jd[2;6 O !={_%=a7PK- ;OY{wf-PK,-/wPKwPK/wtoilet-0.3/TODO0000644000175000017500000000025611334132110010255 00000000000000 FIGlet features that we are still missing: - vertical smushing - word wrapping - control files - justification - -p/-n newline handling - -m layoutmode - RL support toilet-0.3/NEWS0000644000175000017500000000125211737655555010317 00000000000000New in 0.3: - most of the code was moved to libcaca - terminal width support was fixed New in 0.2: - support for 90-degree rotations - new border filter - look for fonts in the current directory - new fonts: + wideterm, a wide character terminal font + letter, a font using only ASCII for ASCII glyphs + ascii9, ascii12, smascii9, smascii12, bigascii9, bigascii12, modifications of the standard fonts to use only ASCII subcharacters + biggray9, biggray12, fonts using only coloured whitespace + pagga, a CP437 font - improved fonts: + circle + smblock New in 0.1: - initial release - opens all known FIGlet fonts - handles horizontal smushing toilet-0.3/doc/0000755000175000017500000000000011737655771010445 500000000000000toilet-0.3/doc/toilet.1.in0000644000175000017500000000666211334123312012334 00000000000000.TH toilet 1 "2006-11-10" "libcaca @PACKAGE_VERSION@" .SH NAME TOIlet \- display large colourful characters .SH SYNOPSIS .B toilet [ .B \-hkostvSW ] [ .B \-d .I fontdirectory ] .PD 0 .IP .PD [ .B \-f .I fontfile ] [ .B \-F .I filter ] [ .B \-w .I outputwidth ] .PD 0 .IP .PD [ .B \-I .I infocode ] [ .B \-E .I format ] [ .I message ] .RI .SH DESCRIPTION .B TOIlet prints text using large characters made of smaller characters. It is similar in many ways to .B FIGlet with additional features such as Unicode handling, colour fonts, filters and various export formats. .RI .SH USAGE .B TOIlet either reads its input from the command line or from the standard input. .RI .SH OPTIONS .TP .B \-f, \-\-font Use the given font instead of the default value. Fonts are .B .flf or .B .tlf files stored in the .B @datarootdir@/figlet directory. Fonts are looked first in the font directory, then in the current directory. There is also a special built-in font called .I term that serves as a fallback if no font is available. .TP .B \-d, \-\-directory Specify the directory in which to look for fonts. The default value is set at build time and usually defaults to .B @datarootdir@/figlet. .TP .B \-s, \-S, \-k, \-W, \-o Select character composition rules. .B \-S sets smushing (nicely merging glyphs), .B \-k sets kerning (rendering subcharacters as close to each other as possible), .B \-W renders characters at their full width and .B \-o sets overlapping (glyphs slightly overlap the previous one). .B \-s (default behaviour) uses the font's smushing information if any, otherwise forces overlapping, or does nothing if the glyph only has one subcharacter. .TP .B \-w, \-\-width Set the output width. By default, .B TOIlet will wrap its output at 80 character columns. .TP .B \-t, \-\-termwidth Set the output width to the terminal width. .TP .B \-F, \-\-filter .PD 0 .TP .B \-F, \-\-filter list .TP .B \-\-gay, \-\-metal .PD Specify a list of filters to be applied to the output. .I is a colon-separated list of filters such as .I crop:rotate:gay and the special argument .I list outputs a list of available filters. .B \-\-gay and .B \-\-metal are shortcuts to commonly used filters that are guaranteed to exist. Several .B \-F flags can also be specified on the command line, in which case filters will be applied in order of appearance. .TP .B \-E, \-\-export .PD 0 .TP .B \-E, \-\-export list .TP .B \-\-irc, \-\-html .PD Specify the output format. By default, .B TOIlet will output UTF-8 text using ANSI colour codes suitable for most terminals such as XTerm or rxvt. .I is the name of the export format as recognised by libcaca. The special argument .I list outputs a list of available export formats. .B \-\-irc and .B \-\-html are shortcuts to commonly used export formats that are guaranteed to exist. .TP .B \-h, \-\-help Display a short help message and exit. .TP .B \-I, \-\-infocode Print a .B FIGlet infocode. This flag is only here for .B FIGlet compatibility, see the .B figlet manpage for more information about it. .TP .B \-v, \-\-version Output version information and exit. .RI .SH EXAMPLES toilet Hello World toilet Hello | toilet tail -f /var/log/messages | toilet -f term --gay .RI .SH BUGS .B FIGlet compatibility is not complete yet. .RI .SH AUTHOR .B TOIlet and this manual page were written by Sam Hocevar . There is a webpage available at http://caca.zoy.org/wiki/toilet . .SH SEE ALSO figlet(6) toilet-0.3/doc/Makefile.in0000644000175000017500000003157511737655633012442 00000000000000# Makefile.in generated by automake 1.11.3 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software # Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ target_triplet = @target@ subdir = doc DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = SOURCES = DIST_SOURCES = am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; am__install_max = 40 am__nobase_strip_setup = \ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` am__nobase_strip = \ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" am__nobase_list = $(am__nobase_strip_setup); \ for p in $$list; do echo "$$p $$p"; done | \ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ if (++n[$$2] == $(am__install_max)) \ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ END { for (dir in files) print dir, files[dir] }' am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__uninstall_files_from_dir = { \ test -z "$$files" \ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ $(am__cd) "$$dir" && rm -f $$files; }; \ } man1dir = $(mandir)/man1 am__installdirs = "$(DESTDIR)$(man1dir)" NROFF = nroff MANS = $(man_MANS) DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CACA_CFLAGS = @CACA_CFLAGS@ CACA_LIBS = @CACA_LIBS@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ GREP = @GREP@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LDFLAGS = @LDFLAGS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ EXTRA_DIST = toilet.1.in CLEANFILES = toilet.1 man_MANS = toilet.1 all: all-am .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign doc/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign doc/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): install-man1: $(man_MANS) @$(NORMAL_INSTALL) test -z "$(man1dir)" || $(MKDIR_P) "$(DESTDIR)$(man1dir)" @list=''; test -n "$(man1dir)" || exit 0; \ { for i in $$list; do echo "$$i"; done; \ l2='$(man_MANS)'; for i in $$l2; do echo "$$i"; done | \ sed -n '/\.1[a-z]*$$/p'; \ } | while read p; do \ if test -f $$p; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; echo "$$p"; \ done | \ sed -e 'n;s,.*/,,;p;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \ -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,' | \ sed 'N;N;s,\n, ,g' | { \ list=; while read file base inst; do \ if test "$$base" = "$$inst"; then list="$$list $$file"; else \ echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man1dir)/$$inst'"; \ $(INSTALL_DATA) "$$file" "$(DESTDIR)$(man1dir)/$$inst" || exit $$?; \ fi; \ done; \ for i in $$list; do echo "$$i"; done | $(am__base_list) | \ while read files; do \ test -z "$$files" || { \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(man1dir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(man1dir)" || exit $$?; }; \ done; } uninstall-man1: @$(NORMAL_UNINSTALL) @list=''; test -n "$(man1dir)" || exit 0; \ files=`{ for i in $$list; do echo "$$i"; done; \ l2='$(man_MANS)'; for i in $$l2; do echo "$$i"; done | \ sed -n '/\.1[a-z]*$$/p'; \ } | sed -e 's,.*/,,;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \ -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,'`; \ dir='$(DESTDIR)$(man1dir)'; $(am__uninstall_files_from_dir) tags: TAGS TAGS: ctags: CTAGS CTAGS: distdir: $(DISTFILES) @list='$(MANS)'; if test -n "$$list"; then \ list=`for p in $$list; do \ if test -f $$p; then d=; else d="$(srcdir)/"; fi; \ if test -f "$$d$$p"; then echo "$$d$$p"; else :; fi; done`; \ if test -n "$$list" && \ grep 'ab help2man is required to generate this page' $$list >/dev/null; then \ echo "error: found man pages containing the \`missing help2man' replacement text:" >&2; \ grep -l 'ab help2man is required to generate this page' $$list | sed 's/^/ /' >&2; \ echo " to fix them, install help2man, remove and regenerate the man pages;" >&2; \ echo " typically \`make maintainer-clean' will remove them" >&2; \ exit 1; \ else :; fi; \ else :; fi @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(MANS) installdirs: for dir in "$(DESTDIR)$(man1dir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-man install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-man1 install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-man uninstall-man: uninstall-man1 .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic distclean \ distclean-generic distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-man1 install-pdf install-pdf-am install-ps \ install-ps-am install-strip installcheck installcheck-am \ installdirs maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-generic pdf pdf-am ps ps-am uninstall \ uninstall-am uninstall-man uninstall-man1 toilet.1: toilet.1.in sed -e "s,[@]datarootdir@,$(datarootdir),g" $(srcdir)/$^ > $@ # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: toilet-0.3/doc/Makefile.am0000644000175000017500000000023411334125266012400 00000000000000 EXTRA_DIST = toilet.1.in CLEANFILES = toilet.1 man_MANS = toilet.1 toilet.1: toilet.1.in sed -e "s,[@]datarootdir@,$(datarootdir),g" $(srcdir)/$^ > $@ toilet-0.3/Makefile.am0000644000175000017500000000327611334130514011634 00000000000000 SUBDIRS = src tools fonts doc test DIST_SUBDIRS = $(SUBDIRS) EXTRA_DIST = bootstrap AUTOMAKE_OPTIONS = dist-bzip2 CACA2TLF = $(top_builddir)/tools/caca2tlf FONTDIR = $(top_builddir)/fonts fonts: tools/caca2tlf FORCE $(CACA2TLF) -u "Monospace 9" | zip > $(FONTDIR)/bigmono9.tlf $(CACA2TLF) -u "Monospace Bold 12" | zip > $(FONTDIR)/bigmono12.tlf $(CACA2TLF) -h -u "Monospace 9" | zip > $(FONTDIR)/mono9.tlf $(CACA2TLF) -h -u "Monospace Bold 12" | zip > $(FONTDIR)/mono12.tlf $(CACA2TLF) -q -u "Monospace 9" | zip > $(FONTDIR)/smmono9.tlf $(CACA2TLF) -q -u "Monospace Bold 12" | zip > $(FONTDIR)/smmono12.tlf $(CACA2TLF) -a "Monospace 9" | zip > $(FONTDIR)/bigascii9.tlf $(CACA2TLF) -a "Monospace Bold 12" | zip > $(FONTDIR)/bigascii12.tlf $(CACA2TLF) -h -a "Monospace 9" | zip > $(FONTDIR)/ascii9.tlf $(CACA2TLF) -h -a "Monospace Bold 12" | zip > $(FONTDIR)/ascii12.tlf $(CACA2TLF) -q -a "Monospace 9" | zip > $(FONTDIR)/smascii9.tlf $(CACA2TLF) -q -a "Monospace Bold 12" | zip > $(FONTDIR)/smascii12.tlf $(CACA2TLF) -s "Monospace 9" | zip > $(FONTDIR)/biggray9.tlf $(CACA2TLF) -s "Monospace Bold 12" | zip > $(FONTDIR)/biggray12.tlf webhost = poulet.zoy.org webdir = /srv/libcaca.zoy.org/var/www/ upload: FORCE scp $(distdir).tar.gz $(webhost):$(webdir)/files/ update-changelog: FORCE git --help >/dev/null 2>&1 \ && test -d .git \ && git log --stat | awk 'function flush() { if (m != "") { print "Commit: " v "\nAuthor: " a m } m=""; v="UNSUBMITTED" } { if ($$1 == "commit") flush(); else if ($$1 == "Author:") { a = $$2 } else if ($$1 == "git-svn-id:") { split($$2,tmp,"@"); v=tmp[2] } else if ($$_ != " ") { m=m "\n" $$_ } } END { flush() }' > ChangeLog echo-dirs: ; echo src tools FORCE: