blubuntu-look-0.3.1/0000777000000000000000000000000011337133440011206 5ustar blubuntu-look-0.3.1/configure.ac0000644000000000000000000000131511337130353013470 0ustar # Process this file with autoconf to produce a configure script. AC_PREREQ(2.53) AC_INIT([blubuntu-look], [0.3.1]) AC_CONFIG_SRCDIR(ubuntu-blubuntu.png) AM_INIT_AUTOMAKE([1.9 tar-ustar]) AC_PROG_INTLTOOL([0.33]) PKG_PROG_PKG_CONFIG([0.19]) GETTEXT_PACKAGE="${PACKAGE}" AC_SUBST(GETTEXT_PACKAGE) ALL_LINGUAS="es fr pt_BR" AM_GLIB_GNU_GETTEXT # AM_GLIB_GNU_GETTEXT above subst. $DATADIRNAME # this is the directory where the *.{mo,gmo} files are installed localedir='${prefix}/${DATADIRNAME}/locale' AC_SUBST(localedir) # Workaround to make aclocal get the right flags AC_SUBST(ACLOCAL_AMFLAGS, "\${ACLOCAL_FLAGS}") AC_CONFIG_FILES([ Makefile gtk-2.0/Makefile metacity-1/Makefile po/Makefile.in ]) AC_OUTPUT blubuntu-look-0.3.1/NEWS0000644000000000000000000000000011337123212011663 0ustar blubuntu-look-0.3.1/blubuntu-wallpapers.xml0000644000000000000000000000400611337133370015736 0ustar Blubuntu Blubuntu Blaubuntu Blubuntu Blubuntu Blubuntu Blubuntu Blubuntu Blubuntu Blubuntu Blubuntu Blubuntu Blubuntu בלובונטו ब्लुबुन्टु Blubuntu Blubuntu Blábuntu Blubuntu Blubuntu Blubuntu ബ്ലുബുണ്ടു ब्लुबुन्टु Blubuntu Blubuntu Blubuntu Blubuntu Blubuntu Blubuntu Blubuntu Blubuntu Blubuntu Blubuntu Blubuntu Blubuntu బ్లూబుంటు บลูบุนตุ Blubuntu Blubuntu Blubuntu /usr/share/backgrounds/Ubuntu-Blubuntu_1600x1200.png zoom #3966a3 #3966a3 solid blubuntu-look-0.3.1/intltool-merge.in0000644000000000000000000000000011337133342014462 0ustar blubuntu-look-0.3.1/index.theme.in0000644000000000000000000000040211337123553013742 0ustar [Desktop Entry] Type=X-GNOME-Metatheme Name=Blubuntu _Comment=A nice blue theme Encoding=UTF-8 [X-GNOME-Metatheme] GtkTheme=Blubuntu IconTheme=elementary-monochrome MetacityTheme=Blubuntu BackgroundImage=/usr/share/backgrounds/Ubuntu-Blubuntu_1600x1200.png blubuntu-look-0.3.1/missing0000755000000000000000000002623311241227446012613 0ustar #! /bin/sh # Common stub for a few missing GNU programs while installing. scriptversion=2009-04-28.21; # UTC # Copyright (C) 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005, 2006, # 2008, 2009 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 tar try tar, gnutar, gtar, then tar without non-portable flags 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. ;; tar*) if test -n "$run"; then echo 1>&2 "ERROR: \`tar' requires --run" exit 1 elif test "x$2" = "x--version" || test "x$2" = "x--help"; then exit 1 fi ;; *) 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 ;; tar*) shift # We have already tried tar in the generic part. # Look for gnutar/gtar before invocation to avoid ugly error # messages. if (gnutar --version > /dev/null 2>&1); then gnutar "$@" && exit 0 fi if (gtar --version > /dev/null 2>&1); then gtar "$@" && exit 0 fi firstarg="$1" if shift; then case $firstarg in *o*) firstarg=`echo "$firstarg" | sed s/o//` tar "$firstarg" "$@" && exit 0 ;; esac case $firstarg in *h*) firstarg=`echo "$firstarg" | sed s/h//` tar "$firstarg" "$@" && exit 0 ;; esac fi echo 1>&2 "\ WARNING: I can't seem to be able to run \`tar' with the given arguments. You may want to install GNU tar or Free paxutils, or check the command line arguments." exit 1 ;; *) 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: blubuntu-look-0.3.1/install-sh0000755000000000000000000003253711241227446013224 0ustar #!/bin/sh # install - install a program, script, or datafile scriptversion=2009-04-28.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 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 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 trap '(exit $?); exit' 1 2 13 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 starting with `-'. 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 # Protect names starting with `-'. case $dst in -*) dst=./$dst;; esac # 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 -z "$d" && 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: blubuntu-look-0.3.1/Ubuntu-Blubuntu_1600x1200.png0000644000000000000000000211336211337123212016135 0ustar PNG  IHDR@,cIDATxkbIO'ѩؖH< $8k'?+%|*?,|m϶ˑ/]|('g/gOC >\m-W:8zZ`B_vC4`ѵ~DG+ux.9q{)@^YPfXAP 7bk0}L>o,bQ]V/?P Fe{3׵WR:_*kmg ?/piގ.[VCqXDu>?"#j|SlN"etZ-u11l%tguj _tǭ]BWWPtuF*\f@kaq+,b>6`װ<l'V)iʵ7{ߑ"^ti6 osw7 N?< N.41pfKcF޾ BjmX`8Ƅn?}?/:{"t,zF}{Y+Tzz«]A>W8z:l{'),+6ĥV/\UjB=wV)XVnb\[ӕ6;w9YHW.^n#k5$E@z8n+㰑duLKa:3$ $Rã(`}ȁXBurXI&ǭ^--ʼnt%h+,E+䪱q\oIN/PcҍJqg3Q-*-KK1ۈB*8tNPwVP~}UUo]W^Ǘ;.˽ T6;vgbQ&Cnt;&F娳ԩ_l-eQKH +6ƪ-p>7c,`q+ǭ. D: #yDT@xw W+^h]0>ʺwkU~1B`<'Aw~-VRQjn6jxaP_K(nCZ,_ G"u{JYD|n?epҁ +Y tHPHu@8]BuYC;z~}[0`UoEW%OsaP(B\~ڃt%_nͣ0c ;p/@WmIwkKTFMt=BiLxuwCG~QDaW b*UvFΔzTWy\_z^3^O"-M3o\ :05[UC.ΑIf5g[8'Ȫo0ɲlA<Ň`*,'V?$X+;1l\OWYMa"UJ\iWRzbЫSI2D|Ta(xB^9`k9څuJ2Z6*wVhF#]˵^*<[a_nuG^G{-B-WҥPjxDUh/_:@,ޱQ?Wr젚^ %?3-prfQ@ifB0 upXI[ B@s#̎l ᡞlqm|\./fV!xA`VOL.LS6R- &Y$_*"vC&t1Bt8Li]:>ѕ |kt\V"N[)-ԝunŬm%hbb-;?D/Q(.7KV&.`CniqE^sؾ LcM|<3VBj/_&wh=ǩ_'/ q)siؠU/3Ֆ#g rw?ؔ1j<[ۣYD;cVgSA]=A)=,J{ˑT ˾?XˡۉՏ0n~o|! PV$z̢JI&˂ 1drJi\'s 6grvya 2ltu񗝽|?nuo/U5@' [y743vs/6 cЁ]~5So8;7?Ws#w  Nw,&`VƳ ncNnk}Ϝ`r) s>.˛(tAO}DRni[=\Tg<)+Ի ~J:m!ᕖ!w𪬾Hc.T)?tnǧ) 3멌9ǭЫjZiXXH9;+j.3x%aTePXJd!DWHԁtn(w/EJ뷌R uOp8ےU)H&.^Ǚ~[iz6tX,ym/Yɦ+&$ɕ< !_U9A gA/97Cxc<``&-3f1dAe)hLǫ5ac,ĦCw֣.kw j)|dߍ-R!էw^)at5"8^ADnU`䇩1GWP[4̣$ Cg~]lV8g+YDWN{7;T Lֶ7Z*>,[x1~Jz#Yp3xZ ~>Xa{P*/Ye6|Y@­f^dhaِsNL  吢iC@t 79bVyO. :qQhGm/ޏ6u"nu%zW[հAL- X+, <:R: JR*~]W!OӖj ]HJ*gh䫸ռo?BXMD/B껢CA5pAŽThg}(,_qZW&P>_-_P'0MZ`,oD e4p_'צ=('|w$cu8]9s5ͅxK|4نl@Og- >J A@cM‘+ސ{P?nU9E4M-ϑ^l~X¾ eJC!S*+2E5J+:AW<\WVQOGWJ|>W =l`y8O(PAm;՜jˆ6ߡc͚dBӔž 4 μx c>Ϭ9Wd*m>TjS̚IxĵGK% cICFUkɹ/69kyyߗ딀,o$Xi}W-/fɩ_>In#VЈmzK^U.q*r5UF3`.&+F0Eϒyeo]UHSstG:B>2 o`/0;\Bi:JokS,žUhBKÙT痬hD9~y*Yo-L6qIl2q;M}IfXUϝ2s"&e^*"Y֗MPlpV ߉~M߭aw똗o c!D~. ;+0 -atՂ*Z(92R%M9M^iYϑ&4[H$i]AmXHO3[b+ńUhj8ָl^;uk*+a"9 T <&bJtʛ1Q[ɑu(p4 /Q} YXZWmjv`(Ґrim6P>%r *פlIe ȭF >zގM+6YX)ƖIK;j s7[gKW k#WkTn¥OX'4:UWU{_ p+^xY6x[_ 7^yNAH 5Uw[ Z,z͘ȜuR=-<CvDt%_BWsh3W1gyEN(&BҢ]#Lj.g2Yf߄ba6c[mNJ)O\kZe}WKz+GNd"ecS0ůc)Jzj ٔjxRZCWSW 5#тғCT3/e+,%I ;xAyj1U3 %WA4EFXdA f ̒=saNU0E`/TVR* :b!| |Hx >d_5#Jv F1Qx dÑ@bS~nCuiܪ霬7g#@rW1/K03e ]!$r luV R[AABWT:.Jxsw}tj}Ras͚piO#q\^euz=5lkQKcX͊&|Tc{ʋլrO?݆en%_j!L+er |$ᕖ f)[GxayS:<ˍ0\|c]綡ovnق.1:ۡ\^*P;^YX,}U@j03EC#! X} P0 w$W)^ǭDrf)_ZVmplT nzJXx\O:K7GF]yfmTEXIiEݦϯt,+k7nRuU=%neB(A V䘔HZpTzfrWi*FanNY7 8ɋ^Wb_9PK0 >DS٥xRB^3-^ß9C&o T jA?W|,pTӴ"C= Ƹx.( 87vPBGXI;^e.VL^u-!疿F!}{#@Yx9T^AT=DuՖW]MW.|?B+ "{-G|m*~مb>0uuHO{䡂ѠU>ABZ`rOw;S܈M_YҚ9_m2t5=Kpb#tQ0U:EO;3 znwF󍊥!*QTA6`Ic <*L'V|pVb[#k|<`Lî83;X~?nuEH«< "-hUAJ.J Mfe.W{U[^AaQr/ BKWi=ow9g laƏRBdFWS΍dU|=~mI8>"H"ҞdVޅ)q&^s_hRqg[}=W-4r,VBd_z7' 6` {3Άg?9T?lڂHUs ] p $C]L̈gȭ D MCb+Z %chut٭O MW^DL-#LóvE߹Z3[dY']_׃YE%p$] #C(H.' Ugq 8)j'JO P"gL o2n4,Zs7.Q*G>{wdPYal_?d_FpSs[}Hr P»|~>…)”&N3UDVKxŎ^Wnc'ѕ7H@s u@ab|uyp,N0?_AW'nUbn{ȅUfKWǥ)'@)& i n{5ν@˿1O~,U o˙ca(X_2leAUYɞVP!+M#Ww~Zq^L/*> u̓ |0Wa5# :c%&r!T0ueoBc?~; | nu:G7^OC:nR!.C_slS  ?dHV+I_SSI]5O˷3ta/ 3Oq=>Qs+rB+'^tUuu:D*4n5f;:>iJgt+tq׫kL.r򊵐Angts*NJ-gkҟU4!v^u[ɓ.XjUa꿤#+'sprbPВJDW|n#pdJ~]BqWX0)tr}Y6S9yk >7fHOs%.]B&6&n0! ܐ*nsBo{%83//!R\_Ȋ8<0|Lܫl'jɔpRԠAE `(0xo½YXm9|Qw,1߳PVP-,uzv/H;|>1V{# cL}^Vȭ"bܑk0јKWj1孅W,ܳUTNHIxe&i}(RR>X,]RXwe6SaAWr<:s֧$W8yJ*\O9^uN-N% gQg+9%/L/'Z}?3w5! -ìю`V]WdIem0csx+F<>18e1R[uq>ᳳW+?>˺(BdᴋWis>qmb=e/tO8%H.xh\]&tP贊 ȣi=6P~nK%*e ?yn~q"5gϣ6Sx6]ryU{3mI0k€Cʗ +!YȫH˳o}:(ÈdiEf )Jhށ/wgȰ:lry3)V!?HRZ&n2( +kʞ|̓?[)J+X} O4 zf T$CS0ʈ9o^z!ѫR2B 7kMj`dٲzl}ut MbBȂet3eJQvP`,B<W+o.eZѻu.MY¦11y974? biG)-9Ȏ_*nv$.e&ETAxT,= b*0{  @t6o OؤN*QÛ21٪ k90J%>^'l}ү)'dp(wƊ'z 8oR;8%e-}0FA`IЕrF*MR|^!0%B|{l:#zI`6ҫ]!1eK. 3誫_\"2]G\/ⶎXP2f`lC r6Wu}-|^ jKir΁G_VfJϗ>s+i#I^cCdL S蕻wF{>"wk:.t.nr-ITdth].4 Z+_451V˔^? g+uV 2qL)TC`j>b#É]A5= =s L3qqmT#%ʹ^x%0B$k* {a 7! ]rMCJݛV:'NpR.zlNvڹܹ⛗mT۱xv08!7JtNDѼ4"KqdhЙ +f])]M<]1YEZkY"Pu18cKg9#fn9C&/0vV v4'{^̯nr4N,$Ỵ* fX/8x Aډ=L,d_1%_Bs3Ex2{o,+k|qd d}`W`BU,~!~gӑ+uj $BI9nN"4 6]yfJM~ǟ^a^#q)t3e~)g[hq^AkKʛDWa",n Y izf.u ꦛr , _}'D'c86)F#M4>A@#22 "mqiMkp+wq.@y%$0kE8}@mq8'4HC]!Il| /DNs5Uh`6%o2wZUReOQfKVNh5|o۴lnz캅>d~F6r~E YJAx:Na"p<.fd6tۨaz;XIpw:4 mXN 7Rj uKJ%ѥVgLtB F:Fژ<*m7TWZ} g:E;j5 cuG7=c#r?!'!џj5%\aMIF4`Fr1v 2 XW8~Zj1qWs'z?n1@xaN-(0%Z qCva/cF@ܧ+D&olX}t5;XGWLjMB*K"s:S=\w8'9׍JBsjDPـn"?2;VXpք8m.S6<4^uUR{kTY1x,a,ANܩ*:4k"HփLJ%AKc5A5|‹}uE gu8㓸*c6t&߮!qY-x\y_Sg.fŮa7A$\WPzVezEg^xjU%mBx ]N :2Ax bKbvO-O8FUju;i-I |B^ޓښٔ 0ړD!biтr{3⒨Rmڳ`c&e]_iG Rٞ6+ui~Oƛ}jQ=xwSw̬e>CAn鯘GoOiף ~[ 3NYJٯjw#m>J՟UʧWA>V06!շkMfmT5 ϥBŒʕ j3Mj5ҝdOFQx;B.;EWp}F7O+"{)4 >z91 ѕulԇH37lzVn K럦 +i;'9ۂYL̍)+[AOW&.jX9׻O"9`"IgkIWhȂ:mF/蘈p*{ -ξW3l&gT0d}>O} ln5"0!@nq4oƝhkۃ1Xn‡ *v£@YxX$ Tg䡆#2z>*g $0HdNG ~Ɖ e? ]eJMnOOQxu?ifj%!%xY%K ̀é+s ѝ@Rn*ٜ*JDk`f̼*ԇ qbqM ~dۨ2:Ϣ@&G֌^8I▋x*ThXB2`orf&vgbl?wZOoQ ̂`f}Q=O} <#KDpk $Y0at,`6+輣WM=޿J? J^sc7"eyޏxI~[m9M8!7O*؜ [DW9"0UHIwyFnk$qz%bv^"TOoU<ҡutnmGt>}S R[S4 p3ZCW#s= 8]A_XL>䝀Ը<3ՔOEQ4ZXMGT|O`NK(y4Jy <ϮWf5?Xt$"{l|)V?~[?scK@z)w$⪘ˆ9IFB`Yx%.F=Yg gE -U!ohj)r}]1 %Q{ ]iM B.\a j`0{O«rh D3o3[+O`v/Y_b 'qHᇆ!ZF[:݁p&YK?X^!zUU t}]EoJ 4wko_nYF"e^(ATxόDwsj* x/p{3\{N겦^N\-$ӵ_nHɄtFn  N1jg28<yL5lDíp nz,- 7&`UQ?߾oχތ:HgBdk<27/g $ |?Qv Xh^o|(_T62 -+5Lү69mh&J|Yx/!aYxn9*FW~#FW_AS$q+ qǁJL+#C}~] \/$M1l-$GEcewOY:mh):x18V0eLEx v\k'0R#I DoyX1ߌo MNf H΃\JɾGѴ$+K'Y"<6]p=MÂ_?͈qQma汑#ijg7!E/\tDMRu!Woª-a JDWpTK7Az9HO&q] };;v"&Č9O ] 9{fKU4MԸU?-RgvRU?WI)[|UhU2ghKϷYA{uرlxъJ9ciytdY;Ӱk#d :bRx"I-y==gdlEUqfbnfI,s=tc` .IPy-Y([Y3xU$.g 1dCw _c0Z0m^y}N.:CL{ֹb|VAW- (`9U[E{J; [[(-_-(^!Wz@ J,V^!,tuS +'XExk=~a^ j I(o i]u*L(s.$Cq<CEZ/5nf)|7Bֺ=5/37.dƓᓇʯjxQf=ChZ`xd9t1t*6 ccC<1^,s&(H`H`d XncQEAH?% I N .Hbe7Bc}=!; o ќ፜~ɁL^A4nz&5`w+1P' GV!rqS Ur :hD̘A<_HhYGJSj><#"GGU+E*=)@sߣ,OGTV,oWan7 ,[zMKohv; LOv&1";~¹jp47A(8eKt,,d)ِz4<,Gŵl Ainda;܋b-Om۩A)晔3ͭɹUW-z g``z|ktP:*9_`̫Dz&^Y53eX5~3[b .TP 82faoء8JhŇ{o}r•hb,?^ɭ'1c 62&5zDeZ,^!sU+誹e$) z5nCqO[JͳHR7߮[:Е> zG&#F9u^fZ7Q d/VQ?=b&.nUH  Ԉ ҇{4c.ܒW"Kgj8 e&mnf a{YRqV&?R $C*c$^kx$/6̪c$6z>Giِg+K( %{dXTc^VO49b p!,  Y?kz)o@’Et})@9B2~^!̑7໅W Dx瘖 laE«X {boCe جTX\꧎K, yCWh~E@3Q2{qqy߄;;t&9U*jj[K6u̪ю4O|Xq<&֊N1e'G=89)F}-'a`Y=(%ƀ);yGg 2E$wWј:vIhhF SVj/l;Oa?tf.Mi1)XWύHA^]-ֺ 5!meVnqەWFԬ bVy6c*Wze;WK%h{+M\Cզ ƋQAtRrZM!7sgaJɵ8LeÌ5Uw:{8zsQC)%$i͜+lgMJ?ezn֕ l/o60+wk@Q}i*IBxޒ+XQ:ÒgN0Ow7-0JRBC }z|9!7reHUkz /,8$xvk$Ua7+CuIa"Lg^r?QZxapezĔ*C(w/ҫ.O|kA J 0&ȉ[jۉ In(/9XhTXHT*B&íƣsՊ.,ZJ>onc۳& *؆_Pgam};BI81%YS=z{7/zelgf-X[(_\ dQ3 yCtLdUV",!>%H ~Q CI ?5l1Eh]Nm cͤ S%j NOʓ>"Y{ ЬT_5' TuCq磒3q˾Kp` l.#jou|>'#?~}w*g E@8_]]O-ob^A ʴ  R6s+bD?CH0-Xikbh {@k nrziy>wSfHYu# ;Kl†+=yN(~9!t#mNMY]T`@CDE&_AWBMXDWq,*e9?FWin$i*,&vR[2Vs%{ }7&},Vqdo_e#g(,)6MVAg~ +San1:Z`(C;~!:@SEx!_ ]mEzշ4!zn" J*WKcl:Nf<%o8>!|>X*#2rnV%˵R]kx,3q+bH نÅ5/۶n++kDOIVMZY@Z:V)-cpBKx$6SLxʧڨJDfO!Ao?K|PY8!cNO-v5:>[ں}39>8L][i_~o,z3z.`J '=%Wi j1w!2ZsKǒf`NºTR5u]6u~qEsHҴ( [㐶~A|j;nK}rs>nGzr*ݹl,9CLN8|_ؒ2 L;xmRYH=vR/Y6Q*^T;j ńu=- o;Nտ, ZDh B $w^jx-iF&CW͕ E)AExEߖKd RWi"E= S%[ >FKDH)|Pyޱ(p*fPm/*WBWفlK}|G&M3IOcSĜdBxlD*45;MDƪ%`E"}TDC{92YӡF1lJ6ΜX){K г*1!8 p4 p@vY*>SF,sȎٛΨ3+j`XA ?#.9euKYF_V]%W8 釠;,O\^WY`Ȯ]EWcK?@m*o٤ׄW8^VBr7=(MHX$zTnN4 Np[JBAKWS誯^ ]}=ke!y&gEQּ18~4}*ANpAʽ{Y;3471ۡUnu2Lנ[ԅ|иZ;6mH^DJ`xPqv $U$WBW]>pzaO9B+]A/ TKiP E Nqof"!nhit'BgI#ǖW.߇jyeN *"(w[>f\y+xwL#{rivť ]X.͒ ]>`]$ }4NYx "NE%Hȩ&v"] %M^(O'S}ߴ QZ󅌮fq)JΤLXNw/+nEW[ovY/+m+]}VbYnVG҄94W@w Vyo~U:\ZVmO<(`0@}*|.(-G$˱͒2kKkm I@OULtFO/Ew$2 XCKh״`>\BgcF<V ~#yujxFA2֟j\Ⱥ!1Ӣ m `^jfURůe xuwSjx9@aZEx++:)$}% )=\#S djaiMSs]!K? !z.5Փۭmv9,Л<ꪼ櫱rV 5\+c3="M1j08DgXJګm$ ֓+MUg1ضaǑܥN}iN}utXέ8J|w_Qi1rRysL+hT1_ ϒ}[%fصG\]jm1 7+pP Se6xN!y%$$6WRM^!ReU;mIL6+3ZAC[Axe=(Ó?HәroWqZKtAa]!pHwz{dJ9D df:ʈ-^c"dp檿 ZF>כ%Dkr +u4 x6(Ց92P'&diDilF~lf*\^,nK OVUq2+S+ Y{s,_zܬ%بGR=dӇzrNVPQ䩱C2{?>:-bp N^]ޙ[9 ѶLgJ\Wydb^YnZIB yؠn"9Y&pTzG^-UTi/((2UZ`琋 b:Tg5hL5tUR)01j-Q Asٰa@/q8g#t]w'=B|C4 ¹?V6q܀]D(Ĕ`M}H['-%]j(b:l ={k(&N܆gژbv(VV#:vL|x.&P01J7o-]aHPE ExXyvbH|`m.wBHkgC~-p@ɉ,_ߐGP+/`X~ߺQ!ލ-y~KC+GR,HiCDu(['G= .eAp an)B7\Y* ᛦW-,h5*B ?S$/_D| ڢEM+dm\9 P(Bq%x*«و릱BB.7wފ:B糷cKѕ1Btm8Uetuv&_+ֈHl❄dG ? $&|{[\O9ZF-y*rW$uؑkcPe]Hq wtr6p BdR,6^c2F4壖>ds$dI':Y;8!k1+h<|o^|Q67XxW@C1V "Ca\+}fO&]2ka}H~NȠ-n'ǯ!%xCX^PxkUv+Jhz;%>:*1tfKjMxs(B+Xk\[}AtNWb m:j%jH&5'c J\Dlr|Њr(Xb_Xi KtOZBkzV3@v:+g,1:׏{(8~ 0&&y%̚g2ؙ&@zgQu#Xv SfXJڐU#3'咍ڠ#BNrC0p}=շ Y F"'#z:4 ? 0AILL‚&H@ϖTWۄWh[͔wkq ٭dGNsJaol^!_;+U}P^uAW?*:]^A;2=e?eG(+H $PtU+eL“nm rUzzb5Tȳ`4IuίSI?3e*ݓ3ZN2E8#p"uC ĥsܺpyfOC( tQB!V.F4^;: zSv1Yv_@SWLBV{w~^:(,8w>jF=֟*@WU  ѥ&: nYk+tl@CհAF<($Pd[%3 3+[x{/ ]at.$t㌮~m a"fVkUЕ?.@"eـ97[=\!^Oq*RD ܊:Z^릓U%Vڨ |̯_YvWق{:C5$áSxIVpcVϢJ *[͹ c :[G5Jxȇ˘x1w K5լ3LfOHv/~/ }˫_[ZvB`H9ԼW+31^9%+`H2O!Hg)Ƚ#^+h k#xr l1$Bh3&0uyƫmo^Yy8{ܤ.\XEWMk\Ѝi{"B\rYT=- (>nF[M#>~ 5s-F̬+ѿ)ނ,v͠=0=\^,AYz)2NՃkOS~rӡ-#`aUHFaDT nz7p SlE+ Flpxz*Y,AZLȾ?U+]ރ^ɓ )ze.& F!rGFU^>|%4W!=sbyp$oZ=s mBW` nUe<"nFxWfC7e&]r%zN]"RJZ9v8 &S)֕U3bsy̯ ^G`ڥ]RLSaGྻJ* J{~>*CZeuܓCeĉ ZR" Wi xNRǺ.jV(9銀N#B;%|JΞD83BZsN04kB ]jʓC(w8)ۑjovJcM`WWMmn*lB³|D`8-(ƪ_B3 +xنmIBPEW`񩂶 /xfk9c=.U}ZF)fj$;#*j7g,YlIe|a11͍VȶF@`Ŭ݄֘G׭}1x30%.,.,{X ..c:J잴SPbWa(0grGd֘ˎq~'CK<`I41]pPCzKَ 4Oj6t^&^cwQnv}^ Q5+ ~\ -̶Usqut[z "UrhKOko)/8 9S>b<ݴdOtw?آMI9 J\BrBM ' _'H-jVPlHS5QM¦fP !Ȳ >&8P4od=OmzRZ\<NyuvO.gQfmeQ?c$ Ny"-9 G(-qf_XΈ"kO "uro*|Oˎ3/ߌ%Or^q^)вR  yԤWr  E4j~  r)Bw۠BwGԠP.FC=_^@NLt}OΣXci?9:n$&/!53<:1Ky @3wjڧOv~w;Rg} @u.U?ŬM)`;OEa+g!#-]{'>weMp]3愱2{}29ZʒD޸#muͯȦ0~;<#>*D5!w}@go?OarY?gaOy\q@2It0٥ +j8@h U$JӨF@[w~D |h=}o)ȲT!]L+^,8#Olh٨KJE$XGe&[?{g8Y7Nc5?G|$$#*?+Sx dz>uwbqhy=68zd9[KwT3pAx+ׁFD6C\JU|Y kVC$ދQ{3{!W+ [>R*Е(>IІҬì brw5Bql&/ |tʢk*fl~DHVUe k㹡Cьcz%]MfsQڽ,'RRФ^6"+6zg$]Cɱq]&濔ڟ8iؽO'2|f=!S&5JRiѦ|n3bSTtZ!nQ n97clg`,`؆6!WWLDfedT>@jw_lmW¡?[ jBF 94H* D\ӴLdB"ܙ'c<R*"BWw J(m  ]uOhOk ,rғk+|%GW۹=:u9 w[A|. ǐ[3ZrZ-_YcT@XRמ ɲix=FfmR?=HLGLOyTBo%Yhy q5^Q%wĕ"cY{Iڗežhs6bH64&7+0ƹvX ^YYT/tMzLKbڠChF7@Z &Uqaѫ9EWkEd|0 CβZK@~]AN8h^v.OKd2ع}D6^P;? ]inГ; ;g^W= ۈɁ̲$JRbB&}HSqpoAT~Ͻ$k*wXxl:Y`\WElb,k>3:Z P9N,;dpP+ Wbo8K'ƚ"K^Ӄo@2b[7ZhOȝPuU]}ܪ=r+7G "ѫ h%BW(xgי.%aH^[Kr2_8EkRn)+Vk9 zop.IcȞz QZ|ń1HYN+$iL7Bce]\UVHL8ytSl /ӠWnA%zuLP-^lʵ]W,GE n-q+eEMo^ FKӳMtEb1GD'),3+zH#llHvcT_@Wgu/uKJD>J =].=dV%2;uvAʭj~D)6;w(L]b+,~/g6 `^s7\c Busv 02gN /,/VT_#@Iގ{xs/YΩ+"îG8cfvp~ uڦV5KEv#}N/l"W=#59H%hpE&乁^o@\W0ӕt=q(ЫzL)}r`1iT>A]Ao34j"+D!B4X$o7 Lfbyh7aMgA^8Y;]ϥTHz4]7jd=g߹קד1Y%l%@ֶ6}xM781zʀ֎X{ˆ+A>xHe EOv߫9ul劼iww]ߓO,4ScXSJ*&]|#OJsW^|Ӳ>vGHݰ(B&9[i FMʆ))K " &LjrυiЪ 9C5oW6BN]ǖ>¥I|_̡W8_QK4.M?ts ]se!B9}rlƭNXU# U>_boVܘ7YkGx%0MoѳJ`3H DžWDtut]!ۺLLS в;͟+@T 6q+}Yh l.":ȅך|ܪ7aE$װUҥpn?ť䌊nq-ɑ%+* ɑwV{ ź:vG"#elL}8%X{ϰz&Z.TLb#-J9 sjrdwXh;6,jc44o8{"[,[تQHW5 C0ם;ʧW nѫ\#9Nt^J4w,QU폄7)jyU &Q<|!c NZΠ#4>?<0יFaToq<3 dZ9aOlz8ӯ+0;V{7KdU6rА4 [c;Vs-yH+@>;뮂ٴs'E18Hӂtgdp b?.,QiupRDVe+ájbՓ_܉yoKshjPaXcxOH_a )`$gc~'F_tS4VPOtKG`cr?uz~\WkU,P QѫD n@镫 BA UJo'b;fɐ:{-3=!^Hwu<^3xXѕ{];6`+>Adw#ѕcrG"z ʄՂ-<ԙ'{R3JRAa^˸*6=zx;O5 5wn3ө4q}4>fhgn45(v^94ּOq2^H)fb*cf30?AX~f>cYը5U8[LpY=b?@l !"r?2n ws^>V0p7)s$HH+^qF^nz0i9 Լ p.e:x2J, U]YHc~NWJVj!W0FNnX5e u0 \iwguE%e#l۶c.}Eo Sk]0{`]@V B$Qxg-YQqP5 oZi0gCʄv# Iȃ@-A4 9$3oӚ!^5ӺPXlƚh5w ?ŀ*bg+:)ߢW@4zDL(!a[%!zFŠ] ""ڠMЫ]a06(+1R, :alX.Jt5+hBꌁp?vW^_CWXCҭB^+2 pRr42[q:US#̣vQrM;ٻ49{їw "+]uU07h6`@x6nͼ#`; :M@w}Ǧ-$ބOb ,me60h%@ߟ=f0ഗ7=.1pGa3P<015 口$Y""feJC~ZD$\ԢW6Xc{ g6q: @$C,sλOvOK?!C.ԠG,nsw816lL&Un_Wf*^GIa9NEPk4=]xV {sMߒ΃[,, -gF4w׹ѓWZ( ;pf|'` 1\}HO fiCVywĀdjBʤ/PwܣsZ;{9i[`ZÚ |+HF4/7uY`#l|"iyƜ‰ 9GPP߾6`,lP_})PL'k|bzvyr_WĞd?9ʴD>d)+=FE0 5.P(: y@࢐^ tلz e( 3J+^h]+'p^;1.@:W!5tU`rs^']-eŸH*+03,rtL(lMЕƭyPR5C69Rl&쉉CRyвSsUWJ4^/ (5Ieq6naWLq5G{(c+xʦs=, ^"s79ԵԢ'x\V.Y3k0ȒNI; $ b,nяC!JztYVs@_2N:EzÒ/q\?5QWtv!_([ayh8ؘс(B܏\skD"9=DԺuyO쬝׎tہ-RaG^3|`F[oj`absB^U}F4(t]QƒoI\颽&,Q~nۙduQtj&Hդcj}/q(isu.PK߸,\&܎ZϱυY ɂ>o Y1L<IbܜsnmB=SU/ rlvY; jnqaX˙>d-URXzćyod z{."`,gs. $bz>jf+G+B%zŨ P_ouUӽv%q=ѫAe~#ldprDWHnΨ +X *$y!X;.&bOuw]AFWkGs9^BήćC08$ӞEivi>!/fC1}b4؞cfk^%In'>WL v|>;eY+C.{G[*-#%#x2qU`' )%P8>z t:SVPXX/-N#@LD°ZtNw\FA(eP, V^](6J*5vmzcqH/SOQRU 0Qp1r[q+Eou(+GW^#3(ՆW2;r^G]qepn :j]́U 3{usbΙtGB&n(ݭ/席jv[{vyPm7%b!^"WVXfAf#gw2 9hS鮁d$Y&Y7.~`c>:ӣĄg9#̪IaXLRl>HVSCv&ט02P c Wr%#6G0QCҵB$\7`as*͇?]z!9HC+ z*z/64ѝГإWZP:Bq] >s|~q^\P}/e 6eEfAz]Oe'W}dTwFi >_ܘ+}Ș6Ǩ?9xezʾ~GNy,:te ?X]NY? |ES2ԑJuZ /mՒB &Pit$~?]]V^*<.;M?!!_.1zJң[>^>!n"v[ RHpUVh6g] LJZxqi!"V[M.+QztG (\EXƶ˰]kpc[V$)C\񦁸gE=_L-!Q1yl P|0&1YLFZ>5`hy>rZ.qz %RKUždQk[LшK2<U ~~~ }:jCXMCu\kvcJg9ώ 5¶&ؖrEIuW@&Qf5z|B+52~|mCCT=""DcN6++]2F wD%8O@!y$ ?|TH?4l]NS >}8 `5X6aTzF:Jr2ΥcVh:9fFaJKbШ=|u)hͰri?wl yuk|_ɚ~VPnb|Ȍ+ ~ ) Dnȣ[Q `rw+|K?鑧|YO0Ap.j3XS<7mz#L btah5 SJ,|3.BAM*nĪI-Dw P1o7}(][b$FE:in䱏UQ)6̡en2Grǟ7Bt0jtp+7o[xsD"O^YY;Rd7N vCEl ]흜n|M0 ݀ZWLTՀN~rN? A'ɩN }jRm:*5^MwX"YU n %MtU&@ e'Qzt0Vr{7b+Ėڸw+rsH$ / IT ֯V)kxvUvCf5aaܛ__-+2SP06MH2\ B_WЕFj`қU&ط K4ݻrp877Ez 8G0\!*VL`^4Ȕ[{OOpzUz7'ow7- ѐv7 _ꐫ^u9+!@Ȃt+ z`-~ Jq(BzuCb(~(zU ;dĞD6+_MHTksWVm󅃩&$(3nӫ>]*O^aWxxdmJ*b2*$ ٸdwa|F)u [rB Ms= FőY;%+eoW1/WI0tg'FYeP]I}yFg%!R{T.30i>胭Ϊ4rS]숉M:XŰgt@s(,1b,Gx#0Dgb/`, FqM" , ؆+0EIK$*ijW^r(tÍ6#3 eѫCyOՊ Sэ/m`D6X6|zE3&c場ĢqV6uIoBWc:2&2(mJa+,~P8xPѕY l"]wLoh  *6ٲMוb5%>eu;7Adp:[pէk 3?t+%t :$+V;Hg]00\ tUVhR\ aX #M~`I BX,LtO)1,#ֹN&Gpdߍ|:1;Z&)\@<?[[lY\qmjXVx5ikX<| Pz{ 'LzƵ)dưkV+KO39_3bh]p b#`U'b{Evp2];+,8{*xb4˱ |Ttc# :M ˙AI{-fI kH0ֺ>S:42dFwM~i¯AWqr qCѫO-i6:RPWhR:Us$Uzu;=Sze׵W/+KWA^mi0ݡnd~ګWFLq6٪9u> rwDUb́Vf*؍i]l4APŠ*tua;2{99ю*VsTIڣƶۥMYW["3hC` | aY!.S$mo߶ZǔQk +$Ԛ)YP5s<^:LQ!@Cˆ)&+5nPD`;.'*І6|eX#2:igSfXdrXe|JFa[ҖK!bG0_BWr\q^!VN^镯t^iWr@|~M(=e.@N7!L[NWTmPߪҴikC2b{qkhw^JB<H^EWd ])v]/'lkH.ACr%="^DJ糪U#jZ]ȴ{.nPkwwFu+r%zAפ8.8yWieZ5~h-=r]o%ĵ\F W|/zTcuGnonsr6Rٺȁ7lY peghc9P'<.;aR/Sb lrlk | bޮGWWUr^eI5zVTgY5'YVۦqVMO8H& =x9GKբwU5qbi͸8 DIqHjuFWHW{v̾L3t]99GKY(/Vo:ﮠp+Eچ NS!m "~g%G >OkJͲuPтb SZmu'})( \XCxzph-7mWS,h ꦷ%Sbډ4SurĆ%HiAȚ+BanKodɑ`X}T1gq?) AɐXX6J? 'Y[X?_t5++hnS+1ӫdذ=ѝ J!fݨmdp阻ك*ϳȶ6VtմAp#m0-ǽ%``6䈗eh;NDW_mTv'$B+c34?SM5Vctw謄Xg[%s hVdh\6{l Bn"6N g|2&y<,+;MҜz,|ib,d6hr&S1!| &p?):tXة=qhZ|}lNK+Yj'C<4'ϙ e y˜,|s0`|fPSRz}WRDW\m+M:j~rDWOVU /.R'P󖳠#@G9i#w\3Lȫ i4+`+3NTy}) <ķHܕB ; c^Wcة8vZyw vCe[o\VpK_Ȁ؏9*gxP\`j3OTFګ }lBrHSS{E!YO7I^uNp$YjB 7gr*չ:9jBVk "3k bCCk8|ez/Phю,1Pi3hW%"fmx,bw_^=1'eKe~U-bQ].|BU9 uz?dD{ DqY)MLWBѐv3Ue3S QI6UksDf;|N^".%cIfjT dwA_Q=KAQJܪ|(8avH Cp%|eM/x ztOu owՙ3U*C~8VXIQɵPj}[ds$Ι!` k`a EJ ˒ohv_* ]|ė;ni8(a,/^ +)SwYiZUN4Xt+x˵ADK`ZMgJF_8?J_^Su:_;eb!B;;L#lQHv 1XQV=]c(0wp)cVWifQ եL=,>@>>ajcZe?M{e< 61q{/V, ䷴:s ohEq?%o?,̾Z c<1vXF9 ;Qez󴤋iq:#2txP\HtMbTwEl+œP7!cM?U5bu8Cx%Ŗ3Ecm{*̖[ҳقUz0 uBNbDzX?2/**O J=4I^EPS5rhYŴMkrjjYp䱁Ji5Ap8^!NGOsѮÃV=rFM9NM HCWÌ? ߋ2㩶pɢ^lk\_vo[K>Z9GTv AC4ճJ Fkȼ *8nX} 7\hJd7x!YqNŝ1 Lr1cQ/:aboz\HJd!V}}5/UX#5dj*k;A&dJZx~{Qdt$ wgz i3FAC[*WTKp}odJIV'Ѥ/ dOPc@K v8ZT!=8mv4VRXs91JvÖ/gSوqmB)(\μ1}MWn` ]W1?f-M0֕uJNz8ڷ;=cق"BCV B nWIM>zk5zUPa NW{&:JVS,jW@Љʇ^I 0ZTz5c?SV܋j @h\t@@8p-9nQjGq]|8Y*tw[ v@AO+Ю[.!z?> wfD0k~ZpCS7gޞ ("n,C˞WawqƀN(`}bw'}VB` `ȧlea,.`cbO#T2震4_,XS8Ƥ=o9Yy "ie a,zq:e Y9 PiR nKd_BW"TPuzz^=2Baj7gUd[IM$J{CR 0Mi p˦ۛ>s x b+@Yث([,v;e7ߩ9`k٠%_X~,nyA9 J~!g8nk6ceףyI&ϭ> #(-La~Vp3Ȫ%4u7[4XXC~Dn)M+mg|c@"sMx+RQsBx%Guwկf z BM9 ÉnWо )m#;JjX*ЫLus/J|K!5΂x@x%OxTRMeЂ6d]@cN.,X\8C!od8!jbylӛd-5I0SV"q ycU1Ȱb¤R|I% U^b]ҫe]PU-˄ZfA34*ci= zE5!by]w'Gyla8,s\(tE]{,7,A U]K`=/@ky3' Y9'zTF)d*^FTV1u7X@Z!,GGX]d9C==w +?Avh)KV3 1VqJJp`NC=XP_4'gMD$^ggzl8Jk<{U:0]R4^X_GTӨܢWH"C-B$QЫ#/+djn$D*GhWa#|\ـ4TNWTrէ NX 3fr4z;iM1#j'#))Vn.*dsB@V F:;PytZMR#YF:Ѯ($J, 631BX _6'NeP&^Q1/dNskJLr˼ nt@C Z+(W QGOoQ|CP,{ Ab<("ޗ a8ђ,^^\OWPb x$4'!vg4xUnW"6GF*(uz^Y38I.^E|x 9>uZ GQiʑҪ قӱBgܰXJ;ainNJ^fd  7 fyqcl4Q %txLQ+mļqw&?U6z6iRe߅mP;NRdۚc=ˋ~2$YGơ\߂( ~Y a+^\,+¸tW0 ?,N7\5 SӸ֐Ɖ2\ciE""VO!+,?R(\~ 72$zEˑ,J*&zɧ~$R=ȽK52InW֜ % Qpan@\G '-͢zotGftծ^݄ͩPIJTJQ :J ?JXBWC#UFAH=Z|ov:-0DE*§3P}3etu=ƚ\cdضX ˺x2oH:YWndY я8N= eEs@vUcPp!BMJBdEqLWa=<`ǞƏ#?v|$=EI}ӖOMZ ?f)ŸhH}԰OԇJ|ݚ̓Y2&M`w%ǯ=~tuS$J=祠dz5+sġ^x hHh40|zT"MUoz{ѫTӞ{fQDt1:{* 2$Y#w+<4::; wT)4I[ҪqٿiE.bNtCR<~BOI∕w,yPKjMb=iʾ^Vy`>Z9݅h< ZyydAǿz[ڻ,u獤!X$KvS5.\kbWyӍADGY&Y C[h*b+ o&] CBs~bƟdF/d=h9~{}P{dڡXdm[AXtannЫ58"RWHq^IU AӶPvlZK:WG8!b,_^0{GlO4<ե+Lip-g\B\W6TKWit+6,(5ۢp\PcHDWL1hG`&k!}x$7w&n;*i5'B y JevhCeP;æni+aY7W%Vhp{ [&Eծ{r#G8=#`mzvd%-c}^2ؔ(y{ʝnۥ1$8>xj fyz DҊX89%*KB-QRiW:vH V;+dZE;e TCZ Szkrz],MN Pѫ̮FbzU؛6NW :gKx]Wi9H+ɇDұ8W0^ f+*\Ҵ)1 K M WXUӼ t{Z{< =%&e*+A.@J>[*YB+ Enc-ڢ ]%l&?dǹ+Ex <²nUw!mJ@KFt|=AբGss{?b?-5@fN SIKG Y Yi߾4)0LkD]зB3˓aP+ ;*l;-LFZa(k;i;>|UBD DOI܊S8 XP^m Ggy2Bvb+ ۑվsįt\O1j]"lAfgVZg-a?K)* "Æ1DBx h`xLޢ5r%֔9E.Q]̳R&ŪZk7PEDc6TB:W)r> JnW&YT.l)aga|U P[ *VX֩5oyҸrs$e\ڀO_}f"C m DS62$fcgycA2"-3Jܥ>kA!iu4~K(Ɛ^RB+3巿Sb)@¬j*}AKHr"1>UXZ6-5@4/dvUuk"pF+^a9s[.1BuZѕ)2W]ڃDR8ӡ䍵 <~v-YC$L)I}+P[)%oW @ApM5 )Ρny l dHKg!Y虭=pla,'YQ3ޟ?fInڠL]xfaN `nD9Ccq~C[&PXżX4^QP`(yCҨY| /eN(VyӶFW6B  "]Wij} aC|p$$+_:J%VlVx̵p)jXfسn(( ! tNafϋ?)GZTۓTK^Ba-'hlT cpte'Tvց-?\:GȰw|GG ,l1_s~&)/x!cd/)LQ"z}D 5[gT>;Pu_g) l3iV!+Еr!LznTyP#fA"/'( 0:ނ "3zmu H>\HP\BzND^Z!IlJeIBf"ǾOBٸ~ J(sM9D3g6@WđQHWZBWYwNϦ Lkڀ֍"x*UUC dѺ#7H&}VCC5铲t!yX.2n?*d݀{Iܐ pǩT | 8xhW.rbBV@X+>( 􇁀 DO6PX<4~0w%(qţPI=ceBVo$<Rv]y^٠(;T0Ulr^^ӴkN*y^%+Gu];o U UƗ赇.WWsթ_xy-,6ѾN!e |{(AO~i^)#m Y,!} Rltʽ'+rĪHoʝ a S]t2{;&x"ݖ6A-LEDMh ^g]Äwt%?r+ `Q f'- I- A=I.9R%AXoH[5 ꖷ7NXcjmmv9M~V.l.c)u#ɒ[ #A%@da @aʘ~6/b,%sl>̚|w oJl9mO솉Y:񩻷-d/OG &jC^=G }Ҡ2zާ*f«t>BRɞEVh03lr9~j%11aD'|3Bj(K-]B]WG`8 %y̷+w_H( :Edѫ=3^`Ez{蓢g7֎Dj?*R7b3*mQ BWFW]8tmP_slU@WY8 f&r*XEu^Hä'h[Ʈ$_2{HmE-V7TUD+NNᄘ^lrv2DywS̱Ppf{yϮ$;Ω_u=..H<Rt=%:|o6?isA#N"nE 6aMq}Ȇ4`ݐQ؃z}c,likbDrj}m(2W9z#n}(bN^n3^c,ւÿ}ݷo>zer`("Aa$a Cll+ ^DWH@aQV,)dhyH۠1IXvD^ˡd)T:P }:+eHPYo.f7p7Lt,{ ^D67'$+,n+yܠ(Z%,J*j(z{Y41Q@=r̽yg_"93jn0 o=,@3J/L>@FU*1"jn1*?Gsx[hB50_%;̓)r>JN_Lnf@Y /{ ڢWQŢN1^@pO]\zLa;"B4zhDi+d&WlE/ѫُ0oO+-(+FfH2WTg0eQB*U20Ϩa2NMFdgo[z&t墨d\䔿FZ&R^^ h~>bu}1ӆg rv lo*ZK4M#O@wB!FqI\.3)Z+^邬eG&ntc}b(+Ρ[b81pm5'YZ إMb,R~Tpn럹WOvfQa`xU0<vhWa/Y XGNYcy}ZݕFtH7+w^%zE%W(czU!Tþoc!%`F5YRv^PaF< f1=Y >Pypqd#vb2 \L} Ί.$axFP'Z5Ui+|fqU_SZMue"GY>z$!CfG2?[WRmYII,kYvD+ tQJhr-{$G[ "@Wo_(!s-UDTい>].@e"ÌAH O,b($2mk 2DvRhDWN:o-Kp 0S[dpDu.r zQcP)fyU%Z'1AE:t(6!YeTPӭ7 rݩQȼ>CxRBȭ Fk.h_VAx6&RSDґ0,e^GZ8$4"!Xv],c:1'Н^BCr%6ig)a_O2EHC3${kֶ3p ~tpU+?0YVR+!h0vb7LWBV9dyokʩ*[^-Oog9e#bP!^eWE@ijuP!cr`˂5DM_< ThI.]ƂhP4R<ޝvm(9znr]b1%#CW9/p+'!6a'̫P>|VڊíX&*Buzz%piů,eR=Gx{S\,l#宔 od"Mdۓ 7{*VB|gkC̲ȲX6CH:I66!jCƾg5s!Gjp?Cv,|ˑxE#XX0nnWL`:P;yZա. 8 ;x%ۤWۡZ&B~489G廮@7Q6"-RW\Hw 1-+t> aUJ֯ ]?6 bHu f[|CYtn:Uf ) b"fhAҏ`d =P.k$֗~GBa0=*Md' E, şVZd,+rQAd- yH p `b69.QfilrjU5AҐ:}N?*3Ur g;vm+)U飦'!9Ո[1!; 5l ֪ܪ9)G. 1(bxF~滱?EQvR+G `m$Yo]^=:Q8Jaѐwg9D;h4ѴN4(ʛFAdG--lcL a(["}d - 3铤Ez?Ž" ޹^e1ܞ@NY:3zsTzLI컕E?ʋ5vW {( &` yfd| GӤW3ےǕ,M8`0PCZN% B~Չx]U=dzߔF]pBJ3yBIp-ڢ~MDةVaA/m$^^Ty}]@Wn8! y$׆ܱ؋eJ-g3l&"pI ٦EiE(0|Ǯ)ruޔ>1gko7x8w wgwI=4u dzsxn7$:3lhFu?1#nyYrmʌf.WU3\3 E:m?ni@-!;l U3ڻ >12-KbLLA LHߞ=7U *!O RX;9_rw%bRzu bEj)>5\4 _n ⫡uy(}" ͽ΢P6Bthi]5S(~SA.;OI/+]LA~f2^uteh*5r5]L^99傂 RB3_V,/oEg)|smzO}*?wa$< ߴ:\ҁ}o8N}O~0֜O%+ t3cc*24~4ps 1iyi&vU/`􂴁R{wɂ VxG誩i~  @?z&R>gfPpaBҩ΅z"Y&@fS,s+$.9JLBG! b5#C6%j--OëXQU^-ՋMNUg(-Ŵ( p䒲黬5HUZ)v(Y KUO҄JGBAv@1#5\_e)DL tXJr{ (ͳBy9n `ǰa簳r_? AW-˴ؤW ^ E= Uhk^e,M)0tVI9Qoc2ldNZ0thwyqokr?Q?,>?#c/=ބ2kա=[eJ͓g=VmeepNI =O5 =E 6 Yo莙4!Y>8KnAv1 @/?”'8d?1CF'-|;Nq7ekY}][7f}f4i*eM 0*r`O/g^xDτJ "]>8UzIkz^;v GY+Bjtz1ZWE+/w,7߸xBs#zp)VEuⱃ)E*ͅHkvOB;C~ -+'M_CWki[iϒOp$7<^wq]|Mp>^MtIiVnnlR6 ^xhl^uSut+eޠF=P$m*PۭhWpftr#IŪ?l'6YѤzR4 Ǎ_w0–쳉n_$X\m4V'ƺ.^64N?0Yha߈&aCdϪX0>8]7ũ%',(Ы0 K w=Vܶ e* aL)k՚Fr, y*0iV$`?|媶| #q{@5zU)4+lcxL. J(A^ة$Aw`p^!y S|7j`A}z3`>EWR!8 C 1$os+} wXbd%u6p`,%9ǗLS85٥0‡8k5iRT6~6f:ڐX_bFXj>wF贂NH>t>ѐ|2A@!f,R k,>c>h^\c!+oN 8Uz$UX - ^A~yR3>$^DݍsV\q,\E<yRrTq"EPA#!F*9As%bPn"Њdch <~k^3)(Cާ(d!Ľ1x6գaÐ P}t/˟$dץpWSնt-4ƱpwIzp6E֤UʡdaAcX.r c}el>kZ އZEBT50*CQ zYϣ۩eTO8o3Ϻk ;):6QPJ^WbY5\xˇHUu&Ld K%ku1ɫ+$ W`4+$ѫcNy#S+Oʶ$ԭ^!0I*r ;soEe.DWA ]B^9 liʻ}@M&p){5\l|\)ӏ9Z'lB2([(!FS[&C|V z $yYG D5‰{@7ywNhɚ84Rb5yxjDIdX6xud3c,:SnM¾W>048BS|G63q+>4]+lb8Qh$MBn8WXVOW\<(r1W@axo׳DƐ:^ţ^, }H)8?'17R5װaǾbŕ' O]M۲ީ¬p 20b{jq2LI8"(Ji(kUŢu&-^>| DVmrBWJx jeBIM\6ⲯi,wXԞmZhe0t/`2%V6 _e)8H 2GPKhrB}]4>pƕ=Hw:LY\h; ˛.\=ouIŶCFjQ+m"5Ս:AV ݙ3g}g]&.b (* W.! 0GpD<ߣWz*6:YLM' %w m{vODP68Zeen9,(?r{WLh*uG*F][e&zB켄3v34)ȥ72# `7]R"*"OڨO@čpYkeKҸ7vFykE춨oc$LUH>6;X:|uPs<.*KĭI&ΪI4~2~7}b:V Cҡ5awcpqAcNmrٹ&QN 4b,ϱ` K7 ,t= 6'uF*VȖypz3V[7 pş=(B MȝC<;kWez܁^ -BAX$^sxJ®":lKwdʝ=xa>2>@ j`8;ʀT2˫ΤWhf0Y&U+4W V  6侀,22tXy]yC&!92Bˆц0ӡ0/q@R<覢yC"_9"Vh9HHpijB'1eE8g8@ʼ[Mܖ!7^7stǭ6}n+2 @@*D]TfM{)h2 )a* ʹIrGy}9!+]ó_FEּ&dQSP4ajߩԐwgXTfq[:Rs ^~hkaU&Qx?fm,ߙA*+Tή)*"  FcխzL|wW*YW 8FPIwBeJ-y*Xy5CePq:@N"/LnRfBQADESUY(Y5S#TWo^dSGH?I0%z%tK dnyrd ^{s<@Y>Ɨ'&wQ(2*?A Q* ~VA+oC!Sa<'23 1ī%GZZHJ@fk)a$)D+VNo _Bh /V~tPF8<  %%d ˏ7M1!<{$` 4GH)/F&Y/cƄ0KM3Q3Ȩҹ9ׅYЦXT i`5juϓ#j47ԡ.nĒA blz*tȢ1 hC>k+/$̎v8v Ώ#&@WkFGvȿI { 7.PBzB,_RWdO~(& Q_Fyױ%(<4u*EYL='^ݾXje\s'0z{8 3Gtѕc& c'E^0qb>=[+y5-RYn2iIqz0?Q e#U) |kt8 HA& H ܅N`Е$>jXQ/#-YOgXd`7+}P$C#-`X[ơۭ:ܸVy2p=abjXU5J-cCEJ  #5~(LbbcdE8IX0ݳF;1FUȃ>7ϨxVC RGtz) o4 p~wl#!+#4D4z}J3LmG fEfm)d@D  īh|tm cL:FS1,4~xP?sxxD0L׿2B'q!1^?><ե.g: aٵ]ljWG}e 2!mAPZBk`~LoX\uJ vh 3BCO"[ e>xr%EB̠0VFc[3 jդ慭5`V 5_.z11uqvcwyN-j<0;F8H8!QO^5J2jy:x$Ĭoâ] Q`l;ʛMS+d%.[{`N+AҜ%m#W^DL܅GzkNB >`*qD *ѫn[* "3/CQf-MJ@{;Aׅ5hlt "DIT(nMbdt@묫dQ1(Lp;<(b*n in/r(Z Deړy WQIe)->_v2{0+<جgniq ۟ڃ`%E`7šFU2f~L3} 0VZ*ʽrz _7ƪ1,?&&de)m5 />EIp,bi:3zjy;rU̎EU1JT7ޢȇIDx Goژ&jFI7^-]FRA2>PJI9&],iWWNS;?h5h=f">ǿS í0taȚfb}gc.?&Yǿ;X#b[I a)x.6(DNkLֹuua>Y0Q ய$;lgSoa>5tW+$dMY_t_QQipsȹpܐp? H{uϯ<7 %,M=SW/.*ܽGxN'<D|f+@Jͱc] Ę)xڛ1r|%z% Xc.52,Ѿ/ʎ @z%Z\E\{~bH5Jw0vI \Pu_>Wl -XT{#b8tOڍq=&&MGÀD$d"杪Y177!IL1=W^5ecdj)ߺ [/}|TԪc=Ӊoڙ/v3I5VgɣK Y+bCK#M u 3U zRZ 5,GWgIb1 Jʮ5Mii2WU(+V nbOQ'u^ZQڇز,'/FF5H2B6YBC2S$axzJAO[86jSJ9ϲAsS1B܂UY_=^G=t%Jh-KWH"3j35 舰f.?l䮮a`1![NGt}1Ogʉ\}HirC؛^C:dJ^u(q|+ !-8H*!+폊;X'YH0 oJ~>4?+ד-"2_.&ق\9Hh[>PXBVO p|'da7.Fŷ{ I N)Yk 5^$w%8O`:j0$|g+vHv*? -y F3n$cQ,`2*@AS r4 :≾U^}9>iA D{ be*BevepCxTW"*ϘR0a,+c6޲b E /^T;VN>Q8^DWW7[f;av4 Z7ϰ Q ϑu(=RMSa/Kh^ LGѯd:u2GNN 3haЌ쥲qwQKch ܅x2s:WsDz\09ȾdN~ ocϪū"%3 im`뉱j=Q&TwR>:IW |ܪRrİ^K@IN tye۲ҫĽ#sWFS+9 j S\C@n09A0c zh]ҏ>F bl'ؤ_]<+e 0HÁVwUn.zG|V=4*BkQWG?=9)Br?WAriŒ>oMJ,^WgP/-+uyQmz%Ml#y& L8I Q,Ϣ !u?Js8( 5GM \;`*nyrn=TN˯!DWڶPS$U@l*~HKmwڼt.,rD*p̮5UvY'HVrHjI#YZgRG;߮Lfǥv{,Wn TÁX+8PI 8ˤܒ@eK72diEscC7[5̩9땷M5 (}pwT#TbĜb 3&gV*=W]$&'p\dX2=eU];W|Ip- O*JK@'T9ITz̡v~)+xnABd.!c"a-Bŵ0]Θ8Ŝ@7Ը$_S!5^knk;j ZԷ[kTfOy;K6)(ץst/W(SGlϵ*kҠJ9l;O̤U&=*J/ćJiy kSm+dPcUYGË+$VUғi^UՍ/bFAH[1o#~hهf. ;eӚp?3i؜l DW-֖6< A"ZƲA *r@!MLs@!6i~#N3fF+BVHB۔Gvnv%.xIyi\ĉ=,6]/G)h|--9B~-Q s[T1VSs!lG8Ϻ:n+0M:Yw4FiZ PK&l9kQر'ٛ#70oh}ua&Z% )oNlwN" k{^n  -1yǯ4H & mc^Ai L'{CfdDEZh1eNd&:ئk2}z@GW4Ch8(%^6@InN ֮U-Fҳ4ksxE{FgMil X):y /h"rx!rÄw3Qypncxjrp!:ƖMZo8!,@D]^".5:c`ҙ eOYj`[_d޳!K;Qx`y4ƢZSbnKy2z}ddrv.1J9͖/^4Xu\f:I*X{ιLG ccq!$܈aMsk3 \Aܽn̤O=̞U,b0 4t0Z°2eW /;YYl(U.Ekv ? G,,ӫ(  [$' S(+䄧#FQn!{R6+1LQf䷚ .@YRV"$^(+zۮl^L~<;6GHѕװxޠu!+v #:FO\s6wBoA)".f Sw;xQj?,D)p B Mh6ZHJ9_) TmeP5Gfd> GQU$W˿H;7 %rd/\0Lpڒ{=TD'Z~:-SӇʒh1vft<>!&&Y 3ll[Ie_pPkH<0:;4z k z5{cɾݞ[ pa%n0]z͠eG[,?G8FQFmlBoZs@gC bW3:)R>&oO0TWH~&qJj af*[zj?A ˹S4 qQ^ͽ|t69jb"pR2=GpGBWvBI''@AJj10CDW/d}J!W2a0ޕ/ љuE<*ʑiHhY# 8i L1L`? alue2"&k0Y@QWI6+#YN%$GMAAŸE+zL&Xo,!z2csݥ}jA 0![͛oevGd36@a<֡DD$esۯ`=5Kk]@iZɂ>u֚J(\k:^$Gq GpS$VP$ !˘^ ŝՋ$aK^F"\7OjȦ!w 1Tz$Og^]9.'Fۤ Y!S# lp90DGrp RC+$iUPYGdʭ5eI7Oc}ZV2y`zffL@W =61EW;O쑧N{U``ٹ0hŵkt= >2&2Z,\xHyK!+ʫVfWZl0w,XcUpkĮ*I 9{f/-? - -LGcbv7fIV@Yu)ʍ5cHW;7@mXv_0`b^'c[|oE!Sz,y  "2f߇2Zb2b#?~tEgI7^%WczE<%Z9kf Cz.Sa\͆X&2ߠW?W*c:|AZ}8h!b^A u29 ͆\| 6U+%^bk{fH vGyzv;OO~*)% t}t!@1+^ n<blXF/#':T ZIs *1*j Ygb\Vkl5!CQ:Q̵|: ʐT0,XtdA xkl cgjsй޷-j0D4 hKވyH E?/] 8ceȿf(ɦv##?EJ8/GRWH] DyJ|@w+dzHHs;׿,a3iL,ӱ_iTWpZ->\A t@;@f!4gBݣX$?熃"9CS! +p 4<{ Bau[OۀiZbOX˒Sz2UU.{ w!Iʭ Dq?b7y}dL6dӾ 6oqZ٨Lc<[-.Kt+\GY PB#ua0V WNte5 k<,]% 8K?Cٺ]]ի5W 0JHc!omU^*nXJJ y̓Þ;DXHnXNH gs)V P,BcQQ#>CSWHUI $8Z+D"9,9:R"c z_`^aʿô' Uje&w:Оiuy3^Ggm7pS*Wkj^1U6G,WQ ѴP!/(JDMm_W b~;6%ԑD&DPUap+FB>TtGaМVcҲ;|z/o!5JnOx"GuWR׋ Z]t$([M/8DZi!Dt#Ɍ0Vd>y4d8﷏gT%E%n@  ~m/k? ⾜l |_hw3l0q+z1j;'u5;Fѵ_*+̍,ӫ +5z%e@xa 1,4G`^)ymUЫ ڪѭi.@3%љ6Th05^WpD ,O,V|EL, tKɼ,WŽ"}$EGk5" 4ϣLќl;x~Jbd ~K5h&lb {j |pC2'LRwR]@XxdIUxS%|Gyia1FsF )7Ɗi~b9u5EO<]f#,mc, 04(J*p=c."pz|})F7 3e \삌Aj%ĴSKohiIIBS w*]Wn^Źma{:A=|ѫ.Wֈc`-y'2T!+C80c2G FQ/z,AF|F2>>  TX-8~~ao.yOP-~Uvuw2BB $Gx[x7Wcdb?'~WTTІx,ͱ):_n^1vs!M/jz)o,=Eg $$ {tڍJA(*E7)F;O'9Qp .: ],[UXkAزiB&q{FY{_q9¬gS\3BYÇ${pOc),QeR]K"FE$5YQ4&:5IZKl{~XɱMjk/&NBcP4V_ 瞃Y8o͒15#i,^(e9Fhĕ(\Ea?eG@i7Vm0W.Zlq~Snc_v5`$TRҩPigHLOczL_4}rBᎰGq||ŏ# $$P@`"%?9f0K =WJ_>kS1B8V ➄^]yJ5O@U`ΤNc>rka0i1cWU ,B/BwdĊwn5+3 Sk|]J7@ꡑN%ʡ) GYN8ʄ/9P#*ckmtT_ѾLV>Szw虬GWwCix,dI|.p w-ܹ OG,-X#F6x:YM!9KW{Ҥ MZe` 2w%!_|ddd׼}?g7.JT_Y{>,~!l垬 1֘E,jTR2\V9 ~#uc; qir9= ;+|#w;Up.ڣlYF{XNWL,R[E/^IՅԃ#0Ԉ-+ >Rc`H=)Zߙ^l |NlA~z:1mT cIp%-'(S`x':7wiEB9&2},Ku!FfDp_ڋ!DPkc5?J.s)&wȔ OyiGuu&7D/)m=V}Й#Y)$U"I<1rwHV3![g^a㲸XP,7`wV\ѮϼVt.$49WVN~Lo"V)⏱'lba#؈tCx #@WƔ)C[ۦW3#t^RxƱ!fUzPHjc++9y9*\F`z z F0R ]յQ#Wh>VM-?h d 1`՚؝! *:dFh97张Uǽep X?0ኅiSU:s[ڤ%kZvnufܒDZAA7ۡ[MQrּ}ǰZ.00HAHܪ$n~*9,0?'gM套F+Dx_gp#e B^#-r-HnqڑkeƠw`1 i!{G(VŃ{/ze!H? .wIK*VB,>_+#d 2^hHp9* AoPGB5+پ^*]dOBi?\0fh^J) E [AWA1e-뱆BhTte0Τ\m\?QOCWIe xnpIjc5m*> ct3ӓ3&Ag,։B^jeI# ݑ5fxK?xdMK'va[i9 + MFwz4ڎ1+TwB g1,ǗRȏ*tc#MaUsd'scCpD^!EsHWǐ+f>HOG`s bUuhyM:^X.Rn+ѬyNtmc;<޲B-LT&K?Tt C"A|,SbuRD5Z.E]j׼ceʋ .A_褳ЕIEVҌ]|ԘRCyDz"%!qbvXm$L͟dacN&u۰&ʰC, VjQ7/Xc0R Ff_?. ̡G-(u>|0OBԕcVqz4sDR *eƑq>ϻ*p6S̰Ltb:x&ˉPX'A*C0+۪kR=rQ}&"ʉU lr@WHIEza+c^!j_XWGަW_MDmѫ[^S{$3r}ZnJ@~иpgʦw 8P7pգiٱXgM 3 o<``c78%NjGL֊vlbGk0i.x'Ҵp)εk;IV%C VDLGҒ}a?'Bvja\iE]<=wHb,} 1xVĝ,qULih5B'Me_k܃0$-~2 a-6WC`L[0:-h0KO"A4(2 хpIZ i`>!89ޣ__5:@ J.fŖ9T i-Y"J͌ #F+pgE^zyĮegy2(x^y);JzuU{ (ukeh ! `nN͜Lqž'9]O Q⚝Ɨl(?Ԗ*{~6\XRALgS.Ӛ9t%,Sg¡]u?̈:bYI>͒00b(_/cد8AbzưDXo$Y%+ lJ"-,wf=LQ=ֺE}L"?wHfaܙT0n|q+*9WWշ7X`0h'ۆ9(:ejD- Pm-?iIR41*J!^rKn+QK$z#/+?=WKOKhţWC}'4qez=7:eP!O v0Ũ0^x"٠W3/edL9*FOT ^AWAn$G7™CWȔ7gEbyDV#t-Ir׏K15*NRb+=eپ]"9+:3_J!d|`}[~2>EW{r>l۸N3\s,2;KQ-5!tA>X)IT}k09oץ8?Uu & WN+w) &0c=s.!J¸)S[Ҕ-ǿs&VY6"ZvqV"ےC) F[5zD+QW5f>C6eQZe+=sDW2 t5X#N^o8F9Ǥ,wB@2g{ (#({j61:l+pd7c XcY:߀2¶9O:pbMo7ϛth 32ꚵ[4D9a%bzF2bvGo8Ԅ/ BZDOP+t<NPEIx6HzVX"bp?)4ӿ݌ى^ Z3. ]L+Z=1xnqI Aj .i5H'-3@;nhќNs(<2c7q;8㊊@;J)'L`[pVBnǷ AߒaX8 rFzH"L[;JIؿk9%xRx_ UX,Wٸ* V#KL 溋$*+k{/*^,6MrަW]LIӉ0(c@bīa A0EDEN,JA 1t{z ;a>DWbޑ2h!EQxτ"T)HNgCEge{P sjFa-#*dzD/$s3X$<1QPY.hUF|eWyc5 D^?̖ez-C۰|])J.Q((.| H$,"2ε;md=Y8UH0TH^Ǽ;5B*|Ph 92EҽdUm vwq";,t*o%[0 ^A`P'i_W?Tag$!=$+LD@ il1"}zjj+ Usxry9 3էlMׂP= QX/S0Xw?if~Y]WV82k@B,2&"֏bX_QH:tu.OfGI]Ńū`E&LsZ0iPPNgo#D(" U @&L$ (c1~# 9n 5QŔ.OC峜!EϯƔ6_2t #gt(zousWL"IJGPFŐayNۆdV+Wղ,h-8g4sKVyqk"LֽhlF)$|2ot^t XJL|T0TdXMUˠ8BIB`ZMy|_K` b-sM~,$r Y|+h C {Kt`FBL#A<**yC`" u5h4g ]z 'Y`džy^f1[M6 YpAr 3~,Dƛh &^ɲڙX te#0TWi]1/ Ѡ (=^]FW0_ {=i?aI _!匍^V`Z)BK%( E 7GD [%$@0*>B-E! 7(\+AJ͂:<}E! )o uS%ÕqA\>,=9}+ G8Uo'e*cbŔ޴cLbjw"M/w8 ε-zAoa]wŠ;Z6 $6G+Wy(ѫ4Ch{:J?WZ0 zu8~d 5]8L"#+a^ l<ӮW?O Kv0a05z|%Qtzrv혤VǑfv'=fah}s(vN{hՁ^If$]a@hΉL!.ӫAh-@tEi;.+hUF PNlLW\K-'B}'G;=}e$fo$.C?JSD?db]iJXC6&˃9m [vrڜJvbW!qb hЧḃAex5W,T{[)7YFBb q?0V~,F]F8faa!W,&zvz]' W^PE$;a + tE~6,jpcg#F7{`6R/٧Ņ%>hD)]{D׽ar? ^#;`ȰS \d 't|a+PQHedfhA+(X+$9u>rpl^aX~@٣Z^aϡK Jchʖy^!cHQ]ͷ*uWf50F\Nv={A|jÊ8rBX_b]a IkYS-Gc˜$ݐG1ZMc-0_1V;?̨NKe9,?˫g``NTL] x@%HTmp]JdFvqQpg YHV~_~]! ˸ ^)- GM}zĈ/:>h3{vͤ%_kX5͌Jqi/uc*]0<2_jK v"355[jYyVSN*,0[-ֵ$N{ޝ0?bQv!:Hkw*RH:7ξE%LlnOt 'IofYgj4P ak:5ߦoЫsޥWK`X&Z+=a!Ґzs /xC:Ghb۴1d>_iJ 1Pj4 $di{ }Pl0AWMxOIjR8`=Z^0ottz4G1oa]@;c^U +΁RY= !>ŒM{dwOS'eBxwSM:o kR-QQ^ElsDȍwv ycёSrsh:@%aʳfL ZM~<#pϑ gKSzĆ"JI&՚{ZkqWfE#cQ?#~u{6(uKJE7%Z&^)^J‰'YAcjX?S?XQ]? 45ǭ",WZH!v-+FuYwn c1\~xƏE,JŲ1E3n$l"eÂKdXG_*:YLh& 8j.K"69 zuP^hE#͉ "3dzk8=WX7 jGs)}O%^[*Q_x1YCq+xW^CCLfE-ٖRb<Ky$]N 38ANgS\4whDTa]â˾L=+)m4yU柋Ì:WH _lc0W[Mz&@pklR"CquQ7[K-uf;GU\£*isמmbݦ1w7586 4:ӆtN<ed[WB&6Ba +ѓ3aCW{ b$ktfKknTW I%[Ϩ"ެIX fC y /!ft^ ! ;S´?had@e( u NI++TԬVpipj#]-x +G9LF>lzD̉¸~)ȓC9BPY!XZa2R0i'ކ+% 0i=xhNB~@v%^ $^a=p BaZ1n3 b#iW1<h$fJ0z}-TB[.F0+1e߲0YTJ'cI}#&h"7edz=IFcJ2ķԖR~Pe T3:``slФc-#!|O+-EizN]*e ,UVG@ r@֩_V.1zdŔ؍/f]M>ol`/jUgQv2,$ =JgnVc˺`( |3+ؽ)ҫ<ʄ[bK? @FzAŨRQeK F^W^KUsO镯^M? ٶeaG+A5f! 7]*OTi#mv7Gz&ګw.lz`9jp9kdƐQ(LYב01 etk]*+y`%vRͣW_ ޜzTXA1Gwl^AQ䑠,]8% U{s(u`'5zPex˱-2Q0L/]4@9٬lo/B+Lޏ_O#њ]\> %:azBv"f$깁F‘|)e MΞT2Rea}Eu URƌm#-SMOyʓttLN,4fƉM"hҋppHw7uU7Ol 7S{}j͍]ۤWn2 KgՌ* jCD·*fUNROV>I ;!37r±HWv;Eeh4( :RrZ7#UFGzB7z.ᮮ^1/ڣWH:Ttmҫ.S+8o+gA~a'<*L 끣7!xI{k'Q _+wlglu3,/rhK]I W NFМx߈ )VL7Z76Ō웃>:s7Ni*. hhZ~E7K,Z$  $%iv [Q~V#WXdx5>0+Jkȸ,:9-k]!iVZ/E776s|R^$zrht}S1=y r Q>5B`"\hqSU*uQzqlf>lZ ? C')nq3csiP3/ī v yyq&PE 蚾 F>h;q4$0"i3`>YYbKgE{~8ff$ aBV?"zT|XCvޓ5̀L#v|S`U#`uŜ QΊBNru_:238sX`*}|~WbX}|a5YxgNLad].VcFPW3pa]K>k~Ms wkNTkǩXtst]'Li xr?ҠEK&_^D;E1i q,H2RdrJ% Lm^!q 9ˎlBzl0]!)G(~ 7{Ae4Z4Cv*dvZǕi6H+/΁Oȸ[n^yϾ^ȖQD:^(ERndfm-!ܝz(VD#TTܛw=~Rۨt|Wx!8ɜUUc6i’xQ6_zķ Gfٴ #6&u?(]s|olbAXٳv2m3N(.\`uݓ'2|eʷ1!z3$M=wonD}3![rp, j2'"a|3*bRvfVgGA VɀeBTU 4 0jҫabu=B9*%ʰ3x=WUϺo^Aq `BBRs7\F^SC&Ox]'JCG[a^՞v"}؇Y. =A/֤ڱ8Oe r΍٬stRlVmckL-c^C)X6Sng@zl04?xatC W!IaI}mq[8`Xk̥9[U(07NYTUl$5I9QʻF(pgIin5@W+ʵ0J3,׆&d`  iw"&0ԭ䅎Z y<;? #ӫ<"^}.}?W(]ӡ~=WI-!EiߠW2gX4Ѥ"Sz1E7G#DMDh<;SX4-AM(r.q`JAT>c~-tEhٿnB,I[Zfmo[yAXTЛ'tel^O@뒬kY;a I-O+0ܯU}Dx-ZHK50֘-cu:اWS=@~w*V#*dO74մ|NH('Y;Ii=dmb8,NHKBl"jS"y\@ 5&ą?A/~'S,v3wּF}Z,ga9a4%Sէ&H"tPRKط^^ygn`rXAP:6QH F⡳otZ#?Wٟ,{uD0A{8)m4, j+ֺͦ G-5[Ztd$>j󝡻Ct#Yďu [,ViSQEr:X Oh>:#l 2e1ɢ.cX#{dhNK7 Axp 7o0eyw;bp }jE,%56I,a_Z/OT}r1/VTseE8`]e\e|عmwz7튬-\6m sNuxCO?DZsUOtN Yǧă&*ˁ=ikK̪6ò"Q'+!ğaesMNQd*e>96%蘥CZqnD{Vzn#GSu=8m0Xk! r5ls"\R+i6#ljj8Gձ@4S8*3%5zÊ`rj` :*Qם8{mIhAn4iLG:YN5DFǠ`n\w\gv M}CvFXͳ6e]/B}ksU'WrjBuSawXγ7) f}QKL{Rhp%[]\]'bԾUE2 0L;@ =*6JLX<?kh"yC6su7Q#]ք4<1+uJmnIN:̥"(T^mqމZl7Uk*1:5zG5څeJlA}3ӫ+)Xcz(1p޹~jOC4AabS_d K听t!2=pFQ$&*Į*uV˶VM0;m(dHO#0 r׭UZ J2Knޖ.*͕c6cHϺ3'{NڜLH+-t-"{0I,TL4!5Z5X WeΚ+?;0M0 -gQrpiUǧ,i(\o+X[dM0 D7i~KNIy,1 8]xr}~!qIC6H˫}9 U?<|#!*8Kn'?Wܠ"j`qɽ CQ攀, dXyy͠[d T_LГ v"vC eT2ϚEdA++lMAcXشKy;< sQ1d7ʭ4E^ɟ$kJf)IFM‡X$c+Z @ Iưxj8)MaqXD8ƗXTbV^h(nexTNy"LГ/eXJcXO:d? z,4[h^'׬Dő@f$)#Ĺ Ջa2{jok-‹atSa0V:Z`|(VRdjΣFRIimgQ}efC߷?d5W3R3'VFd82P52nR)}^\`MDnp=5:v6gfMtD;eXom^ 5P۰k/DaшWQU-.O?Ʒv'kE5)痢ۢW^a忔z(ҫֺW#WN6Ʉ̾u8A/))ԤWe%̴ 8EOF5XU`ܛNg$^%V'Qמ$iFN=D3G@W/d;ȖcC5vDԙwNuB/T es){nŭ)e뮅Idq-qL͚*Y؂}>C`k󿽰g#S9H*;4/J +hdNEzG5r wكњv*vU\swRkFP26Cdx(WbzL^)8| iB2{Y \R'Ϯ VUM~a(ԊS;ְN}7K]$ u~e#n*O8Haη2Tv:GFK eR>3X"uߩ s7gvͩvI@\-s_Fxr庋Bi<4:(>ND`ViЏ*|GX﹇a HdOde>XűzpȓTذgZsDmPջ_T +)N} $C+; ƀLJ~?ӪDXzS%Z5cKUpKnvw]qtHөnЫ1ʢ|2G*}O`z*o.%[ UD{Z5X:*~ o}Ǹ*Dś?Wyт̔MD>2czik6۟ːN%jT;Lp+]~*0WB Ia]sEV6`Jd\g=f]~z-7X;'Y0cEI$=džͫoz^*T;J 7RfOj MVK D:D񤽲'Pk<FmO*x44콐T؟LAǵԳKZZZju/Êt'&(v@[.@ŸȺEvYi6XD%nDŽ;*)IF-pL 4k>~ [Hbnsv\ĩkgRd.q'镊-f#+ت2r @f^댼7lgdHc$?WS~B.ե0l^tU^)RǸXvVDH_mzfڌ'WF;sjퟫ ߑ)[ 7 YȎ؋l^8+2).)~JB1Z2mߠjn"qF}Ma갑W t)+6q8!`ÞY1,{lDQ_t8%$ (b2貸%"ggq7ue 0<[Sh6Qr.M8PG<^wDҼJ)%-Δ~놣@7^nT٦'rY⍦\ҋaAX\XNNj3CbbxX?WE.9T8 xjH;9jԼASMQE3R5={~)V8Bm8aV C 8CFrt{;WޫzKaP^Eh] Y. 9X+p{4;WQIM@;Gydݦq6AQ$^+e7rziD{kjaI0%RGTг6 -SPdt 12^g]2١ԺxNJU .+TFk{CZY6J8 4aABrKG?,HM?f>sEB+鰮 pCnfc%is–jU^vO Aٵ^iϹR#Eց23FV3WVVpPİ3aw;iέ@EOL0]?=ybBkpW/SQ.hW!4p{ Y+3=}ÍO05xv*QS߽$Tӷ1M1YR'g< [ZI4F Utl` 3*VU)Ž!4_wcXu7_-FRϺ6Qu:$3덷'Y)eÚݕqo%_ka9u1ǰXt^)&nPZac\UPqL U+% i)r*+Fi ?+zѬXFF9͡`(κmH?Jr=*cU)4EfbQߦUNn^spK\Dۮ \\]dhc`0|HvFтV{Kcf]Vg'es2HX4HV3*jk׻蒗zrxm!i+utXv9CYL8v=KãWp'uQ|?Ojp&2>ԑolE^;aqgnCi#˃!_ɮNc"7o$H6q++s%~Ϸ0fm.;.{azsoy9џ#.LLBm>?fPo*0| h[ryU$,U7R(u^>'*sڴBI@Kd8dM猠Z<k7me< eЈAl~5sc̊l8Zi>lh,{pccґV'^KoxXf(j{Rk[#}4iY+l?OѴHO 7l Guֱb,9҃Ey=1\`.lXqBx7N`YҶ4k'c3nuɋߟ+?ԡ{lKPHw4bv@кt^=WVwz !Vt9H,& ՜,KGP!@FT8p2\T=./3iLϜ /hC|Igl(ò9kKNhrqqǮ\@F_,_ܞK`Nx%Aj(V\߉)jM>h4UCArZz_ %vT+A}`)e{x$oj ;KsO1V !dčOj7w:fN#z_Yiw(wX_5pT]e@V"a֏2u> lJֈ%FxXW%fvުZ?!:8 +LItbؔN.'$(V!n]-"TPxSdk}Fgv܍ypBJJ*Sk8 (C: .^])oCAꪇۊI@noi$x Hu" C٠G.my GA(+B iz=Z83!(V?-fc<=% %G "@jeelòy5[}^[p=@u->ep1Ky/ш4K1j*^*/yr,ZI)vuMϞA~=6yZfl5ۡ|0OcA_]),Ly#T{&W#(fhUAVT@[t 5$dcϘaJ"qkz4ܠO|=U0,~O&i; " 'l߿E1Xu*ޣ.ȷR]d(aaK,~zvħ3m([*W-Wg0a=z n.tF J%荿f}; {feL>$(Om:z1ǟЫڟ(Ktx%FwZ}l+%8 RdLʰ)m^2Obj+IlD2ӽ䱷mmxR9*dhjh2!!2e+ͦ Vg=j3eî*GXmiUw]]h =h47A8\7 M;C*+S6/0VDyut+ [z?;_H0ЊvfO7T&$=0|n О4ʗ;"@f>\rC\Ka5}rOH{&zDIif.5JH*Q֫"9[>kXo{9T@8Ra]/e૯"(>o/mA- qg=NBn\8W(ş+8 `1Bx}|voҢ#zu,;*dҸE+pcr-ETÜzc=}bʵŶ ʧghDb+ ֠R\1C[#DA3Riw}1Vi`;(֫7dʔ +fՙq^. cЄ{UY=:$auYݖ5*{ɈaTɘ돹jf:thL48Km kuw KOj;Job{6<ȸ|羀66r&:-?P;&H@C $qD2á5Yg@r^z}w,sS+t & yI34q5u:]}fyR.TQ7uqƹ@}}\.6Y%sb&!9;Ն?86fC[Dk3B]Qę5 %5[DŽ_Nc$lBV b\> n]%775}(oP닯c~'`GhV]*V!ţ[~x$u`vIam?"%r;@ؘ5O*UZy_ҔB2UhFMŒ bܘ -Eq+Rnhq{ KO*9g r%lol[ov=Kwk U+q&* 5D+|Hp  'Bn`E࿠Ww X&-Y|A0kMzebM-si}ԫ)2@//l5TĊO9n ?thlJv5{"`:RZkWHz%-ִ*崐=0ly$+*:+*D:tt:Quo(a+& b^1h}SU8FJ` kߣΉ^dXO 'K";<<9oŅN<0i[qe)O43o]$+"ȤԧyJ~MkEm?i,~(Sα'O;LBenֿe_ gϢSt} U$ ҄o*p@4^E+ 7}P~4Ⴡ@O3HS9}ժ D2QҫCg-lQ J V zEO\^.}a٠Ja%3X7w^!#zZIMH3•˸ ai?[n]]A5~-̊Rw"O4W )ϏIYC'T7 ;L3F?dz4cHHu,Q/dA-)'Rģ&/X̚Ceb!ta}ƣy_x[ljMKoxe0x9{$ɳ*ĢMHuN4^Jdb7\ cV/<. cW<ŸK0.ןsND }s͒119!ÚaC?&B(ULs6 :GP@#a٩b^p$i^Yre&`ELct ;Wv䯬Z !U}ޱ$&?qQ"ga[!M^*aF[&7P}U{@R =W3Oʼnwes;}ҍLpE3 s1FHN&{ #"6wi }2XڏtŦtٺ΍TvQZogh*d|Ӄ<$K4J#?"4L?B=dc]Zу%) qcD,;:L)ӹE!,(jB7$&cQ K+kڬs21Rl DcچOC>ormw+(g[Hb0BC)82*XWٯaM?߹h?dݛ]B˴a0֩l:]֋k+uv.h lY<`;(m` #m!ٍjۡOwJSFU<JcpӿnˆPYȌѝ4$u@89^Hw{8㽟|5' dY"6ˀa(GlDvwY؄> ]=6]30~z 2%tSK&Nw?$NI tnGP~ӝ2T̽YrfX)$ѣ,`vCԪ ,~X O &BG˰̣O=,aE 4d/bFZQߗfXZjutiЌX|:'w8>pj/Z%'d%0zW+#26Ez%BnZ+[R }{HY\ѤWӉ=JۤW0\U-Ի;WҫKo4ؕ( kD*;,41 DkyI`U:q9 XVKN:y8iHRn]2eD}e+t;&9ӛN岢-4gq?U!v1d19#[4)SPOVš?[.1\r [KO{C*':*葱!1iV!zd%wxǒ|+/q3pG5>x3, 0W 5*vg136ӕDL k.t[, nĄ^pj "V{Y"۟xzҲ]1 ÚUj4ЭGM=iT^]r5, :P o}m92No8C\f^q"Z!a-)b,+D^=zE;ia^!}H:K]ѫwY!rn)Q$NLggf 9;_VRm1Sk ט)3q$|W;tb/dpDqo5: }6S0Q1=YOwجCS372v_)n7sE}|^g@l9yd~T[}ƚ-t8tX!~=%ܑa0 [Q)]?N]cms7\@*54g~kݟX1oLŊP`1_3,5#Ga׽sJ9>njq|򰸊zCO$jT~*iw/fJ7;TXN^1nkO;?tְ)uj?~+01p5B,l~& Rz@PF'J?cNyH,^vj%f ,zrp1OtV/2yo$ӪKP9P} +6Kœ\P.4N\d(IZKzoS+Nף:M~WޝQkU`p:؎/9?FjM T'D*R;VfdMT)>z}E͘*C㆚#?w\+/pԂ[~U$Ɠ~zhbK쮲/`sc}ug1\t ݏ0p8݊B~qO0:,\qHLj~0 +f T9i"X}.oa-BR ]*o4OxhSCԶoO<7`,&* LYF[0VB6%l>VXε&!B6 Y4jam2.~)UބknZ}-[Aao5n@1WQ) &J ?_7'`b5ϗc\d]iEꗟaϻ&^U-0VkɇhVR{JuSOՙ"Xӛh,›mH4ɚamwD܅!Wr71Y^ W51\cOc$8k%lB &81mI8 ˾1!ttezp/Ej^Y,4J*'aC 2oӺ0WNYa"$ǡdJ>-^G–}|9.v\+^A ֝5lQ+.#'bHfĥ \~L~5EtZA1,ek ?WOgPO\ "$ٻ4 3R]$Q|qzPXȩzOWc`qcuo$ $z1CIVc b^Pp{OE!RÕe"y8b:kUL%\?Vj3l0*sz9P*H7wc$0P5!0yW>\^>OR+%ؤ?l;S[||wC89Qwά̰5+cL%aeMwo?WUȊ*KErաej;k*zW I 9 |N@^!؍dP ;>WB@^7VvAPͱtKdX!t] s^AuxD>E-JT-Be/df\$-) d< (Ø}nsOߋ3tţ&~a@)YV5?Ir Y=Vm&Q@oE; ybg$u0ʪBzF¬륋֐ezP'~RфPb(Gr!q%RJ)&uˑd "ޜp%`VDê~y'pD[%''B+ǧC$+2; >|dX#+doWN8Un$> 8x}?lLu:R%Ú-~{?K5:ѫ3gNG1R-EbcB1^ @ #zKB" ~&Seszu-}W{@NxoNRF %մaj6GG.شr8zӫ }!%r%Hl5Nbv.&jvف# o%읹!ˆh'UPl]Ui̹7ՙ!<9.BA=K2xrajck:BcLcGPGXւA?aͭXjʽzў㮌Kk -EJzƑ^[́0z+ ׫r~ypD(*bũNOY4hTƤEi MUOR.ĩ5\WRpgaկ(u/aIvwBlfDiÐJse֛$~+<`x͉aqlg J(( e`ݏ:a%b=NGW_Ы~50,JJls1:z4wW(BguՒ,@1Q" :/CyJ-zr?WpMA?HmNP%[%N}ըfI4$LEcŋ73w>%G9ՙʕkUFSʤ([,B yW43蠫\Pu艍 8k!.P&=JOos+¾#epOSZ8'r9)BN<![@- |1Ia`P̶كI0&܁^Zmm'+7~d8c}QNUdz\_DqChdFF0P3WeM5\8 }Ib ' klW:14+E6椊L^lCL3|ŀ2?ncZp" eBa13\pQUG ~w ֖Ϯ3tR/v|s6#=vC賓v|a 5/ӵdѫa|aBh_r@>hnGZ+XGb&ZCFPC8ɬD S5cJ[`#96OP%!ew=Yi\$_x9GI7PJ-rB Mk 쨅%>z();CJ{3t~ʈ *6MtγFsJ?<=eMbĘ2ѫ6$ywLw36мVów2dA`, _1咶U篑fμ,7SF7+񖈚Um8gd| +Q&h|@^ xjÎ$Rk`KvVWLxJct?>kMH6(^r~T) Rv ` N+Vu.M) w_3{{?ݬ6欹 Uq VzgY=`9 D5V Jh \TCNG1\ػݧWVAh+KG]ѫN&d1!Ыګ#b sz%zA> zނ!A>S!-lަW) +ҖSʲRHyjظNAX6M$,A7BAK&|W;Uԁ:Z!b,#vo!1t0THkLX {рֵ"{-)Wm]7xƄba eRhGx@oO!e9!2 z_o+&[FL$#[8t' k̡5 K_>x.VA5yt9gvEײ5~DQt5Mͫ e'KԠM^J:/o,58MuMk:Ho/0,d:r4B,d֝p՗, i ч+Y/QB\52 +/k HsUNNJʕm"\3ੂ\zMXG 'h,r8^pL[OXfn O~orxV}WvL.@NXkepl91wUf} nHg3Ac\bQ!VP*8`Pm}pxl[; MF<* < lð$;ٷfyr2N92Ħ {Jr5̮2Y  ?-w֦; C;NBs"I/h:o_]0Q&T Exˤ:W0mWW Ŧ(4zqFV 6I_N-JNB/=pHԽKz٢SO0pڦW6# djV_eGD*V\t`n%v;Rɒ1?)w5Gy|dLHtN:~hPO'$ڴa *vbD[ʰ/:S+ޚ3GKzov:BWgEfBF ^w{%MjHgX5I#}q֛Fq7dUD^Ya;̰Ue.2.Gg+@W0H 6?z{?wL?hb^|S N[AdQNKxSE;ycCjeq#v/8DSy' i2ѯ xw,UZ[dy4Hi##?f;F9ŰZsާWYu4 [Mt)Ch\, {FaN gH>;/N}$4Tk&sz+ A_n0q:Guˆ.$GJj@M|'Xejj.k,Jg kvMa>t MirBEZgNзwLh*?H$a+j hn]fm-hXlŠ&AI8$a65 h\=7ⲵS >нzr\WϘ1 ^ ΑF~dzHv(!r˷O](m:kVpcA+O ף51L ܔTcEW.K8WÈMI7aWZm(ᰮ!ǐ_I:. zZh)J5s3um+r+T;#h//"2Uz{k."k42B> y@rNtx"LM;+H%T{w= u~tu |'fJ8J[_cmLe>ĐTeo\DS=dѬ9"⑼?[" u.޿mӫ:xVB*c iKz'#8Qmw%M _)zK~)FGsi+yo4ǒCQ͏ yo啿ɻXA U]l`dtòCt}=.[ȜNsW]QNu7A9hi ?IY~Z 6ُ^O> s{VZ f1ΝTVfz:8{{$/ԕW;OiT1$TaOX}mKu'Nu9!w"@a)u°6GM"NBI x?ŻWscLV&^cmq*;_ǷKYf*֯TX2[8(p -K>wĀeXKz٦nŰ"A/~ydhvAv r%0e]xDK#+ze zHW0~z`V 6U-Ӆ^! Y+WFI?+z%xD_ѫO7_PWeYD*uU~5lYý[n}{?@ȢQgS~=I[裙xH`FD&v>mjtf-PFQF:@/ty C3r,};*Д;0^'cfF 9<&X_OQCiyэ-|~TN"ѐMZ(; (vU8lC hu2g}q c^x{J4$;<@IXjÜ9lU5h(,Pz֟qޖ_g[f' Xtxbbj{IX%ї~^Wx%#LKB*V~5F0q0!qa )0Կbw(wc4T;.\rDv~=?*`s8 5ԕ AKFၷxMC=>Wg :$$WxȂR>?h^MBo.K;NcL9V!kEq""AqJ(E{E gcsyp\u BiՉWi>Ɍ\AB)k%zkאBk3[gB;(-O9h'eȭYkֺGT+ۢBy[#B!B4е|bET>ǣdy7C5% q?PVM?_abnU֐#Jjۅn!x3 c$޷_yw=H,uBH&WDSbf[CHkk0r5lRRx{hM7w͛G9y{D({kd Em0逡큧H>Xj̷JskVa٣hPe<Lq"K(M6i`"HNlY5)}ք-maXIc/Fr5:[s>W2]]ﵵY3isd] zH;M ⅇ^FIZ^o]l7ⓖ 2S 0ifUc8z 11J+:q4  [fX҈D'}ݛ 7| h,A#ktn v)f9 4o U x+W)W*O/T2`1WHw#RTEƚ0^̦em+qPp>4#O!HC^9*[˪Ϡ{zg L*#m9`k2B"L!r7}7:@[Ҵ.l,1&WFB6[i90WQdx@(ki 3,V]9޺`CRZ˖7C`Zٵw3PZ Ű׈VdrRSh19BOcqP>Wڦ7CzCaSe V<~O+ B п=z@^]´L*];Wve\(Y)FibDNcB2tWAvKch-%peXޥdkB .)C ]%hh'knzNҾ=:Ȋjj [9VW(eqV!6 (Ϛ_FI]&J}RQ8q[* !hb ԱmzКyO@y15U˕J=53,ooe58LlcF',\ KDTkIdOn)/8 _~=/AjT;t)x^~ǝg)  V ahuTl܈?'`zKpWTTɴr~X>ҫ̼gQRprtB Z: h^㇠vAbgq8AUT% y$|z]  (ºث$MbA fЫy ٧*>5>-ttqNGm|E&e4,i_py5p>jyHAmo|]dM6۵AN癙? fIzDWDcoH֓8E͎^P'O Zgu]Ű"G 6BJ@5swZ(;*4i: #.xcAy1x-\}sժ դr̯:WzM^)=^QSzѡzXNՊJ=z5\HFDӨ&Gʜb~eubŕT 45WKR3y)cB&Y~wߙ/jkt 3XIM5GjD;jD±]Lj"2QI'9zycio꦳/INKh|y'|)}`۷td} Lh>Qّ%_~uyߌG ~IS4xg!MFH%,5KCF[\j}k:]Ե0CnZE\LG[RirT_dKRCƱCn`_8*G:; +Ľ^1 QYz58 q/uþqJ5H}^aAp@ɉ:&" eV{.@`7m9HV=4Ly@wԒC9u!mfV~6H !L%j- ?K .o bzOh9gpAlڰ(йp>BGL>e N =]wZOkwKȤwT|* I;J<-۩Xc)<=MJjZ,l!; hZ}H˓饸_2#X끫-Ĕ hR|l"HHhؑh2E5xY5q;#E ^۞?_b OYݘ%Q' \+Ҹ u4=nZ_~K-䑨ky1Y<:yX]s6ZS1ej BR&R& :?;*F{HaB w^( E7b ')lq:T-kBF6D,T`\Tay>K*#meBy+b'u` z9uCAH{Ù :B5 ("S_`+$a3ykZIK݌XcAgk@O5b=$c,5)Q2th0yc7ܛpE֜63 |S\첒~Jsņ ɇH[ҎRn%V,f':a={*dw<>OTCen' s4"^W٢@Mӫ ]N2Zge+H+z`ur5zu50{*'j/X=@闄@%Nd60rAR;|`aВEkj@?FOSoՎ:bq^m=D5qf zf鈀4%vǾds_\6Z `U# g ӑ~^-~|\l6S͘/uR L8ryjKZhd1-8ZX8@|3^Wl*ydZ0(x{w&DB|!#t&QZW_2͔ىͧkZNb4kœ,82L^;DBꄵ kV&7~V}QXL>p=Jֶt%pY bUb d:bKb50߬wp>r8:< w5_)+Xa sGV\j. C ʽNCÚ@aC6L=~臿,]R >wYeG2}>O|iT1f_IZ:<Cյg {PtB /^_uH@33l$v8kWBi(mm$W lbЄz 2/蕔v9ħ*קW}Sz6^zL +z5P?`4*,CZ+4JCEIH*)3tt5&1cL5#A]q+?[}'g~8?Ip3G$4Yf˒gY>IY4Ͽ"mu[ ǒ4:e\!=ZbIB& (rҮíQ9NN Գ"JTt󉶦%9υ@ffAU\C0]N$̾Ol@djЍ]>eHw_Ȇ.u!a/ e_1&^H(/)BZGwB*H[64V([R^u\ A&(D% _;B$^8uA::դWx/ϗ$پWrR&ТW<jPah(D0tLTgsʰLjy`X5 XL1Nbm$꽯}oic,q!MlFg"1JKi5Uh͂xRH,`l(CneaaaGDiݩfOIv=dMHhjFC^T"B+_mQ,dBh I_! WiҫͣP%D6 I\&uFPFӫK"ET?pGíhѫ嗠 }1zVm' }9} Dk zaZ/Cxp"tݢ3KhmpvG46tWEw;vWbo_=Yy:@`٪hG<Β =UDЍCQ]۷"JO[_6!#eb)|j2M64l((9b㊠~hT7ne/NE)ddmF NP6sTŏYCᖐsCYZi䍘s7zJ#䒵NRq-B°LLgRu% ki{lg؝=).Z{[Mv pј[gؿftaB}p鮂2J,eA?CE$jU6g?'/ GU%Ύk +bY} 1УWgPqcU*ӑxV# u :2W5e ;/fyڋ}1?؟_"Pnt"S9I3mK$fR YyBpOJ3xj?]*[tKgJX-|O Ymg9l 1VZ D?cďq;ה7OPY`*xƊke4Nt^lL˟6ړ77M5&q8T#mA[z \BDv-GZ'HP'a xK:z|Z22xҮ81]o +FI}:[\ to~?aXoaQQA+^ P#aX-q/I_EW76HUԶ?VCPU'ƄlH~w0n[S62β #p B:)lonA<;<=Y+?ߠfsz"x 7*lR )^m#3 IbD% wÑo*.NTduDŇ,vI<E=KccHE-`)3׹WhMcӑcB]Vq2>_u LJSFY JՀ f\bNܚu 9dB ε# +ԡX@tZ~+;e"s+YqJ'%6ϑ ^kVv2P#s!@uAuX\CAlQZ:$џ-Qa,ٌ،cYΊ7Q8( fQw66 ak/R&Y D7,$O|6V)HX_GkXF"w 4O>jOIa;[~jVŶ_D#i/1;.jLO@8%4#V|MR o`a9%_"qenc )$fs)f6Dhܮq¼,Hв phIH(O'5Ć"z&JalgjEWBH^s Ԩ[?֘\gW|DV>D^eB0OD.먉Bn *(m5*īQ-z+,Id=Kl:[Da `=M–znڔK`ptd=yzL bf>GWCJ5=+;:N#& 1:6f:TeNGcZьa?@KCUgOV eŚ;KOb\QI/Ye17W+bqnkG qgLF[#-UTɰn Rd=eR(r$`Na +l s0oZ=, ͹Q8, cσP'B{(%A_5ˬt6xA]U9^xbam.EgUU|M`<n? Mu^aujƄg HS+4퀓 US MѫW,ܚ^HP[O镚M;ܥ[5 GTW#`/-8ښ@_,I$\Pʓ 8%DZ-Ӷz~bg' u_a85"kmP I@}spj9<lA]U Q J{Y} qG:,fݧ$ćMbs`t:c`/pFcپ? HN݃)~1"HH(ceWU)g|p˔߃xTt.cX 92}w?V:dBt@$;2sM҅ [+}pcEex,نd("%?e2puɔSg{Ύz+OfBpȰz~Avݚ$R6Edb=Z"܆vބͶ3.5;;aXWX GRz͏_פO4`Xo.MBeKy6?\erGuAwz8,G/qLiteZbQ7iLd{lO)sgE! *:-j`c ^NQ\P@lGK3c{Uxdt݆ݥ+M P+@V'*ϫzQ<8D1?3z3˜^a՞bPYjBtU!BVꊎ_Ы;NɠX ]^%[8^q asUhD ܕ^\ԻW\4[xNn%,N]0Mˌ!~{wJF9}Ɩ7N!A=P4V+v=Eڏd^Ul|$DZz@YG|hRa[Jc**`Gauz=S*s7ݥ q(5W&H'l#\eXcpקaEAIXY ɂM5V5W-Qst1(HvE(!=\vKiE^.TKV26m$nfIQ@MDJo 1pʿadUe /i|jt98 ; e.#gW: 3Nd}z\GB52z" x עWp_+z55UufݚJS3DJ jhYF8Q[TgU櫔aRsdjdTǁ-h(ʑ;U 㐁_HOZR4,OB34؍L02.I^;3듩9;~c/(v'?*!F:[Kɀ^PE_c:]Lvql;tBtqN:[ߋ=vZA305#m13,?-| IV71Y8, цk̍yɢ _\Ø-NkZV(lV& / +}to&;ӣS\J!nO YC:zh+e`<8D8WڊAOU"WEjE|@>=Dg\"Z~Ϻ:NR*/U v4+zu7P^Ы-0 FjW.~AA(8U;HPNVrw q.쪛f0"g¹qaDSيQQe]4CP/%o[^ ~'"BG'6EI= 0U"N(jG"찱ym~giz'18aK95uM.bDW)ڢeʹws:Yد' sV`ߋs8kii%]$˵@ƒ' bqj- YnxY- 0Qwډ7TJkJ +> cǕߥHYq-D3alNz$Ra ; g3<ߓ8,U<'ۿLJe/(j/t=.eeY535PΎ۵C3ӫkSF.UƯW xz ^w-z5$r=jgjZԊ^IH¼"nzdJ >W#W4+RyYa 蕛)"2B .Y4Zͱxj#Z:K[cE ]-2hP(K*>Θ;B ucZ;Y<v*đx,clQg0a/?xgR<ױbI0QCN@ȻuySȒ> Ptow^FK^Xv2,q˷̺9U©S JAZ:K2Fav'5- ¥ ٟNxbCFB_UMNm 5y{uN[ 4El(##ɔ}S77yXzOZX&LF++u?+WB'정:viGV`niZ'0Xce_-,զWyr[Tm`B^EuWG^ifbkxℇcbba([Kk84KҨo6va'* J i4ЫZEHP8N@ ] l$h;vX8`#D5CUL\n*yWLG+"DRJs;½θ A4ǖY Ŋ k8P׭-}t h9(j#TبNU +sc,ƱeBʶ2/B8ƃlڑSaѕ.Xc2]lva BuSaBl %ӲS,֯# FYPG +-|Lvkz2;BabvP^$0+>$6^-#}^[(Xszds EJlu#H4ZzriL&Ā4ܧWFY.fby8RoWdsvhhK)>Wag |ܒ 7ŋ8I?jK]-.;!> f^o` ^oK.4? |׿U$Bkߧ릱-_gVȭ|?jP0 5?B4m =/mel#uq>z&32,|]*-;;%_uٹxq ˯,1\A )=!nuXFjD+6nЫVfis%4{H^|[,ؘ򣟋%^иz9X{\᪾N {ziFZ\rj Ekz%Bjtv5EaܨfQ1Zo,؂}}!K<KX ZrQ]wrɿ قX[>F5 #sUۣ \*cwtnc.) xgCNԥ0iK.靐Hbk6kB a jn3@-!0t ŽU^D!:c t/\dk4 -w-C8m8( gZ1ɪ s{OǓ:-7E^5[2w.#YxNs|mñKFup53<;t^App"6}Ϲy\I}LTz0m\7ƊX &s֐Jo]ʚ/ rV7BKDVE+ RA\]Mל#??}uYlMtN_,/3"Jξ 㕈n`\ߎ b{נ9 xH*Yjtὂ %t+@ t!^݀*]_NXamz h| V/] ɜ^#1Z4]0O 蹲4^'"z% weptY6LyNKD G΅X~UZe 9QViP֮D8^{40Y1b9X x+31aaKغoڣhbw!.Dxb"O 1a- c9g)AA&Yv!J: tY{rQNOzGq +^,OwOaEz>{AX;d: 2#2&< 1 $86y189SV Yfp3oUUD%5ZH>)6D1pkZ*זLǩpA"ՙ_I0/2zፎs γq_*!{TY7aO{,m)goB|?=z%*S(IB+xz5u`.։Wpܷ#.7 z%P+nq[Ye)NJtL`2GnÚ4o_k$Tj@Q.CRZwe= c#[?jL$`X1Pxsg/?v`,A)f I$߄ئpT';3vboluxd[l1*mIھ3VqgD `E&!Po 7j1#@1,/cL ~-yo@?VAŰ(PjQ{ؐn'vVٽFKAbqOo6j }lQ W IŎ(د9 !Y&c~_׼14N49/^K_h_ iZRG6:E|J\i#s+ȗkҫ+h~E]L+p^Yi>/+U^ŧVgVU6 I!VC[zE]<8XgJz}xXw; oO[`"htF󂧎 eTf1/bc(Xꅍuc ;խcmdO]D1,L:!:JOb]=#g:0b |L(6ִVj%>yʏ44e k2(8O'L4e]IZ'Їa"5pBXe%> U Q[*Gk~8{rU=9e=CƷ:z^LMvD0a~AİjC"3ĖSr8{ʴqpb3BPx43-. 5Ak_bvIasm$c౱!,bR??Z0 VORPӭt\R#E_[iM%m! ax* T?Hf'vbu$I7D {VdF3anIg820Z=*A]?l 2Ű KIb}I|J1@"F_{&pӄxSL1y\,cNG T5A)6Z0\k"zk*.NHZ{ƠF5 _`d<W ,*p*^N4Lۚ|䌃{@ބ^aT(xET (8e{8˞Hf13z#?@6;&}/ qd?^m,aİ0 Mz5d͖y{(y@StI @b.e<_寷P=5մ͕dOq)$ȤPK,FqЫuE#FUמ09 ?aqL`oc2?pg*pr`֕.z؝XRMЂ6 I͒ $)%B/֦f,^VzL;cg c?GK?BL_AUbbTT]s1M,JXiH2M` ~B a gAstXEn,l344qg+p׌"a^0 ]YX̓ B:DEuժB8 "|J[gۺ¾\aΌ^+D*zu_yDW+n0{H-K'XwfzhW6 PNʏEKx_CgJٿu^e\-Wl$_E LG/tyO5`K*RAU,L:VU(jE 㥏֋}7) 4gO{𡺛Z|)22sMyx+tsѴ-'&Ԫ@> X[m=ь0|Cpɹ7Ej/L0vΡ<6QO |Gso8N'y2BWDLX0(-3_`8DdQx+kI@ɰ0 ٲbX8qvW kD53,eLO vοI ^(!S6׻){Ӫ,|# d_ Ǖhzw]Csћ{i-6XᢐaҎ+BDNl'D&υ (\ck>;z8~1I!sVL954LrܦqZ{ӹ& uA&gœ*fاW7OyA}Dӫ[>+ C[{@kp%h)!cSE?ҝ_;j`]O8\|VQf0bWY,xEdj(+|wHg2J%֧[pSnb_}{gj ϸY8aWFEPq=K+sF]|8=3c?f k͔p0Fİ:qaɷ{'Κ(SͰFZlȄ1.U"n,|>tFKyIPIU[?3 뎆yU-zMA{HҖ@NL]ҰGZw [8DͰ3b88`X'pu7repA=- - ǓUU=ʶķY\’ѫ9 mi1{nr)GisSzU_ ;zu0FjtO7jd֡W0r-z23fɗŇ\ϝ)M{gFOJ ?3}(0vHu#788:U(V\)PtC=E-Jfc3IsvX$,cq8.J=H5Z%X";GK*j-U2a~ kF1Q|%/{։^Q TR24G.Ú/9B%dL&7u!%zfcbs,f mlȤE'k t6^dN=z5FnZ?w5[F9 "J^Jh>9dM2 3W,4e>ۢNu-9kM^ɂ^QsUq~ЫJxN 3 a~7ll蹤W|rsQMg{ 8+)_F~tz~͌-ŅY\gg<.`B }lUܙ?X.~sifmX2c˨s% (JS&^'W@W+/Ъ΅Db)+9aմ kH.|A-p.HX^aM0 f1cy,6JDCC O=Uhi ’$qm&2:ce̠kIGc:q/}vI,[1pe-h> .U吹5m]JP_I;+P*ӗ`W4Z誦WB!1(Zm8J턜U  : B^ Octp?pMǵJn9-h*3eHpֹQD9?c"tºt!fqpB Z=ؓL֖S).F138FaaAiޒOl&e šg,W${ ¸ *O=}$׳~ޤ^&pvKNQe/׀V3+-!G9;APx&&o:$8\kB(gq_cbV}uʆ^~x ,ZoZu2!z9lBZX JUc+dUx +ɗToM.ƃ҆W>~ 55j&Kj~.4߁ f4P:ٹw3d~I6Yt%sDWC/~.ИvNCp%FउJN^"^XQZkIlZ!L~9Ɍa"pEOUZA<3o=ƵY>kOzl乙#C-B*.vNx@H:.̞$ts}İ'b53vHc:U*tYj~f}z0V/Qy[R < i<@Z3 FpTS eX%xGeScxϊ@ "MgyV],J$jYh?g16 $IDlOio15ї;Auqb%ϐ^vzX;k+A pKn:k61r[RIV1іm]Mܟ+ՑZ5-۴O:u|< t O{ h] ~.`;`InQpZv|h6 , a1᪞aDcY42.𙣗28y Od:2,oCq>Wif{.dt YMl- $PKtSvt ʱGbX Zk!lza\Ju+d Io]4l^t-㚫1K1G3v|nEgv:)m)`(^.lǨWBJdhzTb[{ ˉ ?*&qXĀl{[P߬m8jNtg$6JWQ63:[] 9zOP.P2:X*70) 4?'ԕ`vaVMN92pJ$V6Fڃ^+dɒQ?Dظ@ |u?ֵ4~0i1wߛbtB_sUOZ@8UqLϺX(eL!=y UFئWdfQZ]NZ CP+U!U5A^[ӫ AXx[4T"i*`WBXǑ7HGIc.eWy#7X~-sYRl+%жp5҂a;XRF:E8a<~VP:ƵW9p:i#+VJOb CpVF;y35}x"3^ҌneGkF6I{*[N2]WXOXt3lhTaa f߷%?#xF4f5axR"b\&ʹp6)YrrJ~DS$diqS`ᵬ WT,l04fqzv;G_1W2z̗e:; *u! k&e?s*Yl*)]Kv8֡U;V NȂnfW]YOq~K'^//FYQ$W#@}9|chnDž|B.XϡM.Hz}æ >۴Rm|2g~fS(rLڱe<< z5g%" m*JuIbcEtI#_{{}ٮ8ȟAdf^_FϓLa,*v_)ۋ-fJ!P0SDzy WH|3â;UWL/vYXS͎YXONJ/0,,H1ކG 6LIY'bDx eHaM^sOQLs"(=TNC?Vb\ )f1 ZڹηgXA3vϸ*9ĮgAJ,![tC{qX"˵8`VAazٯla-Sxrilp{Z3`H]"7=|:G (V {scJMw ,+^MXo^K pFCmޮ|􊮬#(OՠW@|xbE.2$RF*Η_aiiLԻfy%*WS bSh޻hJA0 K#x%\h)*KDvm42mDWAAhVl6;]ygdtż`i*rwbUtibpb#o5] Gu!7 +]U| хB2&C=Ί;8ٟ"".;*B:r`-EHm%_r_ 1Pq tMwp)>*oua&_m|/;%Fj.sΰ #4J{D=d7*:jhdXɃpKӫZ_BF浐Y4 awCk荟!gq[ps)&ڄeur2-#jU `Ե4Ajw"ѶGPO!utȷRŸ~ՔK$Hm?nfsLfu~ri Z&Y8X#FP8sMoarMivs3pD.C3;]G-.eFg)}_lM*a(9Y`K|qΰyЯMX2,!>{İ(Z͟a!aX5?`X:pfpR=wD x^oE[du0ÝikTux@h\2!42MR&fCDiBˑK rzP/~Ͱ!q;. +_?.x_>m$_9{caFjmyo޿鋵rI"Rа%MDjdx8ڸ)?l^{-Mk^ݼQ80JR+D9s/ծmYCD dEl:,~ڠo؍_-CiDMJ1gE,!YnMb8J"ѕ.$d< Q7WY IӼ;铎'U⟣h3꫹L8foǚJ7J MoNOqɼ"|T Q,N'ާj/o.*l]ZRK1 OAoA^n}.a#s识_fʖuҤʬ0B}d}a6xKqeq`]TS[I,jwlicXPLև%^FD KW_]iEXs~N+zӨb羑҈ʾE /~~JB1ّPmܯ@ zIo{ TUl !>RZjv5Z`c14 vЅ>> ̨U=XcⰐɈفOq,;9/ ̢r^bXD+]~Pp5:DRmp" ax:+ar|E3t$뫍z3ѫÚpLgDEM%x體~ž;WHാF8V2UdSO% |WAbqEи[AΧ+- ϣ1/()8u8z?6YQG˘Ob j2*DUhG76EZ^Rt)&JXةK8Ύ,MFJu"n%Ջxfg/P40K2bI|VÉ[o,/-FQmRd]ԼF+ytއx$>JSMPSV ɿܘQok CVqXpi[yf ?-7?jLu+R/"|(p:Kʃ׵_=`/f0~%Zդ"  L#o>OZGWi^.DWJN{&}Wmwy!]zuiWӷw} <2s-xt8Clht0Wp|qBh}G,oAgh(*4BЫ UyS,7CvN.ޢPmϯEvď!>^C+hW/2j I^K0ʷ-Y6.1'ouhO?8CW5mN'] `HG$Y+3v^7B#OhHPy(Jb *Tǰws>2`>B Ü k! j<}ĴGݞ+N$ uSgC$gX_ޙSZlVKOēR}ɹ;y?a˘ kX[ϓ×TD=ťCQXRb*!tFݻTmVy=̘:܌m`A v[*Hp;ҜE e\ɲT G q < ^4-c/wD:7/)ЎX}@v )Ju8sPxO镖3^"ec12H?]"get/@'^! |z1YQ+k4;Gr\U *P{䍮o& `$HYh@#UW.S@whP A5\4͓KYoܠ!-ٟi8ĝ;-€†O7Dm Ks&Zʓh0,h+dR2,t׶G=y aXɴqjɜn'%جsҦ&<;v8 c -jG0'nv.f#) Z<㔈]D4 G7i}̓tB ֌J[IX`N-lYn&ꪚ&Mtecp81]<`6QZ|y3ҁߩOmM|Ix kf)hC4(n +v48KJ'h+:k; &9Rd; cH&T%5ޔ:x!%*gŚ;HyͽOD$ah8\@>.X8R6fv]ޙ<*çe9P9FM @IPzPN9#yh:}]%Wo8̵ec_IЪmv [܂W'oFzi>\r*nXtrN0JD7}c%9yoWs>~,*8^ =W(]I#:w 8b:=pNMg,fjeF}}61v(zXcYPn|AFJEUMܸa'z^G ;f>k> c^J*,49o:!F:M27y,T5o&)ɺksi' d ݑ]N*-ڜDʼ-bXNbDqZ$d}_&Q6(VP<Z nӔ  I-P@ p0JL9y0~>21 t`4%͙$cdȺkT?dS ̕EHlbic$9#C#&9"&YzyU-6W݆`KpzNӪ(x^ӵ zΣK 'ި܍IH)Y ,6ĹjrZv[6|PeSC2޶`X:Ia )Ò؇3=ET 6T|ܐң;O% ˉ6a=% Ƶ&#-KUP pc.i%iEZXiLnhoO:7lgS~566P%HYR~$9)ږ`' K Mr]s:^9ƿoa&#Ӈ#0^u:9EK}yCz-M̛IBųM V^MxyW^A2_10xVG Uwmi.+pDbxf, r/@ )O$z@qSlL?ë6x7y٭~x5,Pm^ ayqcɬ91P} sCâ`t{NC.vHu&aK\,Qq9d{B*MP,Q]RE?^2Uɰej_qt&DapS3u|у bQubXcM\,oh(,u,nvݶ@5ĸPbj<t#y!O$v~v#զA+])o wW OJ lτ>b'Y( 1òR $chI'%fok*! )Ufsq% fڽ`yVW h%HPcUn2=WoEP)W+ܸ+@,D;:ʸ$ފ]{D?ɇ#{We$^0:."Jp>W,=MjIGuk6}sz5t<] ?W i1C;O_1+aeM()gH!ɋAk&jm*VNJekյDMWX@; F=䚩0x)vr; _Е8[=[D [8[bsc^oU}&:Ĉ ,Al>*Hc@RmJ8F] 照?jfD"gX-L V K%$m('l^޵)Ц7Y|K5b^G-t,;=$ ΢h[7$iuރm/K9AgqPp |c1S~8Xz U3 "SBC(ި"L'x[ d Iެh =J҉V.U^//?BӣW@pELjq| I ¿v@xLI<*7PMDFRc{H n r$(tWaJHa$c0q^YĀGt̳`?yBʆ#p]LZ->4da9}qNb.n)ؑXZAj h5-Z~1mb@}~|&Jl !G 2pZ6;w<ʪ2YlC3c9;kr>1xd + ;aTEv;U,ڭruL˒H8F]d@ʰa%m5H^$"%bp҄,FݤM 1_wԤ&B|"aӀPUSJ9$4ެ^-䂒%")&E +hTH/WEe$k[ۈ `w7U:98~H;]o8I՛;".29d`)WJN=W՜3(҄^)\ҫL/ RgTܮkg/U:jcԢW*U8XD&kS+m!k&L^ay65$-zͤ`F!):5iV^?0cכkƛcMSj׵0-'C^a#}LľU;==@l|BQ(mejEG Gdſ`qUЀmK7jqbJpϤJŋF:v/$aʰ1a5y9pĔ K6XÚ,TފvG79xx+gQǭnO!jKŔu6C־oz)V !P<FFW3wRۍѵ&ǦKL~r؅X=Tids6:&pcaE_%Xa"|iVZXv/J3GO9ea]fg7Z(h!49Qyu[c$^!{ ,JݫNvuS*/Xw>s3R|YjE1ie-/" :E?Ǯ2aV :BK;(auɒM#V_́9D^aY]Hr||V{0b@57yVL[?.G$ "xd8DŽ`]BiMk*9-щR壯T }<Ǣ$NR%ިsi"3džC&~Ϭ;\Ӑ4mSGaRJ%azųa0izوB*x: ;8Iln;7[6<69Wi[WbΈ"A(Jٰsz"zA'B6W[ %R#wkTB@SڕU*\=6I qWϖ=..9" K:6{v\,h+ °Qx#&wg=>2t՜cu4bV[̹2$ 2nRzG ˬ!-!0>JW<&3. 3o1A؋5pt_ !HpDrpCRh~kbZm `F7bcKge$ yq":Ac- 5$*t?#gÌa{5Ao\G _SrJ]$2:NNH3Ͱr̹6#LL)QND.͵!-!oȹp5!FMLm4" du+ӫ͋Xt8^ @7`N (xnT}hu-l1g 2<ùD.kI;_q ,v=ڇT1Bp"|{t `@ ̪-`rug/|G/iG=WZ\Yl(g8BWg~X.~1 }GU} UUYp$UVD8V^򴈒E5>o[E[LkY5;aXg, lK2MY ~ lj6s3ո75WW(ŏJC*FRyG\%:AnYDĉpGDU$e-ʋL镰*z}#)Oז AfKWzeZ &Q9 ʨkb^ Wk*@SV%a0.yP zf!&$x4k@6\ZgoCEY =1JlD*뎒Ls*t-;qs*br"9@u^COҿZ5ٶvh;ӭ-Ůɒ< r}P/gX]qtO''']>6ѧ_1Q)N-]WD㔶,szE.a6x,j9Txz׸\jW&!э}8[;%w7[P_+0Y"@{"G9|!3: \Mv./YL^÷҃JaHO൷UY8JZ9Ixh}ٰN.V}J5 O% 4l&bXC\ٲku#OqfaWo{/L, &.#Œ{>^OnWԬVcKjWbpmT; ʨ֘b  ;[À.Z+ں ׉m{ k "lf'qXDhS@{;wIxqLcIV Ei YM"//cv ERzKh@-}u]&+L+ B7fp{އ -JNhbڀŠv4"ͭML)@bwu!$됷_'nUU߳𾚦M&ڠTDлˎ,sO n΋+ƤYo:A("D8t6RhLcȮ{E"׍ ' ubXE0jO&7C$_hfZ8P/+]#3wa}%X 0(qg_Pw-zUxdGYʣCc5BAF#k˼rl,kٰ?Tqs2HG}]o[0eN*(H amMh.:gX胴'<"_\ # ja'8~8=RẾ_ \"Gj_ITߵ'Ӕ{k:8G*8r4/j5.L}P1@+|)T-Ֆ,M;E) tӫ%KmUJ~z)kLw@w$ꘘB# D*O[o0% P2ͱw,(zVs-Uލ "o(ltEM:&S7N)_v qd Շ,C}=VX uǰTa±QkK_rgGd},vxoDPF U4p1?gXϑL VgIN0 iӚH(kh(}0 i8٪dK$dbU-U ԟ9Kܹ-6ZƾD*tbAG "ߵ!댥#=49FK"ۚN㰶8\p8D"ènja;Pb3WC<]UpL` YT c ;XMu<%Yɗ0ˣk#IrBiҢ"#WFV -IӾZ-(ÙR5Tբhwn( <4`L+-BBQYtNk$nl2/ ycW $q-hH]FVl+t&ޥWN:0v[Wk]c+;ؤWK 杦*SGيX-tFУWOKTU 0 (Fi%0ܣk绗J WAsy fdd)jӫςٞiX.z(H*EXy,* {DU-oh&`Mi, mı# Qŧg6I[Q97utB/ 9pQ`?ہtYiQ뭂F,O2y8q+?[3h*eF܉YŹvQnh| + HaQ8WxM15>'vqNdDxjb c:5}eH< JIN@L}㷱7#+o(S)zv]r4vo&2 |(',ZBs*lUdhl6^>&f0 ']N^"Gd&@7aXɰͷ0,ry ~2'g99UŢ*?2+~K谉ahwCW|@ĬԘH`6|{Hz~~9KnW`t˗sJW .i JХRv !S}*R3N8»n}s :塓,+R[HL;Z99t;"c 2vmB؜feARqlCTjY.as֝JU=_j’aP_i>j\ViuȰ$X 7'o ck Ea0u eQR=Uo,J \+6bйT"jุʵ5C&;n[pcBݔY+Uì&j%40*RZ!V:-1J EIVգJ/hR&rnuR \٠ĸ.բW_0&_5DZ(їΡ0MHL c큡ς^}a@vZҀEhI<6)ݝz!ץW#R50\LUUyB.972&pY/Sv%fkxN3~{֔ϋ:<\b9pWkSr ]ZdYsP쵚sn BH3GQhr}'{aZj6ts ) M$L_9aXl>pΰMY#Y8BN1yﲱUQHKo;һ?>f !6'ޑׇ;i[Ѻ \8FHיVve6Em Uk'ME4I+N=rBА 3wq5 tG[e<5x̻Q>:Z$Td094`dxmCaS4Va縯Aض-+G" }% 3'C\<"QZKmt$XPZ6,; qX1pc\CYbT=uk֎9&kB0 2NvoF-̓' !)<QxI;+NXgOCb%.dG vCQ I,,D,R+.Hr[xkd6:B gVcIsQЫ]Q5 #)Թ5-FIbuá]o}?h3böyOǴ6VaBO܌% Ĵt~`W!z- p*8`-ų A6d+ۮꏬ.yQkRAztU5E zSDݒpTHr=ʺ(C^3*vxָA!"d5`*0(FAK\hco/,g'[[?"aG>t+jbX |+*I*}攳Й⥺dYy[GlXDkhȠ\ 0%B"x^Qœ8/O+Qd?DV_vVjz`C>:r⭖Wj>(:ۯ寘Uvn ] >xYvPTR(r ҫ/):[)XsznЫ)wrdɤF)袈Od]8\'"a$>WPfp`0BcP-z/oͺvYmdD|&ݞʉ&'d\,$:L) )s(GBups*>z!H !Tg˚anK};RCsNVa!4SrRg09gX"tZT3q̰:MǦEWcTwX]SUfo$%fS/o?2>quٙ)ÖYEqt} =CEUwovՔYYhhkr^O"B7 3s*Gl5R`M1(-X8Nf(![HZYRJ[䄺BYC0'>EF/z`wmC%\ufynv$fneRvP1bԩ yW b@+3aP{, {zQz?%%=W0xK08r^ĉ20zSj)+YD_%bsnP$hor} кLUڐT: :ӒHY'l ~YXe~C.7HRF3gZ6}2Cؔ1ԑ HՅh>|`=6Y?ǑX|>\Xy z.H%l{ͺ2؍N-1.Pڌ< ,Q:C:.5U\ɸnU?6Н/'|kw/!2FMIs&n. BVbhHaU ]I^p-ތ:LPGVɴx5_ v M|c-ʜ%UM0W'񠒶m'bAN"P$jU: 8Pk/)J ZBƖ&gqjWc^Vc A&|&:t* U2 .{PJ:jeZ>K$$)ovʃJE^Vgrs{85$izJߵHx| ;5w:4W7'2U k3^o*$JgOdbV#}Vm,"YZko&Y{=_CZ W(!eDd[ Wߗ!y;Ģ(N$pF)?MLCQʔ^ѤpBl1upTx\5:aU/4jPW^czxѧBrWС$Dya]nl"@\.4Abtb#mCfQgy\P/Jtj|OtGtߤ1*V{*-[g~]D=Ove;&b0'µ͜ ըŵlm#u{_w%?"h8J17 j#33AЉ}zlF7ԓ6[gOd&%8[,i7:?;)ةj4-OX*2I'4YR}-R)V0"{ )#02,OIh3qGr5)}sșV[B\*ܹ8+0dT}Q=<3F J%aPAh R {^ u C6:䫝tY yZAOaYx7-o{Z NrPJ٭_"Q{I¯tU7NDC愜@XWIn5N"]z 8gԉud4`ݕd=sg5PYWQX(F^nIԞPH|4/A0+JcwO>Z(cVFD=DѦPBZ[jBC 3},ݨA]0lrt5_fyҩ NAFV  kHɛf1jM?];a.a ۡNG$rrgj\hVJW&4;&4kV[;lT`3ۼ\z LEos8]۝K EѰ!('띘6'5#.x"׾4ŽX{IPUeR a @ٷ;!yIw߼,LLiۇ8RCumn|,Wܣ6wr{GGZí|~Nr6GqN/* (`@1ik)Tء>I[qV&Mw@`@o2.J>QM*߱%vd6n$.jWzȖ^K4Z0K>gӬ\zue@$Cc~k +Ųyfїz$fXF2YtҜtO"2YY}.M1{C_I0Q\tEQ L+p{I){cʺ, )P?Ti''wۖtڱd]Cɛ[`q]X<2K>t"aGJҁ̯AөDI.w+ؽ$Y$[P(Γ ,h$XkD43P!qA]3?]^ܔ-ʹ`aݫӚgrt7!oWԅM cK$<A<_MogKu"/*nJN ./i?0msQzv#]nl4\?+)J vDqoߨP+FQdR5G&Nejs~ؗoW"L/{YaQOFܧkAF?p妵Tj{B^}!{kfn߅ݭNV%{{]#Xx?Ծ`ʯ4;rZ~Iq|QJuJ4Uk^ TFl`<e HRKeRTiL,̫ׯox x6gR 2Vb@ouJXa@Zb+"j,B1}r%Mh{YOJGe̊3=z5G_K]?WWnt^)KA3FG6'/RHb S kF)MI,|F _`aUHU% zlwmzY;lGZ4ePr5Â$}8 Q|KҎ6g7^Ev Bΰh2kJ:9g-Q5( ;>'AXs% ByHW!:.^6an'x\(0pиZL i7Bqk(GKSE)+5`,o⤩ Naec$Y ƚԸJNg5}tC+ΐH%2z%:_ڒDn`uG+aaW67P!QU  a#FҊVK *H -m.j4*کzj*;_Q}g8gP)3<`a3q#[ YRs Y4qkɏ 1N@f : 5 kzU[C="V u쥞`TfD_3V†ްw(ME%5C`MTZ\ZU6'M;y[)#9ڂN~U?F *ƨhƮO rl+kU89scHh}k7 ^SZ + 6{Xk3hm &vLF#)qZ Zs[lW:{Z;nQis2pڣ0['Ps":/X-NI$VNՂ@PCPWXpU6]j/ENy06Nn~EWm f~B4nڑ Â'nDheyRkV,+ a6<LhqPs'Pe6'dLAβۖ’ؘJa".xh(Kv|ORbg^' 7л4䀪gItG5dМrޠB^*A',bVPJznۣW>*o( ,ol'` 2Sn垞JvVC&^S~z KAL[)5awt}GEGP ?$%nBaE;1>RtWy@? |F]{6[3g@4ՖM$*Pѿv %PؕNy3d 긁-9T Eܐ "; mGjHwXtՔYΣk\BȠ6:ҨFXz&<*'r'Ы2D*Hن;HBVrZhx-䲚"JgD/i=p9@{+m@v IXd_`xp,搰+owp{Ҙk9L.˰nl [s…7- #m.p$|yV(nH5ƌhP/^8#R.yq|?cXޥ*1FFa\71*+%AʼMR f&{(@:Abr, p)f4O\]i4 dfgmF뇛W4iǮ;R00vA ١:A{ _CP(i Σ2& Guw]’ӣm`2FJU{Cj0NaPM{Kz5\`U'5vᩇc(TfO TZU=jc6n^A\,&*-숔#q, _\Kd$Zf>CW.ECO%;z* m>n] nM{W2k zߒeAuAOCP nx'aGu)="L\R$$_guei?cX}bݟw17żΑ84f be'_U2m:)[vSŋ|0!,!UbD-"KkKL<{(4ٙL ܑҺ_ssG`X*m{*捵` c\% B"҆doy` RYYIVB:^LSv/(X%>K~ n^B~U!68z3试\C\TՊ&5|(J.5D^^%gWVTJ5O3ڱ?#!n+!,'zŒ btQRTnZѳ! 6;zEʏ.$ 8HhП\²;wh^MO% x& 䭍d]&ktøW+sЕx5{hܚɬq4锫+fO:~,iQX x/ѵJ7ߪ,%_0ܞjz ڬʡv=qkoj!"y1^3=üp2&bkiIXu%}TX|q(?DڪB!h=?YbC@q{rǻ6x F=3B2`hxiscQM4%׏\qVoMF[VjrFw╚S54\]Ւi%!Νm^I$70P 5m^atȧ:&, hrLl5UZ1esѫEE| P語ܢ0tjr8qD-ZE\H+#F߱>zIdh:;g 51bzXt/uWiOP2ǢX[4Gd;jv=!j0n:*m`ĖGF<o)ϬG 7A'l Na<Goku@ v#εa9Ɗ?bf}rg&*"c.+dGh=^lF5+"D#s61;"I$$ {D?XHǿ]іZje`K{&\tI4hl Wbw!H$?/!4jLH_% L GU+A9j hSB)^/ !V!ҫH5Ҿ*;Ї^0 h+66a$A0o@1hV+CLcZa+ۤYcJi3F7Q^?Z18!)z^6Rc'-<qd]I"$~( ]/hNYN8 VgsqmrޅPN yzt+^|Yظ: 3mN޾X#cX# I|'#׋hPz3a~y>`LTk3 ƞ.ݥm6,zl ?=9ui晼z?g,JR ?V)aM6QeAcӀ =ơŰ֟ZǟFwq0~H{l@^v К%8] I$3aMkةʅ|rk|R :4Ji1ȴKL"qkwLH,{V)J˗>3jqkqKVneh8IJbSYà hhޢ0,=  YoHoHn@"vKU\Y+ ʊ *^cB0njoCnc8z++ KH-βR.N ZkU^\ІU ;wp^v[CPU:WsQ:gZɅ`IR dսE\0ԀJね̵x'Ǹ:nNNLy}IMԜOJ>H䣆8]BwAX`]y_aIbNBta=_Þg:[\Z;#Q4=bj9n$öXyi$3d\Mď41k;eQ !X[fV#cBC+Jo3+6QgX!̌-d< h#r} pb4Ƙ OQ(zyd?WWku+>4o i.iW1kj 8jܫ^oaWh~lF"|/q 4, [z5eH7Ƙۣ'B߉ u z^oTʭPeJ5蕆-GJeGCED1Ě^Jo|.vP)<;frWHA p#hϒ&&XF CDpN62osnҫ~hUKD׶)G7Vk y\oNp!6R]Q;tܞKM(kxf .~p/&F74C0; >mw)CYr Bij]!vTSE]/=Ge2D!;Wc[av塖a!YEiyAvYDjBX~u2Ԙ\CB<6kp@̳ѫ5s&@BR^.ʿr +_X݇\5ʏ0d"sn&{KAIrȳSQ~ y2A|eTcq0?KCq1UuDt,Os-]sX'C"].5S#&&B1?6EzÄ45)3UJjxBc`Xd/$!\hwp:=tn4U -glq\Y91wYV!B)Q‚-ك;$q.x.9$0&Ư>߼Plo6_&$ODPb FGJ-*Uo:e*:|BŊ"ZŲUԻ ''zj(?tB (,&U++oB(@E^_T_&&3'+U7 G0dV͵]pmWH:<-髯ǙE2˼jr `l&Njӫ ͪʄߠv =Rĺ]!J"[z5 WL,O(eX  $7ӈzβ7^,j_ !:%(USzԓwۀ j F4_.]QNj 2w!LD70_uwrM]ͣ"d-R¹TC%L !\ɬ2rж2rBŪƮç4eTw{{Sqr1[b3 $G]I; 49}uD͚N"*y[Wh.E`TlՇlL~7Lc'z/^cad QV5E 4hU'5&"ns s5sE:v]v_;P;@Q$VEE|(ݖ̔o =z v 2VhEl\l5ӷBGZ/;Wst(pn%JR%&W/ZnlqDT/e%_}DxQVV3L`5f$.Ք8ep2"t7v5`:D=?֯0?IrG$kv\#!71ѢWЈ_vcHcRktJCZp^McN-}mav9z]p8d|, uɎ;Rss1.fbeXd)0[K ROAq)7֖,ޣmN1Bkdr!_:=$^w4*Be&ȀZ'BM nW鄩x j OfXcgH"QFG=溠Ka@]wVӐ$5Wnv:hzлHT^_^ToҫۤzN>A[*bZ=jĔ1mH\-+`+p/ #eٷj 681T/ H\szEY[^!ԗ\u@ſ }a\Z`.4v1[;Kz/*o)T7+E fYD"aŧ8c!e?]}ׇTT{ȴС3Ұ:;?VkEi) ]+7eUR5Vu)(eC:[ =-+2ΨGxw?rl„z 72?IsFٕ.KUt# BY:yKgA[!-sԞ݆c0֔ic՛4dשT7 س`M(on6~%48硢#q,_0er5)8<6M>cW'Sv7$D8j+ e'\\_͕812.w>uZfܐ c$y0Ql5~T;/SpZYc`lg)$Ԫ0u`[ѕa ;3zo'#s^99RIQ^ 3Zd:r^Hs&^u&813z5 i>O"KIf8/A3WF v y۪@`=I29+BE<1!R_0ȊsIpnyEѺ29[ٌK"9UʛВmTLwL%JVe_C6Ԫ+2d m} l>XؘFys6tG13,D4~nZE ǣ,2ChG!Q*_% `d4;Q|*^K֝~=dXxoB +Sj2z*LoRncRwι>"KiUY"QyU*4w5 eP0Ξ%rm\L1+}%-^6>;[\1/gYN.{24bh|%i5!cP8!>8,[EhIZc;Xo 5t4P;gQ5";S5M%B2*+vY1`4Ԧ}ŭYa}OⰒD48u[,)aŇ쑬.nCオ%-N5JXޏ])؄^lQ#yNˆu`,"=qx0͚nZJ$8Z Q `̾$LX,_+R~w/;bUs1AyF\;vS9OB=7ًBj6r_iZc =n#Zzk[&=ծ q9r] >gRfeȒ *6ͦ`_CGgxz53 "{ z zu*K?,4sgb񊧘#ŸG!kVyɚm2٧Ճ*p"O~ 7#0Fe쓴'@fl۱%>!bR}!$&!EO7՗` qI_ xH>fa`{M%qc -4&0絚Xjxq9J8Ē^-L6ޗ'+&SL֭(8%r.?.L?S12LXe PA25 pMu`B&)tfPr'R 1葄5H4[pHOߖxX0*FA?(5d,D1DyIJVf@/Y;v_?&'S:5p*"qnXa*=Ee&l&fl\-Y蒢;DEI֊aK=Hs ŴODY6f"ďˎ5l@jhcߐw@kF(G'. ! o2H]FZ4d6Cq{G ڿp5\c!',鵦0R MgБEO^]隙^E}K1Lrhuڙ+P,iG+ҫ@jGcnGIa@TFW$qqpOw|>gv[ :ttǶl6/&| `3İ[_,QRfZhRdp(S,=])}] b$]4bm̘ce!@gb<}p8Rܷxv 4AXh ħO`;DYBI?h?}Hx:f$]IdEkrU0d a_%=Z57wf&: g5s >mP5Oma- fhZ&SdeŰ:%% b5vڧ!;%0|i=Z(/Eo>A'yp^ z}!T|bXTŭї!y_WQ8Khs'[M?XOR-[_cU- EA(fH`{VccM i"J" >őَmeqU@{5"ξOe ,;Ց]3-}L7fϦC ?n%j-ꡑ ޕqk:@ф9&b1죸7tFjHR~ ܃AWБ.[kç6蕐+{qseK.9GµV] J[Z4ʪqhV* T Mh>/aPQ)J6%kS+)6X]~`g4^~/mRЭwf %Xgi(::tMIYj:r41_p~^Mdy>ɞ; DX\p[z$8P, _*@?dPRlg%G,S=gTSJ8a{V@_TJ?xHE(D/"v#uR1ѳ{}oL[*/]a5vb61j!p*&^TUjn/դUaL=Ia!qaR[1`9DY1@p!sjCkI&7E@C9엉 X, ]pܥ"ӫ/6\tTUs~Yp?wIb9*(''1k!]hf 18}SKI!h*'.F$-FLRȩB : 5x<qw> hn1f<h*g2e$3]f|J0[mD'v"_.=sagʄb  +5ecN*rwC@yBd1OEEH'~8Kx.1;8Mzطkvd,dC?ֱvQ^5hKw^j&)KFzN+1CYi;.6U7NY]D$ݷ0A ?^a ZKиuK_顤P`[D]CI|{a$b8H] */O+' ; P֊ʧV-| ֍*#j[]M>[rT Z%}Un.k`"|f ?^=+z XCխmąq{QpDlkϞN6c1^ܔê\G|$R%6n\g[Pd2?,6|NmvF3N ϧ=#QzH{wo eoŠ0KhU0W%ѴuRdj0ℋ23 ȫP:DL|Bk$j؜*,7P Z㚾(ϻ^FAARNw9g]y9f);bX5+ IRͶnG&Ӯds szUb෥;$Y8W)#Y4y!je B``¦1."Ԡ2~kzK\hiSzTx0J#{ 1F6\N1y$ǚ7"S0p5 vxEDAXۖOkX~WW4X6W%w뵙vGO3 v/npHx D|0=WP 4fwmhAEC?7^y U|N Yl+4ǜPuN6Q.mm g]wCoEBf>AQC%՟Pd&nYR+];<(yg[ʻaK{&̀ڢR@&5R7;FCv"Ysir:VGqmgW( UF3qL_]0^:~x)..q+$XlϮ0ɛ? >};?+_u< AqǏl67܃-ۑi/'mcC #uԽ;%9.4Y AQc'c8(en)"6ȣBk>`>iwms⿖eZ`{^Ww%j{taטWkXi'O/B7/~O]AHTvk_[VSc{ 8[*zdtAnQDV'J5ݥ=K@ ~+z5`U/1\E _vG*`ElxIX LU:XoKUC K Rwԫ{6|䎧0|H<ͽn@ 36zEQe~v2uq7ξ%Sqj%FA@ctMk Jr"OXh/pI{Ԋ_pu,BMpo^ Ja SJ1+W ,+PyZ>v|ֻ]CgMz>Z0V<@ڶFDl"IZ9+PxZX4: ů1Rg0 Ͷea&O17#)bб¾n7[deYЖñ pl]V0".["D blgΟy: 0N^n IlhgT*' wi>Y8r U<*RPH "^풭єUWuՋ.~3| vIB^z );Zf7Q9q(@+{_]ۚÊ^5ђ€/rjqHas@G%X$Ճ^,>O5QPqHl+ ht7?Wt0ovxq7Rzs)B"s&ݢ1hL])Jqq![\!WQ řF(g|m=*ˊ^fK\dNP# FBJWhָx#'Mf8bOPbpL] LA ߂d<䯢ӱN+{>˵؋߹V_E:uܡYMtYUih%_!yJoz.Dr@ 9\j$ky y>_i~ٓf4n(؈\~M`v3gX ks8RDFoÊH6#q_Z9ݟ˜MIJM| JEx:ŧ mydo`ԑs*f+w:T݃;?8+eY>KcZr1q'T*5YyA-dW]}䄯CbJn*ӫDW}/]ptUJM&!mTºyЫ+\p//}`^-e'$Fe?:QlU~/*'LKi;QK)Xε&NDccdf\b@l W> qh3 Sdg0װwOդw[4<ؽBGO!UAā_w>fq.7Q'}= "Y=޻q ;)l;NbWx#,wҋ,+P鐴,߿Zw=y!<}fH]L="Q:Fkٟ<]u_B֨)lf} `.P﮽- Y4X声nsB`ВBO dȽVܒՏ,+^W\_$u-O0Ù3*Fx xX`.%F'%*6nf7'R\hXU(Vvgo,a-\3D] UP:yCz {P?ݵPGs:yB4 ` W]A9C =3#`翐/Րr37ni ;2HEƖĪ' ){9/<>27q8^'1d+*F5i.C{A(V(K\w+p2${^X5"{Eb-MNn{(˜ʹ?|7ԇ SO4.EYyXR*EA, 5p|-p[E 4D KB҂pdQh2&Z{Ec]#s Ö'7~ ^P>`ykBtg(C!dG@Y=qDSwPR{$eXQ`XkFK">Dj{t.I~PO0%LC+ߗQ^j3E []1հ % !iF ~H%.Np^u }8zUo'zU#L%r8HD-0-ooWBl[U,>lͲ<6-[eݖz;Sp2"624ƗC51jvo!, !tW8pYDM0vcCqHEk1ʰKJoNOvOln1M 6"Z!3iWeӊrn*OcϪ.'7(|qX`8rаE]\n50ph,O@8+ T JCY6NcHBȻ*:-{A'۶&.~Gv63ފÖlԖ70ۙ=m i`իnbqX?"Apsٶ_Qf)ۡۙ"gslug؂1!-(ASfHhil.+(كBV?EQbƤY 0ȣmrF47`1];yVfL G9z\Ě51{Ƀ`pt'ʎ,=66 L"12#<,0,5ZݧW/MG .<@ Ϧvr1:A8P}BFyWz9 8#RaCW"/)ɃXfE9T"& b+wIQl!wS%M " ȹImEn֭O.m$+ҫV*124V1k|j)nӂY8ǖ玄sF `lvn=#eYssϭ8!I@_dqOL#U!둘S&0PBOvL[Pabg = w*bUߔMlYu-DY/Dil2j+YnAnRJoƶ)=XX#zIfRaibS>T>0Dz:FħxE=OF 5W$6^SO-,-zðMVP_mr"UAxobNڸs@"}_IzH6qA8ݰ 0\ Og/HgC^^b,'3JTSb:isXkc8guWеW/^)$#/Cc<4xNyW$aB?u wkjO{=M* n>2r7хaƥÄTh5aަ ^wu J0(Ԕkfd+X?G_DYni_a-G#n"hAds-#fܺ;p6@|&g@5q֢}ō*d=ri;$K 1~Y0x8#Â?ث ^Ȃ>pytޅl-FU WwNr=wVO$Z}N2!`Wz(ã!̣]aPGRr{DBԞZ]?a>K,` ~w(_&EhtxiJ4)W>M.Tª>6ȅRQɻm5tjJB^BUrd"Ac;ӫՔ*cӔW׍\TfK%3t8gJ5ijk{OT(?"Vͽܶ1E`gx mI YZ9JdQULv"J2|?߾d&۳͏FA #r&:L~A(F+Ra1~b&pD:Zꈄ(6[d+Sݝ҄0%M`O{qX! 8=,7Fi@\ǭd ʝ4&ǎz@[:QqxC%GpUbMyWy*D8MBWLT ?Pb)èwJ0ZN~P0ȳ4W|ؾqb0NNMPh!(At5t0MH)lx}+Z_aaO"䮙WּQA&ZaK^$w#q.%cc: =v硟|ϰl7yMw6.3)2~Jed)Bܜ3s9wg &KuS+E`Fis,ф(pz$U  "z}fqjz ]PU{<~ItH<0"vSxG(h+3UC$ ك=_@-PΆK5 #_M`SɐEۚ1%FfXLen͗b 8"SHG\"ӫI7f )\PvǗqEd 4aXͨF,#?G^ +Z;eʂHWDWmGu uJL\^FaUM_=(z(HY vr/P|1)yZԥJ ~&Ϭxe:0hNH9k޿H~~Ƀt$^C6–"QCNnC^}NXVyJRs-Utő 2E-6`Hg7ǝ@+ֶ\|/5K}Ƅ]b4U:d[ҩ˹:*nܘN10V T@1^hnUBǸ5qc[X)h! 9Ni& kA;Af~ׇdף/fW7Sf s a5/o‰1 NJYBn6`wǹcW*RE9r [0 z =rÀMQWԄ8)3} 5a0" Mjg2q(2y IC %z<` 4Y])*Z(:V/FqM R %D"W. CD/`cm1buLmK*\DQUh-z{ňc![87ϢMƈjmWK3VHmAll'1an6afȔ]Wn:9.,'v~92lVU`)凯tBҾJ_TYF}VW>iMeķ:o@kC%(,ů"ҿT,ˢB: }f)ʈZת{;/ƓfR%05+zdݫ k~g k?+sx[-L$#.e[ J,:z4l婁à &E'E [?'@0:|M` 7ba_|jG ςI_azkzC%J_|W*y$U p`k2}x0Ǽ%UijϬ\㈂8<>9ԑ].rvl}ttL"A$SAߡW'k/x bU>aPa1T_YLVY\'5`9_q1gWmFUH^%jkdՑqrOI eDG yv!Y$_0mP~cHVuI~}2R ܪv*Ywf-tYg݌^ђ7 R `cR+ӡ17!VPZlr\`q~ai٬N| 4:L6y܂3W'L.fs޵ 5 jp;j&pbǁ^m*BZu<8uxN"؂1 WbQLZtvPV}5!3TAyI1|JwT`"Z9AtYޏ>]:Lmd(_`Щׄ^\iT" &CQ 3sU &>..U,a;uL3]U/4Tszhz%;۲7mL2~% DZW$j&nӔT4:uOҫaMBtLj-=}7GnUmLwQ=3|Yח́z ˌӆ ~US&ۖɀ,$)=7Z뽦G&00cL{LiZvй <=M^ !RɟS!i65w6"$hWgY^:c Eߋro`Zω8Om.+jl#̆[y+i}c끇Vh7e]%^\STkMjd[[ \DN'HaNi/7Gp;%SAQN {%rʘ^e`B+<jzpɽ65P>Ǥ@AA0yR p| Z+tC^`en@'xxuzu&`q^ HX0X3,40 b ?'S{q{q r/E)iYm\r?b#3c} шj#d2R<Cb):<+ *[ , &MS ˡڈET gM̦:}hIlmo\)$bq5ê ,6w؅(4x:pӯT+jbMcgDW:pg3cLO9J'Ib =g&}a;\AX'zh0+}FK:nV^9R%(^x~t;tќZؼ3p3:N<ڽ7t0aWV̩Wk髽`C Sckzuj(WΠ)d߂ qL$%1@ze<y)nLUw]dB6٤J+'G8y)q)PxЫMmn!I+q\Ov j{|H*!9:1J8нyV"6+;(`L:r> ,ߐa㹵g؁ [+H!Q55& Xvɿ Z +;xh=ěSͳ$n+bW4( (HZz]RQBw`3I/cʵE]!Ú9qqDư(?!kQHP$w]'m"~u9\ ҚgQ %FB ;+o@[+v; 2T5ZGO2ŇFW"dlX[Q1KbzHYX)8EM6S$P 4|pRGW^K{9&s>l8KrwJ^AMv$WD=/+>$rNIl YI~lT'ZOnێ՞ Ы#Ap;xC3 SAP³2TCGJ'UX~ $67-cY眅a{,eeҰ_g']vY*dJ59_mS F(MMl$6Ŏ*yШ'bXDQC`-.3 +HGBLgXPԱZ6]ܯΰ}BKtGɇsw)R€ _0WF^1鈮'Yܮ_Fxv:=0e6~J 3=o+eG<'X!iMH`ifG.K WCJ_1Q2Wh$)Mcl}]zu~'v~`:n(Pܒ^D} 6ҫ$k#-:,5&fqNfVկ^8SvzBy^|*A'/*W1IgtElDnCtE^%ޭl.KR/f8~TmgG?L?1ԯy۷nK 4GkygA5)Cq秤z.4D$yw6j GTSTP8wͰ4߮L8cNrEB*KbB w&Y`ׅпϫJMEYyR b .OԚ[|cEQXrz$4M⛇^'{y$w>=6/UFg#MתTy $͵w|Fl#\ rP^j%J߲Y\5L:[B$^*cX!߯$TǓ됌u#n`8ư Ž R$06,d!e?NܢNiWxԵ1r^E ^zUM,!R6 ĔA)76V\O >|>L J]WqzÅyrlZ`!N 8%؅5CcTggZNW\ˑюW,}UAWoJB6#0Kd$%EW1%=ttDޅz=*=t(4:>K|4ysW~cHd*c4x,EH|]y#9#Q6Ob8kAU2)ٴkWíJQkR%B43H#tOQ w\H(vFhww̚JE1S#Dow1-]D `QɆC:^!o>:29BdfSw>> DcUQ_l')x6(zurb0#7{j"*TzB6*8v<~]Mmp5+ѫm/ m\yzz) gqz1XyCPyg}vSP%KizEpU3FWW\1~t0`Fз-NO,X'SA-]k+ *BWF7GXxF8BA>)g8UWL'7BfLoTJOG3Ѓć评SpƆK?;D2ɳ@+8Q- )je øt,5ٞa%~am AE 1G3%WH9ɣA\$=18x湒jo635mǤ}Ncڙ=rnf!0'FňkGbV~ x'2x̘ MV4C;R x-nӫMM)/c}vlpx`Lsc6ܫDw1$TPtL,ڢ!8ZkTX: o&Ζ{\QL ] i1]$Lx@$z/𙬸QzP_P%]K4`}k8yiS&C^ Kwlx?5)ߐL ~S(ڙCFmQº utQza-έhB޽5PPݛ> 1D2q)x>V6Я1q)aeXno=4hJ1x@-dݙT>ԫs30|䂾f 4|i4fe+ dsG5ɃpN19^=JkPVtC\I0<Xymx<{MX%*G@[90 jOHGIQh9EN&&P΍OqY-$Z9P+v|Fv9#c {58IBXZCثP)|WSFOGqc^1 g%ӫI* TH% uLY+{W$[6ivm᧤X{~8B"~K gCtϩ[=CU//$ 2m߿]يjqѤ0C~zBZ9K3dp}XKr)NPbȶ?4*ÚU;3(y:T8'ЫH90MX%1XVK4.kmҚj, lE;ӷPM8̐pR=;pY^0t@QD_H ZlSxu&M@f6l6(TgDd368~j aaR^+G1b6(fgW9?J:HǓճx3FWTkW8\6g# "h#~3GM [)N fh7aBYb:h˃hmt!^ę7^Uyzsja'FњmDrf0ᦐ>F/)Â);CUP)p nҔʺWV&q[@kT ؂cg,âd %%rs9e3cX,AXHU^s=HmLQs\xE[9TlV``Q0sϦ])o9Y) q 1oTW,{^Rii+!r{l*Z/յ {8ʾ.( ' W| ˚@9Mr?A[w@9(-߹~ex1\P\x{BFdpa|5:XK'Q ,i+EznQ2[yũPGnO#_Z.xyYYg!U$'yGmYEghrfR㨄2 U,#^`KV]!v'vzU.{PR^ ѫOpb)jzp%J7 cMxז zq;V%jz3"!\D *1z#mVBn[biWx{ 2нXF\k„ٳRK?0,4fdq9njpɷf|Xʾ# QI7sk co+y<ݯ~psBnpI(6 >ЋH -'_'n۵TQ\V.?T4TaI>b$!$f1K^L#Ӊb$.°JRrD",52 S#0{Hcݘs4'3Jg`En"<ڬR`-r?ZJ(&]+1)>f'f=~i=N3o`yCSҫVzhٲz஍h4+#Y. w1l=$ yyz){nJv jYqׇСVUt El_'E\aș$hȀm 4,s'`!۱WlEѤЫ+Zf{ *٠WKx?o_GYÕvkSN弑pka@]#b5"K/ l&͂fgfLn_.]&Xctc _eB+?eX/|GH' sWdm>;Uw] cw*D0+^dPXJxcy]lL*ʷbQZs 9V,&b^p2h&ޟ!T\ﭨLzq@15ClïfNz#- OQ(Td`y) diþX~'%ў^= W1"I!mө$nEn(Idi׋ZU!pL'%E Iy" ;J&Fai1¼Q2\"p"JO\r3ʭ<1) a??eh7e-kx贘U)Z+4䋧b a4l{,d'繍*hkꑟA>AqD1[ͶeV2~c TjܺrK'!#ҫx>TWH=A(uq)ت_R"S@A\{(_ ;M۫xđ8 yR\[oCo7hKPbDI2tѝ$'7n;(QQ@o@l#\n=GVuI[֚]s)MhT80L2Y31> AY SD.ԨXm"Ʈ35_J&= 4X&t^5ͮ?%EB%x0<[Vϰ L;ϕ(x =1>sZbN!W3~r{Pΰf٢uwqQdfF D R$ޜi UKגJ DUfRAQ̣Cum4IGkz}Gkso7f{zqYЫaMWIj֌b{'Ԓ†CMpOJpJkfUƜ^%bۯV]7dZ>2u# _ ߿cWzҫ<%\TcLXHNX@g0CEK3]u\{Cnv-Fdv6āM x'j}. ~jt$/--r2܌ W+pBk +7껣 a0Ùշ<̒SRF #ym#W)Hv &Q 6>r|9 U׆竽)Z?{t"6aS(47To'YtJ!L\ZXaXծz:dN-kg;j{a}:VД AY@O˒4;V*r#~j^>@h=i ^QIjM>1 ɱBv qLIy4:F,IZZ@pͱ& X^- PF 0mDd.+_p[o{1_F*t;o;|DVpuv&aX1Clv[t1=, $T7AWtL}Rjo`7x:bXt3I~¨,qȖߠjP `C%F/\}f ޾ 2Z&YωFR/˛튔(Epâϒ`1Vi{eǂi?e") N y`Ȇ30̐1 Ti4s-qת]zǙa#Ć_DD%Ku_?=NHFR7!mҳ6$BR1{Dc B{=bAt9!޽}^AjaMTjOo6jj2x2ሾN4_r*Bq͙.&ۛ^mG\O{c܊z8+ׁ xH|L㫾kKf Y,n$N.6\S i[{> P *B AL[::mԁA(]^U+e@a>k;Еמ`]#P=1 !;d=rCgM\ ,S8MQ+fe*RKM Ri2eeG[?( &6Iwp衴8M0nq&]O$tGԗp[mQju}k7|wmG6 ;gTf" Qͅ*+W;X+e`5Xzv9+(M&Ml*3a!$rP|oAAPA #ϓu[ = -e͢^-:E~^m.i1Qp 4S2 >Uyk9堄&bX!l ; fG4TkDBSZ30j$aæVf@OʜZ }' lH7 v嘨BAJi9f%." Ʀ8Hl~`LbZ^INVS0gPAgBWnn8,MΌ^ ͬ;>WJՕ(x!j|f-uHR(څ2"+Mn}y[)Xp <ˬނg܌ѢWo+BשX"lN"U{)9}uRhCUXw4v%E ]܍%GJ ?ǎCXa<9ғ6\Xd4ΰFD) <Rv M5z +kujcQl9?1[+/qXj%cǨs#W}f@FrCa)>7wHxonxwto/ >˜dm>y>\Cg@gB9b+(\qPOf-Uk<WZOcdjUjA7#&ߓ {4#k$ϕz$aFjz5mlhe7,mqZt%*uU7%ӅG&ώҫ< Vg[W;9%+SD=.WfDTſ!o-xǁҾkN bQC>ˮ^sT8Z3z w[b P4r 3 LP ҷ[MK h熫w6f{[0VP n?)>fl'$QJ}3Qz $ނ*OŊJIm.= hDAHDPM -M7͌,&# 6U!;hGz9>ʾ0)fXBvwpUq慘{09g[%k4дG+Pر:s GCJ`܏~˳2Jk"Lƒ ALh|.2w-c"6şKդ_u}X}i;Q.{q.xMB]1C%EUœh900j/[;t>|󣾰 VťWt$!>VK 8NĪfz|s[T/$1ƹd>Q)>Ďr>*v{ }űHQͫp矉 }K%pI* DT# ⧳gRso;m_%m@dڏh], iD֒D/C1uBm!L 2zd? l+;CQQZbw8zucJzT/r XgG^lcORɘʨ_Fy(:R+),E{pw e]/F R ?e1ƞ0q>E eہOДMʕkW4Ùh >+fWk@^\աlv,]._aq".sW۰H_\l7r_3} r7hb7`sC<@ThR%r+5ttT^,4>Q l4 ޙE#/X`L ~J+J|2XEeZVn8Cpe41'Tpyf}5K͕cx1cPI>_V6bJb"EobWE Rža&XXy<0uO~hǞqz^ yT Nk(j$UmjA^ykV KWL3y@FJY/7@nq pKh%jgR\1o3v6z%3-Y~ˁ5gPSc=z Ӎ^PMJ)w[W4+ i]A?Up.mP'VZ+1WzE^agv>+2NOr{]~#tU_=tY,KbQ,&քa n-\>=u삒rV5gvC؆ 9e vzФkaʡ]Oݨ05`S]$m,!el`ȜQ[bajq`#pc/e;i)7׻J5CBPe!2nd$b7[3~능'srEpMe6XxRbz\8gv1B*RP_!Gה֯Zgp&2yȸ]&!&W8ЕQBlQ"#bԹƈlU2yЬW+rZ K#WIx w"6QH[[G9W4-I c&i(FW1%:%ΘX6U0Ԝ@ xLs*6 wۗ~11Ce!C(SDrYz~hư֬եnw++a#sH#[S2<|S hij!Aa&ayKd|G_B9ʘ6$}fZP~9r~bڽؗ҈FUY8J g*ԇnFp 歷/PHݖ3g{9J$0Q OtJw s.ɚ^%Wq@á{>yBᙐȮq:\뼡Xk.k!}udRQ?Co(*Te kB f)@)GG裦JzuЯ+hP{8l#j9iW"i{XM^9ԝԪ S/*MBiQؘ64Ϲawe5 vSZA= &E[.KC2r>1Z#4r4hzNI6 {('X>іQցT7H 38)c@9 ˪ s^mEBcM X5sn h9/5\e&#ش||g.ELIY\ Y 9C1,yA/i·l',F"j.r|5X}۠z_(/]XrN,:ьØCl%揑^LyI5S09E|Y#e;qt|0ַ7 mN|)1+χW@p̟_00wIhџXi@ơSWI S63GvO9Ǧl "YWoAuE3WfՑؤWaEx f`ZҫWSx ze|\ G(x4pPt)|ܗ: ؔMB&G8o<炋Zx*H K:"E؛֕Kh}hW{o_6<:mryF~ q= `b M4,Ѥl+T-*XKVyUWEQuK(#RUDAwa-x<a5C6-h/Dn";͗pRW:t9v0j0x>kK< ]Ȏ,%!>,UJ`+x$Xo:"8(^dL{V?-۩'3k0uvz5a!JOn"1$rCFQ?AFzWD^%2˟~ %O||,<8):URӊOa(*c 'Y[5 ir<ɄFiA/53̊>IU,5Lq-ƕdաBt)܀ĵl]j%K?d@0#:>g)GZJGtʔ'⧀E~[ KNzPaֈTDծλ:&$vK1/^[ooH>-[Dۣ̎iJ!~^Z:ރ1 0ʠڴv *Ng# Va^b!mj78):ޅP/TZG4бg)'Jdb]6.##ʥ.g_Q;:|(~N)-&q:f*2RsR]c|B0Z]zP e46kjb&}Rv|0%"ݰB2x fMd2,ML- k&~(SuR],8r}Zndoްo, C8g.nߧW"{Q0si -U&êT2pm552x9au.z"A)eT%H={mT]iB)ʪ1уQPo(%Ph q _F̰xsY|IV-y|%b1ptY,( ȝf 8cVǘbT2}5gذ^abуM4Ƀm(`IT+WĔTZc!J P[<[=]r4)92)]y\}L9lE[12z+>qS{e᱙.RW4.WWFp~+z5t(+4X"\--8Rm$iy֝M|H.U{HΛ (=Rځ SEt%hp{+KOJ8ٮ f倿X8cqvcNMF(rR74#ĀY-ۚqX9fD%-0&v0,ũp{AXgdqzU!SB+r;z IGNgp}aFqM%x4hg8C|h "F^t?5wêr~PYYAEO6pAfAMhM^%C=Zh L_7;xxkkqW㍱Hx8踨,iZEzpJz7f%W1Z<{d@f%.ڮ_`@<8/>I^^j^(|!us`/^IBM_KX M! RxV#+4ӫyoUPg_ڎvYњ 4Pp#8 I"R޸8I`a1 2q % '4FwnyQ|1>qa4wQ5 y^2m$Z4.fSazp3lE,Wxǚs)X*^a Wdvѧ߬1va$ry'e$PcWH+^ j6$c5.9҃ΏA8i`4# |&LN:R QL~b3}Ge6n0΍Q*z?[A+^1\q92x9Sz 02xŠ SIE`l{.ٵeN gn./xZ;9A a ·M;\QzHE8 1 AU,ݶonN6hA ĬEry4JA2Ѷ7ykؐ7蹎n7v)bwMFXDapŎh.btXÂT6Y f,3x14 %hĺL`}ƷgeT΍"Yx g#ݝrQɖ yq0U;`>4:UEz 2d %1>_jU.$$HV-Ϳ&p:NrLaW[KeiKWe'}UW68A kDI*LT2t- Jq]N+`wL#q$MB Ku )D7A!0[U/SWt 2O!; ^qߍPxy3FaZ4e]bp-1hJdBQm0$0ntCcd3?ڟ]#eB ;Xl Z*hNcnmApA`V+r #_G9mQx%kְAV!:㵈*_5Π/WV'%r3q|_>FOW^Ax8IFjˤM9XR74\۾txyoPY9b'q IV` D I ~ P'Ϯ+APȽ:bo^WEmdԔNgNו^gi^2cp: { s.{o Uҫ Y$bc`pdooX?zYoz8,l8Q`^s!b$ŁB,gNk"wmgs?xBg(u䭐> I΂L4 H̛W%_!1[WVmr7o2gIBao,Dc!Ae%ģTcX2@+-zRdV[:zwoOq+9KEU'q'Z/Lk 3~@VS,`EdiĮŪ1ѕK8{i9ɅYa cEc lv7 "*M_咭լNq;{\VHV7wMEPb2tc' 5q[θE,jI*wA!P I0\M#efA(N&b?!Q!<, |^A/`ߦWڐЫqivں䘣F1{XO$FةuhFLP$6 zLVV㋂qRp֩tࣴ J 'P퐁pq5c FF6Ľ[ 7!U(pۡ(]k+C/7*K_q|de!#Ǎ?# C,AK BzX]tXʏ2 n跭[^>$/mHbKT:ϩLM#^3G29 DC-D?T^!ɇ=y39Kա쉯+ZU%oЫR^Lx̀ݬâԵ71ґ?D)/9#Y%0ݛzUͭ'?5z2oeI -+W)J+Jx$'R$[GE[ČE( _4 ~ |4mgA7T;W7e+S gwOa, ׿~Uȣ5FL-^X'ǦTLSe>kʔ+`3#:o]%Әp\+wѫmKU #tf-sO+W\p5~q@ID8m cZW%Q"TBO~)*1bE-,+Q DaQIfԨK\|Q5DW'`h>dMo׿2ɐg%h[;n #R(.z\>A k߇upƝa8Ԑ}{B82=_\#2%eA*֦ŔaP?FYȍ󶯾.䩮mߪ?e$Gf@ G&?ڈk]gQdv#8LFO:jkA85ch}~X{X&ЫB- " X*$&ՌfX-\x'DԵ3mb?GK16쮇Co1Ѹ!ѡWaΈ3ZoeGzGvĶU=g̞$nw%Y($6tc$5*-<3At/: zpS! L`z >R,Ca)*%I姒^zl)^k0"5j%ebFͷxqKxS 4ΆƯai4ۀsþgW^aDDW8y.[} } m6 HVYL Kn6bY!+dmMDѦ|(mXC˱u<_hj1uݵCaQ<A`+aXA]ǨoGETq+A T!hEuDY^M6\YSroąƤ0Cc? `R?g~aBaU/zua.dp JyȉOEN owl}˜at ;+ 5^v!ILQ7QnbPufKV196F;Hxuua iJ,`9<~pcX(mx°hq)wD?IXc ]f!u ǁ XdOe7);yb30a,RYHtcjxsǜg@Z yӔ&Ǵ׃NG b$R޷JAcm2 Yw{+OV~^o$.q@|ńsoоA;H+$GWGnDF.SۤtmD}m ~8wJ+Q Sڎ]bb5{RVϛxn~qG/LMW'L⣬6XLؚ@e)Ow+WU}|% ntzuZzU)7 U*ؚ+7*\kKyob^eN8nSx>m, nC&DU׊a<~'M_$en;Aa ds:\U W{₧Mƈb>b^,;lڌN7!~Yxb*zJVù^d˜2HA9&nmg>=ٙ׷ݙ$]oP.1sQ4 ZNYy3? k9YxopzRe >Ųh9Q\c]6g(S{6JU`zi*$ع?,&÷nqӣ^9x.ōǡrI \פ.'lagC+6rKfsT iSCz;؛o2l[ ]j8+Jݫ7xЫۃ+b |_+f)pY=K4 #bұlotFXIPz (Keeш12CBՏrxƛ~TJnU ":yϪ!FYo/  CD?ɑPa%Yc,h'Ф\3r>ףW6U;cooO{ liyoͼ+~kx3\ExfIy% dYLr\neWE݉@h }^>ɞ̴+}!dP@ۀ՜>_K<@(;O>z9wz}̬{cɠ2>6[߸8;(l'S_`qMڞzZ( Ry;fqxP}nXy-2XBFW+CE*Xhj r ]-|w_gE?-%loր^*_ҫOUGDIFJW}`#0V!rERM1p^J/Ǟ5㉻?h~9jte{{=m&x9~Uvw7(K?J O6PL+qP>lu1:F ɏ.GS;a7P.n셿`%T:b12~)|f6@ge=J=otkOg QF]"?\ ̨w(zPSByQE(Wf,,B`$07}۽ 9nSYC^7 3{ݜRZFءK,4P Iʝ(!\WݺBOcns,+zeԢ! ;dKb C[f*zZk,켖vo : zsFڡLh,^B*4gQd5YWOcPoU *x#Hm,nC{q".@m?`QhPh_ Ogw G[VT!0 ё~*N`DƣDYYM2nW3Б*Tzg".*Ll 澵i˜4M$CmZHX=hsT8zvɼuj>G\E킭Y(U` M頻\Ikq~}#/I-on]d.JyG #k;0ס kݧ>{z,{[xߖjӫsY%x0Bq,y;d3̑FVnlޛ,@0_k2x,3,P[[b?}a_@[0)1gD9+5Q[^*q?=WGGr%@{U.MꃮbkvMx›4!y$ *6MCKz`QLH#~=wn`j4CDFzGp :4<i7~0k~J2=+X,hl2h?()]W>؎߬-JgMx|K~Ib糲Ⱦl z1rc&Mg [!RUiߋa)ugqlOB/'6z 4%\_=㽬N*d!ʄ1 W\? 8s@3 ,֠ p$qmK]M8_^fAB;o$iOTH6*E6[ d bfZ͵<3`b*ߏaYNTK`qABOg*h&"k:^1pOL:@mV+'s˕!%":E,p F7lG8P:U&k,-*J^%4[cq9S:ͺh]n~9(` 8T z`@{Q^QsO b0\FlPjҀΉsE?Pv^ρjZ]{|Kc75pm8`Y듃*#ۨқ>7ʍRS폓=0*J))aqЈVb]+{,~jE%D_N^wIXU +??4>"Bt'$ :ݿ Ho[Y>cj5Šy5䰋ynssz H=\m G^W]]̥SI鎢IN_Z }lT uXR@r.`;Axk*\F>c@0GwD|Oí(ShtQ$-\X&g8O +%cAPM^?;W<ld6w[Fo*9W5`-jՎ/Qb〛ɱDP,D4(yf7  G 7|lwͩ N !^\"7@/N}vQ1A 5_3L楣g՗wݗXQ@X , *{LgU<ݖߢȟ4sGe] $X RtouIxQb^$kG 5NLڭGeNu]3Euن1a*^ }ֻ=BK%_,AlPAW65js#L1>W~;#f-ȢNs0r\@d>:O52R]W,¾& ̠{WĄL\.-iLFnjT },ijsSIgM`U8c?B:Kcz qg1Gߒ^:WJ(cW)wB(< YEI؛M,F*M&ԾĈ^pZ\}Vxk/t48`68W7"yؘ, [79ĩ6wcKAƅbI: ten}ȫ"R*6mgZ %L[x62oW/639&;Zݞ@Pו; Y ƚLIi*[JYDtˤCi^ycRu$/C-ƋwO=r]%^FDW٩%١VbٰF&6:1/v<6T4+?{EDϤ#|IB_V sz|tfFܓ?ѫѸzEEffKѫxfùITcYBeV1~0O,iIUA>4F "K%*MT,irl$n& ?&~\*nİʷgC2iLLjΈ:U^W+@ٶKe,t{_1,L_&q'#m/hp&IcIa:hOF<6 1=61[AflQ^junFb"$E}@=8{z@i|`mO@Bϕ>'~PiacJ`oGk=([Kw3|uL $JJ@!VUjUki_UOxAd:N^pYcԋ^9B.',YEtyP͜W޾#1=c->R7Es3]+d{@oC[ /ԃ6;TCS7m}M{eEb 3BQX.nvb]AkvPp+H7A/S'6JMV+Q}&2šޤd{{6췊`!@5,AkL@Ut+9W~#;Z' /9TgVq" 4Bև<8d!ͭMR߀שfM3n@dɊ.gmv> IX0LMzu}0ykjyK ͈.>*Ɉ7HJ^Śޢ.ii@JzEvqPc2I upzf(|RwEUMܖYuhO ޭ\jݱ ^-%}?K#ŀK 4*%362L^^Ω(&N8fM*h+ʢ Kѫw?֔^ёq^PǑVKt6anґ35W+x5ز<ͽWB.zz6A/3s%-h>̋Vj:q8Z1 t^9RZ/ UP>vAH1B"JszFs_}Iƣ?ݸ|zHϫ%&憣5RF\71mJo/8LFÒwqvP ?otb;M޳du T/knwwC} ~z0atB+, |?Lˁ (;bDb, ]yvT2rrb2 !ZxnwY6b]ћ 4{yzKqOasV]Bd9(^=gr]Oump`ek+IO!Ix]+ Ȟ`*_Kٖ^pzwo f!YGC_I؆tUIzV|H^n Gj'cT+Y 7pD^-Oi{S i/YU]jԮ]띬,~ښ)ΉMVr(DgnzƉU#]J/'IDBC~I"66;-u3q cD곊1(o^ gù5˜S O{>&^$tYs铦}5^F_{h5óCl\3.n]-Bj-B@52`tهSȘ.=XqAS}Y|_h;]i8N+Tʷ/t` [##[%SQ5c6qARN.p ̢2/z0йǶ*lWM []창 һ}X:,=l/Id 6G #G[RYߖoC,ߙ`}]_먗arO0:PۨߣX8,7PfBg=eV%;fA2 b`[ý蕨<;#xybKv@dU10TVd>(6)Ah~=أ:N3_Um.,CS/`]qެ9(!.&>d-sQL&(pu]e>&ͻl}'E}'Ӱ+O^*̬I-._iߝyҶ ť(cͰV~#Uvt9G`2"o$'(ĕE_zPeUϿ» (3Rju`Aγ(*/C%o'u5\4yÁDfl;W`5N {cceP<,Sk>V.jz!d \^&3:~Z+濰WLqUSDIO32SY~{8] ,Iز )?=*`k=bEL^^Ѽ qmB $GRR8Jwa\^1,_J85 $o,{08DQ8^h1ƳغժkrӐf0~1ڈ,X Ro+lca1UzUC R+'_ChD3הG3= *LtuZ#[2{HS1Bav9 6j2P߄Nm_;.4f??UGꗁknQcxGYh⋡X { 0nOǶR)l3SB6k*:nK{8>g^9 0L pVknnhw'\ Ȝ%׳By'GOgJ{P Vfv.Ǥc"-T _I+;$FJU6b.89tA{bP`ZU7`uxP Sgd_L:ns508)zL,0xuhŪިWP*?ȉ0muksh1י`_V0/[Xx'ʪ=9+Y,*a5P!$sq XvL&Y倧LQ},gTǵ Y\0~%J}ӾnT{9ji_ 3!gFET TR I=KHÐvaGL2w\Xz ")Q,0ޤqMiz%OAg?ÕܓũQh^m37JЀnTFzjhRʛg S>e/dhhbrN?me&쯄 /:)z{@A{w,EnI\6-CsXԒ.!.>ڨCyʘ< "+̟4 ğg*O!YUa%:Sδb|)R3S~ Rt[8~Zt1+6J5c  !ב˛CmҊp͎WVw;K>N*;&f+ 6W1X^W$;mOMkBΚHzϥع6?,.%Thɟgc埚^A}w\&_ǠZJ2+S3zmm"D}VuJ3sՎ&htZ]0T"$\E,,J=:22-.PqaMZkr>+uʒɯ[-a.—p_G _R3,!fEZMyHem4w^?թv+z27iĮǧG d{V4)ȟv6|!ss!ZVJu W6Զab?s@ YIqjN4Pd Xc/@QB"Q)}˫\{5d,RIo45J(n%J2t/NN,>wvKυesFpp v?#^܆j4عժ-C RG?CۃbY& _^D-:8z'k/+L\lڵVl(.pKbA0ټ+ўWUiIo?/C#2w׽p=#"ӆb>,m.!˗jm*I ۈz#n_rN-3>]hĢZZ]J;^cۤ^cdtԞ@4qڥ Ҁ'_kM|Y\,Xs U4SYR̐!}/%MbJm>&g U:SqWKkuE>8YJ4s:n+;cݪ./1~Gk(GLN0V{X|6c5MqN 0zmJz(v&VŇ>މ s_b*s$U6E8?X kh"ʈn}2z+E)°D!*5L]h\!9+gkag=XT [z0)63^flѫټ-Ct^!qqksVʆ+kzsz¸T=bg[-j%u ڿ;:b&VRG(o5{ VECU@qX3,8ͣd%ȫ'|PC1 R4}0p(H _h&PCHrjX̂#&? UaERݐ(|U+³eX'ѽ0" 7}l9SJO2d*sK?p7g wm秩N 6QM|hcQ>:}Á?@DZur mBV=d`UMEy^]=:Cks]^T9[t]Nj#HaԸz笔婴GY4t/P %@_gvY]zX6yKpP M7CtX5^r^g^=J:͝ӫ HW5 ^1L jznuI$±=3*jWԇ<Е[C;'rUNֿsp~N;zUCL.yPKTJpP \3<mG+vtx wr_c;NCSzX"` GJ/rOn (gf m$T61c[t~T*=c!5 HNgf1\΃^3h9\t\@*pQk֨V*8Ѐ7鼂`;[\ KT)h@.n/&ZDGb݊FvF %.oJ++Qm;Wϥ1Sg8~#s{ڲA'Uwzzº>Viȭ(?*:8B#4%օ!;fgлhp("KY:&ۂol-k/Uq(,Ԅ2*p̖=@׿r0/GcOxϧ4dŴ> b2MK(j25alNq."N7vZFgmmtpku9u GB )y}va9 vhyFHn(i" \^Fu [qKW=#VYݎވpB%B}[N5~D'HƔ^ʸBz4הZE.mGVHLNUK8σoS`X%&pf-!?+2/VszqyGˈ^hzAXvJ3˅EӦ^kMQWa6tFBSzE^F^ȀpNyN 7 %G^ar?#B5[Єs-s;ˎ^=>[@B ľުO]g ݬ~3֖rE*+In&WzF- C muPӯScF @B Rߗc>^hl?zݱ'CU1^Ұ"GAsF%r9A%Y!Ci,&5V %M)_1@/+Fo,MD4!./ZI9w%$v:Դm\0i4LS13 %C%b4bk[kt&#r*hF]K+2~6gHÅeA2(ҫ1r2BeABʩ#Av)cᆎ"z^m=4F&ȀwGؾ9GLOꩩ#ކ^\u5rs\9ܬP:3:djA<ܫ:N7cY3F%:[ @;WMF{}\zWkSz?"+++lohdָj]5܍,Yq%lu0 ՓuP֞<U؅KJ[.<\ wbv}sJW<۳%6z_dmOhIV/܄}[Ʀ؟<8gOcUIP罋br-gKm-,XAW⡔~#nA»491Qr"`ZGeS@7ŶRظ!͖N+{@zQ{}{lm''$\BRRYxTtB5tnD*hC;3H("V~=oqVnf Y֜h#@W~_;1 54|^s{/@Ir 2^q6sf\UISy1A6g24W]]=C޺k/$UJft=~pUBDFidx|/H Kbgҫt9Z_MTB LOt|GF eMocp/s@Ycvf~򏞳`7(>!_xl/ZBXPjZK?|*!-+x=t-׷GNct=X%q00ߓ3+ᣖǻ2OXڴKŲH}KS :i`$zQ.M1/d'x3@^,E\{G gCpSyYoh/rPas& u҆9s.)}up:~qj_G+'8^hI /Ɯ$q9ʻ_Ws&"GsMNJŠ=8TWJd:%|ۦG[94W=%_WCglW;wFxLGbSJ8nզ%"ծVh_-o8BJ)N;>~u,GD;囬3|̴ >ƒ ȐlǴ/Z=upL;hFc3TMLݥU% @8]!uE ,TK;2{?JGՑ{FK_G [^TiO_vRPR8 $ 5$Aѫ"jӖF K$oJxu\'ѦAUjwbûMӦ}{mhޞaLpkza˲`(P#oPԉ.qMQN:1j iB$FwBޒ ^뼠mHrQbk_CWP/Ab:zxOj(hUTJCs5U OjU\[Mntrΰg2z- [Pqo(w*4;qiN ;B[bQb8kkq-pkyY3@RXi3 Ukۉ;KZ2cB=! J &| uNaKWq* lH1kW5+y _ Uï13N)s`T\Y_\䍉1T'c,YxDA}R;_(Pg{$+w)300 ^ 4mBީ V[4ҥ{ZTg=>"Aưju(cArScg(C2gY1JFrd Vܩ癜$-zF&%O3Ki2 sɅΞ6Kp?g+GsJ2tɑWNm͔r龩ƿH+Ҵ3I؀w Cq1WD#z5lɈN@㋸=K~2]\Ӿv#lRVu,4Wyg6===4Hnmwg9\lTq$^=$zo5|JzSn]{;GOU_ɚ:n!#=NFe\\UBʵeoi\m wQCM5&dIƪgA㓐o՚x͛J(Tfʫ}zS|UY(DUWJWq|;nGe(򙫛,WR^Wjw˷x>ksvGTk;nb֫NQ:ȘW> > *9$$̾WZc;mwKj^4c,GټNl2 E@L6TNQ^Hѫ6i> ȏrPz\j[W#z<ֵ :t^T}OPӫY`8CZlCW̌27 CV\Eg-!_~itK>/٨zH.$.&ַobr7Pm(-3Ɂʾ.LiEDӍ"[8;/z*ƭǓ(L4t>GoZ`(>tg`=$?r5qM?!x3EZSwR$ sC¼,{ɪ,8\5iF;RXb/عb&|XTt]静 r}^r>ZTj2^Ic|"͡l7lL ¸N"jW]Ta>NK[W)T'\ l2Mkq{e^궗UW}rz[6r?2"}a`J)}3G3;&vb.X1g1`e-glC Q{TW*r 3yF̾L#W>z )nM+84qo|6qt}7@sS#$^rW9K۔l%ީR~X/}3tV=LCk|KԤa呠+X2KM ߟzлjjVJBCLb׮E>_AZKRZC=]>9s7ZObyygTUiH CJIr{硰pB!&g*14樨@(OA< ozUZ" YlXŗCi*dd|ɸЕ9^K->^1淐wMϮP!+"``s Pm (W $3zeCĈ !&Õ7H;1vu\)wG5Q>\v46悆J7K$= }Mgok;.V7|1i~^d04IoOclB.nLR~`Y2=QCV%M3+6Ch*zZ>mxw-s%^UDHG+U=XCV#zŕE^5FCWܩoտ+=`'oҠI,J1Gw U'JS(le/^Q>zwI'cՎ' g#eöjH G/j/{?t[؇4s?s/)J1j &I טx臷>x1"JqftX6 |r`+*m˖ ƒ:MǎnVCO|6eہ> )ȏJқ~M>gHF* @<^dh5A4QV4h.@<҂Lu8͖:|V)`iLٿuv47Z_ŚIF~w͙ 3%cfł7Rh)kuNr@QGї3$zq+Cߎ-iM+]^+(ѣ\6?ܗr 0Æ#$fnf+OP)kq=јtN=s0/s #p}8E.J6=b1ߥBW˞#)=Pѕc]FyNxSuxAMr_LN xyb?cDrG֮eM56( Kz)ib]V׌D_ fy[t|.#{"L=XDc}{KuGWO0W$c~R>y" D%5>5F bm Jq}8C#TlFIbǿh/ǟl1͘^.6O1NUㅲR>坚vɘ Fۦ)&g(9pdH΃cݥ ?˅Z܍ +v-'ΰZ]r}+Mw zG ݽҴ.E`SAӄB\5J?ng{b_4"`3 cUy[<-T~*:_/8r4'c h4jVw o=޶)V.3BO;(q7&^OIؔRbH5.F'R҂[rN.RwpG0(#u܆$"Uz%tC%{ JԃNTRx2nq^=b'a洬j v5wTb ~!2?'frUcGYTJqJ `_W?09k IMt5d#{k$u GNl,Z %l ]zdqt+xB9ٌǰ.⭱'h8]j~_@F(*D2-8{ Ý8Fck5MyۺD]yA_Dj\s3!㦔 brm_`9MI"-|ٟfg uUqӶ6r2~t/(?0'-NWP93TV"%vnOFkhF9wcUq?,"ݙ?شhC)#4=θ$o9:G tS Z%`*(2F6wOmRMTQ+{lUٻy^ I1`' )]Jb*Ыgyۆ3>ƞW^u!w] 3f>O;5<[Y>;NS5@FkDtD ҎhaI nי^uz$qXAX(Hjtu/U@YZ2Wxt|lGUY {MGGXLa:h9*1LN @trqOܡ|\:2nw,2NU]o>! a]fj;ݣD-o@W=H˩āCZabd#G¡y.En&uVKᴋ[YS/6S|: o+=IQJP{ZVʕ*sFPl%!~=Z *Fz}W$lΘ^!\ҥ⺭`[(0WBV29x匡kBO 0D?Ft`ۥl♺njQռS:!hK?ݖGeV+7NFfLj2L4 JS1<ɑV6qjjjŢi;`m9EGP ޿93u*ҖKZAUX= :-I8Q8E=nZb{!i.Rwb#ykG6sM{nS\-!)'+咨Z<#XC}N\^t E&i5Ňqn%;j6 Sn'Ф_OgR:9n)1_M(9War"4enfX)0ߛT-ڰM4+$IJ-}$%FuY ~K/[ "w?AB\kP;oL(O>J@tsAu%5WҲz] /m\Zj28&oӧ^}W#7 W!q&-kH1q9ilWNW묶htrǗJ$ttCMr'_$lp21^C2p^j ,,$}`pM']D1mOi;Ê&E&)V{d')<­ ~{U2+4g_Շl18)Fk>XёîK'z>dgTJTkc F-K¹[rpd g|I®]3h>]#X^UsB}2L E:^iVuGab:6 Y{eJٚRx76f!?WY糑^2*$(0`}S!ɯKH=ie0=؜᥂ d;E](3^ Yb qӂ.nhO?;+J:D!TXC,W+?ShaozMZk2EY_䄠~sz=< yȸ"_jB1ʣԾP\Vf!I8)1bQ_UIa515GWT`Y}Qap]o0C l!=aɞv``ƪ7B즷vy'ҪoumYnحV+S:+4ߘGq>csZػtb{U$+ܨ!TXQBٖY>RjS6jMvC_[ =J.ݎ1&HtU8-s*Q]׮$iu#eL: 0 iwȟ}5T}T,`}IA* 2V3|?mmSù{8[fQ"'NkW7ʍ?^jV+{^>F |efU;jͮI*qIňBl^umt<0iD6as"h-8𦾡Wr}߮0w3Խ#!4rQ~DVT/EF0mk)?xt,EfFI[_QGtjFal=W(>J /ƷZ*b *6Z55f|*WXn_*SRt:DjK gܴcpuVҬQyW30˲cw_4C_u880sW %d 3RKfzoG7AۙT̕%D4C#= )]SA`R >l킫Uv71H舁#=Vձ3 ,~BX)t~{HY2SuzUqBvHjRj^bere|ak,j3tϯ^j&MÙh0/WޒlH/*":*J$6N7` ! <@ 5hy*J1Mvs"*ՇLc&Qg -|/ܘ0C:.0,baX. ' wNl>W5WݍaXi9Rū(w6W٠n>dW1a ka4! !7( 7c?]&Aʎ%NkpFBp#Xm<@3jPf-)j -kAfs. ]ɋl\*Qv9,<T#r'|ES Hњ0Fo~^>yz@s(y 9ˋzt :?V2;l[P}TCm$w`4S 1Ra:hb*[۹C&zUȍLAQAĶvG?f ez%jUT\ѼL^]rvj<\ [McB-"jbga.y W(,~Pe4xOK+ף(x]v`smK@Wۗ<+.)eM*J}&#?Z!y}Ѡ6ݺeXdI\=s2 &aX/)h,P/b69Du $,-AԹwun[r8N@6ȃp*6N{(iY0ϡ3Tl?%"s v1PF?7fU3ckS goi^aG7L&Gcv3(PE0W9,]:<kK/ѫQrFq5Ƨ=8k~7YN(J]e2Q4(X:YҮF/qa tX"ZJ ȱd{& *'_NzU-Ls>(kʅM& X6 m/˜G6}gί {Ƈ83ŭIateEJܹ ENU'?n"f댪%0Hۍ˴~N< 05)Ń{Ei_[cX u50]I*l>;-_~X{Y SjBzѓ|wC W-/9 uas*sm=!܂1a WwM_ _d\#sw36*zB4@ڡ jyіh3JLo=4bl'N҅z^W_8UOҽFO Z״ЛO}TX$3jDT^~;UL MG޷E<]GT[9a.Qb*xT4t ,0"CSWv-\djW?_Yp>RI{;wMiψfPXO MUYv0GJ /4lէ)&Ыv,'WWcB@Ӻ_Ş(T߻x ui&ӳvlK$zj1%V5pnj` D6ԩ;2M {ͥ Rߝ2mƈZ7m ﴓL4tKrE4Qɍ~3ha}$K6 HͿ#15 |]GWgC TGZBK>|Y;cgW-cY޲pvK&riz6&BYk=our9&,7 7"!&TL̤U@ٮ;;*ҀZDX31R^S\ 9uקNkb Q$ LG!5F) {XyV^_qW}In'HC#\S(†C9y2Yd$zux˱G;(;21'qnIfśiTMV|m0r K@U!JC <mG31]cfgӯwmJӆtjI:jNTM=r>N WszH0_z%g|#^4\ 뀢{5MgXΓElGW"KA οmt4zAC ž2>suI6O}H!L%])L^^FWBqŞgj&A_֬9!3σզ{ 1zԃ/Ii1hsn$rV#5ŢEԩ|"(ceP{X\ЪWLe^h< aJ v{ewN$h D^(mn(?wf0@SX͟$͏' A,YL*y5wYJG#펯]eca^U.f@V%+HM!4P,0:NjL2ቁ@}j8C{8lMƎ'J^(~s G:f?L70H } v6E눮/|3<;3|/B) i'Vω `aU0I ظ +d,(Os@G?^X/ƻH3tk2)·Q ENAoa` WL;jfyRӰvsʀxs@նW*}UʒbM-%-1:3ݦ][5_J㷎ub:7Y'D%oR>E1( sbQRzrN8( nǰ R Ț Taj[S ,/SzڐC2p}up5ivPø.]φ{} V*7ta@vg@:H.Cb 1y`<:Vԭ}=?/шcLݠq$i397m?$^!PL`o>%Jn }WH YB4VL^!G9.BTk94%oY:YEQXO@gd3_aV[hdO16C^-~6-AfP2?bXrxչsph9xCRRx,x#F}\ALcbFnb*,vK$pO+Z]ٯпs/{P^xUJ=гY>Zd8@6_c5{ҫA%X&r۬1*镗ߢjdԾH߿?05J84}Rw04l:Qs𪿱$`MreiWr;< 0#iJb NPԄ́^)!*"(.5A ꟑ4V|^4-nДqXGX zx|2(2j:0S3:Qb }q9O<\QBQäLL6bL0BS'ysˠA "Q0* ~&b1yς2ZJ{eukMxhUZI+A: m 4&9CU(1P`L] L܏캚}Ix{&0O#݋c6ْ~[L$iȧ PY*.`6K ;"$&TNw#]Q{xsÅ7U v7'.d~30~~-c Kp5v Kj8ubɳes ;1Xu0PJ4^39|R{\,?zW=HQ > '2+zy2yd@מڷd`<5W?VT?W%vF>pS."m=O gԢ#zU(:ے' |Fr!l@W~QN}AG$H B-7~}јCfA#yֲw Ź@by$jE^̀rK }tKNz}T;?,'T,Hbc =O2 %OuG`I rS@/ 5Y#vxb,*w%|bBϠ$XD%@ux"wo-!*w;/mcdNsHc(P@޵3 ~cJMV@l2hS(O^LS $O"9 im07͓TAY:1^}Ka. '~$u  ZiN6^ MJ|AתWCCA4`[[d'`!8) -=Gu!W((D]h× gmԭZօWU`DR?6lHʱN2㣥3WU[WnmyR07h?r)byP` T5`z\b̊,o 0/oukvE}?ZX"!9*] c%+r,#h\#S)a!0'o%â tBB UZX|Rʑv֎)(*GssS'H%|f w\v-j^6bߠ67j])B36 Xl1-Cw[8^w궋X[H,dПwa ~^ ĵĜ`@LA{j3h K'<]$س!č0kENhv{j[".@&HZ> AvzT/9V!ƻ8y_;#'#m&0 x;bxE)T(VL8Us+X̱%t噽 )v4pU!WIl1" 'oxEJ[Qxu>!V=+tF"dF?=y5 .(G/hol9`*ҫwMMD*M08SZ'|{Ŭ "1VML#WKr 4% Ԋcτv#:B)2&\x-,@4]Yn7N[` [vA E\~6ÊCefE/q䴮0JrqG8]'^)/NU&ҫ :2-hd↙O1zWaKmg҂D.'?;tggMt#SCg`wZ}QPMѱ?͑C!2~9ӂh诔$5t4)8w%!d S5mp %_tYq7j*S M=D6+{'Hy-֟Sb93RGcJNJ$ʸd$Gt YѫrQ,T+L!\2."D_zť%B7R#(QѸXMdFF,6zkMVM6?j$>Ui L5q_U9c(pPqFT%XbN(*}ٍۜӆ*g*?iy&dnrud rV~j>pyԊb7 .noD0]2!a3pEkRfL3.%s ~ u$wnۍ: SZHTZ|#&č\i^6^?^;m®o 8~8 "~ZJ9mX?0LQ}T7#PͨsDz5V,#sb I\I [ (: dոP Db_rM^lHidYȮwiEex" A1%>g}!&k% hBʕWo?Gf* 9,̭=_XFa;x2+ C{PFm@P m0ɤoʷ [SX@'Q &E\pϳHLAtz.R4m,3rk8眽P,# YY;|M*n W0:Ȟo(FxeEWQt_+ΨPP/Cy1 "ATLwrvρrRBQ'7n]<]p pg-Ո}ŲJDC<DRxp$1$E) ^_]8.c-Ƣ房h-ĀnDqW&XDyg}Iicr1$Ԡ}i եV^U..)[,[;+Ŝۭs :B{(]z=$'{AGUuٽCMfXYlL˝3 11>j|><韊-Q-n/}a6+byn(~8)[LޙkJb.`p26D !&l(. L G=}TZ xtgB:=x(j)4DJJց-TmnN ?S-Os +z5xFZ/P|GPM,4Zߪ>yz'LʏA;؎Oggd-x4QLq7}p݀6IM8̳Y#zpp)3{oE܁&=%2XşTH<қ534Ԝ$ |jmA5T _[k[5CSXZ}JȊ12y?E2lL۵qkGj-%@C`8zyF e4,x+lk}}[}[)6m6;m|7U4=jdƄ|΃qe){S~~.1p"D)Jf]:g8,NE6ba8%6%\Sx} JW\,107$ ,r=AGݼj^N¼tN*.E}^ ([6~٘iUuyu3ڕ 6 #z^K$ :^XdkcuN|oA2*@0ْf[24JEcZIxsEŖK<[Z߻› ƓQN4[z) ط ҼB׃wBtJUU*c{[WU)3G7: ګ/3z+phF_`}k]^a,˷ /|I%M^YhE Px|4t6L1LX mxZJ,NlԃLWK/uc(U+Cg^w-6-vzRQV@BGdX=5,JT3 H:kտZ^cnH^G2PYsG*'6Mh3SS#Ek9x'$iZeSǝ[1*6jUsptnPvaW\f\0Lq­E)]W0mQm2B*wY  ԱA«*hM?41Si^Y/kYO[ԱFplpyjKB(w;&\BJqSOU'fByV%O)Vmp%Q **Ȱ*65qAX} [sYCfWS'zsL: zlmk6};!`3{ɻ=+/cuVjuQT!+eo(vUU|EvQ4:QGڂx['9b[4]NvI$eD<^ܲ &-y'^Uv˛+n]W*DŽ$m 0?:B;dUC4[Mf6 JLP+RV&jY42aYz>K5wi܍)?rۍWw&f͢V@H%2#Rnm8'p$:0,CQWzCMN5V7.D:`]DXR>/W3C, >Sm8xmҷ[z/*F1VH9{9;~I=>yL1ZSRP&Þy{z4eQ+xyjE:oM`ȭO>@~\wg^Wr%:0妇2$15}N:àa:غs~x # AxE9< de+hJ8^WdNt]Cd V֨(9SV|&ZLg 7-;(e/nH&Щ2wYKnֹqvG?k`hI rYQWEBºg10&N`<4vta v8\lf7{xN!ќU1'e=u '~̮<ɡ~U2|]a=Lxl~NtE>˨f۞7kLgOQ{l;֤U*P;/ B H泱uō pA8W=3pKV ._qXZWyIH74Z 򽊮sSAYL=4i<_?i%2KT;x+q/qT@]Q 2g9-]/LE}c.V CxdVNK"2gSH澭Q{C\ o%dV%`D]B4#qY Z_$V><|$XU?}"gmt.6!yrRt@O f=bJ[gxxR.$n`?NoyT;l#ZqOdsB%!*~bS1'$TWp~M]׸6V &LRƱO~) (*"iRrQH20+,8}KoLAl9L+gG?o#`[x/j-qK辒'ꓷ^ r޸ާhBU}'$=\AE7uL18r!̬NgSnƃKy=# OecWCfCy:u>Y6߫fI2QivNy1`,K  'M+gܝ̹,9Y0|ed煑\\X7&% sMhLfpȹv_,ܞ-w ;C'/D_%8OmHjSD-8Pt$&:}oz',  %Sc%뵦AesTA͡ 5_z-n*넖zoNQঠX))\# ~d!+ ׫2{ 0h'{k&bƛ ]/y+7mEq'{\X9C굗S gJw+e]N *Zh̓IqV .YQUT,4E:jdG,=f=\8KS~^0+obz.n 8DyUx[W5h ;҄^Ik鵑-AԬlƉhEpP-wDgIG34g@#(́-,8yU(fBДnyCdݘٜomB$+VS0nG ,OrpMHߑa  ] I`7:`@BW;Ua!poY]dQ]7|#VR-iٿѫ52gLԎ-Dvr?rxO;G}fY!qf2bXrD2 @rmh ;x}s!)y_-bDSFr\{v%+<,"<F<RX\#mqI`[rNa@K{msԏA^E̥г?K ?ZaDsձ)G= &n뼈.<`"[$PG2U0sӣ7H_]#B vhE|>hcI!;4KZ5=YGcUM1I\~ n:R7pnnzL0XK;zu0T2tþ!ቴ6n˥Z`OL5RK|UߵTm]*oedQxt #hM46Qb㧄PL@.C ) ޥ ӦtX#j kZ4f9X,d?CV~E[Z\.S=NA)Z~oN4mL/i@ȩ?V"LT29?/$ ̈́} u{7PmZL7[!xAmr_+zdV~*~pR|'V\Hq\3,~%v (PA0Zİr1"U}ikU\#LP΋re=:83u 8ĝH)_+ɵGs壯3&Y/|g(ŸGPNoX0P!p @ˍ@9T#'LY_GyPb(IPߴ *VP.Otnj~W]%mefj[ԕ22ŰW/D0[fI9 Ol~OѮ!V _^QDY~emOܮNJKx K!|PXև~vMC hl(=Jey 7Q6dp󩪐]KI* ~\>/nT~Wm+YmCG(7wK֝p*\sZi$-..wܻΊW]Pw?+q=G~$ٻ5XBcJ] L*T9m$2(b4cD Z[RW %VI:@%?6u]}WT睖 )Py=Jzgܽ_Nr<ȿW`\[Av3/?~*vȗT*ʊLa 2a8Χ侁8@N#R\'HL_# f/e#"DRm&[2iV+Hnu7w--mCo$<~<%Oa|iJc k;(HFñ4')/{ uSnClPK iGe,E~w3]3Utm_!b(B}V6_Cc/0q/w`GEgEg>Za-l-A>%KHߐ VxlgR?-X x 7v6dAv2$N_T˹$MY JOLlD9Qkid:{c:LHt6ϋ!E”Ϟݎ#G{Ďg0ѡ=m1?sknbr4Wm&x=iit;O5yDΜ^ِ-,2--2l'ڽ1~ 6$lLJyjcȌ:9: Q%'fU aexZeV7 >Rh*)D`|PMf> +eVѕkx O AQUߜ}@h \ G dT"i,>ӶBVOx)/q/Ԉ'UL)ꌱ˜r׎T~5- \Uv9(tW#Z{xO@׷Qw+*X::4 ҥyESU<~W#XZI䷴6lM|%g1˽ 2Mz?hf5_  !jR Rۘ JQ?(vH38TLp*t he(䯰]Z -R0wQ1PXϕh1Ks8cx-ANJThG;hߧSV`X|msW>i94Y`Q ;6Oq{,c.ZV ~.fl~R}j+?k1۠X ѣL4*6\\!cc>i?þo"=TfV9~*5k޲*c&SM\bXoiS,}prbpk\)k[bXGOLypюqA)|c\㰇<Nr&1}N]%rgѶ,f R{FxFj oH3!fTz s-2/xzU8Miúzzbžh;jK B @ǡLfo«h[-:JRKȦч9گCT1&YU}5 ]%7x4ny8;}UIxɰuPi5'Mcxw Ci]DF2ӫ6R WBb7EPedJIZ,b4p8 }ϔ}׼C[%rwxT_cOt0p/y}q75.ӭiAAapZ.E"XB#C^iWccPoQwog;)B2X#GIzXMj(]2X:>8Уph7 ]}^U9:w S6Q4Ry<9ťJ*!'DaWFğ7;ff gA_raP+w㗋 =ɢ{ 'J;քguk :c,G~S(>h[}|~IVb,Ic^f.8!L.eS]S fe9r $lVhc .+VJFY0( p9G:yRu%nr˸2) W?$=NWh`XEjCt((, hAX[_x'lOuN/&QŦrj)":q=6خkeu皅iMNNGPO9('  YE cZB-\Ҡ;d -ZIbC)2Q8{HGW[amalf$1׺o SN:EcGnnSGecB4*|z gI"G02>l9__iÀaUEuZ ɇR4ie}< vW>ʞk2{~Ye4Ud>Ҵe TGF <_:a cQ;5W^k#,V$0~z]uh <xO):i H +ԋNcIozѭ!36e2T=fStu~󢊬ٌ :h EDNqyaE5dcjQkz(ɬs>|o7c*> /'sI$5`_,W Ogd@5Vm};c,+|9%`"R޵vK,>)'E)uvRUAYs (%ٷ-QQC}RR }NLn-q`h;ֲ] ۾~( ^:1>nqJrdG2 0ct;Ɖb^vrÏMfD쬘9Lu^Ԙ5gjXʯ«v`F mrIMδ ^CY@*̟bHD;u#p>Rt]1Eu.J!If .'8OUz:Xk l(hz\i{o!zrtRH;;`),3cҫҫ* =1tyh#HxK}LKi Ƥy\dqLG3^ř @f),1͔ScKEߢ+CӷhMkUر`Τrq \(6U:XhG` "z]nj K|6>/Ie^)F'đEvWFat[d;U,tC6v(xgA9{̕J%%*c1.Yۜ{kVxlx%L:@Iz"k%Jc=Aб㯖j,ӡcBVV|s=Jc]~v{{y i+Z҂ju իO7hwe ?&#j#7dCK#0Wj߲W>a~V2dK]=1ÇFmw_9_%]z@.Szʠ?&w5J~Y#pcD܈=Aj*@ie sy$:b(dpatd7eЊ^G6 'jbpXe :xn>4O.(#VbnUmqǵ+VM+6焗Ru)y*˯RSG%>j XD[$zjJ~u>N{Ű Ms ^h\u#էWǿAf.(.d JNh#w'-D/ >!'o}&+Aދ'ڥul1ʯߓ<$4j!Hj֪ Xt++'ϪfHl Tr WhȢZlF{~rs{FRq uJj % rʛ2eG8?%R%vBWqdBUyh5 +LMC&0_Ek<-jVy=oܶ,rJo jZ)U7hWӀrV-3,!nR?0/N cc?,v4I/Ѕkߎoƫ7性W=+d)'Ѧ%e&7zf'FBW y!G5ͨ\V}G,IVQ j(4oo\%!Xew2.4ʊVūrz5@42W p›ԦK}7ϵ9CFN(k8 kϚ--ʼj-+%Q̂J:K4Mgui۾I{ģbôVn*%`bJxo': |?%␆aP/: vĦ9O^a wEWkA0Y߇Kj1Ƈ%edC|净_7fj~zXQP?B9OtqkR,rD.&QW z f-NN:_XiH4'6~ -3p<*A)V{Pދ3(3zP=6)bh7pbFMjj0' Y~Mj]O/w Ӟ{l^(-+ScrŸ[6^zRUQ%l3NdvTD(U)*rwܭgvmL9Y|R`,LI3Zύ ~/u0a_~yTQv8:ֽy1v8Zsp*^NbBڝ`]_1[i,&͠ClX^0 `oŪF,@*{6׈~RUrƤrIxa*L|\Qv t5h{ HYc+׌^a6(  Ѝjt%x9ӓrxdgp7 VQu 4Z6ʇCC:R.?*qs9a=!D@dX)QSǫ@mr֟MVˍs '*;8%PI02d.JA|y&_+P5J_Zx&MRWo®\ d΅VlQ{$09'H:#̴ܿ]Pp~׶C{M N!$c˘+)xVԋlEt!s623Uܖ VYS68~ _Y5 R5iMm.N{3D{IzWgnPAia^M<x77ktX UTPJ*SK: E;5ɁnW?V80 Bc]Lф|* :yːA}vҭ b ExT'IXWUS%IiGo6]ACjvhV_ˁ?&6E#A3.|l5h9ɗ0t[=_?zQK8-h!qyAb(]=J}v[4 Kx{CϝDvTX{9Vpb\'ޝ%U tXKP/Z{u0l/ҵ`_~Le6w@\~_L T_!'؈ŀX+lcXBn R~h)]5܋oGas,bc֯sQ!a _,6tK0wl9=( N*i8wѠDGΏqœ6 jrۊD0&9Վ>ªЅ8DCiju*>Ucj*Ŕo?No0 ,>T1_t&(%ZL{0fއ{ip=/6r^I'by{P:]W~˛ѓ[(6ng#Xrk!}2*N,ʭd5d`X" LI ?G!:]s~h*IZXO!Yws Jslkl+:qIX:%/W  :[,ֲȯԵFs eWR~ub4g9 _5pPN$M4;@Irn#o'#BI۩M 28E$`I_#ug96na,P՝{l>GWI,_ i ;nunmcQK)qo*s; Ҩq&`=*PG+2h`.vA ՚,eG -,0b@h~4[aW ţmkzw$\5褩]}_eЙAM-Jn[נЄX<7}&rP vzDHFwԲ,M1TKc,Ȗ҆eU /&Uˉo_y\grTeoL+%ˍ^¾ϙY!¯j|3)lTc/k 1$˜Oai\79격g,Z3_9fAq hngX3""6UWE]O"%jX5B=uHy~6Ě#f$q1ᷛ 51uh]Uti}+)t,C|>v}樵#`uWVCJ*\Ԯ~47;6M.9tsx. '2zՆSVFʾf*T7R m:Jc?w+ϋM_CGZ)7g]^ySS%`m,Ro!*J&)bmsN?akzJ*%6G;p!wi~e쎡pX95) z У*25sHIO&)XւЂq_*콽o*q|;LLj,\uvKʌK77:c%%FODJ K)6,6 zW{k(^NI?nM0 ?{BVBeP#/W{~%< ϐkc3\i=@,źi 83}:!}ʵ?\b@UfXp"WGމ]',umes+sZl0ߍSidr~ӝGku/<͈.-e}}y2O"EЬL +5W^9IeBZw2? tdȵ#8j3!>W@*,yx髇'EuT+cgi|])M,FW4́^ YЊQwyL pCNoWYl:au|x\,/*~ڍ +m-cZ}'w) KɾF$Hv%YMx0;힅8_Ea3,ËˋFul~1#%nheI{LcT9-HRLAPV_\2<EPnT=£^Y|bc>):uGn%^.@ Y ጒ_QׄHrrKRa:ǨJ_jԀ4(KZu&T>>ߊT=Yѫai0*1%Q1ljиx:pZ0@!vɮeuۿAPtB~T)c ~EE-@VnWYCB{5Q<(8/]K#UR!QWpiw3 ;-'"CcOp"hgÿ~eσʾ MUa$>CC[߿`aZj/A?\GPf{>?x %ss3θDNj럞_&NEXO\MI_aDޜȡ+٨}"Y4|7w2G]0[U7튎jA/]8FV}\x1|LC>c4v7@;]EkD;S9ڐtڝSJ!~#oIM%[ɤ3_*#˙$[/R\AWt7% H\gT^gQ4d[yYL߃@ޖa7f+;@f\9:#I]θפ\Tא'+炁wUǰw|QX 1zyTԡ[2JsDsHxFD)}8O=Cc^ջ^ j{cTCS!i4Ξ0[S&i_1&jJs+SQ.A6?Ajѫ?LJCVj!}* jC/ř3#TM$rkaYN%Y0ܓ kMȴ"Qg>y+ f^xޣ{oG)pe훈,8 )&yzB1(#a-}YUOނ!C{Tg/2˹D,Ѽ8g> Gw\_rXK uUU4N\x7x̿{䚙3S,M|rx52.y^W!z9nz|n/ထAG6JKz ˝r tiAQVHx\nw|paM,1 J!a `+{PicWM̪-+Aφp欀ú)I;vz&">)| d(!C j;a6DPD 10we$Yל9c|ϋ`k@-0YYu? ]#YKE_p l@%tEߦ)Ir.YQx˿*fiwlW\ƻ2`;i!_j, __~aʖS>-5']ޗ|d֧LTmq鮶8cgYUl4P>MaD7~$j9B2d<ѽ>b~qI(c@eO kq4䟧z%>+tjo&Q 1=%zɍlАN5ߩUf0GJ]c5E͉ƶ~Ev/U%S>e]ŁڃA?w՝l:<e^NgYtqKY/<ߨK˒J2ǚࢂu}5$x g3I8KC{ӧZ@919Vj\]6S#8 d=4˃jb|zpy.L,b~xn ~]^^&ra*#ZdGEY6 ] ;]&~M[ʖPs|?0E22HM:@{gLܮS8l$ب /WQȚG '?:xN.:N#t a&e)kfLdM,TAyML9`R!*O;+ek5]xr~hp`RDn<< DtW[]>"۽"VWCYb{:|g 3ըlILǙpUoa1{KӇ(E֠_`Օ2%Y+HBTfB$ohQӲ4z弘&S^Qzpg=<ŅR 7<\Vr]%YTb^E p;P`ϟ8SW@a Cjp,"i[D,:`t@8OǾd<)'zxutĈ_CՇ]6{Z9c&i3WSx5p.mn'L$k N] [njHhʅFB"Y-.+cL{A}N myWW6#s1xI/Z!Άy ~_6x;xǩFqt IGobz`;|1|e/_hMWEB* iy\CK-rQ[F fj{"<.mZ.ELTEs.*Bv7C౷_#?Z^QPs5g`jmqZ[Ō'Nwg/u{q-QvLzb,w&y$#DV.(:GU4^ZB}RU/̭rPB h ؜.+(Vi:: 4Ŝ`tFC#n+ege4T3X:S[) 6rYS_Iع8KUGDlXe|@v5q!uyCV '^=`á4mI>mL9uxF'\< n' <ژ+-^!+0/1 DV:[IX7F?LOn"CzK`ϙFnc*ɪjѬZA?Pa\ja|1+O +fyM/֤VaA`ZIݚ,k^-䵵:]Nu?^ΎT/j(Y sWQTxy3eׅ wh\('F#C|b\n ͕ ЊmOPjoOXWzvY jz6%0QXm9Ţ jc9#n``Y{}6S:ɖS~s؂#&+1@pr B0Q}hh0G2qRżz,}WѫiP@(v+p=h@ih*GgΦșMKߑвS/MS,1Ө>UnFYG 1Yms9W;:>tYO~1 h&;GfZ~E|U"e! ܑj:Xp2up g0iJ=tPraF'x 19ok(+Rm0K #j jm =_CDYq YE5\kf+*Y)Ih^cFImIFXԣP*ymES틄e%@9~bbaUD4 _+ tJID0SKTDʅ:*eqTEp;4އes8ޮZ P*h&!nC|a ;*N)yN\:ؤ<́:ׁ=cRMR,D7c2V[We0)⛵/{+qaL+^bɘw*ʯ _}E..ֻQZkrȐ3oDY<Ϋ)Fky-] Qaz_ VD ě&]8P?-W?KT[MS)9DR?`*}?2kv Tx8WNI|)U >6j|"P۶!O۩gX|O *]pٮɳbj܏%X} )fY jg&}t.8ߥZuM5V5BHIEl.jVX+{a]Zar=[b#6x;,5?L3(tʊDG'YwCVFӉ!%y`IIA =22,Ch/C1W aۡ!y5RX;5w<:oLN;q'k>E?$sbvPԁMa݁PFbyKG VH~dOvš8쥥 6XRJ~" O%rvi8\XM:$#ISɼt^MJ-*)w9z44=~X>A %q# vDĂ:5@yݦspEE F Vx0LFՏB%I Pu܅mҋeG,z,"?Kzozt6!B;=?DWb>&]IPEDv9"{[ H2j}vm7Ey~U!$LłW_ GOݸTO `jMul6dÅʬU,e;M"l_ˇLmnq`K/ Z7VS 5ΉjA^UF㙊tƏl,7e&|_VcWׄ$鮣,]~ɋ@OXj%'7FL.|d$Kg)."(|^y4)ihҏZf"$W.\&WsV槱Ѡ'{; A橐h6#Ek˧DuXӪS#?OsvJ5&uSNΣlk DGF(\4RkeO p3)ش h.-҃lIdݹQIHu6Q|ZZb^'ڙ!/if;YRjڈ%bpZ@4Z, Dsx^\k"8|ˈa$_XzjQlɏA҈bn6[d&AH0z'9U6V[q;rd;ܙn J~T ]J|X{J;Яn~ۼ!var!3 NzJ͇NʱSpHc5K|"{K|H{uT|\]M}$fIJ*᱄=$ ¨lщ]8 0g7g~?9Ndž.K ; { ;zeCC pVY~yѼ~b.u"ftnrʆhn[ypM4pDX X_yC/{-"F~9$ Ϡ+TZa?Xc̗Q!vstM8(A*JBzeUfW$*$˯&xV4•@4Zldct+ LG0js^^]1v'Z"{?>v@.bF~vCeh YA$bs"*RɅN cfEQ] }:V!M/Y,E6Ze>ҬN}͈2ԌNBqӘܪ@okZOV-`*رGLj`̻Gǭ>8@4_%c ׭E tmBl?xPx-!/nxBqݠrcE`2=&I>͏mC|N!:}Z܎>8؋,8aoIL 9RM♠pd _p.GŘ帇IYţz+c3bJV7Et~CFk J< 5#cߊE3knAR'7!sfXz630%ɵe{(NipE*TKj,B (Ah$(1j R!E`A_U>ǭ y "/yeNRkG$ +C[߽Gf$¦/c.ZGϭl`Srgh>7 )IyKWh~ [hK]С+$yuCWLLURy< Mfw{tAPn;[YSm4 OVeX8oi?/)ecrbEfɗ ZѼFp <?֛@Sa&@Glmum98ٖ!*YYNVS5s$ Z'Sw$?iqų⪆¯)er.HP}Hw}S,Z![]$8MZJ lO/'+E]10GEz?=eY}?8Obܑ;n{8kA)F_^Arfn[e޸|(mQlޘPkg Pu,0CR\_vec6bnE>&)kSmATC{>{lS Uq =9e;l\Lҭ%ZT@u嗤)Vks;{# e^3;gen Y.0C+SXX?Gaeɉ)l-DQI`d#m˖]Bݔ@oPNUmtL:&钁qXdQ)L?XE~&8Qy'V5j\`'6w~,]\"LDG0"oy| v9 `g )әD{h{Åʗuxj[u|Sƚ f_ïE,?,-iw`#[.1u§\H)߫\8X8b1-`͖E0&f78kI`?U Q-s܆|f5쏗Ke| 03`N])5oo48q>2ΟO},@Of\ Ӡ/`;hX+RUcF|udX*l E:9W"uT)r pvػB_'.n"?x;`.%ȪaN&k q817Vv"*;VXH ,4uJo(^Pٓ68㢙8[v֠5]$vf5yWz|-:@8EfgS#f{q-hWoC7~bFQTjLʤ u63c}49{B-x48v@>XVa/۞t&U9ZI<2(q+Cf8MAT Sﮞ.RafUNB >GW;*(;)/TأB@܅5Gb ](1mv6R[wIs@n4^oW<2N3z> G# cqף:lr3 V^M_^v:.%Pk ތggIW\A_96ʼnlܲ^|35 V;疬hn Qx;%JY^k R. ZzӢ`%܇oHbb0t͍2= Qyxۗ5\-n?ʅ 2eq 2%t#W?͍(K0&D Woƫq#H Du(!YÛp8UhP p09tc5cn4dnbۡ ܅ZR4(bD'0l0LжHrWM5zg8.DhrTȇlhS7n6ZŒuy3f ]6ƺ_W __Suպu[\SvCGXan%]JT6d6 w`]/gwj8C(G4/osC| . e(L{hiP Z69!x2Dې6 !Mg6LM$Bץ':7:Bq0Zz9ig-Lڭ=ئ:'ƂfWw1ֺʯzC_ȱ1Pv*FvW+)r0" ͵1Qk䵏V5?-ۻhG?3hpJBݾz麜uaýa0d;:i"Qu`Nh85ڷI}}*ʣפ4k.tA L;=6@n”kXu':D gqy^YWiqW?pjHW>OE+5;``.cx+c[խ1eʃjۡչ|+4QbCW+qM1=~?QHr*神vR&@aӼD[ %mӸL uȥU6 Y,;dD(J rQl_-胉,#sJ$u.5dkVZo|}g鰡(\=b+w ]_ՉULn.ZP`=πLV GJWXic<`'sl6*l]@ztf ^I'.춴&A/.\+'gtWMpPK nر58&jv/y ^Nj C,czB,5_uȢYD5VM}li^*KTC2R9[_:빷+{(+J;|XjSC0աfl 4cKeu{q#!&Ql"Vr?ѢѸLz1~1򎕷h1Q&T}v{@P :&$Ĕ'g1FDu$k7!gwuԈv=nJ!@e=X)(Fb&*L(oa}/*ed%Zn=r}^ShEĴd~STN0nlLSm葅[B .W˜U:/ f@N2\Y4su#t+㣂 2†[7[td tRLUx:ȏ+/,ѕFt%v[WZ{GWIM&jյcP"5opVW/E<=Af52IhGMS`X}kv`*Dd9 +P /@ IOy3|I[ ˡ(| 1w{a3BEc܍^ݵ^~lLl S2>OZߟx$Nr_vWy3q9rᒩrIp>agK"L^W0sϺ2_!OHq`֠V(up4$xЕ.vOIF"7η8oh٣ճ&+I=n>94\@͋xo@9\w4;-b<y%^Y=KsR{#&i4"coǬCWGv9p!#J sT j9K1ohC,u:C?1 *ԑT!Nz& ~R!`!?TgJ ow :0* t1S=k@eK*:!Jj`g_5k0p{W'I+Uʩ&=} Gwc:z# caT`̕U0`*+Әo* sUf{*z^-N,K4 K8nW,fkMA*T&o_ +[l%qBMǘ.IHrzýĮE  ı ݯStV"L4z3;-1ݣac(JV+)Fi^B׌qԱVsUH8+zȿw5o\Fmg‹)IA@4EMt0#:1n H7FQZkob[NKC^s*A~Š MҀ+oMF̞H2Ps_(!;Fb&pjxW1hAWYL(=vWD BCENT5#nDT=<=kv&h/g ;B r,T6rk良q_֕LJ<Rt2x.0 \[e(^Ma*FB lU&8S*ZWвҢS)Qz;20fNVh+ QaZYjQuԥbU0TŐ8" C;1cR%W܊؏,k4Z@TAf~SpfI \V /[Vo%KOR\.oâNYlg=ǂh}L#\՛4o: ul+J^ef-) <%t7V= U;e[QDpI<:FVJ6L_JSz-H m O 2X?XJ7^@CL~VUґB9Li|>llPO9F["ڥZ=/@ØqOfMF5tev*q-ڢjF*!fxK|}*^HJGzMʴIeԫ"ȋl.@P/!K ~Q*FAC&uhq}SL @T6B] Yٛ4sE"YJ {2EjHM~˷)V,~DllT,mg`5QA:2L:3ӊ]CvrKqL i=P>{Yp2 9WIkK8amXq`*2Uqi)_!50.;3I;> -Njߝhg4p4qAR(qRA]9I/!`}뚹vF3{Yl<i WB$WQ"N`j_+%0gYD7f=<&+t{b<=+ vN  ?aH/ЯL\]}OJxf(xID] U[je-Ap9J͡-׺v\l+8Pu.NMy'6I,9ڤCS,]]-Hm֪l- cmhZ0hl49no ɲ2h>O)X{:I::, OʹsaPؾC2$C0VG%+  !obOO2<7'q߹Wrqh;#2t[>^U1^M7_ {a2;_-ZCj0\p2WO~k |&0蕓}zWا#/SQֈJBÌ_o[hz-M EF/Mlw4B;2q-"e*F Qjď5@dnB)%2$(dϵBԸrܳ5A 8aH ӯbH5];F|VhX,y|(?;ɒ6chШ2U4,7!E=%Z-$*TlG(C%*A-g^;$JqD&HXE#_PWG @riw<\^hU:G*JMD oljZ+Ѿ^{!jgSD2._o,LЦ_uF5G̭?tn$UCs1QGdј|բ,emdfzژ$N̽$/a%#ZmQL&⭜S#8_xdc}0j@hg-F)K_1X>r!.]=݆ޤ[F}ЉiLy4uDT(>we`ᴕc vӗ{fPd4eRL2ͫe`u8=eVɤ35ylCWm:潙/*MLl˕CwƍLEߒ4Yг9`"5sjf)Z Zӱt !$#2mNL qס&*rIA,1F\5J qIj եQ)_kuX X(Cuh=whfa;8C@ϘQjqE[k-xtL[a2ђ/[0 f dzf+\\`F/ŹT Au&HBjsɓ7s% Mt1EEƁ8z _\&8Η Hyj1nM)9kI%7x2"b2pc.@֜bSx&ov`_M+dg#Hʌ Qm&SL*cCgLeZαބEvvmQ GV [QgEMbߗZpCx{aª"ڂ,K̚&z½֭5bV1vdfI#""۠Z@#5/b1&KV O圉 zo4S%c4Y7-AhC첅uvHN9|dFd:"~,;MJoML}hU:_G5[)O ׇ@?χMV]N)|Ѝwم[8e赀1{5*l^\N:&h%YCffcNL/Ek>c7 Pu*`:u5c!ee!VjQ-`mA6aHG[0KCW-GO6Fl=g}X 豠FY-܀GQm E~8- urpC_;zOX++kX*wpDʫ\prF{\1U:lFX˙71, N=%֚1(1kfߓCnNzNZ[0Omӓ˼VrkF;n 3Ym0y6^%p8!e E?,6:[Υݡ8Q©(@C o_BU+MR+gk[,UM0WX0*.nDn1V 6W88\C&L%x5{HC!{Nx'GZ4 ޕ ^RWs:E^ 0`1e"b!j[\:nͿAW=q|@hQk[S>GwPbiX1J|aj+_$#pl= ]z-ꨨD0w$l\wvn`=.aU>!j&}`bq+N^[G<}Sd E5 HzRlP(_3bj(*lBWH'ecAc}h#*! sSsOeN;mA^5Z= 4?YϪ4yInzU{ron7s1eg)&h4S}  s=6"guk*|?8`B7+ƤّQ⻬'Tv=+0(JytzFX/^"kI=_e*G̾>YcS6".0o-_­B5ӉA'a݂2U>P.84Z(Bh2y wMi1+[1n'YTzb{L誴"^3[UeHQXsXK(OQm!S]"0y!*cp% oA vVAw/>S† 4 >HGT.q2&eSY$e0 72U)jbc5Yl}ji"DSdw4\l1sOQlTN)hȣAdQD2J:*PN Y'5⟹u]q&ֽDTvd>atkǃvԩBeqp/q¢W̧jNJP~geWP~RL 1K$!y>:FϐmVRzo|M >]m[9 08S szUDUT'+P~@"<kD**+ :x>0춴ò-oץt قI^EYBb}  =eYѪj 4fYӑl?jH7N?hĻ1fB.3aWuP8+ىI)EG4+-7zL䩼D\ݡ5e{qEBM“k(1;v&"X\:?]$NrN$8]zGU~MwuVF_'4O̧4 E]Pl&>z)2pFOr$֙V*ן;^g}&N5>g{ >RcOTDl5]^ 8KGīyc@B _Jnׂd5Q.?O*72'd_zPB6NJ-e{71FvVUCW<@ސ m%%> 00+G& ^phꝊ0(%5 ۊH E5tQ.XRK_ + eʤF!cWӇK Wk Z]fKp!1ܽR3uNByF`<gUd.PHf.M/ -((Ei^eD;hWV̫/J QX˖U"d1in0Vtnmo*6Ԍ Gb3d F tE p+$KJx}OT(Sd7{!MRB>Eͦhort*}HjF`Qy Hь~,xbAPbe]o,&*j58+ ^#O =id^A &lL9G6nPwƴUGj쉊E풙y}Ԓ ig&L%=+B&CV#( #ು,;~nH( y`__t(Y-z̡oqqtoo +P}2,id`f9\7 NT>8;)̬+j*ӽ@0G`iRg^jx-b_,,TdUvD2sA1b> FF}&&Y'ƫ b v6.]@y} quN4[{v7wĽbd񳨿hh|x6ɘ)1 NTRJ7Y!@&"2vNdYG+5eҙ싎o)dyp cJ.f(թyE:% |BWfѵ|ړIcDH lYL-S.4jFBdob$&=n,C1C*Z4CJF. "cCN#_#]|JL>vCϐ=z}sEvEo#j_˿E0*ҡ!!a$~amuI 1#j'*S| :ud؝r񠻢yf_im&N ^6F Y}R YLTIW ̎ Xǩ.TkeЬ1^TQ73$oUVڵؙQ7}xߝ&ġ;4$:j8Hl7̿T}e4Ѧ^1%wrLHjFl簦sz[~|{_]8q]VP5J.%dV0v?WЫ:n%Ƌn-6'ݩv^)T|6UXy$HtPВrd)xKoDӾ>&tK-9D $Yko68<dH- #"Y@T!eƯXښcԠne4>PXj1ՠ蕵kVMYeJ%xDVڤ`W;%",}=z>!.U>/g*N̷<'7f"nrtǨ bX-K-e+ړ0 G[Ͽڽ1=4xԫpE"6HDLNcY8fmXRK<|V0ֈA)!ᷭ%눺o!۠)W~=A(]wcx;e!ʨ.0&"q anRLdE M '!`Uڨ3YHz t(Ӕ s_7 qSiJx_GtHTN_1T݉(Ub6]|S0 _W)A]+[m2[B_QTk1P7Hz6N7FݞJ 83/iU$&ࠬFqEre {-qW.Z Ͱ4LJ`fkI@ +%ZFs4 Fx/@(d%]WpvuΟ+mD]=OMՌS~WΛi:|?yҏnhWSzY]?k(hHzak40*6,E&Đ6qdVWH 𔃔c :3&OH<A|A~/oql$O'Fty*!Ao]]D=~RґCdj/r?LDZnxiXA4ŷZ ]73sW+zuh@oQev:4O~;/ `z,d ='D!Z'uTj%rƣ Q̩ǘtS.;CAlQtqTm&YVE]7[̥_:-CߥQ:o}5X# iH(ʁ(:<6ZI#e[ǏH^9"aKAWlWj#Hiꕝ&Ա ȮJZGJ{4=jyu`DoTf3 ݅% +gC 0r5m 2]e!ȂrcP_al{=E*u9ϰ87e^θS}{ZeēwS`,ȉݧ|b]q >ZcesЭrTV1FθWY;k6lʖ1Zk}H&$Tw26١W.Aމ>nlmHWt&htZ/lK/U "Q vtgd%ҨdBf'$C kj=9z;USLCům5[N1:y~ Kd2E JdG{0!eڈ.B9{mHu>@sfzR &y|4<ś_WܫZGG1) JiNA$:H9qfhOO-hi,(!e\fInN[í6M:vyK>O" B !x cfU,݋׸y>635 Df#W$H.@f)eG &omB+%]#hkF?ヰiO *\ LF\372wID_G/(DuY}su~׈E^-".Q#;offIُstz*(x+(K08g`[Y)M9ү=o_G~r0R/Ϛc#sMwp"ԕQq+=qSilZŽ\Ln䡧l)H/`-]>rJCãg=b?(&dR=D_kL/aNU):g+⅓$}ʤ5jP>#1:D8#ATrD!+< Fwd%UnZaqѪS4TՖw4\/"HaJkk'QpVCKU^hz"OFPT[P-33QW+Xp4Z5. kϽP@t 1[w#f 1~eh 07T>r8]t"}-Ճ:JQƄ(׃M8i\G+8#ӿiTȲK52`½Y{`XnN`b}o}qI8$ fen w/>^Bj2<I3,1Sr+[MH=E"o"|`C0;@(f{~3UThc@E˿q YE!fcmӮ jsCS;IiO%]#C-fi6QUHH:MZ_8 dݹ5j,'>hѯFQ55mCtfU m\E3iT[Yޫ"!iV3=J<%`Пl1Vឝ:JpP QT⇻LeВ2:j2o#&;KU[b3{ɼPC&̶8 Tw喑)J E$gb8"w: ѽ1$AܿigV:&>u u#PM t5Sc ]lzI H|yb5YC& pUx6g$m`LA$Aӑa c}.ZAԊhG_j T|b^2"#uigp8%.v} |^_ёG}dPũ (Lz";ڃx:gT,A( *OcYvԁO Ko_-vdҬs ߹WV릀 < N9L0 Fc%"6|R0~ˬ$RϷj-On"wB{ƄA]M=7Zz/Sf;<{u15ߌD:AXliD<{nNap9Ӣ7v@X FS9j~ZbJo#p|JBYEyjyiy 2U0Zr`{XhwMEq@WP.G#pì4ATKĎ=iAɔ 6z8Be$y|0g>V"cb,-}(L(ϱޱjtzLjY57C f$*^\bxB9eRr]U,$kѺ2f]f v>2CmO-X%ϲSt;\>-:8#~A5Eȃb3v}-t,t@G-74jdF[,ŏar--\t ӵ6s3:ȥY=nI2nkҺD2lCòsb *1ơ!ܲ9p윥6rfb#`bB=02EsR}>>Ы\vS<(w4fxJ0Ç6M%zoy#E'N^OGgt=qzv`wݖH  [t{guK+,&Cmnfw4|qŐ\cܿ5 R{'|HQG*kT}V,74FaOzA5zsW%e͓h:q1>[0_0[^.,TZ(Oն,LoY),@aA|t{jHq>e褣ADߕlί~q0d2wC^ pMs[3hW-YQOE0:` :^RQ~v#jCàW܈oz=2-yl&'AXG$1g\5WeE:) &|~Y %Z "Nƾ,FF\S>mhZ@ʩѫƎ0t95B|_֯H݅S<K9sXQ-4ۣ.Nz+@DnT=e+ t4)hbcČ\ ċgIo í)e 'ŵ fS6V Q+zVSǣ`&➄Ȣc꯴\^\:fWUg0Xy] uC"^-鵂eٍJJ)l֐ +K9[9m?V!m=| FV2!HЦ0taKiB3ܝ; Fvq3h!".* ڑ^E51*lVZ3wavLKy)àЛl1@pڱYY:rgݰz:f v`܅ +?OM]T#vPm0X8EQ߷S9=- i (j)n^Q6Td΢]  ȭH{3rx Sev!ߥE1$Bhnz!/2XH!,+[iVJi-j§(2YRAID!^r-B*3|q53wHhX]u[+^+U/)%ִUU&rX/k56SgbVO݋ly](4MN 9O6vkVb& 4ztcl/p.&ދP!EaXl~h(ν~ʹ¬OG5Mn 3T6Mb>Ny$[)3(Wo(Y.| aaK@t+ 5 jޮW2@m3Dr=J1!OACr6"&Ec*%tqԊ̳gدPϡq ^..D/T`)E+F"Wt{(q+G@??]r 0}7G48p,mVANwA$m`Er{Vz8\\%Ki#a-yCԹiekʌ+9k4WZ3ѫҏҀ,GB直LO0=CBS<FySLS#X Vëjh&,LzDr)0c-2  qƢqhpz?8sEp 8x☇tbR?fR bE'|3%gB&su,n [hٮlݽ,,G|-W.l`9vp3PNG}PW_ У%Ycp-I#m3.90>܎"?jp߻YBdGcg%`v9Z) 1j G0yz(@ ThDW`Pc/?๾B?;=h=&*qc޻AK@)1S=,nu9IȂ" eTHva :2LP >ҹI |!~ژ}OW'6'YJESRHb](S$f\~T~YA}WHZ Ezdq1fS# tu^ᜉAh0tfa l5Va~?@,G=;/0Vj1~qEa,榀i„Qd~ܤV0\"~]Bޟ1E_#4 o4+7xSu ?eMo G~bǥ=%n= 7lŬ2C4<5eW]rh$Dђ*O :Ou(EErZ,FѼLvEױdUH ? N+NWz&6ױ 0nb$F(]O[ӷCu2Nȡmݶwl Q12ۇR44[x_N9[ݓ`19g7L."ʺ~KK)h( rIX6L-y(T Й^}eJUvE2G}g~կ1l KY#F}P|bn ~l?7nCt}W8k3` ;8E6)f&k\',w ;tiXV+=fH x6f.hʐqf2P1OLt ;ѪiWr#_UCoFMUbĻJSȨ4eB1A{* {# Zkv8_"̈́EGRa`2 Ǡ&g>)ss3Kh3Ѥ>%z>EX H(tݮIY);Y & rT6`!~4"Ntj"Y8@7Ыbc 9]} ֢a!dX}XEbSȻs ]I|%>>[ kx*ߧt Z}L*usKHFWɃC]b¬h@+L:+J"6p|i<({mVvF4⫗{ :[:~ Cj?YB0'E,3^0rqw4KiG]XOϣ)Dw 7[pѮ,l)8c~nve&霋 Kit,<0L<,*_F #'gjqz_8;q"qu2XaRsM!L^[ q :@ .]ҪS ^H,+6݄mUΌ3 D d4\ܳ'!E1.,[eA)Z{R29Өϴ Kv冒g?VE_B󉉨ӏж 9WuNhqdͧT_Ǡ,Sf;bTQ@$I6ٸ | ]ŐXkj%lsH1O=fIXD%v?h]ʼspn+$D)>nÜtA2nW&M`]aˁU95JK9bWQ{6gHm3a2z]j}7+U0U ot'yrd0" $ۭLϺIMG} v)-,Y\'ݒnF`FGIzlƺNѫOWiQB-?lh E=4';$Gi 9ʺq #% >zpjJ.LMTSH#i'r+qgwŽPuxRF&^Eֵ0L1XPy @Om}ܮf;r-T~TTl1vZ 0 ۂ<1ލpoޒ}BF(@yHjo0M6T^N }9+pB<S6@D; c=׵?*y2xTϨ}w/[ "\ɠ.υ Ù>LSfFZHG!'wnfC^>uVck.Yah^H[e eH.F8ы8H2*~p9"c2yH/%s P_<_0=iOAx 7{Fqi_jf=ŊE; $l䍤Eӝ`ݓޥ8Ɯ)J cdT*E)ڽy tu4cؕ>_PCr*pXo)R9Gc_GM{~lYj)9~nL}=w %ya!z3G ].6 л.ӈ ؎@mزW~zҚ lVPrW (u'R v/iQ]HX^Vbp:3 ӽVlǪN4Te#u*`ko,弶rE̯`rDL0Q,?QwgnySWD/gU]чtʽԄϴdnY N)qfBЉ!;x.rOerL$539 WN23sjе]4+ȍ[u&Ԓ@hcMyøBxfgV+P.·W]tRIѫcK=Ih:lG^!=-(뿇 w~P3@FW7 Tb94Ht@54,=:du+mwjQ[U+1J \i{nuqebLũ^$v=3{Z!"{E >' -ST YVmA$dE^uDb'懐ZoDcUrSb$p\ZA/汴p% tMO dd]@2}fqWAc˹,#Az 8q_P"]D7Y 3h,)Ws#0'lFO']Jʕ3 KbTj=þΩFֵl]^r55=H\uDd$-~WxϷ_BA:Z%A*5 Vl^S,-*6\WEOmaW >Z?teU}ۤJ`@R6L6~ؕ]m+YlFe5g.O{` * ,"r$'W )3DX$uþ嵒B qw/._I?+ZGZخ@!+P)L`룠$ʑJ++!%)7k݇rĄޢ#q 6A{ !MB<3xq{ R YG*颃_=烙XQ-bh(qΆb6f@q]J:Sct 693vܹs kd9H;OoW_}}NajU0rhH"#HLQ*b2bU6bC ^zCJ-pܕ8t> &'G ђ7!>Q['p’*<ؘPs0iw"g@g\#Q{hx}̌zNGuLaY.\'4$z@dV)nuQ)>uzq i0@z_=Ɂ ^m8;]vՀ(+?{u.Xzdˡn==ˑi%~C}7ڗb'~Am͊Tig|q 5:Z={T`|ԟ/zCT./ZJ'>UW4PGHW\>I:C2Zz6K.N'(4[AsMP~4z^]Ehzs;BkUqY$r2h}aUL9& kZ$5`ea.c%NMe-Lb@'KRbAx,-?"Cػ W {oR#bװ-03DilohEl #@l TV<*2[\K׃3]M{~E,[4Z G-UV 5km!B$ hr3—SAh*AUt~Oܢ$0twZd r(JZ_`?2Ρ:ܷBԎt5ѫ +2^0W@@h'/uQ~  kiJU1eN DVaĮdF04khD&i!NrJrߔ2SPWGIЉ tUqGZ{ E2iSگVA4xڨUޫU N%'r0,+ҋ(FCeD jr{0m:Cn'ʋ#(įvIV.mPjSSDi-3#el%o.J}hK!o>%,¿4<@~Cc4+p˨g`Koz^f`8d~lo#?^!ϵ!,GC#7Yܺp3h!<uqJID92%6+NQNY&ЫbgT.n+n_%wB5D("#'=$@ԵJR}Sm{Ube%(rs*wIPWXKE`Z(b pڗ@@!SN%P%C<rWTX,)͊4p. ujw SAzkQhg0;8>nJNsv˟g@vu]tQ%K ԝ2w+}`2L g:T^~;T'8~yVf<8_頨Β>KdfWOh1Nlo,y^oht\Г{Qwu*UKk-2B}N΀#|/s8iB+>(*:aqPHT)c1li;N-`TOFS" Pۂ;Iv4BWpҙ2wF)ؑ~#.+i6ReeX~rWlp2kl֚DzcX̩_9JQ=<@yK`yHU*8+zҤx`t3r"`yA5&3DA RZU`9{7>^{=U"E0 їojհYkdAg\^JUSra{42zG3MYX#=)Fg&\>PL ҡ.PVF my^Ѿoʇ+@ "b6&8hRf㉥=srQ㶪`ڝkc\{~..攞%/]h?Lts3ڟ%+Yb)'iwfє2qOla/ 3d'0*+O*ljNt78wA W&n:>݆Z>@$,VeIL% CBsHTp͢{YݏܒOkAۑfj$uU! {3tW>[h_](ښyLZ!6MKzҲy;Eߑx9\"L(C> >bͻ]Uàkhq="qg6 k$T]M T6%Pk;9iҽ{!Ѥ@V4* {ZS@/}RAMr(Fs.a)h3~g(&)L=,aN$c<+&)1uhr Qߟ_'auĔuw("gaK:<е7g``AvFi|NW%CʐSȢWcw೹3>qA亮NНC>#4; ގ{J<ߧ%/I.>ٓBMOxOj-ń~QP^:Mm}_.LWA1ѴVee-Z>do(*\lGadل<e<ۍD"5VFn_1ԈB(F^u㠘;n57u6 2fui7qUTF>l}*v(58>bj:'^L>M(5*+'HvZJ#F'Z5Y0`rF+թ賫7qi/] YM mT@@ZT%"Le{JH@>EO-MBg^q h|K~ _jty`Cg<?ESy{jKL9LU\N1Eo,\6F)#|gB]lPL,)OF K9E²v@ CLnΠp8BJ>^Ѵ~`dj"\!ڶˀmf*wZVvN`g.$1uСW/ lQ,$kFTt2HLU>vq#3 )zv] _Y%J_ءޔg|N3V`%`o`ae!"<0zKjbxDzn)~SMߗN' &'&: [Me\xVccq)Hfqad:5Ń5,ԳʦNIumhKEϪG\HH\fFh5A︉:9$bC759S7[/?.L`})mSjd 5Aj| ^{<+ϭl}Қ6>x11 Gmg+-3YX]+yrps։g\TP WR%Qʛ|xf,S GpEU7ZʸcK;45yGY]RazIy>3H#'p7? ]2'/n+@DŽNo:ju9^yʕJ*w?e^R-'%xֿIx|,u;TX x *l~7q3W;dS ᛎ%˾^mhdl"TH5: d"m`N;YC q %ȰŅ1QZ/pus<ŷ T%C{%2ʆ*nRiu8L;d敏݊mOeJ?@‰mZ{,o"K$ W2O5&O5;7?qT ^Ѻ,t쏮C+GPEfKmξ z@3HR.Ʊ)i .];)ǟ~s`ai4 a 9 >}+Sh :&t \lqJ,g ]+5%1h]Ł@{M@}a^ ׅG/ӪhX%xN zD ?|,H&gT(樟>63 BWH\4B[AUe.#{gZOXN6= ZB+:њ!8=O@О|6|N*6YѠ4ka sܻv-1&hSPזhWdUmS &&z{&6Sv{[8`F5CX*jݱ%rY<' ɧ븐[y͊D u j簖ČaU{TX{p\{%J+٥*SE~F" 6Ĕl[P-6G`4 ǵ۞8˽@'ni ձ,=(>vacl]CBP뼯&YTО<7 / YjYœɘdz6'h; mgmF "kFXfb* ?h./*!AWX v(V)li"<-_*Е_ڭз$b߁P2.`x)prXkwS2tqf+ca|̃p衽uCu-{åmCb؆ hDqKF,=ַҽ*ςemؠXUTq9:sT/}d֕1;/xX#u+H#Ea&G赛Da;7`N H2SF۰׃0笱7+ *'7 pYeWK)4EbsR"k -0jn,3:LJ;ȳi3P8d[aJ Egpt)ʑs+0b!;Mv3mMCOL(21eQ.cKB+Ot$X05IDZ -g-LP7 ѧ{/}Xy W 2S]/-\˺M„q@ntҬ)(-rIȃc )#7~)y\82#~94.@(lvW2Bї@[tDP)ޒϊ7p _7P:H'^>)eH1C\q ۱8^H5ј WN6NvPV4;b>Ё"\o t>&LV7}~Mܲhv@XǬ+xdxע\lp0X*{:h_'ko`kk 1XdEanmQz ^j"=%ԊCP EUTj m$z?PnIxWίVvkB-[ )R~l2svAv`WE B c|PV 2V)mQ9FJB]^/C +]\SZsB@ٖft$ HWFcmgGSJ5QNpBq="puC Y`aL' Xx]{7`_{Hms>`mviFi+ f8P'n'O=rݮblY$m#tLMNj Smf@ziJ`Xxॴ3D  ΡHFvGΗ & nA)7a./RKzi$H35CeZxɒq{ۀY3F:V `Rgpizh-)Vl>(k2O<1_5W;TYk8#W/s?,jY7GQBޡ}p!fIL[c[:Cz 'rSUg:@&fPjvM #g:̒DE^p>a jJ<899h+ ܧUqē}JY1^H$YbԈQ0{?rk^"pfucӦMe*d=pnX4`:2[}s\;L5WKge܀ C%7ð9.@zu*V & 4FVyJOZk827wD" "OnC&iuTeӘGbӲBFJ=5@Μ4o3D]= hvy{q?TY)!2E@1I/5=C׷{I)<*=2q~Yw2Dӿ~..{M'2>æd5vVUͲ} *A H.§A qnu}\4/mUUB9+1pMT,)4aQTUZAEoЮkF=8LӐ%AeRMf^4ha*tqU+sxnp6ѡB2c~mWw6k4,{7. Mf:rr7O4(*wLXkP;y ¯]FplXCʐّ߰# A b/*Xpy?2#;nTU: 16ኂ^RP(q׎-+Ȍ)E[~8[&uAXovԸc_4iRDE?><_ _n>xy-4BFn< AOQ]`"0/bF4ىHs룐mmu~_< lSZθρL9؈Oa"G3%|FtVsqwP~I $M=[ϐ$?bkv'לx:?KWJ&6#ZJ .tR]5A{lw?V$"CS5Cf((=ЫӈS$3~+-3b؈Os ZՌ'b6ii!éd-5EȦ 9  1 #qMi깃h  AYȏ|\QanԑǰB1!OQѰ-&ѱ{4΂u|oՈKbM8ubIou8 2WbE՗IF_/)w~@T*T{L/#`2GDFVk)I `k3Js%fc)o-M]&235xex45;jbЖеek5u+#8 K񣄽S ]֚[Z cMϡ&@"͠,TK9_Tnr0n-qNO U)x kt9My4̾>*vy`kC hpL]ܵ񶝠o:?+AC~JM<]R7[3lf@Ly;NЈ\76GY8&.˵X̩i+}QTF`i4tXJ;x³b~T׆JƅVn.dj^ UC=,=qԹtC=.Gz|v'k,Ci`ح47F@hvXZ&"Ur>DԤ j ϖ{,bQq M;ZnC8&چ%Hp5l< 3I>ue{@&lW'=`OP5#iJkϸZimPbu@Pp l4z upU z4.GUq#)(`]&%+s֛ l=3+֒{5g`Gm9>;:Ğwo|*KcmQZh%l@>==*iSTdl#_僊 @sXKI:\}*,\ CZ'6s!+4D ,㥴_F52wrÒ.;;MObA'ʨFeBF+ˆABf[m{8?-DrCL #q%[.tsd], &k!߫bi4eŨ?%$\V $IșW1Vnߕ+ЩȻ[Pf]!lѕK [T<Аi ]~DzD LيLa,K>~1iVnԻsX89+&7i!zsh. "4f]r##OT$L#fi[K. v^JK݌]j 0s(CڊZi/s.cPG3L8Խ]&EiF(~Wa+^: wAԋP)޷oKcF8\WzQRnpiaw=guȣ4V\_(Kgb-޺&Xs)lzӺ4є# bQsD"B\X[K;b -;; IExj$Eti*3bB@Bo+ {XX `^ߓsƥ[^Ugh`]ܣWe|2RxesNjauO'3DU)nԢiQv:BT+a#17QNyw_!Jk.ѫ!t5zO̶V8Qk"Ũ1Oz)tǜ3|| veѝ,D'<_}  v3a;4WzDyXz9A$zj㺽Qe>xJ-SxZiSz)J_brgn! j PZM½{M228 rEע O*^. 7Q*, P*zmzC #c lLFN}&Hl;&NY*?HX { ǐªy-N1Nl*p59zu{]6GAo6l^u'$:VEY?kxUУFH5{[.!({{]v}Dߘ$)$/6",U?t@ɗ&n{M[9.|تA¶A8ԡBZ杻DBlB,~D*zIA(5,TXl` `-_"`U˱9] wXiKqȌ V2 kjh~K`sΡaȥ2sX]˼܁5lvDe %\p܆~ZL}<5`̸huR W_=gi/*c++e1iiבhjG %{">Q5]rU:s*'ꏪ/@WDzsMٶBraO(hG3 ;ˤ zs64ՑݨDظR8KMؐaHpVX.tƠfOQJk 91F=bq]H}{RW.6ih(F$hYЍFHaKQV<'ͰS?ca ЏL k@طUQ.lLݗg+u9EjP8j^az*e,eek](eyh@|9xT@l1ֺ mO>Ԅ)U5D!k+3it,^,5ufAW=:Z4z)]9@xN,^i~"G _]|ZZjd R PvVeϔ X۹bmQA$_Apk7+#bʹçBVw{UBYM%A4.mK̢7@Ƌm]vôvDൟ̽ѬYt9epbQ)KtU$5B>VQ=&b}sL'o&VS*gp =b8;lFp\HO}`4l07XB(fF%(XIa0lp$ 8UFYyB11O e0-Lc¿JU,vPYj,#rob(-;p?D?XYg\iklKOIe'{fvqr:+n :T.|AnKuSU6CD(Ww|D^ůh"š{ @SV3u!8Ҥa{'<66F/ OB[O>SH{x|.&yOFi'0J.(d#;`WAғ0ZM-ZWX+&Y ":P̫] Uk G(JK+wl[E({RhFvF?Nzu{괹dIA7 `A>~;|d*\En`X6j{R1L4fqCڷT2U0#pY߅{g "ۅHvO[ݜZq r(+gQ8 ς,4],`9hUX3zRRz!A$~0{\V]B17,6- @ &Frk>HtoΤfg$ofW$T龞—p˪c @r h,Q@I~#;z 5MRí>B/feE62w?`Q?xu'2b]B:|8.r[IOi'/ƒٓcyPjTX\H|v]c2b'%1|ZU2o%9i+Z26gjsxY)"cd(,.ʥ;$ Tek5sK5s$ם]TAtSrEE!4׉<Y yEŊۃ!bss0$V OITz lUWD󟰪.%}a/;o9ui]3Ƒ B/Kua*=_ ?4JަgTs@$ϊYաKX&{UTsN="xT.Uel/[sg^X\[XE!0L8lh:U*$& 688C3K EEY ?Aˀ#᠓:)# ":"{.QzZ13D_r">g3 -Bi'Dڭme=--qE652`6S_u;㎒2+ bhvg |G!z|Rbu*/Kv::8fN;ZƱ fB|!~^BlKPvV3:̅!#}5#c1/ *&NtAZSKE hatP0S%>d|#`4j͑4St՞xm+u_{PӲ3=km#Ѵ#hcS?@E`ߜ5tV?Aֲ 6GHt+WYs[)颣D|i8qpb4#JMaLu!:"g]!kנ-$s\T*NjȵHˮYlP Qu|ꖖPC#q)HLtĞAbX!P@<&ZK }.d,*cAhGG үS xyȱ~cœ%ۢ=*$H-V.U֩У,{)QD~)ªpނ?9߭C#Ps(#Q9F^"|%3ΦRS&j -nЪJA %3ls՚0EEHWS؀y#T'I% ؚ~k]uh9],Vĭ[.xk-t,C1=ZY5~THZ:~e:YB~1Uw!h#B "߶«}1_Uy`QhO,*6s rH+ |mj~3A0. ,R #[V?K+;i^"Uk7%dZw?2; lN--xhGEe0 ˙~K$7ߓ~ \BЊn,z~]C&eBd-=%mNg wވBt+ōKJ0T"ViWH`&~>iSXE-|(n2O-:10|DPdU4`XA-?*V`9?ˬNUN4v1 uwmv]>P#,;֏.# HE0f*x+lg_"T4整9*}oǚ2:T}#` FBK;J n!E-`{\B''vKơCv’-:` ꣵ^ƽn 7's;シn7h*Bj0PQ"`|nB=DenI瀚q&5h9,4eqU=dj[Ӡw}Q{8׀*]Y ")$5!DB Su.s۱5yP"@YZEgYf 冓75/ËI=S.<,~)hOv`8]5|B8OcteW}a݈\2ucFg&FR,|FTV94NAAv(uVA~p(Q3 !?‣+>w[˜c-+O15a↊C|_]nYh]x*',A5T>Z {c-^ED`8&KKjJJbFʜlLq+E5,Y4Ln׈Q"^iþNdGm?3gQrCZbrȄL[O[x)ŖX( .dÔ5Ϟ xʿб[B#9[itn(@+ I!Rz?tP+<[湌R|!UXо_'֨{O3||Շ<-; T^&xߟ̂-qW9V*b L*UqXc)h"9@Iv&:}&k@4.DEdPhSY$֙F@Ýꨆ"4)Wς]t酡BI oO *s;5Ax'5uF{*Fp?I1ü1\n[""AVN\^7qa9A *R ,[@tuNJeu@-- h5'"a*Û{>d ARy*_HVEEkEHvpaIR-Gpk|lPvh*~: G;gy;pE jv3ۼjJUQ0._'*[ b nf#Tc[;%6@A_e͠MFBpjtDF T>f孝˴ꔣVH <*:v8O%zmG;$AgG "dKiw iQY4BA 3DD\7`dra<@ڌ˳mא>ZʑsuQ,˨/x-VJ8c+kAQ=G^{% ʈ̜8 >)hG"hAn##T[zf(/#Vm63oj8Uqcb p?T5qcs4-ŭNHU< ,VP*{Huބs!pnJu%5jV6昇0ܥ)Yg @RZQ:rXE@cLK wud8]%#EXEo&OaZ?s\Vͅ0Ljuxp`Jv'L/ h6H{0{tj#,V# OZBA#'E~@)?;a,j3aۚSڲfk8ѭ́W焸^Y0GљDS-.Ġc+uayV(FZ -߽TT6 vkfun;RȾHgNږ_3\ȗ׾6I`68dc%64w2՝fy]_cnܲ%a Mˍ:DWiX{\b'q0^*]`O蝑$y9+:oTyNpB,1 Y}|PFA#:9 2h$p/\~;sf(%M` S CѴAB"DZ+TnV1_pChrtXtEkweܡsb ؽ-VLܱC瀁@u_dcVE# #7bZYl ӷys lVoB iktt.g( #\.k)w0WOmпQ2,]Tg?%q HDx̹qۺ_1jTY2vI,te$y,ָ/ddgq܌9\QI8e0Zn7_D77pgilB̭P̤bi_K@Ⳍ4'PHEyQϢK蘕ze~ZGf$#4XaA^`lF@s;#֫oYwXin >xK8A=6'kދYwɨ] M,C㴈}!^9+NU\(7F& "'NƴL5B5w-Z|2v=Zjc9Z#h;w@g%{Ư7Fp;Y6~["bޒNg}62/#= >h ~aiZ? O<&IMΊKN5pYbыvذd}bacy59kYƒj ]ys= 7L8IhB!QK7Nx`BJbݕxB׀cP{TB=@[ ϠWf}/w=3~lu]'rJ865%q*k޼(fX׆=8\`I%Dd8 Vu"c7N&$ľ wqr a!ՑWY'}2Ԝ~ۜ.fuŽ sJ 54TxıD58'uW.R_+7*(V4lA@Qv08DHiŽ ._oĢZv¸0TS  wJ78?Ӛ@{iF%PEb;'uHW:q٘EaL~}X422@-{ b̖JÁA|iFsg`$&SڢWnqb7YJW@4WuRۈqU.R}"PujBoEtaddq zNbG?Ў-(DrAXQ{W9oho+$"0/Qc iE\w"?R!IkQWo宩ڃ~]ЭqK 9Gp< uYw|磰[9Qק)=$Z`݀ʆ=߂rv^HQYQzl2N+77f^KRqͰeڀ+>aqV9?|uK?yuJ4qرAGJ*rr-w4vtu7}i%.٭Yî#WDMEiݵ ^Л}/L"!n`.Z#NخUTÊDmQ%.tXeXE#[mfL~kokd{oթECL3&+4.94Z.9#K.A5~cp*TDS60rκN ]mr#.PXs+mM:)Y먰ZuQ⤉9Ghqu]MO5v%t Ufj]6<Ke]vD kZl8_>uklcBH&+ A AUˣE]}'RmudW2b@lD,^P*=BCbauE>vn=+$/m2h"&3~Nf\?Wm,UtxʩV fAb)`5"C,d,*((5e$V S0Fv6 T‰~&g9VHbQXgw>l3mo2;2:}Ao#RcBYȽsA9:&v[lꀏO.P(P7t8Que>qAtCIF^3;huZ Iu*}<xh[O, dq$[.,4nC\eRh]xnr Ia>У(QC>:Ğ6sqDn,jnz.Asq 5_<󻓜>۷dcԅW,pڱc3r:T~xeO=oy+88& :!5E\u3 g{Ur3|ΑX۱`G??d3}28lVk!ae/;t4djO.( sf%n1Vaux +4B͈mEybqLiE Z}F^S8nup6jfJ IEP&3Gv)!axMgEt]3>JD̋P+߫[)xC0%}rKێs, S߷ Wn?WI>t֐}𳕀qC6l#K rx2{cL+pvrt8x\*t<wGI69:k|.9Hn dIaX?yW=xA%f}ǭcјO#/0h7Op6C[۲JN`dPpYJ`ݰf~\ĉʅXG7TgbeBi;{UY'*?tؗfuB#2S^Sw6o&f)Z~RpOtφͼ%ϟC+챽Sv=i NvhTE81;h1ywod3>B͚c#;MwἨ@c"ۄZQ~k4r|0=K_C[9kk6OXoVBTr2J ^z8̶#o D+5S6>etY/`WHw~P] x=5(cղ/kYEV1e W ~$$tt{P?+Y\ΥpvlIi#Khh64hfT6z+HR)^&ŅVĦVl\T(\Rp;4y^멺[@8eD]ݕY'jns,kqlB,yO6Q圜K( ř* 6A @[j5/ Zˡ#4SC(tֹ섫]1{- \!AApܑV$BaR.!f+a(&{be~ m1|4@IXI5}-\ mHJL3sUBn9Fpz? 0좜]:f[ (&O@Js RbQDû/J;z20w}]Ƣk",U˨s di'ٟh R8Kzu \dʝrZvjJH<8CAwl͎XDL:]aSA`BZw-|+>z]:ͩy? 䙷g&GbZOԼh[`;f]CWk+7:=KuSAKAsrI׳(LWE\"*D!q3cauN{덤$j~% [*m>fo'N6&]5 ew[BWQM@ wm1kiQ^r8j !Eˁ.gX.1_<8A9*mQ=ݾ0[|JU$l.\19p8Cw Xsn?I@ ,EP- M0,dM#=ubjJ^ H며\k}5`Q+ <[QfiYb혣}Ea}}/匯{HCU1څedָ[0 J <4ǽK%ᛸUOģZ`\Sz/jvf ϝ擘3Iɕ0#@-/y6U;,=/Htܿc]c;F|'졷Y]Fn9jL.PadSOӟ?-Y"7Z__FeZ_1HK}JlEqO*%p4Jk P/NcqbZtyo?=pi ;zu)Z VτVk.NtwZ|1nH\ZDa-CлxOk>|'DIQBstAhE_-n%\w]  3[FJUq>]˽Ox~Ň rKO]8#@0 7ʋ2ѕ(Ɖʋ0E7Ҙ$3 ˼򝟯koFHV-U48SϗXdO"MڜϦ< xԫ>eA%J:BwUhcg>5nTSw$O#^ jY}#\#o%\mrsM%Y5>韕k+T zS:ߟiNx^M?6JLEܼ_QBH/ DQWrtaѿ rFtZwe8N`\2O1F,֧l!蕰GGPER.QDL冷bgB~VۊЯ{ȧ[DD$jO)y*RZUId.eI8@3aKSV$/aMwL=uRW@WC;5~?@c^KmnqR8]gOZY caKX y'@wvQH0 ٣W> Yi MRE}5Jv#OO/ģOU-B|EJ"v^׿fҁ0;zԩ$ Ay@_b)B<8MlOxI1(Q<G5cii䜪rהԇʹ}hk_{KgJ}gD:ؒ:k =d'Aq\jKVBxUZQٳk:5C2[Yhab+%,=|}.XBrT%5 _U"I˰hj7d隦Y[Нi#ufHl|Ȋ ?Gb8oθB[BQ Ϋr௑D/PO&=Iss=CTdYXa a9֛KPWStw6;!^5E %G`m5xƄ{ `L{^Q{*n)T Pl-V!pjQl ac=*5:`!(ӷCC|v `Wfyg< 5R :LK H PqX7[62tg n)3qx7s@#s.f/n1[`xΡ!գtHR~B,u_0ꝬbZ/G)E;Yt2S nhNHz4YK8C-*|.p= ᰒOځ}Xhe0 yG/\m(YT/̦ ?ԇ.%V.;X`'[_N{a_:pjgPWcH|S󀡲imNdbaYۖ x;.@ڞԯ#j0i %<.|W#'Y* An $ 8?nba]RzܩY$eHmŜ)ӏ+Nc_sd}`\rRWU~ܣuhǸQW}ց C/u%*! <ʘ9w`aPҍo ?1ќq5E> j1+jS|l ),># OZ%"Xa U.9 yqGt+(pcpXc2-{q>$B{o -+*>{&;GF >q(QXqK:ѫ}jsY9N=b}nl5L 85)Z(735w6~?E zaEDA`c.w!)pM.t9QX9s7+'٭ZPOzl13b$k=B%ҚQ~4M;2+5ePw0 ઑh δy=Bf)QTÈrJ فXf$'m%*{WA2-Q]eˌhm v#"܌P/09{_5:OUQFvE%QhwP t!E-P{4Pa]DN7Dc춲<%`p .sP).L^*O[iԗp°2~0M E &gxEoC/_$GiӼ̌Z;KK X\B;߫9ި.ї2Ų0l-ZәUX灥L WX@ g`+6T8j,[QX'vYŠm7YUkntL)\y6$)&/\}T ٫p@1o _"*z&dYrU$oCw9$$)IJ,ݖV9>GK\",hUKY2- $ P,cGʲ>MȆ CyU^G9JHO.H,~ҋQԮښdXV_C9h0Bey+g+dLaL8+y̶5 j"VBf}iR $%)(+@:nU3m McT/r}"M/U?FewnJDGh$Lw:XICR2nWV'f۞z}u:tkM* (.է.ԡy[7)@Xq4I~LB5ZЯQI*eç1 N ;ʣ)|߭a"-1;pӥ#﶐Y]gaSyQc8K$) bJmH a|2b (fm{4#7 rU5D`9v Ą=B <ӷ 5sm1$Qf1hZ [W=ֱ Vg׼Wyp S- !ŶBtL MNX,{}R6Q8\?j*&{oC_=s~nG}\b!'`cR<|Q=SGÎ01qzO$Pxfc|;nae ٖEO".'-+W]Ii 5#Cx"o&}W  fuG(BQeyu̯>k;(&w-'2WI':eׄåW bb=iOBʿޓ&ǙWhiWn Z]M}&d1G`wtvqNo+x֐{DJnA0 !h :Ĵ/BmO<>֮p.^Cy]z^v>.i!QphAEq5SkR3ȁ`B~B=&GY£:1@5uw^xp-b dE *Z yME2zz,CAIyYHO7M5uW$sPw[!{jמ)zh+͹Z[(E ah5~OU߮dUɆ ?oQgs-3*KL^0NQ$J.< l4kX; dnkLV_id @@s:K~4V ;?po80x zg  XBkny[0*@]H6CiEP`Jd=ۚT՞ZKQI .HO|^"K2ۮ7/XhJ>MqC "|{ uStȊK7 m#"A‡nI/8ak D$PݲT=2p!bчP1Pw[wW. Įgm<)}6.`v.7V'5vY @CY)8u> s5wtgf:(*q@9O)P-uxШJn pWD}z.dyY _P(eo  te߁_ ( }SD NHQ&\>y|G+'3f(?i˕ ^#su8*U˳,eb;8hl&C4z=*`#_:O";=xg]?uG^AH#鳈 b-p"`lL 몰 ?ߪ7Y2\1|mRqP@XQW=g^nHCC勞6ue7l!Kp>A}dW1\lܥ ñ;~4Q=oǩt`fYp-MiC8@Vaz(;0 sSyol̄ڏCY/GLDHN  be0<'D5:^ hϗ$)\Ínѥp+-}f{-&l˚Km]{*/횎lb0:e?V+!cMv r66g1QtMgyG/l9D$u¢o+cG3e0FZn"p]FE vʜ8 "@> inh ThT2J <٦-79Gft*gWl<6}߰g錥2cnx` 6!rö́9F5GF}4L6aƯšcy^4M-϶eUtA()Gɣn<92?/]ԈJS<3PFsxHD)~YaҜL#|wP_+-3Dr%(1"I:B;B|܃~n<'Ch)WeҼ=EaAkVn0CZJ:rj6ƙ4>M ‹/uIܛZAtQoX6+R7EƬ"BŷvA@a>#ȕyqQ+%'9c†J@<.Hmbcs >R|!]غBVUB]0l@$NK+YlUb=mOm~4/ %{BXmaAEMK}qwn-<)7I:hFR30w\ c S_:.]/TIfFXzJíur䝉iRF*+m)%-`a!%7x,^҅|s"sL3;fl->07B.LmmAT>E;T8;1%nŏrJ L{{i93JUX+&σ.1̞O4>'*RTΆ͢c+[4A(vH]?PGmn6*]N::+63D,M_8;z=>5 mq^XжQ7iiڗj3(rfl2/glm; mwt޵=X7?Ftc6d}f+F8\CةG\N<P*8" &X^a 4[-(^_~uuaO^ L1A}Xb2|nu3$ ,f$u&̐i5 Blun:WO}5@ױ[Eksv;>[Q28EvńJ RJ(ZÏBhpb5G&@2o/lVw84(ˢB΅XTEJÐe@1&rbA x(~>!U *OpDL`ny)u}AjҬlt7_fh,:h c?72c3 qzM9%rGu+w50l|D!Jkݚ0Aaױ<'RtQt;vt!H `fL^X2Mvǿ,3v?u"/'[`9ta[C{.\L(S--j [ +.H5+7yy^ZXoɧ<2<Ҳ_Y|tj0%<9`6QFC0=(T{U櫟~ǹ@˼ЯqTYoM^JBX`Y;R_:&ӧFkZ#<}=q ՇH6WM" {5vgLZAYYYN?}Uu8>]xJLiua<(lMQ{GQnf7 #Gr:\t)$CAdqؔÞf%M;ܒ?c 4^vw3E#0D!mFFavpR*%H Y̧O.4]5X7/7 O%t5 W=zK0x`W7x2ӗI$OẕΟ@QOX]A_3lw`T-E|ST;\k2ݩWMJXBemc*d9a&) [3r ȀcvnGں5e U.kXa"CW͢a!Ԣ) Y P py^-u+C 5&< (ohmA *+hfCQa/(T7ʏEߩ&k&'UYO~=BR=ZdK2YTFQ6q~ ɢTlCn3zjKy^=s2qB))ؓ($RDPoZH Z\3"ޖ->TZ() ElSO=(03|Uڇ$SWx؀#[n)*nm{qH?n!E,jZ9&zW7V5bejhSUҤ̟T> t1`銋GVKR?)#`1cB,6]h"q)!HE0v5 HJ9CW~)m>ɜ/Y# U1*"8pUζi bd|aoɊ%TN4 hei@" \RyNAȰ ɼSm%(_Bݨޙ+PiVO|xYW:TJb Q*xkoDe8E+vԋA Wƃ؂Ş ` %&5͕>O)W 9`-pP(e52ծYYe6c#mGH|1׃;)ġx,BJ*?bu! sm֏ !lkB% cU QFI9=X]S _ fLc8%m,g|'ƌ>(C`J;Af1c/+Xdž,¢wMwЪQWMLrמ() EPACJ*|8g X׮7z<DzFr(σ хD +ZKp6x%Zթ )Rj<ٝS_u.y?FJTN2!.`,Tn!IAH]Ɯk-3A8+,QRUV֨y`o+Fz.8 ި:#Lp69nb$r.jȈdq D% ꈪ3^?S">j˚q:v֝LO.\`,6W} Ez,]^[곧CL5.1C8upG{DճX;QER8iU%R(aEj{l/Ń?oawyN`Z"]|],>[3qKٮc *T,mQjmK];^$gBP?>/4C{߈|$@[G+ks/%܌l,u28D%jaUy;}*bh0@Ӳ7#~>cDPC{< 8CFG٨aЉZzAȚ,]_rTy]*'|z 㚑ҬKZ w} ۑ5SĶV|| /aTEԨ7 I gfwKdxw e£X䍼-TfWm~p=cUmF"~(F ~u.(U®{+!zB8)ևb?xaEj?9!|l5br *!ϧnˬ ¨УvÍ.(XTx@e'|)G ZO/c"hœeFa^'Qd( J7õ4>3k>k9eUϢq/"e)9Fh@ m;+ \8'SCFc̰if6Ŧ=ܿ%Jp] veۭJ!AާC=cQjQ(աKe*(m*$vP<_ZQЧrZ=C^WlIr&gY3yMYM?ݯH-v(97SpclQ9gQi`:- tu\/@wT o&:)1ZF9}ɨ?I(Ӆd1@@T魰wwŤ~_û2B3";.)1˚K7a^@~IIV9sh{\n dPꫦQK'mpXޜL(ZVNa^E)*EjՖ>0gHغ ra=h0Izo4faP"L90PTue8Vtv v $GGѨV+#QEѼaL֝Xhkr8gt\zgG3h毨\len8^B"50\RO< jsQ {Փ7])+|(dWEP{N 9A.@/% z(3m9[R hKdg^qVR6ʃGvbVPAPlj[F8GXTfs=#̹RG %]!n:zkI(&[2S"2~$28 jհXtLߺGď. mBȺ ,q]iٿ(K: k#vWSP5 a4f,Ss: 迺۾wx9WY_iZZѧ3 G}B3Rqpg]1G2ûu8~1Ly2q"{8"Ȧg"u"*NæԻdC^R*0td݅vNT04D o_|T́~} ٱ$UyX0FB|P,!8a` P mVY !C[PBpAF&VWLg`BoBID=#md29tJڊBP*B/^{[+eX;P; O9ĉU_-J:Z+ʹcbN,qqA >g%b)f.yr;UsK*#k(5'E~EJ J൐*dр G_4~AQ*e~>Pظ4+>YGC]=Z= { ClW t.]eJ͙ $ @b5% a>Za^|.2"[|cό=ug⣶`;bߺ6@MEbXl}E΂aQ߯TM~`7w!G%C5iMZ1ƽ4 :q8l?kEG yřFf H4΄TnBX)ĹZg)8) LT^zO.8#&09ȱ'\n"9dրXr;@!D2DϵJUGXW!-S!h)ݤaN * IP-Z.I#0o>Wk⤏`sj=FTbwy'"b\^N5 ~W#ۑQ:S~İbo]Aq"`2L}1J>0S˶Vz2k^§_"ܤkH!H/7˗K O#Y$ԲkֻՖmX;Z>q8ZR`b<_0ۺ{-x 7$X Xju6Eꧾ}) Ep=KZ{Q G2o F~K({1=!G>k07+]H)xB$~7,*o$^X IjA9B2 <[xCbK[AtkfAuP !z5WA9Rkm/ :({;O޽244qpB@,h&mKĚ툉PL"GȪ:ҕ[&:c# {bБ+F!mh a>l!CW/eFQؠ0$JnruTG)Y(Qfx2S]N/&4mtXGs$N(+/AR)גd>Т;EȜkHm"viz/w&W40`X>s}%Cp 2ΫF;4x1I*hyݟvT 뺦;lA4JvV$2(m!@~㳇q})샵{Q9Umyi ʎNp\rE4H0C`@8Şp`q~D{ z2l͍pY"I9XIGjzMP.21kTH8f @@iAol4(6-)GMihPe˪72-+ZgW4p*+fB\0kIMJ<%ihD 'ڡa M_PX ev|JY̓xpF܍-p Rg;'i3XB.{<š5؂-}0DȺҸW*IT?4hwAHtm–5F%El-J5_%5XQQXUžf^{T1|_bX۷-ra9:9n"GhY).kWC%Qf/#d.u\-\r Ĺ r`:,MZ-Czr9yʾYJ*yHX6+#y t׌pbSU8)fxdhF. .dS Xxe"qj{mԁ(Bd}, VZ{{N.̆M"7;samCTzU >!oc@)5i)?4܏A~HBf+t2ي'G$TV{zsZ>::w-S62-zYs@mn35 qM:8~Jy882jEtoFSnaaxXƣp~iZ֦(6ޢ'P´z>WAf0V]E0T`wNW\(mÀhG&IW8D֔( fX;eWr`Uvn*E1®4kB:kbfX2jil"zCVS3ߗYA/H`%yփjݐK\~'} 8Z>~i"|CdZ{AM?tbf0D'ԩ@~ HY:=}tV|?aaXUk})I!*a~u4QEt9íehZj10&NIƾv@04^fF8.hRG9Ux)A,go3]7GtDB!:TiS>bΘX4f)#/z>|* [Cqk*$: ej& x,ꨀ5P-f(9Eeŕ3jT-!(e?M}^r9:+ g$%NAԫ-C(`)ilIX;m/D0!@T4^)X+h ܙgPu $fƬeImL= x3/ V/mK4}Q̀k@q@|ĕֿ&yUa$C; W9""@]V [*t1cgvZTn`nT5Ջ1PF퐕&˚\?j3_[WcRh} T.liHIyKL "rNTb7&lW~xՉa1o5j\œXgVtQ2ue-6+=;d W]{@m|$٩S'R>D5J \6 \PH|*e|hP^' Q1~ S4HMW[_?QS! Qc ª =&##VvUnQڡ kCuxYt$\X,wy~&ЪN0/Hh!Z"~x2tM2eeG >t}]o\ @W,J@¥O,)3&)@[%ō5x,E;CtʆAWn`G'=YL.m Xz6]f ݏBb]`5 nzwN0]줍|ӴW`/pTS!< uxEq`NHfcȷ+Ô+MoYyH\K6*a} ;>LO5tJ5b[\VBQkxʉ≊q+8m*J@BV;dWmA.}[aƧeɛw!߱Bx})OznZ"pYWB g -Fϧk՛H֒4u~s@) K(G+#!$&*2Qka̿Fv +tEsRXJmR,a%~4fq^#RCv][K{侀_J4a~hTk:&0T Ǵ2"SjEc4D'+VIs02?5>>IJTYwzbM(e+ky;tl=EAa@*6^R=/?u\V"C1A%XRN bFG?fłNWSUo>[j/8-jn:c|nR H;g_夑*G] c箯,TȺrܸ(RjA41 W1Ro̞1`vp\սJv =(F< v *tz4oHO 8y0לLV,V!C?M c3Mp[ZV(*϶/"QR̤ib`VE<1OHc u+[kl>NhN&j!/E-@S& JFبatLypG7gQ\Qy5FZn}Knإ˅}'B$N:Wz:R$S jE |cԾO淧E+~J5ie:Z?t7E"XYx6J}f'GrM5! ",z_:9@+lH,\@JHm_^ 篋 kZ,"FdA ۃ[:sb(e-3f@.¼?L} L $0Kmڙ9)lk!Zf3鏭(bE n>/zٮ3RX:zu3 oDЮ,TA$MwqwL_%<9BȯH TG/jSQf^+`K>}k(U>t)B!ݰ '+]rG>H"I5wH|fW!zsho1\W ErET@XwgP#|5ݝ@o4c\|wh̔_]Unڋ?fQcVuu䈓Fw ƱyZ1ȌhG$t˂x'\fB+¦0B.@3q4*2v93wG| V)߿ersM׉ "5dѫѓkiЫAkk]?0wI >8ҞJV!%᫳SPP?6TmZ]oҗȸ@F9)ZqQbsOQ9jFE=Ho4kZ\&t2:wkL7yh6|[%'鰴ݓ2ip0"`ˊuQ\?D_7$ׇ$I%"A'iYDƊ^ͫZjւS֕fM W ud(4q c";{1<ʥ+iXs*eמT~ZQ/n*3 T| YxȂ s"l,9kzl)Ay,wVfl r5h}Gz 6e1<:ߵu7S=ۑϹ-rH22/5 @q A$n2NuCll#2T9Sqʕ=vL3)Yk cuw=$E4r( talAƚ<]+(X8T<))jt9$'xTC A NZ9lQ&Kʤgˢӫ"$yQ+0m ё= g$qh^"ra R,\nB K]DYQYS0@>6a"XO\W#y9_􂡹8ж078cylbRB 4;H C-3)_гi`4t۫fqhTE8ѵ}q3:K74b@TkW<7޶(rDv*sy-ws =h號ʐ@" Q<7sLwZPBKoog6&0}X}T[ a`<B} z5 z8D6Rń5w+oY:;(G}=}ͮa P~*~u 3Ъ!,ro][zeܹHs3Bg1Yr~݇'xfgvP*Ϟ}ȂcNѝ_fĘp/ A-߽-wbk ͹H{`CǶ nq;+ !Ow$eW(S0HF.)&zYs&TrY.y ]1;LD|YBzQUܩUdm`\^ *K/d'}q V#cZ7&¿WXvo >`CdR4h-ChgRpvN_7 QKY+Y $|3$ @^'z baf6vg0dט=iδB,sຐ+,@3Ċ:z |v.Rbfb3fyt8YL'k"U(_ h[@}{Yr%Vܜ٭ Ƣ/Q#Xr؜a!8r҈Ê jB{\=Ed6RR.N)=*eDT\oQ -[uuEǧ(Ĉkk}/͏ owī`6R3W3tڂ6};OWorPWTl{VX# aHtؗ&覈31G3Qrz_7ͣƳy}I6Zx=C2L Ql`R݇59JwJML` Qz*vz(>8tN('qIlapo4< &}j쎁}ƇGؙb2L`RYXFН\?#fᔟ xw_1vrL shdϦ*XqֆAtyt:58"BCCt%!5O&.:q_Q'[j̽r3ЌRIrݾ90wO9{fL`- Xx x1ؒh8fXv "Z, -No2 ۴L1^9&}xl߂~;bZZ盅 )Zx fF`S-dKvn`lɮ]ɂ8t'}$s.2h4 f"eS`5ǂ#N>b{Gg]#S0u<GJiU;z62$Y nђd.8F 1}tYlm)d~Fe@̌ێ|'žcl\< YLV[3`zv #z2;d"iOnoX$ӟ͍"!Cݓ}hjPBLEר]*U<||˿lGn\hg0O5يx!L CWc9z~.U$;~ݜ3Pxa %Byv^ꈳ1ϋ;8To-ULm-G\}]P(=OD{ l"{Lב'*n5.'契Š1qhGm6WӒtP8=jP"SC%786V?T[ wBT;^9 gUjef(i򠭀0f) !Փ +uЫ(K:$d}^,=WD!tƨ_T|`ţU=)az^6Ȕ$fzU"Om(H hO~>XRݯzr&°} D99UB2:19zYbYg%-L{ٮLz(Shp1Q* "2{‘5aBoE A՜; PQ'ˋCm8Mu M&jԜq E*읓TQl3{TXJhZU^..H{*qը:|Ek^ (;/9HS],w \MWS&(mT [aלt2O9czyR%#x!C:5Op[C z&xnA@+$O8R6ty_zp! B7(@&- [y7ꩃ?CT{jLUh?ɝ3FwY^ 0y"9xwzeT~=)^M<1'CA{%+"47&NŶ 3H 1I`aR1炞:x۪2C?r&jNOWϸڻj 8/pVq+"Q /g AX@`:33Fran5@8u@ P*RevFAilMݬWSI_)͂5WoO8BO<'Ky+dS;L`8u6X<٦Y 34JWޚ FħJ4T`Ajhƒʼn圭G*@sLt_Qq|"z.KqDG!>Ĩ:ixqvf)0@4j#ʌr1^MLD~.Tu?+!ه9vy ^Y2 @ >? q'dIy\;>-B,Ύ._'K9S",)y>O(d04l=Ga$5dٕ<;QNt1M4uzo}ʈ蜩|Lˆ'G"\p(`W{ϚUy=dH(V8*GUovu4D@P眲iSAz;4`I!G:IGhM丣h+'%3pX]$Se G:Y{MO"X\dn˜L*5*L_g1R6p"%x Z';`S[M7?rE.CSIkBt5ۣۄ7Ch3,lK؎1oIbf-B":`O*ZcC31wZq'ZEe YLJ!O#-MiMAl+V &Ep)U0YEaH+Bos7!-e%R*𼜰/PbFq0"$:b+d^[ ᄠcT*;{!_ăZ (wbi8`5ÞgWPxDuv:1Uabǰ:"89D1wX1 {6HKveX!{-Z3kz^7@<zɔЊ;5f$ B4R`?afFчhVtv{n-SvKrEG%R9*|E~ UsRٷWse{͏2T&cq8*F6ma nŧMDnHO=.YN Tv4u,vºm Z|Q-]kީB'du#,H56$"Fw:zE f+Q _gB:G$e@{gÐ{I(ddNդ]G~Wan9=Ԙ:QҜVQ6۟HH={(J1޺#a_Aޙ,U%vJԪKlSA}{@}-ϴ|2+5oqjXB5]oA'F2ȷ9Ɣ)/p:㢵úÜv!)5 Qe'd,3Jk4@%ٌ_[7 #(/#PIGQ ((`:Ζ61c8k;Q\1g{QG_,7 +09Iа**MMV專hS 面AcU *ƈ`Bd@g.e u$?|]i|-#s#[/$rNԂ g\*!Cpu-c1q*Hٟ8O(E%O질Vp t*y0JQ*0"HT. <zs .U];{L mhO S%fG;Rk`qQ/̿Ηڐ&Gbd̥H0H=  bS ]`aUx|5{wgt6(LsRΪoܰMz(ppSz b&XU{kprmwӇLL惼a1+|Ij#7Z21(pV2UBS^oizYLC0˴$jn>d@A (&!:Ls(M1D&=veS i5# MZatYָdD+r!䎞8j #4ժL*ؘ}adY'{oJ9Q lyʚ@\?892 }{/z ">YJY=0gɮ\])L"UAn:OH𠐧R3th~")kl;Cst4&3dh;JG_ ,PS]Ljub ;5B0ΙJgr*Š-=W :2 {qȕ#(h>;LYmO$YXZQ0P)…X!*Z }zEd[WJ*Ӻ-#bŴV s)ˋѱ-CF쬊Q*&'lWC5z>c쵘?LA:P2̂鿗T+60e1L$s{=qԃc1C3 6$#s۬wCcH2tB'Hϒ:ƣn,P;qd.Il3Jl:# qψ+0,焱=nrV1=FnpTV[Q$R`da([, !(聒 FHk$'R mH QϢYGs%,57XWxȷq-9Bhڪ#AFTW v_M:}A8IēIz݁<+e'ڏaCd5WHxaty55udv|=?̃I%V3b& "ӸwvEFbh c;(YX}boD'<q;8JiKS@Dj1lúD<%|T?EHg:#Dr;Msh*fPAWwӒG/k𱄖ėڬ:oɣ woN  N0;h~%fQL+ k)+VA;Oz,w:$T =i]s Գf =ālqe58X?_Y*LClD7A,Xcų?(:\a f'H}@*#hWlɖ񙴤+0(Uǹցyh|S`&PnR *j3$v%]T#]KvB YX=V9m43J&뾩CceŽ^p=*2#oB9${>RW`X69Z+u!Kty]|{D- x405:y&3:? KJ{y:.zjtWɹmL]USc!6% ܆"uO#38"SXlX#x]@-'߽70-G~ T͊V Qw1l_eXQuYC%6*"9<c@)[m c2޲^՝6zv k 9rC2k&NbAlj!r$(\<-4pgXݼv]~]ٟ*I ĆVU. eq֑8S#Tԕh"pvNW66'fO2\xXH5Ěpq)Dg5)bRsd>y!3{5]cm-RXajW {N }38n~n4!Ndq2;QH@R?K <&jqT*0W "R5{sSY bܩ':;9T%Rob\tɝetuC)BGΆQR'S !Z?oq'(1{eo^:zx^\j{9&"K?g؂}1Z#wךx ۆGQߣeF@"-=\=3lD:EεuLJ AE:ȻPRE"aϢ0Qb%+|EdصZZGb~Sϊrl~5?>\I L`<"ǥ>L0MFN-Lh=+5,MCwEd󮸄j$a\wCGjL-K-$\4Sxmƨ@`ğ\Avo 6F&=fN!HX݀x1hR ?\л¸e~zfX#Yxh>݋s DKϖ>l. rMBXwT4v396G`80闁 g=:d4U5Lϫ~A`3 lv¤v玻NG ?M;q_<8W)„lREo8N(#VqZ 6)Y R=K^Wz@V-vq/=J|<H;dЌ!CWOÕ!Ld7 q]8 4hq~%Ҥ=8;AS{ VZMB >`&GpKkD,XVV`=;P4A܊沢(&I99a|ԡ9HՂƗ`}1i;'tB#`p(aaI+Qܵ [*a+ڳX9Ը.ϯ9D,FA}섽y5#,C,sPhyMne@@JB#L˕ݏQ!Q[ЯJ\jIhhjf+vRDSmh*ի7m>KK9"Бf1O<ɐ' ;F6iZŝ>ψѶq~P㝢WEώYdX 4Mźr%,.03ʁJcTW`س9NuωPU ίx.˷lyf JKLaH{^B ϶i * _seiVGT js ZA3-T:I&ћp5.]=PTz f>)CX{*-ht3qur] jénōKdgy9iPXlBWl(Z[!@`CT6]WdkiY)tHW0| rU8)z:ͰW#lnj7[1O".55:ԍȰ7o/'8JT/^"3zAT2C%P>WpbLԅ@bwRj feW//b݂]Ș@Pg]Yqå{;9f׌.>`ћvQ~d,5Y9`P4'eCG у w3^q, VOlLoėPdz7oj`3;r(QZ+UJӢs>9"GCr=Zz:*v>hacfMcpAq{[XO; C-w%'\ro2EOsV\huBev΀^2ueu|/o Ohу9bnb8r*8 [xYˌ)UC "6J%Io_iE:n5P߁+eEW b@UؖETă5\,_$`EA\<މ. 4c_n?LV1n/q/n/^XPeg>)bh_i.Rg*V/r4W[a0Kwpk K!V*w`;N,,^?c2H)!u?xmVƎS*EpTpCnB#![r~$Bܘ$3uD%ŭoG5PK[^L+ش|/ o7o ( cd*Ύ3}M(5a0_ظВ_ݔ"\apK&Ls!z#''Yo_:̈/ÙB$)5R+ޜo$%][[1NhQy(Or+c=lpgYE:\1>@qan#'{U*u;jc[> lF`}2$ZC-5,o |9u Qx56[$+цa S'd Xz0O . yӉ;S~'08M؈+ |'1#QMJӬ6]'^ IZbZjO uf9G*ɇ\ű+Źu>6vYI`Io6.`*k#Hi߂q$>ZN"1͜iBV|[:_м`v?85!dc߽0(hU^ QNo\t]V!.6(VQ 9_3ra[-ΟKT1he5?4TQ\|$P~zLm)0&E= khҋ\'6|Y,&g,,ѤziD>{I:CUx'߉- w_scA%%a傌ɪ̵6dW&j&>1+Fc5{\c/'D%ioz4*C,[ }'m<,gESү4׏`ptfFuX)J -98Oͯv;?c7(lcE-~tKWĢ֭hu=Y ᅇU:>UGq޵_eW=7 >,5y cbXG P4R]M%pPmGt0.R2nc8]o څfQ i"cGAA>yډ(Z*t)zҘci.WC_yWARNmZN< zMM0{>m-qA~($,Pǩ,}F<~6:GNE*gT# [ICJ\jf @' W.21aQx0y(;A !JSNjdL̅p9 ?B_YOHgL0%0_̹T}?Ԃa\¼ij9qYB*ॲYXj r87$X%:3NƦ \nUE߲\]5<3ָ5гרW櫛R*#8$d+h1:ĭKPei:R,^ |Z(9!/lHr{i6d~H1xC㈌v<3\i!#!|8 uGp11 0SR^) 5=aF~=xx1@:A#*U "p;@cMIR`E#Fn0bm,LgwB2Ieb$HbSwGpV>Lѐ66fIog.#Ck6+' Ym*?gkVz 6opM; D 5qdn Vʼn`Uz H %P52om+W'Ń&znGiBGCC>^hu8QG[ᖿZ/U%%9A>_.ޥdH/yuXtHvQM uNIf3%>$?9!78CKp( Byrҽc""c C+9tw6a0+A^B_J~Y$$? Tz7H'$ߊͳ HuD#^MЫkNv77w'ZOm0uꈋeFF0Ѐ"%$ȵ[Sy$k0AW ‱r3(IN@ꢼ[ 5;bOQ:a {12a5eH%yáE(-Cud:fDHJ[m-m@uM*?㮑]$tu^{^)R1Ϻg d,JXp 3#xz%w Lr[ I]\%}sAWB@,ndk~/8(>{yĢ8OFx;uu4HH<+%1!tpq)n ۺIsscB.э9٧PC*HtrWp ({0:ZTy&[_46B[J wlub\W=)@R*oZ% iЯ8)epd6m֥ @@L. @ɾ Z=S45 ΍/>< hM aRR+izUDG>AfAbږo3̘ F}qtWuGY0;Ǵޮ5ęW*;X/ kQrLus%"$At()^UJwJƕl/΃Ɣ{ܥ &kW+pO- %v=juhc5 reE$ 5X^!F(ݭJ=AE0 bըLjXc-M_ G鋤"vdN3=@;_9؂,lVem护\T3[ty:֤̽q")[LA:ehS}hc``Ro4Q[")Y4vx3 !EvT}؝Cjm%%:@>2{^5%6YAey)Z=AE^sm48[DjgʧaD"#G~vgI&8A'OXZ" 01 q (6h1YBhO_[̑i܂Sp0*m4&U,Gt_1SLr +Vԟ + # Ψ L@~G/ѫ=D 68%B Ld4"xQL6*Ve?RG`%z@q9޶{Iʨ,k"rP1@XTӤ)7i*J91c Zr*+QbqI΃ant(+)nc:2!1C4bysܸ<^1/FXΑ} lM׊':k)yHeL|-Nәz#|?]%{֕ӆ_JEm MՂPONgrBnGL^<ZQ,E|h'XYd ˼j>ۥHf8>`ӿekb+ke4o؂ci^ 9 o*ëOTRs)Mؘ%E'@׺Q>=C36%0ktp]aSx%iPc%8)4!?/"j'Ei Xꐄ;Q:zELJP+<XzƴQ&a M5Rpư<$cRl=kα쥅 7ƻ.ҦTZgj*$54" ˨>`@'q05H "P*?&_uFZWӫ?{%MNn0;݋Hb[+Wz7(3QթW ɴ_{e%hNS7` |!ng `*ە^˒$Tj&|+V6|dJgHp#N=Uh?EiCECnzQ.W%#vr߹z~e{o\,b\ Z*)ۙ]*zwCȚ  hEɲqMUEk#'|pZ;K_ʊU5+I螬M^~ ”z9sv6{@-L8)ޜ #i1 >Ya[HC&Bf!ؚjǶnj7ÌA&)޺#YunVB \?| `yGù"ϠBs) qsΝߙF7PEkɚ??p0+ ?+3BĴ{ ӞS`Jkc+ϟªh_QHCMy)*̙aqc0n&ׄeT8*:b8:[j$MYcTa=}ߟ vAyZzoTTASTfp@YY6W2FH4/[*:W"?tKT,*X^.lbꈍRtAyFkW,,m`T")1I׵)C|4؊ Y\Jm-eb }[wz['o4'aɐ(5rkTB((K4ů ~LZ_JHSTV+'kN0Vքl*dma{DqZر.ؾvrmbX#q{b֟팿KzqGFCicnI<{ ӵtľ3tT=k9N詭 k9]/7J5)(x!%"$4 hfFh^Re]QdzeEfphӟ KF9V{>&0m5tyGNg r&V^3Ħ8,]yWbCnR${YX`&\xCvw. ͲCsUd[cڅ)}U3ц!L <#nmY"MqH+ ۰I\T3rk+dP-k$ b NBTRH.3qX{.Ț-s~/@&&tg3vm ' O`*ǣVS3.^?IYZoxw0T) [~.}yRP-E!)qz% 8]S)4(eIMLMA?yd6Y9mtӯNƖCR͟Wyi3: q&YMXVϒp$@)x0,Khư wpxZj ƫyH*;̩[Ĕ ten@ 猼gՑwI.CRZ|@ld_ކʽ3a ˵$E蹘 4٘o5g0έ"A7SySŧ#_]*Ҥ^#KtM*s)ҨKV6F5D. Vaea4'Gטxu`gG|Xw\xߒ_v8vqGn vQj`}O׋{njxZ/l<шs2K_L6 ]5*<+ۼˋ]l3]k ZX$7vnJf$:ώ޺ ;' 8:`"&vF0ed(iP!l- ?y׽ rzq"q00$j;FWZDӛlqG/ *iA!aq}Rfzy |q[~=5՛^= mH šzFi/I_)<+)%;rX׉3}aO$60rdSYja.s 2@ W/) & \-1k}|Vp*p .e1X睩Φ|K\4Bh`ܗ906LMvoP02TJ[)aVE"hnKk"ӆ qVݺ2Bv]Wūjm*z m0׌`}MP*!p./heySDpI8i=25jh"S.ѫ-Lf3K$7nW@ !}z:㮖*i!UE /GG~ն<3Y8*NVnDXHq]l]{!\vY8LRC 8JuBi*\MhN,|aDzPӿ1[0˔цJNԈ[I4_ز}a9Q0xgӤ!a/ ׳A85|='S6y}drﯾFX:ّ^uwA|yW`7J'[yH;MՕQ8X)OS@!2onRqtĭV:UHc^ڝʔ% ]X8Z8.ƺ>!0r;0# 2N,;Q+Oy_ŞN c?~q3acրuUDkL# +;r 8 D#bsýZb6*~}r|՗$vV4җncR'#y abX qؑ"L~ǷZf!"/"yQJhkU=L\׋sQ1(u9diKPXDקѻ1Vg_*ZMwRE{?Y!d-4dH꺪H8mu6otaUނΨo 3ThRZ`4 30}/JSgl!G{!5/[{\um$ڧnWU8@ Q&tܬ`;SZ$EmzQk-t& g5NKZ|FX֕ШȞɁl:D-.7^xf`,sL+JPi'qZtDіUeLe3y"Z0H{ J+aJ_Ql"uc!^pr#-LbCV`U_[&hzAo NrȍPHPA%ex<^)wV)%vh{ ,]/ %u_#=WR xy0TO&EP@EY62SC22Z$fETKF^)6a>;k!̈.Y\}^k "c99ݏ^"](J1;P 4] )vN&jM\qDп^r[~t n@qz{&Þ_g#dq $4viycj%@icIsW?h@D9ټ 11SMbG3 R K :0.w!}Kwk5)$6/luK2j WEˆChS=A",I0\oN8:$11y395yVؔԺ [K7)Bz5FQQqT.nƽ2?0{)n[ 0~s^7{wz^D`j 3P A}BeBcE_[q539_*9n_j#`fP@f/`o6c[fPrqq9VOjʽQj'lHgmT0c^)Fن͟.A{ܒҴhY4S[TGy|e@U,uHi߷v\<Q%Nā{F g0169aK×f@u ,.Niy3WoO[k$knWc?|, Z~Yk;Q;c " 5 Gnhkw{{؍+[bh`wDȢ+ˡs.CNlX4Er=sya.2K<+cY1wJzO#]XF4O'qEb-TYmnైE:ȿ#=[ ~l.XyW0bSdt=+$o}F۝&+|98*"r JpbΪ~ـBY#Fk&jX A4>`AE ;V2Aqԍ30B:[?vX"I10p,l8Xҟ :,&Lt,1c(G(̌НtRmz'S (RhtF<{]m Z}T;nظV%V>@ϻEEGlU癔m):L%RvP@dRro=$q%lzGY+"{!{Nt]~eN;"ȱGC{"Vp$bYzVݕn[bs.~eqvIAV  REOm݂4'j||C@mD|:']EA!aoTN Km.j;^jr_kD7Z*cg9W;yE:_%S.d3sgùaaV,.(i%L^p,uTe SPzg)PGL)R}۳ey6"o F XZrft.lL:qlk"zbc *i~(SaC?= X6gId9,7>һ&5KCYw` >7qMT_'$U/j0m7lF=j+Bm)v+2֒`S-vAȔlˇiq*R|*RŊ4[[[%͹uXt+pLlWmrwMa8f-+nk\̉LXw1af.Z803p4#$[Jd5w[0G-GR7tYH2"Ξp&^(8j&/ v3 X w6 i1&Q;}ZF/t~X c^ X%u|F{g; g1B 4U j`E`}TJQS NCA5VXrU6 .}8btJ_l[YEYiKS)0  B Y5T@vmS4>hͷ12Ĝ}r&BU5H`?kKGŢz?2LhBOz0Cl$.c5vNHWO<^`w_JGI9 )y^n"Iiu`u [/o̒ Aa{Tvʐ+kׂhR^+ E.\x*.W`V6ƏmT0 :{wRњP q!AIĖ)hxev5yt ϾùB0mc{ɖj#@얁"%xʸ,`CT!VfFeaT eѫ^Thbs%J2P/Rݬ|hxti `/ * (53+qmNė>Uãr']"6%+\*~74T I3 n+؝^ wV=)td~DHC,2\?y@uM#^WhX.&F]s;wܑ76VHY$`r& )bc 1?XrQ0`?VL4O;_q^ItѶ5q_[)$$".0k% 6TT JwKF]ki o٣,ez#Eql*9jМpbZMz$󪲫Jq@1HEX/n(xn v鴄zE :]xrg= d0}0K¤^2аZ`R0凁5\G,u#1^R^$s\gO:oE7x'LԲ-н7Wݽ ;f>7ذP7[g\hVYgX^gG߇ˡ0!4Cv*Lx^: ׵7{mp2v-B ը`46&9L=1y]HkFab$AuR9R.pe1z'4AqA_FXE2twj"+~tVK*/(RpL0U-hɌC;ygh~#:3HH/~(BTߍ7 7pT$C",gjpnEc`:@XY[2 IE` f9CF7F>m #8M A aNC&Dj썸SxFvɉMޙg!SNߦaXסhQIVW:R6= 9Ftz$#C;hE u۟Xz`,c5ׁ3IK##gr6D_/NdVo "q6/\'{&l9D}Qf솝H<~2zUf a&zoi0\<T>VI29J^qeSHI:92>Mә@XiƸۃcKdAzG@W!Xx=nldW?z $\3XI+>ف5g ց0y|=A$A% 1MIq(ٕT@z̘5|m Y/ݔ7F야!$0sa eֻ^Sf `^36}NJ&n#UechLp/bgbYf 0R]f-N6ðg~o񄴴]@U7B:_ZX^ZwV%_5_o'W* fa,eQ`Dsk6"2l"fq.Z}> S< [><["?l+qG9X)뎩L.Neeō0 wgj4׽=ڻЖ/n9]]֧LnCAB@-Q^͆$sTteZ[V k{邒X}<\4TwSvTV.b>HR{+f&| Е b F_zGP=Ӣ}z/׮^\80Nc"yd=c8r Ep;5:NL-DƸ/ 73I$Bs7=")bLe~%SVtXm4LÕ#68wKL6(V6Hأ0` k[a"@0c^3}M8(teSF~ɥrȌ6 VUol! l5))B_6),O8@G/{aeIV+K'ח/ZX[Q`{b]]sg_l,U+z5^.S3ޖ%}0t heWj@:`f8V60~ȡ;t |$Z(Z+lTL ـuR T՜bxDP&BsXll`udavrOFER/Ѥ1a\:fV3& ld) jF-jL#;M{y!I: z[x |]`6-w34MO\ܞ3uYvK2RנԋnR""sly/4T(MGp T7@6GSQZf6n1bx#s  @9HjqY KcoH!%g $;tCƘV9 "][cC|h A@.S¹1Y  WB4 _6/2~;$OQB\l>MSX&|\_iOˇ4˛V8~HŬԀ6Cw~k(27]g{ ͱwӨ P {ԅ97^q)*.㍽& cr͜hˬ6dwǂފcBNabjx[զ+(d;I`b 1Czsݷ֍{oBfD1H.z+eÂ0ghb>&<#>ֵdvWVASMf,} sDND'u+קn{-2yquLB΄뺍|-:EW r#|y.3;uMH6t_;m.1RA ^uc9ЊM&kӒS0ƎUѸ4\ZW^U=U2a1&M:Q 2p@RG) r("Il{%:.qBV7/ ݐzߖMUHC3xȸ0Pub6*jaحg7b R_z WcJj=xѭ`bR(yc[6ѫUy]֣@*V|uLW2Cy G4ԫwhmRL'fa?Z,ѻ!3e>Tb2.])mtA) _wb%p@)fԱ u &0 ʼnQ ULVc8| f(ÙSZ[+`,ɼ+'"0AD5 /rȲ'⭾q| +jEn(Č7FA,߷/gY[<; { ό*Q+W# d瓫ҺV*f82 l5: 4Y*Z9A縉14DuUP=qcI63q at?iibh<F}Goh0ş_>kl LςQjtuO.N`twQ%ޝ"%%]tWV(nޢ9. 8f7+t|T1}T jp;-9 bCj|zZ n=nk;ߐgxF(Gu-m_TB8t|E΁sP6xmWn$zԧ]kw0.,&p)Ic:[nU1eouLwO,c !mk@3@sKCY*Y9`hst`kTL3f.jB&*Dx PB'^S-8RJVՑ1,%j_k6!QeȮ\^wބj-y9zVq1u 4%kQ] F'ĺV3uzPu-O({Jwx ^Yu22|J&=<\ԎBkQ`ʅ 'A 01"4K?. 4gMF>kAGsb=<^}"p' "•wGjԭ`)@ܸy +~z"> ̺ ek`FAܔb=6)Vo{uQ{ouWS) ATff90c篝arE$UO8ycWv0}.hpK>ڿj *}=C~u?RX,%d䧁7ŴZ9LȭyGTn9f ccjl0P*n#ՓDLIbGI=!=#|fsDei[IjxQ  #>Uo٥3 wN[Հu T@K(a3;r\(bGi:+38QEȱcƔzdH`6%}U9NV\͈uET A0X*%D!x7Z9b>EVB@N%mFٝpB|-) Kdi[o;'K1[aǷBOUTE1@yR\֮{j)z$szjZ[Yus?}^ofVmiǪbչ%8H}UGV/3}l]A 4B!T t !HC]M%@?}\[VD(NdaT̾mѪ&;+ܧ>AƤʞXsDwɳ ~Ei^]@Ix{]F됧KEZGp1H`ޟ:3֠ѫ]%Ҍw6r0gϊ8hx~̂^MFk_knVhݥ"@{=r8_9`_O+}ԀoX3DM=x/d ]G^C{0}W!.Z&?$ V|⍤38~In~wnFXb:'. Qh;UO_QASkhHSͿ)erŴ&Rh[q #7XYߡL߸.3oL 'H& afr3(Mtq` vQr@B]Cvm D7JTc9=ີvv=ށ!PG$-).kZ$ 9ֻ )3S-G\N9 bJ*`A 蕯}PNݲ`p2QY ^)%O 8 &n) ELM_ʽz7F `(m{ ~2yp&LgѭBo^<~8WUzZq¯,GvrzfXT:ak!E։ Rk$>y'Nĩ0aXG)klMyJgh|(טYƠHҞ&7~  5oʆb8L:(Scd;4E { kY0ʽ?#}pBNak`˘1F."+Oف_Yyi4"t!Gj `wǃӰi }30Zc^Zg&Ee-u&5j҄!vĘFN ؈ЂƷ/A ѯͅaE]8lu/>9i=-9xšӽVT]r׬}.$VmL0Nw0C~ lP~G=.&AUf+juطh-Ijj`5ܞ(k(Pul!3|qϣtRGיo.m&R.5 HJ!܇B+IJ2SSЖYyKB.3D%s~Ś{.޴;8Ռ^*27 yɠUAXp~@hFLu-o䳠Ҁ:z53V.E sQ'ǁ=V܊eav?bcQ1l#TjZ߯'c1q{P@AD^W4%Eqn?T,V0,+u[eA()U$Z&c)G{w"`j!໷`D|0~4Q 4 ekY%25̒רasKOiv4˲I;'[`'+T70:8ʒߙ0 ;Kx cTu~W-@ˍ{1w;>{SI M`;vRd">2lfm,[[!@+hkSڍѫ0MZt].d8 U(||pZ\ W5dˬx)#Ы5ZN [u F>##嘈͡Y$uZJpY"gCdHEKQ;}Ы(؃a/u- V/tŢگPgX2 )L4Q A^*?䫶D ) 6;iAc5PWa&V jϚe]'Z3i ڈ f^Nhr((D M%J%ais^$jE~.g1_q|amb-Ü)m2C";AT2(~+H/oL_kR}+MɂUla_\c>dߔhf C.@a-}wM͆ M˖ab* s چ\s` *R~,Ro(5ω'NөqRGAJ )ganN:{4@!Ѡ/Azg1,Pl'4ƲSsJ{HNzUvDU:C,jd>63[+KMD{)et+`t9?KYw2c FĢs*DNƉ:#ԎVH€O\k">\ s~pK eނ`R5 ѱ(rtPjؕ> )tyju7YhF¥8 \u3}ЊӶ@٧7ϖ|T\_ƴW //r~]\SQ5;癚v>|[7x 7ܹBd tظޠps /s-=eѢFZD- eȋaa9|\?rtUV9e -3&,&ҕJXب3֗@WRya1P| :)ւм:z rhȐtb\)g#'{MYaǺ8S" c Kfomvi v_ߣ .SRψ;&>a+}Dv8@ D9LԻ5aaa+eHaN$]kn6ޠ=zU6bXzPWXsqvw*i}b?Hѥ+#m$L,4YAd3&1E#v M`6kuuE?3-_ax5q3'wOJEô,֪*ԊW7רOrE/fϨ/ÍFZpO,N=@2 C۱iub)5Ft re^{*OehpᏅ꿣u"҅B?(.t$Ql)4 8V}"Fv373ɽh`q>sd׼4'aլL4 4~ Y}FՏ A-9DtoZd|# n>\GNemå ܱ,Rgѫ]ugks%H7jSن(NJ(n$bVL;ᜩXpr$G*"ZRzaԲ VA`10]'-RְE'#uYP}@;Vuݓ&’'[!&]O;nvO먼e8R?[;#ACUo|dzx.l23si5|B,Lܗf3ch/͈Q>$w|6 ۍHtg1IC4zE#{E @G9Z+V➭l.dly Ӈ36fϢi_JM!݆hB;c°H}6^n;QҡLk ҴIJA+kѼaaDEՓ{4{i6; c%nU_@n_9R#$mjS+Ls`a/[&qߚ- 3qp'fv|2(!>3=x Q+M.S3iOt6([[FؗMҧjowO~fcؠm"5|q#W X7A \jZT0bŷaT]TSywH}no}-H<c+Hhra'U',?@ A\3N?/tχT'z+@Ǔ#/GWeYPu,_U( 8Q_ U2`oLLc+NIE\lװηd0Ewl7Ǵ&"5IK,Xizf`u8k$7XՒ CjԌݽ *l$b꒽ m)d)PA߈: ޲5wټYTEߠmFvΑW*DT:p?\mEba$YE[hʑ#@imy'$ekBw12v Nxzۼ|Ȼ0$Va2ʔĽɿoj}+wlk}XnGۖJb~҅Ty{`1x˵Kwhn6\ 0~ﰰR׶UXKqUƏH[R vUM} @dZthzstHfXD3[rr*8g!2\[kUqT!BG+_A. u PXhJK!ǍZY`L0,Hf/ʁ֩ aF@M[#+4dIbaEu@潨Gm 492 oj3z5ow?{3!/1G"0;{FCJ^rJTeSD$%9vS{E-H !އ|mP֨oHA~SV8mYzuNTi`,~Lƚ3')JU0 ѯ$PtH}y3|/!˥{˜W^ݺB9Mҭ69h{| խ}iObA|Uf}Dq^?FޙʂhÍ~6IH$R?R׆IRP纂6z@vE${O_!p!^ 0u0)iNV0^9 Oˏq{;RrZm]"/K.b@@t!Is}}N'pX#4) 7FNKRmalT29Bjj:0QCdkڟw1bu96.3ѴXOnn>aaT9@ {w"c+ی9|z9 oaMk-mFc0ˬJ%~@LLs@µb 5A m :9Bu{;Qk_;iXEF-0s{ha{$I[9$]p;1aБ{Ux%E ,3O牘Ƕ!]D99ݟ7jXA*x?¡ }Bo<^ >Q{k#E˺(N*k`p+@%MI\rC :ܢdx0SU=] vx<>@^}8X |T0PTLg27{w$ж2i&GCE]NVv3XX(ߑΊvQb$]i҆FH^On3 l0X`TxtU%c׻X_rK{+/Ni* #btc2!h #zэ^%kA8 I@i*n;bR]Z=~"d! .=T!hʈnY3 3k>7O>@ʽdr~ڻF=+tY!8;'W/HdFh `lQr"{$n Rph F uZaz 8QگHXgn13-CS?Gp |2˹ O{v_e2kݍ~pǬ9sT̕UP,MD!sH~5U+H@ 5=_F=#[L3 Y5սp~ r. |z%D3Rc5!E;u|b[;s,`QQ(Q ǥW὘ʛS)5LXRMJş$DZ:`6DVc"qySz^8jD*´O"-ĊN1>x!jW'MZh*SגoM# hBr8G ľwˢQlS6[Ak)Q3hVR6 X^k: ?cPtI2V{&tV b\[,qj46`Zپ1sMC4E=!ݨ>B~ظҫ³d6wO.ib6j؁ #W7VU|1t<QY_`hLO[ȈvGr?z y%,-D*0ͯު4œ3ӕk- kA% dža)kPݏ`Bb;(^ ۮh!xն6) ˤ)i#-B8hϕ36fy_l8p=NK%a]mbEsE%4o}ߌ h dW29lܐ=.F,(xe7jp^(Xijnhpoζ1)cnr*C4+ |l ㊾F;w[ W\lbPx!9S\ (x!8g7#FM>D򘜉PbxW(4έ<ȺGVp.U]Ƙ{7*ve "EyWuXܺ/WmLpx3Ag8r<7](V?\ãosG(t{Dh n " bB2NQ㱰RcZRNO$EՉD(@uw.oDܖ *IA^oLჟU٣V9>xr!+Z1Yu9j =sC -wLc<*riTK4:(E}vo8Qc"0B2#hsE+vαi5J<Jn.Ú`WQ"ǀ' vOڎ CSw'$ sbBˁ/-@5a+õ|i6j*ef) uH( +XT6MXlE6@,*QO R3Z_)ß.7ֆ] '>7~UDz,IB*.Rˊ#Φ^g8 &pJs 6%2Fԇq|06lQ;߶Jy-VPݪa&vƸ> T[z~mG巇_fncWxf.> }T_ҪZEVpY#ڎMl =^Ĥ(hji԰OF/-l|u3A stq1A~CEIH-{ qmHX1d?y" kvGs Ыo-;n_dн sbDYAb ' :6+ ŵ6I+,;|/RdE|xbB _"clH"-BKa$(tC>r!#! $*iէ\WE!+&C_M(LYi%@{9ْ2f&z&Ǩ:znJmb׫!v*D0Qz:=.qm <) dX!֏;2AdReӺ%%,4Zo\≥ӽA۵v1FnU,n\}щɢp&>ʥQ>`)]!W,apՋ}z X!<4h/|,(쭩t-NtVVK{9c}cHk=琈IUa@k|!@ ehR1ܠ7MzE+ww.Ux.$efn3\,)zeuEMD|oΌP Z"ܖY֚Sw$;4cl,>HIK "SWDБ2 +喓QⅵQ'KgLV2tP,{ N3IZWֵ18rObqqDH*;Y u %tWZ[iQѡ[ ⦱Х3Vظ&ap| EE_|j#}R_-~X_-a};bN{y8R+DM־oۭk6@GG}{]70_AN(Dlk[Ql,rq+ O\2LpL*iO_-k.V61#H.fnj"*Y4s^9\Jq$%Zd0*d'CP07ۧ+@mJAڎT\_^%f=a3;|R'"yyr6IsZezzMc]R ԭjҭ6L}sYB'0;9)qU1L$b힢Nk8m\"t u2PH^aiכ{TWz2v0UёZQz}/Ѐ!ѫ^!,P )3NGI(,W &$ӡMx),|F!th1Kl$ Z5PZ0w#ip |;&" ݖ?NBG5ze05 V+2MF\P Ŋ^)=xۿ,g}-x e_=.2D$N yl_*or+ju7ڤ7w#yI)/u5m 3jC I]pBԋAsbeՉx$w Q1Ҭ .d̋E"W#4_ë"'ǹ IRFL %zD`Awd!7J bPE& x C` &؈ Ѱ3vuw>ohkDY$[r"u@'t M4@T,HՖ+D7%Rf Yw0@h}t^81.`ڄ(XH@*0exyOXBJl{*a\[SH$uK:Yi)CM)o+0] T}fƢ(;CW`Xh;C5}s4-{'Je*v" JU<G5 K'yJ;L.RpzƵNʝòSHWC1dOAt B70XXQuUrA̺Ӂx5˂S3>|ȯTE 84bYz24 Fi+ivEͭ[$n\*XꪲTLt[4!1Nٚu˱yo;9/>Kk N3)AQ=Ur8~H^^TXS]̋45z !o-YP<ᔽ8+ә_IPr4]#E$stSp39*?կڌaI-W>{L4ۮ[D~w_ 3j&g;7ěz#iqf5GP,iGhZaң$ïVҧ]ՙF=>wKN3Bl~GHErFK ƶ@b,ۑ!Kp_U6 r&-b{~sЖ;J6q[/=>^Z'4N@E$&A[ }eE BllI?YKaSA: Z%8~X$Iɨpwnw"jF%_ť֊ULD̓ pt, o=XCh;seG=7[pt_cN'kNO{ 4A+Rߧ ,gcj!!bLfz`a }rBV(Is $'Яl ؿ}+t0s`_| M'kBхQ2hW##Qޖ{?݋%`?f &j_AU!0Z"7gJh9W+F_ymKC6%Ff_sP̗bhdPFg0|U֎§p` Mi$ L~mU`}CDw@Z?%,IoyTu}g*XQTd8ӪTZ^gQE]eU5OZM4Q]VDH]Vo^A DĿ\Ӎ[ۊ[)& #/ zbp덥6vz1=p+YXEO4o HV9iAf}6A%3EX?@ѧLCr.<.}{\%SʥcuN: w{T0a_A¢U\Jax ~aC*9Hd B;T BZ#ۅhg7_aR1oKW0Ι S gh+ B;? $dW@z~X+$C%,e tS]ge0 2E^˽ ;'ekJ:]P_nˇ8 g ~;8[?+R߳|i؂H`>[Ɛ~ՄzT|h`OW :_cjQ5Lt{w>zgG\fFa3gW7 h|7ӋfƹW~o Χ,D tvkbR','Gׇud qY.@ Pr'cmwebl385Hf5yO4P'+w#/>:L<Nms)htg:-5bSLe>MVTH6T _E+o?VֈzK![Y 򵖇~;UZ]~m{# ASYНn>ʃ N6T8tj^ ¶:u}Mh'ATX!JB\+/2f\RթzK"% gyZAt`#w̋#RBaRu9j/֟7F-`R r:Ĕm j1%<5_;yr?eOr,f9c)ǯƠDz!9g˖8ljk|y< X_#_^u:f<($'.?-rQ[&dPk"{FlmDٰ78[`؝yd9҄5+CW퓔&6>ޑ[87-0/|+?X Bgػo|VIԿzgפ5pst~ݚSOUMN=Ok=9GW8Nr`:uUaDQmqv"%O2TnGda( hh4"Bx]D'YPfK6WDY\X6qeۥ;9 ҽDgU8C`(WKK- #g؂j\їF#xlkG=rͲJ|0<# TO \@/^f|(½o>^|"DRs*XV`KcӿZ%xSxoM)1 o"󇉮T;(WvW`}g+8\kQ47%ohր>*[ћqtpd]uhff$ʓD0>03ygcUÄ<y22kגFFu '~҇7@!bpF6&DW FgODtq+g.'فWd_4y<ʮIU Tvh%wز@DU\) "(&Yw>bR,n38LPElS*bI8 }^;Y`XoLB0(gy'JةԪhhkKl}= %˛˿ a,S-kLrE2IZO$ x 1HO+P-O{B'ѥ&=WޔcHaQM_)(>C$[,5 i8Cv?'`B| .d>q6(iM}q$>QppKZ`qHhK!& O` ˵$^^ )z} }4;P?g=`cѯguOɓ +r%~VgK+=:hea3+H(gcg{)sWferSj5b`_r0.6KwØ G. yշnN"N :n+E |'gV.2\k؋>^}BҢu!;g.,&:Bgv:JZ_'[W+}|=bT~K Ϭoik؃ 2F)ט`ٿ両E C[&q[8o1?*uHvUZW]غR$h=ind۷pR^-KMY|J`C!C[®=D]X^n+3Ad 9Z|-CuK842J14X 'eܣZfVϪ/C ^>d  +\> e4l Z-gf lnlW= ۱zfw3 aPg#ԱIAA 3z4W fU}}\k Ad Yv<2 Jw7ENuIlTZbtT;Qs|Vj!2.ZUوA0UlƾpL99z=R9 'R 9Tw@ y9%9I*x#D FLX%`}l![^k3ԯZc歱|Ds; ޷dnUAxED҃tT 56Kku/ Y``NX aơ.\v$ahoXսu\BnnWɠ)wha$^m s$ƌ1 Fw M4Su2W e}jZ|-oU_Qrv.Ra1 3:IN >E@8ˌM^j|xÆje㓣 8DZW1,@m_v@V:'Wľ9-Y*=;:/oOLD13gr.Znތ#cp>:E,̡_z^f<99W퇁dw#"_{Gt?.zqlIBEXhH`"|g̻vi>e7_}qg92SQW/^MaRLCڸ\}jX_uhZ=TfV@Tjۏ:-w @sRuH7%1օsՐ1`=V~=fLh cGLXC`R`3^> ]*fe[P=nQ]vk|T4P=,bE2|[Ǧ`+c ֈ?d̎5-.vT@x%켥XA3#>LΩ\éjMz#$6!O|p[`֯f6fFC^pcD=Qၚ-!4xM![x yie܎ T/SzjspVв-Ћb 5 5@/y xQBW'CY.ϵ6"^V Y:@KK ` ka o}@#5WX Per2!qy6%qcTu Tj'4(+_:-"3hBץ`;"]U<Mfǒ||fFP*~s>o\׋iX^,rn?2 3bR&/0M!b+s9 {$Ǖbt$-s>lV `F(0B De()iF"`%˔`[$>j(X spÙNCW3*.9ah J`C @qFq9+,&'շ@)7 >xH9jY?wl$pXPE5">2GYu .[K8*Csr/n<4c#)*ȁ̓[vla=,aFF y {əb-2&Ƙ?UI~֍ؕ E Xs*{[Vzs π&qXEu\~(w?A./ `1B9Q"'(2Wڣ.Lb/pv?X^P4:)N 1OE0h>$L&¢ՂNYc5YK\좹8|' n62' JBى{Lx,QÜRã41tɍ|Tʬ^K´aѻƩgA9=h)hSa^x#^^ (x/./◮9,B/hzu>ѫ3B|W &B }bCGa9,>UVo-u!ho` oaM'Z9V&c g2Ro#dž~wױ^9S#~uSobҌ&˲S.;~8F(>NDB 1IdՄBjhȤ3C63B"$f*֭@AϿ , 3ɮ[&>y2c?[* kЯ,aF7!)o&*_嵅 H~$otG-2.5QϼW8Բ=/bTmre m)`6X$G$C[;/A闙?kMuC荢ӦDkF4ͽY\/BKfD Nw7CH(xOΝL'¹ pٽvYbhM:)ַFjR.MTQ&óQ/Zȅ`o!⃩\t5 S&3 ap"`d2ik}9\}@tyr I*tI@&D'`6k}u|!0Rط<4elϼ HchᕪbN[MGsrwUL $cȽhVٹ%y]N~u$\@5hԅVyR^ :r6# ) B E^Mi`AZ[~&YW!ѴeUNUw-pqY\n:aFRŭB-:h$358uńZc i^3`/s-/$y(*1khס[މ/fnf/PbxGl'c@xЂd(Ջ A, blj!m0^MBkIIwsñ@j[HP$G2| BLpY4ܑʰJ=. J: ҲCڗomϕ/C1]Q{> F# B^vL~&IcգYhfsE C6V Y v!#䔥 <6*ٳ-ZWذ=BꧤNc+,7qc\8:mI]ݿC]4JAjS1@Sї}Y~x铒lLFg =XyOJ`Md垢c^&4g&/K_&Bh 1!:ޭV5B/}ڬm)Qm wYgycw>)P3/V (_hq6C%U=JSZPZMЋ8?=+FL5+Z󳇣bSYzأb\ߝw_BPN2'l:s&#@a:HJD" ap> pZwQVt3s_XUC -Z?ΒpLRNJXv<2{Rv~W*bP }a14V_%!MU'DF᧿ـW!B!B\ғE}qwȥ  38PfX,ЍK\rV8~"Uwn&o >uWvxIQR1RX 0lp_}E2̔ΓaxjF*5.d謵OL-' P̏4Sv001zg8Pv,<`ï+`(@4{C(||S -%Ծ .^yN >.H<;`ieͰFaE8{ĐrXui@uad5̣~X)Tw4 ïW,.mmVˆ^`'@"#'Q/`ڙضXD~RYvƅw%wo~E[gCBLHS+z`M\.f;.\OgӮ; SHF= \F|jm#`Z·ÏIH.f~߅EsduG ^M՚hպOMDȤXX^Kּ}csy=M-Sy些4n0K!Ot7 +I[jtG0B( 9pfQኽB˂(+$&ME2SҵT4;P`D |422qm@^`pȷ{aRU]LK] uv$ TNtѱL}ԉfS "R܄\pT 8>V_E#(k٨TgHC %`E(q/`4C1Mb7n@+iBNl^JF*)АqAWnmeQpMtRu,+ZQpRp_gVX~nNo˨J!tdxE05AS 8o+ V۟^gUs<m*0j4Mu a1r-nf})4 NlR֪WQ͵'[/G+e+ Gh&%Q]LcME ޯ@j`1IИ$Xw=jbd`Xר-سA28 -G\9XPBc=Xh>Ç3 r `dt{ѠW'B`, t1>*Kk,J,WOnR9<->cQWV0ߙH=V/kD'YWkJ5ylpAsNuzN@Ͳe̸0 %v9<ѯT~ sϋϺA[rRNAeikT,,HRao Ut fFxa9=/K$@z}d=aBݛ$"gDC4"Ы< P LB C&S>Y',b-ÿ2xUCb$LV 0F$2OEwic螥V36R_ bGEu_ۼpyºf^l-dRx.xVBv,3?+RO G_q*J_z1Of?z7J\1[pl䄌3SBʃfINdEa5nDp ʝJ|N*3n~|SPQp!ojۓ8qt!4ܵg%Nqv,=˽K}WJΦt& Bevh$\7?/r7XU4_6ۆBbSCЯ߹_}/vZkdෑg@4c{Cr̷Cp 6h#Xx5~xY{q- 8X>\ [Wm)ijF3 i?ʃS@&$~G]As6̷ǝ|%)&R E/~ 4"ǕLAtMġMwŌ!5 >OB 1>zKlW|6a?aW~bEV M,Cf Kq"SthTAW0<k 84xX?BHEU&Cm5[,0 .?1eN?&aWhh”}W3 h]YhUU2[+c8/V }v8Y)YZ{nڗ /$Bu~Ucb~T T𹶝Vq;Ej(޹fA] :FHǝI̽B" г rʞZV* 6GL-ENfoPeŘ[YeDבq:]!EU-Mqk5,EX3) @0WErNjP׊uqSAÖZ%8;;cp ύ>ixak:J WԑZP lыjc̓8W" pw1B3l(i3 M?]v:%bqB5*Ju&h3߃xf2sNOBYjwlb".v7*~2.dSΣ}/$weH}OW&=bg~bbCٚhyc) 灌u :N5#0ANv\ D~oEܴPLR;6nǒCɳI~GDcuU?&3P w磌(4ԼbLZ~F[ ]|u8}l: l۶i ]6BM mf8I@ F{u=HnuτEѳdc{aP?#PE"/t_!B>quEsE䣊J(I|VYҦ>YNeKt-uͮd/je}W"xXyO$w_ tޕAe7loN-d@kфhefymzFGNEf Ea]Ы_령MVhk\}~gk@ֿ * K$^+ٻXwm+_'+*?e~[ŪȰ mk>qyWmVf40#V! 3eUSܽY;t3nJsm`U[4X)%RGu5q É]@B? y*F Xfe^+[ -Nw?f8]L}@\и1ĺR}WhAKL-ИCͯ5{B3i_e+*˩c4F&oOws߾S> N-709)[ (g*olpu BLđDHg\3I0&,>=$"]] }Ї&tn\ ֪^=~߸Fw3)<̈́D‚ˍDeڠ d1Ab3N=r  %2<'3@ʕvXnB>f) ^Jc}(hEqԪG|ޛ1\#ZVC>2Dv!-%, \XR+CPϭd^.Eo:bϲRf+F#w%av!lB":Eu"bd ~Ћ@.1 @1W/uBq`(!$ gt$Z p^ ETA AIX L~P>)rWW&Dee(p^~8I9CH]> XGJcIf-Z7^/Zݦ/?'M# k.48:|Z8k~#x)6"8*k8XGPg3ܯ 22EX|X%E^+jEbXilB2B^[P٤Zh1@AgPe$%QWʳ)a4w,o<. BUc <緅ʚUwvEU$ўLTk)LX%ϼQ㨎_xq^(!2W?v+F#Eu8FT߬g8x.,,Y5 UJ7lWF2 jHyaY,>/^: ԲI^,!w`l|uFZݣ/}".\C`E[l|<-֋B Q8A\ϠAm2' 6@OwƌI#6hEnkcgYc#=0mn v#a&&Vh&nnuvJWoT=$4*UNdPy:m!kdi`|wy/NQ!@+UK.U?'nNx\ -*[3,էӽHu\ vf` ; #ѐs}' {ak1DТhk+%0Я&Uxv cS  +?9ƊRrA9Ī5əz^jqze  v^?*Knt+g~EFЬ@;]- Ȓ3t{[15չv.a͟*rۘ__Ewӯ8$BY#k H4iplUm#,Xve0G1S k2y$oN'*1iy0mQƣ/ fR qftuV{!u J>v6itc¦hp4xU]Ro2@tBOdT. bFL{3*^`8/]lޫh$gCi0H*| %h7¼>w~eFvV_ڬ|ǀTx?滅P1iϘ.,7 n`3d0j\?I([D.lg;c-xxn`pahI2ՌXiEN; JgG =P_f0u%19]7kT335P_G5vxHЉ= !,k0 ``UEAW!x,>ձÈS-P;c8@bS4l$,֣/;(XB H_O0Dq p׵PDbUmlG\̪DQ`DDu=괍lK8%O5҄xu4S5a.]wI<@]AJ[` j_8C%hc>&Ĉ`*#xp^{[p4DG[=#y25K&mBSqu0JNś2Rkx;^#}`ׂZ 'n'u|ٺ(G"]WdQ͟4I3hJh7 $k-W\ DmT!21a/ֳ5 s31(ܦ /Mu+:mAt@mc~'re|`4Tim: ut2Bڂ\["+)K/Je5RmVGyhcnŒ&~bIk4` 8 $cNXh!"у|cn+P*:pȳ^}A(T*Cýl!TA+Ǽ4%k Bᗬ,]8m)IEu+fLwJI[۔"*aE@YуNaВR{"QӋ߯Rkcq%FDj ƭ+hVw#?xAJVӉm ^K`B3@ D뉤jEy+\p]@#]gLM6x#+G<h*Ή)wCLǐCpѠN--t3o]Ƃ3d=JyP *$3F3=uTe=v>0+ʊ~Ai :Wd.81:ruIIXX PvuVLX2Wn2X˔6EW3*j`}3WA2d;f|>EEpsOUP8Bˀo9T]3G{6=wƛ{YŲS:WTu9yAK ɚ*k:(HݾPiaJп3hݺ C2F y1@z:hnπV/D'f hO!ik!.:8XLoLBS>7:5=ێuHc6MV ͦҙ WA &\G2P,F22J%Y9y%WTЫ 72rU,u' UK%|6dR^aH:>„ݧ24c S @a hSr|ǏaԐko$ Kk-hZ@}U* /HoZnO!8K׼鰆,WL #h_Ag<A1{oGp񬤡^oßin>y<.]8VJټOAFZAX'./ZU˩e`.m@AjyZFL[Ɓ yI6 ԫ56E!Ɠ6ѫfZZj?>{R݅YTmРMIrP2o_KyQo ;5j< DUrHo!o\Y]8ɒBtCb@7cbVRu(,Z< E7Tvs [{itǹ`zt g+?R!1"!̕f&wjLW_adմ9kIM;B58T ],e_ߪ4TTOӗV.5O80B] ' oM0%᪅ኄ|UQSb hՠ0rA@˨=#EѬÄXGӌl:kfGZoNdG-tL:N&Z_+-Ddt!yp#z{4TAMЊq_nwpOqe23LۘBXO&<wNrH &I-PҌ=*i^K’y쌫9"$䉕*m多zs~ W> t_4Ft8T g~R0@6s\P3!fK$F4:%^ C:%Ԃ8]/uYUوZyđ%3u:C QDZrZ8`I%!Չ09]ᅤGPzSL{ؼF(gdf*i,^`[ זc_[I$1#axKTسf$5h+ȕUı1(LoJ,xsfL);>I(MDc9Bl SG8a^9*Xq8BM&{-uk$fx7.뉎j3#շWdF?;)o>ߔTm-ܨJ*C3*44ԟe$h<zg?YWLuQ#j[P QB4cvcweG6^倚̗яJjAnxp_ ͔*d;0ڰJsB#0 G.s.֙e|AH1I- @D!+‚yH4V>$N8Qԯ񶌳wz$TeQȉک@9ˍ"*YNpm8d`3է; Q%)Q `b[2S>]o|֤΄dTNlϹ~xd=P%7lLA^Yza&SPv* MAZHPI^E|UACz<%ަ d^)-VImƋUgFRcqҵ}Q*lͪnvfz4:P+~!0/yGEh&= 8Zؚ&\X)tyʑz2l 㺴9gr?hbuiV(dl6$)(h,.q7Oi}\"Rĸ9<[#K_ L"m[Uji͏rVliwU'H*0Mk>1S *{N"Ð2]%c(q>h,Y  k東(rė5A%X='b@hh25WPm3󴚦p}!XnS]3,ayt\v^PB֎ڏRbu-@iIpo&|}} ,c ?7 6d.24/$|+D4l!7+z&p_ePvi۟oQ߽ 7$~SJ\}6=j bOf |d44l|wբBkDy/G{9*Iز7/BM q~ZQ·=f掠n)I kud{ W̹+ Viy޻Jw }ldpϟ &r$QS.4|x̲u^M'Ip lUɝ:iکԐ_jгz7j4~Ӡ\>PM#U6e6kQȯ[~4Z=M"E/{ot9q'j?XoKȹCʒN.?,Cki d%µ"vڅi0,>#\8^s:=;ͰB`=j+~bCfF T}WB?˰bnUk>U!z4a2l `K[jmՀ:My,"ƭ")#'@rØe MD$)G8 1K\dsB~} Ы +KZͤdH ]a(dTT?C/LU|Ʃ#>BҀh)(dʯʃ͆V CE@v*k@fX~F<?WǯVlQn$aK7s5IhM`M&7̳ľUM݄ b~%\-O`ok3B&|"$Q,!j^ ^)P۸Q.bǨɾn) P5 H -Q8F3@{cha+RuC6YNAg&>ќ1@|ShY.`)rl{Uˊs| n`•-r$MϞq$/>|t+mj*<8t'VGEŧJhu+[p+!1XA:;.jQV2b@ʷ9 !%x\[)tENR 6 &3=@wEU}*8E"!Y{3smd%3s0W0 ;ßl4.3CEljNjnJlUtcd{8^,y)@6ٿu2Yxoe&I*ꢫX2QofUcsĜ%I@9nJCC6Y18W+n:P=`Nd(:J XuֈcQ"LOп0;u'LA*&Q F|W4k̙C2RgP=Fa R/D FL1mVes 6{wn~&%K'Kȁ'{ŪWS5)R?rƃXEWe^sM/311`!ZFж 2%p~HX`PyPr #ӟ_d#ΐ ɃK<8ir/VMaU;i/*Z~`|Aj7EKuFqL =  'Gi G17Z9Jey}rpmlRn8Ocsġ<0D%9iFT_A)d9%ůRXQDW?["Q5@ c?SEq#6p%fi7v_LN5V{w%=ɱ .z H} 2oU`5B ~ E㖡BG Gwbկ>A6ZXWϬ8ūz54C Eݍ.(*a^m~sb]4f|0N|㊸)U'-4VL5*Ī_DJEE?Z2er>g~i9[(JF]xH\ؕ_A6/18`5Eŗ4,[Dw_sQ0G8IRTOTw}Q`@PhW2_uZ"Vtv\QEhc=ÈA4L9zTR᠜ՕP~şe𴠲ǵ҄z.,*s%& ]"65,B:DXg%ڡo=۞+0&z_{UX}NJu#~Wv{B^*,'N{bhXrAw9b3/wsFi~. 8I!孾AJ Q+*`A&[{AB #;Hv0[#}oN,\N/3o{;:"âWJO>nſ#_hd!6wm8MDxƷ003\yeWuS~ uںGw#;sSEYl%{8Q[ٳlOSO݁gc_\:9 4s=0h?jT2@nRb֗5NyL;imNmWֲ-H0 3^[?~m :i課rTNm 7s e]Yf9$+fƅg+,'7/>ӧG8PU)h<Mq5f0@5$h!N5ąl7\Q:*2[j'e^鰺֢#">gWIk h_C:eŧ*ym_>vIKL4V0z}@$d!UʃByiŠ8;-: /ALdv^}F;Zd TAJ.7zl!~k$q`Mxa;vTYv c=G^4֠)WZjwgS@WHVGRP)C-[y7ֆ X Zkv,BUI/d~DA}s82H;adѩԐ=mA,#3> YGg-|»U>AlڻoY"#Z<(il~1偂},uӢ&@6bA^KSz4W0, gRiӽB@-؋kYleG쨍 %m;!',ft*hɯ kgN Ћ!Q_ĨCZe3"uVBhtiJBV< buU*\_FzDЮa0?ƌUQҽl'O>p\ "y_FGM"zt: {~J.]K0t`~E)lȥ (!1*݉KYU, 7谑qTH,xTשWAR#6E/ .ikѾWYe)KJm߷v 4a>yyEwO1Y,{wl5S=M =+QwGeea/揖x` r?!vY^aI:!-xbul. dv{xh# 0V z2YL'jYiA6%uѢg T+z\K WZd|@5ФX+: rK 6_Chv{Aq¿!Pg0GcWϥ vaK+*e'UA[6f])ĉ.X[`W x{lPX)f1T |{¤BQM?$m~o~,jUV5]K` fF* Ӭ )KTıx&^/x{G[Ecw$(}Lׂ Zmz93R{٠ SN(Ƞ槠Zbz˸hAPx 6b -R|:fWBrͦidUd3tP<~z1z..N/L|Mj|m(@U5C55CNyѫ ΪJL| EMJh!0JUS ^"JRjG5^u;S.T Bwy]} P~ŕnyE1*Q ELX_D~{<1,4\iy{N[KdX<)!1|ǧgXUϧ72%3{RnaA2d(":a^xN.@7"a9'-Hٲ4c̸K#^!¬ҺAzqA:[V^\bf~쑗Kk5cQ A&~KoXq2ՉY t<!/޴o!Q\_8ie*W+ie]%t&8p5!Pѝ0)c$ZKOG-=zՌZd ©ٔ9ȍҸPcTU;>れU/C^g;N=5 U7}%t{3W(~_.Qt`0w^T'wDBxxɛ*yԷEPx0Jv]7A%cK#MۧZtV LB|zqUF~~{n6oAT8&r7xrBv[zF1p44h[WȂ3DR]DZh Qc^aZd!zJf∨,<ZVMI5R&"9B.!H*  MLiG; G𤒐02Vqa[́r^1z)tH.BYn6,ݍupLf{1ފBpneacٖiu4X)SBG)%}xLɂNjOKGK3*.o6t*6p^ӯZp4;&PQS^ߠ+2զ_CĮ~mC ";xT `ƩZrqŬ"h9ӠU::_\,ԝk77:>®| ލ5W44/)Q8&tWS,ք̵ }X!P L[+@("Jq[`1@mQK:"H0t]X*X=2ʋWy 6vF O<yTlX]5 ߰ƶCC0pm]wEw?edh$ VB&,[d@+6 ƹm]WpLpJiWҸ@`}eFPTo @@3"t!%{ Bs= HF[}@ bEloWTQf lisBL ڔo C}vXakԏ<&A+b("e=9fa$OƉ5`ʡJ=m&@P-ѯ@ )/~~!7r[e0yA0Н +dV] ])NWnj$lo;R=OO`,s^pmn"CsIn;#}c* *L*s; G/0u 4A[4.`%0'=MdP]%~vh%ds w0#ܴWP R-( $%= HB/:fsM %.  Un1Ԑ["s 0I ^MMmH5 }Po: %cs2cO[%8`LOPE@cpBO-\<=Wq=6eCssƒS*,sX(0f"?8ѫ,ԨmnU'a4\`Bq((n-ڄ^ԚϔwH#`s= g<0]W'WNHéGl)THs P7l\Sy0ZIzz% ]n?OSF.4y0>j_y?T4|71scYFW:n5 ;f|_~~.#̂I,:%le-.jyO&dC3~|BO /8$]aDwޖgX`(ҪtX)6ݫyQ[Hp֌E^r^~/=axꤨ_$:J~9 Zт򵢤Gt0I 4Dc n6 &Iq)%;;wPihTCAxV9]@Zy/M:`؇ <,Dz7!!0"F8n,6b.D@2v?ee\]'^qe*dcƎ@*LN<{ Y zq޴Xy5!=JC :0iST/Wԫ[NX|385##?{)wߍo aXC[PoXAG{3X/iC 1gX4~{MF7pPHUsds`ikzǼ$3BUbΦ@?"#5g!ҙP*1diX}~ p+PQ/"Z> p)9fAPX1!x԰91]=jX硛5 IբUql]`3@!e*B:0 4Am\&&[@]p':024#R-70tEwyCoɼ 'P4K!K!Z;TK:?/!~Ŏ**<[D evfޓd*WXC7X@rj_Sfjb|z5PKWDH9[44yYJ @Z>IRxF򠆈 JI+ĤQ`iNx,v{FNB1<_h~o5ϰ2Ewժ]zcBeVVmG/VA~{nDc@0G`;w8ȣ~֜ˈ>>5"ثWiHvHjYwKH O.9FT;x99LAQ|[,lF4?l=57t G/Tˎi(TJFڂklsJG+![k  l!*OՆV 3k)ő*!stA'd꤅X' k.ؚ n}HO -Gfƃj\toq8g2p)e]a.c",@PBn1 bQFek0qNJbAgg83@" DM,t!Xĭ_%g~$xxG s $Vl"?i;M C&pcscj%zG:5Ŵ%GbɦxG k4u|^>(1sVWs)ܻfhZcV@*HtiN чY"-['2?i_Z;2MHHQ#F;dzuMao$Vڑz]aATVpX!A @ҖRmP ?'XhBț2aDit nS4+;H\llXa+}@tdP%4EKDk"_GPD@56dWsV+_{un!faTFk/g ]x5!~&@˙ڬ CM#z&p Jm߬W&CI/^GF'1{}Nw!PNEΎg%W.1FCҺ $"ĐzUB0} tzazH[,㏁Sxծf2d[/[$b%~͡L)#m 68^ZO>@_D9y%SK3Zm zU(u Q\E?~ղ}+` U zAr Oц%/.mE!Cx. p{8[4%cV4˘yrMV}^5jD"ZV9Un4o ލ"b\.)fEgS@YҸ4Бmn6bEM9|f{g]](pV^5LTA1"[MbN1!3Y`sEhTK45pwlVTwB9 F਒^}ӼhߌBqB ?|QNi =ėb왺<ؠ#:k.!A9B28hVUVsRn2+lX=a8(ѝ ڕ'ؗY٧Ow#<ĐMh`sbOhįtm⒚BY&ORs' vTR0A2cavq|wbAČUkiŅ<+t @bk %)7[IKk!YT֞BG鑨b.; $FhܲՔk2Дj^akΰ}) #P5 Q"Y4P-h(xTN/&\-8XSK t ɽRw]n_x^] TK/'f ޕ4篵)Ӊ}K$m'>_OsZvZ[48Ds`A;ʢ9Ut. ŭ39n=qgeRBpLN5Ԡ>޸tL oİ %J(߯Y,b)p4!fZb{9 .G2[`/̡M*ehmYr2]>bb(QNL~(MF|Wc0% z݇;EĦ (~npHT]p:/UY[Dn=aCs}j+ HUquP<=zu+c@ < >[6WX# "D ^?##L+8Mh{|aBhM`Zr9耦_I<6tٌV}dqTKT_wpIP|M+ce$j}Ȳ'mT ?k2z.dn_؟7ۆbxV ΖA`!`YާIX= D0!r$ >"$SjR3kvP^jQ)ߜTC}=ql̑f  &ICH#e=2f 4 'I շ$$cR(cz5:9+F'4BwId)2tL`)tf@~#k uÚN궋|>u]~^xbXY^p|^k[VK&'T>POKmhTP2E(Hmw &A3h_f0cӢa:^a3Ei o?؆ d/+#Jf&7T}Y]W+ZF‹ʏ%%fERE"[*!6252b7C,/fpDi >2C=$%$PMB f+`'מ^e)ب j8؅zBׂ)3q͠-xDh`..VE2:~hWrf pLS5s<ΕuC~JrF}1, r[{_5@W%JSl9:Yv 1gSRlr3ΞYXr֨+W zw<2XH˒nwk l80( k_ɃD"S`?HCaA?ƈ8͗eQW,Âֱ$;Rc6T itL(^Z=_uVV "i1Fwm/ k7*7%ǦE.Ni~\_-3 $FRGЧz8!LaJwN),P΄.? ǞrPeq%S:XG Lg.kH!Ub"bcQ]D>NSFۉ.}]yPpJ%Wl65b*X_ab 6Zb`7\VtN򠗖M %R,{WjI<1ω1W{;e(v^ɃLCzqve}AX  :dd(ʑؙPȆEwiTZ% ]%=#Тcjp椢%) ~a$($߅vT[;ݣ !•Vy@*;ݺz4GVmg9^Wc0/)89?XZuYcӀe<X+ >(yDh Է`IjISѕ!!ڎr(.PM;Մ~R Nώ[Jh2ʥW$x8W8ftfY(BkטcaSA.sX=!(Kt-< Mif[bP{M^jyĩo'A m}Ňo=<`}EE {ވjLh"ce.9yKsU32R`o`ǭhBFqB ib!:|k |pA2]*Km.-<ۑoT) )hJY)P9G*(Qvukf/M)3kd{a(=EȹP/OFEM_&LނD2 C+.ʰq=|5ѢL}"@~?b-gQ.# չCr440*& DtI67)e9r/2G'8* R!KD%V_7W"eߌ h Ų| p PC1ӫ# P]I$s+XUY ]@hCԒ|DȣZ_̘zܼ ~R ]Zc2!\sܘc}pl-0WKšrǒh&ORv9pz~d 2K/21lqaFPقQWh:=3P+sUţvXעT,?CҚx)J_㣟Tka"V *79Pd8FN[ʭBC.;šɾ'&/7PhSF"]0]ң I:܇~nMji_]ujbYZ 'Fj>߸CQŘ%w?LU2nh>`E~0%g$ҫ0xg:Lk:5?S5!+xg JŅ"Н\&*S@pQpHׂم+ 9'O4OM)mR~86'kT&3É:ǛM-Bͯe F0W=Z┧)ʩxbupt^_J;G5!B'~~(C- `"vO QޜFĽ ,5ʳ,&?PodH$½>`9 ɲwcT!WZ6̏kj"^`Hꧏ޹ͮ^̒G+ګ_F9ϥ>] ?siOqacuܵrjkú ٦8g,]1Ր M3wVs^Mƹ콺9@ZJi,EZ0r &a8bF,p zw$/&FK{>Ϧ> tOdlw<'Ui bj`]La"1_Rd(N 9nC؊>G~֎ 1v>c=Z^;rّJs#l΁8DދW]lWJr5~F|EH}W+Xu0dمWCk~tUy`eE9ƅB_s(G(]Rb˗{, 13O D~eEcѯ b09̫X!~@~[˦p FR!FKp gJI+p\2v_&:r`Pś#cI^R82{37ռ3k33zUlbސ/gɩI,Y^{FLȏc ̧5-[H&f˞osy3Xaj7nXTb/;͠i,vT6GDGY1[ ZnK_ZmUL]*^[~}xI?fit0g4n9w"R[݋'>ǰv <=&a nߙ1psہP ȥQJE0 ($qM`X5Y)3ӂY~N;5cbHuARaNTl{#0=Y[0/n'r0znBDKaJK\Nc?X? Qx5gpgakhpj6rHNOXV-eNq.j9[W3 xzf=ޥ H2uT=u.ҵhb>L~fGD4@Jxide⏇il>ӫ3=p1t0s I4 RWT&qNOvF‡2_L|wln U{T؈&?9k 'Cx6QAxL s?G}[;Q\,+L +j04\3{y^߲lP?$ׅ&( y'ݲםW=Jr,E Ѯ ){f ڳ*VVmiD<װ涅H,Ѕ,琹e6%$g&I7 $I0R"L||&ԱĊu?}`:I ekf"j%zeu/*F|vǗQ_t#.696Îth/aEȖiN!&*a{S^5ϊg*֬Ƀ/LLox`m k8r,{o2,Q~2m _ߔrsi'M9Ħ룴n,´bAiq+v%L$K!?4W 47/F}DfYg&@E\v؛ű jSx5+`?DfNa9DWvL?A\uʩ{gr0v ѳ-UsW_# p /%ᬝ"- _^t}gK3C 4z rgBܟ=Ce#2/m=GdthjYbV)AYBhgMs4)Fo8, G=KV*cw.(ЍA{+: t0gʮ(+Y|CFf{[F+S16 fT* UUtÙSǭȒ}Klez8,HJUʟ +kWY (wI,+֢CAtzKx{ (;}/܃QqqÎK~dKc7ZU^.bu/Ox%CIg.iIRQZ yoTL!(~7kƖ+ͪUS$u=aAWќzt/ЇP33rCtEaүf4*6G28 (ϟwUJ5dWcƍXӁYq ]n'[o{qUR7#EG ;AS6j8\-^:3ȣd}z@7ah8fD؀6!RU: -&ڡ<ȖoɃ,_"y;yP'˞HhfUa:tl*Po*];TGj=Vىc>}7ڄK1L)ps7u, 6VVm1:fŏX5*’G-&__wf|%EC+%?;jkp[dAȸ4ۇe Oa4(c$T4NkAƏ|'`Lwr!ӹd6c]ىP΂f'sY ӄ8PF ;, @]:?S#YiLbn@)lۂx;ij u+E~ZŒt@9"4_[qB* ag]ټHYE|5LYjGI.\"^*6"! 5X'Rw!jġ0o%חSu΃_k.@H: MN6תIo"葚;[ "mQݝwkP֒jJ@2yv49z\bN] K'8δE,HxA/K30&ؘL39$І">O !<2%`U`î;vQ&Ng W+洠C C(+!EG%˜Ar|0qE=۽}:Xއ `*F:]q}% [?Sf9b>ΩItC@Φ͒A9bCB񱦴L g2^ gu#/G֔A0HqzE&l!q֤+׉Ѿ~zưo2ŞyM-yii&R)P?<+[㡫)zX)6[K8%WY-~YlKOhE(Ό{`=wSއ(D꼟 (Zö!%dn If ܳ P'R(v6')={zI'9ڟ 5\d B[~\^BmܷIqeάgCݜL8k&JO[בZ%eƫ1{T`K% Pq yGAyMXFWx5̪á= y!ҶN=nk00Ǖ=e9+l&):X 3懲-\_4ѫl"aH[?2+=zzuԵ@q;Y %AZN0P_6m#q^<8cTP]E[ hA.DX7NXb{yb]Xqu}0n d1fzX&th21ty۠3uXKR ' ^q^IvV_&ٖc̚T˺A_* %dQXe]RWĹps,gfj9ƫKu%?@S$9?s-"Hgjc 3e\xvΝlW_;ϙW>lW1yvl?0Kaa\[dzXɵ&[iD63,hd፹l[dz(h40Lwř;犱ԓs-^y 5,]Ƀ{ ƼAX3rnÚ<(4`? Jq4wnnꝚO@@M*cKMtEHRY"`:R9` V`kؙq τD`6=C ?.U"琤R=7 ٪XtjbJg8i_ Axx5v,^,R0ih&E-KS)vx:f)##gՀ '{IP9[LېAՎB9ԅ(;Sedj_^ c5Qi &mK,S-.ӲqJȧ;LA;\ѫjfc/QfyxE3FJi4܈6ֈ'qBO*u9MC9e}^=hʥVN##U}J#e)@#Tג7Z(,[e@i9w1-hA1-s/])}=;V*H0S;[;K.mC5s쪓D{ 3$Yec~@ѝi m}T*XZdmݳqWĤRC``ز1c_4OOKN ʾqvcr擀n|UZhYaFxjv 5-EC," .uo'LZs^Y֣WKTA.Uz8\JMOk}u%j[OUU|/t'>IBV)o~`<MRGSt@jAJfLnC}.Aچ0^MlU;-ӎ3Jd1OQU|s]пV2Rv}] q,*!gK .n!34Fy5} z{''i27vX?5.fXh -KSjڜ*Z0Q? 12-@?1;aWk݈ ҪΤWyq7 u$''| c-5<Ґ90Ƶ|fgwNeypiE{Tf! D[k?_om|FQWiӫЫBi1hFPGG,+?xp$MTo$Ƀ警:T(j*ANX8qԔ'gl{*9Mo[kb> 샲,\+DXO-#:5BsF u_58\}Ǵ.N 6fG, ',Q՝YcDYof|F/ hq]zl戹J22"IN H[͔e8F,TFE6]5xxOGwF*dzRѦo?E{cg0 X`b>iR8dlt#8h)`yPZkDS+t"En4XwDr^ѥW4bx7rec H Q޸y%+ h颩ѫ2<)i|Dp,^5ޠn;S֔Qcns &^νr5nV;y(9bN}v뽄 7Oe( UrƁ6 i6BRŰ`=$)t|.t(*6Y7(#/ Sb#:|E@bsgNóT \!OS]i/>ƥgƉYWƐ1u X;F [_KAG_z"L1\ T7tpI=Ňp|9NӅN7/vcJ@2OͣWAǘ&ڈ$xz,6 :WYa->Im` ;AY(Y_u 7C8PqIܨk\'սR0wC>%?;6JV\ij螞2@.+=CD9hxlC>µ*vcʁRTk/=~ 섓q'vo#=h KM@eU?Ek1 ]Φ' 0pcp=}DFڱ^ht ;!Ṃ2P\G ̞,>FFN5wR~ŮQD! -mׅ,]ϯ y 3߹\< ޞGzFBz2z^UKQ<WOx$0ee&Vz'ry+3]&޷G{C~[ɃJ-|e^<?>tQ31,ovf@ug|(2$;0fOkT 1Ol kA\*U~=uAo8: 9e}BssɢbOTkq^Mx4 l`WZDE3K%Lg%|8K[?V $,8)`'yb0^Mͩ)v2Şlseh)BF#`bM"R3aEzJ1 i4O̴Vk>8g@\.fTBlM3tcB' |R4& xTκtz**GVv^WJѮK.F3_*ZL'{!FϥrXaFKw^#\Mjc k + :9+orc*0I<'@ޛXZTQTBH c<$4ِr( )(wĉ X2a^)b9%ƫZl f&~ĒR]yw1βd P{<.,{yް7Zu1XO%'0QS&Twg![yFSc>HQ'HWYLN ō# " J.D'Nv,ʞ.rw%j`ْdH29 SWӱ>Y $*r9‘^I̐:ؙ#.G"`n ഃD Ƀjv:IYWɃXtk{JE+L-| 7=Ÿ?Z mϘqchw1pd}vfG@ i[ssf +cU LFs'j+f{Z*-g{9jyMt]]Xhc"[v(Rc#'GJTWWH!k9 ޹zɘTG˦hr9ɚH5 Wn`!s"$pQx$1ːqף[|qw⡁{:ët\0)UH,Ux&Ѕ*=>2J8C}ZtXLIk#^D1N(WbQ?keYe;VmeG09ll*N 1֞斮 C\ H)Q^ؼ;2@_B'{o&e!|¢~ȒL9! EEV䫠tU$Z/dÉxM gEO] "îvr2\p "ns'5mᲭ WdkN>ߘPWzZVH'nPEzE#+9Zo+SŮ&wwBgQ#{ lDGBn\m*yao10Ak/v?D쫃SB}B؇&ÂH 0 sϜDnA̦ގ"cBF"+$7X,fװ`_4rqURWBn%a(<)jݍe#BuƭKn?ݽ]q2gɤ&x\<+e9iHqy^L+AzpbX8v12Ӏc k&}=zd1W{^MȋXS-ИZ_Q|U@oJ_sUh2*,l;Y`xTi4IOQ6CKx^G?_!X~'X9N}8m>XU1dj&rΚE:y˯Mrˮa>Zђc|r!R0ڍޑ><!*  p!)I %r/2c cȈFl:ңJާWPK\ӗkElt5CAхwFuS*83jMˉYQK_l扚v_PWίʏ-6zj P0bK > Lf`>`=tp?(sskto U,f)Zz~'J(1hw&PuH;&c- Kld uhՈ^M;Ҳ7C$܊.Y9`!t!3-:ørwѾ0?a%gu8HVM8uą0[ ӪM "Z'YF7%9'0L#AP {2CKNz_-,EMPѝc"(?4ky˿WdP>*NKGD{jN'6 c8"nZTbz {</a73 S7xyp镏a|KpW[0R,^{j7ypQn ZDO/+?`P;6cxĽKǾ*⹜չ3cQ #ݰx5%xAtn#=G LS.ӕsl>)$5}_:R89%KI/&$%ӫ<ۊ4+f<^$0`0>$ x䌫#V^!~EwhCXB4L`Feg"3\jr5v`@@)AItpDF#,ꇎ&vO6,"5h1x~@,M1:,㡎B# r0",u$l|=ҫ V+R\TՕGHXWICL.ҒX_IuDC@u/aC;a BixևܱvLܝ͓YӚD +I6{wAiW4٠@@(,g[2oH+7dP2'zw*Љ')Ϥf=qݧfu]'+ԓY "hq(d?]3HK ,JFx*vOuW/.֗]Kvhxo&,ɳ9,GɡL\S^}ۻ4~"P 0"NܗXen3W,7q8hb,V/<$Fm%+ pJ#Fן& n**Rۣʧ^P=t9>xVRbAuA@՟sNDuJoԣz'7#G>5L;+=(ؔI/HkSf3+pQwwsu.\)1yJDXY9[,X"yTh )faX#t#JTvs&mJb#H%tWKeb1] H~kH+DVF.,9_x\K;J&y\ [ nYHaGhCwҎ%Q`-G}Zv_CWԇr^! ѫsS3^uF{V i0BhbuЛOK.=ZKA^EVli+kJ.9BY_Ƀ=zO<dzک웏_r{3φu'/iMx}njG[T-6ρg Js}d3`2sXfT %d;˭k;O^|cw'7:_fQ&_s`/<%8Dp .ڍQ>W*u2pYVl%6UOZ{S3 Oy7GcʎY3ΚDK:\ M@*{EXDMu0*PX9#eF˩~kKK va5=V!-I.GTK#~A}{j:АgA C>`]B~DJVC~.:rpE0wo^ %80'8' rWRZCyQxbCr ]U٭-C`O_*W I#]lǍUz%B$aY4SysHeIg۶q`b+mytP ;t=zֱJ\ØZ3N`EM ~*6 ɃC~]%-Dz|3>fx2??AReF|4ws $5rܱG\psmx= G^J/Ƈ&1aNb9(gSc[Yn$a|K7nlâ.p<=EV[,d8n@r8Zb t5k`Q;@-)O<LeiV$ٞ`#9/Мb&i%QJ Ho#}59#+_ q k~#Ȇm+{nIx^·3tRZ@IA]4ӑ (<} ~ &@.6a{LaBݣW"Ez|Tu ^78@7Y_YH =Iřu+y*3|G>{@lٶXπ3iv&&_ "HG>,[y`z /Yb86G [r-`+I㤈,{+g!p VOi] .k0z7":MScȎ&{E6Σ`lvʣ#%73j~T\W#-׮ոbF4zHL8m> VviHOL?ƀ%7RdlpIR$c}$ CW _a;3 L4ވ^!rłM$n A ƺESEQ~^iK]r0y[W]e}w#1uݿ9gp7Qn$WMq禞d}g;>Ϡ|iD6FvX{ 43t9Lp^xJNBxVl5'2>ܸwS240٨v1˰> I&# w(E2$ $ÁI{Y-+wvM;puh:v ݽ{ò /D`Z t+p q~E@c-[˖  o͖ZGDu699a>49Df˕lf`Os> IJeꁟ^q.hR KKf^ysK{+W<ez%'ơW+ez0Hp4܉rJ^SK 0nP9*!,ҫpPb R917k˯z%؂ݡ ژB8iA6z2 "wo8zk͎`&)~{BH1$BkzUWe#IRo3qa0dc2׃)?|~R[+`>Ldy94ziptro)ZdLF aG3DŽ-DHT8ATuYY\ njV^K$"Iͭ|e)i>ƂVpǣtEfaƶ\z+fԑ#IT8pUu +ON} Z-;5HorHbqI'Vm 95PCĔє 4'XU0?g(z S: w*EiyX&b}f;ml}/B:7JhM0)ȣWUDjZH|u_;O q{_DBI,ia^O]ϳ7Y]x @)۷&|xt0+f 42CgrSstSE=6`+>l5Mgb!(zeoZVȫ{EKU9lM#3i3znt7ݦQм9wE}py 11XÄ!*7[hM\<ñIVڒM AAWa gx11LRW5ެ!%]AHMG{fNV0˄&|BqbZ@޳R݊czH3{}f|^q)ģLqE4_Z?7A.(J++0& DD>?cz$UKs9G/$Na4o)w>{0f3\\a6zk?7奁fdD"\ӄ9Z %i#P]jJ&ܵ]7[hO_ ld`%c4uT.Ռu kpn4gl ?zU~:'+vsVg,dwIN'X[rX?3 U Je7X.S- 54 /Dϙ&`.p}0&ob]U44p@LNt5\ x.٩hx ^EMo^׷@{l4BzV~ULZf}iLzI6ӫY۩8ǴBllzGېQU6~U΀JEpXw|PnEfVwԚȥ % XlOݞ g9tԌjkbqo0}~4&M +`B:Y-Q|͵ o`G)+2Ɩg4{"c/  T`Zl !*7*Z\ 6S`nӱwØ,{b}$/ haax "w0X9Ͷ֚15nWrAC623dL _ؖ-bRLp!!P 9@Gbzefѡaxڲd+?B]ɓxxi!,S'J cLASyۮiINc c-}$xVwڣ\r a $rX+Ps}9" ؃Wre`buXFn)s3MSc!1,r)>D)r= aho)1 V γ:,'9g6Nln1)ƦK }$fpvűkػsX(r7tel|*F h|dtלPi,+8s0O'-?|MF%#!Y&B,=臼 XUup0/-@73(j:u83ˌ=GX۠K5=jggtLGDz)XK$Z^_SxP|Ez񜝱 'jeSz%W ԯ`}%(!n}uU!%m]^ۊY$~$)h"$q*-=3 YI;x{X ,?+lHN}u&o -աņy$/7VbqL0 ~tbU>k2lKL@ܰgCi>!f|4]w-[}!!F[-MRl+dYsQ|= %B7@dLo܄( I{Slet㼋*zm3{?p 'JZi|x+v5]\, Sw!,.\$g=:mt`.64 08##g.(8oA';۔` !e6)>[ ^biw%pua~fS:)Em;M$W=E O^Y jn%n|^49HMj,=9c ?rS*fu?D E#ZK-m _OOG?Θ=T5όNca J=9f\rYI.^*%dh-*Md[Sݘ۰"{*Jcɡ=ntN,B/OmfedK4CF$&dΡ3M<+#ya%;qų;5fwP`B-m!ʳ@ /CTJsUZ^=~s¾Q <cZ_Rue&1`Wqx=g hu1:J q\v g'ыUi 7Cgq?"{b7qu2ky}$={eЫO~JBb1iG0#ny&pԶEv6ΪW{{*NL{RȌ[ߪ}*p/SqL)\[xU<ڹ7F!p=}kYLxvyj#Ɣ3Xpa-RL#zE-)aEd(w*QfS (/lkAoZz@SRml? nīɐ֩Y 2< /j-oɺJ+{j sy|z4P|zbƖL^/[g8bwUl 2YMbIĂ0ܢLuRF'©DJІ8a"+O {%$ӫЊVƝͯ~l7\!LD ;ِͩ%"`G+6C~tT? l~JjW?j;k}UX,\.y *KKk/̬P.~C+7H|L8Ѱ`LY ['\q+62I`o ag/ \ y֨@4KvRڹG!)pa wY()j.Ľ=-iCaM=cYz( H5xnـqetIP;}=g 1xȫ pv Շ]S*(7a-d`ic* 8^ѿZ`T\:tku8]6 )g01䢙{yMr GOBW~纷 4^_^E5!֏&idӍ}&5;A g>e*v510[F1bX3%' v߸)3l8Us4тD h=m}7ZB)?NOjjЫٓ /פ4wr^OvZFNsȃ}^>;zNo\"`4Is+ِ^[tl:*B?yйecb:)m҄?Ҿb}~HS`脊(fzv,TvHRj7Ϳ) s#5M}ogQ@uܐs ཉ*? P+M~YxcP!"_`#Rc:S2(B'gW7z}V1@/ܗj 嘛Xd]2 vс402NKkI\(Yi .0Byߢݹk: [nËwt0=Z3on]mz+qS3+tjJ͛%LéT.y<(I4-W3,"/9DҺxq!1Yϊ'DhJ+"y흫=^oƘ^t`Œw:jfA҆? pz;y zj=*WQ?Ы%iZB/߆ezEu7 yap] ޡ5e=Rrg ;)Z&;_yU|y<` ?P[7 lxg +9j=X&{#dCNuTMyx6>$ ʰ82LP2?Pd着d(8fݡY y&#0ͷf4&\tM]Gk@cXN ueMP`l4u44z[z [Nwa6z8"fvfѝ ȯ)xIN9[PV8n3 J-K &umJT$BRb^( EÞI[$:w1\P|2J݀$MbhJ*Y£ڹPΡWݗLSy1VDZK ri 90>̚!EgH$ h -]<tRo`XY<[<ԕ^3f )Ȣ3;;a:̣Wƴ >6%ɸ橈U 8LIxu/cTmУC)hfI׊ GzEw0xI(;n~zqIn ׇJ *)ЫýEz3=*Br;SzIAhXijU\۔so~as}wOī z0aX gܴѩ!X)]^FMფ ȧ) SHR1a )IwAEtPhXӗ = 3-K06Ê,n˺ۧ_KXMp ~Өx#HV]Ag,# 4;ѵ| udk.kǹ(Kg6A`ی;zt5fbB[7F qڦϺ Dk,1Gz>uN}N<.r 06둣TB&=eߴqר}y㎡vl?S߫2rb^QٕF@+**ɢ _.8Dz%|MIFgV^*kߔVd^nV{~[U:M-6wNzHbL_6j+_.m /v嶠> S Uya#њUeŕIA;ҳ[f 5sh$'Bg}?W0Vc;eHm,' 7nܚbZq-4b:a٧f@8OCwe+J b,fɈӼ>ÏL0Bpjd1p0֙x%Vܽٯmu79j(Vb+ ű H` '/l yȿ%/C$q@@ ɒlK$ՑU{症ٌnεO$:gn[K'[X݀krձDbTF$u:+-~6D.#JWՔcɞZYKEi1V)*ӫpS cu2UG-Ы*9HÑn^Ы2w5K!?X*>f WQ`].~/\}}q" iO>͐u<%$z`SGkl.:)gg󎀔Dk-֮k`ـ!~wj^]:E9.LgvPCngt~,ryÎ3h`t]W6F18s,u*啞&cC2dPXՐ rvc ?)iɚB]33F~~4]Qל^ɑ]F7}JЖkQˏ p 5h9g:fN+cC&L#.b2nקWUsGfsB 팘3az7= Yqf@G#)&Zc^G=4&*aCj*ɚ&^ܻ_B)_MϪBxVJ)yUɛH^o'm"Pm]~,X`?F:O,R5&C͎8WdhR`=)$-6lShcnC#3ߪHǤCD5{@'s V e]Cnl*BW޹#K00~✸utבc=ހ122:1ХX 9@P~hKEވ h6S~ KJ}\εi/D 8C<ЧU;K"C䆸 ^ %o9@ Ux r3TАM)=zE7A%hQd50BWʥS3@INmһ"HdKo5%--: ?C[xT%]8m(=jhB",ӯڬ10tgtUިVgC5vaJ*VR%Ba5 ,!Dȃ#"􀐆Zsfr6ٲjXR'wZNִ4**2 +m҂^eS+y~ 2J|9ze! OtzF\PW>rh`sɍMF@_Ӡjm3"/lGNP Fb fK\.'"Ƒ&*h媨egGTym̄fwMЭǰ"Rx3%BDY.*X|(AQĖ[u-bf\-PqJi%0KD כ,E.nX\OZ[&FHRYA]zS͗!X/8rCo6Nd)1679ꃼ?Ҳ}~NO#t~ʬ,Y@.*.Ut#-1pCŔ2eCAuTN!kL?5ϕS) +M[]V fH+%4J볩d`ѫ~ &W.P%FiBK 8)d}ᤚ^&daB{e]dIvO|֜k(]_w )۩k~.O͠Fgt[VǞ𩴫H(bKjW%ӫ;)ut^#f^QW:#QǷy,QW-X6[z(;8|&ۃDB+3%q->ծC3f&җǪm#l,TjASu5';3godp>UE7Ww-^").ἔ !JTTMn0]C'LEK|rXC+ ^1ZvE@Y`TGn-]AY<1n5-W쌻SUPD2׍8a ̸u] eFI [m˫԰@5!zJS)Jd OYG̷J7|x蒮)4zr^ g,y~LH|JФWzr-^jtġWټW檡 z@&- Uz嚂蕋L:vsY+b}uZaE2G_q^O86cRA4\J%.O\!|{7c૤FA^C+FsJucyU ShO+B8XHzn@c^ r >`_˯7 F2(y^: r~bz'̭0ư~!&"e]2{1J~( Nf3KԵ -ɭ1pX5BE2}Za6SrfH-K vX>@ʉ6.$@ |W e HפWUXOLU}y`ˡRyL6?UukF "=80fk821_d ˊ ӕhNʤW@݈+U,4 _1@yK+F`vЭqWw5P,fpyL3IH d P6W /[kdZhLeJS5O;L[b&UhOyBq0_3ESKuRV~bAxz`2p%K32(ÙY! Y1\{TF.+* ufkS҃ KEB&:DH"6bpT{EdzEK @y`7 C˫/XQ x*B/#JxV?FivR$_BAusɠe%xr=V% j(פNy:m^T+ubq# cF)Pԣ^Y2ʰV#n10|{>o5f u|؆?|ʜdL0LuHKID-,t\ֲqVmלʢڄΑ@^fsɑ >bbXq{͌[Ulb fis^&w"M%3izȋVD{{>'J /(^i%r * ,ysW0,$@ X+§WlT/ݤW-S5^wOĢWLu81tkDD (׳Qh bMb/j{a2FtrM}WN*g&Kd16X,Y.($23CB]˨y\jNa b²//L: bZUмvC{~ ^XEtar)vݕZ]o@E]N%Gz.ed#eE=i7BFi &2$ # eGZb"NXbڦE'CXuU  RsP׀wnjm-E壝U#{zPX8":/T[2 H#3 sݛvv}8Д,܃+0^'TЗPxO QՐu;ЫovQKpE3G I\wb-Aq]P`5 gX5uҎAěȄѿ!|bIRqE=Z>2K4ML)YGU 4 `DuN7ᒐ^LO܀n1:{"(PyY{؜ lzdr1:\5@O^i{ze:r%e)1RC1K>Ɍ}2vA5vu4O"S,ϯiV` ¡>Bܹwd¡]c\MO y:@cuJIua+ȬT|v@kaMQ0# 4`ˆ/ uےeI+x6pY.y0HRy_:eHJmBJVL6G޶GZWZؓ5e.`\l8ouwAW69Rtmji)Jg@9G34Σ+{#~q4*4+W.98! *HA:51W2"DGcA!$ VoAʑGtQ?GaJiR-.UoL'LhV/B+VC?&gW#/z'=۶G+ .Ŭ z]us`YINux TKz^tWvp%8aT(b B) `jbf=6T]`S8D11*;ШR78 q &g_Y<.VAauxU^OЖ aƉR3iNC/Jlct7qOd5$GNFyc1DYGA\!gX0eo_Oa,jzāj;6>"k'8z%3p pxG_ܨ <3$=΀ ,.$gsoJ&nC)Z+a)JNlEp"e*h[嗜WC 1Sz0R0ISCA Y$cVji.Ƅ_I(hGX ej!J:W?&^%\K;vUe[n+kR= .MRu΢W4ji;){é*Lz|>pMIv檰\5!bmkwvS_2Ψ uFp L8 AsTMGtR2 ˲+_gl̟T6rnԔel[^{pR)z%dF i^`6cS:\nplt@ 3tIzb;CEٲ2r%Z* +*z^b_8Օ}F^ُz$g)CڇH=+$ ?_ŠMMnr}S}B4Vn Mr1h:.a 7-r 0$q cvW3@{BMo ` t 19=RВ@rfxIU$H~u`)lCp&TPS*e込tgipy ʌwpa.:#ɩ jԡexMu>a,bN>KwlRrz4z3Z lV)K}B %:.5/I:֧X{f!^J/%cU!{ ("q\,_?84ڳ5}77*]Wՠ1+KnO Ֆis(3WuLz5B[dCCWl]MBi#OJbƌ1A0[=jx~h QQw7\IOCMqA""2y-](kDtP ;\H͵Ԃ zLտo˗ * _Dq[RdS1L6v50AEaGaW7Tg爘PjL .r}AQB]Y`io/ϱϕ X Qejg듰z (K所~B[Fݔ;CXlFn0:&lcԾa`zMWRJa.{!tu65,Q‰8ssz^I}J02ݭAWC °ЁK!d&kw r;^n8SQm.\ԵjE-N?GrE"UL{iI#+#jȯp1gFmH#&=}ɒs3Y&Y^6Bt!\bzr*7\+7J]9?Ȓm 8ay&&yuJpui?r*C.FtA{)IcK+!ujq7(pI& YH!"l:%Ndutp2uR}ZzuE#KZ`f>hHA=j9-!;k]hReau1"B'kv7,}C,8= JbM6inmA@dR$j4JbjbAbYCxE9Tc}[Yc:JEG{(=0$a;UPm=9)m C L,ofb7DVs@WS: Mʞ+/>D7nL6է1j߯ϘtG*JP3b16.M6ơZI2/z߫N֘pitCuUU"LS&f nBWJS&0UĶp\0}&.x R( @2tBhh KL>T7w%yTG|&?WcoJ!>bDl):pj9j$-#-8,쁽1}L@K3TJ;1PWr Ϻ;K^msYR C ++*[L;N4d%wCМRD1M $a* 9ڣRzFG$(G'= ~ 2@DN[,yH\^Œ#IW:g1CM rV^yy|5f]8l'.MPPI0Wh7]6|^QԪ߸zFz8Q8R/]nͪa7Hkc"K'3-Zmv?8A2 hKW#j"!VD/[ryR[4jN^Zk]4@d\/V$]a C8T ˀʸ} n7痂L#NMS{aC=j?*W2CzN1J.&21 |#rSBl&>{8Qp0>ҰzwPPP]~;'<3ԯ1/xYMpS\V7pH4Reqʷ*ߙ%4W U+ǔ6}5dEs5zG?۩2+yg7sɭ@a`S)UOQ^%=4eL(hYd+EMu䏄c3I@/Fss,ҽEsOUA:C, mbAZu#-:zE-RNK uuYέQ{2Dk$e,JDjbE#)QL^ꞀIWޑӼK+^m*^)#hrW s^qtftѧDƂj;QƷ.f>p#5k]yNԛ[{r9dÅ،{KPv6,bӮNh'(XAHa˓hJV@CB iR`]z*Sq)CG`5p<4`dS23P~-Xu j$UBX"!#pZYf EW1VZdzAW-J4oj5 byw2X'}ъZs4,7(@M2^#⠏* ګITSƖL448D Lz%CmWθRg^IMŀm#e ;Hj\0h"aemHv>0k& @ehڸ2"_ 9v[qe"L ;s3sgqA Z>KvNi$02ciZ#Eu]%J̽?L3eE?xOuifȱ4^-<ͷc`>FlXرuaJPwHa_!W&Uk z[Uc;Dc uhh]s.FFsV@\;ŭZ/REo fu'}k:4 DsX+RgσiFUn*8$l-L#[zE#ڵ롱dCd7PD3YNG' u[=Ձ@xF(Ib4ǻ.&K^AѽbH ѫ8}=q;*1mEcxpqU16v X)X҆9E}jCjAףȨD0X<*~+>$8+Grl׏|M\@HM2$iG'rsP8IC4[= /$zpIY1vwut@U4>בnTL1)kL76'V:F3קhe>M:a &Y(Ss{M-8f Pݐ@L|h=/'iXy4x@5!-iآѓ2ΪjˉRPr=^3GAUzJWi/<{t%So4ZIJe-toW<671Co HbwI:y@Sz_ָ F0ʌ~e6U ᓗǽG|MrLG2@n+)er\{!>xbrF;ۙ c2uZCJ"j)EӈD2Gbb\GBg. \=G՘AnBDQXQ>&hkC}saɳ9ʲ 멚 F5b+#bS*mQoa#BXo5?a}F9U1$ZCD׫PY?ԇQ̟B8_/(TLD +2Wr5@T4jVGX-K镐IFLj΍oKO4Qz#HZa|Tt+(;=zV | Ћѝ@豎  kT=#9* xl}kq ԧK,vBI͕RGuFD $*b8ܧߢWW0U&.j38n18hYtbj!XuiDxzHАȧK G\R~M3co1vo}j hHB͑{[ZQ#}>b,zekšΙtk$VB8v Sܠ$C/Fr4;oXr5bg+=@֓("D{3Ȭɔ*Œ!4fAj|&;f$39c1kGc ajF±$]\X3! ^ ]J i) daC1^'G#-4F:"cz2/c(>dj=/ZftI-e^3"GW܍3V>}!zŀ<ҦW_{/v~W|_VJbN+{R+*q6z ޱ]//(* &8 }n̓mDA=dCH c9;պ9./:t=mY!kWW$3Ű׳\CAwBZc4gDW09]@Ɛ[XL H'E܋Ngʏ= 0^ph&]:g '4vUGɩ|Ë@\1v zHYN~(u9>lޚdV&#edV` pϷo\tP={qɠW+񣕍>H3FGdj1z"s~!2C*dq <2ExL{*ɃClɯ7ͯ|klWLaχ}tnч/>˟~g/++yϫ1ҫT+Ա cܲwF/gFM*IеO8*#J\ԌV xogM佂36(/@+.4V@&hSǠ]{C,[¡x|tv 2\#..t-'j](*U#OD{ IgwkT2X61q*9:! 2݊0H}_I Z\qk:FIKk%oW#=I;#'gfj'=4mec20sBvrFW!tƘ+YtmƠ1Ő3dD1SMzUrU~SH^%K1˥g5Hdф2Q)tL0e/e^Q:wdwӫ緿G[o>x}w!&o|Gwt[YviJ(jbzQ m]H>:N`FLg8(s1UEWF[2DͮLl, ZuRv )NO@ =Bf@*)X jw\"Zp YF94]?sY(YM >)]w6 MP|i,;|515 f]I3אʮJ!kDzEnշo_;lUʷ)3ߥ|t˙iqW~7~5ѫ4FRO~o۱䬬EX Rd@ k*&L/cy_rlYj54FGI*~l|UeԖݧ MZG U{pl9vVPU{ )u4Zα!ӓIRڋ#DZH<Ȱ6PBN4LQ}-EO2,)򦢛ˌVhd ~A@kƚz-[0B|Ip$|{>/ʈC%'cEGiq64{;,+KAM "N {yAhEi:&8,;ԭ|H!OLc0UFhbBW`$1ObGvcft^'I*Z Wf4EsFj/WR4L,jЫjtחqJp GzU[i!gH{G^~_cGn/vaχw{2yas*}v_?.M &ou6k,wܶ/h;P^D3moS!Ȱc_h*p:U'%PaܝwJ;Rc9л~dƃuvyIaDORo?m )['Ugxa%/ET[>*O[s8azaj$13k<8r*@4Š/538N1?i}ҩ|glIZ ssVP9Q@uN`'u䏬N`:#'8(b Aq1{xg*Sr\f_ҿ6L*MQt%A'gkYgQI!%ץWW("]rMWeXҴWIXe rZ]ZDT-0u4*k|븖^9X^3'\sw4 ՞ 3;o'fs^ܧv_|ws.~w#,leA޼/W￟|Rʱ6˔=uP4#rtdY@"]In)Tc@;U(nU״b6 0Q9I&ز UauEX Y^'?҇{p}'5b P:[?E9dvn'Tn,ΦuyDK4/MiĝvV_ -] bІO W8A!Ǔl :Vr<٦’ȴX^&l",>5Y XYT.EIXc0%I_bT( Fo011:GMFÄ70k:?8Jr;<=i` qZQAɳ'LԦLW6`(!%LEs3éT^$}u"j1|-6-(yziNm^5) BLtezEetg?'mov~ݎw]{>yÞ{9ml6vfŋ7f.{0WAyRQzum;C+;Ɗ^wZr/'X ;ُ_3ڄ-r| 0i ʽp?]ƀEW!C8RN5JU uf%[y+ 3Z _ qg$E=S,3FF F[!AQs,UըS|QpE xeDyS\co hM529, <.d#|C*eh,䄲jwh˚goӭ¸Bq-mO??iLXzfXq6#F˧2lɆutJS[+1&tR^Gv1f c8GMe'ޕz Fe"lz%^1JX1W$A6,2 τs|#;b)v,^=ʣ)wx}>/ۧv~}"vYv7.~>/ ec}SRR Ыe="e6').OZȇUoO>iŠtRKHA8tQF=IrAZ&[۴.~e US7 uŐh)ùB|-yA1_i-T=m@Gfrςd|׶e 3S'B)0@Z{k̕,CDlMt@^}1~a5x rqM ¾N.͒m8\h t 5 e#t8q=DAy)ze/6R  9_vBH1imTӦ4xePfF*=6 u˝s3ԗ^ЂVXSx}ѶAյOuUIVB%4Ы:Mi9o ,z50+ A} dПm ]O{WԢo_޾}{~ī*ml,˒3ic9=Gvg)8 H m hEA$i! ,á)OK{& 8OayUjQǵuLpy]Sp/޿n8k> @O0?r4`ccos{DxL-!l UQ7Z6#P,FV5:5+K ɔYĤ{>=BJw'UiS%F41 ~ kO\AG4bw̾¬Jz|4\z[@_Wi6a&pPWeI:+<*AF+tgNoMGuy"V?$9GW6bOfat~DU̘p"Pq^U3ݲӡW)otFl bhi-JC*;SHicЫh+TQ^I?ëu^wy<ߦjyv\mȻ|__^/ݗ`ѫd+NAzuYvyV /V#/@Rf/\ aeHӵזPBTliE^s+Ãa#O\H.Z̩߃Ґ#IUa5{*5B'q5&Jo4*5; ȰF 5Pb3bN%'+͖Tր`D5:.> di"a.? E3٩=(WEˡjgIAe>gt!Xq~裥rE65]:C[MLX־b|jIhGO/g$R90)So<j ֊ڤW9GB -Τ 2F璠M IW I N|zf'k|ۿ>w~GhO&yzYW@>h ܎W9} Ŵ3+,=7!P99ci΃.X\Pm\9Ȳr 08Y=9$ ZI؋ NOPst.`Òdl5H52)yI1p`X-MRQt0Pe 4'OB9T|28\r] bFp]C9BRZ[GD8ǂ}d1M#[rQӱdErV. >_QOzeMT͵;=8z5ըLŽ=Q Q9[7 s-bο܋pu;`^^FQСWYEh744RILG$*2aW}Dc ; _/nҲ<>pyv}~u/??}?;[(|%tQ핮F_Pk0)4_y W0i3wj5z%Ids T)GmH;XvJ!l?Zճ4O``[#R3Ap[(R%n~ahPP}R+Z9F3v.DҮ F/"ɑE͘@9ML0H @8̣x)M}lSkAM-slH3Vt;d]yV:`ogWxeĿdY)V.-dDgN`]`eYl/is+vd9Y6)CkPa UPdJ-)S2m-AWT90"'9 -ݐl(Wro/`4ѫ@|+Y~5@$$n^fUk4?y[y͒~wCE3=wyaOc_?^ߌ N3͆6ȶFי/Y UWjS6 +Sryg,E]n$gNAԈFrv.ʫ2~f}{qDao$A#4U^kD6Y+SD&JD\x'co*ʇ 1 EVFP:L.FY aPy KHqiyZ\)Ⓑœqd)!-8Uy{ڪAD?ܱѤ(7̈ި`'[ S-80zSL_?V/uI]X7k[5WVR<"ى)]l YA* %v9E^; ~51xwU! tؽLFxؖp5 r*h܍fZFWqcX[ƢO@ WiSU/6+7\gS[h.ހ[*4V#&GQ#dPl=={Y5xۅfi0B T__ d@2ohƽ5ԣeQo E)oiͦ;vCFIBN/ @Kqn;ΙEUo^.H,DVS+3FL؅y|$[1%=00C$P$_$-tMsxflsT6IIs#RH 6pk _!RL+[.lw#+RGp^TI}.:)BeEq:B+.z]6W??;ׯ|o/pϗ/>쳇t?7Wɲ[+T"xjs}le?nwF>םu+DŽ{1T%>A7hW Tk. y]> A0VPvWmB{IK.}śö nH^27mznvzOn"9L-hU, ZrO :%jQDwׄEF7p+9@a D@^i·l*%Q u py;(XѪr,k;!Sy6SOZ8&LRUvmj/F?U]C ;C/8ΏxMO`dP4<.ejdڵ3 =6˥7}eVW-&);Hj{:ؑCW&{/k5ϧ t% bNuJ ٬l}$%GWc+WӢ{dA +E^ Can~qzu?{@u^hM_R^t_\NjUj"͙Cmlg?}/w|k瞸~m~O~o}/^f@ OMzUg>7޹W{^fZL}>?O?/>}׷wOTvx[ِHq{?nP6lja-CB<@LKi^`u},H"z<3Z2IEykKIQwk(ʗD=n} G/r 30$<{c"DD u1j1 G8w1>Wbh1, @sClxX/*'o).֢n;bɟA{,G" G{EJ9~D/C r7x7+bMlT_,jM^*XZ[ [XqMUE۔܄9}p1+22mMa. }@nZ] 0!+z[ @6(<\RwXʆu픺;5q^IT:z%2@dRIKԖL^տFML1 SW\YUj.~p|{"m7oyr6WtWlw[oy]~dJ 9߾_яH^^%cJF3w)Bp) Օ@?88mj?NB# 8tjB̻s>wMĦl\Ü_TچQ!SWt߰+SRjBlp/sisy*M+ ^{%%Wp#arnuʚΐqҫ4DrCRJw3‚7esvY6 wՏЫvw/U2e~v=|˻̇}SΉH=O~k~~9.ʴU ,=Fj(TX il!9HlX>ԧ6dϧ4%,n3<tPؘ ;a=|֪#4պtfInSVԓz41R艴3 `P.bmgR.tq5Mr. 49j>Ȓ C5gn2Ũ~|ABřݻtKnJ%W%EuJj}hqƘT7{Ft02N\-.Y1VOsffbjQg@ &/rER~q*/AMn%{BWQ \CfTaJ ۏ,BCQ5s"\nIu]K^vETӦ,ߝތ)=NT$|֣W޴ڬ+M*4S^eIt6\$}-w~7}N~jIޤfYnj@J~v).sssp}ſǗWi^yeveX2f`.rec@RcGj*b̟它T\4T%@ =N?%TCLaΎ@fTU`aYh!li7|O5c4sTpRp`IJ0K,K([<ɤ+wz:媗Q&x,EJ1c REUkYǘrHmm!o/uWZ ]d\W*:huinFUl%< X}Aią Ce btuLѩf(Pb.HݦJ=lVꮔ9X;wyn[GF~ԄqS_C-"(aψfb(U=δT@Qz/ו:7krc.H_}glճe͂}N`BN6/ym|o~?}yLv83:Ė&Y<j)s`eiJ 2[Nc4 t0+z*pX{]Lrܡԙ ꏳFtIG:r]CgrY=iA)mBTb]8fhE']0P}YorQA :!(~_zXLSm*h u|Mehdd:Rs ّd֍E^%="[I{JSY[ֻlZAZxGC%-Ex8p/MGk] |Z6 CzSBzc%~2aTry,0UKgAmy^ <3wb:h "3kȐ8ezCPayqj䝺k wQj*i^č zPѲ>˫|.{-VcJJ*CR0 V2W)W||5b?8GID3?, uOtI%tMȘ(gXQU {QX}Z^OhWK1Cpڼ[O_w~n?)giswW۫ݫxsɣP{2?[/lN"r`l9ux'NtXe0qb0_Jt+։!+o) Ra^!|SE^ĩ"$@ + euý֞&&C<7e[ӲZia[\|S2ጌܶiY\%> ,Sz_'KNö B& y%ж$FCaYVgwj4SC16<%a8"/TV~4Jth_e}J@Z^|λOS|s}l9L)~/C1s"sq3!aY^<v vQI(ڕ_1jKo+_3qQ Jhgub L#D/-g٢WgBWJƞDh#^ L 6z{M^W_}_|w?gwϞ]=vfr^H)3- e!)133e}N9lH˂ 7xv =f¡W:T`Y'=]N~Wr8v"f&%XO̥2XMCMBQPaX_a= O2O7)ݩ f0J?o:PB NO>R,.xa7w ǥ%Նڈ{Ia 졆BW}MZl$jfo ŸM} 6WOMu5Bqu.3Jj@Ш3BaѫSuDNMMٻw9##qz)1R9A2}uw`@aVOi:hp"h?g++XŢT_EN*7`(AGćrGJor}R:`W=EKRnE`LtW|s4n_(y)1g}HPO_/SI4 -9ȮBqlPg,"6rsқ7|_{K_|/7noؐiϻ=9n]{~w{1a\?,)gr^3$d&d*v@zlx]6,@??z,z8w_# ,~m,!ƃF*0w(n|)V@0|L6g|`F~rD"Q/)\]a!o$=r]5M*PLUM^KI0CBW^R4/y(Z@{H%e }H_8E+!z\zŖ^Ј+/>?FU+(JJ2/[+g+Z :uWrnn~o|u7l2y.~vLJ}v|!se} o6˲, գ$Ҟ)\H, ts~~ql捛ͳz,H=_~lWM0! ^2+&ƮDe)*autbKql)zt5ȖEbՍCdẌtZ&0ШR a1%^ 5"W* /{@x#b7{-ާ7fޛRKZPAHv 0T/?zrgU&܄) BzT*SRs9Y֚s1\Ll=ͳo|CS~Xlˎ@,l/`#4enrΦni2v!AVMAfF;4S@B~ӭ!$C|$&1wpW'̨ƸBY%>L>NsL'`iYFJcmA_7MJ: ]H4Td}^s/&}OYs+Q{=gC?w"D%t4Xx RG5b0ETJ p\LvIiמCZz广(Ìte\D_3^Qb31o%rV~,/ Z =F{R*ѫ~7xɲ|/lXf|ϻe .t""EF6Ӧ'J:V@ 3vD$8\?hoO?w8p7 WgO=?<}nKEPL ^$XlҁGGI:+Ks( q+9[KXUɤ,B0x*|M|L0k^<.b He0& ŌTUPc"ɴfe9fکW++8Ų* :sNڏCE/gy7]"1t]b @3]۴^#Zv!tD1!Hq+4~0]{14pqڴM^;i[Ӈ3p?V9;ˋxS f{ƚGYT%z\^ SDs>I}NW+jRGO>t1^bH4mۢ t]˰حn&@D!ӛ6.4DUަYqn_.x꥓Wk9;kZ2mb@Dp;']~pxO*I`/Ey*Ead"YcKt)!mx= U86AsSaJ1-r :*,qΚkT5 -Q#e)4̪ !=fj̥s> IQh3Q&%}!T:F}.A L#ݤۤ95A۫Gxof32:WXָ Arܽh#lsW|(eEeUᩁ) Am_/+ndR_q5,Y^z& v" (Ӗd78! krf^FzɌ a)aieW&[=h+WOen?akE;>~>w_?r]b-ٴ Ѕaّ1HF1X @Mb x7^/v;'wtY\.&ã׮_vmo>i/x m۶<>3~?c|cN+Lv9)/: T(3Gl:ҘxJB&L>dՑ) WFI͍e:I:a`9a cin)$47[),a𔏂G]W=IG0K{;(MDaLJ\NgJXR#.N+G(9^!#` ;/RY "خ}"M17M706!T4bTX^;be6c u0vajN] lEV\g eOI8%I3,AeِM%*IV88W6c^揉Wh NzeA;3CO(2]lPB}7 _O ĊU3z%\  J&Ez {^NwA^Q`JFMWס;&|ݓ[lX,.&4m3k#;rek1 kV(#Sڶa@鏾8՟Ͻ^z'qpN~NB;eu:.v'hI;L餝..\3ohZi=+Y>~JjΫ' AV8Wֺ-+%[Q^zP,zEۄ5<-GUr+aYQ.i-"'TASgTRvaEr+re Bqn(AtErNJA?b#amvlzT{Q'zM ?yIU'dYIz/h+JF/~?G?drv>;]M&&D]c[v CGF"!WYܜ;ڀiÇ[ϼ8z~kihE6H#c #c1NF3E6ʹi@B x?j1X ފ$jFF9V+ڃ@&) TPQ% QS o:m !WTN&1RgRuPC9~D)RSIeCh vk#v̾3 kDxzzyVB;1"a|8`3Rm)"CtjAMʵ5q Nk^|7f|Yn|2jؗA@ls ' N APɃs!\6r bUJz9W8:ɧ F;; ݶ6 UA36W)T͋;꥕΄*M F&k蕬 z!G!FViN%IA(Zk)P287>1 )Z9Mi9FlW"J/֌3;32G(G{O P+'z}go~m>'wd׶!CEt1.W+:3BIUz7{ O?O<~ßmh&hZ%p*ä5bM h4iRAE`paE%b6j=A1R>}4t]k?Ϸ ѬI NV-Ey($."`mܖzbЙncUNb~&3Πrk)%^34{W6#_1Zu L$dfYr;oݬF'VmnЊ Ȱ+uX[(@Rd*pkJt5DžqpElD/R J7'+ ;yM{Jz+u 3xOKA"&ӫ+r砽 zG~~?맳ӻgi&=2qŊb\!nȭ0#w  r7& t]S߿o/~Ͼ{}iW)4m@\9̹KӒ Se{;Jk/kNd|ЧGX=~T^ioKc86(iq*~ Wby_! 45#c.=M nG & j f\0;cOP64=%1cꮠ݋Te 4Ep*m }9(VyWdw\SS;f1G+>tWV(ڄ}8#]>^V %i^I5(lz%`}T$4Ǧ YC5N"CP j}Pg VЫw^[_z|6k1Yt2lBdX.Fɕ{q{[d \}|`MN^?}ig_}O>L>)6Ei]zs9ze(DMPb^ՁBCB06 "(>L?#]K7ʀ1pʗT4<LpvU61oFӔI^>UR膕 YIF%yaQP,tPp`jq)l@PpUDT߸p:2zr?b(X9 foa]@Kw:ԺN>"h["Ify%+5LFjt(4ir+ %* ҘYeݹ֝bN:  DEcQʠ0$c^dӌgcBX5kUp b1nWer5kKYUC2)n6e$NkzDA }~~%oV^eJ=ʃe}OW tWJHѽ漖6=ڋ9 oY5*eziLz%^Q6 yvQpZ>>?98x񕓋r2_İ]؜q0d1";2c`XY#r;Bвw~p/޻XzUv'a|^䍏}^svr],w\rqꌝc\^ 6kz׾x$эvrMG{E=WάPCȯU^rm[쮳+)wR=ʇYPX ThQG\ƾ|M)ji!Fa7DOa t"d) >,zɤ(, -zKAjlqH ύW0[`u(,]-@ DRCڞl>34#2#ЄDWy((nPCyk6[ESiٶMR%İ`tWY>M iewAd"2Z+ǺqsbX.IY*MC¹*3PU:Wd9sp{]1y|v]hֻh"wXíׁ~ddh4 [̿o+wO~\wL,}Wԯ=ZU(N V8%+rxY#Ԋfu<{1)Kᶓ硨%J+Štو9p&=[=-Jp74rIP\8 Y?l6k@ń]4(I``ʼJhUe+ ~/.LQ*6QQwO>AiiQ 4gB@8OQam̆ay5Ү 1{*RLJ!7 \o5b &p&Q,IVC) [~`гǔ4t*2< 4OeѐIm'w_OGr'Vx`a"6K YSTڊitˬ1Uj0&7N $s1^9'\AX (eҞY٫Wyo߽Xꈇ@`hVܪY[klsvN#7+4MXQaCO?_GAwN ⽣W3ޱQ< z\3;V,-s{pxPWE ]xUzۺ<CJc2OL"zz@A`L%d^bn˜ç+yl(P/p^@P? "}A!YϢ4׭ w^-*zdA6B#ʤ$tj.JΥO3Ȅ1Bi2aq氷N, pO },ѫՊ1+1󝥅dV]W|O(2X.QŹWCɵhOq08bu;a6;iIM`4+*^[Dv1,#5Z_^<ڋWG~?n='|izU## l7I답N|{Ck#+E%4}1-1|\Ss ;m5yurML869TzY nk0rRf-mV5- ;jYZW RI̙ PjЕXu;hqIxkX#/q<3n߰IWloeU-:Lz4a@mȪH^4e{Gh*^I􊶃Yjʓ9?\NO>uq&XOA{?9>hmDENjy-<^Lc캦 ቯ<,ٿ|vrp^QUhjLA%]XVeT6pɭh\'N0Ģˢ;њU0{Mk`B0 :JLe?Z4l;@Ò**88xЭt_2bduA1]k\ PݹmZL7^GBr_ 6{ ä6cQu>B( 1<ٛTX3! y3A(r"T ]@+׹'}Asv.[}fyw:4MgLYA@L`KƳ=\P>JN5tCJ9T4@X&akM!<QAhHuzҫasz\o 2Q[I${7)~lsȦ hka{A{?ߛL&@v|-9-cٝ|㩳xo[f gs *m0a8 +* N b#ՇZ3M\rEq ѐLd}%tZ96e)`5T69΁a)"1\-} c qIClrpƧacɝ*;kAa aŔNVnr*= ¿B3^Q-QCdOW,]/gЫPaGD'R#+WX\jѫWލ5m^mw|?$49k'ʹŤmEׅyX,ˎe.^sё8;=g_|=tc_ϳ[ε~Y~KUW/E1XԻ>Ld\E$Q 5`G?`t0ļnYɒuܡߗ0-]='M(i̓KmtϏf/!’u>P"Pa]Һ*q3Iq+EHjTD@HQC2 {0,Y#Do-:!Xujs'Fo?qv.8a,tw> :<ʩr,DNvr"d"Dfkbg.Ꮀ^Š44,d`40CxtRβ.JhW1tnWl V=Y%ITQ u z7^Pf ϴ勳;мW#lT*w&6=@3iIh{c+@-zA{hU@g((th\ZUFǨ9穢WMYWgQWdy,WAd8J 6cde@;E;m 6_/~Cxlz}9ܝqN/bۄIۄ0Ghc e7?~sϝ~{5?_m&dO+F\ 47^hJt?UxI>sBIqN`C"_c ~+Q'!lE{5PU2Nvw=w!rA 7J"G(ToȃJv`5FgaᓍFɠ쥅@~*mc[d.눊 cX?F߰9 ZG( {ze!ɳwmDTr I㛿^ju͏ jRoɟ!V"?ڎڬν,,Jf8 aC[%\Մ5&uWP|5F5+BPº;Fa:[fjft]N#0 '* KlKzhv \B.BEv&a?o ,kqoj,ک@˞hC@ݪ*ٴ@x%#}#Tѕ^ELU$$,YeT ez5P%`}^(nTz?!k5I^1r6;}iyq9O:hӣ DnihN.W^}w}6CӪ E&+`& 0Ba3'= t*5\=t 7ҐWF=԰Rh`x2(..L$RmaqkizaAFaQI XaXrX OᩂPpМ.1;:PnnZz+"R*wPH^1 0ԻsR_˰İ^9ZT1B|&ro4 m3Y !<(ٲ^+ngh6O/!iDM)ٖM،Qx^A* ,T7o&.Yk섶QeI!4nS܉h4~([4B4^P7V<7.yA^Ѻϐ{VQv$PXJ^YS[7h,iWt ?4^W7ѫU;.ޘ}[κnn|ƭwz葇nry7ٛ6{{n͗Ms8ٿvs={wϮ=NB;m&22^`gJ9*XeFF+z10ȱfR`J%%]1f&_$F+ՅEXh@]m ːX#,%3NY+ Y][K$l h엮ޞ 09ZJh_L-꠬9R:'HWX/v]d[h i0JʤWFJ#]r{V,MOhosTzjS|_p5Cp,+p諢We,frx-..b7"v .{vѺ$Z;Lv hhy= W*3 "BaA[}TnmV~ZfW*#WqapR]za팋=X<]Pj]qob̰KDkE% UA]ǎ+^tsKziҞYJi WT%yts{dU.EZ1m{F:٦Tm@H+^n6&e_hL(Jɰq'AgңYZow78Òz`;xnr4ą9攉 a*u$nK$/T cU0"@#D}seG䗧 z)(I Wǀ[z!veՁg(98Sm^~A:x7m082ʭ N`h'JP Y\ 蕴 WJڑ\v$AŦmÃ~ zSдqC Wב߁P5(ѽ+i;e}ԡؤ׌*+U>^TqEQMӫ_3d6֫ReZS=/Gz Fw;;S.V}_.MA*v2r(&i3!AW",V1Fa 7H)=#0FyX@+ߜvҥ:lu],Y48U +CQH;uIxSz0to >sߒ:`ɨyJQDnCo1AYZBH hfUnt VDɩ#g\U!Wu>;JPAWI63@ Ί{JDvfG^-xvr}7M_;8~Gdŝ'''秧g~n/LJ+WftvV+k)#J3*0q8: M4lnDJ>uJ3Pq}ەEx[8.1 w﨏\N nEJ yprUIakxjqUU25R mPW I-=G4E61 aT%TI8OA#J,Hŗ))PV aӔ.06'eXA΅+jJ՛Z2t?`,·^XhhKwbZE}>]WoUFWvpM4jZ +_У9cО;}UaPB7>t; <ٌOir5oV(WASWŲeVS%z|0 hOMz ~w0<'Λ\?؛@m 2t1, @b9wl믿Ͼg_szv62:E P^=UiQX3R9=>k4b *a7$ 0CZ)]P^`ERq sx_᪰[E\O$V ڕn6k",XIIa]Hd^0[ 4 ͺ~MYH!eW,%+K3Ҹ>禓.8?iPM1<5ܝyA*4\:ph[J 7#0gtx9=e+Ua} P\]G&KٺzH pJ+Uq|Ov <^e3m+3U VKޟGkGYtb8[pXΗٜe#mm&Aۢ -v_=)*뮩 {JxB7^ (%͓Q APJ ?g~ ~hO(_eQ- 60kK)qUeԄ^c]Z%k-Af$F["}h[$ͮ%~mh1@QZN;+% 9mGj*+\[||q^TxV4ʝ [I ;D r,4`\-$DAܫ1=#0O;_Q= UB%[Doa ig@`rem<)F^7 ʼ6`3xqmx)W 0 L4dHD!Gs@!'KPΛpGevBh`Ϥb H'M3K:J2-T4"9D{=OďwaY|>_p얋nжh&-)Ѕڼjn0 a:yg>/'RflE܋X0[K›IB^^1x+:f('DT0\eAn]KtBm#^Ϝ[dAT_5tPho A0EXt?:{* ܖ\$a7 rD튄Xy]"\t :ɭcOe=o$z_n 4q߄,B4MCЪ +]㤍G;~E]M *E ~ ƌz`iI9 j4BzUm Zl}-ՈVd[V!1D3˧N̂ `śh h@T(9Y6ܶWɏ! b ψte٨",шeDuB_ayarԴȱ7d~K% zT3Jpʗ9o}u<(D!"ffoF>K9 2Vt*} KR,u,ɚՏ73PD/2,*P#egYn$_e"T{B rZ,X K}i9%AȂ..(*׆D&v?5ԝIdluJgbUJB4:Lx/+@&3m1 ԇҠej  uzj|)E6%t7^ Z;L6.CBb>#?+w2ܝŗ,/|9-CLk$#.sno"WXWj&P ;,z,zew&Uu\ܲ?Gl/ʲ~}1%f0FU[{URnΧDdj̘uPrry@5pZtV'-mktL0}_ &^xJ;mMI#KqӆaR F? /Dm1f}I! Ir`SUCf\zG:aLWY@)(qUbA܉F5 UB:Ζ= ;m`o^hgr/ˆ5PG ,G&W}"|'"55c&jxK:+?tm4aY\pSZz9\4(zE5Ƨ^^QWX!cOMn_p\/.0Lф. 0ܝ1jXr$ [[W&1PI0^WbO Va'i7ɟ_[U"?fPA5Wles۔ 7ͩ@",?Q#8zbjzNP=JZ arU?` UMG 2=;Vduɰ a*qawr1ϰd3OyI&(IOJ#+$s mxq7bH5OJOV Ql'gۧ]׵>&12v!r'HưXkM.'ӄn2"Sb~>6W ٛK;(>'`UyQ2=?uN{8,P%Ω^$lA/@= $rl8.'+ tJG\XS *-ETu/ gW|:&BpJ<å'.;rQRFeYTg91H aLN H K)>ϲ-"`.*+l:0J$8ؼ@ǬT&GVfd [)v/ď_hg96GUL?J3!M 9ݦi/@F~Z>aMICPSA_bP~K-+1S<,Vb4%̸bݺiY1%MM+u.X^.cN{z}ޜPuzEbw%Pҫ(/^p3rJ]MW;ޞq/Aӏ>w>օtγYs2;-дV kUdTWǶ?mt!Lp0t]] 6rX~wDY+}[g{K lOvO/.1?Q+A >;)n%4j G `'@E#RBPto2Ds܅ yk qGy2DgBYB6Kǔ'.,U$ ",X=2 3!'Q]VPrF `(SLu$®Z :ǩ{U+qޛHe_ 9~F+,"´_PhE +^(_ cSK0l s L\ȼFu"yzL#E&.t\raY%SkiɅ,92iqA) e"_923ME5F^n%S K$ZQٛ&9RyDF$@r,b9${jHjzT"PAWVr0-/v^ɪFҚ+̴I+j=H#os?1\,❳!Lvڣ=dVa$p#Zaҹp5S4!t .,"0m0^y^0ڃ7J V$ƟWO?CL4[|<^ 2JU+l5[ԒRT(PTbWYaiXN3=,Ek,rcP %qh(WE j;x#c8`X#㒫AB:9n Ut ֆ@a.}e =$l8חVHR:vZMڗdۺ?!)ha t-yX%BI 3v͠_% 1,f1F#6n$l)Ye]ZT66\HYNhF36Hb;!X fQe_4?[u#GzG򼢟#D2(Ih]iҷa17g$*G8L3}N^]m5F GGJ«Cҡ(ˆU>0S/R]N?O}K6 /nκeۛ{Ub ]qI~];ÂaCNN(+B!7#`M+ 7b`6ȘˀÕ>AN5H%2֧&ٍY,0jׯ4t0ssIUF\!oc%"{Fi߈ҡk|)"0B;PScZ;vb=5>"s6b0Tα_kk뗐_Z(GOB)EQ>mLB \U,:5PYyd,zCW+`#FhI(va>k=:tAbݻ_/]?ԅfl>_,9<>Xj-Z~K$]Ÿqle6Lpbl156L^s/?fЫ`ӫPW'_o&4h6hЄ|g*\&s0\os$q [w"̛H+lt,iDXъqs.Z;.E M#-W\ELЊZYm,OM+V$̯S?ӷ|rEt8:xJ^@ЬB~@jAfXTtԪ1 b1`u( )ki*d! ީ`0+˷I'2v߲ )tKҵr\qF@OUH@-_041bXt=+'ʜ:(}'0a%ѕh37^:dB Dj`(WkGozeH+`|t+RJ pܬȵ&S 5#Jr% ?7*W0Yт uDo:+u $NWeR 5]^Vf^ȣH(xq7Ǐ1̗{<;1ﵓۺ\UʰV#n >QA,i3i ,:^,"c8k&M6 OoN^{{`UIh+"No?|}޾rqt8t_^‘8Ņו{QBWn2誖^^qMhzw TzNGYHn8Â"ƒՐFJ9c蕵wѫWӏ}~o,|ݝœӋ>&"c% &<77j*nk:ˮ @8pk{Og^8]4 =6Wq_]!v!v[؅ DtԓOw|n&-& &mh>CxzJjэtⒾor9 p,3fJy C (lmxY}qHM lzzRAZfYHFw|@}r.t;QG=a5A#`>2]Z+2TudjM:[Fb4Br2?k}al޳ V5F ,vdeId7fs^tsI(p-΃?;=wYpwG}H-M]yJmǤmz0aObܵ HCҝ ┑142O%i5j 2$" .U*d>`. 2q3 s4pӇgѫMU(YJ̌^IUzC^3CWu  r2ePʱDK>y"yv_=͗{*둩V\ìbưwªa Ò%Mv;gg̷s/ϛod2iV^^߾~䋿>+[ݗ? !nn)Ս1>z}O~ƭʹmf?{ߛW?n^9*z7^ '֏X#&{UD$&pnf!| +S\;_a,9?WT1q1e2U}ɑB"_XdP@qK݄% Q$R fy,vڭcXzqtm]=R uza D` ]dJ {ҔN\3׏Ȼk/bmV*n%Wza+rM%ª(69miÇ/W⏞޳O}k|ÏЫ0^Eyz9}7/{~葯~ɧN{c{X۲ -@mYquXq DG%< K5X#vEtcXc-0ZAƤ=2 7]0MUXI_hhC'cj瘬&lxUrDFFiGkV`q:UL-l# ]IS:@W.K2d:M<0WfRYD^v&7ӿԧ~':]qHˬ*V$gHVXpe!Z k^bTĠ /?/Wn=3'*3BO go^ W~]ڕ0gXAeUqoW8qp6:=OWWLЫcXf,xZ%RT8 `zgF;4XQ3rQZuЌ>r V6Cg{/UdNX#u0;)mZOo97 `{ɳMwmhJIF +1241]TKHtўE' a$h3σL__wNԉ-^9xo~g>"|"xxO)?qF9_W^}k{`,,`Pp/_Nze+IW7Wl,/B`YH[}}Q aF߀ ?™b 7򝽽SW>={w~K{i_ȗ.]7+śNp5_f=q/߼bUO\*rgn>L7hJD 2#Q$vwrlnV%Mސ|HnTBH3V",xDXf芨 ߒjvW%S̉qѥU"h+zE#Cz8f$e0v"` alpwGq! Q`D.x b*g]Lu(\By8{&JKvWdӡEl6uHBF3 {Xұ*;aLGǦ8v@O=JÍ7w{ah)d&&ɱ W_zQ7I0Yt]>ꪡ2l2b65GIݮKh<=:lzEFeҫ.L1Kgϝ;(k(vvU^pU$PݗbkPb4@)[.qb+eG^q3?Ma؅|>}gOlWՇ߼}8;,# 0*'Oώî}i@jOX̔ގH&XA"n ;Y"{x;0qBˣP}$?Q)w;zx&p x90,.UFc.d԰UO8mANMUqvNS{{δODM?B)=kYPd͈Šz/1$r[I"lǁ:ĤWMhVHZɂ.`ѫAi#hv2@F6VZGCf?s?u}? W;`L\:JV5Ke !Ceqk W 0.ߐ{Oe(8J6?IV1LKv7ޭoxgí-Ԡ8cC| p3z>Xc",fy{hIGoLAa -?+I`E7D)Wa IFGd ̬JD,h$ftاML֮bV/N2Ya7$8I2yht?QCOhx ;YxL|+H3иwFW&P*yxDWvR{=MCCxhoYCqH1Z+Sǫyl<5+Eа|P(xv n@'pC<4$Nj #9]j]`$WƊЂ'Gd K!CRkE݊9"bbYp#{J^qD㝂! \]ݿ%UNE9'=U3N-WZ8Xǘ枞*fd²TLw搱t`ڞ4L(gOUV zepts+ dV/}Bh2vk:V{(Xu_6X+K]p)Zd|1\ (H8<<7_;qSګB2M='N; 3_l_ӏ_yr ,CgxD>s=Fze>-rV r4B鈴gX3 ZZu7c=ڼnEb:P?LTKz`aP[P%MJ4,yÃ6р Y'pA1XriEpdA5*Q`INRW#*zs{ A$mކi&F9*Zr5Q:RM&_->[tP+HcjIQpj:%sP%;Z#j+NvТ zk4|ضbvdWj#QBgG/O< r< gQQU57_U`Qj.uX BUCsTS(zn*Tm|v՟OG;f$3[9쯽ݳ,)"VAg_՟ȧW͜uӦ}cI 'ZBu\su c&` v X4gRLj )(D5EumEXԴ[vL2A|Lygqv˘`ͥy3Fg 'lqU6§rw| QmsV|MlbVO̘X ͱdXTyJq=[Q2VSWYS~näe1E$`A1Biu|1jB!I!H !p6Z9 !", ”2[{0{WcKwo xZ?';oO|k=櫯HBG|UXnIYJ1||[p0qWr, 2*By#+1<ǥ1Rb"mDNY*V\E6z,[JkPml~xkODx^-6a~ePyέSc&0V: \{L㹛c Ga5Q,Kg\*j%1 R7P~@2šf%ܳ Zє*PḌxEAɓO&/y)Bs+Y3@beCl[/&a68,qN 2;Y/:TNT'P2j$+K CɧnK&@F:nEf@"CZ%B<k $1byBW4G2ѫ`e dqckE66o+i W hS/Ե.zU2.ez>qɊr8: m Z5 g!ګbaizW:$py `!Re5 ɍ˯ X UiGO~kPH_ un9rx㷟\|^-{0*HyC}vEՍW8z%+"\NH4h2̈́R,,b"Bt) S;cYQFkBds^ 9",}- (8 s6ibI5#iCv8b *|F",aaT)oE%zZ bCQ+1aXQ:gr/0Y`X]UaKXë-th7G#)O{\K8>y$ #,h9Sɶdy2Ay'Z˦XEΆ.jo:Ki38zn u䘡?*] R{>tmuc.z<`"z038dcҫoaHӭSf?=N.ZD*p@cӊc-\tU9L\|XfѠTC6ݑmz* R,zZcggeB7Z4ƘIB!RO{|ϽKpR]9r= 0bo(V ,j`Q [Z"THB8:n޼wߝW9?zrAɿ{{O>r,e7-\z5y5zL5==1+ #\ܽuƅPW#W ZEa$u"dl_Y4󚕻E%@h6Hu5r_EZA.ULę&&%V Gv =F}D`"iGkh TQeΣlGoix9m a٦@w).lɰě&9êV鄑6Jis3T °(#j׆_P}== 3F)q24Sj&adpmdPJ֑CH] InhZУɂvL|z.r8z"^o.fbڇc@6 G U^1S#ǭ: f"s+EIwY ^/;+z^e{w6ԙC_[Fg.lZ9K' 2>1§?{{|PGtZmSrmAJj?Y}$[+ W…@Z:FYMnޜr(ju U?z%"߻MgRnk w¦~—IBE, ]r+ĖK WHҌ,B(W%c#FK_.nĬqv6TD%-N?S!X=I ֓"EEo}Ƨݜ",:92L:!4PP.Z 4蒻@}Dmң%'չgTgC)s0h3q"Յݎ}1VpvGt'mu=| K]o[! 5D[Nc 'u߽rD">5}GgI[ ;`Rb$sLH!v)D$a0FWƍqc'V}6VfqLV8SRs0gY;IK{BgY IR:-^ݬ(q+ M7ȓj*Ĝ) T>P$if7LK0S<;i%7ӭѰ(0 R/;[gURBŊM;DDYbntjCBkp)jހׁ)H`)Znd!aGꂤZc-9j ó;ޯ1Yd#ة8XuE)B08ϔpg9{R1~zpFB"O!6̚D 5|nփS.?~-Z*I+7nM t+FcWIPʤV=q#>^xքh4V遁\zRlnӾ \u& :H,3", qiRd<G4G6;SzWx2NdpZD$Pѓ׾tνvTݪ$$L_|w^W U@zd"\Y|ibK&$y;6鎒^ :ݜ'Cq[h譠v@`끙IǠf99( چB`w Qu`]N c"|G;ly3Ffq!n#_4pX=)nFhn-,$ Ew\bALm"8dXbvi=a]%D ZRe!?WJ+իFYK:CjX)9PR08Zl'f[sdJs\ݶb ˌ>Cr)0&a,B7`CD\660':hhtaƌ*3C܄^&VaJ Wt,'>(~L+՚*7W,dR}~{du0;8lleˬXaUyb8i1Z$*rA@Rzn8&)kYO9字Gur>~ϟ?)PDR\G/Nb+^ çNT]”sUƷצZI_7]WȧWvDHY3$ @R1!mjz4ɷjJ0b0iCGN?٤ sׄ0hz`Ǩ#PBetH0(V+$4C=CS 0dX`Xa`K2jw㜬FǰZ*l oFΰ1,htr ]|fX̃HƗ"E=6깠 3Z$;M֤gYݏِN)f1}F9ybDkZѽ9M˕sCܪ?0SC*Y`cz7j_?&ݶza `uW*dխr+}XVQzնkX./ozUY]WЁqHE 'V 2{O?%0q1(aRq'^38OdX (+%j9ȵ "X>+dGGS[?kw}W/VwookP?6vvÓv~k`o營.ުfdX@:^ ^ɝW`M2y{C's?9͟Rf¶+Al|"_fE+ubUCelK 8ˮ<[u/QX-!&Ma3|MEZ;V+#ՓpgQFb6\4x!qST1i,<jP~ &ÂYR(scڪ"zng /E-]/u|3n(Uㅼe|7d$Lru ,%FczIޫ#cEֻ:r9;SwLWAB?; z(-<F5AV`\%Rg&p;#sq6baFĤi]XGV WhH Yv%>X5I3镚3(+J3s9MbhQC\#]KWedӫfnFYF8W' Ӱ=wa_%.ؗFWk5ZȢa0q_(@X(G,a)(m lz{6eV#v/߿έ3÷ܽ e,PHlpbo>'~^6; jB?+A8d{վ'Ao,B;krchxSRy4[EX+p yC+"}k5zo6lmVѰ*E j ը;)YɌr@$[Oឆ-jM la'isa[K%!|:$V J^{5{;9> nm*2C<ڶX`ǔi}iEH1ۍ4%]NJX;^Պ ꉄKh50XQfMelfA@ E] dB0) lx<Ε XmX,""Ӱ_}b+Շ)d00g~ٯ ?=ߨ:2 S ã[_+>J,z%"V"6ź3V4wTlikڊ!I":pPb޵mNlGqMlL5'_+X-sN@URkf#f3Lh:_dhd)L? Gt-[,aR?f J1v]:1,_317,C^;ڎñb)2 pZ$*0z_!C㛘ӵZH:žC0kaɤԪg Z8ZK$.ɕy֞$=)xD&dE@{^rv>ͳ#h+ z{+=GCTƊ"۪[+OfIhA(PeTUVNsۣ{5h:ۡ][p{2VمKDZ5fBu*B %pa (R`/Q@% VxrWsheUz|=ƹ=1h$@TȭhY1ћύ]M$Tj%/>s C/Bz8o (#2Z^|LaB#ٮ+4t5/<ĵE74^mc4@5]i9W܍5h=8jq7&[ iϣGpG'+VW3dNcŰ8*RANS#k{0,J(6 5^SKdIŶfa[ -!aI}}2 rvz$1-ӕ)mLau!@cR᾵DI(_"&\k:-`';r}22b4Oٓ%\>Z5Y3;ٯG? a ial\DW#MT3Y_M$T-+^-BEW)zG1NϢ4ezQ)MXk*[@z:j< )zx}V 2;s  ?A'VCYaQ*S$Q%6bX@=('W/CD(>cy) p?zñW>t_9;R2LKݾZѫD|0zf<|} e㋺3,RKEX HedWYEXڌ@luơf =06ضwE'C!>)UK+Ȍ1|ɹ EgZK +6@:q=:Aò/m.1R`&Q~n)%34I@m[Վ울׽`c]2Ƈڧ$'z1 l#8B=a-$>DKFC #qJ~ "xc})|eKګil68mC`Lӡd"u+OZЙ@v tUoR%L76d6$^Noү=N. P̖:c^{1S  8;sgΡ2g[(UKG yh6J-rM ޓ3=!j.:_Nflj%sb_N4 E ˗J:i0OŰXou:H9շUYJ@ +M ꩽX+ ޟaIk0.`Wz+ߣ{7 Ln@g$dnYj0zmIB7CTBC@Xx 5"jP%``^!abݰHqَ&xX< C}wYAcEK ~tE N_O=UwϪT nӬ&J;v2+YcC}sӽDX:۫찳؅amaI;'Gg :/FHkbǟ$2i d>hD'Zvh:qHh@FkY̅uf.[yGUL`s&a]0Ek+]oBaٍLq8 Ocn7jˆ( ^]kz Zva/{BZ͌.lRK];~0^ݛ [߽RL!JFW}(ltE'"nY5%ܠ/a1rocHvX#$&[{:![ܬ1MO.kDG0~0蠫4b}6RO]-L$|;G)Zr(el ɡW_"STMhYڢjYEXld:aV ejB~C&ךUw s5V^KDU Ux) Nl[eupGp7Lt+fѫ/rC7WvLxʭ£''=/?&+9!'&& G:վy>|o7?F$^;pf`ƀ#$(u\vxU~ik,UZ|Y5"y>A],dQ07ےLxAJ^GDaiYΖ,ɰ",&yaIr uzv\s )ըPS!3b1kbEc}TjxaMdQ-'2; PO yYBzZm? EDE ]-L;X[Ż$ 1}OSd7:B5^,$A<ۂ?E",{s+GGg4)&&AJTe.B0?*0so;UYs#sr ve/ˢW :Ebnc4Nz^H HQb0nxb u߫* k)˚#JBB%DB`NقhXlCL^ Gk>wᡢ("Ch qx/A}'} _|J9o?L4a0]XMXMXIu(_{{}?]?0>wj0ONܜ+ =U'ĦWܜ^ȠVI;GrWDCgn;UL$mY0}X DXL5d kZb5.cPoN<آ N 6ZaQgX|ɰrWd*YA,Y_z 8Ȥi@+EUq Q*ҋMv?/{erxdy_t}Yh{i;B;O[;>cdOaeb,n;movyFl56C\f;&tfUuvP}d:X)n$ \ٺ5Pµ.LgB LS" ]tYGtKD$cWŮ_U`-Y<6tEN}TI$y«&IJ3HPW47(u "v)Lz2`e!lۿvmxzӻ'D dJfaBج6(YX!"yp!*=0_*ayj*Nn߸w>[o9XQCXrt_k7^rR >yug4EXa0!bM{d Osz3R:Kr[q$9w;u4qu/A[Ku !CcJZtv@Ro20܍CyԲr(t6n=0L>T83`tXhn!bȭ#7 g>;<en9!wu`3S*[-AW&REoft"[0?~t~嚲`}r.-zEO#FʎYsjiek+[62A] $f=nURaQN*pTcB: \°XK(P(_%~8(S;g/|'<'ZݧWTxprk7-$La\qxTIQ ᘯnŏ\*Xd+agM9Nz%-V 59+-t־\~ _wi/Z߅9 &-'ʇ}CӎBa"~ t%TbcXB>džp\lx,eR4T12,Âah{F/$S{t2|2m asNo_c=)D K$U֗#D''0y$}"My!k ØgNHҢLܞL@h@+T}/bv6T6`'l:66+Gڟu6 \#DILHhިqs?J,B|]gJ=jiLTUӡ;fݣe!zhThUf{)'Zd~<Êz?rDs z .ze n@+TpV??ZUh2¬8Vaa>VaHx۲*1p @Y`P`{ӻӻ@>}s :{,K(9 LuG/߽~ 7<>x GS8888p0!'LX;?pܙVg|o=5Ы2"uOEXH\a",<q ",EX#:hC4'5S ʐzEXN&jڟn?dX +wfXPVNIObX ,f8eGxc%Rs8j%Y+b_ޒg[~$]65d}M8!KaýIůksNj3ֹ6ِSDJ( L+;1NfoT9]jVfY],hɭ16gؼ X\"^$LljVbxڤVfmY_ZzeqK$#b^!rV츗U[xnUXlҫtڠB<AB!AG3N_GlRU[[ѠxT n A٨whTm S"@CAI| @./ vv?1f?~ͪ%Ml!Vo[8՛0C>k7=ќKKf;~0nkiĨtiP qvۈjaEUvG=ydQsdcR{;3@CS?W+G::ֲAIAρ+t,7hcI3` wl_W{XtB[3e%l$ ~$uY1K)b Fk7G7&n)%r~tAm=RQa!bC_:"*H]*ьU$EкeQ吴mKÂݕfNtI`ۺ1IU|*6؏^inBfABB?W=ć9O'h"U`!k)=֠A)[e1( ,LfaR4M9ʂ^m Q7h={EG~_ 򥱌&dQJtf +Ӻ++wm7þU8׫ə`zb偂蠪Vtx̊S~]d/\'RfnP 1SWtqo4#vr2" 8*?ZQ6m3vhE=[h}2^8GJKS0i+v zӫ2d8 /GKWp0L֨ D Q1*;[ިۃrkP@ ?&ۇdv0:Yv#l J\?~| olŭlyCEQeك^ќ?<<%Ύ$;P ˷OP)&_?#WW"ġ3=P]`=KOټ/ٌs"xT_ U*b  =oŰjEXRP`N-hq,Z7,O9U1DE.3yztHXcˆJYZS72[ l2X gЂ50Vh71" X16Yc6IR%Y JlC}"$43e,4"ƭ"ߥ‚³]؂oYCW"}xU+bx )'P,onz޷]|c93T.ϓ0Yt"&]1WGSF[BBѝTfUVo?*Nhv|Cd_+Ex%)\)mz%""EDu=櫯~{'Δ"[d0J9,rX"B %l 'vۃH1^>T$U1a(j\-尔o||W\x,?sCbd}\z@9 +aPW>2*G~PȸipF[7~|'~3ɽ*`8*rĢ,Y%E,8( HV'p{\ìò vqf&ϼt;Ͽo}/bSdkx9H.S1]S1=A`i>w?|/ZKJ2ɯV3䯯4HaUI5`:3AZ+EvD*$Mt'҉9xFaXb3, VP"iocXMm(aJfXLTfh۽0b Ǚv؇y%Vsb&mu}c^a1iۯ9b2Ҟ,B2VwtA1>z3 ȶuITg/>{'H2:ED29v8)47GK<KlE߬jGW7ANCr>j`7>d]mҙ>teqw5eXY_)ؖ+<@JҫMѕ+X{ôJ$뙙qTzl`2+e ۯ޸rgN<}p8r0@ @AaA``5,ABx~opv7y˯K^~噣ÛG>}]٥W}_wӻ~퟽>=& `IJT)BcZH7uBY1n)-Z PV`͛ˮaE$0qq$V`48pr2TnwG).yNN6°ZApx={}at6dX],\ KD`X@Q-{xZcDH#pqRcX ⒳L(uӞul+V~eYuDg7 fZ>sd+3g_0Xߘ $6_fn&ژN#rَ¦6A6`iy@\"0uYA:W)MZuIj>pRy#[*L2ێԗvBEW-Hc-WLd2W8ԻRLaV>PȸY!3wn_g.8}.>9WP@QyR[E4BDqbTdoʍ/k^K>w?>>8(K˲=Pz;zkt+e.L\e쒠,Xa&DzMu",8Q_եa^!D$q`XkFvuIVV*P[-J${/bl5ON1,8W'fJbx@^/ +Nԛ ;bϡslV@)@NDm9 1Vs92%AC':+)?Ms0IITj vGNORs'7E1+MJt,qRmjseFEL6C:Xsᣎ uB"U {Bc]E9ʠW0^+SGUxGhM^[xf6AsN 7_ue\xw?g.ns;w9z`{4, L&a5(Š@YbPdV]5~o]q;^yc|xr߽Q ]c0cGM$r.?JD_Q7ZCGb" ֖= SaqCj[$&ڙ^G_ѵ-’LbdDb,F#XXaX;ۨiso`X2,za1cnV\$Y k9SW,~[d2 K&?HB k6Ȝ9!:R=_9|߹!.J wӟ-jr߅,C}cH}f u2mLn)fT{>*nLҫ!!q9sub.C%ҵ42>nn^lIZ ЕcR\j8]9Uz#,zbts]4r QL!)p6 7޺7%.>x'/>}<կD]n `,Cgl:CE9uoݾtVN?po`0hxҫXvozE5%jFؿȷ"KDXX ux닡NǰRK}(Ê|!rPWu# $ꄥm`:&CL;S+ &j oJnq4aa)#/C(k˙m)יfYN2ͰV(q}an>6@ǵn" b,$0. HA7+bޟ<ٍd ff , @A 5; h1f{ࣄ5n_4k"Po/FګO9.#Ǿ4س>"MYyH澓mYW?U# YJ+R9fpY ;@a &FdA:4x  ӊ_KR|L1[KdL,)gy-%EXw8fLmrǻ!¢y9"0١lK_9FD,X X ɢ9 ~y㆗aul意aі`eD͡iN2,suX2˸Y_6 eC} 1v4 䐻GB15ʶglO2DG!oD ?-faQjFڄn%~,KM/j#f:v;Qp KSWAo \3{To'źL|lS>o6?ieYQH*0Un" [T%+`cVF:vߌdѳ| vEċm}֥ӱ c`U~L/9JJ&$bfE_S#"XFQis=z0Kp FBOSE51]]EY1+nUwh4k8dFS 9^ى޴Jïh RE;kTMaQgqe@ϲ_ӫ\zX~8R`.0l #&2o+mXg+gEc:\X-[jHBrP?3Pv+2Uݹn}]!4X5E!M^aFĽO\O}'# شjCFe2)UT#it1 1^s91|'5#b2wYHcf3,(AANdSj,ƞq:5bZ[3\C7R%:I(PӤǪ^'|G^: ND#҈y}>Ek1 |Fy6L)".ߧ=U+dnGZKp,g*',ޙ,I^NekQ9Ā̞ɮL2Pi0YXUy1ݩK8+⻯IN(ҽy=+; >j^aJW_!-SG^I~ΐRC)jҫ8Wff8ۅ署AgVV<4~A^ KW+q| /)nɈ$b/=c(B=/DXQo"&6.%Jx`^d| Zj#P]EF;+g<OFAq.fXρhu'r0n}od'ayӉAR:zq`r͕ rsl!=Xf EVEcF? i7 \"hSBix4l`m~z"Ea&di?0J@_>bt{q1|YaI!#o8 Kq!cX$\}Z|r$y=<{][NK}0졫^Xo!OLQ6%ҫNNIPI o{֟^XHTHa!n7=̒H)}|K4C :L4Ȓ@Q4)Hm䋰`쑁TENQShHoY(a̰0, Jb G\V1& GOR.6 z z@4cX1T+{R+~#Tb#&Oy&W`X-+W'NU6wQhTۙܫQB@/)<綆}pou_kGa&} @DY-(%,{L LS[8.L<,ǑOU,gT5Fy Ȓ߀!!ZCIAWEg̓/m33zEOxU9.2q}zrBuvgW?@" BcPλEotQlپ>9eo>KUeoL^BX kI}VH8VD2{>x #‚S'.du"фt"ʵ%E= o=>0 +̱2 kr/r|=qTKRA囟3tگmbXVtPWu4nE'u/G(?`X$WxSQtomϫ 9fɕ]èHRê*Vw {q5*ӅQ^TūcM4<aF yEI{ws!]TH49bY^ ˱io x:pd2zU4Ԭ}tP)#T2]{\ oR)2QzvUӐEWwyyx`I(A^*USGDLÌ g#[a/X5?]%B@1&CAcoL^.ƽ#2ddaP Dʬ e)Pځ1Yh2u=sg66 _kFamQdFs T&˰J)o'[wֵx!$--!3%\>*Z+,sk%t@һR qL50XwrflEv1B8'>ՅUpRI)A6rpPdg=A U Gt ۄwdk^Tvݰh2A螫S&Vb^?ܠCW`VTwӫs. c^)«^Srݾ(t'";Wr\VcV+V JW3U%AV +gO#>"ªy@au@~mA%kT'3+鳀 k.t  S< lS*eG PV ;ﴼ>tE1w}a%߂a1*SbX閭3>Q3VcXTȔAήs JZRlڌ7)>9͞Qp1{ov j?p0-:%g< Xa Q߿qE(i}IS Q1nWt~tTa9:P&MB,FΖ*J9y%Yi)(,)gUzu a@~Y jsd7^R~Xt!~pLKwd7 \]=<ӧ^Vt t/i%& 1[ u'ݰȏ 8+3,!KɎj5LPWYaUJeXE!@txM"4րyPHE4G/}}e{h sI^k+V1XfUsU).MJ6blhK R!%v"drVNuGek FWY!k8뻈?@^^Rc~*k*^&o)eazu^#Wlu zLa;: qa|ު2>"c !ʢ:oJTo)$EX1 /7omT +7òsF?g" zLaq`$hv0`z}#ٝ q*:Daرòi.)̲E° e*-Ss].}MnM}jj)z|JN&$J쉽O1V8ٷW>2KV=yᔑm@@H^Tiy]#L33Efʂ;odba8am1i,V:$3wЕeF *~Ղr:;Eq!foѕHZ«lЙgʿCzuhz5?z-eʌ ŠM 6M{ z>:bVUU. &|qV <Vqp:``ub ]8̅=@MkÚ-*-IHS]W]F[)v}^uׁg1=2NJg3"rEˉT*]ek\1U!eb5'0(H-eÇ0d{-|lɈ*@N2obrXxP̲FEZҒFR l U n4'ܤ}f6l)cv'7}dB&Zn豤ŴL[#[i<Lj| Z>Ī>*)jҫ^ӫuʚ[JlSUz+J!'\νHFtǵ^k '/8!UDXu:u)r䷚$v+I[_&ٰ Yx*b*Bzc]c<%jڨFυy+RTMe1Zגw-RI FŰ,-(}a9'<2$/Le"F>qc"B)H,oU選QE( 6X3cXv%{?G$+3wCH ՎMcSk]^zuk[Oq=1NjuϠtcG!N|fvtE;ZVS2 j|u+NQ 7Ms&P&;[jkd,/+P*ݹ^ r$=|*8[m*b85]dyuU$ڭ &z'4(e;¦%KḦ́3-]c(pG1}PaɼϰFR[-xH ҷa/,!ˀcXn@e 0`XИ=;EMCR"bJ< &s /l1dv$i,2o;sjxh7Ld=4dpo^`X)[^/FI-}tKǨVEգ?nr2|䙡Wh힯A+\ҪQ9B:4W-+M4Ͻt5 з"eTș{'tSڟ6UK jRjrUi ~.J^}L,KzU >G'ѫ`QcnVૅP/O4'ccv&rJ Gʳ0,awxͣ]5Xj?_,T k73~*rJFMbX!nͰzJ)=EvUvM*1l2,O)0[Z&6) icg;0%_SV3=l_Hq9k giBKtSAğIV Bd4?Va?fA;Ɓ^h`t[ݚfnq;yr@?F}ҝ3wd ێ;,a. uA'z@4Vy̴zMpb>^| af-C"zM'A=l:G/2.$`{IdΜTř%3ڒ;TiXf3to8_;~m`"W}[Y F:C\hsj(k|@cJ(Z5|] AW wWB>eTsS|"U >@Ԋф}lҼ nAϠWeH`N(kcj8h+>/ҫASW&֒_GNXpӁż̿-s;s2KQfخ6pba%\yzP`XBR>ʮC2~ǥaWn.qLa ӅexZ{=Q)R50~2O[9FTT6OoJ8WBh+Ǒq1qҫzP"JPmǿbW (mwU/h' BSCޚsqT-Ii0Lhˉ̭/.|B}h'f]k|I/.)+k;w]rd9}{Lh&EaF0'rwUxR:LlЫU>\6&)J) DqxVr^ #ZD34W "rwlN 륦\'j> VO"Ody!! KWYkn<4c`G9H,Uu/"QfXYtVOVFvN^c=5wIkejoTabm|u !jϚ=X߷Zb-_yUW> ,20 QHɩpzATxoQ/8Xhʨҫ{8Ww3IYȦi9Fի+L6©A'O&B+l RON{2;2յXgg|/3?X\PHQ 被hKWѨO^g/^!@.qaɵR+k"9*.^eϳlG:i^+`$0cVkor * kkL a"3͝$Z F( }pkքK o<ә."U=!XwfXحs« P4=l+bKFB`X/0nhiߕC k }+ xm6#ic9cn_RJSQ_ }g ;I)7/N@yRF%SnCItg8C&G) Hᯁ:ϐII` 9IZfW}o\4{W$4k K_(YODZd]mR/S ܩMЕ-rWX,5( L1Dz^y`қ.Ы@i8X+jaze6 q~lQg5uAy=V%Za XX`qu+).b>npź)tKHXpòul&oYͳg# nWkUʰ[͝ay}-es3Rakm,ʡ !g Ru"b#˜d3yc 4 $›0Yn ,kA0g[5W^RjSd6 ÑR$ Atg%gi+~Xȓ L ݬzL@16I)#Lkia|ܻǘBzq^^{QVbAZ%x+&`ɫR,UF:/*^ӫ%C"[|O^ N|vrӯ݉^o /1ćX^Og ;BhK39~"6lqҐ,( yY -cs} ,vϝEXXi#BVH=|Al K V /rPHmZPz$蹠-usĉdXrf;~+$"[Of%VqRp]"J"tf{)B?$ }ɟՓVxn8yuUta2 lwrwvPc})2:~$ln꿜p#BBj_;gsl^h~@Xhfa}zS`mlq#R]^yJg&ea\{̓/b~zTC^s,W +zLP~}X,l53y+1`s4%= v;?C糖H{wxϙ'Lu*%-K!gXAA{-f0%N jYewDž 3QtG &Um\46IߤFWf̒4=?y8]\ëT~EKnt"7I[E kD-e{wr*'yN`Xˣvu3k^`Mv6̀p {i8^bX u<ð84=Q3j.Y}CG全.A9dFF0|E;=MQ#cʪ0kW_{~drrWi[啷d-')O:]=~5LD.wOa8VTn#WʲWnϔ +9]c'e W+J|qʿv Ĥ"9m{}K2%wiV \ULw[^{!Ըv(-{d1u$LyUİ$Zޔ'1z ڙ9a-aŸl HX} fZJbڼRV+:0+1üjL׬I{'gsJegs*4`MFtA+Ǻ5XkiW^~&rm&sN /#%"~`TlV=7+]ɬFW k^1%X'U^}Ưbz' gzQ?W+zXe*mB́r:i,ѝx3s\ص9", jpa}a'Rf,P($t֜Zgϱ˰\1StAR$aXc qOYJza7"U.L,"?Z~yWצ&&e Ś%X(KJ]!~.H5۩&Y%6HN P*LL sysN@2W |9ޠի bT1@D~BWYz  9*zZ`xc$mҝSXSЕXGT>Ji)jXT {å7NRU!J/*XkW6x^Mn+ Wٿ=WAB.F;s-ׁ;qL]BQo=) g/.`}",&Kn2!1?TkgxW.-?.\Ͱ]fT(^4E74QbeXJ :iyDYrdX3ƚ 4me. >*ۯ':>TV)VdxX0 uՉ.`co*)Kb.hX6 ! "ʏ,QLnt/hwJˎ'r\M&*'eqhZ 5t4كwhnq+@cw|Z3WQVr.i'p9G_a.0 $^QjI Š RxաW'~ klDQ҂cQ|wep3wwsħ |ł2֌W-[«mX_Q63=v\Q) bXxաW qBǔ^mn# k@X@r", T#y+N'l_YH^d&²W6BvGB G`ϵșM(auGfXz9L~Cb>"2ı飋ܷɰla=ôеa}'Պy R9d}PmR>"b ˜Nώ̏7Lv!x|H0xBAX5606)tIQ]Ci^*=3x-ͼ*wF8tCW7tVwVR+!*] ; |7^wHP@[t SKo@q c 8I#r ȭo!ʶFI"u2 D3BqkC FK`X0~7zu(Z6a>nl>kzӫ^%곦W52%k*3$)rMc9NX;I$kiZQϬBB&LӯޅWm.aI0㙹uYl4Ű8y ]xXffkZ N{ʰnp*"YmU! VxY+Ŋ\vQV1 @iF c@؇XM5 $AzPj_AM+J&C({~Um<#t 8_+\PZiB]ݐfbPPvel?p^f Q$S!p Xp],YI]<}] }Py{O9ǨQbcPuD]l?^ W3G~ُ)^Ih0&((R**ApN|p"aXBmx<a-b%:1H9I{;.aGBZ:$y2mU/ edyV@=Ç T@C7u++'V@e62?a"v}MfXtSLdi?Ow|}SÂWa,f0zeO8G'npXh5^CJѮnPo> vtwg?TY ߃mբx Y ۩!Q Uq8 C:y.7Apd56i  pRH l7l̈́ۤO:(Yrt^ ;'23eML(W;蕙H;"՚,;zy9<ݼJ‹3BL;5ZMSH\Cc_μ!75) q V ]  Ql4{&[ A, EƮrG4F I G1$ET7}8,B~ҋ':(Hiv[mHcUce)UY"5?o#:s.4@ [({|,cc\#lP<Q7W2)W5v)=38Dܘ_KN*]2pܐ)YG=V7?2ZP`=emn[CzТ70sɠ<Nۣ_}nuɁCyP%zwHV'5uKYQ|K(QhIlijxJLGV ocMb->ZG5!#z(^z`<,=(%ľ> Z"ܷY.կ&~V@|nYP Dv?;܋Jbn&KJ)'1jUf$sԪh -eXJXa&k4jB2E,£'`+:\hI ʷdwpz-xn>b+t v. _TiӎS;RYTWpC>j@jƞX3NiV*Lm-ٞ̉oW@/ANIWa<7oW "xif#X,gNx|ѽrW̟LY5;Z^1l?*~lBo$1JЩm94_ 7g>n/-O- W9Wf픎Bϟ s11Viz;9=APf{96#MfUu@xاKOww; R<7!`tUa-]v±ZDPq^5B ygMN?*H[􊃋~H-W!MBBjr w D Tφ%ْqMMfE." Y}i2BK(h[T^锍r):5Vgp#٩,WNKV{7d, 5:I$/{:!' އUi. 7`: !vudݦB}Mn[$o ĕ^/ ׯQBH$'j&y8hf>h!{ hSCnj߁_SjhFW ]u\OGLqzB8=W %AA0}cy!".TuY/+* ΰH䧹 GCaz+ WWҼmAVʗXq%mZ iZu'",~ šހePؠNҌMo ;U #N m22jB7#OoT0a!&HYGտ~{5!vQz.bQbL!,r#ЭW~%p&:lMΒ?OWfQhyO5uZ9UD׈.c6}d1!ѵ|X{"+ 5_h ]̰}8*Cg\~ɰ#0,! j'228|6G'aNX¬ b2 5ZtӵGDaOb<?+R1VU) J36iϓEOEZP}Cts~ghӟeu4Yڈ"숧uegQsF(v9Wy s#@~9O P(ĉuC| zVKJ{#캢[$hFi|tGN-2BHR`[ +Wz"r"בO6:r&տA >jz_EW)ʔKq~l/QgB3<3P\J,Bբ\Wg,ÈRJV' KPh kvG>r̰*;gA)waH8Td531:|7]f4,KxP+6fF^ޙѫnўc5yg8fr=& !euLDz[MaUC&Ы6jIENDB`blubuntu-look-0.3.1/ChangeLog0000644000000000000000000000042311337123212012747 0ustar 2006-11-22 Daniel Holbach * po/blubuntu-look.pot, po/es.po, po/fr.po, po/pt_BR.po: added translations, * configure.ac: new release, added translations. 2006-10-04 Daniel Holbach * *: initial release blubuntu-look-0.3.1/configure0000755000000000000000000060511611337133347013130 0ustar #! /bin/sh # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.64 for blubuntu-look 0.3.1. # # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, # 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 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. 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. BASH_ENV=/dev/null ENV=/dev/null (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV export CONFIG_SHELL exec "$CONFIG_SHELL" "$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 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=$?; test $as_status -eq 0 && as_status=1 if test "$3"; then as_lineno=${as_lineno-"$2"} as_lineno_stack=as_lineno_stack=$as_lineno_stack $as_echo "$as_me:${as_lineno-$LINENO}: error: $1" >&$3 fi $as_echo "$as_me: error: $1" >&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'" exec 7<&0 &1 # Name of the host. # hostname on some systems (SVR3.2, 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='blubuntu-look' PACKAGE_TARNAME='blubuntu-look' PACKAGE_VERSION='0.3.1' PACKAGE_STRING='blubuntu-look 0.3.1' PACKAGE_BUGREPORT='' PACKAGE_URL='' ac_unique_file="ubuntu-blubuntu.png" # 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 ACLOCAL_AMFLAGS MKINSTALLDIRS POSUB POFILES PO_IN_DATADIR_FALSE PO_IN_DATADIR_TRUE INTLLIBS INSTOBJEXT GMOFILES CATOBJEXT CATALOGS MSGFMT_OPTS EGREP GREP CPP GETTEXT_PACKAGE PKG_CONFIG DATADIRNAME am__fastdepCC_FALSE am__fastdepCC_TRUE CCDEPMODE AMDEPBACKSLASH AMDEP_FALSE AMDEP_TRUE am__quote am__include DEPDIR OBJEXT EXEEXT ac_ct_CC CPPFLAGS LDFLAGS CFLAGS CC ALL_LINGUAS INTLTOOL_PERL GMSGFMT MSGFMT MSGMERGE XGETTEXT INTLTOOL_POLICY_RULE INTLTOOL_SERVICE_RULE INTLTOOL_THEME_RULE INTLTOOL_SCHEMAS_RULE INTLTOOL_CAVES_RULE INTLTOOL_XML_NOMERGE_RULE INTLTOOL_XML_RULE INTLTOOL_KBD_RULE INTLTOOL_XAM_RULE INTLTOOL_UI_RULE INTLTOOL_SOUNDLIST_RULE INTLTOOL_SHEET_RULE INTLTOOL_SERVER_RULE INTLTOOL_PONG_RULE INTLTOOL_OAF_RULE INTLTOOL_PROP_RULE INTLTOOL_KEYS_RULE INTLTOOL_DIRECTORY_RULE INTLTOOL_DESKTOP_RULE INTLTOOL_EXTRACT INTLTOOL_MERGE INTLTOOL_UPDATE USE_NLS 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_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_nls enable_dependency_tracking ' ac_precious_vars='build_alias host_alias target_alias CC CFLAGS LDFLAGS LIBS CPPFLAGS PKG_CONFIG CPP' # 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=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 blubuntu-look 0.3.1 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/blubuntu-look] --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 _ACEOF fi if test -n "$ac_init_help"; then case $ac_init_help in short | recursive ) echo "Configuration of blubuntu-look 0.3.1:";; 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-nls do not use Native Language Support --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 C/C++/Objective C preprocessor flags, e.g. -I if you have headers in a nonstandard directory PKG_CONFIG path to pkg-config utility CPP C preprocessor 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 blubuntu-look configure 0.3.1 generated by GNU Autoconf 2.64 Copyright (C) 2009 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; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} return $ac_retval } # ac_fn_c_try_compile # ac_fn_c_try_link LINENO # ----------------------- # Try to link conftest.$ac_ext, and return whether this succeeded. ac_fn_c_try_link () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack rm -f conftest.$ac_objext conftest$ac_exeext 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>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_exeext && { test "$cross_compiling" = yes || $as_test_x conftest$ac_exeext }; then : ac_retval=0 else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would # interfere with the next link command; also delete a directory that is # left behind by Apple's compiler. We do this before executing the actions. rm -rf conftest.dSYM conftest_ipa8_conftest.oo eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} return $ac_retval } # ac_fn_c_try_link # ac_fn_c_check_func LINENO FUNC VAR # ---------------------------------- # Tests whether FUNC exists, setting the cache variable VAR accordingly ac_fn_c_check_func () { 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 { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Define $2 to an innocuous variant, in case declares $2. For example, HP-UX 11i declares gettimeofday. */ #define $2 innocuous_$2 /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $2 (); below. Prefer to if __STDC__ is defined, since exists even on freestanding compilers. */ #ifdef __STDC__ # include #else # include #endif #undef $2 /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char $2 (); /* The GNU C library defines this for functions which it implements to always fail with ENOSYS. Some functions are actually named something starting with __ and the normal name is an alias. */ #if defined __stub_$2 || defined __stub___$2 choke me #endif int main () { return $2 (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : eval "$3=yes" else eval "$3=no" fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext 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; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} } # ac_fn_c_check_func # 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; } >/dev/null && { 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; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} return $ac_retval } # ac_fn_c_try_cpp # 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; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} return $ac_retval } # ac_fn_c_try_run # 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 { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then : { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; 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.$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 { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; 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; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} } # ac_fn_c_check_header_mongrel # 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 { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; 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; test "x$as_lineno_stack" = x && { as_lineno=; 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 blubuntu-look $as_me 0.3.1, which was generated by GNU Autoconf 2.64. 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 cat <<\_ASBOX ## ---------------- ## ## Cache variables. ## ## ---------------- ## _ASBOX 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 cat <<\_ASBOX ## ----------------- ## ## Output variables. ## ## ----------------- ## _ASBOX 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 cat <<\_ASBOX ## ------------------- ## ## File substitutions. ## ## ------------------- ## _ASBOX 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 cat <<\_ASBOX ## ----------- ## ## confdefs.h. ## ## ----------- ## _ASBOX 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 ac_site_file1=$CONFIG_SITE 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 -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" 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. if 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 am__api_version='1.11' ac_aux_dir= for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do for ac_t in install-sh install.sh shtool; do if test -f "$ac_dir/$ac_t"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/$ac_t -c" break 2 fi done done if test -z "$ac_aux_dir"; then as_fn_error "cannot find install-sh, install.sh, or shtool in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" "$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. # 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 test "${ac_cv_path_install+set}" = set; 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 test "${ac_cv_prog_STRIP+set}" = set; 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 test "${ac_cv_prog_ac_ct_STRIP+set}" = set; 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 test "${ac_cv_path_mkdir+set}" = set; 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 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. test -d ./--version && rmdir ./--version 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 test "${ac_cv_prog_AWK+set}" = set; 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 { as_var=ac_cv_prog_make_${ac_make}_set; eval "test \"\${$as_var+set}\" = set"; }; 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='blubuntu-look' VERSION='0.3.1' 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. AMTAR=${AMTAR-"${am_missing_run}tar"} { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to create a ustar tar archive" >&5 $as_echo_n "checking how to create a ustar tar archive... " >&6; } # Loop over all known methods to create a tar archive until one works. _am_tools='gnutar plaintar pax cpio none' _am_tools=${am_cv_prog_tar_ustar-$_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 { echo "$as_me:$LINENO: $_am_tar --version" >&5 ($_am_tar --version) >&5 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && break done am__tar="$_am_tar --format=ustar -chf - "'"$$tardir"' am__tar_="$_am_tar --format=ustar -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 ustar -w "$$tardir"' am__tar_='pax -L -x ustar -w "$tardir"' am__untar='pax -r' ;; cpio) am__tar='find "$$tardir" -print | cpio -o -H ustar -L' am__tar_='find "$tardir" -print | cpio -o -H ustar -L' am__untar='cpio -i -H ustar -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_ustar}" && break # tar/untar a dummy directory, and stop if the command works rm -rf conftest.dir mkdir conftest.dir echo GrepMe > conftest.dir/file { echo "$as_me:$LINENO: tardir=conftest.dir && eval $am__tar_ >conftest.tar" >&5 (tardir=conftest.dir && eval $am__tar_ >conftest.tar) >&5 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } rm -rf conftest.dir if test -s conftest.tar; then { echo "$as_me:$LINENO: $am__untar &5 ($am__untar &5 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } grep GrepMe conftest.dir/file >/dev/null 2>&1 && break fi done rm -rf conftest.dir if test "${am_cv_prog_tar_ustar+set}" = set; then : $as_echo_n "(cached) " >&6 else am_cv_prog_tar_ustar=$_am_tool fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_prog_tar_ustar" >&5 $as_echo "$am_cv_prog_tar_ustar" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether NLS is requested" >&5 $as_echo_n "checking whether NLS is requested... " >&6; } # Check whether --enable-nls was given. if test "${enable_nls+set}" = set; then : enableval=$enable_nls; USE_NLS=$enableval else USE_NLS=yes fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_NLS" >&5 $as_echo "$USE_NLS" >&6; } 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='\' 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 test "${ac_cv_prog_CC+set}" = set; 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 test "${ac_cv_prog_ac_ct_CC+set}" = set; 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 test "${ac_cv_prog_CC+set}" = set; 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 test "${ac_cv_prog_CC+set}" = set; 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 test "${ac_cv_prog_CC+set}" = set; 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 test "${ac_cv_prog_ac_ct_CC+set}" = set; 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 rm -f conftest.er1 conftest.err fi $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. */ #include int main () { FILE *f = fopen ("conftest.out", "w"); return ferror (f) || fclose (f) != 0; ; 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 conftest.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 for C compiler default output file name" >&5 $as_echo_n "checking for C compiler default output file name... " >&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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_file" >&5 $as_echo "$ac_file" >&6; } if test -z "$ac_file"; then : $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_set_status 77 as_fn_error "C compiler cannot create executables See \`config.log' for more details." "$LINENO" 5; }; } fi ac_exeext=$ac_cv_exeext # 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 the C compiler works" >&5 $as_echo_n "checking whether the C compiler works... " >&6; } # If not cross compiling, check that we can run a simple program. if test "$cross_compiling" != yes; then if { ac_try='./$ac_file' { { 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: yes" >&5 $as_echo "yes" >&6; } rm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out conftest.out ac_clean_files=$ac_clean_files_save # 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; } { $as_echo "$as_me:${as_lineno-$LINENO}: result: $cross_compiling" >&5 $as_echo "$cross_compiling" >&6; } { $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$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 { $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 test "${ac_cv_objext+set}" = set; 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 test "${ac_cv_c_compiler_gnu+set}" = set; 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 test "${ac_cv_prog_cc_g+set}" = set; 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 test "${ac_cv_prog_cc_c89+set}" = set; 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 test "${am_cv_CC_dependencies_compiler_type+set}" = set; 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'. 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 ;; 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 case "$am__api_version" in 1.01234) as_fn_error "Automake 1.5 or newer is required to use intltool" "$LINENO" 5 ;; *) ;; esac if test -n "0.33"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for intltool >= 0.33" >&5 $as_echo_n "checking for intltool >= 0.33... " >&6; } INTLTOOL_REQUIRED_VERSION_AS_INT=`echo 0.33 | awk -F. '{ print $ 1 * 1000 + $ 2 * 100 + $ 3; }'` INTLTOOL_APPLIED_VERSION=`intltool-update --version | head -1 | cut -d" " -f3` INTLTOOL_APPLIED_VERSION_AS_INT=`echo $INTLTOOL_APPLIED_VERSION | awk -F. '{ print $ 1 * 1000 + $ 2 * 100 + $ 3; }'` { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INTLTOOL_APPLIED_VERSION found" >&5 $as_echo "$INTLTOOL_APPLIED_VERSION found" >&6; } test "$INTLTOOL_APPLIED_VERSION_AS_INT" -ge "$INTLTOOL_REQUIRED_VERSION_AS_INT" || as_fn_error "Your intltool is too old. You need intltool 0.33 or later." "$LINENO" 5 fi # Extract the first word of "intltool-update", so it can be a program name with args. set dummy intltool-update; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if test "${ac_cv_path_INTLTOOL_UPDATE+set}" = set; then : $as_echo_n "(cached) " >&6 else case $INTLTOOL_UPDATE in [\\/]* | ?:[\\/]*) ac_cv_path_INTLTOOL_UPDATE="$INTLTOOL_UPDATE" # 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_INTLTOOL_UPDATE="$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 INTLTOOL_UPDATE=$ac_cv_path_INTLTOOL_UPDATE if test -n "$INTLTOOL_UPDATE"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INTLTOOL_UPDATE" >&5 $as_echo "$INTLTOOL_UPDATE" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Extract the first word of "intltool-merge", so it can be a program name with args. set dummy intltool-merge; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if test "${ac_cv_path_INTLTOOL_MERGE+set}" = set; then : $as_echo_n "(cached) " >&6 else case $INTLTOOL_MERGE in [\\/]* | ?:[\\/]*) ac_cv_path_INTLTOOL_MERGE="$INTLTOOL_MERGE" # 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_INTLTOOL_MERGE="$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 INTLTOOL_MERGE=$ac_cv_path_INTLTOOL_MERGE if test -n "$INTLTOOL_MERGE"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INTLTOOL_MERGE" >&5 $as_echo "$INTLTOOL_MERGE" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Extract the first word of "intltool-extract", so it can be a program name with args. set dummy intltool-extract; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if test "${ac_cv_path_INTLTOOL_EXTRACT+set}" = set; then : $as_echo_n "(cached) " >&6 else case $INTLTOOL_EXTRACT in [\\/]* | ?:[\\/]*) ac_cv_path_INTLTOOL_EXTRACT="$INTLTOOL_EXTRACT" # 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_INTLTOOL_EXTRACT="$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 INTLTOOL_EXTRACT=$ac_cv_path_INTLTOOL_EXTRACT if test -n "$INTLTOOL_EXTRACT"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INTLTOOL_EXTRACT" >&5 $as_echo "$INTLTOOL_EXTRACT" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test -z "$INTLTOOL_UPDATE" -o -z "$INTLTOOL_MERGE" -o -z "$INTLTOOL_EXTRACT"; then as_fn_error "The intltool scripts were not found. Please install intltool." "$LINENO" 5 fi INTLTOOL_DESKTOP_RULE='%.desktop: %.desktop.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' INTLTOOL_DIRECTORY_RULE='%.directory: %.directory.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' INTLTOOL_KEYS_RULE='%.keys: %.keys.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -k -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' INTLTOOL_PROP_RULE='%.prop: %.prop.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' INTLTOOL_OAF_RULE='%.oaf: %.oaf.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -o -p $(top_srcdir)/po $< $@' INTLTOOL_PONG_RULE='%.pong: %.pong.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' INTLTOOL_SERVER_RULE='%.server: %.server.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -o -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' INTLTOOL_SHEET_RULE='%.sheet: %.sheet.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' INTLTOOL_SOUNDLIST_RULE='%.soundlist: %.soundlist.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' INTLTOOL_UI_RULE='%.ui: %.ui.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' INTLTOOL_XML_RULE='%.xml: %.xml.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' INTLTOOL_XML_NOMERGE_RULE='%.xml: %.xml.in $(INTLTOOL_MERGE) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u /tmp $< $@' INTLTOOL_XAM_RULE='%.xam: %.xml.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' INTLTOOL_KBD_RULE='%.kbd: %.kbd.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -m -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' INTLTOOL_CAVES_RULE='%.caves: %.caves.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' INTLTOOL_SCHEMAS_RULE='%.schemas: %.schemas.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -s -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' INTLTOOL_THEME_RULE='%.theme: %.theme.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' INTLTOOL_SERVICE_RULE='%.service: %.service.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' INTLTOOL_POLICY_RULE='%.policy: %.policy.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' # Check the gettext tools to make sure they are GNU # Extract the first word of "xgettext", so it can be a program name with args. set dummy xgettext; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if test "${ac_cv_path_XGETTEXT+set}" = set; then : $as_echo_n "(cached) " >&6 else case $XGETTEXT in [\\/]* | ?:[\\/]*) ac_cv_path_XGETTEXT="$XGETTEXT" # 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_XGETTEXT="$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 XGETTEXT=$ac_cv_path_XGETTEXT if test -n "$XGETTEXT"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $XGETTEXT" >&5 $as_echo "$XGETTEXT" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Extract the first word of "msgmerge", so it can be a program name with args. set dummy msgmerge; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if test "${ac_cv_path_MSGMERGE+set}" = set; then : $as_echo_n "(cached) " >&6 else case $MSGMERGE in [\\/]* | ?:[\\/]*) ac_cv_path_MSGMERGE="$MSGMERGE" # 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_MSGMERGE="$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 MSGMERGE=$ac_cv_path_MSGMERGE if test -n "$MSGMERGE"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MSGMERGE" >&5 $as_echo "$MSGMERGE" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Extract the first word of "msgfmt", so it can be a program name with args. set dummy msgfmt; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if test "${ac_cv_path_MSGFMT+set}" = set; then : $as_echo_n "(cached) " >&6 else case $MSGFMT in [\\/]* | ?:[\\/]*) ac_cv_path_MSGFMT="$MSGFMT" # 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_MSGFMT="$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 MSGFMT=$ac_cv_path_MSGFMT if test -n "$MSGFMT"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MSGFMT" >&5 $as_echo "$MSGFMT" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Extract the first word of "gmsgfmt", so it can be a program name with args. set dummy gmsgfmt; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if test "${ac_cv_path_GMSGFMT+set}" = set; then : $as_echo_n "(cached) " >&6 else case $GMSGFMT in [\\/]* | ?:[\\/]*) ac_cv_path_GMSGFMT="$GMSGFMT" # 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_GMSGFMT="$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 test -z "$ac_cv_path_GMSGFMT" && ac_cv_path_GMSGFMT="$MSGFMT" ;; esac fi GMSGFMT=$ac_cv_path_GMSGFMT if test -n "$GMSGFMT"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GMSGFMT" >&5 $as_echo "$GMSGFMT" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test -z "$XGETTEXT" -o -z "$MSGMERGE" -o -z "$MSGFMT"; then as_fn_error "GNU gettext tools not found; required for intltool" "$LINENO" 5 fi xgversion="`$XGETTEXT --version|grep '(GNU ' 2> /dev/null`" mmversion="`$MSGMERGE --version|grep '(GNU ' 2> /dev/null`" mfversion="`$MSGFMT --version|grep '(GNU ' 2> /dev/null`" if test -z "$xgversion" -o -z "$mmversion" -o -z "$mfversion"; then as_fn_error "GNU gettext tools not found; required for intltool" "$LINENO" 5 fi # Extract the first word of "perl", so it can be a program name with args. set dummy perl; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if test "${ac_cv_path_INTLTOOL_PERL+set}" = set; then : $as_echo_n "(cached) " >&6 else case $INTLTOOL_PERL in [\\/]* | ?:[\\/]*) ac_cv_path_INTLTOOL_PERL="$INTLTOOL_PERL" # 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_INTLTOOL_PERL="$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 INTLTOOL_PERL=$ac_cv_path_INTLTOOL_PERL if test -n "$INTLTOOL_PERL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INTLTOOL_PERL" >&5 $as_echo "$INTLTOOL_PERL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test -z "$INTLTOOL_PERL"; then as_fn_error "perl not found" "$LINENO" 5 fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for perl >= 5.8.1" >&5 $as_echo_n "checking for perl >= 5.8.1... " >&6; } $INTLTOOL_PERL -e "use 5.8.1;" > /dev/null 2>&1 if test $? -ne 0; then as_fn_error "perl 5.8.1 is required for intltool" "$LINENO" 5 else IT_PERL_VERSION="`$INTLTOOL_PERL -e \"printf '%vd', $^V\"`" { $as_echo "$as_me:${as_lineno-$LINENO}: result: $IT_PERL_VERSION" >&5 $as_echo "$IT_PERL_VERSION" >&6; } fi if test "x" != "xno-xml"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for XML::Parser" >&5 $as_echo_n "checking for XML::Parser... " >&6; } if `$INTLTOOL_PERL -e "require XML::Parser" 2>/dev/null`; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: ok" >&5 $as_echo "ok" >&6; } else as_fn_error "XML::Parser perl module is required for intltool" "$LINENO" 5 fi fi # Substitute ALL_LINGUAS so we can use it in po/Makefile # Set DATADIRNAME correctly if it is not set yet # (copied from glib-gettext.m4) if test -z "$DATADIRNAME"; then cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { extern int _nl_msg_cat_cntr; return _nl_msg_cat_cntr ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : DATADIRNAME=share else case $host in *-*-solaris*) ac_fn_c_check_func "$LINENO" "bind_textdomain_codeset" "ac_cv_func_bind_textdomain_codeset" if test "x$ac_cv_func_bind_textdomain_codeset" = x""yes; then : DATADIRNAME=share else DATADIRNAME=lib fi ;; *) DATADIRNAME=lib ;; esac fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi 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 test "${ac_cv_path_PKG_CONFIG+set}" = set; 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 test "${ac_cv_path_ac_pt_PKG_CONFIG+set}" = set; 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.19 { $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 GETTEXT_PACKAGE="${PACKAGE}" ALL_LINGUAS="es fr pt_BR" 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 test "${ac_cv_prog_CPP+set}" = set; 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.$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.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. rm -f 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.$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.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. rm -f 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 test "${ac_cv_path_GREP+set}" = set; 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 test "${ac_cv_path_EGREP+set}" = set; 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" { $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 test "${ac_cv_header_stdc+set}" = set; 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 " eval as_val=\$$as_ac_Header if test "x$as_val" = x""yes; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF fi done for ac_header in locale.h do : ac_fn_c_check_header_mongrel "$LINENO" "locale.h" "ac_cv_header_locale_h" "$ac_includes_default" if test "x$ac_cv_header_locale_h" = x""yes; then : cat >>confdefs.h <<_ACEOF #define HAVE_LOCALE_H 1 _ACEOF fi done if test $ac_cv_header_locale_h = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for LC_MESSAGES" >&5 $as_echo_n "checking for LC_MESSAGES... " >&6; } if test "${am_cv_val_LC_MESSAGES+set}" = set; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main () { return LC_MESSAGES ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : am_cv_val_LC_MESSAGES=yes else am_cv_val_LC_MESSAGES=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_val_LC_MESSAGES" >&5 $as_echo "$am_cv_val_LC_MESSAGES" >&6; } if test $am_cv_val_LC_MESSAGES = yes; then $as_echo "#define HAVE_LC_MESSAGES 1" >>confdefs.h fi fi USE_NLS=yes gt_cv_have_gettext=no CATOBJEXT=NONE XGETTEXT=: INTLLIBS= ac_fn_c_check_header_mongrel "$LINENO" "libintl.h" "ac_cv_header_libintl_h" "$ac_includes_default" if test "x$ac_cv_header_libintl_h" = x""yes; then : gt_cv_func_dgettext_libintl="no" libintl_extra_libs="" # # First check in libc # { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ngettext in libc" >&5 $as_echo_n "checking for ngettext in libc... " >&6; } if test "${gt_cv_func_ngettext_libc+set}" = set; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main () { return !ngettext ("","", 1) ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : gt_cv_func_ngettext_libc=yes else gt_cv_func_ngettext_libc=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gt_cv_func_ngettext_libc" >&5 $as_echo "$gt_cv_func_ngettext_libc" >&6; } if test "$gt_cv_func_ngettext_libc" = "yes" ; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dgettext in libc" >&5 $as_echo_n "checking for dgettext in libc... " >&6; } if test "${gt_cv_func_dgettext_libc+set}" = set; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main () { return !dgettext ("","") ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : gt_cv_func_dgettext_libc=yes else gt_cv_func_dgettext_libc=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gt_cv_func_dgettext_libc" >&5 $as_echo "$gt_cv_func_dgettext_libc" >&6; } fi if test "$gt_cv_func_ngettext_libc" = "yes" ; then for ac_func in bind_textdomain_codeset do : ac_fn_c_check_func "$LINENO" "bind_textdomain_codeset" "ac_cv_func_bind_textdomain_codeset" if test "x$ac_cv_func_bind_textdomain_codeset" = x""yes; then : cat >>confdefs.h <<_ACEOF #define HAVE_BIND_TEXTDOMAIN_CODESET 1 _ACEOF fi done fi # # If we don't have everything we want, check in libintl # if test "$gt_cv_func_dgettext_libc" != "yes" \ || test "$gt_cv_func_ngettext_libc" != "yes" \ || test "$ac_cv_func_bind_textdomain_codeset" != "yes" ; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for bindtextdomain in -lintl" >&5 $as_echo_n "checking for bindtextdomain in -lintl... " >&6; } if test "${ac_cv_lib_intl_bindtextdomain+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lintl $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char bindtextdomain (); int main () { return bindtextdomain (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_intl_bindtextdomain=yes else ac_cv_lib_intl_bindtextdomain=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_intl_bindtextdomain" >&5 $as_echo "$ac_cv_lib_intl_bindtextdomain" >&6; } if test "x$ac_cv_lib_intl_bindtextdomain" = x""yes; then : { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ngettext in -lintl" >&5 $as_echo_n "checking for ngettext in -lintl... " >&6; } if test "${ac_cv_lib_intl_ngettext+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lintl $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char ngettext (); int main () { return ngettext (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_intl_ngettext=yes else ac_cv_lib_intl_ngettext=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_intl_ngettext" >&5 $as_echo "$ac_cv_lib_intl_ngettext" >&6; } if test "x$ac_cv_lib_intl_ngettext" = x""yes; then : { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dgettext in -lintl" >&5 $as_echo_n "checking for dgettext in -lintl... " >&6; } if test "${ac_cv_lib_intl_dgettext+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lintl $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char dgettext (); int main () { return dgettext (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_intl_dgettext=yes else ac_cv_lib_intl_dgettext=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_intl_dgettext" >&5 $as_echo "$ac_cv_lib_intl_dgettext" >&6; } if test "x$ac_cv_lib_intl_dgettext" = x""yes; then : gt_cv_func_dgettext_libintl=yes fi fi fi if test "$gt_cv_func_dgettext_libintl" != "yes" ; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking if -liconv is needed to use gettext" >&5 $as_echo_n "checking if -liconv is needed to use gettext... " >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: result: " >&5 $as_echo "" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ngettext in -lintl" >&5 $as_echo_n "checking for ngettext in -lintl... " >&6; } if test "${ac_cv_lib_intl_ngettext+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lintl -liconv $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char ngettext (); int main () { return ngettext (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_intl_ngettext=yes else ac_cv_lib_intl_ngettext=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_intl_ngettext" >&5 $as_echo "$ac_cv_lib_intl_ngettext" >&6; } if test "x$ac_cv_lib_intl_ngettext" = x""yes; then : { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dcgettext in -lintl" >&5 $as_echo_n "checking for dcgettext in -lintl... " >&6; } if test "${ac_cv_lib_intl_dcgettext+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lintl -liconv $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char dcgettext (); int main () { return dcgettext (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_intl_dcgettext=yes else ac_cv_lib_intl_dcgettext=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_intl_dcgettext" >&5 $as_echo "$ac_cv_lib_intl_dcgettext" >&6; } if test "x$ac_cv_lib_intl_dcgettext" = x""yes; then : gt_cv_func_dgettext_libintl=yes libintl_extra_libs=-liconv else : fi else : fi fi # # If we found libintl, then check in it for bind_textdomain_codeset(); # we'll prefer libc if neither have bind_textdomain_codeset(), # and both have dgettext and ngettext # if test "$gt_cv_func_dgettext_libintl" = "yes" ; then glib_save_LIBS="$LIBS" LIBS="$LIBS -lintl $libintl_extra_libs" unset ac_cv_func_bind_textdomain_codeset for ac_func in bind_textdomain_codeset do : ac_fn_c_check_func "$LINENO" "bind_textdomain_codeset" "ac_cv_func_bind_textdomain_codeset" if test "x$ac_cv_func_bind_textdomain_codeset" = x""yes; then : cat >>confdefs.h <<_ACEOF #define HAVE_BIND_TEXTDOMAIN_CODESET 1 _ACEOF fi done LIBS="$glib_save_LIBS" if test "$ac_cv_func_bind_textdomain_codeset" = "yes" ; then gt_cv_func_dgettext_libc=no else if test "$gt_cv_func_dgettext_libc" = "yes" \ && test "$gt_cv_func_ngettext_libc" = "yes"; then gt_cv_func_dgettext_libintl=no fi fi fi fi if test "$gt_cv_func_dgettext_libc" = "yes" \ || test "$gt_cv_func_dgettext_libintl" = "yes"; then gt_cv_have_gettext=yes fi if test "$gt_cv_func_dgettext_libintl" = "yes"; then INTLLIBS="-lintl $libintl_extra_libs" fi if test "$gt_cv_have_gettext" = "yes"; then $as_echo "#define HAVE_GETTEXT 1" >>confdefs.h # Extract the first word of "msgfmt", so it can be a program name with args. set dummy msgfmt; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if test "${ac_cv_path_MSGFMT+set}" = set; then : $as_echo_n "(cached) " >&6 else case "$MSGFMT" in /*) ac_cv_path_MSGFMT="$MSGFMT" # Let the user override the test with a path. ;; *) IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:" for ac_dir in $PATH; do test -z "$ac_dir" && ac_dir=. if test -f $ac_dir/$ac_word; then if test -z "`$ac_dir/$ac_word -h 2>&1 | grep 'dv '`"; then ac_cv_path_MSGFMT="$ac_dir/$ac_word" break fi fi done IFS="$ac_save_ifs" test -z "$ac_cv_path_MSGFMT" && ac_cv_path_MSGFMT="no" ;; esac fi MSGFMT="$ac_cv_path_MSGFMT" if test "$MSGFMT" != "no"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MSGFMT" >&5 $as_echo "$MSGFMT" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "$MSGFMT" != "no"; then glib_save_LIBS="$LIBS" LIBS="$LIBS $INTLLIBS" for ac_func in dcgettext do : ac_fn_c_check_func "$LINENO" "dcgettext" "ac_cv_func_dcgettext" if test "x$ac_cv_func_dcgettext" = x""yes; then : cat >>confdefs.h <<_ACEOF #define HAVE_DCGETTEXT 1 _ACEOF fi done MSGFMT_OPTS= { $as_echo "$as_me:${as_lineno-$LINENO}: checking if msgfmt accepts -c" >&5 $as_echo_n "checking if msgfmt accepts -c... " >&6; } cat >conftest.foo <<_ACEOF msgid "" msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Project-Id-Version: test 1.0\n" "PO-Revision-Date: 2007-02-15 12:01+0100\n" "Last-Translator: test \n" "Language-Team: C \n" "MIME-Version: 1.0\n" "Content-Transfer-Encoding: 8bit\n" _ACEOF if { { $as_echo "$as_me:${as_lineno-$LINENO}: \$MSGFMT -c -o /dev/null conftest.foo"; } >&5 ($MSGFMT -c -o /dev/null conftest.foo) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then MSGFMT_OPTS=-c; { $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; } echo "$as_me: failed input was:" >&5 sed 's/^/| /' conftest.foo >&5 fi # Extract the first word of "gmsgfmt", so it can be a program name with args. set dummy gmsgfmt; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if test "${ac_cv_path_GMSGFMT+set}" = set; then : $as_echo_n "(cached) " >&6 else case $GMSGFMT in [\\/]* | ?:[\\/]*) ac_cv_path_GMSGFMT="$GMSGFMT" # 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_GMSGFMT="$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 test -z "$ac_cv_path_GMSGFMT" && ac_cv_path_GMSGFMT="$MSGFMT" ;; esac fi GMSGFMT=$ac_cv_path_GMSGFMT if test -n "$GMSGFMT"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GMSGFMT" >&5 $as_echo "$GMSGFMT" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Extract the first word of "xgettext", so it can be a program name with args. set dummy xgettext; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if test "${ac_cv_path_XGETTEXT+set}" = set; then : $as_echo_n "(cached) " >&6 else case "$XGETTEXT" in /*) ac_cv_path_XGETTEXT="$XGETTEXT" # Let the user override the test with a path. ;; *) IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:" for ac_dir in $PATH; do test -z "$ac_dir" && ac_dir=. if test -f $ac_dir/$ac_word; then if test -z "`$ac_dir/$ac_word -h 2>&1 | grep '(HELP)'`"; then ac_cv_path_XGETTEXT="$ac_dir/$ac_word" break fi fi done IFS="$ac_save_ifs" test -z "$ac_cv_path_XGETTEXT" && ac_cv_path_XGETTEXT=":" ;; esac fi XGETTEXT="$ac_cv_path_XGETTEXT" if test "$XGETTEXT" != ":"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $XGETTEXT" >&5 $as_echo "$XGETTEXT" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { extern int _nl_msg_cat_cntr; return _nl_msg_cat_cntr ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : CATOBJEXT=.gmo DATADIRNAME=share else case $host in *-*-solaris*) ac_fn_c_check_func "$LINENO" "bind_textdomain_codeset" "ac_cv_func_bind_textdomain_codeset" if test "x$ac_cv_func_bind_textdomain_codeset" = x""yes; then : CATOBJEXT=.gmo DATADIRNAME=share else CATOBJEXT=.mo DATADIRNAME=lib fi ;; *) CATOBJEXT=.mo DATADIRNAME=lib ;; esac fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS="$glib_save_LIBS" INSTOBJEXT=.mo else gt_cv_have_gettext=no fi fi fi if test "$gt_cv_have_gettext" = "yes" ; then $as_echo "#define ENABLE_NLS 1" >>confdefs.h fi if test "$XGETTEXT" != ":"; then if $XGETTEXT --omit-header /dev/null 2> /dev/null; then : ; else { $as_echo "$as_me:${as_lineno-$LINENO}: result: found xgettext program is not GNU xgettext; ignore it" >&5 $as_echo "found xgettext program is not GNU xgettext; ignore it" >&6; } XGETTEXT=":" fi fi # We need to process the po/ directory. POSUB=po ac_config_commands="$ac_config_commands default-1" for lang in $ALL_LINGUAS; do GMOFILES="$GMOFILES $lang.gmo" POFILES="$POFILES $lang.po" done if test "$gt_cv_have_gettext" = "yes"; then if test "x$ALL_LINGUAS" = "x"; then LINGUAS= else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for catalogs to be installed" >&5 $as_echo_n "checking for catalogs to be installed... " >&6; } NEW_LINGUAS= for presentlang in $ALL_LINGUAS; do useit=no if test "%UNSET%" != "${LINGUAS-%UNSET%}"; then desiredlanguages="$LINGUAS" else desiredlanguages="$ALL_LINGUAS" fi for desiredlang in $desiredlanguages; do # Use the presentlang catalog if desiredlang is # a. equal to presentlang, or # b. a variant of presentlang (because in this case, # presentlang can be used as a fallback for messages # which are not translated in the desiredlang catalog). case "$desiredlang" in "$presentlang"*) useit=yes;; esac done if test $useit = yes; then NEW_LINGUAS="$NEW_LINGUAS $presentlang" fi done LINGUAS=$NEW_LINGUAS { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LINGUAS" >&5 $as_echo "$LINGUAS" >&6; } fi if test -n "$LINGUAS"; then for lang in $LINGUAS; do CATALOGS="$CATALOGS $lang$CATOBJEXT"; done fi fi MKINSTALLDIRS= if test -n "$ac_aux_dir"; then MKINSTALLDIRS="$ac_aux_dir/mkinstalldirs" fi if test -z "$MKINSTALLDIRS"; then MKINSTALLDIRS="\$(top_srcdir)/mkinstalldirs" fi test -d po || mkdir po if test "x$srcdir" != "x."; then if test "x`echo $srcdir | sed 's@/.*@@'`" = "x"; then posrcprefix="$srcdir/" else posrcprefix="../$srcdir/" fi else posrcprefix="../" fi rm -f po/POTFILES sed -e "/^#/d" -e "/^\$/d" -e "s,.*, $posrcprefix& \\\\," -e "\$s/\(.*\) \\\\/\1/" \ < $srcdir/po/POTFILES.in > po/POTFILES # AM_GLIB_GNU_GETTEXT above subst. $DATADIRNAME # this is the directory where the *.{mo,gmo} files are installed localedir='${prefix}/${DATADIRNAME}/locale' # Workaround to make aclocal get the right flags ACLOCAL_AMFLAGS="\${ACLOCAL_FLAGS}" ac_config_files="$ac_config_files Makefile gtk-2.0/Makefile metacity-1/Makefile po/Makefile.in" 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 test "x$cache_file" != "x/dev/null" && { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5 $as_echo "$as_me: updating cache $cache_file" >&6;} cat confcache >$cache_file 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}' # Transform confdefs.h into DEFS. # Protect against shell expansion while executing Makefile rules. # Protect against Makefile macro expansion. # # If the first sed substitution is executed (which looks for macros that # take arguments), then branch to the quote section. Otherwise, # look for a macro that doesn't take arguments. ac_script=' :mline /\\$/{ N s,\\\n,, b mline } t clear :clear s/^[ ]*#[ ]*define[ ][ ]*\([^ (][^ (]*([^)]*)\)[ ]*\(.*\)/-D\1=\2/g t quote s/^[ ]*#[ ]*define[ ][ ]*\([^ ][^ ]*\)[ ]*\(.*\)/-D\1=\2/g t quote b any :quote s/[ `~#$^&*(){}\\|;'\''"<>?]/\\&/g s/\[/\\&/g s/\]/\\&/g s/\$/$$/g H :any ${ g s/^\n// s/\n/ /g p } ' DEFS=`sed -n "$ac_script" confdefs.h` ac_libobjs= ac_ltlibobjs= 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 ac_config_commands="$ac_config_commands po/stamp-it" : ${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. 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 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=$?; test $as_status -eq 0 && as_status=1 if test "$3"; then as_lineno=${as_lineno-"$2"} as_lineno_stack=as_lineno_stack=$as_lineno_stack $as_echo "$as_me:${as_lineno-$LINENO}: error: $1" >&$3 fi $as_echo "$as_me: error: $1" >&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 blubuntu-look $as_me 0.3.1, which was generated by GNU Autoconf 2.64. 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 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 # Files that config.status was made for. config_files="$ac_config_files" 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 -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 Configuration files: $config_files Configuration commands: $config_commands Report bugs to the package provider." _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_version="\\ blubuntu-look config.status 0.3.1 configured by $0, generated by GNU Autoconf 2.64, with options \\"`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\" Copyright (C) 2009 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=$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 ;; --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"` ;; esac as_fn_append CONFIG_FILES " '$ac_optarg'" ac_need_defaults=false;; --he | --h | --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 "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;; "default-1") CONFIG_COMMANDS="$CONFIG_COMMANDS default-1" ;; "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; "gtk-2.0/Makefile") CONFIG_FILES="$CONFIG_FILES gtk-2.0/Makefile" ;; "metacity-1/Makefile") CONFIG_FILES="$CONFIG_FILES metacity-1/Makefile" ;; "po/Makefile.in") CONFIG_FILES="$CONFIG_FILES po/Makefile.in" ;; "po/stamp-it") CONFIG_COMMANDS="$CONFIG_COMMANDS po/stamp-it" ;; *) 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_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= trap 'exit_status=$? { test -z "$tmp" || test ! -d "$tmp" || rm -fr "$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 -n "$tmp" && test -d "$tmp" } || { tmp=./conf$$-$RANDOM (umask 077 && mkdir "$tmp") } || as_fn_error "cannot create a temporary directory in ." "$LINENO" 5 # 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 {' >"$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 >>"\$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 >>"\$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 < "$tmp/subs1.awk" > "$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 $(srcdir), # ${srcdir} and @srcdir@ 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[ ]*=/{ s/:*\$(srcdir):*/:/ s/:*\${srcdir}:*/:/ s/:*@srcdir@:*/:/ s/^\([^=]*=[ ]*\):*/\1/ s/:*$// s/^[^=]*=[ ]*$// }' fi cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 fi # test -n "$CONFIG_FILES" eval set X " :F $CONFIG_FILES :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="$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 "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 >"$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 "$tmp/subs.awk" >$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' "$tmp/out"`; test -n "$ac_out"; } && { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' "$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 "$tmp/stdin" case $ac_file in -) cat "$tmp/out" && rm -f "$tmp/out";; *) rm -f "$ac_file" && mv "$tmp/out" "$ac_file";; esac \ || as_fn_error "could not create $ac_file" "$LINENO" 5 ;; :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 } ;; "default-1":C) case "$CONFIG_FILES" in *po/Makefile.in*) sed -e "/POTFILES =/r po/POTFILES" po/Makefile.in > po/Makefile esac ;; "po/stamp-it":C) if ! grep "^# INTLTOOL_MAKEFILE$" "po/Makefile.in" > /dev/null ; then as_fn_error "po/Makefile.in.in was not created by intltoolize." "$LINENO" 5 fi rm -f "po/stamp-it" "po/stamp-it.tmp" "po/POTFILES" "po/Makefile.tmp" >"po/stamp-it.tmp" sed '/^#/d s/^[[].*] *// /^[ ]*$/d '"s|^| $ac_top_srcdir/|" \ "$srcdir/po/POTFILES.in" | sed '$!s/$/ \\/' >"po/POTFILES" sed '/^POTFILES =/,/[^\\]$/ { /^POTFILES =/!d r po/POTFILES } ' "po/Makefile.in" >"po/Makefile" rm -f "po/Makefile.tmp" mv "po/stamp-it.tmp" "po/stamp-it" ;; 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 $? 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 blubuntu-look-0.3.1/README0000644000000000000000000000000011337123212012044 0ustar blubuntu-look-0.3.1/INSTALL0000644000000000000000000002243211337123212012232 0ustar Installation Instructions ************************* Copyright (C) 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005 Free Software Foundation, Inc. This file is free documentation; the Free Software Foundation gives unlimited permission to copy, distribute and modify it. Basic Installation ================== These are generic installation instructions. The `configure' shell script attempts to guess correct values for various system-dependent variables used during compilation. It uses those values to create a `Makefile' in each directory of the package. It may also create one or more `.h' files containing system-dependent definitions. Finally, it creates a shell script `config.status' that you can run in the future to recreate the current configuration, and a file `config.log' containing compiler output (useful mainly for debugging `configure'). It can also use an optional file (typically called `config.cache' and enabled with `--cache-file=config.cache' or simply `-C') that saves the results of its tests to speed up reconfiguring. (Caching is disabled by default to prevent problems with accidental use of stale cache files.) If you need to do unusual things to compile the package, please try to figure out how `configure' could check whether to do them, and mail diffs or instructions to the address given in the `README' so they can be considered for the next release. If you are using the cache, and at some point `config.cache' contains results you don't want to keep, you may remove or edit it. The file `configure.ac' (or `configure.in') is used to create `configure' by a program called `autoconf'. You only need `configure.ac' if you want to change it or regenerate `configure' using a newer version of `autoconf'. The simplest way to compile this package is: 1. `cd' to the directory containing the package's source code and type `./configure' to configure the package for your system. If you're using `csh' on an old version of System V, you might need to type `sh ./configure' instead to prevent `csh' from trying to execute `configure' itself. Running `configure' takes awhile. While running, it prints some messages telling which features it is checking for. 2. Type `make' to compile the package. 3. Optionally, type `make check' to run any self-tests that come with the package. 4. Type `make install' to install the programs and any data files and documentation. 5. You can remove the program binaries and object files from the source code directory by typing `make clean'. To also remove the files that `configure' created (so you can compile the package for a different kind of computer), type `make distclean'. There is also a `make maintainer-clean' target, but that is intended mainly for the package's developers. If you use it, you may have to get all sorts of other programs in order to regenerate files that came with the distribution. Compilers and Options ===================== Some systems require unusual options for compilation or linking that the `configure' script does not know about. Run `./configure --help' for details on some of the pertinent environment variables. You can give `configure' initial values for configuration parameters by setting variables in the command line or in the environment. Here is an example: ./configure CC=c89 CFLAGS=-O2 LIBS=-lposix *Note Defining Variables::, for more details. Compiling For Multiple Architectures ==================================== You can compile the package for more than one kind of computer at the same time, by placing the object files for each architecture in their own directory. To do this, you must use a version of `make' that supports the `VPATH' variable, such as GNU `make'. `cd' to the directory where you want the object files and executables to go and run the `configure' script. `configure' automatically checks for the source code in the directory that `configure' is in and in `..'. If you have to use a `make' that does not support the `VPATH' variable, you have to compile the package for one architecture at a time in the source code directory. After you have installed the package for one architecture, use `make distclean' before reconfiguring for another architecture. Installation Names ================== By default, `make install' installs the package's commands under `/usr/local/bin', include files under `/usr/local/include', etc. You can specify an installation prefix other than `/usr/local' by giving `configure' the option `--prefix=PREFIX'. You can specify separate installation prefixes for architecture-specific files and architecture-independent files. If you pass the option `--exec-prefix=PREFIX' to `configure', the package uses PREFIX as the prefix for installing programs and libraries. Documentation and other data files still use the regular prefix. In addition, if you use an unusual directory layout you can give options like `--bindir=DIR' to specify different values for particular kinds of files. Run `configure --help' for a list of the directories you can set and what kinds of files go in them. If the package supports it, you can cause programs to be installed with an extra prefix or suffix on their names by giving `configure' the option `--program-prefix=PREFIX' or `--program-suffix=SUFFIX'. Optional Features ================= Some packages pay attention to `--enable-FEATURE' options to `configure', where FEATURE indicates an optional part of the package. They may also pay attention to `--with-PACKAGE' options, where PACKAGE is something like `gnu-as' or `x' (for the X Window System). The `README' should mention any `--enable-' and `--with-' options that the package recognizes. For packages that use the X Window System, `configure' can usually find the X include and library files automatically, but if it doesn't, you can use the `configure' options `--x-includes=DIR' and `--x-libraries=DIR' to specify their locations. Specifying the System Type ========================== There may be some features `configure' cannot figure out automatically, but needs to determine by the type of machine the package will run on. Usually, assuming the package is built to be run on the _same_ architectures, `configure' can figure that out, but if it prints a message saying it cannot guess the machine type, give it the `--build=TYPE' option. TYPE can either be a short name for the system type, such as `sun4', or a canonical name which has the form: CPU-COMPANY-SYSTEM where SYSTEM can have one of these forms: OS KERNEL-OS See the file `config.sub' for the possible values of each field. If `config.sub' isn't included in this package, then this package doesn't need to know the machine type. If you are _building_ compiler tools for cross-compiling, you should use the option `--target=TYPE' to select the type of system they will produce code for. If you want to _use_ a cross compiler, that generates code for a platform different from the build platform, you should specify the "host" platform (i.e., that on which the generated programs will eventually be run) with `--host=TYPE'. Sharing Defaults ================ If you want to set default values for `configure' scripts to share, you can create a site shell script called `config.site' that gives default values for variables like `CC', `cache_file', and `prefix'. `configure' looks for `PREFIX/share/config.site' if it exists, then `PREFIX/etc/config.site' if it exists. Or, you can set the `CONFIG_SITE' environment variable to the location of the site script. A warning: not all `configure' scripts look for a site script. Defining Variables ================== Variables not defined in a site shell script can be set in the environment passed to `configure'. However, some packages may run configure again during the build, and the customized values of these variables may be lost. In order to avoid this problem, you should set them in the `configure' command line, using `VAR=value'. For example: ./configure CC=/usr/local2/bin/gcc causes the specified `gcc' to be used as the C compiler (unless it is overridden in the site shell script). Here is a another example: /bin/bash ./configure CONFIG_SHELL=/bin/bash Here the `CONFIG_SHELL=/bin/bash' operand causes subsequent configuration-related scripts to be executed by `/bin/bash'. `configure' Invocation ====================== `configure' recognizes the following options to control how it operates. `--help' `-h' Print a summary of the options to `configure', and exit. `--version' `-V' Print the version of Autoconf used to generate the `configure' script, and exit. `--cache-file=FILE' Enable the cache: use and save the results of the tests in FILE, traditionally `config.cache'. FILE defaults to `/dev/null' to disable caching. `--config-cache' `-C' Alias for `--cache-file=config.cache'. `--quiet' `--silent' `-q' Do not print messages saying which checks are being made. To suppress all normal output, redirect it to `/dev/null' (any error messages will still be shown). `--srcdir=DIR' Look for the package's source code in directory DIR. Usually `configure' can determine that directory automatically. `configure' also accepts some other, not widely useful, options. Run `configure --help' for more details. blubuntu-look-0.3.1/debian/0000755000000000000000000000000011337133444012430 5ustar blubuntu-look-0.3.1/debian/blubuntu-theme.install0000644000000000000000000000017311337123212016751 0ustar debian/tmp/usr/share/themes/Blubuntu/metacity-1/ debian/tmp/usr/share/themes/Blubuntu/gtk-2.0/ debian/tmp/usr/share/locale blubuntu-look-0.3.1/debian/blubuntu-wallpapers.install0000644000000000000000000000012211337123212020013 0ustar debian/tmp/usr/share/backgrounds debian/tmp/usr/share/gnome-background-properties blubuntu-look-0.3.1/debian/blubuntu-session-splashes.install0000644000000000000000000000004411337123212021147 0ustar debian/tmp/usr/share/pixmaps/splash blubuntu-look-0.3.1/debian/blubuntu-look.install0000644000000000000000000000006111337123212016607 0ustar debian/tmp/usr/share/themes/Blubuntu/index.theme blubuntu-look-0.3.1/debian/copyright0000644000000000000000000003636511337123212014370 0ustar This package was debianized by Daniel Holbach on Wed, 04 Oct 2006 12:46:10 +0200 Upstream Author: Jonathan Austin Nathaniel McCallum Jeff Waugh Daniel Holbach Kenneth Wimer Copyright: 2006, Jonathan Austin 2004-2009, Canonical Ltd. License: CC-BY-SA-2.5 Creative Commons Attribution-ShareAlike 2.5 CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. License THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED. BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS. 1. Definitions 1. "Collective Work" means a work, such as a periodical issue, anthology or encyclopedia, in which the Work in its entirety in unmodified form, along with a number of other contributions, constituting separate and independent works in themselves, are assembled into a collective whole. A work that constitutes a Collective Work will not be considered a Derivative Work (as defined below) for the purposes of this License. 2. "Derivative Work" means a work based upon the Work or upon the Work and other pre-existing works, such as a translation, musical arrangement, dramatization, fictionalization, motion picture version, sound recording, art reproduction, abridgment, condensation, or any other form in which the Work may be recast, transformed, or adapted, except that a work that constitutes a Collective Work will not be considered a Derivative Work for the purpose of this License. For the avoidance of doubt, where the Work is a musical composition or sound recording, the synchronization of the Work in timed-relation with a moving image ("synching") will be considered a Derivative Work for the purpose of this License. 3. "Licensor" means the individual or entity that offers the Work under the terms of this License. 4. "Original Author" means the individual or entity who created the Work. 5. "Work" means the copyrightable work of authorship offered under the terms of this License. 6. "You" means an individual or entity exercising rights under this License who has not previously violated the terms of this License with respect to the Work, or who has received express permission from the Licensor to exercise rights under this License despite a previous violation. 7. "License Elements" means the following high-level license attributes as selected by Licensor and indicated in the title of this License: Attribution, ShareAlike. 2. Fair Use Rights. Nothing in this license is intended to reduce, limit, or restrict any rights arising from fair use, first sale or other limitations on the exclusive rights of the copyright owner under copyright law or other applicable laws. 3. License Grant. Subject to the terms and conditions of this License, Licensor hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise the rights in the Work as stated below: 1. to reproduce the Work, to incorporate the Work into one or more Collective Works, and to reproduce the Work as incorporated in the Collective Works; 2. to create and reproduce Derivative Works; 3. to distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission the Work including as incorporated in Collective Works; 4. to distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission Derivative Works. 5. For the avoidance of doubt, where the work is a musical composition: 1. Performance Royalties Under Blanket Licenses. Licensor waives the exclusive right to collect, whether individually or via a performance rights society (e.g. ASCAP, BMI, SESAC), royalties for the public performance or public digital performance (e.g. webcast) of the Work. 2. Mechanical Rights and Statutory Royalties. Licensor waives the exclusive right to collect, whether individually or via a music rights society or designated agent (e.g. Harry Fox Agency), royalties for any phonorecord You create from the Work ("cover version") and distribute, subject to the compulsory license created by 17 USC Section 115 of the US Copyright Act (or the equivalent in other jurisdictions). 6. Webcasting Rights and Statutory Royalties. For the avoidance of doubt, where the Work is a sound recording, Licensor waives the exclusive right to collect, whether individually or via a performance-rights society (e.g. SoundExchange), royalties for the public digital performance (e.g. webcast) of the Work, subject to the compulsory license created by 17 USC Section 114 of the US Copyright Act (or the equivalent in other jurisdictions). The above rights may be exercised in all media and formats whether now known or hereafter devised. The above rights include the right to make such modifications as are technically necessary to exercise the rights in other media and formats. All rights not expressly granted by Licensor are hereby reserved. 4. Restrictions.The license granted in Section 3 above is expressly made subject to and limited by the following restrictions: 1. You may distribute, publicly display, publicly perform, or publicly digitally perform the Work only under the terms of this License, and You must include a copy of, or the Uniform Resource Identifier for, this License with every copy or phonorecord of the Work You distribute, publicly display, publicly perform, or publicly digitally perform. You may not offer or impose any terms on the Work that alter or restrict the terms of this License or the recipients' exercise of the rights granted hereunder. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties. You may not distribute, publicly display, publicly perform, or publicly digitally perform the Work with any technological measures that control access or use of the Work in a manner inconsistent with the terms of this License Agreement. The above applies to the Work as incorporated in a Collective Work, but this does not require the Collective Work apart from the Work itself to be made subject to the terms of this License. If You create a Collective Work, upon notice from any Licensor You must, to the extent practicable, remove from the Collective Work any credit as required by clause 4(c), as requested. If You create a Derivative Work, upon notice from any Licensor You must, to the extent practicable, remove from the Derivative Work any credit as required by clause 4(c), as requested. 2. You may distribute, publicly display, publicly perform, or publicly digitally perform a Derivative Work only under the terms of this License, a later version of this License with the same License Elements as this License, or a Creative Commons iCommons license that contains the same License Elements as this License (e.g. Attribution-ShareAlike 2.5 Japan). You must include a copy of, or the Uniform Resource Identifier for, this License or other license specified in the previous sentence with every copy or phonorecord of each Derivative Work You distribute, publicly display, publicly perform, or publicly digitally perform. You may not offer or impose any terms on the Derivative Works that alter or restrict the terms of this License or the recipients' exercise of the rights granted hereunder, and You must keep intact all notices that refer to this License and to the disclaimer of warranties. You may not distribute, publicly display, publicly perform, or publicly digitally perform the Derivative Work with any technological measures that control access or use of the Work in a manner inconsistent with the terms of this License Agreement. The above applies to the Derivative Work as incorporated in a Collective Work, but this does not require the Collective Work apart from the Derivative Work itself to be made subject to the terms of this License. 3. If you distribute, publicly display, publicly perform, or publicly digitally perform the Work or any Derivative Works or Collective Works, You must keep intact all copyright notices for the Work and provide, reasonable to the medium or means You are utilizing: (i) the name of the Original Author (or pseudonym, if applicable) if supplied, and/or (ii) if the Original Author and/or Licensor designate another party or parties (e.g. a sponsor institute, publishing entity, journal) for attribution in Licensor's copyright notice, terms of service or by other reasonable means, the name of such party or parties; the title of the Work if supplied; to the extent reasonably practicable, the Uniform Resource Identifier, if any, that Licensor specifies to be associated with the Work, unless such URI does not refer to the copyright notice or licensing information for the Work; and in the case of a Derivative Work, a credit identifying the use of the Work in the Derivative Work (e.g., "French translation of the Work by Original Author," or "Screenplay based on original Work by Original Author"). Such credit may be implemented in any reasonable manner; provided, however, that in the case of a Derivative Work or Collective Work, at a minimum such credit will appear where any other comparable authorship credit appears and in a manner at least as prominent as such other comparable authorship credit. 5. Representations, Warranties and Disclaimer UNLESS OTHERWISE AGREED TO BY THE PARTIES IN WRITING, LICENSOR OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE MATERIALS, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY, FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS, WHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO YOU. 6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. 7. Termination 1. This License and the rights granted hereunder will terminate automatically upon any breach by You of the terms of this License. Individuals or entities who have received Derivative Works or Collective Works from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will survive any termination of this License. 2. Subject to the above terms and conditions, the license granted here is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, Licensor reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above. 8. Miscellaneous 1. Each time You distribute or publicly digitally perform the Work or a Collective Work, the Licensor offers to the recipient a license to the Work on the same terms and conditions as the license granted to You under this License. 2. Each time You distribute or publicly digitally perform a Derivative Work, Licensor offers to the recipient a license to the original Work on the same terms and conditions as the license granted to You under this License. 3. If any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this agreement, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. 4. No term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent. 5. This License constitutes the entire agreement between the parties with respect to the Work licensed here. There are no understandings, agreements or representations with respect to the Work not specified here. Licensor shall not be bound by any additional provisions that may appear in any communication from You. This License may not be modified without the mutual written agreement of the Licensor and You. Creative Commons is not a party to this License, and makes no warranty whatsoever in connection with the Work. Creative Commons will not be liable to You or any party on any legal theory for any damages whatsoever, including without limitation any general, special, incidental or consequential damages arising in connection to this license. Notwithstanding the foregoing two (2) sentences, if Creative Commons has expressly identified itself as the Licensor hereunder, it shall have all rights and obligations of Licensor. Except for the limited purpose of indicating to the public that the Work is licensed under the CCPL, neither party will use the trademark "Creative Commons" or any related trademark or logo of Creative Commons without the prior written consent of Creative Commons. Any permitted use will be in compliance with Creative Commons' then-current trademark usage guidelines, as may be published on its website or otherwise made available upon request from time to time. Creative Commons may be contacted at http://creativecommons.org/ The Debian packaging is Copyright 2006, Daniel Holbach and is licensed under the GPL-2+, see /usr/share/common-licenses/GPL-2 blubuntu-look-0.3.1/debian/control0000644000000000000000000000277411337133025014040 0ustar Source: blubuntu-look Section: x11 Priority: optional Maintainer: Ubuntu Artwork Team Build-Depends: debhelper (>=7.0.50), autotools-dev, intltool, libxml-parser-perl Homepage: https://launchpad.net/blubuntu-look Vcs-Bzr: https://code.launchpad.net/~ubuntu-art-pkg/blubuntu-look/ubuntu Vcs-Browser: http://bazaar.launchpad.net/~ubuntu-art-pkg/blubuntu-look/ubuntu/files Standards-Version: 3.8.4 Package: blubuntu-look Architecture: all Depends: blubuntu-theme, blubuntu-session-splashes, blubuntu-wallpapers, elementary-icon-theme, ${misc:Depends} Description: Blubuntu look - metapackage The Blubuntu theme. . This is a metapackage providing all pieces of the Blubuntu theme. Package: blubuntu-theme Architecture: all Depends: gtk2-engines-murrine, ${misc:Depends} Description: Blubuntu look - GTK+ and Metacity theme The Blubuntu theme. . This package contains the GTK+ and Metacity configuration for the Blubuntu look. Package: blubuntu-session-splashes Architecture: all Depends: ${misc:Depends} Description: Blubuntu look - Session splashes The Blubuntu theme. . This package contains the Blubuntu Session splashes. Package: blubuntu-wallpapers Architecture: all Depends: ${misc:Depends} Conflicts: edgy-community-wallpapers (<< 0.2) Replaces: edgy-community-wallpapers (<< 0.2) Description: Blubuntu look - Wallpapers The Blubuntu theme. . This package contains the Blubuntu Wallpapers. blubuntu-look-0.3.1/debian/compat0000644000000000000000000000000211337123212013616 0ustar 5 blubuntu-look-0.3.1/debian/changelog0000644000000000000000000000315711337133067014311 0ustar blubuntu-look (0.3.1) lucid; urgency=low * Use elementary-monochrome as icon theme. * Move to simplified dh rules file. * Make package native. * Build depend on autotools-dev and intltool. -- Andrew Starr-Bochicchio Wed, 17 Feb 2010 22:38:07 -0500 blubuntu-look (0.3-0ubuntu1) lucid; urgency=low * New upstream release. (LP: #298946) - Drop depricated GDM theme. (LP: #442408) - Update theme to be based on new Human theme. (LP: #204389) - Use GNOME-Brave icons instead of Tango. -- Andrew Starr-Bochicchio Sat, 02 Jan 2010 14:06:52 -0500 blubuntu-look (0.2-0ubuntu4) intrepid; urgency=low * Added gtk2-engines-ubuntulooks to blubuntu-theme recommends (LP: #263819). -- Nick Ellery Wed, 15 Oct 2008 15:51:06 -0700 blubuntu-look (0.2-0ubuntu3) hardy; urgency=low * debian/control - Added tango-icon-theme to Depends in debian/control. (LP: #203780) - Bumped Standards-Version to 3.7.3 -- Andrew Starr-Bochicchio (andrewsomething) Wed, 19 Mar 2008 13:52:45 -0400 blubuntu-look (0.2-0ubuntu2) feisty; urgency=low * debian/control: - changed Maintainer. -- Daniel Holbach Tue, 27 Feb 2007 19:08:08 +0100 blubuntu-look (0.2-0ubuntu1) feisty; urgency=low * New release. * debian/blubuntu-theme.install: - install translations. -- Daniel Holbach Wed, 22 Nov 2006 16:26:38 +0100 blubuntu-look (0.1-0ubuntu1) edgy; urgency=low * Initial release. -- Daniel Holbach Wed, 04 Oct 2006 12:46:10 +0200 blubuntu-look-0.3.1/debian/rules0000755000000000000000000000003611337125357013513 0ustar #!/usr/bin/make -f %: dh $@ blubuntu-look-0.3.1/Makefile.in0000644000000000000000000006633511337133346013271 0ustar # Makefile.in generated by automake 1.11 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008, 2009 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 = : subdir = . DIST_COMMON = README $(am__configure_deps) $(srcdir)/Makefile.am \ $(srcdir)/Makefile.in $(top_srcdir)/configure AUTHORS COPYING \ ChangeLog INSTALL NEWS install-sh missing 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_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 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__installdirs = "$(DESTDIR)$(propsdir)" \ "$(DESTDIR)$(sessionsplashdir)" "$(DESTDIR)$(themedir)" \ "$(DESTDIR)$(wallpaperdir)" DATA = $(props_DATA) $(sessionsplash_DATA) $(theme_DATA) \ $(wallpaper_DATA) 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 DIST_SUBDIRS = $(SUBDIRS) DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) distdir = $(PACKAGE)-$(VERSION) top_distdir = $(distdir) am__remove_distdir = \ { test ! -d "$(distdir)" \ || { find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \ && rm -fr "$(distdir)"; }; } 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 GZIP_ENV = --best distuninstallcheck_listfiles = find . -type f -print distcleancheck_listfiles = find . -type f -print ACLOCAL = @ACLOCAL@ ACLOCAL_AMFLAGS = @ACLOCAL_AMFLAGS@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CATALOGS = @CATALOGS@ CATOBJEXT = @CATOBJEXT@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIRNAME = @DATADIRNAME@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GMOFILES = @GMOFILES@ GMSGFMT = @GMSGFMT@ GREP = @GREP@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INSTOBJEXT = @INSTOBJEXT@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ LDFLAGS = @LDFLAGS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ MSGFMT_OPTS = @MSGFMT_OPTS@ MSGMERGE = @MSGMERGE@ 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@ POFILES = @POFILES@ POSUB = @POSUB@ PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ XGETTEXT = @XGETTEXT@ 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_alias = @build_alias@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host_alias = @host_alias@ 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_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ SUBDIRS = gtk-2.0 metacity-1 po props_in_files = \ blubuntu-wallpapers.xml.in theme_in_files = \ index.theme.in wallpaperdir = $(datadir)/backgrounds wallpaper_DATA = \ Ubuntu-Blubuntu_1600x1200.png sessionsplashdir = ${datadir}/pixmaps/splash sessionsplash_DATA = \ ubuntu-blubuntu.png propsdir = $(datadir)/gnome-background-properties props_DATA = \ blubuntu-wallpapers.xml themedir = $(datadir)/themes/Blubuntu theme_DATA = \ index.theme EXTRA_DIST = \ $(wallpaper_DATA) \ $(props_in_files) \ $(theme_in_files) \ $(props_DATA) \ $(sessionsplash_DATA) \ $(theme_DATA) \ intltool-update.in \ intltool-merge.in \ intltool-extract.in \ autogen.sh DISTCLEANFILES = \ blubuntu-wallpapers.xml \ index.theme \ intltool-extract \ intltool-merge \ intltool-update MAINTAINERCLEANFILES = \ Makefile.in \ aclocal.m4 \ configure \ install-sh \ intltool-extract.in \ intltool-merge.in \ intltool-update.in \ missing \ mkinstalldirs all: all-recursive .SUFFIXES: am--refresh: @: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ echo ' cd $(srcdir) && $(AUTOMAKE) --gnu'; \ $(am__cd) $(srcdir) && $(AUTOMAKE) --gnu \ && exit 0; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu 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): install-propsDATA: $(props_DATA) @$(NORMAL_INSTALL) test -z "$(propsdir)" || $(MKDIR_P) "$(DESTDIR)$(propsdir)" @list='$(props_DATA)'; test -n "$(propsdir)" || 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)$(propsdir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(propsdir)" || exit $$?; \ done uninstall-propsDATA: @$(NORMAL_UNINSTALL) @list='$(props_DATA)'; test -n "$(propsdir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ test -n "$$files" || exit 0; \ echo " ( cd '$(DESTDIR)$(propsdir)' && rm -f" $$files ")"; \ cd "$(DESTDIR)$(propsdir)" && rm -f $$files install-sessionsplashDATA: $(sessionsplash_DATA) @$(NORMAL_INSTALL) test -z "$(sessionsplashdir)" || $(MKDIR_P) "$(DESTDIR)$(sessionsplashdir)" @list='$(sessionsplash_DATA)'; test -n "$(sessionsplashdir)" || 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)$(sessionsplashdir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(sessionsplashdir)" || exit $$?; \ done uninstall-sessionsplashDATA: @$(NORMAL_UNINSTALL) @list='$(sessionsplash_DATA)'; test -n "$(sessionsplashdir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ test -n "$$files" || exit 0; \ echo " ( cd '$(DESTDIR)$(sessionsplashdir)' && rm -f" $$files ")"; \ cd "$(DESTDIR)$(sessionsplashdir)" && rm -f $$files install-themeDATA: $(theme_DATA) @$(NORMAL_INSTALL) test -z "$(themedir)" || $(MKDIR_P) "$(DESTDIR)$(themedir)" @list='$(theme_DATA)'; test -n "$(themedir)" || 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)$(themedir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(themedir)" || exit $$?; \ done uninstall-themeDATA: @$(NORMAL_UNINSTALL) @list='$(theme_DATA)'; test -n "$(themedir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ test -n "$$files" || exit 0; \ echo " ( cd '$(DESTDIR)$(themedir)' && rm -f" $$files ")"; \ cd "$(DESTDIR)$(themedir)" && rm -f $$files install-wallpaperDATA: $(wallpaper_DATA) @$(NORMAL_INSTALL) test -z "$(wallpaperdir)" || $(MKDIR_P) "$(DESTDIR)$(wallpaperdir)" @list='$(wallpaper_DATA)'; test -n "$(wallpaperdir)" || 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)$(wallpaperdir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(wallpaperdir)" || exit $$?; \ done uninstall-wallpaperDATA: @$(NORMAL_UNINSTALL) @list='$(wallpaper_DATA)'; test -n "$(wallpaperdir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ test -n "$$files" || exit 0; \ echo " ( cd '$(DESTDIR)$(wallpaperdir)' && rm -f" $$files ")"; \ cd "$(DESTDIR)$(wallpaperdir)" && rm -f $$files # 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): @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): @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) $(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) $(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) $(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) $(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 -777 -exec chmod a+rwx {} \; -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 -9 -c >$(distdir).tar.bz2 $(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 -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 $(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) gunzip -c $(distdir).tar.gz | $(am__untar) ;;\ *.tar.bz2*) \ bunzip2 -c $(distdir).tar.bz2 | $(am__untar) ;;\ *.tar.lzma*) \ unlzma -c $(distdir).tar.lzma | $(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) gunzip -c $(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" \ $(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: @$(am__cd) '$(distuninstallcheck_dir)' \ && test `$(distuninstallcheck_listfiles) | wc -l` -le 1 \ || { 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 $(DATA) installdirs: installdirs-recursive installdirs-am: for dir in "$(DESTDIR)$(propsdir)" "$(DESTDIR)$(sessionsplashdir)" "$(DESTDIR)$(themedir)" "$(DESTDIR)$(wallpaperdir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done 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: $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ `test -z '$(STRIP)' || \ echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install 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) -test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) 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-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-propsDATA install-sessionsplashDATA \ install-themeDATA install-wallpaperDATA 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: uninstall-propsDATA uninstall-sessionsplashDATA \ uninstall-themeDATA uninstall-wallpaperDATA .MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) 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-lzma dist-shar dist-tarZ dist-xz dist-zip distcheck \ distclean distclean-generic 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-propsDATA \ install-ps install-ps-am install-sessionsplashDATA \ install-strip install-themeDATA install-wallpaperDATA \ 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 uninstall-propsDATA \ uninstall-sessionsplashDATA uninstall-themeDATA \ uninstall-wallpaperDATA @INTLTOOL_DESKTOP_RULE@ @INTLTOOL_THEME_RULE@ @INTLTOOL_XML_RULE@ # 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: blubuntu-look-0.3.1/ubuntu-blubuntu.png0000644000000000000000000023743411337123212015101 0ustar PNG  IHDR>IDATxڤyoUϽ~g! M l8lb0Cy&f vN* y؎dCB"C`,՚A=^+^{s~w}ko7x7P@q2O`(~^D ΗϯP&t^s~s^>P32s_?AB߯ɟa>n8V;fc;|}LUWں{(a>6TA  R|۸ֵvݛ;|/[~n"݇|!<޸{?|SUIA!sa % 6iJs= ?>~VIxSO}ۯPxURD6mluTTӵwq} YRůG'//߮ߏg`(3@'@4#(м8$ŐY[Xj0?kMkAy& |?kǸy8y jq\7W7{4%ơ=㼷ϛ[>?8_(_{}KbS 0H~%`UAmiZ tJ^c5{NGc3*F @sBCK>(ysD;Vo[Ɣ*kMlS3T}+T hw"jɩ?Bœ𪗽" @j;jFR(jP3tjϓ;LؾC8* HS~|x~CU@5!Tjs9v~"LB8HY9p?{yկsߨ?˿2*_xi/-%2O럇 DH3$mSdi*ZlBJmsF,< j2Vmގ>ݼ! *1>^ԮY¨r.oED2#QR @dO9<2oDk'f#2rĿsnw4E- iRmTy"N -q'\Fg0F9X "YA;Jh4lPĀGy[ mԎ9yP!+7 ]rl=Ӳeu=u}_  Az}[Hb?jFy!/'-emQPc4b#6غ>z'~/޷~^y`m\܀p*Eư"ETmjDZǹ6c.v` Ҍ@Rk6C 3`5"~/ZŮeQ93ހ=.|Ϸ}j!,+r\IT(Ed'$6=P2D#[`[j9o()26&ѕRA:eXq29i?{ˮ t#i-da53*)VdKPItg/7F 78$#dmT${j؟wJ#TxswxD7ab] #6qk9Ϗe 1=mFʥI3Q<܃k_'`y.Jb- m먚ER >49A4 hf>w?NʀbZ"n*8gQsafXl#@ħgʨ~{ Ηː 2F(t#*q$,g3cႅҌy;8e!;mp y",ls4ǩ}ϯٿ[Jc\8Y `˲cZ8n=w cEv/c;Six?#yWߣ5~wy2w{ 1÷#q?ڠmec͙!l=hg# -/r.gc:D{TżbJ<ܣ}~anD{eWa i' b2}*u,jtQD]W##лN!3ibxXjó3Qm^m鑞#T*D7XU>/ttN. Em`ULu88\̅ C+@\[JSlJ{ΖR1 ,J r0Rmi5@m|T3Q]gzml8D-Ԡ_iH iQymz$7ݢ32Өa7ļLeZ{MG\*s>ƍh( ;̽DkbُIY9`&zyo)]Xcz)BbEl\b5eRe֖F, f#_= g Xk JS X[Im6PC^.Z)'DUe8*ihjC=b~ j%,S{g^V)rX1\||}s ܑ}N@_;YceG-ef6Azڤ!lD7=^̖@3hd*l֍4ƳoR@VI>>U܉$UsV<}u `FHwVPᡆ;w[-Nup}࠵GAP bz_ŝAd3K+3 2@%gx|[t6`x5wuo5+khkV]ӻhŤScԽ58QUW$Ȕ11 bΠDI筈D1w{0,xv!GȔUqO{g*mUN vews܈_3 ۲Y9",@9#zl4'\O*Cd╎hJ jJ`œeFNM)fyG_cK3GxqLUc^+BPe`l~\l 58^' x@>b! +5Pu̶F*XIv)ԟKH(X34n\Q)!9E0qN5]5$gT@BT3,LYVNZƀsM'LN #YםE9q :]fmSt>v16 8x_Z tc^:Up\mV ,ZKp2Uiğ.>/2 j<2M,BvNjhtlNVUcV c6F41((}O>;:Г[M>Ѩtуѓ>ojd u/VBĆU\xؽlPZ4GpsmD<5s~e`(uy3sLU4G?G͠2FP &PluNhBww"\xxH&'alG`쬧)ݪ5rD 6>-El9%@U<,t|RLإ1˹%ԗkjGDس[5'8)%@R)2Mș;wZkދFT$ñ1T(4Wnmd!%مr4GW@£S +VYv$:,\GզZ5&/ 0j Qh2p12fS]mQ/gc|Yik#+4Yd94N/^! W^c4BC1>_LFL{h uBE`*Ayqe36do\q#]TJ\\Utmh}9\kD%,ʍ]\_l3F1%|ͶFEO:hXZ5o!hZߗj~7eE6d:ZQa <,[@@X SwQ5PS촬zFkP"蟖~z4հGmN#{X]j5i[vQL޷E+J<#k,RDkGAdǸic:Nb` T(TJH̡S`m&̕Sy{Q_8>jCb6zgP[hgs浦=Ͻ'k[=GS_0z>9;R\U\#su%taqu j*FT"miflשy[2z^쉪=UoF}=1獈e+kGd6[)A)_*(k#бjstF-(+ cJnyp2KM "WG9cf#Ny)UW~aJ~#w۹ %x`IXN-W(R=a؂̧m<ݲgfBKs~,RA-ߏ7xwURne d<\r=o[p>nn1Dioe= <Ɇp6T#-ce ("%"oLUy h@)6ҁŀytʅEUZ]1^Vh'Y!%uߡuz8k۩L*EeLHά Ebg5r%CLLU>U, :KPr8%=)x8v{5j_C ֳ~EQ;QPsbJ"cX\ѴCG~6N6U;G-`QJͽQwKC'e7"m&d]f 4Hѵv:"߀9HzZ #2Jz&I]b<МNњv mj=@RX5Vӂ&:Q|_E*rOH_GA#Y 0R:JKs@}xG_oMTS`"D}ewccsΈUFcCwჿ"<7p(6kv"6sYltX8eW_M1 +<R.9 re*jMѸ=Y$Ү6u[Jgըr4/7hg)*CύJS{]uXQF'E!6Tr-{zmvi2saY|]k< 1c%h0m41^m]B>5CRk5;J-ZK.$ JwU0r{%UXd(HB?*+j0JK;V(Z@2z{j5u\Gһ|]%͟ӷ82dz-^:gW|DG;% zOfI׌kYGU+M:8q `HJ&M0(Pnҏy=U1]79מFaE)IZk=B3|5V-:|}F4_jLc!}(EA8~ժh n{}+rwe0LG5ՎA]G-rqE=%ЕtFΡ䡾8(#ش\]4+Uթ BQKW}s3ED#<è1f[#NR0;0+h* D 9czΈ$+u"*:MF#fH  6.LVStJR}P6K2YLS\AI|ȍ5|3գGޣYܵa_k)d67_e5yKOLhKB!P$Q-,cn 7٠x&GYNNnNbY&y: AiXp2$P&lsfRH=c|9~?n^\P)M= 7@n4.?T(7ۻ(?{hhw|Ӛf3;=Eyҿ-eksMtѻ\Z8_`n@>LJHVy۪1#ﭚBioiڂ\{9mlٲy{G>f )\]4Nql#C5kS}WZ^l=!uBߨm:_sv=Ti`u̢y~pOjH0?.jC?M.veS)zW溞U~Iit3r}av}uz0oo |!kШnilIZQpٹ/Vsroƿoo$;W|{˸?}^W|-֔%/ '?0 #߆/_C>"T|}W+ mW?6,(hF}ӷ|={iE+"Z4*Tp\;`d;mLњj$1՞, hIeѱS D 樽8:2+4ut-«Iӛ[xqSDB%{u$'/(=Kal"N]$Z$vNAƊDIQr%TH)s9Iku.gS nk,!g)? AVo'G{sb)W RYL+LK̛K6*w@wdHE*tZWCDP UnN̎B6~yLK~?$Qc !ɎG2GA < ⪗A0hGWΥu3"~ #~(َmQgvL n~ǁZ_Um@~~_U/pU|7%< _~_' __k=_x}n\r;< {ߍh3~z |g\fv:j6q.FEh޹˱,39x9t eŝ$m TlF@<3?ud1[g曮r`+o)U H)y빆a0(l̑uF?UtGx(J"1q9rjQL.wuV1o`=_Gؼf`ShZt}0!?gL4\{grԸ,*?[#l;H#K.btgrtJ{RʀC QpXH"mNh _ @pvv5q Ə'[;U??Cipzw8z{AO?l|:|w}7^;~oc< "«^j|{^› rsᬁ0YQgY|ls0b]L*OB8*AKk%-qU$&rK[=c:В9(yE }H,9bƐ,GyHN3I:nȮY٣LAj|/YMQb wPVs Odw1ѵ!VՎŴT3sR`R.0ҩdh4%U)7;OrqGC4JhzMA497d0!|= :rs(BՐvSڜܵwaB:q=fSHSa VC5Fm…hk"H" #Bdyqr :Ǯ$6uIb+1=eԓx٧ڵk;~'>{-\NC._ƍWأ2 ~ _}90Rܶ뮤VYytjnW1uq⹾,"F4;*H[Y1Z硝vuysQ7YpVB+LhPÝftD8 Й[Şѹ87Vܩߏs2 27j:frD6۪/Ϡ0jokOYjsmsԯUq)C&0Zpjz TsY*FT&*zXV ԗ됆?PuR Nґ[_alwxpZ}w,K4G R,4] hWls]`{p8bwK"zK?| $w^WƹnCy ΰ߃{7 ܸͩܳ^^TJ:D+PXN/\ r>eHc;j#poߛsݥfX0WIIf[UZz*4\3L(_G<27|-Hl;H))C7'_ݤ4#܏pFo暩j%B#:d{Z w[suTBP:Rg$RKo#7\΅VOr:sㅎ+VZrTuTx~ F-u "G[ rN7jb5YpHJLń""uh*8&bA2OQEUQZ'C2hq$#m˨`@ 9"jEQ:Ntյ{gT >g+:[=7\G$jO=5uD{hHd&;ɵ~IQ,C ަ=gKw~~kߌ׾/ߎMoz~?Sī_6<'r?Gs?vM"rxѽ$lp&wyw<䃿Kp"pz3`~g?C9\EOt ŤՎߨuY Ł6;E0[A3@X#x.jntd7r":y?%f1F- nPsA8XHx4MRkjE(3coG Dyhn\Cb_7˖ `Tdщ ҺnG3v=Q}(l#uCrܡ$x,MV0εZ%wǒul2z5Ū< *j̧hs'@RUL@S `q97++)$j&\ﺴ:8s}4ӧtM3b  Q"5L:S_/Y*`A٩͟oٟƏ؏GÍ ~=᏾k?·~7#wxK◾ˌ~g~{7?#=azr8p Yp;qOʭwF_p n|q\|%%X'>zۿ퇰%o' xps?-wk8OO֚UVx=v-q}d\)` ck"T,BmuHy.a=0àr[AIqN&;"4._ @ 93Em¦HCBePmc6d~Nd$ClM~2K{ЁYk‱?pD;l`*/] UK- dv6u@אIޚ8v,r3"A)׾AS{-A+Gד8 ѓN7e >ZRϟ^^3D԰?s5OC5HN 2?Ĺwe|pQd;Ӧ@2^ȯ_+ &챽NH6"L1vnՎَst6{U;G^n*jcz\\_#&%g7K}-.ro __o| |ٔހ/?WupV,/ ˿OLC/73^9p_eMxov8pוkpmN/ނg'q۠(yK_z?qϋ_p-;ޏr?fygjզd]R23mz~7@W_;>q :҅#e<(hиe2F_kR@3Ť'#yU c<FѤ޲N0 U:!pkyzf9䔶 y2qYdx^ BmP%((:#LI\˜.x+G&(.ฮpYѥ9 G HQ5ƼϴɈT ڄ >Nϋ~BޚnNQȩq5g[vYY޳cg}W}Z{ `9_gNzp?~] %p;cLfئAԿ`TiJ "bhCEb6tqC%T*88sr?LI<ƧnvHU@7>$M O8!EoJ7HYaMV&ː΍4Q15i?%z5`%0AͩCLRu6gIh>)1gD%IʽIpԔb:zrrEeDFTVD S[o |Ih#Ք22EH᳭I]9/ˀ]Os0*A9Ss0AY dD4S79}(:6kO%:,|d#M쎦!g#T \wOC 3k۬>F54P x5vln$DoN[E2zAIH8|ՙsNCLa{\?ede ֦ CvYmx,)ۯ Տr=גP~4amŲv"jweXz}4l"!8ӻM}\ve5A5Ÿ Mk/6`qQ(ęwkmnɅ@|Unĸ -^ <0@5D 4ad@]aIr[TӘw^J?ݖ3ux\7TJܪ2UZkC{VxT0n=>h iﰁi$Ou#Qt/ ܓwޅGB(ʽuvzFVuX^gYP[j_![zNibZe':ZSz^k :^9-2]?[n?'X/.8*u# F4k!%s$k 0&U\~WZ 3-=^8Z8jP+]_nPAomWHz ZSuL{:&ǘqjAZw [IԻ9d 5.@14qО+) ɛ"9~IoW3Tڼh4oǶNmJD8 lznsg&`SYk\(OL{2+Fwltr3~2Ri¤-]j9 NoxGzQӉd2Kx-4jCh:otߐVR~bHGhh𨄣VeNkrXZisrk)%%&GO磪'7tU2m0Kip` )F-brjk2aT۬YG[kx2qH%=rde'+B ΢Glmtbosa&Ba<58#PKҜkGvv&GCK9"I/.uNpΨrY,Ψ5oٗ*Mi{ٖ)ypy>I& B֍rxהGH-x<1ݻ3ja4Hmi=h⭈ٝYLaD >8QB%:mp6hsn;+>sòotcV0tPPht أ !slB}O90SWeJa4FLs5Q[\'9GMC?`lwSb@M'B澴YӴC2"GhݧgB&X;T{~hU :hm Or847X[SDb&CGLZk|.G9SgTY'>*BTc[6wPs!hDI3,0FsxbYcT /iuk 77^̑VH/{5m&a;G"ރΛ̀/ZɦQ s44/cnggGSԶ];dRb 9-T%oYmgB6Ycևkԕ:⏎xKˍ=V˼M+ JY=5s Tt R7;6-RYcy߸xMxvr@&t u>V=i 5y1ck^ZO5q+( AϱV˔?{}~E@k!ew;IUN5u;ڨҺRd1s7'TNEdP]ն[}ʘ¶b:?KvjHe5Ll/ Ts9~\t Mgf1MPk^]Y' Tݖs\:pyƧx pO;%vb+}s7Hq#e@=ݼ e:D(!;FsGԖh]E@TūHk&]j/uYmHFB$e}1!=3 g7Viʪ6iT[ \ƕxʠJS̛4W:0lXfxnz܅1ҡP"׾k [JUwȁV.r<69(ވ9>`5pCj硧n!JH JQM!ɵ~{&MWhVf\E͛0>_бmaImiSKL`C@"qbHV v ~HdM \C#W<d؆s&i%uyv`pHֲ:JDu/5)r;~O>KxFp 7?r"MD:TF1%jrbɾњ:Jw][ߍ*!5I 9I8L{@H暌9D[QnԬF$#hŵ79;xѕ.3cg|Q]aƊD]l't3S7UR(#=s55EH;rċ6x(?i=0^ )!#ڱ S%uT3ufINn!#u":^jOYc]ke`zuj۸.3&@sT*T[O_7x?4pz=$>+p K8e~Jf4oxQ֛wq{#ti؍bMqӜ?2vzKn'DLI6ZOQ&Vs:N dچM L:eB$#S3t<݁]w]xQll] 3m R8HV HMwiReYBS9o(SYYNFzTG9kz~ C Ti[:d'Mzo[6jrc; 6.ꡡ[@+L߁6A]h)>yDU&Ԅ]æuBŸv?e[b~o/gQmtoN]faZN XXH VIRND5`H)zPC[_>?BsHsO؍Ve@WSbn-P FrH:j@ 4[% WJNPݠrLS#U8ǩm]!R\]O0x+uLOMG"H*v#WAj3Z-.nUNtɮ\@S&JoAFvJ>vNik r kFR8 | w'ݢj\lfKF^( ZP>?K89{V\9-8)g8{ !^]fppC9hݍ}Eu-㎳2DӞQlSH5txp$χ<J6S:kN R&ުLZe. -[M YUzw|MDd-sG/%8FL| ?^ uߧJ ;ऌFm/ؠCшҎ!&Aq;0<HXq|\ZJ{\:=MBvIn5u{\G u6mCr8bH$I6f "hN}>FDJ Jt<4_m =iT7>fx3%GLҒF,u)6C<t%rsJf2+Vtu`/z:itZXkCc8Pq:,z i|ǣz^@=A (wHqv~OzpEKƆĪ+5y>oC]ҕ::Jr.zԺL{$2Ӹ,4Lzab!֡юM.zS®h Rm7i8ddPZ{9JrB>O@23AAũ^cxW ukxqB=9 Azw}~xѫX._._-Wp]wq! z[6#4[Q?!"#JmA"ٖ};st2I* (Wy WoiԱBwH;Ju&@) )]^6*C}s\)*,31a tװ0O#ĕ\bOa ?SivIYZ5P6J'#%8QLHQJCϚyRHn:w&5g7.Q@7ɩh|x*!蔂ExM LKӦ=m2)k5j/0 r )0>Т0Fj`=ػbY]%~Ԋ{lH)ҭȥyt2P]QqU<{SjFSM8)m wA/V!q\EE8>?qZ?ǯ]Ľ/|._,IHy>O[gΞ)u'IX_5;1V\uI F  kԱgS8onՈ")W^%GHAa5wugZwQA ^h++"[8GF(\sM*TsŌݒctmŹ{>Qy9n*y=r3.]VpY͑Y[=V'sD"亮yL|6O>*`@!^{𢗝2>\v\e(tk {=UuB~iƶ3棘vc7G =ItڎmԹ0(S+6$$խ{@'ڔ[66Q@GCɄc5aPzމd͚"C^ g-ZuDZ# qNBh@y\S . G+YƵ2隔d-"0ZS~i R{7O&(- LX(ij15~f8I'T^ F41wM7Dad)p-XhaڴYWt~lxkCb`iC6Ua|] oԁB l3H#nJu2*2LxZwz;-{[Yo`7xQ/ə쎳iH':Yn{ߚ-r>kx=K|isr-<{F0y9Hzv^!+{Q\g8m݋zϿýԓ.Е&o!Bd*b֞Y0XSwYE$1R6m2Z2,\_GcqՆɐFk3t!4 Y\PʙGQX;djC {ho9>/ׄ?'wKym"Ge}qReZu֌w3QT ,mw̭춟#ڍ"<uTi5 \>stIheT2ET"\S5nE9Mh^cUiWA3jhE.Ԉ4h:DgS|c&ӆL+ԯ[xQ,scұLc+ЕbT#}Utw(c1J=vl&V'َ5HhHb.HtgHs4;k T$9bvլb'M3G[%5"Jv^ky>WB ^z NY ,C#O]{[{q8ȡnŸ"y,{Oy'nAK'=C%uy^ݽ*u؞{bzϫon2 ²,aхRsQQBP۳hd7t:@+^3+@/Իl36-mdQ j;{:{PnC,̵-420"&oN;#ϯі q(zn5׿EGJm&5/W @Ab "o3:{[Q͠3E^Zs/cg'K73HgrH:Ff)#5 ^{[ڷ#V#M4Nw&uzbUtg/Ѣ  tX%d50F1%g@=ZQxC?nV'V* zzwCx:_z1*T-PoW\rK˜k:3hsuzLIs *|-1R#C5执+5玓ěJW2,WʪWTcD_۵*+Bm\P[TinFP3i-3G[Q8AZS(24VwimQ,0Qd.y(Ι;֮̚e [~F)Wn݇uS钟Eq>Ogps#`^p=;^2 z:,u,:qB ;p퉏R\^{tL-0, d̰eKBbFza#/0)j{f8F x]7߮KJjKk21t?qTfRt#G w틝jcmI--c8IW⎖^թWF i2i0ܽN{Vڮ7 ڭDf.#MGn}t3hdQ|(QO]v5T?2b8k2G? NR_@ݪ[u1of[ I[G4qi:c),ݪJQx㺾Q}]uEró8}x}~ s .?[.V<+x\| QXJlZPq.\[qǝ5/`'5Egimުr#<(5BiL6Q wt.(s0٣&ʮ–1 v@`_>ls+MÍ'Ì_4S!ФuveyQ<~*rL}VoZ O%9y坾| z7ktGɐ!#+#/-@3ҵ\ʵҺ 9AIזtE78$BFZy8B{$#y0 d8aQmg(Nv|h6'% [JIB<)5Sc(jR̎E8̑+=hj`cc-*_R;4tn{$یi8S#x2\z`u٨2]3<\\#%8xʂ3&\{ w^3i`81娞Nn< qg^\}A_ y\K*GC*ADˠXRiw!#zd{ Xq#Zr[|mD3g $ַQ$%w9k Gt*QıKib-V3CLi9jFzo3Z:2V-BJ㺶Izt"5/^+fܾk V"{nxUzvaf\|kϮ~MT~ƕŅً j556_+4f.WhV^#C6'P$eїv$a:Va9\Eɢ荡~ ?aRX+G$-RAQEΐxxK[PYUu &0xKSV"l?FCLA"M9Syo3D|́I/iJu8yK(`v^Dm*r|hR͜&Bc8Dv+񞌞Σ0$qy4q 8ՋD93Tهbss'z:bNNI73nv㖒]hg|FIl8*5KM[{M% Ec"hKObs~ךuAL0&}.f@Ƙ9&Td^+Qȓٜn50bKd"ov\zoL+QI:SlVQ3X2n| _|7/'/{)`|C}/A"PSk~OqFq-;ӿ 'O4{ qhjfڵ$+Ox͇az)u䈫P ?Bʃ,i3='MЋƦ3_apJHa^t O܋~ 6u'ĸrN]\`AC k.ch6݆)x;y͵E^>bg apXzmR Qhf{k*;4%2f5h/Z-MAy{&vU*ƶ5ָgӤD}l7^`'SZjѮv\7fy <0-2WWJ*?G(O Vy *[0>|7pWAz"UWxz_⣿S}S{›r7QEq0YM@++mjm:X3U,f u7(V#gwE&w%Ce"Ĺ#Ĭ4JB zVR0NgСKxh[و4;ъ5}_a#9Jh%7MsD;)3lh 6D5R &@z»b"7J d3Y&Ɇu}#+% eYGhfD$4^?$@ 6{mk)]Ľc\2~n1Z$DNM \quחdz}-vqRv< 򠵜m5u!:MȻvԃ͗;Oc-oSh8͑xMrGgӦa=9j]0e:㱅u62^xo;Oq+Ư~7|ScY/xvS<O->^hU|ro2~tǏCPɵ>wK#|!MtHnE}2^l_p9?cqpՇty4Շٺ7C.Av{ w3v=Ӱ84'RĞ#jPi6L>q_S:iM"ʼn?@HNҕS'YTOF % GlIZ[ |GӀ|-di);$R!#t&ĔLHiVSH@j=Kڤ밾lkalpQu}EH/O0}x=eaT'uBXSޚqc!בT2n58GAn]Htt/x->=

x'x '~_{?ۯ^᫋I<>^B;YEA a޽;H>00ai ZqQ=r*?o :cbLa"i@$s#~0{*\? ڡdOD6Nly8wC0zXr}}*zms7# ;~P[B(fHM uQlR*I#Z5JLA/Ԋ<&?KLڵx͎7 $Ʈ0DLi`vjf#ԕ/<~o А嘴ݳhyM#JvHpRQ!؂ײ͉nQ\`V#SVN\$9AC07rJ H! ?ӄz:=sIYXO&d ɄқcbJ7llIz<[ŔuhЁg!Vº<_b2 o,3,iaD5'u"!FƔ[ 3pꃙG{9OD"L,vpzNZ֨Ů>vJNliOy;47m BԃF9 dGwLp_o&+™mj͋|z>l"ل+0'%ݰuD7lY Lnx+"4N#p/1>*Kx"x ~xרo.7~ \l+H %Yw]52oG "2 QMscIH٩keck݉}uYqYچaDGSp}`#8֍P xcp4J `c/:v܊ DvN+S1T{>Ak0 \&SCp;üb4^ Ӗi?ܔz0LǺT#h"vu-Ϳ|CỏOׂܼG|_p+ǯ~ɯx#Ұ-ў#6uRzn+ l|6=D0iKMG[ `/ 匭.cyQUYYg60eh-*Iu-FtqGT4/@ųgҘ²8uD!1IRh`c/p\r4>11gVh t0. CSMؙq|FF9;MkoL!lδg׸ԗv[ic[ rS癟6lvOmNly2h-ºozg3<)B eҵ!pjX``̃qrH5 lIRZE]nX3Y FTD x=>w??7Ͽ7pKşW 8Gs|kOx1_/#Gسߵ5Aڹb4=@\<5n1DS''ƛ'V@ uk .ݾhlw/=оkx(w1a F 2)[=8԰NNszLF+9aNdۖ@X¨ %esJL"yZE'f˗tTw12$VB2$$=ļRVlc Q(ynWq޿̒VMsqO MW7|֏)Iۀ'Lwm4Qt{+4sWL Zf܆ld+Xum?Cc vEpս zbFS_O8)"5Ȝfd! 0Pw{?y|nWg>o<z?p-/~ދXHM_ P/WÆaCսi rIEwúOua(Ol OtѩŠ1jgגb2qp:`i`E\ߛ_,`Sqf;J[F'DS8 Q a<e{䜥蚨rVk?xK|_]z<;g}p49X!_*_P'9I&YsC7kyOd{]{x_BK͇zW]& rI ,Լi҃oYv+N9Aq}T J}N(Qѣ{QA2SFhzz1F&Bz3G2 tpsA*l!ʰzcG@[)AEt/U13%=cG\eWH$Jsl7 jq I`F :61㱜BS Jf Mc)a!ٚI#9`[cXZvm|SggvkHlQnGb|i-ύm4D;v 91C,If6F).5i疥nu8$^!*J@i-\UjE:xkg$$Aͯ6_~e3ŭ/ BWo@ҞU"az t![Sw"b!rQG&)6bo2`_:ѥǪdZg},'(L{z52F֦LLi5%"?4K_k`1q2}g}a\5&k`|ڭӢaS Kx>A=sݯD޶# E63+Qn,dvF(Vђ};46Yr( Jek7))Hu;68&l&ψ Ο]APϙ΄(BaԊ{ 6)A>X=uRMk&+zlݙ1 ugӇ! ׾S(zW7c욊3y{<Ç>*_>>'Zu&iYF:I.a IN OUa ];5uJk c fV0=ZM&O:l&{_*Hx1QRW06,Lftn .b&#\S#*+)~*Z(2Ld%ab:if;ٴPd'S#rm$vF" z\ثy+P9_qwqԎ{ ŠУĩσ=L@{d:uLz ޏaErF- z֦wpRvq]1T\x,0*l a{{N=sJEtN59MtƦdcP}kѾ 4r`> jx_]o jXYpITt9;whx'Wqǿx{AUQnl(y _T+e^BsAm,zkT^v: S;-'.JF Z(9C;B= ]CI`_r~>TxYtXmi`_t! *ԍ^lzCHym *ѻqY\)@Ţs7)GpCd{-flӡk V Ӎt'ΝǑ3q : 5;6sv lkr_Ap3bŐ=mؿqUbQ\͓ucIIdkhY=*4qM$[38F[7wg +}׸Eգ 3ച^FLA.wִ4zۊ ,m ~=cBS%TR`K:xbR̽^aA&'B͓X6BL`ɛV}`In:{@#b}ͻس{By*ϧYF=<5Șk*Ѳ JTi]t,׳]".tBԥLCra6O"IAYD# ܭ("I^3dDAצۚ@ Nj Ά wxvbʟ`J{&C}J&%T#O}n\ޤ%%c E=n-ȑk}6 z7V4L ̤򔅐Fݥbz0ظ / i2cZq~ 5w$^O_Ϸ3 Lڦ^!oڰXN\-H&gQIx G.0Gc2hJw& \L =5szn6 Aݳ6pz+3#5998Q)ns/josU4e ^ÐfeB "m ތ՚WSx7euyr7-Cdtl9!?sZŽkvAFt`mbm549lmZ3`bۉt'Yc2B*#Ei b$EfETN4Y h$zF|Ř4ʮE~]䨔1)@7"EЪp A911B~h HvS fq,)hZPϬeqvX3%+ 'qZ$![ 8Zae"jm'sra/XkW^ `7#{d%fɃ%w#;9!\ :96#761`x.;F7 nǵ.ي9R\4r%JB~lw\F$%(Pa9Y[י=ֵJvŏ03 ؜ժAMR^X\]VKKݹKzNR$N0I{ݾjA7:sBFs^OA]1٩7x#trWđmhWؾLI2k OiԸ| )3%-Q &cZG$~m ͽËhC!75,I.9>A<&٨vd5t@εcL:©#7 5krc- M7ݤ~Q`S]٪ +i:`coK K!Gz6it#$Vku<SF1\ XI<$geKZWfjAm,++:DzsesXѷF4X:4W2Pb)^nG3K? {p鉻~]7&P]\'"7W*3Fhj'SÙIv`?^u5E}2JxCZvj0NTĉt7y*tggj'Zx+ O&Ւƾ5ª8N q1EE-Q^a{wf&NT4e Өʗ|5f,L^Gn&CI!ñ Mukj2Jǐ,0 `έB{3AdXO=tMvC7L"̈́0Vq&~PatiE,&I󪼕pt- 7{kJ0KvjF҆5h0'Ean5^RZۚ6=V1b`#-PTpϷץkcWTNVBcS66# Н{(r%Or\B~u6G%;oأ}`ו猖(Vuc=e[}8;K6Igt%N.ى(l>;LUnz#ci6+L JzY+%a aģtXl^dyEv=\Y޸ue { 9WY =n0D=ϓ8a#*pC6D?fp"!k3mY+Sfҵwy6ai7?TdwȜ ۠i݃}3W{B+LFx֑9o ɽzb c )aLS٘r4}H^XY3b7٧_i?6:!Юu&3 q,/IrJP&jצ)a5\vu2pTgf; |LVja.7Ӂfp^,DF!qoå7= 5d(Y⧁m+ڳ&A¢@<|VUvA-d#-Lyj%/>1{8zS'`S}7I$yTW^&1#id& :T'AL ֱbCVBJ9 2]0X9=vPFt=*˗Wh/W0*bh K8#Q*Ptl+ڔ 4@orgNjcriÂXAiedl)I]&V:_Tמz!ʹH)u):#Y{նfУ#?5b1@ F .:ɹLiMH͜r4E97ș"s"HX@jTI-{:,L; V$uO&YFbz$FCsEo/]y;KefJKXH]^sD6BagM4F1Mu a[ O&vl[MϬV\hVf}p!"RnC{ *v6c pɐv Gf{7ܣ4$K+l? -)LR@`\0 }95āqg%ti)[cl7(m&q?:LS2Ϲv6@cYGN]'ɖp/5BTZorLȡ^s&tl㯅V' /G'IDqȾ]DF0T@Z@91=Nbhu0zρ(NCЎ+$i;sDdyiܻA5相} U7OpTJ9 7|oj7EdbVPo G~̑$hALL<<]7ulMO<&[IP ^-A8qe/G4MkPlO!E%iv]AVƋcOYM~UtqL&RvE$Vm8$5Ym3xdM,7sNx,#* Oֺȹ"YH;K!FQŧVil #&"EMɈ..t<ߍ)ȚSHA==.yhښu,bOZ`z>K:&n/R &X,ܑPRd1yu,o<t</?7e+kaWT5J)kdz.D{޼3fj=qCjdVz:Mdm . Ag,sXٴC ,;4 y>ĥws0JL3m<;].m7T<=zs<)N5g+ԟ a;aLPEL͔#zHsA_EVfY̛u^Ag}k4wӓ$MrO0NSpa^ Zv>ꥆ֕בCȶz@DԺ&!wjdIq1Ë~ ;4voTw^^hNY'WcY?GǤ]yє)=M^^ Nycd#ƼŐs̔ݴhl\Ah"8AؕvXDl;8&oV]k7KiJ4ׯ* Pu"fP.t+G %aݻ4sh],Q'*uE)鏕ff>.jS( 'd;_yctaņv5?!K׍EMh`ml6?:l_ eRl Pz$ X$4< lIրKw9%&a s"MU3IGVKFuw)7b%o`4ߓn4cf팣 QyD69 ؉*{-0ߺhwgx1J[xॠ3 x}jȐlO n) +!L:GG1lwk޸̗x#4-xINiV|$5gwrh*JM"07td;ƴnRVb s)7q8Չtu["Id1GKXcP3fJ2 ' u6χn;Tb:Telb3ɏAf@Xd(띭0=HqڀRHQ'gNK\>)(qeӕOȶsװmϥ=l,Gnw?)f:ͿL̇d+aiܐ9|:1p$PQ{JQҋ$ Wv32n$ęla>mgwR^6Pgfք24Kmy,O]wP 0]qPEڔ4UmqYebHHłv8,/n9܍N2` ٚ:+| ܵ=E=έ,gImRZc6y&?zI5x{8; ZDCP1z3f}}Xe!dbů9QfZee6\(2B(X;1՘nD7#,!=Uq[S]#qx]LwlA5nnΧ}Hi:s*t3ReA[ 'iSSX 5g@iik0#~c>Bk\ߐK93ϥ=69p(H&Q4ב bcWFNdd|a"k0a:vM]E4~` x؃C! E?F ֲKYNqŘ%yGoa3Χd6_Oj";MS5F|1 kaPi(aʎL-?/ H^xM ñўˑqeDᵧA"'_nM\z":AzS74cO]f,gZGqyCm1;Lj9ғu }"3OfI+qtd4=H eTB*'&\&:4t )%H!`*:eT\$PAl`'~:][[1Dh&8=SCc-Vd(ad5-0xf(`dxcldJ^d͜ZɉHza+~6Dby03b5u4!$ݏ-|t+B.C}bGX2Ն mS%,I^rQd~QϮX=i5& d0B"jssNL~UohIt Ni޵MT-Lsa/W"Y$uf 6$EfSv [CJXMӓ5u,kXZc/ڒVDǨ(:v:=S''LfrDMVdC諴 yD4e=~`PM\B$gt-$G^k~2k(DewwTkVY6tlD|B{c/* Ѩ֒K}^5]Nhn#)2Zs,%Zx}p)"tix%tQhpϜ aj5DᬓcBDL')`wىi pH^ oa" :غ2{:nuh\JC(#]/ZМ8T;غFpDeZH`׸U2}~O>'3XYWJ4vp&S'qAy f85IÑМB6 ޾~k^+D&B á@I\Q/F^*78`nnL(--rs QڍDܘy(uY:,i]Eң-(3׌c̓DFLpLZ`#?4 [sدnRxQq180cVZgNV'+PDrN?ֿAꡪ8REf,&ϫiBje[L?\}?'XU*8[V1@a?[6hϥ*orzE*TUUpU@.W|5~_7o=.Rs>~Gx1uпm GTN&y-)L;/D_+䝽>y@fghkpcWIϯ)IȄϱ8o5V[@ǛsrJ&9@5ݧN|tGw7{'ɓGxt{8psӦG)YƐ>x7a**BDءZ۷x؟|+|߼ė o^NtGU/:%k5",Zuv'%˶Fv+fQ6eQ I:B R; O"+@(:㐝Hl$Y\XΔd8 OB{ϓv9&rэCSB'&ƪlš&WU*:tyt|ӊQUYb8Gu~o@NlIǔIklހ4"T.^R߬`/|Ϻ(=7&$ᑠ;R k[8kL9 j{;ﳱEL3O;qՇ҉Tffw/:[z'yvg,aZ!8܆ڿnA}OS)y o^}o^Aߢ0Sx|7Ocz."Q_psQdA9 &a8ļF[F uOnWvJ m=| 5|?~?ƏxFׇBZ.~]ͪED016$" p d*W0)g5>eCSriTg&*6Sf+3J;zSq=ϿgϞ-nnnW`#q[|#\\jyqPIHO+벫JS4(9dh0 nE0((Mկx9>~=_9OzWo⋯^?s|sBGAJZީkc0]sPp}巐q,D/\  #>r\9֯؏}_6 ׵]?*ԂM`*n==ҥTe ~AE3I Rc㌻0Bu+g^I3Ycjquu`D6 'V n&`U]ڤY>ԙr]ʢTQCi֫t@2UyÏ5Ԙ)%zBuWNOsn}{t6KR$!Z[A-FU#-z&NOQiiBL9<⨟5bɂ0׶ËqfWɗx`x|{xs<{ {Ϟ>qBmEVzAR%&2;M"n8`P5l]T(>N1^Jה4OF"cdP'\mMeTT)5]rɍKko~T x{ׯ//_߆p&ajQ c7cA%W{A0=SbNrOkQZZ:5Q PfqGNjŖS2{} mIhT^pp57Jsv+okq^7G];@NӸgfW8x,I2Y͜2 F T"+ZUOK[\/]锈kdޱaK;"nsc{Ƕ%\k6ϘՄЙϑGkX5,VaS`΄vTbdexѤQQPTphEۯK'x>c,ӵ* À_\61EJC2]o؆ꝢM%|<4jE[[0`uV=ӱ*P=<旌l\R k:@on0d'Z:Y[wooZSBILp)y]Iӛ"5H>S50=uJùSLҮIKӻ֩gS%<4ugM#;yU'&95"f IX9ѡhL)=ʁa `M,m= Mo2 &Xs@%`[T1{ًe$K}6\5IqݫZwT!;'T:KP4=O|| |c0f~VurqIcxy4kVpݨPl\zS[7[ZS(sH%ܤ2}&z{<ݘڤ) 駍 Kkكq+c|O *\;q榄ށ\:LL0a{ҋ1Ϙi ynH4"zAcY.Y)%-2t4Y mE\n''2ߧ6 {:bL̥Lv4 ;;a0I::F&)]g A&Hp`9%)8w׬Seo&f7=Jk`E ا`hJM 5>dKfʊϬv˖=mx^!׆u\`0J {pu$`?He)!~}l`Qqmҹe޿_|>_-]8x$W~@DFwi+Ms.m=s3;HpP'(]P!^Uc&['jC+fF戸e^)sg*pD˂77n^|s<DR4^hӐt#̬caĴQLAbڝsvQ*\Z^V8v7~zŠX,̧Lے _(-q|nY:LNºG4Z#D]Γ&MxbWZW98g'_m'&6Pj枆%Mֈkn⥰ ɱ[ɃAUOUiX6X[bjȬfVXG68; zP}v,Yt5 ^vz&uC*ktԊ] j8{mf6ljRDMIտ)v6^t$HR1cRS uS#? 7f vrFͫ!9Nm kOpw{B׸yk"ESDBK1d0ZnqGgcWt-t"@^r1Bv{O&J߄pn2 ,^;G7Fo} *Pֆ^1J%9ʺ7*<6. S /!4:w5-a8pM dyG)-Z):W|nc!<~o`^Ւ M:­ɧrgŖ+ɩ6D JC흚kJX6Q3n>˰m.SBJh9:BB06s$4Dlۈ9 j5̱éHujBnD$2OzFU2,!Ԫ ZjN^ŋom?Y:װ5ڰTw7:Q>|M;603 ?+~[n^>\J]Y3P;;Lv.facB' T7n3%IeJG1 \Lu矨s6[ k>v,N zHw4Ao-utсGL^ x[yF*{k<^sT_ g(R.q+| ]Uk+b hz{h4ODڼD&iϻ);وrgDu{_(wʆּ_cQ6L{2Fl u#f6;2|;L؉EȰM8ZוVR"F`uLɮ,` M!NW%,$$`mLJO?{ۿ7?E!p3RRDq"+0Vɟ]>A,Eh=Tj >UvE/W/۷qǨetG0oaM265$|zD7m'I^7,FɠdDa ESBXq0Tْz؟OlYe aDcЯwE=^aVܑ?O+w?oonJ;_kK~q#+s@2嚼2[!%HJl:ɱrl8+Ol袳0P}g6Yץ3w?Ʒ4G씴P6a ػKզ"L<)CT:C5A @+H-nbRq}OW~_G҉W^*\.7En%Q(^& ]{A5Cjm *4w,Z-)۝uo)P< \ 0PC)x3OD5~y VZ9kNl_C41V̘wa[k<"<̫BG+{Jq!lju00f,-3 #>N<~ň:ĒK#`_>Mf*}b`Ol{wX 먹*Ivΰ QZq #5IH퉵ڧTPl?#F^ǣ3ϛwI`I4^#18{~Ov"Q\ g$`i_RgJbя4{ Am! xFwW,=w΍`G3AKh9&϶ԔڄEmy8)w?|xQLRqV_*=UR5e둏CYh׾+'"\eavT>$H u# R!t//`z:ż3c@JP\;K+53 &cNɢD>Rz9?q.[|2Vt7z{׊Rv q cqϜߛj|famO\ N1wJ [Nݬe4qmJ$[C_W]RPFEKZKiJow6w+"NS{^ey ] {Y&3!7':_9.Thl%%$XZ4 ́bĜ4RDPՉ{/mcL4O6;SNAۼ^׻ [_c[CI`R ޴3Q VL[g2;p$`rio9+ldRQ8qg/Jx{k^q]X yc+q^WGվA %"]sf8x'lٜ҉>ȏ\8/jM4;bp<5n`>T>^kڴ٩К4G/LZQD+y~{۷~s*. ұ6ɵ *?hx5 =\_'olXrTx.gKu7 :6:+i5*jW̫%9Ql_1vS@:tUZHCō[R֪_ݫY$Ayb:Y`MSyDym}^lne8ȱh|BEDB^, G^Cb:fA g;`)c!EE;i} ={};ܶ!OTjgSPT%D֐U\>@A"icCY'HןA;oe;=Wvl١nu8 8=75΃TCwUܶ;m)񐈄(a  H$,˥" HX86q!v籪NOk~i9{gWv ,c444C|̌(2= 8! 4*#VXW fy.zIjf k V=NQ#559q&b'6hq`JݑÎ2 xŤ$X @"=dUݭ֓~}{BbѐϦ<0N*)*t5غ\ӄgewۅ`l&{uE84.AHJ)BI %&2uXʜkO6O<{ :6#-uP"Y jWqQ8c7Z =}3ErB ?pbᘰ?pq*]h)TSǜ8 kz 3ٝpq$ X hBR<= tV [iN-~>|4ќY?;3B}פ)8u/[!9HQmiH#ǓH1s('Ϯ?quud9&@9WtE҃ uAm_dKP,(%11G 44RYM)u@e[Ɣzޞ.k4_L ΪD5POېtckM &QykudPy23|!IܼpK{Uù3[hӈz]MIc׋;DSꆁfhFKT!<a?J%-':j*;;X9׉6ϩf̨4"l䚗riSs]=5/.zEĦ;UPh=ى߯ b9C/={k,xJ9\*|etRg 2Y,#HIkP%,bQh7sWHv?7 t6.FJ̰]q8FlܲkJJ"7hlp7YD& Lb>CBT2PᔜF2NbsrU8In@>>O£x%MhD3iJ~PVjqyNgs2O-b;,N=e_}NGî IʙF6b{b`x=U-|h=&:lϾAv3AygiYl-l suhpg'@ SY\J5ñL6Z?du#QDB { Ջun haDt,d#Z˼L@J͞ V|5]t90 yn xΛ1,bDB-0&&yG =@Z&Gj4Ӯ`yPi3%t;sajOFom4 tӥa@v6OnJHne' vb@d(7ƈ!'${r3tb]©pL,鈻;\]+-|?/~uK%K6:VM&F' [0YU0,żU4igHRwFHc;kLP"%`6˓酓Bua9DWX'f`T=CU"yF I#7Sb/v)D+atRiWSROvX gk=.!GpAu5=WO-L!G2;dmk}h(=f51Ӽ43*Sqy6&KAQDsREWL#i(S@nM/&Ӡ@&RuP92NYdOmWӂ'5b`>)2(ACd7$y77 ė;s?َòE\.!6gNpL}wU",C0le ϫs3"Uu#aM N9džn"D]acߣxć˿xEOX,W @@LsT)jSvA |JICJgFc2wg6w oS?!Ywe]Z },P6u9tBNk訞Sc-QPI&ƱA.d)P1uFjR׋ &v?^6 6rIΗ I4(S4j2w~y؟oFD-/%/ʼF@9siLxW#n B8*&oMnڑQJyF̏KY's7*=sѽ!2B J "ȭP04b)3"{>bucG&d޹rE8;5cԩpӫ+ 5pWc?ַ/σB˯|_z{?)Ԇ-ONpd "JR=H~!')>O,Jnb4HpźSg1Ц-E29$c.3J7Ad!$҅)"pβFEYR|<-:PIKՕi*d0 vRsPdcOD&Olr&+4UΛ[r:Ϻn_-P>kzP);xY M䜓zbS}8#7ʉ{BmX#wb dF\FjzG Qi;+S^Sދco5}?J)8<@q1@YEG'Q7*#Rmh9e99oe7N8)O X8x;@&#9X N]`=INUkCTidfKy<߇TxWxP-30#N-w8pwt: kO8~>O/|% ._x/|/vsBvPeV{@>vǦ{8u\VD i6xƦdgc8ϯC.IBEdT38-K"@玮0:d̜TF{ vyN?;T;霓9yU5sZkf4&s]ӓƢa4aj A$ݦ3::2]:e7K)`sGl~Q8}}c,녙u$\\i<ᓲgŐ:r@A ~k_'RݩxFʵp#u2)K/f^Y0ރ.&+i"Gq4KO&3x(YrP%gԢ0#q!0{7Fea3yRJfJ#q0xON{qqw<`w8bqOx#?c?#W_տk?l]bwˋxװ|Hoj+[)}V5z0Bip #^2cV聐,e)ל1g3 O<hg Kiθ2f 0ey+q#88`p hcʫ4r2ge$^od_zhsS6s1B^Zh5:9]MA˧.(smTcH[oQvUg=hlt30u.G;%f=8SU >rݳ*u"C;YBӑ 8#'$&EÛ|:Qڋ@[t Vf8KO ؽ4Թ>DB14 ޚ]\#S%MJm֦H!Dُ!blM|;k`ukqU轴]8ڭ.Rw tptp~Nr_'>O?8/(V-{]>C?G/bu%ƉyvLM:M3P0%YUUzDZZ]f,jhC߲ T/DdK0W$vMb8Vw OjnO"sܜ5:܎ys5 a)xy̤;7M4îHJI~RB%J ]uj;'%$Գkx,AFIE\ўXjy%6玁\2r[CtKSI-$;c m_W^eKZ؂hL=pPwXTp=rHV3M!1XCHڄe@hsP;Sޗ=;S2;4;ɶ:C`K56{3`aP 9d :`^T7qqL#1R.qO8N8{1opo}#>|׾o?+bh`mӅY?L 2>Ed<+Nmby4Б\}<{U;Ғ\:SYrPHVjA}r^s !-[" a'yq`pۦP%K:$]H.I>=)Ki8:0V3D|otnif[I뙌sQ0dY.6ѫ{F[XI&&qC FLa*m,5)5C=}IcfY&ܞKfC L <5Ŝ3bS}6\\ji[pwwn{8}f* DP9'N'c_մ.h;S*9q1mmBqcM`<{Hl|Vb*U|Pل7Dz߱DFdHcnE/RDcaV -\<#\>z{0,6 YRuu2fא]^cHP'ժ9>N,55OFϻ~BަW鴦 bLԬ6k4禡,n.5ҹH=&ӈ=\.ԥI\0)g@_&z5D/ QϨ$@bskqPHy{nrC\kxL?g?ڍ?pv: Vd U榚H*arGB)g ~o;kiLðXUgTpC$PrY\SP.ƠNrqRNxs鰬K 5DfӦ۬&C 3a N_ ТN%cJ忏#Sp:mTN'w!-yrB:tc[~~57K|_| ./bԩtbjf{{q#ܻ|ZWxCCC(3=``u5g'PfMeā٥Iy`&59C4-j ^7iQ]|Mna^{{SF~sUP6w_u3[ȴ%Z)\L%j2ospl% 4ÖZB*߬~_L{25oQNDLZS/9eBY;|PC\"Y#RkB`![ PbވMf<]4{FlRy>auSH 8EB P 5;b"Bk?f )>ĉ2ucxLw ðxtX >coso!jnG_jX,\lXm]`}q]E&щ/Ѥ 5t[wҬD?g '½y89;;]Yde(kP79mQ -`d=sd!rli8:M43J^Og 9*V/]q%ב5kiUq 5|5[f{qҼɎ0vQSo&^Up1n%iҌ?ɥګsԽ&2 'z8 HBdNGupMfS-!-\B3R.kxOy_;ocGlV \X?a ԸZcjr]`sqaN[4B *F .ާk6xǯ3 9R<{g:af8N#|*ZU+kp4NcudrZN/sj0 DЀ|ʌS2S0:x6X>gkDR3ʍ[!:CL&gN{;;2 3npf*dl?aX:*$Ǵ(C[E32^ jʌѩ˿ ;-X vG1Ɵ_?/~G,5; w!H|6=v(gCTBQ)]ZaH7jhÂDœηc*ʧi< " m7>fO^ok\\\W^˯|_ǿOկ|xAjŪ5J`V[,7[6l]`z SX#+$1Ctۋw>1@~/Dw`!!PvXLv2QuHi1;1qdɰZ3$^|yغeĹ&72|%++α_ѴޅO"hȾKJ ^tHEUSCz rt<ɘQ8'y3~鯇ެr3evmpa㔰7 AWkln"eRZ!_ zYzUpśW?md-EFsw)Ӣ\%luY&^i$ꡳQ?,퉑쓀0<8cj{BS= 6`A(a^/3k_Eo¿ş_“'ocX0X-׈e9-d̶M'!hJ pzD> Q|C Vo|)f1!+aL[$Y#R./جW8{ů~W7l/^^~|_|xoF{{+z; Mwvf8Pu 5V*9'j`Ǹݗ~: @u{MOC,j'a JE]| Hu\e#(4u&)גTzޑvhv/?7^|gͿ ?U|'׿-a+!.0,PB RuV\"dD Z@1Gc,198gƋH؛-YaB -L:2('bzsaXz;x73\>W?Q|c|ħ7u{XU  6 n6UClVXwwV5B\4s ' dR{CW%Eįj=2x,MQkAbšF5;Ӓ*o t$"24ɹ9q2̭č/\s}@_є֨ĚjW:)\R2|.k)LLK%nw ma\P6SYM(;`ؤ,Цs)'"/QqEI|VOqNs".R-KrzyHTúK=kq_$&J<|MaJY1PD)5;)@=֐h$Iբ"qzNC`J15!4S2C)tbߙ䋣Ԙ#fΆA5 &|&0R 7΍1xH#b\/_"ƃG3?0,𕯽׿6q1TǠgpZ&iWqP}bۃN;ucu鑏G}o~jn 5SHTnvnxs_~ B k_*>;z lklW CqՔaa=]bZ!E}Ёl21cS;R:8qS%DFaJ1eZZo},Y!0kd;l Qqq5Z{?yeZӏrFGR]*-<VugE,UB#էFgv$cX葠'&+O7K?Zr۟6i+|{洱s+=VQy^KfuD1atsT8OBB=Ny}ƒgMjSߞHD:vı27N{EVo9pM9G= \!,6jaͯ!,VxW?8.<[o?+O+ P a)xЄ0i;\YGSJm?!Y'gzrjr837$S,+\>|/~/}x簿~ȇkˆ͒EbrzfժB=.l/WZV۳ܺ{;5]՛$pA Ծ6]kkȅ? @d>ėG/5Fhi{DaC/~5يji.H k?k2[LdxMf[,ݩ&s4E{8:.u) 3l}Y*5owqy Wo} o&pJr,"v O)O>> yxc`u1-›7z-#5c{N o۸Řr#K<}xxx2.2`%J&ڬXow\< ]bbXΚ37fM334(4U'Wv5)vJ- #r!FF,%{{FҠ7N/]Wݭe:?)ryޖD l}y6tǓTѠ]k l拜7 0MٝM)sfLZ9kmhҤY5׈yŅOw067xّҌM|snMo$hHҜ.Up6w=ٹv)8J(^'S.T@WU ԃC8-Y,v{"[ ޫV ;\+\=S^qqG{|xxx£//|pqqQM P jjtpL#ꟛQxr}ѽq{6tx <}g&oӁ@(#0NG;.XX_`,V%R'v%v.wbt&'Uh ĩ.R*Vp~)%LAգ0$DJ'PݳQ+]_"#)2UddЌ O~&:M9 `񹰚;Z 9֪GH2)4W[/OQ1JM4#C199.;eTEL+Sx E;.?)0LDPCs6RxyINyALzC}rhu6y܈a*TNE_7>8|F< )X]rLV[W"/CGX +3Vu`,٥Y"S \O].6q8U}w5n=3px{tE:x#ӈq<"gϞ 7 kw/}:)bǮlzm&j2Tw|鄱dfʿD%ᨩq(X .vk,5@X.6E-rư\ab^caGnz@FY|qJB"6]بe/xY[DToXڼIu l746m~N+qe)Lh,] .]0DLP-AS.}Cm@pgn-_&53DBש 79SNLf,pW# r1޻G)eue|e'iD3;H8a8{Beh{Gz \v`y Y }d'ɱ8 םvʭx`t/G+ iei浨Vds-.b{qxa-na{pD8ȧ#r:a7ӈ0|)8*qOHC+ ˬа-RjoO >V%BXs*G !r0 Xt\WV -..*iZTl FɯbAQ0Da/z[ە, P*8r%;H8hB en$_w11#$i&b/&hMd%Y;nR4Mъ YY ~Yt .d٘j[f,~a~U#Qnr:0{ t~:+g#"0{!3ua8m}k bJzx+b@&O%b4 pH{$5Rj6y7)b5VjY6юïiHjF"a [% 2p:q)x:`<Ntc 3CkIJ^$ h@(6ae4 7<Ӕΐh֫-0 `]eNV_1X$,ts0hm$.4cvEt1ϣs)(F %HiDH#NN;{O{ӱ~w%HƩvDY6O1.VwX,ZKXF j:V}+Jp2*k_^@cp V,#bص*B-T ,#hFO0,+=U >t)TdbXaq@ nZ4FPD^4~r%p=(엝;Y?  :ٝB플~3Ĝ gYо՘AsФ&1}jM8+[\q:dGUiGnM카;"FsP *5B[wI D04{h*J6N9+۶]*1,N(cu@Kur*h7Z4)TjJcbHM+Yc['Sm:749 D/3\qqGZ-"vXU.#Xd2N.X=H=3 f-3 ZtXF: հbv:fKl2RRRAPb:hnOb_)ugl86NȺLzȆCJDXD bs+' ފfB)c.:SPW1P5;Nd!F- K&(CLz`697,SZ UXOۇG1<:)47l/${9f\\& ez8>Oskړ,akwz 8Yfp63ܘ#\a꿶Y+JDZyL fMGS}dN3>upсIA'TcA8Զ%{soʖ{|7?qndry+'[!!t5L6ŗl ǜ!hWNZ0@s #Dx#e6BH14;D)@iLBdܴ!Ej FH#]LI!h'mE#Khj@@WI ?B…h5nьX!T¯)7L9 :HSTArّ.u*x#66jvCs@+֎ܠgOl"SRiۑ^;/DyN 2ȹYYĹ}jEFfe~V: ^ï+Pf)W5\ʣ;$?6D!t6DNbLfr-OIYvȄ<JL*m JRGj/2Xi^Fݣ~Ѥs=L5M.twQ ݍg'Оt.R> iyO{ji+I.SlMʵ8SuuA* (U?9q*\ WHa'U#Cv5nnH7R}c IQ׶ޠۡu$ %y"ѭvIBVc##$ޭ2ާ!2N4+dd-١RQ7\B0kA,L:1xզ$mTs`K߱ CX?"nw :3IC2#^-3OIb \eCw xQ$lM{1C{u6D#L`vڜM^rW,knXvJ_b5nS=^{Φ6iQ'&*oa&U)O@Aq\ L]џ ۓ/w&\48RP`LȜ-#ͪX":}M%5ip(-vٽKFlhX uߚ^@K00.<:ćӻ@.1.xW*ɑdӣٹUyI& a+ " EZ;S.Z, (wd֦JAIL-Y8mtel&9KG1{Se c(78,wI9c c&DX TCr!,Eiŝ+M>bgr}zI)1IM;Ztyi)pD-f %&ʮPu2bL[Lu <] |TewŰ@glWHMN^~׋h X,^9c:T~#Rx'm(x33 ^RRsr*ۭIs?e YNw{̞f=UWIiNEcu:$S##Yv3ǀh۔J&]vvz- +(?~ 4WI^ zXWrSvd 2h,a'D2{B7YId r`YK=d:(5%$MHCjAI5s})hq$moHka`=$9ȈCWú?Xe 77SbǧS 0#E5֭ߗJr~Sb^= f2.[5/,5}_`R MU| [MFfǤIMj_d'dYeH 7'v4Iy -fWRfkYguf~zIZ}[y缋Lq5z S$L4~Jg&Nq!8F?.Z[溊2=9u ZuEeټskHw%*:t;ع)wn mD%cY8Ӳջs:&F8)02!BF*3"J}G X"B4"q2~;lJnņ$2|C1 v5#k(1,S|:NG* L,3u򡠓O*Wa>PKPb}MmwdΠ- WF!@u%5[7,0JV"`V5m$43#zuM-ArerͶ5V6lP4AwTܡ_STGKc{01DQ&ͭefcGF1V$ edH*[Ϝ@;gXS\`4,h*u֦CZfGT\x)@%kݢlፈ/.>p:x%ǧvex%%;u=DtA1zBWYyd:1jp- @%prM˹f QP~7 4{k7:&~G1?In79#LCɚȠ!MNb`~eQ*aث"f[8g9 " +%xT wEt)l=5CngTqRk& %xeX lO8{`{ʥ%1aE) cKXc:h"+4{UPVHu9\ [/L+3B:$a_ܧyQVDr}Δ}f&3iAke /Ф1EyJc͹v(uA xTγJ&TQJoraI~9OD$<=',v{`9FflOto"=Н!F2FrldO`rʮإ!ȢSp-=* YyIM<3Y1LwʾP١PLܥ9RbaNHB yŠ,zhS)s5-LaIԗb/2o;coBS&dO%.,QҜ >QuS^DgPMd2-dT3a2o"}QǪ1az L/-paYZIhٛw')⥱TuLJT2׀%5 @}L{4iW1g5v+_2#F;)1-d(Q1 ݅ݨ<.{=YxHz9`l*5H7SݥJ e"`~G srB3|T%%uP6#puEarNI5ڀr򹓠 E[hwP'r#0ɳ&-,; &PB+SY8uL -0˹xμoT71<g}AMmEF$f<k7>Ԃΰ{װ)VW%-%4:Ӂa.M'OtP i)jXkQ+7i=J21)̬`0Ni/;TPD," GTbޠͦ[T\6*\Cw|*_O0q$dA3'i s5͊P&QDyB fZ:H>=O2bdH)A3=1H'`$G_"6 ҦfZUߪVLS`B~%wT%4B(5a y &V}MI|0R߯6vsMJS_#u_e!IX_Pm;ܐ dAYؠ3*+Iw$\ض%e"ڤxZ%״BB #>[֏n/$dLLFYhba9|-&D`ټ_!Y(Lztk n7=;m#m]JI;a2uÉOsF?\[ef'+~Rz= (S-8c!IŽnT(4cv:Icݳi4sR4'7HaIڻv]KV-, #KFH !x`x.B r`d$DvA@FD@d.tOk-ZoUտ{>jݾM>fkc^<ׁ$}<뽘m6K˺.(we)p+&ZR(Lx|;uCH{44 HU98"āR-Pc\@{.ܠew74PNŪ|=A_2yAq^OZ +>zJb~<Ei l;6:huUQ̸u^HN# .Z/@aW>BQդS,%\c߉x֒DkDU.8ơNH0zޑǨjn!?"H LJо5 WAU9F"L1T@]AHߘcCK9lYh6G>.ɬ CvK䱠M tU M/v.*U{fڿ!fL+m9kW h棵yV)RB3҂u7&8n*8=|Ě r~<ݕBd_8St3 Kh(L!}D}%Ecu RTP#<:FLN RW׫66/nݬFBa\ѭy:͌ S )+Q%*bnY]*MKl 3 ]tc=#٣\->riXgͼh&iժRpPԐ/ FYU TY(LߠsFk#n-+hKrPWk_WRE(ײvk;-VCP*W5XiͅSR64U v_RFKRXϗ6;sVx̦4o6kv; 9qNF A_cdm8bQ jn̹; QkKC0W9ކ J_`ԟź z\ݍ]q RKMPUh0'g3Z +PkEZ}Nۈt}MrO@To' g*0%:螎k$Vg2̆]\15hJٶ҃wW^7<Y3rat?ԥw3UJ?Wᙢb\`Y;by˪Q8[ڐq*J@8sL4[dR@*. "mAsMEvXxsR-)iٝRN2V~"@Z*tV+sڠYvbV { z(yc@s ~d+tpM5I -e٫`Ũuijj2UmhX^Pm`sc.,>ÃР REL{ Z e]լ$9/UC ;ٜzN__G,Nwwn!Hq3.d jC+mzHbD1/%JHf SdZl A *QЊU䘱4Z!>P7ʌ?TJM2fЮ݌Swi%esW(tRhj=U 7TU:#gEMٱۈiuf|؟8,30+QyqN bl<܆f9G'Q\ D3uQFq1T =r{}- /a ZQjvT| V_A6sBP S:WEA̯TJ۹U%:fIfd$Tإ<$s0@mܛQ3-'ӄ"sGǃ-HDJ.EaF9ϐGgߥ7K,Er1U!t9NԤ#R=hQjIrU}6Cr4e̼aL 47'ykF4]*<<3ZZsl9C&}T,wx9n w*H{`]/NiE;u%&q3̱ ׁuAы[ qy Cf)#r(gpe&EXsT":uT2We jP&tm fL1Y6՞PMnЦMVY5o4(4Px4)s^!38RG%oJX#,Yky^`9%vo|xTo:P,XFox<:9yC( P1qC~0} x̀ UorR>vrL&gj)&c>̨HdrʸIMgnߡ#jU%;G3BNkaPki6` , |vMDw`&Z*O]P +gtW9i NS ϝfz}Ipk\ Y慉^۬ݰ;^]X]5\=:k`۞sV_ UKA1óTkE|!~?o? =8ټ(oQd#]Y8jB&7.VG 4:W[ _kŐZګYS[߽xw S+tC , 2w-ڮgg\8U.K!@2B*+"J%ؗ٪Ȫ6S&\w `e[ Pj<]"?7[Qbuhf%ά֎ʮ! P&1Ʋ*XHe#}U}uz%+뇣zj5'6߮TGvPjl:x |m!:Դ+6Sޣzيa|FL'*Jem%훿 GT?'q{^3\-&*1/Y5dE?;d+ш(۴Yȷ2v^y]\L8]&QK'K+ɝ}J[[n0!Yц>ƕtebvU"1O( á}l~mݨhxĬo ԡ~8snLr!KBMb+*W$4IeP236 |V&j6h\ #w@BBj%c(FPl6$pكPFˣ Yiiui$_lފ4h-G&Wngٰ“V`[+4u"('t'x&\&,/pY6 gEevk Y= 4#AD Z8]G x0bv?6W YNk?.>%.rx+˘ U{n':no'NĝHV}75}곐|M8zk1}sT!rԎ 0$=Pv?.uy_aklU]gJ]j#!w"yKGӗ_>џ\*oƯQSzgK)6?ɺUW=J*a(wM)dЇ62u:c\|^M @[~6<ɃkX|~htW3: 75P4?M_{3D~a~`Ay:l,/e%PE07?nDȺeZ#;o7ƱQ' kr 5|+otqJwE8\~]{݂ 67z՚IAjMڽ)J1`sroSn}kz̑HROpBfT%K#D׾1=-9ZKC\͐@}lN-GYQvpIA i*?e4[NAAJ٫Uew܌&rژIMt~F[ߡJW:_nvǶx(ߦ֦SQeszp,daGn "ń E!zi ? tLZw0xG 2q}'Cg/Ǥs s $GK1町.ݢcfL>Y*i,HHtXC}snDq;%(rb,^S͆!;R$fT޴۶P D_߅ +E̥"+`čOR.SXٶOW>OAU/ˋ2ƍmU{|3$qJǰ , 1995, 1996 # # Modified to never use included libintl. # Owen Taylor , 12/15/1998 # # Major rework to remove unused code # Owen Taylor , 12/11/2002 # # Added better handling of ALL_LINGUAS from GNU gettext version # written by Bruno Haible, Owen Taylor 5/30/3002 # # Modified to require ngettext # Matthias Clasen 08/06/2004 # # We need this here as well, since someone might use autoconf-2.5x # to configure GLib then an older version to configure a package # using AM_GLIB_GNU_GETTEXT AC_PREREQ(2.53) dnl dnl We go to great lengths to make sure that aclocal won't dnl try to pull in the installed version of these macros dnl when running aclocal in the glib directory. dnl m4_copy([AC_DEFUN],[glib_DEFUN]) m4_copy([AC_REQUIRE],[glib_REQUIRE]) dnl dnl At the end, if we're not within glib, we'll define the public dnl definitions in terms of our private definitions. dnl # GLIB_LC_MESSAGES #-------------------- glib_DEFUN([GLIB_LC_MESSAGES], [AC_CHECK_HEADERS([locale.h]) if test $ac_cv_header_locale_h = yes; then AC_CACHE_CHECK([for LC_MESSAGES], am_cv_val_LC_MESSAGES, [AC_TRY_LINK([#include ], [return LC_MESSAGES], am_cv_val_LC_MESSAGES=yes, am_cv_val_LC_MESSAGES=no)]) if test $am_cv_val_LC_MESSAGES = yes; then AC_DEFINE(HAVE_LC_MESSAGES, 1, [Define if your file defines LC_MESSAGES.]) fi fi]) # GLIB_PATH_PROG_WITH_TEST #---------------------------- dnl GLIB_PATH_PROG_WITH_TEST(VARIABLE, PROG-TO-CHECK-FOR, dnl TEST-PERFORMED-ON-FOUND_PROGRAM [, VALUE-IF-NOT-FOUND [, PATH]]) glib_DEFUN([GLIB_PATH_PROG_WITH_TEST], [# Extract the first word of "$2", so it can be a program name with args. set dummy $2; ac_word=[$]2 AC_MSG_CHECKING([for $ac_word]) AC_CACHE_VAL(ac_cv_path_$1, [case "[$]$1" in /*) ac_cv_path_$1="[$]$1" # Let the user override the test with a path. ;; *) IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:" for ac_dir in ifelse([$5], , $PATH, [$5]); do test -z "$ac_dir" && ac_dir=. if test -f $ac_dir/$ac_word; then if [$3]; then ac_cv_path_$1="$ac_dir/$ac_word" break fi fi done IFS="$ac_save_ifs" dnl If no 4th arg is given, leave the cache variable unset, dnl so AC_PATH_PROGS will keep looking. ifelse([$4], , , [ test -z "[$]ac_cv_path_$1" && ac_cv_path_$1="$4" ])dnl ;; esac])dnl $1="$ac_cv_path_$1" if test ifelse([$4], , [-n "[$]$1"], ["[$]$1" != "$4"]); then AC_MSG_RESULT([$]$1) else AC_MSG_RESULT(no) fi AC_SUBST($1)dnl ]) # GLIB_WITH_NLS #----------------- glib_DEFUN([GLIB_WITH_NLS], dnl NLS is obligatory [USE_NLS=yes AC_SUBST(USE_NLS) gt_cv_have_gettext=no CATOBJEXT=NONE XGETTEXT=: INTLLIBS= AC_CHECK_HEADER(libintl.h, [gt_cv_func_dgettext_libintl="no" libintl_extra_libs="" # # First check in libc # AC_CACHE_CHECK([for ngettext in libc], gt_cv_func_ngettext_libc, [AC_TRY_LINK([ #include ], [return !ngettext ("","", 1)], gt_cv_func_ngettext_libc=yes, gt_cv_func_ngettext_libc=no) ]) if test "$gt_cv_func_ngettext_libc" = "yes" ; then AC_CACHE_CHECK([for dgettext in libc], gt_cv_func_dgettext_libc, [AC_TRY_LINK([ #include ], [return !dgettext ("","")], gt_cv_func_dgettext_libc=yes, gt_cv_func_dgettext_libc=no) ]) fi if test "$gt_cv_func_ngettext_libc" = "yes" ; then AC_CHECK_FUNCS(bind_textdomain_codeset) fi # # If we don't have everything we want, check in libintl # if test "$gt_cv_func_dgettext_libc" != "yes" \ || test "$gt_cv_func_ngettext_libc" != "yes" \ || test "$ac_cv_func_bind_textdomain_codeset" != "yes" ; then AC_CHECK_LIB(intl, bindtextdomain, [AC_CHECK_LIB(intl, ngettext, [AC_CHECK_LIB(intl, dgettext, gt_cv_func_dgettext_libintl=yes)])]) if test "$gt_cv_func_dgettext_libintl" != "yes" ; then AC_MSG_CHECKING([if -liconv is needed to use gettext]) AC_MSG_RESULT([]) AC_CHECK_LIB(intl, ngettext, [AC_CHECK_LIB(intl, dcgettext, [gt_cv_func_dgettext_libintl=yes libintl_extra_libs=-liconv], :,-liconv)], :,-liconv) fi # # If we found libintl, then check in it for bind_textdomain_codeset(); # we'll prefer libc if neither have bind_textdomain_codeset(), # and both have dgettext and ngettext # if test "$gt_cv_func_dgettext_libintl" = "yes" ; then glib_save_LIBS="$LIBS" LIBS="$LIBS -lintl $libintl_extra_libs" unset ac_cv_func_bind_textdomain_codeset AC_CHECK_FUNCS(bind_textdomain_codeset) LIBS="$glib_save_LIBS" if test "$ac_cv_func_bind_textdomain_codeset" = "yes" ; then gt_cv_func_dgettext_libc=no else if test "$gt_cv_func_dgettext_libc" = "yes" \ && test "$gt_cv_func_ngettext_libc" = "yes"; then gt_cv_func_dgettext_libintl=no fi fi fi fi if test "$gt_cv_func_dgettext_libc" = "yes" \ || test "$gt_cv_func_dgettext_libintl" = "yes"; then gt_cv_have_gettext=yes fi if test "$gt_cv_func_dgettext_libintl" = "yes"; then INTLLIBS="-lintl $libintl_extra_libs" fi if test "$gt_cv_have_gettext" = "yes"; then AC_DEFINE(HAVE_GETTEXT,1, [Define if the GNU gettext() function is already present or preinstalled.]) GLIB_PATH_PROG_WITH_TEST(MSGFMT, msgfmt, [test -z "`$ac_dir/$ac_word -h 2>&1 | grep 'dv '`"], no)dnl if test "$MSGFMT" != "no"; then glib_save_LIBS="$LIBS" LIBS="$LIBS $INTLLIBS" AC_CHECK_FUNCS(dcgettext) MSGFMT_OPTS= AC_MSG_CHECKING([if msgfmt accepts -c]) GLIB_RUN_PROG([$MSGFMT -c -o /dev/null],[ msgid "" msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Project-Id-Version: test 1.0\n" "PO-Revision-Date: 2007-02-15 12:01+0100\n" "Last-Translator: test \n" "Language-Team: C \n" "MIME-Version: 1.0\n" "Content-Transfer-Encoding: 8bit\n" ], [MSGFMT_OPTS=-c; AC_MSG_RESULT([yes])], [AC_MSG_RESULT([no])]) AC_SUBST(MSGFMT_OPTS) AC_PATH_PROG(GMSGFMT, gmsgfmt, $MSGFMT) GLIB_PATH_PROG_WITH_TEST(XGETTEXT, xgettext, [test -z "`$ac_dir/$ac_word -h 2>&1 | grep '(HELP)'`"], :) AC_TRY_LINK(, [extern int _nl_msg_cat_cntr; return _nl_msg_cat_cntr], [CATOBJEXT=.gmo DATADIRNAME=share], [case $host in *-*-solaris*) dnl On Solaris, if bind_textdomain_codeset is in libc, dnl GNU format message catalog is always supported, dnl since both are added to the libc all together. dnl Hence, we'd like to go with DATADIRNAME=share and dnl and CATOBJEXT=.gmo in this case. AC_CHECK_FUNC(bind_textdomain_codeset, [CATOBJEXT=.gmo DATADIRNAME=share], [CATOBJEXT=.mo DATADIRNAME=lib]) ;; *) CATOBJEXT=.mo DATADIRNAME=lib ;; esac]) LIBS="$glib_save_LIBS" INSTOBJEXT=.mo else gt_cv_have_gettext=no fi fi ]) if test "$gt_cv_have_gettext" = "yes" ; then AC_DEFINE(ENABLE_NLS, 1, [always defined to indicate that i18n is enabled]) fi dnl Test whether we really found GNU xgettext. if test "$XGETTEXT" != ":"; then dnl If it is not GNU xgettext we define it as : so that the dnl Makefiles still can work. if $XGETTEXT --omit-header /dev/null 2> /dev/null; then : ; else AC_MSG_RESULT( [found xgettext program is not GNU xgettext; ignore it]) XGETTEXT=":" fi fi # We need to process the po/ directory. POSUB=po AC_OUTPUT_COMMANDS( [case "$CONFIG_FILES" in *po/Makefile.in*) sed -e "/POTFILES =/r po/POTFILES" po/Makefile.in > po/Makefile esac]) dnl These rules are solely for the distribution goal. While doing this dnl we only have to keep exactly one list of the available catalogs dnl in configure.in. for lang in $ALL_LINGUAS; do GMOFILES="$GMOFILES $lang.gmo" POFILES="$POFILES $lang.po" done dnl Make all variables we use known to autoconf. AC_SUBST(CATALOGS) AC_SUBST(CATOBJEXT) AC_SUBST(DATADIRNAME) AC_SUBST(GMOFILES) AC_SUBST(INSTOBJEXT) AC_SUBST(INTLLIBS) AC_SUBST(PO_IN_DATADIR_TRUE) AC_SUBST(PO_IN_DATADIR_FALSE) AC_SUBST(POFILES) AC_SUBST(POSUB) ]) # AM_GLIB_GNU_GETTEXT # ------------------- # Do checks necessary for use of gettext. If a suitable implementation # of gettext is found in either in libintl or in the C library, # it will set INTLLIBS to the libraries needed for use of gettext # and AC_DEFINE() HAVE_GETTEXT and ENABLE_NLS. (The shell variable # gt_cv_have_gettext will be set to "yes".) It will also call AC_SUBST() # on various variables needed by the Makefile.in.in installed by # glib-gettextize. dnl glib_DEFUN([GLIB_GNU_GETTEXT], [AC_REQUIRE([AC_PROG_CC])dnl AC_REQUIRE([AC_HEADER_STDC])dnl GLIB_LC_MESSAGES GLIB_WITH_NLS if test "$gt_cv_have_gettext" = "yes"; then if test "x$ALL_LINGUAS" = "x"; then LINGUAS= else AC_MSG_CHECKING(for catalogs to be installed) NEW_LINGUAS= for presentlang in $ALL_LINGUAS; do useit=no if test "%UNSET%" != "${LINGUAS-%UNSET%}"; then desiredlanguages="$LINGUAS" else desiredlanguages="$ALL_LINGUAS" fi for desiredlang in $desiredlanguages; do # Use the presentlang catalog if desiredlang is # a. equal to presentlang, or # b. a variant of presentlang (because in this case, # presentlang can be used as a fallback for messages # which are not translated in the desiredlang catalog). case "$desiredlang" in "$presentlang"*) useit=yes;; esac done if test $useit = yes; then NEW_LINGUAS="$NEW_LINGUAS $presentlang" fi done LINGUAS=$NEW_LINGUAS AC_MSG_RESULT($LINGUAS) fi dnl Construct list of names of catalog files to be constructed. if test -n "$LINGUAS"; then for lang in $LINGUAS; do CATALOGS="$CATALOGS $lang$CATOBJEXT"; done fi fi dnl If the AC_CONFIG_AUX_DIR macro for autoconf is used we possibly dnl find the mkinstalldirs script in another subdir but ($top_srcdir). dnl Try to locate is. MKINSTALLDIRS= if test -n "$ac_aux_dir"; then MKINSTALLDIRS="$ac_aux_dir/mkinstalldirs" fi if test -z "$MKINSTALLDIRS"; then MKINSTALLDIRS="\$(top_srcdir)/mkinstalldirs" fi AC_SUBST(MKINSTALLDIRS) dnl Generate list of files to be processed by xgettext which will dnl be included in po/Makefile. test -d po || mkdir po if test "x$srcdir" != "x."; then if test "x`echo $srcdir | sed 's@/.*@@'`" = "x"; then posrcprefix="$srcdir/" else posrcprefix="../$srcdir/" fi else posrcprefix="../" fi rm -f po/POTFILES sed -e "/^#/d" -e "/^\$/d" -e "s,.*, $posrcprefix& \\\\," -e "\$s/\(.*\) \\\\/\1/" \ < $srcdir/po/POTFILES.in > po/POTFILES ]) # AM_GLIB_DEFINE_LOCALEDIR(VARIABLE) # ------------------------------- # Define VARIABLE to the location where catalog files will # be installed by po/Makefile. glib_DEFUN([GLIB_DEFINE_LOCALEDIR], [glib_REQUIRE([GLIB_GNU_GETTEXT])dnl glib_save_prefix="$prefix" glib_save_exec_prefix="$exec_prefix" glib_save_datarootdir="$datarootdir" test "x$prefix" = xNONE && prefix=$ac_default_prefix test "x$exec_prefix" = xNONE && exec_prefix=$prefix datarootdir=`eval echo "${datarootdir}"` if test "x$CATOBJEXT" = "x.mo" ; then localedir=`eval echo "${libdir}/locale"` else localedir=`eval echo "${datadir}/locale"` fi prefix="$glib_save_prefix" exec_prefix="$glib_save_exec_prefix" datarootdir="$glib_save_datarootdir" AC_DEFINE_UNQUOTED($1, "$localedir", [Define the location where the catalogs will be installed]) ]) dnl dnl Now the definitions that aclocal will find dnl ifdef(glib_configure_in,[],[ AC_DEFUN([AM_GLIB_GNU_GETTEXT],[GLIB_GNU_GETTEXT($@)]) AC_DEFUN([AM_GLIB_DEFINE_LOCALEDIR],[GLIB_DEFINE_LOCALEDIR($@)]) ])dnl # GLIB_RUN_PROG(PROGRAM, TEST-FILE, [ACTION-IF-PASS], [ACTION-IF-FAIL]) # # Create a temporary file with TEST-FILE as its contents and pass the # file name to PROGRAM. Perform ACTION-IF-PASS if PROGRAM exits with # 0 and perform ACTION-IF-FAIL for any other exit status. AC_DEFUN([GLIB_RUN_PROG], [cat >conftest.foo <<_ACEOF $2 _ACEOF if AC_RUN_LOG([$1 conftest.foo]); then m4_ifval([$3], [$3], [:]) m4_ifvaln([$4], [else $4])dnl echo "$as_me: failed input was:" >&AS_MESSAGE_LOG_FD sed 's/^/| /' conftest.foo >&AS_MESSAGE_LOG_FD fi]) dnl IT_PROG_INTLTOOL([MINIMUM-VERSION], [no-xml]) # serial 40 IT_PROG_INTLTOOL AC_DEFUN([IT_PROG_INTLTOOL], [ AC_PREREQ([2.50])dnl AC_REQUIRE([AM_NLS])dnl case "$am__api_version" in 1.[01234]) AC_MSG_ERROR([Automake 1.5 or newer is required to use intltool]) ;; *) ;; esac if test -n "$1"; then AC_MSG_CHECKING([for intltool >= $1]) INTLTOOL_REQUIRED_VERSION_AS_INT=`echo $1 | awk -F. '{ print $ 1 * 1000 + $ 2 * 100 + $ 3; }'` INTLTOOL_APPLIED_VERSION=`intltool-update --version | head -1 | cut -d" " -f3` [INTLTOOL_APPLIED_VERSION_AS_INT=`echo $INTLTOOL_APPLIED_VERSION | awk -F. '{ print $ 1 * 1000 + $ 2 * 100 + $ 3; }'` ] AC_MSG_RESULT([$INTLTOOL_APPLIED_VERSION found]) test "$INTLTOOL_APPLIED_VERSION_AS_INT" -ge "$INTLTOOL_REQUIRED_VERSION_AS_INT" || AC_MSG_ERROR([Your intltool is too old. You need intltool $1 or later.]) fi AC_PATH_PROG(INTLTOOL_UPDATE, [intltool-update]) AC_PATH_PROG(INTLTOOL_MERGE, [intltool-merge]) AC_PATH_PROG(INTLTOOL_EXTRACT, [intltool-extract]) if test -z "$INTLTOOL_UPDATE" -o -z "$INTLTOOL_MERGE" -o -z "$INTLTOOL_EXTRACT"; then AC_MSG_ERROR([The intltool scripts were not found. Please install intltool.]) fi INTLTOOL_DESKTOP_RULE='%.desktop: %.desktop.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' INTLTOOL_DIRECTORY_RULE='%.directory: %.directory.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' INTLTOOL_KEYS_RULE='%.keys: %.keys.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -k -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' INTLTOOL_PROP_RULE='%.prop: %.prop.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' INTLTOOL_OAF_RULE='%.oaf: %.oaf.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -o -p $(top_srcdir)/po $< [$]@' INTLTOOL_PONG_RULE='%.pong: %.pong.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' INTLTOOL_SERVER_RULE='%.server: %.server.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -o -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' INTLTOOL_SHEET_RULE='%.sheet: %.sheet.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' INTLTOOL_SOUNDLIST_RULE='%.soundlist: %.soundlist.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' INTLTOOL_UI_RULE='%.ui: %.ui.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' INTLTOOL_XML_RULE='%.xml: %.xml.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' INTLTOOL_XML_NOMERGE_RULE='%.xml: %.xml.in $(INTLTOOL_MERGE) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u /tmp $< [$]@' INTLTOOL_XAM_RULE='%.xam: %.xml.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' INTLTOOL_KBD_RULE='%.kbd: %.kbd.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -m -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' INTLTOOL_CAVES_RULE='%.caves: %.caves.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' INTLTOOL_SCHEMAS_RULE='%.schemas: %.schemas.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -s -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' INTLTOOL_THEME_RULE='%.theme: %.theme.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' INTLTOOL_SERVICE_RULE='%.service: %.service.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' INTLTOOL_POLICY_RULE='%.policy: %.policy.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' _IT_SUBST(INTLTOOL_DESKTOP_RULE) _IT_SUBST(INTLTOOL_DIRECTORY_RULE) _IT_SUBST(INTLTOOL_KEYS_RULE) _IT_SUBST(INTLTOOL_PROP_RULE) _IT_SUBST(INTLTOOL_OAF_RULE) _IT_SUBST(INTLTOOL_PONG_RULE) _IT_SUBST(INTLTOOL_SERVER_RULE) _IT_SUBST(INTLTOOL_SHEET_RULE) _IT_SUBST(INTLTOOL_SOUNDLIST_RULE) _IT_SUBST(INTLTOOL_UI_RULE) _IT_SUBST(INTLTOOL_XAM_RULE) _IT_SUBST(INTLTOOL_KBD_RULE) _IT_SUBST(INTLTOOL_XML_RULE) _IT_SUBST(INTLTOOL_XML_NOMERGE_RULE) _IT_SUBST(INTLTOOL_CAVES_RULE) _IT_SUBST(INTLTOOL_SCHEMAS_RULE) _IT_SUBST(INTLTOOL_THEME_RULE) _IT_SUBST(INTLTOOL_SERVICE_RULE) _IT_SUBST(INTLTOOL_POLICY_RULE) # Check the gettext tools to make sure they are GNU AC_PATH_PROG(XGETTEXT, xgettext) AC_PATH_PROG(MSGMERGE, msgmerge) AC_PATH_PROG(MSGFMT, msgfmt) AC_PATH_PROG(GMSGFMT, gmsgfmt, $MSGFMT) if test -z "$XGETTEXT" -o -z "$MSGMERGE" -o -z "$MSGFMT"; then AC_MSG_ERROR([GNU gettext tools not found; required for intltool]) fi xgversion="`$XGETTEXT --version|grep '(GNU ' 2> /dev/null`" mmversion="`$MSGMERGE --version|grep '(GNU ' 2> /dev/null`" mfversion="`$MSGFMT --version|grep '(GNU ' 2> /dev/null`" if test -z "$xgversion" -o -z "$mmversion" -o -z "$mfversion"; then AC_MSG_ERROR([GNU gettext tools not found; required for intltool]) fi AC_PATH_PROG(INTLTOOL_PERL, perl) if test -z "$INTLTOOL_PERL"; then AC_MSG_ERROR([perl not found]) fi AC_MSG_CHECKING([for perl >= 5.8.1]) $INTLTOOL_PERL -e "use 5.8.1;" > /dev/null 2>&1 if test $? -ne 0; then AC_MSG_ERROR([perl 5.8.1 is required for intltool]) else IT_PERL_VERSION="`$INTLTOOL_PERL -e \"printf '%vd', $^V\"`" AC_MSG_RESULT([$IT_PERL_VERSION]) fi if test "x$2" != "xno-xml"; then AC_MSG_CHECKING([for XML::Parser]) if `$INTLTOOL_PERL -e "require XML::Parser" 2>/dev/null`; then AC_MSG_RESULT([ok]) else AC_MSG_ERROR([XML::Parser perl module is required for intltool]) fi fi # Substitute ALL_LINGUAS so we can use it in po/Makefile AC_SUBST(ALL_LINGUAS) # Set DATADIRNAME correctly if it is not set yet # (copied from glib-gettext.m4) if test -z "$DATADIRNAME"; then AC_LINK_IFELSE( [AC_LANG_PROGRAM([[]], [[extern int _nl_msg_cat_cntr; return _nl_msg_cat_cntr]])], [DATADIRNAME=share], [case $host in *-*-solaris*) dnl On Solaris, if bind_textdomain_codeset is in libc, dnl GNU format message catalog is always supported, dnl since both are added to the libc all together. dnl Hence, we'd like to go with DATADIRNAME=share dnl in this case. AC_CHECK_FUNC(bind_textdomain_codeset, [DATADIRNAME=share], [DATADIRNAME=lib]) ;; *) [DATADIRNAME=lib] ;; esac]) fi AC_SUBST(DATADIRNAME) IT_PO_SUBDIR([po]) ]) # IT_PO_SUBDIR(DIRNAME) # --------------------- # All po subdirs have to be declared with this macro; the subdir "po" is # declared by IT_PROG_INTLTOOL. # AC_DEFUN([IT_PO_SUBDIR], [AC_PREREQ([2.53])dnl We use ac_top_srcdir inside AC_CONFIG_COMMANDS. dnl dnl The following CONFIG_COMMANDS should be exetuted at the very end dnl of config.status. AC_CONFIG_COMMANDS_PRE([ AC_CONFIG_COMMANDS([$1/stamp-it], [ if [ ! grep "^# INTLTOOL_MAKEFILE$" "$1/Makefile.in" > /dev/null ]; then AC_MSG_ERROR([$1/Makefile.in.in was not created by intltoolize.]) fi rm -f "$1/stamp-it" "$1/stamp-it.tmp" "$1/POTFILES" "$1/Makefile.tmp" >"$1/stamp-it.tmp" [sed '/^#/d s/^[[].*] *// /^[ ]*$/d '"s|^| $ac_top_srcdir/|" \ "$srcdir/$1/POTFILES.in" | sed '$!s/$/ \\/' >"$1/POTFILES" ] [sed '/^POTFILES =/,/[^\\]$/ { /^POTFILES =/!d r $1/POTFILES } ' "$1/Makefile.in" >"$1/Makefile"] rm -f "$1/Makefile.tmp" mv "$1/stamp-it.tmp" "$1/stamp-it" ]) ])dnl ]) # _IT_SUBST(VARIABLE) # ------------------- # Abstract macro to do either _AM_SUBST_NOTMAKE or AC_SUBST # AC_DEFUN([_IT_SUBST], [ AC_SUBST([$1]) m4_ifdef([_AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE([$1])]) ] ) # deprecated macros AU_ALIAS([AC_PROG_INTLTOOL], [IT_PROG_INTLTOOL]) # A hint is needed for aclocal from Automake <= 1.9.4: # AC_DEFUN([AC_PROG_INTLTOOL], ...) # nls.m4 serial 3 (gettext-0.15) dnl Copyright (C) 1995-2003, 2005-2006 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. dnl dnl This file can can be used in projects which are not available under dnl the GNU General Public License or the GNU Library General Public dnl License but which still want to provide support for the GNU gettext dnl functionality. dnl Please note that the actual code of the GNU gettext library is covered dnl by the GNU Library General Public License, and the rest of the GNU dnl gettext package package is covered by the GNU General Public License. dnl They are *not* in the public domain. dnl Authors: dnl Ulrich Drepper , 1995-2000. dnl Bruno Haible , 2000-2003. AC_PREREQ(2.50) AC_DEFUN([AM_NLS], [ AC_MSG_CHECKING([whether NLS is requested]) dnl Default is enabled NLS AC_ARG_ENABLE(nls, [ --disable-nls do not use Native Language Support], USE_NLS=$enableval, USE_NLS=yes) AC_MSG_RESULT($USE_NLS) AC_SUBST(USE_NLS) ]) # pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*- # # 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)?$]) AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility])dnl 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. # # # Similar to PKG_CHECK_MODULES, make sure that the first instance of # this or PKG_CHECK_MODULES is called, or make sure 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_ifval([$2], [$2], [:]) m4_ifvaln([$3], [else $3])dnl fi]) # _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES]) # --------------------------------------------- m4_define([_PKG_CONFIG], [if test -n "$PKG_CONFIG"; then if test -n "$$1"; then pkg_cv_[]$1="$$1" else PKG_CHECK_EXISTS([$3], [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null`], [pkg_failed=yes]) fi 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 _PKG_SHORT_ERRORS_SUPPORTED if test $_pkg_short_errors_supported = yes; then $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "$2"` else $1[]_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "$2"` fi # Put the nasty error message in config.log where it belongs echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD ifelse([$4], , [AC_MSG_ERROR(dnl [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 ])], [AC_MSG_RESULT([no]) $4]) elif test $pkg_failed = untried; then ifelse([$4], , [AC_MSG_FAILURE(dnl [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 .])], [$4]) else $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS $1[]_LIBS=$pkg_cv_[]$1[]_LIBS AC_MSG_RESULT([yes]) ifelse([$3], , :, [$3]) fi[]dnl ])# PKG_CHECK_MODULES # Copyright (C) 2002, 2003, 2005, 2006, 2007, 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. # 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], [], [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])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 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. # 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 # 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 10 # 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'. 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 ;; 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='\' fi AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno]) AC_SUBST([AMDEPBACKSLASH])dnl _AM_SUBST_NOTMAKE([AMDEPBACKSLASH])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"]) ]) # 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 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. # 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 ]) # 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 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. # 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 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_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])]) # Copyright (C) 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. # AM_RUN_LOG(COMMAND) # ------------------- # Run COMMAND, save the exit status in ac_status, and log it. # (This has been adapted from Autoconf's _AC_RUN_LOG macro.) AC_DEFUN([AM_RUN_LOG], [{ echo "$as_me:$LINENO: $1" >&AS_MESSAGE_LOG_FD ($1) >&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD (exit $ac_status); }]) # 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 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. # 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 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_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 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. AM_MISSING_PROG([AMTAR], [tar]) m4_if([$1], [v7], [am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} 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 blubuntu-look-0.3.1/index.theme0000644000000000000000000000335711337133370013347 0ustar [Desktop Entry] Type=X-GNOME-Metatheme Name=Blubuntu Comment=A nice blue theme Comment[bs]=Fina plava tema Comment[ca]=Un agradable tema blau Comment[cs]=Pěkný modrý motiv Comment[de]=Ein nettes blaues Theme Comment[el]=Ένα ωραίο μπλε θέμα Comment[en_CA]=A nice blue theme Comment[en_GB]=A nice blue theme Comment[es]=Un bonito tema azul Comment[fi]=Miellyttävä sininen teema Comment[fr]=Un joli thème bleu Comment[gl]=Un fermoso tema azul Comment[he]=ערכת נושא כחולה נחמדה Comment[hi]=एक अच्छी सी नीली थीम Comment[hu]=Egy csinos kis kék téma Comment[id]=Seubah tema biru yang cantik Comment[is]=Fallega blátt útlit Comment[it]=Un piacevole tema blu Comment[ja]=いい感じの青色テーマ Comment[lt]=Graži mėlyna tema Comment[ml]=ഒരു കിടിലം നീല തീം Comment[mr]=एक छान नीली थीम Comment[nb]=Et pent blått tema Comment[nl]=Een mooi blauw thema Comment[nn]=Eit flott tema i blått. Comment[oc]=Un polit tèma blau Comment[pl]=Ładny niebieski motyw Comment[pt]=Um tema azul agradável Comment[pt_BR]=Um agradável tema azul. Comment[ro]=O temă albastră draguţă Comment[ru]=Изящная голубая тема Comment[sk]=Pekná modrá téma Comment[sr]=Лепа плава тема Comment[sv]=Ett trevligt blått tema Comment[te]=చక్కని నీలపు అలంకారం Comment[th]=ธีมสีฟ้าสวยๆ Comment[tr]=Güzel mavi bir tema Comment[zh_CN]=一个漂亮的蓝色主题 Comment[zh_HK]=漂亮的藍色主題桌面 Encoding=UTF-8 [X-GNOME-Metatheme] GtkTheme=Blubuntu IconTheme=elementary-monochrome MetacityTheme=Blubuntu BackgroundImage=/usr/share/backgrounds/Ubuntu-Blubuntu_1600x1200.png blubuntu-look-0.3.1/gtk-2.0/0000777000000000000000000000000011337133370012272 5ustar blubuntu-look-0.3.1/gtk-2.0/panel_small.png0000644000000000000000000000027111337123212015255 0ustar PNG  IHDR;̗sRGBbKGD pHYs B(xtIME  ;) r9IDATוDZ 0p?\,} ] yHaVM'W"ό/%r\[IENDB`blubuntu-look-0.3.1/gtk-2.0/gtkrc0000644000000000000000000003143211337125316013327 0ustar # Ubuntu Human-Murrine Colorscheme # # Authors: # Kenneth Wimer # Conn O'Griofa # # Feel free to modify and share! gtk_color_scheme = "fg_color:#000010\nbg_color:#f6f6f6\nbase_color:#ffffff\ntext_color:#000000\nselected_bg_color:#8fbfec\nselected_fg_color:#ffffff\ntooltip_bg_color:#f0f4f7\ntooltip_fg_color:#000" gtk-icon-sizes = "panel-menu=24,24:gtk-button=16,16" style "murrine-default" { ######## # Style Properties ######## GtkButton ::child-displacement-x = 1 GtkButton ::child-displacement-y = 1 GtkButton ::default-border = { 0, 0, 0, 0 } GtkCheckButton ::indicator-size = 14 GtkPaned ::handle-size = 6 GtkRange ::trough-border = 2 GtkRange ::slider-width = 14 GtkRange ::stepper-size = 14 GtkScale ::slider-length = 20 GtkScale ::trough-side-details = 1 GtkScrollbar ::min-slider-length = 30 GtkMenuBar ::internal-padding = 0 GtkExpander ::expander-size = 16 GtkToolbar ::internal-padding = 1 GtkTreeView ::expander-size = 14 GtkTreeView ::vertical-separator = 0 GtkMenu ::horizontal-padding = 0 GtkMenu ::vertical-padding = 0 # Glow the tasklist by changing the color, instead of overlaying it with a rectangle #WnckTasklist ::fade-overlay-rect = 0 #GtkWidget      ::link-color         = @fg_color #GtkWidget      ::visited-link-color = shade (0.2, @fg_color) xthickness = 1 ythickness = 1 fg[NORMAL] = @fg_color fg[PRELIGHT] = @fg_color fg[ACTIVE] = @fg_color fg[SELECTED] = @selected_fg_color fg[INSENSITIVE] = shade (0.65, @bg_color) bg[NORMAL] = @bg_color bg[PRELIGHT] = shade (1.02, @bg_color) bg[ACTIVE] = shade (0.88, @bg_color) bg[SELECTED] = @selected_bg_color bg[INSENSITIVE] = @bg_color base[NORMAL] = @base_color base[PRELIGHT] = shade (0.95, @bg_color) base[ACTIVE] = shade (0.65, @bg_color) base[SELECTED] = shade (1.05, @selected_bg_color) base[INSENSITIVE] = @bg_color text[NORMAL] = @text_color text[PRELIGHT] = @text_color text[ACTIVE] = @selected_fg_color text[SELECTED] = @selected_fg_color text[INSENSITIVE] = shade (0.65, @bg_color) engine "murrine" { animation = TRUE # FALSE = disabled, TRUE = enabled colorize_scrollbar = TRUE # FALSE = disabled, TRUE = enabled contrast = 0.9 # 0.8 for less contrast, more than 1.0 for more contrast on borders focus_color = shade (1.5, @selected_bg_color) glazestyle = 0 # 0 = flat, 1 = curved, 2 = concave, 3 = top-curved, 4 = beryl glow_shade = 1.15 # sets glow amount for buttons or widgets glowstyle = 4 # 0 = top, 1 = bottom, 2 = top and bottom, 3 = center (vertical), 4 = center (horizontal) gradient_shades = {1.02,1.01,0.96,0.95} # default: {1.1,1.0,1.0,1.1} highlight_shade = 1.0 # set highlight amount for buttons or widgets lightborder_shade = 0.95 # sets lightborder amount for buttons or widgets lightborderstyle = 1 # 0 = lightborder on top side, 1 = lightborder on all sides listviewheaderstyle = 1 # 0 = flat, 1 = glassy, 2 = raised listviewstyle = 1 # 0 = nothing, 1 = dotted menubaritemstyle = 1 # 0 = menuitem look, 1 = button look menubarstyle = 2 # 0 = flat, 1 = glassy, 2 = gradient, 3 = striped menuitemstyle = 1 # 0 = flat, 1 = glassy, 2 = striped menustyle = 0 # 0 = no vertical menu stripe, 1 = display vertical menu stripe progressbarstyle = 1 # 0 = no stripes, 1 = diagonal stripes, 2 = vertical stripes reliefstyle = 2 # 0 = flat, 1 = inset, 2 = shadow rgba = FALSE # FALSE = disabled, TRUE = enabled roundness = 2 # 0 = squared, 1 = old default, more will increase roundness scrollbarstyle = 0 # 0 = nothing, 1 = circles, 2 = handles, 3 = diagonal stripes, 4 = diagonal stripes and handles, 5 = horizontal stripes, 6 = horizontal stripes and handles #scrollbar_color = shade (0.9, @bg_color) sliderstyle = 0 # 0 = nothing added, 1 = handles stepperstyle = 1 # 0 = standard, 1 = integrated stepper handles, 2 = unknown #profile = NODOKA # engine profile options: CANDIDO, CLEARLOOKS, MIST, MURRINE, NODOKA toolbarstyle = 2 # 0 = flat, 1 = glassy, 2 = gradient } } style "murrine-wide" { xthickness = 2 ythickness = 2 } style "murrine-wider" { xthickness = 3 ythickness = 3 } style "murrine-button" = "murrine-wider" { bg[SELECTED] = shade (1.5, @selected_bg_color) # pre-selected buttons, keep same as focus colour } style "murrine-notebook" { bg[NORMAL] = shade (1.05, @bg_color) bg[ACTIVE] = shade (0.96, @bg_color) engine "murrine" { gradient_shades = {1.1,1.06,0.92,0.85} # { 1.1, 1.02, 0.97, 0.93 } } } style "murrine-tasklist" = "murrine-wide" { } style "murrine-menu" = "murrine-wider" { bg[NORMAL] = shade (1.05, @bg_color) fg[PRELIGHT] = @selected_fg_color } style "murrine-menubar" { fg[PRELIGHT] = @selected_fg_color } style "murrine-menu-item" = "murrine-wider" { bg[PRELIGHT] = shade (1.02, @selected_bg_color) bg[SELECTED] = shade (1.02, @selected_bg_color) engine "murrine" { highlight_shade = 1.03 } } style "murrine-separator-menu-item" { } style "murrine-treeview" { } style "murrine-treeview-header" = "murrine-default" { } style "murrine-frame-title" { } style "murrine-tooltips" = "murrine-wider" { bg[NORMAL] = @tooltip_bg_color fg[NORMAL] = @tooltip_fg_color } style "murrine-progressbar" { xthickness = 0 ythickness = 0 fg[PRELIGHT] = @selected_fg_color engine "murrine" { highlight_shade = 1.05 } } style "murrine-statusbar" { } style "murrine-comboboxentry" { } style "murrine-spinbutton" { } style "murrine-scale" { GtkRange ::slider-width = 13 engine "murrine" { highlight_shade = 1.05 } } style "murrine-hscale" { } style "murrine-vscale" { } style "murrine-scrollbar" { engine "murrine" { highlight_shade = 1.05 } bg[SELECTED] = shade (0.8, @bg_color) } style "murrine-hscrollbar" { } style "murrine-vscrollbar" { } style "murrine-nautilus-location" { bg[NORMAL] = @selected_bg_color } style "metacity-frame" { } style "murrine-radiocheck" { text[NORMAL] = @selected_fg_color text[PRELIGHT] = @selected_fg_color bg[SELECTED] = @selected_bg_color # HACK: override button selection colour } style "murrine-panel" { } ######################################### # Matches ######################################### # Theme default style is applied to every widget class "GtkWidget" style "murrine-default" # Increase the x/ythickness in some widgets class "GtkToolbar" style "murrine-default" class "GtkRange" style "murrine-wide" class "GtkFrame" style "murrine-wide" class "GtkSeparator" style "murrine-wide" class "GtkEntry" style "murrine-wider" class "GtkSpinButton" style "murrine-spinbutton" class "GtkScale" style "murrine-scale" class "GtkVScale" style "murrine-vscale" class "GtkHScale" style "murrine-hscale" class "GtkScrollbar" style "murrine-scrollbar" class "GtkVScrollbar" style "murrine-vscrollbar" class "GtkHScrollbar" style "murrine-hscrollbar" class "GtkRadio*" style:highest "murrine-radiocheck" # HACK: override button selection colour class "GtkCheck*" style:highest "murrine-radiocheck" # HACK: override button selection colour # Use this to customize Metacity colours (causes issues with KDE/gtk-window-decorator) class "MetaFrames" style "metacity-frame" #class "GtkWindow" style "metacity-frame" # General matching following, the order is choosen so that the right styles override each other # eg. progressbar needs to be more important then the menu match. # This is not perfect, it could be done better # (That is modify *every* widget in the notebook, and change those back that # we really don't want changed) widget_class "**" style "murrine-notebook" widget_class "**" style "murrine-notebook" widget_class "**" style "murrine-notebook" widget_class "**" style "murrine-notebook" widget_class "**" style "murrine-notebook" widget_class "*" style "murrine-button" widget_class "*" style "murrine-notebook" widget_class "**" style "murrine-statusbar" widget_class "**" style "murrine-comboboxentry" widget_class "**" style "murrine-comboboxentry" widget_class "**" style "murrine-menubar" widget_class "**" style "murrine-menu" widget_class "**" style "murrine-menu-item" widget_class "**" style "murrine-separator-menu-item" widget_class "*.." style "murrine-frame-title" widget_class "*.*" style "murrine-treeview" widget_class "*" style "murrine-progressbar" widget_class "*" style "murrine-progressbar" # Treeview header widget_class "*.." style "murrine-treeview-header" widget_class "*.." style "murrine-treeview-header" widget_class "*.." style "murrine-treeview-header" widget_class "*.." style "murrine-treeview-header" # Workarounds for Evolution widget_class "*.ETable.ECanvas" style "murrine-treeview-header" widget_class "*.ETree.ECanvas" style "murrine-treeview-header" # The window of the tooltip is called "gtk-tooltip" ################################ # FIXME: # This will not work if one embeds eg. a button into the tooltip. # As far as I can tell right now we will need to rework the theme # quite a bit to get this working correctly. # (It will involve setting different priorities, etc.) ################################ widget "gtk-tooltip*" style "murrine-tooltips" ################################################### # Special cases and work arounds ################################################### # Special case the nautilus-extra-view-widget # ToDo: A more generic approach for all applications that have a widget like this. widget "*.nautilus-extra-view-widget" style : highest "murrine-nautilus-location" # Work around for http://bugzilla.gnome.org/show_bug.cgi?id=382646 # Note that the work around assumes that the combobox is _not_ in # appears-as-list mode. # Similar hack also in the menuitem style. # This style does not affect GtkComboBoxEntry, it does have an effect # on comboboxes in appears-as-list mode though. style "murrine-combobox-text-color-workaround" { text[NORMAL] = @fg_color text[PRELIGHT] = @fg_color text[ACTIVE] = @fg_color text[SELECTED] = @selected_fg_color text[INSENSITIVE] = shade (0.65, @bg_color) } widget_class "*.." style "murrine-combobox-text-color-workaround" style "murrine-menuitem-text-is-fg-color-workaround" { text[NORMAL] = @fg_color text[PRELIGHT] = @selected_fg_color text[ACTIVE] = @fg_color text[SELECTED] = @selected_fg_color text[INSENSITIVE] = shade (0.65, @bg_color) } widget "*.gtk-combobox-popup-menu.*" style "murrine-menuitem-text-is-fg-color-workaround" # Work around the usage of GtkLabel inside GtkListItems to display text. # This breaks because the label is shown on a background that is based on the # base color set. style "murrine-fg-is-text-color-workaround" { fg[NORMAL] = @text_color fg[PRELIGHT] = @text_color fg[ACTIVE] = @selected_fg_color fg[SELECTED] = @selected_fg_color fg[INSENSITIVE] = shade (0.65, @bg_color) } widget_class "**" style "murrine-fg-is-text-color-workaround" # The same problem also exists for GtkCList and GtkCTree # Only match GtkCList and not the parent widgets, because that would also change the headers. widget_class "*" style "murrine-fg-is-text-color-workaround" style "murrine-evo-new-button-workaround" { engine "murrine" { toolbarstyle = 0 } } widget_class "EShellWindow.GtkVBox.BonoboDock.BonoboDockBand.BonoboDockItem*" style "murrine-evo-new-button-workaround" # Theme panel elements widget "*PanelWidget*" style "murrine-panel" widget "*PanelApplet*" style "murrine-panel" widget "*fast-user-switch*" style "murrine-panel" # workaround for Fast User Switch applet class "PanelApp*" style "murrine-panel" class "PanelToplevel*" style "murrine-panel" widget_class "*Mail*" style "murrine-panel" widget_class "*notif*" style "murrine-panel" widget_class "*Notif*" style "murrine-panel" blubuntu-look-0.3.1/gtk-2.0/Makefile.in0000644000000000000000000002624711337133346014351 0ustar # Makefile.in generated by automake 1.11 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008, 2009 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 = : subdir = gtk-2.0 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_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__installdirs = "$(DESTDIR)$(themedir)" DATA = $(theme_DATA) DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ACLOCAL_AMFLAGS = @ACLOCAL_AMFLAGS@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CATALOGS = @CATALOGS@ CATOBJEXT = @CATOBJEXT@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIRNAME = @DATADIRNAME@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GMOFILES = @GMOFILES@ GMSGFMT = @GMSGFMT@ GREP = @GREP@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INSTOBJEXT = @INSTOBJEXT@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ LDFLAGS = @LDFLAGS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ MSGFMT_OPTS = @MSGFMT_OPTS@ MSGMERGE = @MSGMERGE@ 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@ POFILES = @POFILES@ POSUB = @POSUB@ PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ XGETTEXT = @XGETTEXT@ 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_alias = @build_alias@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host_alias = @host_alias@ 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_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ themedir = $(datadir)/themes/Blubuntu/gtk-2.0 theme_DATA = \ gtkrc \ panel_small.png EXTRA_DIST = $(theme_DATA) MAINTAINERCLEANFILES = \ Makefile.in 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) --gnu gtk-2.0/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu gtk-2.0/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-themeDATA: $(theme_DATA) @$(NORMAL_INSTALL) test -z "$(themedir)" || $(MKDIR_P) "$(DESTDIR)$(themedir)" @list='$(theme_DATA)'; test -n "$(themedir)" || 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)$(themedir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(themedir)" || exit $$?; \ done uninstall-themeDATA: @$(NORMAL_UNINSTALL) @list='$(theme_DATA)'; test -n "$(themedir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ test -n "$$files" || exit 0; \ echo " ( cd '$(DESTDIR)$(themedir)' && rm -f" $$files ")"; \ cd "$(DESTDIR)$(themedir)" && rm -f $$files 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)$(themedir)"; 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: $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ `test -z '$(STRIP)' || \ echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install 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." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) 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-themeDATA 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-themeDATA .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-pdf install-pdf-am install-ps install-ps-am \ install-strip install-themeDATA installcheck installcheck-am \ installdirs maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-generic pdf pdf-am ps ps-am uninstall \ uninstall-am uninstall-themeDATA # 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: blubuntu-look-0.3.1/gtk-2.0/Makefile.am0000644000000000000000000000023511337123212014314 0ustar themedir = $(datadir)/themes/Blubuntu/gtk-2.0 theme_DATA = \ gtkrc \ panel_small.png EXTRA_DIST = $(theme_DATA) MAINTAINERCLEANFILES = \ Makefile.in blubuntu-look-0.3.1/COPYING0000644000000000000000000003371511337123212012242 0ustar Creative Commons Attribution-ShareAlike 2.5 License Agreement CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. License THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED. BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS. 1. Definitions 1. "Collective Work" means a work, such as a periodical issue, anthology or encyclopedia, in which the Work in its entirety in unmodified form, along with a number of other contributions, constituting separate and independent works in themselves, are assembled into a collective whole. A work that constitutes a Collective Work will not be considered a Derivative Work (as defined below) for the purposes of this License. 2. "Derivative Work" means a work based upon the Work or upon the Work and other pre-existing works, such as a translation, musical arrangement, dramatization, fictionalization, motion picture version, sound recording, art reproduction, abridgment, condensation, or any other form in which the Work may be recast, transformed, or adapted, except that a work that constitutes a Collective Work will not be considered a Derivative Work for the purpose of this License. For the avoidance of doubt, where the Work is a musical composition or sound recording, the synchronization of the Work in timed-relation with a moving image ("synching") will be considered a Derivative Work for the purpose of this License. 3. "Licensor" means the individual or entity that offers the Work under the terms of this License. 4. "Original Author" means the individual or entity who created the Work. 5. "Work" means the copyrightable work of authorship offered under the terms of this License. 6. "You" means an individual or entity exercising rights under this License who has not previously violated the terms of this License with respect to the Work, or who has received express permission from the Licensor to exercise rights under this License despite a previous violation. 7. "License Elements" means the following high-level license attributes as selected by Licensor and indicated in the title of this License: Attribution, ShareAlike. 2. Fair Use Rights. Nothing in this license is intended to reduce, limit, or restrict any rights arising from fair use, first sale or other limitations on the exclusive rights of the copyright owner under copyright law or other applicable laws. 3. License Grant. Subject to the terms and conditions of this License, Licensor hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise the rights in the Work as stated below: 1. to reproduce the Work, to incorporate the Work into one or more Collective Works, and to reproduce the Work as incorporated in the Collective Works; 2. to create and reproduce Derivative Works; 3. to distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission the Work including as incorporated in Collective Works; 4. to distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission Derivative Works. 5. For the avoidance of doubt, where the work is a musical composition: 1. Performance Royalties Under Blanket Licenses. Licensor waives the exclusive right to collect, whether individually or via a performance rights society (e.g. ASCAP, BMI, SESAC), royalties for the public performance or public digital performance (e.g. webcast) of the Work. 2. Mechanical Rights and Statutory Royalties. Licensor waives the exclusive right to collect, whether individually or via a music rights society or designated agent (e.g. Harry Fox Agency), royalties for any phonorecord You create from the Work ("cover version") and distribute, subject to the compulsory license created by 17 USC Section 115 of the US Copyright Act (or the equivalent in other jurisdictions). 6. Webcasting Rights and Statutory Royalties. For the avoidance of doubt, where the Work is a sound recording, Licensor waives the exclusive right to collect, whether individually or via a performance-rights society (e.g. SoundExchange), royalties for the public digital performance (e.g. webcast) of the Work, subject to the compulsory license created by 17 USC Section 114 of the US Copyright Act (or the equivalent in other jurisdictions). The above rights may be exercised in all media and formats whether now known or hereafter devised. The above rights include the right to make such modifications as are technically necessary to exercise the rights in other media and formats. All rights not expressly granted by Licensor are hereby reserved. 4. Restrictions.The license granted in Section 3 above is expressly made subject to and limited by the following restrictions: 1. You may distribute, publicly display, publicly perform, or publicly digitally perform the Work only under the terms of this License, and You must include a copy of, or the Uniform Resource Identifier for, this License with every copy or phonorecord of the Work You distribute, publicly display, publicly perform, or publicly digitally perform. You may not offer or impose any terms on the Work that alter or restrict the terms of this License or the recipients' exercise of the rights granted hereunder. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties. You may not distribute, publicly display, publicly perform, or publicly digitally perform the Work with any technological measures that control access or use of the Work in a manner inconsistent with the terms of this License Agreement. The above applies to the Work as incorporated in a Collective Work, but this does not require the Collective Work apart from the Work itself to be made subject to the terms of this License. If You create a Collective Work, upon notice from any Licensor You must, to the extent practicable, remove from the Collective Work any credit as required by clause 4(c), as requested. If You create a Derivative Work, upon notice from any Licensor You must, to the extent practicable, remove from the Derivative Work any credit as required by clause 4(c), as requested. 2. You may distribute, publicly display, publicly perform, or publicly digitally perform a Derivative Work only under the terms of this License, a later version of this License with the same License Elements as this License, or a Creative Commons iCommons license that contains the same License Elements as this License (e.g. Attribution-ShareAlike 2.5 Japan). You must include a copy of, or the Uniform Resource Identifier for, this License or other license specified in the previous sentence with every copy or phonorecord of each Derivative Work You distribute, publicly display, publicly perform, or publicly digitally perform. You may not offer or impose any terms on the Derivative Works that alter or restrict the terms of this License or the recipients' exercise of the rights granted hereunder, and You must keep intact all notices that refer to this License and to the disclaimer of warranties. You may not distribute, publicly display, publicly perform, or publicly digitally perform the Derivative Work with any technological measures that control access or use of the Work in a manner inconsistent with the terms of this License Agreement. The above applies to the Derivative Work as incorporated in a Collective Work, but this does not require the Collective Work apart from the Derivative Work itself to be made subject to the terms of this License. 3. If you distribute, publicly display, publicly perform, or publicly digitally perform the Work or any Derivative Works or Collective Works, You must keep intact all copyright notices for the Work and provide, reasonable to the medium or means You are utilizing: (i) the name of the Original Author (or pseudonym, if applicable) if supplied, and/or (ii) if the Original Author and/or Licensor designate another party or parties (e.g. a sponsor institute, publishing entity, journal) for attribution in Licensor's copyright notice, terms of service or by other reasonable means, the name of such party or parties; the title of the Work if supplied; to the extent reasonably practicable, the Uniform Resource Identifier, if any, that Licensor specifies to be associated with the Work, unless such URI does not refer to the copyright notice or licensing information for the Work; and in the case of a Derivative Work, a credit identifying the use of the Work in the Derivative Work (e.g., "French translation of the Work by Original Author," or "Screenplay based on original Work by Original Author"). Such credit may be implemented in any reasonable manner; provided, however, that in the case of a Derivative Work or Collective Work, at a minimum such credit will appear where any other comparable authorship credit appears and in a manner at least as prominent as such other comparable authorship credit. 5. Representations, Warranties and Disclaimer UNLESS OTHERWISE AGREED TO BY THE PARTIES IN WRITING, LICENSOR OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE MATERIALS, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY, FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS, WHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO YOU. 6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. 7. Termination 1. This License and the rights granted hereunder will terminate automatically upon any breach by You of the terms of this License. Individuals or entities who have received Derivative Works or Collective Works from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will survive any termination of this License. 2. Subject to the above terms and conditions, the license granted here is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, Licensor reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above. 8. Miscellaneous 1. Each time You distribute or publicly digitally perform the Work or a Collective Work, the Licensor offers to the recipient a license to the Work on the same terms and conditions as the license granted to You under this License. 2. Each time You distribute or publicly digitally perform a Derivative Work, Licensor offers to the recipient a license to the original Work on the same terms and conditions as the license granted to You under this License. 3. If any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this agreement, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. 4. No term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent. 5. This License constitutes the entire agreement between the parties with respect to the Work licensed here. There are no understandings, agreements or representations with respect to the Work not specified here. Licensor shall not be bound by any additional provisions that may appear in any communication from You. This License may not be modified without the mutual written agreement of the Licensor and You. Creative Commons is not a party to this License, and makes no warranty whatsoever in connection with the Work. Creative Commons will not be liable to You or any party on any legal theory for any damages whatsoever, including without limitation any general, special, incidental or consequential damages arising in connection to this license. Notwithstanding the foregoing two (2) sentences, if Creative Commons has expressly identified itself as the Licensor hereunder, it shall have all rights and obligations of Licensor. Except for the limited purpose of indicating to the public that the Work is licensed under the CCPL, neither party will use the trademark "Creative Commons" or any related trademark or logo of Creative Commons without the prior written consent of Creative Commons. Any permitted use will be in compliance with Creative Commons' then-current trademark usage guidelines, as may be published on its website or otherwise made available upon request from time to time. Creative Commons may be contacted at http://creativecommons.org/. blubuntu-look-0.3.1/autogen.sh0000755000000000000000000000034211337123212013176 0ustar #!/bin/sh intltoolize -c --force || exit 1 aclocal || exit 1 automake --gnu --add-missing || exit 1 autoconf || exit 1 echo configure will be run, if you want to pass arguments, add them to ./autogen.sh ./configure $@ blubuntu-look-0.3.1/Makefile.am0000644000000000000000000000253711337123212013241 0ustar SUBDIRS = gtk-2.0 metacity-1 po props_in_files = \ blubuntu-wallpapers.xml.in theme_in_files = \ index.theme.in wallpaperdir = $(datadir)/backgrounds wallpaper_DATA = \ Ubuntu-Blubuntu_1600x1200.png sessionsplashdir = ${datadir}/pixmaps/splash sessionsplash_DATA = \ ubuntu-blubuntu.png propsdir = $(datadir)/gnome-background-properties props_DATA = \ blubuntu-wallpapers.xml themedir = $(datadir)/themes/Blubuntu theme_DATA = \ index.theme @INTLTOOL_DESKTOP_RULE@ @INTLTOOL_THEME_RULE@ @INTLTOOL_XML_RULE@ EXTRA_DIST = \ $(wallpaper_DATA) \ $(props_in_files) \ $(theme_in_files) \ $(props_DATA) \ $(sessionsplash_DATA) \ $(theme_DATA) \ intltool-update.in \ intltool-merge.in \ intltool-extract.in \ autogen.sh DISTCLEANFILES = \ blubuntu-wallpapers.xml \ index.theme \ intltool-extract \ intltool-merge \ intltool-update MAINTAINERCLEANFILES = \ Makefile.in \ aclocal.m4 \ configure \ install-sh \ intltool-extract.in \ intltool-merge.in \ intltool-update.in \ missing \ mkinstalldirs blubuntu-look-0.3.1/blubuntu-wallpapers.xml.in0000644000000000000000000000054311337123212016337 0ustar <_name>Blubuntu /usr/share/backgrounds/Ubuntu-Blubuntu_1600x1200.png zoom #3966a3 #3966a3 solid blubuntu-look-0.3.1/intltool-update.in0000644000000000000000000000000011337133342014645 0ustar blubuntu-look-0.3.1/po/0000777000000000000000000000000011337133371011627 5ustar blubuntu-look-0.3.1/po/fr.po0000644000000000000000000000176211337123212012571 0ustar # French translation for blubuntu-look # Copyright (c) 2006 Rosetta Contributors and Canonical Ltd 2006 # This file is distributed under the same license as the blubuntu-look package. # FIRST AUTHOR , 2006. # msgid "" msgstr "" "Project-Id-Version: blubuntu-look\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2006-10-31 17:17+0100\n" "PO-Revision-Date: 2006-11-19 16:44+0000\n" "Last-Translator: Pierre Slamich \n" "Language-Team: French \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2010-01-02 18:40+0000\n" "X-Generator: Launchpad (build Unknown)\n" #: ../gdm/GdmGreeterTheme.desktop.in.h:1 ../blubuntu-wallpapers.xml.in.h:1 msgid "Blubuntu" msgstr "Blubuntu" #: ../gdm/GdmGreeterTheme.desktop.in.h:2 msgid "Blubuntu GDM Theme." msgstr "Thème GDM Blubuntu" #: ../index.theme.in.h:1 msgid "A nice blue theme" msgstr "Un joli thème bleu" blubuntu-look-0.3.1/po/Makefile.in.in0000644000000000000000000001537711337133342014310 0ustar # Makefile for program source directory in GNU NLS utilities package. # Copyright (C) 1995, 1996, 1997 by Ulrich Drepper # Copyright (C) 2004-2008 Rodney Dawes # # This file may be copied and used freely without restrictions. It may # be used in projects which are not available under a GNU Public License, # but which still want to provide support for the GNU gettext functionality. # # - Modified by Owen Taylor to use GETTEXT_PACKAGE # instead of PACKAGE and to look for po2tbl in ./ not in intl/ # # - Modified by jacob berkman to install # Makefile.in.in and po2tbl.sed.in for use with glib-gettextize # # - Modified by Rodney Dawes for use with intltool # # We have the following line for use by intltoolize: # INTLTOOL_MAKEFILE GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ PACKAGE = @PACKAGE@ VERSION = @VERSION@ SHELL = @SHELL@ srcdir = @srcdir@ top_srcdir = @top_srcdir@ top_builddir = @top_builddir@ VPATH = @srcdir@ prefix = @prefix@ exec_prefix = @exec_prefix@ datadir = @datadir@ datarootdir = @datarootdir@ libdir = @libdir@ DATADIRNAME = @DATADIRNAME@ itlocaledir = $(prefix)/$(DATADIRNAME)/locale subdir = po install_sh = @install_sh@ # Automake >= 1.8 provides @mkdir_p@. # Until it can be supposed, use the safe fallback: mkdir_p = $(install_sh) -d INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ GMSGFMT = @GMSGFMT@ MSGFMT = @MSGFMT@ XGETTEXT = @XGETTEXT@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ MSGMERGE = INTLTOOL_EXTRACT=$(INTLTOOL_EXTRACT) srcdir=$(srcdir) $(INTLTOOL_UPDATE) --gettext-package $(GETTEXT_PACKAGE) --dist GENPOT = INTLTOOL_EXTRACT=$(INTLTOOL_EXTRACT) srcdir=$(srcdir) $(INTLTOOL_UPDATE) --gettext-package $(GETTEXT_PACKAGE) --pot ALL_LINGUAS = @ALL_LINGUAS@ PO_LINGUAS=$(shell if test -r $(srcdir)/LINGUAS; then grep -v "^\#" $(srcdir)/LINGUAS; else echo "$(ALL_LINGUAS)"; fi) USER_LINGUAS=$(shell if test -n "$(LINGUAS)"; then LLINGUAS="$(LINGUAS)"; ALINGUAS="$(ALL_LINGUAS)"; for lang in $$LLINGUAS; do if test -n "`grep \^$$lang$$ $(srcdir)/LINGUAS 2>/dev/null`" -o -n "`echo $$ALINGUAS|tr ' ' '\n'|grep \^$$lang$$`"; then printf "$$lang "; fi; done; fi) USE_LINGUAS=$(shell if test -n "$(USER_LINGUAS)" -o -n "$(LINGUAS)"; then LLINGUAS="$(USER_LINGUAS)"; else if test -n "$(PO_LINGUAS)"; then LLINGUAS="$(PO_LINGUAS)"; else LLINGUAS="$(ALL_LINGUAS)"; fi; fi; for lang in $$LLINGUAS; do printf "$$lang "; done) POFILES=$(shell LINGUAS="$(PO_LINGUAS)"; for lang in $$LINGUAS; do printf "$$lang.po "; done) DISTFILES = Makefile.in.in POTFILES.in $(POFILES) EXTRA_DISTFILES = ChangeLog POTFILES.skip Makevars LINGUAS POTFILES = \ # This comment gets stripped out CATALOGS=$(shell LINGUAS="$(USE_LINGUAS)"; for lang in $$LINGUAS; do printf "$$lang.gmo "; done) .SUFFIXES: .SUFFIXES: .po .pox .gmo .mo .msg .cat .po.pox: $(MAKE) $(GETTEXT_PACKAGE).pot $(MSGMERGE) $< $(GETTEXT_PACKAGE).pot -o $*.pox .po.mo: $(MSGFMT) -o $@ $< .po.gmo: file=`echo $* | sed 's,.*/,,'`.gmo \ && rm -f $$file && $(GMSGFMT) -o $$file $< .po.cat: sed -f ../intl/po2msg.sed < $< > $*.msg \ && rm -f $@ && gencat $@ $*.msg all: all-@USE_NLS@ all-yes: $(CATALOGS) all-no: $(GETTEXT_PACKAGE).pot: $(POTFILES) $(GENPOT) install: install-data install-data: install-data-@USE_NLS@ install-data-no: all install-data-yes: all linguas="$(USE_LINGUAS)"; \ for lang in $$linguas; do \ dir=$(DESTDIR)$(itlocaledir)/$$lang/LC_MESSAGES; \ $(mkdir_p) $$dir; \ if test -r $$lang.gmo; then \ $(INSTALL_DATA) $$lang.gmo $$dir/$(GETTEXT_PACKAGE).mo; \ echo "installing $$lang.gmo as $$dir/$(GETTEXT_PACKAGE).mo"; \ else \ $(INSTALL_DATA) $(srcdir)/$$lang.gmo $$dir/$(GETTEXT_PACKAGE).mo; \ echo "installing $(srcdir)/$$lang.gmo as" \ "$$dir/$(GETTEXT_PACKAGE).mo"; \ fi; \ if test -r $$lang.gmo.m; then \ $(INSTALL_DATA) $$lang.gmo.m $$dir/$(GETTEXT_PACKAGE).mo.m; \ echo "installing $$lang.gmo.m as $$dir/$(GETTEXT_PACKAGE).mo.m"; \ else \ if test -r $(srcdir)/$$lang.gmo.m ; then \ $(INSTALL_DATA) $(srcdir)/$$lang.gmo.m \ $$dir/$(GETTEXT_PACKAGE).mo.m; \ echo "installing $(srcdir)/$$lang.gmo.m as" \ "$$dir/$(GETTEXT_PACKAGE).mo.m"; \ else \ true; \ fi; \ fi; \ done # Empty stubs to satisfy archaic automake needs dvi info ctags tags CTAGS TAGS ID: # Define this as empty until I found a useful application. install-exec installcheck: uninstall: linguas="$(USE_LINGUAS)"; \ for lang in $$linguas; do \ rm -f $(DESTDIR)$(itlocaledir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE).mo; \ rm -f $(DESTDIR)$(itlocaledir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE).mo.m; \ done check: all $(GETTEXT_PACKAGE).pot rm -f missing notexist srcdir=$(srcdir) $(INTLTOOL_UPDATE) -m if [ -r missing -o -r notexist ]; then \ exit 1; \ fi mostlyclean: rm -f *.pox $(GETTEXT_PACKAGE).pot *.old.po cat-id-tbl.tmp rm -f .intltool-merge-cache clean: mostlyclean distclean: clean rm -f Makefile Makefile.in POTFILES stamp-it rm -f *.mo *.msg *.cat *.cat.m *.gmo maintainer-clean: distclean @echo "This command is intended for maintainers to use;" @echo "it deletes files that may require special tools to rebuild." rm -f Makefile.in.in distdir = ../$(PACKAGE)-$(VERSION)/$(subdir) dist distdir: $(DISTFILES) dists="$(DISTFILES)"; \ extra_dists="$(EXTRA_DISTFILES)"; \ for file in $$extra_dists; do \ test -f $(srcdir)/$$file && dists="$$dists $(srcdir)/$$file"; \ done; \ for file in $$dists; do \ test -f $$file || file="$(srcdir)/$$file"; \ ln $$file $(distdir) 2> /dev/null \ || cp -p $$file $(distdir); \ done update-po: Makefile $(MAKE) $(GETTEXT_PACKAGE).pot tmpdir=`pwd`; \ linguas="$(USE_LINGUAS)"; \ for lang in $$linguas; do \ echo "$$lang:"; \ result="`$(MSGMERGE) -o $$tmpdir/$$lang.new.po $$lang`"; \ if $$result; then \ if cmp $(srcdir)/$$lang.po $$tmpdir/$$lang.new.po >/dev/null 2>&1; then \ rm -f $$tmpdir/$$lang.new.po; \ else \ if mv -f $$tmpdir/$$lang.new.po $$lang.po; then \ :; \ else \ echo "msgmerge for $$lang.po failed: cannot move $$tmpdir/$$lang.new.po to $$lang.po" 1>&2; \ rm -f $$tmpdir/$$lang.new.po; \ exit 1; \ fi; \ fi; \ else \ echo "msgmerge for $$lang.gmo failed!"; \ rm -f $$tmpdir/$$lang.new.po; \ fi; \ done Makefile POTFILES: stamp-it @if test ! -f $@; then \ rm -f stamp-it; \ $(MAKE) stamp-it; \ fi stamp-it: Makefile.in.in $(top_builddir)/config.status POTFILES.in cd $(top_builddir) \ && CONFIG_FILES=$(subdir)/Makefile.in CONFIG_HEADERS= CONFIG_LINKS= \ $(SHELL) ./config.status # Tell versions [3.59,3.63) of GNU make not to export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: blubuntu-look-0.3.1/po/POTFILES.in0000644000000000000000000000005211337123212013366 0ustar blubuntu-wallpapers.xml.in index.theme.in blubuntu-look-0.3.1/po/pt_BR.po0000644000000000000000000000206411337123212013164 0ustar # Portuguese (Brazil) translation for blubuntu-look # Copyright (c) 2006 Rosetta Contributors and Canonical Ltd 2006 # This file is distributed under the same license as the blubuntu-look package. # FIRST AUTHOR , 2006. # msgid "" msgstr "" "Project-Id-Version: blubuntu-look\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2006-10-31 17:17+0100\n" "PO-Revision-Date: 2006-11-06 20:33+0000\n" "Last-Translator: Fabio Gomes Ramos \n" "Language-Team: Portuguese (Brazil) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2010-01-02 18:40+0000\n" "X-Generator: Launchpad (build Unknown)\n" #: ../gdm/GdmGreeterTheme.desktop.in.h:1 ../blubuntu-wallpapers.xml.in.h:1 msgid "Blubuntu" msgstr "Blubuntu" #: ../gdm/GdmGreeterTheme.desktop.in.h:2 msgid "Blubuntu GDM Theme." msgstr "Tema da janela de início de sessão (GDM) Blubuntu" #: ../index.theme.in.h:1 msgid "A nice blue theme" msgstr "Um agradável tema azul." blubuntu-look-0.3.1/po/ChangeLog0000644000000000000000000000000011337123212013354 0ustar blubuntu-look-0.3.1/po/es.po0000644000000000000000000000175511337123212012573 0ustar # Spanish translation for blubuntu-look # Copyright (c) 2006 Rosetta Contributors and Canonical Ltd 2006 # This file is distributed under the same license as the blubuntu-look package. # FIRST AUTHOR , 2006. # msgid "" msgstr "" "Project-Id-Version: blubuntu-look\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2006-10-31 17:17+0100\n" "PO-Revision-Date: 2007-01-30 20:29+0000\n" "Last-Translator: quique1hn \n" "Language-Team: Spanish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2010-01-02 18:40+0000\n" "X-Generator: Launchpad (build Unknown)\n" #: ../gdm/GdmGreeterTheme.desktop.in.h:1 ../blubuntu-wallpapers.xml.in.h:1 msgid "Blubuntu" msgstr "Blubuntu" #: ../gdm/GdmGreeterTheme.desktop.in.h:2 msgid "Blubuntu GDM Theme." msgstr "Tema Blubuntu para GDM" #: ../index.theme.in.h:1 msgid "A nice blue theme" msgstr "Un bonito tema azul" blubuntu-look-0.3.1/intltool-extract.in0000644000000000000000000000000011337133342015035 0ustar blubuntu-look-0.3.1/AUTHORS0000644000000000000000000000017311337123212012247 0ustar Build System: Daniel Holbach Theme and Artwork: Jonathan Austin blubuntu-look-0.3.1/metacity-1/0000777000000000000000000000000011337133371013166 5ustar blubuntu-look-0.3.1/metacity-1/icon_close_u.png0000644000000000000000000000023711337123212016324 0ustar PNG  IHDR 2ϽbKGDivCTIDATW +O9 "ۜ]DO ֹpe?.;X#¡F5%mn3p #IENDB`blubuntu-look-0.3.1/metacity-1/icon_restore_u.png0000644000000000000000000000023711337123212016702 0ustar PNG  IHDR 2ϽbKGDivCTIDATWcg 0IAd`bb gΜۂbǏነ Ad7+DQxm\B1}p7@DPG_IENDB`blubuntu-look-0.3.1/metacity-1/menu_over.png0000644000000000000000000000061411337123212015661 0ustar PNG  IHDR 2ϽsBIT|d pHYs B(xtEXtSoftwarewww.inkscape.org< IDAT1K@FդC6- v)_th;Sp L6pf(N>x[OXkBtK/nZM4Z,+Rmۋ8CH1@Wk=^.Wk`c{ީ1fv, - yM&sAPg(at?o~5hE xn\/t:uB]h>J)+(0 c̬e$IeE bluebuntu Daniel Borgmann <daniel.borgmann@gmail.com> Billy Cantrell, bvcmdk@yahoo.com  2005 Daniel Borgmann April, 2006 Ubuntu Human Round, based on Clearlooks <title color="shade/gtk:bg[SELECTED]/0.45" x="(3 `max` (width-title_width)) / 2 + 2" y="(((height - title_height) / 2) `max` 0) + 2"/> <title color="shade/gtk:bg[SELECTED]/0.24" x="(3 `max` (width-title_width)) / 2 + 1" y="(((height - title_height) / 2) `max` 0) + 1"/> <title color="#ffffff" x="(3 `max` (width-title_width)) / 2" y="(((height - title_height) / 2) `max` 0)"/> </draw_ops> <draw_ops name="title_text_unfocused"> <title color="blend/gtk:fg[NORMAL]/gtk:bg[NORMAL]/1.2" x="(3 `max` (width-title_width)) / 2" y="((height - title_height) / 2) `max` 0"/> </draw_ops> <draw_ops name="title"> <include name="title_text"/> </draw_ops> <draw_ops name="title_unfocused"> <include name="title_text_unfocused"/> </draw_ops> <!-- ::: BUTTONS ::: --> <draw_ops name="button_outline"> <tint color="#000000" alpha="0.45" x="2" y="3" width="width-4" height="1"/> <tint color="#000000" alpha="0.45" x="2" y="height-4" width="width-4" height="1"/> <tint color="#000000" alpha="0.45" x="1" y="4" width="1" height="height-8"/> <tint color="#000000" alpha="0.45" x="width-2" y="4" width="1" height="height-8"/> <tint color="#cccccc" alpha="0.4" x="2" y="4" width="width-4" height="1"/> <tint color="#cccccc" alpha="0.4" x="2" y="height-5" width="width-4" height="1"/> <tint color="#cccccc" alpha="0.4" x="2" y="5" width="1" height="height-10"/> <tint color="#cccccc" alpha="0.4" x="width-3" y="5" width="1" height="height-10"/> <tint color="#000000" alpha="0.2" x="2" y="4" width="1" height="1"/> <tint color="#000000" alpha="0.2" x="2" y="height-5" width="1" height="1"/> <tint color="#000000" alpha="0.2" x="width-3" y="4" width="1" height="1"/> <tint color="#000000" alpha="0.2" x="width-3" y="height-5" width="1" height="1"/> </draw_ops> <draw_ops name="button_bg"> <gradient type="vertical" x="2" y="4" width="width - 4" height="height / 2 - 4"> <color value="shade/gtk:bg[SELECTED]/0.86"/> <color value="shade/gtk:bg[SELECTED]/0.60"/> </gradient> <gradient type="vertical" x="2" y="height / 2" width="width - 4" height="height / 2 - 3"> <color value="shade/gtk:bg[SELECTED]/0.57"/> <color value="shade/gtk:bg[SELECTED]/0.60"/> </gradient> <include name="button_outline"/> </draw_ops> <draw_ops name="button_bg_prelight"> <gradient type="vertical" x="2" y="4" width="width - 4" height="height / 2 - 4"> <color value="shade/gtk:bg[SELECTED]/0.93"/> <color value="shade/gtk:bg[SELECTED]/0.67"/> </gradient> <gradient type="vertical" x="2" y="height / 2" width="width - 4" height="height / 2 - 3"> <color value="shade/gtk:bg[SELECTED]/0.60"/> <color value="shade/gtk:bg[SELECTED]/0.67"/> </gradient> <include name="button_outline"/> </draw_ops> <draw_ops name="button_bg_pressed"> <gradient type="vertical" x="2" y="4" width="width - 4" height="height / 2 - 4"> <color value="shade/gtk:bg[SELECTED]/0.73"/> <color value="shade/gtk:bg[SELECTED]/0.48"/> </gradient> <gradient type="vertical" x="2" y="height / 2" width="width - 4" height="height / 2 - 3"> <color value="shade/gtk:bg[SELECTED]/0.49"/> <color value="shade/gtk:bg[SELECTED]/0.48"/> </gradient> <include name="button_outline"/> </draw_ops> <draw_ops name="button_bg_unfocused"> <gradient type="vertical" x="2" y="4" width="width - 4" height="height / 2 - 4"> <color value="shade/gtk:bg[NORMAL]/1.1"/> <color value="shade/gtk:bg[NORMAL]/1.0"/> </gradient> <gradient type="vertical" x="2" y="height / 2" width="width - 4" height="height / 2 - 3"> <color value="shade/gtk:bg[NORMAL]/0.98"/> <color value="shade/gtk:bg[NORMAL]/1.0"/> </gradient> <include name="button_outline"/> </draw_ops> <draw_ops name="button_bg_unfocused_prelight"> <gradient type="vertical" x="2" y="4" width="width - 4" height="height / 2 - 4"> <color value="shade/gtk:bg[NORMAL]/1.3"/> <color value="shade/gtk:bg[NORMAL]/1.1"/> </gradient> <gradient type="vertical" x="2" y="height / 2" width="width - 4" height="height / 2 - 3"> <color value="shade/gtk:bg[NORMAL]/1.05"/> <color value="shade/gtk:bg[NORMAL]/1.1"/> </gradient> <include name="button_outline"/> </draw_ops> <draw_ops name="button_bg_unfocused_pressed"> <gradient type="vertical" x="2" y="4" width="width - 4" height="height / 2 - 4"> <color value="shade/gtk:bg[NORMAL]/0.76"/> <color value="shade/gtk:bg[NORMAL]/0.75"/> </gradient> <gradient type="vertical" x="2" y="height / 2" width="width - 4" height="height / 2 - 3"> <color value="shade/gtk:bg[NORMAL]/0.73"/> <color value="shade/gtk:bg[NORMAL]/0.75"/> </gradient> <include name="button_outline"/> </draw_ops> <draw_ops name="menu_button_normal"> <image filename="menu.png" x="(width-10)/2" y="(height-10)/2" width="10" height="10"/> </draw_ops> <draw_ops name="menu_button_pressed"> <image filename="menu_over.png" x="(width-10)/2" y="(height-10)/2" width="10" height="10"/> </draw_ops> <draw_ops name="menu_button_unfocused"> <image filename="menu.png" x="(width-10)/2" y="(height-10)/2" width="10" height="10" colorize="blend/gtk:fg[NORMAL]/gtk:bg[NORMAL]/1.2"/> </draw_ops> <!-- ::: ICONS ::: --> <draw_ops name="close_button_icon"> <image filename="icon_close.png" x="(width-10)/2" y="(height-10)/2" width="10" height="10"/> </draw_ops> <draw_ops name="close_button_icon_unfocused"> <image filename="icon_close_u.png" x="(width-10)/2" y="(height-10)/2" width="10" height="10" colorize="blend/gtk:fg[NORMAL]/gtk:bg[NORMAL]/1.2"/> </draw_ops> <draw_ops name="close_button_normal"> <include name="button_bg"/> <include name="close_button_icon"/> </draw_ops> <draw_ops name="close_button_prelight"> <include name="button_bg_prelight"/> <include name="close_button_icon"/> </draw_ops> <draw_ops name="close_button_pressed"> <include name="button_bg_pressed"/> <include name="close_button_icon"/> </draw_ops> <draw_ops name="close_button_unfocused"> <include name="button_bg_unfocused"/> <include name="close_button_icon_unfocused"/> </draw_ops> <draw_ops name="close_button_unfocused_prelight"> <include name="button_bg_unfocused_prelight"/> <include name="close_button_icon_unfocused"/> </draw_ops> <draw_ops name="close_button_unfocused_pressed"> <include name="button_bg_unfocused_pressed"/> <include name="close_button_icon_unfocused"/> </draw_ops> <draw_ops name="maximize_button_icon"> <image filename="icon_maximize.png" x="(width-10)/2" y="(height-10)/2" width="10" height="10"/> </draw_ops> <draw_ops name="maximize_button_icon_unfocused"> <image filename="icon_maximize_u.png" x="(width-10)/2" y="(height-10)/2" width="10" height="10" colorize="blend/gtk:fg[NORMAL]/gtk:bg[NORMAL]/1.2"/> </draw_ops> <draw_ops name="maximize_button_normal"> <include name="button_bg"/> <include name="maximize_button_icon"/> </draw_ops> <draw_ops name="maximize_button_prelight"> <include name="button_bg_prelight"/> <include name="maximize_button_icon"/> </draw_ops> <draw_ops name="maximize_button_pressed"> <include name="button_bg_pressed"/> <include name="maximize_button_icon"/> </draw_ops> <draw_ops name="maximize_button_unfocused"> <include name="button_bg_unfocused"/> <include name="maximize_button_icon_unfocused"/> </draw_ops> <draw_ops name="maximize_button_unfocused_prelight"> <include name="button_bg_unfocused_prelight"/> <include name="maximize_button_icon_unfocused"/> </draw_ops> <draw_ops name="maximize_button_unfocused_pressed"> <include name="button_bg_unfocused_pressed"/> <include name="maximize_button_icon_unfocused"/> </draw_ops> <draw_ops name="restore_button_icon"> <image filename="icon_restore.png" x="(width-10)/2" y="(height-10)/2" width="10" height="10"/> </draw_ops> <draw_ops name="restore_button_icon_unfocused"> <image filename="icon_restore_u.png" x="(width-10)/2" y="(height-10)/2" width="10" height="10" colorize="blend/gtk:fg[NORMAL]/gtk:bg[NORMAL]/1.2"/> </draw_ops> <draw_ops name="restore_button_normal"> <include name="button_bg"/> <include name="restore_button_icon"/> </draw_ops> <draw_ops name="restore_button_prelight"> <include name="button_bg_prelight"/> <include name="restore_button_icon"/> </draw_ops> <draw_ops name="restore_button_pressed"> <include name="button_bg_pressed"/> <include name="restore_button_icon"/> </draw_ops> <draw_ops name="restore_button_unfocused"> <include name="button_bg_unfocused"/> <include name="restore_button_icon_unfocused"/> </draw_ops> <draw_ops name="restore_button_unfocused_prelight"> <include name="button_bg_unfocused_prelight"/> <include name="restore_button_icon_unfocused"/> </draw_ops> <draw_ops name="restore_button_unfocused_pressed"> <include name="button_bg_unfocused_pressed"/> <include name="restore_button_icon_unfocused"/> </draw_ops> <draw_ops name="minimize_button_icon"> <image filename="icon_minimize.png" x="(width-10)/2" y="(height-10)/2" width="10" height="10"/> </draw_ops> <draw_ops name="minimize_button_icon_unfocused"> <image filename="icon_minimize_u.png" x="(width-10)/2" y="(height-10)/2" width="10" height="10" colorize="blend/gtk:fg[NORMAL]/gtk:bg[NORMAL]/1.2"/></draw_ops> <draw_ops name="minimize_button_normal"> <include name="button_bg"/> <include name="minimize_button_icon"/> </draw_ops> <draw_ops name="minimize_button_prelight"> <include name="button_bg_prelight"/> <include name="minimize_button_icon"/> </draw_ops> <draw_ops name="minimize_button_pressed"> <include name="button_bg_pressed"/> <include name="minimize_button_icon"/> </draw_ops> <draw_ops name="minimize_button_unfocused"> <include name="button_bg_unfocused"/> <include name="minimize_button_icon_unfocused"/> </draw_ops> <draw_ops name="minimize_button_unfocused_prelight"> <include name="button_bg_unfocused_prelight"/> <include name="minimize_button_icon_unfocused"/> </draw_ops> <draw_ops name="minimize_button_unfocused_pressed"> <include name="button_bg_unfocused_pressed"/> <include name="minimize_button_icon_unfocused"/> </draw_ops> <draw_ops name="blank"> <!-- nothing --> </draw_ops> <frame_style name="normal" geometry="normal"> <piece position="entire_background" draw_ops="round_bevel_unfocused"/> <piece position="title" draw_ops="title_unfocused"/> <button function="close" state="normal" draw_ops="close_button_unfocused"/> <button function="close" state="pressed" draw_ops="close_button_unfocused_pressed"/> <button function="close" state="prelight" draw_ops="close_button_unfocused_prelight"/> <button function="maximize" state="normal" draw_ops="maximize_button_unfocused"/> <button function="maximize" state="pressed" draw_ops="maximize_button_unfocused_pressed"/> <button function="maximize" state="prelight" draw_ops="maximize_button_unfocused_prelight"/> <button function="minimize" state="normal" draw_ops="minimize_button_unfocused"/> <button function="minimize" state="pressed" draw_ops="minimize_button_unfocused_pressed"/> <button function="minimize" state="prelight" draw_ops="minimize_button_unfocused_prelight"/> <button function="menu" state="normal" draw_ops="menu_button_normal"/> <button function="menu" state="pressed" draw_ops="menu_button_pressed"/> <button function="menu" state="prelight" draw_ops="menu_button_pressed"/> </frame_style> <frame_style name="normal_shaded" geometry="shaded" parent="normal"> <piece position="entire_background" draw_ops="round_bevel_unfocused_shaded"/> </frame_style> <frame_style name="focused" geometry="normal" parent="normal"> <piece position="entire_background" draw_ops="round_bevel"/> <piece position="title" draw_ops="title"/> <button function="close" state="normal" draw_ops="close_button_normal"/> <button function="close" state="pressed" draw_ops="close_button_pressed"/> <button function="close" state="prelight" draw_ops="close_button_prelight"/> <button function="maximize" state="normal" draw_ops="maximize_button_normal"/> <button function="maximize" state="pressed" draw_ops="maximize_button_pressed"/> <button function="maximize" state="prelight" draw_ops="maximize_button_prelight"/> <button function="minimize" state="normal" draw_ops="minimize_button_normal"/> <button function="minimize" state="pressed" draw_ops="minimize_button_pressed"/> <button function="minimize" state="prelight" draw_ops="minimize_button_prelight"/> </frame_style> <frame_style name="focused_shaded" geometry="shaded" parent="focused"> <piece position="entire_background" draw_ops="round_bevel_shaded"/> </frame_style> <frame_style name="normal_maximized" geometry="normal_maximized" parent="normal"> <piece position="entire_background" draw_ops="bevel_maximized_unfocused"/> <button function="maximize" state="normal" draw_ops="restore_button_unfocused"/> <button function="maximize" state="pressed" draw_ops="restore_button_unfocused_pressed"/> <button function="maximize" state="prelight" draw_ops="restore_button_unfocused_prelight"/> </frame_style> <frame_style name="normal_maximized_shaded" geometry="normal_maximized" parent="normal_maximized"> <piece position="entire_background" draw_ops="bevel_maximized_unfocused_shaded"/> </frame_style> <frame_style name="focused_maximized" geometry="normal_maximized" parent="focused"> <piece position="entire_background" draw_ops="bevel_maximized"/> <button function="maximize" state="normal" draw_ops="restore_button_normal"/> <button function="maximize" state="pressed" draw_ops="restore_button_pressed"/> <button function="maximize" state="prelight" draw_ops="restore_button_prelight"/> </frame_style> <frame_style name="focused_maximized_shaded" geometry="normal_maximized" parent="focused_maximized"> <piece position="entire_background" draw_ops="bevel_maximized_shaded"/> </frame_style> <frame_style name="border" geometry="border" parent="normal"> <piece position="entire_background" draw_ops="border"/> <piece position="title" draw_ops="blank"/> </frame_style> <frame_style name="utility_normal" geometry="utility" parent="normal"> <piece position="entire_background" draw_ops="bevel_unfocused"/> </frame_style> <frame_style name="utility_focused" geometry="utility" parent="focused"> <piece position="entire_background" draw_ops="bevel"/> </frame_style> <frame_style name="utility_focused_shaded" geometry="utility" parent="focused_shaded"> <piece position="entire_background" draw_ops="bevel_shaded"/> </frame_style> <frame_style_set name="normal"> <frame focus="yes" state="normal" resize="both" style="focused"/> <frame focus="no" state="normal" resize="both" style="normal"/> <frame focus="yes" state="maximized" style="focused_maximized"/> <frame focus="no" state="maximized" style="normal_maximized"/> <frame focus="yes" state="shaded" style="focused_shaded"/> <frame focus="no" state="shaded" style="normal_shaded"/> <frame focus="yes" state="maximized_and_shaded" style="focused_maximized_shaded"/> <frame focus="no" state="maximized_and_shaded" style="normal_maximized_shaded"/> </frame_style_set> <frame_style_set name="utility" parent="normal"> <frame focus="yes" state="normal" resize="both" style="utility_focused"/> <frame focus="no" state="normal" resize="both" style="utility_normal"/> <!-- this is a bunch of crack since utility windows shouldn't be maximized --> <frame focus="yes" state="maximized" style="focused"/> <frame focus="no" state="maximized" style="normal"/> <frame focus="yes" state="shaded" style="utility_focused_shaded"/> <frame focus="no" state="shaded" style="utility_normal"/> <frame focus="yes" state="maximized_and_shaded" style="focused_shaded"/> <frame focus="no" state="maximized_and_shaded" style="normal"/> </frame_style_set> <frame_style_set name="border"> <frame focus="yes" state="normal" resize="both" style="border"/> <frame focus="no" state="normal" resize="both" style="border"/> <frame focus="yes" state="maximized" style="border"/> <frame focus="no" state="maximized" style="border"/> <frame focus="yes" state="shaded" style="border"/> <frame focus="no" state="shaded" style="border"/> <frame focus="yes" state="maximized_and_shaded" style="border"/> <frame focus="no" state="maximized_and_shaded" style="border"/> </frame_style_set> <window type="normal" style_set="normal"/> <window type="dialog" style_set="normal"/> <window type="modal_dialog" style_set="normal"/> <window type="menu" style_set="normal"/> <window type="utility" style_set="utility"/> <window type="border" style_set="border"/> <menu_icon function="close" state="normal" draw_ops="close_button_icon_unfocused"/> <menu_icon function="maximize" state="normal" draw_ops="maximize_button_icon_unfocused"/> <menu_icon function="unmaximize" state="normal" draw_ops="restore_button_icon_unfocused"/> <menu_icon function="minimize" state="normal" draw_ops="minimize_button_icon_unfocused"/> </metacity_theme> �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������blubuntu-look-0.3.1/metacity-1/Makefile.am����������������������������������������������������������0000644�0000000�0000000�00000000605�11337123212�015210� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������themedir = $(datadir)/themes/Blubuntu/metacity-1 theme_DATA = \ icon_close.png \ icon_close_u.png \ icon_maximize.png \ icon_maximize_u.png \ icon_minimize.png \ icon_minimize_u.png \ icon_restore.png \ icon_restore_u.png \ menu.png \ menu_over.png \ metacity-theme-1.xml EXTRA_DIST = $(theme_DATA) MAINTAINERCLEANFILES = \ Makefile.in ���������������������������������������������������������������������������������������������������������������������������blubuntu-look-0.3.1/metacity-1/icon_restore.png�����������������������������������������������������0000644�0000000�0000000�00000000237�11337123212�016356� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������PNG  ��� IHDR��� ��� ���2Ͻ���bKGD�i��vC���TIDATWc` 0BեP?3)fddL3a&7$ Ӎ atSQLIc( qyd�\!Э&�?NVj ����IENDB`�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������blubuntu-look-0.3.1/metacity-1/icon_maximize.png����������������������������������������������������0000644�0000000�0000000�00000000255�11337123212�016516� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������PNG  ��� IHDR��� ��� ���2Ͻ���bKGD������bIDATWcd``Hb3dddLg§�Yl"ta (lYȊWehݏC (d`B"B9:%gP "8MA�&􂣴����IENDB`�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������