xteddy-2.2/0000777000265600020320000000000011155142257007666 500000000000000xteddy-2.2/README0000644000265600020320000000306211143371632010461 00000000000000Readme for XTeddy XTeddy was originally written by Stefan Gustavson . Please read the xteddy.README to learn morte about the program. The general usage is also valid for XTeddy 2.0. You will get the original version at the official homepage http://www.itn.liu.se/~stegu/xteddy The new XTeddy was written to get great flexibility in using any image you want. Not that I didn't like the original cuddly guy but he has friends, too. So I took some photos of my sons most loved toys and digitized them. To get various images included in XTeddy I decided to use Imlib (http://www.labs.redhat.com/imlib) in favour of libXpm. So any image format with transparency information can be used. The new XTeddy-2.0.x is available at Stefan Gustavsons server as well as at http://people.debian.org/~tille/upstream/xteddy/ The sources as well as Debian packages can be found at your nearest Debian mirror, too. Origin of the images: xteddy: Stefan Gustavson xpenguin: Alex Romosan xduck: Hanno Mueller xtuxxy: Hanno Mueller (See xtuxxy.credit for further informations.) xorca: Jaime E. Villate This pixmap was created to take part in the Debian logo contest. xalex, xbobo, xbrummi, xklitze, xnamu, xruessel: These dolls are the most favourite ones of my son. Andreas Tille Any comments and bug reports to Andreas Tille Homepage http://fam-tille.de xteddy-2.2/configure.in0000644000265600020320000000032611151323056012106 00000000000000AC_INIT(xteddy.c) AM_INIT_AUTOMAKE(xteddy, 2.2) AC_PROG_CC AC_PATH_XTRA PKG_CHECK_MODULES(IMLIB2, imlib2) PIXMAP_PATH="/usr/share/xteddy" AC_SUBST(PIXMAP_PATH) AC_OUTPUT(Makefile html/Makefile images/Makefile) xteddy-2.2/aclocal.m40000644000265600020320000011111411151323136011432 00000000000000# generated automatically by aclocal 1.10.1 -*- Autoconf -*- # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, # 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. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. m4_ifndef([AC_AUTOCONF_VERSION], [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl m4_if(AC_AUTOCONF_VERSION, [2.61],, [m4_warning([this file was generated for autoconf 2.61. You have another version of autoconf. It may work, but is not guaranteed to. If you have problems, you may need to regenerate the build system entirely. To do so, use the procedure documented by the package, typically `autoreconf'.])]) # pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*- # # 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 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.10' 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.10.1], [], [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 AC_INIT_AUTOMAKE. AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], [AM_AUTOMAKE_VERSION([1.10.1])dnl m4_ifndef([AC_AUTOCONF_VERSION], [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl _AM_AUTOCONF_VERSION(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 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 8 # AM_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 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 # 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 # 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 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 case $depmode in 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 ;; none) break ;; esac # 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. if depmode=$depmode \ source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} 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 sub/conftest.${OBJEXT-o} 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 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. #serial 3 # _AM_OUTPUT_DEPENDENCY_COMMANDS # ------------------------------ AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], [for mf in $CONFIG_FILES; 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 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 13 # 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.60])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) AM_PROG_INSTALL_SH AM_PROG_INSTALL_STRIP 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 ]) ]) # 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 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 install_sh=${install_sh-"\$(SHELL) $am_aux_dir/install-sh"} 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 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 3 # AM_MAKE_INCLUDE() # ----------------- # Check to see how make treats includes. AC_DEFUN([AM_MAKE_INCLUDE], [am_make=${MAKE-make} cat > confinc << 'END' am__doit: @echo done .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 # We grep out `Entering directory' and `Leaving directory' # messages which can occur if `w' ends up in MAKEFLAGS. # In particular we don't look at `^make:' because GNU make might # be invoked under some other name (usually "gmake"), in which # case it prints its new name instead of `make'. if test "`$am_make -s -f confmf 2> /dev/null | grep -v 'ing directory'`" = "done"; then am__include=include am__quote= _am_result=GNU fi # Now try BSD make style include. if test "$am__include" = "#"; then echo '.include "confinc"' > confmf if test "`$am_make -s -f confmf 2> /dev/null`" = "done"; then am__include=.include am__quote="\"" _am_result=BSD fi 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 # 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_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 test x"${MISSING+set}" = xset || MISSING="\${SHELL} $am_aux_dir/missing" # 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 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 3 # _AM_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], [AC_FOREACH([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])]) # _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET]) # ------------------------------------------- # Execute IF-SET if OPTION is set, IF-NOT-SET otherwise. AC_DEFUN([_AM_IF_OPTION], [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])]) # Check to make sure that the build environment is sane. -*- Autoconf -*- # Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005 # 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_SANITY_CHECK # --------------- AC_DEFUN([AM_SANITY_CHECK], [AC_MSG_CHECKING([whether build environment is sane]) # Just in case sleep 1 echo timestamp > conftest.file # 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 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_SUBST_NOTMAKE(VARIABLE) # --------------------------- # Prevent Automake from outputting VARIABLE = @VARIABLE@ in Makefile.in. # This macro is traced by Automake. AC_DEFUN([_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 xteddy-2.2/Makefile.am0000644000265600020320000000064511151322332011631 00000000000000# GPL (C) 1998 Andreas Tille # tille@debian.org bin_PROGRAMS = xteddy xteddy_SOURCES = xteddy.c man_MANS = xteddy.6 bin_SCRIPTS = xtoys xteddy_test AM_CFLAGS = @IMLIB2_CFLAGS@ AM_LDFLAGS = @IMLIB2_LIBS@ -lX11 DEFS = -DPIXMAP_PATH=\"@PIXMAP_PATH@\" -Wall SUBDIRS = html images EXTRA_DIST = $(man_MANS) $(bin_SCRIPTS) \ README xteddy.README images.credit \ configure autogen.sh xteddy-2.2/Makefile.in0000644000265600020320000005730711155142240011653 00000000000000# Makefile.in generated by automake 1.10.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008 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@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@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 = : bin_PROGRAMS = xteddy$(EXEEXT) subdir = . DIST_COMMON = README $(am__configure_deps) $(srcdir)/Makefile.am \ $(srcdir)/Makefile.in $(top_srcdir)/configure AUTHORS COPYING \ ChangeLog INSTALL NEWS config.guess config.sub depcomp \ install-sh missing mkinstalldirs ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/configure.in 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 = $(SHELL) $(top_srcdir)/mkinstalldirs CONFIG_CLEAN_FILES = am__installdirs = "$(DESTDIR)$(bindir)" "$(DESTDIR)$(bindir)" \ "$(DESTDIR)$(man6dir)" binPROGRAMS_INSTALL = $(INSTALL_PROGRAM) PROGRAMS = $(bin_PROGRAMS) am_xteddy_OBJECTS = xteddy.$(OBJEXT) xteddy_OBJECTS = $(am_xteddy_OBJECTS) xteddy_LDADD = $(LDADD) binSCRIPT_INSTALL = $(INSTALL_SCRIPT) SCRIPTS = $(bin_SCRIPTS) DEFAULT_INCLUDES = -I.@am__isrc@ depcomp = $(SHELL) $(top_srcdir)/depcomp am__depfiles_maybe = depfiles COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ SOURCES = $(xteddy_SOURCES) DIST_SOURCES = $(xteddy_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 man6dir = $(mandir)/man6 NROFF = nroff MANS = $(man_MANS) RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive 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); }; } DIST_ARCHIVES = $(distdir).tar.gz GZIP_ENV = --best distuninstallcheck_listfiles = find . -type f -print distcleancheck_listfiles = find . -type f -print ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = -DPIXMAP_PATH=\"@PIXMAP_PATH@\" -Wall DEPDIR = @DEPDIR@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EXEEXT = @EXEEXT@ IMLIB2_CFLAGS = @IMLIB2_CFLAGS@ IMLIB2_LIBS = @IMLIB2_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LDFLAGS = @LDFLAGS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PIXMAP_PATH = @PIXMAP_PATH@ PKG_CONFIG = @PKG_CONFIG@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ XMKMF = @XMKMF@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ 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_builddir = @top_builddir@ top_srcdir = @top_srcdir@ xteddy_SOURCES = xteddy.c man_MANS = xteddy.6 bin_SCRIPTS = xtoys xteddy_test AM_CFLAGS = @IMLIB2_CFLAGS@ AM_LDFLAGS = @IMLIB2_LIBS@ -lX11 SUBDIRS = html images EXTRA_DIST = $(man_MANS) $(bin_SCRIPTS) \ README xteddy.README images.credit \ configure autogen.sh all: all-recursive .SUFFIXES: .SUFFIXES: .c .o .obj 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 '; \ cd $(srcdir) && $(AUTOMAKE) --gnu \ && exit 0; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu Makefile'; \ 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) cd $(srcdir) && $(AUTOCONF) $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) install-binPROGRAMS: $(bin_PROGRAMS) @$(NORMAL_INSTALL) test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)" @list='$(bin_PROGRAMS)'; for p in $$list; do \ p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \ if test -f $$p \ ; then \ f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \ echo " $(INSTALL_PROGRAM_ENV) $(binPROGRAMS_INSTALL) '$$p' '$(DESTDIR)$(bindir)/$$f'"; \ $(INSTALL_PROGRAM_ENV) $(binPROGRAMS_INSTALL) "$$p" "$(DESTDIR)$(bindir)/$$f" || exit 1; \ else :; fi; \ done uninstall-binPROGRAMS: @$(NORMAL_UNINSTALL) @list='$(bin_PROGRAMS)'; for p in $$list; do \ f=`echo "$$p" | sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \ echo " rm -f '$(DESTDIR)$(bindir)/$$f'"; \ rm -f "$(DESTDIR)$(bindir)/$$f"; \ done clean-binPROGRAMS: -test -z "$(bin_PROGRAMS)" || rm -f $(bin_PROGRAMS) xteddy$(EXEEXT): $(xteddy_OBJECTS) $(xteddy_DEPENDENCIES) @rm -f xteddy$(EXEEXT) $(LINK) $(xteddy_OBJECTS) $(xteddy_LDADD) $(LIBS) install-binSCRIPTS: $(bin_SCRIPTS) @$(NORMAL_INSTALL) test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)" @list='$(bin_SCRIPTS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ if test -f $$d$$p; then \ f=`echo "$$p" | sed 's|^.*/||;$(transform)'`; \ echo " $(binSCRIPT_INSTALL) '$$d$$p' '$(DESTDIR)$(bindir)/$$f'"; \ $(binSCRIPT_INSTALL) "$$d$$p" "$(DESTDIR)$(bindir)/$$f"; \ else :; fi; \ done uninstall-binSCRIPTS: @$(NORMAL_UNINSTALL) @list='$(bin_SCRIPTS)'; for p in $$list; do \ f=`echo "$$p" | sed 's|^.*/||;$(transform)'`; \ echo " rm -f '$(DESTDIR)$(bindir)/$$f'"; \ rm -f "$(DESTDIR)$(bindir)/$$f"; \ done mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/xteddy.Po@am__quote@ .c.o: @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` install-man6: $(man6_MANS) $(man_MANS) @$(NORMAL_INSTALL) test -z "$(man6dir)" || $(MKDIR_P) "$(DESTDIR)$(man6dir)" @list='$(man6_MANS) $(dist_man6_MANS) $(nodist_man6_MANS)'; \ l2='$(man_MANS) $(dist_man_MANS) $(nodist_man_MANS)'; \ for i in $$l2; do \ case "$$i" in \ *.6*) list="$$list $$i" ;; \ esac; \ done; \ for i in $$list; do \ if test -f $(srcdir)/$$i; then file=$(srcdir)/$$i; \ else file=$$i; fi; \ ext=`echo $$i | sed -e 's/^.*\\.//'`; \ case "$$ext" in \ 6*) ;; \ *) ext='6' ;; \ esac; \ inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \ inst=`echo $$inst | sed -e 's/^.*\///'`; \ inst=`echo $$inst | sed '$(transform)'`.$$ext; \ echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man6dir)/$$inst'"; \ $(INSTALL_DATA) "$$file" "$(DESTDIR)$(man6dir)/$$inst"; \ done uninstall-man6: @$(NORMAL_UNINSTALL) @list='$(man6_MANS) $(dist_man6_MANS) $(nodist_man6_MANS)'; \ l2='$(man_MANS) $(dist_man_MANS) $(nodist_man_MANS)'; \ for i in $$l2; do \ case "$$i" in \ *.6*) list="$$list $$i" ;; \ esac; \ done; \ for i in $$list; do \ ext=`echo $$i | sed -e 's/^.*\\.//'`; \ case "$$ext" in \ 6*) ;; \ *) ext='6' ;; \ esac; \ inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \ inst=`echo $$inst | sed -e 's/^.*\///'`; \ inst=`echo $$inst | sed '$(transform)'`.$$ext; \ echo " rm -f '$(DESTDIR)$(man6dir)/$$inst'"; \ rm -f "$(DESTDIR)$(man6dir)/$$inst"; \ done # 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; \ (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; \ (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done && test -z "$$fail" tags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ done ctags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ test "$$subdir" = . || (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; nonemtpy = 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) tags=; \ 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 || \ tags="$$tags $$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; }; }'`; \ if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$tags $$unique; \ fi ctags: CTAGS CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ 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)$$tags$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$tags $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && 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 $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ cp -pR $$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; \ distdir=`$(am__cd) $(distdir) && pwd`; \ top_distdir=`$(am__cd) $(top_distdir) && pwd`; \ (cd $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$$top_distdir" \ distdir="$$distdir/$$subdir" \ am__remove_distdir=: \ am__skip_length_check=: \ distdir) \ || exit 1; \ fi; \ done -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-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.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) dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \ && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \ && 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 $(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: @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 $(PROGRAMS) $(SCRIPTS) $(MANS) installdirs: installdirs-recursive installdirs-am: for dir in "$(DESTDIR)$(bindir)" "$(DESTDIR)$(bindir)" "$(DESTDIR)$(man6dir)"; 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) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-recursive clean-am: clean-binPROGRAMS clean-generic mostlyclean-am distclean: distclean-recursive -rm -f $(am__CONFIG_DISTCLEAN_FILES) -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive info: info-recursive info-am: install-data-am: install-man install-dvi: install-dvi-recursive install-exec-am: install-binPROGRAMS install-binSCRIPTS install-html: install-html-recursive install-info: install-info-recursive install-man: install-man6 install-pdf: install-pdf-recursive install-ps: install-ps-recursive installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f $(am__CONFIG_DISTCLEAN_FILES) -rm -rf $(top_srcdir)/autom4te.cache -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-recursive mostlyclean-am: mostlyclean-compile mostlyclean-generic pdf: pdf-recursive pdf-am: ps: ps-recursive ps-am: uninstall-am: uninstall-binPROGRAMS uninstall-binSCRIPTS uninstall-man uninstall-man: uninstall-man6 .MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) install-am \ install-strip .PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \ all all-am am--refresh check check-am clean clean-binPROGRAMS \ clean-generic ctags ctags-recursive dist dist-all dist-bzip2 \ dist-gzip dist-lzma dist-shar dist-tarZ dist-zip distcheck \ distclean distclean-compile distclean-generic distclean-tags \ distcleancheck distdir distuninstallcheck dvi dvi-am html \ html-am info info-am install install-am install-binPROGRAMS \ install-binSCRIPTS 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-man6 install-pdf install-pdf-am install-ps \ install-ps-am install-strip installcheck installcheck-am \ installdirs installdirs-am maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-compile \ mostlyclean-generic pdf pdf-am ps ps-am tags tags-recursive \ uninstall uninstall-am uninstall-binPROGRAMS \ uninstall-binSCRIPTS uninstall-man uninstall-man6 # 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: xteddy-2.2/configure0000755000265600020320000053662011155142067011524 00000000000000#! /bin/sh # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.61. # # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, # 2002, 2003, 2004, 2005, 2006 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=: # Zsh 3.x and 4.x performs 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 # PATH needs CR # 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 # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then echo "#! /bin/sh" >conf$$.sh echo "exit 0" >>conf$$.sh chmod +x conf$$.sh if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then PATH_SEPARATOR=';' else PATH_SEPARATOR=: fi rm -f conf$$.sh fi # Support unset when possible. if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then as_unset=unset else as_unset=false 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.) as_nl=' ' 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 echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 { (exit 1); exit 1; } fi # Work around bugs in pre-3.0 UWIN ksh. for as_var in ENV MAIL MAILPATH do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var done PS1='$ ' PS2='> ' PS4='+ ' # NLS nuisances. for as_var in \ LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \ LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \ LC_TELEPHONE LC_TIME do if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then eval $as_var=C; export $as_var else ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var fi done # Required to use basename. 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 # Name of the executable. as_me=`$as_basename -- "$0" || $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ X"$0" : 'X\(//\)$' \| \ X"$0" : 'X\(/\)' \| . 2>/dev/null || echo X/"$0" | sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/ q } /^X\/\(\/\/\)$/{ s//\1/ q } /^X\/\(\/\).*/{ s//\1/ q } s/.*/./; q'` # CDPATH. $as_unset CDPATH if test "x$CONFIG_SHELL" = x; then if (eval ":") 2>/dev/null; then as_have_required=yes else as_have_required=no fi if test $as_have_required = yes && (eval ": (as_func_return () { (exit \$1) } as_func_success () { as_func_return 0 } as_func_failure () { as_func_return 1 } as_func_ret_success () { return 0 } as_func_ret_failure () { return 1 } exitcode=0 if as_func_success; then : else exitcode=1 echo as_func_success failed. fi if as_func_failure; then exitcode=1 echo as_func_failure succeeded. fi if as_func_ret_success; then : else exitcode=1 echo as_func_ret_success failed. fi if as_func_ret_failure; then exitcode=1 echo as_func_ret_failure succeeded. fi if ( set x; as_func_ret_success y && test x = \"\$1\" ); then : else exitcode=1 echo positional parameters were not saved. fi test \$exitcode = 0) || { (exit 1); exit 1; } ( as_lineno_1=\$LINENO as_lineno_2=\$LINENO test \"x\$as_lineno_1\" != \"x\$as_lineno_2\" && test \"x\`expr \$as_lineno_1 + 1\`\" = \"x\$as_lineno_2\") || { (exit 1); exit 1; } ") 2> /dev/null; then : else as_candidate_shells= as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. case $as_dir in /*) for as_base in sh bash ksh sh5; do as_candidate_shells="$as_candidate_shells $as_dir/$as_base" done;; esac done IFS=$as_save_IFS for as_shell in $as_candidate_shells $SHELL; do # Try only shells that exist, to save several forks. if { test -f "$as_shell" || test -f "$as_shell.exe"; } && { ("$as_shell") 2> /dev/null <<\_ASEOF if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then emulate sh NULLCMD=: # Zsh 3.x and 4.x performs 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 : _ASEOF }; then CONFIG_SHELL=$as_shell as_have_required=yes if { "$as_shell" 2> /dev/null <<\_ASEOF if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then emulate sh NULLCMD=: # Zsh 3.x and 4.x performs 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_func_return () { (exit $1) } as_func_success () { as_func_return 0 } as_func_failure () { as_func_return 1 } as_func_ret_success () { return 0 } as_func_ret_failure () { return 1 } exitcode=0 if as_func_success; then : else exitcode=1 echo as_func_success failed. fi if as_func_failure; then exitcode=1 echo as_func_failure succeeded. fi if as_func_ret_success; then : else exitcode=1 echo as_func_ret_success failed. fi if as_func_ret_failure; then exitcode=1 echo as_func_ret_failure succeeded. fi if ( set x; as_func_ret_success y && test x = "$1" ); then : else exitcode=1 echo positional parameters were not saved. fi test $exitcode = 0) || { (exit 1); exit 1; } ( as_lineno_1=$LINENO as_lineno_2=$LINENO test "x$as_lineno_1" != "x$as_lineno_2" && test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2") || { (exit 1); exit 1; } _ASEOF }; then break fi fi done if test "x$CONFIG_SHELL" != x; then for as_var in BASH_ENV ENV do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var done export CONFIG_SHELL exec "$CONFIG_SHELL" "$as_myself" ${1+"$@"} fi if test $as_have_required = no; then echo This script requires a shell more modern than all the echo shells that I found on your system. Please install a echo modern shell, or manually run the script under such a echo shell if you do have one. { (exit 1); exit 1; } fi fi fi (eval "as_func_return () { (exit \$1) } as_func_success () { as_func_return 0 } as_func_failure () { as_func_return 1 } as_func_ret_success () { return 0 } as_func_ret_failure () { return 1 } exitcode=0 if as_func_success; then : else exitcode=1 echo as_func_success failed. fi if as_func_failure; then exitcode=1 echo as_func_failure succeeded. fi if as_func_ret_success; then : else exitcode=1 echo as_func_ret_success failed. fi if as_func_ret_failure; then exitcode=1 echo as_func_ret_failure succeeded. fi if ( set x; as_func_ret_success y && test x = \"\$1\" ); then : else exitcode=1 echo positional parameters were not saved. fi test \$exitcode = 0") || { echo No shell found that supports shell functions. echo Please tell autoconf@gnu.org about your system, echo including any error possibly output before this echo message } as_lineno_1=$LINENO as_lineno_2=$LINENO test "x$as_lineno_1" != "x$as_lineno_2" && test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2" || { # Create $as_me.lineno as a copy of $as_myself, but with $LINENO # uniformly replaced by the line number. The first 'sed' inserts a # line-number line after each line using $LINENO; the second 'sed' # does the real work. The second script uses 'N' to pair each # line-number line with the line containing $LINENO, and appends # trailing '-' during substitution so that $LINENO is not a special # case at line end. # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the # scripts with optimization help from Paolo Bonzini. 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" || { echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2 { (exit 1); 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 } if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then as_dirname=dirname else as_dirname=false fi ECHO_C= ECHO_N= ECHO_T= case `echo -n x` in -n*) case `echo 'x\c'` in *c*) ECHO_T=' ';; # ECHO_T is single tab character. *) ECHO_C='\c';; esac;; *) ECHO_N='-n';; esac if expr a : '\(a\)' >/dev/null 2>&1 && test "X`expr 00001 : '.*\(...\)'`" = X001; then as_expr=expr else as_expr=false fi 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 fi echo >conf$$.file 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 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=: 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= SHELL=${CONFIG_SHELL-/bin/sh} # Identity of this package. PACKAGE_NAME= PACKAGE_TARNAME= PACKAGE_VERSION= PACKAGE_STRING= PACKAGE_BUGREPORT= ac_unique_file="xteddy.c" ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datarootdir datadir sysconfdir sharedstatedir localstatedir includedir oldincludedir docdir infodir htmldir dvidir pdfdir psdir libdir localedir mandir DEFS ECHO_C ECHO_N ECHO_T LIBS build_alias host_alias target_alias INSTALL_PROGRAM INSTALL_SCRIPT INSTALL_DATA am__isrc CYGPATH_W PACKAGE VERSION ACLOCAL AUTOCONF AUTOMAKE AUTOHEADER MAKEINFO install_sh STRIP INSTALL_STRIP_PROGRAM mkdir_p AWK SET_MAKE am__leading_dot AMTAR am__tar am__untar CC CFLAGS LDFLAGS CPPFLAGS ac_ct_CC EXEEXT OBJEXT DEPDIR am__include am__quote AMDEP_TRUE AMDEP_FALSE AMDEPBACKSLASH CCDEPMODE am__fastdepCC_TRUE am__fastdepCC_FALSE XMKMF CPP X_CFLAGS X_PRE_LIBS X_LIBS X_EXTRA_LIBS PKG_CONFIG IMLIB2_CFLAGS IMLIB2_LIBS PIXMAP_PATH LIBOBJS LTLIBOBJS' ac_subst_files='' ac_precious_vars='build_alias host_alias target_alias CC CFLAGS LDFLAGS LIBS CPPFLAGS XMKMF CPP PKG_CONFIG IMLIB2_CFLAGS IMLIB2_LIBS' # Initialize some variables set by options. ac_init_help= ac_init_version=false # 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}' 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_feature=`expr "x$ac_option" : 'x-*disable-\(.*\)'` # Reject names that are not valid shell variable names. expr "x$ac_feature" : ".*[^-._$as_cr_alnum]" >/dev/null && { echo "$as_me: error: invalid feature name: $ac_feature" >&2 { (exit 1); exit 1; }; } ac_feature=`echo $ac_feature | sed 's/[-.]/_/g'` eval enable_$ac_feature=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_feature=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` # Reject names that are not valid shell variable names. expr "x$ac_feature" : ".*[^-._$as_cr_alnum]" >/dev/null && { echo "$as_me: error: invalid feature name: $ac_feature" >&2 { (exit 1); exit 1; }; } ac_feature=`echo $ac_feature | sed 's/[-.]/_/g'` eval enable_$ac_feature=\$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_package=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` # Reject names that are not valid shell variable names. expr "x$ac_package" : ".*[^-._$as_cr_alnum]" >/dev/null && { echo "$as_me: error: invalid package name: $ac_package" >&2 { (exit 1); exit 1; }; } ac_package=`echo $ac_package | sed 's/[-.]/_/g'` eval with_$ac_package=\$ac_optarg ;; -without-* | --without-*) ac_package=`expr "x$ac_option" : 'x-*without-\(.*\)'` # Reject names that are not valid shell variable names. expr "x$ac_package" : ".*[^-._$as_cr_alnum]" >/dev/null && { echo "$as_me: error: invalid package name: $ac_package" >&2 { (exit 1); exit 1; }; } ac_package=`echo $ac_package | sed 's/[-.]/_/g'` eval with_$ac_package=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 ;; -*) { echo "$as_me: error: unrecognized option: $ac_option Try \`$0 --help' for more information." >&2 { (exit 1); exit 1; }; } ;; *=*) ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='` # Reject names that are not valid shell variable names. expr "x$ac_envvar" : ".*[^_$as_cr_alnum]" >/dev/null && { echo "$as_me: error: invalid variable name: $ac_envvar" >&2 { (exit 1); exit 1; }; } eval $ac_envvar=\$ac_optarg export $ac_envvar ;; *) # FIXME: should be removed in autoconf 3.0. echo "$as_me: WARNING: you should use --build, --host, --target" >&2 expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && 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'` { echo "$as_me: error: missing argument to $ac_option" >&2 { (exit 1); exit 1; }; } fi # Be sure to have absolute directory names. 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 case $ac_val in [\\/$]* | ?:[\\/]* ) continue;; NONE | '' ) case $ac_var in *prefix ) continue;; esac;; esac { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2 { (exit 1); exit 1; }; } 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 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 .` || { echo "$as_me: error: Working directory cannot be determined" >&2 { (exit 1); exit 1; }; } test "X$ac_ls_di" = "X$ac_pwd_ls_di" || { echo "$as_me: error: pwd does not report name of working directory" >&2 { (exit 1); exit 1; }; } # 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 -- "$0" || $as_expr X"$0" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$0" : 'X\(//\)[^/]' \| \ X"$0" : 'X\(//\)$' \| \ X"$0" : 'X\(/\)' \| . 2>/dev/null || echo X"$0" | 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 .." { echo "$as_me: error: cannot find sources ($ac_unique_file) in $srcdir" >&2 { (exit 1); exit 1; }; } fi ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work" ac_abs_confdir=`( cd "$srcdir" && test -r "./$ac_unique_file" || { echo "$as_me: error: $ac_msg" >&2 { (exit 1); exit 1; }; } 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 this package 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/PACKAGE] --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 X features: --x-includes=DIR X include files are in DIR --x-libraries=DIR X library files are in DIR _ACEOF fi if test -n "$ac_init_help"; then cat <<\_ACEOF Optional Features: --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) --enable-FEATURE[=ARG] include FEATURE [ARG=yes] --disable-dependency-tracking speeds up one-time build --enable-dependency-tracking do not reject slow dependency extractors Optional Packages: --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) --with-x use the X Window System 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 XMKMF Path to xmkmf, Makefile generator for X Window System CPP C preprocessor PKG_CONFIG path to pkg-config utility IMLIB2_CFLAGS C compiler flags for IMLIB2, overriding pkg-config IMLIB2_LIBS linker flags for IMLIB2, overriding pkg-config Use these variables to override the choices made by `configure' or to help it to find libraries and programs with nonstandard names/locations. _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" || continue ac_builddir=. case "$ac_dir" in .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'` # A ".." for each directory in $ac_dir_suffix. ac_top_builddir_sub=`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 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 configure generated by GNU Autoconf 2.61 Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006 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 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 $as_me, which was generated by GNU Autoconf 2.61. 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=. 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=`echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; esac case $ac_pass in 1) ac_configure_args0="$ac_configure_args0 '$ac_arg'" ;; 2) ac_configure_args1="$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 ac_configure_args="$ac_configure_args '$ac_arg'" ;; esac done done $as_unset ac_configure_args0 || test "${ac_configure_args0+set}" != set || { ac_configure_args0=; export ac_configure_args0; } $as_unset ac_configure_args1 || test "${ac_configure_args1+set}" != set || { ac_configure_args1=; export 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_*) { echo "$as_me:$LINENO: WARNING: Cache variable $ac_var contains a newline." >&5 echo "$as_me: WARNING: Cache variable $ac_var contains a newline." >&2;} ;; esac case $ac_var in #( _ | IFS | as_nl) ;; #( *) $as_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=`echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; esac 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=`echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; esac 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 && echo "$as_me: caught signal $ac_signal" 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'; { (exit 1); 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 # 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 # Let the site file select an alternate cache file if it wants to. # Prefer explicitly selected file to automatically selected ones. if test -n "$CONFIG_SITE"; then set x "$CONFIG_SITE" elif test "x$prefix" != xNONE; then set x "$prefix/share/config.site" "$prefix/etc/config.site" else set x "$ac_default_prefix/share/config.site" \ "$ac_default_prefix/etc/config.site" fi shift for ac_site_file do if test -r "$ac_site_file"; then { echo "$as_me:$LINENO: loading site script $ac_site_file" >&5 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 { echo "$as_me:$LINENO: loading cache $cache_file" >&5 echo "$as_me: loading cache $cache_file" >&6;} case $cache_file in [\\/]* | ?:[\\/]* ) . "$cache_file";; *) . "./$cache_file";; esac fi else { echo "$as_me:$LINENO: creating cache $cache_file" >&5 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,) { echo "$as_me:$LINENO: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} ac_cache_corrupted=: ;; ,set) { echo "$as_me:$LINENO: error: \`$ac_var' was not set in the previous run" >&5 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 { echo "$as_me:$LINENO: error: \`$ac_var' has changed since the previous run:" >&5 echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} { echo "$as_me:$LINENO: former value: $ac_old_val" >&5 echo "$as_me: former value: $ac_old_val" >&2;} { echo "$as_me:$LINENO: current value: $ac_new_val" >&5 echo "$as_me: current value: $ac_new_val" >&2;} ac_cache_corrupted=: fi;; esac # Pass precious variables to config.status. if test "$ac_new_set" = set; then case $ac_new_val in *\'*) ac_arg=$ac_var=`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. *) ac_configure_args="$ac_configure_args '$ac_arg'" ;; esac fi done if $ac_cache_corrupted; then { echo "$as_me:$LINENO: error: changes in the environment can compromise the build" >&5 echo "$as_me: error: changes in the environment can compromise the build" >&2;} { { echo "$as_me:$LINENO: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5 echo "$as_me: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&2;} { (exit 1); exit 1; }; } 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 am__api_version='1.10' ac_aux_dir= for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do if test -f "$ac_dir/install-sh"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/install-sh -c" break elif test -f "$ac_dir/install.sh"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/install.sh -c" break elif test -f "$ac_dir/shtool"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/shtool install -c" break fi done if test -z "$ac_aux_dir"; then { { echo "$as_me:$LINENO: error: cannot find install-sh or install.sh in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" >&5 echo "$as_me: error: cannot find install-sh or install.sh in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" >&2;} { (exit 1); exit 1; }; } 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. { echo "$as_me:$LINENO: checking for a BSD-compatible install" >&5 echo $ECHO_N "checking for a BSD-compatible install... $ECHO_C" >&6; } if test -z "$INSTALL"; then if test "${ac_cv_path_install+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&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 ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c" break 3 fi fi done done ;; esac done IFS=$as_save_IFS 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 { echo "$as_me:$LINENO: result: $INSTALL" >&5 echo "${ECHO_T}$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' { echo "$as_me:$LINENO: checking whether build environment is sane" >&5 echo $ECHO_N "checking whether build environment is sane... $ECHO_C" >&6; } # Just in case sleep 1 echo timestamp > conftest.file # 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". { { echo "$as_me:$LINENO: error: ls -t appears to fail. Make sure there is not a broken alias in your environment" >&5 echo "$as_me: error: ls -t appears to fail. Make sure there is not a broken alias in your environment" >&2;} { (exit 1); exit 1; }; } fi test "$2" = conftest.file ) then # Ok. : else { { echo "$as_me:$LINENO: error: newly created file is older than distributed files! Check your system clock" >&5 echo "$as_me: error: newly created file is older than distributed files! Check your system clock" >&2;} { (exit 1); exit 1; }; } fi { echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}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 $. echo might interpret backslashes. # By default was `s,x,x', remove it if useless. cat <<\_ACEOF >conftest.sed s/[\\$]/&&/g;s/;s,x,x,$// _ACEOF program_transform_name=`echo $program_transform_name | sed -f conftest.sed` rm -f conftest.sed # expand $ac_aux_dir to an absolute path am_aux_dir=`cd $ac_aux_dir && pwd` test x"${MISSING+set}" = xset || MISSING="\${SHELL} $am_aux_dir/missing" # Use eval to expand $SHELL if eval "$MISSING --run true"; then am_missing_run="$MISSING --run " else am_missing_run= { echo "$as_me:$LINENO: WARNING: \`missing' script is too old or missing" >&5 echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;} fi { echo "$as_me:$LINENO: checking for a thread-safe mkdir -p" >&5 echo $ECHO_N "checking for a thread-safe mkdir -p... $ECHO_C" >&6; } if test -z "$MKDIR_P"; then if test "${ac_cv_path_mkdir+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&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 { echo "$as_me:$LINENO: result: $MKDIR_P" >&5 echo "${ECHO_T}$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 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_AWK+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&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" echo "$as_me:$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 { echo "$as_me:$LINENO: result: $AWK" >&5 echo "${ECHO_T}$AWK" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi test -n "$AWK" && break done { echo "$as_me:$LINENO: checking whether ${MAKE-make} sets \$(MAKE)" >&5 echo $ECHO_N "checking whether ${MAKE-make} sets \$(MAKE)... $ECHO_C" >&6; } set x ${MAKE-make}; ac_make=`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 echo $ECHO_N "(cached) $ECHO_C" >&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 { echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6; } SET_MAKE= else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}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 { { echo "$as_me:$LINENO: error: source directory already configured; run \"make distclean\" there first" >&5 echo "$as_me: error: source directory already configured; run \"make distclean\" there first" >&2;} { (exit 1); exit 1; }; } 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=xteddy VERSION=2.2 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"} install_sh=${install_sh-"\$(SHELL) $am_aux_dir/install-sh"} # 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 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_STRIP+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&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" echo "$as_me:$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 { echo "$as_me:$LINENO: result: $STRIP" >&5 echo "${ECHO_T}$STRIP" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}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 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&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" echo "$as_me:$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 { echo "$as_me:$LINENO: result: $ac_ct_STRIP" >&5 echo "${ECHO_T}$ac_ct_STRIP" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi if test "x$ac_ct_STRIP" = x; then STRIP=":" else case $cross_compiling:$ac_tool_warned in yes:) { echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools whose name does not start with the host triplet. If you think this configuration is useful to you, please write to autoconf@gnu.org." >&5 echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools whose name does not start with the host triplet. If you think this configuration is useful to you, please write to autoconf@gnu.org." >&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" # 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"} am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -' 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 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&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" echo "$as_me:$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 { echo "$as_me:$LINENO: result: $CC" >&5 echo "${ECHO_T}$CC" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}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 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_ac_ct_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&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" echo "$as_me:$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 { echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 echo "${ECHO_T}$ac_ct_CC" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools whose name does not start with the host triplet. If you think this configuration is useful to you, please write to autoconf@gnu.org." >&5 echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools whose name does not start with the host triplet. If you think this configuration is useful to you, please write to autoconf@gnu.org." >&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 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&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" echo "$as_me:$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 { echo "$as_me:$LINENO: result: $CC" >&5 echo "${ECHO_T}$CC" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}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 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&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" echo "$as_me:$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 { echo "$as_me:$LINENO: result: $CC" >&5 echo "${ECHO_T}$CC" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}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 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&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" echo "$as_me:$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 { echo "$as_me:$LINENO: result: $CC" >&5 echo "${ECHO_T}$CC" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}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 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_ac_ct_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&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" echo "$as_me:$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 { echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 echo "${ECHO_T}$ac_ct_CC" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}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:) { echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools whose name does not start with the host triplet. If you think this configuration is useful to you, please write to autoconf@gnu.org." >&5 echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools whose name does not start with the host triplet. If you think this configuration is useful to you, please write to autoconf@gnu.org." >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi fi fi test -z "$CC" && { { echo "$as_me:$LINENO: error: no acceptable C compiler found in \$PATH See \`config.log' for more details." >&5 echo "$as_me: error: no acceptable C compiler found in \$PATH See \`config.log' for more details." >&2;} { (exit 1); exit 1; }; } # Provide some information about the compiler. echo "$as_me:$LINENO: checking for C compiler version" >&5 ac_compiler=`set X $ac_compile; echo $2` { (ac_try="$ac_compiler --version >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compiler --version >&5") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } { (ac_try="$ac_compiler -v >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compiler -v >&5") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } { (ac_try="$ac_compiler -V >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compiler -V >&5") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { ; return 0; } _ACEOF ac_clean_files_save=$ac_clean_files ac_clean_files="$ac_clean_files a.out a.exe b.out" # Try to create an executable without -o first, disregard a.out. # It will help us diagnose broken compilers, and finding out an intuition # of exeext. { echo "$as_me:$LINENO: checking for C compiler default output file name" >&5 echo $ECHO_N "checking for C compiler default output file name... $ECHO_C" >&6; } ac_link_default=`echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` # # List of possible output files, starting from the most likely. # The algorithm is not robust to junk in `.', hence go to wildcards (a.*) # only as a last resort. b.out is created by i960 compilers. ac_files='a_out.exe a.exe conftest.exe a.out conftest a.* conftest.* b.out' # # The IRIX 6 linker writes into existing files which may not be # executable, retaining their permissions. Remove them first so a # subsequent execution test works. ac_rmfiles= for ac_file in $ac_files do case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link_default") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; 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 | *.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 { echo "$as_me:$LINENO: result: $ac_file" >&5 echo "${ECHO_T}$ac_file" >&6; } if test -z "$ac_file"; then echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 { { echo "$as_me:$LINENO: error: C compiler cannot create executables See \`config.log' for more details." >&5 echo "$as_me: error: C compiler cannot create executables See \`config.log' for more details." >&2;} { (exit 77); exit 77; }; } 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. { echo "$as_me:$LINENO: checking whether the C compiler works" >&5 echo $ECHO_N "checking whether the C compiler works... $ECHO_C" >&6; } # FIXME: These cross compiler hacks should be removed for Autoconf 3.0 # 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_try") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cross_compiling=no else if test "$cross_compiling" = maybe; then cross_compiling=yes else { { echo "$as_me:$LINENO: error: cannot run C compiled programs. If you meant to cross compile, use \`--host'. See \`config.log' for more details." >&5 echo "$as_me: error: cannot run C compiled programs. If you meant to cross compile, use \`--host'. See \`config.log' for more details." >&2;} { (exit 1); exit 1; }; } fi fi fi { echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6; } rm -f a.out a.exe conftest$ac_cv_exeext b.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. { echo "$as_me:$LINENO: checking whether we are cross compiling" >&5 echo $ECHO_N "checking whether we are cross compiling... $ECHO_C" >&6; } { echo "$as_me:$LINENO: result: $cross_compiling" >&5 echo "${ECHO_T}$cross_compiling" >&6; } { echo "$as_me:$LINENO: checking for suffix of executables" >&5 echo $ECHO_N "checking for suffix of executables... $ECHO_C" >&6; } if { (ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; 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 | *.o | *.obj ) ;; *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` break;; * ) break;; esac done else { { echo "$as_me:$LINENO: error: cannot compute suffix of executables: cannot compile and link See \`config.log' for more details." >&5 echo "$as_me: error: cannot compute suffix of executables: cannot compile and link See \`config.log' for more details." >&2;} { (exit 1); exit 1; }; } fi rm -f conftest$ac_cv_exeext { echo "$as_me:$LINENO: result: $ac_cv_exeext" >&5 echo "${ECHO_T}$ac_cv_exeext" >&6; } rm -f conftest.$ac_ext EXEEXT=$ac_cv_exeext ac_exeext=$EXEEXT { echo "$as_me:$LINENO: checking for suffix of object files" >&5 echo $ECHO_N "checking for suffix of object files... $ECHO_C" >&6; } if test "${ac_cv_objext+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compile") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; 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 ) ;; *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'` break;; esac done else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 { { echo "$as_me:$LINENO: error: cannot compute suffix of object files: cannot compile See \`config.log' for more details." >&5 echo "$as_me: error: cannot compute suffix of object files: cannot compile See \`config.log' for more details." >&2;} { (exit 1); exit 1; }; } fi rm -f conftest.$ac_cv_objext conftest.$ac_ext fi { echo "$as_me:$LINENO: result: $ac_cv_objext" >&5 echo "${ECHO_T}$ac_cv_objext" >&6; } OBJEXT=$ac_cv_objext ac_objext=$OBJEXT { echo "$as_me:$LINENO: checking whether we are using the GNU C compiler" >&5 echo $ECHO_N "checking whether we are using the GNU C compiler... $ECHO_C" >&6; } if test "${ac_cv_c_compiler_gnu+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { #ifndef __GNUC__ choke me #endif ; return 0; } _ACEOF 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then ac_compiler_gnu=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 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 { echo "$as_me:$LINENO: result: $ac_cv_c_compiler_gnu" >&5 echo "${ECHO_T}$ac_cv_c_compiler_gnu" >&6; } GCC=`test $ac_compiler_gnu = yes && echo yes` ac_test_CFLAGS=${CFLAGS+set} ac_save_CFLAGS=$CFLAGS { echo "$as_me:$LINENO: checking whether $CC accepts -g" >&5 echo $ECHO_N "checking whether $CC accepts -g... $ECHO_C" >&6; } if test "${ac_cv_prog_cc_g+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&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 >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { ; return 0; } _ACEOF 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then ac_cv_prog_cc_g=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 CFLAGS="" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { ; return 0; } _ACEOF 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then : else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_c_werror_flag=$ac_save_c_werror_flag CFLAGS="-g" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { ; return 0; } _ACEOF 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then ac_cv_prog_cc_g=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 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 { echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5 echo "${ECHO_T}$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 { echo "$as_me:$LINENO: checking for $CC option to accept ISO C89" >&5 echo $ECHO_N "checking for $CC option to accept ISO C89... $ECHO_C" >&6; } if test "${ac_cv_prog_cc_c89+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_cv_prog_cc_c89=no ac_save_CC=$CC cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* 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" 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then ac_cv_prog_cc_c89=$ac_arg else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 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) { echo "$as_me:$LINENO: result: none needed" >&5 echo "${ECHO_T}none needed" >&6; } ;; xno) { echo "$as_me:$LINENO: result: unsupported" >&5 echo "${ECHO_T}unsupported" >&6; } ;; *) CC="$CC $ac_cv_prog_cc_c89" { echo "$as_me:$LINENO: result: $ac_cv_prog_cc_c89" >&5 echo "${ECHO_T}$ac_cv_prog_cc_c89" >&6; } ;; esac 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 DEPDIR="${am__leading_dot}deps" ac_config_commands="$ac_config_commands depfiles" am_make=${MAKE-make} cat > confinc << 'END' am__doit: @echo done .PHONY: am__doit END # If we don't find an include directive, just comment out the code. { echo "$as_me:$LINENO: checking for style of include used by $am_make" >&5 echo $ECHO_N "checking for style of include used by $am_make... $ECHO_C" >&6; } am__include="#" am__quote= _am_result=none # First try GNU make style include. echo "include confinc" > confmf # We grep out `Entering directory' and `Leaving directory' # messages which can occur if `w' ends up in MAKEFLAGS. # In particular we don't look at `^make:' because GNU make might # be invoked under some other name (usually "gmake"), in which # case it prints its new name instead of `make'. if test "`$am_make -s -f confmf 2> /dev/null | grep -v 'ing directory'`" = "done"; then am__include=include am__quote= _am_result=GNU fi # Now try BSD make style include. if test "$am__include" = "#"; then echo '.include "confinc"' > confmf if test "`$am_make -s -f confmf 2> /dev/null`" = "done"; then am__include=.include am__quote="\"" _am_result=BSD fi fi { echo "$as_me:$LINENO: result: $_am_result" >&5 echo "${ECHO_T}$_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 depcc="$CC" am_compiler_list= { echo "$as_me:$LINENO: checking dependency style of $depcc" >&5 echo $ECHO_N "checking dependency style of $depcc... $ECHO_C" >&6; } if test "${am_cv_CC_dependencies_compiler_type+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&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 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 case $depmode in 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 ;; none) break ;; esac # 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. if depmode=$depmode \ source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} 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 sub/conftest.${OBJEXT-o} 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 { echo "$as_me:$LINENO: result: $am_cv_CC_dependencies_compiler_type" >&5 echo "${ECHO_T}$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 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 { echo "$as_me:$LINENO: checking how to run the C preprocessor" >&5 echo $ECHO_N "checking how to run the C preprocessor... $ECHO_C" >&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 echo $ECHO_N "(cached) $ECHO_C" >&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 >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #ifdef __STDC__ # include #else # include #endif Syntax error _ACEOF if { (ac_try="$ac_cpp conftest.$ac_ext" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null && { test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || test ! -s conftest.err }; then : else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 # 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 >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include _ACEOF if { (ac_try="$ac_cpp conftest.$ac_ext" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null && { test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || test ! -s conftest.err }; then # Broken: success on invalid input. continue else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 # 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 { echo "$as_me:$LINENO: result: $CPP" >&5 echo "${ECHO_T}$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 >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #ifdef __STDC__ # include #else # include #endif Syntax error _ACEOF if { (ac_try="$ac_cpp conftest.$ac_ext" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null && { test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || test ! -s conftest.err }; then : else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 # 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 >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include _ACEOF if { (ac_try="$ac_cpp conftest.$ac_ext" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null && { test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || test ! -s conftest.err }; then # Broken: success on invalid input. continue else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 # 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 { { echo "$as_me:$LINENO: error: C preprocessor \"$CPP\" fails sanity check See \`config.log' for more details." >&5 echo "$as_me: error: C preprocessor \"$CPP\" fails sanity check See \`config.log' for more details." >&2;} { (exit 1); exit 1; }; } 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 { echo "$as_me:$LINENO: checking for X" >&5 echo $ECHO_N "checking for X... $ECHO_C" >&6; } # Check whether --with-x was given. if test "${with_x+set}" = set; then withval=$with_x; fi # $have_x is `yes', `no', `disabled', or empty when we do not yet know. if test "x$with_x" = xno; then # The user explicitly disabled X. have_x=disabled else case $x_includes,$x_libraries in #( *\'*) { { echo "$as_me:$LINENO: error: Cannot use X directory names containing '" >&5 echo "$as_me: error: Cannot use X directory names containing '" >&2;} { (exit 1); exit 1; }; };; #( *,NONE | NONE,*) if test "${ac_cv_have_x+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else # One or both of the vars are not set, and there is no cached value. ac_x_includes=no ac_x_libraries=no rm -f -r conftest.dir if mkdir conftest.dir; then cd conftest.dir cat >Imakefile <<'_ACEOF' incroot: @echo incroot='${INCROOT}' usrlibdir: @echo usrlibdir='${USRLIBDIR}' libdir: @echo libdir='${LIBDIR}' _ACEOF if (export CC; ${XMKMF-xmkmf}) >/dev/null 2>/dev/null && test -f Makefile; then # GNU make sometimes prints "make[1]: Entering...", which would confuse us. for ac_var in incroot usrlibdir libdir; do eval "ac_im_$ac_var=\`\${MAKE-make} $ac_var 2>/dev/null | sed -n 's/^$ac_var=//p'\`" done # Open Windows xmkmf reportedly sets LIBDIR instead of USRLIBDIR. for ac_extension in a so sl; do if test ! -f "$ac_im_usrlibdir/libX11.$ac_extension" && test -f "$ac_im_libdir/libX11.$ac_extension"; then ac_im_usrlibdir=$ac_im_libdir; break fi done # Screen out bogus values from the imake configuration. They are # bogus both because they are the default anyway, and because # using them would break gcc on systems where it needs fixed includes. case $ac_im_incroot in /usr/include) ac_x_includes= ;; *) test -f "$ac_im_incroot/X11/Xos.h" && ac_x_includes=$ac_im_incroot;; esac case $ac_im_usrlibdir in /usr/lib | /lib) ;; *) test -d "$ac_im_usrlibdir" && ac_x_libraries=$ac_im_usrlibdir ;; esac fi cd .. rm -f -r conftest.dir fi # Standard set of common directories for X headers. # Check X11 before X11Rn because it is often a symlink to the current release. ac_x_header_dirs=' /usr/X11/include /usr/X11R6/include /usr/X11R5/include /usr/X11R4/include /usr/include/X11 /usr/include/X11R6 /usr/include/X11R5 /usr/include/X11R4 /usr/local/X11/include /usr/local/X11R6/include /usr/local/X11R5/include /usr/local/X11R4/include /usr/local/include/X11 /usr/local/include/X11R6 /usr/local/include/X11R5 /usr/local/include/X11R4 /usr/X386/include /usr/x386/include /usr/XFree86/include/X11 /usr/include /usr/local/include /usr/unsupported/include /usr/athena/include /usr/local/x11r5/include /usr/lpp/Xamples/include /usr/openwin/include /usr/openwin/share/include' if test "$ac_x_includes" = no; then # Guess where to find include files, by looking for Xlib.h. # First, try using that file with no special directory specified. cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include _ACEOF if { (ac_try="$ac_cpp conftest.$ac_ext" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null && { test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || test ! -s conftest.err }; then # We can compile using X headers with no special include directory. ac_x_includes= else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 for ac_dir in $ac_x_header_dirs; do if test -r "$ac_dir/X11/Xlib.h"; then ac_x_includes=$ac_dir break fi done fi rm -f conftest.err conftest.$ac_ext fi # $ac_x_includes = no if test "$ac_x_libraries" = no; then # Check for the libraries. # See if we find them without any special options. # Don't add to $LIBS permanently. ac_save_LIBS=$LIBS LIBS="-lX11 $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include int main () { XrmInitialize () ; return 0; } _ACEOF 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then LIBS=$ac_save_LIBS # We can link X programs with no special library path. ac_x_libraries= else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 LIBS=$ac_save_LIBS for ac_dir in `echo "$ac_x_includes $ac_x_header_dirs" | sed s/include/lib/g` do # Don't even attempt the hair of trying to link an X program! for ac_extension in a so sl; do if test -r "$ac_dir/libX11.$ac_extension"; then ac_x_libraries=$ac_dir break 2 fi done done fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext fi # $ac_x_libraries = no case $ac_x_includes,$ac_x_libraries in #( no,* | *,no | *\'*) # Didn't find X, or a directory has "'" in its name. ac_cv_have_x="have_x=no";; #( *) # Record where we found X for the cache. ac_cv_have_x="have_x=yes\ ac_x_includes='$ac_x_includes'\ ac_x_libraries='$ac_x_libraries'" esac fi ;; #( *) have_x=yes;; esac eval "$ac_cv_have_x" fi # $with_x != no if test "$have_x" != yes; then { echo "$as_me:$LINENO: result: $have_x" >&5 echo "${ECHO_T}$have_x" >&6; } no_x=yes else # If each of the values was on the command line, it overrides each guess. test "x$x_includes" = xNONE && x_includes=$ac_x_includes test "x$x_libraries" = xNONE && x_libraries=$ac_x_libraries # Update the cache value to reflect the command line values. ac_cv_have_x="have_x=yes\ ac_x_includes='$x_includes'\ ac_x_libraries='$x_libraries'" { echo "$as_me:$LINENO: result: libraries $x_libraries, headers $x_includes" >&5 echo "${ECHO_T}libraries $x_libraries, headers $x_includes" >&6; } fi if test "$no_x" = yes; then # Not all programs may use this symbol, but it does not hurt to define it. cat >>confdefs.h <<\_ACEOF #define X_DISPLAY_MISSING 1 _ACEOF X_CFLAGS= X_PRE_LIBS= X_LIBS= X_EXTRA_LIBS= else if test -n "$x_includes"; then X_CFLAGS="$X_CFLAGS -I$x_includes" fi # It would also be nice to do this for all -L options, not just this one. if test -n "$x_libraries"; then X_LIBS="$X_LIBS -L$x_libraries" # For Solaris; some versions of Sun CC require a space after -R and # others require no space. Words are not sufficient . . . . { echo "$as_me:$LINENO: checking whether -R must be followed by a space" >&5 echo $ECHO_N "checking whether -R must be followed by a space... $ECHO_C" >&6; } ac_xsave_LIBS=$LIBS; LIBS="$LIBS -R$x_libraries" ac_xsave_c_werror_flag=$ac_c_werror_flag ac_c_werror_flag=yes cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { ; return 0; } _ACEOF 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } X_LIBS="$X_LIBS -R$x_libraries" else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 LIBS="$ac_xsave_LIBS -R $x_libraries" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { ; return 0; } _ACEOF 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then { echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6; } X_LIBS="$X_LIBS -R $x_libraries" else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 { echo "$as_me:$LINENO: result: neither works" >&5 echo "${ECHO_T}neither works" >&6; } fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext ac_c_werror_flag=$ac_xsave_c_werror_flag LIBS=$ac_xsave_LIBS fi # Check for system-dependent libraries X programs must link with. # Do this before checking for the system-independent R6 libraries # (-lICE), since we may need -lsocket or whatever for X linking. if test "$ISC" = yes; then X_EXTRA_LIBS="$X_EXTRA_LIBS -lnsl_s -linet" else # Martyn Johnson says this is needed for Ultrix, if the X # libraries were built with DECnet support. And Karl Berry says # the Alpha needs dnet_stub (dnet does not exist). ac_xsave_LIBS="$LIBS"; LIBS="$LIBS $X_LIBS -lX11" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* 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 XOpenDisplay (); int main () { return XOpenDisplay (); ; return 0; } _ACEOF 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then : else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 { echo "$as_me:$LINENO: checking for dnet_ntoa in -ldnet" >&5 echo $ECHO_N "checking for dnet_ntoa in -ldnet... $ECHO_C" >&6; } if test "${ac_cv_lib_dnet_dnet_ntoa+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ldnet $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* 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 dnet_ntoa (); int main () { return dnet_ntoa (); ; return 0; } _ACEOF 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then ac_cv_lib_dnet_dnet_ntoa=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_dnet_dnet_ntoa=no fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { echo "$as_me:$LINENO: result: $ac_cv_lib_dnet_dnet_ntoa" >&5 echo "${ECHO_T}$ac_cv_lib_dnet_dnet_ntoa" >&6; } if test $ac_cv_lib_dnet_dnet_ntoa = yes; then X_EXTRA_LIBS="$X_EXTRA_LIBS -ldnet" fi if test $ac_cv_lib_dnet_dnet_ntoa = no; then { echo "$as_me:$LINENO: checking for dnet_ntoa in -ldnet_stub" >&5 echo $ECHO_N "checking for dnet_ntoa in -ldnet_stub... $ECHO_C" >&6; } if test "${ac_cv_lib_dnet_stub_dnet_ntoa+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ldnet_stub $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* 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 dnet_ntoa (); int main () { return dnet_ntoa (); ; return 0; } _ACEOF 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then ac_cv_lib_dnet_stub_dnet_ntoa=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_dnet_stub_dnet_ntoa=no fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { echo "$as_me:$LINENO: result: $ac_cv_lib_dnet_stub_dnet_ntoa" >&5 echo "${ECHO_T}$ac_cv_lib_dnet_stub_dnet_ntoa" >&6; } if test $ac_cv_lib_dnet_stub_dnet_ntoa = yes; then X_EXTRA_LIBS="$X_EXTRA_LIBS -ldnet_stub" fi fi fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext LIBS="$ac_xsave_LIBS" # msh@cis.ufl.edu says -lnsl (and -lsocket) are needed for his 386/AT, # to get the SysV transport functions. # Chad R. Larson says the Pyramis MIS-ES running DC/OSx (SVR4) # needs -lnsl. # The nsl library prevents programs from opening the X display # on Irix 5.2, according to T.E. Dickey. # The functions gethostbyname, getservbyname, and inet_addr are # in -lbsd on LynxOS 3.0.1/i386, according to Lars Hecking. { echo "$as_me:$LINENO: checking for gethostbyname" >&5 echo $ECHO_N "checking for gethostbyname... $ECHO_C" >&6; } if test "${ac_cv_func_gethostbyname+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ /* Define gethostbyname to an innocuous variant, in case declares gethostbyname. For example, HP-UX 11i declares gettimeofday. */ #define gethostbyname innocuous_gethostbyname /* System header to define __stub macros and hopefully few prototypes, which can conflict with char gethostbyname (); below. Prefer to if __STDC__ is defined, since exists even on freestanding compilers. */ #ifdef __STDC__ # include #else # include #endif #undef gethostbyname /* 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 gethostbyname (); /* 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_gethostbyname || defined __stub___gethostbyname choke me #endif int main () { return gethostbyname (); ; return 0; } _ACEOF 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then ac_cv_func_gethostbyname=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_func_gethostbyname=no fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext fi { echo "$as_me:$LINENO: result: $ac_cv_func_gethostbyname" >&5 echo "${ECHO_T}$ac_cv_func_gethostbyname" >&6; } if test $ac_cv_func_gethostbyname = no; then { echo "$as_me:$LINENO: checking for gethostbyname in -lnsl" >&5 echo $ECHO_N "checking for gethostbyname in -lnsl... $ECHO_C" >&6; } if test "${ac_cv_lib_nsl_gethostbyname+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lnsl $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* 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 gethostbyname (); int main () { return gethostbyname (); ; return 0; } _ACEOF 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then ac_cv_lib_nsl_gethostbyname=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_nsl_gethostbyname=no fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { echo "$as_me:$LINENO: result: $ac_cv_lib_nsl_gethostbyname" >&5 echo "${ECHO_T}$ac_cv_lib_nsl_gethostbyname" >&6; } if test $ac_cv_lib_nsl_gethostbyname = yes; then X_EXTRA_LIBS="$X_EXTRA_LIBS -lnsl" fi if test $ac_cv_lib_nsl_gethostbyname = no; then { echo "$as_me:$LINENO: checking for gethostbyname in -lbsd" >&5 echo $ECHO_N "checking for gethostbyname in -lbsd... $ECHO_C" >&6; } if test "${ac_cv_lib_bsd_gethostbyname+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lbsd $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* 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 gethostbyname (); int main () { return gethostbyname (); ; return 0; } _ACEOF 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then ac_cv_lib_bsd_gethostbyname=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_bsd_gethostbyname=no fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { echo "$as_me:$LINENO: result: $ac_cv_lib_bsd_gethostbyname" >&5 echo "${ECHO_T}$ac_cv_lib_bsd_gethostbyname" >&6; } if test $ac_cv_lib_bsd_gethostbyname = yes; then X_EXTRA_LIBS="$X_EXTRA_LIBS -lbsd" fi fi fi # lieder@skyler.mavd.honeywell.com says without -lsocket, # socket/setsockopt and other routines are undefined under SCO ODT # 2.0. But -lsocket is broken on IRIX 5.2 (and is not necessary # on later versions), says Simon Leinen: it contains gethostby* # variants that don't use the name server (or something). -lsocket # must be given before -lnsl if both are needed. We assume that # if connect needs -lnsl, so does gethostbyname. { echo "$as_me:$LINENO: checking for connect" >&5 echo $ECHO_N "checking for connect... $ECHO_C" >&6; } if test "${ac_cv_func_connect+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ /* Define connect to an innocuous variant, in case declares connect. For example, HP-UX 11i declares gettimeofday. */ #define connect innocuous_connect /* System header to define __stub macros and hopefully few prototypes, which can conflict with char connect (); below. Prefer to if __STDC__ is defined, since exists even on freestanding compilers. */ #ifdef __STDC__ # include #else # include #endif #undef connect /* 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 connect (); /* 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_connect || defined __stub___connect choke me #endif int main () { return connect (); ; return 0; } _ACEOF 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then ac_cv_func_connect=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_func_connect=no fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext fi { echo "$as_me:$LINENO: result: $ac_cv_func_connect" >&5 echo "${ECHO_T}$ac_cv_func_connect" >&6; } if test $ac_cv_func_connect = no; then { echo "$as_me:$LINENO: checking for connect in -lsocket" >&5 echo $ECHO_N "checking for connect in -lsocket... $ECHO_C" >&6; } if test "${ac_cv_lib_socket_connect+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lsocket $X_EXTRA_LIBS $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* 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 connect (); int main () { return connect (); ; return 0; } _ACEOF 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then ac_cv_lib_socket_connect=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_socket_connect=no fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { echo "$as_me:$LINENO: result: $ac_cv_lib_socket_connect" >&5 echo "${ECHO_T}$ac_cv_lib_socket_connect" >&6; } if test $ac_cv_lib_socket_connect = yes; then X_EXTRA_LIBS="-lsocket $X_EXTRA_LIBS" fi fi # Guillermo Gomez says -lposix is necessary on A/UX. { echo "$as_me:$LINENO: checking for remove" >&5 echo $ECHO_N "checking for remove... $ECHO_C" >&6; } if test "${ac_cv_func_remove+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ /* Define remove to an innocuous variant, in case declares remove. For example, HP-UX 11i declares gettimeofday. */ #define remove innocuous_remove /* System header to define __stub macros and hopefully few prototypes, which can conflict with char remove (); below. Prefer to if __STDC__ is defined, since exists even on freestanding compilers. */ #ifdef __STDC__ # include #else # include #endif #undef remove /* 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 remove (); /* 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_remove || defined __stub___remove choke me #endif int main () { return remove (); ; return 0; } _ACEOF 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then ac_cv_func_remove=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_func_remove=no fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext fi { echo "$as_me:$LINENO: result: $ac_cv_func_remove" >&5 echo "${ECHO_T}$ac_cv_func_remove" >&6; } if test $ac_cv_func_remove = no; then { echo "$as_me:$LINENO: checking for remove in -lposix" >&5 echo $ECHO_N "checking for remove in -lposix... $ECHO_C" >&6; } if test "${ac_cv_lib_posix_remove+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lposix $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* 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 remove (); int main () { return remove (); ; return 0; } _ACEOF 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then ac_cv_lib_posix_remove=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_posix_remove=no fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { echo "$as_me:$LINENO: result: $ac_cv_lib_posix_remove" >&5 echo "${ECHO_T}$ac_cv_lib_posix_remove" >&6; } if test $ac_cv_lib_posix_remove = yes; then X_EXTRA_LIBS="$X_EXTRA_LIBS -lposix" fi fi # BSDI BSD/OS 2.1 needs -lipc for XOpenDisplay. { echo "$as_me:$LINENO: checking for shmat" >&5 echo $ECHO_N "checking for shmat... $ECHO_C" >&6; } if test "${ac_cv_func_shmat+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ /* Define shmat to an innocuous variant, in case declares shmat. For example, HP-UX 11i declares gettimeofday. */ #define shmat innocuous_shmat /* System header to define __stub macros and hopefully few prototypes, which can conflict with char shmat (); below. Prefer to if __STDC__ is defined, since exists even on freestanding compilers. */ #ifdef __STDC__ # include #else # include #endif #undef shmat /* 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 shmat (); /* 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_shmat || defined __stub___shmat choke me #endif int main () { return shmat (); ; return 0; } _ACEOF 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then ac_cv_func_shmat=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_func_shmat=no fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext fi { echo "$as_me:$LINENO: result: $ac_cv_func_shmat" >&5 echo "${ECHO_T}$ac_cv_func_shmat" >&6; } if test $ac_cv_func_shmat = no; then { echo "$as_me:$LINENO: checking for shmat in -lipc" >&5 echo $ECHO_N "checking for shmat in -lipc... $ECHO_C" >&6; } if test "${ac_cv_lib_ipc_shmat+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lipc $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* 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 shmat (); int main () { return shmat (); ; return 0; } _ACEOF 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then ac_cv_lib_ipc_shmat=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_ipc_shmat=no fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { echo "$as_me:$LINENO: result: $ac_cv_lib_ipc_shmat" >&5 echo "${ECHO_T}$ac_cv_lib_ipc_shmat" >&6; } if test $ac_cv_lib_ipc_shmat = yes; then X_EXTRA_LIBS="$X_EXTRA_LIBS -lipc" fi fi fi # Check for libraries that X11R6 Xt/Xaw programs need. ac_save_LDFLAGS=$LDFLAGS test -n "$x_libraries" && LDFLAGS="$LDFLAGS -L$x_libraries" # SM needs ICE to (dynamically) link under SunOS 4.x (so we have to # check for ICE first), but we must link in the order -lSM -lICE or # we get undefined symbols. So assume we have SM if we have ICE. # These have to be linked with before -lX11, unlike the other # libraries we check for below, so use a different variable. # John Interrante, Karl Berry { echo "$as_me:$LINENO: checking for IceConnectionNumber in -lICE" >&5 echo $ECHO_N "checking for IceConnectionNumber in -lICE... $ECHO_C" >&6; } if test "${ac_cv_lib_ICE_IceConnectionNumber+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lICE $X_EXTRA_LIBS $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* 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 IceConnectionNumber (); int main () { return IceConnectionNumber (); ; return 0; } _ACEOF 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then ac_cv_lib_ICE_IceConnectionNumber=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_ICE_IceConnectionNumber=no fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { echo "$as_me:$LINENO: result: $ac_cv_lib_ICE_IceConnectionNumber" >&5 echo "${ECHO_T}$ac_cv_lib_ICE_IceConnectionNumber" >&6; } if test $ac_cv_lib_ICE_IceConnectionNumber = yes; then X_PRE_LIBS="$X_PRE_LIBS -lSM -lICE" fi LDFLAGS=$ac_save_LDFLAGS 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 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_path_PKG_CONFIG+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&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" echo "$as_me:$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 { echo "$as_me:$LINENO: result: $PKG_CONFIG" >&5 echo "${ECHO_T}$PKG_CONFIG" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}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 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_path_ac_pt_PKG_CONFIG+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&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" echo "$as_me:$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 { echo "$as_me:$LINENO: result: $ac_pt_PKG_CONFIG" >&5 echo "${ECHO_T}$ac_pt_PKG_CONFIG" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi if test "x$ac_pt_PKG_CONFIG" = x; then PKG_CONFIG="" else case $cross_compiling:$ac_tool_warned in yes:) { echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools whose name does not start with the host triplet. If you think this configuration is useful to you, please write to autoconf@gnu.org." >&5 echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools whose name does not start with the host triplet. If you think this configuration is useful to you, please write to autoconf@gnu.org." >&2;} ac_tool_warned=yes ;; esac PKG_CONFIG=$ac_pt_PKG_CONFIG fi else PKG_CONFIG="$ac_cv_path_PKG_CONFIG" fi fi if test -n "$PKG_CONFIG"; then _pkg_min_version=0.9.0 { echo "$as_me:$LINENO: checking pkg-config is at least version $_pkg_min_version" >&5 echo $ECHO_N "checking pkg-config is at least version $_pkg_min_version... $ECHO_C" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then { echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } PKG_CONFIG="" fi fi pkg_failed=no { echo "$as_me:$LINENO: checking for IMLIB2" >&5 echo $ECHO_N "checking for IMLIB2... $ECHO_C" >&6; } if test -n "$PKG_CONFIG"; then if test -n "$IMLIB2_CFLAGS"; then pkg_cv_IMLIB2_CFLAGS="$IMLIB2_CFLAGS" else if test -n "$PKG_CONFIG" && \ { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"imlib2\"") >&5 ($PKG_CONFIG --exists --print-errors "imlib2") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then pkg_cv_IMLIB2_CFLAGS=`$PKG_CONFIG --cflags "imlib2" 2>/dev/null` else pkg_failed=yes fi fi else pkg_failed=untried fi if test -n "$PKG_CONFIG"; then if test -n "$IMLIB2_LIBS"; then pkg_cv_IMLIB2_LIBS="$IMLIB2_LIBS" else if test -n "$PKG_CONFIG" && \ { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"imlib2\"") >&5 ($PKG_CONFIG --exists --print-errors "imlib2") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then pkg_cv_IMLIB2_LIBS=`$PKG_CONFIG --libs "imlib2" 2>/dev/null` else pkg_failed=yes fi fi else pkg_failed=untried fi if test $pkg_failed = yes; then if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then IMLIB2_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "imlib2"` else IMLIB2_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "imlib2"` fi # Put the nasty error message in config.log where it belongs echo "$IMLIB2_PKG_ERRORS" >&5 { { echo "$as_me:$LINENO: error: Package requirements (imlib2) were not met: $IMLIB2_PKG_ERRORS Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. Alternatively, you may set the environment variables IMLIB2_CFLAGS and IMLIB2_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. " >&5 echo "$as_me: error: Package requirements (imlib2) were not met: $IMLIB2_PKG_ERRORS Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. Alternatively, you may set the environment variables IMLIB2_CFLAGS and IMLIB2_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. " >&2;} { (exit 1); exit 1; }; } elif test $pkg_failed = untried; then { { echo "$as_me:$LINENO: error: 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. Alternatively, you may set the environment variables IMLIB2_CFLAGS and IMLIB2_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. To get pkg-config, see . See \`config.log' for more details." >&5 echo "$as_me: error: 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. Alternatively, you may set the environment variables IMLIB2_CFLAGS and IMLIB2_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. To get pkg-config, see . See \`config.log' for more details." >&2;} { (exit 1); exit 1; }; } else IMLIB2_CFLAGS=$pkg_cv_IMLIB2_CFLAGS IMLIB2_LIBS=$pkg_cv_IMLIB2_LIBS { echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6; } : fi PIXMAP_PATH="/usr/share/xteddy" ac_config_files="$ac_config_files Makefile html/Makefile images/Makefile" cat >confcache <<\_ACEOF # This file is a shell script that caches the results of configure # tests run on this system so they can be shared between configure # scripts and configure runs, see configure's option --config-cache. # It is not useful on other systems. If it contains results you don't # want to keep, you may remove or edit it. # # config.status only pays attention to the cache file if you give it # the --recheck option to rerun configure. # # `ac_cv_env_foo' variables (set or unset) will be overridden when # loading this file, other *unset* `ac_cv_foo' will be assigned the # following values. _ACEOF # The following way of writing the cache mishandles newlines in values, # but we know of no workaround that is simple, portable, and efficient. # So, we kill variables containing newlines. # Ultrix sh set writes to stderr and can't be redirected directly, # and sets the high bit in the cache file unless we assign to the vars. ( for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do eval ac_val=\$$ac_var case $ac_val in #( *${as_nl}*) case $ac_var in #( *_cv_*) { echo "$as_me:$LINENO: WARNING: Cache variable $ac_var contains a newline." >&5 echo "$as_me: WARNING: Cache variable $ac_var contains a newline." >&2;} ;; esac case $ac_var in #( _ | IFS | as_nl) ;; #( *) $as_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" && { echo "$as_me:$LINENO: updating cache $cache_file" >&5 echo "$as_me: updating cache $cache_file" >&6;} cat confcache >$cache_file else { echo "$as_me:$LINENO: not updating unwritable cache $cache_file" >&5 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=' 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=`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. ac_libobjs="$ac_libobjs \${LIBOBJDIR}$ac_i\$U.$ac_objext" ac_ltlibobjs="$ac_ltlibobjs \${LIBOBJDIR}$ac_i"'$U.lo' done LIBOBJS=$ac_libobjs LTLIBOBJS=$ac_ltlibobjs if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then { { echo "$as_me:$LINENO: error: conditional \"AMDEP\" was never defined. Usually this means the macro was only invoked conditionally." >&5 echo "$as_me: error: conditional \"AMDEP\" was never defined. Usually this means the macro was only invoked conditionally." >&2;} { (exit 1); exit 1; }; } fi if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then { { echo "$as_me:$LINENO: error: conditional \"am__fastdepCC\" was never defined. Usually this means the macro was only invoked conditionally." >&5 echo "$as_me: error: conditional \"am__fastdepCC\" was never defined. Usually this means the macro was only invoked conditionally." >&2;} { (exit 1); exit 1; }; } fi : ${CONFIG_STATUS=./config.status} ac_clean_files_save=$ac_clean_files ac_clean_files="$ac_clean_files $CONFIG_STATUS" { echo "$as_me:$LINENO: creating $CONFIG_STATUS" >&5 echo "$as_me: creating $CONFIG_STATUS" >&6;} cat >$CONFIG_STATUS <<_ACEOF #! $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} _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF ## --------------------- ## ## 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=: # Zsh 3.x and 4.x performs 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 # PATH needs CR # 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 # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then echo "#! /bin/sh" >conf$$.sh echo "exit 0" >>conf$$.sh chmod +x conf$$.sh if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then PATH_SEPARATOR=';' else PATH_SEPARATOR=: fi rm -f conf$$.sh fi # Support unset when possible. if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then as_unset=unset else as_unset=false 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.) as_nl=' ' 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 echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 { (exit 1); exit 1; } fi # Work around bugs in pre-3.0 UWIN ksh. for as_var in ENV MAIL MAILPATH do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var done PS1='$ ' PS2='> ' PS4='+ ' # NLS nuisances. for as_var in \ LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \ LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \ LC_TELEPHONE LC_TIME do if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then eval $as_var=C; export $as_var else ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var fi done # Required to use basename. 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 # Name of the executable. as_me=`$as_basename -- "$0" || $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ X"$0" : 'X\(//\)$' \| \ X"$0" : 'X\(/\)' \| . 2>/dev/null || echo X/"$0" | sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/ q } /^X\/\(\/\/\)$/{ s//\1/ q } /^X\/\(\/\).*/{ s//\1/ q } s/.*/./; q'` # CDPATH. $as_unset CDPATH as_lineno_1=$LINENO as_lineno_2=$LINENO test "x$as_lineno_1" != "x$as_lineno_2" && test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2" || { # Create $as_me.lineno as a copy of $as_myself, but with $LINENO # uniformly replaced by the line number. The first 'sed' inserts a # line-number line after each line using $LINENO; the second 'sed' # does the real work. The second script uses 'N' to pair each # line-number line with the line containing $LINENO, and appends # trailing '-' during substitution so that $LINENO is not a special # case at line end. # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the # scripts with optimization help from Paolo Bonzini. 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" || { echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2 { (exit 1); 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 } if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then as_dirname=dirname else as_dirname=false fi ECHO_C= ECHO_N= ECHO_T= case `echo -n x` in -n*) case `echo 'x\c'` in *c*) ECHO_T=' ';; # ECHO_T is single tab character. *) ECHO_C='\c';; esac;; *) ECHO_N='-n';; esac if expr a : '\(a\)' >/dev/null 2>&1 && test "X`expr 00001 : '.*\(...\)'`" = X001; then as_expr=expr else as_expr=false fi 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 fi echo >conf$$.file 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 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=: 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 # 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 $as_me, which was generated by GNU Autoconf 2.61. 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 cat >>$CONFIG_STATUS <<_ACEOF # Files that config.status was made for. config_files="$ac_config_files" config_commands="$ac_config_commands" _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF ac_cs_usage="\ \`$as_me' instantiates files from templates according to the current configuration. Usage: $0 [OPTIONS] [FILE]... -h, --help print this help, then exit -V, --version print version number and configuration settings, then exit -q, --quiet 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 ." _ACEOF cat >>$CONFIG_STATUS <<_ACEOF ac_cs_version="\\ config.status configured by $0, generated by GNU Autoconf 2.61, with options \\"`echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\" Copyright (C) 2006 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' _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF # If no file are specified by the user, then we need to provide default # value. By we need to know if files were specified by the user. 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 ) echo "$ac_cs_version"; exit ;; --debug | --debu | --deb | --de | --d | -d ) debug=: ;; --file | --fil | --fi | --f ) $ac_shift CONFIG_FILES="$CONFIG_FILES $ac_optarg" ac_need_defaults=false;; --he | --h | --help | --hel | -h ) 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. -*) { echo "$as_me: error: unrecognized option: $1 Try \`$0 --help' for more information." >&2 { (exit 1); exit 1; }; } ;; *) ac_config_targets="$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 if \$ac_cs_recheck; then echo "running CONFIG_SHELL=$SHELL $SHELL $0 "$ac_configure_args \$ac_configure_extra_args " --no-create --no-recursion" >&6 CONFIG_SHELL=$SHELL export CONFIG_SHELL exec $SHELL "$0"$ac_configure_args \$ac_configure_extra_args --no-create --no-recursion fi _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF exec 5>>config.log { echo sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX ## Running $as_me. ## _ASBOX echo "$ac_log" } >&5 _ACEOF cat >>$CONFIG_STATUS <<_ACEOF # # INIT-COMMANDS # AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir" _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF # Handling of arguments. for ac_config_target in $ac_config_targets do case $ac_config_target in "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;; "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; "html/Makefile") CONFIG_FILES="$CONFIG_FILES html/Makefile" ;; "images/Makefile") CONFIG_FILES="$CONFIG_FILES images/Makefile" ;; *) { { echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&5 echo "$as_me: error: invalid argument: $ac_config_target" >&2;} { (exit 1); exit 1; }; };; 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 '{ (exit 1); 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") } || { echo "$me: cannot create a temporary directory in ." >&2 { (exit 1); exit 1; } } # # Set up the sed scripts for CONFIG_FILES section. # # No need to generate the scripts if there are no CONFIG_FILES. # This happens for instance when ./config.status config.h if test -n "$CONFIG_FILES"; then _ACEOF ac_delim='%!_!# ' for ac_last_try in false false false false false :; do cat >conf$$subs.sed <<_ACEOF SHELL!$SHELL$ac_delim PATH_SEPARATOR!$PATH_SEPARATOR$ac_delim PACKAGE_NAME!$PACKAGE_NAME$ac_delim PACKAGE_TARNAME!$PACKAGE_TARNAME$ac_delim PACKAGE_VERSION!$PACKAGE_VERSION$ac_delim PACKAGE_STRING!$PACKAGE_STRING$ac_delim PACKAGE_BUGREPORT!$PACKAGE_BUGREPORT$ac_delim exec_prefix!$exec_prefix$ac_delim prefix!$prefix$ac_delim program_transform_name!$program_transform_name$ac_delim bindir!$bindir$ac_delim sbindir!$sbindir$ac_delim libexecdir!$libexecdir$ac_delim datarootdir!$datarootdir$ac_delim datadir!$datadir$ac_delim sysconfdir!$sysconfdir$ac_delim sharedstatedir!$sharedstatedir$ac_delim localstatedir!$localstatedir$ac_delim includedir!$includedir$ac_delim oldincludedir!$oldincludedir$ac_delim docdir!$docdir$ac_delim infodir!$infodir$ac_delim htmldir!$htmldir$ac_delim dvidir!$dvidir$ac_delim pdfdir!$pdfdir$ac_delim psdir!$psdir$ac_delim libdir!$libdir$ac_delim localedir!$localedir$ac_delim mandir!$mandir$ac_delim DEFS!$DEFS$ac_delim ECHO_C!$ECHO_C$ac_delim ECHO_N!$ECHO_N$ac_delim ECHO_T!$ECHO_T$ac_delim LIBS!$LIBS$ac_delim build_alias!$build_alias$ac_delim host_alias!$host_alias$ac_delim target_alias!$target_alias$ac_delim INSTALL_PROGRAM!$INSTALL_PROGRAM$ac_delim INSTALL_SCRIPT!$INSTALL_SCRIPT$ac_delim INSTALL_DATA!$INSTALL_DATA$ac_delim am__isrc!$am__isrc$ac_delim CYGPATH_W!$CYGPATH_W$ac_delim PACKAGE!$PACKAGE$ac_delim VERSION!$VERSION$ac_delim ACLOCAL!$ACLOCAL$ac_delim AUTOCONF!$AUTOCONF$ac_delim AUTOMAKE!$AUTOMAKE$ac_delim AUTOHEADER!$AUTOHEADER$ac_delim MAKEINFO!$MAKEINFO$ac_delim install_sh!$install_sh$ac_delim STRIP!$STRIP$ac_delim INSTALL_STRIP_PROGRAM!$INSTALL_STRIP_PROGRAM$ac_delim mkdir_p!$mkdir_p$ac_delim AWK!$AWK$ac_delim SET_MAKE!$SET_MAKE$ac_delim am__leading_dot!$am__leading_dot$ac_delim AMTAR!$AMTAR$ac_delim am__tar!$am__tar$ac_delim am__untar!$am__untar$ac_delim CC!$CC$ac_delim CFLAGS!$CFLAGS$ac_delim LDFLAGS!$LDFLAGS$ac_delim CPPFLAGS!$CPPFLAGS$ac_delim ac_ct_CC!$ac_ct_CC$ac_delim EXEEXT!$EXEEXT$ac_delim OBJEXT!$OBJEXT$ac_delim DEPDIR!$DEPDIR$ac_delim am__include!$am__include$ac_delim am__quote!$am__quote$ac_delim AMDEP_TRUE!$AMDEP_TRUE$ac_delim AMDEP_FALSE!$AMDEP_FALSE$ac_delim AMDEPBACKSLASH!$AMDEPBACKSLASH$ac_delim CCDEPMODE!$CCDEPMODE$ac_delim am__fastdepCC_TRUE!$am__fastdepCC_TRUE$ac_delim am__fastdepCC_FALSE!$am__fastdepCC_FALSE$ac_delim XMKMF!$XMKMF$ac_delim CPP!$CPP$ac_delim X_CFLAGS!$X_CFLAGS$ac_delim X_PRE_LIBS!$X_PRE_LIBS$ac_delim X_LIBS!$X_LIBS$ac_delim X_EXTRA_LIBS!$X_EXTRA_LIBS$ac_delim PKG_CONFIG!$PKG_CONFIG$ac_delim IMLIB2_CFLAGS!$IMLIB2_CFLAGS$ac_delim IMLIB2_LIBS!$IMLIB2_LIBS$ac_delim PIXMAP_PATH!$PIXMAP_PATH$ac_delim LIBOBJS!$LIBOBJS$ac_delim LTLIBOBJS!$LTLIBOBJS$ac_delim _ACEOF if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 87; then break elif $ac_last_try; then { { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5 echo "$as_me: error: could not make $CONFIG_STATUS" >&2;} { (exit 1); exit 1; }; } else ac_delim="$ac_delim!$ac_delim _$ac_delim!! " fi done ac_eof=`sed -n '/^CEOF[0-9]*$/s/CEOF/0/p' conf$$subs.sed` if test -n "$ac_eof"; then ac_eof=`echo "$ac_eof" | sort -nru | sed 1q` ac_eof=`expr $ac_eof + 1` fi cat >>$CONFIG_STATUS <<_ACEOF cat >"\$tmp/subs-1.sed" <<\CEOF$ac_eof /@[a-zA-Z_][a-zA-Z_0-9]*@/!b end _ACEOF sed ' s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g s/^/s,@/; s/!/@,|#_!!_#|/ :n t n s/'"$ac_delim"'$/,g/; t s/$/\\/; p N; s/^.*\n//; s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g; b n ' >>$CONFIG_STATUS >$CONFIG_STATUS <<_ACEOF :end s/|#_!!_#|//g CEOF$ac_eof _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 fi # test -n "$CONFIG_FILES" for ac_tag in :F $CONFIG_FILES :C $CONFIG_COMMANDS do case $ac_tag in :[FHLC]) ac_mode=$ac_tag; continue;; esac case $ac_mode$ac_tag in :[FHL]*:*);; :L* | :C*:*) { { echo "$as_me:$LINENO: error: Invalid tag $ac_tag." >&5 echo "$as_me: error: Invalid tag $ac_tag." >&2;} { (exit 1); exit 1; }; };; :[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 || { { echo "$as_me:$LINENO: error: cannot find input file: $ac_f" >&5 echo "$as_me: error: cannot find input file: $ac_f" >&2;} { (exit 1); exit 1; }; };; esac ac_file_inputs="$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 "`IFS=: echo $* | sed 's|^[^:]*/||;s|:[^:]*/|, |g'`" by configure." if test x"$ac_file" != x-; then configure_input="$ac_file. $configure_input" { echo "$as_me:$LINENO: creating $ac_file" >&5 echo "$as_me: creating $ac_file" >&6;} fi case $ac_tag in *:-:* | *:-) cat >"$tmp/stdin";; 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 || 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" case $as_dir in #( -*) as_dir=./$as_dir;; esac test -d "$as_dir" || { $as_mkdir_p && mkdir -p "$as_dir"; } || { as_dirs= while :; do case $as_dir in #( *\'*) as_qdir=`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 || 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" || { { echo "$as_me:$LINENO: error: cannot create directory $as_dir" >&5 echo "$as_me: error: cannot create directory $as_dir" >&2;} { (exit 1); exit 1; }; }; } ac_builddir=. case "$ac_dir" in .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'` # A ".." for each directory in $ac_dir_suffix. ac_top_builddir_sub=`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 # 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= case `sed -n '/datarootdir/ { p q } /@datadir@/p /@docdir@/p /@infodir@/p /@localedir@/p /@mandir@/p ' $ac_file_inputs` in *datarootdir*) ac_datarootdir_seen=yes;; *@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*) { echo "$as_me:$LINENO: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;} _ACEOF cat >>$CONFIG_STATUS <<_ACEOF 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 sed "$ac_vpsub $extrasub _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF :t /@[a-zA-Z_][a-zA-Z_0-9]*@/!b s&@configure_input@&$configure_input&;t t s&@top_builddir@&$ac_top_builddir_sub&;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 " $ac_file_inputs | sed -f "$tmp/subs-1.sed" >$tmp/out 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"; } && { echo "$as_me:$LINENO: WARNING: $ac_file contains a reference to the variable \`datarootdir' which seems to be undefined. Please make sure it is defined." >&5 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 ;; :C) { echo "$as_me:$LINENO: executing $ac_file commands" >&5 echo "$as_me: executing $ac_file commands" >&6;} ;; esac case $ac_file$ac_mode in "depfiles":C) test x"$AMDEP_TRUE" != x"" || for mf in $CONFIG_FILES; 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 || 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 || 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 case $as_dir in #( -*) as_dir=./$as_dir;; esac test -d "$as_dir" || { $as_mkdir_p && mkdir -p "$as_dir"; } || { as_dirs= while :; do case $as_dir in #( *\'*) as_qdir=`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 || 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" || { { echo "$as_me:$LINENO: error: cannot create directory $as_dir" >&5 echo "$as_me: error: cannot create directory $as_dir" >&2;} { (exit 1); exit 1; }; }; } # echo "creating $dirpart/$file" echo '# dummy' > "$dirpart/$file" done done ;; esac done # for ac_tag { (exit 0); exit 0; } _ACEOF chmod +x $CONFIG_STATUS ac_clean_files=$ac_clean_files_save # 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 || { (exit 1); exit 1; } fi xteddy-2.2/AUTHORS0000644000265600020320000000041111143371632010644 00000000000000Stefan Gustavson (stegu@itn.liu.se) Basic program Andreas Tille (tille@debian.org) some automake stuff and loading of different pixmaps Replacing libXPM by Imlib Richard Neill further improvements and fixes more images xteddy-2.2/COPYING0000644000265600020320000004310511143371632010636 00000000000000 GNU GENERAL PUBLIC LICENSE Version 2, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc. 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Library General Public License instead.) You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. The precise terms and conditions for copying, distribution and modification follow. GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. 1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. 4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. 6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. 7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. 10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) 19yy 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 Also add information on how to contact you by electronic and paper mail. If the program is interactive, make it output a short notice like this when it starts in an interactive mode: Gnomovision version 69, Copyright (C) 19yy name of author Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than `show w' and `show c'; they could even be mouse-clicks or menu items--whatever suits your program. You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here is a sample; alter the names: Yoyodyne, Inc., hereby disclaims all copyright interest in the program `Gnomovision' (which makes passes at compilers) written by James Hacker. , 1 April 1989 Ty Coon, President of Vice This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Library General Public License instead of this License. xteddy-2.2/ChangeLog0000644000265600020320000001235611155135321011355 00000000000000XTeddy 2.2: Wed Feb 25 2009 07:25:17 Peter De Wachter * Ported to Imlib2 * Applied patch to work with gcc 4.4 (Thanks to Lubomir Rintel ) * Added -nocursor option (Thanks to Frank Heckenbach ) XTeddy 2.1: Wed May 25 2005 07:25:17 Andreas Tille (tille@debian.org) * Merged changes of the Debian released version which are - new automake stuff - xteddy.1 -> xteddy.6 because it belongs to games * Removed precompiled stuff and Makefiles out of the tarball (the Makefile will be created by configure and precompiled stuff should not be included anyway) * Moved single image credits to only one file: images.credits Wed May 25 2005 02:25:21 Richard Neill (rn214@hermes.cam.ac.uk) * option to use -f rather than -F. This seems more natural. (a fix for the resultant collision with -float has been added) * option to have a space after the -f/-F before the filename. eg 'xteddy -f xtuxxy'. This is more usual - and indeed, I was rather confused to find it did not initially work like that. The original behaviour (without the space) is still valid. * added options -h, --help for help. Added -v for version. * added /usr/local/share/xteddy to the default search path. However, this may be a symptom of a broken configure script, since the default search path does not depend on the value of --prefix at compile time. You may wish to remove this! * Fixed a very subtle bug whereby running ./xteddy would fail. If the current directory contains a file called xteddy, then this image is the one that will be displayed. But, if we are executing from the source directory, then the file called xteddy therein is in fact an executable, not an image. There is a slightly ugly hack involving the comparison of the inode numbers to test for this case. [Even more subtle is if the program is invoked as "xteddy" without the path, and the working directory contains a subdirectory called xteddy...] * Fixed: if invoked as etg 'xteddy - f xpenguin' (missing the .png), then it won't work, unless there is a file called xpenguin in the CURRENT directory. That is what this line does: strcat(sbuf, "."); /* missing the dot before the extension! */ * Improved error message if the file is not a valid image. * Added Esc key to quit as well as the existing "q" and "Q". * Changed man page: when you type q on him, he "exits". "die" is not a good word to ever use with a teddy! * updated man page and code comments to reflect the changes. * Updated Makefile. * Added a few more images: xcherubino (rabbit), xtrouble (teddy), xpuppy (labrador), xhedgehog. These, + source are in the xteddy_extras directory, so you'll need to move them into the right place. Idea: it might be nice if right-clicking on an existing xteddy would bring up an option to quit. Idea: it might be nice if an unrecognised option (eg "xteddy -X") brought up the help message. Idea: it might be nice if we could also have xmoggy -> a cat. Note: I haven't changed things like your changelog, and the Authors file. Note: some of my image files are in 2 places (duplicated rather than symlinks, for convenience) XTeddy 2.0.2: Mon Jun 30 08:53:17 2003 Andreas Tille (tille@debian.org) * Changed e-mail adress of Andreas Tille * Added menu icons * Renamed xteddy.1 to xteddy.6 * Fixed xtoys XTeddy 2.0.1: Mon Aug 2 10:11:12 1999 Andreas Tille (tille@physik.uni-halle.de) * renamed xtux to xtuxxy to avoid name space pollution XTeddy 2.0: Thu Apr 6 13:41:17 1999 Andreas Tille (tille@physik.uni-halle.de) * Some bugfixes XTeddy 1.9: Thu Dec 20 29:44:17 1998 Andreas Tille (tille@physik.uni-halle.de) * Replace libXPM by Imlib, read various image file formats * delete icon stuff (why and how should we iconify XTeddy??) * removed -mono option because user supported images normally will not support a gray map * Thanks to Hanno Mueller for the xduck pixmap. XTeddy 1.2: Thu Jan 07 16:47:17 1999 Andreas Tille (tille@physik.uni-halle.de) * corrected a stupid bug which let xteddy fail if called with absolute path Thu Oct 22 16:56:11 1998 Andreas Tille (tille@physik.uni-halle.de) * added a smoother (nicer) xteddy named only teddy * New xpenguin with decreased colors which gives a greater possibilty to work on poor colored displays XTeddy 1.1: Thu Jun 10 09:17:13 1998 Andreas Tille (tille@physik.uni-halle.de) * Better xpenguin pixmap from Stefan Gustavson * New e-mail address from Stefan Gustavson in the docs Thu May 03 08:44:13 1998 Andreas Tille (tille@physik.uni-halle.de) * Added xpenguin pixmap which was created by Alex Romosan (Thanks Alex) Thu Apr 22 17:56:11 1998 Andreas Tille (tille@physik.uni-halle.de) * -Fname option added to give the chance of loading different pixmaps * Manpage updated according to this stuff * xteddy.README: Imake stuff description replaced by configure description Thu Apr 02 11:11:11 1998 Andreas Tille (tille@physik.uni-halle.de) * automake Stuff added (Makefile.am, configure.in) * deleted patchlevel.h because it's job is done by automake xteddy-2.2/INSTALL0000644000265600020320000001722711143371632010642 00000000000000Basic 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, a file `config.cache' that saves the results of its tests to speed up reconfiguring, and a file `config.log' containing compiler output (useful mainly for debugging `configure'). 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 at some point `config.cache' contains results you don't want to keep, you may remove or edit it. The file `configure.in' is used to create `configure' by a program called `autoconf'. You only need `configure.in' 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. You can give `configure' initial values for variables by setting them in the environment. Using a Bourne-compatible shell, you can do that on the command line like this: CC=c89 CFLAGS=-O2 LIBS=-lposix ./configure Or on systems that have the `env' program, you can do it like this: env CPPFLAGS=-I/usr/local/include LDFLAGS=-s ./configure 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 supports 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' will install the package's files in `/usr/local/bin', `/usr/local/man', etc. You can specify an installation prefix other than `/usr/local' by giving `configure' the option `--prefix=PATH'. You can specify separate installation prefixes for architecture-specific files and architecture-independent files. If you give `configure' the option `--exec-prefix=PATH', the package will use PATH as the prefix for installing programs and libraries. Documentation and other data files will still use the regular prefix. In addition, if you use an unusual directory layout you can give options like `--bindir=PATH' 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' can not figure out automatically, but needs to determine by the type of host the package will run on. Usually `configure' can figure that out, but if it prints a message saying it can not guess the host type, give it the `--host=TYPE' option. TYPE can either be a short name for the system type, such as `sun4', or a canonical name with three fields: CPU-COMPANY-SYSTEM 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 host type. If you are building compiler tools for cross-compiling, you can also use the `--target=TYPE' option to select the type of system they will produce code for and the `--build=TYPE' option to select the type of system on which you are compiling the package. 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. Operation Controls ================== `configure' recognizes the following options to control how it operates. `--cache-file=FILE' Use and save the results of the tests in FILE instead of `./config.cache'. Set FILE to `/dev/null' to disable caching, for debugging `configure'. `--help' Print a summary of the options to `configure', and exit. `--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. `--version' Print the version of Autoconf used to generate the `configure' script, and exit. `configure' also accepts some other, not widely useful, options. xteddy-2.2/NEWS0000644000265600020320000000365211151322752010303 000000000000002009-02-25: * Ported to Imlib2 (Thanks to Peter De Wachter ) 1999-08-02: (2.0.1) Andreas Tille * renamed xtux to xtuxxy to avoid name space pollution 1999-03-25: (2.0) Andreas Tille * New pixmaps: xtux: Hanno Mueller xorca: Jaime E. Villate xalex, xbobo, xbrummi, xklitze, xnamu, xruessel: Andreas Tille * xteddy_test script which shows _all_ available pixmaps * xtoys script which randomly chooses a pixmap 1998-12-20: (1.9) Andreas Tille * Replaxe libXPM by Imlib, load various image file formats * New pixmaps: xpenguin: Alex Romosan xduck: Hanno Mueller /* 1997-08-07: (1.0.3) */ /* Added -display and -noquit options. Changed the */ /* names of options "-f" and "-w" to "-float" and */ /* "-wm" for clarity reasons. */ /* 1994-02-11: (1.0.2) Touched up the icon bitmap. */ /* Made xteddy aware of reparenting in order to */ /* get the coordinates right for mouse movements. */ /* Joined the color and grayscale pixmaps into one */ /* single file. The choice between grayscale or */ /* color is now made by the Xpm library function. */ /* 1994-02-01: (1.0.1) Compacted the large pixmap */ /* files to 1 char per pixel to save about 100K */ /* in both the source and the executable. */ /* Fixed some minor bugs to compile on other */ /* platforms than Sun. */ /* Added a command-line option -w to make xteddy */ /* use the window manager if desired. */ /* Added a manpage. (Thanks to Reinhard Zierke) */ /* Added an option -f to make xteddy float on top */ /* of all windows. (suggested by Bert Gijsbers) */ /* 1994-01-20: First working version (1.0). */ /* Supports mono, grayscale and color displays. */ xteddy-2.2/config.guess0000755000265600020320000012753411153061233012126 00000000000000#! /bin/sh # Attempt to guess a canonical system name. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, # 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 # Free Software Foundation, Inc. timestamp='2008-01-23' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA # 02110-1301, 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. # Originally written by Per Bothner . # Please send patches to . Submit a context # diff and a properly formatted ChangeLog entry. # # This script attempts to guess a canonical system name similar to # config.sub. If it succeeds, it prints the system name on stdout, and # exits with 0. Otherwise, it exits with 1. # # The plan is that this can be called by configure scripts if you # don't specify an explicit build system type. me=`echo "$0" | sed -e 's,.*/,,'` usage="\ Usage: $0 [OPTION] Output the configuration name of the system \`$me' is run on. Operation modes: -h, --help print this help, then exit -t, --time-stamp print date of last modification, then exit -v, --version print version number, then exit Report bugs and patches to ." version="\ GNU config.guess ($timestamp) Originally written by Per Bothner. Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." help=" Try \`$me --help' for more information." # Parse command line while test $# -gt 0 ; do case $1 in --time-stamp | --time* | -t ) echo "$timestamp" ; exit ;; --version | -v ) echo "$version" ; exit ;; --help | --h* | -h ) echo "$usage"; exit ;; -- ) # Stop option processing shift; break ;; - ) # Use stdin as input. break ;; -* ) echo "$me: invalid option $1$help" >&2 exit 1 ;; * ) break ;; esac done if test $# != 0; then echo "$me: too many arguments$help" >&2 exit 1 fi trap 'exit 1' 1 2 15 # CC_FOR_BUILD -- compiler used by this script. Note that the use of a # compiler to aid in system detection is discouraged as it requires # temporary files to be created and, as you can see below, it is a # headache to deal with in a portable fashion. # Historically, `CC_FOR_BUILD' used to be named `HOST_CC'. We still # use `HOST_CC' if defined, but it is deprecated. # Portable tmp directory creation inspired by the Autoconf team. set_cc_for_build=' trap "exitcode=\$?; (rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null) && exit \$exitcode" 0 ; trap "rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null; exit 1" 1 2 13 15 ; : ${TMPDIR=/tmp} ; { tmp=`(umask 077 && mktemp -d "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } || { test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir $tmp) ; } || { tmp=$TMPDIR/cg-$$ && (umask 077 && mkdir $tmp) && echo "Warning: creating insecure temp directory" >&2 ; } || { echo "$me: cannot create a temporary directory in $TMPDIR" >&2 ; exit 1 ; } ; dummy=$tmp/dummy ; tmpfiles="$dummy.c $dummy.o $dummy.rel $dummy" ; case $CC_FOR_BUILD,$HOST_CC,$CC in ,,) echo "int x;" > $dummy.c ; for c in cc gcc c89 c99 ; do if ($c -c -o $dummy.o $dummy.c) >/dev/null 2>&1 ; then CC_FOR_BUILD="$c"; break ; fi ; done ; if test x"$CC_FOR_BUILD" = x ; then CC_FOR_BUILD=no_compiler_found ; fi ;; ,,*) CC_FOR_BUILD=$CC ;; ,*,*) CC_FOR_BUILD=$HOST_CC ;; esac ; set_cc_for_build= ;' # This is needed to find uname on a Pyramid OSx when run in the BSD universe. # (ghazi@noc.rutgers.edu 1994-08-24) if (test -f /.attbin/uname) >/dev/null 2>&1 ; then PATH=$PATH:/.attbin ; export PATH fi UNAME_MACHINE=`(uname -m) 2>/dev/null` || UNAME_MACHINE=unknown UNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEASE=unknown UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown # Note: order is significant - the case branches are not exclusive. case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in *:NetBSD:*:*) # NetBSD (nbsd) targets should (where applicable) match one or # more of the tupples: *-*-netbsdelf*, *-*-netbsdaout*, # *-*-netbsdecoff* and *-*-netbsd*. For targets that recently # switched to ELF, *-*-netbsd* would select the old # object file format. This provides both forward # compatibility and a consistent mechanism for selecting the # object file format. # # Note: NetBSD doesn't particularly care about the vendor # portion of the name. We always set it to "unknown". sysctl="sysctl -n hw.machine_arch" UNAME_MACHINE_ARCH=`(/sbin/$sysctl 2>/dev/null || \ /usr/sbin/$sysctl 2>/dev/null || echo unknown)` case "${UNAME_MACHINE_ARCH}" in armeb) machine=armeb-unknown ;; arm*) machine=arm-unknown ;; sh3el) machine=shl-unknown ;; sh3eb) machine=sh-unknown ;; sh5el) machine=sh5le-unknown ;; *) machine=${UNAME_MACHINE_ARCH}-unknown ;; esac # The Operating System including object format, if it has switched # to ELF recently, or will in the future. case "${UNAME_MACHINE_ARCH}" in arm*|i386|m68k|ns32k|sh3*|sparc|vax) eval $set_cc_for_build if echo __ELF__ | $CC_FOR_BUILD -E - 2>/dev/null \ | grep __ELF__ >/dev/null then # Once all utilities can be ECOFF (netbsdecoff) or a.out (netbsdaout). # Return netbsd for either. FIX? os=netbsd else os=netbsdelf fi ;; *) os=netbsd ;; esac # The OS release # Debian GNU/NetBSD machines have a different userland, and # thus, need a distinct triplet. However, they do not need # kernel version information, so it can be replaced with a # suitable tag, in the style of linux-gnu. case "${UNAME_VERSION}" in Debian*) release='-gnu' ;; *) release=`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/\./'` ;; esac # Since CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM: # contains redundant information, the shorter form: # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used. echo "${machine}-${os}${release}" exit ;; *:OpenBSD:*:*) UNAME_MACHINE_ARCH=`arch | sed 's/OpenBSD.//'` echo ${UNAME_MACHINE_ARCH}-unknown-openbsd${UNAME_RELEASE} exit ;; *:ekkoBSD:*:*) echo ${UNAME_MACHINE}-unknown-ekkobsd${UNAME_RELEASE} exit ;; *:SolidBSD:*:*) echo ${UNAME_MACHINE}-unknown-solidbsd${UNAME_RELEASE} exit ;; macppc:MirBSD:*:*) echo powerpc-unknown-mirbsd${UNAME_RELEASE} exit ;; *:MirBSD:*:*) echo ${UNAME_MACHINE}-unknown-mirbsd${UNAME_RELEASE} exit ;; alpha:OSF1:*:*) case $UNAME_RELEASE in *4.0) UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $3}'` ;; *5.*) UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $4}'` ;; esac # According to Compaq, /usr/sbin/psrinfo has been available on # OSF/1 and Tru64 systems produced since 1995. I hope that # covers most systems running today. This code pipes the CPU # types through head -n 1, so we only detect the type of CPU 0. ALPHA_CPU_TYPE=`/usr/sbin/psrinfo -v | sed -n -e 's/^ The alpha \(.*\) processor.*$/\1/p' | head -n 1` case "$ALPHA_CPU_TYPE" in "EV4 (21064)") UNAME_MACHINE="alpha" ;; "EV4.5 (21064)") UNAME_MACHINE="alpha" ;; "LCA4 (21066/21068)") UNAME_MACHINE="alpha" ;; "EV5 (21164)") UNAME_MACHINE="alphaev5" ;; "EV5.6 (21164A)") UNAME_MACHINE="alphaev56" ;; "EV5.6 (21164PC)") UNAME_MACHINE="alphapca56" ;; "EV5.7 (21164PC)") UNAME_MACHINE="alphapca57" ;; "EV6 (21264)") UNAME_MACHINE="alphaev6" ;; "EV6.7 (21264A)") UNAME_MACHINE="alphaev67" ;; "EV6.8CB (21264C)") UNAME_MACHINE="alphaev68" ;; "EV6.8AL (21264B)") UNAME_MACHINE="alphaev68" ;; "EV6.8CX (21264D)") UNAME_MACHINE="alphaev68" ;; "EV6.9A (21264/EV69A)") UNAME_MACHINE="alphaev69" ;; "EV7 (21364)") UNAME_MACHINE="alphaev7" ;; "EV7.9 (21364A)") UNAME_MACHINE="alphaev79" ;; esac # A Pn.n version is a patched version. # A Vn.n version is a released version. # A Tn.n version is a released field test version. # A Xn.n version is an unreleased experimental baselevel. # 1.2 uses "1.2" for uname -r. echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[PVTX]//' | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` exit ;; Alpha\ *:Windows_NT*:*) # How do we know it's Interix rather than the generic POSIX subsystem? # Should we change UNAME_MACHINE based on the output of uname instead # of the specific Alpha model? echo alpha-pc-interix exit ;; 21064:Windows_NT:50:3) echo alpha-dec-winnt3.5 exit ;; Amiga*:UNIX_System_V:4.0:*) echo m68k-unknown-sysv4 exit ;; *:[Aa]miga[Oo][Ss]:*:*) echo ${UNAME_MACHINE}-unknown-amigaos exit ;; *:[Mm]orph[Oo][Ss]:*:*) echo ${UNAME_MACHINE}-unknown-morphos exit ;; *:OS/390:*:*) echo i370-ibm-openedition exit ;; *:z/VM:*:*) echo s390-ibm-zvmoe exit ;; *:OS400:*:*) echo powerpc-ibm-os400 exit ;; arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*) echo arm-acorn-riscix${UNAME_RELEASE} exit ;; arm:riscos:*:*|arm:RISCOS:*:*) echo arm-unknown-riscos exit ;; SR2?01:HI-UX/MPP:*:* | SR8000:HI-UX/MPP:*:*) echo hppa1.1-hitachi-hiuxmpp exit ;; Pyramid*:OSx*:*:* | MIS*:OSx*:*:* | MIS*:SMP_DC-OSx*:*:*) # akee@wpdis03.wpafb.af.mil (Earle F. Ake) contributed MIS and NILE. if test "`(/bin/universe) 2>/dev/null`" = att ; then echo pyramid-pyramid-sysv3 else echo pyramid-pyramid-bsd fi exit ;; NILE*:*:*:dcosx) echo pyramid-pyramid-svr4 exit ;; DRS?6000:unix:4.0:6*) echo sparc-icl-nx6 exit ;; DRS?6000:UNIX_SV:4.2*:7* | DRS?6000:isis:4.2*:7*) case `/usr/bin/uname -p` in sparc) echo sparc-icl-nx7; exit ;; esac ;; sun4H:SunOS:5.*:*) echo sparc-hal-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*) echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; i86pc:SunOS:5.*:* | i86xen:SunOS:5.*:*) echo i386-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; sun4*:SunOS:6*:*) # According to config.sub, this is the proper way to canonicalize # SunOS6. Hard to guess exactly what SunOS6 will be like, but # it's likely to be more like Solaris than SunOS4. echo sparc-sun-solaris3`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; sun4*:SunOS:*:*) case "`/usr/bin/arch -k`" in Series*|S4*) UNAME_RELEASE=`uname -v` ;; esac # Japanese Language versions have a version number like `4.1.3-JL'. echo sparc-sun-sunos`echo ${UNAME_RELEASE}|sed -e 's/-/_/'` exit ;; sun3*:SunOS:*:*) echo m68k-sun-sunos${UNAME_RELEASE} exit ;; sun*:*:4.2BSD:*) UNAME_RELEASE=`(sed 1q /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null` test "x${UNAME_RELEASE}" = "x" && UNAME_RELEASE=3 case "`/bin/arch`" in sun3) echo m68k-sun-sunos${UNAME_RELEASE} ;; sun4) echo sparc-sun-sunos${UNAME_RELEASE} ;; esac exit ;; aushp:SunOS:*:*) echo sparc-auspex-sunos${UNAME_RELEASE} exit ;; # The situation for MiNT is a little confusing. The machine name # can be virtually everything (everything which is not # "atarist" or "atariste" at least should have a processor # > m68000). The system name ranges from "MiNT" over "FreeMiNT" # to the lowercase version "mint" (or "freemint"). Finally # the system name "TOS" denotes a system which is actually not # MiNT. But MiNT is downward compatible to TOS, so this should # be no problem. atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*) echo m68k-atari-mint${UNAME_RELEASE} exit ;; atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*) echo m68k-atari-mint${UNAME_RELEASE} exit ;; *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*) echo m68k-atari-mint${UNAME_RELEASE} exit ;; milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*) echo m68k-milan-mint${UNAME_RELEASE} exit ;; hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*) echo m68k-hades-mint${UNAME_RELEASE} exit ;; *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*) echo m68k-unknown-mint${UNAME_RELEASE} exit ;; m68k:machten:*:*) echo m68k-apple-machten${UNAME_RELEASE} exit ;; powerpc:machten:*:*) echo powerpc-apple-machten${UNAME_RELEASE} exit ;; RISC*:Mach:*:*) echo mips-dec-mach_bsd4.3 exit ;; RISC*:ULTRIX:*:*) echo mips-dec-ultrix${UNAME_RELEASE} exit ;; VAX*:ULTRIX*:*:*) echo vax-dec-ultrix${UNAME_RELEASE} exit ;; 2020:CLIX:*:* | 2430:CLIX:*:*) echo clipper-intergraph-clix${UNAME_RELEASE} exit ;; mips:*:*:UMIPS | mips:*:*:RISCos) eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #ifdef __cplusplus #include /* for printf() prototype */ int main (int argc, char *argv[]) { #else int main (argc, argv) int argc; char *argv[]; { #endif #if defined (host_mips) && defined (MIPSEB) #if defined (SYSTYPE_SYSV) printf ("mips-mips-riscos%ssysv\n", argv[1]); exit (0); #endif #if defined (SYSTYPE_SVR4) printf ("mips-mips-riscos%ssvr4\n", argv[1]); exit (0); #endif #if defined (SYSTYPE_BSD43) || defined(SYSTYPE_BSD) printf ("mips-mips-riscos%sbsd\n", argv[1]); exit (0); #endif #endif exit (-1); } EOF $CC_FOR_BUILD -o $dummy $dummy.c && dummyarg=`echo "${UNAME_RELEASE}" | sed -n 's/\([0-9]*\).*/\1/p'` && SYSTEM_NAME=`$dummy $dummyarg` && { echo "$SYSTEM_NAME"; exit; } echo mips-mips-riscos${UNAME_RELEASE} exit ;; Motorola:PowerMAX_OS:*:*) echo powerpc-motorola-powermax exit ;; Motorola:*:4.3:PL8-*) echo powerpc-harris-powermax exit ;; Night_Hawk:*:*:PowerMAX_OS | Synergy:PowerMAX_OS:*:*) echo powerpc-harris-powermax exit ;; Night_Hawk:Power_UNIX:*:*) echo powerpc-harris-powerunix exit ;; m88k:CX/UX:7*:*) echo m88k-harris-cxux7 exit ;; m88k:*:4*:R4*) echo m88k-motorola-sysv4 exit ;; m88k:*:3*:R3*) echo m88k-motorola-sysv3 exit ;; AViiON:dgux:*:*) # DG/UX returns AViiON for all architectures UNAME_PROCESSOR=`/usr/bin/uname -p` if [ $UNAME_PROCESSOR = mc88100 ] || [ $UNAME_PROCESSOR = mc88110 ] then if [ ${TARGET_BINARY_INTERFACE}x = m88kdguxelfx ] || \ [ ${TARGET_BINARY_INTERFACE}x = x ] then echo m88k-dg-dgux${UNAME_RELEASE} else echo m88k-dg-dguxbcs${UNAME_RELEASE} fi else echo i586-dg-dgux${UNAME_RELEASE} fi exit ;; M88*:DolphinOS:*:*) # DolphinOS (SVR3) echo m88k-dolphin-sysv3 exit ;; M88*:*:R3*:*) # Delta 88k system running SVR3 echo m88k-motorola-sysv3 exit ;; XD88*:*:*:*) # Tektronix XD88 system running UTekV (SVR3) echo m88k-tektronix-sysv3 exit ;; Tek43[0-9][0-9]:UTek:*:*) # Tektronix 4300 system running UTek (BSD) echo m68k-tektronix-bsd exit ;; *:IRIX*:*:*) echo mips-sgi-irix`echo ${UNAME_RELEASE}|sed -e 's/-/_/g'` exit ;; ????????:AIX?:[12].1:2) # AIX 2.2.1 or AIX 2.1.1 is RT/PC AIX. echo romp-ibm-aix # uname -m gives an 8 hex-code CPU id exit ;; # Note that: echo "'`uname -s`'" gives 'AIX ' i*86:AIX:*:*) echo i386-ibm-aix exit ;; ia64:AIX:*:*) if [ -x /usr/bin/oslevel ] ; then IBM_REV=`/usr/bin/oslevel` else IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} fi echo ${UNAME_MACHINE}-ibm-aix${IBM_REV} exit ;; *:AIX:2:3) if grep bos325 /usr/include/stdio.h >/dev/null 2>&1; then eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #include main() { if (!__power_pc()) exit(1); puts("powerpc-ibm-aix3.2.5"); exit(0); } EOF if $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` then echo "$SYSTEM_NAME" else echo rs6000-ibm-aix3.2.5 fi elif grep bos324 /usr/include/stdio.h >/dev/null 2>&1; then echo rs6000-ibm-aix3.2.4 else echo rs6000-ibm-aix3.2 fi exit ;; *:AIX:*:[456]) IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'` if /usr/sbin/lsattr -El ${IBM_CPU_ID} | grep ' POWER' >/dev/null 2>&1; then IBM_ARCH=rs6000 else IBM_ARCH=powerpc fi if [ -x /usr/bin/oslevel ] ; then IBM_REV=`/usr/bin/oslevel` else IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} fi echo ${IBM_ARCH}-ibm-aix${IBM_REV} exit ;; *:AIX:*:*) echo rs6000-ibm-aix exit ;; ibmrt:4.4BSD:*|romp-ibm:BSD:*) echo romp-ibm-bsd4.4 exit ;; ibmrt:*BSD:*|romp-ibm:BSD:*) # covers RT/PC BSD and echo romp-ibm-bsd${UNAME_RELEASE} # 4.3 with uname added to exit ;; # report: romp-ibm BSD 4.3 *:BOSX:*:*) echo rs6000-bull-bosx exit ;; DPX/2?00:B.O.S.:*:*) echo m68k-bull-sysv3 exit ;; 9000/[34]??:4.3bsd:1.*:*) echo m68k-hp-bsd exit ;; hp300:4.4BSD:*:* | 9000/[34]??:4.3bsd:2.*:*) echo m68k-hp-bsd4.4 exit ;; 9000/[34678]??:HP-UX:*:*) HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` case "${UNAME_MACHINE}" in 9000/31? ) HP_ARCH=m68000 ;; 9000/[34]?? ) HP_ARCH=m68k ;; 9000/[678][0-9][0-9]) if [ -x /usr/bin/getconf ]; then sc_cpu_version=`/usr/bin/getconf SC_CPU_VERSION 2>/dev/null` sc_kernel_bits=`/usr/bin/getconf SC_KERNEL_BITS 2>/dev/null` case "${sc_cpu_version}" in 523) HP_ARCH="hppa1.0" ;; # CPU_PA_RISC1_0 528) HP_ARCH="hppa1.1" ;; # CPU_PA_RISC1_1 532) # CPU_PA_RISC2_0 case "${sc_kernel_bits}" in 32) HP_ARCH="hppa2.0n" ;; 64) HP_ARCH="hppa2.0w" ;; '') HP_ARCH="hppa2.0" ;; # HP-UX 10.20 esac ;; esac fi if [ "${HP_ARCH}" = "" ]; then eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #define _HPUX_SOURCE #include #include int main () { #if defined(_SC_KERNEL_BITS) long bits = sysconf(_SC_KERNEL_BITS); #endif long cpu = sysconf (_SC_CPU_VERSION); switch (cpu) { case CPU_PA_RISC1_0: puts ("hppa1.0"); break; case CPU_PA_RISC1_1: puts ("hppa1.1"); break; case CPU_PA_RISC2_0: #if defined(_SC_KERNEL_BITS) switch (bits) { case 64: puts ("hppa2.0w"); break; case 32: puts ("hppa2.0n"); break; default: puts ("hppa2.0"); break; } break; #else /* !defined(_SC_KERNEL_BITS) */ puts ("hppa2.0"); break; #endif default: puts ("hppa1.0"); break; } exit (0); } EOF (CCOPTS= $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null) && HP_ARCH=`$dummy` test -z "$HP_ARCH" && HP_ARCH=hppa fi ;; esac if [ ${HP_ARCH} = "hppa2.0w" ] then eval $set_cc_for_build # hppa2.0w-hp-hpux* has a 64-bit kernel and a compiler generating # 32-bit code. hppa64-hp-hpux* has the same kernel and a compiler # generating 64-bit code. GNU and HP use different nomenclature: # # $ CC_FOR_BUILD=cc ./config.guess # => hppa2.0w-hp-hpux11.23 # $ CC_FOR_BUILD="cc +DA2.0w" ./config.guess # => hppa64-hp-hpux11.23 if echo __LP64__ | (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | grep __LP64__ >/dev/null then HP_ARCH="hppa2.0w" else HP_ARCH="hppa64" fi fi echo ${HP_ARCH}-hp-hpux${HPUX_REV} exit ;; ia64:HP-UX:*:*) HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` echo ia64-hp-hpux${HPUX_REV} exit ;; 3050*:HI-UX:*:*) eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #include int main () { long cpu = sysconf (_SC_CPU_VERSION); /* The order matters, because CPU_IS_HP_MC68K erroneously returns true for CPU_PA_RISC1_0. CPU_IS_PA_RISC returns correct results, however. */ if (CPU_IS_PA_RISC (cpu)) { switch (cpu) { case CPU_PA_RISC1_0: puts ("hppa1.0-hitachi-hiuxwe2"); break; case CPU_PA_RISC1_1: puts ("hppa1.1-hitachi-hiuxwe2"); break; case CPU_PA_RISC2_0: puts ("hppa2.0-hitachi-hiuxwe2"); break; default: puts ("hppa-hitachi-hiuxwe2"); break; } } else if (CPU_IS_HP_MC68K (cpu)) puts ("m68k-hitachi-hiuxwe2"); else puts ("unknown-hitachi-hiuxwe2"); exit (0); } EOF $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` && { echo "$SYSTEM_NAME"; exit; } echo unknown-hitachi-hiuxwe2 exit ;; 9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:* ) echo hppa1.1-hp-bsd exit ;; 9000/8??:4.3bsd:*:*) echo hppa1.0-hp-bsd exit ;; *9??*:MPE/iX:*:* | *3000*:MPE/iX:*:*) echo hppa1.0-hp-mpeix exit ;; hp7??:OSF1:*:* | hp8?[79]:OSF1:*:* ) echo hppa1.1-hp-osf exit ;; hp8??:OSF1:*:*) echo hppa1.0-hp-osf exit ;; i*86:OSF1:*:*) if [ -x /usr/sbin/sysversion ] ; then echo ${UNAME_MACHINE}-unknown-osf1mk else echo ${UNAME_MACHINE}-unknown-osf1 fi exit ;; parisc*:Lites*:*:*) echo hppa1.1-hp-lites exit ;; C1*:ConvexOS:*:* | convex:ConvexOS:C1*:*) echo c1-convex-bsd exit ;; C2*:ConvexOS:*:* | convex:ConvexOS:C2*:*) if getsysinfo -f scalar_acc then echo c32-convex-bsd else echo c2-convex-bsd fi exit ;; C34*:ConvexOS:*:* | convex:ConvexOS:C34*:*) echo c34-convex-bsd exit ;; C38*:ConvexOS:*:* | convex:ConvexOS:C38*:*) echo c38-convex-bsd exit ;; C4*:ConvexOS:*:* | convex:ConvexOS:C4*:*) echo c4-convex-bsd exit ;; CRAY*Y-MP:*:*:*) echo ymp-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; CRAY*[A-Z]90:*:*:*) echo ${UNAME_MACHINE}-cray-unicos${UNAME_RELEASE} \ | sed -e 's/CRAY.*\([A-Z]90\)/\1/' \ -e y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/ \ -e 's/\.[^.]*$/.X/' exit ;; CRAY*TS:*:*:*) echo t90-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; CRAY*T3E:*:*:*) echo alphaev5-cray-unicosmk${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; CRAY*SV1:*:*:*) echo sv1-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; *:UNICOS/mp:*:*) echo craynv-cray-unicosmp${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; F30[01]:UNIX_System_V:*:* | F700:UNIX_System_V:*:*) FUJITSU_PROC=`uname -m | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` FUJITSU_REL=`echo ${UNAME_RELEASE} | sed -e 's/ /_/'` echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" exit ;; 5000:UNIX_System_V:4.*:*) FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` FUJITSU_REL=`echo ${UNAME_RELEASE} | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/ /_/'` echo "sparc-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" exit ;; i*86:BSD/386:*:* | i*86:BSD/OS:*:* | *:Ascend\ Embedded/OS:*:*) echo ${UNAME_MACHINE}-pc-bsdi${UNAME_RELEASE} exit ;; sparc*:BSD/OS:*:*) echo sparc-unknown-bsdi${UNAME_RELEASE} exit ;; *:BSD/OS:*:*) echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE} exit ;; *:FreeBSD:*:*) case ${UNAME_MACHINE} in pc98) echo i386-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; amd64) echo x86_64-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; *) echo ${UNAME_MACHINE}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; esac exit ;; i*:CYGWIN*:*) echo ${UNAME_MACHINE}-pc-cygwin exit ;; *:MINGW*:*) echo ${UNAME_MACHINE}-pc-mingw32 exit ;; i*:windows32*:*) # uname -m includes "-pc" on this system. echo ${UNAME_MACHINE}-mingw32 exit ;; i*:PW*:*) echo ${UNAME_MACHINE}-pc-pw32 exit ;; *:Interix*:[3456]*) case ${UNAME_MACHINE} in x86) echo i586-pc-interix${UNAME_RELEASE} exit ;; EM64T | authenticamd) echo x86_64-unknown-interix${UNAME_RELEASE} exit ;; IA64) echo ia64-unknown-interix${UNAME_RELEASE} exit ;; esac ;; [345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*) echo i${UNAME_MACHINE}-pc-mks exit ;; i*:Windows_NT*:* | Pentium*:Windows_NT*:*) # How do we know it's Interix rather than the generic POSIX subsystem? # It also conflicts with pre-2.0 versions of AT&T UWIN. Should we # UNAME_MACHINE based on the output of uname instead of i386? echo i586-pc-interix exit ;; i*:UWIN*:*) echo ${UNAME_MACHINE}-pc-uwin exit ;; amd64:CYGWIN*:*:* | x86_64:CYGWIN*:*:*) echo x86_64-unknown-cygwin exit ;; p*:CYGWIN*:*) echo powerpcle-unknown-cygwin exit ;; prep*:SunOS:5.*:*) echo powerpcle-unknown-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; *:GNU:*:*) # the GNU system echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-gnu`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'` exit ;; *:GNU/*:*:*) # other systems with GNU libc and userland echo ${UNAME_MACHINE}-unknown-`echo ${UNAME_SYSTEM} | sed 's,^[^/]*/,,' | tr '[A-Z]' '[a-z]'``echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-gnu exit ;; i*86:Minix:*:*) echo ${UNAME_MACHINE}-pc-minix exit ;; arm*:Linux:*:*) eval $set_cc_for_build if echo __ARM_EABI__ | $CC_FOR_BUILD -E - 2>/dev/null \ | grep -q __ARM_EABI__ then echo ${UNAME_MACHINE}-unknown-linux-gnu else echo ${UNAME_MACHINE}-unknown-linux-gnueabi fi exit ;; avr32*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; cris:Linux:*:*) echo cris-axis-linux-gnu exit ;; crisv32:Linux:*:*) echo crisv32-axis-linux-gnu exit ;; frv:Linux:*:*) echo frv-unknown-linux-gnu exit ;; ia64:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; m32r*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; m68*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; mips:Linux:*:*) eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #undef CPU #undef mips #undef mipsel #if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL) CPU=mipsel #else #if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB) CPU=mips #else CPU= #endif #endif EOF eval "`$CC_FOR_BUILD -E $dummy.c 2>/dev/null | sed -n ' /^CPU/{ s: ::g p }'`" test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; } ;; mips64:Linux:*:*) eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #undef CPU #undef mips64 #undef mips64el #if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL) CPU=mips64el #else #if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB) CPU=mips64 #else CPU= #endif #endif EOF eval "`$CC_FOR_BUILD -E $dummy.c 2>/dev/null | sed -n ' /^CPU/{ s: ::g p }'`" test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; } ;; or32:Linux:*:*) echo or32-unknown-linux-gnu exit ;; ppc:Linux:*:*) echo powerpc-unknown-linux-gnu exit ;; ppc64:Linux:*:*) echo powerpc64-unknown-linux-gnu exit ;; alpha:Linux:*:*) case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in EV5) UNAME_MACHINE=alphaev5 ;; EV56) UNAME_MACHINE=alphaev56 ;; PCA56) UNAME_MACHINE=alphapca56 ;; PCA57) UNAME_MACHINE=alphapca56 ;; EV6) UNAME_MACHINE=alphaev6 ;; EV67) UNAME_MACHINE=alphaev67 ;; EV68*) UNAME_MACHINE=alphaev68 ;; esac objdump --private-headers /bin/sh | grep ld.so.1 >/dev/null if test "$?" = 0 ; then LIBC="libc1" ; else LIBC="" ; fi echo ${UNAME_MACHINE}-unknown-linux-gnu${LIBC} exit ;; parisc:Linux:*:* | hppa:Linux:*:*) # Look for CPU level case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in PA7*) echo hppa1.1-unknown-linux-gnu ;; PA8*) echo hppa2.0-unknown-linux-gnu ;; *) echo hppa-unknown-linux-gnu ;; esac exit ;; parisc64:Linux:*:* | hppa64:Linux:*:*) echo hppa64-unknown-linux-gnu exit ;; s390:Linux:*:* | s390x:Linux:*:*) echo ${UNAME_MACHINE}-ibm-linux exit ;; sh64*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; sh*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; sparc:Linux:*:* | sparc64:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; vax:Linux:*:*) echo ${UNAME_MACHINE}-dec-linux-gnu exit ;; x86_64:Linux:*:*) echo x86_64-unknown-linux-gnu exit ;; xtensa*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; i*86:Linux:*:*) # The BFD linker knows what the default object file format is, so # first see if it will tell us. cd to the root directory to prevent # problems with other programs or directories called `ld' in the path. # Set LC_ALL=C to ensure ld outputs messages in English. ld_supported_targets=`cd /; LC_ALL=C ld --help 2>&1 \ | sed -ne '/supported targets:/!d s/[ ][ ]*/ /g s/.*supported targets: *// s/ .*// p'` case "$ld_supported_targets" in elf32-i386) TENTATIVE="${UNAME_MACHINE}-pc-linux-gnu" ;; a.out-i386-linux) echo "${UNAME_MACHINE}-pc-linux-gnuaout" exit ;; coff-i386) echo "${UNAME_MACHINE}-pc-linux-gnucoff" exit ;; "") # Either a pre-BFD a.out linker (linux-gnuoldld) or # one that does not give us useful --help. echo "${UNAME_MACHINE}-pc-linux-gnuoldld" exit ;; esac # Determine whether the default compiler is a.out or elf eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #include #ifdef __ELF__ # ifdef __GLIBC__ # if __GLIBC__ >= 2 LIBC=gnu # else LIBC=gnulibc1 # endif # else LIBC=gnulibc1 # endif #else #if defined(__INTEL_COMPILER) || defined(__PGI) || defined(__SUNPRO_C) || defined(__SUNPRO_CC) LIBC=gnu #else LIBC=gnuaout #endif #endif #ifdef __dietlibc__ LIBC=dietlibc #endif EOF eval "`$CC_FOR_BUILD -E $dummy.c 2>/dev/null | sed -n ' /^LIBC/{ s: ::g p }'`" test x"${LIBC}" != x && { echo "${UNAME_MACHINE}-pc-linux-${LIBC}" exit } test x"${TENTATIVE}" != x && { echo "${TENTATIVE}"; exit; } ;; i*86:DYNIX/ptx:4*:*) # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there. # earlier versions are messed up and put the nodename in both # sysname and nodename. echo i386-sequent-sysv4 exit ;; i*86:UNIX_SV:4.2MP:2.*) # Unixware is an offshoot of SVR4, but it has its own version # number series starting with 2... # I am not positive that other SVR4 systems won't match this, # I just have to hope. -- rms. # Use sysv4.2uw... so that sysv4* matches it. echo ${UNAME_MACHINE}-pc-sysv4.2uw${UNAME_VERSION} exit ;; i*86:OS/2:*:*) # If we were able to find `uname', then EMX Unix compatibility # is probably installed. echo ${UNAME_MACHINE}-pc-os2-emx exit ;; i*86:XTS-300:*:STOP) echo ${UNAME_MACHINE}-unknown-stop exit ;; i*86:atheos:*:*) echo ${UNAME_MACHINE}-unknown-atheos exit ;; i*86:syllable:*:*) echo ${UNAME_MACHINE}-pc-syllable exit ;; i*86:LynxOS:2.*:* | i*86:LynxOS:3.[01]*:* | i*86:LynxOS:4.0*:*) echo i386-unknown-lynxos${UNAME_RELEASE} exit ;; i*86:*DOS:*:*) echo ${UNAME_MACHINE}-pc-msdosdjgpp exit ;; i*86:*:4.*:* | i*86:SYSTEM_V:4.*:*) UNAME_REL=`echo ${UNAME_RELEASE} | sed 's/\/MP$//'` if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then echo ${UNAME_MACHINE}-univel-sysv${UNAME_REL} else echo ${UNAME_MACHINE}-pc-sysv${UNAME_REL} fi exit ;; i*86:*:5:[678]*) # UnixWare 7.x, OpenUNIX and OpenServer 6. case `/bin/uname -X | grep "^Machine"` in *486*) UNAME_MACHINE=i486 ;; *Pentium) UNAME_MACHINE=i586 ;; *Pent*|*Celeron) UNAME_MACHINE=i686 ;; esac echo ${UNAME_MACHINE}-unknown-sysv${UNAME_RELEASE}${UNAME_SYSTEM}${UNAME_VERSION} exit ;; i*86:*:3.2:*) if test -f /usr/options/cb.name; then UNAME_REL=`sed -n 's/.*Version //p' /dev/null >/dev/null ; then UNAME_REL=`(/bin/uname -X|grep Release|sed -e 's/.*= //')` (/bin/uname -X|grep i80486 >/dev/null) && UNAME_MACHINE=i486 (/bin/uname -X|grep '^Machine.*Pentium' >/dev/null) \ && UNAME_MACHINE=i586 (/bin/uname -X|grep '^Machine.*Pent *II' >/dev/null) \ && UNAME_MACHINE=i686 (/bin/uname -X|grep '^Machine.*Pentium Pro' >/dev/null) \ && UNAME_MACHINE=i686 echo ${UNAME_MACHINE}-pc-sco$UNAME_REL else echo ${UNAME_MACHINE}-pc-sysv32 fi exit ;; pc:*:*:*) # Left here for compatibility: # uname -m prints for DJGPP always 'pc', but it prints nothing about # the processor, so we play safe by assuming i386. echo i386-pc-msdosdjgpp exit ;; Intel:Mach:3*:*) echo i386-pc-mach3 exit ;; paragon:*:*:*) echo i860-intel-osf1 exit ;; i860:*:4.*:*) # i860-SVR4 if grep Stardent /usr/include/sys/uadmin.h >/dev/null 2>&1 ; then echo i860-stardent-sysv${UNAME_RELEASE} # Stardent Vistra i860-SVR4 else # Add other i860-SVR4 vendors below as they are discovered. echo i860-unknown-sysv${UNAME_RELEASE} # Unknown i860-SVR4 fi exit ;; mini*:CTIX:SYS*5:*) # "miniframe" echo m68010-convergent-sysv exit ;; mc68k:UNIX:SYSTEM5:3.51m) echo m68k-convergent-sysv exit ;; M680?0:D-NIX:5.3:*) echo m68k-diab-dnix exit ;; M68*:*:R3V[5678]*:*) test -r /sysV68 && { echo 'm68k-motorola-sysv'; exit; } ;; 3[345]??:*:4.0:3.0 | 3[34]??A:*:4.0:3.0 | 3[34]??,*:*:4.0:3.0 | 3[34]??/*:*:4.0:3.0 | 4400:*:4.0:3.0 | 4850:*:4.0:3.0 | SKA40:*:4.0:3.0 | SDS2:*:4.0:3.0 | SHG2:*:4.0:3.0 | S7501*:*:4.0:3.0) OS_REL='' test -r /etc/.relid \ && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ && { echo i486-ncr-sysv4.3${OS_REL}; exit; } /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;; 3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*) /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ && { echo i486-ncr-sysv4; exit; } ;; m68*:LynxOS:2.*:* | m68*:LynxOS:3.0*:*) echo m68k-unknown-lynxos${UNAME_RELEASE} exit ;; mc68030:UNIX_System_V:4.*:*) echo m68k-atari-sysv4 exit ;; TSUNAMI:LynxOS:2.*:*) echo sparc-unknown-lynxos${UNAME_RELEASE} exit ;; rs6000:LynxOS:2.*:*) echo rs6000-unknown-lynxos${UNAME_RELEASE} exit ;; PowerPC:LynxOS:2.*:* | PowerPC:LynxOS:3.[01]*:* | PowerPC:LynxOS:4.0*:*) echo powerpc-unknown-lynxos${UNAME_RELEASE} exit ;; SM[BE]S:UNIX_SV:*:*) echo mips-dde-sysv${UNAME_RELEASE} exit ;; RM*:ReliantUNIX-*:*:*) echo mips-sni-sysv4 exit ;; RM*:SINIX-*:*:*) echo mips-sni-sysv4 exit ;; *:SINIX-*:*:*) if uname -p 2>/dev/null >/dev/null ; then UNAME_MACHINE=`(uname -p) 2>/dev/null` echo ${UNAME_MACHINE}-sni-sysv4 else echo ns32k-sni-sysv fi exit ;; PENTIUM:*:4.0*:*) # Unisys `ClearPath HMP IX 4000' SVR4/MP effort # says echo i586-unisys-sysv4 exit ;; *:UNIX_System_V:4*:FTX*) # From Gerald Hewes . # How about differentiating between stratus architectures? -djm echo hppa1.1-stratus-sysv4 exit ;; *:*:*:FTX*) # From seanf@swdc.stratus.com. echo i860-stratus-sysv4 exit ;; i*86:VOS:*:*) # From Paul.Green@stratus.com. echo ${UNAME_MACHINE}-stratus-vos exit ;; *:VOS:*:*) # From Paul.Green@stratus.com. echo hppa1.1-stratus-vos exit ;; mc68*:A/UX:*:*) echo m68k-apple-aux${UNAME_RELEASE} exit ;; news*:NEWS-OS:6*:*) echo mips-sony-newsos6 exit ;; R[34]000:*System_V*:*:* | R4000:UNIX_SYSV:*:* | R*000:UNIX_SV:*:*) if [ -d /usr/nec ]; then echo mips-nec-sysv${UNAME_RELEASE} else echo mips-unknown-sysv${UNAME_RELEASE} fi exit ;; BeBox:BeOS:*:*) # BeOS running on hardware made by Be, PPC only. echo powerpc-be-beos exit ;; BeMac:BeOS:*:*) # BeOS running on Mac or Mac clone, PPC only. echo powerpc-apple-beos exit ;; BePC:BeOS:*:*) # BeOS running on Intel PC compatible. echo i586-pc-beos exit ;; SX-4:SUPER-UX:*:*) echo sx4-nec-superux${UNAME_RELEASE} exit ;; SX-5:SUPER-UX:*:*) echo sx5-nec-superux${UNAME_RELEASE} exit ;; SX-6:SUPER-UX:*:*) echo sx6-nec-superux${UNAME_RELEASE} exit ;; SX-7:SUPER-UX:*:*) echo sx7-nec-superux${UNAME_RELEASE} exit ;; SX-8:SUPER-UX:*:*) echo sx8-nec-superux${UNAME_RELEASE} exit ;; SX-8R:SUPER-UX:*:*) echo sx8r-nec-superux${UNAME_RELEASE} exit ;; Power*:Rhapsody:*:*) echo powerpc-apple-rhapsody${UNAME_RELEASE} exit ;; *:Rhapsody:*:*) echo ${UNAME_MACHINE}-apple-rhapsody${UNAME_RELEASE} exit ;; *:Darwin:*:*) UNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown case $UNAME_PROCESSOR in unknown) UNAME_PROCESSOR=powerpc ;; esac echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE} exit ;; *:procnto*:*:* | *:QNX:[0123456789]*:*) UNAME_PROCESSOR=`uname -p` if test "$UNAME_PROCESSOR" = "x86"; then UNAME_PROCESSOR=i386 UNAME_MACHINE=pc fi echo ${UNAME_PROCESSOR}-${UNAME_MACHINE}-nto-qnx${UNAME_RELEASE} exit ;; *:QNX:*:4*) echo i386-pc-qnx exit ;; NSE-?:NONSTOP_KERNEL:*:*) echo nse-tandem-nsk${UNAME_RELEASE} exit ;; NSR-?:NONSTOP_KERNEL:*:*) echo nsr-tandem-nsk${UNAME_RELEASE} exit ;; *:NonStop-UX:*:*) echo mips-compaq-nonstopux exit ;; BS2000:POSIX*:*:*) echo bs2000-siemens-sysv exit ;; DS/*:UNIX_System_V:*:*) echo ${UNAME_MACHINE}-${UNAME_SYSTEM}-${UNAME_RELEASE} exit ;; *:Plan9:*:*) # "uname -m" is not consistent, so use $cputype instead. 386 # is converted to i386 for consistency with other x86 # operating systems. if test "$cputype" = "386"; then UNAME_MACHINE=i386 else UNAME_MACHINE="$cputype" fi echo ${UNAME_MACHINE}-unknown-plan9 exit ;; *:TOPS-10:*:*) echo pdp10-unknown-tops10 exit ;; *:TENEX:*:*) echo pdp10-unknown-tenex exit ;; KS10:TOPS-20:*:* | KL10:TOPS-20:*:* | TYPE4:TOPS-20:*:*) echo pdp10-dec-tops20 exit ;; XKL-1:TOPS-20:*:* | TYPE5:TOPS-20:*:*) echo pdp10-xkl-tops20 exit ;; *:TOPS-20:*:*) echo pdp10-unknown-tops20 exit ;; *:ITS:*:*) echo pdp10-unknown-its exit ;; SEI:*:*:SEIUX) echo mips-sei-seiux${UNAME_RELEASE} exit ;; *:DragonFly:*:*) echo ${UNAME_MACHINE}-unknown-dragonfly`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` exit ;; *:*VMS:*:*) UNAME_MACHINE=`(uname -p) 2>/dev/null` case "${UNAME_MACHINE}" in A*) echo alpha-dec-vms ; exit ;; I*) echo ia64-dec-vms ; exit ;; V*) echo vax-dec-vms ; exit ;; esac ;; *:XENIX:*:SysV) echo i386-pc-xenix exit ;; i*86:skyos:*:*) echo ${UNAME_MACHINE}-pc-skyos`echo ${UNAME_RELEASE}` | sed -e 's/ .*$//' exit ;; i*86:rdos:*:*) echo ${UNAME_MACHINE}-pc-rdos exit ;; esac #echo '(No uname command or uname output not recognized.)' 1>&2 #echo "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" 1>&2 eval $set_cc_for_build cat >$dummy.c < # include #endif main () { #if defined (sony) #if defined (MIPSEB) /* BFD wants "bsd" instead of "newsos". Perhaps BFD should be changed, I don't know.... */ printf ("mips-sony-bsd\n"); exit (0); #else #include printf ("m68k-sony-newsos%s\n", #ifdef NEWSOS4 "4" #else "" #endif ); exit (0); #endif #endif #if defined (__arm) && defined (__acorn) && defined (__unix) printf ("arm-acorn-riscix\n"); exit (0); #endif #if defined (hp300) && !defined (hpux) printf ("m68k-hp-bsd\n"); exit (0); #endif #if defined (NeXT) #if !defined (__ARCHITECTURE__) #define __ARCHITECTURE__ "m68k" #endif int version; version=`(hostinfo | sed -n 's/.*NeXT Mach \([0-9]*\).*/\1/p') 2>/dev/null`; if (version < 4) printf ("%s-next-nextstep%d\n", __ARCHITECTURE__, version); else printf ("%s-next-openstep%d\n", __ARCHITECTURE__, version); exit (0); #endif #if defined (MULTIMAX) || defined (n16) #if defined (UMAXV) printf ("ns32k-encore-sysv\n"); exit (0); #else #if defined (CMU) printf ("ns32k-encore-mach\n"); exit (0); #else printf ("ns32k-encore-bsd\n"); exit (0); #endif #endif #endif #if defined (__386BSD__) printf ("i386-pc-bsd\n"); exit (0); #endif #if defined (sequent) #if defined (i386) printf ("i386-sequent-dynix\n"); exit (0); #endif #if defined (ns32000) printf ("ns32k-sequent-dynix\n"); exit (0); #endif #endif #if defined (_SEQUENT_) struct utsname un; uname(&un); if (strncmp(un.version, "V2", 2) == 0) { printf ("i386-sequent-ptx2\n"); exit (0); } if (strncmp(un.version, "V1", 2) == 0) { /* XXX is V1 correct? */ printf ("i386-sequent-ptx1\n"); exit (0); } printf ("i386-sequent-ptx\n"); exit (0); #endif #if defined (vax) # if !defined (ultrix) # include # if defined (BSD) # if BSD == 43 printf ("vax-dec-bsd4.3\n"); exit (0); # else # if BSD == 199006 printf ("vax-dec-bsd4.3reno\n"); exit (0); # else printf ("vax-dec-bsd\n"); exit (0); # endif # endif # else printf ("vax-dec-bsd\n"); exit (0); # endif # else printf ("vax-dec-ultrix\n"); exit (0); # endif #endif #if defined (alliant) && defined (i860) printf ("i860-alliant-bsd\n"); exit (0); #endif exit (1); } EOF $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null && SYSTEM_NAME=`$dummy` && { echo "$SYSTEM_NAME"; exit; } # Apollos put the system type in the environment. test -d /usr/apollo && { echo ${ISP}-apollo-${SYSTYPE}; exit; } # Convex versions that predate uname can use getsysinfo(1) if [ -x /usr/convex/getsysinfo ] then case `getsysinfo -f cpu_type` in c1*) echo c1-convex-bsd exit ;; c2*) if getsysinfo -f scalar_acc then echo c32-convex-bsd else echo c2-convex-bsd fi exit ;; c34*) echo c34-convex-bsd exit ;; c38*) echo c38-convex-bsd exit ;; c4*) echo c4-convex-bsd exit ;; esac fi cat >&2 < in order to provide the needed information to handle your system. config.guess timestamp = $timestamp uname -m = `(uname -m) 2>/dev/null || echo unknown` uname -r = `(uname -r) 2>/dev/null || echo unknown` uname -s = `(uname -s) 2>/dev/null || echo unknown` uname -v = `(uname -v) 2>/dev/null || echo unknown` /usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null` /bin/uname -X = `(/bin/uname -X) 2>/dev/null` hostinfo = `(hostinfo) 2>/dev/null` /bin/universe = `(/bin/universe) 2>/dev/null` /usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null` /bin/arch = `(/bin/arch) 2>/dev/null` /usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null` /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null` UNAME_MACHINE = ${UNAME_MACHINE} UNAME_RELEASE = ${UNAME_RELEASE} UNAME_SYSTEM = ${UNAME_SYSTEM} UNAME_VERSION = ${UNAME_VERSION} EOF exit 1 # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "timestamp='" # time-stamp-format: "%:y-%02m-%02d" # time-stamp-end: "'" # End: xteddy-2.2/config.sub0000755000265600020320000010115311153061233011556 00000000000000#! /bin/sh # Configuration validation subroutine script. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, # 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 # Free Software Foundation, Inc. timestamp='2008-01-16' # This file is (in principle) common to ALL GNU software. # The presence of a machine in this file suggests that SOME GNU software # can handle that machine. It does not imply ALL GNU software can. # # This file is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA # 02110-1301, 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. # Please send patches to . Submit a context # diff and a properly formatted ChangeLog entry. # # Configuration subroutine to validate and canonicalize a configuration type. # Supply the specified configuration type as an argument. # If it is invalid, we print an error message on stderr and exit with code 1. # Otherwise, we print the canonical config type on stdout and succeed. # This file is supposed to be the same for all GNU packages # and recognize all the CPU types, system types and aliases # that are meaningful with *any* GNU software. # Each package is responsible for reporting which valid configurations # it does not support. The user should be able to distinguish # a failure to support a valid configuration from a meaningless # configuration. # The goal of this file is to map all the various variations of a given # machine specification into a single specification in the form: # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM # or in some cases, the newer four-part form: # CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM # It is wrong to echo any other type of specification. me=`echo "$0" | sed -e 's,.*/,,'` usage="\ Usage: $0 [OPTION] CPU-MFR-OPSYS $0 [OPTION] ALIAS Canonicalize a configuration name. Operation modes: -h, --help print this help, then exit -t, --time-stamp print date of last modification, then exit -v, --version print version number, then exit Report bugs and patches to ." version="\ GNU config.sub ($timestamp) Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." help=" Try \`$me --help' for more information." # Parse command line while test $# -gt 0 ; do case $1 in --time-stamp | --time* | -t ) echo "$timestamp" ; exit ;; --version | -v ) echo "$version" ; exit ;; --help | --h* | -h ) echo "$usage"; exit ;; -- ) # Stop option processing shift; break ;; - ) # Use stdin as input. break ;; -* ) echo "$me: invalid option $1$help" exit 1 ;; *local*) # First pass through any local machine types. echo $1 exit ;; * ) break ;; esac done case $# in 0) echo "$me: missing argument$help" >&2 exit 1;; 1) ;; *) echo "$me: too many arguments$help" >&2 exit 1;; esac # Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any). # Here we must recognize all the valid KERNEL-OS combinations. maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'` case $maybe_os in nto-qnx* | linux-gnu* | linux-dietlibc | linux-newlib* | linux-uclibc* | \ uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | knetbsd*-gnu* | netbsd*-gnu* | \ storm-chaos* | os2-emx* | rtmk-nova*) os=-$maybe_os basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'` ;; *) basic_machine=`echo $1 | sed 's/-[^-]*$//'` if [ $basic_machine != $1 ] then os=`echo $1 | sed 's/.*-/-/'` else os=; fi ;; esac ### Let's recognize common machines as not being operating systems so ### that things like config.sub decstation-3100 work. We also ### recognize some manufacturers as not being operating systems, so we ### can provide default operating systems below. case $os in -sun*os*) # Prevent following clause from handling this invalid input. ;; -dec* | -mips* | -sequent* | -encore* | -pc532* | -sgi* | -sony* | \ -att* | -7300* | -3300* | -delta* | -motorola* | -sun[234]* | \ -unicom* | -ibm* | -next | -hp | -isi* | -apollo | -altos* | \ -convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\ -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \ -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \ -apple | -axis | -knuth | -cray) os= basic_machine=$1 ;; -sim | -cisco | -oki | -wec | -winbond) os= basic_machine=$1 ;; -scout) ;; -wrs) os=-vxworks basic_machine=$1 ;; -chorusos*) os=-chorusos basic_machine=$1 ;; -chorusrdb) os=-chorusrdb basic_machine=$1 ;; -hiux*) os=-hiuxwe2 ;; -sco6) os=-sco5v6 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco5) os=-sco3.2v5 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco4) os=-sco3.2v4 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco3.2.[4-9]*) os=`echo $os | sed -e 's/sco3.2./sco3.2v/'` basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco3.2v[4-9]*) # Don't forget version if it is 3.2v4 or newer. basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco5v6*) # Don't forget version if it is 3.2v4 or newer. basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco*) os=-sco3.2v2 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -udk*) basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -isc) os=-isc2.2 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -clix*) basic_machine=clipper-intergraph ;; -isc*) basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -lynx*) os=-lynxos ;; -ptx*) basic_machine=`echo $1 | sed -e 's/86-.*/86-sequent/'` ;; -windowsnt*) os=`echo $os | sed -e 's/windowsnt/winnt/'` ;; -psos*) os=-psos ;; -mint | -mint[0-9]*) basic_machine=m68k-atari os=-mint ;; esac # Decode aliases for certain CPU-COMPANY combinations. case $basic_machine in # Recognize the basic CPU types without company name. # Some are omitted here because they have special meanings below. 1750a | 580 \ | a29k \ | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \ | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \ | am33_2.0 \ | arc | arm | arm[bl]e | arme[lb] | armv[2345] | armv[345][lb] | avr | avr32 \ | bfin \ | c4x | clipper \ | d10v | d30v | dlx | dsp16xx \ | fido | fr30 | frv \ | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \ | i370 | i860 | i960 | ia64 \ | ip2k | iq2000 \ | m32c | m32r | m32rle | m68000 | m68k | m88k \ | maxq | mb | microblaze | mcore | mep \ | mips | mipsbe | mipseb | mipsel | mipsle \ | mips16 \ | mips64 | mips64el \ | mips64vr | mips64vrel \ | mips64orion | mips64orionel \ | mips64vr4100 | mips64vr4100el \ | mips64vr4300 | mips64vr4300el \ | mips64vr5000 | mips64vr5000el \ | mips64vr5900 | mips64vr5900el \ | mipsisa32 | mipsisa32el \ | mipsisa32r2 | mipsisa32r2el \ | mipsisa64 | mipsisa64el \ | mipsisa64r2 | mipsisa64r2el \ | mipsisa64sb1 | mipsisa64sb1el \ | mipsisa64sr71k | mipsisa64sr71kel \ | mipstx39 | mipstx39el \ | mn10200 | mn10300 \ | mt \ | msp430 \ | nios | nios2 \ | ns16k | ns32k \ | or32 \ | pdp10 | pdp11 | pj | pjl \ | powerpc | powerpc64 | powerpc64le | powerpcle | ppcbe \ | pyramid \ | score \ | sh | sh[1234] | sh[24]a | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3ele \ | sh64 | sh64le \ | sparc | sparc64 | sparc64b | sparc64v | sparc86x | sparclet | sparclite \ | sparcv8 | sparcv9 | sparcv9b | sparcv9v \ | spu | strongarm \ | tahoe | thumb | tic4x | tic80 | tron \ | v850 | v850e \ | we32k \ | x86 | xc16x | xscale | xscalee[bl] | xstormy16 | xtensa \ | z8k) basic_machine=$basic_machine-unknown ;; m6811 | m68hc11 | m6812 | m68hc12) # Motorola 68HC11/12. basic_machine=$basic_machine-unknown os=-none ;; m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | v70 | w65 | z8k) ;; ms1) basic_machine=mt-unknown ;; # We use `pc' rather than `unknown' # because (1) that's what they normally are, and # (2) the word "unknown" tends to confuse beginning users. i*86 | x86_64) basic_machine=$basic_machine-pc ;; # Object if more than one company name word. *-*-*) echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 exit 1 ;; # Recognize the basic CPU types with company name. 580-* \ | a29k-* \ | alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \ | alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \ | alphapca5[67]-* | alpha64pca5[67]-* | arc-* \ | arm-* | armbe-* | armle-* | armeb-* | armv*-* \ | avr-* | avr32-* \ | bfin-* | bs2000-* \ | c[123]* | c30-* | [cjt]90-* | c4x-* | c54x-* | c55x-* | c6x-* \ | clipper-* | craynv-* | cydra-* \ | d10v-* | d30v-* | dlx-* \ | elxsi-* \ | f30[01]-* | f700-* | fido-* | fr30-* | frv-* | fx80-* \ | h8300-* | h8500-* \ | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \ | i*86-* | i860-* | i960-* | ia64-* \ | ip2k-* | iq2000-* \ | m32c-* | m32r-* | m32rle-* \ | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \ | m88110-* | m88k-* | maxq-* | mcore-* \ | mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \ | mips16-* \ | mips64-* | mips64el-* \ | mips64vr-* | mips64vrel-* \ | mips64orion-* | mips64orionel-* \ | mips64vr4100-* | mips64vr4100el-* \ | mips64vr4300-* | mips64vr4300el-* \ | mips64vr5000-* | mips64vr5000el-* \ | mips64vr5900-* | mips64vr5900el-* \ | mipsisa32-* | mipsisa32el-* \ | mipsisa32r2-* | mipsisa32r2el-* \ | mipsisa64-* | mipsisa64el-* \ | mipsisa64r2-* | mipsisa64r2el-* \ | mipsisa64sb1-* | mipsisa64sb1el-* \ | mipsisa64sr71k-* | mipsisa64sr71kel-* \ | mipstx39-* | mipstx39el-* \ | mmix-* \ | mt-* \ | msp430-* \ | nios-* | nios2-* \ | none-* | np1-* | ns16k-* | ns32k-* \ | orion-* \ | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \ | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* | ppcbe-* \ | pyramid-* \ | romp-* | rs6000-* \ | sh-* | sh[1234]-* | sh[24]a-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \ | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \ | sparc-* | sparc64-* | sparc64b-* | sparc64v-* | sparc86x-* | sparclet-* \ | sparclite-* \ | sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | strongarm-* | sv1-* | sx?-* \ | tahoe-* | thumb-* \ | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \ | tron-* \ | v850-* | v850e-* | vax-* \ | we32k-* \ | x86-* | x86_64-* | xc16x-* | xps100-* | xscale-* | xscalee[bl]-* \ | xstormy16-* | xtensa*-* \ | ymp-* \ | z8k-*) ;; # Recognize the basic CPU types without company name, with glob match. xtensa*) basic_machine=$basic_machine-unknown ;; # Recognize the various machine names and aliases which stand # for a CPU type and a company and sometimes even an OS. 386bsd) basic_machine=i386-unknown os=-bsd ;; 3b1 | 7300 | 7300-att | att-7300 | pc7300 | safari | unixpc) basic_machine=m68000-att ;; 3b*) basic_machine=we32k-att ;; a29khif) basic_machine=a29k-amd os=-udi ;; abacus) basic_machine=abacus-unknown ;; adobe68k) basic_machine=m68010-adobe os=-scout ;; alliant | fx80) basic_machine=fx80-alliant ;; altos | altos3068) basic_machine=m68k-altos ;; am29k) basic_machine=a29k-none os=-bsd ;; amd64) basic_machine=x86_64-pc ;; amd64-*) basic_machine=x86_64-`echo $basic_machine | sed 's/^[^-]*-//'` ;; amdahl) basic_machine=580-amdahl os=-sysv ;; amiga | amiga-*) basic_machine=m68k-unknown ;; amigaos | amigados) basic_machine=m68k-unknown os=-amigaos ;; amigaunix | amix) basic_machine=m68k-unknown os=-sysv4 ;; apollo68) basic_machine=m68k-apollo os=-sysv ;; apollo68bsd) basic_machine=m68k-apollo os=-bsd ;; aux) basic_machine=m68k-apple os=-aux ;; balance) basic_machine=ns32k-sequent os=-dynix ;; blackfin) basic_machine=bfin-unknown os=-linux ;; blackfin-*) basic_machine=bfin-`echo $basic_machine | sed 's/^[^-]*-//'` os=-linux ;; c90) basic_machine=c90-cray os=-unicos ;; convex-c1) basic_machine=c1-convex os=-bsd ;; convex-c2) basic_machine=c2-convex os=-bsd ;; convex-c32) basic_machine=c32-convex os=-bsd ;; convex-c34) basic_machine=c34-convex os=-bsd ;; convex-c38) basic_machine=c38-convex os=-bsd ;; cray | j90) basic_machine=j90-cray os=-unicos ;; craynv) basic_machine=craynv-cray os=-unicosmp ;; cr16) basic_machine=cr16-unknown os=-elf ;; crds | unos) basic_machine=m68k-crds ;; crisv32 | crisv32-* | etraxfs*) basic_machine=crisv32-axis ;; cris | cris-* | etrax*) basic_machine=cris-axis ;; crx) basic_machine=crx-unknown os=-elf ;; da30 | da30-*) basic_machine=m68k-da30 ;; decstation | decstation-3100 | pmax | pmax-* | pmin | dec3100 | decstatn) basic_machine=mips-dec ;; decsystem10* | dec10*) basic_machine=pdp10-dec os=-tops10 ;; decsystem20* | dec20*) basic_machine=pdp10-dec os=-tops20 ;; delta | 3300 | motorola-3300 | motorola-delta \ | 3300-motorola | delta-motorola) basic_machine=m68k-motorola ;; delta88) basic_machine=m88k-motorola os=-sysv3 ;; djgpp) basic_machine=i586-pc os=-msdosdjgpp ;; dpx20 | dpx20-*) basic_machine=rs6000-bull os=-bosx ;; dpx2* | dpx2*-bull) basic_machine=m68k-bull os=-sysv3 ;; ebmon29k) basic_machine=a29k-amd os=-ebmon ;; elxsi) basic_machine=elxsi-elxsi os=-bsd ;; encore | umax | mmax) basic_machine=ns32k-encore ;; es1800 | OSE68k | ose68k | ose | OSE) basic_machine=m68k-ericsson os=-ose ;; fx2800) basic_machine=i860-alliant ;; genix) basic_machine=ns32k-ns ;; gmicro) basic_machine=tron-gmicro os=-sysv ;; go32) basic_machine=i386-pc os=-go32 ;; h3050r* | hiux*) basic_machine=hppa1.1-hitachi os=-hiuxwe2 ;; h8300hms) basic_machine=h8300-hitachi os=-hms ;; h8300xray) basic_machine=h8300-hitachi os=-xray ;; h8500hms) basic_machine=h8500-hitachi os=-hms ;; harris) basic_machine=m88k-harris os=-sysv3 ;; hp300-*) basic_machine=m68k-hp ;; hp300bsd) basic_machine=m68k-hp os=-bsd ;; hp300hpux) basic_machine=m68k-hp os=-hpux ;; hp3k9[0-9][0-9] | hp9[0-9][0-9]) basic_machine=hppa1.0-hp ;; hp9k2[0-9][0-9] | hp9k31[0-9]) basic_machine=m68000-hp ;; hp9k3[2-9][0-9]) basic_machine=m68k-hp ;; hp9k6[0-9][0-9] | hp6[0-9][0-9]) basic_machine=hppa1.0-hp ;; hp9k7[0-79][0-9] | hp7[0-79][0-9]) basic_machine=hppa1.1-hp ;; hp9k78[0-9] | hp78[0-9]) # FIXME: really hppa2.0-hp basic_machine=hppa1.1-hp ;; hp9k8[67]1 | hp8[67]1 | hp9k80[24] | hp80[24] | hp9k8[78]9 | hp8[78]9 | hp9k893 | hp893) # FIXME: really hppa2.0-hp basic_machine=hppa1.1-hp ;; hp9k8[0-9][13679] | hp8[0-9][13679]) basic_machine=hppa1.1-hp ;; hp9k8[0-9][0-9] | hp8[0-9][0-9]) basic_machine=hppa1.0-hp ;; hppa-next) os=-nextstep3 ;; hppaosf) basic_machine=hppa1.1-hp os=-osf ;; hppro) basic_machine=hppa1.1-hp os=-proelf ;; i370-ibm* | ibm*) basic_machine=i370-ibm ;; # I'm not sure what "Sysv32" means. Should this be sysv3.2? i*86v32) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-sysv32 ;; i*86v4*) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-sysv4 ;; i*86v) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-sysv ;; i*86sol2) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-solaris2 ;; i386mach) basic_machine=i386-mach os=-mach ;; i386-vsta | vsta) basic_machine=i386-unknown os=-vsta ;; iris | iris4d) basic_machine=mips-sgi case $os in -irix*) ;; *) os=-irix4 ;; esac ;; isi68 | isi) basic_machine=m68k-isi os=-sysv ;; m68knommu) basic_machine=m68k-unknown os=-linux ;; m68knommu-*) basic_machine=m68k-`echo $basic_machine | sed 's/^[^-]*-//'` os=-linux ;; m88k-omron*) basic_machine=m88k-omron ;; magnum | m3230) basic_machine=mips-mips os=-sysv ;; merlin) basic_machine=ns32k-utek os=-sysv ;; mingw32) basic_machine=i386-pc os=-mingw32 ;; mingw32ce) basic_machine=arm-unknown os=-mingw32ce ;; miniframe) basic_machine=m68000-convergent ;; *mint | -mint[0-9]* | *MiNT | *MiNT[0-9]*) basic_machine=m68k-atari os=-mint ;; mips3*-*) basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'` ;; mips3*) basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`-unknown ;; monitor) basic_machine=m68k-rom68k os=-coff ;; morphos) basic_machine=powerpc-unknown os=-morphos ;; msdos) basic_machine=i386-pc os=-msdos ;; ms1-*) basic_machine=`echo $basic_machine | sed -e 's/ms1-/mt-/'` ;; mvs) basic_machine=i370-ibm os=-mvs ;; ncr3000) basic_machine=i486-ncr os=-sysv4 ;; netbsd386) basic_machine=i386-unknown os=-netbsd ;; netwinder) basic_machine=armv4l-rebel os=-linux ;; news | news700 | news800 | news900) basic_machine=m68k-sony os=-newsos ;; news1000) basic_machine=m68030-sony os=-newsos ;; news-3600 | risc-news) basic_machine=mips-sony os=-newsos ;; necv70) basic_machine=v70-nec os=-sysv ;; next | m*-next ) basic_machine=m68k-next case $os in -nextstep* ) ;; -ns2*) os=-nextstep2 ;; *) os=-nextstep3 ;; esac ;; nh3000) basic_machine=m68k-harris os=-cxux ;; nh[45]000) basic_machine=m88k-harris os=-cxux ;; nindy960) basic_machine=i960-intel os=-nindy ;; mon960) basic_machine=i960-intel os=-mon960 ;; nonstopux) basic_machine=mips-compaq os=-nonstopux ;; np1) basic_machine=np1-gould ;; nsr-tandem) basic_machine=nsr-tandem ;; op50n-* | op60c-*) basic_machine=hppa1.1-oki os=-proelf ;; openrisc | openrisc-*) basic_machine=or32-unknown ;; os400) basic_machine=powerpc-ibm os=-os400 ;; OSE68000 | ose68000) basic_machine=m68000-ericsson os=-ose ;; os68k) basic_machine=m68k-none os=-os68k ;; pa-hitachi) basic_machine=hppa1.1-hitachi os=-hiuxwe2 ;; paragon) basic_machine=i860-intel os=-osf ;; parisc) basic_machine=hppa-unknown os=-linux ;; parisc-*) basic_machine=hppa-`echo $basic_machine | sed 's/^[^-]*-//'` os=-linux ;; pbd) basic_machine=sparc-tti ;; pbb) basic_machine=m68k-tti ;; pc532 | pc532-*) basic_machine=ns32k-pc532 ;; pc98) basic_machine=i386-pc ;; pc98-*) basic_machine=i386-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentium | p5 | k5 | k6 | nexgen | viac3) basic_machine=i586-pc ;; pentiumpro | p6 | 6x86 | athlon | athlon_*) basic_machine=i686-pc ;; pentiumii | pentium2 | pentiumiii | pentium3) basic_machine=i686-pc ;; pentium4) basic_machine=i786-pc ;; pentium-* | p5-* | k5-* | k6-* | nexgen-* | viac3-*) basic_machine=i586-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentiumpro-* | p6-* | 6x86-* | athlon-*) basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentiumii-* | pentium2-* | pentiumiii-* | pentium3-*) basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentium4-*) basic_machine=i786-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pn) basic_machine=pn-gould ;; power) basic_machine=power-ibm ;; ppc) basic_machine=powerpc-unknown ;; ppc-*) basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ppcle | powerpclittle | ppc-le | powerpc-little) basic_machine=powerpcle-unknown ;; ppcle-* | powerpclittle-*) basic_machine=powerpcle-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ppc64) basic_machine=powerpc64-unknown ;; ppc64-*) basic_machine=powerpc64-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ppc64le | powerpc64little | ppc64-le | powerpc64-little) basic_machine=powerpc64le-unknown ;; ppc64le-* | powerpc64little-*) basic_machine=powerpc64le-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ps2) basic_machine=i386-ibm ;; pw32) basic_machine=i586-unknown os=-pw32 ;; rdos) basic_machine=i386-pc os=-rdos ;; rom68k) basic_machine=m68k-rom68k os=-coff ;; rm[46]00) basic_machine=mips-siemens ;; rtpc | rtpc-*) basic_machine=romp-ibm ;; s390 | s390-*) basic_machine=s390-ibm ;; s390x | s390x-*) basic_machine=s390x-ibm ;; sa29200) basic_machine=a29k-amd os=-udi ;; sb1) basic_machine=mipsisa64sb1-unknown ;; sb1el) basic_machine=mipsisa64sb1el-unknown ;; sde) basic_machine=mipsisa32-sde os=-elf ;; sei) basic_machine=mips-sei os=-seiux ;; sequent) basic_machine=i386-sequent ;; sh) basic_machine=sh-hitachi os=-hms ;; sh5el) basic_machine=sh5le-unknown ;; sh64) basic_machine=sh64-unknown ;; sparclite-wrs | simso-wrs) basic_machine=sparclite-wrs os=-vxworks ;; sps7) basic_machine=m68k-bull os=-sysv2 ;; spur) basic_machine=spur-unknown ;; st2000) basic_machine=m68k-tandem ;; stratus) basic_machine=i860-stratus os=-sysv4 ;; sun2) basic_machine=m68000-sun ;; sun2os3) basic_machine=m68000-sun os=-sunos3 ;; sun2os4) basic_machine=m68000-sun os=-sunos4 ;; sun3os3) basic_machine=m68k-sun os=-sunos3 ;; sun3os4) basic_machine=m68k-sun os=-sunos4 ;; sun4os3) basic_machine=sparc-sun os=-sunos3 ;; sun4os4) basic_machine=sparc-sun os=-sunos4 ;; sun4sol2) basic_machine=sparc-sun os=-solaris2 ;; sun3 | sun3-*) basic_machine=m68k-sun ;; sun4) basic_machine=sparc-sun ;; sun386 | sun386i | roadrunner) basic_machine=i386-sun ;; sv1) basic_machine=sv1-cray os=-unicos ;; symmetry) basic_machine=i386-sequent os=-dynix ;; t3e) basic_machine=alphaev5-cray os=-unicos ;; t90) basic_machine=t90-cray os=-unicos ;; tic54x | c54x*) basic_machine=tic54x-unknown os=-coff ;; tic55x | c55x*) basic_machine=tic55x-unknown os=-coff ;; tic6x | c6x*) basic_machine=tic6x-unknown os=-coff ;; tile*) basic_machine=tile-unknown os=-linux-gnu ;; tx39) basic_machine=mipstx39-unknown ;; tx39el) basic_machine=mipstx39el-unknown ;; toad1) basic_machine=pdp10-xkl os=-tops20 ;; tower | tower-32) basic_machine=m68k-ncr ;; tpf) basic_machine=s390x-ibm os=-tpf ;; udi29k) basic_machine=a29k-amd os=-udi ;; ultra3) basic_machine=a29k-nyu os=-sym1 ;; v810 | necv810) basic_machine=v810-nec os=-none ;; vaxv) basic_machine=vax-dec os=-sysv ;; vms) basic_machine=vax-dec os=-vms ;; vpp*|vx|vx-*) basic_machine=f301-fujitsu ;; vxworks960) basic_machine=i960-wrs os=-vxworks ;; vxworks68) basic_machine=m68k-wrs os=-vxworks ;; vxworks29k) basic_machine=a29k-wrs os=-vxworks ;; w65*) basic_machine=w65-wdc os=-none ;; w89k-*) basic_machine=hppa1.1-winbond os=-proelf ;; xbox) basic_machine=i686-pc os=-mingw32 ;; xps | xps100) basic_machine=xps100-honeywell ;; ymp) basic_machine=ymp-cray os=-unicos ;; z8k-*-coff) basic_machine=z8k-unknown os=-sim ;; none) basic_machine=none-none os=-none ;; # Here we handle the default manufacturer of certain CPU types. It is in # some cases the only manufacturer, in others, it is the most popular. w89k) basic_machine=hppa1.1-winbond ;; op50n) basic_machine=hppa1.1-oki ;; op60c) basic_machine=hppa1.1-oki ;; romp) basic_machine=romp-ibm ;; mmix) basic_machine=mmix-knuth ;; rs6000) basic_machine=rs6000-ibm ;; vax) basic_machine=vax-dec ;; pdp10) # there are many clones, so DEC is not a safe bet basic_machine=pdp10-unknown ;; pdp11) basic_machine=pdp11-dec ;; we32k) basic_machine=we32k-att ;; sh[1234] | sh[24]a | sh[34]eb | sh[1234]le | sh[23]ele) basic_machine=sh-unknown ;; sparc | sparcv8 | sparcv9 | sparcv9b | sparcv9v) basic_machine=sparc-sun ;; cydra) basic_machine=cydra-cydrome ;; orion) basic_machine=orion-highlevel ;; orion105) basic_machine=clipper-highlevel ;; mac | mpw | mac-mpw) basic_machine=m68k-apple ;; pmac | pmac-mpw) basic_machine=powerpc-apple ;; *-unknown) # Make sure to match an already-canonicalized machine name. ;; *) echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 exit 1 ;; esac # Here we canonicalize certain aliases for manufacturers. case $basic_machine in *-digital*) basic_machine=`echo $basic_machine | sed 's/digital.*/dec/'` ;; *-commodore*) basic_machine=`echo $basic_machine | sed 's/commodore.*/cbm/'` ;; *) ;; esac # Decode manufacturer-specific aliases for certain operating systems. if [ x"$os" != x"" ] then case $os in # First match some system type aliases # that might get confused with valid system types. # -solaris* is a basic system type, with this one exception. -solaris1 | -solaris1.*) os=`echo $os | sed -e 's|solaris1|sunos4|'` ;; -solaris) os=-solaris2 ;; -svr4*) os=-sysv4 ;; -unixware*) os=-sysv4.2uw ;; -gnu/linux*) os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'` ;; # First accept the basic system types. # The portable systems comes first. # Each alternative MUST END IN A *, to match a version number. # -sysv* is not here because it comes later, after sysvr4. -gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \ | -*vms* | -sco* | -esix* | -isc* | -aix* | -sunos | -sunos[34]*\ | -hpux* | -unos* | -osf* | -luna* | -dgux* | -solaris* | -sym* \ | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \ | -aos* \ | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \ | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \ | -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* \ | -openbsd* | -solidbsd* \ | -ekkobsd* | -kfreebsd* | -freebsd* | -riscix* | -lynxos* \ | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \ | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \ | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \ | -chorusos* | -chorusrdb* \ | -cygwin* | -pe* | -psos* | -moss* | -proelf* | -rtems* \ | -mingw32* | -linux-gnu* | -linux-newlib* | -linux-uclibc* \ | -uxpv* | -beos* | -mpeix* | -udk* \ | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \ | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \ | -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* \ | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \ | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \ | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \ | -skyos* | -haiku* | -rdos* | -toppers* | -drops*) # Remember, each alternative MUST END IN *, to match a version number. ;; -qnx*) case $basic_machine in x86-* | i*86-*) ;; *) os=-nto$os ;; esac ;; -nto-qnx*) ;; -nto*) os=`echo $os | sed -e 's|nto|nto-qnx|'` ;; -sim | -es1800* | -hms* | -xray | -os68k* | -none* | -v88r* \ | -windows* | -osx | -abug | -netware* | -os9* | -beos* | -haiku* \ | -macos* | -mpw* | -magic* | -mmixware* | -mon960* | -lnews*) ;; -mac*) os=`echo $os | sed -e 's|mac|macos|'` ;; -linux-dietlibc) os=-linux-dietlibc ;; -linux*) os=`echo $os | sed -e 's|linux|linux-gnu|'` ;; -sunos5*) os=`echo $os | sed -e 's|sunos5|solaris2|'` ;; -sunos6*) os=`echo $os | sed -e 's|sunos6|solaris3|'` ;; -opened*) os=-openedition ;; -os400*) os=-os400 ;; -wince*) os=-wince ;; -osfrose*) os=-osfrose ;; -osf*) os=-osf ;; -utek*) os=-bsd ;; -dynix*) os=-bsd ;; -acis*) os=-aos ;; -atheos*) os=-atheos ;; -syllable*) os=-syllable ;; -386bsd) os=-bsd ;; -ctix* | -uts*) os=-sysv ;; -nova*) os=-rtmk-nova ;; -ns2 ) os=-nextstep2 ;; -nsk*) os=-nsk ;; # Preserve the version number of sinix5. -sinix5.*) os=`echo $os | sed -e 's|sinix|sysv|'` ;; -sinix*) os=-sysv4 ;; -tpf*) os=-tpf ;; -triton*) os=-sysv3 ;; -oss*) os=-sysv3 ;; -svr4) os=-sysv4 ;; -svr3) os=-sysv3 ;; -sysvr4) os=-sysv4 ;; # This must come after -sysvr4. -sysv*) ;; -ose*) os=-ose ;; -es1800*) os=-ose ;; -xenix) os=-xenix ;; -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) os=-mint ;; -aros*) os=-aros ;; -kaos*) os=-kaos ;; -zvmoe) os=-zvmoe ;; -none) ;; *) # Get rid of the `-' at the beginning of $os. os=`echo $os | sed 's/[^-]*-//'` echo Invalid configuration \`$1\': system \`$os\' not recognized 1>&2 exit 1 ;; esac else # Here we handle the default operating systems that come with various machines. # The value should be what the vendor currently ships out the door with their # machine or put another way, the most popular os provided with the machine. # Note that if you're going to try to match "-MANUFACTURER" here (say, # "-sun"), then you have to tell the case statement up towards the top # that MANUFACTURER isn't an operating system. Otherwise, code above # will signal an error saying that MANUFACTURER isn't an operating # system, and we'll never get to this point. case $basic_machine in score-*) os=-elf ;; spu-*) os=-elf ;; *-acorn) os=-riscix1.2 ;; arm*-rebel) os=-linux ;; arm*-semi) os=-aout ;; c4x-* | tic4x-*) os=-coff ;; # This must come before the *-dec entry. pdp10-*) os=-tops20 ;; pdp11-*) os=-none ;; *-dec | vax-*) os=-ultrix4.2 ;; m68*-apollo) os=-domain ;; i386-sun) os=-sunos4.0.2 ;; m68000-sun) os=-sunos3 # This also exists in the configure program, but was not the # default. # os=-sunos4 ;; m68*-cisco) os=-aout ;; mep-*) os=-elf ;; mips*-cisco) os=-elf ;; mips*-*) os=-elf ;; or32-*) os=-coff ;; *-tti) # must be before sparc entry or we get the wrong os. os=-sysv3 ;; sparc-* | *-sun) os=-sunos4.1.1 ;; *-be) os=-beos ;; *-haiku) os=-haiku ;; *-ibm) os=-aix ;; *-knuth) os=-mmixware ;; *-wec) os=-proelf ;; *-winbond) os=-proelf ;; *-oki) os=-proelf ;; *-hp) os=-hpux ;; *-hitachi) os=-hiux ;; i860-* | *-att | *-ncr | *-altos | *-motorola | *-convergent) os=-sysv ;; *-cbm) os=-amigaos ;; *-dg) os=-dgux ;; *-dolphin) os=-sysv3 ;; m68k-ccur) os=-rtu ;; m88k-omron*) os=-luna ;; *-next ) os=-nextstep ;; *-sequent) os=-ptx ;; *-crds) os=-unos ;; *-ns) os=-genix ;; i370-*) os=-mvs ;; *-next) os=-nextstep3 ;; *-gould) os=-sysv ;; *-highlevel) os=-bsd ;; *-encore) os=-bsd ;; *-sgi) os=-irix ;; *-siemens) os=-sysv4 ;; *-masscomp) os=-rtu ;; f30[01]-fujitsu | f700-fujitsu) os=-uxpv ;; *-rom68k) os=-coff ;; *-*bug) os=-coff ;; *-apple) os=-macos ;; *-atari*) os=-mint ;; *) os=-none ;; esac fi # Here we handle the case where we know the os, and the CPU type, but not the # manufacturer. We pick the logical manufacturer. vendor=unknown case $basic_machine in *-unknown) case $os in -riscix*) vendor=acorn ;; -sunos*) vendor=sun ;; -aix*) vendor=ibm ;; -beos*) vendor=be ;; -hpux*) vendor=hp ;; -mpeix*) vendor=hp ;; -hiux*) vendor=hitachi ;; -unos*) vendor=crds ;; -dgux*) vendor=dg ;; -luna*) vendor=omron ;; -genix*) vendor=ns ;; -mvs* | -opened*) vendor=ibm ;; -os400*) vendor=ibm ;; -ptx*) vendor=sequent ;; -tpf*) vendor=ibm ;; -vxsim* | -vxworks* | -windiss*) vendor=wrs ;; -aux*) vendor=apple ;; -hms*) vendor=hitachi ;; -mpw* | -macos*) vendor=apple ;; -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) vendor=atari ;; -vos*) vendor=stratus ;; esac basic_machine=`echo $basic_machine | sed "s/unknown/$vendor/"` ;; esac echo $basic_machine$os exit # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "timestamp='" # time-stamp-format: "%:y-%02m-%02d" # time-stamp-end: "'" # End: xteddy-2.2/depcomp0000755000265600020320000004271310753463634011176 00000000000000#! /bin/sh # depcomp - compile a program generating dependencies as side-effects scriptversion=2007-03-29.01 # Copyright (C) 1999, 2000, 2003, 2004, 2005, 2006, 2007 Free Software # Foundation, Inc. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA # 02110-1301, USA. # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # Originally written by Alexandre Oliva . case $1 in '') echo "$0: No command. Try \`$0 --help' for more information." 1>&2 exit 1; ;; -h | --h*) cat <<\EOF Usage: depcomp [--help] [--version] PROGRAM [ARGS] Run PROGRAMS ARGS to compile a file, generating dependencies as side-effects. Environment variables: depmode Dependency tracking mode. source Source file read by `PROGRAMS ARGS'. object Object file output by `PROGRAMS ARGS'. DEPDIR directory where to store dependencies. depfile Dependency file to output. tmpdepfile Temporary file to use when outputing dependencies. libtool Whether libtool is used (yes/no). Report bugs to . EOF exit $? ;; -v | --v*) echo "depcomp $scriptversion" exit $? ;; esac if test -z "$depmode" || test -z "$source" || test -z "$object"; then echo "depcomp: Variables source, object and depmode must be set" 1>&2 exit 1 fi # Dependencies for sub/bar.o or sub/bar.obj go into sub/.deps/bar.Po. depfile=${depfile-`echo "$object" | sed 's|[^\\/]*$|'${DEPDIR-.deps}'/&|;s|\.\([^.]*\)$|.P\1|;s|Pobj$|Po|'`} tmpdepfile=${tmpdepfile-`echo "$depfile" | sed 's/\.\([^.]*\)$/.T\1/'`} rm -f "$tmpdepfile" # Some modes work just like other modes, but use different flags. We # parameterize here, but still list the modes in the big case below, # to make depend.m4 easier to write. Note that we *cannot* use a case # here, because this file can only contain one case statement. if test "$depmode" = hp; then # HP compiler uses -M and no extra arg. gccflag=-M depmode=gcc fi if test "$depmode" = dashXmstdout; then # This is just like dashmstdout with a different argument. dashmflag=-xM depmode=dashmstdout fi case "$depmode" in gcc3) ## gcc 3 implements dependency tracking that does exactly what ## we want. Yay! Note: for some reason libtool 1.4 doesn't like ## it if -MD -MP comes after the -MF stuff. Hmm. ## Unfortunately, FreeBSD c89 acceptance of flags depends upon ## the command line argument order; so add the flags where they ## appear in depend2.am. Note that the slowdown incurred here ## affects only configure: in makefiles, %FASTDEP% shortcuts this. for arg do case $arg in -c) set fnord "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" "$arg" ;; *) set fnord "$@" "$arg" ;; esac shift # fnord shift # $arg done "$@" stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile" exit $stat fi mv "$tmpdepfile" "$depfile" ;; gcc) ## There are various ways to get dependency output from gcc. Here's ## why we pick this rather obscure method: ## - Don't want to use -MD because we'd like the dependencies to end ## up in a subdir. Having to rename by hand is ugly. ## (We might end up doing this anyway to support other compilers.) ## - The DEPENDENCIES_OUTPUT environment variable makes gcc act like ## -MM, not -M (despite what the docs say). ## - Using -M directly means running the compiler twice (even worse ## than renaming). if test -z "$gccflag"; then gccflag=-MD, fi "$@" -Wp,"$gccflag$tmpdepfile" stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" echo "$object : \\" > "$depfile" alpha=ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz ## The second -e expression handles DOS-style file names with drive letters. sed -e 's/^[^:]*: / /' \ -e 's/^['$alpha']:\/[^:]*: / /' < "$tmpdepfile" >> "$depfile" ## This next piece of magic avoids the `deleted header file' problem. ## The problem is that when a header file which appears in a .P file ## is deleted, the dependency causes make to die (because there is ## typically no way to rebuild the header). We avoid this by adding ## dummy dependencies for each header file. Too bad gcc doesn't do ## this for us directly. tr ' ' ' ' < "$tmpdepfile" | ## Some versions of gcc put a space before the `:'. On the theory ## that the space means something, we add a space to the output as ## well. ## Some versions of the HPUX 10.20 sed can't process this invocation ## correctly. Breaking it into two sed invocations is a workaround. sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; hp) # This case exists only to let depend.m4 do its work. It works by # looking at the text of this script. This case will never be run, # since it is checked for above. exit 1 ;; sgi) if test "$libtool" = yes; then "$@" "-Wp,-MDupdate,$tmpdepfile" else "$@" -MDupdate "$tmpdepfile" fi stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" if test -f "$tmpdepfile"; then # yes, the sourcefile depend on other files echo "$object : \\" > "$depfile" # Clip off the initial element (the dependent). Don't try to be # clever and replace this with sed code, as IRIX sed won't handle # lines with more than a fixed number of characters (4096 in # IRIX 6.2 sed, 8192 in IRIX 6.5). We also remove comment lines; # the IRIX cc adds comments like `#:fec' to the end of the # dependency line. tr ' ' ' ' < "$tmpdepfile" \ | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' | \ tr ' ' ' ' >> $depfile echo >> $depfile # The second pass generates a dummy entry for each header file. tr ' ' ' ' < "$tmpdepfile" \ | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' -e 's/$/:/' \ >> $depfile else # The sourcefile does not contain any dependencies, so just # store a dummy comment line, to avoid errors with the Makefile # "include basename.Plo" scheme. echo "#dummy" > "$depfile" fi rm -f "$tmpdepfile" ;; aix) # The C for AIX Compiler uses -M and outputs the dependencies # in a .u file. In older versions, this file always lives in the # current directory. Also, the AIX compiler puts `$object:' at the # start of each line; $object doesn't have directory information. # Version 6 uses the directory in both cases. dir=`echo "$object" | sed -e 's|/[^/]*$|/|'` test "x$dir" = "x$object" && dir= base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'` if test "$libtool" = yes; then tmpdepfile1=$dir$base.u tmpdepfile2=$base.u tmpdepfile3=$dir.libs/$base.u "$@" -Wc,-M else tmpdepfile1=$dir$base.u tmpdepfile2=$dir$base.u tmpdepfile3=$dir$base.u "$@" -M fi stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" exit $stat fi for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" do test -f "$tmpdepfile" && break done if test -f "$tmpdepfile"; then # Each line is of the form `foo.o: dependent.h'. # Do two passes, one to just change these to # `$object: dependent.h' and one to simply `dependent.h:'. sed -e "s,^.*\.[a-z]*:,$object:," < "$tmpdepfile" > "$depfile" # That's a tab and a space in the []. sed -e 's,^.*\.[a-z]*:[ ]*,,' -e 's,$,:,' < "$tmpdepfile" >> "$depfile" else # The sourcefile does not contain any dependencies, so just # store a dummy comment line, to avoid errors with the Makefile # "include basename.Plo" scheme. echo "#dummy" > "$depfile" fi rm -f "$tmpdepfile" ;; icc) # Intel's C compiler understands `-MD -MF file'. However on # icc -MD -MF foo.d -c -o sub/foo.o sub/foo.c # ICC 7.0 will fill foo.d with something like # foo.o: sub/foo.c # foo.o: sub/foo.h # which is wrong. We want: # sub/foo.o: sub/foo.c # sub/foo.o: sub/foo.h # sub/foo.c: # sub/foo.h: # ICC 7.1 will output # foo.o: sub/foo.c sub/foo.h # and will wrap long lines using \ : # foo.o: sub/foo.c ... \ # sub/foo.h ... \ # ... "$@" -MD -MF "$tmpdepfile" stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" # Each line is of the form `foo.o: dependent.h', # or `foo.o: dep1.h dep2.h \', or ` dep3.h dep4.h \'. # Do two passes, one to just change these to # `$object: dependent.h' and one to simply `dependent.h:'. sed "s,^[^:]*:,$object :," < "$tmpdepfile" > "$depfile" # Some versions of the HPUX 10.20 sed can't process this invocation # correctly. Breaking it into two sed invocations is a workaround. sed 's,^[^:]*: \(.*\)$,\1,;s/^\\$//;/^$/d;/:$/d' < "$tmpdepfile" | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; hp2) # The "hp" stanza above does not work with aCC (C++) and HP's ia64 # compilers, which have integrated preprocessors. The correct option # to use with these is +Maked; it writes dependencies to a file named # 'foo.d', which lands next to the object file, wherever that # happens to be. # Much of this is similar to the tru64 case; see comments there. dir=`echo "$object" | sed -e 's|/[^/]*$|/|'` test "x$dir" = "x$object" && dir= base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'` if test "$libtool" = yes; then tmpdepfile1=$dir$base.d tmpdepfile2=$dir.libs/$base.d "$@" -Wc,+Maked else tmpdepfile1=$dir$base.d tmpdepfile2=$dir$base.d "$@" +Maked fi stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile1" "$tmpdepfile2" exit $stat fi for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" do test -f "$tmpdepfile" && break done if test -f "$tmpdepfile"; then sed -e "s,^.*\.[a-z]*:,$object:," "$tmpdepfile" > "$depfile" # Add `dependent.h:' lines. sed -ne '2,${; s/^ *//; s/ \\*$//; s/$/:/; p;}' "$tmpdepfile" >> "$depfile" else echo "#dummy" > "$depfile" fi rm -f "$tmpdepfile" "$tmpdepfile2" ;; tru64) # The Tru64 compiler uses -MD to generate dependencies as a side # effect. `cc -MD -o foo.o ...' puts the dependencies into `foo.o.d'. # At least on Alpha/Redhat 6.1, Compaq CCC V6.2-504 seems to put # dependencies in `foo.d' instead, so we check for that too. # Subdirectories are respected. dir=`echo "$object" | sed -e 's|/[^/]*$|/|'` test "x$dir" = "x$object" && dir= base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'` if test "$libtool" = yes; then # With Tru64 cc, shared objects can also be used to make a # static library. This mechanism is used in libtool 1.4 series to # handle both shared and static libraries in a single compilation. # With libtool 1.4, dependencies were output in $dir.libs/$base.lo.d. # # With libtool 1.5 this exception was removed, and libtool now # generates 2 separate objects for the 2 libraries. These two # compilations output dependencies in $dir.libs/$base.o.d and # in $dir$base.o.d. We have to check for both files, because # one of the two compilations can be disabled. We should prefer # $dir$base.o.d over $dir.libs/$base.o.d because the latter is # automatically cleaned when .libs/ is deleted, while ignoring # the former would cause a distcleancheck panic. tmpdepfile1=$dir.libs/$base.lo.d # libtool 1.4 tmpdepfile2=$dir$base.o.d # libtool 1.5 tmpdepfile3=$dir.libs/$base.o.d # libtool 1.5 tmpdepfile4=$dir.libs/$base.d # Compaq CCC V6.2-504 "$@" -Wc,-MD else tmpdepfile1=$dir$base.o.d tmpdepfile2=$dir$base.d tmpdepfile3=$dir$base.d tmpdepfile4=$dir$base.d "$@" -MD fi stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" "$tmpdepfile4" exit $stat fi for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" "$tmpdepfile4" do test -f "$tmpdepfile" && break done if test -f "$tmpdepfile"; then sed -e "s,^.*\.[a-z]*:,$object:," < "$tmpdepfile" > "$depfile" # That's a tab and a space in the []. sed -e 's,^.*\.[a-z]*:[ ]*,,' -e 's,$,:,' < "$tmpdepfile" >> "$depfile" else echo "#dummy" > "$depfile" fi rm -f "$tmpdepfile" ;; #nosideeffect) # This comment above is used by automake to tell side-effect # dependency tracking mechanisms from slower ones. dashmstdout) # Important note: in order to support this mode, a compiler *must* # always write the preprocessed file to stdout, regardless of -o. "$@" || exit $? # Remove the call to Libtool. if test "$libtool" = yes; then while test $1 != '--mode=compile'; do shift done shift fi # Remove `-o $object'. IFS=" " for arg do case $arg in -o) shift ;; $object) shift ;; *) set fnord "$@" "$arg" shift # fnord shift # $arg ;; esac done test -z "$dashmflag" && dashmflag=-M # Require at least two characters before searching for `:' # in the target name. This is to cope with DOS-style filenames: # a dependency such as `c:/foo/bar' could be seen as target `c' otherwise. "$@" $dashmflag | sed 's:^[ ]*[^: ][^:][^:]*\:[ ]*:'"$object"'\: :' > "$tmpdepfile" rm -f "$depfile" cat < "$tmpdepfile" > "$depfile" tr ' ' ' ' < "$tmpdepfile" | \ ## Some versions of the HPUX 10.20 sed can't process this invocation ## correctly. Breaking it into two sed invocations is a workaround. sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; dashXmstdout) # This case only exists to satisfy depend.m4. It is never actually # run, as this mode is specially recognized in the preamble. exit 1 ;; makedepend) "$@" || exit $? # Remove any Libtool call if test "$libtool" = yes; then while test $1 != '--mode=compile'; do shift done shift fi # X makedepend shift cleared=no for arg in "$@"; do case $cleared in no) set ""; shift cleared=yes ;; esac case "$arg" in -D*|-I*) set fnord "$@" "$arg"; shift ;; # Strip any option that makedepend may not understand. Remove # the object too, otherwise makedepend will parse it as a source file. -*|$object) ;; *) set fnord "$@" "$arg"; shift ;; esac done obj_suffix="`echo $object | sed 's/^.*\././'`" touch "$tmpdepfile" ${MAKEDEPEND-makedepend} -o"$obj_suffix" -f"$tmpdepfile" "$@" rm -f "$depfile" cat < "$tmpdepfile" > "$depfile" sed '1,2d' "$tmpdepfile" | tr ' ' ' ' | \ ## Some versions of the HPUX 10.20 sed can't process this invocation ## correctly. Breaking it into two sed invocations is a workaround. sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" "$tmpdepfile".bak ;; cpp) # Important note: in order to support this mode, a compiler *must* # always write the preprocessed file to stdout. "$@" || exit $? # Remove the call to Libtool. if test "$libtool" = yes; then while test $1 != '--mode=compile'; do shift done shift fi # Remove `-o $object'. IFS=" " for arg do case $arg in -o) shift ;; $object) shift ;; *) set fnord "$@" "$arg" shift # fnord shift # $arg ;; esac done "$@" -E | sed -n -e '/^# [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' \ -e '/^#line [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' | sed '$ s: \\$::' > "$tmpdepfile" rm -f "$depfile" echo "$object : \\" > "$depfile" cat < "$tmpdepfile" >> "$depfile" sed < "$tmpdepfile" '/^$/d;s/^ //;s/ \\$//;s/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; msvisualcpp) # Important note: in order to support this mode, a compiler *must* # always write the preprocessed file to stdout, regardless of -o, # because we must use -o when running libtool. "$@" || exit $? IFS=" " for arg do case "$arg" in "-Gm"|"/Gm"|"-Gi"|"/Gi"|"-ZI"|"/ZI") set fnord "$@" shift shift ;; *) set fnord "$@" "$arg" shift shift ;; esac done "$@" -E | sed -n '/^#line [0-9][0-9]* "\([^"]*\)"/ s::echo "`cygpath -u \\"\1\\"`":p' | sort | uniq > "$tmpdepfile" rm -f "$depfile" echo "$object : \\" > "$depfile" . "$tmpdepfile" | sed 's% %\\ %g' | sed -n '/^\(.*\)$/ s:: \1 \\:p' >> "$depfile" echo " " >> "$depfile" . "$tmpdepfile" | sed 's% %\\ %g' | sed -n '/^\(.*\)$/ s::\1\::p' >> "$depfile" rm -f "$tmpdepfile" ;; none) exec "$@" ;; *) echo "Unknown depmode $depmode" 1>&2 exit 1 ;; esac exit 0 # Local Variables: # mode: shell-script # sh-indentation: 2 # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-end: "$" # End: xteddy-2.2/install-sh0000755000265600020320000001272011143371632011606 00000000000000#!/bin/sh # # install - install a program, script, or datafile # This comes from X11R5 (mit/util/scripts/install.sh). # # Copyright 1991 by the Massachusetts Institute of Technology # # Permission to use, copy, modify, distribute, and sell this software and its # documentation for any purpose is hereby granted without fee, provided that # the above copyright notice appear in all copies and that both that # copyright notice and this permission notice appear in supporting # documentation, and that the name of M.I.T. not be used in advertising or # publicity pertaining to distribution of the software without specific, # written prior permission. M.I.T. makes no representations about the # suitability of this software for any purpose. It is provided "as is" # without express or implied warranty. # # 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. It can only install one file at a time, a restriction # shared with many OS's install programs. # set DOITPROG to echo to test this script # Don't use :- since 4.3BSD and earlier shells don't like it. doit="${DOITPROG-}" # put in absolute paths if you don't have them in your path; or use env. vars. mvprog="${MVPROG-mv}" cpprog="${CPPROG-cp}" chmodprog="${CHMODPROG-chmod}" chownprog="${CHOWNPROG-chown}" chgrpprog="${CHGRPPROG-chgrp}" stripprog="${STRIPPROG-strip}" rmprog="${RMPROG-rm}" mkdirprog="${MKDIRPROG-mkdir}" transformbasename="" transform_arg="" instcmd="$mvprog" chmodcmd="$chmodprog 0755" chowncmd="" chgrpcmd="" stripcmd="" rmcmd="$rmprog -f" mvcmd="$mvprog" src="" dst="" dir_arg="" while [ x"$1" != x ]; do case $1 in -c) instcmd="$cpprog" shift continue;; -d) dir_arg=true shift continue;; -m) chmodcmd="$chmodprog $2" shift shift continue;; -o) chowncmd="$chownprog $2" shift shift continue;; -g) chgrpcmd="$chgrpprog $2" shift shift continue;; -s) stripcmd="$stripprog" shift continue;; -t=*) transformarg=`echo $1 | sed 's/-t=//'` shift continue;; -b=*) transformbasename=`echo $1 | sed 's/-b=//'` shift continue;; *) if [ x"$src" = x ] then src=$1 else # this colon is to work around a 386BSD /bin/sh bug : dst=$1 fi shift continue;; esac done if [ x"$src" = x ] then echo "install: no input file specified" exit 1 else true fi if [ x"$dir_arg" != x ]; then dst=$src src="" if [ -d $dst ]; then instcmd=: else instcmd=mkdir fi else # Waiting for this to be detected by the "$instcmd $src $dsttmp" command # might cause directories to be created, which would be especially bad # if $src (and thus $dsttmp) contains '*'. if [ -f $src -o -d $src ] then true else echo "install: $src does not exist" exit 1 fi if [ x"$dst" = x ] then echo "install: no destination specified" exit 1 else true fi # If destination is a directory, append the input filename; if your system # does not like double slashes in filenames, you may need to add some logic if [ -d $dst ] then dst="$dst"/`basename $src` else true fi fi ## this sed command emulates the dirname command dstdir=`echo $dst | sed -e 's,[^/]*$,,;s,/$,,;s,^$,.,'` # Make sure that the destination directory exists. # this part is taken from Noah Friedman's mkinstalldirs script # Skip lots of stat calls in the usual case. if [ ! -d "$dstdir" ]; then defaultIFS=' ' IFS="${IFS-${defaultIFS}}" oIFS="${IFS}" # Some sh's can't handle IFS=/ for some reason. IFS='%' set - `echo ${dstdir} | sed -e 's@/@%@g' -e 's@^%@/@'` IFS="${oIFS}" pathcomp='' while [ $# -ne 0 ] ; do pathcomp="${pathcomp}${1}" shift if [ ! -d "${pathcomp}" ] ; then $mkdirprog "${pathcomp}" else true fi pathcomp="${pathcomp}/" done fi if [ x"$dir_arg" != x ] then $doit $instcmd $dst && if [ x"$chowncmd" != x ]; then $doit $chowncmd $dst; else true ; fi && if [ x"$chgrpcmd" != x ]; then $doit $chgrpcmd $dst; else true ; fi && if [ x"$stripcmd" != x ]; then $doit $stripcmd $dst; else true ; fi && if [ x"$chmodcmd" != x ]; then $doit $chmodcmd $dst; else true ; fi else # If we're going to rename the final executable, determine the name now. if [ x"$transformarg" = x ] then dstfile=`basename $dst` else dstfile=`basename $dst $transformbasename | sed $transformarg`$transformbasename fi # don't allow the sed command to completely eliminate the filename if [ x"$dstfile" = x ] then dstfile=`basename $dst` else true fi # Make a temp file name in the proper directory. dsttmp=$dstdir/#inst.$$# # Move or copy the file name to the temp name $doit $instcmd $src $dsttmp && trap "rm -f ${dsttmp}" 0 && # 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 $instcmd $src $dsttmp" command. if [ x"$chowncmd" != x ]; then $doit $chowncmd $dsttmp; else true;fi && if [ x"$chgrpcmd" != x ]; then $doit $chgrpcmd $dsttmp; else true;fi && if [ x"$stripcmd" != x ]; then $doit $stripcmd $dsttmp; else true;fi && if [ x"$chmodcmd" != x ]; then $doit $chmodcmd $dsttmp; else true;fi && # Now rename the file to the real destination. $doit $rmcmd -f $dstdir/$dstfile && $doit $mvcmd $dsttmp $dstdir/$dstfile fi && exit 0 xteddy-2.2/missing0000755000265600020320000001420211143371632011176 00000000000000#! /bin/sh # Common stub for a few missing GNU programs while installing. # Copyright (C) 1996, 1997 Free Software Foundation, Inc. # Franc,ois 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, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA # 02111-1307, USA. if test $# -eq 0; then echo 1>&2 "Try \`$0 --help' for more information" exit 1 fi case "$1" in -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 Supported PROGRAM values: aclocal touch file \`aclocal.m4' autoconf touch file \`configure' autoheader touch file \`config.h.in' 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 lex create \`lex.yy.c', if possible, from existing .c makeinfo touch the output file yacc create \`y.tab.[ch]', if possible, from existing .[ch]" ;; -v|--v|--ve|--ver|--vers|--versi|--versio|--version) echo "missing - GNU libit 0.0" ;; -*) echo 1>&2 "$0: Unknown \`$1' option" echo 1>&2 "Try \`$0 --help' for more information" exit 1 ;; aclocal) echo 1>&2 "\ WARNING: \`$1' is missing on your system. You should only need it if you modified \`acinclude.m4' or \`configure.in'. 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 missing on your system. You should only need it if you modified \`configure.in'. 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 missing on your system. You should only need it if you modified \`acconfig.h' or \`configure.in'. 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.in` if test -z "$files"; then files=`sed -n 's/^[ ]*A[CM]_CONFIG_HEADER(\([^):]*\)).*/\1/p' configure.in` test -z "$files" || files="$files.in" else files=`echo "$files" | sed -e 's/:/ /g'` fi test -z "$files" && files="config.h.in" touch $files ;; automake) echo 1>&2 "\ WARNING: \`$1' is missing on your system. You should only need it if you modified \`Makefile.am', \`acinclude.m4' or \`configure.in'. 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$/touch \1.in/' \ | sh ;; bison|yacc) echo 1>&2 "\ WARNING: \`$1' is missing on your system. 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 [ $# -ne 1 ]; then eval LASTARG="\${$#}" case "$LASTARG" in *.y) SRCFILE=`echo "$LASTARG" | sed 's/y$/c/'` if [ -f "$SRCFILE" ]; then cp "$SRCFILE" y.tab.c fi SRCFILE=`echo "$LASTARG" | sed 's/y$/h/'` if [ -f "$SRCFILE" ]; then cp "$SRCFILE" y.tab.h fi ;; esac fi if [ ! -f y.tab.h ]; then echo >y.tab.h fi if [ ! -f y.tab.c ]; then echo 'main() { return 0; }' >y.tab.c fi ;; lex|flex) echo 1>&2 "\ WARNING: \`$1' is missing on your system. 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 [ $# -ne 1 ]; then eval LASTARG="\${$#}" case "$LASTARG" in *.l) SRCFILE=`echo "$LASTARG" | sed 's/l$/c/'` if [ -f "$SRCFILE" ]; then cp "$SRCFILE" lex.yy.c fi ;; esac fi if [ ! -f lex.yy.c ]; then echo 'main() { return 0; }' >lex.yy.c fi ;; makeinfo) echo 1>&2 "\ WARNING: \`$1' is missing on your system. 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." file=`echo "$*" | sed -n 's/.*-o \([^ ]*\).*/\1/p'` if test -z "$file"; then file=`echo "$*" | sed 's/.* \([^ ]*\) *$/\1/'` file=`sed -n '/^@setfilename/ { s/.* \([^ ]*\) *$/\1/; p; q; }' $file` fi touch $file ;; *) echo 1>&2 "\ WARNING: \`$1' is needed, and you do not seem to have it handy on your system. 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 prerequirements 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 xteddy-2.2/mkinstalldirs0000755000265600020320000000133411143371632012407 00000000000000#! /bin/sh # mkinstalldirs --- make directory hierarchy # Author: Noah Friedman # Created: 1993-05-16 # Public domain # $Id: mkinstalldirs,v 1.10 1996/05/03 07:37:52 friedman Exp $ errstatus=0 for file do set fnord `echo ":$file" | sed -ne 's/^:\//#/;s/^://;s/\// /g;s/^#/\//;p'` shift pathcomp= for d do pathcomp="$pathcomp$d" case "$pathcomp" in -* ) pathcomp=./$pathcomp ;; esac if test ! -d "$pathcomp"; then echo "mkdir $pathcomp" 1>&2 mkdir "$pathcomp" || lasterr=$? if test ! -d "$pathcomp"; then errstatus=$lasterr fi fi pathcomp="$pathcomp/" done done exit $errstatus # mkinstalldirs ends here xteddy-2.2/xteddy.c0000644000265600020320000003511011155142047011244 00000000000000/* Xteddy - a cuddly bear to place on your desktop. */ /* Author: Stefan Gustavson, ISY-LiTH, 1994 */ /* Internet email address: stegu@itn.liu.se */ /* This software is distributed under the GNU */ /* Public Licence (GPL). */ /* Also, if you modify this program or include it */ /* in some kind of official distribution, I would */ /* like to know about it. */ /* Xpm pixmap manipulation routines for color */ /* and grayscale teddies are from the Xpm library */ /* by Arnaud Le Hors, lehors@sophia.inria.fr, */ /* Copyright 1990-93 GROUPE BULL */ /* This is Xteddy version 2.2 as of 2009-02-25. */ /* from Peter De Wachter */ /* Changes: see ChangeLog */ #define DEFAULT_IMAGE_DIR "/usr/share/xteddy" #define DEFAULT_LOCAL_IMAGE_DIR "/usr/local/share/xteddy" #define XTEDDY_VERSION "2.02" #include #include #include #include #include #include #include #include #include #include #include #include #include #include #ifndef TRUE #define TRUE 1 #endif #ifndef FALSE #define FALSE 0 #endif static char *progname; Display *display; int screen_num; ino_t xteddy_inodenum; /* the inode of the executable. */ struct stat stat_buf_xteddy; char *Extensions[] = { "xpm", "png", "tif", "jpg", "jpeg", "gif", "pnm", "XPM", "PNG", "TIF", "JPG", "JPEG", "GIF", "PNG", NULL }; char *InitTeddy(char *teddy) /* Initializing filename */ { char fbuf[MAXPATHLEN], sbuf[MAXPATHLEN], *name, *ext, *sext; struct stat stat_buf; char **ptr; ino_t teddy_inodenum; if ( !teddy || !*(teddy) ) return NULL; if ( !stat(teddy, &stat_buf) ){ /* If the executable is in the current directory, xteddy will try to load itself (the binary!) and fail. Don't do this. */ teddy_inodenum=stat_buf.st_ino; if (teddy_inodenum==xteddy_inodenum){ fprintf(stderr, "Warning: the file named '%s' in the current directory is the executable program itself! Not trying to display it as an image.\n", teddy); /* Note, if the current dir contains a subdir named xteddy and xteddy is invoked as "xteddy" without the path, this error will also be triggered. The error message above will be (misleadingly) printed, but the correct action (not trying to load a directory as an image) will occur. */ }else{ return strdup(teddy); } } /* Test, some image formats PIXMAP_PATH */ strcat(strcpy(fbuf, PIXMAP_PATH), "/"); strcat(strcat(strcpy(sbuf, DEFAULT_IMAGE_DIR), "/"), teddy); name = fbuf + strlen(fbuf); strcpy(name, teddy); if ( !stat(fbuf, &stat_buf) ) return strdup(fbuf); if ( !stat(sbuf, &stat_buf) ) return strdup(sbuf); strcat(name, "."); ext = name + strlen(name); sext = sbuf + strlen(sbuf); for ( ptr = Extensions; *ptr; ptr++ ) { strcat(name, *ptr); if ( !stat(name, &stat_buf) ) return strdup(name); if ( !stat(fbuf, &stat_buf) ) return strdup(fbuf); strcat(sbuf, "."); /* missing the dot before the extension! */ strcat(sbuf, *ptr); if ( !stat(sbuf, &stat_buf) ) return strdup(sbuf); *ext = *sext = 0; } /* Repeat with a different search path. */ strcat(strcat(strcpy(sbuf, DEFAULT_LOCAL_IMAGE_DIR), "/"), teddy); if ( !stat(sbuf, &stat_buf) ) return strdup(sbuf); sext = sbuf + strlen(sbuf); for ( ptr = Extensions; *ptr; ptr++ ) { strcat(sbuf, "."); /* missing the dot before the extension! */ strcat(sbuf, *ptr); if ( !stat(sbuf, &stat_buf) ) return strdup(sbuf); *sext = 0; } /* failed to find anything. */ return NULL; } int main(int argc, char **argv) { /* Display, window and gc manipulation variables */ Window win; Pixmap pm_image, pm_mask; XSetWindowAttributes setwinattr; unsigned long valuemask, inputmask; int x, y, geomflags; unsigned int xw, xh; unsigned int border_width = 0; unsigned int display_width, display_height; XSizeHints size_hints; XWMHints wm_hints; XClassHint class_hints; #ifdef FORTIFY_SOURCE XTextProperty windowName, iconName; #else XTextProperty windowName; #endif int argnum; int use_wm, float_up, allow_quit, cursor_blank; XEvent report; char *display_name = NULL; char buffer[20]; int bufsize = 20; KeySym keysym; XComposeStatus compose; int charcount; Cursor cursor; char *teddy; char *file; /* Window movement variables */ XWindowChanges winchanges; Window root, child, basewin; int offs_x, offs_y, new_x, new_y, tmp_x, tmp_y; unsigned int tmp_mask; Imlib_Image *im; int im_width, im_height; /* Determine program name */ if ((progname = strrchr(argv[0],'/')) == NULL) progname = argv[0]; else progname++; teddy = progname; /* Option handling: "-wm", "-float", "-noquit", "-geometry", */ /* "-display" and "-nocursor" are recognized. See manual page for details. */ /* -F ... Other pixmap name */ /* -F or -f are equivalent. A space may be included if desired after the option (eg "-f xduck") */ /* -v prints version. -h or --help prints help */ use_wm = FALSE; float_up = FALSE; allow_quit = TRUE; cursor_blank = FALSE; x = y = 0; geomflags = 0; for ( argnum = 1; argnum < argc; argnum++ ) { if (!strcmp(argv[argnum],"-wm")) use_wm = TRUE; if (!strcmp(argv[argnum],"-float")) float_up = TRUE; if (!strcmp(argv[argnum],"-noquit")) allow_quit = FALSE; if (!strcmp(argv[argnum],"-geometry")) geomflags = XParseGeometry(argv[++argnum], &x, &y, &xw, &xh); if (!strcmp(argv[argnum],"-display")) display_name = argv[++argnum]; if (!strcmp(argv[argnum],"-nocursor")) cursor_blank = TRUE; /* Use -f or -F; -f seems more natural. But -float does not mean "-f loat" ! */ if ( (!strncmp(argv[argnum],"-F", 2)) || ( (!strncmp(argv[argnum],"-f", 2)) && (strcmp(argv[argnum],"-float")) ) ) teddy = argv[argnum] + 2; if (strlen(teddy) == 0){ /* accept "-f " as well as "-f" */ teddy = argv[argnum] + 3; argnum ++; } if (!strcmp(argv[argnum],"-v")){ fprintf(stderr,"xteddy version: %s\n",XTEDDY_VERSION); exit (0); } if ((!strncmp(argv[argnum],"-h", 2)) || (!strncmp(argv[argnum],"--help", 2))){ /* show help */ fprintf (stderr,"xteddy is a cute teddy bear that sits on your X desktop.\n"); fprintf (stderr,"Usage: xteddy [ OPTIONS ] [ -f ]\n"); fprintf (stderr," -wm use the window manager\n"); fprintf (stderr," -float always float on top of other windows\n"); fprintf (stderr," -noquit disable the 'q' key to quit.\n"); fprintf (stderr," -f,-F use as the image.\n"); fprintf (stderr," -geometry,-display have their usual meaning in X.\n"); fprintf (stderr," -h, --help display this help and exit\n"); fprintf (stderr," -v print version information and exit\n\n"); fprintf (stderr,"The default image is a teddy bear, but others may be selected with -f (or -F).\n"); fprintf (stderr,"To tuck him back up in bed, move the mouse over him and press the 'q' or 'Esc' key.\n"); fprintf (stderr,"This is xteddy version %s. See `man 1 xteddy` for more information.\n",XTEDDY_VERSION); exit (0); } } stat(argv[0], &stat_buf_xteddy); /* find the inode number of the executable file itself */ xteddy_inodenum=stat_buf_xteddy.st_ino; /* [This can be fooled if it is invoked as "xteddy" without the path, AND eg the working directory contains a subdirectory called xteddy] */ /* Connect to X server */ if ( (display = XOpenDisplay(display_name)) == NULL ) { (void) fprintf(stderr, "%s: Cannot connect to X server %s\n", progname, XDisplayName(display_name)); exit(-1); } /* Get screen size and depth */ display_width = DisplayWidth(display, screen_num); display_height = DisplayHeight(display, screen_num); /* set the maximum number of colors to allocate for 8bpp and less to 128 */ imlib_set_color_usage(128); /* dither for depths < 24bpp */ imlib_context_set_dither(1); /* set the display, visual and colormap we are using */ imlib_context_set_display(display); imlib_context_set_visual(DefaultVisual(display, DefaultScreen(display))); imlib_context_set_colormap(DefaultColormap(display, DefaultScreen(display))); if ( !(file = InitTeddy(teddy)) ) { fprintf(stderr, "Can not find any image with name '%s'.\n", teddy); return -1; } if ( !(im=imlib_load_image_immediately(file)) ) { fprintf(stderr, "Most probably, the file '%s' is not a valid image.\n", teddy); return -1; } imlib_context_set_image(im); im_width = imlib_image_get_width(); im_height = imlib_image_get_height(); /* Set the window position according to user preferences */ if (geomflags & XNegative) x = display_width - im_width + x; if (geomflags & YNegative) y = display_height - im_height + y; /* Clip against bounds to stay on the screen */ if (x<0) x=0; if (x > display_width - im_width) x = display_width - im_width; if (y<0) y=0; if (y > display_height - im_height) y = display_height - im_height; /* Create the main window */ win = XCreateSimpleWindow(display, DefaultRootWindow(display), x,y,im_width,im_height,border_width, BlackPixel(display,screen_num), WhitePixel(display,screen_num)); XSelectInput(display,win,StructureNotifyMask); imlib_context_set_drawable(win); imlib_render_pixmaps_for_whole_image(&pm_image, &pm_mask); XSetWindowBackgroundPixmap(display, win, pm_image); XShapeCombineMask(display, win, ShapeBounding, 0, 0, pm_mask, ShapeSet); XFreePixmap(display, pm_image); XFreePixmap(display, pm_mask); imlib_free_image_and_decache(); basewin = win; if (use_wm) setwinattr.override_redirect = FALSE; else setwinattr.override_redirect = TRUE; if (cursor_blank) { Pixmap blank; XColor dummy; const char data[1] = { 0 }; blank = XCreateBitmapFromData (display, win, data, 1, 1); if (blank == None) { fprintf (stderr, "error: out of memory.\n"); exit (1); } cursor = XCreatePixmapCursor (display, blank, blank, &dummy, &dummy, 0, 0); XFreePixmap (display , blank); } else cursor = XCreateFontCursor(display, XC_heart); setwinattr.cursor = cursor; valuemask = CWOverrideRedirect | CWCursor; XChangeWindowAttributes(display, win, valuemask, &setwinattr); /* Report size hints and other stuff to the window manager */ size_hints.min_width = im_width; /* Don't allow any resizing */ size_hints.min_height = im_height; size_hints.max_width = im_width; size_hints.max_height = im_height; size_hints.flags = PPosition | PSize | PMinSize | PMaxSize; if (XStringListToTextProperty(&(teddy), 1, &windowName) == 0) { (void) fprintf(stderr, "%s: structure allocation for windowName failed.\n", progname); return -1; } wm_hints.initial_state = NormalState; wm_hints.input = TRUE; wm_hints.flags = StateHint | IconPixmapHint | InputHint; class_hints.res_name = progname; class_hints.res_class = "Xteddy"; #ifdef FORTIFY_SOURCE XSetWMProperties(display, win, &windowName, &iconName, argv, argc, &size_hints, &wm_hints, &class_hints); #else XSetWMProperties(display, win, &windowName, NULL, argv, argc, &size_hints, &wm_hints, &class_hints); #endif /* Select event types wanted */ inputmask = ExposureMask | KeyPressMask | ButtonPressMask | ButtonReleaseMask | StructureNotifyMask | ButtonMotionMask | PointerMotionHintMask | EnterWindowMask | LeaveWindowMask; if (float_up) inputmask |= VisibilityChangeMask; XSelectInput(display, win, inputmask); /* Display window */ XMapWindow(display,win); /* Get and process the events */ while (1) { XNextEvent(display, &report); switch(report.type) { case ReparentNotify: /* Window was reparented by the window manager */ if (!use_wm) (void) fprintf(stderr, "%s: Window manager wouldn't leave the window alone!\n", progname); basewin = report.xreparent.parent; break; case EnterNotify: /* Grab the keyboard while the pointer is in the window */ XGrabKeyboard(display, win, FALSE, GrabModeAsync, GrabModeAsync, CurrentTime); break; case LeaveNotify: /* Release the keyboard when the pointer leaves the window */ XUngrabKeyboard(display, CurrentTime); break; case ButtonPress: /* Raise xteddy above sibling windows */ XRaiseWindow(display, win); /* Remember where the mouse went down */ XQueryPointer(display, basewin, &root, &child, &tmp_x, &tmp_y, &offs_x, &offs_y, &tmp_mask); break; case ButtonRelease: /* Place xteddy at the new position */ XQueryPointer(display, basewin, &root, &child, &new_x, &new_y, &tmp_x, &tmp_y, &tmp_mask); winchanges.x = new_x - offs_x; winchanges.y = new_y - offs_y; XReconfigureWMWindow(display, basewin, screen_num, CWX | CWY, &winchanges); break; case MotionNotify: /* Move xteddy around with the mouse */ while (XCheckMaskEvent(display, ButtonMotionMask, &report)); if (!XQueryPointer(display, report.xmotion.window, &root, &child, &new_x, &new_y, &tmp_x, &tmp_y, &tmp_mask)) break; winchanges.x = new_x - offs_x; winchanges.y = new_y - offs_y; XReconfigureWMWindow(display, win, screen_num, CWX | CWY, &winchanges); break; case VisibilityNotify: /* Put xteddy on top of overlapping windows */ if (float_up) if ((report.xvisibility.state == VisibilityFullyObscured) || (report.xvisibility.state == VisibilityPartiallyObscured)) XRaiseWindow(display,win); break; case KeyPress: /* Exit on "q" or "Q" or "Esc" */ charcount = XLookupString(&report.xkey, buffer, bufsize, &keysym, &compose); if((keysym == XK_Q) || (keysym == XK_q) || (keysym == XK_Escape)) { if (allow_quit) { XCloseDisplay(display); return 0; } } break; default: /* Throw away all other events */ break; } /* end switch */ } /* end while */ } xteddy-2.2/xteddy.60000644000265600020320000001226011153061233011163 00000000000000.TH XTEDDY 6 "25 May 2005" "X Version 11" .SH NAME xteddy - cuddly teddy bear for your X Windows desktop. .SH SYNOPSIS .B xteddy [ .B \-wm \-float \-noquit \-nocursor \-F ] .br [ .B \-geometry \WIDTHxHEIGHT+X+Y \-display SERVER ] .br [ .B \-h --help -v ] .SH DESCRIPTION .I Xteddy is a cuddly teddy bear for your X Windows desktop. .PP Normally, .I xteddy just sits around doing nothing. After all, that's what teddy bears are for. Look at him, talk to him, place heavy windows on top of him, zap him around until he becomes dizzy, do what you like; he will always be your true (albeit virtual) friend. .PP You can move .I xteddy with the mouse by pointing at him and dragging him around. When clicked upon, he will pop up on top of all other windows. If you type "q" or "Esc" on him, he will exit (or, as I like to think of it, be tucked away in the file system until you need him next time). .PP That's it. But he's cute. .SH OPTIONS .TP .B \-wm Use the window manager. Normally, .I xteddy sets the override_redirect flag for his window, which will cause most window managers to ignore him. However, some window managers might have problems coping with a window that is nailed directly to the root. In that case, use this option. If possible, instruct your window manager not to put any title bar or window frame on the window, or .I xteddy will lose some of his charm. .TP .B \-float Float up on top of overlapping windows. This will make .I xteddy stay in sight at all times, so you won't lose him. However, this is a bit intrusive and quite unlike a real teddy bear, so it is not the default action. .TP .B \-noquit Disable the "quit" command (do not quit when typing "q" in the window, but of course still on explicit window kills or process kills). This might seem an unnecessary option, but if you use the -wm option .I Xteddy might keep receiving keyboard events even after the mouse has left his window. I you use the -wm option in conjunction with a click-to-type window manager, you would probably want to include this option. .TP .B \-nocursor Disable the X11 cursor over the .I xteddy window. .TP .B \-F,\-f < .I file > Display another image instead of .I xteddy. .I file can be the full name of an image file which reasonably should contain a transparent background. If there is no such file in the current working directory .I xteddy searches in $(installation_prefix)/share/xteddy, where $(installation_prefix) is determined at compile time (for instance /usr/X11R6). If this fails by default /usr/share/xteddy is searched. Failing this, /usr/local/share/xteddy is searched. If there is no such file in these directories the following appendixes where appended to the given name: xpm, png, tif, jpg, jpeg, gif and pnm. These files will be searched in the three directories. If all files the last try is to append the extensions in upper cases. '\-F' and '\-f' are equivalent, and the space in '-f ' is optional. .PP If no `-F` parameter is given \fBfile\fP equals to \fIxteddy\fP or more precisely to the name of the calling program. For instance if there is a symlink .RS .PP \fBln -s xteddy xpenguin\fP .RE .PP then \fBfile\fP equals to \fIxpenguin\fP and the appropriate pixmaps with the name \fIxpenguin\fP are searched for. .PP .RE .TP .B \-geometry The standard X geometry specification. Only X and Y position requests are honored. Any height and width specifications will be ignored. .TP .B \-display Specify an X server other than the local display. .br .TP .B \-h, --help Print a help message and exit. .br .TP .B \-v Print the version number and exit. .br .ne 8 .SH BEARS .br .ne 8 The cast of characters is currently: teddy xalex xbobo xbrummi xcherubino xduck xhedgehog xklitze xnamu xorca xpenguin xpuppy xruessel xteddy xtrouble.png xtrouble_large xtuxxy. .SH AUTHOR Stefan Gustavson, ISY-LiTH (stegu@itn.liu.se). .I Xteddy is distributed under the GNU General Public License. .SH BUGS The Desktop Manager in Sun CDE (Common Desktop Environment) does not like xteddy. Xteddy by default does not use the window manager, and so he shows up as a sticky window on all desktops. If you don't like this, and try to circumvent it by running him with the -wm option, move him by grabbing him by the tummy instead of by the title bar, and then move him partly off the screen, the image is lost and never redrawn again, so all you see is a silhouette of a teddy bear. I have no idea why this happens. If you know, please tell me, and if you can fix it, please do. If you run CDE on other platforms than Sun, please tell me if it works for you. CDE does something which xteddy does not handle properly, and since I have a Sun with CDE myself I would like to know what the problem is. .PP For most X servers, the -float option does not work properly if xteddy is moved partially off the screen. This is the X server's fault, not mine. .PP If two copies of .I xteddy are placed so they overlap, and both were run with the .I -float option, the X server will try to put each on top of the other in an endless loop, which looks very bad and takes a lot of CPU power. .PP .I Xteddy does not make use of the X resource database. I just didn't get around to that. .PP Please send bug reports, fixes, suggestions, fan mail or or hacks to: stegu@itn.liu.se. xteddy-2.2/xtoys0000755000265600020320000000064211143371632010716 00000000000000#!/bin/bash # # /usr/bin/X11/xtoys -- puts a random cuddly toy onto desktop # # Thanks to Andrew Stribblehill # who supported this script # if [ -d /usr/local/share/xteddy ] ; then images=(`ls /usr/share/xteddy` `ls /usr/local/share/xteddy 2> /dev/null`) else images=(`ls /usr/share/xteddy`) fi num=${#images[*]} choice=`expr $RANDOM % $num` /usr/games/xteddy -F${images[choice]} $* xteddy-2.2/xteddy_test0000755000265600020320000000054511143371632012072 00000000000000#!/bin/sh i=0 if [ -d /usr/share/xteddy ] ; then for img in `ls /usr/share/xteddy` ; do i=`expr $i + 50` xteddy -F/usr/share/xteddy/$img -geometry +$i+$i & done fi if [ -d /usr/local/share/xteddy ] ; then for img in `ls /usr/local/share/xteddy` ; do i=`expr $i + 50` xteddy -F/usr/local/share/xteddy/$img -geometry +$i+$i & done fi xteddy-2.2/xteddy.README0000644000265600020320000001506011143371632011762 00000000000000------------------------------------------------------------------------ xteddy version 1.0.3, by Stefan Gustavson, ISY-LiTH (stegu@itn.liu.se) ------------------------------------------------------------------------ DESCRIPTION xteddy is a cuddly teddy bear for your X Windows desktop. Normally, xteddy just sits around doing nothing. After all, that's what teddy bears are for. Look at him, talk to him, place heavy windows on top of him, zap him around until he becomes dizzy, do what you like; he will always be your true (albeit virtual) friend. You can move xteddy with the mouse by pointing at him and dragging him around. When clicked upon, he will pop up on top of all other windows. If you type "q" on him, he will die (or, as I like to think of it, be tucked away in the file system until you need him next time). That's it. But he's cute. OPTIONS By default, xteddy will set the override_redirect attribute for his window, which means that he will be ignored by most window managers and live directly on the root window all by himself. You cannot iconify or resize him. This is intentional. If you really want to be able to iconify xteddy, there is code to communicate with a window manager, and I have even specified an icon bitmap for him. All it takes is that you supply the command-line option -wm. Beware that this will probably cram title bars and other ugly things onto xteddy if you do not tell you window manager otherwise. To find out how to do that, refer to the manual of your specific window manager. If you want your teddy close at all times, there is also an option -float to make xteddy float up on top of all overlapping windows on the screen. This is a bit intrusive and unlike a real teddy bear, so it is not the default action. The original to xteddy sits on my real-world desktop, and he sometimes gets obscured with paper and stuff, too. If you place two copies of "xteddy -float" so that they overlap, you are asking for trouble. The option -mono forces xteddy to show up in black-and-white, without allocationg any colormap entries. Xteddy accepts a standard X -geometry option, but will only honour the position request. Teddy bears are not scalable. COMPILATION You will need the shape extension to X and the Xpm library to compile. The shape extension to X is bundled with all official distributions of X. The Xpm library is included in most distributions, and it is installed on most systems. If not, it can be obtained by anonymous FTP to avahi.inria.fr or to export.lcs.mit.edu. Xteddy is known to compile fine on almost every imagineable X Windows system, including X11R4, X11R5, X11R6 and OpenWindows (all versions), and almost any Unix system, at least on Solaris, SunOS, Linux, Ultrix, HP/UX, AIX, A/UX and IRIX. To compile, just execute "./configure --prefix=" where can be /usr/local or any other directory where you want xteddy to be installed. Configure checks whether Xpm is installed and defines -DHAVE_LIBXPM if successful. (Please check if this mechanism works right, because it is tested only in some cases. If configure can not detect your Xpm library please edit the resulting Makefile manually, that means add -L to X_LIBS and -I to X_CFLAGS.) Than you can type "make xteddy". YOUR OWN TEDDY Now there is a command line option for making your own favourite teddy bear for the program. You need four files xteddy_bw.xbm and xteddy_mask.xbm are standard X bitmap files that contain the monochrome image and the shape mask. The color and grayscale images are in one file, xteddy_color.xpm, in the X Pixmap format defined for the Xpm library. The same shape mask is used for monochrome, grayscale and color. At last you need an icon which is named xteddy_icon.xbm. See to it that you get the names right for the variables at the top of the file. The image size doesn't really matter, as long as it is the same for all three files. If you make your own teddy, please send me a copy. I'll take good care of him. If you create four files according to this scheme with for instance the Linux penguin and name the files xpenguin_... then you can call xteddy -Fxpenguin and instead of the lovely xteddy you will see penguin at your desktop. Alternatively you can make a symlink ln -s xteddy xpenguin and the xpenguin pixmaps are searched too. BUGS Some window managers may experience problems if you don't specify -wm. If you want to use Xteddy with a virtual window manager without having him as a "sticky" window on all desktops, use the option -wm and instruct your window manager not to decorate the window with title bar and stuff. You might want to add the option -noquit as well to prevent accidentally killing xteddy in case he happens to get keyboard focus. The Desktop Manager in Sun CDE (Common Desktop Environment) does not like xteddy at all. If you run him without any parameters, he shows up on all your alternate desktops, which might not be all that bad, but if you try to circumvent that by running him with the -wm option, and move him by grabbing him by the tummy instead of by the title bar, and then move him partly off the screen, the image is lost and never redrawn again, so all you see is a silhouette of a teddy bear. I have no idea why this happens. If you know, please tell me, and if you can fix it, please do. If you run CDE on other platforms than Sun, please tell me if it works for you. CDE does something which xteddy does not handle properly, and since I have a Sun with CDE myself I would like to know what the problem is. On most X servers, the -float option does not work properly if xteddy is moved partially off the screen. This is not my fault. It's your X server that doesn't know the difference between occlusion and clipping and fails to send occlusion notifications to clipped windows. AUTHOR Written by Stefan Gustavson, ISY-LiTH, 1994-1997. Email address: stegu@itn.liu.se Xteddy is a program I made entirely for fun. If you make any useful changes, additions, improvements, or bug fixes, please send me a message. If you like xteddy, remember to smile. This software is distributed under the GNU General Public License (GPL). The Xpm library is Copyright 1990-93 GROUPE BULL. The X Window System is Copyright the Massachusetts Institute of Technology. "X Window System" is a trademark of MIT. The teddy bear images are photos of a Tender Teddy from Gund. DISCLAIMER I make no promises that this software will work for any purpose whatsoever. If you hurt yourself or your system, don't blame me. Blame xteddy if you like. He doesn't mind. ---- This file wast last modified on Aug 7, 1997 ---- xteddy-2.2/images.credit0000644000265600020320000000270111143371632012241 00000000000000xcherubino ---------- Made by Russ. He is a reddish-pink rabbit, named after the page in Mozart's The Magic Flute. photo and editing by Richard Neill. Thanks to: http://www.gimpguru.org/Tutorials/ReplaceForeground/ xhedgehog --------- Made by Furrytails ltd, and originally arrived with fujifilm. photo and editing by Richard Neill. Thanks to: http://www.gimpguru.org/Tutorials/ReplaceForeground/ xpuppy ------ A labrador from Keel Toys. photo and editing by Richard Neill. he was photographed on a purple background. Thanks to: http://www.gimpguru.org/Tutorials/ReplaceForeground/ xtrouble -------- Made by Jellycat. He is a very floppy and exceedingly cuddly, fat, teddy bear, who loves honey. Being naturally mischievous, he has the name "Trouble" photo and editing by Richard Neill. Thanks to: http://www.gimpguru.org/Tutorials/ReplaceForeground/ xtuxxy ------ Credits & lots of URLs for xtuxxy.png Tux is a stuffed doll and based on the official mascot of the Linux. It is based on the original Linux Logo by Larry Ewing (http://www.isc.tamu.edu/~lewing/linux/) and was designed by Liebscher & Partner (http://www.freibergnet.de), you can order it from them. The doll is handcrafted in Georgenthal, Germany by Steiner Plueschtiere (http://www.steiner-pluesch.de). This photograph was made by Petra Kirchner (http://www.home.unix-ag.org/petra/pingu.html) and was later edited and enhanced by Hanno Mueller (kontakt@hanno.de) using Photoshop and Gimp. xteddy-2.2/autogen.sh0000755000265600020320000000255211143371632011605 00000000000000#!/bin/sh # Run this to generate all the initial makefiles, etc. # This was lifted from the Gimp, and adapted slightly by # Raph Levien . DIE=0 PACKAGE=xteddy (autoconf --version) < /dev/null > /dev/null 2>&1 || { echo echo "You must have autoconf installed to compile $PACKAGE." echo "Download the appropriate package for your distribution," echo "or get the source tarball at ftp://ftp.gnu.org/pub/gnu/" DIE=1 } (automake --version) < /dev/null > /dev/null 2>&1 || { echo echo "You must have automake installed to compile $PACKAGE." echo "Get ftp://ftp.gnu.org/pub/gnu/automake-1.3.tar.gz" echo "(or a newer version if it is available)" DIE=1 } if test "$DIE" -eq 1; then exit 1 fi if test -z "$*"; then echo "I am going to run ./configure with no arguments - if you wish " echo "to pass any to it, please specify them on the $0 command line." fi for dir in . do echo processing $dir (cd $dir; \ aclocalinclude="$ACLOCAL_FLAGS"; \ aclocal $aclocalinclude; \ autoheader; automake --add-missing; autoconf) done ./configure "$@" echo echo "Now type 'make' to compile $PACKAGE." xteddy-2.2/html/0000777000265600020320000000000011155142257010632 500000000000000xteddy-2.2/html/images/0000777000265600020320000000000011155142257012077 500000000000000xteddy-2.2/html/images/noise.jpg0000644000265600020320000000273311143371632013635 00000000000000JFIFHCREATOR: XV Version 3.10 Rev: 12/16/94 Quality = 50, Smoothing = 10 C   (1#%(:3=<9387@H\N@DWE78PmQW_bghg>Mqypdx\egcC//cB8Bcccccccccccccccccccccccccccccccccccccccccccccccccc" }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr $4%&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz ?3Rɨ *@8cqLb{S8Pn R9djvE4P3ۥ(Nրt=)޿ΙЊU4)9@~qq#Fs@ "bt$aI9RGAҌ@CڕXրiH3җoz3h84R B{f=MR1@E?'"Jk hOaH=(jr{ڕhG4cɥh2)4)3Ҁ4JNG4xxTcJL=hu;du=iҏΔ@ 4iݽ )3Fh3_Jf99LqM8});}(={S%8PH{R1Fj^)1{M4r(hP^ivcQ@^zSiIJMҚJCׁH y4bs@\)xNS@ sP090֔4uyGu)@"ЫJ4g)n](jƟ(/$qF9,2h'4}i;f# QSH3jrc G@֎O~i=9xғ:ӀMӊp@i!8 1V79N9GP ϶ 8qITbH7S4@ {OZE)4)wCFy@ zRM .}Ah8(?w7bW<(w&b4;ShAi s4?xteddy-2.2/html/images/xteddy.gif0000644000265600020320000003061111143371632014002 00000000000000GIF89aྠ촄ڤumEԴ̰P}WܴwU3ƛiܡĹiŠxĔͥ|wHĒ_ܯWDTX!,@`&dihlp,tmx0¼= `}|r}s EwDG~v}COt{DvTUZY_aebpr{]]¾äDŽu_o m` d;O^a lemq^ B j<ԫ 6 @ n4(MUy(Sqs.+4Vtm5s֜`ϞeDCT̿a*`dBDzTtƌwH@Jd7x',Z,JNiknFj'M5N,KN85p(UKM fȼiU]6xY,44i|˜FtaZոrLɓ8$oHNӱSA (wHcǎƽ@ c]FDGi']BZ/  HBW2q|$QE@!t@"ht@>X!tHc`Ln$ 0bTp"xK~p'f<B)f ]0@3SGQV `JXEMMƏ th(<*c/VZiv if乧|I1!3t/󣤸Fk+bzAv`e6Zd q|$KTymkf Ώ+ek+|K$yPT0iD{'{a%r`pr-0n*JBհ[Rȡd>s*-髒@hAL@ rb,DM,2d,:ފd `H,2'[DgJ41EHl:NPa--.Ga؊1iCQ\Ca_$m) 4TafX:3 8 5=e\䤚R{aD<5 1kϡ8$|Q  ,uޗf$Dqj3L aCFte/R^YXau3ADW,BIBA[0Oy hF'?f2 >RZOj&Nj#_~w /}-W![{4/h} ^.FWLt.>9%2BՂBZ*UD57DEhCn7 3Y= )QR{@JJd/pN4Y ~yL/3;pg`:Tke|PunY ule˖4)`kk 0T-t0tCT'Kn[)&3JLF ..72xE綰{ r8pAKxuLH;:r i:3u-y h\p`@ @n:x @O=#OIh'-&! G:ۂ6(:6ɡ@L`*i*KSX 6*t\>c:S$6:Ln(?1Nk./Uh$7L@t@5S<@8sJL/nAX'\ƢX^k"Ulܮ_: =)M0h1pfXJ˾)sSG 1fXoV]FUZo$/ gHĀ8+Q<^<ң - l+G{s3JCɗ蜀wtmP.aL^Z,#O"%NڌQ@ׅ}`DA>8U2r<=tDGb9)5 M1a,/t7,KS(&Oieeaàa86<3}7HNu, i4d87 a)0S(@jR wHVL"35?$O*m\'d5?ՐD~dR]\woy0QkLrc4 {&0'5`uѪ]jAhRQFb7f9pG`n:Z qCPHfJU_`yf!FE86h4>#@;^>*gRAjd 9[UEb+q [VY-"nAQ8}֥WW'`}5&8qar#1$ȕ 4B{:4(: K"G%R@yϹAQo%:m2bmّnPQVxy[wc/v-6kaQFiE|ಯvZ Ro5' D&m L ;K39cs"vI* faL f"R v #Coig_`RTk9l$3o>6|k$pC!PC[tB<ć)9_%ҳqZZ0<ԯ0(/Ϙ|vm#rL`!0qrGwb¤;gxig5Ռx(a,/%62 ˬwww* V =?^.("x1A,vǢ 1/qI74ys DnGaI".gz& 6t?b)xlj=!˹b%nl"c^~Vb͇ -,ohf׀ ۀf fB R=@b-!"|:S@xX4؍rkKK:!C1 hֈ2蚗󄬱PY(O$^ð R-I<=2S^-7ڬ=Q&>2Q}> `;p3 qT?Q)bwcK LL$`zxAKNfƃn(ubW|$n~V\+s¨1|=[C3枠7/GaI/hR22Xikƒ @tS ^@m!3|#4'[A``rCYjyHEʌ d'qS2OiU%?qGnW ۀ)I"@ZW[!s%;}|%gFTFUhX/MHSBz2窌z2OIPCA}ŕ5J'\+,I>T0STa 8?|qd!ၚ/&M+(4 u^i.y]칚OQ8XEà4{NG/ztD&r/8,k+\UW]]'iv|4N^ё‚ϒ#FEY&'WD`\K]BaiIɚoJܐ"S҆$FE5vF7 TmۛG"ACwKQvǖ† , 6c„ &j@%) _z֭#G$3 %Z("F 6&Q9[dKַm& )c}n=LAI$ղ#O[clR$4ڳVL/ W%_PjK \b[G!>`4hF@f ԣU !:ƩrJ`2rsI|cAƥ'$A9`0ӆ`HC>>Nu࿜%IД.؃~A6UУVb /Τ-ʘ`UC:*/Z!w>C H=􀉀 0vA,O&F24p[O2+`h+@\2- `2,Q%-&38y<(%pXNy01`+@P.Qs'$Ɉkrq9N# ԢR̢jқAQ.+ANIY'n%KzI2 sJ#87!-kH|h` FaB TV @wy`Qv8_Ru}B1Ƹg EMsP% UP@( G^J1!q*c)¡؞] P0UW+Ҫbq"A?Ԇ$.$,] 0Y| F LAu3 g-4)R@vkxoFoP`FDz}/Vpfjn9s.x:cRqSt+,c;d"GUY~/VYG7)OlҙsUeQԮčdKH&E؃fQ JM!qcj+WmY\65# V*ڳ-m2Ay"h0ZwF8)z?ڈtVW2'r$[ߊ@͇X@-| E07LB=A(GUXX *ONQĢoElJ\E|f2n9P# (:,uHez h+X"0ms~|*` ٹSj9 90J|{=m@?><|[1JY HOw Xy*M-@6O }(Wʓ˔Dt  fc[&vSoa å ro{ o! 6y0Ģa~'U/7ײmy8w͵̻;EQq,0@Ԋ1,;+@Tq7/}_4 .5`gl$$w6diYLĕmDBe܊[!]E-A1\øoy8E4L6 W=0R],@6IŒٔ_Fd^yMUm[0i@e[>L@LY0\TI`I\"_@$Q9{Ä K`'yT48HF(D4 h"=ݛ` \" ZL5N":bxSɕY"HcpbRH$b"6"5F b&Ȋ4=C" LEMð)|p -3B&,B/!ot@ cdAtB@p ,T"*dB׉ t%U_LD݂![ƥ`"&eaa*GcjdGv0M $e;\`hhg&pSFaI`u\a[6vf<' weBTd MZHv'pofpj'XРN pzN ŰM~!GWG2epe>&%O&S%q‘l'(8Eʉ׼h{N\S^eI+\h[A|@"(>V}r>./-9C:pSDJ@ҦZ#jC}H fb"H>CpY9GDBL)MdTQg&)xRCcHiX3RP )aJB+rU]eR25T )pTp ̧KtcV5C)=#jp֪H Q \hX HL$C*pj ,T_)^jC.q$~i7FQ@ 0VbKZhf"-p*Y7,@!d(ᪿk=(U %P8l\U ef_tde,>W^'qVw:-/zBˎleEbbNGfv\*y)ýKUawJ}$CmޮW{nԅPBDNt&CIZ(q Z}AÐ-T^m[.)]Z$Q=!` B-G#7YB}Ey)|UMdY RT@P`%իzr,n6H4-E̒ZIWCZUi!t.}\ @@-x}c\Ԛer%nh\6EO!!oHT^JZ?m{xĎ.P&%fz^^omn,XS2tU*MpA>]jiR Z%@I5W|P7}H?DE[:H8He)8SJ]#/bk;nSN@h R 2H\vDTIaXZ.o,|zQcBhitᄵ /VA"R2ӂ"v(2#DEYAgDS!g!?%nb^m Ch{dD2IRC> hU!$#k&HQ,}BS1/H Dƻni}Ar2PC;EnZyaԜD3ȏl 'L&|)4w,P,f,0"eMtCsV,A."c|m_3OU@Ct$,PFÇ,ۂ@KN Ta;:ľYwC@u-@,H t!V>@q`qslX>ZmLxV33*|5@f)+l+E7X;4JLE!,# 3Lfd2z~Q^<$@@H 4^Os -3M2G:Nt}C*BY}0V=V*BT.WA;Nàc4TpeTH| i_Ap{/IF$oo7cvPI{KeNP SRYH| iƐ {d[RY\9/YnFQy Ip֞QJd@{dž9xϮ)Yh*DAӔ(z(ӈ6# Cl3S\/E<B{@̆xO`4SXF *XIzk4̉lH$ 0 ϴW3y;zm0i5u ƅ؃EX@#pГoLca1t+ox|Cv4=AF'.Q.bk c 8&>~Jͩi/]E9[7l|7%ʶ LlLtrQ|ğ'* jb/UFqߡyN;bxGfCiT@SD4d$$5Q&QfфDtEHFf7'pQ01IRÅX)<x&&t zv8V&2 Kk7>`aky|  کp GHzwc:¡sPAZ& Y\}9)&Տ?F $; (iSe4S:W_6 -CPnjqɓO6JPj ;P8Azs:S |nz*wV6Q(C1$4Ahb9^cB;Yw$ ,鉎C8YC+Cty譨$_|*  ylG&0bU~&=̥(7iT&0zZ0ib*<7/x͂vj!yh` >9"\[}-)TͽW#!oEN򐕷$w=v/*B|zI>cR=|a{! >7CR.8 MQφD&C~El(JqT,jq\I;xteddy-2.2/html/images/xteddy.xbm0000644000265600020320000000467711143371632014040 00000000000000#define xteddy_icon_width 48 #define xteddy_icon_height 64 static char xteddy_icon_bits[] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb7, 0x01, 0x00, 0x00, 0x00, 0x80, 0x2f, 0xfe, 0x9f, 0x3f, 0x00, 0x80, 0x7d, 0x19, 0xe9, 0x76, 0x00, 0x80, 0x5f, 0xea, 0x4a, 0xfd, 0x00, 0x80, 0xbf, 0xaa, 0x5a, 0xfc, 0x00, 0x80, 0xef, 0xaa, 0x6a, 0xf9, 0x00, 0x00, 0xfd, 0xad, 0xb6, 0xb8, 0x00, 0x00, 0x6f, 0xbb, 0xbd, 0xf4, 0x00, 0x00, 0xfe, 0x56, 0x2b, 0xa8, 0x00, 0x00, 0xd6, 0xb5, 0x55, 0x59, 0x00, 0x00, 0xfc, 0x6f, 0x3b, 0x34, 0x00, 0x00, 0xa8, 0x0e, 0x7c, 0x12, 0x00, 0x00, 0xf8, 0x06, 0x98, 0x08, 0x00, 0x00, 0x58, 0x01, 0x30, 0x04, 0x00, 0x00, 0xf8, 0xe1, 0x50, 0x05, 0x00, 0x00, 0xf8, 0xe1, 0x20, 0x06, 0x00, 0x00, 0x58, 0x41, 0x80, 0x04, 0x00, 0x00, 0xf0, 0x01, 0x20, 0x05, 0x00, 0x00, 0xb0, 0x43, 0xa2, 0x02, 0x00, 0x00, 0x60, 0xa3, 0xb0, 0x02, 0x00, 0x00, 0xc0, 0x0f, 0xa8, 0x01, 0x00, 0x00, 0xb0, 0x7a, 0xb7, 0x02, 0x00, 0x00, 0xe8, 0xa5, 0xaa, 0x07, 0x00, 0x00, 0xd4, 0x5b, 0xd5, 0x1d, 0x00, 0x00, 0x6b, 0xd5, 0xb7, 0x77, 0x00, 0x80, 0xe8, 0xf6, 0x6a, 0xdf, 0x00, 0x40, 0x72, 0x95, 0x5d, 0x7f, 0x03, 0xa0, 0xd4, 0xf6, 0xd5, 0xdf, 0x05, 0x50, 0x75, 0xb5, 0x5d, 0xfe, 0x0b, 0xa8, 0xea, 0xf6, 0xab, 0x7b, 0x15, 0x58, 0xb5, 0xad, 0x6a, 0x7f, 0x19, 0xd4, 0x6a, 0xf5, 0x55, 0x76, 0x3a, 0xbc, 0xfd, 0x96, 0xab, 0xdd, 0x35, 0x54, 0xab, 0xea, 0x56, 0x76, 0x23, 0xfc, 0xb6, 0x4a, 0xad, 0xda, 0x3d, 0xd4, 0xb5, 0xd4, 0x2b, 0xbd, 0x22, 0x78, 0x5b, 0xe2, 0x92, 0x6a, 0x15, 0xe0, 0xbc, 0x45, 0x27, 0xed, 0x0a, 0x00, 0xff, 0xca, 0xca, 0x0f, 0x07, 0x00, 0xff, 0x9b, 0xfa, 0x0f, 0x00, 0x00, 0xff, 0x6f, 0xa5, 0x0f, 0x00, 0x00, 0x57, 0xbd, 0x1a, 0x0d, 0x00, 0x00, 0xfd, 0xab, 0x6a, 0x19, 0x00, 0x00, 0x56, 0xf7, 0x2d, 0x15, 0x00, 0x00, 0xff, 0xbd, 0x5b, 0x19, 0x00, 0x00, 0x55, 0xf5, 0xaf, 0x12, 0x00, 0x00, 0xd5, 0x72, 0xbb, 0x14, 0x00, 0x00, 0xa9, 0xe6, 0xaf, 0x11, 0x00, 0x00, 0xab, 0x6a, 0xb7, 0x0e, 0x00, 0x00, 0x42, 0xd1, 0xaf, 0x0a, 0x00, 0x00, 0x2a, 0xd5, 0xaa, 0x0a, 0x00, 0x00, 0x8a, 0xd4, 0x55, 0x09, 0x00, 0x00, 0xac, 0xaa, 0x21, 0x05, 0x00, 0x00, 0x48, 0x95, 0xab, 0x03, 0x00, 0x00, 0x70, 0x0d, 0x7c, 0x00, 0x00, 0x00, 0x80, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}; xteddy-2.2/html/Makefile.am0000644000265600020320000000026611143371632012604 00000000000000# GPL (C) 1998 Andreas Tille # tille@debian.org HTML_DOC = xteddy.html xteddy_info.html \ images/noise.jpg images/xteddy.gif images/xteddy.xbm EXTRA_DIST = $(HTML_DOC) xteddy-2.2/html/Makefile.in0000644000265600020320000002014611155142240012606 00000000000000# Makefile.in generated by automake 1.10.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008 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@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@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 = html DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/configure.in am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs CONFIG_CLEAN_FILES = SOURCES = DIST_SOURCES = DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EXEEXT = @EXEEXT@ IMLIB2_CFLAGS = @IMLIB2_CFLAGS@ IMLIB2_LIBS = @IMLIB2_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LDFLAGS = @LDFLAGS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PIXMAP_PATH = @PIXMAP_PATH@ PKG_CONFIG = @PKG_CONFIG@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ XMKMF = @XMKMF@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ 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_builddir = @top_builddir@ top_srcdir = @top_srcdir@ # GPL (C) 1998 Andreas Tille # tille@debian.org HTML_DOC = xteddy.html xteddy_info.html \ images/noise.jpg images/xteddy.gif images/xteddy.xbm EXTRA_DIST = $(HTML_DOC) 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 \ && exit 0; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu html/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu html/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 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 $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ cp -pR $$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 installdirs: install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: $(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) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am info: info-am info-am: install-data-am: install-dvi: install-dvi-am 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 installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: 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 installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-generic pdf pdf-am ps ps-am uninstall uninstall-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: xteddy-2.2/html/xteddy.html0000644000265600020320000000201011143371632012724 00000000000000 Personal presentation of Xteddy

Xteddy

Exe-cute-able name
xteddy
Home address
/usr/local/bin

Presentation

Hello! I'm Xteddy, your virtual comfort when things get rough. I can do everything a real teddy bear can do. That is, I can sit around silently, look cute, and make you smile.

I was created in 1994 by Stefan Gustavson. You can get my source code on 'tar' format by anonymous FTP. I should compile on most Unix/X systems without problems.

I want to sit on your X desktop. Can I, please?

Now available also for Microsoft Windows and OS/2!
Follow the link below for further details.

Further information on Xteddy xteddy-2.2/html/xteddy_info.html0000644000265600020320000000624311143371632013753 00000000000000 Further information on Xteddy

Xteddy



About Xteddy

(From the desk of the author)

I created Xteddy in 1994 as a spare time hack for fun. The reception he got from my colleagues was so heart-warming I was encouraged to distribute him world-wide. Much to my surprise, the response was overwhelming. By now, I have received hundreds of friendly messages of appreciation from all over the world, and they keep dropping in even three years after the release. To all of you teddy bear lovers out there: thanks!

The teddy bear image is a photo of a Tender Teddy from Gund. I have the original sitting on my non-virtual desktop at work.

Compilation

Xteddy should compile on most Unix/X systems. He has been reported to run properly without modifications on SunOS, Solaris, HP/UX, AIX, A/UX, Irix and Linux, among others, and he is compatible with X11R4, R5 and R6 as well as all versions of OpenWindows. Should you encounter any problems, let me know and I'll try to help.

Your own teddy bear

If you would rather like to have the program display an image of your own teddy bear, or one you wish you had, it isn't that difficult. Instructions may be found in the documentation supplied with the source code in the distribution of Xteddy. Additional information is available from me by request. I might even volunteer to take an image of your favorite teddy and convert it to the appropriate format, but I make no promises. It takes some manual editing. A high quality digital color image, about 300 pixels wide or so, taken against a plain background in a contrasting colour, preferably white, is what I need to consider doing it.

Port to Windows 95 and Windows NT available!

Recently, I had a very pleasant surprise. Claudio Felber of Cybernetic (felber@cybernetic.ch) finally managed to port Xteddy to Windows32 (NT and 95). The port was painful, but it is skilfully and cleverly done, it works, and it looks very good on any reasonably fast PC. The official release will be available from Claudio soon, but I have a copy here as well for you to grab and unzip.

Port to OS/2 available

A port of Xteddy that runs under the Presentation Manager of OS/2 (which is a sadly underestimated operating system) has been performed by Alessandro Mascherpa (mascherpa@txt.it). There are no true shaped windows under OS/2, so this port uses a somewhat ugly but rather clever workaround. The archive can be downloaded from the URL:
http://www.mclink.it/mclink/teamos2it/ita/bellissimi/teddy2.zip

Back to Xteddys homepage xteddy-2.2/images/0000777000265600020320000000000011155142257011133 500000000000000xteddy-2.2/images/Makefile.am0000644000265600020320000000054311153056740013104 00000000000000# GPL (C) 1998 Andreas Tille # tille@debian.org pixmapdir = $(prefix)/share/xteddy pixmap_DATA = teddy.png xteddy.png xpenguin.png xduck.png xtuxxy.png \ xalex.png xbobo.png xklitze.png xruessel.png xnamu.png xbrummi.png \ xorca.png \ xcherubino.png xhedgehog.png xpuppy.png xtrouble.png EXTRA_DIST = $(pixmap_DATA) icons xteddy-2.2/images/Makefile.in0000644000265600020320000002257711155142240013121 00000000000000# Makefile.in generated by automake 1.10.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008 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@ # GPL (C) 1998 Andreas Tille # tille@debian.org VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@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 = images DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/configure.in am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs CONFIG_CLEAN_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 = `echo $$p | sed -e 's|^.*/||'`; am__installdirs = "$(DESTDIR)$(pixmapdir)" pixmapDATA_INSTALL = $(INSTALL_DATA) DATA = $(pixmap_DATA) DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EXEEXT = @EXEEXT@ IMLIB2_CFLAGS = @IMLIB2_CFLAGS@ IMLIB2_LIBS = @IMLIB2_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LDFLAGS = @LDFLAGS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PIXMAP_PATH = @PIXMAP_PATH@ PKG_CONFIG = @PKG_CONFIG@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ XMKMF = @XMKMF@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ 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_builddir = @top_builddir@ top_srcdir = @top_srcdir@ pixmapdir = $(prefix)/share/xteddy pixmap_DATA = teddy.png xteddy.png xpenguin.png xduck.png xtuxxy.png \ xalex.png xbobo.png xklitze.png xruessel.png xnamu.png xbrummi.png \ xorca.png \ xcherubino.png xhedgehog.png xpuppy.png xtrouble.png EXTRA_DIST = $(pixmap_DATA) icons 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 \ && exit 0; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu images/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu images/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 install-pixmapDATA: $(pixmap_DATA) @$(NORMAL_INSTALL) test -z "$(pixmapdir)" || $(MKDIR_P) "$(DESTDIR)$(pixmapdir)" @list='$(pixmap_DATA)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ echo " $(pixmapDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(pixmapdir)/$$f'"; \ $(pixmapDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(pixmapdir)/$$f"; \ done uninstall-pixmapDATA: @$(NORMAL_UNINSTALL) @list='$(pixmap_DATA)'; for p in $$list; do \ f=$(am__strip_dir) \ echo " rm -f '$(DESTDIR)$(pixmapdir)/$$f'"; \ rm -f "$(DESTDIR)$(pixmapdir)/$$f"; \ done 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 $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ cp -pR $$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)$(pixmapdir)"; 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) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am info: info-am info-am: install-data-am: install-pixmapDATA install-dvi: install-dvi-am 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 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-pixmapDATA .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-pixmapDATA install-ps \ install-ps-am install-strip installcheck installcheck-am \ installdirs maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-generic pdf pdf-am ps ps-am uninstall \ uninstall-am uninstall-pixmapDATA # 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: xteddy-2.2/images/teddy.png0000644000265600020320000004067511143371632012700 00000000000000PNG  IHDRgAMA1_ IDATx}+t$ISnȵI, q%Xl2 ,.tOљ{gh5KsqܢEt H>H9叴}}#B )YQk{>DO=mOingxP?[go=m' ߿4O11?i?@mĽ.O~]8^yN94i01k?HzwlA "6LM`DŽczKׇ`<+sȆGNh"" W@7#n@'"!5KDCD4 D7O?5@>fǦoC{&`bğDҎ()=X0GXHTk#ooR0s0*K?!ӛaw$: 4p~l=}: ˥ܧ?yj@"/HPk AƸ5D }3Q(AiNr8;=+O`fΝ<FJNYvU .r׈}z9dsh$ W/~0k@!y5* ZEY^!b$'HLjI<k~XcOc(uD-է9X:9MCTspX0XA*zj$(__~٣tΉ: 2r\w\`b#:&M?'@v7!@\G2'<'SElI'B:$1;?(3\p?wRC{&=+B5M/(_~ۉCG.{ D}AF-SY"~Xڸf^n;89s8<•{Q,ɍ] 23è.pP`yvoPq/5>/)𿍘H`b+ cx!c]P5lU<Be9o ]^%i" TEd*U̇L&ŧl{7wi$~qԽs{LDF$Fw\wi I ܉v(ip{v7F MQ6IHc( 8j./ &nc"=%xt {P^;f&6Oᄏ} X~o~ 0i}"87*Z\zWmm7 i_c&S@D-JV~5 ipw,}|@&V5FM ^8yc3ID/8Zb P+ă B$OFvk\'@EG^;JxuD[DX6zw{v<˛sؘcfk *D,-0S%.r_P|lTPwqW< jBlxs6s}]I(bzZy%Ql/쑘2I0H608'ߎ Yв) yqStxP3C\EVa"iNdž}.0^pMRd" Ϗ%,8K{s~lJqS47&-h!ᄩ j1m{ߓ ֍dHz^Q2O.[ 3Y.5@'trN,pqaS?)~Ȓ#ٽ_ %P4RGGh)uc$#gAN!HY! &tr@I쌢W`8P1,UתԿ!fLNoϴ#tN˂rab2al!XtȽl%F%UvZY0W l^=1Y =aF1P$Sc9낌m.:d0y]k>IZ _=@{cE HE;ٹT]dhfi -➵3Hz4ڳo>"Ԣf]`q! VLeZ[?L\8Vbz)x-\D#*:lb+1$_N)Y狎VB_QvHXQa;ghjhvE [gYgoIt5e@l/[">E0wsMd[vKJͫRJT?׀0k,#rk@eF7R`+";L 6Y] Az̠.<LP3Zz4 X7m]s%fq_͓Q>g7NOq5ҭ:jq#aI\Dd v,62e &fӶ`庺T(Td03D+YU)L2E;Qf/=-\aD}E@H?G4\蠐JRd}c44]z߸ݒ1\ jEܚ*U RTTaj^>y@h,g;r ͻ6~9^$3t^@H}ao_:ҋ9m(m}8ClF2[UqIIh<_hA 9\4&yRS8鋯詳iR3?dI}ŠI뗤5Ɂ nh Р5AoHy_EO:foKľ/IbP{T.b&3do0;|EY'OЋ]m^i2GR'l0 zږ-yt4.&!h)Ad O.M 8&tABp,ǫO"9JAS>"^r4-$l@ish"3HOo2}f#sP%DӡRz3K=:K:Sɖ6gTM/`K\Td]^h|ʠrRa-~vk2ϋ&W[vzklZk1õ\^hO~{v۳UOls" /`@Cb,s}x.ϑkn 9 - asEae)$$ :ydzޚb rbЌ#{I`5dkׯ_Mr4XiQ`-HEg hk M&D?y_եs㪷~3fgvԃN 'Wb@L7PNDD w2Ղo՛.>!?='{DqN/]{;_8mp7.7c,g aC/OC&O|C? [yv~~N\ۿݱ>?w;?Ϯyx}.%i34\rfIrŁ54._v̰ZAc|i߼.Q\L,tj|@~e|F!tle($צ3~D+$B5E2c.Iqv[t:B{|:435-sE}5;_2(bR 4^". jZ, .ҨB7j 1;]OK>߶]H,y5!f4E}F8h &RZÖ6C 2&Ʃׯ_A.ٰ[JHOj:[cyۑ2^^63;HjKlvH4pаx0"Ї?kW^Ex n$vy844(qiͻ7&"ҦfdN,z^cl}Q Gbܸ< Nj7NОxT+d^ [?ɐ}vT!~qN '0^PDŽq aJkoDC\%ArR)#=AET*H?`.<4I`W:D7&QrN=#(PajMt<<5FZ#~r7AT_B2:w;0mA4Y0655 { ƭ L-WQC^|Y$0Y Yt |<)62 smx@GO@vc89rfiz9EՓվKXvD@JL]$Uyr[Y\Ĩi:GK'@ۡ3á^fd+j^Snf9&vA'6M&9|Juт@ m2UEֆ֮={-[cnzFeh.f-ysRG2'o>v@mB("q .̴)l=`}AO*Z8Ҝr>$[w}e7s}ox.4jͮaͮx:.%)W0)MssUsl9,S+Æ`h~1X8%PğB0SC ORr anRu5l2][Fay{ 4dx142h 5HTʑɓ>qȤ:Vi)}(z0y4`z҆$w?I7hbil!IJ-V$,u}₱ {[.;gn=^ M_*~6 By.Xfnt ;vW#Pe;#csb35tBq^n7iBr3J {Kajz, ]Y, ͭIDd" 0#0CzQj[妓!&h[̳acY7( ^i~{҇Vu^$\]+uZKv8c{ x;?@LJh%8ԲWGWCmPb9տԫBu$ 貓KaFՆ!lj= +com&u{{4"_ Fi*n=Gxc>n}D Ƒ80?&v~pAb*9I{ʁmk n;/#LJ(T,4q;F5 3 bEh&b-[IDDzgPֲY''6#3щUN>`F8OƲtZoLi5s>?n?g !yN77DttO;:aC8Ɩ/ TωnnsItzq_~bsz??~ʓcKt1#GpLtkW[%ǩHxW5ۉ9) JTՠ吩 8%^󂥺d lwYnzǤfյ3A~9@km*emAk`FS`Fh^|18eh@N8/Iӎ^|@}њvWi4Ÿavw-}nm1p"͡R;~* B=DYSӺ"[_ D 씁l/ȵ1[IERķbs80W{~kkMF+X3AS"7Z"#[3hD=}Ֆc01wVj["ᡃdon}B&)U 82 \>Ϋct~2}2-Th6wޣQon#6_XJ zhk AlPڄe}1௩۽/LΈ%&Ʋ ظ""F:YŒ_a2iџ'n?)f G .1MOSJӇ34q²kӊeаxBYMekEؤN.4˪6Q<iz=L>pMcDrP+ȁ׃P/GqŔ$Ms\P j"?S߃Ikn'0)@TgX/<J`ѯg#,. %C_I-1%YɁE zSf@{`%cM瀝K o(ᖕODٟTSv1͖NG=Ooo#!;'9F" =)Sc0(g'Hp/ *~onġ fF{P }_(. xd5ؙG}n@(թ[]j.Vq^i]>~vXOZvcF6?H"Er@r&HGuy@Ƙؓ(*%ݐlvO4DSpQET̵s^ xS)!u؞Gg!W(hLe?su]@㐅X ԶH0}z>ll1[~̘?wf[).-bF1-( f%B#2%s+ăDξs$cviE>B!1^jmC+"=H2;ZfAg?h<,.Pr<޴J34l{B]͜Hڿzٹ⯱O'u$ ׇIpJ@1p7v.v^P?a,hxg--ޠ{3-O?_UڸƱؼrhVt zU@~z< F%scrűgB"3G3Z'K 7]wfr,eV@;c̏HLe0W!["qމ6īsf9Gڮ(I m7b}i6ȓŮ %ɋvU}}"wa_dBVG0K3J< RqΩFg҂m_&q4fMzmcٖ +`yԾ9r6Gn0{/5!s Y7#Ǡ<79j['[H(PRC9XNzX͝p΂ڧ Ud͘w2X` ;cD0h2/E9WKAƖJnr dh'.X Xt/ľ'8*XD!Urhs О9L(S~ C2V楬F>/>'[ҵ9th+b$d$MIC@Ī/!KhT4ųVuPP)M:^~gO6 UUѱVbisl5^vsQEuAzW_F žBPC*hڿanf:$"pͳesil ťr$aOc*o~ ND,"TReVt!l,=9j`ٜPH?OFY0њQR +YNqBsTm]0~b0e5i\=DAѥV\G>:mDb*U&?ʒþ!aR8-/>Fa& У1D:5s oR6:XR3`}x}?APc"gF^JuI+f]fB xt@̋-k;e 943 3E$0@$ˋ3q&KRч ^#)pE$1[̮R4]&wfߺ. ml>70,66KnïfF ~%OǩٓظNz'=L^j@иhe+d^hAz6V7ut$(gCDFMzF4z0ZV($sgXG|3LlxD`Sn +j<ӊ)쥹z=/)}1o'Dse&jC&9lY#^rws p+0l|*_2@͝n؀Ԛ4xG+zeT - ׃ 9W<䰯>"c vC?nف8.=:KɿW?"cr@KwlݟBe:d |T9b"2ו{(=T(LSP=.HE >Kz{{i,kg$*M<G cKqMuTTu^(TQkM~'n'kKɫf~ī5"ؼoM#г5c^T8Nij[ $G[j?<ūt^*0۳F=vб5 U9oo+3WTX;. /݉a%{"rwFiIt# MjÂd =w k675Ik- ukevUY\߄Yʗ}_Ku*g'ڲ轊S^]?PQs c3) ZP0z 3wi~ڦ cT#z> .[SN<D4B4`c{f~a+ىK=\+!-iqlH׫2"Pl<8wYxZE{MB{*mWB[!u^jrmp1[ nL{n-à7ǂYwf%rf ~*  k ݼ 1- &xʃu}3|8[uϫT/.0գ8^VT YLюXW$#$Gi߯"YMD$}$"?/ )_.H "Vb>e{aP 4jfωU ]Y" 'b nGV21Ik8X$H`^&0?ج qZw](7rFF5k\ od5Ti+ U9v eTМ g'8NSblף9!8qn{EƸ܂3tWP*^ q"+&D6- Zs>ܨVי{vFrA <vT@4Qfcس15`& n"0i̙ڇ㱕K7nߣ(yrs-EóRЋ_YZz-#4>Cel'xLh~g vhHJrZ-;zHY["9LW☀+r@ 80tr?:zpaobXq`nztxp,7&gؐ1ch S*/Ju_YmlEKXZb)Ԝq.E gq,Z: _ ,50utQԙ/*sl{Zh\ڡJ#ٲ!cFm 8 N@]v{:ffA6u@Ǧ3Q3rBY8ĩfsk%]]K $.=`gt}eQkoۏ[ۮ9).$~jG!WD Ŧ3s) TrhK&-^JD{f,dU t}9u,Ǹ]N`8nP{ce] a4t{pId1Lf䩷d`U"W/U O? ܗHaK#[hg{y+mPFlG.Zr/Xdsq6MI k'M+O^ ˉ57]=^f i}I\]qK/[ +1VdR`7AMGE▹(\+ ^5I'79*ʳ{gs1JP 1tm,C`C'ٗ;89C{rŅ5$F;Ól6ۧ^ǥO̓,E=Ax9A_/wehc )R A8`XWSbwO,"t ki=`NlN]GR' h591e)j ]l;% ug0XUeq8)H Y΀2vnJ'ܷqmDŽyEtӛu+9#e ز58u]hNy3$rMb&7CTZ C:NeՒ!~I x9.Bv3-^w; ԁaY[PBit1I$Z>hh"f8L-@]$if:3m!dJ.,Z'ӛ;7KA @dyS"K`s 5f:{?"2dܬdܱ3KZ1  *.%;.'?vt!uى:%GZ,nIT2@5nb #6O0]^@~gi"Ovʵ307392i1&zOM@#0j}&@MuVN~54/,t6(Vƽ0a![G Ƃ gh@gwIZsyHf M Vs'O@Å^w>%QAX,I8l_?;L.yH+Dr/S9pz7?D/ɍ'aޜlia=å%ކ voUL50o'5\8~9PɞMDfG?V5hVS==&2^xX+k'T(3'@%9m`Kq;vN*jr7⠝-n4a ݓd6뀻 AJ(*QriZb*djBfk΅$JȆgg㼤R#8(H1w1A?֧煅ԅ"7o1d۫uMR\n ?8cn.v~L3Ũth"2 ';:CG}FFhrCql ƇZW\,H F!@ Ld"sG$8UņSj+.H4XǮ;5!Y}{cEfWZ.9$'ֻa',^ W@}W#fCab=K8 ÆH(:e1'-k#-|,KE^Kogm&҃c$̰5&_NlXLa555"_q&zz5j>/`{Xu a@Gzt@ ==dw -E { HpF՝[y^zܓnH7|glNп_2uVqf1_20'z]QE-vpl:lE0B{#G%S͕6/6 VCiYf(^N֛`v[CW%h&3!gAka*1Ֆ=/,mGb68^!2ibSB7¼޸: sէp)}$fnlz5Zf -U0+z À #dSގ؈Hgqb`}Lђ׬TBoqs0gr%|%,ニ;gaq(P8.*5kUK"(GF]0-TF+:!%1z1AmY-ܸ]Q\y!`ó{Η%Ɇ.38 ls5j^fc(KSwߜY\~¼1:DpBZθR$&Z뷹LUAy()^n[ tuhuJo>0 KвRWUγXƝihiK"-}66‹5+/}{k̠ ТCTEqBn ;OV!f_m3O!5w oN20g@$/7F;txJ{ nȘW+JL,K̬(M0uU/E>NZțunUZfu X? (ehMd%mf<.iޱ`ڕ'< 6h,2ҹȋ=%[EZF}۝N#}wKdkt؟fnHa *&fm!TYD۶]cE@gD<%2-2so &خ6ᰭoJzUw#Apeܟ"=ϑT"A *1eVU 38uQqP *~qsKr: H"gU%|.БP*WL[Bpz\'p jDZI1䥞`ČIKfNL~2[t(A=,q 44%a-b")`Z ,ӕ-̯ hbE,eȊQO}A p]|m ε̐ڑȎI1s `c{/֗.D8ّOh" K"R5$,O@rI̓s]H<\sgA;b[l2-2T(S_ؙ޿-Gb8cؗt; p6NJr˩SgiUdQsRJ Uy=߾΀3Co di_bPflP| 25:(HZtikf,śߢΔOoV ⤞R}V̳ۡS7 CFQ8$&uTmBT~}c[\IDATy6A*K0?dF㤧_]@hQ@;;:\ԸDj]G'hj"HkVpD>KA7P:ej"(4_r@s0sy,IhuIFi}I!"*f2vϑKdn61d2ulcxa؇uӁŚ i#yl@>y@KLvӤX%q!mno]ol\;u=3vl枹N O#tK%uxg,ICNZkɧi{jUPY|IENDB`xteddy-2.2/images/xteddy.png0000644000265600020320000006757411143371632013077 00000000000000PNG  IHDRgAMA1_ IDATxKl$Y%v4fO`0QLe:ӕԔLh`z5ZtAԘ6=,E U^´Љ PTO3S3NFkϜfƏ _w޹N8tq:N8tq:N8tq:N8tq:N8tLgp6/VǝwrtL'6YA-~NyM_pz "j;6߿( ̡C8+0_?ŷ)8Ndzw(AͬAy?1PϘA7_x >/LQ^C8+˿w @C32* xBsc`ns;7N̔pA 9m`z ݃ Pܞ}:Dt`{oOFaq<Ĝ<ȱ+`q<\754)cb2_m~R,V|̯eDt-ǫdȍBK40Jbz 4 -+;'{⻋4>)CGمѫ(փSFoq&,QX%=a6cr&1}8WOtd/}ϣ|{2 '㼇(Da8BWZܭ(kXͣwcbu㝚5AetSoW~ N ad !rƥ. ؝xܒ\kd3"l,#AdX@Mhi4{(2`R['^Zk/;jJJzͨcJ (W+|Nv-MZ];C3iv{hy'5夓`_4Ob.ܰS7쵌;[_rq2S=AJ^Z*&'7[rn?2aL+;ɪMN0V3NjHPy'52f?^(BL nﴧo8ހ}?~QdK04 {-4mY?F8;MA!٩4!v|,KT~RnA`6a 籠65/ha5/MG^2L'd (Vҿ)EZƵ-8&ԃr0 /=.ڹfLR'h2i;r q) mItr\4%Z9x;krϑ%@A8]ѕ&4B߰8bMV6&ԃ}3JagV3=L!FAh&py$upr aaj7V'nη R3DgKCnZB\˕n+LV5 pb Y`湒,SE&_>WBzsIpwEapϰ ),KOX[a~bTDZQ; O '?uE|2CTDgb>dB!I͕h*iQL{ZGe>=]n"<FQŒ s?Kh)E oy;$%('[C j{Q֫:@Hk 2DN[Ңf 4H\=-tq6Ąc/W0 ZDF\OMY V? w;]v`UGF =F!V>~KAAo H2 0=(`%@"W&i6?0쵰8y=cۍPv4C8ld1~}N^NN T>s76c(?C>b H1Lw4ܲSzn'l^(M㖜2Bpyb2KЬqsm$8v[a=Q+YRRCA:ͼj3)lq\61OB/'V}Yæ7lɉ&w2 Ŧח&Ijzpu2$8W(M,BڼR+s2ʀ6AĴ,Ӭ+fϣhY`s0iNgiؼ0M3DTZ|4x%Kńlj@i0Iev5>A۽$1YfH-uEj?Z\6X $joqq)+M&ςwrž4kfNZQ(U Qv;@?@W!D6fJC %»Uv(wmlԬT >DdĄx3:~ܞ0Dg[$B?F JJŢ\6hg?L ֊&T=e0;09X D?@=gdY AǏ4(m7wԻ(^'Pyr>"?/*Jfh\63(˜5=L|m$rDLchTмshQ}s)h CPx34q&6xĨ,x$h$#ژ\7'ۏP+ U\63i ryr$]/'di"{&w%vڻf[La,LAPe5K %%7 "S5 oA;x7 \R,k-A1"0MфN{7y^\!P`d;%m$:ETqj6/5NpP #N9bJ/0A|͵{s~o&At2?w\*՟y瞙V9CPU iZ5KD:-9\T^\0 |,cP(`N9S:YL{XZ1%m{21yhzH+M(iK@k[]]zn( Y pQK ~lgLXSpR\xмKf?Sn5LYL-+/)3Ζ0vyX,$Ov)Z=IrR=+fCTNRrҌ~QN"'*uN{7e"6=rdqN8193:Cr5 1֗Q$I?v7HO%lԣS)"}Y+Y$#Ҳ+1!MK3K7t+vIwS=-_j80uf%h&+rSdyԥ8;øꀔ*wB<[Ǘ+^s*a%~֠O]d2?H>ƋOI~wkDK0>O;nJ(ZlcAɗb)ȨRh- {-5V/O f i:qU]Cղ Y.\>>ɬ't`եhcsx{Uxn썐fK,E>КюLI\IĸF鄸1d"y/Qx`Р",4>S`x!O ud'3GRвV(b[2߅)պݴW~@b7UD2 BV?7D`2e1b!i}6`ͺvg! Q7,P(LIMt\E Ġ64#Z sG , < B$m7;@^ [JV}/o79LL2ywdRt52֟NBlјφ V"Y"N&sR?h[YR;؞#cRhWmJV!d4*8vxiPmS6'vE8eT: S;.ocw 㼇%}g$=G܏mr;]8($&2b3F;V{L#s9d+lѤe`jNߨ'jAAϝP?!.ܼ{i} m#ؑ&n.3D%8f1M*֊cR#r"p`Lf$AM-6#dJHDžj7V i 㼇zYaeDW_\ޒEf=WX[%z%ܚΊgdD7]J0hsj=j$MOL'̮@΀Nf6w㒠Ql]B.\XVWs OcB@:#uF+k?w0o>7!(4VqeI(ɗlO+_K 3gq kR?{% hTpvuhedy>DL m{mJ1/4ya&;Aě7/5P[U\_Ȉy&62*[w&|Gq7nv):ҭ]vIv)M0`F4|Ul8nݹ' &&Q_q}y9CAo=(l.J&qb~nR% Z62spVb!4t@GP!*4tRWA%\Y= XA\wrr(^ՂҊh<14#%||ؼ@`eu9&J|d.9RP)5^ Vsz =+t- M@ȘAf@M,ɲxZlv"z$+<2$C Q[-/M{TSiJ ctfzV7{( F1($gr/ɴ(iImdKV'i2I&o}+z.L}mdք7M(m.fZ4IT FqLC5Io<`x."!^+ottbV$!+Uqe3i&9j2tΊ^׿MwRP$4lPCa=)ȗ;a ϭ$?DSfGzdo}+_0`_xʅ&=~T~h$9Nxp*Ix o_-8柧/6SS!Jg4D8'P+{ӄ|~F1J ^7;}bR/_{71ZL&rG?L\{owܺƿn5͵x/WCՋ*!ns0X"`[9``y/@d 5rr-Ign^jo7|~on+#DtCI?XPA6FYGR[r2y'NT&S|uk oԱty"L #!-Ǵ 5kS I1+v_a ؎@NJ($e_7.ZbrʉOw+5A:so"=" ժTiY{|YVsSJ-̰<v 2ݲ3JtWV rЙtE/cNEϕvȍLL\7ZeAV|ro4D7TV*&#q<н&smUY; K| IDAT[=ۭLM ͭ[5UQjT7$̨.Q]œS6RR1e-k$9'4Ǥqʋ8;@,{ES:Q 1,R}7/%W&db8S>J' 1ϹIPl. OƐSQrQ2쿝&L1kmYa/b4D]C$+((ղ}/̤ Ќ {i4'dDIj [ljWq` R%T'0:%T:/bl^9 sxd3No%HX(V+9=TU}π:A|!yʳݚ qT+9ș)'6!_B|)ߣS/Y ɸizͮ:&CU@ۭ!-l|3'뫲p󤖐ckSQ!C+$ ȸ{a)vSS@{9^9lm9uAjk {35)} XoOk.}|7qga =ZIaMğĿ9M/45FHO4%A,CTz)C|zHLBy{Cxɂ~x!k0נ & `JF}vXEi!3 dv`'F'hOKGVkn]Pvf 53uNo)ZJY<鹕Sxu\RKTYER~\b% >؈y^[ǽoxۯҫ` A*Q#k:%R;ܥ K@xAZm"Z]Ľ[)GVP067pATo'g ĚLj>oS5V^JPdKLd]LRG8exGE؋0E`ża"c ?K+]3}kܒcJ3p+Q(LdN  MŇVs~;f$@Q(UmMm& 4]jӫU^߸>oa!.zuP[\D0F7QN'Ġ\[.y0NMCO,8$#b3ˎ95J1*9R"e4E>쪕Ns`3Qwo}ފQ8qL*~ϲ6xxp_/<(7x̙ HU;v+:}8 ›GgsQ'߬GQ>*P0a)16`S@<|O 6@>Ot5ILGymXl8ŀ;. P,{E _E4x \lzF= 6+}`=5&VYPf}'=k7qrQa {_Vq q;'@ Bbqql8ZK_IL@d)Dzl[a6`p-{Pԗ| k~驰!?2CػL~_/lVH ^t5טEo<#nO 4o~`' a D4>xbRyQvVV^53pؼSR~0!{\_B|OAMY@s(+@7\I}dQv;Hdq Ы `lGgb(d=7:c:My?K:-'֗x_I>F[F,1IB%#0Uڪq~d čKE\8(ɜ'=`͡'9虑'& `R}xTf+M =QW"D|i.@D8 @8%&㢃&١ںa-͕Gnh p}xJp?5~)uqaJ[6/_MQzŌז"G7t'ۏ skA>Zck#>W>|wm&V$oZD[4av{4!$KE-qbu׫x/,1) լ v᠀aBͶ)bANTW7HSNNv}̻6Z Gu;ك˵cMaA[?dD|wMiڶ ~u \ LDk=#BClUrf5VIz%"d^k~'a}/iWGv!=hOj`_qG8wߟyM$x7wp;I0׶\܂JRi|)ߠpZTkv`0\A [ܛ/tSkܬ.Ttvہa sw9q;!ĵ&;'R0$#v&z>hEsH I֒W\]j aS?D۠Y~PH ^ckzboC_$CS!e\ 7D|OƝjބvٯwfnm q8dof:ϕ61dn,/cqQAA}᠀C*r6:c,,Q+K\Kr266zc:ZԔ h4<w8`7^m+>' ɉok%c\Df O ĝn@[BZCN6FAzܯ[5{;74(2ZB#GMuHLu͍B œ" AEg25XDlԷZA ޯ*|3'M㜲,BT1s?0N:9IփV*ݭ=%u"FA0>@o'.DfhLkf[9F+L! VnRY@j^wФ' 1由P(.0꙾l^ApqޘryoUju9D 3,'i2Vd|M*&tjAY?j&Li >a=ə&Rw[-^aFQdkQnƥbBK, Z=[/d2a"͹.\7M۝ ,ƐW'Ia7&DII^O7=pPH|nTP+*` 6ͫ%vؒ;t|A9LVvǂ{^[i\~||1xAЍEjJBvxмfc^aB(B1@M"pգ \uYN~Y6S@DiFYޢY}(¥f"d GVc{m 5>_I,&Zd9$e\oVDmօ1T3w'\1{Xqj+6 xTIWg.}X,cAц9I ?ւgL`- Ѩ.%B3t[_N=F)Lmt؋+ 7 cU Gt)-Y0wkń In~~Bإ%W):A{I^k;R8 VEjjHVЫ*xnxf1~ױriwH74$GZȊGKD=!&z=ٴvqwzć0a=-(}4-h7^l@>Jk:Mahu{(=a%0d0^|]O~/mT9t`!wQ]J' Ab L IDAThT$weru8IeR/qޗE(ڏA >dFuɀNa{fҐ!8^h JO$WE\+dvtmLٜM1o!e+rbH\*&R42osSѽNmbWj^vePSk9Uߘ=:.!wn^jp8m˨}l}٤=h7Az¹cMgQ(2<{IĊT{X($lN+>9B/ Bji2Ȳ2 d*uޏuhAo sm z2]V+ݙ9:b-D?s˸pPF*>?0m'*ڥLv&!6rZK̹18`(N!:%Fn(vhr[ HT']n΍B!,*fq,;Wq <];VN;Iw[Qn)YI X ɐRoe}֊&?:VfܫG˅ x!#HAϥkI$% !_986 jn.cm齡Ө.iz`rN1)Tm1\hrc;`db"YNV۪ 'i`JSl%mr?TC]}ޖ2'W΃1>_+_E *q DPk0h4(l'~lt`|;ǿtr`pC/JSFA=&M Մ$uC=0ɉ"Wz)Ւ9PE~ 連Nː擞,\])IL9[MK Z]ΤާL&Za2x[>b istRf 70'n2+V%\ؓ@s 8{f$mqiܭtw3G G?H.yZ7wkocvu4SV9Cٯ#tho60pnUNzyr$k%`$C 'm_r"h̊qvivQ-KT״5>PY6V^E(T>< RL\-i\+}| [sĜYL+ oAaM&]R'h.(O0R2B]+(C謝zijՖ#'~c 2K`gm~g:"ڌ?~/8% S Ma)'2mf3do(rnsfxME9v=QAԏn3glTNvmڄ ^Ir .i4?cRo-ҎgU M^1,I1Q $<&fƽ ;`Ou,t|;'ڹ{9$C t>-)OhCJ'8POH1MPskVB*)4($:EzҦ g(k <{z!V^Wv ^d@1{ւ]=rΰUVkb؃qN5KACvEe!`iqn)wr^&_p%,-Uxlg,b/.ES7@9Eƥl}9~ً8̤\!Qs0"N2KK%-gI퍣Kuuq`.k)Ⱦ4tv|'Υ\,6lt\E[|pRܸaKe4?y2^I!B*ZGm*>ŏ 4(jFH/:<4X1/DEyweÜ+;揶FSROTP^ lYiC2#Q9̹.֗߰\_2^aЄWv{k:8g[Ll`Uh%{횫*4zɄurxa˗ٯ| [?u:(zh5j"&r qX:iα /~{x,!mj퉍]YJ!鴲lzs ChVDdWBsd /@&uϻ8P70 0}1dDY^y.\XAgo}c;^;[-wL ^Bd@Y} 7Wm }ڨ~s| }kBٔz,2CmB6E1 3x"~N = FQ !N'̌ho^0.nk.Tfq&ܒ)| |0<6CPKt+­R,t#uLЭ掩wxS$kȼ_;$\%\U=o1T bYV.jjۚϑyLr\y ϝp? 7 ^X(B[1Mm-ٮ.f.w|sʨ/L=2|ys#QhRKV$>.!$ QuQϬrsO:8p ?ep Ф_z-KЦ` *)gZےtDLThDqrgvxpoL(ʎaȣu:/LǀeV"ۏp&^ TH 7ӟh!CuH$YY[FHB Y ZS{,O15.bB7\>oQ1laIiKn+k0"m3!S|'S^zUT6~M7\ԻuQ[ OtMISFA ?N ڌ⪖'o{{$.ԨoRY_urjj4E=L0Cs^{`jK0_1u& 4-cv"`8L5~4Agx[ ?n.miq˙qYԞՌ">AϛNͰi^:,!` ZS&'fi~|5u\C|w~?gߟYBR^{yuomy)Ag˿wbsDM`HJ}{ ʕK^YQ'ޖ2fQzn\ҕ"BK7uVM,@pr*Jh-ӎeìEDV^Rp7Z%0l攍e*ΧD ē;!khTGǏ+\$A!鉢}` Xl{C R6 p C׮}h@!_{{ x65&\F' ?,8,`c㮄4lQ,Р9B=̶B [(dMAݚ! F& $c _ŵkko6˞ChQvmQ@T6KSh1%%0JNw"t)@I[޿|՗e:ɱ I{8BOK>rȉo\F~;e-"E.7S TyaـD&kY <Y2Dˋa3dWc65 W S@ZV#e^23_;Ɣk۱w _KUdwl@pb [٨e8Dg^}"N␵p0opK$qówG jd\:" L| akL-d0D^*WjkakMMS)lI|7KhT=ꘑ\`4[#,%!\7UdS@<:?2x1qCbf Ag+ AB0\ԣw]6Q(R eZ?_A&^9nZ-e `o٩xtxf_ǟdž!\Y(fZ$+f%rݒ1jkW %WY oUSS>}Kh>+nocZy"$nwtMٟSQ}R,!#NBAms+Qc3iYeN=`ТGbQ60d=_NwP/ULvlQo`eu٤h;H`W k$'v'T M]!yzDΏ640q٘MI0< a)2gd%yXU txۼf s&/x&Bm5vϗH{)qK>K5ժ?)2sA)NJkm%:5#{5KX]&Ĥ~iKℇ ͗g_7/~lmecWB!R3bd2-ŵI_tR5fB9'Ⱦ lʪWMQN&-J53l^jkyA;ԟ{F`T L2ŴEj fAsVEޖ&MV:etEUrn]l6}- Gn{ lc4`^ik!kWwikj3J4mw%sl.[Y]KV>y[ݑoeΞ[ʪ< ax!kj0D9iZV껱u=5A{); ݋@ PV6:Mr?aԃ[r-8quؼg`Rk0=eY|X6Odvې-4;p"ċ ݢ,t斦` @$8d!4Yum5U6rwqKvn QB Y6lG&MTe֪a%tssX#il}gUݥ&F=o[c~UGӐAL\W,R0<^O%kW'IocoVnNn75'BQ`ZJSKA!5kCn=lx3-O0/x6bhݻn6йE4;BTnyƥ!0%fHwjϭel)Ҍm(*3#z&`tjO-z-'vR;̹lSlUGh$١V*%6E!'4tAkiԓVޕm&4+{U1˖ŒۻՔDi!@V${Qaw G50FMޤ%MTҁ8QN  sqmӛ.T($M.["'Zj/}4.;fE%Ф"+ؘR2) a~b2WF|w"SFEO~=.Ϋͽ6n?-c3N{I#^M@S`e1Y7V8$(VMd>DƬ~'==ģb ~n-`'7ntr 6:c39خ6upjF{YS/\OT\i6i-8 IDATs;sH Q-LB4(, ɗmB;km3+ TDh;PƓ;d҇*>"Sj)=`:b$Dt1胓Қ&̢hN8AJlbc۬/AEdIi,` |E7 0DQDna"8VA[yj\r0蔌}ᎢKEMTr {2 C`MqBz]C#Oxc"6#vݶ Hf'=w & {h>btmnND!& !Dl 2Lks A\~{])VmP) 6:=?VV2z|d>4Ν R\j)}rpnm6Gi6x;,JȒM=Z\M&I&4DI[M'04(lFF7[ɶp#[αقۣSdRAۣ h{.u:6Ubc:0>`7O]ׅ_e15r+XZܺ>w5Hn|?ܩ}8۪,~v&ÇOMJ!YPlo\rkآE6]bF{a2St M 5 RV՞=< Jz>;<0|fjGz{Q=IIbajͧ 1P&}rV "b & YVw04B:2`jj^;E)K+h}_p71149.ܠ2J0+*ۡIOM=r680`0Ģ.:PWGZ~䊼lĸ*{[$+"izB/I"5c4J,!fѓfB7,0U0GYrΎVX1#*(Ii$C#ow?5mɶT3^gi]EneWkv(e~a|QDy\}-gXDbW&L2`C6 OfJJu XQC _{fٗNJ'̯pm/fuDyg H'W{Ak6?+O!ѡd[TGeΒ(а1y%Y 5CFiz}tAqc;g28c룖E2l <{{gsBl} an+z(C'$@1<$2}1d( 5|^FɕU` D6}]aA`vEGT # 0XՍt<}`2Lm!D"!6MmypϳYP/BAEں3O I[-3P43@ Ya(יwAyRb/cCV{dQ\3Qh IH: W: lmrd'=`5ڥ 螊Na$V~y^[F'܏tp=:сF1$җ`xf odռ5oYփ8J,+i|^j pu43c-{4{iL_5{F.Wåڈ- F]Ye$fxLI2@j.8 r ິ `!VBͲv_PTv?Q':g ?I2"tuYt,h,dP㶞!t0l*>LA/kH0XKÙ,2ۙ'9?kȄ+R Ia6/̈={. |oqR~Ji aAK'z~J:žv@qL2C>#uόS:HZbL8$Wybģׅ_l1<=̨*_m,-,{28l [84gxM:,8udˎF{`=:׉xq#*Kv"rY2iaa$z_p*@@AT)m*$ {360]H.UTo3;2@*s@rY@5..YgZT ̒$C mАhL hf:Y* z_p?d3*}`:疤0܆M?1d(r _]|sZHd$HsT& 9IY {V:`ZLJ ;dTu`4OJ^3!!>m'3@{g똡'ՠ=H>e:}rJ~:3v?5KBUbnqK@WB>Ic`-4;~,&`TrE.77aUd%^9v Kc+ J8Ψ}W# 4>坟ˆ?ܺ3%f 9;; jR6YnRf#sv@㩯lwaB2*& Niryl̰ ":o)I`h|7c ÕJ%儔̶eۀo_]|CK']_nbH#s<&fi@Hq`ݣ}}}lS{l@y@ؘ6ָKd >.$ed [ J0ί-@69u8:fOh.*@lUdj|Ǫ+*******aWRzcIENDB`xteddy-2.2/images/xpenguin.png0000644000265600020320000002364411143371632013421 00000000000000PNG  IHDRAcgAMA1_ IDATx}-㸲۽ÎyiY ރ]N$|wxs-[忴؎y2=vGWo8qQ\UnP  7($n.P8ܜ:8%Hܺtqsс͵<7( nP$Dd}ݼ n$D=T즳|pC0]iG5D)X",/413g 7|88F]N0G98e 1Ydv>;Q. qνʼ٤`9q@+QNȷdc [&8܏e,-`(32,_q+ղ_N/PPTePfT 'Dd'n՘.8p88qĉAdL2 SC).#V0J]5նIE܎9vҏe8q+UEmVW{R>(nw0}[(@*@(v,On2žHnp޳$'"['j~yyǏ~[vn%SJu!*CpǏK/// "A0 Ko׉J4ԪR̜mIY͐{Dl尫EsΉD$f70 !2߻ΪdITU8XTq5@G%C (QAy@/23M(fQ`<#ePQJ,]U,,bRn&d:ԳS>48yW.0 #M5 uʼV)n.DPl0z҉cKQx<_X&Q쯭M'QyT{_0 P0 ~t18\׽"]//kV`9 A@]ŢuRVL-N5$&Mjՠa 4 n%)%5ڒk&(N &,*/)er!%E<L >f:Q5_v+(W7J $z"FOdDR:8bՀWK]pźo///>1֋TE`^Q)bG*2v 0"Nl6}n9-Y,ABSI-bbGJHP'VK`Q¯4UIEEo5qP^rI(_|$\&@1cCH侻D:q@i?$v&dI$`٥>F%Re@0H<gsGGG|ta% J+UBszfF#qmU^ mFHj-Ef$68:W-sgfr5tV}u:.BJޝ8 .Doڽ Yb]"k8k -ST"Q"ő 6A ёRM<^(L. *:]j]U<֒W#ddp`Nq22XVpۮe1셾qept$4DLA32rUyp ionIQ ьh;\ET^Q)=.#ļE}pR(V$;q@(k -X!,[.3Lp$*ݜ}[A8t3WȀ |"PA9cJh׶b Q4 cTI>5(WBʻS\] J ʶ\|UPvsRI 1LZm^ (հy^Vk`(mÁl_<IWoBmyc$Q)k<$#PA 5wF:Z,+Vq@i A2p8'b/UJp+D 6J1||Ȱ\.;WԞ&։J_ Z(@ Rɀ< +4Ys8H+ +}NbH->};ma磴Q%KȖob`ZWU V .Y &1J  V`ޗBM*)ٶH$Xd 1ﳅnesk$+#{h/vXy ZdZEĸ ;H|ߪ# RT"XR V}lY Jp̫- beWPϢ|D(evݾQMĤ_H$q|7dkd[)m$ǔzfp_3ߋ*}}ht?H{gWGi:ɪDmzG]tg<:4+jp/Bԏ ܟrϦ׹i\C6髬p8dg uFQV=uHOʜ~l gr4e(37Fs X05,uy}(30E}$CDIX.7O 81<3#La})%믡?(gD}JDG{ ucfqyCqStldcW[nP2]ɥѠ.ʮ.¦U$juǹ/G1fy~~>G*(!1AtFGŕkf2& z<;LM|߿#mv?;XH|*x"KJcj Xe2`ywPy{ovEg~`P]C)=^7t'{{JA*X w (tkl`yWBC_}K/ p(>}+6Yӱ)e{G,d7E i[%s#%ʦwf欝L{I}/.}8uhӒfUx`/y=ӧNBQ?6p:Z\59YFѷVW pY> 뫨M)|oRwXI{BP(-.dxQN:(L&U r 톗0 U@#[, EDu qu\ב  ws $SI^Uoº~d n4'68 hv[8*to` $mTrwXMD///7)|>ѥb(I]=:y^ :SN|SMmC3S#P*uv-WܕQhRRgv7q2 |o@\&w (mi&;8ܞ>l{=l=o]jr e$ŧ{y1m3tm\q@id[aˣ8FJ^rܙlR@9̪681te4 +PUpBf(7EF1ɽT`=qrkw@ߋ-9F' }Iq@J Lm9&OMns1'~׶`];okx!}(Wsgv96kˡL[[s] A>u; 6Iqr[hjДMqg7ƶ%bV@Q`wJ:/cz>ǬbFFn+e[q*ASX8e+ؔ6f.L]_t&Yݑ52Y) Ch{5m TwfzY/#D c玡?u0(mf^M/3oZZmE,|`3H ;\e0v,c<;^Jy`*q*EPwǐ+yAp*Ӑʑ/>541;ڠ[J}/To~dyl(n8i_Z [nz=LB$gQ flwZTnq8n*3 hS{ӵ???W!xas y~_t:/fq"$weDC1+%c$ ,J1 3PL$"F)-(>oQzj!fu> @E @02vz ^|l p'(S03v۝3mԠNḦEz$5 F:HPZ2J@Eyx<" [}`Ec ɜJl0"{rxcLYP~Ƚ+rQֈE*r-aK[$&L!nlj. bpa$["ĥ}SETW!MYot1YɔK ukWc%@uU%@*^1U`3̢*`%/NvRa+tZ(qJ-y{ `N E\w_%uvnm6^__ݹ~W>6K$"N_3>% $FE~ItM'iJbrċg1Sۯ8ꛇfQ ?`Կcσp'󫁁c N "NoS?'U#0i?x g=3C) KD^apwCdEkPQ )%qwNB" " '?pT(*!|b|f=kKw#R~죸 }.ٕWTmrQ&+VsȷJ,IMR_U=5ccS&YB%U e4+7<. b}T%,h6r2YGl6)+*V?mMX2E' `۫~K7\-OVQp;Vի [5f5O(VTʑS@F)gy u>eӫ/$Xc*Dc[SECAhN(KccD,@Mp!&o8=έ|RāMHo&"#Ү헵ݯ^NI&m ej-K, A0Klf&zoCN(Uo8+3(QiAUMmзX `=V/&Gcl+2![ބP X@mL/lf;XL;(jٟ!6M?TKڇUBrV l4Em ?2%H6M++?IԦg2-lHǭ)UƔ a? $MI6N` t|_+2VDJ HBϟ?w:_ 3By'f*S/!)ۥEߚ$0 VvK~և $FGjr zu\Iy'W> C,VN{l/bFv20OIDATL֚vJU ^*&2@3>~:쾀&+ C|3-Lf# KcWLѦM53 ȅl7Gv ?o7ħ:HIP"H2>n}=hJW+OйJ+O@GمEJ٘<u kK&s+$|fyY(xᄤ,)3~W 9{P3iS !c/h`EO|= mܞ]79$Zq F4^/|zו vj˂Yihu`zIa &|el:`0uej,譒&$@)lޱ|c@kKN6.0{֛X9 B@M'32@DQTo->2"_Ӝjs؜KN/l PB \:\IGS釨!"AU"Z~a^ [s{-2ɗ7ЊSH_ ksyKj5e9(C;F^T)uܝNW͂umSl/k+t2. ,s;_FV*mڎxhOj"*ˊ,uudu,`eϱL惑Ƙa\^s3p<[jj;۬".D45vdD lx 3" Nʱ*h,Hv3TXev&«oKAGyˆ)[%Eiq-֭c,Nd$#iq˿L̨M: K-)b@op=`2ƉdJXW+eXlתMYavqfV߉'J؋dD6GZTPG> =>+TpWp:П))j5lDcAozrgYꁋ,7 m|UYQqUӑ:C+Q԰q1)khh6V0=`Ga{郚v #a+?ˎZI (7FjN7x.f ?Zd#sedK]0H-D\`-dVmQ2F* Ch Jɷ0=V-I/hAd 幔߹SU/4 Wne9\w#3UQ,F (M!VjƥI;9*7]m bZe@Q~J6e6])-V#H@Q򼠳0<{jy-Y\ׂD{^1-ǸۻUb 3όULug·^ 2$Lc2ppVgVhj؎M $e?yt`@9xT0l@1!t @8qڍELP LT9CM )MzOHn~@`aWFdy! GLOX HMm>DYBҲH,<-P NU5 jao$htAr$yDn~CC ` ?2 'Δf[|[LV $gJƼUؼ 8\`ɔxq23 hbFXLw؏$%V.bhnM=ZcN( 耨YHc0}6vJЍ*쾟B4yEНKPES;6SKZ؄pb0I9U{mJ`)L}IQ6kʾnk+߫? S%ad?d9P2u'NHfIENDB`xteddy-2.2/images/xduck.png0000644000265600020320000004056611143371632012704 00000000000000PNG  IHDRxEݓgAMA1_ IDATx1l\G/߾M- ^@P.@eb l  H(drfgd;XY(29efQb 3`WbHY|Uuԩש[vs~,~oYcX`cTzS<>^=FX h4v'as0^7oݔS;|zpr1?F2h< :Qi1/yNnamcᰱi5ON~φѓ9`iG Opj`ok$~r4*^B;{1\ duatmmm72o !h ޸J=]r2޼J|_=?afϖD֯NaO?d/G<^Nn'jft%K\دEUF_qÍ?f_ SH]Kp`.YwZ |"WEn(駿~jŦxq3@;WЫ Տ^@:~<9yՋݘ p8~rcsP^,p;̚{` _-ͼa*d PA ^Ń/$!<әȃ5::.z25#?EX0K*YwDɚpe`tqUɃ&!T*F-_ P)OyG6n*>|p8Ԥ0L8 \V7ct3y+2S?Td>2%i0 i1fY?fm|53{gm( ؛>{d~7d!{$ad쫍Ɣ;¸TMPЊGdzYISdKhkaxTd880]б=ŰAOi:UhOFr P`6By2 :.(: hUx0xgx|8lzrka푀}(an6k}֍ԖKy8,.h!@)<< س)(2ȈeSGB7fY7=~ݰ7|a?LaLcݨ?qpmDBF{ zL:g<<۷=s1`ӃK9Oz kt8VO< w)z3Y@E+R%9.g*gyuh{l>&Wa*pTPk'eAVpD>O_m-O[vr\'@?Q ؍0 #NS`N'/tYjO^ƺ B|cEd꟏O\Qʿ|{{wO\T/3` OI ǟ;,m<ٌfW]?FѰFgOuWZ[9֚st%yߨCcKb1ѱ6Ǐxxu s%}hgpk9_ }M&ɰ0ڹaJT*Q8 ^!#۷&QdUDWPmxJS t(EԷ)^ /?fؕ2z` É !/{~w8rw9}UO \3ْ_ /ثlpθH=N(ʣ-9Qyp<ݗ)$_'%/;v@UYSv *f17H}8UTn7h*;S:]Zjۆ}CzN/ʈ+'*Tr.Ypp=%Ok'z7Wh@BQ ʔ'}as:RڃJx鋅ˏG!vc%rl*d\\uy" x¸+Mћ:fm- 2(;X`'dʴ]zxɰ ʀT֧âYS{ruYcK5Ƞ2 rW~wXH8MgᵚR#\1*uHŲpJjFXW^F>S(T11>c.5ۚ{ .qTPI22W%GF^)T@sd/2|=~L'g/+_: 46Prd**|pUx0ƒCAwgW'2<h.Y|S\i< ].:S"^/㱮&mB*$}) XSs^me>:{6,t*|xU.} eTuЕOx1 m0 7deQF"}2e(`=*P B] E&`MtNnXqYHG婬 .^Ur:{wXkBSTw.Xug-#'ڪrc@<`ʼnX"AV;05GJ͓12qtUehWO9L 34ICϕ3qtJj竃Po[t9WZO|'Bw6xUesƚTum9?D?`n>_VݶIgP9`H3z zG[:^ƃwžm~q8~~M |<6GWC"RUā39ϒϮp]ӗg"@r <|镾 z̼H9w^cu}sH_74/)݃Afnjv}X*H5J1'Ti5 3Sma(} a0!;~tV;@5QWD|.N8`qP96GsLS0 h+jϹ:p#ÿ#R&ڿ+ͺpKT7fl!{yLV7c[PU(b$TDl~ .Ko]+(]%DJƄDovy1tS-Ұm{Bވ-szJ˟w?ګXY` Wkꌏ-G< O&s 6.":L@xOێ#0 y=(k0`{D) 1OFӣ; o53+f| o1T-Gt"&9 \D'ƒtBg'MP6tR!TJ3Sᜫz#&x1"f@ A@gAJ%.U4$G|6x1A|L!/۬쨷!SrNݯ<< bd!M;DO aa i2Icߒ2]/)^?Hx2>B2 n *>6N f Pe ?z5|z{Wz60\=1=6lA)2{/Fl X? l#W0cGG! lUY3^wPu< x/+0U k%P *-fG5|/^ ^Kᕝ)d0&) ,b@Q.MX+^@y/|6F4оwk㥬fs4s|ÆI"uŞ^'OYi0qE[%>Sdxo rJ~Xn 1>Uz 0@ԬFI`iNrc LH^2ϸ;+L!-n/~NV<f<QD-[C`T_G4{[m*xmBrx1xxa^~258Dž46;}{VHUm NSB?KT 9P+7@qd0rh;_3;'p 'Xf rjgBZ1S,@}WW{#M~IxV2ar`wYvȷ8`%-a -鏊H!3zfK;})3rBd0iM4#H? (|y1t,%PUOa < 2,ďLDxXћQl^4@[*)SRs] Ã×0q Ka1%OjQ$Qw WP_S uT(kK> 3 ^d\qnZi:Fm U(kY IDATV PĴ \ \g)ȑ[3~xKx5rzC\ZUyÓnNsӵB ~ȻiQ ћETOgu؛ :ƪ!MO͓Kƻ`p!N\lN* O: y9 0&^/5J}yصе\ k^r$Pu 1)!}"Vˤd,>*"Vܱo.l9m$ y KZ [^$^N^MsGf*g:N\rF,B:BIc[fICgRh]TcSvHq (BX * Ύ,x%|JgcErݲ?0~m|nZ\gAV& rcr*\{]i$cKde~\U}0^5Iz(!iY@R Bبi 2) ?3RokEePStX9W;C<-Us ) WxeogP9SV6\DkաXJT4ƎLD^s:.6PaL6S0Y2+ J:%Ϡ `0,<'Rg23Eቻŋ4-S9#`ЏJ<v6j4U ^<NߋTZtXi2H:%-eRk.C %J}ǀJ.\i.Q<p~#-2XՁsmWA=P[Ώ_ 0%7\= eʬu|@Ags25<Y6KAGϼwS\rٰ!h/\ES) 02 iSI>$]Ct }=eW;+xdꀵ,΀kVQ{mBʀӄmL5bm `xUmDoڀSS9AѼJA<ꌗ"@cʑ,䁡7;_>ᑣ>5^ǒݣmjpt\x2pb4M2fՒ/Nd gրcRxB<:ST_3LAEӴ=^ s{%艹"@͠%wd1Z^|@=S 5`l@㱴MS 裁KFg0U2Gg!>5"4FP/o 4f@uFE[jXU/ R,zp  X!\.w+S~G{ x݋4E@<#h:F%"ORdRy\@fX!+ 5*y(}d)N=a tzIr9^f抯9")Zp 8h@X_%shQǃUG('Иq{pJG>˓篾$aUN 4l̠pGr\ ;/ h睂2* Thcű#*h#xdEk *l*.ԐYi<5ފ򾲽Y$ "]։2⢀u5_"G{-M4 ўxVmg-x. @㖯uH*] `~w`=I^OOk8Tt-YZ3qtE#ʰj@kTC0&*cQAY˵4yɚo'/DOuwʒo+.WQ o^ݴ / Sz,H7Xyt+W^k'%nM4ݗT`X@>CP  <|IRz]`8b:[2TQm9/B 3<;J_m9/*hOp)[elDʪn ݊[BRx "1QM!^&@ f_, \@@RPG!B<^Eg Ssq힩gi-Q_ )& l/V08xa iя҄qVB\4!7lh74'I=Y ma?tj<`@?c=HMy?=@ȿYx)3OKm(aQK]X/:TI`xD+O ۀ36v}j?=7dƀP<7!|Y,m28'_⁇<6ŋ} /t^+!셝2L!x,^rZ,L=ZhMWq jf*OF6ڰ5/4a@XqS 3-; ,o׾ƃ)/Nlxԕ>}xjWYٔjx9gr݋D <<[㹅|Bs &(izt7leu|/Ay=xsgY2Feb+ȴ'i৭=`AUD& TH2^_[/g+6Qx+U2ӷB8ŊS)G"155Cdl 0?:HgVfkT-/jT<uNrf*>.l%ڪ&7 UB&j[viؙ9s Y#t)9N͋Ǜx2ǣ\Uf齥Mٵ<9yEQ&V f `,lqT˛"Y $o* {?BLIS&MYiN7vֈ[_)RQm A_#z!2^[yLQCr.ӵH v(LBMvu)3ȸH;5xjvW\eR@uU_a·5 ̆`S6i*GKl'sه:w۠L Ck?"C)[:ZY l bxa/=EW`I'OARmS v8Et)7jpRkKoEjZwN9Vt\[k`V5pd_<xvQܶn6H?h T=*I!2PY ^9@Rt@~] õ:9ʤ= Xl6` <#_k>bR^Py3h< (/D xتԖL͔nt13ӸL"@t%JuH/޾27&k(8ĸ29cmsE騟 WzEDdB{rDin(zKp[#5_wK9yN`ڳkz0SȃVƛݥyhY#_<@!ZiPM+=6xuTwTW-^ZGz# ~y6(LR>a)^.6= & dI/ jyڔ9j~Vuk226g>}0/ؼ%id>X``1 fm<) @x3]=!fG sʴ t`#Gl&6l 0#tԷўZ\`r',N͇OVv:FL92$3%'")jJu,gƣ=`l|$!d.橲v;UX>Uo#dg}*u'ޞ&>846i4P4: Vhdw:ve@ kODo]wkĩ^:x*[>dT+"Q\/D]k8I?X#o5y@ x>VܦjY@Fmea{$P"k="{,>#|F˧ 7p |gW::㒉k8>/2&cˀrvt6^Ȑyw-vŝEy^u0k,eG =qwZg?'z[P@*Ӟ)D`&fׂse]k% gǃEy*Lxy絺i*` E"CY}3뤏p:G|56}[+w;k- W&6U>LhyWZțmlFý!Iʼo1|o;ۥ^ u\/eCƦ ӢIDATXzɳw 3m{ƗћkH~s?}[=E:/T^iР4`GV:JZUn[GU~~ѭhzjڲxWLǔ}h|ڣyY<M_kdž- S Ѷ=Mo~'ѢJZ//y0{>/. l]Smesso;ziYxf,~ox?bIENDB`xteddy-2.2/images/xtuxxy.png0000644000265600020320000007547111143371632013162 00000000000000PNG  IHDRFgAMA1_ IDATx?|Ǒ;0"2"DG#}E21;*ȸ"ͦlÛN r?.vvvիWGqr2BNPo03cXd G88X>{6dhw J8"q`0Xgq`̜ 0t|$=s~`W&⽋'_1H%w;rdfQS0s6Fkggqg˧dzgt(&>" /?if1̾$ &m'qŅٗB8AI'c=5H`Ik>Tti6 i^<FB4:Ú;WƽN ZnW\aԄ2vԕj{ Թ)z<}`ojP<|fI4Z,@Qe{6+K|29BiIɲf xOO~q;엨=ar-gZy@_8 0bi,v%UY :3Q:#3~[ TmyxDHx7bBg>Wr bU7c= =?x?,=3Mӿ;ӂY75(իx|bqNUE'+ޡ_ _v8r-O/x}HFp6LY:1jC"$Dpzzi2`0sx1~;lOk&pqq;:WU׶wx{Qt*Fm۪M8dXBDjV+}}@ zcn=c4w;{m`iOpaLRNTIC:D"7robcsO> 9DtڏT8lj=ke*g2zj)X0ؾ Y"n xLcMc2zӞ*"d),glo B$ĔbH |\Dpt]ZTdՎ O>MW~A{ -uNOOq~~jU^睱ʓso&bx3US xǏcZ9rcBoX#3 1g-;'=9.//qzzZ43c^/v 0[?]ϸ^o0 =s9`=ɮ5򌅫+ZEgg_<7?o揋  NJjGfH?#)ɓ'cQd*/ÛHn-]OФ>uwţGެop{ffj5o>⋸Kl`kXv霣X իWx+li=>7@Ůdge2B|j?} :c4`͸z1?b빐fY8g@)]o֘(7/_Tׯѣmd'gÎS2Z+5ܙ38|YD>zCD|z{g`LD[)`<{ f_JqIDž/I3#|/^H i1|`>4$/yfbe:͟ Xm) 63׿$$zd@)n9W7/J5888VOwgM}{@}b7u4|" S"yY1֧V8y!Iop||ׯ_˗F*;л@DbZz+aZ/hT՘ _u1Pf/yurRʟ'LT W^Z#H x.x藼ܑ yj?`6`EĖW maXaX n(:44 }V[ ?$㾾.%ʹ?+ט 1ԔŽT C@66kyh_lH8Ie8?ðY7ի!V' rS qM>J+ݎ:uIj5n78;;K+WuTd ?$jZf# ڳXҤ2Jį O~2$8==ӧNmDy#|gxGp c00^]G4ȘXМa^0jZ%V?4Oo(LC(MۮUR^w2=@?3x;wl0 C{uuYr!L{^?X#8"1mGiL=;;;8ћ0e5':U]7@9SC)!H{u<7˗AE˗?=qD@3w)D BwQ/..uǸq9k03ޕEjCsb'{@5v=I܃|0xl6xBCьsX㏯? ~H:`jۭŌi,%fS8bR!W _KC@o&0T*tfɋUe!͛}?Ç( =;< E>̘–Ko_|qf}q)fޤ\||D"Bhdó Wb\MT2aJ1<˯<}e)B૯7p.+`?Do?o"3ج7gu?fs`KvvVq=Gom,'H 7eu$NLyS rFRk =u×exHHN|n81W n58]f}xxx^W9GY^ k߮^o<&s :{YAG.8cD G ÀW%dJ;<~}?#D>Ck#js ߿.=a,v@7z!no7k8gv2!. Z4SޙhmXZ)cL" ? AGh{oz0s:N!l=80I^c(Qo c0D !-zv4 =7ZnXMBe/a f뛂g}M,Ռ˿BbUׯ1=R]%`pq>`56 iaO"<>u=8xL&p#r%aA^{Y# h ;50ę75OOgR5Yu#aӹ!qfy~~{'&vå[Kp 0sܳb7ME)=x{q`x^G<|i=‚Ou7 yUb\^|*-,3iAq}}nf}1NWVC[0OI,0l0&X"+g c .f3qmi1JDrO(K;ƀ`ZuOw=޲rH%q $%k&n?>e(_V8'EY fbQH\M C\y)l`]RRT ٩P*aT!x^C̀vŘwF; 3&8F-4K.x!T3"10.-hui,s>Q@ OOms/pzQhg67M«i79>>ޖE =1 W ŵS0e˧&J;4VfQED( | < AP"+a(*`A_ړcޥ@*t2:yP*%SEImaA}`cj29Oȷpa0&];MWGGE6sM6JE!fGa3V]_R .r<}#"&oVT`͍Ҳֺg@v5ŝ85`LpvW>ue擿XÚ# C 0p[/c"٥pDL 2"wb([VFojn.&GGG5yٴٙa%"SQދǝLi _PI&{ Q eKΦp痈8&0YTRè ig+CL~F8 *7|A iMVɘ28J8S.th^IxT YPOKCGb$>9sUi@Yt;{'i/`)&^ނ$f`{xMJ-5Ec Q?(%BH[{؁Wj1z\">{d/$Xyb,mNLYM#\g Q',| RCzHIoC58pZ (֝SREgI}Tx"|XLb-ɧjbXÐ6hiv&@xĂ Jg}mz|=cxtr ,5r \d6uKR `= cX2eL`R!b(JrpJ0 @HP%ObwL;YfF[ys?1= ϓ6:SHJ I7hsOL!M^8H9!"ssS]l,R2əBIa&fpb"嘙ǃѿ&e$n=t=qƁ b,..<^]~8$C׭@ȹ2 I^PLRx$yC#Q-O%-xܦN6mc1ZC-{qI4X 8}m41E",yxXu0'LG-WM$> C֍,}{NdG5jCo ؈ؼ 8 *xX Eak شd.6c k-00D},c͸xܟ&IRDu8h]YBӺ !FD&w`cZ 4jȺeU۹1K\)[ =]?DN[d@:YHr|1z*R^ drނKр5OB\RccCBIL0.>oN ~#׏؏{Q kbȃЦy2=$I![2qLxlH?ؗ.UD+Z HA3 Ʌt)psZR&%M:I79~oe?:K7!^iJ蝢f Jq 4YTJZ93{IS,PH|L!+Pkjĵ4.PT|Γa??}n| IDAT~Iuo&%Y^ f$4L c((ป<лXmq&)KǤfqKIҗsBKV(1sn%8*prO-3Zr.//wO޹]8yO  ɲ5IMTb)yT GkyIJAlJxXIVeh;ʊ 6C&)Ӄ l :Sx[)pիW؋BoJ%PC 'E1WThJ{Q:O)4 pր9.%ct! IF 40&f,-6H36J\pG&YV=hs|c~w9p Rqq>4χs$2IMA#+-լ܆4WGPRyip1c.J c,x]i"ʛCF&ϿÒE?Dbȅt=O k*A :M?O0h-k©Iz55SX_YlK٘"o<%И2p!@_y ܎#pׯ/qWz~B߯~cPB0 :{͑UiS, ;RA "8XCS~K΀l,ۃBj,1}'#"5(!f1qgxWW\?` tAge^=/2$Qa{3#Pd&Xۣ_d YެϘHÕ%mnb&sLDL] gX3)ɳBes"` 4-dy`UHKUtEC! J汥h՗HB/LEJ$3^`\ !%M]Ԍ4D(U^5'_%<'3ggY3YOG uqgmM;>!{OGMN,-xjZH'}> YH i/UcT c 1!Kɜ4![Py uDĴM\A duN3w/G7]Q^P _1!0:bzʾϼ0A)5v-6%#ք*9%5!dv4zHe"X6@IBjʞ/^N(HG8SEm;,T&*]2^yc"/ȅfTxF$çf4QѺIw$wUaDv> /"2đIQ!nz ХpxZOMX$&?{qD=6s_*aPɼ#k|O֖{@n2קG\Bѿ'ޞ2*Haq,bM_oA CxVL\!W^)Yo27.[-{obehr Նa(~-2O; x!){侚| \-.DZ872zyrpd솊a!2hK6ɞsVV"-jU\4YXT%pqm0hw0_~,'h.p!9gXL ElZE!d(1fU]a5eOMqWet5H.5bkeػcܾSoQnpgT1$U~e ȁR+3#$.{'$+TX|[OP:B?"RZ^mZÏagB10(%BS/ XR3ѽ3!@ ʲE\`4NIZ0AWbLi^DL?仲 nUWhpyG{^枛E>ADx<_")j 9;ԕR%ؚzGB&ce 5ܺ8G}8n \S(R!!9.//ЅTiZ 37%Q)i73E% (0CP;4EWD$g}aXZkaNC{VpgQ1;x9$H5-" 4=#~DK-C1sXKr6$BShŸ::nCB}FbFaܹ:fGKB)<G)ĕ/jB)GR#ak50ؕ68*YB߻=JRF|څ$MRAU9_VN*QFAyG/2O7a~sf!u8.P15D4a<L*"ZKJqcҗϪ4j9]AXwzV^TRpyyn"ymaH׌gUg2%ι1~p6g6Ôf mn2&5)1̘”֋u#I\Ü6b!B& LIgd<Vf.gKAkXi(HܬR,zz]4΁*BqN7}ߛDIǙfnHr&S GZ5_HuYp\  W L&TpBPz΍ToChaD,@WI)Nx NOO*&fr\'ݑG@RJ  VϷn1GT1:A1SP4M$qHJ QO*(NUuFT.5D`?ȕ* gg# -_'32!hM=?FF0ð2΂v \x^ /jf) ׶ߴ]8#1@BM+M=Tveձ4S*U!F֪D;"-R<,ND `Vvk-CQє[cyXDsZM)BEr)h|i |CjM&F#U,j˟J@9y5z])ًdi!L䭇eŎP6Nznf^lm=^6paV\vh!f20 ^ O0[)R×q/\DZ^Ggl[Z(Q--P󅓒Mz[kz\8B0Ep#iIx)|XͅgAEj-C#cgyT_NǤqMQd, BÞjha!JW)i0^U0/Rԩ%\G j׼DW[!+.hK"IhGP uώ?<+H-Z!6p8yP"˚4땸Q^\4*B.BQj2eǥ2 D` ,(L^5 n<ϒR6r)"WWu]Y*d堰'jyDYXMQ8)[\.~bp2윣0uEۊ$^3I`iC,3)#iD u)58gmEڒoG4 6?js8CK qY@$ d˗Lq3VN`(Mė_~Y*pD4oJش { J1_*rK!B)M45?;; ð3#IV,vH_8sO[}egU5ZqBY4wMs r"a9ګvRe2^nQfqaaΗ/ 'BUϒMYk,cRM%X$%4THnqw|*Fr2))aQzߜ,'o$yIfm1"FU!JVYJxi*eG)'r&YcjOR.F~Y koo-%?.QNj^ V7$cHEkA%JASi]PNNv!dibFoUlR1fJ88^d6l0VXqC(!|Q%"N*FUfXհWy`3e3Q):C1+`ݣ>|wBVM!04A.1 R8q$]3L*'7v4%j1 z+UL2&-J4\xajs'2_Xs Yru6!3PDL ͜3=&cIV2dԍJ𲗜%V,NHTXuuuU["|T]b[5_,&)kh@k?;;ٍ4"Jp&T|kc|R{s %fά$2`1#[t]1]&,ȱd*POV &VS4Ri2ާd'ф5k-%?M^TD0 [&E[ D>H-z[UP 6IbM 3 y8F_,\T7`(߅P&y>.xXVϊϝ/k廤Q%A#SlY󈨙=SyX 8r~&}Nj!BOJ_L&fOQ6ç8i"ɱeN|x,RdzUarc +o6d.05(WWWX nU.F]"'JT7.h|HtlM}'Y 8cg3|cUDTyo@I[Jbq$dX2b1qLnnIVSPVTSdR% M}0:LrԄx-M@JBPSsTEL(ζxfX-r$ !-S@ҼzZŢ lc[2瑟+qt`ҤN4W1B`~ᇻS''eVلbTqfgrjTpb]jmiEi>x(R`;[rM! '0Ki}tU& Pfw%_=?y}ٌGo7fiw4+)1fBgi%YkKO-/B0.18o 祖0oU`֌YcrX:%$Yt n X}BH Z;b 5vBQtWpv [`|4Eyrg]a^˗a7n63g4 Ǟ{lP+? \mA14#6A<.4BlMET 䝟ȇgJrB-o&ph5=X+C1-JHې.x/%ELzda*f7#oՖ-#(ڄul(.’vQ9z0غ Ԫ*ƪPNi/v4fϫ&7aK{B,cu${ /Sއȝ)C/)N0yj9O7ǝKZtjoDIٹ whEZ_iiIJ03[Z 1$Y~ǺRlo]?N0^' bTКrDO :1L>n; y޹s SeVk`›/4*Jih ?6;RT8 ή\ whlq$o?l.,sbu*jYF lB|#qs0&ژu\MvY+3 ,șVW$|*aA!ʈpsh=IjS"Lt<s@Y;GCw0nY4{vI(1GcI,jR"bUY3[h6LNwL{MuN')ёBk8i<..RWHX̀`d@> /^kT]6^tLJr-3}Z%X/s pg1zŪi"ZtdGNmB<8YZ{<1Ǟ@kz?@PfoEv113p, %:7Gw+(q(!rBRRPBCwsa:lROk8`䶬(gSQk-&jH^'7dGM&)+i1^x;B#C<\f]Tّv>K GGBуxp҃Äo^Ky*y3(u.[qǓ)bۓ F}w{#j3 wZL%`BVp,df:b=gbYƏGޮȍJ$os[GJ- k;8OF_،[tK9OO懣W&xćPVva0ޟu9 sRڃsJVRBnRD5K!΋XM[)f7fdULcfВlΨ1&G=zodgutO.ơQ!{A8Z//Pbͧ LJDC 7HO2ˏ ,C$Fj>GVB]M.va}-=?dL?'GՊah Kٺ-LO[qjKr1_O_œO @DX[ @$6/UZE9)8BNcyb~,0*Jʼn?Od2 j*K\P5AuT!1dPVua5.bT]Hv }*Ӭ㋝ ,GCj|iDDZX K4V 3/`Zo/q@wrT|k$[I7~ 1[%;^﬏fm*ED&_JZd-LrB3bw5 . @Gٗ>-|;?Π"%}1.VH==Nr^?׎NoI^ ,q],9npFgms_6 xfipButI|[9"ϱtww@N !_ϚA CqjKꇿs&~R RέmF@q;HWO3sBBxd ͚,H}+aU#x:ZTB(M$si&䪻T. b {09MAm,|Ov}oA+I\ > 3ҭv6$^MbJR]N5|i6 U υ=e14vҶ 26Ag%q !]AwbPکA yСS`,I4/ȐRfppI5O{d7ؘMpvyFn.,#/o~[IQ$(UgiV|jw+Ucݻ>O{2H@!6'kkC5t!DNeA[k7z̳uX$FDghwz6`,`뤎lD\wLZ[ 5c-m>qoJgBSJ2 Q eK&"51@`*F)/}vC]X6"]Z:Y!s`>j) /|+s { (`0`pwba`A\N"E0uf=;a~ g%hG8Zޤ 6w6ԠF:  6N [xM`ΒF5o/®I#D ( uo ;8JsIe~Uy>k d<) _j:%LJ>Ț8 ciGID]ovsdP|B%~uJ# QmMNl\b=#PIZAhvv1=j'Qm^KYbin4EI3̫TK#r?␈IoQ[8,Ln !⤽lÓKݺ02ExzKQhO5n5/lr$bJ4ߟ&SDke~>lq1fB8goeXn,Zپf 0 \fxaf;nW$A-nE.s0ZA 5v`1mM&I`Qt1i,u6мjq !I'^3y4YKɼ|tRW.N%^;>D[zR1 Ն#9!)k#=;rCt]7?iSYԙPi eW}G5 X_z0MyNT(N&U.Bߍ`_ ЭMq̂ޝ3 aiv&( |fׯ_ mf(s zPTb LM2#|`i x0ƍ:UCRnq W w1dE8GCZ3TrM9$ĹBUuѠnܺ\ C)4#^| )?ίnF, l.3]q섻< W;ZK^P,RS .XNM Y s4nϒ/^WBcӍ+7R'srYˡk| rbƖ{m2]Pl2R+cb}Y8'9n˶a6W!XTh ;w/ -*ҪH2 GvxI8oo^oҩ g){bj' iܧh-ʁu[VwSUL~*W^0o>K7赨GF'V]"iVPyq1%OLfVN[ɯ13v}m]p'ST9 ތX[\T j1֢owf-#U㴺8jrNء6S-ymCk jSQqLhjwj't~yV^d-!1-JlwSwjtVhUH,8?I j`ɣi& 葒4sev;+T`3DI;nB?DVh_DCg lL &z+nۤzhq?0A0VJs`&ӚRPcy`a75߿<>RJ*g"r<):!,<Zļi~y/%`{Ov ш0[ AN2Rqa9WK^5RHsa_nfRV={6µ+xa%1|oWa@IDATPwFp~x g Keɾ6]I0M3>Ѡ{6m8M'I9뚱Kߴ QF_a\HfBN<(8l ^3 ml?׺q_&QN1O0a?b()Epd1rEdҀO# ̱"R0⛿]X72}ɉc4&Ḟh$2=@ޑc8r!#g qO:@puGLgeЗ~ i;jf.mbˑJf0Q9=IHMbXb*#:*˔9$pĸp}0p_h]^0 h#4a.^0yK!UlDV1bu`đ =:w3pQtmgQ!u80Y%SZ}ry&G7+3S: Bb khz~ߦk OsvkTe!&Gcv+. 'Sӯ##K= Y :h"F@IJ(rs#-nI˴a/ڈvwb`AxUhpd bY'B[LGxP؜TsHTs c`4'AIU7Rya+4-xgUA?#1U#zlCI00;6Sn=FfF7Iy]2Wjf*g5d|(scS djlzBz'lub2 ug ƿUӫvG|g'<刎sDt,_S$rxp="2w&iHv//.H( +;Ab Iy2hǠ pD$^I^enx!={q2@8gęD9E^L|K:(igY/^\_??sW$w;ecˠjY e :dDX4[8Q,1T:JOVZ=&#Z%qrA }`r2؎[\^^oZLna[%2ɅR~L(tyܢj|o+%-gAp2!sHfY, "փzQǜ١m~%ū/) xgtg)=Zܝ@/wN% fr+EĀS- i [e8G6u ˘x`Rg777!cGY1eVA}Y[vlZ&?YXs@.fȷĠw4-HI>0s66M*ᗝpn_m)=4ޖ4:f6;‡;(bez0dHZz_V |V9UW ;A(P 2Twq$ bA4 l?x~'EؔߙuIm8ŽA´!W %)a=d7-0u1@׉9/JiLyoz!! IBHWP2gvAI*MJE)z&+Uݡ\}T,@LoIo'I4ˡ@p؃W~'=I:kMHRVֿk3`)J?N' dAmA䪲~{^gaڌD:Z(&2s8EC8QÊ3 'fx bk":ߞGJ䁂DPJdn>9vӹƌg^/]sFY<_HEĭز\*ZRs͇B8Rzs(2œ~18[dMʩ$ȿe׷?\ЗjkӾb%pu^U8ԶJ+ ց@18@yoPѮ/ @Th3݂Fn3*vG^[|`4ϩWkqty)LeeغPobݸs)d6ȏe)QB5\Yz%ù _tR@h##2{_|ô9_SG4'9[q ɝ6!Ω5ԩwd O4k25WF:)o@FJ {3[iҪlicp6Th1J ad)b{BL-)S^1gE5i{_O0M&w/Ojcw@$ؙu.c("[G#SKC +*XIqS[gYZPCNbd~uq%AѮ#[$쏂{t^dg=y0%t>,0xiZ"p1P%_> c4sdLxfݡ.=tيo䍌7 0 ɒDƻ}M(ĵ8:tnRdAE;〧e#g_jJMX;l_g=Q/ ^/ ӂeB).Kk1x#. ^/9otÖ `O7RQ2Ǜ:dtIGS[,0Y.xJh ɱֹC'VAnOF#Q[|\1|;֏{* 'V #i'gjFž<8к$\\~EcmOh===Q+}veJ s%=CwA6Gnr)X9RK{.Y%1{s'g<.oeC d4G MrǍN@4g$MDBQV .NY>U9Q ~$OUY.yBN֌̸x *]vtʫ8h{ZIT}Y\"WuᆰlARX+w{/cǻ"oaCdSl1:OmvqVpʲ,Eڛ!J,(kKxN@YRIOK5o&z^9{BQS=j,5b 'kMsQOM(es6|}YW,M5l՛R=8_ujbs+WcY,J+' ftb\tgfT)˳rX%QEK,5kx6C53Dܦ' r{y)*/G^8hedbN8TجbYm!3;lo?]wWW O+e3K`pNGNdEUpę)2G%ز`% UB8B? f\y'dJ&V뫃sFP;ԺQ[qdnUWTFyw`'X\yv&'уHmT24 v")l3no=ko^]122ћY F']%"W=v'|ks8ss}uAЋ9՚7D-)v tZƾAkKE~ fRV'ݞa{Z4-z0F~11xql*Tt/߾]U՘Mж-"QRgeQ*Ԇc*}D6ꅣ^Gou$P[{^׆0CIZ\p;| )FkV_x iWW?60U2o~ikrY8Y>deHꝔ$YCٮC W exuɲw\F"?I TYT,^eZ_v{7oYڍ;g03w}w+M|שPM2?aPkVПQ7(\$ Hgp[]RpfdJ.l{"Aki:?j<9dr)yp}aBE1=:<|I޾{pbYGZUzjbHsfJТkRk%Nwd@{Ut|}L#*(ܨǑt?[Mo%Fi 7.%+→W(9)_QT k6lG!^tsfz)sMJ^}EQ`*>PHfj+uJ NGiI޸ǾI$$䱻ϑg/#nxR(y6 x:ԍ^lJ nܭ>Cux"zՔ(IѴȾ}pLy3M15/,iig/UIt,ޠQR[kOʠǪo隞f>)s~3/wsT]wcfíql3ܾV%8dhc^8d!*9-*#9  j\*%SᣘyI<q}̲WB5QMRZ8 r:ekyٷ/)qAj.~-5R:%"W+c2ń?ɇZLP|ҷezbs7D 7~N,*~i8EA!,7IZhU\6#Z6kE5)lUۯ,_'8bo)Y=Zs"Z9Rh AYd'̌Nԇs]R/KMƍ4ջ[>%cӳuקZo^~=ȒdOg8"yXQثjVYQ:n ((T&1wޞ9wӆU|ѱr.2Xճ sLgό4bA)^˗:ʿRˍs'^@m.:uoQT|%gd. )HL[8 OK«WYYFzҥ^ Sfj;E_&qp <"Dzw_/NZ/n0؎ 2ׄ[s](wH@Tv+U;N1@>~ٗq#aޞt׷/ ( rEe5"f]\4PݝP8MLw5$ `vx?nn!޵TVfI f}k4k㛺DyZ`o8~ 3Rs/%20K0m68v# Z*" \x=?.8nV= q(y_3pfW^<#4D3[Rq#/ _$ȑJ܄s~9ApM)l8#Nx`AW !ʯ/E1~w 1x S M7+Y:_Y_?)P͟9!F<_s\^z7/?#3ρG?S yIENDB`xteddy-2.2/images/xalex.png0000644000265600020320000007273511143371632012712 00000000000000PNG  IHDR(gAMA1_ IDATxkeWY&e$$ qq! `[ Dm҈*Q/j7QKZQmM9Kl(PQ\? I2s̵w%Jg.:'"xX'8OI@p1G@. ;vBb Fss[loY=@OϷVUVpo5)~ys9ߓP v;^}/Z)e6Y|ߎsy7 ۶a+ۮ|coUfgV.3<9v&֎'/%DZv6"+3z+D$zI1T{GŰ&v m{vxeKge*o 3p'O8!n>`o2{WzyzCL---,DftޚWmٿނd na)?r70,iZ+5Ҧ"}^gOEFP *1Xvy]gcH}}[n~;&'v̗3ʧ@S "H:^ 勥+6|&~@}P6B@@cx[uߣ7+xn//{^nl4Qfx{ۖ;$??kAu&Npo^O9|F`m-KRM7,Qo c4YKepMp\ ^PsksF&@PC1y'((G}|{m#ԏ\Yؽ~dzy  @ Tk(sf6lF,t5]s\ QHOсtk|lķ}OZYynwe'm^F!fk,x+-h1c8dOX˸9Hhp^BUOրT'Bo^J`B^޴{\.!;10Is`՘ !uJG#ܽ7m\<4x DLJ_Z`BʫnAg;@1!lU`BN t-p܆m 1dB\|15h-8WᕋT]Wrz } ݕn:/)3^͒_ɛ`4U7Pr˨T*P3!<(]}_nWVϕm ,0Pz8(;F[䞧sΆcf>wDVqxRV>˳/oc [sΜ-[PVKyj[ } :ĺV,334:V|لxp+:Ҵ;Wb0|I9 PPp*8 z]g~;wv⍫UNR^ULt2QV,߂%ޘߦfF\++mbߝ7kvCm2MQ{kW>a);tt4mp.L̢m3TԐHg`:s-kNm=n\A&}9,tYKƁE?2Eڌny:#5'f3H傞o,8ibjAubĒԷ*rfc[p6Zo{{C%w%,jBKs*L΃/.Qys"YxA s؞nWb-zيhMH6q@ M=`5MDZ_7 V:שc1  ,[<`R-x;;6H:3C<+Kؒ]m#8`'G}]\:-B"ސƶ%Ԑ_FO@%P100sF?mmTvlv:VL0K]P,0h h.MwbWȢuE{C͆)N)eƴNjF*`4bBotO9o_a>lW gf7z6G > @Λm} \3},%1"\pCrg1rq,[!;&}}kHvShkϺgV;}Jz~k(x76tuqX%] d)Uߺ3YEkL1$bP01NI--h:{z=B7-Tv%m쉭;r3Y^(j.1^L0:m'% ]#ZefȾfIbhp@AYSWv ,4p8F>||}6l/߱{{DgT3XU!3`;y5謁tvL_afؘAxBj\DWw@(pGe@0ǩD>K^]5`h;1p◶Kjc {+O;uq+Bl-!ޖ@ ?%}1cg)UaSie]8Ln)Iq>V+#. ]+؂{H\,LXK8Afl%%O '&7$9a2߷%$h誋 64ф8ZsN{@okGںwvj)/Ytң|ۥQˬ=B]!<#Ċ,Q5cw\cۺe 415lQkQq" u>a?xun x>W-m-]膯zEWT򑬙nTrنwm嶆}sZ9kM-?'(U"]uJӵ'Ǔ>eX+-w LDΏ8-|-bcWƺFG;7m(Y,r6| <ВQo/8rwZG~7[+[;5t[ 1%gr}..cNj݂`},-@2( 9BTt-mm= $cR*N>3-}kG87Oze^@LfM,:Y6&¢P='ֺ0Dщ6M덿G_2Z3YV^-)3$B&v̘DJN\& 2@&5C AD/@fjb5!"[>Lh6 K{4)Got _\4'ONwdT=3IQ2f-QN6wf!ZG.f^eghW[;Kn+g VW-XF(#fq)cFfU! >-񽼔Q\V Ϲ=k{z9+4VH~V}7e \|תY?ɕʺ/QffTYX/`$S44k\q$LX۽V9ߴ]v[>[p~s%rr.&yoy\Vᐭ`ڢ{J4I-7m'-If.sͬsĺLώKVFZ_11mq4,"AP9{^)|#9\]~[>mAv-(2`eFGS`d}CD[{Po*K (! -{HCMf2{u~ʯSwFytso-vF^|֡6 u)D]guz]p',^*'!G{ q+w։d.dV.cwwv?purkYgRؓ HlIRS㦴bT~Iiy'83ܑUVJ}co|YkjWY'wY;#~MmkQ""uS($L]qfɳܸtsS{xa^N ̳sbBkй/oBpӽ+v!ɷР2a*]P#ڭ\;k[+;jN9̧OjKgSDqH[vTc` ;zzV[iV& ~+޲[5&MKtm+kvy?< b2%pϒO&Ì[,{J;!]@a&bK̑gf3x150`wnDcᡟF0Mw#L#q'@@S햀tzv"l+ا?= BޘF|@o:xB`Ѝ,@{[zT`©lG{NOİt_Ͽ@耕จdAaz<hߪ}@^aPj`*2ꂊ% !K-ݽ3 C; vB gq 7x?H<;X1v08L 141DDCo@/tXYp#0pT`0Q-`مA a:Zēx\p@?u\a<~P][޸Y`w%+r,k wq1ʔj4р@]RkHrqz ˾ݹ ,ƌxDß[mSn0%?Ŵ(0Th[uҎ={肁Ƙty40j}6ȰBe :K1OT3>vH :VτP?Y @bH|Њa|НEf bә( :Rt;`VKt;;;!d*R:dH)ɩ\{iZ}"WftϽ%,N`HhU`e$p  r''RFHdOK`̓KhB:ҳD[OrWپzZzQv{%q0fwɥ˘ѵ bAoSNpo:}J6= ᾰ>S*(f^w}S;U%};ơ|[*L٩, =vXVntܼy coA\{,{y^b ,:ߗ 2CaoQ@Ġ2ėUUt1g9o;ۖ- Kw`|};tA' ]@ 91EXg6r,{jvG+!i(ADeI1UNu{.{avN)6AQEu0]_f4%0uvKnKSw~QvipV9{(uawNhı&V$thx=Qpr+v}=WMd 閁, s&(F4wP;^cMx옰3&*.ܮ~{F!Ѣ٥tՃ %LKr! ܁:afKj;_BYSoczt]? A{~ݎsȌZ`|U >լAxD Lz@] mvч US7coƸKF:$~6ف16tl$ZZ4 tK vQO&V3*.dc QM4)A5o╒Xc#scJ7CLyr_A. s 3B%Yyr&’@=AAO'[@I!ᕏF9&* Mu$qX*tFM2a5%qe%<70^p+ [}ϊ<ηTrL_Z]ZeЬUpz \ffgM>T]ڏ:bg&@!"{#ʢ]ei bfɛι,馺Q}-nLD J7xwܨL6o dSo@>Ř+H`P[gD. kROHB@9W{Al(YU(-wVQ ukb{RΥqN@=ˋ_}?zӌ@VBL(<^ZZ{vRĔQlZT5/K)&@Y̫YAqgnƂ jLg_70P#Da/ :vAhhJcƨ{crjA\¨Z]V `}\L8K-\.[8 ' E7F+Q[BB8M'|Utaj ,,$f_fOc_-N,Q[m֍FuVFd}Q?pR{<yO; o#Gkb)7"'Y!c{͙ ծRv4s-f#aZU<#0>=o(_舏kg=[K<O^KZ) tfm: 6l(EROu O|9A(!eJlj * V?G#[Zc,D;|ܮzHaEm`"n7UI}! 0|b~)!Z]iقRH x-Œ'@(*܊Omwݚ_xCnY ^4x5lO$ D.ߏ@?hlPDٜA^>n "l`dI[4gnӲ~ k3Gh_$A| s0"($47/%X4oC6?3TY#z6H&Q?u0zY;}g]T}GMo=UT^<I.0slB-MCP0BfT.GCsq}9nvsnvÇ+-V/!aj/;cHaL,1-dha&hv3` "٢ 4!9H* J'.DrԈjLUQ3 rr΢tYvnҩ $QP 0 w|n~I}*.Ԡ6$f.1%gj5e3!V\9-J0APVo)$xV/. V:"aU"KM)7 A9P`@ qlRO VJl`Pg,;\cZc1mJpއ`j_~<#H: JZqLq# Or+G+5SDD ^K^P2p`#( * \ьXg&qE&aP8QoP8Iw1"|JIM|qdTW&cwVnMu:k6  WuLJ[d'C,Z1@WMi &ZK,hH?椢ApFDz^:~3%ҙ I4UW$ppPՅ^rdHG%JL9(wrxUDĀeYm: "bT^1hetՃļf2jͯ 11Nz2x1, eC C>i9Cm>^^P_ ^`+V nra6kl4u,A 5--3?.Ǹqf5oI#S2v%x.N;i76cv>}c՝y} {ƹgfewf tqڠ&e71UU+]lW|b%{EO'~IN5(TNMelONL@sУ_s <1۽{VV}"^c¤㴔*X >n!GN/)XlyL"S $Esw0԰n?=\[|Mo֢qցRF(8ď ɤ8|)r*lT^oXKL^b_|gg]uRE'cbvb$V3M戗;|w |n/jT (L򧣶y.6bɕE4 #k?r4+@#nOUhCk귬Ƣ A?BU/W[[) p$ L@]6ot;75J #8:Vx,-saĔoffnk C~:MKItVpqӻi |p #㚙N,쵨l^l4LqR\\.su<iLŇPf/{  &ea7cMk#8HkԬYIeVe YCg,Ev", 㱘{y6o"P0 as'ZkGo7&Ԥp'b@(UkzI?tPR^\+G]vBH_\PXg-e+^o"eXoAmL$6[ 1r[yGS|2F5|x(QQZN󩼿l| ӿu߰uSzr=M ejh}:IHhX!cK qrҒVI/(! |Fl!V. ƹ&& :zx:??0 z>-܊̔:[lM%e 9 >FE/)Ga$agj6"Q=3$xk. DqɌ8g; J]l2Dأøq>Gɩ̀r N8bCVDHR"Tq~ʠe'N_vR pz{N&p|nF$|ѥfP0 $S}0n qĵfW3 I96r%a]{ڵg)rYbݷ K[P|+{jZ K@ cDc'G(Y<5ĺ:zѰf>fftUc3A/bfKL@a lETƙ<(oWO"^D( MG`K u:zH No]+޼O HM̳wj0 j Yon;_=,6=Y!$N&͝Y IDAT8W1𧁐޵-M3᎚N <[e&#4*vK5w^g8~'sGoŅ v-]`B|Z3OIp| JE7qd1XԦU$pbP( 6gB`yw:S'K]$$"y"p +xК8g# jNs6[fλ{!v,{@2..an}.x3 _k"ٜZ[~{a%uԔ{aH9;zs}_#O'RBx,=,W^,rxHa{P ^ݹ@qyJ?j˃g[/~aȠ)D9@ݞXN1ƿ=uֹ%r;rŒrDž==?;V[`拰W+ M sS"s2}8™nvDo3w$ScƍpG*PI{bw|Žw_uK:XybjБEF9^(g 5+ } LZӘTETOu~~VoVk[G?]DkFcƶto{'Q7O%A{O3 7䇖.Pjћ=" 8t0c̢E6ڵ+Ht[lwk}ӘABkNAsAsI\<$!Q"4fd1Kw* sgL<[b3YSM9D|gGh)}l/XQ#5qV!+ݸk:Q푳, .a@,pFg '&V*ԥؤ3 '7\6N}AuUJw{Gg$6-ނtu{|27l oKvWJoUϜyr93iض(H%R[9V;MmUhFTl'RΘ鲃< bøT}E7`OI/9fp+{9o'?o m^R.bz&hLGDi&f`h2O,L3/#unr^fHfVyn-BA t,45 Vw}ϋ \`߻_yҔ҆mUVULJ"n.*yC lxac3 n`>Eio5'/eӌHk~nɬҁMH)HD0RRV >eWxk]{ri#aJ*Y`Ll@~f[(DzVu.2e ![E\mdTbFlP {0'U:7ˬ}^4@9l/ G%%L҅#z1sy|1@Tu/荌0t/:Q>PsIﳲx ve:e Ϸ6$Lm9Q" cFQQreҀa!,.xby|3$G dؼ)n&" wQJm$5JP@^,f"ui3X `2v͚}?q|YN}$%hN^8e6k,hŶՠBwZ"JNm[uh'R)ocQ']sV%qL&[#abfィK39Ð4SP =%=IgŶoܑ.Hr}1dSh5GnyfY%vseE20 /YCRq7;.l- Is=&wFX4ޡ ePb2 9al}B6RZ·dǙ5i!7|$/Ιr@&hFڨ6ܩ-bk\ȫy7+m߻ZG,w(#M:1w8vg M&oc}%,*j|MԂ <{Ya_lMOTNT[k#4YRJ̒ Aʤ"M/~ׅNCk`K|ߚ wl/ƅb6\7UVkKK&KA^K!"5DS蜪Kck;^^Z:3WPB9 V4ylpFXݾc#$dzZ27uk 3 O-yn͞z+طq%2=9] lQC~~V`les]B0UPo罖sfZ~{CaĻhk-Ulo' Mp0ڤ}csM&,ɔBpˋKM-KDK}Y[I˕c4ztZH?jixe. @Vo%To2)0$# i!p"No,RJ ̚FPVv,B|QTe($*8;':GR/'>?+B _d'˵:IHpU+9="05bܸd\jxsHuF/zIY@YZ8MM"NI->]d!G镓\ ࢭ`>k0+"<)ircvΔT[ΣBZSk %)QN\&9'09S,CչV'vd7p95"\ܯsS0SȬ%P1~6 <~c߾LŅRqJe6ud%J;N|?瀟F`ʱL NcE3~-rBjsG\Aן+4)/h7F}[.Fmf}hq~T"V-'NA^6[>u}7 l+ c1D:  K apLCsG\8ode]q6bmYOʲ˓ZSEELz .E#iܺF2 H朷9]ĔF4nFUA¬RQt~$=~&? *[7}넘Te`!9AᦜHÛ\T/ i0sGCIf3ɼg$#mg^"rXt<4'',$.,v ٞ.Vh31F4F?y⓶#2$U~9c~x(-&, 2J)=e7%s?j;Z(s_'BzîȬ,ٙ o=+&ֹ(θ~菲_fr䆩7VK()G-2' ,c4 jX߯ AYzPx9bOvom>%$9B>$x%]pR #fl)`ةSZik'ӡڎ0NX;ST'U$Gm`@FR^l 4B{ܛ5s߽{gYߟOѶDR qi-Ăyɳ\tl}#6?n奯1$2r+HL=mfhEfkʁM5V7n<- ďZkАJ<^3/[22(G䚖ZXJJ\8b2J[S9%#jَPVm5ӁA>g=PΛfzh/u-x^ dr/J,|ͱHu햖A3`%56j":σtupr  WM3XPԎ۷f<b.M`B׽xmJ c!Nn^5 I2*v`#3c.V.=ZHrS k^ę6SmIፃvBE.Ef1v x̾ff lQ7X=4~F|FxCbp,y?*f#nሗx0x˝/nv֎~a2Nl^=kSGZ^kn\M|a+IO- hh~ػ~֭3]*x1>x'  !A-k1z[(,)}TUUKk!6` Xz@>-v9QN|\^>2G:9 qE$ ie򠹐gg?`RݭNIB_%fm,- ,=}=]|(^HSivnpOCZM_a-WF`/Nu̡P_G1C$vIOB(3uQ"d?YqǤU~ynL W7 ܶ0d5YKLjl2꫱[Ӿ|[J(rLV^ RemQc% eHb7yiA ց}f?XU-kE%kPϲ)[Bk2cam4Hb}oU1Z!g9ip%ް%iRB,w>,U ˚Fāb$bEDO>/VO&C%=;-]ۥEBtbCn%R,ϲ'y2L菆k-fCA-*Tz/@XξC{(.[M D fDwYHVUX+a7'W5b%Lj  כVu6DW؇^`Ӄ!f_3.۪=2zTk-ĺ^s_Bi9>i~C>U{f2 E;o Z#Y*Ww?FY*3h WU% _Ee㕺ica j=2^LFKh22s&?wWa}~Pp '\4vwr=_kTCɤmZ%e5{haSVfy=#i3kWA%ӼwydkoS!ӈ ޕGɣos&?4,,];qğ2'oz}%o:v#֔ng3>lyGj$)yэk,r+Xk {frh9P˒IAxsߝbucK֙\@7 #4WmRNi^"aSb^džlURZI5o ЋvʧnCd=w‰Ry'b&.M YNɤm TC-.;[죮 S No]c(oՓHkd)NZuQ)WF&tqjw-FKK4,OLQr=: p3s%8V |onoWΛGkm&kgrP fwemk#{*8qLkT= }lpMߡb9QLw3J(CKމw4R>);b$- paRϟU{zY 7.K~U6k2hd x}v`f}S fKb6Sa( Cc*+<=!?,ӑA iieDrp S#!RE>saXZM%x;WIdkZ*RLt*a˼UԵgV :۳.sK*IäTz W^ h0(sҋ x/P-O@l9ZR*usk\jP~OѮFThJW`w{:K>l& tTAj_6tdO%J[f$8e![L]xip.cfVBd>gVg5sAEF W*5֢sCkjX-vYXj [V@_I:2uwW|ݨ\%~(:YޣkZ!?O{VK0K8ůu= f50F$su& Q+;l;[-mS LUjP;jLj}_P M;˭s>ʻK:l+7Wm,C%"YDkefYulqIBp7K8RKuɤ+:lŮVVjf ¨$Ls@KVO6c4B oej+dߓ&y%-gXuN ^|Bhu5J.rZd 6k$5]/iwV=2Z- w3#W\*_b:Ђ J}X{Dr5Kzckd|DN{g\sYM=ƶmo`0Q_K'OyqU-;q s}n%[><4Īţb~I?B* |"FNA v[Ei83^^WW2ǖd HA-T[&?Uz̞mNض5KDȵB3ֺJ6ZڙJɩ$];)E$ 6j*Dӭv֓,š9ºf,KlX<{ڣue- Zڴ߮A%]W,8%F@#U&;C5Ͻj>R֚sٙj뫽6eEtJ.b@vy,5"JB:%X}E5\j'Jg0',dʴAQ$e_4UΑCֺW וkZKw>k6O 乩SiwbZ;eY4|[JɯLBSYVSb-<>*G4CU91N +G4zPq dRJ8#c2R/6w-Mܚ[6nΐ8} g: U2++T(8'8{FZ;N]r1H5u̒KwJtI\5eqf)Wi>w+U 5U싯5ܦ)<}˜jɬhv4lΩ酫UVT^ r'Pw;fQCLJ5yD:$:H/ QU)W’:.xB~,+ ]}\yN^W9+>ɚw0@alO aY1E;SUǕTc*."3/wRu~?x1'.`@Ra6zY%(G!l*3oS>3L }*N:`ˈ7+?cLnxr?ct*O贬jUIeo. 5}<|Xgwl8'C(17uf$Z*@d;o;v4Vyg) | L_jo[[_-W Ԅwx;RPQl0jJSzZ5  q7z-HO+vTY>ybvٜȪ7Ljeo|aIVZ7g\Y߲UO$ʬ \5کUm_c~^W#5ŐG#Í<´p R9&־j_f47'a29RL5/+YL|Xl:~#f]k Jr;ֲ_teǥ D:TnqK{0T n!Gç,g%9ɨ0;lX$g܊C"؏`/步,cv ,$1Un'6§m%]0m8q(5%?O-rb:0c!!j0;,h5u⥺`Ȝfde|CexuX[ڔeL|+όѵt|¥0'fV/1(ֿiwS$o/(129 xXH\>`N1L=,D1zH.Na@StȞe&%<mA"g+Tnud}ZsNa mj m`!R9&9v:L9 2\*`06LYzJSozځpǚV\?1+ſtj9iגO-^A0$}K}o4sA}'.2%c 6D谈ynI= 1ôOzt :1js~ =:%/g<{n,dgpђ6pށ{KWo{|2&1Nt[^qھC*Z_.kFǐN)vM'dɎviͺSG$=@BP8[iRrIdy1CӤAwabۻu KFB' Z0)-|uHdML'<ĝYj2{n$\_tLe+Q;WC)X 43ꬭt"k> 7Hï{k)!> :W N^W\!":/))6Fږmgc=lG/Ձ}uxSIzTdɊ Gl!ୱ R߅a&Sn/1۰^ <_$$ hOKm NVom>%3{k\O|3/ w ՁYL9| io&= ?FP\ׯM9mIENDB`xteddy-2.2/images/xbobo.png0000644000265600020320000006147111143371632012675 00000000000000PNG  IHDRe,gAMA1_ IDATxmu9H4@?WDlAbw"튶I;A\]$JT c*rP%UWp$qTZi 4$eT%1~̹vǮ}{~Zk97r|\.`mf@0\КE ]K0 , r ڿֵam>r/%\ȿtX_9h`f =o1 x5j^K0yR,^0 Vbn+Ʊ,łMڊw>)M>^xr ޻Ge}'`D "@CmyvC@-Ko5iWO]d& wsy9, +D bmת%iAˬz4"O}\2qLދRo>;ǷT=JCAPY*+ zt w U TO *G_K0yc"0PСPXA!Ҡ]** $ n P _K9'[:2 i;L`R呕AϟOswy.r ^77-x"١DHkf؈lDl0 Dp3޾܅q & Op|bYHd#al8 y dטǟ|fDV N\ f:ǟ><|1q݁RO*o.}vJ6. %"8 p],)宼^.yT?O/k HhҬ#YF2 kb#x,ٌ\,@V/wL.kv<9֟]7FDLO"M ~5E I@2šdHQH[QNлA /.wL.kv,?\2G# ud*~Ll`ݛt/ d`gw~rg}p'7Ƿx9d^e $qaquJ\?[y^N/J?^.?ܙqL^eYP#KKa$$MFIIJ2T#f+r5`rQyxӛ+0'~akEdH2YHg/.r\כ=0;-ZZ^GՁKaL԰:Zl,Fa2%$Jb&<@x"KI-ZDGG wkK0`f̨~Oe8WpPkY+a Lx#b/b;-pD[Dwc-+3` c6!n-xaDu,hp12>ywoj]-,G6,Ҩ9Y#ۯ҆&f0Ŷ\qHtU|Yu'0Ʃ~~C2pqzȵF>"D,ax1\m$sZr\K07w\-\B+RV~PгyQ>y 8#~()2xh2y@ W`elI],#Z<a rOY<:RlͧO/T񠏇qOf@6JƙIȔ\2%Ms@> Sf0WNOBfpX}ELF`IZed<#$l],}r_,L*O,M2X.a t~bLS˂I2D)s00S)lE~;9Ni B h/M#`ThG{r $L'7WHm/\MVLrqAW^kMeY5mXA`~hAĬu93A[rI28Î4p* +Kd1u]={e\{7Oo>R |!+Po.P D"2x0 @!@PU`~GVN5Ct̩!U38@L$ . &(BPVhS+D[P3΢}*%UuS$Q|=<>wKr3|zsxq8w$oc+KZrvW& 66"g63 hItR_K< [4< ;}X̉TaZ,hh " T| WB ִYTXDDmsTe'`?y= "Mлewxf&'7qzbQF*Kq?Ȕ e!,&WrLsz3<"$Pcֳn09jm1xjm0^ȇ/r2C/=cpl f03"6(m)Ԃ *|5sge?_<*j Y@2%,PgJ6e`*P,hdC60 D <`ye-oUњ@XRDKzu9{9<}%wpۄѶ7u1(ucigxc9m>2`d^fgDa0J-q ,a1h%g Py)904a,>< hٳ/?et9޳q3OuyPI七.Ur '%3QeP<2@ݲ*PruLXfb%̖a%&hW*Q`' XP>20f{2UoQR{-&Pa3cThZPx&pxگZ,r2CO8OvQ63NBCNl0O$v|%Ȕ$kR:u3יqE H9li~ ݐS|w^%3y޼9|Sp-`u3[OնiU1c!I>0XuUH"PXv>!r|Ujl0u\&HpX԰ 8.#?q3OLb 2Ttȉ-"M U,?>N^_k{T۟=~xs *`"YY!2rXXYX-n9Kd k)N^ԁR0GVA7G Ȳ+ԜІ*[PIPGJ4_اB9<+`,V a/$JS,>}xvp-;>Hb_`?DDlAQd ,Q(yR<!7w޼XGQX́±+%h qVe1 W"vFL#0Y{UyiBO "ҭ<2ābH gq<)l=X DU ru][ȁ^. KR+jP}y]Z/ puru&Z hD *( (j]~GzE_`f@}jz"ȊU !(kdh)@Ԓ;D-PXML!P8LƱ $wsjd!(EE:&b/;NF'KOXg?~]ʼnj0 ɘ9z>d;dʾNKŮq<>~Gm3?O\/վVegQ14Xd){ҼɁ(Z+ JA<HIBGV= M5=Pq`v`*[z:X;6#{:I5鿺hTLeixF#Rhg$${5 %r?'}F* VHW(Y(;1ZekJ@!'ɀXZfmPNneaYr%* J>TS^P1}}uFK3W7Q}ݸP.qzP =ꊏ/M0'w{D $)\EUO5vzc!Fx$ J QxC6}H5gP ~T ʃZLIp]T]V6r Gfđ QvAerHVHd`U>Z~1u$}Zz>.vպ~=Gnoಫ1uҡͲm̈́ C6ybe*VdjF ⛛Cq"DwS~OgwEbԜ<ޡŕmQG5Rw(d[n-@pEˣZSﺔ87{` |r+:wP/[qF25cPvI9zVP/U39^&*9c`ѮVvi&Qɒvfa{[ \u{oo&4t\rk k[^jf ǃ_w*ňM*!b O|<:. s983S%Vް-UW쪃%Y OT",7w \C; j"]ģ$S8̌6!32,>ee? K[|%j^޹;d: R T@3:|_i cW__?8,Qo=><\?Lؙ$'2K/I ,"=ŝH] (Fs)vU պ`bf ौ-Dڽ}п&c%RE.c&5J8-^bNGS7aÇiE!w&2] JvOB̚)3|.,KHO&+9αOGf7OR{A;F (;+7K7XfTE\@"~-0`*wH W,&L  :\5m'?k{.ghN<ӱ2ͫQ *kwo@}zx`7kcT1:Z: 4iޭX랹 %ܷ+ !M#CK\'f l]緮u3~#qM!|.\9D"TM7!\4iY|]V<{΋#IxgEa}!C9H0Iu r63O~GwLp-Ax1[;ٝ|뽔|Kѐh.NtlښFz2 0J5KT[ Qqf׵y;Bxed<08OPng:D.R_Zi(CcxjpmYd>Qsv9Lby!3-qRTXƅ )6mT݃~U*ݞNM['ˋ-h*!qBnVŦB8;xl<|qZz`7?7=/Kb0 ݋/zU~g>~t`( `RS/64Ͱ_2eBkSh͡fHi@'[IT17.[9>,h^; /S4 ToV&j<;TT8wpn Gy3I;Z찫 ׻+KUoayfo-ME0vPŴPs"`iBF@>~?;̪^" :} 3~Zzٽ8w<|x%whl' * ʞq3{}~ cZ>lkYIvmD Փ58ڦf.<*HIݩ{0a? f%՘ P=O/Qرڳ>W0ۄqPQA3q?z1=s'p)k.,)2F>X' r[ҷo>~eg6&6'"/c!œv\Ă5 pw/{ CB N4Ht߮\?j3_KR T7B}##`kY|p7F| ĀÂ0i[rXWX'΂yX XÌhˤI]OE܆G׳!|fT-s%1{|e/3x22:8f/%PgbTyn!@Ȗ`yZ?gopظn6\}Seŵ!Œg;2%&By*@h uaTa0&&_ߠ mf|u8+ $fi]]nfFtE5y!0qûy6Df<-yx,"ksnD|㹊sW 6Bt7d<9w`' A.b=Zo!si|\Q.}EX}?( xbӘXy40<*/l(~+@m׃TJ"d@6(w|vY2AW*O3K!R,+|PfYDlc&kWp989>Z橼a :\vXv{Ժ\= -i\>[v5]Qql҈zgb~;YĂB.DEtįoJ%S+~L\*?^v/nG79m9(rAm [Rۭ⋉tC T%PX/-RԴ@ #Its5GQ؎KILvgbq i먛Y^ΚUh~VpP1ܽ!|"p90H A͕0QF=g;y? THJ{)gu>$/aώ4ۀY ,8WV~gw>>~Z1 IDATԷ7*1MGBF4ihʼ`.'hMZw Kyc=oRx|5UwoWRQ<֓_ 'ʩ(CiO7C| A'suۚN:XBk?uMI152׺#<=_h|,= I/NԂ3ȇR>o")(-@b)?/Z^4C<=YʾÁA]zv+Ef*E,;T=7#V h3 dtqK]~S0vۥTVZ&~59+S. 5p;B\nFg-2D?V ̎ٮ9`D:6ң,_no7~gwG}1hX9 xQ<Щ4! VGK~ = .n;LRPN̰AޖHW9.N 5bDs`ԢCi_f'O_M+G® *h7R C~#dcL&ygȪru r`:Hq4  Q? IEsfI6wÃV4ߴL/><.?2X(sljON`mO 9=:m.P|,kCXRZY׿.d[^PKl~}5'ãÃn1#sMzh\}DM8[oA͍ML݊b 2.9jH##6m7YIb}*&F`qъO=f =k.6xd<Gكܴ0HcCUVqn# fH&L-6"/(Vm2ڕ= w(#wYNSzʰWUon:nݻ|$b+8W]}T>)]K,`~RO?@KzT_N%Y͉ H 2)U;r6uuʄdZ\af[h3:H%$ ~'~U7^7rءRPUqdXn<4*:JYo4rK7:.V AHIc+YņbiI^ "v0$.Ug:d%\3N - 23]u@WeLT/|23%@{wkx<"28|L;æ8&rMh H/`a[tlN}c wIcT1į~WZ >_]v6|m;.hzGoh?_Հ,EIMefZsI `H.͢X=8Kf>i]i7"o]'͛(S[vM~-dN* RXu |VmBQh'<$\QbMP3 H,(ج}x!GE;˳L7{90GÓZ}J$e6%sUu@9QkY%מxCb0Y\vc fsd+dA|}9È8d7H殌]KQE)x}CWҿ>R'zX;9a6T@dybls1$ {5gX#atE iA.Nxࡘx6t0tacRSEy8=o鏖sFg8.BTJ?CNvuAlަ uպ3I%ixXtx`PXqo^D\_uǙ`M]K btd{nĉ )wcuh\Ck:ޘxxfdI娋gĩqB@ԙ6ƴCrOl]&9Fb*$T^Ng?pƟ+[$;}Hh{6,(\_ʃay­/+ߖ y<dUP>GXb'sPtxtftvn-lue\ާn E9{Hkⶏ̮hM,glsQZW &~QbX`"ABq;kŅ@kc-0 =6TֹP( YXLEp1F Of0IΎ K44܍^pT0uc 8% _F&T> 1Ma tA' &(.>%In%݁Cb #M7|W;s(EރWĞ77 NBpY-T/Xf ̜1%n c[p<U)|? Uʏ*[ [yzsWDkf.TlTϸ]P*7B~J CR -p/ ԝqSzOPB'9zJ4hlFKkw΢)k+ |r9T:ɛ9&XR>X왙>ѣa21Ly&3il'k;M\^Eo5-};1 CR.Tmn--7k~]7 PJ 6n&c$`˚*BN'ݽi(niG Pwљ4r睅i EzZ7Ge2`GҬL1`5Ms Tv>vlОòE8`;ĝiX(Av=}t'/癐bKY9! 1}dDS7-k3I@3k-mi$,x yNJѰ' #V)J}t:%xbNw ▗oIKرĚ2Xn c/ - fpCAPjWj:ѺwAk.@\4)ɰ Ww/O*̄JeenD6|idחc ZR]\CkOv&1FJ+֗+ܭֆI2SDQz\ YNXmTZ2'2[,$M]ĂIoax$UtT8,:gA,(gkS9:&LBo$ϏN.̇42!7䜜C6vB9q43)(ӯt]v!j*IQ7~Bl5~’σ'&T=xti5ҝw. wLum/RmT.Z P-2JtN?;"~j9~#ͻ{ o>9XzبOz5w+pװ'VXëR}TDN^s.5:z'XXps(@m{63~!Ĥ,v`au(ԻH`0u|fXR ϴ KDɥ3脓s>%B$>sH2528}CF&%-&dLr];;4f=''q[茉726XS|^wI&$<{?`c4zu$k$c~,?X1eBFC<#ܧYȾE2KO xFKщkp jk@eH{n r[њu$K،cq}ݫ9dyn+3RvIS0a^JWs6vP8q} _6l'SGkh:b0'$vm,dK1*b($ȥ2+M6ׯal2~4q^1AftQ )|xX0C3VTb%MB&Ʉǡ>]|YWE'YhvwCG8nq;Ogn]G SYTlO`OB9 N$X'8T#:GN+T< nm&ϼK_bY_tG'0^PPrziVR]kru5{7ũUV-ǏLN_FsKƈq|r IiYF!]`]Qyl f*Xͤ#T  -ۙlGg`لa{Era 'coNPjdlYJb [,#Q8< ی*$bIx1ZϾs=p2Au az.g2dz' ճȔ–3~ Ȝ'dG641mdq̸ )sZ-aH 5A 1 EղeU3/4'w~D^ Y#gVK6gݪ:q|J.^ɂ_@wVޭ+Ou.D@y2M^ $V5gd{#M]Z-IBldMnd,3E73O@񙝉S۪$až3r"@ xd <# mׂ7b#J)l60ӶJ _6ATlۄg+寬Dd2Z[QF՚ Yi3vw縅Y9Ik*T LlКN\yi >OǛ*|K./@zn áX!͆Q;<{n (qa5峅jHY.+HOsk:9=[y^Laݬ4>D #˜Z<=L3{rcbJO.>1.>sMo2M{LXxnybuYM;ΧK9v6g@5A{~z!U=CZluOT<*ʹyZeD9|qCAeq2 qNeHvѳCa1<ݩbQ1,0vP A1鴂]ĥ5YwwNT}K{CU#]zz&XO'#n4I  _j sK+JK%Fjd5QCx5<&iXP`3XDcevv JhдIa ),a 1S{3|&)T'rUbnnZ ,pB~J +ȴT0M@8ًI1ӣ9m*QrܻWgot hvyp&bƺm) 8.LTwS7tetꨑ3#͚&gm[2 w,k;u^&Uם*AqÉ:S].gӃZAl`R !`뒦y:TX!jãddUN}0ŵ׸] M?ɸPa$Xp״ ųNuܲS #KT!8LߜN 1uj[mN ǰrXh~GJÑ>2:AJs=Mz$f_C0 CkΈ,J.G9Gda"H<?wa>5q AYɸ)Xד3N~5ihMv݉>Ikpwb|=PAezkI#2Ep#Z3b[T~8k)miCa =I=@Tlirʨe[vxht4|#YM/'&1Yy_ % >ۓXt[|9puRєUJFÜ֝[`R/QiL6_QvhMCӾݐ*͂tfij=[@&*V S9oA|6 J:>0♤ش ûwz?+ 9']I#hdvۮ6k(_&`UtK ~5LJA0A}c}czM#6MGg)dq3h1 T\A;9A%MbJm`!6.eVLJ=oyd Ez'> [^ؖYDϗ!OšTrZZ L+ Y[Y>ܳ kCѭD&_' ~-Uߍefq/j2`rZQfSq6&زBeӺ;B+*70rl1J|8>1IE &PyLcn:l= 2:pkuj% (mZ `1e֠NvL.sCꁖףf1<1 e>^ި.%ySP_%bC)7h{9FJs{JlQׯhK!+iEM_ôðv ׻({pO}fJXߢܷLq[G/B5!Mнn&ѭI7]I|8Sɠ te֫rҘu}YO{#DFw_M/SMbOIr2xě8%$OشZ\Ǥ4irvz)TPxĕI `F9*(l|12{:N[vtŧJFb7R+V4Z掽UKԅ-$(ٙktM''0x@lWmi 0f7Yr ._?2rZH:Y[Q[]\b5 5%.Z7И`iu\|: xD MM%а0rJEf;9E,m3i-4I26ڷ[AgAѧ xDKv<`(NoJ:Y;;cTm'dkG)I4UxVNx9&]O}Il$UW1cCӯlͺ Jnz]ufϴГB4MTtc_@pNu1; >ɧ!m&Ų*5ʲCQl&f eZE͒jJWw86 LOF6i7Y\wF/e#V`:glj}%]?LTe" +FBaOcVԸ%cw D/K%(1=g'%EB|57W [בY cۃVGSj3O׊-9utsj5o<5 &;@W­̌{HLg}m5w!Cם@ (`6tEs$FS`)&\}NùILR p thd`]8/Z P; g7<; ȕt4s~I$)T[k;0"u>˙9HQak)#n7v3$ەq[Vde' ȩH-Jv< (cĶz"Ӄ{b[cx-Bikx،ؘJmI4(Jq̟[).x"U›4^,шyc9Yfodn;b65ÔlZuUs&Dl{liQ0ej3=1d ÄkrJk'ol1_'׺}f/v#w^"AaގHdޓBiYP wfeMZ:PJt^H~mzB$ۗ63xPH" V[Qv vpD)}o!kL S+bLDOAʽd'c'v,gc(au3}9͒)9t6؀}Z,6)i ;.)Xja8Mr?t>Uڡ|4gZE@e4;T:ds,j3N'qx~Tx!p>PyYx(*aʶ.5i6\) ݈6R9LKk֝cz:t9yÑoWb&DhsjcYf8O TљTsD4H@8RlLҐ^G):4@܍,:2W# iƮx|T}oOIL_D'P:>lkOk s@SQĩCۘڠ:Q[}!vJf]W 7u>Z1eդnߜy\vqYp}?y5vuy[ùXm\ևI*u15i3ȧC ﳑ(si:e/d 3v2!(Ҧseo7Ry.>[%y5s)1h<0ý`Ԟ u.9Pmx+ 꾬{mI[[6+ssfF{k9~M ~_1Ԇ4|t Q?[m[1\Cjs5PcHu@׼P>zCe [4B'ڴU~F鐑Zɇ\۹tSoWp RVLJ!ҦoC\ccQ;H9# ~{FW$1q#iz7bb _ L{λ KF<&6w3xStFoc(]k߾}dgS&(C:Yt ]1z \ d% -y>3{`}"gf޽`왁G&4ȁȒ<(ht튵p-yBPp r|ōz0GN-YPZM]!譣:ƶO~ub~#˜Wb29pMBoe-աn>dee&$ ~^Θr96mUdʎ3'yԭ2YjDt"U0h9]Ԛc@ۤM6?oY0 ., #Mb}-l7.Ʈ,UfR>S7zQq=dT` EiniM-Tٶ{Qy=x眴ɮ d{,̰J+Tu6QZ}Q %iaf&8JVmZQNaD$>7fb>7G I߬Wte01^JY@Yj msp[;N'৺(j DoJ ZvqXE#%DDe$$)hا(w>@Żn۝{C8sU5|YLxVdȍ:HPzyhȻ/۝'8u)G9y>QlXk6I77ceg3jʝ*^xY5`#(⾉Mz8<!Mc;j j> . AAu7G[ TEc>SuL@].h]pDq)({ΚMjnj o_g_e}cլ &ĶJM[v% xQ6/hG%VNliADӣafIi^C;Pr3QOm"t}A z#88,)٢vz{[ɫ<իTu߫G%%u_ԧHCLc t:Αhi=g uXdh$'|8D8p&FJ7+]="p%YQM;X4l"96I![`^wp6 zh(NgHG~0@\:9HG!ss>/}%ꞗwx#}\ N^G(%4%sZN 2W¬OPibb4wDIݵ̰]޻^dӦt"n6| AS{DA^.l}K2`BuPWWby@nT?SJrјJބ,0$]PT&!kfYTLaSR K)̦)*e`:%m6'4L')n4x=n8 l4LHKe*R 6Y3.߀͊ %c 9+Tމ/ZzQ'F< O)Vc8'ԛQIs]:-˗nZii8Az[ ~g.K}=불mLw[8Km|+B csg/uU7%v^L[o)۫WH>ԐXyDYucEsL&W_a*G]!kk[aw2z'O&/~Yr+r+ݭL3KD8U^ΐR* V!Nd'47XLrMk+(!Vղ>^pm*+#cVF1 ЬS ELYRT_%QfED&>EGhLrbN Ϩa&,@Y,#3#_,-/ l, kObI tJ 1XUISQ[Q KUj=V5+I h(0E՜j8oQ)0mgz(iF nN@BM6U"^LQ9>1挟H)&=W}05W  Rޔ]drVu(I(iGm;U5)fpI% C͌ZLN`Z^Ȝ-P %![斶$Y%+Bf[)f HPfkFbq7|$u.Z^N7:m:邏Dmj NO_,֗x `RSH{gJDoT, 9!nlT-0ՏDq8wX; T̹zBWxPPRiIfoSJ | j5Kx4HmZYGIu6@Dէ=}B$n;6u GLu6-7/N`[IGϧ|^ٲ̪Vnm⼵(BTAH|j@w$jR `ahώ Qoʺ΂j颕HRTTyD<  euψy[E N$7!Ċh>HDѡU^eTYk|j:Ya0ԨhWʨl ns(۲dn5+Tuc Y4M(|Ov{>83lnC7??X}$Y|e;D6Ô$/ 3c{hRɄHl1"%ŗ\ywq{gx?,ƶ%`ΞП\BT'T1$ZhlH4Qp֫M k;AF'-fld:羧hӟW 8l ӽ+5͙A."{|Y-`I֦M8i'% ag<<RͦXQtjq6HmtlϛH)! wyF9 VHGϢqy®t?+inD QWjmgz1^U S^:1B8aw:RbJα@ݐNV`ۍ`9/\Eq~Ɓ9Pq?:7ȣ1)^+GdTvIܝ;Iqꪨ2[uJlggOv<h&SEl&ijmQOLyH߻7,ᾒ厄խ}[SR'ty'}%Q S͘nM\>sRCLŽ„/e6M*]^Dյ?V6 >a͓ͱ,i+j Q&A3jp?%1~s'yfҭ7E|G"(nAv, c>%sv&U%׮SM %5ϐޤ +ەޖœ)˦`+5 ` jzHuI~._L,%UJ ?p u_w-yր#ʨ%$q: Ӧmc1$wY—:,e{kpK}ktnz*p;I^ŎHI/u?o6Wn5h&/z. ьꑀ#/uE #Q )V#;,'r)W v@~߃hŽ.Mɗc@&V/G7|J/؇~<~UFfr{Oɏ6+W-iF`dlc;!/Jϋh GA߂3 ;oS {m/Y* }> bLzٌ]4Sl[xV`mw*] n,D"_JIDAT~aԟKƗEu捠 $%^cQE{]nHH){_4`YU4o'\V-` E=Xܼd7Əoh&/Y)C&!`Y,Y.3rfYf?!=46 (Yt~7RGfrHYZ~ 7`ɀ,lMBb~%{d)ToJh )k+"' pS3]\2ɨLȒbdzWM!zF-SȀ[Th055WшR- AggAMGG"r ȨL˧s?E`~m_Y +RDCKP3q`$;r>%4\$iήۋO,A)o,)cI* ,@mփ-xM$ 5fBI8 -%dԋVc5HbcĀU-v]%] R$x c5X1k6C'[~owI"1. 6k"d)_ϫk  \T&@فʵ?nav&?%n4LyZO̟NT(?$Pd@e7q"=KD8%g#<*Š+Kd}Hu|Iry >p*ߩD7*6~n4ns+|p:-r#fUf.=5fKUQ. P;<~YX!A8vy)dswWubձcY*q]:Uop"#DZdmY D".Մr*K۝X*B l+m@e7#|^/ |I^dv F{iۭ(? Le]k~½9vAK>~M|MJTYk8'|}/Yb,#i[,>e  W,ݸ N[N;p{LT5Il:oNX)lRTGq#*?Zi8NcO/g_~-]:vtU"`}$>f Y"3_"Vk6>Xߍ ڳ=Qz鏮.ہ'TTv:xq8'|{WI(A%hn? ({ u qGOo&܉?u<[<\\)Pٹ?_ʼn,eD ܠ|&Z!ʋPg؏n[pr =I =:ߢʏn@e7qF{' +u6%*Hj|knAzqkcsiW-`Wvџݸy8n88`@! Rtp2V z%SFUV°2 Ti1΂L>̕Z[̋Ӻ p%cg\}zI c\Rx5 _D /X&E&>b1E:7 Np' *V!eX)~rUT̩x/wnO%Ҥz4K>K^#<_?EGA"A- m0j.%랸zA\j-UMF f`8l\uP pԡo _؎ށ;n/?-YI f.yQzG\{E*\vk(|LD_}@qW'HLTIj#s;ptΜ\.8s5˥aH,+z{A駀('ke'}p}_ "rbMd!6&Q3m\FIJ.B0@axm/}D\Ḧ́xj4V9eaMr ['{Z-͠1Irg* #׋p-60CMږL&[V#T%;.я6|=Z.TZ1# EwHg\',T(遷+ Vxx*s"QPr?P0&O5\\iRB'TJ@IU%+*D"ڏ貕SVkqRG(i$A V'9Ozl@f)U}›UAmm6u9Ͳ1;w~W֤5+6<&sOT"H/ >F$9鐜އ}q#\Zиp(B;yCx|>xϘ?) u(֪ *Ϗue]RگM8'3]w[/:]-x巐܁1 Vn?qʘ ztKMc 4t;S9N;: 4V|X3Ԍ#}O^t'f&E>[C|ىǚ/=xpLD9. >G^TV_ nR:lIN#л8!]wku{}2jρOoyˆ48c{kanNRMZ)ܗ)ڊciw"1$7*ZU@)[]i9 ͔I{ay[0Srkug\;N$\z47O=ʨ+bI߮W^s."tIk"]Pk=k({/sv_} M3+>fBZ>Hخ y<0Hpn`=ݧܷgutbZ"A%+,>:p\bT 1_py^so :|ҤOStc=x~ʫnJ[LeUn+"r~8<] #jPyy$W Rmvl$?6Y$8 gBH/iBCP&#*C2["WoRlo2}-%!vK$Njչ !+Nk)FDqVeU۳ksw3a Ѯ{TQ537: rV;P9 EOdUaN"`vPۀsX5򤪞Vt(Y4 D>zvR`=hѴ<{`u^a!8Vs{e z8R'чa`V +jX8ȡ,߸\vrAEִ6u˺' I$XEXIBi6=z* U= I\mglF\Ž*9u gc5j`u ZdS HEN(q΍]Dq:ǰZ1 c|ؤW_賆<=pmZ=gd Թ ZuR8aJJ`]HsHL!fyf84) lR 9EQz!dR>Ys-ęιPWve Ny,D9VذBV8'"Q>c8NKҨH@;j9$(t2L$?uٲu7gG-eDQ+J USZ&ξ!*Пq,:  IKfKK$\EI ͂'Nz5Jh`xn50DqcbyR9oDsR[s*n-MEP:=JFCR@(DJ)a'P4#. 7 F'qޝIMRvRdk=9cd/ޯ֮V".VVx#tNYYQjs4W()g hլ%d%)rGSgir &P+W۔rvrSNpjIT0\%2P%%l `kTSc`\NݢtJC$ubl?f6EVHr:[tqY6<qH[ ImuD&Q(Px;P>ƍNN'bL_[Z$Aʦt*)|:D:̝d+Es%Rs73XS䭷6LM+aM Y*mxZDpbN1˄ho*:ZVGG<*ߡkޮyO8{{'j2?-&9j$̤de"4J$yBeU7 b4#s^e$N ϑ9Ѡʌ_q#UW5\ m[|RY+9Zur#@=J[ɓr7N^,4,W)=JjBUW1C'1QMct9ciT?K$ZOR!1 4¢Qe4&6g5k|/N^,3I^ )GZgW$F}TdOgfYLVa[jm/QU杔u4jCPF)! Pɖ2 3bQ ӫ?:,xJ᷁oZ@愿D^' FpPU6Ni zA[1?eK4 1Iln,pS߱%Qia{T؄hӀt^"sYC6dz40-Mp* DtN.<7Bbai[r3{}ė-#sV(&QfNfJZq)Z*O.F}d$W2/Jq}$<aF%NjqXU -H?{JL\ N;''"8Dn-5-&}5i,f'pp602L2w`ɪ-$mS'929 IXN$3&2]#+h,#N=-% w?>=$^ѱ[zqNph4R*cb}M[Oi/Bt$Y).C]\e%4.Ϣt<>*K_"^3 or"/bypQeZƒѺ^W*W(;wa{kkXtTI?%EH<חm-UiJ,5d+c TX+1سcE^OTn,'n {!;#O\8n'p%>Bk!d#7;e"+FyT% Zv$ IDATT(W"뛲CKf¼0wxtμ~r%úQ#Ydʼn"Kѷ QDve7Φ'L&szBזLom"uͪ>J 1/eEl $d= (2AoB%rj1=0i z(U(HivNo~اz.,SITU9lZC"nͭZ߱cT9$~B $.iT?G7^ ]"PO(FU2YEWC%ɋ{'_Q"tͨ4LEHQRB, *UuH6ۜV {~C_jOgzl?IϓYiߦ 6h NHp,:4dCPPV8UN`Rr_I낫K'Mo4fZ PM&Sʩ %¡({Ze_] TY -"DcmH`G"„HdGJwd_&?OQcrzR#2U='XWZ)ۘ,4D&u2)M,իalwڟFOJ1])Zh.ǥ([C3:Zz\l7q4$4xKhl R~gb2˅Xڒ=6AD^}ؠ&Eխ>eiA{h{%\7p]rMARDeLR! eBHQxq kZKF=ihoL i9Yi`|Rr_^im\P$|>2; 6 ًBxĭ>M-'t+cLf|˅b 3#I.OE/V Rxsd 'ce"c($|VQE\x]_?3ĩ|9sRjr ΃F O+X(-UNZcISf2:a%K'm<xgi\ij53`j?y&(PԶN0@␨:Yu>K>~eJmɹH)ÌaB!0C0M"/'n~0UR1,aI &^*M t%J[ݍ U> rv"[:~YX`uC9_E's.bmgefiD ]) Au#Y 0+R}v$9#ws#܍˒cɑn'o: ӆ'6i(mTִnd^Y icNMn/-LhiBB 3FZ gʼXTb6$ϘڃM!4*t\` UqAE2gfeQۂK1O=.7{$Ⱦm%F6Bղ~<)RY},-YJ>t)E*͑hٴ܃IC4y U?_Q.V3CV V45ϋ.=$o6wQ88f379QEUs87@l ग ^s6Bq?deH!xl0 lEE9l.e"L+~mfx*ZfXv+e潠 !wa3H2%ePx/sS%E W mdnM:Dbi㡰XoZoV\֜QmИm-=y2OjL23] rcLkj U֟N.eP-9 iDuiI<ԇGԭ\h;(GǩxtȞḤJ&-+WȬY9- ҴVnpGVyC[YeB Cҫ%UR㬢(rpɴz|r :3OCd)^>B.% κMѵ (s9bPf" ԏP[_X7n+0p8ҠqF#W%n<]RjC;0.5AZJΏW81LӚZbAɨub^G%d݂?·iPhZ>R"ꐗF:1F2 6ˆ*Ypo)RE},jk' 8c4uvrqR̰WUQ `Қ2gg IJ T'(<{UipKc·RM`(.ٜm˴In䥓H7Y *U$=()9ER2 Su]jǨH?Gh^S}ʦ\GcS 6Espleq"3|&wR=gvr -f0dzᐊTiIs9Loӆn}iNj2{E)ZX8fplg7@i?R𯔮+`ۖ69GK̸";:?o]Q7y]ٝ8%ע~]sױ>x`=?PUůxVeUP*>OL ų$HQ]a?٧óG9bs; Ƿ/ ]z_{:~η3>'GEyvʩ->lNT{7%=0\{s9hfƖë9AA)N=yk*&#"LJɭ-R~N*9mJN#HCV։^ݹ9,7sS[\ȏ=76Z.]ƢE>mJn61ٝJՁ% axj iDpqڳ i^~677᜴Pl"]Z- ea=~1SxpK\#,Ĉ+&xl~ܦ6̱lУN գ6Q@5##04ZIya΍9LQM-)ߋm[94pUn.z=eX3?),?9F$.E{*F*R*kCK}%e_!R,M%||w)[W;dl "u"UZNs],EXXjShtFMC7VŹޕ87@#A]\jƧj^E 2J6moƺaٴ@Hܔ%j4\&2m1() O!e[cXWN!HUB6rm0bVR_aM\P4FN V3hۄ}AޠE.ϊ.ʇ fݲ}"~nJbG ]汻^\3>Mծd #sRI^1m~/BV“^)"="$rPK%2"[NQ6#_pS捔-LU1DrnHo'[kވ?~$wFd$S+P٢|IiB= HehduKB12:Tr&de B I؄\r7+B$%'m&)OG@IJ}Ejke-Go3XX91e=Wu8|BCC,-kTc@t}va4[ߨLeJsլ>ۋxPu#1:‹eb!stivh#7J3($[ 3&XS3s4D0()7)36[@.[X0UJB Sȁ57r&sp+->3Sc,5M 9L!Ac\@s_V= T̨q}UQ5l(V!RCMD˔&9gO]yj`K'-Aa,I۔6Iv6Hg6|!_i'6Y7qm> Ÿx#|]_{p4 ծ:=q5~ЅmZEwkT m'3o?W<#; oLe AHT:ECP:q;/ 8QyZ*_E 9!c9-N MeИbݸhŘ,(8$[5&FfQ#!.DftRWgE}u&膔m&g9b^}3ώ`5nnDA |\¸K@&=W) O%`׻LҦD80j F ߮wGkHMJT&oL˚f~%A9T=r²9"H&vwK MHR{ݸx 6{w_) .sHߖc30Xp7N )b%tY~ V iq}a\֋>#E(^b612eL:]2 *:k<?"%#Dqb.n4qa|o&=Ān"$ӿ2PYPҥ |R u]$Dmi\ B^A<PN ERr3 !$u1Z*p.]$X$)&==(Y*Wm&I|N z, E&f4 BkqWj?ḟpϏ1=T77ӏǯ+]qm]jFJ͘7!gm0޸Z`́;n<#yE%@O +S0u4agL4agLnhc9 fUjs1bq6YA.2OM1>6)ް?rfLJp}V3Yr<$P)KQhg /n~.)~cm >o=o?{& i#0 𔍬Vrqs T.'U[цV+zd#I_`/sVx/ +363&1Cb\d*TRE}UD!wbAorRa +ZM86FwCdcf#>d`fqoa!̀1b'8 Ke/_~G8|f[H2Y9|^?, ^@I~I. @b~u6Xp)7,"X./}__{{SCk?!pF8 7l4yHAga>B0ZH]՞f;̘8s/k7~9s؛xt`s?>D50GK.:;" 6 fDjlhDV H"4ZC$ua=_)?6m.>kj{CgUwqgJe%N| lIQi SQ1ej Y`5cZsWA|"n<L0чlN.;¸7q{f4VrBd-nj^"F3))Q Q%&F@`B8:LSZ:- UG2jl7 & n>~٤Ɖ?y#v 2>4^$e>_h SȲgF8>֝(K؁V0gKzao9w )(儎 0xJ+j U-Vd<&'v ς׷Sh`ܴe \7)u?)\|(_``=w;xvg "3VN*Y;eOȡ-( W7P&FX;TP5DW'zgC*`'uˏ)[7wVaqf`BȁjٟJ9T*fW V)76odB8ǵ9'QQA46&p;y/lr|\ (`Qj"Em堔ɫ50ͧ$ţ#oԣǥ ^\;`wm4a^=0cLD |o;έ2T\NɌI&+(e[g_ b+ ZuuJ5Cޅ+Q@)*Riؕe&LG·u_Iz_{}Bo;>iN>4mmnvelUHA bHshpxJTj9*uH{r0%ҲsZXO{ٶjxZ!I- 8>g3@ \v.))TbIsrXC#N\'d5ӱNR6m0m)RwX(oVK>n:z5:Cbw _A7)-uZ"%K,H5p|1rwϳu}L,av4{h>;νbVYQ\*ƜnDhٞ *ٗ%feR5j]*:x\ټ%;O̖3X4ңKB}UIMOL8-FW`q87;ی;!J ͨ3«jv VI)k#.Y9'̹y@͈hXPj;ZO- 37sA휅AKq O˲G?_{)n?`e]q2eUjF93"U2eC`A3-T?eQJ,?en5xc)NoyOJN=53ˆ' m>& w`˱ =̻i'MfTLI)V-Ms!͊uՂQչR3.埊Om:z. l\s`2ޖ>i(߃Nx¼\dAu hO%a;2"x!.Ր^A&ā_̃ʄB.;q_xU)qx :B;Z3=3ڝZ͈ _@`U)@cEnFv^li;n s-7܎̷D{S EӸ3 ݶ)l;#hFHha(> .}̐c^ʃ5 0ڶ 1§4r# D(`(O7:սޘ |Z&E/a2IżvAb]N=n K9r߲9<> Y"cD4#˂-S/}*M|zx{\f~~H/j fܶ7븡:ocb043iUu n݆\vVQmCLLH1"mRT$#!eeQ8\G}jKlEUگvg`uR b+岖j/F7[2^f?y?^y=2rwi%ɶ7݅7c}|aιಔP9py3G/Ǘ /U^JQZ2bZ~.yv%@87z79\<9Y޷(*V8sˈA.IHamC' N.DE!MSBV7ݛMl =%$n`Mq"H\>O-5cg4n2 ;?v0F [!Z& z%,۰#!5m<ر!x;r6@t/}Nʹ{w!RU!4\dUA 1! xn }>?x[~wRI--rE-fR1i&h5S3hjOM )%DaRjݽ޻6k$:Š| &BTsDU`iUwI Mco>:vSd敺7QHqzV5Fkݚ")C.Ȗ-7犭gZ&;=8iz2=bC™ouqwj٘bgk1Hqt4?*_yMfRؘ [ht)}AZeT] Xxl>Q_Ɛ~+ gvgF;ciXFtt>bo7IH|߭Cהwb0n+,*}]ufr b楝 Q"m~nέ7Vpb #̬BtkoI8%J\6s8iٝGCxՂyQ@*trsުAKZrg,89ɹz=c}UU%[?(3d^Xbg3(8p>߼,  {^/3g[/6RNmv=mo%ro7%~m嗢kD*޶7`vCvRn8/i&0ux-]zRxXw]X˺k'7-6گ#xtۮY+?"!F,K9_˓R vcP6e؟)c WEBucNt{skdfuc|L\ķ(ܳ7W vx8<5lєy*(YѤHIYחa%M׀"@P6qwpP +yAe6Tg%y& X6lq`ȓ$OL aASR'@c%MfqR6Rj1 ud -"XDU(T<dX4M~}6p0c"0WXV {q@چE{J8G$~}qߒ¨ t[ټtnua=c,r^D-=om=>!c$KU4ӪNF+yhE[IiSjzF#őptn.f`sAmNѹ5V!@T@ TUj!eyiʄ({#[xλtM *~XW&= 4Ϙȼ%*@R "%BTMj6fZ'jpxv|<Ϙ֫MêM ZG+Q})4L$'BqsO1V3M#2K6Q_\3Ws'2[ŏxtnuz-9 a%9̶Vl:a s$gXVs>2닦J RZ)ɥS 7Bexzpiksf aӈ-ul5◛fy 3u xIu˖uI|NW̡˸Ahd'1JⲊK<>ʤK<8*º\k1kQ"f)7CLjdg$wèEt$'fCXNۉx^!8!eՁ+9BRD7 IDAT8*E".J%7*9ge4JHØj LdÔiOBl4WЦl"q݋M;v,n3A/XP w:W-כ?:qF5 ișy*ub)y[`ߣ?TOO0e!(c)y]`P.P}1wb`SAMa:̾ U֡PjdXYb+>ck >E-n":ټ… A! e2Im0!ZwiޱTR @q@yC+~*kJrɌ}n mfj=F.IyQv*Aj%[vC+&5,1q#7ў6IGDSsh~pM 8yԕ2͘ 5 3 Vaa"f- -6-!J ykp R7R̞O!dT)[\ ۂ:@j(Vɶq`m^UQ3Yˆje4 m1$Ҁ$'2;Ch:%n!t,eJPxr@')W%uP հťypɳ>j,.2"hͻ $QC7c[E$oId ۙm<\hbʚ Hpw62xcLJ9WXL9rU8vwtx`c[}҇Yyt(3m0U\z?4`,nV0wǤPSȼHJKD 9[9l[B1[ _$`5JpCq*{M]hn%R%SWiUze2CZ 4[}g)*azI8SFfEĔz@N(k #5h*DDچ I77∃ۀ¨8eS320AM9+^woLJ"3QQ1^naylRX@ncNr+ Xw|y"A0Onuq('Y̛rsv=cQ,F,qOyUQd @"k^5Dq\NcxF(jc*zzMN sfj &9)d{H \* F,ӣ|F{&ߗ/9aT^K) 0Q4D-=(x$9,0Fd(bihZ |އ!lymX PHu$O؁04!-E@Gw,Eԍ@+),S ^԰url4xPWm9$?"[-8q뉺h9N˧GlcTaUm\:,5F#eِ(p+, h3FrRZq&MilKnmX)֐ (*k{#wՠyJC=g,%B o[hyR'Pg,D}T7J9u҇]kih:/k3=Kk,{lo-;Fџ_1}OeA(Y(TX _Qfڒ5K$-}Jy͋]KH^+ 1nEJj תu]KJU،<N`$YmyPfmT"3bBF"kP0qjycy%VfZ9],oų[ FDyN)4ڶVY6GSG 4o>9BԐ_Ibd˔bWx-gFR<)c%1 S«ZV[ {u3/ԅBy M4eBHKthc-eD4ui]:[=M|)6?&`{S9%5OnSe`dH<Ȧΐ_[ZHӪ3 *{@U.ƎE1&\#=[\KX&L xRT^l>\jyr3A&gћ˞E|*3=FOhnDJhŭ]zZmqO}|Y&`ҢBd.2kX^YK6yW7Dx7 $ڕ}Nҗ("4r-.q)TJ^ XiŃ ; d#LW; %Y-[A-Bܿ2i +89Y/FQ\5*pZkz$OY b8ĵwP\{n[YIѕ}I"j7NrJac'+rcG*CDSDſU 6{D_09B&F :Ɗ϶ZqMJ(aGR, iLE ,G[W 0O)4 l'يjaǡ̮AH7bVhm!3B.]3TEmTUTEWu"%byHJؗv3_q U̡ĽEm-V&3}fI6Tx2!ҎxfA!.d2{ʸLm ˼ HzڂRv4ʺkv)%L e2mx3v᫁`;e] iH$4oQ䮨bjp`#)A3$ƝbJ>l Enj\ejW}%Z[s5NX96#H\D1J:g4>s#8L@JI94VC_eΐ,$fHE*$|jx=*U)0\ESL1Ab%eqWTBDH+ 1瘹PjEO)[\#c`lAΏr RW,V)ughV4獃(es%n"Ke5)cE6G@eέ.-#6d-b˞'QwTTs)Oj\bI=P#9a!SvyO6֚ڗuZFDf\+YJYj}ƱdJ ek]:u X\eSJzDr .3qwy)vP2GL6GW jHJVӿRo@@1Vrp26꠩ҭhVL}?H9Tf4!1?I-m <|} 2DPڪcyEG+K.ZsR|P!E|OE_URQѐ5 HEU!Ֆuպxꇩ;X+-TmCVQ.E[e]HutRKksϩ:r"uU*ăiE]R W"Ц@-q8.JD0v9H2/n6XKX1ᣫ(_(UZM{]!ωf!領Xhq9.|-۲r\H&]c@E)/RX*RdRŌgX%U˒8+w-Pd |i.kqj PTp/}뢉9ELJj36ۮ L^Rr::n28~~##vD&,L:LH+j3fhgsG~^B%k[J60cڙ8_]h(9Słsޢ@2FZB`-j]Gę9Gm@S"O!+Mj.8:KaJȸd(na8RTCݜJB)E $Q y q <߸P%n{OZwۻQ [Z6kKciF,Pb$vF#IK6ҍRq,xgJ*@Cy5/rFV,L2 :؅E+pOeG-2_Y;&gRul\{\~zl(@!jX " Mq#oQub%Izu'*}Ł+Ʃ u‰uШ"û*`J5zM ҊL&k qÛW`i9< Rh,#-:6V.O9@҃&-ZhUlU@ELnr2LMGy8yu И`c쉩iYInjNԵ8'#01WdYN3u-i *& clc"Uџp0l=m)EӨcc=yTEW6Gh;nuVrkFM,TEO` dv\ oiR0'5. Ćw V.\c̜1^f5r,AMbɓ Vn&ѓK7j?R rzV#+XEW&U߂y֙EVRcKPۤuk׉5M$FRz)/tMfkP"m5)]eRJI d:Uzh:Ӫ)LƝ/+@#6K|(~V6Z?kZ\=(ndBS[49Tþ"Ue[5[FZ)XRK$"ҹax۾u_pVIS@S*i`k6)~8)!*ISI)Ɍ7TsCa8x~.Ds%sJsy(_{}Kd.8 'h-Cg?-WKw^鯱57X#{mepY?YcDms[Bevąb[u F)7Z<`'հmSa2}+-9b%GI0l;M wu*o`, dy]Dp`y _z_+~9 ތsx2}\P(&fήs(2z1r$*N./RrSŹPՃUuҼIsi#+zBeisu:͝h-JleDnR0u!S<UY:)}m51QFt|iO.vX=Iz-M!Ciu"6QZۇ fF 4Hwe|^G`;~tp#qq)s~, . >DwI!)8ި[L'ChNcZăC켥`@1e15hC"-jqgr~9He?\ߟ ZC3QFMIDAT<(}r(:,Tv\ .1+8$udžr8t,FcE+-ׅܺjw(HF&](,[tFEvoh$~p"XU0U!NƉ֦i:QN_%مqB{;Xꙅ giF5hM ` #9ioKW38pPRG[z mWđDAS%ךliCwC䴩 QӄiS7K|(IFBY]5ˤN̸lޑ{ lD?wy$C]ի:Tz0%UzR\dRx^'j.~Zs8i#.4nrnZ편?-mOȧq)[e9!8:gdYz nr-E'b9#S3G? _j,; l}T^sJ+sh |e>w(Kk#o7\ˎR: <GVnamoUl2S,l^@B+݌b񞎇u~W;|߅? SyKdc_y8BPxDƟ+=Ju(tj㪫PIdq%y21`TQfH`YE>OW6l)7SmlSF-_j59umhu1RM8{3 1 R&Zd a{_ Vނ濿dM,UT%$&k@i* 8M(ֹj8@̙*T(7Dݸ5]1& Tu?8oPѦKPERu.CTSXBײ'`̐{ƿ>sDyNg^ih3I*Q3MFM:4ޱD=$Ud\l!j'MdMn֒(y?\s:LOOƕFU0 T> 5Ƒ,[S I o ux!i!0 ] FJԇej^uZԉRSy_N[6L&pSC)O\6 #Q *R|AZgD'1SYrEJʰ.r m>O?hٺVSZWbGJMu%PQ7VUƇ ֢AMȹ<ɌzYի?JenaՁrL -_Z`)qf}'(P+}".ğ~+K0w3䉹5lˎrV8Qa٦ Rˈ; :2<[)!Guc KUcEes ?GNrlFjUՄ]Y}y)۪J%Rnomp;JI /=U{_8:_}ׅx^7;?'0~0?^ZaJMK]I'f*ZZ;S.+@4/5;c<5C0oP*dduUo}q~п~߭I\B*0.7w @XX%./:Ҿhk/ܮs'x荽{ oaYkȪ6+#BKv(-ͣ@h[퓃x7S>{{'2kOs ( }`Gx1 ^ +xT@ȐrW_>58 ^#8kH !%. F2T߃Ȯ ihue^[c'&<ҏ<-KFWy17qc1Wb[Ǟqedx(糡ך|~|+ݖ~#|~)'k# FR?'Nϸ5͗&}bw?.jv"_㘚R+~O蓿?W.g/Keܲ-txU+j˹Ԧ$</r,tZT֨`V;P˪:_~P[\^7[3@nA@DD*=$( &SѠM̜(ńM;IR&aϟi//s={[&4ohh+{⿂ U3[dC1:CǷ`44PL7Z[#vɚk%a||OӜ8}of#Ivrjc1x:[j5pHJaޛ<\ŴS\Z4]p2 %I /W @H ^e d2a6o8#xXpR>Y>6?5W$ƕfK/ŃC~pim.kQ4T n&2qKݒD8mlf92)t2۷~ p<:qx!fUhSWWI8-]Kr^s> pc`%f>߳YMn@aBr}Sm( IS7OYqb:nM4/:Û̟m%vIa՘Ϣc!`"jL9]}dDJ {@{}g7W[\3}(]`vϕlS zߤ2T9䟲R֩-$F6ز^1!=ײ+yg~lV>AW̱ʥ ,Q1_Y_&gTHS:r2&4 ~q!)7cRbs%/8k)3<-lCIϜ3%׸I<[BR/x|(sbq J^6Fd$am@IسKivvag#dG. C*cUvkM>_qˆuTsG*Q|᰹8 x;` F,'{ҶvsNW GD#JDpEb 1R؆o+ ,FgV`ե%ɃGB퍥zq!_k ڦgFLu[?ja !BʮBM*;̈': w❃.~׈3tUt1BmHnq 瀪ʴʨvwB{rHxDH@ >ޛo5 ൈsi|9Gx 7E S h @8LU(@@3Rp+ g?&o<5Q t3DY)b^$8{K\A /Hxlgrw7`3,^ kŵ'p&ء| IAg_Qt©)j'O7[w=G( n!Nda%NṞṈV7r՜<gEA8(K 5 6lHWWKz{{%It,{6א9CPVT7lERa MX{F,; >O4?fk=$po3әqqIxN.loyL]8/&p"zr3\Nփ~4ټ DawSICcA}gt ::.1oAU)8XpF'6i;j73G6 DO`sϿhcHMZx@]b8~@]F0PѦ,u_%[۽z5]-7?S$Z0߸5|YP{ܑy#3>/9J?zN{kK8n!Axل昘0x'Vsu!_mf:;>?^Sǁo(H@3x;L7Fs$BG1E㟵LgV|6Ŭ"EutG 5Yә&c4*i'Tor4[tu]S51 J&r}=۳m]'5x\-t>QP/#Q@QPxMc[pH/2,Nb"+i13(a_9E[d9Lghj1~SjLg-$OkBiK` j4Jak1ֵ{!`JlT;g*r S#sjbνǤa{| #41S 3}Jg7^/,K\*Z HVaq=J(RМӽ  ӂVǺlqOE̚eee̠3( |sv_i} UN< kC65&ub)`d}?9'vLS-HFlا]MgH20J2LZܨ'sמ.Ϛ͔s}* Ry^tq9qJ]geQڠR\OW](+PF]U-; Hޥ5TxH_/WfJ0k+q(;BQ` ]i ~A%:^TuW9_9r/_G7Eo_C5kkI{S}[OkT3\X㲒|q?WP-NT)ܴ!*dRtcmVl:Q!wL/̵5SU8lu NS`u.fȼkIx֊UPkk̪[s ձVSlkBuh ח otWsa_V߈ݢ}-n c]Rd#o;-C#d5a;)Zu @uvrb._Di@ܵۛZ'@~Ѵkڽf]8_V{[tq4Awm]hWU{<ٴ:' `=EO XpSG TTסwAG 8 f!u`zz!Aԅc@mW"a\gaI3- VNCDj{,PEu(1ׂ: (R-#%¥+t?ud̿O}xjȕY{j |d|gl`x D]vEgrNr14"[M30v{{{DiQx <n \@HEEӼe̘:aYZSPL 5<,c?ι=nmGs?T׸En~/)ON)k8,S䵬msiZګqZ{{>CMQS.+<% ٯK{{N7Ҋi6uo5P{ح3@e˗#+yߞsc= TOp nM:$VLM҇ i t&+LDY7Jkn:g eeaK_饔h >eKFeI"xl:+{-sH<WG,ܰf- xy<d,\za])n)mXzTAp1) X.-҂M> L(?Ld'6S9>^YйWx.WTS$sw'p'O\6pU kjJa x 8XcQLj߄6N#p Q.`;a!ir z'.xoti8qPd˥k·xk_== &&mXl v*؈6\`Y]"&bc3)Bk#X`U 4AV)]kyw 5pЭz e`e77M?7 x )x'p[pܳ1Rxu71ø%8ͪaaeLD8̘URBq ƄpfUkgvoY I_[W_;k@Àqi;'l1dەxhV_Ec!1c!u,JAdm(#EHK=xgVO+7cxp{pbg^<,=i+m—zOE$௅p)#_/7= aOh X2.@ux*;<8 witr鲮'[2ȼvbV>QVd +@M/[u1C<ɐ^04!2OށU/mZ&fΖCz@()Kgb5 ۠+ g%Ld*X<Ҽl@Mb-r9E{ZSGճo!쟛 <ӮX'010@C.GI8Uؚ֦&SDM%M Z%LY4A XT_U)'(O"ꀛo5M MQ"AbpQs?:^Z= ?e й/$p{l;FbhTV4d`=h$ʅA؅).s,[+ .F]z²3jpMMgn'csJ0iUt>e#%'j4л*]𞪭L$^D{R̺qE!e (=ؔUEny$\jҁhmuy6DjDXi,A/Š@&j`A+}#=%yV-RL pCQCS08^2'>![XX̆lq ahk,$eՔdI׽Q:a+R30ݳl8B<72c)YAp d+_sqAGWL $qPaUE)N`{'^10 >l[& k b>2<ޘ6Z: ]ά @!_[jMgCkgnMjVBlfjVpVޓ{c tni_`D2>ܜM6*HAkɤD $ 'tNJSZ*FU6p4v08Ϟ@c:6G8^ialv&a4 f0~NxfePۦSu0v%a)%}xY^-ƓAmJ8uu]`j aLL>VvP f!ZTUeۅ|^+IGJaUD7Ɓ hfEwD)A'+Xm>E5JL4}LJtnnȵ LY"27/YCB[U:"nڔEZX*֣lOU0|c]%)Q.l}ZwwU#3:IpdI”`Zөa4ђtah,Pi:A;WsvӮ.`',NrIpM>)+ \<诂ut`a8keơ{ NGxD G[0nT qܕZOC{we(KD-& ڠPiVJDrO/&skVic28ӘnN/ߕyMhr@ikެ%&oTVO8 ¯ ")#ޖ~3ɕMjB1o$ n%P ~D'|5AhvAXt۷eR)ɫ0rPG$5͕ y4B-f_OSF-+ tmΧ/ P"ZPSQQޔm5< wbrPRHKc\&`i^fΉ+[o?lhwȌ:eXSOc"O_p}nƇ 8^! f} ܷΒz^qtRay}pgE.ƒIw {+I\Թ)|Z0r@dbKeJ@B)ʢ͘bĴSqGO)I Ӹd yQ֛?}Pn ZH)o*M,b FΩ;tۮ3COٰ3-"d:5h1BA»%BA#t"Ad: *<_Oޥm1m=o' c612>ϳ70۶UcẺ*";5eza8LJ9/ IJFWDdbofՀA{A~/|a8>*>w^0FAs$+VuMJ, r{)1! M~A.7H>q\_ФrNRvIuUw]1D'h>R㼲N&y1 W9'DDaXT"JƱ0E)-LD>`PF^d:1. ŵ0AEy )ᏬRyA8O|6U)w$ >mc#\Z j ~-KbFQT,Y"dPvO,.0mN{Wn:pjؕ^ D2+Xf` 2(&2j2ܭ@|wYY||/dL[/So>q H` ĎkmҹỄ\YMkzU~Ʉ!v&R.AMoȥ,JPE>~ckJE,'H=`y \?ګI8'ʡ_pV5MnVE o̧uAދ g\͗|I\ ޸;7wuĴd?DjNk +̮!sG 8r_ʔ%H3BQxm܎7^;Ng"`3SuN"D)ྐྵY%K$p 3u[wL3:xOȔˍgA{r%T;J^m~T~^t1<(.'^3%v\dp{p1Hf9W27$yq1-,q{X>9H\_dzR&/d G7k) kKU g@rӸ$x?!|Yhd^h46rĮBf ׆s?+.c%oVApA&C)x^a(*&9ad40mICA-O|xy̠sn[i %0+<9y?LZ`P_|ѫLo9v3R_ͮG3\JUsJ庾r`Uq`+%(Qs7n3cq'^@ 2ane:q r/$|;}% :ݓ$<09o8xyc<1yckctkIENDB`xteddy-2.2/images/xbrummi.png0000644000265600020320000013053311143371632013243 00000000000000PNG  IHDR ' gAMA1_ IDATxkmU =h`%d C`8q&K'!NU.c8<SdGlbYCA` WZ  =ZH'?zt\]{ٗ=֚=^>uyݼn^O #7]܂sB/S=iP IJD{*P^de7EA#g|?9~*7x}| T4?,7-1{>o*䣌|7?O|o^ףs׆ni(y(+ PUhV "KHD {qH~784z\>N | =(t~v/c1w9$c1_%['o T2~29a0W=i1j|4Rgh_ =3D_C9.% F-=eS_9U>ʹs3޻~?[uPXk1:[eA7NL 4dD r1.,IOSaI@V;=Zsv=e/avf; W{W˗}!x wo.<4yCs氟_ hg(y3 ^C>`dp}h≀~x߷DH{esACxQ3G #p \=l~\aN3̊?epJebE> (4~?ׅ>~g<aL1M>8&{,Loޑ$b;%F/aOAIUQ zC3@(s8G,JGT5\\XEmq1~kSyU9 x4fq3x` 茸? ?6݆{F@gⲼs?;mtbKEgdlj; 1sU̬Q"dį/1x"3KU:a/`#n*ն` K\H9k< mmTN5ZFAՂʱo:TcY}׼7zd͉/pV}_#_NgSE7Na˽r=g B@"Pb!$H)@G!HPQ@a‹w;>+2}ه>]"xcso?6~?Htz.@s$d%n!EWbj$@! Uc!"3)VV {ߗdI"Qs5ؿU< !}4EcH #QH ̈́봦b2 c~z.#![)k1e#dUC/[ BU^<~F<_8針{>>㯸ON_/(d 4E,WX9!P32@7pelS3rQqV$Pݣy}V'$I@I&(&mc5y攀vd<rHHP "ӧ\Lo1eԒVb@"PAӚwܲEr$1Ůq#*)X_}w$Aoxw̳\T̸̛"iNy ;y,$$L:ߟ$6o.茔UJ(X 8'qI&$m^LHdhD>d4)q.)9޵g 2_oawD+e!}>lsH)ӹr v=}bEJ LHI!yr?]g }d_; ?y9{N'4Ze2f/|ώ;{ڽ]@e',x%|f/xڅBk TD-[< 'I`=^Xjb 5|IbRy<(1ˢmdb|{>"%( 3YԂEEd퀒OjD:KlKZx!)f{@vI Ju\l8g+țkJHwWҺ7ΕV ō*pqR̭%<] - ꄾBW(O9OiR NNGrQ**H@B) ᰸tj,ī!|nL|u & Wk7qj`WEkvv 5 ,LW3ĈN[V0!V$FdVѥ vZ]W-\Ԩ!!𲃆Cb9K >r aYU?s ~S1x xH^K3T5ǞTc؏mtFe |\Jj#ZúCb 6l֦vtpM|)jw.?ƽ[\(빸<i v}D{ZGTжgvh1B3P}]_ 7UU$ ҼUm)ή~1yr<[xL8$_zYr8Ti61 ڌ;F3Sv1C4Ͽ<)|.n[2C<ٔCtH8 }U^ d/ݟڅ:E"zQ5D !R_r쐬RVBiM.\{Zg@T_ZL.L_ 9Z))%+ %mRIe9VuL%L5sH{./~':݂ȜM)34]bML+/zɤv dd]A~|OlVktW!V̥ra4SN%U+:+UG&` *fSk׈U g~\kڹ7I P͋ЅCP@J_2@Um($S"Ƹ# iA(%@Ek&1D'L2L%~{y-kn=kJۓyiizJ5) SH:]avBxϔa ~cn ohO+T'$yǦ/BCLH/ uBJ+x:!-c ;H0#3h;Y#˦@ev]:2([̨${TƄ4!`vّ~"L;C.]Ǯxb0r!)U[H)ff'$ 3됆7Gzl f.( 6BM :gJoьy0ND'ߴ2>~l߉=;"!%T9˿qSa$ B$Z}S{b)mnj@0}gx%~-,Vlhl@zwZCf(Ja쩠PxKM9Ŵ6Q贃̶H_{*K\MK[gG9CCʟiC<ƻ T7h<=n[10 Ḵ/Si kAOm|%ִ-w%zcc*@|]g獂zq}EqP+NVZZ/ uOy2ѭ֮f=R y {!"JA7-aDV^oxlҧgK''\jy=.VdKd `ǩhHB\?ZLص* `%?yP/TGr)'ڛCc?J_teWd;0lwII WWװIHB<领ZqǦ[ds Iǻx+6/c݅C8p`*j(2@@"}ST7L>;m ~: KbKcu p|?Y\cx_k {<7K, "jZT (;,w9x=GΠ(y@FG|tnڃ.,q:cټ]2su#cڌѺ,>Hp1ELn -D9w6&]mH7!r6¥ch+b0܂68.YGA>3+ ={TqfWsҷ28CܺyO3}]>96'5=!G{pklnڣ$D#=u)q v^߫##dA>Y9U/4.Nrj2fbhx\:"h.#0sKWjƢMFxB8dvE3^}Ǔg-ՅtwQn`+QAvļʘO2vkF;DLD4"hŴH\`PCxm3`vB ƌ\q;4%!"̹%z7qB"ڈhkDlzN?3> M6ƧsTIh r\Zq1xD;:z`a{_rlkyP<5wX+]~nLm؀U}fckh‚ e+qh8 ʲ ^lz留BD m<:vn3pf&D6HYpD_ c8w 9HObؔj=K:K;dgܪ+~ #>܅Oaѷq.)t˭D߸i}n> .p> nVA4o輨$mtA-ajȣQqX">_3P 8 O tBv ?y>oco_d9۹*S4|jͿ^65t=s\:dds2jҷưVpۍ^IXp;$DCMcJ{ Bk`LG]U<0Cs kAei(*ܼ\4l{ }ynokZ@sJצ`ڋsVC3Bo,gZzzNBPo%@Q ܃n<[?:@)]݊ە hH,F,%~HRJ߬K2::{5Zo蠝E({aARk]/$[3l <綡c `:@DR ŢD5PCH`ԅ2t[*FdE8$kDv,Xy"i')}ݸ5_\$d4} "rA(sӜG ʬ)  _L~Bߞ(}?%RrL{%dNj%Khx I/e|/g rgj\*;`  ӄ!OIhzNHE & ǻ G1'w+=k)OWF Dw"1dXDԦGLob['bshQ M_qZ"'pu?TxN ^#d:pG/a}gWʹX[DFzL~X< Xk,>R?t-T(`ⱡwZ.s><~ {1W!F#&⑸Z#{1,VۑvHVY!/PUszh@*\^3fb 2<.D5G36+0i,?0?j sh2B6 2#52g.md=ZX8M4 Sr\d1L yd5)H҂>d?k|"3XȈ&dmF"!a9Ƥ94@e+Q'J],Nt*2D2_h,EVI QQ~+p|G$wx5-75}<yxdziĄS]rOmV Y._O6]@!tXL*}IжJtն%4LP2ox I.dRdn6HV|C+dkgZ3"FrFx]⊻W++*ɕHdN0xb%DgLH0(D埧m8i`H kՍ 72,‘4@پ8Mb숷BW|0 Wo I}dٓQy;X":V9ӑ: _E ]/ʦL4-$k²B|E(/\J(#IJbZ }b-hRl} 1q!\-F",u;3O,QPFn"h"8[tyސRqk@-CoD=@PyT6v;7G-dUItפ7h/ < &CZ .|x$|>uWhU~a+<æ4ic1Whu ! j֩UcT'eE NEs3Edo|[x\=2P:bY&bwaڠ<aΛй 3w7G?oq9v3wIFvXQB&Z2Q_7LQL!(%~7qK⯄>>Z9 uTs ovi8bVa; ԃc_ZwxHrA<ÌܹZyp;Ƈ9({-6Oahkêpl~DTZ9V1= 𷯎gA\>_ +>j{h^It#oܹM!#.3|.7#q2O`4:9stI{v+"n+7Ν ̳"3 .$ʛt۵hvgm*>AJXH@ V BApUam6=D+ vVA  .(Bng>`>@S;gvm{qy> 8^xܜBx$CSvOV"hA>{ sˡ߶mV@|M@V6bC%r q/U.lpl*#V0+oJU}r!MJ8xu7y"z꒵V,1sVp9^E*3bTgm#7K7>t?0ϸ}8 .W|]O)`w&{P>\Ab*밶H|oR# ]QXCjMf̲ײxv^=TY:o_mʑe.}ƸM2EHwBFE! :ݝc#npglM0{[(E܃ɜy06f1'LW`|rA &*G$V"Mu \%vviٵQv^N)JvUXmeh:,PUU0Uݢ :BJʰ/Q 2(Wrp&YI;Vpm\% ;P !֘rM{劸_YML|^ xWBzki/U20bJ IXBdjS L3$)ߥHА"3T)7%븋+a؂F$(v٥6߂>vN!i2 I'G3fjVJD}Ezfnr$H jgu5ZmK/`i !#b da3< b[O*u`RW`t`-TbHUinPv,JhRh+;wk ʸ;p~f^ PCxTLJ=TdUuPxUP =Fu-CTJ-X6i:ql)K sHQIN#/|-v#QԲ ͮY::F'IWhɛ-hSNDP 31g)f?[:Q| N6 *Π+db {\n qK7}OeUΦtDUbn:$lFUl[f\}XhZȣ%cvdk"v k򻦾=CH<_/>CP R",{@7ԋֺ H n}3a1c]H6Ƥ5Ѱeу%^jPō,?wBĽa`@Dx;IUD*vS$tmV1EסM Э5= >/sD׆ZL[>ԻvFQXŃڂF*L 8hÜ 3O-3t>͈R p ۼk6@1Aǁ"Mc0(TE>JKQk`kΡ~oL.0_9Es?{ѹk*ŘU= tP֬mf@؇:2U`^U]s/{WwTapS92KTQo]^K%o6.wΥ 2m3ayV0J=t586>t#z-~AedxfyH?eV}9^[Դ峌L}aGj6%ytQd 0+T#@55@!p]Ůik?.vm,տm<{+hrNTe|;$KeieBYTV*1QU"N'lk:Wrl'.llii馸C'""h{o5ȭLDV4>umb dVPsQƖobqG:"\Mt4. vrA׽V藺np6eE_ާp<^nd:ocTc &}^p?GZ ]G8EYN@iw<JrS6RZ^[kpNcb'i.fB[cy(K*Ds~,҃c.!^{ӄC)B3Й6)6 !+{cxg Q:t!8C:󖯵DEg9su'_-A,-).prޡ}yiDƛr?boUo P7 a<8d؞cd+ԖʐO7@ ;)9#̕`V7NʺWEe Sm5вiBF4EsTKOOdQ K9s;Zpvp΅VQ-ϵP{aԡ1I;Hȝ)S*s~UE7vz-/׺3x;+0pjj*@7u8&)vewJ0rd{.{, #`f'n lGq`) CccCskb:".{<ɧ&xcO"E+&٣7S]4j0tPŸ/ VѺ8 Ug*cKT@+T"!| _:t+e\z} zŨg-$Lwj1}؅޻1go⹛2vl=8=8M:a̡+l,Pls`a\flS(T3ap4#E%J-&11{ekչ>sddę hZ<=%m|yf|%n?G=/>U~ۨȠC?q=(Z냕 _kٽ8ãM6%bjٳճF8AW}lhdg\Tn5:kPi}ڵ΄-Vk hZ#0O3iďxgCpiO5JO>ǹ<:g.ϺЉ K68=Wd_\w`c&Sk >h?}P^YX .@CW~DŰb3 [R4u+uc$\ۇSf J@uײ A#vv䱮o9v=*JKl='Аwf+]GibժqHس{S / ºe#- CV:@?>.uړo*]#hDW \B %/A[~XSR iPqn1Z(5z lRP`9]ڪ4чsUE6bix/ȚZ/1+V< 1++@) 5[b:VpȮǏȷ\|m s*?t{u }dyJgCJh@KKγ-jv]-/(kʧĬ{,vH ">ig F5EhruWfүF*F›tSTHT/$&8fiXh ~-&PHjd5eAiʺX׼_"ڒxJXO OYg`A  ! rAZpwAi7A&5-|>)ecncWhV1c{(o!!/x"&qn JIPc-W$*RZa-"&T 3:HiF5m[]isЭY)Z^I]Z4#IX*2?-u>l>$8E VxV)ᦸ)JAxS }J,'P$"֟%U4Ct69)œEAMDEԗ´0AՒ&m魈$Y-X& d).XX5kf4Yj'/LZKe,KlRdr1&+Y%nj2pObwz?#9*i=Yj3a kNh %l+ \X^X' As;cOzqPB\v^ĭǦT5bdOefq0PtSUڭy~wnjq?=n[s'}v HCB?=<\O/:.6xKեSA-/b+hivz}Աs߫uՌ]'lcZXîIsY<\f$1g0,DG[捪"甹!{5_ y>+BP{8o%}JX4"CnZșLs\z /5'k X8CT "Mf]S{TQ=0Ր+)9KU"HZY6#\ւ ܏c<-"F&B}|}&YZKHQɡi>$M{)|VNMٻUZ[ҷ:{g&בN {)0ZO^5p֜eSWp֞cJBN-tjs[mձLK.3O)d]!):F̫ i]KVN;3dheǮYvQDsW&f Svc#lVVrIM:[$(RJ(fj]j n|Ϧ*(`!5DqU|6 IDAT~Fct$c+p)+P;"~QT5V $3,sL fU6j9B4`UV[B=YQGή~F\c?vypt^xw.ٲfUHWO+c:t2ggD&[PCtk`4+mhzm={Xh* O49 Ii|ӯ?[KgRfGǃj%`6BmvDE\R^&[sӠD$lXxx^(H}gtnMҏ?7k NiړkU{͡ĥur؛;ne4PlEx3U: 5=|l@QNl>T{Ա72y@˭1w6GnH o^ij˵I:a؅kz nIe飪#;=x-AC`S~ "3v ;=Zo urѯzO*a{He-w8fY*)Do!Z@Wh3HŲ,71G L/ 禄 4̥%)Y@|.E gTZ-/^--\l5wy䢏h.@@Bjjhl?L V!4Wv T$!)A Nud{܊OWK&M([0obS%f֮G'  TIU1PC6S^(L:)vaz<}C4]jJ?~~d{HO]+(^wW?jϾkgmu*nGeaPŽ2rOn g':ǔpbr>QoqߔyYvCX ||iPu<(Zc %~3_i \H|0(>;ȭz~IT 4K2C|^sO$Hy@7) 3<:U@jSJb[}կ/TOeŽPYq0 Cg~ZHe*quPOJ'⌄EG 4]4ز<]\l\ d鲞j{qe߻)Gx E/ !|BRMj pOw|.G\}$GUQs o.6B7@#$‡s? 7抖}N26։Qx\U[z7tWi]B { |l`A:J'4p{63jw60hn 3Zaa&W\1³?JcQ/˝g9F ?F yvոN$@?Fl|VTC7ו\ez@/|.zP% Wpu=/Aςt N=6[YXg'qau{ѱzc4w~߄,U)$0@1bF@kql N {H\W3LIiF׀~eߴ,7ᷡhzſr9<5|@D!!SRIIzi7V8`ZubHpqjCQ6zB^v^}U]6ц |y9jY}Y{` Pͳ~a?n xr`Ht3[*ΐ0@# o\|sϙU4vk;7ݿwFf6/{tHt{H00.lN>ftoN7Xt?<+Kѓb-hF_'gUpۈM^CX<c<8c>I~ -[o13'>>*>p+|2l_>71nïbc-km%A6alHk |N /Wb%z#_Tisr{6 ig'e^)7a5vT%k@\͠,NLTzyd dk@t斘@&*'b2!I* .11Bw;n<Ba$z2W, Tkl;2- OWk+%4z- U[op 7 C"I?{}~ןM)ZQn7%tiX`"D/ub4V`,uC%s>IB` 1H\ڥgPp|(e/'r3yU'ܮi[πxieиW{5`,:υDU^]\ VS/Z-6MW|=醡pm$}ɉr U%5 h?h?7^=Fﺽ˿>ϏZ&yX+}M.RZx8S*:FA2ϰ)]$)-F}~Xϑ{4Iotpjq\Hu)/# kC$*NPQL|-`2u yrGsȴ ԰%#hXWY5ј0%%b ׄ5)֔2G'$-XxH'$.HYO"X#VHk <ƌ QDdTKɓAa R”TRhR~.)v0?Z׳1T[= ݣ^5OS[N=P=?Q&9w{;ԠZi> Aڸ+|x2=Hv0U'+ W&VUqZ8S1ռS(t|4Uo["CAR⬢ťpB9M0.Cp1udUhȞjI1Zg˃) ӥ2txvi:<~& =|fD!(^>~o?xw%?ZM: >_tz5b[Fɒބr\(\\r\Z%p ќ'l-VQMACLڸ(6\REeV2B9B\+v<+BΗV*; \6ŚԚ(Mtmv3ҶGH*Z4,0z6i.^n)&Zc:ĖHVY`nltsUTgDglr]L-AT+*)m:ޙo@" 獾}#vK8>]SE}P%E5%=ap c@,6g ˧k5=&Ȥ(tCJo&C#jVHUs?Sq)ZP92ۆJ6H{A}xH3DK~Eb<<zڣDE)eImiag`߱Wi<$(tg!C/"? =|>9]UWymNM {6m}`NC@یfUU|jbMAi.I$}0Գ>m#;rEÌZv(}"{So@^{w/|'mSNma /˵}s]KXeiv.aƥ(drTYSzj)md1ӫqꃫvߩ6T(m"nj-Yt]v٘ÝiOepjS 6P"۽fܛ^A L豾=%$ \긥-4۾# s3+J 9G]\3w/~sSkURqou"ϯ#j;v_.YpJ"Xtk~PPѢzE3k؄Pb(a  EgFuDoZTog9TDY6Fһ܆6+mS^;}H-%eN#T٠JhBI_+H6X xp`Xev5&IFbd[veǃؕ1?CRjJ| ^V#c  FQP#CUNUW5K}Dj/DE6熊\Q{[rPٍ`{Ұ8_ozi3 M2LIRrp\Fϧ33!(zQYM6U6|MVֽ86EHU|.QtkiYMM H9q/̿8`oϼ_v9G!#v팔rڪ)94&JUK%bIӨWl>ߒ/OQۙ$-aKܛ,Tɞk?@ҞBif 8_>5Cyn. ww瓒h]Nj(7''͑ `1aaDZCuNcjħJ:[J}pDհs:rUpV/]\;Te{QTb+W<0tok}Țׅig{6[ݚ"UKԍH>)[e )1`/^GtS[ Ko-_n y n^"B)k%ѩ4* mݩRM-@$zʶe-i-綡+I|޶O~37Dx58emƳ"etUyCX هI?!aqPWqʳ)69 g?G- dug`O{mCG-׻_RP&Mlp*Qhh-@8UA)%M}E &YwjWNXh'%ߤ$}j ͤE3R e\0O"v$K5-0tҏqalzdid0R#pPr7G3%͈xFB8Py}X‚`Up$wI%f \JT75bQpcd]P5 n3r(`62<0Qg^p|IA6xLSnhgSdC4q8_L ܛ^/J)/8ӿID2P RM'Y>jm")Ey7KU o r#IΆ.Ir~@:H:P8MV5$ѭ%Y M@]7czRR]GzKf0s&[FGv6]$> ݼ&L?0>Эmf"sFQq6ބZۄq-cZr$ʺ|bQga*QU&7jSp&+HE%nhIM=M*>u$։.Tx8[o{_yÿz9ӿZmS{iT0d $(m6l<ղ؄er2`>uԲ?.[ 7cRAoڞO2ÐS; 8I.4 G& ѩkqs@kʐ0̟60cO\~cg@[T3ՊR-oHt' DųJP[v(karO[0ܜۢ0۫J *(T&Y`p1#l *u| *>6~"\7M0~LKC-rЩ;ZX5w6Ru.O.P:AjyoBJe_tB8d.lp?:kjܟC2K5^qVwV}L*] ljlu&vΈFnY=Bj R=6'pvUƵHl焼Qkr؈JZˉQQ~C~; ~:WFKUlܑSd!44xQS*31?xUDNma$X <Bz?J_k|QGeo%Cx8nd"٪d^}:~B(e>P[*WcAA!4Kr9j@JN-blo1>rFSC2{d"\x!xkwL(Rõ%#SE퐀ʶ:Xbvzq@,q+3$ qWl$g#5FA.Olm֕pw~LO V_KtLD*HUH-4ժ'-QTyz IDAT*5qst@Pe ">$H9AAn4H0QeM*a2-AAh8.R0waCS4*C6#SkJ_X:̭wi32[O,y`kk> /k%0h;)o]J*L#,ߑ*N,>MDMGE[o%aXcֲkӛk-RhKlwrD}ԃd{̎}Ҍ6r*RT+)k~CJ"*E?7LӁͨ665 eQQ4N*Xv5dK#[$\A QF3ޚBmHa+g:熚nvR,V$%%i .µwNn櫀z w߀z8N#{<6dӶќB//f;B Gx=E;zI*h%Hye?6`ʹj8 lr/d,Ǒsch8Fm{6̇`Dt\,I*lfA[ڨ#*KNanHk`&&tT8diF?x .9B {S6Wly|fRnMGm6Q͠}]x57q>G>$x1#G8g&D*m@Uf 5XCBF].KkJfXPgwC Rv<vxl{clyMRqiO`QNo'V6e=쁈@ww(ֈ/|ɠ|7{{ic(7"bw*oc}*/edzPtt %~LIQo=(1it:لޤa&=FH~D`zvXp%3C̢Nd\ȯi8)L8 Ǽ&^gr]}Y o?f9[+Zu4Rtm]X'nGtѓo׼ ; 4Ә0Ynw=B^=s{Bi2.Ìo\$PEAʻLJY.FV7+ri3a\S2J1?.p "f{{=.l($xq b1E>l0Z]D[X$6dD;Ql)yP$;|mlvFt[§.RR ^!Roaj(S?UMfުZ4kݍV֍03@BlHw2bU *2FAɲ: ݌YMUtn8Ի6a,s79HjdzZ1yŶ܆j+6h;z|xxx׽ݰ]Hܺij\ޒNSoTÄY'°K:vmL+ :8j![c %3MD5L7y(+Oe^"Fզ Hcf[ԅTHbxXc8RTZD11"e3inVi8Fdpx5*:p-#P \/;n͸Fy-P7AA3vvj'y~`Y.},Ou @K9O.Zө5ۈ~m=-՚-m&H58 YgLh ng--)#Ww9 #N1ZT;YF8 $Di),dY;5Ћyrc#cg)wixXKfתš D1X*GJB53o+m@ٍn}d"&K I-9g`x.EL&!Tz:|Fa~`թKVɭr%kaLŏ47f; 廮%s}pZdm0 aY!Ji)TVـ[SiצY٭p g ;)%[NTQ{{r7V3`ZY2Fֲ\}S{hԔ& Y%$s‚^{}}#uD޷aW_tf4SS2rI\\nhrUZ<44J(Y~`X7P֨7R]lߜ(`~e&\m:u:[7]mJN+ƁA&*\% Ze|!5; i,i3Z҅f36c)fqlKMAkksF}>uxܐHM\=ݑ]:ݮ/{ޥ}@ygϼXǩoɄgo.&J0i'E ݞfX:KcIkpodG&;v(F߂VGn(\W1` }*<Ъ ¹P}xVbV$tA"[ 暙'`XE|>})@z7xGa>o19pb^C ex9[wI˶1|`;ScDmk;wݒ7^H3FLE&j702Ц2"- ^vê*ɓ;=Àϐi>axrZnܜrsP<4輿{8"fHvc`y6Ɇ"Ac|}{bF%!-]m~<袅Pz94s3(EX]~O/ 7u2QN$]6J6n!yy_dnE^p7Dゥ/eZx8_+A6?JFk,r9`mjW95])Ev-ДPWBXh 9תWӞP;bN&unWBnBondhkD-SQ{1cH!mkfjy =a~kT mWw>6_}n#IuF gư۶!8/e4Nh]h8Sr5jR0BBPĬ)8ikâNy-/?nZ]2>$+Zhsc")o`(CZtpOQ1D5 ܲvلFi/̡%c\_$E]Dh=MGFAVo1kktj| =Jy,h%qTSJMR:>l&TF Ul 5~ʽ4 >q5{] 6k=BȘ5QcLexUoaC!U6#'߀Պ:g|Yv% ƴjiSu4o%iI]ƉC3Z:7{ָ"gbݖ0sĕH/.:aM40OZ4d I[ 7-3K6jL o>餿}t06s#Y7iGE]ۥ'y}5v<|k]2Vj0x:tUB1AypJ*ed=]T1>UDxK6}N ǫ"}5!R(-!ԇ񙎸k:{-p4O;MX-bn@XGpmsۂPp+WMd_*D]`,)z+E~-XF`W(,zeg}V('o PX3AUzDW(@戦dY6/6}\K?4uw9iLbӌDx;=OMR2A4!]E0YɗB.&xW"BMJg1N&պ)( `=V$p)?(f pH\RNIed76 z&UKB<YN9tw@{ŏ>I|i)_nH;yX8f ?L{ɩtÏ=Yb ? aa,B)VýAA8zq⺿]^ɏWY>wY~e|֛/徽 ^u`73f#]*S>L-+ > /%W:ʋo}1foaMLt$`SuZr`NIZ=@Y1hR}׺Yzшz|4 R.v}?ak502+/XMs-*Dž~'}Z"oKQh1rj)QSl>iҽ $6lnGM6#2_+~h2i;H@K͑yRPۥ#7S<=-ih /&umS/&eXS+Hu|NcT{hJmbt ɰy@ktaK4\p3PTq>rX큺\9:/>W}kbj$iսi0ok77%S㻹/ǽpgFR oһ:\"4&]L!2YNԠDXӔw-r7h 3ϑd1]o((S0 ysr7cF8i&+ՄM¥; m[ц3% sn,dz3lks=$bfQ5>jwMEjgwƧEka?H @`R8feQ+Q;u#2C.f3|'j v,3}޹!d ñXu`D1&2&2L ƛ^`܌ i6R`kv7ccji67C=! (yj|;!yL$-Ƹ׍zJ7Ē0Y`N!Xc7nk1XO gk8+`Tzحkн%hZѧ)H7$rnr9tV؞oOg'y"9lMB%5g۔lқY Qf ׮6,lf\-o3* >0f|;-s]a'B?Dq gVQ +c]Nv< xm~CK-1h4О~zV}J]7/K>{u>;vf҇{EZXgʺ3X /CdSr4nԥ`e77^ rgo+W16!|D/2b^"FJj ͬͫZ/#䔰*ә2vL`j~HÒF /,\ iO8 0 }l7_Ve^-US]0$]4ۄdW̭5ed k&"(8>\ah}_f৘ qo{JEL ʇX!KLOLMOa1Ds4͋l| o5c/lv˺`.#=U-GNQ7d@ JùA<P :p9hM-ed0(#%ڀ4 ԑqQLT|/c]8Qj+-}݀$0̄HOZ! s?rsB.2P+CrD|)tBܞ8m,Nm@Mm`m75oԯK7BfRϞQnsPVԭ~#p(Sr5!.~rѰ7 ,i*K#^MhpÕW3.Ԛ`mئ!52/q͡br|]/bQO8@C_E<}04R_P#D tѰťp%/{ԘleEf\uge3JŽq;YH0#ݭ*]m?sOM@zQGj 0og̟ @{77q885G>Go1h4Z(!dapRy*hLcw"1v]M҄"ϠgT#H#cS l_s7|5P6SOAJR^PM/78pw7e.'egyps^p|54<\\5QBX𛢧A"'LT]Ф0>F11/'cq@)6?h>4zJyAh%tscQ`K@>ǾB}fg ř~h}BX[ 3$`9__) Ȍ702(_N}]s>k&q>_pfzMVMװ>Af%E!Xb@Yy IDATl]#[dB[I44G[45]wD@nwR&CЛz5Wٗ)Z#ydL,.ξi;||e2O# -w1sŴ*0Q!~t[6E@p4##\-z6mx'x12]Goj5>@qjd>&np"!d2Ŏȣ'F-i atz%]/8%A,aOS&C:0~+ހDZ1¢q9MϺ c#cM#vD;Ƣq08[Bx1iG1m 4N&Xeʱ5"<|z"ؔx ֵZ9JYuM2Cxăr~NEK; ,!̬ePu>׀oO9 Lƌ{Cfgԍ]m/(*qD)0n7Zh7La42MӵM喛jL0 ߡ ASx+Q9ZG;޼G>&Q"Su %( ) .FT\[Ka|B ' .2O{6c'{7V!'zq%~Kt7f!O4U 2y1MCƷ&vu{Ƴȱ}9!v`^iuh 涤u7L#/,u|-q7{wP:By=Y氃٘ ‹/ɶ"o)W F?ٌ% $d'6g ;ӸyD{8xs".Z6$lƐ;ti!ǦkAz10]vM60,yH-[ڰԱKqDWک& Q GZ8>zXQ , M&u־ K\'73՜ 4(r=` ˍ( "ǒs5 .6^$+bA<¬0yG9P)2F=6}$5ar2CFdfߖl6( EMu^dwyܷ,'0UzAd/9˵-`\@>ԳQ\(L O*)/8ۼrNXbsm T SW~ >4p&^Gn2;0ixjY*(|6<<# ptxk\DIpgAb%f@͖÷PO)=md<Q1 i S/,5rqG>D:z6ԺƳL[^6Dq&og8j` R RÓ-=J71IfXy a|HNw -p~JJ76+MQH0n r-ʒ4,~Ӵ#l 2Ţ".9)7 c<:5٫Ma:@C8aZ<6tm$_V '6IH3"$n(QX~4K=@+3"h!:O<a2e2 P*`:S92\ e7aN>ŧDAf&8űVwwʒ&0,KS&R 2"y̤݊eԫR{RvEAguǞ"fNSkQ&?hbj15P: cnЂ:c Zy+QHa^ڶC==0g<(_ vQ+Z;K)0^k#I c9m]p(lkQy=ؠd䍿{TRIFrC1@U-Γr\t$jo@/LA\~uHQ%.-6 `Hhu-j2Zr#-55&vp6ROmvyO?ķ2󯎌}$Q- ُ'W*,2%p5!(F+ "P;R IjܐBX~?vSV'PCd3 )L>0K܏[Pc3N]rhM&6ݯXy#ie~7hrӱc6!hm2 )9:`NA K]+Q1~ Yg{{YG@Ѯ?Cbe'9OLkAώ:l˘TM:/N'`'hp.bY o1O?Qr B:)-:.v[i|2ˏn>Ar-?z4-v(F N+P @Gsa2zI?6kÚ^RI"#Zw6:2rӦtBL$d< ->}2[#JP.lIveQxSh'`Io&SYFy02߭ xe|Z^fQ7B6ޏMG LA3DU.hT/hZGT Tac ͅz\d {yoFxL⹴r݅fs:'SKGgi=(/²NZ+&5~ >ҚKV?#Eu4I fJ>ȕo d%y0ʵ>)d)Y,ѿ͌wRIj߬57+ڦMfOϽ䥜 F(=H!k͹^];%& Gq*D&X% نoհei"=0;#zrM`߈-8苫M 3 9+Frl?9WkrGJ o;o7 8$X$qjg(!ma (AQm9ASڀmkOy;XK[&PH)5ᤧ$ڿMn:Íg#AP@MۿU5ߺZ+sӗ55}z!Z>~Aj Uy8Bo%*Җڵ댕6G"oXz9նjٸ&ksJ@gqcqP-E3><] ~*0%-xR H\N4{ZTkP9> ۻPgQ-o )g$H)c6Wp313v.u@wFB|خ=c ؏Ś-6PXJh|в$wA iKvQ.I j5F^cPwmzt>l&}:bM3>,rfH=:4MtNK @^Yx{v<3L!>ig%ܰ~l2m7mOk-7CTs$DLLԊU.:QEo\jQ7P>,>bTW$P*wN6q<k8-RgQ( _ )Xٵ&֕M\Q:T52sr<7G@a׏nH57Շp4T\^[0F9sY+Lm'D|0U ڭPk߽gE~j納 ԇś]iܩ:Yv\ԊWp%$V{cYdϠҹ{fV,W|ҥ8Jgw$ɗ1@˹1ޗוy:2ӞkҰ SqQ$қ'@x"&5/31r:q3|S?LZ2vXB+bM^H2jr!'n6R^2^Q >X峙y]lzٓ>zEL&2>ejmxXdLfGQYa0sdp 4+tJӯ)Uqf.{=e; $s]bg"E7uB I mށk!δ; &\ F ^T7Ue F?};*ޗKjOl  F;}c#3Vn(Dwɕa6XOvxSnTCh>r4q#`|yQ.t a Qq!$5L=ɓ lW9yAz ҳqX# Pd_253l ,gҾ2&20hBq2󰻷a1M2zbO3 x/+j'iin -Zbk>[WR:5ǕDV1:0y aGPņ0uZv^al3#nqRHIDѐ*QwB'6W*4YYFE rv8VrAEɭNEf%Ca@or\&`ߑ] $*M2#*qyRRɭq#aOXsUx*I)gUv9mVAϪ-fa\51QRD䇓PP-1'!$ R{)ZsRj$zN[Q[m m2>p{fVzs6>5v+UWkc  wA{S V `Ծ0*Q{ݽ `gܣi{0s1 T|"$rUc>ҲgD4,{ MeaG0GPWuM9Ϸjh]qۿRgnDڟ3[e#DAK|2hp31geoDfZhˬoi4zOo?~/1k:(&qEnQ]ΓI " L:f~qVDGY]Q[oJ>9U?S2>sfO_[q(8l&Yn<^GOOĝt'/Zw z,iLB㕲!%y?B1(0f+Co!QTJDC6{MdOu$oѩ ȊűTdZ(,{ĖE9 a,Y<'`KEnLPܐ7zuXTZ6,Z`FӞ$xmnNMĽMk4'di){H 2={3IG BrSO.S~s5:8En 5+Ha/0-9xzRte:d ǔYz2 #3*ǥ)VMa@Hp:Y6}λ_.df"`h ƱH4BS:n^AyeMM@}h9$&^wy$[5m5}Vʳ\ꨒHd˳QńvI2ڧRv@)zis55`OHA03@ieCu i罎2 **;{$ 0RF{xEbŇR=h]6JsOȆ7Uȍ']=Fm#t- joMhEر_šM8yΙuȍsդ73N T|F#3Lj(#'A5U&23|سY/8z.&n+hJS੗E W ͹FS}|Im ycFjB=Eך<0Myq g4/{-Hɨ-"HہG`2ĕg{c*( >`Mx6; ebw[Uʢ mH%˸LWڷc-c^DnO[`Y>?P&a!k;ׇ1O9rKoV/qN<.e31Nf6"n}+2ۑ`3d}rրO`z_xмB-25V[<,S<;j s–zso^ ᇖam-]T`1wEl!lvpiA7 3-` 9fPtx.g-lBg*ǯUIpmi0Ow&I @'X@VI9@6iyT둙se$-"MF7RASj[[x{p"Qa>i]oOiL'g {~"FnR~=0 @ BnIDATW΂4/{# k٧<&'iq'^ml*"3֭%D~a #H}Fn\R]'?9̉g4i2 ?|`Fcº42I;_\=c]vrg^߀~+t!iov6b_NMMj8|TU ҀF`;/{7iA3]a> RE `7VHǂw60)a[uؤc L7pY CQ6LhQW/| &PV3ĻX`d|0}{m@if |tb$vKV%Z"RT18ʓ rš;c ONڽc`F8[€[ &c.X;!ژ !giXMD)_V\ CV"m [gA7Xt<O`2<'{j|ߘ sU( X|`D6~TL7x^nd!fq'{ٌו~UnP(\O(rxua`s$I-8~˄.maN%d9KD$Ep<+`MuQfo`\JsɅ݉; /0zkUT|FcnJ:q3UD!L%C(Q$%@1%j6Q<JoѼ*dj2)HNH'=qatU.ge!6iu|Ic!M3l?Fh>0OObՌAJj85e`#{~48+ {b0L)3H 'uJ D)nm[%gr1]֓h~y<$ut>#mg(}Ǿz:d>y0w4L tp.cJ\WS Vh)v>rDO/@z94lCWKh@9NkTuJk v,^>"eӴ@-R n?L18@'4YR: #KTb#̘X챉ie4sS9“\潾h =|r&2a6F j_zB2ݥyD%Ht(OR?j4m#QŖ(f4̦M4QGAyUgAUFmV,-$ZN ʃI;uMh-褟Ix5#IDH 4E3F Ru9)i4,) !mgT&5"fuH̶z{N4 d:2ZL@QEf>'(~UKġC'?_LeS},J,]-gZGvޮ{jـ!jύ2L\O \k@ m%lmH 띭|(ׂRj\|00I9~Og^b >ofuVjKf sNnFB`OdK*< {7)cqJeeUzpr)ftlF#Ջ*ҢE77|{z6 \WQ,P>lh'&Р[lIxf$+F5&:mhJ7Z Xslp-S,PdȾJh:QsݭqɊrgg"L jjA( z#Bc04u¸Wz *O ~|.}Hgg`Fi1ǁbJ9H'O~ />խx1|Ky -c8v_ׂqEV>XK]nb\|4du#x~ﵯ2gW!.+ynoq" :z&<Ϗϋ~0G5j[KeK%MF ?b',.7U?z\1pCag;o"l3q`4T`he-M7M#jv`[gdOKɲ:Bn.gxπ Vra` \vv['o*D#`q*HW|V_D D%siR( xʫ2h(T 0 LL"p7ᛪ\c^Ю*pI^BCκ{nj׼ 181vWo\}1"BpS͜l#PVhzZ8+s#%9)toȰrDW*L]y/L{GEwr,ݸYa9x  5ssy"zQW۵'LJj#6u6 >"a)A6K _S)}8*׵!KRurmཔnA*W`}Za3I|M7e%@[挈IENDB`xteddy-2.2/images/xorca.png0000644000265600020320000005440411143371632012676 00000000000000PNG  IHDR)bKGDiBը IDATxyy'̬эG!$"!`K<,Ѥhjd |OɚyEZ3#ych{X֬W4]Ri$"AH A FUd|Q_DeUe]<"#jo&=gLJ5JѷNዽ՚oIYؤMpl'>Wu?^/ z:!i7x7<Z>$-ۯgK;^{ݟf%o' C.Uk֜f׭tTk 3mp[U$؋S/]끁0Ju]8NOOJfƽx[i7D?[qPuUB/B8ׅF&?U<;5w%x3w\o&pߠnQ8p#7l8aÆ/V9`Zw87u]jr]?o&ii ׉S'+nٖ$_5@ZZi/t#CRBJ0 l۶#uі$;r^Z͢G}?9 qݑ m;뻶c#Y_'b&4%_6fL1zT*T*z<ׅyy?;1'NN/JFcj`7:hݢ{&J\[#^c)ǁp<Kg2p]AGag/-vVWqu}%^f^hj=;؄UV-^*b+\DR۰aÁ6|FJ3] 39v+vKS&Dwj@l0 8 N{-LLL|;׊ٶwYhq7ՉJ^C{LBif>kDImjS Qa6uNxjqqq}~V}i7ȹ-IzAֽQ3]XB )u]M5Xjz[HR }dj=q\_rk[fcӊӱmoF(8PJb3Ŕӕ*><Jb3^"u@eePL8r4n%k[7BmP>3nRXzg8u߹}%WV̸wcMCF12HJђ+Y!g'FZ|_k xm-V/58+Uϭ󵲂J7I~hz[f @y 9L6K1=o&^ɓڏ 7{Z kZ-tNSc8B8":d4 Ã/xoS$%dFjӾ'Gd;DپNϺW@l2V̔HR[RʽjV!Ğ0 )g*IHwIu}bdyy+EeB+]Gm֮]O'$*# +>uvoٺΥ= 8IA_!R6LsUl6~d٨&S ~SN u5ڒ᱓tR7H[ylURzb*zjY!^@RXgjŀ# Tiܪv.vV^ q8)]ZZXXX],ZJj8Q( @5R4_4+Z.W׻ fgN+e\8IݮRj`{K :A+l<]3: :8q~RjmA0Hz8{8~8*B^4dާh zOPr$ݩv VݻY2I `B!`Т.Ү.W:t `>9hin&W X*'L-P+8H2ʞ!2ZH@JcYd,r}}rz%=)K)Q*pnzvyY[oIh(W,1zz>PI-ihHnGd!a\ВU;T[weVq"M Zr 7u]A 6m0 ٳg155b`\9ި+%qsDn)ܩZ>iI 2; ;4' %  ._L1d-,JRI"_4\`bjR)_ }&U{ƚk>&Μ|efkDqzR7zO(,zD&i骤>w0DZJ$$)/tfzs%"W%!1! .&u8w|1#:j*2ۈחhDڽ^ڛzJ5ud,| _e az50v[;jRpF*1ʀ˴MdQlku199I,..VyHfd (Gd"l6fПA9LOOcnnNf2 gffN5}|1t%IGcJ`V UJi )n3_\Z^tj0&)[p -P+P,`q2st5ׇAJf) G3U#q;AM s>9W)sUIVӭЛMK9p<&߂űNb4ol',gJ*\,5qIyv ;J zݠLϤ;[iQo_D1p͸ OӧcRcC$~}Ƴh_(?Qu5C4A|}H{&13K )RJ;]G ]tӁi劀1j4wj#A$:&8|vO;6.m3.ǜl|AYN; QpmKv<+ J!Hrݭ.K8o\SWcI b+fWLrRNot.^r&ς3F'ivTf4Y=T@: ۞rP,輭JFZK5;@ԻVt1mYydHq] d[W@ mwƳˌ>s5D#.AOMb2x^'JU';lrќwBj١9"ջҺ)ɻ[m`-2Ȩ-yBY_|Ӟs>PnkQGu(f:qy9G@P дIvTQ(ړJkPRNjIU$ Gඋ'gIhK%-Nb%xA(3f/I4:ʹʲFF|f9k5Vv|*c"т%e|__}8&}"sm%@t]wKrUpxaT߼".2BRT(Ǭa'3#vSu]XX{WLJZo8`P2婓9cJHmW@ڄ8(D/~=f0t_#SuL]TqR q@|`Cr4Ve;EtvbѠޚS1Ay&,J{1Nq5[8;[w ;鄨piZ/'2Rĕ'/b\eN{E ;n{sۥ(f jw\t i˾׊osڡo_PMW L@%ZvB󱐕1V ]XDlB9Q'Orqy7|+ߋiJhW}Ķb<셣sbRF>l;ǜ_ck6.q `YZ]B9DQ ]{1|p~"}ZmӮۭ(yƲAl]"VR&;q}'iۤt gxA1lU5¤7l|r㒕}(LƝvDITUYQ;)sJF@1KaJz & a!U[ezp`ߖ6hmǩw$;~c%{ڦ_ #\av0 =z:#Y]<@ou&yǑFح~6{0w v" -5`2uܐ\ClQ 7꫽m8SøjCDe[R|B1|ZO;ϪE({mf$m|)iI-0W'a`erexUr:?}*M*C0P;4R0ɘ/>r]Y{%pm8=Ӓ6r:6՚]mllvW!ycUm $BBnW\GV%m.v 6Ʋm][O.\+Vڬ݈7nmmw;L ='sb*9_,:*jܖYL Ê7*7Y̹ ov;qkq*l g(̸NU?Q{Dž0jm;Oq@Qo>nhu@*+~ ɃOL9 *7Iuάj,](30sEw䍼Q~xc{nZi9,Qڀi{8r]pǨ@%IbLVmOv[UP~7>Qϸ6>6mrٳ|ߎOvׯ<džݯ&00845i ~6pu}p@%I漵bwv&UHj+>l-NM&kV$9Fo3骄5+ TXݐҬ%}M$]21}b{[k o9Npv ^ l% ۻc׳{q7pgjs3qXocIɞ=;:t/ܩW #.c~*6 EK^ 5+UE,snzaMmtZTGImzޜ 7^޶$(8v6|#$lG_s{+c$K&6S%.ɈAz*&6J%5o}=KuO*"\۴ׁV|±Uv!/TqNy-/{R~ܱUx{*'YT (.k`>J%@Jٲk6,"0dp‹)IvUuT:G4-/i#^Ν;)}p7T!=B<#j%?[=+&:gOgI'z0̏%(3xɏ8{hO\VF1"T5PN\ H836  + H/d3_ZB#h۞ '*ոi9#6v"a+yx79%xi5W=Y^/ 7܀+.vBTRA IDATN.u 0+؞帕XjA㥌VO?gkխzOo |ol) '\ӹ@j i Jq-2?)eSj?yyHQFJ孕M[R*/?|7t.2֪KorRGXԓB49Hߍz%<"NKT*K*Ӿ|Wm'_R՝ۣ՜ bÉ6˭4;d28~RʆpIp{L[nьըsMd*js\|d C]q|Z.Jűm#Ns!}&q9hBs1|ұ $nVaƍ-<.\hV`;?Rjj<Ƴ1u=McyY 0??o1 k3H=ORuS']Fi0ڵ b,RIKYRF6`\ 7)ŵZ.mImKy@*4 XY=B`xxBaX,^ voʹ8̹Fuٸ'b\q<*M 8ԃ رCK0 ! ̥RIiO/*yR1e Xqe{y~ kC ߯lh͜c,9c3LŅlGyHm||aHp6Q5^I2fsdb6yf |@UX.iK=hL*r8J%d2ah#d2;*]-ˁLdF98k_ߵLMıI ’濳w>xSMW0|#jB`<{v$ף艳%楓9O /-0֮O~ JT2^nA)"S,=ROq3hS 9EspMJ)G^|_<쳦sIZi&[MǂnX>=qj=<ft.bss@$4%$p@o*7yH)뺺FJ'Hj'4*~'(\Zgqd2E z4J% 4RrgKm2H/ܜto/9{?|BpcH[5ꀬ;gUsUv"Q_uM)y+TW:P(`ĩJPi(WB289nLθ]5Iw.٣%e}Jf2['IFem.oyP\{W^)J^x:)%{9׿K9rD{=N"W;%I[Uuq(ZOA+UV]6")λjp #˻ IސÍx$97Uy├B6]a٧qR7֭[__ŏ٣%z֖8Rƒ K6=٦*===dVѩvU[ 8y Iސ-Na2;55lp'>LlpbZn.=p Nk/x+n1s@Nm=4Ip '3n} mۆm۶aI8qǎW_Ź؉6TfffX;M@dO^(.4Z\\K/ic iO+V^v^(222DZ=88uG&ΜيĘ+ԛ̤-HX`@NyQs޺.cb ?C [gHU4#)jZHe|W9مxn$bO,|ph1n0}_tӧO>DlVx5b @B'c5z֩T )CZ"|qJ;N4n~г]f 6oތtbd2(| ʸfӳ 禧A/V;OIdI_}i{!„Yn>}]f2:EUl6 XƝev\YV^UYѦ09MHXZZB&<>!&&&F_xᅃRJ>SO$$\vex?k׮;J)V9Ą0'pq'w_Ek9zxl{b"O4]W2)m^ޒC!ʯ"ͨ C]k@Wє)ebڵHG1qF !NkIEc`lvr iGOذqD9g.[{ ٪r_`H>q)%M3 ?0Gׇeyd2A:yx+ɓ';w8Iw##ȗ_~_~)(͛ݻ;w||>oIFzN|REoFA,.-^n0u"ءM!ʔd#Ϩ|ҦuQNA7 33 B`_|1W_=Zu7jA`vvV T*ի1_.&ʴ!048իW#JE gVի(L;"N%|ӌTygq"*8#UQ|_0޾cql%J2,<~}cccMV;}ɿO߾nk?d1jM0`"  r-{'DSH/s03D&ƦMk.UW]yidi|ꓟĿ'tqMNhSѹ3]O𰎝\.qXk.bp*UHT>y]$@Hv U"4r}}5W_K/Dx*(XZZ}W{o?s{fiw}G;7|'mvM6s:\#\+_*~KKKF UDNhQSa16QMAٞVs4`-Xn]3xByw\s'.kDa5ۛ8=6AlX} 硯}XXX51W`!N5V"D>W`6bx`B/t\z);0ff>^~'|gyfߑ#GAZ3|gM?vyl__y}eo;.R8ylܸ8u)o<33JYH 8qF=ϵkB` f֎XW|@i \8O~*`+aAka-KK89: 0ߏ 6h~ZOl֞,U*…۶=qx:]KXn䴰F Is ;ٹ9,.,'S=z'N̟NPTީֶk;vw{>_t CCRI~v\ Z9@NwJf#OQu՘Ǒ#G*O8NqBT*P,bll 㘙<Μ9#GK/ܹsKqb%Af=/-#*GK_2O:j,JU@y}q: >{3g5>ix{hH߾}__o]!rDDc&hJ^:B:T ; S524h5N_'''1>>^["W˩aD>0 (ݒvAQՃ486?]#yx?H¾+p_ܶƙ>{衇m;vܲzhhcEʨGKՓ\JsP;&x ߳Y-٩P*|Lih=(⁊!U.5)TTgnvSSS1XyS L4(g|kwȋ]u*;uS+m֖IO?b17zY~۶m~_tERWWrDiŒBUreg2-ų,\/0"Oz+&Ξ?Mu 9 Dt\+fQК- Iߗ17; _0`ރvJ8eܵ9l7cŖqf|ץ ǖnmvvc=ߞ=|k}}}[wڇ_,Vǜ)kQ>1r9ds9#͢}}}ff:G H*$ I7ڒq4yC9% !/ N TdUM)?:PU2m+)_ #w&'ѣN5تIڞ!$V޽{?Kx`$cxمm;_<ܴOeҤ ,*][111Q+T懓+hIA"R8B)Ez^F^GI 6W)tb;t9eeN^;6Жǿ+J0l@1GRTwéhɪ(!ͤy:F65tQ{W~MsȵrJ)tEXlB T `b|r)) HF_d89KzV1sjNZzoh OUAJ/|.)X$_LZix\N+/K˱NUʐk<_/P ;$s&A. F]扖R.w@kw/CسK3sp~sJA"#g^ґ>R4lk#w_ᇝʘk3f#fe3иdEj}[B5JC}p駟>R&ZvYB;3Jv><Owu6nܘh 躆^TOM\~衯|L}Wu丆F^u2͸%([ǩم'TŕW^i^2Rȟ>VŚbF1Jxgz;J2*܆"e^l53!/Zw[0lU~>ѺxRr׮="G(Ǹs@Iq͑Iݥwލ%dUIDAT}c HE@2 /i2D7@TT(e`<)ȁ/_vc3XRyVce?ԑJv^ |o޽RB WHͤFrI0 $RVL lLf">ċJuQ4bFqw5r SXU*:/WаF1A5%Z ]}ꫯ>O=${[Lx&bX=/AUQݶW]uUžaX*!`V։0.Blܸ7nc4"wsM;9ab|| 6nITJ_pk܎:,+.#@i\Bŋ&T>n X(4_ u}mWWJo>gϞRV=n=~>޽_Xkcת%dYSB`?~k+n:)rxdvi4sG<"Z+AEHr)z'=5 f_2l;P(|F?{$;~cǎz?2Ф0D 6쥤jA8~``Jm綿׸XasEc(y;4ɇV@ݺe x c^šפV#MM33c0( @k %ahiMm+gڅ$5](N.deBD(9g}?_kDKMj`6==}W[7rWq3Wcq%E*UW]8 '?_ ́_v-~c;OƗeٟql߾]OxgΜŃfT*WQGDi%\6} TkzH|1tYnTHU "JұlV#v>"OoUO<>HcX^iyyk* zRT`$q菰~zÙV v"&Tk5MOOcppA{ŗ%;v WE6t'PCT_CDmM +xEz6lѦ'Ƒ_,FEpUQj?88֝oN/Nu''w~ _'A`Vh-( z 4!gř6uӦM>iC Qf;c@t*:tl{*J{`84G"ˋ"b !D@ڬ!N)|`p9 V*P\Ko'L%pETlڏA$ɓ'_Br)!}"Z>냯Ve>6y)IAdIa Y^K^p=耭AKpƏdU=X rgay-^{|>?wo_~ǦMv^ÝB$<e$IcD{}E$y}t^OZ o{۰m6 X,bnnN\ܻN]JQ(QavfE!ģUIEfowc\Iq*ӓb%ru& )9,3RE8 0V5*fk/^)[@<-[YQj\ ' ݍRa(́&`RJWرcGeIŗ_yB3338;9SL:M::|4ۢI<xHm/p׿C7IxcR'~/qnr5& |c\7&j06ajrRWZS}Baꫯ{¹3Z䶴i}n~뭷رcQNu 6y'Ҝ:u~_k?fWВp@YU' NnĨ6i6D6:JEոi׼|9WM!D{Er | b# hiZjӫX=˱p"/xĝ ;s}}#Q,11`7l]9AYꩧ|Gr*.y9oƉ,ܶ>oVTw0 v}CY~ۙgKox F*X\X/xe[|- Ծ`DJYЕDN5$;8;3s''|eܹ/͝\jH>Glo>)IQՎsݩ˛Q-e!$;yUߪ䌋yhq|j..,`iqa`bbbgRC$ܽjpPf[p@:}UzUN_λ?O|N l /~΢K,vzG~CtCBT DŽ|-+76vy+VZEn*(=طH={h<&bϑX:ODN I)q%`'ҒQU6Λ.X 5=ƻm~.Q.AR?4 tiq!xCZh9=T^6bh iuuKEtɧ~͛wlٲes O T'FYUFh 3nƍx{ރG}|>dR@fY@-!9YRTB>FV_|Ρ⢎rH󶖼8;1q ͶZ 6z O'3חf[mo;u8gPR8:Z?nfLNMĉE Ƥs'0̢"zœsg?SRʓTuz Kq5kP,.J臙Shqa~/H3u^~nN6鴭G=~שTWy[rlq$i7݄'N_׸=&/:|}}}z<}=j;_ZBݨvK7}gώ}w?vfؕe&jאL,W0D6n O i.naTdOկ*A Rb~~;!Rgqm5?} |?"(:l811q`nv)܏H}U0[EN N9q_+etx+RilΝ?8Nb+d;eBkL|@M7W,`k<;c; Q*P,PX^cO/!P>fϽ^ [-n?P3.MnT\b|=uLYLr Om Af8ȋ/?yLNM* [?yy:^/K)J)_RF9F^C基'w dI O駟e]vfLugm鬶'?wђH~׻099; 7$_ZZb0h",5Z7,WC4nh0+կ^x~6Ξ=;o}믎;vhΝ7f2UqP(Q\EPAv9숕ׇnrxg忢7C϶T(X*ٳ}q)I)RJZ-GbG2oϽ|ϵ:6?=333cvQ6^݇g0t"T޶w؁m۶ᥗ_.]%*}%" hW[ҚM|cۿ˿׾GK/q ItQDy jm?i Dȅ##={%]I/yd/~' )K)"",@h =u]2y Ν;U*rҼZ0`RSeR;uժUߏyX\ZyDv zeU$%lREjJn{Wh+|%{ٟٻnߵk׵$)@SA L%=lM:_ٷou!޴yL6J54Y,//ciqcOR+orDv@s]v~Y~0 l6 qRL\u8}Ãַw}%\DB $]J+[n]784{sssxر܆ȫ^Bfy;T$tx/F\UW]nc?c{=W^;yO?}'<066vx8VBv߼eˏ{n?y?bCn z/=jkguw{[r87SI>D+wRqPJl"Pݾv[֤['}G5: ^k N׻NL*oη8'jg]7ŗQ3TN^7C %* ^&EzTXtSoftwarexsPMLOMLLV033Q7070TH.,.t(-H,L/J|jx3zTXtSignaturex3I360M4071I41M27433447M30n[&zTXtCommentxs.JM,IMQ(,PHUp R#epIENDB`xteddy-2.2/images/xcherubino.png0000644000265600020320000034510411143371632013730 00000000000000PNG  IHDR,XD7\XoO^޺ppL^3Kl=X÷l!|ڝ;{sPgbq%PiM!C3l#)kkџg'?\%ZK _fWUP+[?Oc/~ s)/۾{k;|'prqe^Ui5<ՐӘnܸ$[6+vV|NsȴC@6j105З-ӗ/yE%V#ew+~K,WjfH= h^ WUp Zo- g) n~\|ͯWW;wgūGa@~^| Q׾ޟۗnnayҾ}%Go>O?RڋL ]3\:/ko>GL[4%ṙ=zr'5nKuÎU $HkBTⅺMS6ŷ[O^ZzݝǬt/_iS/\휫LO~x\׫\޻yѓGqH6?kwۼlupS[^}#qvyI0B^0JFUl'xɆ,TL N9ehYPZEB"D*@as!qYEM&V:&s!@ S:i@7°~#9k*(%wC_V.}`+/ QhRvWXf)!1ߺCCRư^n3a4ba\rqA^Pv,=`ڂD82/q jCe0 yF 5uVQi f@)5zMf&9nքX?986CO?EWUPOCb:}ߒϯawڠ8|$BPes6lFJ# !י>x,;eΨ9j`D'V'%@UÎΰ9ǃR{tb"d(- a3vɚtbըmƃbfp60oX3VHTqE9;e=>r0_ƫuB}hdo~7<ͧ`URZJA5}d\\"J>9U1 ⁠~b&NNѐ Yy˄Y.ASjĽf,wLi 1c,ww=FÖU>4 i607dJ"hn?טis%V Hqe8`y6gKz7~Wݺ Z?7ne{nmO>N4DĈ@uҵk5vwn9S;y"L]`e _xBWHL u 8eu޻3|o Ҩu:p6@MZS:h50!mi֨Hޜq39RqQBVZ1$@H1h0T:3Nx\1QJ+63kSB(Զ6a7ꚧG^_FڭZK׿R cLO}?#=Q% NNNX?tز@LpR,7d 2&'d(y<#4°& ވy ΰ2!) BX(woR 󆹲W񊹳춈/ha(xHՌ=p!$FtiD\0WT6P WxeI- q0qtvkj LT$(K!~vG|x9W7I?Uʟ{LJoǻO|_}⃴'`t< $Ma Y݇LjיrOa/2#Q4R3*k>]S"M@\C$5)gj9*u bD^gap6qBV\mnxawuA@~?0rb(2qXais ,w`nꑇY#8@ uR ^D!#ar<2/34Qc$>luz__ZHP폭jox~ 7Gbz1g Dm6 35HN42/@lDC 9JE݈HFP%;F0@JFD!#@#Č9F=LR'Kp.2C[@` Ij:+q BDL!!i.kxsjLp9X[@7e8=eB!+,Ӟ|rF@7`iWi5) Kї|_Q(P2/H1^˳ۏO=wȲ%L[! rg˜`VXz F":L DSǬA2#0 F ;X+j "p[veF`{PR `8䈬jT4jCO#B  DD#S eZ1ύ|҅PQZpBL)uC~ƴ |>wO:\HRi2߼y_yxo[ eqf.Ǔf38BhA ģF{QsT^FBB/ ⮤ wA#{VwtNR=8b [&, \MH.(N zXnDtr@<pDG"9Q3 &ZYGc‡0_:"=BXSRk8Nw<=?gT}_:_dIqյsu{cܺ9$_4 ,`-is!uaLx5TAFu7Im DP1zE qGO֔iBӦ 'h@bGfOQY=ϵQ/@ b xrJWy$\@,41n z99WRpjiZ+u22 m@`FHk 0$Drվe(v,`F ec۫4!^;|ރ&ρe ;,- k` [Tjh;F\iD1+H "Vk$Ej +# iՃ;Hdtjm(aC HZ9C/~;-Oy}wy\mܿ~ݯ)7ŭ =NF4e$# ڎ٭Q㶠f0 ͤ저mN)@ެ)f &^Q1ֺ{6$ t="ufyMHRpz*3Aׁö󩊡1VT1`R hjo0 ]%T2}!#)s/YCz`"8:D;!a:( vB:\392wi9@k CX#q)DUMyohM67]eϵ,vi9.߲Qo=Kyӵryz _2C*wn1jgr C⩧ R ^fBuE8 k+}CB2P U=l) x(qȽT0Erx! VZCsj1dxv!JH9`P RGqcűĺ/Ƅ[RNAE @ZZ7]kG '(͜:Ma0nu9t64>;pӵ]q|>NDA"iCZt~ O Y0 4" G〵!=H} G^C}eVoye ~Z Ma=+e->4y: |F̻I &XN0F2m*j+aZ/;aPAcϬϗsñ\Wi$ ;?B׻]V)#Z ,T-H蛻f&Ѷ@(@VA1Dx t+L42!SAwj4@ WkH-N #P4A!f4.W ͙0@]w: k8L ~"l6L BeYmH/m9;vy|]ZoB_1 wηn'O`tdpU"gX{oZJf 6uUsšњ#,`:7@J%e7{0<З9>, L[*3VތOhmQ{z}ES?bF4 }Ԑ! .cojL?ڄj3q=!aʼnZQZX ˴'DZۯN}}/*_%7ll'x+O}s1v 9ܻeݼì˞,܉VBd#NhtPJaÀAeFv0EAAmDfw!,(j]yu];z#D } A$́6T*&޳{\M*$d5$V ǬݰF&1Úe8!}+-嬔_L;\xթ /3_7_7fXf@˴_27J. s[]eNAc?xV!GG'+PuhbʸZ/D8OW= SU{Z@JEsxrBZaX&6B8hZ/S0* SUtz H[:#eJЄTٲ8B{g**V .f@RFW3a! 3LhtJ\Ra)}VizTNG !QSVK!ʰS*NXݽE_O?΍_ɟzyK}m~̶ۗZG~m-^+@T!:B=\ASFzhYB;:wNYHy q(>܌CG!qH$nPb!t@(> *f9; I'%;*Ps#yEzqhVyT=t$ N4$R$&OnD.&z6. }B wuN$ "fBG.i;87'i&#q}i@  yVi"iFTRƒ/b:_ϛ?'@[k5zySD=m79=aW;7HgQZ##j\Tbk}UFPՉp9uHmHrd1(^!sK@1Q3Xד "hTl+@$)]zr *GjĘ$X}(ڽ#;X4 ݔjD])9gj(y.ԟw:H'5HhL|g1v/ cϺ*Pێ0p~DA3J+3R@ 4W o-svwEU*_׿b}r3ԧ޾ 4DYaLD3 A5KHqX㦝"aZ"20Qɐ:P65)HGa8"#EPV(|?*yEOWQdKߘQ ,ģš\7-VH~cB9FАxӧ^ZPB", H w#92~pRSi̗NSX v;Roc~~D"hUD+;8hιڰ15?}LP^ BA/?˛mb0޽usgiwI[ڵ*3u5bk!Jp!>B`u!ׄww3ikUZ!F=,wwqT#}G ZKR}r2S,p1 "ق!jG|z  }p,7ucDE"ds'Ԑ8Vsc45r ?DJ ݧ:DaR`s|bs$-Ԯѷi,Im>W!IheZeu}'w/ 9tҚPi8΄ep_a+)> lΟxl ԓ?n|ZҭgInjpy(N @:,:WJ!be"HwfHG ZwDtb}DFv1A uA_Qy 2oC? G(á֮,rz6*…V՞.٣2XDںkuՏd4?mqR7U~Ԍ10.PbBEp3DvB fŽxhB;Q\uu>tm:3_hԩ6QJJ_T*!\k>p#oʔ_'A ߗy'~]ܻKe9"I){ڴVmG@( 7m(JP(^hj K=ڬꊨuP蛢94iNr!0I( .bSBnnB.Ǒ!ime?Zb@nB>ZEc!!2MEޤ ͋b&GUGѻtB~5AK؇Szkۥ[]0 ]# *.s?S ;.@J"ǨR`.QbH)1l0rv0#bd\&OkWA[;o 6}i{+ͧK;y]N_vStV+*#Ɓt!lVCADZ'NVC(i84wW}5ZJ0,u׼vP\7itӥ!vH= h,# jveeև[ Ӧ>U4Hu$ r*=F2hɎ=[QN}NOF4隳Gblv,}NX#|R[FU5t_.t F5"bHk%Y:P%$0xi]g.n 7>EsB_\|᯴{_/gÂ3/Y4*i&~Pς$GCF;L%f@Z[!Yhh꼝A&|^UI}6*RzNngъ#i3[c{WP&<͒"MJ_^o ]߹O?^ӐV $@qZȭ!y WǬb=C5$u?UX`\+ VqWd9D3h "VkG^~@ݹugԐQirdfh5Eӊf0P4i֒zſe1ޯ~||O~0nzgsݛز#c-ubl6lTcf`ڧxZ!beIYNʰB]N8WnMG :m"fڧ,M^:κhMZՏ֮>!@BGYcJ}~N`U7$4 HØR:گC-h0UаyB۷^J[; >yX6Ӫ`S}rڌq`8@͂1P+~Yŏ2 kgV@|rr'K,I,t"k%aꞩ`TW 6yE%b %;a-8֥iUL }h N R7ýo>!'tivN1xcw>‡#?~]1A>zEs<XG;\I"h}e[7N'Z_$@#o;1"?{%zwpl`#JL )dT:1ѷKO15,)zUݙ}i? MASW?ۤd_F.[cAkw'JŚ$ L3@tb1TL@GgVE]L iq9~WD.?.V5=<j{%P KL/s<\m^fP4OƢvף"HuCOl>`99 -;}_$$¨vOT +ԽqM~@ OHR,$$LݥDuWɠC?kY# WDfܨvE {kF25^ =:W\y6f|zby6ӫ`%B:hyg,Z)qGҚO-7BZe 6} 7F@}B^< *1(Lk3wtQ!\ѣ_"ȏV?>ÑH#5cWW2C5J vPlQӲo@@:H |sr8~ukOamߨc`N7#w_K6?fԇzHwwTZkE/Ð dZP9MP}z^J;so^zK_:뻯~3Ѝ tP.Wzܧ7%zi"K@}`8\ZQJAK~KcX#FÏ'މF!5} ثiKt7 u>S DO6c=0g!LtDa-^܉A'L N=5Fj"FJƾ](ylVeÚ{.X12V_<}k~8+B(BξiLȵc~{veY4O>V;V pusӶ:Q7f?ܽD$84brt8LR! +S|h_.n/~}n%Լ#hh*^{}=S !Z(9U&4@65zJە(޻:7i"G$L=CFKTՇ!DgI)lJDwkmPI#%e]!yPH{MJmʼnV} |tg8pՉ]$f `L ?l(Nv x:PhӛAaXV "q4G@#fWو 4á; t'O)Im`Hצfi ]f Q}Y [Su)@Q#vtMl?edS*!]sN>Ѭa®W_ѩIٯ`p`iyAOJ'0kEd7wtqTPJw⌤z]m:*kxѱ'+@yLt1rlͤT+r|~o_1/OJo|\ަ9&(\R@&ފ0pWqxV)A}w:---zi:Ӱm-.gt\;m-a'V2mR#,AIWJM"L@Zwd]\(!BˁDW$_dW2 ] mN%H"ez$TtEIoulsl[ѺrJ^ Bhg,NF~SDdrO $Gﺘߠ.ы3Jv"_ӁonJ kVwG_~?C?'kI?[^|˷޸P7-D1 j{_kɄe! |mm#<]g?-߽۟mC4(=XHy% 1D\j[?\E &]<8 ~wVD^aϤy86̪KG(O[pIݥca_ۏ0`8Ӧ4nCpl*~bpWr6bߙwL}읦u#|N39*wD Wg?e͉}݈4Fz0.LD<+ՈNRRVyr]sc -ug>l/^z7WZR >Z}6me"&J8,H/^]܌U Xqn\&ڶa=R7OI-)&#Ѣmq{EyF܀Ez  OG„SIhR.z- fU gV|_{ozoo}?'\<ԍ`F.\S{f+'Z31P.WT#[49VKް 1RjΉg(әp׬]W$ 0 ;z\Kf PV H>'+Ti}%t:z }+N:$]WBH/0]֚+|z5E‚mI+*}\w*`:_h9H a/&6]`֊ߵs͜QY&s>q~Pn7ȑ;le{͑92H/}XQo!bԚGdxB2)sJk*AQH1Eun0!}E%Mf쥪M)8Ul%U|2&ty|u,'CG'WHrZ_I ?]B?^iUkv(#?)ӟp~M۟F0!|w+2ah2;NkOX_ D3ʖIt+I7 Cc|ww086Ab9 OEhkFB0FCWE ^4,Seq5KZMxpz%&R.gGlzNz82$*L:1 Aq;-<7[o}ېxhkHuf=DZw'hMy֌ӴLά~FѺZG yPaP+2wC7mF/,ӰD/WluN_ 7)sp8WCz *c˚|쿦=7=g~1\?1B8p mL1Q K\boL逘2͞kN.F<,jZ8ں"mxxoJXs+ {SׯD?6k/ITk tTFo؝Te꿯y$hO}"x%T]Mޣ9!1)rc Y'zHe 8NY4pH,[RJ 1r~!귐YbD#[TڍlFB+Fc"W,ّ͒.k~d aUQo zv zg׭{qMiR =̄ӑpX/=ݲC][ f%?~1p$^bZCZ&HHU[pnbY9?{Fnz.DZ~JXdA&pxTV݄W`Cy>tuU:0(#S4"#0<%?xiFrvcuS$&8M7X3ڄ)x-r^vkmxQmBVÄY%Pir O'ڲno C-ŋy6գ0*4yVѠVXH3Xί{Rv]@:wwԚQ)(H-V库_LI>*[w%'֍h ڐұ }Q!I*䫑݅aA!ṕ.Q$Ukt$%wV; UkE^QdSĦ@Q=qI:_vd\j$ {!xe.J{gf3|B5Z$ֻϼ8±W4rېj@\f8 1|vs0KU轍D&U;m,(:5fK|fS+b"\,[uP՟w?E!jJ]fhZ"ֱ8Lr:|vAJfVO9Wp"CsՇ?fBKt޿ M-WvVM'19|f@v,@dsN3; P@u⤴ydv Wj9қp;ӛ8G H_݃`D{%MUOiTͳFDpVFm"Hk54Zvtj(qh>Bt:䧯&ʶtˑΌ ɐi3w vc>Э{m4M9V21U^;||?ա?X?ߺO#}F0/Ӊ/4kJԄ^<)|b1,2w/{eIԽs#1ӜhV]iD.Lm~ӥHoF*FN=z> M:)xm>QOJSUO$GqwhM儺>ϝZ9!V &zƘ|- In_C=4.t<.G V}nуzK&;j^)FXO siliv[[2fmk3{Xst=8L{z̨e'}NpDV65ǾXՏLjP֌IF#y]5W]O4G~[}ox:P :1vǭJ/## nLxu_j$-{om`^ sz%Hˆqp:|Yk q@JRU?l.>xDhu^%œH-.iqUV*< V10/u  ir9xH(\KXG?@&cBn$VszB b-ht>`"H*E5& |H}/0),G80%i/bK(f}DDDC)֋ HN0ฐ[<KOewo Q ZM )+e>C3o&PJPBHa~rËwu4spqLJ3>Tdʗr0 )Rw!zDj=側,z .wP<=iޙf^{|`~km4D~Ӗ9yilsQ0,XG-oRޓJ?ۆb7УQ4p"De9Bf}-L77N+1 "a^E;mĻ6+(ㅨC?]\<%AzܮHHS$Ͱa˙z.ӟevqv}֝c,KBNR%y euw_:/ωn)8$K'nxR>ɩ:ahwD+[ny}D<5zͼ_(Xw_UiktzZ 2 0@wYN;>9EWϜ_0{mfF&ʶ=4X&Z }h-wp1{{tz"Op8Q5J;J.Ns00žom??k)3wN͏.BHF/.mpZ 3aEәv0!D8_7D{^hͣɧH jm#ݶeFۚVF7-w0 $nFh9FuCviqa&S7,jX\ױiGTG`I}P=ʨ0J%!T|hHXGlB QH dcƮ^Ǖ\\,BGut8$uwww7juKouܹ{ن+x@Oψ70%cTr#o()wn2oFܣKpvzv@6jRr`3BTN5}K7:v!bUNOL*<9Y\ B:Τy.fH힉+dm^<9ҺoN/ݥh8w,t߽l뵢Q|`؞^5; }ը˦c@_(\{!Xo1 DnDwwz-y:1Bz+؈:'JH_c=q| a>6W?tloXޘgz΄I ♗{Wژ-7K ꄷV*kBIi@.n0JW݆4k nfمV갓 Zݭ?"uR3Ttif9_Gg?zVI>2==vDŽՐZO.g)<0vݲ};28l8󄥙BRtZ 99awC[5_ ﬒~RM>Ɓ7jH1@xDT|픜5W -rߣ \J~urzy&B}D%oLȄ@}Bɕ%d X - ҫevws<GM +f1bQuZ_ {u4!zէИ+R#z8Gw<ܢ(XvM&q\N . BND_ܦ#Eр~g.cv< lJ逢ƨ^惭Cr9g#vzP V4%͢L{x iZzhV{^  sJHG_D-5o(j|–Edb~r/sX;_Sbu:q?t z]㘯5z5SJmN4{Z / Yt˰5u} J3Fv8QȞB>i!+F F&i˄$!hWDeJiA.0EZD@%gYn΄GGQHB/ؔXBL4LB\"0)=M 9 -G;.&,V=l@\914.JԨm4us3Fi-z>XU>6͚sf!ݯġ?KVć3o%ܯP\Q^=ZaϕRV5jiP%LJ١n͇)y\]71:qrqz{@j O1Hۡ=p6v\HSnL=r`9S ?d fcW9jN M> R;AW=9A6O[{:aq:\ĐYs:MHV Lvi:aꮠZ +mG:iIf;ZR2DH@ݜĩ ..\C҈'.:3פ9jA6DwhL)aRLJBe`iճ'mNkC[iu4rk,D S%,3NcүjG v.EҀ+@.`3gjvEcH‚WRgync9k}1b mB@Sp\ʥJ-!mѪZ$%%*\%@DjRh@NSq)|}|.},$Rֶ^=}D10Kɪ>4zp6o0nX`V׽{ʄqw U2OURBc% [|WN_O=# S?ˆO8ܗ07TsR -͟Bos纻C?[pc1~g?k?BC>R~5?k?5#B蕘FX맹]- 18siU٪Q:`6[@RBX7ݬqHWw&UtGLT[`z,L;FBxH db,#L^\TClCM^jHVme3V#r=L_+xJe3le1v0jLvlӪ+؝f!}m/# YF5:|:JQA@<^QYk0Q>|dvBoWoS00]m\[ʿ4Zݧ8O薎<_ԇǾ߰|&~y|NF-l+B]g:3m tqXoWD<~b`,H8PP.ٺ|xU'B,V5SO'G+/Vk+,ҹ,+>Lqhuse61x!sݾ~bpcd ?ZAv#cD"SvtZnQ[>5Q$x*v3|wњJ&0'li9Җ8+yKSUtsٽ {sr㴻]'H58[\SR1gL7!W8߹Aoo]_xΛ8Lc 7G4Mu˟nZ>S=]ͻ['_2/Gޗ+>=wwo/1vcPpQe/cJYg1%g浡קFUEc t+hLJD3]?4.gfBYj{G0 Fn?n*lj\6MZI H )͍7| kӉ44pk$`sL61ګ$8zpuP Gl`]i׊&r-ǹqR[G+m阹\PzpGݛx;l!ZWSk#~Zv`md@ fNGNkt+¿~{~;CC?oV#Z?4_]sq#g_n׺ͳ}໠Z(5wYđNM6.yStC˙tR u3kWGP-l Z+y8Ն ZD $|H R =w7Pq&vkk6Nk'Dе#)O5\t%'dOvFڍ.zNtzW5붡&jd?{]7]BV׶bv; -n&'UqwfuChWKaI+8<)IiQt.Ѯ $Hwr,1՟_xQ{~}꧷!mrׅqs}`yap>]=RN%Ɖxaf [e& ~#[²\ ux赠[&Et]е k8QͮGa ְK%+bLqM.xLj;ϵ˖9>f/ۓ}/iqk 3ւl~a[;  bBLks1ANNYf<#*[.2S[)$3 Ś '?$b/u+&c\6qI1ETժGm!=lGT%bVq-s]27LP}Ӡ'{NW{_|(Y>G p76:x`{ ^6\6gK TJ^5j[Uib=F 7gNq/o35g{EH^3Nݶ=Mj -Z玌(8u3oò9nLꉧ(ϩ%!YT{cb) lx!:K3TՑxD#?EYCU?ΟC=Ϗn<+CyUPby;3,ࣣ3-rn֖[F^6tkQ{ܽ4A3v5BD]77_g)98(k+!Q ӧm aLer!zA}d }R)x8DbxFmnuONn޸w.*T0^sȒfJmJPP°Y40tz@$҉A;hs#FeQmb@+>!bPl5/"a?ХR鳽՝lþfw8++p˅:l|gg# >cߢo^7o-O۾_yϗet+𗼽>~ۇq;3: )^2bttfetf0˾DZdBƒ)-o-5-G H8 ;؟CŶJٺ-RO2l*ui٘}RPYV1z\nH183y5skPd -U Vk-$o̮OblҖjEF]G}s R,jXJ ؂-O*j`01'HwqnYxoMY{ڤnޔ==ddQ,+iZD޴FYDZRʼnG}smEyo3?;v3~3>dH^BC[Cjchs#D-l5gltZE.}|@͖~m]ؖ? ;5!fJ녲iNlX* !Oe͖!*hU,ƁS!9\ѨV4Ϲt6'aFbԆlY)[@S.+mnچ+fj7ȞLy=1<~ԩ=Vgw{Anf1j`O{nWF_aű1BrHBx IӶR*1|ܩ p}DbNՁ }]\Zf2ܞ_w/<ǸPlr>ґmޣ?u8@joeJiR6ΫzP J4ܽH8#97Ww[?⋤YGl1 F_U}D]\n qqZ4#w<3Jŵʛ&ϲld4 AUf=2by^mqv{˗!'79C/{Px {l}1Rzg'YO(g~bB7Fwѫ靴T}U5[B$E vsF.ǪvVd[a974ۺ\"B"cR8Vs 1Qsm|j-p0.nq;2m5cڧj- 9"F#U*,8n>^h43x\ͅ5Qd47EKa:7#.]t۽ͅ.f/hՅ\ٯNX9"vK\>bq^J`\MǥmݏG$4ww[ Ms՞Q<.(ev]nf(L1"yK /|Wʗyw:ClXLi#wzyfhe]:KhGiUލO0hiMǛykJFR̹p,ɖRXZ!EO8LRJ/Z2}H!@ x3EQ{ʇ$|x}NW¯뛹u Ql#G$ ͍EĀ1-VqNr8z3xU[ \#ɡ@R!n⑽ mHih.FTMi h\'jHM-Ic{9|!r!~绿o}_a[ھ^s{?RѻPf+K#5Zl{L߀ՀU)2j녾_ !qs*4*ĶB' z mFZ,nGuN21m/+ZpJޠgn*X: .my^~2L?˟yΐ:S2@y[RO?vYPQb]&fE t%l/?Ƨ`Rg*qtQlcjM?Nk lZ7O=vDdDhh5@0.r6KI1  xF!_yh'LYGL&7 @}KF! ~;O^DPG4~HoVpԽZ{ ҟ8|{wt?o#5=S{O~MKxK9+|Lg3bSbfNҨ !*4[&oxueSxL À:i_}M=qLt}w_w].ȪN3tT֕- Z _7wZp[ *k:fR6euɂK&<U A2oHt)D+h%ӚPk#k=Q 2$.ƃm?x>#heji_7ZJ wЏіKq^TݝB=ƝiQ7ʮj[^ ϡX9 ]vpAwd8Tn\5ߪw U/&!RfyV0>I(8ž8l3TvM1/ʱtFlLC< L;ex+0jf2?~A|~gOq 0ԒTKyΛR _xAh woZC4]?~a2B^񂺄G֬' Wm$c{Z6)Ra%XVSFX1&gI C\ODiySx.+*Lq^yr"#Ѱ% !H,啇q`tg\JV9Kęf}e17IɀS>иw ̜w\0A^D]x<{V m y;F?b1nlh}IdL۞uN8ٵ/Oy"w~{zM#=懸R͒R.v{hGHVͧBMio /t!4Z͆/?X?j{_i~>iI^%S[ʓt:uʹ rsZNW?%4ox [tǵJcBJ: \N» k+̗uO:ʶVɣZ)yC%PoRK#L״ZԦދ/kp7T䋕ƔO3g%t@tW5ҝr=B)\Yϫ͘><>dksG+w|uVj3 ]RԌT[Ե⽽(d !BW{01L:Ķ:,] `Ai*{jϦ fnz}դh`4Tp8ܰ]6Ez4ɖ;8@8LLϙ+JIM;M3̏ n00X 0܁a ukdDCwOA/~k o?_p<㗡g^{V0&\4i[{1#-S(c$ ℚ+mkI\lj L^VJ,[8ݞy5K IDATlowd -0 n īOZBEO˛ EwPI.JJwƀh1ߨFZ1p.q|MyrpᢝD [FSgƀ:A D{tZܬ:3+G}kPYV/f34ʖl>E9xT ~зhx5/ @ΈZ$l홖<~!rL"^mW]혇9a)-gpW|=@>xM1z./F/ OdGEUy|whGԃk6jkVqDU^y@n&0Nͅ^la#=/l9S/Cj'8ul&R)]ܑkifH6 /Ħ1 gӮ{3J99wnM=E! bB˙NQ"[[.ۅ?#eKԝvBiIX/HYZ5f҂i?*DX8Rm*o`S.ֹ?xضJV/gz)CҔhy5ohHCLZ\j[nS ['D ٚ{{vZ i"Lh)Vʲ#m5݃IH u\Fi_ܹmNwC^НcHV_a@Gy(ý#-xͶ»c^$RNlȴ nf#B-M$cW4q.q[Cz"o?wXsrRG~_L?emuP_ӅlxP݋UVnڬ8Tza] QW<7Lu8P !N,[!\-jut!&OYۜw+(0)s&t$\D-;"#OMg;#/Wx!L24OPV&-p].b7CK8ںWF!{5$;d8 کa'ޛqMV<:$jήteqwfu6vlh ls|ý!ZL'T| @/]GcҋR-sstcGf4eJg~xKfq8MkjWA%\ٖ}A֑\H-zc|w/;7E˿sŹ>_xWI`5>X䉺ڎ0|km#͛F nwxdKc|Ώco'E+ ]]o)8U܄s8 k^AwYsL)Ln1 Ӂ׼>7\{G(k,v54߯pZCsh,C5TIvnDz#Ugir]0bG=#7hM*]{:-A+up{ɤI#@!R73̮-$)h*Ԛ."`"Ծrҝ1~ Dk" ^o`4\۫h8o[`wl m3BHG8g]9M7~z.gWvxwnhjlJ&\K6KumY}iy̖I#(fT82 )+qd]M"%n Σ]iZ|ul> <룙{ˊ"D8E7p\r޸Mab'cr)'Wۺ@Z əeoŮ)2^M>{0Y-67xywӸȡC3IB"( AAD[6&8@ !E-BYw<p>K<28#H-6@3ݞ Eb, wBxcwRO| yc>0i2֨-&&J]R0h d ּOF+eu` ¶zHW#g+jB$rO6_KO0F;j:jq"ϤDXue u*Qw8rwLc4oGShd`J,+U?q`/YѤV37fe/!f_/KMB4q'aѵħY{ʼvoЇH$yƼН{kW˅l@"U[ymۻ;4jGm.{RK87~JOqYN/~]>63e7βIDcyWF>pٻ%gZ(ՠlńo㝣Ud+DQŬvAX+9{ADϊiVvm3>y;PHfq# @-;}`fmZ]rpFwuGُt諲n {EE;~[Kќr+yG{"Թ0^sFOfޅ-"\ܔ^(:gh4߬凄zz4vISl;@2dooBݴX͸lJwO=o ֻkd??)^Z;؅^T7*zV򲐷b3gm>DoWZm1p8NgsFysyxfaW,7mZ'  p"Y{huV v׺WZ1"(МCc!YpvRnagů1$1-{ͅg'!hZِVu0 Ӝ8Op@oq)OĤ)Q]b湲us6\1_M|W"Gog0 B=tse6!yz0^Mh]iwb @ٳ@snVv3l!K5D^ŖP=SP5_]&ѲCb~?Gs?z}}Pbl'KTl3T8"Z̥uZVͬnOMۼ#D FTѳR#U{J) Y8@kx8ta;ݰ=#uHV:ڇ4|LSލm5GFV1@VOp15}nRDEp͢`Rx@M`WKU( UQK V׋Zh98+Q]a HQƑzP%^1Ahs9&vGxθ4KN;Nj5 q7HmwHVS?qRK$FnRɳ,UcauȊCk3hp;;w8^q^}K!/)}%gW}_E?8S_lyA֕gzHW#Sl.†ol\oJF(gw]fV.EjJp͚kTf_e=gbELLb~@d~"N#]J' H @BiBȵW: Azl6եy+N}K/A<"wA$qOyY$ҋCRי`#:ibڦt,1jּ5{9mY󶒦6X3wH;9?xKhu>QqgJ7r/qHm&H7SVْe=1#JX,UBp[܅Q 0-+H7yN.c9?bhw~frRm_D%e9#v!1"qBzÞt͈F6ʶmIHBО FZB|HpKv"T]CjL[w5ja]ij y5#$:vb]iNyq_+JWMZYU QG+'YMTVo, 7&3U'o.VA#(NhY,v.+?B8)fX-Ni1 Z7zYNLSQ:VЄvuW"~*^[>_/L/ys2on==Dj#\ljsfLHŇ@J5b".u 1jZ7C7 +9^M xm̈́80Di8p]0ݽ4EHEz!2^ݐNtGs:9z H3脜3GK&.{qѺp~Yb'c 6[ﺶ ʶ2_f.kcY Zm+c!V\ɶSpb.^ }M)~5O۫8K}ds-D~jL8{~GJpLY7m>׼ֺÙmlci :JؐT4 (iBK*$)NTEJRR'&3=<} p8/>{}uhC\` 8i]WIUI12gE Rhȱjua.X(qn hTUQ֙nc$>C?yZ^<V)b/:5}C+H.XdEarn1(\iSܫgIoH.dbyj+VK &(EF%kM\]ܰk. bޞ Jʘg>Ksӈ"?t8pS[[4!bIcR o>hY&4[tuO`zl7#B-tf&VKf旼[;Aי#jKh3H \iRFi+ULRm ltBI[2YS+Hov nO/~w?mڗPʯ+C]UVVZsE=jfHs|"^7!%BӔ5ce79q C }Zs ͑,ʈ9G]Vjr˙ZǺe'u=HAL[:u7Pdz:B$uh%3 0`@.㙂%E&'!SZ#sl5X0G2?yi Pi؎EY ZY<-t:_O"&<]0{7Sh4* J{q'nݾPsAgp<2I`:'zhZ$pjի!&LEkBrЛ!PбDXREͅf,>5+52-|rh.`8zzv(>C@B^lB ] l@_f 5JR#m`R:hT)RAYr%cPeY*VV=5n73jq<{K=7cGO\3%'׿rVjV,X΢6UB-֔՚*g4z]Pk٢J'V5F-}"k)-[)b)O) c8b.` IDATϰp,qiՊ=9WrD>W k:L +pc"8,1 -Jl(Q)yXM|>QJ"/"ً&Ů5sb(9 )R ,iнC網fɚβqg;T4J VeFƳJ)Emk%ܔB)%N[gR =d^JQݘsZθV((qݰ$>pb/l֢w;j%-mm 6(b[/ jHU ff;vCUOyi_C7~fb\>`E^,NU#ʋ H0NI(hi/O)4ȹriۊTa-Ӵ-%|m)(ٻ0.3Q9" ~X/@iԪٿs v=u.8pW'rU{vMX#TJw{T@[Ti@[ #Ǟڈ)][ڣ]C[酐6C[`GyV%:^V0҄SG`|p`Vkbnies*=.)*{@7\׌Lj:/ "R ~(r} D++rOK NW +kUmIԻ덒QJkSjHYj26("=6K ,I݊eR>fsMOkǾM՟VMr| .t2ķT.C(KK Ej@+md.RHMЬĉuZie>z$Z+)e{@xp;wx^{( j%+ΊzW^*-mwmd|L(ơk,:'am8%RF#;RՓ,nOy%C<$[UO UM ӼKjPrfĸrgJBWqpԆ~klbS[`nR{_$|~熺*yA9eM#yPjy-y4%q<)Z(/MVYl4ď`W1>^u*ɽVy*A 3[IB)%UUNWI4cjR*~7|wO/ˡ/cmkMU#Wr\$Wb\ը͹ߚJDP`oqG)qFvRBaLkJ?['o lj5e %S\%~~4OO'TGle<2N#ޓ.ۑJ`Eh*'j ӑV2DCX455l}'Y)RNԦQIs5Nf-eYiN6ءtl54WQB"!%S%3<f2bt%QYOnr(`8KkwV6H",N ,nh!ވ Pdk%'k7^~ FrXz!ᑱ)ts49fx޺>ͪFZC?0 FY~pu„0t0JUq|2_dښV,dźnkVheF>t"sV ]+MUnb_TBNlzrJEa2fOuCViځd&LnMJEH{WeK:>7Vue"r!D}G:yLZ%e OcAqjPNӒttp"oߝXjn r*y|y5 <tЇ k);YYsx! ev=o"e#EX I5r a/oEq[Ҵ8FTR6ȕS5L7PZ$6ј򮛔&adh m&7dPXOxeؿRW? ?_Ͽw! , k-'r`pb}R^SkDUQ+Ą-ek5H fRFTFaܖ+Ic}(۹j"ŠٞfKkDUXBW~2N'Tw\Az>SSb;cWOT){/I*!!0/[HvĮkخY;7Sy.S/<\hb{-,H[#J"@&[CI1Mw_0)[|`Wdx<\w;N S-n7q?x:\&Ӕ?~D) LY3 O?'_@Hӊb&G!h[C7Ѿg=q1Ɠ*z=|δ(n#-(+ ]Գ2DײaxikEQDr2gi؄Lgq|džw,T9P#)tȁ)[+ux/dBq@-Ra` jW Tr\edSh+՞" (:u'i3G}GK Y"4&hjqG t|WWo}ѯCj)`< ?]_Iݻ'Ԙ,UU}/oXD(-FZ^uú)ѦlY\[tWgZ~LSsAFSRWQrf[*9JTFZx0y}o~g:/|ϯ5O|(;+]+/=T۳{|,ehyoaQѪƙno4U(9n+&\eˌ$Άu`!8gQ|KA{y5 S=S\YJ;2\ILNf@]T`Z$#BYj>29Lp=yf~ri ؑs#:RXγ,RUyڳW@x:~GmVx mHsҘ$|&zR U:ҢTMʇdZ"U>вpn-s^&l|e<]ys:1]g?|~#i+kR]:BD-w"uv:'Ԭ UXr(ӨUdrv&)vr&]0kMKF݉i]mUd\QiWlw]}(?uo5{JWӷ~C ]7O-w13.rp!#㌡Y-JUS"#%pX {rK5qFHZ)-la5eOGCaw{$UݎgZZ f>%eݟosI) $Mkv=23\4 Bh7%NtLK^!LLUY#K =5b1 R~P r^Mc:1cy ;ƱYZLԼPs;uUȔLrsY2\PJ^X3\ wYk~V 7[§mvNdۿϧJ-t=߃2eDg[o4+tNX -Rq -(tL6U[^2#:=ГY\iHFP~4eQj[ɪ@t|MZYМJɹͺ_Ow(W'>~j>߾Co}F+~p{hoEzMqePAFPlUҸ` 2a'2є&sM5^PkG q4qX={~bm`b^SKRBY'8$iu9(ϑIcgx<'Log.ES64^}X1R Ujm-/ ęt?IԚ1VQAw)bgCvu=9F)y5΢Č73cd[$z0xp8`oNg RBN)$HBBINX+e#ɨݣ_GC}=C~Cwk*Z4UbZu#T1H|e IDAT߼2KʳԖ|hl#E 댔,EHM/>Fk[ J*DN }2RC.SJk<;?}ణe80Nw//V/3WVW6P=ϳn7@+PUżZDwؑc"-E΀$h52KU\hAъ\R#;Z!_.i:?xH]gqtdJJ,kj¹H3N,e%y27Ϟp?ah:iaΙ!XPdw=hˊrEmPܖ)9ˬT1PxQNx=m8PfOS;tRj[ZhuaG(fP﨩hGY_ɟ_'>BCo\k>P?~k ¾I9*-,b'`U7bxzh(n Xy"Cзf@6uwrðw tY$PSM DՒQ#[g2BiԍXZaC΃d]It,qڒ8)SvU|KIoOg?CMӧ>y|3pFx>BBJIc_]3\]/qZKE0jE*[))]+f"ҘmE.dcqe% JJN6ZV tk_#`w>c[1'sIC/f94Ͳ$s(x`5O?GO+wGup/,u^I77)b{rswFFWJ\%"feZǁ&ݍ^#qL$3{'9AtJvN[$}oD'JSeYYg_ YW z9c*1J]qK4֤i%sFG:V%LbEJǏ*=e7tB_mJZ*5(@ɘQk! n+ w?#ELk%?KKAnK?GHd@31 ɕ Q]!>{nj u2/ e.Peץ;2מZ NY }GvVp afYF"ct:⌣ז{{Ñ|uX8HC*{畯x8䳬sy`g{2-ﱻ|w8a(J(u,Ȭb^ %=&.X%a%#kt@ٽB+Mj us(-D@k!0,AւYY^qgs]]]4S8dFc9Q.l+\9l+Mn"֊D X1tƘ&3iX_QF>:{w{mTa,c_ZCeZH-Y&?S*v[l`R2^m 7iVkߔ?OO}WO?D~7A"D =2{LՂl;Z-HS)*-Y|/]vKSݺq-FHA @Lzy\1gPD&*H͑Z+DJTḛR{3!8 d ZT~sʑ'7'1RbI+- /pg!֒ŻG8r<,n(h0!#]Vd!pz٢ #d`ʶ)C3"$P$_Tn ~ &ƫ_Oa ,&4r6[􌓶n%LCY41RbIJMZ@&_Tɑ]Ȋ\$9BHG\H*B %@ DVO+%&:±(2 F<8S]dM"8GɑҪ~lVKR=W^7~_~;_oCD>NWJHB/ t[ HӖ5Y ݀ c RMAgq0P/ u4j!Kfޔ!Ac+€ĴǦLw%XLYyU)!Fnp~O47^&bI]^)?f@X]"1ʼn-2C? (2l^Q7$Е)T]@2K-k?B{F 1$(c\"& {ǗpJkTeo(Zz9b͆Rwnno t- c¨::$*&!+a*48r;8+= жd8j A2@A\w]{} RIe)w{ r,Ad ( PR1]_ ,?prO~OLSm FL;çH%ghfvzANwFj XOPˆmke01$5RU*b _l[dӢcPͰÞ\qdj|;t1!#JF*[aBAqVϸ7?Nƚ!Gk#/g:suu@eɦܞOy ׷L)y#÷IX豫4`.୔ Ӹ }j}F5Y \'ƧO6;Rı1_[nIֺC="ŏ.|g:]B+8Rč0rZTB`r֒YӲ{~2X6sPQ3 ҄--xQ!2XI~ߓ; Fb/gA9ơ?SAbȂM`Y1e-du"!,XTU䔋 R' 2BՅLɅ%X]tǿwWO}_|hLt} !R@ |]8/ޑ2!,) FYpR"PH<\(1'.#nj˙AjnV(k74hf50vdvVxRE/UUCmvΡmX-:>˯a1ҏӻ$.ЬL}SekuCsf#tv~t[pYD\3=BAsv;tޣm HuK}͉c(> zB?!bOE!nh#d<} }M#1:ThYXRlzvBۮ9_4$Ot*8b@BO+} hdƐ=:C"W p]UrU,砊]g QSDҲ*' G^P}B9BBʎVYJDV=CgΣ:}ӟE營èjS*;k"m-$1Lc;LGFGv58u *4d8 JEΡ,ʕÀҖdMg6cIP1R&Lm(ӑT~ f LVr̛},9E辻s@ۚݖjkכ w.ΑJp L]qyCxS)Ǿ}z,C*A"lct4gk!2I>LÄB 'GZ Nwٸ1͖٢L.a ӑGq>a-!>УeC6  )L !S!i]x(Q)8DlaQ"$RƢ_xޫr [eA]C,oݜ!\vgr#X֍_oJ%GnW[iZ]~S Q>GC =H{|" nۓaERDM'D@\ ѕ7.5KpBQ*@9e1HG~{]zw9е9b* j>63Ś+hǑ2W)OklcLӞ%w*L\u^`S'O# BYTY=CV7M0?s*ot,9i3PmqnPCm-f9/ݺ{`+[!Bӫ']9<~ċ'-)>~Q8 5{c&m{LY p f=Nlikd%nP\s斘qBHn%dtmHّR݈\\a*H^@NVG,dYED P j~EB V?ϋ>.NS1~?U{I|+=˯^9!ja2]JEBb", |וC3T*S/p }ʠGThco.9J $dYJ`wrLj_"XJn, erITBUz|9g=˻w08*#@%\Sχק+'g iOЊٚ]?QrҶKRonYJ0\FF-QaMn Y2#uzYYgL.=zJ}01O4:NNmvn$YY٣VOK4k՜fzz0tÞw9nolu ]%CΕ䮞+Cրs\/6gf18mOVpFDy3J],WyǕ+f蹑Rqnm䲴W=u?5J̍e##i dGOT4B Ar vBĴmp\Y7PXGYeYH8bQV#Al4}rGЮ^!'>P~+_z~NkoO?/ Ϥ&(iS,c,hj2Ռv # pۂi-td?A&Y(u8h26 XLV=ȥ)ƧrVM$!sBHE%:%xf`~Z3!p y|H%:L=bξR,g(4 +`HL?_SmGo11YS^83) +:7a vH~`Rf>9rɣG~@UXt㶻rop@a)[D}ysG}Gm%;ϝT;6ÖSnGj"6M7#w :Ok&dnH>DMvT漅:@ʊ}P'Ie "=i%+;2x"z4cX{8mPvrZvޢ2d`:3 %dPbD:E#h.5C[Uд$f5t?|_U4gU]%t"`4~.渌팔KJ+z2#E wY d)J<$uN,S.kI{3 ʆ~R+s$P RGG{tCVpG~S߷W?w~sZ}ldr%WYBFר.}qJqeIفs$T5gUTZ/|4+fRlU|B$1 k\#骆G/;0SzRw\y+*ZLn Fk)oyc`a|xF҇\vxk9oOhrnfkSw]myz|wk6<:VM~v=wDn pCpxw˝b39.lf_sj=./ѾhpBJهqxOm޽`D&H]>gJ?ȯmOyoaȡc&3tBkgFfHJmH."+U8W,V%tUtů!8~x,8 ]XI潽TRz&+[JƐRQ>v{3*2Ue =k|})o|G^ySIJbfd^ΰbVhڊmQJ9<%ґkZ򐎎#XRhTzoST$-! D"B=B,W- 3 {OxX|ed:LES` =C쓤#&Ukn3j/IFaH,NxcS־mP|۟nv_{U`U9lnϟ>(nh#''ێ{a%Ȼ2%jc@U?2Ss7 bz#lwĘX'6F4TYHS/˗cbT\g؟%Sİc51<mnllVOٝy0{ $kzEBWE*UU^lM]GYn)b(~D^RHbТۄ$OSITDNG\eYe21~e*RJ.-ZqjFfGO~xWw]z2[` fm?:mo Buv'9EBʷ6FU 7Nh[#LY,IDNhyAU5"Q$,2 R 1yt"uPa$C^ 0At9R9xQ .J5l)az!M"ryM 7[mf<0t¯[uM)V, Zw{9רӘv.##ʚ f:"K3"R@p=٥R6He~>:;BOٔ/xSZ=*U@mJ:̖A%EQRE()y8ʣR*Y,S@ kvլ/?oP|/pJj'$"2e/a"iH1V 9点Nؘ-fы+&dvѕsAY'7H a#H ;P8DԬ.,͕)KV%@U>"'e)&p Mp\6B-&jz_ȶȌ?>R⛃/ r%+8qP jJmGHrH"SHSrHu   (CB#"/8^hlM(47fRHj&lO3(#Ysk4Tw.J+d-Oiy( ̚e٧iִrFML5=sI==禞3|ɇ8;8I2eLpdſ_]uaX%XTdA/:\sjABf}N B(pJ2EA7Fq-AI4;.Q<3CӍ9s%s]wY3ٵf1!bM҂!fgFnvO*8BTѓ#r]B%!qH^H) LRIeH#H!O7(ѝRC<} )KH_#P֖`gS "%woKmHe eF3H;9T#KSGGDМ,Q9Hvr)b( eR,RZT OR*\AT)dq4qAr344xǙ4X'w޽^f1X8XB?ag@DŌ11)3>$C. 9G lx޲Fio&CNm.gc=M$ILJmJ11̝d1Kz9S59*iiboDŒg87{º/|\>ݳ:g6dU#oy'Ak4vRCm5R)E @$_mP"ڔopi"r-s*QK/SU9^p996N+$ QRa\ז-]f}~3b/}wR""d.ݻnmaT3ٚ0v W﷌Y N P,#7bŸKS$08H1SG MUa&=*#aȬI\xr:[1:~OI&>mu[py JYvjz}o 1bxC؃0-awz#vrd͉ )#}Ī*!~RBiŪ=%XT()+!Y T\nH/;ynUg$/iz'޸&sїq4ڱ\ycG&YS5 )Z 'TDY:;EJC]RhdՇ怖@R%#KK)^,Drw mj#@C$eqVVUa+,ψ}??ϽDV B63d6`2b;"]hMN@w A`F ҦX&*V_)9x,W7LYHF}ώ80Зw='G/~_HmZbβR ;S?KN:2$eEauU<#R].ed+lB5m1sYHf{'P|Rz(uyvV.(x<^ RGdh۔qkDh)(fnV"Lr.e|MVGnι4+3\]S򉥨4[pw.p2u#w!D+9wq*ktmiٜKߣΞ3vy;zVqyl8( 8KB6Vk. O yEWB4 E/"'Br"a%uNn6N_LI15i.͊psMߣs 2P+ćj;$CX' x. AA]Ɣzeг"Eb@]fKRrM\ZF )4X< QbB[NCerJQͼMm DȲzA)HQL\0=kUK^!7+?8XʿZ|KO7R?3V+Sh\Tv 2 j>G C-J""1O7[K$)LeJFB]lMlkTY0WCT̑l/_쥯y@) !n{J{^9lIUrj2 `j|$K},Dd4%OwCDf(̋aH3cU3|FJə:ӣ9hA]n$qJq:B![*+0Gaذ-iƉ1,Gc·Y}8l!nz29q@ <<-;jKG^8bC} UM "Ct 1cE[Qu\N7 -.w[L;o~v 7gwLR묏U)qdž.lxd>.r^!HFc.-}-6 LhmQ#C)QVFATT+fHl!fc.vmE. Z:%BU.c'=U*R }KYi*D[p/M?dĿ:Vx{NwTUj|";s(y"E_B&%U^КF5M$Bp3]>29Wi$U RMB{t=]}蔩 0$Z9sS6,an8ώ 䐭XN< il7r"x,ߜs+7c ޿?\= p/x`"r#J. ΤaVfHS])DLH[T;C&+E~!R ڠQU(>"F*WŢ( >$ǽmŽ4M!'YYGIY*F*CR4r4N82 E(K\٦#G ^IG6/R ]YRӬ}.<8憀yEMr'ٍĪ zF>!\.69H9RKRiVFҒ(dthH+A"@W?Bs7BMO#zj`8i8l-| s=E_!l&]S~b'5BlÎ:Y}Jl;v"@e5b3@ҵhXǢc-GR0A"`};z&yQJX[!;6ȬyuiGR*{TAG5yyNy =1 :R.*:n}O:Қs T0#rEXK&LcC(b;[ȈLST)N%-"u9@2 Luyt&Ӟ +BTM\F:de(|QJd焋z + °C=6$q j4Q)| :GEVzv#*+ˑW*;sU^[vF$p)5UJp;! beX" +xN'Yt`%Fh'G~ yeapM0p?FgͦoPs&r3vMskg;tpMLCj[ļZC;TV!skL<ɬt'+;ewc:ZF@=>w}K z5)qlOkǑid{}IHVl0<˞!uTre;USQ%!еٔ.)*K#Gғ.sK0@ Q$z]Ba[hZlN_/|"MTRc%1M"N=*epM%,zDm2iX%I/GF@KU$"S9R[T Jp2;$ bBs.fK PfnC PB HVsk1!0n^xrqNe d-$G&=^\S%m19 {y,V SϽ`R/*sٚ '~t=V Eȅ$qG7 Q)r %ՈTl[TMIT&5E,I(](]%wK\͓;Ce;zlLvIm,*':[d,9?f"G 9Iq0&#غ.h$HR(mM\PL82W,d@1JFH#Yc<+.e:BnS\!IJrVHFF:fjF5,ĪO8_~ hx;)Fyɛ'-+"9]+Fqy{ˤ&_+1p$A*si;DE3y:4djf֠WG84~ l]Ga@O#G05QկJV\5VP8T]88r]-@”eKyӇ5i?n HE3ƒHv k,~A*rtP*Y)CZY/ZaDW=6=j_S4C DM9Q)fU5_wlS0i$'oM\MHRf!G!)^oVܐo{Ϝv7]}Kx jI3bDqs>!$+n;-Ѻ9"y\=]>Cd"^(n}f DcD9_D=k$nGr֢G$9J#\!%f{WX@x(N&F(J-Q[*MZt$?%=x"`{*jU]-UP5.zpwL 4n%H̞V' 'a%9p+"˂ ALLa**%HAaQR xIs{ŀCi- ũ(I80Z\g"gdnDM5)hQ)V@-> y1myb gz)8J[VGb"zޗ+D.#77-."ZEZ-]`;KQ! Gŀra˗\@Zk|-SGvC [X67TzۿSXaNHBgb=7?_E6@;p$9Gڤx" 4rJ"L9Kqݒ׏D̬*Y>zВ}d#vM܎#}8A-[ߓvv&Xx:Wh Dp)γWэ }-,HxD&9IJ Q%! Vp5l5׻k\3}{̡^ Tp[ySFLs4 MM}x= !] onm;CccK\NitH#1Cl!5E[rXk \JiJ% uCl[B3#?pRz5k/}oqsdTLG b65UU$?6knʙ{CZQKU`Φ́nH K["B )M2"S9kB]m M {:!RWaNbXtFVUŵlِxwq2UÐo_pztm%as䄊3va0 7ޢ-yẎ=%/;hsT/xWxn#tUM͐3R&ꚇGsոb5WVB;r7#3'yώ"ceXA'[mba  )p=9lyr4)38" r)t|[O>Ip[$!CP i df0]Ti &LL%Y VR5bjzp~MM\[H)hR,' =E>x4r|7bm?l|Svʟ[?~ԓ׎cr?sfQXv*8#ȑ<%ɹ`,6)d/BS,\a4Ucu1&Ԗv18tJq DB*6YpCfCh.=\D(% Bd9Q[ $QxT #G0ff<=v#b6D'0-ʗQS)͓NQy|{@{Iҁ3gsG8] Tх&f*衫șv R` _`NdhIV l6=oH11Ƚ,е#D1as|71KWG]r.|A O'߾\rvw.XP&*XtoOlCf*!SdaDf"MtdeXE)h F+3mjw,f-{dB@=RrR`j YD>RT5nV$TJg'.˷d$og*~Q%bÑTPě䈟) D{{VyVͬ-r^ YHfހnd*Td=clV@g#%wdBN<0s7qzJENH7&mHCm0<-Nd\'| ML3Ou g`}ʑF+:Cϑy䙟p=Ҩ) ץ@9z߳Z*` *f٪ɼlKNy{dYU#sf ݌mzZ~*MlSϽ8C{D ٽAoY: ڪ* dsBYK؊aLIO\ & B %RS@ Sׅf, =uՊm;ntJH$zB7m!!f]3J q]ﱑJSD m[ښT"T7fNHsUWϼoɢ/R#q %:ӖKw%"iQJ"&6 wDK QrR;!-> /VJȄʝ@)Uw$YaSKɼ{,mRmh(,Q 5>P IDAT\RH{r5rjʙ1%mq"L/`&%X A+W0RୡrLLJ2  >a̴;'ǁ0;|ߐlE=]sKNG`"ͼ"WJ%1H$6q@h8iA:=~>=gLT9sME4?yWؑ ÍM>!}<2y`[^fŢbѴu T,K'Qi3%Zkt9J-H_'#AX?{_ͿLeҭ9靟"Ԓ圱[ۆU5,ێzDDXtC@hsyK΂!03"y"Z{] BGUu=9#&u-j?,o٢ޏ}nӟiTP MCخ!`E5q ]uIhtS!ڳ?8-pHD~ `j% '[P)w:,~3h y{]׵~vPg7%r6'0 䜨f UR't_ӎG<KǑJ#->sl[C-싱7`7J~O0 cJJ` ̴ׂaȬu@-p*ǕUiwT5ث4Jbi;ǎ_3ڧYbΞd:GH|;,* p$rVyH% y=̌ ,{PǛc!cwfu8gr^>BIx~zK'rֿOػ UQx0D<5ecyM$;ȅِC\LSiaϨ5'j̻-ӔEn;ΐl`:*M6feτ8e/9$I}[wU׽9MaM7,#BG,Kf>9]DV.kh#T+,sR*-K+W£;r޶x)fΙt,n 7=`/3<=efկyqr;$>&ꖜ焊pzѡ=^!0VÒ^c9C쩙6!vFi9ڙqd!RQrBC$Ρc_*S*"2[`v¤Xs>Xmg!5R7|'ZW(wb+ 'w0yqݒauDbnUQIcu||=ßL%g_|Ӽb[y|LwBDКzjx߸~b=i&MeD"Icf8=jBTȵuB+̔+\pq[-! yTy~dyQGUEwWߓ˫Y ^RI<\M$yfg\ib\-הTXz4d\W\#Ê{wn@\ oduӶ<]ठT#"ڢw]ʼn8p:9b{:ݣ%aLҰk' 6un ({B?6ŐZ;2I U9ŗ-+H9sai [s(Owǜ|88ȠJJ M(\XFή$rwqjkItTfW~ .y$#f.]?ÿMߏs;lf.yãR7;rɣڐGtX蹖{ "he짙6ُs볇z:\-@r¾!bfÂ@ߑ1Yln(5V=#d2rU) DψsSL~[QPOM0;zl}l\@e9_##{k͸#A*Tq,HF誢ʔbt8tgo {"T)v ,zǼ)b9!Ò5,fyĪܓ./.u5vTI8Yx V8F>9'n|*+<- fz.s;^ĸ.ƠK؊EDH#G|Ic2_rɏ0+/}~-s\ɞk}/vOp/mi'n z**/<)1{Ep^/4cprma5|M${J=.8-Y};'76?WI˦,/{ea;f7W'DIgXFHe8Y.qc }A.eKs!ġ-;Ш]96P\RXFn;!ҹ@T%JQaۼ_+_,Lp\fb*lEA;km8%`M;D?C'^.P^q [0z&ZLشEvPUn}Txd|` uO2*{*f0Wa%cMeQ֏q^޾37sܿLeD\}2>`kS|>%XG{BpO-3y7~!GsjM4{xDoxpb0,i.L9qh̛+Zǭ |o_ۿ/#K8>ݾԷ9:J&H^nۇ_3Akʸ3))7!8S(MPY\ؘEJA|lі!4VQ9Th ^)a"\ÿx0~'c.w;dtIJ"P\[-^EG&)-8*3IܑE1Wj"[Tk`6VFnxpI6&|qUITU,q:yld%!窴xG/?J +4M^r{q{b`*ADsy}%6vA,q9O1ՆwSf_.L+Oz{~'{쿫?_̗?+?k(s/9] Q-JI-ׯKbבSjÌŪ)0j9 Nr`B@ۘġU KFX,cʈ~q0Uזȍa3$/g g Z٧*pG q-+3U"D1c={^f̴ik ):`q%(! ܛ&vVX)9vGܯO%5.i૿fW8:A:edH,Sj'[/$ooҼg-#gӋD8 ˌl3fٚ1aѝro wb*vֆrř.PQő]] iw<ˌ x#Nz ͎؂DJo\Cn'o @\gOÚjA\Y?4ZЭ '`V<C,asaQT MZ7e0`03h3ḣ\:7]u*M0/hD&E\pb,(HKgY*:X&N#|0)G g{f+<ı7HU|r8$剥";|LERNj1^UHaIx]B*7ӎ+GdT= d[|wZp!!] oNp} vD'-۵XN㖾s,'52O]s(q/D]\~ί*5~W?~\}sp-blY$AK=$ ݲC|c6Tnpy>#ԜޣX5|\ݦ W@;EͶ#uAb@0WFNKdN׶O;n=͌RM& *BT:e8р 6|!H8^ v\cgfbk_U#pqÇ#KE (d#p@)N@C3y %hQ*Ë҈H(O=y (ůxOsἐ'\xLgVlu-ECu5D4Ai+;DC|x=^r0 b%5N`)=Go]md\q}vi514eM&2E4P皫]ڇ-R.=l3cOKEXa sNw绱f32ny gZ?H%"W\hap:'Rd};o횈^M9],:xƯ8/3K&N#{|Y*.Ms:"x r d~m޽._˧><>ɲc8a΅$P -&|q^_;Uk *m&4yMA*bD<=;(̻|wS뗻o;g5vQNqxtzGb4uH#ŽIDϸnE-pBCТ@M- J-Srcbi.b|~˹P#|V= &XVו֒\UޱPGs;#XpĩFN4r*U(g8Xak.–ć~r d=n:ϓbR8x:^&@۳UU^"*c9’D\YH =QC70'ZY>tڦΌ`#+Ot߾kHH_5N?/ ^k'Z uNqŠQĮe~S ;VbB-O_˞K<(}|C#ј8oDIJg:#1p.Kh$- ՌWGrDjgA7ӊ8V^!⫲< i;BoSzk1w uدg~}_{eQo_@d|iFҌBC$9G v䂄i^T<4ybG ={>1NlDMVͷC@r|ͷ@LtekSw n8Zszj$48Bq֬8|hj!.P"*J}$H'%cmsEut>Љ'@#A=Ut1EoSu?=ϾWBur[lclZ`Ti yN.Gn|\~=E HiF4;ҕyÕ geWlj Ci^g51Q(fzk{ݍl|cT8LhdXpEq&IO<2γ zn{{܎tw.ggSɮ`]=G#֡[+(qjK7^DU5YaEVnXB5 "qYHm[Ż/p؆F# +JX,~?~?W?󛿐կ'$\<)ӖMkҴa=չkeKyZlˬzLAHXiR[gɸ +XGX#6 -a[cpmͻh)d.I%҄ۏ_vfg5qVZvLxXPYb5{7PiY ^)YrӖ·w14QTqn qL [@8Ǒ: q`.SigxU _Ƽce칈_rw}Ī["rզzD[AȯVux&<Sv[QQ[9rqBm"'/zIa7Eb8k>L' -s_'n%ٟ|W~+Ԛu8Qkf NQ5ʸ!ZU9^X?DvWf9uiXg(BA.fVㄤ|MA 㳻J=u7cA C$!6gk}g.VUDU<:.+(^Mky2ћpFe#KNX낍**ԧqztmu> Θ\`pcXpW<޽?'L  ql^ ,{ύo:~n1Z`ݯYXueW s88'MQ> +^;$+"M@ J#*[i,=ĴR[k2#q%C6sw~myW~W?om7ϣDrn̂׃`d:)ԋ^#O{5fuQuhqaݑ=oah^#֦x6TJ Lm%Pג{x/pxE VHg\L +]%O%rbR>=ҿs|?KCj-߹~gi${f&i,m c"Vz//|!cn`: 1zpY?Dh:xnv7'<GE}(#QeeD;G]mpc\aW0TmzQk{k%X;4ch9w޵s%49V oKIDWXOyYy"o[9a^1xJ.:|}Ӂv 8 ;n.y-WӒ9ƍ4}(+6rrhq3"SF&-a>>зr|T rqLNݶDU/ָ~u2Mр(3ƽ-$plJf:+\ ue-5Z+sFf/tK |y! ,%7wH VG:ё͓U,ԳoI{ DDBBZ ڐU$'$deD(lQ)[q*bڶQH=їMlAv9uP · dB;x:e fCKs(3zz~觾ӿ)/Eq!} TY Gq"ec.ӖN|dn1OI3[, N2X*x)X(:vV0/~ZVhm)"IEJ `#kL7 p.sXHfS\yi wT8%e.PrR=f`.2UBRT! J@ 5qWgLoD=Z42 9T)ZQ}HFTYhArb m«>ChklV+MrX&JڠeG?ܸX#wEDR1 7fSL۴j{JٓXrrBp92Qb?]RR*(+83fvpK6-x;BQa+_%ej&TuM=+|ߣ#]<;)ӈ[1t+h܂Q}Ue<+J3w$ۿ?g9K/(yWq*sӖQ]3VъKO{pifSd8^ KjXk& ) #V16RIP+QCn[BN LLKqm˔kƋm;PڔX4Ae_[>V\@퐰VʆyO#NAj~Q3\i$c|qތ !If&:/>^|߿_J7-]RqDn5i><8 Z{+SçĨ=sFGD+"."n$]7a)sOG{jEJ\mZ}٣!`~9_]RrřP XI( Ol1[fop/׼X Pxòc3lȋdXrY/pxR~iG,~s^ # <rD`{*,P̘ Q BƀUyJ\2sҴfcY=P܎Xy9 tV(yöQgή3x؍sժ}$zxJ Si  .as!+Ն8Db ~`SV3u`ڠfm1o9j&`#dϦz%sP+3 nű]psӣ'e-[X1O[VΡef1Ҟ{i{?Hٴ֖pZ5(EZf@nQS;jKm7[?aS#"TP R VҾ=U#z8O "e\u miyFor^bin%|X6tXS?.j{>/dv?e9}B|ykȻ e1uH5p5g+gAQC\@šo0=qub9ׁxJ6,X;$&9e%.N'Hp-BZ[MCLrêrS {}M]`NZI7*ʅL($K)w}ab4.ZG5zF8F<++T3N웎KSA!(BA(F8,s8]cD&5#sn*ܹvzi R+NJD hijM -D^ xbth6d ]uH>wkl6N#ߵg;+[wRT6MяMYJmvpFSiW+;,VgzEn  6ϔqMZ(sB{ϴbS -"&TZ:R ηc1)gu̙#x)]kv0jr HfRFh6n1)ZQ' 6W v[:Z١lcPA5Uܢj{֢MU^ .TEKn%m/H[9441J)i]9>8pfCbg&#Msë[>< D=CeГwfe&"O G?מ=-_=?,}OoQXyM۷~)岝E'h-C!})ؒbros5Y :Od|r|؎]MXRS,u'K"1>h8jNiZs @hp݂ptL'lIU)aX̑9YLBXJx '\80 Ly% %7n5'',o5$dꌤ(ff?{ϲwxU]=ӞϡcllB %( rWHHG @@H1\XN8c!dlOkYo?TKuS]zߓ mX5bJw+3EB`ku9+fHp nHBo_ 7:`#c<.^gXu1nJP04N q4F߄ 2s]"!0nXT BYƛ=MrFOvW_em qݩL1  oR6\/@]!UUєmm " =V.2pKc" +n r'ǑzHL3,ZkLOw)HUDfm2iq#R)s90WP(N[1[".gvqt*u%IJ[61G RUazސQMa7K@uAP-9ܯsW#H$5%au_N$DoErc V`d &46V9څU2 Xa_&ek YDaS?ˋ>`=!&t3!!PrрIufF. VXPkP D^2M/+!M)|i~\yHp')"!g(7hseuŽFkEW0NRV7NnJf CWtUSpT'軸4NtG&H޶K89/DWWw$bҐ4- aVL.nt6DL&>J7. !&ڲBT՝*SB ie{;r,= %r{&sC.< P\ITrUNeϮ*W\јS>|4LXuV.3m9;dm#g匭nWa;Z`I2H9{czA ][HsJTiSw5pSv0툗WeӖ'-olCdʙ,GB] HsTk'i\Uŗ4I14UOmE>ۢ:iZb͡.p]dD"S5m @-3Nl*dTa-P*Vt9#uD9BinRp'2Aus5kb3RJ2q]<Iᆲg1;P%#rF[cE/͞2/=@fva;*cy T၇ o'9 -9P[!Fl޳‘;=q\K<E$E͓Ԝ#z)To5刭y#]:Vn-Cؗ 6gk %Ϟ qMp9p=$6v8\,c Vhg.~Bsf4۶s5]"ѫP#:o+зˆ>A"NZ*mܿU I}7T ηYCR a]{F@2#%r(.~k׾򦖙e0ƀȐˋ(h-u>$ bPJm?P 48pn@>xŃ502}]m`2ϫ`Zٽ˷登oLC$?#躒67`SrDB]zvd7dvGqp\Uh=k}Qp@6;>fbl6;v]f> 5!BFSgа^;$FqC!ahws]q:&Һj&8e'2X 'SŝsB9~YK:τ@8ދ^]+`_?׮RF\ IDAT1r^?okߞ)'G&rn5p"k،d;aC۬d1e|x:‹-Byxg"0lDQ\&mXqCwSʣyE zAwBJ(BHFRby,Uqv{mn,1vc3dºL1B&(1CPqu V& H k /_ŵVʫ-=ʦ"b~ ͪtz;Eja9b|G?3\7kw(xDrʂJ=_P z>B*Z$V\H=yVOow<Ei]e`b샰a/`oraFT%Z`"\.hs_]K$$4U`nCb!#y~Ę0VmxT3pWV4D6v1 C$@.1B&v9UkqtUbȡWBn<}Ca L9r[Xz fTD Uӈ~1X_h3'}v`m Ak@kWoKşeFtbZ+uV/Pa$EP 3rxE8$i)/j_v1@r$̴N0iqH0@0^327;4SD Nbwy:li="_\³E b"aCϤ/ VNPV[(`HcDP@Y+ ->I8[` ư{)al-=Yf1L a -3vC=©s;mHfQNrq5MwuZCm}SiiqcX.A"<%$gJ:dԝBT482@0k3R:jAi}y1Z^P.'L aJYR4BFV5p,9Y>dTp6ks(_~޺}J8$Lj֙< ޹y]f1NK`nVٖbR+Gr4+0y''2nn {087\<K WڲU)bW 5ЕF,)iJ+2ch}#41'G炊 ])\uq:=fln 6NHmݣUв:!}[+bOM,$P.r93HtNFqtyҬ)s1!ΚudlP#\! *^ŴaYoUi7X~saQZJԺt/)A5?V28KGPcz+ii)#e!ډi?u73߿G.&z~n#iJH,iHīW/ysorzbLhydW67V6 Y54\cl\U}W$sG:7W+)J߫ Ż׻E_b"OβJUDj0*_)-_m*eKT浺})$ĩ[Ti Ҵc:_h˅˻KtxQ*>寱(џ)70HI=tƶ|b;0;^@*⢼5 ahm&hB;LQhkq'5vGq`1czoEz<–og(](y30^fLy1Rse+-xP & Bm?}T}xJX?F4t,өtv7]f=YDc7rp ^\kQ<(bDh-)!i r>W򐸾ewjlwW6k!M,('VBsB!>z\[kwJlU -vMqP#oZNIyrFhe&o'ߤʂҖ3vf rZ_zO,/xTfUe`yp\,3kFykOٶO9݇x]mjPB ̜IHL[%gTrJ s\{uZ3y3p|I|Y'BkiKa S"m#*zY@ 5ti`٫Wb"e AS؜a:!ȣ)5 zQAPL; ,0%pz(hNh;!1QՍm cHHw,":Wx/>K԰e@rtaYu+ SJFi)Χ_kӾj[b)Sւ,Ҝ $R9?=||‡raNl͒A6L\x%~ӽw(1MS+lfyž4T! y^mcɊgyڂ ՙ/) 56Pht(T ͫz!mloD4|qj{IUSچD= H3zT6#C(! HQڷo0)Hs\0:.T6ܔwy5iXgdϲfMbfE89'86ts]h9M@E6. T W=ղĝ6rm3ug@B9aEcDF`3Ip-O[pL-\fD *H31Mόfaʟk-r{X ka.'BT-c2hMٝ\o[m>;̖+~-,t 7n`p.+xF! @+nݡY3WZTY{|f斟c/_R8C$AuQ!W)1Cl'VF-1YJaL都8Mَ&ς_q9>[yc>?~9W7;zABZE?l-B*eCBg! tuU܁6744XWd)ӈ.6><|F3z xc~@&l0J4w`)ٽnCB2t~A5W:7R'(HJS!'wnVg1%Vh* -SqEP#D4-R꘤g5DNjuj`UBUqC19uAz¢NN M-+aYv6r|9~.z' a~h&'ל^|)K2N@ G"ZZ3KX*,Cfn3@g3~X˫­%oަn.DU0Xkk/.mUԺ"W[.`]1iR)f7L$5vWO`ڹH̨JU9r5#MAv[Ds C$}Z+IP蒳rdH(8F\Y yLn,FkD|B9Ovުu]1Piu%ZXU☼٫zC{U1'‡\^پcIxR1RFtuk 6{֣P)iZ1UyxPK\g~&ysxwaƁuLLi62|2M<-fMyh$k >KPiɩX|3HhzPO3!{S+qQ'jzv9O\l r@01T ɳ'g"L* ]!m:/!V dHH9bA q3@ZJ.֜p71{lJbu>@2qiϪ!"m2y]qUuPN?$uWpI4G*yE/CZp".t}斫~Bh qՉ X)Ǐ^e֜LiCF/"yhK&XgDWj K=\i:T I|J(*&B;D+{bV0v,M#5l! C:\Fs+bn ^`  Zp^ F-MPi#샲B[WB<F[!!.3նjC𓫖iJVVbB6R;O9:WvW# zK1O=Jjq6W՟$pM#9ײPNJ!69o2;~*_2FH|}Kkł59Viniӎ6%)M bEn^oF4˅:]/d`͵*]\|^ 7 _ PgߞSۻ2 D #4ITSRJs'+DVgine8&<.0xC/֕, 3&xCffci?R׿W1v]8= fGD[Z2qIvEGƎunBsCvˉ+S~OK)|%k~[sx1azn(8rFe̜c瑍ْo Ho ab>*׸s{4͔vqT [49Ƕ-K7[bm qH|;+!WPŲ?V[]BW-֐8/'#W{iqW#}(SJM>1CVݎ,+,և.3$'b4܌;~,v"qG[5>Y.9sZfPf? F{]nvƇ?40mD6i&gY)Br y+Bͫ#nOaj+hh^"㞵:sqxzw%7aaCBFc@W'nK[ViÍ".18L'?a} WEh+]8c@ִ-7N9&'.-a2*F+>>z q;[$D=0!q7v$g*cp0*<ꁘ N9ni|RHݼ_Ywq~ $,w̕"Vb8$4A !q>rhI$t0<wv V OM80Qoq_-!CcwsonFX刎J_.>:{[\ m#V1Ⱥ.X̤ؤ-*zG2#??f?Vp#4g<Eoa9UMPm^],Ȋ̙@=Y8b*1 Zo*}KAb TܜZ$fw\P"1{Gwa@r0L@jt%ݚ=j.k|ճLGަCbJϬۂZ޴cDkE/݀[,n}YDtqAyfcKb^佸H1; KC h2`e&X#ȮGFc@2n86^,<ә<aB\DP"Oۙ`nz"W2q?noX֠{F+۽e-dD4egGw9< ] CVV(){8x~&BR'd6 p0brCc; H/ 0J~M1Z\\ID9ini/Y 5 9Qiac8xh8D#8l;؉0_Nlؗ^ L&e޽?[9_֏k'|n6?{~Pk=P ZqA3E*_-tez/9e! JGvBS*"e9p:0L)'R3cxrCm}+8e-)nԻҐ3ФM IDATMy 'tɩl=Z2vYiգ*2*aiLh^=9BSD5R`DiWC@„1Ɓ8%]_{v< a3M3RȻfU꣄`ĉ0dQS_ P`F3Tܝ4$ 8h>ys{^ v^q rw7پ%H7W,w֕4eD-Y _ʪ,™ oHdL3MG|w|p9wDSvÎsya[ylRa$DL<;Nr&&ØD!9b1yE3D`={6On1W?SJڼ-aڠMQ>KNݵ-7#2LO n0B z0d7 dlt}Hip9.,*skBKPzt!:SaB+B6Z֊-[+vGql?02m㦷B攻O6i@-Xs;Fek은U_ uj 2MhWW7oՍȲV12TE ,#%"FLq-.W,#m1"U8 +qDV<4Gn'\ ƴ򭹠c vj[/RH?`8ELSޓ! LiZV"K7BB k|;kțYCs&āa3fu7ya2)}HL[FBhXH&Wk+iRV5Iuv-q̴eq2|)$H qiªm˅Qle^8>0pq ȴqI NX@[oo˧ <>&FӉ~EHoե9gڭH|n!gWU!H66/ugkq(R 9P+|5"[vYo>>|mm tM\|$Ö$#O9Z"aiG˅c{ïӦl,w|D%v È-sWduê?K6uHǧ{1w8g&s=[C&tP8$W=\#ʊ4A B/gY y7!SJLh)k iR8M'F6{_ |4d MÆ02|ss7;a.34RP⮀oAiI-3yL!*賠^h5np2"' ''&|)dAÄbD66kz<"g_El_Q6(m| ӕݠ yz + U(Zadepg[x:MQ%ي-3LۑV.n1OS1#;y`|0n q蘣K\o!g";!{LiTY b\]'*i$ rsTky]dj-> [ lYq@ˉ!Fjye^DD3)*ye]+4s;ϵ2/ '"*. HpCم~0Svl󷿇/_`rYJ095v( T GMغ6C4QJP lKc%7-z`~~]"PiӪ/ä=B yְ3FIqZ' {Θs]׬[lI)NMc/ $98}[8JcqR18v=i# %&JL ziI^Rӈ%c ‘K(aȥ` k"g1۟91L/0 ON(Z׽$>!Ad{)NLN0S;JTBJBʄRp O@{\#s%Z7D@#⩌\/u$G_a@D(ӄj$9q4 U^vd#1ǜ_>mN gcD|nI.G&0A IAs E棯aɜs^a"GpDR1#jKHTNdvPaHmP CvTd>5J!&L^#$%k}ߩ?S4L?675)D?`r!hIgi]z|io3ݖRd:ȥr %i\GcP㰻bi-W; tĊD VhqVĂ2zO!r eM TKIfjZPL}bIe0""x-"U0Q8^j0{$\vaHHhrEɓ?]8SF:%3\m:yM?e +'C,l8g/tc|UZB?) Dbsv>RO@JN>{i9<%s399)3&Q1Ǫ= 1J9[% ϖ;7K+vbYaj^3q] _ mk0!kUT&l^o7÷|ӷ~XYBd,<|Ri#Gi"#)y!&tj;^"rY2fyJ)'q\AD V42ohklf BQS-v2Uv(Z-Xꚤk*$dӌ2^!\!qPK8s5x嬈3(t>ИaHjGH[D,ʆ\oyQ`gUkqG/gzaIy|u9(:1a<x.$]U1s!ÈVEe?,4s> mi8e@y+0'lPʝr5&!$)ftouk2U$m5|΁u ߭ЗSnK??|Ͻߔ?J~ɢhc(jRY ͡% ZfCnCdfέkKa;Y*ϑN39O/lGE4ӛJltŒ ㉈P[Ąv=яaFH4`%+W1S"%G*O=ʖ9bFozi;ѹ2Q1\c`w$kI@j(ıZ?)H~D f0 =7,~$;baE0!=GH,IDD&ZX;&WD,TgD2J^ݽbN2+FG~/i ˹ĵ-|Lk%Q-ρUF:CYԶW4WĐ(BR\GrL5HJӐK˘:0:u=#n>|K!0" 8/5ȮC8WQJ)|V@|&suפ^+~[C˒xyLkK NYѴ+CB"RTB6H !e-\R By] ݎrQcCbGS#xϘ XR!\_f{02[#%sXs!x$!)δa-6ks6NybB3A.o`Te19م{7O{gG5c*('?S\_e>jio_(A 50jլZFݗ4%bT8X!MuZX֠E 0zà Ɣ}}=o,\Df3$VPSZϵx42!sU,M mw\%w x#Z3y\#XO+KZ=ql0yMzsLHH!UR!5JjV2)FDD"CM,\`ko<'O>xzjjp?7arg슦~u B' 'qS+5YH( L# /a3!nƑ,l[|'%(am.#>K dG[{δ#9eԴ#3sY2_taБ,z>RX!-9N0Z[ӊ,$% OuVzWS[*DH̾fP#Y`)da %򥛬1o\9z/Z 2ȨyFh[yG t1enʐ{=!Ȏ2{uBܧ*F&tִ*"*\O}Gi,3׷$5]GJwBQN=Fd@{Z)0DO2t"BLյF2LKuW/*1S~Gwt;t"D՛R ?zt'hS O@#" C{ M>DZz|dc"+C$0ȑWgOr2jH\6nup_Bfn'orv7]'4:%:'z [ˉ"ClI`.* QmcBq@ITb,)OLw< Ho%i`su͇so~nY/㘲[Ac+:E&RȄ'OsD5O5Wڵv\"M/gZ"sC+ӉQ#H~&{ IF|ڒl25~V!E+Bx 8YSʨѬ݈MMHjS>Qȋ2x4]-¶WDii?f<4 T>|@I;VݫxspI'Gp#hD$G'"#l9m0=cRRlD@+ϻǴ+>.x ^dތEs!QlLp 4n ӄ 27ogjKqtD-Bd;b8́쑃b% . NFGϽܟ-9zWWB& V%%TNI< @ZD0%v(1@̤) hs~yK9|ӷ|$ /OYwhm"Nڵ:޴~muW#BKR,[,i̚5VB%TCڜ[DlB npht'h!ED#tM7 {j2gbA']KPhmI2ono9xޗ fDq&FvN׻l <y8R:H'dG!H9z\ Rb"eS ܥzx{KDz(F?K3%P< %lr R(\uH/x:[JQLqdgfg7A"uK OKD?n9ǜM˥*.KǜjWr1|SJ@0 urA/jpI!5b9?cybl̲Ca u$zwJ_*nj&s TB0Mu&(](][@)j,CY˫>Ø/tK.kA^bU '+$X1w|#4]䄨W%  YRh@u$5U뇹NF"!y&BhC GN3XQ#eq萭cG+OumbiӚnpC80^q7=YwEV(C^y!).wgBc&tcfFf~Ki9QZL#$bY;M!tXhÍHe'0a2,I\ +co-uFC;t]-vXPmȂ8̸9BAwQԿnAޞ'JPiP$'F_ݫϿ'.[4#FpQD+fI|-P?| G,C&n\.%vĜ 6eZS;^8_`H/$_xŋfƔ|1(ut\rtHckYfr̔(/KW! M9[傳5_h=MJJuOJ0'A[i-Ynoi@ y !8[b$8EAMY)ɔfl@oZZ' gf6ˋs{<3eM"q"1V5<%q Ȩ,(Ldǥݰ * :ݣV+O#p}s 4SoT8/]wRהv i1 )? IMlLKlzr _>8ceq|o~S(U!g-kEIS2eȪmM)Vk k,mch'J+Z&;o}f2"039U*KF6TgQEABdzJ\!Ն`O R1 2BM yWPa"8Sv4(}ZVv8t=a 9,x FU](4>{S';/X-&y>5FU)B\Xq4Ir2Jtԑ#y̮1|G@X$ RT8QQ3&I@p&`3s!7X-,s@Qd8#DqP%)%n3ej̮L+ӝ-kDpmHYA"ȹwɘe}eao_yʮڞuXkY (R\Ǝh͜.!r,:u.F8z"Nfc <$XbB25ɯQs'ɶ )PS+"HIJtC QBqiER4}mZHmF$Gu[v+M%45łM0 Yt=c\>yM2q,U}Ȝ8-=͢g3K%3.ni>C8Җ}npz^0)݁f(),҄u=@2{\ݰ#PpBKF+8 ]#NWwBi'8սN5.ҙJ)<2Ǣ!3~ٓaK/哻7?!k0auGs`{A'RkQLn1DK!sh) &]0;:eq˂K=lOssxiNhIU2cXy0$LR]&G7OX~S!SdEa5Y%bd )Uq, U)E ys.Vh̲A-(P T ڴɣt>DMQ1 IDAT0ܡҖaAh-@ #UWkbb9bc!SJ Badb$@q\xꏼw3f("y3-b3f{xť}; k5<4d7ҬzhSF6IY [XJpTk3̞v-kHJ)X(mH!p? O_vWoC#OB'-S.X:0@Qvw\jYs8YǢ[C+IX攉`VKt_h;j&]؜YzciFhJ.i&?6W~2]y,re*HdJi"H, hj:I7(X$g#KT8A#1V9_a>$D?Nf1Em]_MY#qu-v fѡDZ5JH>p'4CH[`1 H\j.qBZK 1y,I"bTH-#CۻXҴY0NkW$fRJdh!4i.H!R!+l"u S0i|8\P"U< 8SaX=%54@SwhʅzzbM嘊|jݗZEX5/#7D4*t.";.T pHu͆a8lG vn</`!iZeP\h aBvn9#8Je8X%!V :z ~eq4ssϷlT,3TbwE}\W%vsƝ'^Yr-s [15*OHYPQLF4j,JдU4iyMu||y4oCMkcgdy m|([[q(Y`ݑuDM ZmԂ顪 \2z )$<%#pJKZc)|:iECm[KPD(I* /R )3L(L!!۞ijO|Zr_a`Zsi"3DcrVlV=E(^Ri^s|N)^yi`#1+FӖ}Ѷ0FRCs7jRƂR{Aߞ]GoYZ)3!^^#fA:M%-zva);WG`&1G9s0} FifyXNkpKÐ"<z.\_~1"y?-Z!qg+@NM3TVCAYC :*Q^j儬uMc\mO<į/jU_o,ߎR?Tg#dcA#sg)BPC4lzd"\D5FiQ}f|GtJn\b2!#DG5uW(MLuKbqccET"]f2z/k6볟<ƾЍs8X}X,z昹W<;)Gob,jZ誠݂8KF5/,u_iGO0zxH1>qwA]{qC5˞bH@y@S蚎/1-beQqԁ7Ē7hA|Cxh, 8x,#K  9 y(ԇ}(1VH*oHD\JɩhrEѶ/~Co_|_/..z?n̆}ٳ9gc &ĉܶ0RǔUj+:NF3^%M|aI]K E<jژJb+l-K(4[m+4?[|([s~ҷψJ5nWo EA=9W>\@J:#3RT Rh JNbĴ^U#Rj@2w4rG10 I(Ҷs?i6/#Y<}OQ< DY./* SO}.,r*HikGg+aˏ'LxC-I"+5#Ҵh+-WDQԊ0yس'; |fvwtd)#IJRhPz$B%S !Y4goHp:﷬%%W8Ǔ_ W8ani#PzBo.+qא&#x}'׋7~ϧqZ滝"^b La\L$a"͚=J[']-IcեwK1a2 )m{4)ݒX3 #y.x ,bl?gdd=U"0g/,WD ? _?OK|tL隞D=ZS nt){׶7y4ǑQ}Odv,` fb>|U!U k%Y(hjD\ҨM҃g뿯eOi8nxZ+DH"d BTAK" BTъ8mbq\@BUص}9}yoƇwT lvv#mRI;\63 nW%yzlL~l,Y3앎#X8v%rsug\3koIVu)*RYeYB.pk-&OQFgY`}I5AٓՀcyVؼďWW'[^?(Urw 7E02_d!a⛊Xω>zcj ٞeb=#J$')E1!*EMG-0W qs zy޵ ^g&Eyٰq(|'O}5' /_ET4y׫Y&t|Aʰ$/}yƣ @V)F>E>i!Q KB۠=1:tJu/\l\DKS=^BK6a!" &M-y4&NPr'Ie3Z]:7#-dg[5DUg,M֡eybfjlHq" |0$=R 20ClN7BiE`ݥuA!$ .*HV&/W %*QfշoXrmz2¿b(K%"Dy>gN H]*Lmnd,_'cPCe)&BHYǞ|@U(sb=yAD)HHzX*PF£ETAҘ1 bz<{{ǣ޾!E}'ı;$x%Vk15r)dI!zA l~ +˵ )IDAT++O4uK_-x;[f'0ߘ~w关Opu_Iqc]U1KW׬02Alh[UOv ),bV{R|m"0!3ϢĪ#[Ǿp\WUiiNiGIYJ R===[|0x`# z84$DJ}*m??Wrp|DžN~ovʜjZgזi6vQZ!S!v-L;1o KBԆrIs~%[[(2aFy:;{%"2vtUyYDiT'3|$DGp%♣!JlciXFIYfu(K`u NsȏEy9^/Ϟx#[~n%]˙oIfibn+)]K*[h\o8Zz,l8DΌbi|Bz:IeA;",GHΧ!qN{6#,RK:WTD{н7 LPHi ʷ6_`9C> $zu/1r{յ?r5־\~n~PMwQ1M&(<&zdBA-BYoBϓ.W z-u#:p D[iBABN:2"!d &)\#=rM4pR&biI:q.O.rjǿ q]!9~@̫_pua^M":֌d8 D$ 1ZLYjדlHv'K6ѶCFlns6;{k4Xm{f) ":VA2ĠDf#*Ù(nnwv:6oeG^ne{`U5&46$҃_^xUOP2D~x~(X~6l{TCNq^s؁},@'$I1ۖbeΔAo%A!۷: n;E9Q.Dm<ߎ|7D9y 6x6̫'d`z8#Fqʣ8?o/(Qxˋ6߼OTA)%>H>T0oڋǿvRxxO"ʼnncK*"#&:jzJnGs1(a*ۍV:ΦɇA9 .u""GBe#ȭ}yꡳ;~x⡧J yUՉGwuj|1x9m}#pKʣ;t9˺?O+{Jک%Oدǿ~J8/M>SًqgrrGFxݭ6/#L/AIENDB`xteddy-2.2/images/xhedgehog.png0000644000265600020320000032737211143371632013533 00000000000000PNG  IHDR,+{ pHYs  tIME}_ IDATxyuiU{3!"9LQ&!F!ZEmLDTrN&EQ*ZUVu/Wa%JRIJkUӫKW/2ϸwE=gp7xۍ]#~78^-Y/;n3oz>7}dr+}G_} o[%7|5ч y7]W{{O~ߕc~eF!o֏GW|⶛>9ٯҪK_pusfטOkCZ~ǷNdU߯zt\Cozۛ{?;㖏̝?5tsTw Rد>;n/i_>r'^ão(x᝷}lnj3:O*7*7\}Ϳy\K=G!x >mah?W%?co?(@QZij)ԥ_[s66O 1V zcUf"ۧ2O.%d~AtnS~R?֮~KO(3yj^%g{Km7bWyKtm7]·3ӗ#ow-% 3J8S.*ឫu,;cޫD8Fn\y1[e; =!>;ulW)ϰ\ʢ]|Ӽ뮁xQ_nu1/汫?y|mʏ >['y=:~!/!,^^t}t x-{J(No,[,N9ox.ٽ"D!)z9͛'͓I|E]۔eQ\7w8m'cl~gparl?};&ʡiP&4ÊzvFrw/Rd^,KzS 9^,7p]G"m=&7}SUaBzcQVErH7^{ߩ|ݏn~`.,w!{ޟ37zMV_I;h?ܿLO]9$F)|T#X.?;CKe1Z8tPJ&{~5ͮ"STJ+biM^꽝{slwo^< >4`sǭ7~ɷOgޥNQȰ_Ęڇw7:?Խ%']UwT)] Z Cd؅rp/ˊed:IUs۲,wPHPBҢR]i*3a1٤YJO bZ8`MCHDU['kFT`.&]~y Dh}/^>[soͩi, mmˇSv~E!'Oyt(뭇u?Ϳfx]rO_.SfgvL)8yѸ_S?Q읽,z#쩦S]n3ٺzju7͋hW['ApP KӏYB*kTvFT ~ɱZ0魥h:"H fDS"P9\ B>HQ;"UEN%5U\uF;])%_ ڔ욢7Ϳ?{ܣtoX4킔($IfOB䄏"XHTBJ?@BlOS }=""Hk-2hɦ)Th5JbD*9 x(UI#z:ے2e(@ .x|}ABiТ6R;'>4&%Z1LЮvﳞO~9:G=yGn {餜9,". ڡg!(1,!`AHG@Nu-ʔQz}k<AN-9rvxEƹO )KI5))H!@F|!KBê5$X7k@T$HfZt6 Q3ʢbWJČS^ ɷuGRGTPJ=ZϓOkHm_{_|{#[ !?NѾ' > 濖|LRX2ghfIB D1R|A\LB@ij]SR) !3)E)2~D&ŀ`5)Er v :Gp9kI).LIc#Zg3ߚR X.!H쐂eqZ )"Ah)q݊cR+^!O8:G~u.rx{gp[=zOu)GD#eYc(E^;V $B%4!E|4 JOS̐؃dqz؜"ZHu(4%0׷l7E"#@"!zŒŖHi)B$ű#a1\93B葲nq Đ!pKD )'R Kk!+2 &ҫVF)zS*ţ157Yڝ2]ٶOC!ہ,T#v8$HHHsFkC "91"rD̉<9gb̴m15!FllKg{PtV%9,+@G rH2HQ) !B.@T,Jd! $ȜY/`o$;B 8η$X)j9vL^߭~zyQ@~Į5KY~o6ж{ 9J@Z x`Fg[ H.ep %9;OUM#82JRRRߜ3x1aqCw%ZBKF&D&gV%E5A!̎ϐzB TeE?DFWv mHωJf-P~IL gx?0^D?QSJKֶ'-?`bN' =࿐do~ӻ'ч_7JY~?0~o.6;O'WKsѬ:fA,T-3>FR(-59e2@vfJ; T $$ֆ#J;րHv1X CN0Ԭ f隁q(fJ()9"J "Қ08BBBXoAJQaw?CEʁ*)]`Z |&vDQ7Ǐ]hm"31S|lOLfM5?MEދ<@ҷygyz X6]pmӶK3KT& L"X:&IaTL!41@FeA4R}OAk2 $ER#(!FeTV"6B 1G1f(tA KA!1A4ΉGD,I9};b)RW1jגCf2!fyAk9kRbTAQ@Sw-)K.yԳn}rgg~M׽ќ\uq.ǿ.J3L !gDRJ !(ULJĥ>~HjfuUSD G 63Bԓ)Cג( JWTZ$gA "ȨJ8&-m a')*] HHDH Q@Ι=9RHS3&gIQHwK[B$Fȉ%֚'ՆlIv[ǟ. åFBE)kr'M)$B$h-2۔a`c>3*UqwcJ tQ=R&0feR)t|*'&ێ o ddUcSA( ] Ah*%9gm9PS2Ɵ+ '"GRr8&E_ }zu=;%p d\HB mѭ֣L mS˔qxpۗ;gZLDY?~BOl'7]ǤHcF=i>XnsEID$0 1B0S91>RB Ba}Ƅ r`eIΊeaGO k-)1ƄHP;vS5jCQhAd)mHV*EʂBIP|rdIY!T,zN 2 ZC 0xCĘF#C 8c0Hb^b3mGJ125> hm΢,J]\es;Rw\:XDk54Cཿ7dW_/~R by,BѶK儐& )B3gHR'a2Ql:(Ce1e ={3 b4]V Vt~MǎSh{t9A<[u֒2F II h%9R%anYb̨Ҋ΢&G%@YNHAJG 3hC, ~VFc4Ϻ9! `rm+~ݫó| '$wzG}ygU.G<+Oxɿx3b媡[܋3I1 )G`¦9vq!R QNBĔL" 1:MP5CB2!aj*z; &" [Z9L( vhqR !&uI? , RnB LYTQE`="& S58JYB(T[f-#˶@IT0uIUHd? 10"ɒ,Q*"d=e1J=W'>;(އ|Svw۟_Us /8VnӇz_~\&NiwO?Rq!ĔH$#1ҠSnmGa$dI]ou~ gH)D脙Lз I1%DlΏIL#{HIR C&Dc*(#bRITI"AdML76@JTeͪYRFDBԉ3(HyTJB"9'Rd"3)4jF/!:VХ.EdhH#9{:md '<9zkq ~捯RN!^}s׽5/2} 𴫾FK¶sD Yp_UAJӿ O}ַ\q'kG?>O͓;w EBJAďB)}ZIH1`(<~!YOe4U5%EؘmbtH]?RJKyԊY%U9#LNǎ13S&%R$bA/~`c2:U9VZ3gCCpi8C`>9#V( ]5.0ӣ~,n* RhY7+[9#"&A7F]G SMr oz%n%STOO'>~=[홛ٟ$mNCx\=;&bϠu|2p^:)g;o|ғwcGE3уMa F<)g JQOPZJUR7|NCR(PGAp(-)A,/>.OZ b Cl:R82M)38OB`2!; EY#FIP"CJpa^w-x#+JIv|\% IDAT@ribt!ѡi] )ZbHI t1(JLQ#H ڌT&&aTQbJnzؿQqHd䲘=~W]oq>2 /MaѭzŌݳ#DE)6>X[?o{ן y1Sbt kq!B* Y$28"3e@܀4"y X1QT2fS& ViqV9#rBb0xu(@bP!%1f4SHp}$ZV81@ aTy)A=Tu};0u+B-XE>(x xγ_9 hGK cOvÞY!JˤL&OzӟSll^b9IYNzF `R rK.vT-ZO 'OY>Ϲq ݁+|oo'ɍ^ #I)0ML&$ZvD8V}o=N h Pގ3lKY]]{娪 >]b5ƨq2SČI=1P(B$HFf\)ILbdԅ`S,F^ &666#$Ϻ]S5B!׆i} :$9K[H t ]K (m@OpvD+b!d2w۷??3~sr{הm*W+fʰ\M&t;3NQᇋY/Q*!.Àb@ 9$S>D2Ĉ ;7OSW3R4}.4ZJ9,u!%R1!FJE$ TLYqIھ'FA΂]3ϘϏ{G9ژNԅd@Ѭ;8y,_}t )7odA )+`x0Jf)vݣA@af4cݯ@m-:R19<ܡ,JTEII߭'g tE:J{}ߛnce'~*p >NFmӴ()Y7TG`9B #0TYp8K2'No^ 36Yr.jY0 xa8BIlH( km1YKSh2Bia{ Q$VɻR_B,Gt;&SRhR! MN$$)%$P1(mB&zT @k\ƈ"3 #&H2 !lT%oIޒ(S0xɣńȂd!%(i𾧪HU~[qvˇųnfnΫW~rC =0AL]oqC4*AX}Q%N^ʤ:E{WCR\GdZ`̸G*zThS@Y֤%A]aQ:u n쯍Ve1D1eHin A Pv]J0t b)RPjIrJfPJH(jϋI bh%(VCH%0UEBQ*I>RjBB }dbGIʙ>sONJ(ηi(JTuދs\[>rJd>}oQ~F^T);ҭ_|ki6Ige#EfqnG>O,1dVD) 9P!&X$ĀTuMZSzz42ӧ.yUnVhFBj:#:8;GUUS6TjLQTMCkl(/XHD%1cGsdwMǀwBD;5ŧȐ zpCK\ D1H%"6X( T}aWpHG d\D!кu5'BO co?]w-{yl|'sehZvw wQòYPё|O۬'(-VC]sH:9A"lP3ֶ@=JɄ1ԓ]q+ŸѶWp(#+-!&"Z*PJ$ҤG!TeMcv;M)ARJmR (pCHQqqhn)H.h" "Ti=a&J(*lllU!Z6'BŦCbzPL/t׼Q~W|u])8b%hzy{Q"c}0xܰZ:$c[u8H]X9SIɄ|FgK9KQrI HS|, ZBHK A&KMQTd\ӊhPQ#qe9.)/I"J e 9Rٍ|~,Bp4ǑPʠ[Q9 0)0qu6!8fu N2l 三c6)9LQ2Gm9SVH1HbHH ۯ}+/C~jDϑ|u+Rp67D"ZFw&k)]6 \J] EQ!xRmr6 n4!Dd-~ Jg `:!$xb$i쀒]H>&ƱbЮv?˧wH1*9ED? 0H qcV12L&$;G=S<0)rXQa]fB L'sQg369lġbwaZtY`Vll][|~ⓟG+3o/g^~="kP޽R8n;Q w\@clLY$ǒĔQQ) QRBOeFUӬ%RJJ]0?vs0" d[ʪĹDNk-A+B ?v!fw9u ÆLLc(_;q ,;(hV!!5JJ㾀jcC SWxHޡ/1.PZ^\F/=ַu12uG(X)(%DQXRnL@\ .M".3d-c_rX+ ]iZژq=Dre3֨=3zf̓7F t%UՔb#0Asw c vNwvԪ{_`/|Ѱ0Xɟto8|zTy=Zĺ88cPxVHt-!EcPJ)Sja [rL!҃t{ۑi.#R.#G6R-8l6#A%PJw&8Lj1HZS Z>zw3& i:Z;!8TyY~!}8+yR* )jE!պlb5VKWSK4*5Pŕ1R[KWFeS yYWFoURK@7@ LoTii.X4Nat;(y+0VVim\=ƅዾO}+'HC{ztx/)w<(#7t5qh 4M0-H'tٲ-ë\M/=4]133e4znw>J'L[#x:F[:g'1r^+'fy,ڰ*]p{bt]h(rk"2I^sF)A,M KBoGr&YSh Fwb$ 5 )C)a*39/S0?Hz/IV`43HڡQF5u;N H?}{=Yi;~׏8>u 2cn)ű̷3DaH]/9g`Op ('5yk><9m<{vL7[cp9E62.6BxYsZMewk \7[ji+wXW:Y4A5(e1FK"_.:Jk!@ .:g%A)qDܡBrwy5m75h4%[Zi a|b `t|Qf7(eaf= 3K: =0]vLøvV_7םw{pfKo8#6#°;EŽ(;<ϤJb^Ntd x%]Va#Lp:I+Ӡm&4;z[ (2D%kbJh4Fqģ{饁&sjE ֺ#( )) B5<)`!"͎V$Ž =1i > ~y^8󭼽k =9uj=⭅KXO,J]+2.80-p:ޱ4 8، ~:5|3&4PhU1xz)bW~D&R9G+L^!ºf1qR*5Z.)8jpeFܨ1Sr'eM;jd%1Zhr+Q/#0k#-+wF+xw[l\x6#-!-8/fU37)MVٵsW(3X;TO_l/}y֚g|r{h>|>qgJI) WF{m.c= *X-=L<w{|pө<} Cabcf zc3LKa"[Y#˲0 WI׋!`͑(8[iRssg ĜP-i̥Kv-jŲ.X7ÍB_H-2T(rsqbr!e$(0d6#(V0]jL =TFk))ӊDhęڤ]z3 [kNBp(,[ IDATx/c@0ZL Jym8Gfz}-'`]Oil\Çb˴۾#3}B`7Y+H<|]kA}*H'{-r?Ƒ\o:Hf~I-1I. Χ;>:8nJgOԞݐn Hn@*͸SzNg^;4:5qh-%3M Nq;paY]wM$Tm4AULr5alPR!VPjW1'VtTǑW4T*QuZ^1 2CgW{=6p@r"znӔ5f)b2k,ͧ)9, *&oZ)I,P҉9Jc 6JRn%zӴ*\ ͕t~|YCZZ j sNi?NC ֆєA)::7 dZWֈilҡL\3QZ нAZe KWXcPZQ{M(M(Qk1ʀ"wd*)VPkD1 XM8Za?mF?~;)a홦,N1I%08Hq:i ab>>%/izu)͈vcI?l%o%xwW?m!Bp`$>%E-% yi*&+Eh&UFw*%l-kɹҴbprzZGB'qRR5tj6oFj3)RוDJ 3IL rq3C:ŞZK ڑOk˞hX7l9ݳO1}^M'zQn1$[E+Fr)E:LWX['R @)j(GxMrlw#mu6=/D"k,ZQrclЖ[IJJfbitrVT6e^a4\N?t}#WM@oI R)%sV+4OF:ZsFu}K STƑڻ(5)nⰬh8/g) mI1M/=x~9ra=/Dwo;'.hʱ,#O913Gz^ƒ]}߷߷ؼu{ GQG n] *V5tJB1`c" @[jp^|`'6)JQpVZ[run\9o9w-F;zeʺ( 4?&OߋSI|7CîaU|:|IKƋR<|tM@++ F*J-(ci59]5 xtl@̫JN{ʔz=9On5K#ttfp ^Y^xD;Ĝc$JWlOu:1u&mфa@_7)QbXkb.Hʽ60 넡Uļ[.y[Xәvl6Om= hzIJhx+|q WAiR'FM|W+}9u4|+^oGSCx{n3K "X]LRZ㜥ZK>a."X "QmJg?!OݝjZ(@[z V_}2n>S>~˿ɿݝ|NcGΏ>yqKVp׽O} Ӂ4솮]["ƙ781hR5VoXFm!׌n 4MΠUZ9+ pw>ὔN{5AmʐB3i6ʍaxv8H=,XQ9\X4J-o[v{I7Ӭ`M, `mt8 ]v4cbs&DJ4I$,JK@CBk ,nG. zv#^Ǡ[8k ?q}s2F|y'яgBnI9MæLet] l%%DNM?|mJo/_׾sB7mMZIqnZe3^K" aAN`-+I:S5~ZcT#'J͑Us ujl3;ٌ qorcr^#ƣ&Uq4˩ )sΘ*B u.2?ZΊ.9UetUIk%V*8ݠ-4Xz:xvF8LLe~Ikd"\*yh35hB՝o}'OӤ#=L͑`5 + P t` &Jk{VL^3nnnOPڢXH \>9-Sr>†7~.m/FE`s}oߠiUȱUJ'f"5-M7Q[Ji1.9#4HJ1_4؄P8% u*P6rJt@L!/kTՌ|q]h*\T묪2xKkm^URfXFhbL҄%)r<{v48hJ#J#*o<Zc;L=c7 daM9Q< $wRcFΕ26kKN8s>n-VL7N718Hq!ݫh]َYzi3NJ:B[j+]5T,I(mlb(M5t Z}z ڀ.9(yƲšָ*bn_g:s-M/Y?1g1ƊX'ŒPM魕KlH)M⠑eԡw4D ~ r$fQEmH /L!*FI?'ÀF#. hr+'8 E^ X/L%sFϨ.x?U^}?i&q3#^Fn.M*(vhmY36vV#w|oOA't|ϬI%7r]P]ĸ|ɪy6k 7,1AQD6{տd\ךqh.N 6BglK䄷 +E0(IZsl:WZ\6hatmh-%W)1TJh%hߌ|ұF:ԵT(rZ3$#耒{q`UA*J3/Rzi&bx+DNF e@+:pN+sJG8OsVA${EJQhEQ(9LFLV?_;~ݵ/ :_cklAD]xzH̙='PVʥRȪ09e-MR+"fdkT1V+Q6,ij縢o1%O+)6kp2gR.#5Wb53he) dt88ǚe9&"7GFF+RʤqAIwR@V"p([E*`UA) 1FKW@%KS+Eӻ3 yg.[j%łnOBhs4T7Lp m=9Č-k.\섐KBkǹ1 S =_P -e\Э18.S֊Z +2S[ZDKMH0S{iJ&]p.޵;PLn&Zр39\716Prw`bjQ:8]o^k%b4i$sc0*{#P6-RJzې*,%AWȕ3ÖE݀wE\XHYwɗ?a$ҫ)~xAJ](j:.6zkc1gZĔat^kKpQYg$xK[24->vug;N8%"q% i% V0+9轠G[Oub׋\24PXcVjq3b(HHM:h St5rBҹNYZ)it$!Uy)JTB8c2Z"1rgne Viu@\hVW~%*锽6t,S26E]D^pa3CyƇ"vQQ~%*5+58?{M7%z9jOxI)Nk%GTh|wC@/; 5gz&!ATG)- ~b[,k9,y}i [jUPWFF4UYҔvK+.&Iԕ\+N+]H3P]19Bg-*D-fH׻!?˲f:+0J|_r&EQZZEmk5FL3;6n ׂE8֒ׄPjї-G&IPF)lOyZo4|%㚠Xd嬔kZpnD)+".whcY;Km5{]گzݛ9tx偙ڶw]4|X{}9TP(j! hDFSR1T- A41b RQ|CR[{^k9G[W?srs9~ZHBBLmPGzcJόV52O'ra[.9~Fɓ=o1ZM*y]:>|7xkv~/0Dӑy:2ŷ#<"3Sxhg;v+j Fwʔ򅏾¶r5syxꤠ\֌ jZ4sy +\ b<' )8.ʜJ18ҬAl~s:`Pya`-L#}Yx5=eNJ>DkJjO*iuaH EPw cݮTXnܰ&h É8@ 7_Aϭ]];~?O}#\q֧]YGF&~Ԛ8fs. .qJ<=}ç\z@T?)\vÙ|w?#E(l]ƠkEqb0v ٩LoVA:"/|+F#6yfsin2,J A継ڊ eulZ*)(`)ؿX D ppǺd:/1;,yer\aw[ūuzɨxU*m5FQ'3?t cjvcq [+`b]H a>IcW_-+u~YVUO>O_`|rKepGZpo8 O؏ቡw{.ux1rcͅUr,8!#I9Dv,}S-7m9۠  Q3zAcGPUDP -.3x\sb]o y4TCnP['GΙ秝v%f30x*< J3}R9ͳ\48]80>8J#4ꠕmnJ5Sp(D>f Ǚ8pmCGϜ~Bܖ/mw[.?!3"O-7m=Vk)-Ө)DB0^(y4!BKkx>x` fɪ`sܠ[Wm 6e{jooa:3M 2:n$o`^wY$Z!K:;J.ƧH[WL<,tk. 8h}mhY%\`+ӜLTDW]ͯF/ЫY s)O' XǛ9 w0eW2 *U SCę9ht7Ng:ּ oޟq[^=?O\~mms7? kTGk,˅fpV7n򊎽#2y+)qqp4FT8sRLrݘQ!pj#DNQaBJc.DGZW׼!~ n:)ec6}LWjZ83i#7 rDD'>y)Fܖ'nbҘ-#{s@):#Dp]=sw"8P,n+Cxa]Wh\v&F:h@z` tDF&D3Oˍ&_t::O:uj'gg iN\nZH13RRtLÒA/];%|l<;&J:"R&wD[%~oeE%F!xLZ9xIDVq>P4*Y=2 A~踑m@,J87jG}\<|#i͏J3kw咿L 5ەm5f͞dה)*Dcm}u!8 GݿG,gjw/yf8 z1߭h(eűQ@/+I,}XM@ Qj6>;(-oH+4SF8NA)<#%#_;a`1xn>ɧP ^M=$jfTC,)q>X'ʒibWγ]A-pbe쵿cWecl+)E22eOݴPw z]9]p82rp>İ?hI﹮dv8nwY.xaQ?]CKnto4e1Nތ@QO'.mч]WFy\_"8g׉5RJL1DL/&]1#M3u`ʨY> :ս0L vu7ɟ+u|}.!.xWugGJ*|1:F<=B(pTmo^_n$裑bFJYOxU/nPysַTr{"!LnC:m!DrԂ>1 |8g@Vr^cṫ#[FDuh#w_QވW9_0&|o 2 #S:{f\lT"+&paǭT|(hhO ) KjRYgw ]leCб9 *7 a뭶%g]聱{;Pb`u@Du]1WKd,wJN維fEy!Ɖe]!=4อ7+ϟ-*V6d 9삃GNdརbT*_֙|hwsfGq"bi>S9̆ aQ1He\ny=f O^}_ |sy킶MD '>~K-Vp.՛kF Wg_d6rHy+ p6GfAqѫ1FoNN٬U@/ LS]u0qlj{>yxxdͅ6*SF+jM)֚ /]=Tmpe[L32iWg3vU9%f-U7҇EF\:,2x||DmMqf+|Gt719?դIC+i9=ܜd{kO~C}ׯkpa|3ͳ#J<<5nyEz3?r]y| CXK1K}z c)xFvPxqN,ʪ;h&P𣃳QZFGg\hy@3@ckͼ53t^=WGfUZ^q.кa76vE5lTޟ,yb-gce8ǶmQPgY *>^/'^_2ܨ#Sm N,ta8fu9 7v-uR!ظ'zf!%ۙXlI:i9#2]]2I*BVBt@w8';GCڍ 'L4_[k]?Ux/?s~tg_ӫhەJP~J3Dtt830g,OMD jtDSZQ/{/;!RyGk\^3IJsԜ{\Gð*>]Z ܲ>Kj2嶘/FmG/8!Hc5j'dAmnPkAWېjg1!ֱV%N .5mָsuC0R QFNTk:ɠJY;N_#qᜧ+QwbO*71oGWMO?򭷇{z/fSkmVx$oWcȠJl .b:30Va[u !ra63 xo :WэJ|c`,[v!uQq& 5VưS8`,-Ja>`=q:߱\Jo%α:a&(R Y6K_Kd/BBݰ>lzc%3h2:nVQ8H]F圎#3͉z{BP%5)Ё pvwQB[" bul4x\L;!hat.̈vZtg[߬Okb>|s](Q[5x-sQ!(d6NVZY Dtʒ9NM|z7qzvlr5߼Z&I y h}(;7o0 Gƶ"ڽB23`INJ5ﮞnֻ0D(3=4Pb2^ D bhI=R0^PV)6l6OvsT0R-3޲zCBf S#F{mX]%|9Gyf>ѡ 'xwjeHnz=2gjLL Z!ӻde8!c\ gKcNwtut|ok?/U]^oZڸ>}+c) vfCU=>qp`G*`mq9{3IHAt >Ջն5)lLlBgoNi#Bf:T F[1ZTbGIXFZt|F88OJc, W9N::GaA;VdfaNrFdzV|IFmZhݚD۲SOAqi)B#Ø)9Omh5 i ѩm:uO Vberip<'cmkZ]lN<{ܿ[ ӑъ^/d+~./{?/2F@Jw7eI)qb0Q˅׏wZ! cOcF/Wx%/$ IN1WJYmɛ94F`^]ڣ7-` :B=:duRu5nR1W@l{vcNt,lu%ę) >Eju'h,Nծ0OZ nyc,c}|wWz0}032)DSmz3"}3Dt*6SǜQL$B7tA*RgȮ+swl93}6Zl+ {Zy3Uzq ߢmj/'^>Y⽺޻{}YV m[yR'F+y5#9[H-5D:ԲuP)ZMo08˜}=h9GhHۯuC$ 4cr`cú*pLu{&Noxь=S$"CL4΢!>g&8X\>؉*o#*t ŀzG[FoڇurVgޭxd+efN}6SgW$5GU`*)ݏlq17'Zt"c/YBP26gW=ڸ :Y8!DQj1Z$ aOO!q[7AZ C)Zj`ˍ* u@FpͨD!\6Q2ZVbIl굒Qx5.i2tF]2B"1N<<~B}j_9;kgÍbv: ݧ=m[4xT o?=D~UxKO_ȏ<~/PĠtfpB8ͬӍl;cB2',q>T(En:'ʺ?0ڰ !cyhA;4BͶa8ù풰Zs@ {5m$C<rׂj]o7)uC=L{ĉ& F)ݞxO$(-2 {=lBG|mJ/6y)OJ88ח”ԂP=m#9)Vg'0+rSH{Sab˞`匪uZۮ.Q6rd< IDATlM^7j$>S)B©NjgN8OGXiok௤e6/߰oO( +j8,wJif9.OrݨŮ&/u0Z#:a>s8yKT:dT'xQZ}S l8d_W &QD,yϽa3fIp \ob7p@GÄ!YRS\ x4#òMCb N@!qՑiyq;d!0OڜA#AEԠ誸=l!x1M4SFolĢ^°ML|{C5`Hsbq'ymUa+W`G2t y's"S-HYGZ)|F#Ȩ,'rcM@՗e_w}z+?z|m[Q1jN֛agl4Hj/4MYmc- I!ia&z0*8\=N\UE||Wۃm4&{-駜=>q88~H,O)ao 2:֭5 3:N}AȈ76Np,'Df̐݇Y'xC줁w)]ۿ[FĘ(}3y&'z0;)B>z *u8)n?F7At\HxO+[zQkXL( SZ87ضm˷_W߿,߰7ʖ]nbky|h Z|t8U=Z9^҉Wnk{߽k'[T#əZwolgXbD[w,R|L?]%S2vj&OmX"j::͇6;5Ch0a`t2l8o x'urd0]Њ#Fg[w7XO C6~ErV+Ϗ\Jen}4w!>3m&-,oYA+7zz}Z*RJ_#el-weYƭ-tᓏ??f9j7CLJ(Nmg'W3M+E`Ԃj4yY3˚m1< &:vӧm qikL#ĉQ3-fs@;ӄ0PSsG#cx9RkG!?ʹ ?Ryeۮ@tdUkMΡwwzMxBӳ)xbL \*O˗hR\Fh]`Jp|b,l[ɹeΜdui+ u&U)큁u&jj.qs2ڞVgQ#-fJCf(N飚]T[۩mF vEΥuǾyɇ<<>LJ׬FjYˍ&kz:"k' AwYjs{g81rpթim"q)wL\o*)Ѧ4s<)XKd2kܝx iЩ'hCACUmda.F(AJ3!7ݲӲ--O藇s$N?~*V/_u~>*n\EuF~ !Z:^{mo<`cܚuG1aCnۮ}{2C!g8q~_U V];wnW<DžRwI4{c qq|R a5jY ^W>}8x!2LGj6.7L0z{M(yvkk^uJHϔY5-֎WOJŅ#Nz[~ɟkOzWldeh\CxgBǮcX}b\wd_00'#ze"6薙+D;tTKdg-[lc )%ZhyIClˍ>7^_JaGֺT9pwH8킓-x?2h15|v8=G]s$ՊY֕8E'a2\s2LFAH|^#[0uȃO W޻=Xy\P(JF`ƨqC@aa5F4WFԖ}Z%[5ub2:*s<]"_>=G\oOP#%DS Sj 38Fx@mY4ygH17jA`Aݰ۰, :*%{CM?E}qNc}ZFgH`5V6ZXfHq!d#)%+EtF %D8sBF4aR&$!Juoՠjqv1]ﺿ;\{wn &JTT r`*P&"mwKƤR QQ LhR Ҙ@-m{{\s<<9K"н:yw>ϸ}}e'mX6N\BY$J)Acx5׍uu<8G;{QiM_t|snML'bQ7ry|(q0ޤs וmMyy.HwGe ~qt~?~sWΜKy}ghYC7tj/6l ;jl!a9Iޢv'_C?>fxS ~ŇN-ƞwB*7d$ĕV-$(IM`AʼnJ֮sXkbˎx [AZF7`xY,#dUgB:8 j7s=|\nC&r Ι<9_YY :wK& RF3&1jd5g$ШL;,~[o xO Np$e:CvgOGlj`3/'iӁ+uNR6&#*Lx>/lUգy{OjZN}u0ľrϵ~@۾ڜ͔ZWS0eNiɧlۍgz DGV{zKbFbCj;\dyhd#8^ b%[YGTMr՛X)&>}%;6sHQ%ԋp6r g{tLj=PתY0f/$!zO3p\ά8Qz!H䛱:7ުiH L7~IiAk9ЈcL-J\!9|8p=o?,|@:",do^9h8qcBav|$)#qDLkp)ʤLi9Ke:|̾ oH&~JE_?'Tk:arw4wRUJ(Ӕ@,9d\^5YU]cHfVӀXDOkJmJ_ JiTly& CJp8qsMy5D 1o$]k>F҆G3Xՠ|0@ni|K&֚G½9g:\8?}|zyo#ΫTyD Aptz8<==I)"<{+OϘNg[D-5>7KЏ6Uㄋed @zeXoQ{@ '}5 xHSD™B&38CKOk>\ɓ~ϷL]vaWvNS,GR:О>D-طՄ)k.>pT+1z# Ē~9^por: hO-M j 唪e.Q:rUrvNoه<;?孻g<;m#f paaјg3Yl1vнSƾof4Q(y68Y;gLAŋ4\3˽Q?<o@+ 1%|q9N18%ѧ6PS#q1b"3.Ltz']_PJ:c# ¹0\'Âs(^k/o__s{Z@;ujɦlri}",\!4Z jEjsf <|Txr:#Zs#yzH)N|Ët]F|桏]2bi^7KޫESNaI0ӺG[CkF9eJӐl:g;-Ev3OޛeGFzcU{!:O !E,:¼ض&.DC+7b,H9!GR=c؛b0%ALPvc_ad%K2 c8/hq-ea_ǚ-uc9.g4#j쬲o|/(bK'J/.Rq>+7=7}7}߾kC]ءUnL4]Gpn@js{-ѫp[9OhFM 6LgJk9Ā yE!3nMMͻi^GiRS}</Lڑ*Y\[ԋMlw#B^o}U:oV!u%ּfvH1ܮ/̗+2E|04^+qXNo/c{`m84wwCz%7kz KlP@i!9gapVq!#MGey೟W+m׈n~z8ThRp݂PHΦҺ,”&+透,Ue>! ^6Tqjv=_Ud|*uHUP?ЀZ-C̄glcU91OGK/MvtN8NW8*srLlYVQV6-"):Q5;Sƨ biێFwO ;0G;xt$rҨ (8,sXoW^uHt/O+$۳$j'jLQe"&keq TN*x q5Izo>ES秤xG5_5F/'?}~2}v4bBo SU hC_Œ*'ldc yr$X38m8-ΓM,*Gr,jCВGI#SG0GD&dRL9\3sZ8.ZPy9}43DIgd1`Gzc r$3ۺ!t>c7@oW%KDop|% mi:Q2' ^;y҅'jF҄Grnxr,n'F햪ĔxbCCJw͞fzp=RN.ҍԓkC[$0VCˉn/ӏySKE^F?C|?/M?k^nj\m;ʆ78Į fFy!QԒ J5x[{Spt$Z8L 9_l7ES|'JpGb\P5٪V8q|\Um2y_^/(ooџCmMZ'iǒ_Knu:lg.?r&Au03w0 .Z,`B;P M;lPS.b.+m/Hk Jl&. Jk,;3g-'>_5W>9Y_͉H)Ngҭ?k:Cۅt,/ZgDeJU˱ձf[3P4FG|44Qκ^xt 0OC AF^{WcH6ASCik+.v\pn&}ZaE yZ/Bsb4ͮ senֲRH /˾sw9Ovym{P|<{\xU[}J-n?ޥ,mf_ ;ݫ Ŕmg7.\ x} ߖ)^i%cG =znz R?; G'(OhjޫňlVXGf*1apBSP@<Bpl]aHD$Ǻ?]z؏\2r56TVU\W3L`JyGGo"~S#F|C{8/'t$. ?nܦ;=!L=Y-X[ޠ)AmG5k2m%N3+ZƔ@o-7Zg?`kFB[&Q^$/Ys?w0''>0V gJw Y/YQiڪj&3)-ܶml)ayVڱiy¶>zZlKp EmVJ/}b]iz]P(]ïω7ormj)mϫ߯nϹ[?0L"jjxQ!1с\2MFV0_Ef1Ltqpny1x(CK EY@xyl?lM% --LrGOo7ٶ2-gǏG!o}xslʵwPi}}P)eN'ԥ=o²v-&Lr[' u8><7C9@kƛi=KX"Dm6il†}7 w&*%z &7٢^́z&+)|R/Nea^h-h_3'ft8RiH+^mܠ7@p43WCM23{vޘ]Oqk%0zhP6M7GJr17^ (MOg;p:?T&Z@8-jAz{=T[Fr'*zz{`=n7b%42τt:/v; ?~?Uּ\ܶ6+B^ħ8mLT^ߴB̚ T)pXB\ڔNlƖ3^$w烙2p)Ln4U;>LxHX, 9#Ih#YFic;fm48 )ށ`ӁŐ*vwʼYq6J7WucɀjyFZ;hɍ[ϹfiLޱ2O&ζ}DF H˫赡m{i\+?wA98Zɴr@〨L=\#+bf Ȼay,py|>˶m!" ԃ;͜p~-FZ}`9$N珒ґJd:KiosM_Ckk}[-7wr-?6L ! bt*>F&7q P> >]qJᕲmT֕y8VL a[% $|:^m;K%{}VjBf^+ANbw8qXd=8)-Ɖu{ D"C%Pk~W#JZQQ[h녆Z^іQ~ QO}O| ̉nS\mx6OEiYzj/Z*MnV6Syϋ덿#?;sfdp4R"+~#r_?w|%3O'3>mϨ{ ^W@+m Lh 7 !TZ ^F9` ,[cYԞq;8ϔiv+oV+~å@LG蘦fnOS'nj5L5'L摏T9.UipDNxtxnxxm0=jÅ.hm{>:?rmP2p!SnX^ȥh٦|%^ޛni*X":+}qp#yL*ۍraco̤NMk& pNQQS 5G|,V-1u{~a>ڦpӉ8lpHި{rwh rz vv{4:c"zǭ؀J_ Dqń)kO\ YGDnWJPYV$,xQX^ à4.-[&^W><9y@a@K'o8OnfPmr ة BGnm7TPCn8Vϖt{$_&euۿy?ГҿJ k6d}bk~uNH۬w;艹Wl Ae o",Z+V:4q\fevO̴%C=={10@j1ۢ@fIsĺfZ0k|qC,h'8bO < .J߯h%cJ;AlRyr-hdܕOsv;֜I?Mos0H@̺WAa$؊I;e^)M S<y9tx<6r){ġG톫&4GЀRevcIgu7jys{p<--3F+>n6NTu߶.?/_m꼭ZDV*Ӕ@UiE^l*ҍEz4VMsbfZ۠Y@W'dHq^\l+`oeb1D)[Փt{*@mf :*>`熐v1S…"D F^wwOq!ɛwz@Kry$r8vi:`'Z:L K)̾@=9 `}^Mn)zF"Sv`ffWهR*. ὗ,~Fj[)ZBpbC[UƄ΢mBKoJ\9LHMQD7Їz|ҝR6Y_<~]F-u<&iktJog@쮃n`з*^Òg~f7C@onz1a؎4XOlؒwFxa#kUuqx#| 1X]fC.5!$|H,;$g,'XxuF ]N^WrA%dzQow}j*ĴV52lP?^=լ>myŀjf)E30w[;?a`?H:8!*0*.G\^E}b,⌧U-SGnVZmq$ҌKM2wL1GU__}M{/_o]>m2c? l]uPȫ59WCF袜$%x3D,MQ-NMmzEGYZʜ&ˑe^pޠE0*wèAT<^)ѝ⃽jf/fgbe>';<14>$g4e3gX,KkJ˕]  o~/jBQL.]P8rB^>^w?;DT4s'Mɴj*"Vrls0󴘑CA[..bbD {7o} 8 9,7 Ѻ`OQU7EZ ӂOG`9.4 )E4W_sGg~W? Cl⦗"Mk 3:J@y(AӄZ@%yaN%Lԕ0ͤ8N,w9.GuyTz49;s|O$ Z`8-/1Q&g&CWN7^);5W;@ڈ"KDSeR"Ddz$ZޫfJ ;{4V^Oȝsiaۮ2ViL{\weJ^yg 2y/lu)u3(R {E3Gh V:HGJf˭plx{9Ͼ''TPuFLAuof/7ՎÆ}O2PuNb̟뼩D\tgί0n{߁LLv(8e͂Р4k&:sJڅVor3ׁ- N3^ǂ*_S?N9sx!H;9b%C P亣#Ƕ đAEs^l Z(8O^vD:)2Tj߸> 7j+9jKw} s2Zf* +ƒehO'L[L *J$g4-/jq:n#片;KIsRV /Zו\vJ-'|0<ހX0ڕpuY˴>>fJ+t9 8ߔst,V aA^QJ/K A ,H*fb\ `HqbN s4j6}Ļ bQI#DT-q~[T~_?;N^*BՁ/q +?ʨy>0#7#$gC^>I)-_b}(̼C$e mu|?;GzZ7^Um61h9)[ϥVk8)SD#d=mL4-40Ԭl?x]5_->iE-(L+*;'o".jvc_7z^WuhUJm,ˉ4gČW;t<֊hGcK;OV6r%Zeq ]ɤݑ{OUeJ&Ĕrw)ePĔXNw8/9pz*,=ҌւtAǎlnWUt$Z$ Rb(-s_K!^3H}}P%+{re0sEf4+!avwyx۶R Lj@}%9^˶_PGx-y|i!HfH>2M'婹a'3S2St 231PAmB,P4$;H8x ##^牖w JoUZ[890 %RJ_ 3]_K>TJ{c eӿuF핦Сon IDATv!h{4zY@&ÁPkYDfh)L5gnb,hZ;f-s{p"D6dRV- GԽ=r$NÑ4IӂFi#K'-egWslv6nGȭRR7K5؛ (973]\ou´P[J)^r{4yr] 4ݓ\J%[ߡ2Nc؛!֧isnLݜC dGr)QGz-UBW`y5aZpN .S|{׍^7VtQfj]-Si8hj Z-UǑs+W]~zyNΦӛUEP[5vôwˆXt+lVRp'1dT}1N޹zf2bS4=#;)!Xg4󄴘~ZqCh@;k5hm( M"M,֝8jxf0n>hΙPA<lg+b3~imgV*2k\9G}v3Qm9QJ!Fo kS!B0e'ʔ"c|;lbqb|C\>neNN4r)Ѝe^jR -j7.)齚C ·q3RL[[ dlf'!DP}~w/9?(-Xo/l].#OXUvP}$@% 뭲L i>Zn֔m*{qkDe0` Ht*'~k0VJƃN&ڶ$2Mzl̞6dII _Nj#{Ov-[iܙ7ׂ,eЩYk}RM4s 1Pzn"%YLiO|^֭N;yghVrL6Vv[56:**'yCx()%qywz }3O3vD$DRt,@ FYI)q!؂lbabkx{5A׫c@x6CPΨ6;Dg~5oTWwwoλ~cZ{s-Wlv EVJˑLCQ(x  Q$$D. P4"\@#-P$,rRNusk94ܧܴUҭ[:uk9~JUNJ cumG΍ Ky@yz>r؎5)ZޢL h.ybU%;]4`ު1z!Lk{~9(s!M[F^RMNYNrS[u<#-↥^Il șnn*\*e=KBGHJ?Snh4$)T҇ca}gXFEQA1E1=+9>!DoJl=g_/w}QH,?\=_2\pI3rNa}fNAT*##K](%%X*Ta~z8C,9JׅsMUD·Dsogg}GNAJ!QR)$&өPf~R( K ξ<,pFgUIɎ>H5 2W8G?3Ibq8r'%¶dquz;8g%.{D`}'0ɧ>DY. #Q0q.j6#Cƒ=;4cI}|"I%c@NgIHz&%1)'匫"OuIykd R\)0+G{Co!A\8ncހf6#F3~x6#Z|TB]μ\kTNQW4Ƙ}MPRax j1,B+^ot]_R#/Zh%$ΩYI6`wRtPE28(n@Dcn#!ZН#d-WDnWǿyy\Ore"ࣳ, >!s%t?-`~`mCns@d.=!Vr\C_KJљ5"O s,kBr!> ?olֹ isџ+cf0y4wɹ> JUV-$޿yGxp.PzP?:wMӌPUDJ(,}Gg.SI)"QSY R#d"6ı.0)n)0BSOad{8!)}DWNܵ4xRSo~8gu4})3(r)^tv@na F>om%z\d_CKOo<}MN>]($;&FOBn!O,̜L۟iǍ$!t܄(S]zI5RYйt1p9_^k'zx2e`YW ~@m{!nΩvĄ o:)ldž8\AHW؎=1Zx]qC#NElA%EyFG!+/aE*I3KYHPo89ɵr Ra]Nǎڊ\ns~hkYHʾo"RTcE$-.ԤcPU}E{乔B};x7(%q 2*FIZr)"N]t.4>c@?ȵٶKtw0(F)F?bwH/" 5W$ZYr}T]r Kv wsEwF2X对)<~v+ m<O'>zҗksXxc,ˉ<'!u t")V/a,KNz͑(96j6ZC5E¼´ FJw2fGTK[HSZ{h`ɿEӯ _wI,5[rRj `“BQ8% S('D)/< ޮgn}#{}[ajum0S |b;T8'|+|r(RGuR Ә;6(e e,2kvImIS !Mj[[LrRJ[ ٩NN)Ҋ1z .G4\[,2no?d>~HSy_⏧7<ސK֐q 0C$^ߙۜ({#86Pގl-nJM.}ߑW?>j#4ɺy<=PFN%nigKוtA G|YaԒT?)')*X L:^#2}PRq3R1-kGL5a1mBj)|pԁ[ą^%2հ}\3)u(Џΐ#PraKZrjpx#i')}2gcX:a .F+{ktI{}KX;"z+.,-mčfkm{5Wk؎KLVd 'z(Pັ'򺲏HƻӉ6OolqkD}L!}{#__/PוOS3Ev%PK'H5$B;B"si0S!ptDYxy'4YF]37 SC n"PI pᐌbo<2i3(orz?H`߾#/9 B) \XϏL);5W|ў^3v5X*B ^! \ 40?I<^uOXX5D ~؏eMSDuZ#8 s,x:! {\8_PW:Y0f$q~m!2RIbhG;"msxf7Bnq R2GKnsIF_LG_ Nɉy 1}BRޮ'N3wRQv}aBp}gzfߌ,ahm#ly)~hF5a9KqCse󶝥o|{jr:& %bxL%G䎵_Gf!3CFGRI*Hߑ?rɬBA` )w46IPz P.A?5$jZf a5ʂF.kzr0SJrD06sgY " X2Yc*3kYXg^2gܶ[4\\+94iq R4;JMe{5EqEaU=bS4b4-4c(5͑n֝zyk9~"}1ZLk-$3ZI54}nlwsZƱ&aYʜ8)$ı o0hGA b S !4G"34Cq:2zgݧ^; O!>~Ҁh|PzG??oه>F͹PJᴜB~B'c$- {f$eҌɁt nئ%z,nuw1/16jVmǎ" ,2ۇ$gry|g{oZ)RIӱ3n~6^u4 V\e؝e3cks/8}ۀ{yFo,#\.oA^O[O5, M5Z"IAKG0 /J5JP_tz5X=~5rX-rRM)̩Ŏ%M5Qt:%{\9v4'O[V)h&O'`t@<\_o~o^1?c5 ˴ۉgEY YG)v,P WGp*rbXDގ8T)Um'y5W* # D!c_+"u뜗c&($>Qڶ> v&zvSy o;ǾGb*+4n# %,3`%6Y#1փwl,L׊B)+E"GnyqaiGߋXiޢ4c44ŗ<ɊⲢ:aԒh{GGC<4,%&r`i fY TD+MKD/#}+s䃤aw{E_. y>@FtD xs?گ}.7}GZK-R"XG<4Xd8cw WӟiS,Lqd`;Y kZМ) RV@7ʹ Y&3}&4<$9Ur%ܿ\ekL=n-mPk;2KR_uL^X/o0QzFn>0QJIdMu܃ޣф)*hJ\.qA[ ua]VvwJ9qNߞ8-NGH7/3@TCu=q3:x2&VRɝX+ ;ð2%_l}G4ڃRB5Ea9\B`0,n3OlQy<>Yt=⥜eJyKYA~\LYw^sOĮ1X M\ko9hθ-58Rُwo>b؟>YP)S|:Rf}8ՊLC{ ±9IKuԀac/c V R *5Tzi:,zя O0%QR<d}sxtB} )$ `gέpn24}@L(1UU~[H^_s?j,r| ^\j3Y{)"j1̝ Ķ:I11e(9qSD)R9Zo8R/yp}lS\$1&axBm dou{ʂǼAG`v ^^nLy+Y:;Lm>Di,~}ǣ t\S#b-i.|J R4z [Y\\<|YuۨZnHo4?38bc,*B%N^.-\^Z(I# @B6¢bhC =5nјɀIGL%wlYNIp)80Fr3>)'z&|{_hBrI1 HF8^ 5pyXTZ˄sem#gl1BL x9'QjWy}mʳȈ;?=3+hFrş/uBiC#)1zL1 бHc20$F`桦G򲱿L. k/.U H9JT"r k $&?U o_>j8%NmEzdA1{Er# N#L \w=4cͼ-ys.[@}{'b9lx~Ѹ$to3NL:啝O\ (#y]O[HLb qX׉;C)QT~'L;dH Sj9nOq)!I_Dgc)E1Tg7bPQ i]9~\cwJr%GaIaξ`d.r#D)e 4{S6i ufdA'Fb`2qvJ٧-pѷNG;X>tΟYg*ֱgXF怴p̝[AzxYU{ۆY@cㅾO31HG!IcHm d^:5"Ƈ DJJo4a@pK@P) ijEh^`Ycxq Tjx= #WJwr"Nk~cFt"ѯ83CY'6K3!Џ ;HxEbLI1}8i4XzxC5#bZ\b=2soM0mtRZD;y9QF(  TƱb#N",yֺ2qc~r!~}ȵ<@_iԑV$&aRM,sgln}N.g~+ ͘ uH!6"Ug M Ii_8nuƔx֜xy%nF=TC8 D(Id"uU\!g`:IL#HSjox48fG z'ZCe2o :}2͍o^޶kdK;#xO:18::Y1ψ @~@gId",< 5f%KG۱zi`3^PTcJZ!t)Cc<mRVǥjak ,$jh`k m"r؆DϴTʮ;rӼǐ ǎr#wc߷Qݾ?+1UZC pR"tNU!Je(t)%kaŋ༞E8=_>h@%59'.|B֐Zof:+M4-Ǒi|ys. ;d8T=ZUꄫ$Krgkul IݢM\Ѝh=&qŔ%cJ- #\Xi4 >ď2 \5&|zbXqΒ +ާdpU1AL5vJp%tc㓤8a5i^Dnܬ]#zEJ҉RM4VD*],hk$3$tбdPUy1c5,gFYZ#c:i˅#hhl1@Yu2Zkԛkz$XZ $ϲ8o/o9n/qp}}=}"$`"rэRCEϟ{°i1׈Cy`>Ӷm"bDt6'ɒJE'_<qnʼnFy-os4o7) '?+JQcXNC$f ,%(ܤ fgW33mmt<)3 iR{c9OT ӸIfcLuZ@rv̦ LF <]ov#a+=Y)MD$*abNeN++ w ]d>>_?w RHѮ;=9E%pYK|(asf=Y#p=Dr0ZgeNU)u @oGxEF-5nket 6\GpH›7'~:ߛQ^mm|%V`X1\ Y!^"T|E׉1  @`٧]~VA6>\'$Az)u*FvjyRlSF!m2Kş۟1Ac!=K{sLk6`*k M "/턫fZԟj\K'Aገs(kWRðM$0&z 2'I"2x?'A,[5VRt!'c汒 \TRB$>GĔ#؟ %T-rhet~噜 ͍Ʊs h!F3G~>J7ZFد}ΘK{rGF%:qvlc+R`z5\&OlΈѱѽE&S]1)mu`ӂ_Idž< )#Rm {*twԚÚ(^JNJo;ce=3R遣;S!n0|(ox DMadO/tc (~Q3%Im}l&E2Z1F8ulJ3l l.Ws ж=*E|Ccϕ+'uX!0f B1ے#B2'n6$,Jr R=&"c3&{hƨ_5L.S/=L"6 yZUP4!;[͉d %Q>sKIVp"45k#i@?!RyWn;6FLʘ%'Rٷr)ܮ/T cP~lH:iMLw::Prfx%kY=mYFH?=F~h32V+en lϒxbIt35gUIn I=ds{0ɭL۩'`)5*943)Y3|mLO=<?b!TO7IҘ.!zҹ92 cB90fdi?u0;XnT$Q-i%S_BjWz~ - `1 zjf+/0L %oamܱyAm!9ppݡ֊pl7q8մSi}ꬲ.z"RXg0Ʊ֨e'ܻquEB$+.r"Zg5$bf0z;&|F;˕O} 6U :ʩpUR=rUXr`^s*1+4-Nۡ[Hi{k ۡ)_-R#jUKt߿J9~0$?G/^ o}݃nAwII8#.7!\P}B׆ HNGW5ST>7rCSO$clϭRT9eҔֵCOXz,9p V$*]J~{iݜw<}򛬧eyFJo1%aS/zoYNЬ11du uYJP*o Br]#ڥvmBh7"b Nn/aMvd+9F#{R%^| ܙN6oJF* ۱F@N) 3\<@>)5_KDZDg&P]q9aCo iB7[(T#"dh{hd[UOJpyR \KJ~3_^RU _ G0MX`eZ禌S,M6]hH;|.&[#3})it JƶAw?fȁI5zyC E86: y}t:zNX^XʉO跀d&!\̛J^L9(`҃#cfe؇lJ?Er\vֻStQ) X[&MʒZ.=hon/(o(_c8!ܟJ,r:5GT>#\ nsJ^/|zل\T+ %c6H7wTJ8ORF%URZȹR%dwBopR ҎAWbI5| IJBN'w[<̩N}pqXdպ1. ~tL κb姎7u~}\YMu>`)q%=}N9MӸ],%R>7Qu ˧< q M֕h@scIZ#Hkzu<1\km& ZKsJb&B465%5Ex,~B$AC(>Zk1}pc&Ed֚sswPuՅ| j'|pKa0h&htкZJ Jn*Ȝ{Ƣ2bUHmB!E0,P%=kL&M7;5|W0QB 'Ð{e=ѡq}~l)\z(KG>9xęiUebhlM{[iP?'E R] 48hI2#v3_0u7P(11L@[vh[?<s`VUso>G"] `T Jr:'NJGP`^'iČN{1)-=+* Ρwopl7xݧw$O82;ja'j nu@1+Djb{7-22;dG:栂P XE??8wc\N0CQR RkzTJEfկ=?W]ؓTGki f%/*2CGo̒ ώ:6T_i6٢dߕ:@Y Ie5c#=r<k+SAog:V:8Nɀ.p9+,R1r^|\aIf8:A3-U (c/r:WOy+"#b'hU(6 g9`Hfwd~pct"Z G-,@/>2ELT&g,$MBZhHc4>̍@uHtv8<ԓӺ"&RI4Ià:GzJV9 IDATzuӼY6!N <nT!2e2šCy_|mǢZ K yD 4X%~nӛ12b?Z Gΐ)&Ko-*tT`1 μrL A E[z#̅=|:YPܨ9][(j=ai!/0[q D (Ƽ‡-c19G8z/@hyND#JN6K̞'%@r}ẃE&ƬǧB*)G8bBnh(`i`t`dEs/ye56>哜k@ߞ}['e. )PЏ a g62( QHj3(#Ί= nLf'*B,JK%@gG8TݱRv m(?wCyDZ_>΋m'eRJt:-c0 CqK]L+n/o+#0K2#rP T4I9Gg F}O,eQYz{m3}- z^{  >@-+9 pgf e%s 'l`JUH (EvY#:/x JcR}[sjQ;HBOcW,Fw a~8|<: ?6, lW&wS[Tԅ;xIu\!!4%}s ~vV)puHi,}VvFhY( 9>hTVVB͔VN}KL, 2O s/x߹(7~xyC0 gHueDR Ǧ$:@f2BBٷG4\?-dtԥ!f3֘p~ h*B=bj֕N`Fx.Zem #K]-Ȥ{+heeNѷvs$^!uKxs S"i=&b<{U$ a p-#JD@o1- 8?'VjX+0&+F(j)H)F>:^xz1ѷV ڰlc_9'C&QQr p%+1\݄;<-&"g.f-9C;5܀,(9BLf&cvj]9} m2;tذ`?.0)>PPa*1{;/y}_v},x<}M8%ѽEb]!(&8#M=t)68a=>džb 3FO%L3˩H1E+2 "d>o':a29Ԇb Ę89fo:T_q`$4s_0anaQJ*w`ޠ ~lh}v{#8vDZ؎_D|O?casӟ_á~ LgVx&Ԝߤ$\nu@o{(BƁp@wQ˒A݀'*Zj]lSjdb)' )0jP5橫a>%?}߸7ó/c>GE$|28')nwwsbvBVHh*"q@AAsWk.7/K?ZӸ6k+IsfLC0g$ki AYSި~Te_Hp#hзˤ4I ⎢BCi(AxߝvT4<+/ &o F*.T"hu6&J qlP⚿1 [}G cr~o> 8f0#g U-m!{[Jdm3@}Π5IcvTyAw 5N٦ j; 1vuYև |O1-Ē06*\+N4rm'7ye?~%#'>an)WIL*_1~~`O}jNz"ܝ++OheY1:oUIi̽TU "G.Ĝ~4 b 6j)@|G)^Z"s" `"ܑ#ㅋ$KZ!G fR&3@(q!$M#`hi'*4Wh(~1[*cLRq:7SOLbN}6[wk\^П?"8Ղ%M֭ M-Uxo DZFH/ j) Q[Kl}l@)@O˙CC5h!GIT1$&(:Y-Bbυ {L!hDB3P/?{>v/~P_!V.PzgZ8KhD(AP:>G728<(F1YA"1@MX.3,aǜiP&tzFDd xlyA\0*ʑI҇L,'51zEqK(I|)eH":ZaD^Řq灊1w :r}}}dq ط+$:-ط\ c+f?pAz[>9,lR0F.$)Pd1Fu\fx`?29á (}^8+boXLz3 c@O++m\1fRY2Q"yjп}u/~~|ws}߆VNPci%IT (4 q.ܙy.)"@}^> :4O$k$jrXnYĽWJ3y2~FhwNMBɛ[ڂR fc~jf}D%.T M:{Hlh<aٚ`9ܑzwLT%Lde "(5L1c~#t>I@T)8:a3lxW>&:ZS0k`KPbTo!.Zc:@ h Թ%0/XB?XZGkgnH .sBo^7G<"> xPa R՛,\Ht8*>0 cG-KvyyƄJZe7|:P%A30[M =a\c +{^ج M! T"&efxD;8U $}8pp I7{r޲6T-w2OUcƭOl3,>&u)}j++rgSR (+V Sa]D Xո" "kj\0dB%ɎٍkXBƿ:4r鉎Rñ(pUȢ K;eFQZ *[?RГyB~"{k{B)+ ec`??}?<dz<1OVׂ >`Vr݂w,~yT.C"a Œgh7Q&ZFAòLkYNv* m`8Q. ~&$.1W&Yci>oe` @iN=KƷd S24i!uH'Ӎ_wpN B`((R ʤ<`Cj)֊pSMp`1HmTAG&TtxQH{HnfBey}D>B8|!y` w݄ 3AͨWh]^;YZ&8T?$Zwl1(J7$9:ƜgeFV`6w749C*>|~.> FfL)xӊT-hɣ )4+tr N} ÕjTgV6Hߖ`vt4 sfцPI}aTr<33`Ler L̞?_ !{|&Ģ@Y:mpp։5Jy*1{_6)0iCk zhg((ݲYP 3uzMȊFbb$S73 n$Q!dd&))@i }lQ9SOΜV[8@c V,1ܙ0w\0qj=hΏl<&. <~ j >˼0U Vi{6 w"Ou+ DLNx:9I6Cʼ#5%Qci UwUB_ Z Wk$9VJu&jGAk256>&|TjDRI#:r$.Taik_[#QK.6}NݒZ`9=@lDZO|8gcĘ,e!%\ip ;z$s*JN>MJ{o".TMP|Igco <% 5:l,8p'|~-1K^9WHj} G Կi9`bcw\+ quv`\?@@?oп 7/bIꗌ8a;%jǤ޴VQ' eɔ2hT҆ z2٠c lẼ0pvq@p#渠wpZTrBNbbEdRq\qš_۝J+ $݈.l+H8Gs{NO^F: f"[ _˜BQ.:JAqZ@kP GiRUE"PB2gB Z,J$B4X0c(}+-!a53O8Cü,FyAxǝ\OO҉]jhF uy\V8Ihq81!R49gw`t\m;x|} e|n^_T8n[JBp%$R[:QIhPRd[N QƜMͮS[e[ yఐX=QrW`p;'0S i/ma̸$$FXyId .p~JP$Irw4 O8ϞܜGP7}¤s-7aAXtFyg 7 k񋪇FAR`!](9oC.IsP%8~ܰ[Sѱ=lƘw6/cl;\oPN'z8)pNP.cJρAte7lr!8?-:]ݼ2[5#VBTE " p۠"IP\aYJ{LsVf;T-{>Sň9)VL}sN;"B .Zx*.9;p& #xXOa'2*I]5X`>iH@N<2aH:rf9 ^* aSIO ]@%Y9]g`(0;@=.3:j)d5S1 v>)\}q\p;T[@_R gF;H3K g"*@ f{+I{'6&8)fS@9NL1`J v*֘3"0z'/j T6!}r1waPTa ˆ-%9 ~&riiIN)NC4'IqIPl|:8a$- uSfp2l19amj xYXʉ; %`FXA04) #E~Kv' eCDɀy_(L n=91f ɶ'f!Ŋr;wqB>חg+Po~E[<~sa:&cﭠO/_*N3~/WOX7пS9׍)d>{86h=aƁ VB{M"T%cpYo,4{z=.qTF0[u"q@ 105dONηض䲊pqBChHafI0r ,-aIͳB-fH Ce5rKjŜ;aҀ`IGi\(xP fj8זrPbꀹ2ik])Z:qtUZnS'H4p:2*ѯ5>&u(@G'뮰Ժ)5#F8H * Q3[4E]4=Ø?'f!A3Yo,Ik4 lFn{PHt #H!ęIxM0^Blq.} %'V2OU^[eg|ԒyRt@Wv;Q0tvwR_SI /" }{N_uA'/dbxjT;I ,T IDATLi#}F*!-ZitR"[7NH(JjǵذT L*~*qzyvp[\^ޠRVL sm4XRrgR*|2IR{TfKY`f3$n'zT> εSƈ0$`-&ab uyz.m5fԖ+@&qST`0[K{*XettPzO H@"_<YNr=_Sa}8j]qZ+pZ \Dz.t#N>ׯq~xëWX?tGq:?+ ,hV'<<>>, ֖/_ __ar[~W_Oޘcǧ{c_`(A0/Fj'kgÏ+ƃΙ98nFqO#T&)>+VL I(je x pGǩ/ѱ]__q/^78gX={✊BNW(%4͛ c?#i7īcbFKtfV$JZ<\3w)T,E3Y" wEܴm1R8P|2=[RQHd?oA䪃X%'`!:iD:BqՕ{Irfj[ЖWT1JaXm3 e.8Brz²AV=A4Ќ|93*p+E-3m|oo7G_|ůN?._ptXʊS{)o"2 2 āqlDwӉ)i; )B М|J"; >LuD#]L0^IM ҡ%tQ 1 '6"c' lpL,C#T &Yv#I !ň{`̃N[9?ǰ. &MbsZW, r\ha4<Pۂ>נ %$_L‰8|`-Z3O__g>-;˼3US!s7qZFJzS.hcCq뚜hZɤ( @fI"g" ǘ#CsNq10 Ƕ^qxLRR3ke;fi}>:놱_p^.o]bCcyЁ[7K[CÑǒ TCJ#kqyrO=2 oF:{pcey1\e] X>3ƾee(*qj>4 Pt әUG:3$a\6/zzY*8b -9@ꂶQVZQ- bХ)VjbX#JYXO `^XM#mVn:LƬ}tX-̂ V+T+ݯ?3? 5/W|;wwT fpv _smSH)`*dXA$B$ç#:d - *froUs84 ؏ >&~yF?v>Ihm 1y~)}-'Z9CJ'H%Lp\ `D>93gelD&B*)Ǯ:vz(nѥk̄Uh5OX\.V3;ׂRSPQ)ZOpbY~+31gIyA'NpAbW-uYZMfbm`pVpk9bPj-O" c#ZX *ɇbÜ~lw1 L1I)/sO/Hw@ɞ)1O_}LC*^O^zF'^ṯt4ٚO̴MBuhEgKPXV'bW\+ ϝ_͛t:c]W#/x f&&60b@ c5 IUᄗ=>=mB-Ϟ&RWݸ13jX'H%pmynڰ>B/Ϙs-F D̡5J}tܦYTxcU*F 3LO%$[y`d Mi’zL0Y5T=FRjV|: uyuߞ ka,Qa7T,8o0X*Zy*C\o? ˾rUw18,]^22AcϓGz3&Q! =ڀvn9֥A`Nh40R=1 1ͬXj3_Ydo|خhLHc{5#Fz{! ,IKٷ{J`uE]֊􄲞Q 2'c;>0P9ecd~]g@za荾Ɇe {h*DebDWfƒ:UGN_+r1~<0瓆11J4O*0GK_)#sP[ m%c7q 1Q3%ce` Iw% c8.,H L:Xwm)Ղ张-8eΰFwVP4XKJ}Dn]D;k$0Hp 1ɑ#En qIݮ-+r̝0r6>ik 1;-$Q4Ùrօ+5δǜ/PBI31}Ø;4DrMȜD)q0fVB^{xz~tƲqZrF+4vB) Jd6d<_852PKhb~ኽIkqǕ{L`POvfoߐooW=|vn11,%f VQRX @DSޘ>GfTD<2,]pǖt]GBP3XQ,`u #Ї, k{Cmg5X-(mE-dkԇ׼aSF(|vʗa͒PHtJ*`J$o'm?ݓ5GRf,k~As(pgd'iS,qc+3LcK nAjń9I^Έlkr'Ng<)K5LD$ HHOH$I`""Oqޯ Ӓ!n GItS-i77-o7gLJrW}so~ "p S}^a=Z дq@@ =EROwgJhZw|sD ƍCqx..ϸ L ۅx)xXA>-ar깮g@rƈM^/L}KVJftIMbd:O[Y=(%; ˚'{b/{邏J[!`e:[haR*n:M$FT 4F#}A9f}9CxJlΥ5~VA`Nb;\,ٲgh5<qLf~q $*Nƾx~I>d0cί?Gp$** Tj OF#X >\U D9Aq愋S4 !P8P#q*e!)&옓I R804 d<3"힥0:c2/p,19mTxȟHLGnQRQ'Yd0L883q`D>@A֕%*͇3 QPKC{xZRqZQԥ3`@3î 8_U9:&'!t.V/EePUsN Fh(fbǑjBbJc& t8Ԝ -8|ߌW~KsN7/+EIHf߾7@x- gp ԶzG##}1ǁ1R<恵cG nЬW9.5cft0O1H vn*U`Ez>Ilo!y~VhS͌4CJgz4rtQXeԈKn}2Of 3w_kn"y*bq1nJ4&|\8Qbpۉ'dbތ!jsBTqL5k}NGXA;A0kl*P]wGQ@ +Z2MU > 12P8vcG?C@ǁU+fY5L8ZY M@P cLXJz^j7|?mk~820  q nSsǫ١Z+<`3"}F ckXKs>q}N&w 3,'Fq&~~Zz&dPÌ ;GrE…`8T;W J%eIto$J8eEfKnXeVp!βWtB„<;Ȝp,=:;5Ǒa꽏4{١C+ennTG)Fj2ЙI\Ǹw-T%5Ȭ HwzJCYKS>^X X8z T7K wmγ/2ZksNݰ!!RۤR$ؖ\Rd !E!@D1/@SBx@(@DrAQ8eTe֚s{kOd-Se]us1z7{jb ìUQD`I(U(Kc qr(Tڍ#&Dg\6 ߂շ~;[{؟0ZCtEs:JrG_~_uz}e?㴾-/ ϸ>?bߞac@eE LI}sЁ")޺F;XN7VT!ʙDK9xJ&J]hR5;:=yKF4Tsaܙ,(˙'u:iq4GyL9%h9dwy`9qJД3{tD |4k[yӾGu/FjgDԏ%9`Vp8x*m*F `( C;>x^^ {9X̘' %3АzTŁ{A`%c&F4X'0]BX!$lGq H^H"[ 3z O!J9qg6{93cB!q9mhR`h}y>İw ~8ݽ:a)_Ŕ*mIry]i0vWIfIPLE-H`ASCBgQ@3J)^P帔Ktw ( 9ǑW~h6;QbVڋcY[FI%ؓjW}N |:p2bhRX=3sChCY,f֔ʿ/~G~Ctw<͟>׿u,i:ňWrdjc5u9/qw/q%_~/_{ IDATw.gf*eYٴ᎒7+5D ieBΘuZ1nr.=͏&?$7"b2 jA G 0A04 3\DD72#{zۈ.,孥2J{EEܽ^{^SK>0*[l 2+7s"! ʂrfnoDi\U;(8?`^_`#'GF6<Ϝ[Y4>p[f#(Gy@iS9B7r %Nȓ&084}D2tl/" )xpVǖFK5b O(sQD0+_w^❇OŻ廸{x/f"Yj-XSaüjGAFqߔ=0Ǽ넔51* (# %BA` #ݒ0sspK#oLC#(pӔxBu Oܴp3Q{BR}/E~@Kk%gK`F%Y^ 4\<˜P )Ez2E<g$H8_@}KOe3hϞqft=`>a=c O/T jdY鎾pk1hd5,k #kJ95]1cL Yƒ4o"Fi3,H俅ׇat1.re-p{ҏo,XL淎NT^IkxRY5M3>߂w Χ/{/?t|2/ 5ѡ4O+mz2'R[)Om|)>Ln: I qE!hm =(!}(vaLi\T8p eը%_)UR-#1@dʸݳDA΂Odȋy\KMaϕFјc\5u%d]'pE,''F/wv'uNQ.炡 ؕ#=ەТ 0 |~e_qP2nXR6Tx/OV̚cky:%%"& }?+Ǿ*ܷTmYo4 H&sE$2֯>ܝ8LbOuQ֔clc|x8)>?*$s 0*pOΕ.* /-;lj$ dM[c]kl(h|/ ՁG.<;LUJgD}sX!e^[ѝ :xQY)?s)'HCN$RL: qBPIe <]62E.P5"j N/ LNI;HQ7E;~)-6%@+p贾:d /|2«G 9-@7jSbI_< cg\nn$)?yuMST9?2Lw24Gwq:pX2RJ$ r=huhzorw k#Fxvh/`*e-"pCgqg:C1C0A 6!9?Ao`}lE6e5#)Oc*t o )t0&0(Xs6a͕IP qT"9SQNJ3,;Lgn1sYQ@GgbFp00 ʔTꂚ)ԃQ̩*e$!6УiLKRf ?_?x"VR4Qq`Cݯ w $#b!IQw&֝ $ޣ߇o,IJaW*w<ܽzǺ)Hՙ s7 Q)#C|qj1Ӡ@+9f?Gq8Կ{_ñjI1Jy=ә4R%հux@/=' r3?=ח;[Kwѷ+EI(|q qBvc3,9F}ǜ8=Zɕt2!|.'Ot>i4(tB.Pp5oؤׇ)H O:]I3)J]u0|_0zxw1 rDj BV1Cdo4RAu=!C5}{7N+0oKACDbhU HOПG~;c튽53ߦphK^t0_ xx:aSP&B?.+Q))$TbC0wx"4ZP7/9sQ"e!VBe=N$qzΪc +Coaz%M#&LiF)ܳJ:H $Z0mt߬d<5B:og{9l Zm1BYbNւؕ{ 9֊\WP"_i x s! %aOp(@\@$xLh5ޡaOBU>g2CòsȎR36P$Z ;-BJܷ|k9 J_ZAˍ7Dlw=CU4! _9Md"ݑStFCoPC#f' , hETyU2H!6(  /o`}^W$l[#nG9:| @$7+%\bEaHCV\,@j c_|t8˲"DD"G[ʂTYj\3A3! ׊f\Zinpݘ\q:9r!~&yDbt1$K7?4 Q\ hLS v /[ ʮp{=LM4 䂚+eE;_ʢiF0ZkDYɗ@ %zK7%,Ƹr0;`bV,9FJ#!~ݦ$'Ys{Zc{)l]&->2-Кc c\!V!mB8 ڶ ə{[hN\9Rfv,ݘy!ap^76tKRW~Bۆve\'eg$RyC ]2ڀ WFvv*4_*m4sGHK\[vu(:n§O&&M=E!]a"+'b'_S^qHBJu.8Lrz  ^RcCA @IliuPMC; a5 :vdKlBU)NrDWMNu 3X[G>îW0 *b C}`HI$H'@X> :lPMQ%PH0$~^+@ *rigüjQ LuWǎ.q2.w)w\gQ\fLSk')xPSILq;.<]yO&$>UΩ@GC4. :IX2i B|HrRER2r.0'WUۿ9ZIs퐨yo]Wܝò(" فyJKH4q&ёwD5Q!UFXǑ@)r &H2A<DCͥlLsE1 J3t-xeZC]Œ`*r̮ jhzAx8eX7eRKL#O/#)T0- b "!>4o/H8,`};D*4$ U3N/?D]J Ţg&`::ZWX#It]tWدbڰ]^a{| 7lOx}<_GMN]L=r)<H|$(%<)XǫOIEQjԺg?5/0/K) M G5nݪAr;s^0U__#ጩhhۅ#)8O6.(vwW2Ӡ ց> %,2MB .m (q@/;pщ^b&q moZ#L|^kl)O46(`0|\iA?XYJ”RfyA@J3+hTt APpߩ;` & IV0$% {2yJu$ YR +qRkp3 q;g.7}<߈o Nq\0iϺ._fuD`}:0yӌ2 I3g(P&Q$]:_(EEUM^UpM!we:-0ߢ+\a_.jũ,@WpU [ b=czNՓc Gb#|p΀%9lxp}r eSͷе.X -cNJėitynrk. ENl+_QPUIc0S̠CgVSdeq* hu2NR )Oy]/P [ `)+Z;; OQ M:ȡ4$GdWV olg_QϠ]^,[Id$ ; A209%͙*!O ϘJL(! Opbrx LSy! %/R$Ɍ:L H6ww~`6xΈP\ Jao@,N%,x!SNO`ߠ%<(hA\FS rl(: mf|;QKw$1ԩB6SP3)e9>n-54ӷKr}A2:9Oqus#e!$SĢ @Q [qF'J7ḍُ RW]!I:=IFw> d4t3-3pTsz?:ؑS Qeh܁E5;zDϐ]🂹<;{q((;ў\1ݚx\hYdHnp0"ĴB@tM; Cc3 `<O 3aIwh ɝN` Q wq 9p(y61P]7`>_7\چW 6XJd0?uĞgsAb7؜QJul`kENsSq:JZi=A}GT d4h̊\K` RO{>maGQ:rmΥb]yE $q}$]'VON`AQ R&ͣ:3O#3jn)營m$u~Oo^ vwoӶϡw۾*o^oZJR k#9w킔yyIQ.J=8VY)Gn vGޠ+$HD sL9GR&ڌ 3f]\x#hⷐ#=$Q~~=ȧZܻhm m yzdf ݩ޲ RsT,*-paJ.5ԲF?V0B6UTdR3K%x,_f|FJD)C.?__o=W7al Diʠ:XOgB!.Qe5yHKt*egMjB%D1Ypڞ f;xװ[j%׶+~7>|v`m8;/<.ov}/ IDATnfm;Nc)\ c02CȢmDsǴh 55ʵPTjygD;Y/iD$Xf-l]m?8Vǩ,؃kt@RdzcE2"PSj dA9|rq:? 7,RH%5c-;hߎͷ&vFY$K5h~hl#ǫC\ 튴V Hm؞_cNsH%t ¼!yB NH\@߯T0+:jY/Ձmk(z ?3_1cހ忉K8e/3~ݰւp6fPaH19(5ȆF F2w6Cq8=9![5Đ늺"`RB %kT ìddҮog)a>"&سrJ@jaBqE^.+)\ )/ F~ J#ujĕ3&)|AR FらկO͠az~D۞@۩зH (Ą1/,Ce6'GA~R'\ܞQsaRz$ur1I+Z=4FC-Ӽ%rb9x; __Vq@~H Sfaf*h0IFIn;:Cr< tdӊF~JYжA3@OOy]yFaYVLװhAaQ8є/>_y (  =|"x}CZuomj"v A*NnLt٠Ptɨ2p0Za긌kp]i $ F訉^: }@-   2猱&e .sT iW2֞4+!n$H.4m#6D$(#5__WSm`N ܝL x rMgߪ9d@ʘe(O+3P^{ $i`9i} zq{/W|{w<>OOhaWygs?#EߎQ;R~%BsYQR+Uxi%q!QC _ ߼gpo/G_ Bɨ d$Bs-J5WN#O$P"젧)w\.8+AP@r/7piwۅ| ]Q\%:m7|7lqd+2a)0` `OR)x7-RnY9 "#4| )_Td":%rP F]1)Vn>3pN* K* n+J_@>"pCAf sV4 mdm#%>a`DQ82^By¡V0F(ՌZW\{GN= dЙ:OX e#N5$&^JFɁl,[r\Rfn9y 0]1&RTRAd$6,Rv%8}x䟮YrײbNa \稠`0[V[,(i/f2**w[pǼX(겠N3Islۅj>9ܥ&ɒ<Sܹ1vM>6@ e=#Չz>4k[۰f[,\1\p;67I<1SB)_çY!|1|ZKƮҥr$Ux)%02zG ?<% چ.H%.cR* <~}nH/BcjvF$ C^~/ 0lq` NM(j:``n)z%r>h8+2z$Te%DYt m}v+Go'J |yG[Gt+zk>ؙ@P26 `?|;9Z-]m,wpd,L:7}Gk ['dmn6ΝkE]Oׅu6 S=! 7)%~f} @}gh  _y9 STP%pÚ3Q"5FkK4}(#JJѵ)TpZQB I' ZQ3|BN$ sM랼oEjSiz9 OJŊN ĕPriw`ZRsQ5BFW%Pn}(9&,GWZ20n;}鈜;)2j⃟sEW)a3ux7`rdxqBq/%ќg1?odƀC?'+ bmAr48xwL,̫ex=#;K3 jX{7 tݷPr*U.6)U\&TL H@’p LWSL+ &@D&P1 ޾ݧ{X+؀+Y@T}Xk=W+PAPK^X'6wG3oeRtR X iBi3j^kizmb@{&5e1ƄRfP ;KSM ` [.e*bd,r4oPj(V}) Pl{K4֥5Qjk#)%-!F!} A3#g#32!GbPգ!f;"GQkNHN/,ZcfE9JH!P*3fl)(<r*)X,ڄlb4p A(݁wDFVNhmh=K8OV^)nUh"iI N+h+hu5H] #D(P4Rsx!1 H&> wy Hlxu7- z97̘ ðd$B̞6c)XɣfȊ,#Ą&ѩ1G,WGfՊ7Rz< nOBD?7|&)/y84'X|н`H1ei;m; i@0N B|Ч lvؕyk ݫer0RRjɑٸɿLsMPK4..DN 3wO3o lskh"~T4vsEmmR&Q .U3y9[vu]WS!ئ{lsEf9B^BG:5DshN'o76yDկNa'2I]pR5r--#d`'rs ==8[E)[#lsHAJhfw-&q6 P#UiUa& T5W aETz|z r: ֬2,vQ&"lhM@Ʒ 9BEo'TD ~ ` A; DH^ͥBI*=`rrt69Eɀ Vtϝ06<<Fqc[ޝ5,J ߊ̄f֫wT`n'G!06m  xR+H r.C|WsD6e ȌNNo"%1ϗPGNwz[JMPKr7{xտ ;bBc670|]loeVd#^ Vb7.{uskYW5WS3{6&R`U;ơ2tJJOH )ћxD` ?je2 QJk"rK mH Z{A@גd IC쭡WX6{{%| " 4Dͨ.Twjh>h1[BV,)#eԓ+!v NWySF'0cwU`2B:pCo'oB⛷َhE25Y-ܮ`. ̛t87MG3.1O++Ddl"ZgLeb _^/^{?gB1ؓ r]G ϼ{EKŮM<N\cFfT'ubm#{EőFHK LjD?f[t C#r];9z#(alC yƂ GSpp&G5g a f9rL͢@d'xKW,]:ƥv}1 C.z؏& i^~9/~m/)eÛxlRT`AV_I)}c.!c"1hG k%bj9φ58bHEIwVl7QփNc@ /$h` 5 V>'˧)~,*8 dBmH%(jcsv9bZWd薂Rbb9FSAC,9Sj{D2,Ɩfh[νW~~__ʿ 1PgXd2eb!AݮpsG-[ @!"B1vb7,,^gkH'֔I9Cp;wa;=ⴑLYVvrRc8y[7yL;l|]1O0 ɤbZb2WLfRg' sj-w)dj!ؕd{ocm N!iZGyIM%2LL#b4yBnj9S1yA=*j3?H J%TaK`4FXULv3qj9%VA j7Gnu6|+lb֎4a;m0v6mAk@%_|M03uß!6'sYt0 aͭg fuށ0xVfʜ|!`=ֹRb^ڄs!`b"3B0=Բ%*(#GsHGw&ɯ⮐Dl0w=jlunV yfF6[ ݺ  eqEryخJ% $Y;f&ާj* bLb3mӀ,*;Ayv4%J,Ԛ&6&6)sB j+oka3dcPErLv~k0,r5d@@0k5cz e{}_xh ]#VW`+!?/Ahf۝sX/6nvy`kffU^Jkq`3TCP=IbFIOS lfdzz,;{b!9rŬOqi`!b@FO^PBlQge:f>>ֺ DBlŅj*,5E'(7#o7,&aƪb3m JkrΠat0AA `^k0(9{d6Đ2t7C y.ͯ n?Ju;@`HVn?? zY},/X!Y^p1kC"QB:VxN3k٠i9Z=C. F0\K&&\ku(f\! | L  kIr ("%FmP4`u9C[mG ĐЫcHFLE"rA}2S@Z.(ÿj;C[hLqiD}1G7"k!401x}EUJE BSCm_t%76QM] ? HDK6j9Y ,9 +ypR w#:Ԧ.:Bpz~6SAQ#V0y63%VRDaVH+08Pkn-(;N#iPo I{n+ϯcu|3O_BbD,}vvɊf5 ;b75/|^d> ċ@\d~H v@feb! ' P%ҸP}a[vP 1LNKU1ٺlL"A=̩YcS0LUłA G"`b swPBI":WhOQ2A\:- Esv9ʻm'qCI62AC4=Bj?ʖ$Bv-G7":eݳ  V ~Dh#Afu{의jE`J=\''wXt {Gp>PXPED`a. ~R3,F]WQCPDGǐ+:BA"bW,}]1 1ȄvK$0(̓F8mG1X] `9Cr0U Ń$\FgF5l3-AoY_#1b $bF$"6reŸ\c^c1,@T j*Un'0SIn0DQuU bH9]2rBvBg)ayL6:]n` pYEf/`67HL6ZA=f{='9FG/FF\~GShTrfu˟% (Z:4@B\B![ l&R2XVDUAZ0F>TOoS5BZ HÑjE(7) _䥠f%3u:?XCa;9v3upJ`y"K8aN e6Sb WZi$R˓JMUKdftepEȇh2:#Y>9xEúJiiFHL{>k{G"AfWhR{wVFUB R C00cX#ǀ39[wHa0+ꬠ.]Is C }^S!ۖ]ոz`&6%s ebM{yYe&h{qr u дX#{Z|Ljg5!ehR^E@jy1ԿwT- ʉ#sy8uz#]a~urh^f4́bjݏ=cptzd4[޽Y|Cj]ԑ#X Ƅ JA3%Đ^_IYP!{1-}.>+DRDV x4 윢-7K,掩mH2Vr'fxW%ZT8YAjHQk 3'k bMvlo0K}j7Iƻ͐Mb.j!+) ̭jswK+GT;jk"V) P<)]9 !tE'A#JB@SVZv:٠{B9C"6lڝ鱮nM+4X,6]pudی^;D k:#DHGD  6m! Zvŭ٩@U=b@&wd@aL)V@ങ6V|Y)Ѝ%;̵lmoZ Q1 -&%5۹,YX,'M Jrg=i;,P+ܺQLuT1xҾ4Hl0M4ol"0U8>=}=k?볧&Me,s+ ^й! #8Xc֓x7AEDE;J`Î iC4Q؄lRf 7n܏"'0)8RUf֐{1CZ#|j@1XC -d pyb`q:9 Umi33Bg{³$v]{Pw.F7nWDi.t)R0T'(S)Pܴ? 1J5>4:אWP@4u3+! at![y"[lj1ڄ0 C^ R4V ՙx)mN]@$Upt~?Nn oa(dV?#`|K!Y aVbČ8 X8NobX!lE#r$O^\f0E!ƀsCniCBs'mB87$WV, KlBL̖ޛ NNϰ:3ӷ=f],bnA&VN @GTjJ{%vpp%9_C"`L+Xǥͺc$] mwg cf' I@˜w;vWegz4{T-C,MkEiMl%0Ϙ#k0q`mU-^1mzo3-+ bRmV+&Ho{SQ@z!D,u !Ff@ꨙ4]8ԘT*ంWz9!*kt,n=nln1(LP#qXN݇kOA^l44)%hhnI !B/T)Q/7cuo?}O~GW -?5{)ZHiFjY@16DDtaٵ(?8ZoS Z{st]`#(aHKqѸxj)@jqۓ-adT07^ŀ#_ y@/rB$CnBq̾ul7W[VφYWRemoN0S0HQrb:CLCNfElb h"[Zg=qj4Yz0}pG jĜ(ĠPD(5J,ܺ"1dOyF :,, .oiS'ޠZA aD+;h殎GaytwpjƗD1Vr&1a:by4 y蚏Mfsw_}s3_p)w<ظʽՑ>DE󄐖E89ڂ$Ol[(Et0. #6!V%Nή ]pNI- ѵBK 50t?eT|b6-Cd$Q!b׮_MĐüP(6 OJm*B4ٸ(KUwh`TT_8h׿۟9j ##\' )2?Z@1=$Z&AV(Hc^^N*Z>Cdu)lmE8Ębz7+D骼q{Vߚ}ESRTq4XuAin%zOR'hkXzςDmk&7/wsB%jmH+0o/Qs&lǟĔ0,H!bXqtr ð#t0vJ{I,xa82MuE;hDL N%O ۶sq1ޘ|6Ip8S[]6#zk(FdJ 9!ƀ5_;j3/% @2<) Ŧl+%O}ϧ}׽Kwntp|°1jF$ž(bWT5Jňr H3}wvޡO o ;j3Ld?[o~r""!0Ѱ2Xhdr7w,ȮGN'g8XsCG ?3&( _֊R6sv;GŻ O8MH\Hy~-?On]t/yaxm7i7318>Sg''8~gg7mƊn/40H ? n"eʲf2kMQ L[hhc.;V>lpĜXy=܍9M,0s-#hi02hR[y@+5ozLB)|)No`:EL>ފуBb;%l1 Upyŝsw[w&{*)/P4KGL ˞ ?THY'E[o>-7(DE)QzAn  ! 6y Tj!b\Z ,Vk,On3!]fPEu& `F fN7;aqt@ MbŬ̄eJggXc\"K41 llY̪ךyre4٢jfûq-2_rwwg.cP??-oLqCMvjQ"h!򈜗 %0z9,.t)ڌҰ6`k@Zb0+* BAJiM83Z*J$ zLK`dF!#!}їͅq IDAT/ SW  %ܠam88WvF;qt1~G?K^Ƽ݋(ӌ[vNo y*vd< {PE"hƵS`:gK.Ĉ9m͇ M`a f6K#he@{}?݋辇6Z_UkV k8; LɺjyC1e'Hk;z,)Θ-bb bgWwѤ`>Fs̱860ڑc+ E'nx\&t)L!C%V VzgN2~ 8o"]=tq8bd]; R\ 33/:m(AeA (!s:chS;V 6 ;@P?mlWGZ-"cZ \54H۵HKڋχ]\h@аwnNpY6ú-~ǟ녻~Wcb{8"cr6&n}PJAHCKp9cH)XHؠ᧘(鯪}q>W/,Կyxdy !l-G %ɼ EE`̟a0R+Y'-Z0&3pS#&[F; wE2mh H7:y8DWk,N01GҸFk;,%w0+b-I:eN$Yaa y틻x-<~AMT+oy>>aWauzjz>| E,umܽ{K~В0"+W)qMC@u f~ 1>s+L;J_>!_ѦF)cbXXzZX۠Lw#EN PK2:'*l<*Wru?f[^] BƿwLKh72e'B+;bby2)J6m@-!A=j;u.U }2O׸v~yyٙ@TԲL9D! L)#h6TfՂ S 刐FsPi60 zߙ)F,Wg} FĸX!ՃErhSp4S3rZx8ÒD4 ݌WW[_axs1-~v"R$tԺ#EOۭeUĄ1-27s8¼B`ba V'^FvtC.:!F6UG0":RMsƸ+J- ;+"s%rAM-Tlw=({ݸL(BBxS[lc>Űp} c2u!4n;0xV0ɬ(誷CUgIOK?oyYa_y/X/,Vi@(]+<"DB9a7@ i%LNrtn ]wp5 W^/7|?d'_BD-gNGR&LCC]34 J].^l"4D1q`.#jޱp@i$rqD@h5t| i{ 1"%ji 0`:C#ZKT5Hf Urj1.ViD+aJZE:֎:yF*7nwsn7C~U㷽?&?[{ٟ0,WK5!Х2MIp&H1"2P[CW`L yj)X|bֺ'沱4L$Obe@1ez!.z+FH@&hi*DRG^/_s?Oş T0{^A_H<#_7'm>o$^U/zsxǞ/{I*8nZn0zԶ{*< "*.5ԙ1uz1=kd "٢fԊeQV:ZhH!#.P%(A 5'$'1Z)4׻#]ކ8#v>uwO{Ͻ~sK0o~D_/89.ѭOieh%Xq>p ڄe e˖iDŏC_wi?+/;^}ks3xy7/+<ve>(<>>3"BTVvP%roqx Q?_~XtY/W}+{4><ܫ+i`*&z ߋTY/M^{Ͻs{]U?tS}yk{_o='hw IENDB`xteddy-2.2/images/xpuppy.png0000644000265600020320000030463011143371632013126 00000000000000PNG  IHDR, pHYs  tIME83z` IDATxieU9_̗\5T*!&$L`wHOvvw673 Fn nA#FTTSVeok}n1`Ꝉ|}{^k}]GgG«⣗LN+Ur**~W={}}UMͧ_ƣWuKpt_~+ (ڿ2^_#^#?=N'ZҎ8|GG+vkO+ 7 W;7n"bNfͽrErlwr>y/n_zv S/sg}`8zo?> smQ|?pɰAiYػ*b8^SvwqS׿zy?>mhiKv8uMx{{?ݺc}_:z3+][K8{r `B`B!%@?D"v^AO?{~$N_ wna}} 0`;ēKۓ//ox{8 Otam g/Kw_y_^[_a8@+@"%75YD )fSR|%@;8TLpXc< Ƅ$5vu~E|gc~;yv_GtI^UX4|c?|I,.F5$B%0\׀U3 #&`6avxtmH0* Hp5['S7|O^zwww;zk:w xt>|]}+ ÀJ0BUA L fB3h UAu8hu#- *"6NI5b, >sӏףůjvѻvGx+roozեg8E@@ !Ā DPBT A"3YP BP PG ǎ-ԩUlظڵ޽?+wͿq}<78bK j`Y`$`! DD M PW bs҄C eT":*8Zt J@m͵˯;TU??Gpm{{۾M_ç™!&DQH!" W"b`;@SD:no#H@4*bRP@~Pa4:7n|ԣ?~/[}ɛ{ 8s%,/(F, BU++Ų~5̰- M U D@P.ARفA,`&0% U L 0a ksǰv|fpƋ͞GtU*{`uԥꑇFPU,W gapD  XIa^ɣˆm"RAC* rD@J 0P0Cc<@`1#rG&xx}۷>{Q HE1C `=D  @U][ l &0ICo%Y"fPAH4qϼ4y ~ƭg(DP>؁An @H35ASBWL;@*!HٔUXZjp6_؟O68Cxd[W\ys8}j/la<xֳ9 (}6W[{.I XG !B%!TU fst ဤт9FE[Į,/J )ym`RČ3)}) -̏wя'}teϙke£N;}:Ÿ&̦զ^8S 3XZ0j0J"40T Ha,,KoABekD IC  I]Cvb6<@Sa Fk)x j<^@l5Ʉ))Jpjk_dP?\;SOs|U܅xozeLgSt ]C]5X_ckck#`\ZL@즖 `JX8rddAXV`7 W"("r\fX`23!j@1%fIզ̈1{SRZ!)K,#d$B6_װulOO=;<~?_!Q߻t7{וx#Ʊvϕ汇/N5V+,- &` !!bmu5W4*-[@q,@2x%+كZ$P )Y/A OFpf%=ٳxBq`2PPb!sS'gwq\؉ꊼ0#7O:ڬ+gV{=.=E,5*B5Xeƃ;fؿ*0ח03j,Uf-0F~!{%*Tr[z),{';E?)dӄ*@D``2@ 0 ){? x0ᩏ?<vc?pSzG뺶ae9=SԠ x+ F P>kg)Y*TnhZ,` P2 lƈBD?fbuQq.>pĹcO=$?-I;7n~h7:oڣ?k 8-,KFxQ{,VXP5BPHU _Xm ⥼Ͽ)Ccgs`=01\&䲞 7U:#yZ&xta 5Ha?猯>I@LH9W$.c0l &1Ab:;.`ɝ}lmܺ}ןO~ oN_{^˛o>sCÁE>~b [8sri!D<س*7e=tL1BeFHJZzg{#ٙ^q,{zƒ*} X F^!B$-t=Cs6&wK| P`}? dяxѐ~mN0Ld.&ػuxؾu݉?w_>|tU'WoΞ]S+GF 5M|yFUfj baH)%(l@f9RCjK+N792町]_৞)C-!Q'v~T+@cr~Ë6-e^lUBI0zuctJu-Yn;oʴ&ugQ,{,XYQX+v'r]G\.( ME4> fl樷Tm)3@HZ;=𽪶*F529(Y%i?F1FH=lnt>"(bՁZգ1=4?lwc/(7>=rݕ+g{N7X] hM]#46&LdhHC6`9 QUR;T@6Tv΄P+y3.%x];O#4Ku!`?B';< "&1 A.5J~^^!'6JRBl; ]l?B$;]Vd>oBddr` /^>>Գy /#^ͻe|߹copuF545Be*יAęn=pIY^JeBm8Cj$HՀ[RZ6lG .ڭosy_pwjBS3*)7"qWh,4hUXmQhXkR 룍G6y˂PC5So.{*b=y&s?,1' pw4}Y9i@^̳;+UggOϖq&:BR 6 AP3ew6$1GfP5uS$0>B3@ )u:~d69wlt߳tzw_vsI㡠i8Ep$j7)%&罓ҔQ )8T DΣG }ߓwB]g|σ:OY3K%Ahя2)(ԑ{#i*s;Q`ع\O1Ԃ'TRΓ8_C,pv%#H@h[$Du[XY]A G~=x/|Kvݏ=zu@S sg!ZȚfqH*% &FTA*YgBcٰ#;{ e!}N#\snK {G&KnKgog6#d؇AԷ'v((8g`.Wb$h [΃`+ޙ(aae6t*g\R#/ïÿgp_g:;~w}^/]LhvS\H.gW~{#* 5H&9)/93V`./|kG.\^EȲ}~dD ĵLy2 J| Sr|M=nnBwY2gh9&TəTP{Est^ uν2Y^K,slYFyTC3%џ.5)_KsfpjD hF"wSHLdB'&*v0;4F0nRbՕe,-/`4;yx8,Ż^|78 ?kL#̙ygpm16kg IDAT*@!8f>}rIƊeTaXA&3>瀒8fUx:o-GTrf,r]g <;GɈi %fΛ7; eZ 3=YO܎'܈&^k/*H4kTژU*GITr>)0,0uyT(!4 B0/uf<:;=up37G<ô?w|={=WVpK n%)g:vrs0(8x&7^@fgzo?G3wsy9js?sOFu]yy4Wj+t<_1`n,K8^id"19f)rd/E<X3 }"2TӃSꐺ~M6`.90S;@[ؾ#/ I^ a!`0pqAS;Mgݿߠo~;hY՗!gv~wiNO˙0XY9? .[F``e=D_XzkA=Rv!rRܯī*jw@1Sѐ@+Fe{SJ3T%؁*w5];gO*;MKJZg*)2h@aRL8,2SqٷH7厾k"oE7$Ys)/].}rRu~6FhTT dF`=TW"q?ۈ 5hB3! o_ǟSيqϧ/< X'V_Z M-!x"2b[1%eH".fm7bD ;d:x5;j3 E3HagI6 B[30 9HT+G!)\OOZ<ҹ)܂zҏ9Q\̑)#{cX@M_Þ|ٽy Z [ JbX`$(8; X6喩 , 0UX[_qq Cnzhku+0Y`=%|Q x3]ƛ8v}?֞;.,c[0A)LJk룵6ʦ2r ƌ`/IM^ʤ[nUnA|zJ4uE*\B=.y4ykƕbBt_:O0hlTñHe >8ج8Xd" Aʂr4d<se_{lʙ앁y[Ev!y.@:S"KL"s{LPV|kr% f UHSijۅu-h jpߣYY|=_gV;9J_UzGz뛾>A VTx١2jA~lZIVf γ5[`Lv;艝В4A@lWGogmyFg&gqWݹ>1x .Fj7bA`LB9@%UA&P1!Ws>&-{W[}59ˮ~ .d̩Hɜ~)Z>^W@ 4u38Eh`+UUx! AbޝS'{cGQe\,]xKɟ{85()B`u@?\R'skD. T.(1|tyO˙ vo<(s %vH D5bR&ˬ*,%$M=+DeZzB1=C-%Rt2*'=Bj4Αd4Re/U"VU '8 lgtdj#j`4aaqY٥qcWaxzΟ]":vUP8e7rȨW|S T ,Rc^j9Tchj-) 4߽OFfR^A)AkИī"uWJK dpZLV!K2')p&4%ĮCJYhu]6BSOI1k]wW9رRExF/eBjb5JnP>:ߦ2eT}\IY7(M1@áP TB wp?KZ{dqw^=%[ @u}ƷpRU^^@gowkg>;}th4B~yg3"H[&vNFyL% i\E)t0m fi¹m;w N ѭ ̳N1=l "F J6W9f-vdRHebY Ss;E(=o,cOɬclC& Kʫ.sC؄NC,.._ݟb-]7k2/Qsڃy_*xR?SП oK_7+cbPD` 5qze>1ћ[ί}D@!u㽱Khx5x_OXp7ASk^m^ɕʢfGU2*Y0j,f1TkFgM`cݬC&G0ME RBdb"YysE"D2"'!CF<3h[tEFI ?fҘ<y ȔUԵmJMU4;Pf:з,UWo 70I=Mow?$\c'BaYcDLy5UU#@(UVK 1,ūynF7 Aj h! }pgQ{^)NYFJYr::S 2SC22$vYls瓼O7`)Pj; zï]DRFRQGW b|rFbpZ R zU\+#,UH.-%7|VE ?͸#1fơ"F^$jE@no*C()_1F6@U][PF^)0ȱ$ٟ1T՗gz-:3eC1? \5EIP~r 3SlhV$زRKhTa2a4;M[zL˲mݢ+?p"E_5?Se 7W kpjkˌ:(AD]ikxЇf5lV1ثv͌3#(sv5kl(}\`/>g"g33hjMж:5Xl B=FIs3'v )il˗fRI! D(Hb*;L2N:HeEway;`٘3τg_o2I1ʶ_&R}s\؄݀4Fo@R uj8Trur؞a 8G{Vz ?tw^<1xǹs8urQHDFD AD!䆖`%k1M2]}.yCԶjR38>V8JeAl&h#&C-1l^GRG~(ۿH牪4C#uv >' AɈ̔bgY1-KH>T[U MԕɀQ=tC"k_="'SYPUgVIlXǨxTH].w 1lfiP<֊."~ &x 7T[w~j N TМuhI+2R:/{⷟!<8ducGy=Nlj^AX !ֶpF4]*[c*0R Z5k֋Ik\( d]D0b*"נj\3U)%c GY79b-yMZ<@؉+ T\wmۮW]z z^ $DO_21DN,yc|!biϓ*PƘu)ۼj 6Cܼ>K[';hY5 /5 )؃juN@eNVLTYNƐ#@Rʅ 3 VJ3ۂG}!ZBHWSC3 Mzl{ L'S'6:j)P}Y3L/]|R@\ԃ^acu) ]W4'e@lQAdT6]R[QH \y֞Ѷ x]}2GN6>ɿ*͗PBSU#_i"f25DLH 39¯*p1疉rkRD߼T7 3]hQ_~3k_=5 bAh*ucceV<쳖of`2Yd8lp5pUbw7/1UjIX RMgf:$хeuԣv^qrL6`2+)g$zzlYq1aJR- a,v3*+@BQ*P/4zs)ͳK'41`wahʎ(p$cC::ث$ >u >D귁̽g/ԛB7Cs ZOO?3:s{j\,uE +{ClU5 {og\O/Fae+J H]Wm u@哘\g|Fz̜!Ҍہ vVqJd4jMv A=(sXv#n֓̅ѹDá"ǁ"PNy×/.m#fs|/~y/&K ^-̙SW/.cm1RֿJs*3 '̾*#0"SuQs[F҃ ˜..a6m1i[t]tb 4?@ qNRBיQlaja, P7,e_̙uԷ&n3:"F(tnH[1t_YD粪~fl(fQ8e{4dB]Qw6ڤS=<4Jp@20@Ha/֒˺0I] ĩAX nN~Ţ=;(/G]nbwo;p.t9pN{R^ЋR_׏7ϝYҘHE{x˴%fa_*,`=h9I Y92ym[LfLNkԡi GCT;WV+X\= Berd&Sc` |f %THiCU)/Ttg:X˪PGDo]rVQWǷ'"E)EY|Yn!dζ"eCJjmhU_Y|[u|sM.;]ce\c<^D5#rĚV}ˍewxXf.v__Dn>@d;6$8{mة"!ע퀹I ig2N%FŤaHۇ<{㗾c5J#0AgF~󥫧]\m0^l5_SwLl] 2G")9ikR-@nH|3ڶ?9t:l;Ӹ}E|pmܸuѥYxHcY:wyY7"VNJ>>gn^-L܅29Emg@WMvVjɲ{ {d6?VY(c9[~b5Ms?  ъЂu!u**+%<3A5̀wJCFyx ³!0A4PY?7,f,aNx:C vWnDZD2\ D+aB A$"@ A8N!nw{9ukY:8Cu;EI%kkgW178~[8a#S#7ď߸}~wF#[)삽5>x_[Σw%%Ėv6c6ӵBp&(Dn ^", 0^\?oA&;{+һ }|;._; 4).>{c=/uew/~Oopp`M>FB,جqP~HBRvK\IL: .Hʥq̈sҖ*_c6! W-o~S?%Not:b_I_s!z 2Q_ϷAsʰ+' idh%) KǞ@N=caw8u q 5 Q(1=&ޖSz[ԗJ,PO&ξc>k9=^q]~+{ϰ:X͗,+UfC4MHlv׷*Z1PD mTq}3 \|ł?ĸ!gWg(W>Jҹd#` =OnZsϜ|Xx S-*b iSk1ڣ'ʨЋr)g&!Z)Ƽs wyȐ˴LK^/~k ܘW29'}JN-bJ4!8h1yA.3Uo)CO8l]]KRɸ9!.H%DR?!WOR1n + ?%'{I%+ld@)0UJgK>2o>}1av@fdVDfbOC*>lj,,&ҒzX(L"[FgCy^5g$X-!ڮa~pwܘ,]9(,d!o7y-bOn{奛GO< @FEi뇯 3YMRI8]o"5ׄ`& +M!l%P(_đƁ1%R_|wmKv۞2 s~3?{3FF|uhcVv0YM pVVMم3+B ٢/o}7IB!DSuUYQ'xfvY\vbM5ːm(R]c֡ChW_}ȻJ2Pnֲq4o//֬[O?w}z"U6V`s RkEaFE  |C=s=l1j~X/@h;Wo~'}MS9 m{l4r(:8 yX9wlgs|xcU3Q3 &6ҺRs`.BupO4&W5 uƞw瞽k3Ϙ YC_~u8\Ԡbbʸу,ˆ,`/&o x\pPچo7o9>Z{K6i|pl~Oߒ_*o/7gptLi1nrۉZȹJ %W66ɀ3SJ)Et%1̵.I\կOkzaTU J;kzE(1ح'}LUipJQ`$nZI)`@=gG-ݖ .l=9 !7NhێxG7h%be=łΉ"BGiZDn)]լ0tՇHhZ\m6Rb☢99g_kxK)hzNyH._&Xy.9`ŬcmZeV+:ČBE0a{q>Reaq0> ,nfqz WpDFn s9/eJ(/qO;_?sܸq@!\ؽk9x"Kuaֲ6hY|y}t6z)l"JӈwooﰾPib͏޺+O\7#m~}L.Nï +#c47MK,{ pqYؓO'Æ1'~nH}ˋsxr~;^<:d0HaL).vY pKG;8:V'7FUQ f+P=޵HhgiT9,9T]z,½'Dd+ 5d)IU^9YGI؋+JL܇bXpagynn=yOo˶ uBh7azGn?;:MmE&g0ѮK\2-q&fxlٙ\jdx3a\Ox򨊿?|6g=! +6#?/U66o\HYhb b=OV;/w] +@$2edT[{a}abm^|vs><;<(U~X_aK^K3chE,';E9dQ`h*Uu>dҏ;asy〟O:\ZydّcG⥊B#B])?mJ*UndmeϤaKJo3o6Czn?zϞ]v22 ѩOIaxX wtڄgk=ep98k"yGnpǓ|{7h;u] FOQ.IC&ݾvb/xҐ-/VS'@$L"dܚADbb6)Xt--E+=E5 QbD :nܽO_v p ̀ _Kν~cNNhf؄vppԲz}gӽh=1c&z=xU)=פUP% ?:c8Cx^} o~ܾuHmGfAp3.X^Sbxi1s s"8*Pdǀ$W 3Om>o;\1Co Mu=-5H h\T;&K$m`39.v4rȋ]ˎ/|jk/57fv⬳ {ܔB\jWdZVmIj V\{l5`c&/} /\fNTfT'.T)H40YKIYvs'!q>K9X;[-l}}>7pF^uұz囋4 A iŤ~z_<i~%2t Alrq.kD؊ӵ#3٧o3k5"knaqf:+erMe裭LBKABоWTlBJ&HI_4ի??#kH#c*RݘiCapB<9vt,^lIXsu5r:'HA3_0]&L m72ZkzB׵;݂*!͜GWf4ySc*𬔢yU+jZ<@JAsmW$OHJUqVVR TY5zCqXyЋʆ|;5[:폾q|?_n9[ <~kǾEK"!4V.6>A\Sg/:[-Wҽ#M;#4fh:|HQxOG {\`_$J{ -gB%Cԋ sU פNL_^aq:yߦn=͓CfM;B*;7bF)JXT)jʹ789G`Qy.SD fzO_I<[ ޑEMI|͖XhZGtm_{n[MtnUl-cfa<|g%3VƮJRb{6s$GIVV,[=~䳯?ݸGY7!UG2BfTՕL B,[`L_^ qJY/ %q$l75\|P^:s'$.SBwH-![5fM`ȝin?Z.X0-l3pYcwƘ%m2ikY^%+.Pa6J[e-uxzv 銺QKq5^h%*lZ. 0faZJ)9*Yok_]L+1-l*V>~=.,HcS~;,a۾Z@uvN9$En~?o)>WuNSYl5s=RR) ب>ںMC,BZJ}Qd䑜D)--@hft7͐F sH%MEX^[1?y~ D}ղjSD Y;g0?!˜Mi&8d6W#>\v=.40LkS|KPP@zkkɽW =u :9Óeyb>oO_Zv˽xW/>@lauG^L(SCݽ&X)C:˺9aGm)20[[Y8#4ʟUupuDW)!^9n3yT4ވ8 /d6h0nԠgʡw^m)^+9&sB3÷ z#-_ED<b$ntH,s niyG>g5o?IFq9.0YBtGzĠfvĭ?˧>gd[r.xC?21(v{R7w| IDATL$^J&iL[&Dޮqykhuv_>aK)i@Hɽi0ʾ5(BJ<,Vn%Vj'?>?{,gNj~^gw*p=+Zh ^z*L=WAer?{D~1E`}4O0j*q|҆>?i3G%ҫpRFʾ+լc(+){&XnQZδ%r^cbm[bfDv~Glٌe3 <`9qyLc}|`/Ih]*[.H9?L!\eͪr9|O̍c>c|Qi?d!1qTin.g)v٩3eL1 "tm;JN:;O|{uTp\dϠ:3&텸jXk,識"~H=qz͛' qK'^O|?̟]Oc7l2 x#3֨#Ws} 00睄`3#{8}-"ꂳC^WkVjeeF'h 3yG3̸m%)Q|F>M~f)*Y,>حQp)*>`ROń#|K52= cID֜>lM!Co*؏4nߥG{" )'2\Dإo3QwYaft!5<^gve, D +xb)P^]t+ %Q)/'CӐR&FJbmm*˿F9'5`?^/s,k `-}TJ_?Gl& 51_y~;8ñB\ o_l0OL G-Wsaf4=7&fA, \bk]^tNlf)C'v+h[|O>gc‹f%甝)%SFՉ(]hy(@%2{&},N׶"~RZ`ň#;Zz|ܕ87}e_nhŃiqY&y*,x[41nScH1VPa@议ISL{sXU oi;1lw梄ڨ R |_wgG8Z C*q"R( ׁ\J CO{Ҹ#=0ϟoSآ1[|Fh8LJ }99nN, d^BJ%v=W+WԳݍ|WYyyz Svt! yjBY.n޼g>2}ãs8M@hE+UF2D~?7UQՌCRgA~hթ(91=i{h`h@jo}q[cusk@G1"dqgO}?yϐR>ۿggzH: =1t[r?!7m#Ԫ%i;r}> ¬\2ѝlEs @*\A\R 856荡 e*gOvh,W1rD\\ "3+_{_M\[5UNפJPYh錇gp@fL#F%io=MK(=GNNyS/sSq!'@0}l,|oRST-~F(:eMAR 1DrJCOv6huzv86PhQқ]xJA kFM3"stί/x65Yk+~!70{3kܟ:eEbL3Z贳]LLVE5j{B=xZ*W5ll?VV#{)ۭ x+39 5sR?Z3_-YTb"X@C6LPZGdϘ/*+.JBJdh?DMƟWS(a[GC5q9v~ђ3:߾5viK96cM-xڠԛnG#E&Bz6,ZU] ¸)Ȟ@~nNZs9^x7N99xy۳t7ͣF<!'>U{_l"1M%CNWfWlRy])Ki'[1ŸzNZmG;ӲϵRGmP#ؤS  :itQVu\sD2ƀWϸo<ΞдK}Kpؑ35 =<5^&²> ېP}}Ġ n9@]a01 |ЉxJ8U,M#cvLV O|XP B3O;|K9󮥔Wov@aXpi 21&jr!jo d <9%%nxuD744BSU 6Ņ:|S6#וٯ!UolMd#Cc}=4.+쪿&ә`0`m\#hNba$qY_\'POzPdPQŧſ%]㵼^PR& )a1q&MuTpR(.QKRWA\o2fe#]`H6%>twaüW]JQe6TB-Uf/L[Zª_}B _1X -%H`^&e &^<77Gd7}Go>b򊇏? ݮǻB)ʅllk3WHCbҐ \䰛5NngxVWsBm uVlɇq-rhDcwĉT^V@Qy.z(SbKݦCV+Si7m;K3YbMcbE%~j%'W3ʒkQf7}d7x~e#@6^~2#SZNMavF pÑ>g5eJҗ<)']lF 2H7[ Ƥ\yl(*7[&KQd8} ;|l %Nk cӲ@5 *a놮E[]}.8ue8"R\˗%w>r'Vs/_^S!cM0fI<Z6q`j pSfmK7Ѵ#X^]ԗ]E|שY it*;u5ۨқ79rW w&SG׆*w V)&F.Vb%sw=Z)qS\ۭ?w£?bå[VL[8[sOsTZu ˲/:r|^V"4G&]v2/ ~.dM<Qp&'\\̗sR.5b&[Nht'A!64[Vf+Nv3Xg(RWSVFVCHi6#2adr:4%Hv9 3ي'[B -;~盟OK-)Dz6FVyT#\!79<>;xsz|Fufs]9lCck* ^E٠yQbr\ ps![6='quqepD W2+Sh2Q&6M:zWUZ'1xB;{_NN0WzsVhΝ ?>ct_w@K44@ Pz莵cTYͭ+žb^gJHʆ2I7IhibhᒦS-XdvW az;O]%E̠>)1%$%dG=0;wˠIOhؑVN㎜bSXJ+V7ih\aHVw,Hm@LHx%(=F,Jbd)Sf|~iwާ: 04)&zLZ~([)ydF4eK}nEn &s 5kyAnwyfrb6RG}>r/*eޫKUr&,^_ufUer)xԜnˣ#Ka\=0鰕RX[>e2[ &nzVl˾٬)wywp}+:`W,&% {N~#s^yo;ڶe,M觀SypicYoҳܻ/<} |a{2Z @E s&$O)8|7gHrM]ez--RKGqG=yHAa1씴;n6& h'NCOD/YqnY,=8d8gBhV,[."]%hh b7FI" JAm G$S ]}UsA_FdIt"З[D=M&J:m7Y?C)0lu"87g 3mסْqU86TL&״2[ե,{d_%d_QR Dfțv`uxB?;'Ebù=[(Fנg=@zb5eV&6Ţ8sxt@8rq2|n /yꀮ6oYn냨\}v n+3fMt>4k7ǒο#00 _(ER ec..=w.Sa>u7Դi=BEvȰwHLG%햦JՍ~JlI=bދ ε4"%!#q |Ĺ ЦВFAU.UiRoO&azdtܓw 5f>\4m; amTiltkP3!UNڦk"Q0`/Gf'*-bԣv1K\|'7<2*PRtVo rYVTs5nS]A]s!btgﶤ͖O_X<; aLνo?ڃ~SsVbkZK"|qg )#ViOG_eK{UwR)%yHU3 y}N#HJ6 iєE x\;Sմ{ 4*yzSL^ jII@3315WO0;:4~E 9A jL BpcPכ6߅FKHS5&J[~iII{j1FaxTg>;BIU%mxvy@" BLrT7.}<0 퉝+z-')m5jž<|KaH{oX6Q=FN̐n{Nt>NĈJk=m+T XW51SuS2*YW+r R}uڮ;ǎXx;wo VSJn p IDATՒ 8+1]cyIőKb⒵Rg_#Ku_rn)}O{ܰU}%Fq \(Ήa (g-*4<°YFX&Z-QsƱmh8 сd؄uq $dogO2:j+{sQUe)n"65(X[AbP˪\FG~}2?>&HnZ Nû}D9 Hw:K:gUؗoIUhoOH5 c!HRitdPd dSZLbPYaO3̌DTY:x DN f'_إ]nwA=b/?{#9M7+_0cex"8N\5׸IjyUlҰ&I& т ߖ~h֜2+K N;. v=c* >z4BpYǘ =״2^^h(hA?\J9[n2}K ޛ]59wVWuwmqNdCB@$#HRRIp$drw޺g|_=MvBtKun{޽Z?Fz;:Jdd1U̕fVߚڐ=%jy|==VQKceL9Zʪ#[`y}j;Pܥ8~6-5Ǟ$hEYGڍÐ).:qˢ_p$Eq]6v\ů_R~?{<1e"PU>R)txϹGfyC/?<=YqX)b`M[=ՉE;ʃ YcI2E,m U4'zC_:Ka&o|)Q@:3!&,קdE/)ZB!A,Î4N"km*VRvevdVV蜥yźHTQԺ0YPy|7R<Zusum JY2*dlȃn 䂶aHV #cϫ jFXت̷8h˥ z5i)Tu该lu@; {" ]2abn4%jбXSUUetʫrpcNRB7-QPrhs=q<^~_^[+qgVI74unYdK.9wNL5̵w<ϟS-8&k8)/2N,R*^duFkWй\Y\KX6e0ihٕ1DS5h;֑klAX :Z4d8_c_)zaY1Pf: ds$1'14ZJiV%hb%LMŵ|lQz:GN~e^W)\oN҆bQ_q?odz#2Umj#z<) U@FL*:}ReR1URw\/j":eOBNczse*:Hƒ[|Mh4L8\?@1M &ۧФ rϟTn$=Se64pfzTABX EN}_f΢VU=d>*NK ZeV2 D~( !#6+VN G e%杢ŴQְeO8kd25*u$DO a!)b; )*FlR+Zr/($rx[Odbԗ< gP)S NkH yU>vД콪ӔRUO9HQqOVj;Zpu{XTs"{]#A@֬=}:މ#[Oist ȯ%t1)0La"B4kh a܏R K(UM%ɹpPwZ*jSrt b;[xczv>XE =3‡=w̽s4J"IؚaN5Þ,-iܑUBrE%c\YYWiM-i8mmCK6y]X0v= ]wJ-)J/t m$_`C rvm#!Z)ܪ@{RZT{}ӴD2ϻT^wW፹¨32"b(JY9$a(уj-hJZZ O)I:֫,E<䊘}\'=fUɭԝpC"bkq 4miBM>j-8ʸǵ-'r/T:ZMA\h)kkpPvi91%/{B*_i]]YoG]S^EgэkIe6pN.꽬.Vͪv* 1ɑK%i'&#>J!iBݖ8i8HRhjHv 9) XGȑ$U4a`3nD?~ZYBkfuKrӵ ahUC:r%Dk5*iBF}Qfe@oIE0G,s#bHjT9\hf=ں;5KJW9%p#%JZ?XD^ҏȤGmZSXg5 7[tSmӆ,9 gr:wR)Ԝ] "jU0yvRGJ1z_Zl¢,4il91 )F7cuFR[{/E^BX-7Ubub$ehr[~Wt?Ѷj\/;ڮ501 {q/a9!+r(ӈn޹jE(Ӵ[gF@g%UcM iqFflSs;yC̼ 4D B-fSKH9 up|9ȷ#}d}xTbL*cR=+% ѓL~iI=mWcs!?W'̀?e+MΥh)7c]ʎ1{%Șz8 l uA<]U/STn;4.j'ƱX&b($2I%yOPR7xW<:GB<~Ᏹ:mC0콧`RbFV1y^gRݽ3xU{*-XGRSz>RYoguG}-RXU/w/$y#WO)cJRLuY6=/'^nOXH16{!:[RĔ$QY`1b60F}]YMdkONhkSU64v ?P&B|Ccb u2v Q>\"J7qNk Xr1|ptL2OiJ3d|,a%}W"LZUmH˗ss{hW*w[S҈ʉt{ RPZHS8@"xV9"N';Tպ%-T"GA=cXqf!jb<'=WSTi:W74ɖ,jwx kn!Yu'Mˏsm*%6@=Y# \J39KԵ2RМ<+EnNZzN Em)N 8 d%{Ok-)A\ׂR m fj # ~v'9|TuAy(pלR&eEQ3Z֖Ū]_}{U_vo0ntW{#G$#4D7Ht`Rtn4ca;Wʜ>xD=mST] a${]ѭHJ%rz'_<',JBq{}G'M4(X kKt aƮN!('!,S`8װHgAb|]՜;"f.kg1\er Hs[K"1g.bL9$GKQBw{ÿ}uYFB\EPTAW:8SB*B!ʲT"*R ^SrT~?)naM)nIv[n.,yTm{rM+54ELs~w`puk$7טm?v! it3wG=J)ϧ-77/BXP6늮wH KmA)m ^<oS*dɸ b0r$1i+.1`%L8/'4W.B;C5 wBWD2K(ĂNEFm1&X1`ƑR&#c,l=j|ʘJk6)֒aYmbʂz@UI+G8qJRu%!0$vS Fi` 3Eb9&t!p,c?kPTe[i qdܼDZwQ1LEhH5L Qy+^1xOIg/_l|6]YǛCxnX vIvzsG~&jJFgӞqewyɪC01rrzFwNOׂ+'~dFB kTh.p OL!r}_c=ԛ.8[(UCT EX.8Jؒ)ƴw;Vg4*i0Mٻ_[gyzuX-9GRɥ5PLxNHfA"y2 ]dc]:#njB`!S3ݵ= {t W(KrS L 8=[qz}gTN)r5B-95B!Z @Ěs.6X\)mk-Ϗ>K a F헾%ֶpoݡ~Dbu*z4I^ʵdU*lHȔwĪA"q Ba0DBH C7_ڴ;[w~)w}#w[XI]i:Śi ip0I?|8~I# פiLK#8!y=~\JaHp{sg_W8"2k1`mz4v5*O)ՙtM״,'d ݎ0ZFu{>/'S+jBXJE퉛33E?j$s2mFVTѩRǪt,Gi ,9&Ri`bGQC$DO-֢ 1mv(1#,HN|YJO䪔˝UlERhH6B&XICr0D/|K??}`%W!}w~pRU ^,9U=sE)4k3tTr >2#~f|Şo^wx93N;a?nJS''nZiB[TQb=XG IDATIHn_<h5SR簽c5%H_O{n.ɯ3^44i{li;\uN(Tldfj"S#6̂!ڒ!$9vj}y:'!q<0l/ÎLta?wyr~χ>ƴV^XJJ#< jd_E y);m@哫SS#E{53RbApk9B`8x~K}~ =?se8l ~-YvKքqUzg+IςZ>RuВ'O4|=Iib? 0n^^9kfïNӵmtyVXٌ󫿼XP\6>@/4QVC(Q}0bVPL2tbZ/^{{OTď?·#劒;B-TҰk*-"LKɓB >@"1C=b˿n#wjk}zݢf߲8O6Fiyc9LSD' -J^~d@p\[b<7xf~oxPh#3yEmkMcӭ _k[aD7<K1!y`9+q&j8lpѓl+[mV_ ~Xɽ%)ݶWQKW`r83ZQ%͜lk(xүV|R?vR; +TX+: 84y&_@741&bȸnOQY[mpB13% efq$J+SFG)0M#OEhb1lΟ\q{=Zܦ?_n|m韾Vzj=%DŽR/ /8>7ugO?Bˣ[u?ɤOGBtgpڹkNkhlcimKӭqvq``jT'$sd=#=5iG\ᜄoe-!kƴ߱z-N^̄"dmKÍtF_-, Ӵ(ѓRj!Ϫ9m#1I4 -Yxy }=%xb1ѺAKCDӵx1٣Hk;il4r4 *jʹB" C䐪-SJCBKSYɊ H  a39qPej ? mCaI w?b.xZTqth)Oy&#%mhLL\^ 7W]ow~G>k'2?~3~gM´&rlۿ6Ne> owk~UPr.&U`v􍡵l,ڵ ~m;lb't3v-qUg9>VC b $iw8l)zA׮,N6#\?qedu  i{B]4R>epFXA禛=(5Up^DKRRoPv8ZEHm'78&ھQ P*Y8ݑ}R_F͕(<}_9`Kr0Qsx:(%㞘 *V n'o>O_m~!h)"{°eE314nmzLV E+밶Ř6+P3{ף͞i{ƫg?=y?wb*}-BBIUŤNjz%!ܛˆO?zȇN1ham.V /i5_4 q8'GURl#) [ 7/o`4LÁ;"kW,jucJ)8X'=;}Yޓ#6Xt-m '&EI )s(=zieoz~2{%qgA'{Wm&D8p{[EqvmH_ &O`,)=4!qH~"qlrc-EiJiy!%@kɀҺt{s)40axz6g_~_}N?¼h͏vmAwLʟ08sk?,kaڞnyۭPv!sStG)| a{x)~ӟ{?;/T'NW/:Bh%gkXSrMz5=m9k(*]WiҐ%eOBVs+]Bt p!&8}Ynv[ !)i#9&htbh8qs0N02S23 IT˯Ac'ᗹK.mZRĔ9^r!ȴmHstŰi׼u!j5a`]SDz$N.)r)xz;9Wogh"Ư+2=m>7Vt}],hvufqBXa;hnFk6RJmmbU(K@J*1.ϳRIa4Iֶήqc X;aϱI1ALYbaÈs2 ? k q 6(G̱1%wH6M5OzN1ݾ1u]#2#BKZN`󄳊i[uNPp{RN,5 92)ু jdtr<8y3 pf5?tKi ,MxȨ?<'إ/vO_>zt3ח7/c')n0>$H~斋gW| |qkW/6b-HhR'*|>`ؠfP(jcgѽ%na%nuF>Yt=ŭg-Q`܎Tk8q΢0ǀ-~s9 7L 8HVĠ2%b9V3NN\.{k劜8==g 6(Ev7w-dX ! hDQh};+eyyz\IE[*!eΉU]Ym4qZp\ b]p3ڶ[Re"|Zh%rDOau;B?c3AXHZ$8݂^iZ zPa"|38y5Ϟƣ7H(%/nab˥\r@=vM!DN BJQLIvbu~FRU,{G/l>@w˵4=9[JZ*и^Aٶ, $h(AD)H@HI2*Fn=q{9Ŋ?Y,i_BM0F?Z{b8Q_ۤ+9zGV2IIDo:>GG>}L+ouXڍvVZZK:Vg]I?d\_ɔL#J3G|=\mG?$DӭNdvYhrIe!&;M"$qdѺ]_{tl[=J?Ykv[߰5:}::n;&H@ E)\ @P‰UnD"HpEApȱݧ}>Դkמ{Xv9ҩSyZ*IZHI%v=!M*Onjk4ES*E*91FrLZG4GBhMs_2Bv-%-<[l2i꜋_0n/m1GXL['vja[t*KGl/2KKoWpppDw\]PkmbT)k {aE 9 'Z|tL".L9V`uI%Ô^H*(7*✖ѬQ|r.JKBK-dW}]ߴ݂]c KBBXmδ:\rpr̋? ~Mp];yojA,;o*G#>x˜,hb6>t<" 9knEg#[%rJqQ! 8(*%<PN9s,HSOë GJ< 5m,V,i+oiK$4՚MTOWR'9.K~*hBfm{B(DoɔlVm\ U9svZ+9bQ1G ^]y:;]ۚ+@M#0s3(;u]j;~Il{nAhu/Аa✳O*/'#U߄AC+(rJvmy65;5X;$6L6Thc/0 7CG4(<[bЯtݒ)rMۭWzcC\j,whhqyob-i.XXC%x|pLfcY'7ش$ hO9h=#MےS~ ѮㆨM {'}.(01qsyA^rq|Dڷ 4Ņv1.)3&gw67?cӸ .WI>yc7i\`|ɻ,+ :k`'h;ՙpy9ƬtP!L"jO+!8$"Nj[zD a"O 7\Ie+g-%o<ח4kF$8}G)"C*mx3 SB\$y롞u㔕:l՞Z| hچT+fP|bs4&60&5Ic RSRoyq@GRVn_# iMnv:J(R%Y MӲ\>{y_`?_{߯VJqByoKڜy9UFc{c{D *Yj{m/jH~{* NYXO\uDSh%qSVIQdmյk9ig5MױzIk4˾'6k0/z%6-wR*в<8Z#Hhd)X[>}8/ U fNr.xvè.K:<ǰߚչ;"8 ȕT2ydlTBml/.|>e|J*!FbT7mcGJr>ꆡ'RĬͦ1Y{d5[s7޻2g&/PMrs> SOW-Eu#[IA VԤpRg8 .ŋ\\m(_rxtdfUyuj-tM(VW[mC52~ѫxn/bo`v;16{O>}XX~TaD9]/\5&j8ۖn@!:ԯTa0\]眿x_5;6 ͒Q6-M0`]/΃hBC-zoΞ~Z/ "o_Iʿ3Uɢ-$h-.Dzo+~u|Т7ԉP;j҆9q8#tЮ A4Zʬ'I 蝹Y}!92h}ea ց8Z__\2myl77V9@]mc)Q6^N)Fƫ4os*;,@>uA#kT˞/ ӽ{5`gVY5gRڲ7 b䬠ggMN4dى~g|g_|-A)>v{0x4T CO* 87z<|oq}yV:'|~G+=Υ?7Q43mfi1cm΂!D.p8oq}M ZVt 4#*<53(`' XNuVWxGRL8_(dz N肰pyyw>~ʫxӻ9L4&lG6 f}-8GJLC+RJgŧ9~94 WAn}YTN4ڦZҔ-Z_ca M4\i59g;b /|“':Ͼ/2D+!zQ+51bk[Gs(,-3Ьsqlnn8Wt_.We5HWMa`!XҎXk`aÕF;Gwxͷ琮k'ZԼ{>c@G[ee9WteYX*I_>Yj:,t܄8{ iP ϟ|٫g=yFDJ.xPq 4C_솑v%hr8}U:՚Vpʙg} /”-em6Ri\Te ap 4Gkkq!ۆ#@vKU/4zd6l/^qqO?EnA+wv1hڥQ4MkbqMcï]ڝ=Bճ/~Ά.7ut?姪HW V0^Aּ4]vЂ_@w7sz瘾mp:c:Q){ <+\VZn?0RcXk}腶P#I.jV4a1ƩQD9?}9OηW\:'v n8a./5&;vA55REQZqZtJE;Z*x 2zj)!NMR! j$taDNYJ" T)86qcb&"'qPks7|oxSvW/e@5-spJ̷FFj݊7W-Ç#x3|x>Tf,P9Pҫ|xȴ^RƿZr- ڷHNl=;x&W;y;o<ɚ /Y !hfv ±yUl P̈́7}gΕݯIXZlOzk32 sVeoD*)M&-g8yl67MCkLdGѴۤ^AMJxj`4)slN vըgKY)q!Eh:MD7n!FIqemLL.l.Ϲ|)|/0\tĦY4i,-4QU(]"hGXef̼x˟}9}7H,UTWwCcAUþ FoS}t&&7%9&zˍ fkN;·Mrα< 4tZ+LUqo 9GRIr*avщ9Ps䴣 ^>'e'pwq}y1hN΅fR5-AQt/q;-keFҨ>9eJ()3^0Iil4MHg/6;RI :Oŋ 5M-7/-}:MҴC\QT|-ļr7+;\/]/>ͻwY8XRҎدYW0qsQ^Ɖݢat3Fh!Ƕe#aF8"n\uh".4ʇ7DIӤFDJ~1//`a`0PTqO*ӨqYym]Ob{BWFl1Y!XfIc>nɟaߔ{ [Af5%b;vz\={4rwL,awFF2,/xpËfNj"5@؃v3HWf"-a6}ft ldf9\cv!;|! TS&l&D/= !dyynڒgw2t}泧8{uqc&G$O "\_^r+0no5 X,T5שEs bq F1!8eI"&.͂kQ.d'9 .pHQDh /|''r_Ms6ͿrdCmwb^j yKM]ogt uDJT_6zً[ y% 6ۡeK-^ZU :zXzU$!SW{Q;k\4TjrTHU<1Ӥ˜&4 >!#Ow=䑛qG*Yx8;nxyK>z@ 98?;#~->|ã5 C 78m7a&J7´q<"x5eb&mb4%>~5/ж7[xF Wx1ߴZe~$*3(yT<"YkgM?{@V`pL p|ͷg?؜}oE)O?Y(Eiav*vT,ڠۨ.t"ہZb){pYLeiJa5c7m!o.ϾxWW4?;V{R83?j!n&]Gm.)xիR7SGQCLk5Nwީөi#!*[@Wk3Л=^<{~0_*۽yאӖ6T{*bijal:bu"t%90U!NMV$I#mp! m̬Uxm*3F;nT7lVӮҤr݆pd8R( 4q}Պʤ$ b냷s6˰Nwᣯ{L Q O/dm+jF!k4o'ALQEk [e6=Y&qsv ;ν{|ۿ{ï{d9 i&=D)*N4H#VW=DZz&g[H5oe\l^0l/ń86w&s:A1֙df ocC*Eu3?xz WH="B.㥆?^_JhXتJdT2yBM,Z 5vjFjQ-^*!Ɩ[>iRHFڏ<8gϞQ]dh6{4LFYgӃS\ZszHk^9N4#OBV%{ubZI۷Jv%PkA-wjqbRZh!LjkׄŷJ ,,x4brrX^?E,.8V'C ܻwO2Q6KN;oTqn?3-\yxOAp!{[;.1b;oXvFbtW =o>g3{*+^f*إ`|T[jp*vrV !QӤ\"ߚ`f;`li"4r+.Ae׻nØ \ eJ>JL ӹ{y8ӰKL甆:ht.i;8>wwwrJ+rI*Zlv*Cp&hRm/0* [+(F lNoi1p TlŅY(ts:R FJUg}OW{I/\vuL՚Vi*̞cok>{5YDoq(nAd(2mܶ%&eBD$\Ԟ*˪:]&.{! UjW;/wiHyw''> iHsOB2i:bNyp4)\3ѷTqU\Ʌ`0IKN d4񨀏,:ʫ Z8Sdy;뀪 \kl<9ښ}v`-8-N:q{ɺi,L6 RCIqjcBmKS-vkDK:jkŊ #FEH#idYb`q $jF5`QcOtZWGʉdqM 99'_|>߳t#o'?'CcCyyb1avu>L ;10DlWV ݞ}z|b&=ȹV~I뮶F $k꼎Wl 7k啔SD57ZVsTS͓.`D 2O5ȶ: T "Q0<~J֯urQ9eĕDez}_icj-_2 U qO7 IDATnaosfRyyf_jF>(inxpC|P2tR7 yIC$xl'\\vY_.t5]׫mqIlǯxDCKIRi%I=JZʢХK+N3 ˖;Xlu0ͱ 7Wy)Z}k`q;\L݂,b*[gprΫ wƃ7YF!Qy:ACdt \B2W@Ĩ~a2kPφ`s9aꙜSػJ#];{ NXya` fJqqsfTJq\m{X.64&ڋ{>_{VD; B-L?\.xt7pz 1=v=Q񢗠BI~_obԴnM:;<`w=;)B v+a ^C|Sw8ש'B ->d:;0U|J?T xv{o}mMKVMKk3na='6Q)mK*ʨ3f[yf8=KX A<>(|C#꫗r]=He6-گJ%yOI;&Uw6مy !Bc54GZ|"/{{s tAVTx\΅}<3)H^͚|Q9GFk# Gb쑦{o._`D 5Br4߮TYtMC7;O8:9*bg*q}|/rq} ڕ6_~!m(xQbcGgcr% ʨY8mZZޣYeq|UO{yonnܼsWp8+J+S[Y3Vs#_:TU^f|ٛ~wSտ6MW:o #Kk,末N z1e^|,W/$BX46[|d+v5з=O?aJ)yyf %yx%ڑǦ` Lpa$ U^SEr.j,'XM>[.G4QrA;=]LRU$W4헙jGH"I77^hHpzC/<-CW|Wwpyty(qo'P G5oO[.{&D__ݒLGHRHDmcUE`G]fAQEbE{J湵ҷW< qqn_2)6, N9zmϘO:iJLW7})89r&eUE q,ێYp2 R u(i[BmǏX{@J Ԫ1hI*{[ H ̐6H(UPbLz N=Y ۜTBtm{/_ ֘MLOQK۷Su2KI+/.i{-%'f#RiZ|6 j+D6%VүDaVu0L/#UgeX|Hg5x5U4J[\Kl&eӈ#2<r/vt݆a{E.ږΟs79Tݯ%&Tf$"S.͏NݙLt ]l dr恐qiU[8>\r|tuo~_џ|] ѽ|2Nhw+pe<"V>j.d]jރo2G7E%҇R[RٍgoӫTÙ_\=~V5Y`PC&AhpRQrk@)0팓;};~.#gXr;ܹsGb!jʣ[okVr[0QkRV`jҋ%F3D; =8Gt_P@TyLJ<ڿM+w^k!4 \i݂` Uh[_xnsAΕDf:>,-\p!G"E]m7 SՑY [{Z;'D{ub۬Oe};X<<[i{͵ fRs6d抍3r];G|(ҋ u0ui0g;²74sLe$,vڃ)\R$jޓ]oq%~Y.dϘJ~߾WwT̅GtK뗜rzx 1sN>:˭̫לK- 5%r4.zKރ~"΄8]Cęwp5{fJ/KjP .NА pC..P(p~=jCP>}bC#}9Y;Xptu-39ݰwQ(G- EUafѮO`^҄Ur_+ _zYt uux&GX=dytv-m9QPD)< g-S?WIH-:!6+晧_E DqvI[&Cu#5erZ#RHBE΋8zlߕSOjv}zaZݒ;f|4sIGZonI>f$i40^z¦MCYCӔL[3K/\/;uuٕYl&5,1IYrb}3?X+/f{i%O*=TiJryMP*%|kWZC4v<.6F40:o{}'$C.횶]hfZa4\\? n)9kW f@+5 ϓK,RސRf,r v5ϱWyi[krkU-uq쮩W::ZEҽfW2FߥLF1KRmΖ03骱b}b5F1ƠG~6 5oAaՑ!Z粵'3֘7F1BF㯼ÅZ\v O&K*=YNPPh:q"[# -&=:x?uy}Nw?߮u*?LnX5ZC4:Ylhl^98 ξK2rޖB{iWxC!P$ww9'wXvif{jGWij"Vr2V;n6tb!ʢŇdݚV!1PťbĿpk;r+%. iza7eqb^xphk3|GEK2J{{ޤ_,hrM<=8]KbADLu(NSsVɺk-KP,P&5=W4u{֝MU@c8-xBaʪ-ֽ̝&-&sDl5Vn}g W BėJQڭf|[&5t>ص'F1Ԭ/eΨ(GйS|jneȞj#u>_ϑsonG=XUn3|F-z}0F- ,|GZI5vϟ.>K?8~㫜=9qxO֣x!)<|WW7oT^Rϣ[a4ؾn?w tU~h#gl>Y.㟬ʒJ3L<D05YS+Iz~^)(F3gȫQq ʎ6lL ]O劧P];V[ف+ZFJNB+h38QGs%+@$" iKu8I}nr|&J1m Q1FYM4% @eQ$tcT8qb!~@B@ @D1$!!XH(a!!X [1bc\겫m5xhB"*QUs>z|x1@s03=t}wxp7`?&i@xt!Ļ'OČo}* <6'Hxbb&YLP "?ha[o]%QPPLŏu݅ a2 ` F&`L3 $whWZfԲz?oZ W^֋;I%Jkrp%mth lPO6  &Hmߧ`wqV4v5LO:/p#"n^`{ ^\ل!p&>S2 f8bY⥕6qBΛ60ZQq/4 "uGZc>Z:16#!7+)XLK}u ϼv ɭ>xH&xuٍE>Mgi˔yj/>oڧ|PV. k^e)6RGIX%EI2Nve'އMHN&93F!a+^*<|SVP6!1ʊZtQ5 3YO"N7KL|TPD2 |k1k8 P% MBy5+6@a&'䟣s|e9(VWa -l+2A][cFim363L0_.d.evi"J0M PjYli@Fp rp Ө["qdԦi nK~m9*,H+">PCY7^|jaϞ}NwYOS<L% aiv-~)+%>U@J_ԭӐqw6Y v!C*n *Ak ((wyy?3jf9<5" Cd=%@Z|‚>\Vz`p6H"W/J噻;7-~ToES?}.@L\ ~*- !9綆:ՋO/W>?㰽fIc~ TOQY9.4zRxD@`SЛyng^}6߽=]lŐ2 qC 8ybޘyM`nbN'-no>m~ _xD3:Y (gh<>oZ>u=W{ZP-Us0Ɉ ܡj $1ϒKz ;T®_``ã;[|㍇p 1LJ$zrC (ʐ!8:u9r<6y4=[{5n]Aݺޖfjt2S#A:F8l~vPCiR#@aEZZ2cYg,k>pRWuZVQAֽ* JFЌĨeZȑ.#Qvץ ,`bC[rjAA%u :#0|8UIŊ-. ;ר-BDՙZ[&@2,kA ?X q|IPh5 wvx>?cu ʁ`l9AtbB`Gڟ&. $aΫWq'途TԂ.B MUP'Bv8iOUg[kooo$?xn=gv͈q4`\{l%.y=M˜ 06ƚ`ÇXl{BSmCq##>"t:3La6n\w7""YG}K,.@ưq@ʾ"O7/5[7t=@5PNE2 巪JQRQj+#F#ITyT ?pq+㌲'%Z| Z3Ų# :M↥tn~⏙a:B^wlYB3qytHkDV #̀X88Rb6`b'Y/D`wQ x ?/˿>+_O3;?._>n%.s<,،̈́i`܌HC(ɗR^fkWd$@93X%/ SiSk`MkGu 7 HOq1"`)SOL$xU5(l~[PѥHlY ni~1ZH%a:-ԊĐQpcx!@ti/@YV-/^}RC$rQ ^K8\6N3?p>Гz7p^\,իڷ"8vIQm>Us<q(+PG|>G1O_O#Ksgg c(ᮋ!EoSehA~u@!2"q3 2 !9Mt!̈aQ#[?-i ~Ƒ,EoY1 a6mZJZ'3}2RHf(if=0ࡽ.9LS !aK3|b1OTK:OP9x>\%i$` nJ0F؜#Y;.0KwYAl^ ]| taNNQye$VLQ#4`6Xſ}d^wW?KQMg`v0ERJvҌȀOAH_/^$8`8IRG]yn M6fYܠpz?ٍ5pmg`KCSW)k}91,hw!҅"21T!Px3wZ(^hA3vqŴH倫ų0}MvJat1Qʔ fzzto BPEԮh g6 Om}?zZK(ҋPWh*$n& %I\ ?+oM]CkA}VZoh!J;'1~7¿~s~gmO bm#xK[!DÄ%QCeo4[nMH[_ ^ Qv ̇{].BCFIm`y!syN{v#*_2<AFilI$P] тio}=~7OWՁlżl0ݹG}Ap5lwgv0lQ*{k&#PIKhÉ@ ?7MNvDzn(zBN̉p5,rnZ@(i-bUl֖ZA"6W?O?{}_q/.瘦 WAc< \3/Ƅ܈Z, ✳u=;;5IK; 'x+βO1[*_h?def6 z[;KƩ ,q6Љ'-F+n!AʮK uP9n>ϟIN ʝ@ÀoAu!c5H\|;Hiȯ!RW J>tZLN?Nyp]$ I;Bl| T3f9-9mNy6To!Umi0j%,H,>z\~Ϲ"~S{Ȝefr2$wI%ȣ r2ekn$%HYC@JγrF<-N;J-!f$;D(x.֑CQr[X/;UN=}M!u0*ap_}_G 38./'|sg!zyp`.G<m<{X¯&_)Ty8( ҴGa z'R88/oCMa7l3 9H=V)3 `[XfFX@@Ra)r"xBL^dA w߸}9W?Q8ˇo~ko"xƂqTLovo0޸cFp&>ke> iރ1 Uuq J)JaP 'C}PzZ+i<[畷]MffO9ϟ;B؞V4=i2B:ɣO~[|=ΗLni"#,&F EYz ;A,h$qؠQ7 x~= #JOd`[`4=J ]U{ q9!bKj25ʁk ŅrgzAN6fS> (G+ҩrS|@_y3Ay3`ΰ3ηgp(@ӈ%.w縼8o0ĊjvB 8ry:찖b GJк{>Ɗ1eu%8m:NIK @2ۮoh$ΰjDIN! kb!tTY2_%+*ɵѠhZJ󘦼Ѻ?v/Ws?a'fo^N#(#g8lyu~ #\iۃ+<Z/ЎL^!D10` 80;~_´١GWd̰a!\O%V8N⬐5 7ʡ"an%nlMAr8,PdXe|X_9O_>W"ST"^KpDf^: 2:nRo1@뛛7_CW@u3+{цs<'C2i$+PokY=սXBˌ(H;xe1n&SM!XxAJ)D1rN$8.(n:f9w=7z6 PC50:UrVoXqEl3'4 IGq]pdX|%r_ 8#7/0:NʭXnc]_4]`Fϩ7Cet8'ciR>C=#pߺ>O|EDmևt8۪y㖦vʻ\N^1<%\pem"K)F1) ~o8wx|q_CȬH F,|GQXpf+D|uF{tV ̮O@2Ef@ru]`!}(~m}W3.WbOP5Z-v 2M#K(w3nuYO ._+Ѫvuz0U,gR_*^V$3*8o}~P xB`dpc.`΁Gtۀp2I'o+Gp q% cbh,.Z6WB#wL3]} |`NX#1GEщXj>k08eqf0N;sѻ ׿z%M;Kwo,HX~{Y AMe9`YPӄ6{ !@ ;#yU%.Ӟ,4~&y ᰖ+C>P҉cmnmI1=*ke>' 쌱)M^N3oCms/ݡK1EPySj|eg%*2r^[,ֿK1p].zGO$c x F Mp{V [M(͙e ]rF}n0vdZ1$AsX).7IMG 5 7P@N%j{8/ WvCs 88H28 j%*m0V ;@MP `NF+ =#t.O@=$n`).MM0PN38UpqqMƾgp{>nHޒR% tO/>li1nq-MKLe]e?4XkͽDUW(:iy2jՂ5h x$6IUJ)xx.!CMIk2`5,J1!U;ROh]Q$*_ŠCd&}g}wGJ[6̤~} h8\AQhWS/m^{O_ܿn7`r bXxTlJ`9%~YʌZ `_ ؟=]kS IM\*/)2RZ>\=&;dSlqq l騪[A>~/K{ o9;w/1mGr܆2%?V!px&7 x[J턀*_r2`oP+硣aj˘z-f_(Qu]cT<΋N3wW5ӳiH=["!I("b%,5d̮w?~@OK/Zq0eBOE(UX%r1Θg["BKqrƁ!pU9VSZ+b'SlJkbݾSPicCZj<yPBDM!RW= ڸV`Dj^ݹ7 'O/5}7y& Y`Bk %TVP5+v\BĠʰ2u;_uu& 8;c)D;:m]rKpym:p5N+ ۬)B4srNSvJbd_Hƍ#[#0TLaV! i0]`0Ͼ-`5OQzE8 ZP Ά}(s6=:GXNM YZZ@<\̕46d5ʹHcE%Zd *nl]ZTX- se%5[ih{[D$2$yUjbH{࿃Ȁo-/ˏ?)4+ FZ ƔS@Ke-B@6#- ؗRV/ۅr\aFz#u4DA>',kZ+ ~7ch8rpk[m [4k,m5DND)P=?^4hwHo߽Oes+Tg79+޲/h };zǛxqV6uAeF+H$ދ0,XuV SoTأ]tSfPb3cuylM 6NŸ][83FkA`qy N=IdD۽s G`ԾS[cvKhNb>$ .Z|=w+n8.8a3SnNhTΰrHM ΕxڔHmxH%nbĊTrK,WQ5Dq&x&ߚQ\,©H wۭ6ڭ]eLE}׌{ehb&+:#KyjiB jpM4/ LA$8}!f՗d6d8$rU{ `1qS!T %<~=n5x65J!)dƞ_"vKnDfGY5. 0c5)@,`VXVXXzz鍗H qDVwݻG en}* )L`Ho[s-Ֆ%K5w N[Ĉ-0?g4)F!,^&j/p,JbpXFXW8 /g,͸Ř!2"%|zF #Q.%vyE]<-=>4"a!v8-%κl i{42O k( 4([?'ŪAGv%P7 Xq=V$=b rHi|C!aRx|g}|.7ʵ?IRLo k9LJ59:g'Z6NcW,#z24 J* KVoYs#mH5 F@ t<,U˂6.ibEgbw~Wσ8 `-mti@Ful$AIm 8sK[N8*1}َQ)h L/"4t31FC. hN[Yv=lZVPtXٽŒ$'9=K9]l`*HlSBJ4(#%p⿇t ̦SޚO(z|1`TSԪ3̃Q$a9zj0Vr|*O9Q ԁ&1Dn1)3r>qrD)38e䔰\\!#/Kw=x8gl`\@$"i9g {i&WIGY!XL`-+*Ρʒ[9kll1oƑ փM㟵^-ο/slhK;Jn~ Z?@H<IB}JYKBa02H' )fİ=rA"q(ǃ#tt\4=mH V_5Lae_ {;*:,q , *t 5XJق[kxiW4ePTl& x~O__;Bue>`>uEYW2HkcHyv:&}p 0CYyXeGǤTNrЁ跆U}xcvCKaa}b/^=Spk ekvAICC)lV#\RblaH6i!B${>^:q@҄j2QkA ~),/5bɒ yP5=nt|x!ԧθk`\Xv}n Mde90k"omԘ2FQjjrJ5jn#evsrcc p$ w&lly~ b #ĕ{Ẻ=B`/[9WQ0:8 <9;N<{o^:Ip4DLBh[l1P;ڭߎϢqAu[_cv#Vp]Fr 1d هzb.eϙCE-^Zq+ze~'uE8p8ezRwVU~-GM868Om!swHDF)ݤ*yJ Ǭ(5Qn^z(;ZJD ԞԒz~6 _࿫ݨrrƺTꔘTZ|2\nvuhjA+t>b9p*os4r҉˩ YXx~\]| -XwabJ8VCĀ!{YOrb['dV =?\VBA'vBX{9=L3R-^J,qNMֈ:O.uaeFh ǒA b=’ 2c]f`w\<;F+ukkFZ`Ӣ}N5,gaE{)9[a/ LKQpV RP 9!)yUH A ˨3-z{981<@y3wz&A-d\"peIu)!EǭF#ox2v\<'dUn߆QzOz0 Vmښ0Q\^"R 7\>޿oĽ;t׫߻W8l|e6G 4KRGTP6FOȰ5%qb/κ#%{y:ƥNSLjʰ0MZY}S!wljE޻'ᘰhK;)PJ5*TLZ4gy?i13L4Z" 2jڀuoiewwĸEiPw(R.8GiT FmgcyдHڰN;!B]pG qjƒKY_Gz:ёz2]`Ĝ[qbj5so!"R@T#RfBbGÁrA) y-y0PkqSC(Fpҙ !80xuQ쌻 9>" b/߶P݆ --4/ps\ZuI!@1uRDGr/ PD(Ub IDAT|ă=ngwuJC9 x36*& s8b5p~cR ȁ N ^We9:@ twG>u;5Z\Noɑ9~7$w Q/bb Ĕƕ8׫ :S-6c٨l@4-Ǝ9y"[CtD>0)ʌ:dMc8⳽p=fҳ>"zߒ#y1;P[PKY}-6@ny 8v.=^yI)ޗ ><}C$VV$Kc+ ZUT! oNA1@pv>Q-Ms _}|T;َΘBn`i63XeKtص|pC͌]<\"W'Z(]Nj釹!PFi! :#bFr9lZ=7]?AךKߣI]19C/t+dZr1e<2Br!m>Σ@^ޡd^eiM34EN}|٬&]xx#C^!\ =OAK&|QP̍"xQ+Z^T3&(pb}!ng"#air7m#;e -JsWAW# p= xߝ07'D&4H;wR/t%`;zyyn\ŷƈ̽>ǮѐgFو0OGu?Sq/w|?֯M8(4A[@n|\CĜ2;G4aܐ/4 ߣ-%qFrDo0D.Glvh8O~fn{. ,^|ct؄D(j.WEK#`jJKR+ A+Sl~V\ Ny W`}z2dvD)RhOG8p3G+>-1]qr5=}|0^!k|2 vk)$ZM] !2k XMp:0&Xpzqh|zܱHZ=A^%6h|~/xW3RIAmE1 Zя͋; ղ8:hQU-Sc[]I'FWvf&w.\ެ뾔}I!Yx'Qk=Xb04LQjDm sY +p@B@پYv4R0mșCJH9/rD8SlU-(_:vtZ-=y*jѶsnBi yecE9 ~? `ͪ,F/3Aʈ`'J6Cw@eGyOcfq\}y!Oov:{kpܨC6Q*4d-@` e`#!n `reaLv"{x&mv1"؏ҟ}\dLs/0bh{Ͽ@^UfcEsolC;I)R'P P[HN0] gG 7Wa}!S{x%"31RJ}ّejc,v;œ|4H7z;t3Tl]Z< vښ2b}cSҼm#.6;Ƀ3 XiDkytzy٣J+09ycZ C9d9`% Xx9EW5徴bnul70;gO N7ϊMp wT޿#(ނ+z}Dw_]" C߁Hzz8zeDP RF`AL8Z5XvZiF lۙ1C`89湏8;=5R'FCD"m$3@툯i)Ipd2;H(zD )[ J! v}Hf4+$3(D]&0b(C8'\!Xۦ1i)`PX!> Qɧc_~ۖBnlil׊BoW)Z r!AQy"N{3.iI__/fc$ۥUD@Q<  ksy*MưBo UWCc[q`;*@3MKha l[vy>$hKеG(YDKYC{2*[&"`.<}TD*PJqVikƏlVMJ?mb58ֆQH"#*vgT$E8  wᘅ97h/TrZpW)[؂ʒEP /iEL2bFv\Qws ,g׌8P&TVl;4Gd#c+!@HiJy̓İ~d&o` 쑅!dkjPᤙ]F\XKUjIIcB\Bdʡ,fA"7`y# Bhɰ-`;l;wLi钳lCPt>HGkPm`׵γYxHZHR /i9dUi7K'A>9 |tsU{u2AlF=?oIƨaO^^4y_nWFԊ  iViM`MqtN?RmBp)n/EA;?bf_Ҹs$m00 ;ڝUb!mK[p=DZģمAI2|D4EObQEko[0fD+aw+Mh6'0V* 5Zh[qV8ϻv\t~ń6WôWbK⑤jݱSޮLzXkV{X>poᝨc(t! 5oͽk MhZmvfMhb Mu^՛"ZLnQCM$g1@޾H8m@ iye@е\,P%R:ƙ)D;MPwV[͸*([P gļ0\#ZbF>c\S`ȃL0VqXUCڴ:Snܫ|UYRO9$-B wETPh 38eD||n}3g3;4ޱF&5FOh˼~Y}Odcpӱ joXCcJ> HȪł͛;$a³UkS`M^Gi3bS;xщ5fw@n1dV_]W+,,{a4䝆)FESH9@2mS{G`G{3mbMhHdӊVq" "@vgv/yyބhA< tqdAȊ&s/p8 0P&l8Cx L;i>! H_2in1D mɴ)°ٹ&ڶ3heg8a:6UD)Gia$FK< ƨ5x^Qh8h`xZ,v%icNAtwVbUev7_%w>P^GPY3A"Uc 늝 )Bʠ+jnapz!4,xe{_&`Db?sԕ&mr)Nw x45ϰjVT[ohU؃&g{MkX\Y{!!" +Z큒 s1N V(/P@&a1# jd C83J $hmSkGj3Nko;`8q #R6Q 89C3ڌSA,FSz U$z/:FsR@+3r6UK9 =v7AZ?O?_JV lC^W7 6 $9j'DOQ/wB4 35<}ƘAogW;z37kKE]d^uv]7eSOJ6(VJ )CӥRbDm@H, NF1]4)lp؝`X9\x$ĐШخg]Vx*f c4!M SFv6qPJ-BB3y2pjyo}S`hwVmXKEF}Y %KD2Xm ^kU9@qp%kZf㿼/w9N` p@;?<1L"A ϤsZB4#!b: P0.Naߑj<t6~I@j|w=X/ HK.\LT |6W\Vh#F IV R5c ς(~N&H'rM5qJCDjK!!zpH,f{3!& br&H;m³=y/cR4 -CPPzfGZSa$H0@Ź@ )Fa h R-"i\X V#>3 b!ڝ~}\{@i@țдAE@+ƛo>xw~W,}U^>YE潍-v3Äv !*V9`،>1б4ޙw}7IEtuIuIi c8f)]GQS^V^cul;Z@9Xg0eP,|1&FUktL"jmhy)"1P'ĐC_hwb@X=[`;L{ӄ'D''#6g'x9VH]K (RAل1tA'+ЪAZA RZ ʴZ!ex*2'1VVSu>8<[}#Z((FQ軛T?..fF` 4ۛNO5_Ք}=7&tPze>\a\fʼn0Z5֙f~ OEKddnϵhw>{xd?s;Ѡ컯Ey}v@Ѽ@'jrS}Gҫ &a K" (e䡂 4`'DBf#lqdXд7Z _'xчQ; aia5_{$8u({CI X bz̷7bK3pS(;bnҷg/ @4nPm۝GD%(sۙlcDLf&~2шyD-(ICq5J) 7VkScqWHy2AFW\?~ uü51n2Pr p=r2o)1x7_dtոBϜog!Ah{ 3fiis8$DCw N]%D h0AR" uU0+W儛Vv¾.~ͷj׆UB UBNʌ3"  n(E 1q:-q7u:Fpw("jDku)bЌh?C@1&c Wor1* Z5S&I4Thk$'FpywTu 1*L&1CxFas)hamb<bo$N!a\#DS4a\^O_P'|k#j 5 a\۸Fw=Kr"TKi $Aiel"B-NQe\69)xF A`UI|8Rztih-rֺ[mC_$IM͓ ;TI`l[PFG4ÝQbg6jLhk !мݖҀ9KA2 Qu!6dDh`RZ-PQĜ17V0a@TBA("('8j eZ%XX3JGS3> q'gXWXm 8" @Pg7QՂ^,>hLER>MDʡⰽAi5:CĜ&H2@4)J*w\\.?՟/߿~08~ۇFJV4#Hlnl4dxc[[TV~,4~ڂz"$'6>3 )jV,wS~ɯac’ĻI;Ё pGREhQYD,efn *RʨL =j c@L@rAa^i H[eى1ಉYbH[pDnKv"{;7`m )zj' 6'k̈djJ x,ȬlA-`!ہXIa fV1 \M#RR46#P R@kݶ!`gE?[oJ@ fzN'09X@ fun X2{Pqyz~ûo~קW{_]&OyO׈qW`:̳cwmF-vjm&Qt@Q ڠ*R HnUOo(r`CB`Ō [b ]2/ )Z[C`:3"BՀr O\gc=8y>cxN_T>-e/ l3 r_}k)߹:96o\~wqnik ֊I2>{Hw?ӓg2`qcE( ֣)B5DW@HҀQ aCka7lډSҌh%4`N ZP'](57b&^8E㿗e[x>շo6kY٬X'^9-k#?eAdj=a]Pv- eQbo%oLG*;JKEi0ّܳځ:Vqdz׉$a#bڄe!" B@bQRgCwN0 F1#6C>(*0cZ58VIۊX,u54k49BXpm z2bwʮŽ"R:O+o=`;wuZC/ȃS{k(,Favj4 7PD*8faS\~@SWi+) X^m {"O9%P>t^Wgڽ% e F-5vG(՘s)kAnbw ^DOcbM6(ަA4` faÀ8drB}+YԶ*{6nj ҀR#@fB R 9 cqA0OOq-$D\=޾lu@.ݷ=>ytչWem\ X5{SC-T§LM° 0צV JW`U- vNpD}^l}oR̝7(oO{y3T40hE!1o:^^_/'1}qu?''(- fq4r@!cq0̀CH^0fdEޅ45x5{bLxxˋ k NO{/>L5g6ƒC'6ިj"utW@=)˼(,[N nUhDXJ~e&0bE).süo ^e7w{s~ꭿ/%*Ϭ'W4|Shnxq@ sqP1<)Rf6dynKp;ʍ[& È Ͼ_}YԪ/\]+:+޸m/-_+W/>_ ٜjqbXe䎛f|4H-V\ŷ;<53h`urπ1!迶.Dx"XWvT_LM. *3P@yJn-]c7K TXno&LsTsvߺ/W>2^K.?}s{פ/\uzsl\na:X~3 ng y\W{26'k(YOL20 k}믿>"^g0\??r5g/%5dڞ7W10 P%X8%nˢ60 0އ$74Bf{ELxm3yi!z Yĉ[u}!`c10F<3'viw@mEf\@ۇ?E޿oͽՏ@b{]1m/+`s~ĈӾp{" [bFXK6W[?;|̇ ZvZ1#vps/'/ |/>_g}#8=&?O&pQ0* }aSjxkE/x;ww1Qg #1{DֲkX~ ~F(z^On5} v7;\]q=`w}?ۏ>v[noN1O7(g'總8y5aEN6-bN&R~Y(؜A"(E;Zk^$T2܀W~2?[Y~~_V8s>`1hq{Pf~O`J+o{#uԩ陞ήgv:k68)!"B! AJP"$@ lQc " D a;z{ϵ_Εf l'dMޟU;>kqhɠ+ 'J&R.qPRqL_ph$܆DAsL>ym%1gP(%F[[Lܲ a0h88>q]vW;f ))8cРh5g:5Bq\p7RH Լ &Qu-i SOSWcl\cb"{ MvwmF!q0ƱKhbU8A{y@9S%(-ZZkU*xigQ3%LD\餴 ˖ zi FoTxȡXrHnfY.&KWjfΥ^}!yC`r|G)FQ[J8J1p5JiԚMBEL|К,R!2:h8 6ű%c(ќpj}kݑXY?Cws\˰-ƃ.,(8Fm2soE Ԯ0Һ[Ш2 B?y&56J>(zM sX$c\ne"Tɸ3% YRXjJj L(̴8v4񣣭Q=kTniA` 8$?P~"'$XhEHOXimXvB ~Z)ۅ_{G`  @ow/{ݏo_?zFY3qL3-:PeFkNJrEbQ$?!DvlvyO>zտ?y9N,7veпIDATw;j%8X^w$ !hY++MBriں4؆ ؎)AuL[!T0Zup]5[.9WzZ[(2hG3 v3YV{*7{?6NAzmhnAq(jnWh4V wսl/ ؗ+ޒ)T[u|觮?~c,<ѰC0Yp]J8 E:e^Uh34c2qZ&Z9q`Q %)[[J0GMMP7ϐ 8ĸۇҵgMS(q@rmwoQ~N >g;D!3ݼ?^hk[Zä5bm4f6_$$ D"%L12S7MAm1R%ZI3HÅ>LjB ܀q $1)Re܀+1,eg&1=a~/Bgwt?%CMĥX_nW%x}5kNhzs5YkP8p]o`m -Uy68'.5`.+8Dl.5Ȓb,ہ4,4҈Yʑa?Aϧ~^vR}68vѦ.8Z %`v)A, $װMc֑V0FPB!s"\jX )T!-~$s>_b߂V۷y}Qp#G@'| k sI(fƪύdaF@ (i\P׃(E IJ RQq( ?1Ioݞg,‘#.o$) lL Wdk$E03[5H+D]  Q b9PJB AQ7Fꐬ& JU _xz-t`it"y^V7M7X߳~7yͷ5<C8SjBhp& DFptN]8fڳYZٹy iS3>j+Ugt o/Qx4E7!B"cAiF{瓸CЙ,yRڋG)g%T=~BRR-?)NPaj5ˋ OyyCHΟ}]0*%9WqXIENDB`xteddy-2.2/images/xtrouble.png0000644000265600020320000033403211143371632013424 00000000000000PNG  IHDR ,6 bKGDC pHYs  tIME& IDATxyo[VsNs}V)NzTFl2 AHAP@ @VՆ04tP^5=ͯ{5W8TTI"?߸oMU{;̬w)Vxv__%y~-oFu%G(~_$⳿᏾^~˿?)ƳHe5+{R ywX<o/SiǍi":X>氹yawt_1[.OIneіyFT9uߣ7Oˬ|bM*D<ÃpxOq{?}=]wW5o;-{ؑ$A V4CΔ)^x -`+4ڲɾ$H%!jdT2 8J )Őa7J+2)?7ؿ7Od޽ >#2a wl_'/˗|*)o߻{ ƿ]]v|̷-h[o z3D x[p[ GifWRH 9,5D#bj8F)3ysNR%)#eK(Y酦dl]"":CBR& )o#S?:~?R~;{eyB< sZ  '2_>nD+v^o_"[?|wYv<(Æ9͸D]LkA[+4D.PI 9BH;d!Kɷ^~׵?l3A BLH%jż[d_"MwO]+;ep߹_;WE{+FHEEH"ae e(DP 26n/aBں׌Dx$i-F ( m|{sLθ' d@D*Y#pwE䔐T=》AAՙg4${eOOGk晗g| S0R<rk6B*FI#>SM\>ֻp7w? XNՎ|B]ʙZ[ aS/|_K+E]"'Wԛu%cuRrH?l`1"d2qGJ(vkE! #M %J*:If h%AFH1D!Y@̠9f aApPhA"ᶂ(C_z8xyo]ύ>G@oD[ 34*I2:MqD 2»GgN]ϼ߼RQ^SJ%c9E.Z=dM/گ|g~xcǿwgۿW5D2Lc͈KKhʠisݳO~d^2{!  47D sc yh[l92f!YIiD҆a3/h{$B&D@bA"AP¢8nي 8rhBsAKAD[ 2x-blҶy|ޯ{G}߱%w?}q?<|uC/u*³Զ YAkRgw,?{=_sm? է,G%XpEa L`Pd ҄=gF;@$H40h D8bYX=֌hGj3o8 `Hx# ä(9A: B*Ӹ`;ApPE4QDtc,ÌDx= ! }J,% 'N[Wd)xE|uͶyGbc<.S1D%y@|%oٷ.^=sdڬs9 )" MТkF_Gsݕ>b9<$6s?)uBRB"P7x=׾;ċϟuC,⇾+Rz۲H$D0`) P+m=RbsvNӌH 7h 5+.H[:@XTDuz,b9"nh2\7CdA"N %\DV! "l];6i aUPoHrpl:IRXV" !VfY77z#G˱\|[^/#w?q?SO\?|_qu@rJ eC/:)Qh Y?RϾ?wS/_~owLJ?m`G4APuP!I)5 RDMJD_5y(]v@D2Î:X :5Z81"`^.'NJU!m)~ U\0.ASBD$BN'6ҽ-XuŒ!;)CvV$H7͆T ?+vO18BFYo}pW ?oywyo~4@GE M@5pP!Bpֿ0߾~u_w̿g#snY"(r;ŸtAւuuZ3xqgqs-uX qZyYC8Hwts. Ύ b!Rb 3Lv&ƍ\ iYhN P=#܋7@5eP#ԕ$Skcm3"+ 2v[J):+n oH'YI@&)oh+OpWkof7p|w0B3:L]#B]f#QNjWHxM#nw&*IGqs\+í iK(): 8$q#-՝7vޕ'%qwwB7c&i%bRAp\غRGt~j0w# V]}mݿ燾雾_{#DXPhlpwgh50si d2)-(]0t93mq2ݻ`yH8xa+7N]fH޵ '>(aֱ ބxdiH^# RA7 b0#dEB!2ȈK+PԨGFdEqa)psҘI(3ԛgz'F)rD'EЖ>HEt0U "JxJD^]x ƛ^Mr&IDbNԶg=ܲW-(Pt= N#:K8_g~߼UYoɩR!g$KoS!3ƜѤwee^De&e$U7{BH<2H*X36gD T gp9MFeA%S.;8)Ļf#t^b +6:~ >w4b{֎|K=8joIyš񜈌GF<_<]xB O>>amy[qy&+4sΤaW$ĺۡ Zm14MP3`(v"O#: Es&tEJf8Ar87[9󂷕,C=6ô={JmU4eOl./{FsfRHJv4Ҙur#0D#OC5kDւ m^q[` r=B8J%M"#+"J޵뱏=dT3u]hø)-lMw͂u S~]x ƛ_*qwHD醒pl^( c){t&(CH0pK$A(9P5v+IN̥bI96ax&`>ѭ⹰90iC`BYv _]rh:R7'VtPU7AJOw7he"Ў]3#ͺ>e=@qwU08VT;|OXN6{ZmF D\@ǎ9v( Ɉ6pMZyaCX=B_ S! 1n16= Lh C;w% 0ٖ:e-l3Y̴)$XZE<iuf9̸KgSҌ̻M+vԥqX-Igb( ŰAH*##*p6VT22/h-pf{ o{kP]&N[qgP0ϝT mٝ:Bwx `'% m1R "z¼+AR\zb{Z> *IF+g`G8xHh!6HkjA=񋺦ĺC%o<) i$(-DSw% ,q~A6Y1 =@[+C&L]ntPʘ)ys{{4f45fRO2(uW6,C^k#qdpvGaD԰jwf'Nlx=JÇr\qsr$ T,{81"*+)K5H=֞B҄]ᆈ{$vzOm;]PP6'dܙ^lRiHQʀiXHai~rfÖhF ;i.sw% I~*m.ܠ՞P6:L+}G C9-o-"I(c474%R ʘ88GK3 äl/kd5ˡry3ea֊څb *CR0Kƺ%I둶)%n$}kFofhVi6mۡ"n_!kE%CpX:~ፔUE%=MWAkЪcME%.F"0"ys5"޺%jwfrV(䢴@j3@&` ?"~q \nRچv9oPU|em7ywIbiH6=fAHwetZ;* ^?% ikTCӀ v$nNBpE gƺR!.[vAZD⣙<\p9Pה,;) $u xa^\SG{ۛ-q;r¼"ز,kVv7c{E]J6Spjsʼn~ѼE\.!ke]AlXcd&{0Q6aB=x7Hn.{&hJc]Vdݓ2iyc* q$_P[IawR{7DBDF[ Z2N6xx!3%1$H42h CtEڂܝ-:*tVw7,^Nz{Ne@9z4#i@:ͺsvm+7 IDAT{XoC4>w% I~Wɷ7o Q..y]s;p4-@Dp8P ̅zhzŭRY 9+J gH"at1`RPF)]UG8=DJұOgS;Ɠz&_3Lg~ls!eY1k]lV7( fzl98!ڍ&б۱-H'9^HhuqLhJ|gN R.p40okNRǒl[X]po 'h62-AEѻZ:#X4tO4K ݺ%-,jRۂxE@hF';-b}EOuc6'nGЁe =Y(G ]+m7}Wߕ'jsKD Rl6?.BJ#m!i^ oZA%(4.CW:ϼ^]/EugĘy _ @!X:C+S,+ =lPj|e@두])1 oM_e3j39EdJ uMKyNB *fZ[Pkݻ^Z`:#LԵTȰq$M] yx}˨B k&>%u/Ә_k+nIoyp{Yyufܿ9egº\2SB1[څgTFƁ۳0kW˘{:BʺδH@f@s_Mk_3x8ڑsF#VT ֵّB;m([8"uvW]'HhSnkߣR iPJI= Aʀ "]xw% -txپ['n)cԵ*η eY!3DN+#7f T3;"=$;/f~TQa`ը7D 8dmbQ㸯| !azBU1%gT@IBL:pApjgOj c HʀlP%Zh0S=/t. c˗D_T-4 Qʅ# /)9#g>IBN-=IMޗX;qrn*ӃO~W"ЂavHBqr%e!zLcG5Så/DڰD6b/V6X- 4%Ŭ =:_┐0q\Y*3)[YII{ַi "#x߳:X2tW4>&JOUJ֥k+ -He hvAѓO²^9e*nƌɥP}sQ;x$W OIws/D<*p[kǐz|`k @un]-837ʣfqX@aƞ9"d3`GpH s2II9Aٛu(h[bWWKnwu#"f39ζ0cvsI= 3ݻ 5T61a;&q8QzAzn5QtHq)^0Md#,J3#䁔g]$m KgbSjU¤`w =CGD5sJHRQJ}C]!9yd#SO1м+;u^MX=Q[ _vy+3*IhҿR0zǑK&d`fB˕o\6z y@so2$%ݾ }ɼ{Yrm ]IKQ!kvf4%"wu~c\}\KZb8jMTh#F JLCb$FUIM m j%!VRSԞ`k9<}øFcZg>1iLc7*S)( Hqa sj7Rlw ϞUr@FZDR4ЅwRs{<( 悙3-邫"L?H{GcWpHu<)G' ׂpJ43Djb2#c3i T4:N>iBjT>3LpDl $M<%$%%mTN$9H2HGw!.%ޡn]8,*#|7_Mc/nk;ne/lK 5K@|+"o֛5AT1C(29ր{Z*XkN*фs}IeASa)ANi{,`˜N=e]V1-6X5V*woޱ_<2;S\*Z 5+;c&YA$1vMm3,L̠eSj }Y)!s_ߴode,>9hPp C5S0&<,塠h@Nr' {5ąTTY2~ZUQ?P;D"9- F]h3O22I N8<`L;˦\ݨ9!h Mva$uzVMF=@E29'}srC v#4yuT4* dlR0YHJ܌{(M(іXÎIF3ykв">|r=> 7׭y*6 u wQc¦K0X.3zn!hC+lZdv9#GDl<:)?=t[lһBi!sh$)XrU廏 7/._d+$10wy,ǙBV^԰ulqiD߽Χ^f>h]~clyh6$E XC)D%{D弝`Պ+щ }DJtMu}ߵ2w-~>M֮5뺔ptJ юh3vˢ90WzGJ~Gki xt ^ Sƈ(4#SC6N?:%swA0Gsy }[3^\L˹!Z8Z zS}Z)IXq]IBF*r6PrjY&" +fn)'ߛ<_;Kٚc%9cã?axl~mǗ`i~Wr]BX.m)6Ru@yy _@9ޛrͯ5+*Eh:IƺL֥Eb/ (8N#nFZ޼`NʙTso˛ߤ'~||*O-gۏe_~fW")яX-R"Vi2 w"+CwBus\n'$Hxbglyo9Y;=a;K=,w۩ @kn!2M59& ϖFxvWmm+k@d|E*nA-ʠFByJ 5vI)۟:NeP;&}|ߏwƦ0=Äk7>žI(Z:Xh|ARښ)ZWoX 芑XקtiOo7Ĕp̧J1.e˘}Jψd4g%< =IH 35@1's)&5QRf gZxF7T$%^λ7.:Bz;:PXʠh8+s{Y:99Iɕ9C9gDNCH1T  ?.ZD3#R:Ǻ1-qL1>j6Z#N5xADID1)91ZA˚Q |Ή6_ 3 9'^tӷ%'kf0^9*VfZ9Z<.*.qP Baug]7rUk( c˛b>0}/+_~j(-7.%&iA3`Kh1g@dk6yaI*\1!, BJwKc.wJِ uO>w> cť"gQD췞mY Ukd:0af{c[\D.ȓ_MT(%R2#]<F /H-e]mr в5>7jJ 7rRXWs‘x%VIqAz͇$J*5%rX= i R&[[pK2L;&j'ḇ3G-~~Ãcp_[!೟_ȳ 5>|7x;z³.k, >)EQGL䐚+aсI$|-g?|͍;jJ\o V#gIRR]i7(ApwR)HIؘ:\e,ҊIEȱ6GC3LSQ>.|7~G|aϿǾ'i3W.fڌUyp;:9%ڴXJD 5 w9NnZa2{pbe:-zZ\R8:=A$t0X.l6ogyY op8Z_i-d$wXˈ4JY˜)is %IG_sKRb&EK-B|"3f4ԔXHtZlj69ӌ~5gN>9~1cwcCVsނ?U+_7+d$,YkbMA)ꊸK#g-"f\f8J+f=@EMJU >_>ƏԅOd)%|9 -n >kq:HʱA:1:~줔yÓ2,f-u_$<$?o_ſ?>!5憙rFAV#'@x{!$KUEP :tDV -\3PK%rw|8Fk&vk[\KL)} ?/xyP\(DsF&1,ާEHP0]E=|T!X %Sjl "·h3Ima)!I1<'r[ 3h ~y/?x{z nleϮZ IDAT<0CJ^ ueIP@d[=qM8m­!ɳ~Y%nrW;/^9|m>%>vi\ʁᲆp  >JE@GzMDY&cIT{X_-gzxl% 1|J§~K HoBQe УG9^;R jMP/G{C>} Ƈ>Kپ~{oϞ=P/ " 8EfQ߸¶L$Og"9gzz/RBvi MLufkHRF_*9;J`sLP LV%)!cA2 T ϟ-s^Kvn/ރF\$D3?Ra>t$ROr; >dXr}GO->/%Oq|N]#<[_c@i܎u:O={d\2 w[a efa-#NڜSeZ'/1Q\x%6c T\1)9?ì30%Rxm-Bn>|MBJN ~NAsrl&9cRqW (3Z`SGPO7LRH  )3dVc{# ӘFK\AvZoo?V}a|BU5Lh$q9K-I1:6mDXO2nu.9^]j jawF \;)ؤvL;\I]Kl6;qc7zDװNc7hB=}'K-RG #}dΒE 1%c$ ~AH5w_KfDd$ rnt~ YOfe4aL9hIc 6t| 4fI7 )dXí1muL5x!j5!XITʢyJ s^I9K\"_dd@qR|w}Jz*?_}OJ:b_.#-LU68nE;}vRQی;%K<n6=lyLf+N2 30IRA1'r=)&t}^Zм\轇SRlfj=чGq=qF0BO>whff;М!P')WfqА}c|U`*8؈T`9ACKA<ƁPtn=LjPR| f2#68+p` ſ=#Og~nՠy|ܹ>F^iЎv(Ʌ1քW&= Dvo:nM7D<-!dZXnShYw$nxr2θ"0gDIȴ7RΑazDasEUpہIdYN^@iSSJ#B7Hi:#֬9Wf#],w=k{y}'8yIYMB*U!i 3XЎƫ"=Tm:@ĸxavlmRS2] Ujg M()!A29+6m8Ly!-+$jRl E9n"mM3‘)9>֊Aoک ̾ӏ.cixɁ{4U:fLIpK`CϿb^qC1;ӳ2oG; D.&%We$ǎ5أ1SAK Q$i˂&adg<=OClZWUtZGBB*$IKdéŹەrO-8fG0-Â]2&Hqa ec}~Ϻ*WgQA4B)v9F$qcKȺ=Lf6# If 0k: g[FB* #b=GG,%ҙcK=@A'=M-j;@x* qfjT$>9gxe x&%SEa0FD/&OOSP۾!]'61 7. &mܔZ8mr;&71.h6i3 Q)'I%<IiˤT͊s67\8P wo-l:XSHR ¶ EWZrt.9`va1.):s0S1 cv=OC I*7xƶmtq{D2C/)qXs<[C%gS0c3&LO?b؛q=@u=) 5gġ>T I"nܱ8 ;z$&GԢ3mB@5e6HgCk;ylQFQt<1PJr$D澓r=2ð ("5A;pp$I)A 6'H`$|i Z==OCR7k~JnpɸM BvC:$QnG&]2[)OFxəe cZ1G^QgV1l(JMH΅1T % \ċ761 "1O{8s Li O=V)G֦8urdaz1@$v䌸1K$ 40IUT&- CA,Phha-pǏ I)Kj%Kh0zyZq3q7yRz_񋿨㟙}LZD'35m)I!O4M)9[D]7ʲPk>e˅m(j%S)v 33DH](9`G"a%$fbDё {'n |8;9-ݑXoJ$Oi(iq {k5hXY7~LfQPT 8~b0Zќ + !1 8kn)JPi{{=By<_Ƈ:"JIXw$Wֺ 8Q5Zk\cD$r',mAZm@q@T/ukOj31\*WeF;nuْ}z:xulB$i?&"nXctOh$)dO<(TšE!A=z32m7Ңx.V,³bE<ǽN- >I)f  #M H)c BlLxB$kBuTALYă⍬Nh|Gue(+T#Ce*2ͣV .Nagca6X)+WXamoӛt 3!_$ӋP|{zOHSʺ2fD::ꄝ[6`r_&Gg~л3)ުÄr5Z DM1XE%2)Gkr)9zgA*aPF !SRsRׅ:mFpavD Bo7&3G))NV.1%KSҕ',C΅k8eG#WaڌkM@.͂pLTа8;f ׬3g;R/ʡ*OXħ?w8 92RY=c1g31g#if97 Y}9Ӻ0#^c*rVr=UeAJ$UHѝXI\3RMe\yX{Lv︧Xcưc8.0{zbZ=胢⼹)R2B2mRb%ㆪ0bf̘ E@fEqRfP09\q3GXm"CQ5&TӲ?[w;n*hy|ENǦJ"o(/nk$PR*FmqDߞTY '`ڸǀYDcINB=G)9JT2|q0p54U7fchns yyqnG2ϼϜ_1e邧JIF,O`LKlDlDPK0@́B,xĬNRɹVմ 9,xB~W%-_?w.L MVdv荒J^JdG䕔!w)Ik')TT 6SJME1eɧ+; }i63e+cm`8ACsc΃6{n[䫃Ol vptAVNJ泚^^}`*a4sCĴ¯X3j44qH@B%aLR!1Es!%)P?>} a?R~q $o3+e4 r).ekƘ|x8/ar.G\(IInV4hH)Jɓ֕a$$β3ȧc;٘6I}G Fscl~ЮWpnMו}~ʏs Y:2ts?2dYKՋr_qۘ yѺl(*i*3n(qH#ͼ.!5kh_boH+gO+էs0\zv͍,E~&y<{n`N92D/.8{hY@$c2q)DdL>'Rh% |[ B.\Tz OLY6"BHHjw_d] gHD9&g6ś[Bg'Q9QlJqc ά^o9!ꤺz "5 ` 9={;ۛ"$ `T0~o_UJ*$݄/b"1d":ُc1z~,N%ئ)u LC)I=d58)AcTcEB14 M3hdb ]$8I :Ǭ8܄%) BBܦ5ԗ(fծ>0w9ߑ(B11XK3&h;QX´*1wNHT9|"Hf3Pۘi~T0~G5iU*y2Pɘ[lO$4֩b5&L+RK%x$m 6j{# &1xXFƜ}NfwAz_Dp4WFǍZ6L9v x埸r1NkSJA%&JMmc\3zC<Њn;I:bLc"9ůkgNNJgH5 B2x?Mryض#_ﲬ|kJP{ 5 ɶ;Ff}? 19)r:9ƫd4m7&u If2ouoi͝ݕ~QGްKfqI89c)y܃D 3ewcyb2m#BnuokXQ,B}NҒ˅q4cv ٶ/ ~|2+h'RO㔲?gG<`.i:O/C-iF d˺?iiv[w֭n1v[@:q'B 06vC3dCD@$Q"ŶQ HR X|@!vUw8gϰV>D6R[u>}5?sa>9E3c\T4 o6" = )B*@☽DeHI.|vtTsw4RH(Σ)Ǟo\>+kQ(*Y,fi9\vdz:&Pzp4WsUDsgr 5ۑ.ⴂ9t- {Uo>4$iJ!'=""Tuݳnqv@yԞ+%e1d7%L3PڌB̢ 34Ĝɒ Rre] K|6#GE2$1.tGZN>{޼]bH[7cc|w1,6{lmx'YfH=&"Ee"90$hL3`b# 4' #)x<|+k {_Roኈ{#"$x􁵎+}l33UtJqSH!/'PQjyoiepţ9Γ+) ٯVz*ɠ90:'~i }B7dQܕͣ%6gy;6=Zէ&47CA.SDTO|K>(  x<7A/7ҲT~A5LE'uC'^8;CM!R]110kʒ&ɇ.δh.hZfh̑<.&tJؿ-W8C݂SD];B! WcY*RO 7ixz,MaڤDdR +ц&l4ˡl9Ä|Di @i<г3.a34c}l$1F2F9"mlH*%Q`j7*RPTv7/w>C"o1"+=ե媈b {zMQT1XjU$JM3u4C Z"=H'acڈ]c&/{"OG<o𭩾kC__W)/y_>䃏} 7f p 3zRiJ&K=nC]07wlhk.Pd3~3ԟR&%Gh;.{njboNJ)Z"֠?^'z /Q;*ըZfP$a%_97:QZ z AgZTY2Uuavi#)grZ7oǺ#s6u 鲒ITYn~ZG\t s׼|D0_~яbn@:bC .&T'}>chZ}@H9F(ۤqa;j`;Xn{| ewTj,HhJYQjJhΈ(kCۙ# m-3pLY7IVfܣp&!WMMfH֐#Ł(ml7Tj;l-M7 MwyJRYTS^I}}(~">C?;|=L=kyIjZۢ-WbPhF2ry]I&F{f3h`) B{5a9|$Pzۼۣyz[_$o[wؔ'oyg܁zX|/ɵd,5r.NBhܿƪTLYbpDއwGk=`ޘRddN&)e&A2`@ptL&s%3wjYqnAI-W??I!&TVfD@Oo&~mNoa@#P]kF1 +2XCr GqDo&o1Uuy3'G r;ۙk SaO[D {}Og/_9Voelg /o 32؝h Déd땔#f`vTYsts\=Ɋ% u-XoHfT,Ԡ3 9ۻVFE?%~NF0uD0Q+7g4N[igdNU+ΓSbMf1nȯ͵r6RȢG$AF/"eR2U.F1'躐sey2pԥPD}PIrCf=Q7Y_||E?y|}`|G\Ӯg.G޸uBn죳ܾTm}g-{Tx=+a=MNkl\Zcp{Z)5^(}}BΤqv"'5eJ PJw P!& fybTKM0cw]OK[U'; Z(b$jEvpNYp؏xP$Ԕa4PHԢRoCد;)O\ 'zrX9]\tB.wh]ɷ?7>W.~3gd.?j/q{2N34X2kY=t:}ZȕGgo$rYbY0&p*7 T?Ik-f)l oÊ$z}ART5E, G%Vs Bɂzo%c9Ո tQmD|Otz Rmg?_ŏ8_qxC۩]bc~<6I m'Ȫt=+lmk& LB5UFfRD7'JdⴶSC9T +Q  e %`b3 :))Ff>Pn{0:95 G$Ē2pwx9*)>fB;c@FmN$!~COێr8uدS)#:$~<.|n͐3./>7.|?;kڇ g4mI~5Ηwo./wi 7fv+׾h3fmF "YqKzb <xk#>*Q[gDfutORRJ.Ry\cp>?[F{fBKf\ӜR`c\e-pD0@Λ7,)8!Ffxd?[9´7g 6:\ F8$GQTɀUД4i`9o;/vEdt;wJ1]T?*-Պ867pbm÷Bݯw}3Vy_~~>?z۲5&:=@G'$և)9斤Āmu =ӢBJMO k >$ 5d C=ԑc3 =YIJQ5 HJǬC(lIHJWSE2F'%@#@}9/./ܖIQ' P|G>S&tӉI="( 0#>@SM 0vʡ8M J.#|v4Bc[??ڣ$k97|AjIo7i/?dWeI82L8qgOΏ>A&X a6`xco6N)2@TH<= a,AT(# .<^ܭ d9#䲄/evNsz6퐛ON~iTDؤLbx54nkb]*2fǃ;I$I^*n1:5 j;zꂪJɕiJ۷¾mchf@}B3 f\ _k^XݎW"G鸤c%<Ke)+R~?#?YhmϿ|~?<>=>;mDP3W㙽›o>EF|n͡wx*1Js~I^Gge#TdF` 0jH~uy.= u+`I͐U*V ,a8(nO u_x뤬4MBq) Q%,Pr8y)PMEKxRr{ri\^>Gc`%.:8Hd3V*;*H\ 49ڤ@#I q`[)+fI?7n}\<>d%41?xRbV98̆@/p:/_n|ge ̓Kc3BѧL"y'͔ea8C)HiEzW%QD9hE>09=b |`Y9ݜ0 [0cq줤}67ضaJ4 @0Y6 X]Z͑\\n\cЙV~1r>?2͐ZoWjLLFOy>%t=ћ_m~q3F/Fˍ{xIK5~l/'ޞ?G0~ ,~˯Yz;gF`v0كq+za~lSk9p_w)p}nJ =b%i MLYRԏaѐs%BUD.5*3.8TR*||'d69eJV|0H=F𐂻U1RDꊤB\Isٳ`nG~l)!̽uzD,n$MM1 N^9\1_7 ɅTn 2w9~Gg|AƟX/Ͽt~]_Ɂxx5#P%=hI1Op$-JQ'rOMc$ߜ j2j0j#TT M4G^%,Z[\E3%K@B!E%"Ԝ|IoG@κGoex15aBF8I}r)wr$8#ĀRNIr%@۸ZhC9?\l\^ƳO?r~Y qE5h:^qQf}RV-D!2>hVSDLnѤPpN4 C+A\Pb%%vjAl|?x}`|(~|#yQ짷;_3:gdž0ߙnLN04aG>$ʘF'y̤S2}~T$\֍[͸Qɘk-z9STNY+c6y3z\ F1u&Tް9H6"b#10qҼ&QBA8o"lΰr,&4(T0Z~͒H3c_(ˊd8dr#I\^sAI)C O ۘ<4_v޺Iw eHCB3G`*c 0;ݜZ fF*zZV#y'ќ}hlt;s\IYv%K t8G<\I)"R\Ǿm.вJ{% ^&LքI.u0@z Q#mNޕ3f>*[!' ;7B>18w9>#슦5ܚb7 >OHw_gO^'ďc3ۣ-dc8*Pk"i8zW{'B#TQ`':I8F*I{?YLs& 'G+1-nn>Y q3r])aHB7ۤI-$4R£5| ɱs3 `M [Rr5p&M(f|}a)JqR>SpDɹF 5şr4><9 f Ke%KxtlRP$Mhz.1CcvPIǡM r$+oJ|M6Pq#~RN_~_-Ͷ=۾r(5vlBXyO'yyAa)W=IЫCIcB)G KbɵM\3uY9)&[TH}\ [I0;6yM `}Z!0Z`$I֌]wk?Lnj4]Η7iT\qΧ>ܨI()p[V"qH%)RYDY ZAZw,ۯ J`]4Wj)eZ-ō9&/;s8&v5 9",P%2杔6)fT0f96'v\4=.NѰ6W>OʚK_o_^$_+?_>'>|}>>RUeG(`$3ӃEX5 6BlD-=,֌b("iXж\IPGUiSm,mu>="\3Å|>MVZPeD"iƒ]-MdYւG`* D F[ˡnn*Vg Vd `F>-,sDm)-ѷ+ ,vÞ̾ք`BQehq3%cw o2'^c3" ,CiJAQh DGh31Ę䣯+?[?_s?j3TKYvKЧ&#B.#c0g|~ b_#j6`Y3Y%DO}ȲTJɤx{zR55" rrvD*:7JrS#m!Bmk$̙ط4 ahA'h=jN-IP3=Ն$ֳ"$cs ]YH44_}_|]asUomϞvچxg-6L6b$OZw]aFи+s\3K-1!Յh IDAT];5 A4<)ŪukBV%ih d`Ҍ׸\vH dFUJ q ЌBxUh!Hr#쭳?4c0FN'1:4˘T&1*"n, ͅa-;B( GhUC2e J{]K?E?M0O}?ø b$o1Ćӆd0v$\e}}2'ޜkfago.JY2FȨ-BD(}:[w\`Yc>f S(}|L۝ ""=Y͸}qW#0\5V6 :lAs}h&-4#3GEJ~^Ie PORھ | RRƑ.ZF։ķ"s  9[0 hy\1Քx|s`).LuJ H2Ejp%3_P_-͈,Bʂg~?P-ɟX?q/(9 fr.6%B|rQg?L^E*}7ߖ(sF$PZJ֠p0%(OXl@V\&vXד 1\3Sa] kTn&ߩ%9waR2"(kV֌=ThF&sqh,)Zdh0i=rKǴlZ?{RR2^ZtR]BdWFH)LFTB{?)GC_'Ǡ2ʴe3DܹʺӢE1[6msfl{ BGPi6$ *=1yﱱ -7VI>/_+OGco1X 6Bi[ >e"sp޺;t 9h+Ү5FG1י9YrfʼAk<nG~U޼ܞ2rn,,!QEJ 1A%!+<^\/N-QĤ\IʾoR[Dz!YPޛ) Y)o! L{"`j-ڶzT'⡭ɇ8 7gKBLNJx 0c{&ɑ1:C# CZ2=@Ǖ}Kw>|+?bl=g#> F .M;t|C_O5ލe;bb}0ݏiDcHlUDP34''fR7[Ony=wwߝYU&krnC֢,e(Լwj,B)q%gD%BrP[\.gHh1^Y q49Rh׍7<|+O޼t(*9rb9 DI?9-5|$NFtޜws)ϸ툇2<#$ԜmLZȅIbdB}Gpʱ mPk۶!11_scAzPrniѿ?o_Wӯܞ$L=ە YRoR5uaXMI`wsީzۑ5,zIs}[Sfk}fPK )`s0<iAgw-E "P<֮9'؛QuwFMe䍅u'iIVseACضΘr A/LpsNBȷВCȓ ֈ0FR妤`SsuII`33j|G(j,YK6o5s}cVa5R*S>6:ը R5!pwwhf uMP_!z~ F:59eC=q v䥒jDμ>܏Y? b;v=[0vC ONBM8BOM*@M¾;֡AY$Q<936(z@L'Pc ,:ÿ?/%ެ.~GK;GĭUQI*FFNn\.ՐPjT n! \8 {v1 qZb91d q82.a1W#a"T%,G A) =nA3"#0݃Ai'P4wk&gʼn U!2feI͒].'noOwnoGQKd:6!!5d0N:32WiX#OpB%|Ɓev[xSeUZC/dun3eCM^Sp ! 7[zOul;:/֯+b.5w%c]p;rFgXmh!VqNH\ʘn-Bpd Y]h(Eto+5ĦRR:ʵ2a\J,Uoy}sx[bJ̰IoshqR3f`sr{Z{ͻ̒i31Y#9Q~)% Ǵr{wb`{2G$R$S%*ZBd3$`ZۜD Ue^Yݘ{UI RMrb/t%a3X93JnT>0/NvDҊE M\Ɲ2r Sz>g-3R9BIAhX{A ďC%5)˱LdQNka݄f=B8"{զ1ZCeJ90VfAP rJH1&B%n=T4A'i{TEQ&<-eaaD@P!D҈@cA^BhTHT!142AH04LL젚]쳿f5cC .8n޳y}_7qpxz˄MG͘Sb}Wzߐ8 Zmum3iG|`+kQ&4\mx1z C$ޜWbPZh7ʽ@ΝH,xbpҘJ'..4'c7x%+RIHZwKWПRtza߳!ʶV^>o=~*ѣe읜-+kCΐ{y<&ˉ.J];1&9P[åk[ujnxiQ b+Z)"!]Jɐ#MG;-ZiYFeϰN)\;Vl 2@ wZN3)$jD׸?zҩAȥ,r oZ ᰌ߹0A;-!͑l}릧u(w*PWϞBlƖuKtm6VDĉPl8vp UOi^%!L\&~ɁxueY7OvO6%$WkLAbRw&W ҹ'fd*e}m bLT%,Օ}wQxaμLЙ1 X (]1$Bn`b ikF'{ 6 g9ZV{bsy2(LnA\$t3uPK6K\Lpl154G['c sd.ׂb&1uR(U+%9{x8>c^i='9+f\ Z?ZpZF3V+d3:pu ٬UɎ}[-悔"a)XwyiaB:S֙C2x"1-J q$O_w hjG @?ź[XHߑ`ۢ}OϾ?{^j?/y '7p&콹5K&LJ L-^!Bom nBl N xUeߕ)i:t+To[V+MMݡ><: tbn=mKPA|Oz=R/?}Hڮڽwmc=?oɚRD[`^w'7)X@jmfG/lY´8B4wrp 1)&ezZ!kkj7#t}vIh>ӔY)? ~64\Ǹ#|Gz`EJǰ+x[̖q_ÁJsOk̈́^+yWT tjP D;dġ[0$ZyLzDqHP RѾ\D9rt4X q3H'Թ/_ƁaTZ!Ή4-x^.pLo+{quOZmCtL.Ysy'ĴXKF*b8Lr20ssrb^ϴm8S;NyԸ;H֒Va7{GLp:Fֺ=qhU+Kvn3H>8%/^yX[l $@LQQ>m}/B/ JUO ~u0`lH p8pmWDk)ja/acR 7=ؽm@㤱`KeOSΙ}BE-K?Y bpWQ=CHN?7Ooz3" (+ӕ%ͳ|{['ƈº7jϕ !:- ז^ tH;{aY09ӷ '”ngr(fseƨugfr}<f̶\.OtX;6F7Ѕ`NJ'BOdaRj73ŠdmmcIaSZ'^Za>F2>ZK (xbOfqU8V߭x|\~ ?5|J@ m^yʓ[C\*bk *r\D-L'. ʄ׊@ӥZ*M/6DA]7Oy$?Nn&ur&DGSUJ-lE̾mN#<<^\,4%v xtm rlWk#- !VkWr׌!oW>;a]D5$dzjO*)]WJN :} $*iLqIĶ|g>KUHsx:?B PJ))X(ksRBRJ! '+XoCw:-icY ^F2fE*r =nJ+^M1jXŦB1FOf KĶkޱgE]&% da׭[6.^A>nVz 'K5ӃU36i71XVvhW~O _!^7Kf^$N轰B3Yx;~eNUǏWt1p㹿8vK+ogri~hL wy[ضlW୸YL;붳wH12Ŏ6VuF"\gKzTB8ja^XNΝ#t82HZs}|1@f/Y&:N ߑԽi85#uA"q>Bt$\YGv<"ڿ^3w=!$&ZWNj{oG׿Ʋbr\'U-ګ0tX;/f mQf_/4TDL4<: ~s"t-/S0}_~vwkVOM6VWJ.Q[qIYT[nn.FFoЩMSΠý8[.$Fz@::*&n#V{\ޣm?fOطZТ\j Gt#Muo@%8<:-UmDZIމmL , Qel}̇qB%9|w3绾3ԶO~On\\3NqQt H!Ⱥglk9s7#\:>ֵt*l\]{%8}7 hjp tcN'˵VS(P΃\ Z5,W XvoL3Ѐ,K o IL^޺ǟ۾/n_+?h=3Eǜ4YX6.dM\M+!xpwF|&YCQ;t8rHS?zOJL7Ṡ \ bLs$vl%&ݣɸC#p%BͺQ q^Qʻ!,"aƹv3ygb(iĂiڵv7IׁDN icrު,McNq;㆔J/Zο8|wͯ~fVmr=GP;|(|otp)3ʼn4yzz7gz>G>e)O^; 77B 7ܙy(<Α@pEx?M;e'Zybތdhrm;{JއCT}e8ǎipxZ+s̈́F>"t' ਥw#v,9aW!2Gry?핶pfkd A ܜZ 0]D[> N ڨKW\mhkH̉-iذ $qX 'ZAqF+(stF6vѻA&EQ[L#=D+nJD\2DRJ߁O?C~ryo]_H_ߗFۯ?\Rqnh_r{JzϝD{ґ?Sʙ1<9*$k=rq߾ɥ* )B FȽA*\b]%]6|ʖIc 'jiݓ|9p8h,i5\va[vj(B͸b%H":s:k˔jzsF#dWxJ[Bk8gSK!4Zc\}xu֘rb~#ԍ hXGۆܦjkH"-C*̎k#.d8&AxJ7rϺ7blʝPٳr*5Kt׉V]ɼBx_]"$8DeLCWUL^> tGW !_۾}1%z?^H^'o|Fz􉷯yʾo^xOܜyfº_y9_{7xyx|ՆxL^AP9B$O:V[5ZZ8ynCx\׍%*9uLxePTuFoˮSR{!ผQ̄\&]d-FoLdV r9+;+DL B4NY v7'-{ݰyi8ھ\Ј;jE@!cUǘhb`리kc$`^RZPjmLqx1#{m(.$ y;VW{aF͏M4#n| VhJ^K~aE]ym_?/e?C7}]Ӕ9y¶+O++(/{W̶_g3R@ޮ0яdx{i|z0놮^ 5sE| 8 :/.\g,ySf%s+o.Ґ-10wi;mx;&< &iRp޳r\"rjl/'.B^KيUKڡ-uX a@4 1O+y`i!Кu֪4 tx yRaFP3޿xGTB,qw;6n8rmd=Y{rRK3Fm: B{!NS;/9͍OӻƨvJɄ}$>}0./e?;?_ӿ=_CZY9?]yz{gyoPμ9X)B)p`;ˑ|[t@\y[}@(Fk#΁V6fU36aNGXjSSi8C{y'* CDrW !RB]O8z[5(iutxz0 x[|mDݑA+iFb/j fmC2%\pKtɸP3]< ܨ[pko0彇 Y;Ym7!y[ܐ`[?9n+Sˆe”M^c=i+!8$,޽kTPOgtNw kFLogWZG~%n>Yn)_gu}Wmǩqtݮ˒bgʫO^s{!hʏVu/7Rr쵢"Łk!CŬ҇ 'e6kj9_36Z@+wLh-gPsk3Ɋ˅mݩf[-df%UzqA>(U??#{ysf q4Kii6jUp<9_v9Ι7i:'ʼn޲5F.u(ɥrKrx t[{cm(-}$N)47E ,J)jkMmHWNΕLSzG}J.hԪ8FVJ^(F|XfCO̟LĚN#^Yp,V6mwrfq^H4ZȬ9E$ZU_{6k#bt*j F䫯aNwf73]Y]J4LW0@ v}P&z-Z `}lj|CnpSCO|IDkz72ERǘC/1CZ]?'_M?O/\me99oԜRٳe]w:|go74sszPu=فuSϤirS`[7O4Ǎ.377ZdE=NJ|:!m/.򂠵q{X=FB ܿ =z͆ٻXM"BSӊmCvɴҘe/P+ *ɑjiL,wX2* 7 98xspByȶ'&z6Zg)dN\^Ak ZY%`b'ZEv!d:wF>Q$w׭؁3\b"&Q (WrC JSD|%X3 DڱCOx] mED Ü$@ ?)q|?Ͽ?gOIѳ󊓠}aXxtRy|@ro3«oزpO-!NĠ>^X&tXxz,}'a\m҅gr% \!y9riдQ]+J/l'&1+:Z/ nyHKbF̺ )y+z> o/0g%6brYçePY/YYt_p-q9քlپ\-0L@@8,*ҜQUWLutCxgwHsh7.cS!vP?4n>PZwd\*B) iieZAp2^z5l}786.jLVN @6:R4# ޽GiW,|Kq ._[~o޹ry4?Qk{a'T;˕7fl;`:MS]cu;U+mDE ND^I_1}եGFA{j89&?|^Iȋ/x|g~7}7(\I1ľJozi!aI\p7^}Unn&r7O+1%`p\t"{V )yrn{;7Q}snЙ]Wz} p'MBsjOH4-=]: +_jO)l(93O#j7Gc̳㺛G3Ru0~A|!xGp,'.&tܰ:T-45ؓ߶!oӘtzT7j=j jՉl8/{cfs3~hQʰ\b֒n w+57XvbJ4T'LI;et+:f>NHo_bC$AG?5tWP"qnK5W h]^i#zE7k}P].S=|#_~v=z ^<xyb[83oIC}\g\4^hԝ o\YWz^ Toi^UxzڑҸ\WZsƖC靷Opw1]Cp\ }XB|aۂ@p 0\ʾU^(q3J ndMwE7@q<:kk 8nu vhBdjY4B _םL DwDN%'Z"Ƃww9) IDATU-=:j^L\>X)C]AgW^wcjųUK#&b:Mmzd{kfO&f5Ymx']t,:|4Ģ>\yGr/_GDa=G]|uA7O=0}zuNKޮ/O,o޾'xnor>ۭ;<<=_WY"/^ތ #_kֆvonha=Z;i;h׭Tx)e/%CT#N񀏖OF/ ̋еSZ6߂VL[ ^q4Hgdˍl)YS ͎fi?Mx4%DPއg I l׋eFE#}a!fl 4mtH3<}X%[ɩt`Hlw=j Vtaz'`(œޕ6AIwp&rutE{g?̽[zi&p)& ɪAsh%SjeO0J08˃aCO? ` 43YuٕQXoEQ}=Jngp`d=i+Ԩx;or,2akGi oR8VN談:c؞l4A43Ќn7i=8<fCI'f5־O(Fo澂 7pCibpץhQQ[k|Ԉ2(X1 RikT2qK}HQRZvVLdu%+=!=uD\zȒ:R>0Uި?@*1|ɄMlaƟgؘ㿞.OW_?2xKoxoȹp7~BN3o\x|oŏ^^eCėLib^"4vJ'0}bi̱ ϖLq3ڪ7ZUpatm[c3Q?⾪5)0k!SaKjzjcF֤Y:W`qB% }GcZr.56j5N쒞ZfZa6uFDMK`6!vm*9it;b7zCvgڪ޺M#A[67hѠW B̚cD* ź-{m+i S`(1 V)Y`4ZJ*Y RE}wZaS@DbȵN[2dɕ4 ، UV M0ҬEN*ϭ gnMs`djUUm<{(d,y,_cOW2_/y{9|08Rlۆҵ%yM&ߜꔳ\Ě sl CHT9v R1,XB)\s-)Ѳѭ8k t ьQcN*)]3 rԇEhWFjSш ^qݿq#7X0kv8V#<;m3P]dhfʊC m_!ΊȺ΋{GM}:ZW] ҿBΉ Ө%6siƼE]Q 19Mz;-p2bIsoCCZU [ RZQ?PI3D UHѷW>{Ut8yjcܳ;5;?_o-I,iъt&.8rqlE9q,13Ē)4W؋iJ!^A2jTF G*,BH?N,Mr8ZRRUk29Gm'@3BN]1,{D`8Ž4\$N[?9]^3 Tzdnapbp&"yA SVJT&Q $h"ӺFG50^ \Luo؝gR\ J5A)`|£~jˆ=;[7pܳLtM/b Dߌqlum J`+.@SL.R bnV|X`!+9k΀ == Xu*a^t-R6mցuk#yd~4W?'ú|`q;aY3wwYww|7s|o߼ec>;qy\Uh`^sb''|ޛ XX. ~~t09NYr+8('5iם}ӇXC^#1Vjhct`jDQCjXc xjlĨ7J@0`\k$ۺ)`ݦ4cipD4HՔ GmPߖƲ1}kҌW[:ޚj 6(UU)P*v8j-5RiZiiޓ׌qb`9oY- caDXwHa0/*0uu䬾FCm6Lj0"ꀦFJ]4瑮72hxjEng#;_r`?CGsW|[*yr0p'uû/ȥ۾˴>b:?c q \EyX.Ķy:Dȹfn \8k(O+8g7:BEEa%&JZ kў :K-mM*ušX/ 4pN!iOu&}\&3]= M J)w)*uB8G(H;aFi_)Y=>b4/&3Uijm*32&}3פZB.bIb껴5sX;Ć>;Ҽ\=H@Y2F|_z&W_3R]we}k8-o:Uqz8'>uYxa`q2W0O~x{0*~ɘ!pytP+žUZl1OUݥ&8z4 !C(ejNLqwWXeG*59l}cz6J+?fa9tMWf`,ݼi0,ǓnJRqF NT!ZZsVCkʝENݍ mk&m`ÄLR $N:$S yvoGCdEm]K tixt3J!i"V!D9C0 Ni;GjON 鷬΄iW*"=FA|j=V;BPʂCQ H݁+5'-T}{Us}Ȝ9L0M={!f}mjV{e&sSJY론f:d }ak%;5S˭]8̊`>뗿)CϟSamZjeku/3o)o?Fnμ~w%nlf'J//,Do5]=3ZiLuA"3f27>[Ldk,"C1oH,`z%[ེN r=a'V}jZ_;dv!t=kͅ1fxჟ??~j3?R׿lt~oNhkԖUu*noUpȲE>+>}G0 '^.ugoMX0/~4 ܿ~_TKprו!00RkE,xg:i9`g 3R+XiO/jU};!̀w<x̳Cpybact:@i{!ȞAUF(:5lp8W 8o8x}ɤaӱ`HR(MakM) n{IT:dYi*x7KU(PX퇱})4tvQx­7 iܺ6ijwk'*4q'ךw?Hٰ)bҫ~` Q}A90TtElJ{V?MX)dS񌣕L;&;X11YamFyv1km1[;'\u$_ok?Cwһ%GJ]VvebmSu8=TR;~oG#-mT3Q/~: *>xw| ϸxMj uQѾ7[ŭ:օ\s%i,JYa RR!2𹻑O?y1}2Z[ cgg3oiRVm5uT iMHaJ^ iQ^B^%njFJǖbiٰ<)/1`U4U;$X5xBKW&XVBbS+C7(0ӿHOt@Q_Njj"U<jV8uvR FU|Yi1RqC`2TFW,:SESRO|a[6SOeex'7̢M[AiIfQ~FP94znvF/fa[՟R;}`4g?O~MYi#qjVfe%eW]YzE?Z윈-ިaKSeyܙtX܍V:|3ځA =euP Fa.hlV2)Sl҆~`܈P{I8ctQG*6pR#(xw~~o8qdtTyܕ۰a$m3"4JVCyjOcxnX8fDRb A)JB筿b8WjDQASG^6ʾ`ÎKb{K{Ua,8HcC!?!-뷷4䫫sLMAr<:߁6jiFI()s TUwysW3 xqtxİm;GVv"Zgo#7g}}rњe#7'GwΕ_z=4ݑny.45|v`,LJɫ J59n`˪q B`:k jp:VRLHNjTsb-8zlBwҦ ؆ވU7Wfd) k,5jJ$&jin:gru,0 8؄+-ɹR $n0>$7r !f2JJ`g0w]5uiD&qC-4 4|z4Fj4O҈2Zĵk-j~׿r|?ΚאϤ}ǹ4X(;0?>]wj2C3ܽz6hXrgoy{tϟ߲- w7#1TF>{{QZnN N V>_q>p,98҈~)?M/}}ӄu0/ ֍Ʌi0=:3Noэ0 {TÕ;޽)E+騆#j. CB4R9r*{a?NQÎZ%1Bi\,WP%%4)h9B#Ƃ zjXC-VIAAU:V+AgOޏR\Kh3mL2҅\FJݳh5 U55=\ iN=bJbAiqPĿXG kLRSkAt6¨4y).qwH Jr6ԨUlyRQD&u`C IDAT:5Ar?~%5ͦL*;%&ZioN@sbO3JkqP īTQخ+0^gRx?r< V/_2xM20Tݫ~#kS4Ӂu0 u1q]F,ީm+ \1w|&r]1z8u~<8V]*J/Fully)T\y|\(Ց s:}0Ҥ50ƶ  |s֊X?|3`,4JX07)l3-U i)Vʞ `,y_M n5C_ZjVwkߠOZ/G)JQIy^$pV(#Ut %H>C/*,0yrѶI뙫qzM:sd zR*@z"UTG|mP5Ok(c$MԽwAMT=^At#duS"F*"#U<ǿjK~ٖ7?X{R?iVˎ7p! 3l9LP a 1Ĝٍ%L7X[ɩ1#X5n4\ä9ؚ9 i]Sb 4l+/naT%3KoB-fsx:"pWWsrO7#߽·&pw:p{Bb"~Шa"u/+̖fe) enΖY;óDf3?NC*h?hqΐҬ,lq!GCܡDIo4 xYZcآG UU"Y Ǯ~ E QԩڴyR%bD͔/:DWЩ &75Yz0PUǧW/6r{ ĶDJt킜[EaDZ啸`ȩKx9>(JړF1+=:-jܱbm-mtX:nb f|*M^k?_O|}CŌ[J%x8RӮ7C8kD0]c F)W, b :/m -e_xff<51 Y3z\}*nȲDžl1zJ-*591's^jziO =^&3FJ:b{`yqw`"r݈Qİb >5F9q11?\Ԅm̞knρ˚mꊭA΍=WbFI^TubUXK/n˚E cC` 3L:k, q}r岃x!I dšvQoyމ[c̙ép>P+qKzKҨ9Sbe:8mkUD1x-azloy:Fb0tǣ l 'Z+i}yѲ;/5#rzYk][~S UTLgsT1Vߪ&SbCL֟;:\aa.+X$>#k9%5 K|C:Kg;t'.oY.+~hL׭ڌ:i+eG@dmOkjn3lz`86 ԲjT"Ia)Z_l{|k֧6#9Jc-xT"R(e$*J1ZYط(UCzW"m[mpaxq(1ǚG\<{>y͙2lqVYqox}ds|p4kw|᎗GM!k8jk;фqyvRš٫ܹd.ׄ؀h7:<+05 jf= AsT?!p{t\w۳gKY!Jي2/&LgM%Htjņ Z\q<[[}.G yR b2&XJ3HO#o b,FH?r:2o-Y\T-VRu''tNKJA7* ~lJ!a1(Cߛbb!;(0Ȩm 8*`JԨ^<\+6Kd32:0N0pvNHa/kP%g^$d_qZK%(<*ȍʘ@5ʯVMS[uf]J\}0_J?㶑_3fBXwPڱiʾ%5l=Aa/޼fYvr*NW{rh:ܿ{8(Q,%. !%7dybL41=^Mxʮ5P$ȹhxv su;ڕuMܘ:=14QJ)49Kr{PKeYWZ:x3XGk:ȩ2 ,SN+bz i-;1 #<(m[ kqԠz*.0v@mmCku:@mUۭۮZi"qJL4ז?0(U[IobTtzt`㬶"cG3cgJOjo}c sOe9xA0 zJJRs ˼0_b']Yd3ʖ5 6B8xL+˪-u ݯ Us4zL@O3?\-FQYBw`*,&׆:ϨB9V L҃gRDU)Ltg;.1ҚGG zaz٢.Xփo9kxRM Nj *rp֓!Qa<+J3.N3NE?]/R5 f;P9=dq` `[?'J5{fym1x<̼|y̾^L;u8s}DEUnK-{,'޽27J7NǑuض,+o>P p()ʾS|!J%sRb>XG) ׊&3l_[%% `zNʮDoU>.&JY"MipR#?Q|6OkΈY~Ł__0~R.no5Ҹ\xqP^aY7J1^}Cduk=q.mΈ Ap 㑘+ G^# :YȼHW\N8XSď'ZfKa\"S ^%`=U㑚"m{ZAp-)grXG{0R ;eV0 j`Wrɚ1 xpeO8k8= ˲s{:P{jӀX9yS?RpzvK8<.t0]*)ԈQMy%RFEϏۛZK- 2&jm Su+8Gʂ+VGt]e[0`˳MP@ɽ ֢M[ ܁okE0&`^֕q3R+lM13|Ci«P>lU\}1%݁F'd6 uJ52u%*R(u45=֖73jS.V] #c' 4Xu-c*+gVX ۪gFk,'/\3u>Ye 41GL7ޝ,fxeR,fb 7Ux8LSG J;8Sbt: ĸ1_,7yKkn̗ ~kvYN>HpЂ9S kn4*X?0{ӲoA=F? Vt\i+qUk Ds캄U4v3RˮC.Z] ?aj qzDنJFkj&܏O@f79~*jJP5%EZ2hB)1Cƭ>WJmY yi-Oġ[AOriFD̐&=flZVĦGk/-sMHywq/ Ъ1=!BֆGٵlJ#!2nwF[8kmh{PNMҤ/=W%hB{y+- E;%{Ake ߣ 4fel!"-—UaTƚiI֣!J"nZc@Q{R.8]1NVa]OX X/2Iu~WFGAZZuRw'ViEO4xJ;\; +ezZȵetӏVs"c`<8eTiRJ{U{,/ՊefF"ZSZ;[l>@ P1]϶$1l[xf~B#5ޣ%wr43-7 o8a]Xghg)zY\i˴0/09Bȸs:$=rK'Qj4'T6= ouī\w6:тӊV3+JXS0 1}Ghki5DɅ-gj/MJwrmB.rz+DT+q$]k2uL$̎(Eњ!Eʙu(i#R9B7 IDATgֈվ}N!5uK乿g:#FXqIIa#ZFq5RUAwJrr41^8fmM/şop5(7Eܽm-HX麁+iJp nq*㑊ePq 놩V3.׽ OupVOEGIzsZQlţRUk,Uj%7!?iS*@yOM5|xc.<AuO'o|dCPa⛏97\ZbB*Lxt"yو(e5e nkbMǏ_(S<^y||[o:Ě 1rDQHjQRe^(E92 7*-3cㅐ ka#]/=1UOɅk6(Cke/hmpQR__QF3y9s8-k(װV(X' Lgam'N2hZj NحQS/o٘e0ZI,j*q{K)9*U*5-;jRs$}X%mV&Ef.*J͉Z"JvMs7o:ϻ| uʕ27j,tǺF̕jVdVTRSTy(@ԶK>͜'}R}Gf']TETmw|/΃e(2mk@a膃R=JQ\8țk%@(;Nzmp<;hc%=jKL<zGݍĤ(MhǹirUL4[0/ ZeKBB#jen˒/G(R2\42ڻ]~SK*.tے)$heX*Gf:z]x't(ttXSٞQмB;E :EIzDiTY*K[Tvwk;dؘmYZe]JBfcOgP9ݰZEQ8S5ĬRe@g 4()v-"4q"}KdV͒h;EM7KNOȆ5'nOe:dJT6zniVlɪQ0:aCĀ) R^ATP@)uh~v?}QMA΁=q{zqT 13^q}Vhk1r8QuBpF7t(ˇ `1ёFKL 5/g1:5P=H%\On:'L "1eK̰K.̷o9bFWK 7<]y&޾:[ܝFBGJU:bA:ߔY/jVjs<=->Hu) NG:o9 Yi?T$sa(Ŗ L#iK2҆~!͏^= f$10]\f-I meU*)jV8L :Z_ Kf[pLٽK )]$cQhyhҼze39|';ߓb"2~Ĥd\UsiYU1 h-(:1c0$9h5k^25Z2*<I4Yy H\b? @wlYWY[0vܙ4C~(_͌&QrZ'#i`tT!J\7ubVB}k@Gn1֑%GPH,},ug?ݯPlj)V8'- _ lSb["gS *wgw8嘯9z`yy(3|E9!w7padY2wg"}|p-KZ[ғ 3N225$:u`y36N1g5swjBǗ?_C edhڡ$.suA;QA鲒SQBIc:Gy/'qerm__˭iXNG\/ۍiL<}GMa]С[z;XW|xz5ɟlL. A1(4piGGL^U{.Pk,&1' +|MjQ\#Œl,ח(-\guyv]sA^c(e8Zt+.MQHBE|}0۴htQe55ʁ>!U%MlT#i: ri)zݐ%-3p^sy8X+wgo8߀x~X+^v5Dry|z]3F é'&Fr#@?o,O;Pb]31^n/R58I%ű *h%s:bR0XXo3DnkgïS2wg+7Ģ)d01N-7KOo~9 JqęuB)YqjGk'jyc |sEvN- فu5ƷiPvU1sp2`Uc,OqQ)\‚7YC=ybBjaR*+9KQFaZJTPXKe:u,gYcz>^mÉh-/J'Z7[; h*(;\87mEqQuO-@iXHt\d7hF';GS~Eڑ)GNų#hF_t(R_c?[y~i臉nmG`YF+UL|EUQKf]%rwO*23M#14u,Kp݉ӫ{rl,[*,036-XR!Nh-4W V d95l;peh%wH([s^کP6zox~a͉UqMKM?%ri\":x}VayzBaryxLU"GDLi[m-}_2D޽[k){6E?hXɕka8jzXNԒVh䵒USƢLL+rW8ǧ'XkZ%P"ǸG>dL R (Ԯf/3'j\`^$lOW$KIK[˴Ѫ)Jب &,Q 9&(g_A# ((ZENx R<M{Rslc[hɐTn~O;r*?k/w5q㙔6Tmt}ϺJ?OI+nBŐppם͟Sŏ5%XB͂Sض› k O_xW#xč#Zxzz|Iae]V.O-YIjne lˊee0)jGnK%<²6󺲅 9m[ $FUBvFu\0aԟ8B- \a41l70iEб3%Α-@<>;,'9w^`(beb2RJׅy{Hm-jOrȵWQbhqR7̤Su?A(BLtRΡrLT'54n!Дv3D)5M3H,)-FeѶЪЧTVe-Iڒ#c3ޙ6s.d W EKOE3BuS@Ȣ2M ɭ #%  9RsF]D(iVQEȬ-6 zhe,JC Ѫq*d|-m~Y??+wcrMoVOQS!ㅰE޼%8V5g )%ϴ tZEɁB%q8MNGrY]&YƚjBD:C䚣mGS⊳Wǃ@HZpƂFɄJO6:[d2X2\BxΊPBB ӆ7_Q+D FÅ6^= ̫7Hx;0/ a5Ӥ[{a`.e-k!T1T~0¶UG-,c /uQbwEJX>`\Ec]OjIЍ%DQdH^a؆S%gJ(ȿc-Hڢ<%+(,}FNFgҚ- ;1QxP'plV4Q).oJZ\vk=i/R"ǝ^fβۘvYSyt%DIy5ˋ*։*$C#j?|]kf__ ߥZ3~Y/W/7 #4s, !f;|kV{Z*I;nW(wq8i9r<QZ/WbDӚaJeRw;Ħ[ΥTr&L1dbES9iA'}081[ nQmwWSղ X}/\{(yq-R鼘SLsqX#NP~|Y@{_V|V"9ёnm;#F7Rj(/2Q@ʺbjR\3i89.OsO7XPVZ.)RkC7I\2z-u$V3-%ڃQ^\wEن+Rֲ"U E4%)Q[&(ݱƼDBTXmxz037 +Z y!zPB0=-}ԴP{r-e<1ڡ9bCYNVu!'6C7 IlQQT_/BwǶ:~3uz aPrG~7[՗_L?((:s$NH3(Gȍ-E1 G[˶&R-sIGR(r<9E^bJ0)&垚8)EI Yj6DzkkЭǴJN7ZsFM-\ΝS% ݪVTtctqW4om^Hhj*A8$3)qtt&K˰n op8xMLF//k+X9kU1 vfݫ#%Zq2;-\DﭐJ{RrhhI|M9IdcɱO27ުpvFʍ SSi& JKV Lׅ}ܤFaJ1Z4x+\o1M1VoIUeVreGZPT~r\hnF=m+J.Z9V. TCFwZoY׆?]Zڿ"cC-ZsgbLNwZ0(0_gt~\qFY"p~56Oa-?p}pwqR6GβNr7ơ* ˍ8rV Yt74aD 1 NQV!$CM{ZSa~CiUT݃$H}e2X,MN# IDAT\!j)- x~ X(qy-V%)jcTK΢Ѣ\[ Zl!7-Z;VIF;yE0iROT Y9-hg[Ul{51ܟt?Ш9u|{8iu(QCm\O87npLD $nFLqg:\ioUz XriL×_z' zEU%\/5HȪ?M)!55RWt&O֌*rsTe+ZUZnxgKH5)Zh}=+F{|T9NRkn6H*m 5|px̺l1qp:h2hX{O`ep!*R^V4uV xXna=f'^D\|iw]ϲ5:H0#qta|CEJUl[X.jޱŲ5$Q́" +xhz'7Jl;(Fт?K)RSEP -AMh\eqbBߔՆP f)90N%!W0$_iMݽ~ =uRhKu|M=?t_6RoY41t@ AY> tadۆQB#q /QJ%Č'Һ o Ggɹ@R=FYQhjaB( ;i^Jm\QlT/?_?!XȮix>w9Nm\W_1b 9g+S/(cF:ö%r$pyIzZ/,%8YKmuZJ 3h'R^JMhM(yt IN2&-i8ODJM` x.\(E2)ٸ/rFݪ\QjcX<5RnQZeZHJM^Ea@?$!fIzi y(9q5ɔ@0`[/i3kW5qTe]juSQ'f_[L z%Pud r%1| ŕt&Hj H3RXP X5\L- $j*̗+[Jj̛ 7UJk-?.L1Y^ >,rI|H FQH [jcԉ%cdg5xii΃nܟ;R BΕ|ƩcxZي;߽gp24\ˊ6q)IaU||0 Ö1q*p[W\N)spnUxEȍZuIM'd9CC#a(iAY-SgQhRjSrZkq\XK gXFgE/JTUy\Dr ԤL%T"-Pȫm2oJ|OSni& UX58L}?VSJʒ3q[nx?SxȵҏЁBfl 3ؓ&\_fJ[gY BZ !DrSzo2v;[A0lXRb:܏qpZW3ݼ%TgC2LeV2 .0V&Z(niק7}z3=Ǹ_ySq&uQhD/hzj)%`2EжHj˳Pl[6xD[lUE! "yzˠ(W Wc_5o/ /Ry؜wg4D2woސZ2ļĒ«?LI^vǓpyaF'P-cV.5G4/Cu3sAU{ui&9—]8h&6f.VO z~krb['{ƾbjخ(Qhyf/%1Oƻo2ϏpڍnOܾ80Olxm佷(]hL, Mq.;ϞH9ʾF\"VR7n0:ǣRѼwCK{v77D;< ոL,78=3p QFmh=[(щ2HӂU,ɇǰ|˛=,cQx1c8C"%H"XC@ IP2"ic(Cf$"Cr(ۨD-8$A!7V#7Wx&~ڡ9|xŨ0rhS6l֨zt i92 xvc{'e`CJ.yэCOzqk xȕN]Ϥy|ۚ/콓R%,;bWd5w^LW0^̾CZxʭtcv&HRpF 6nruʄPfٹ$R:$7NsK폿CIqgQj9g9 ?l33Jm%q98g⋑R;m x IQ (f?G܀FQQ,2H;zL*L&GؽFğ|څ2 +DC(ٹ`2kqh9$5 D4gd#qb>IcFΔ`.ºcZ%C)S䩢wg!IT)gs $ҌȄ㺏DJ1fʿ|zEa cZкm΅i>)24MGX7z.{kN+e>`6D5]Isi[ml+̑Y1hm +rArYR0f;vf[+Vw|ߣm}ٯ;հGk }8E DkX[&Qx W;I:Q+y##da9LO8J@qtE2pg%6Ce[;eYH[/}0h{[g79ׯ#;)uo\ׇmpO*52s89V&4W0yzVnH-zVĦ(qMh9ڔh$U85%"z `^P\ߒ2moӉY[_"~u|:po?>9G8UDW/ N#(?we[/Ths<eb#1:m$Ɣ%SJ(c 摟1Lāy2C)!'Vln19:ՠ질 0=zId"12#PɎ`#pT Euy9=_cWa+YwW>qX=QJx+z uy&c]Htyx 7|]Mj 4/׍VR9Ɀ>|1OlJnN~!'z3{r0Q D- 8Wt$>u/faN#+ȭP:$mc0)ػТ&NQ y<\ͳ#^sb]™[|\̫7[4VB;|#j34ss{$yrJ3p7HKbz`Q2,Sbc4%BfH>GV#iID!,rl49g*<<\ysy3 ;t{F77l+wT2B޼{۔NzIYrTsz3);ڰ40awF=%ɴaR1tL}P|cx#yˣ eֱ*2 ʅ&zu"pw mGI|s #Nv5 !φxQ5H;@1n4E"(o$ OL[4~ou?k\HooOGzR< bGN6V>3u[Apg:9Oƴ^T&w^IsmVu,AsB(Zh5Sط+sdv%b)GVCj )%aكJ!Ck =YJ,-h9gv\=*쑜Mƥc6k1pIYȷT[i(t> |ఄb2k(Sˍ?x͛Ƶvgܿ i"mz^xv;->&ܾuV\;-99ӆڱIp :e-ͅ/}BEF)Pki.+X{ IpdH+ǁ.#RziLQȰ$0iwXNbWhwNNV2 !=H꣢G=t#)6jH=.!+"TӐd_&π:Ÿ/__ݻi>7ZFv !q x#Q4\lI=@0=BgVc%*&812ݸ[ȹ͸wHIYXdvskԃQiU`fLy! ѬqKhcm߉{h?܃`&1a|0k"2y#MD]=)9oWWw+kk&N7yً[Z9)w{ k+3Ǜ7__#ܪ;00OH7zRa^)¶iS'h?\)eDy|Ykz&1J#`)a*)7}T3檃sSs(s ^D0-Bȉ-J^py ό M2X\GF9.$qNhEe Jӯ)2ZHD9t_=ꋾV?Gvs心>k9S9>cm徝ќ8͙Fu $Xud.X譓r!*pU`)EkM'8v%?E[| <ȠH{"J㌵-pnxT*S>ԉihzYQROVgk2ڋpj"n8urj6KAPE,+ؖ&LBFEv '%ػ R8;*% )O:`ɱ& < W!!h=q]WE?!yD<vVM254xZ&Zro9J02Nh>Zf/+تbBbf΢qR|ȷdt$nƲKDyцHlg%g.'dDIHA;^w\FX .29iʡ56#i04 xDD7wW+/ ̗/ڜ=|r')L ek X z2CZ7蔦1fOBm%PTczQ#qnQR1reF8ހNNx9 Eĺ/66ݧ<:jLC4Š{g 2`ǥ  ޙ MKDn(s7_?M?3yQ?0??/C/wLչO훱m73Z\׍RKTi)> IDATi-n 8N)q#AS4"<[$cnq8=,*ކ1NJSZ5Q9dSbK4!,PL!B#TfߌV;N @"[앩ӼPRB JΜII˴0e'T%Rἱ5Oõ2 9%ˉe|BiQmYm)T7'+{IB w" х'j-nN\.[#c  urR/gr!y(MQ-am q$ s4 b0Z }l6jQy *_ D!m6' @x@}I ScL ڒ -ɱ6wG ;:>|6N"7tĨ-*bHnJ._p]U: ̹Vkd yPێ.2!ř-76Ŭ3nԽ2M i %=miB$le:)dE} !{>H 5ymضc-Ӽ,r!$B:`_V+7Z)C}Ҽ:13S+pXI#Iguւ$ytVNfFG󤁶YmFKlW5]!6˳s/,ӄFE:2M0z^#9=魇) "="5qr (jnl{$!8P-^}PZ@Etc:8k LΎ8Г$d8UE"ɣ[/)B* ' Vpk:%rVLmq?'D f@Iɯe~嫦,_~=Ww4Xϝ*VkSboov܅ۛ GrbBuoȉCXu+eL#)Rr)(&$)ရ֨QaiaɅ~L\gQ%Z)5poO3v O3s&}o8PQnBJn*ʍd\@It9$I]* 4#űqzN1qLH9kh9Dxp|ː`SⒹԝ}xq _E"؛G˪戅$,Jú%FdD5ʐf+FYRv!2{ ]Bx4%Ѽ)/08LHOs{<Ih Rt[8rB\E۹mZn=GgO|WJDwUK?EMڷm.E{ˋV)y6n[w\wiJdctגt?f5zsozq"OsPք0Eݘ@ᮬ{Ȇ;IXqs X<J"Y ,J9ޠ\^#'R:p8C T1Hw ̲#(o=˕k eD]QMԶU׍&E@E"K])EH9"s'A]-I* U*&Xj2LJGjhJm'=Lj?To׳@y(r:zK˞?͔n?ыOm?7b_ȳ$ӴyƵNMluRҿwuےzS{k0_I9X|(O4db1HLi4VxTYG<5$o-z}bccf=m Ucm}'F{UdDYX6a(y &ON_m=i"ϙ~v9ܾcL?^~ȿrr~TK[js˕;)_uWӇ޾n*;{iN?e/ڻ=4I2Is% = =fa}7 k&MH6)V3Qzr֍u kLݑ&X@@!<:t%h)[8$f=D{0.N!KJJT,ŐWKptewh& k< n>0FFylSBub0wL[zڕ;8(Y~"9YCe=rcmٗ ų4A: ?_1NnZ2ѻq2^߳| )GH4ÐRrȤ1ŃK"bt8%"7d$JbcRkHqJbt#v iUUB"QD+]"f aĜ(#9ƹ : (M<e䶖[4?^g>إ6!}w\i+Ƨ__-1~s>~ëO_仿#[pIa9nx/*MRnMBMuwVƴzkx L3$x fv=M  !0pkrDCNx?MTۉ4d?%1xyĩ՘%ϧneyiʬ0-3ݕ%Ttt]-. љI#I5nJ$щXx %&H>PY87`~\"FJչ=|z:'$GΊAlyMl9),9f1v)عAB ΣS#%tH.S c(#4tNd$uƄ='{|Dwa$O11Y0ؤmGS ) _s1)L9#|4|x+\n)L.13qVwەvUa\`t>#3D1#Js\C4D֣ & bċ- Qp>[EEbքP߂* -T))4*: JeIxOjQYU}l";]-VYᓰ''g79d-_X ,c~бUwQ+`-yȷuIknǪ%s|&G4ZޤAsL 5"d6*%Gc33Φ<)tW4/̤;@;VgǏ Nl@r$>ގ}^c1yLNP&i7 :v=ӱL#DE=MeFX0"cD~z\+rC_Go֚=%I[NGЋs^i[-咙2-k q]\F !J!Zݑ@-2sZD`qLN# 1"M}_IIɆ[7g"1S*B'ʓ:Hj Ep-\2Ia2O$ޠsILEiRJ᳍VC%=9Ɣ:B'PY jD ]C#!>}dpXWcSwc_FcRUT"7SkXTFG{€U6)p稊|,L7Oőؖc-~?<]s6d`GT #[%/x9o#M/o>B_m6vґh~ow薘O7HZNO2 t`ra vV$} #,DHFN)DFb4D JJ,sVIB1}8eGV1|`3TBBN2IkL;chk.Qn9!lq?R:dÇt{Y+baOJlVr="hmq|>0Y}s5 š7P^"sD')!0HzL< KHjC!X 9LSK- @􀝌[24c8lP͔'qX ۶Q%H%cc\Ë ,',!HD(x~̃b^@O7?J-rJ1Hn Jƥ딴I=»mL;sJC(xJ:֓: 1*HmC7S/x b.BY^} ݋O>"x0Voq0)ݬ2MZY1kb45|Go@oDBܛѱl 8<4kJ2kJ;TH Op+; b3]S@ k[3و.u IDATP0R 9^vF"~_b 7S=UMH(5ǥOy5s~礬#jCrV(䑘RCgVUir\ VI)'gɶщ NZ{!W,P $V1^MTV̢.܄319j :*׶7Oy`ȗJ݊}O08W,#Uخn=ğhLgldR%Qd^{sn0؆,Z7ȌRJ*:liB|yOwURj6hƨ2v ߹"m%LzUJL(D*?I4Mq\pi\^5,5n4I f}^q3-<ۃtP`e^HxxW!X]kFՠ,hzbեXZI%" Zv^(y@D6U'E??]K2?;ܟ > KE;U`╭gci[e2"c5m*ZW=@e\BpN@Jפ~#`g֭k(oe Ιac$렏$4R%[hNl|$U@ܰ400FMBf4c/D}U#||攪@HmlcA8i54m< Pq-*U h(h揄8Gx$J?~!{#[X%ۅ+ޚb(r&c<Y[8JDa 0jJCxRTKiz~!0$IV+&øc+֗3)}!?>7#Z= Q"]Es@x ͤC@s’iQۡ9%^uCB Q7Vir\S (ZWRbˊI-(;AxRO0lp/|D ^Ri r4r-cZRTs l2'vⰦD#2s&RD^ 3491:?^[_=!hq33Ұ)V,BJdGl]0z@jr6`\9sr_gWu?)8;&VZBIy]QA$aZ%ơ9īqqATT($5Cn<0Vu%RkTd:$,yhX^ H9Mbi 2$f))t,K F±yٴp`zV$*W 0W`II{NT,syR*IS /f+>DZq:H`ᎎXnh +y)mywX<'5o(9_ xWNUE66@E 5V E9upT<ŌntVMe9Vb.@4j;+59mM`Szhܘ#` qRޣ)0$aJ#f"A!yY:O;e _:~?{f*ucZQ R|pw~Qqqzd?R~Gb^@'&dvf"vX `whV~ % WYkˉ), +ock:^gJ7AxbV)ऒl4E3_ᡔ\ D:>)YJN,>99]ؕ4?Ap8vhژ٪ԜV&Do\eU>R:)eħ~zU*Y7׬|ĂS!M r|;iN,Q7p$測UkϨSaNJ v&@UHPM&Ok*!]H_-_U?=H!G2׮d1[FD 5ћm𹸅h[C[<{<\8^fjXHjXˑΏII#YR^ q )O`LyXFɕgY&g]!ϔKA3V ֵZ+j4}T+ ˳ dFJR{[[rnP.%wF6s,$g[PU+}m:9y_FbB߹b3HzO]tYLzmelVV>+p}fw^12PtSK=OÆ뇍 nk6†ך!! qa?/>| }dhb>VD/UM`nS_k!f~7̆~L{2΄c 2*D(Pﺵʴa5&S'<* k>-ʉ"ԩH MLֵRC 0AnrbAZ 1U =*0(Zg\- *ĉq<`j8 ILrZ+0g5hF9m^y@e);I^(z`T9jc/AԺGk1ʢ %M1Qg"xZg~O*h8hOoM{`u]T`ޙ ˕Z6UH' hqO#C7C %!kZKL8PACqvƏY{W߻+~7nϿ[CoTLAtGD58!rpz}, [{򥑋 T_̞4,ЬֆK;lӥat1'iU"b988dX*O@>uXѣ^NvQn1 c>66v5#&QLpym؞j ]J{2tA߸6W]HgԄ^f*cx-x.RӜ;\™VUuظ [چ  :Ampi퀌0Ssk|JĞ iN7t%S{z$"r=Mxw Z7Fd/O'VL nX@ёgNY[~Tv,[sJB"às -߽!H#tGCdA `DjǧxMa ,"J!UގXǠڐ(o_:^*If1#K:^6u^Qj6`{D]J^AA[k#&0^qAP"V0TRjxauEcEY-/dtf3 ^ L4!`P!zyE1@\u~`}!}og~ُ^k RHp T(PA!J2JB%(}RZ9EQyB:7zTRDMD+Tsy?W~7}n`^_Dh: 3QyQADHiQMɀe99Ĭ<$yZsBVbEAF.\&B;erz2W#_:ld"Yk}Ƀ D9] fўegZ5u QӚDjܧ+i\ PK~J}Y{'N~ey6MG .Сd^lLU &YEBIΧ?NnQy h_p\)"ctl\P7 Y"Y9"&w[U?$RDJa('?T/xӱ{3(b{v!{Ԛmhi#g{dHS%FVx &e* nuۓf\cSGTJ[l3x`Sߑ?DwJo,*=x^5@~EJx=mYd QćLjkV4 3&4)Z^G D/I94+u`/qh[[/޲r)N$si$ޫ{w`o/\yP/<U! u1R&rzvBL4TΒљ Δq>Io ݝSF"+P!3Ō LAq) N(.W?kBNߊ#YD*9ƾІ_!saͷQQnUtxbsEN2vb׫%Ȩ)<<X8dF\.,ppɵ \mTcLde10m|_pWl0,k` f~g x݀qI$,םͤFK Mb1p2׈XH*7+C &/$ զ,g5єy4@%T_[_^$o?׾i7C]&Vf U Ocrު^_dՉN!yE#)~ bRp߁@܋oiU&$=+]qJV#b 耇S,8kS`\V"T:pyY8 u:]M 0:y!mh6zK8Ydrq쬬Q-_5ꍮRUCǜ@scT'J]FWQvnf^}_q(")Є[J‘h )fB}JHCBXLT4(5> [l<`¿ϼ-~{)i\2ED!F x:n;^XmV3 QISkp.AļWgCZ!) AKH:RvKIn/E jgNȄymKDG0]'BcQ@u,xH= jy:Q_/tOIG'80 Ǿ Op(}ĹV)x"Qh,Ɔ Y{h Yw_¼8^ƀ`i57@"Yj ZJy+Pk(f8ץP2H  d0 bЦ-0iW>Qwvn d~-FX6 L+p}sr <DOcIaŁxz@)s.0u>"!ѥ#yV#Ќ_ ݹN{`>j@CWԐ:3gkR%`v|qvQ["e~*OSfۛ_n_ͿjIl}7E>!v3#zt|`K.ʌO 4$eG 5:+}G3/PL` XoU_{@D>)DD^i*OUX fHu:-UJ O~eaz͘tJ/jZGXXd|ڢoTy"@D[bhԬ~DbGXvo凵 ㈊CrƵQu@+"4 IDATno= AEqd~ژ1u"~bXZ%s\Ax(ЊAHeVYdRUUo8jR@nW'ǜ阺v5C4饨%0|1 kI4pߖqǗFX[ǁT^G| VQYqс+j d\E>'u D9g V[,2w!Q蚀#qbfqP`$W-zVC(WT QJQn 4udZC,Ah@sfȆ"kb%ވD=Ǵn~]:U97&Wt `Kvjܽ%qKl׆ٺ`9q3Я OO!7ZQ\ᾊvE`P(@D<&ބLc9ؖ${$ҢȰ: $a'- ~L5+`m ʴdݐYQ^Gߎuc7X#B(m@ U;'d1&ɚtEEsomR4&tǼO|q??tb&rN+yZ0K]kGf_︞m4dc YP^)!T ItM/9FOP5h3x8D;_JWaXH"~H#y@4N\6Ej@-g02^*d͢d5edUu(0k%N@#q?6ޢmSlM0_&_ P;򁢫>KVc{RH8v1tsB@w遾żl{ hЍ "IhsX7n?3V R0f1/ -P2~Dhl) #QQb4fy ,P·-Bt9I)٥j/ADO/Wv7ODJ! zع%"KamRu)pL'IYoɪl l O&@qU\7\UOOϫ&hPzYq'<'=s-xcٴ. G}BIk%OH]HFg͚cdvRLagqodްm(Mu-c{Ve; ^> g)[ԐE7 $yq&zrOn$֢^eWm*J "9+ P'QjS+*Rqc\!n-EW2*lظnU Cxbl\\;+V6OWIQe*a")ώ|c-񇑧-Rv@÷.Dv"qTעۃgj+؟ܙr*0NNw&Oˠb \۝|2q-wE (Bk\~'ZjIawunt=BBz:ȥ NO4w46Z#R(CG z}xDJQ{qݨXs'޲9ca'Z;~B%U8;l8#Hy`jY(Vzq/Hlk/5EY:ibHCUUx .6<_h8[ZI+ DFF?e೅'m^ᤌH(}&|4b /1Zے2i90TD_.Pi9X}y ~mh-0mU#+^qsF<лBe>y/zJzfjUg|iհ[ι-7iH< 9ө(Y@F^M%ij1 )SaF`ot5Oh!)wݨPPA^E6ñ'zzxDf$s } Niw#õ}8,z0l H񢀇J312`XSdr: X=`ɬ DFpdLu TZĚ u6\/I;\U1+ |SkƂ'~+Vk|+iX}0g~P%y6%yV<$&ي Bs{2Úo<cC KT}zù%x~V8exe}ٹME{< h)`S.@OҠl:\j}!)y]VU+_+|__o G!zp+1`kbEb ow:>V FƝzm${L /.sFuB v~ KJƥ)HXArT FiMf9_TWZ#C#O/@@U J~8y/Xy[p HD&).}ȫ[(-@I*p')kJ37)1 ~= =@Nx0ii흎˵CaX\{`^&эѐJGiv`"nek4FfR/=Y'' ";+DH/-~7~˿)mmS;pV%WW=&^I/LbDkdwFX`'BpH5G>q tܮ/WX,-vG6o&t |NKwvRϯ^W'}RZSΡw MZN~"r,=,,*-7D<[6ľ)ȝ1;}1XkCtTC3]P;B@*Vmr`;B;T:6ȵaydi_%iއo_Q^:P4ohOS7z35m฽`h:pB޵ڶ]3'l>RIONDiV:r."Jfb|W6$# eB#hyx&[V,Q#c |y, "mh=qG`\3:  S@v<G8H|G IǠ#r~;mcQķkoYMuҁ.Wf&(Ű1ew:Pb.pwR4з8a-kÜ;)fdC^P<WU019t@p TxXx +7K0xg¶oM7G |WqDG[^렆C6A\E nS* {'.f W4e({t5I:[ E"M&='^ቾ%NX*jRkPˆgKnV8!9[5MlQ` qՇZ<=! <H*cXA}r19ҐM !L'Z酣CYAkȩXr@;o\W}UPCoLwG˥%,ޡpl͘^tȠ1#6i@<> 7o;nm,?<);TxŨlCxzbBprM +&G1OD+~JLG׎צ5|dSKxz MhQp\/?;Z{?Y YF\;m~X{}Q=62tH`Ɖ0‚KcG__֐^d@,0 Az ,Bz2So&_ٲV)0}l-6FB.qY hS뇠1ЊRȯUrmhpqx7Ȃ@ ]q޾ݑ@s9T* sGD\S./ϋ FaGDrr4 r9}/B $,X**Sj'Bsc/&*Qt|yq'ݻKȦGazBl^ȁ hx`$'Ù#+{PٿwH>sdz~.O vJҠAҫ "aNI6aItKz`z@0H' qD b'x%[C/ &t5pc::8$\bIX/w ڦA$ XFEBItܬ {]T;3ǚ.| P\/䌢WwLX䢂[_H ^]AZXvƸ: qyCJ oPAʋZQ2xbu rĢbs28#3\:x%l'*Cͷ|W~=CTDZc ; 1:KjtBh.9Ҍ jzwpNF+uCEGQʛZ;HG*j sv-3Y546jS=r,}2ZЅ7!ժU221@kLħcjW4)iAuR”pJ c)/7'oJxdhjlaBQQtW~N}a<3R3#mVXj]`B1)[F!V$כs>qrƔ|(_9O13 Qzi(2;B66yj{P Q)'6FO32x6r;i ?޵M'F߰]?pȉ3 $,jqE$Z>Q^Hɋ}GfǪxTalH8,l r?Q2ݨ(똑@֠}K.H̺* cDgIBâahf( ׂQǢ옵AH.a bt#8;ƃue}h\f㎹/O]:)Kkl~n8Vipzg`@!F#X8sv:ΖzّS\:eڡ؈fsθvMZ[2j@ IDATYԆ qW$ >\yrʑ%BmZJ=<%"f }=;Fc֡tWPW!֭{?F$HкAMU5IDP֕2x,nG4(%oWƓSǜF9z78-(8_:kGmZ|ުCpv8{%,"r *3gG,5 FH99BGUeccc5d(IBj1`RC )8M#E 6A*HF{aPIKsk-`Hh6ñѪ㧄?Kro6VWn~X)eUW gU5Lsn?zTY ':Ϙ!"w*(E?S0ihY-5{\8b;[WmG(ň1HYC' "Dlbр &ObfoP%$9[L0˶ AGb4KK~FmpPrW0Axw0u\8dcɑ` xL@\EzzL$ DghЯ nFF)3|%TaPTH$s_/:_ <o×"0푕hA.7+DmL WΏGlFrXPJ#8c놓B xxOp{vPuM[`$<A mTJq!@\C24#Io5Ʈd!8Iݦ'fhXлMvWLD?Ʒk~yًďkm=CE$9I ӼB$7H*v:R5]B)Z5>stdJ;w aؠ:Ib?,RG(  ,xֆ<_`kbu8Du[|[//~ړo>\{L@ф^8iy7cZK;r&X/`l KqubH9,j= z-SLt4|eƖr= O}#э/";G2ZoZKm5NLjDpP#- x$1'lZ#zɀ6EG>nT[URqi8;?IPD/˃B얰_=cC/ǵ De2.kذ9BIHog˿[r~Ͼ7>մO{v'vT_JෆkW3nf87Գ##/ 6Æd~Ӄև[q8[8g*rP” ̠D5A)ps^^U\Cu<-[$'F #!CGNg)Ck3qjhP5:zvel/w;wg}{KGNȶ^{j_4$ Y!KBCEoa%w%"u elA{}81RGlhձՊXahqMHL-</rpm8=pEFА2P7:Tp몗,@3yGD)O1sNǟ7Ƶ0xJvx׳:Q[Y{\|ardC,Zq8?`w NN mA(:jMRLprpL3_g(o _Ka/Jߎk9֖q%wCt2 U$ U@d *ֺA[ske7c*!VB9L<)9\J"lzޑdޣiDfmi[mD`+8<)T3VGf28n W?߫?6nYp[ -{uP}tk[8;H4mqOkkvGUcyDŽ+/2Q>a`15i̸*HC^Οt_ISO8!)SS#:%wuV ܆qOַG.?!=xR4QɎX;@gNfpdViA.TP \>l[GE)%k7Ar^ygW. ny$tZx ޻@iV`?'45Ekk=ʡmyi)^mo}˗mOx$93폅w9]}Q~ ?F(>c.Wt73y ny"%mLL,w0.h]7b{w73M[ºܰ%ꢸtSJpk\b¶c֪(%K`)daheg?w6|y>RKUXg\m@Z{[7Dh˪) w4^|!_IA?'_zS' J!>М7b0ORak~oIɽ?ȵ=Jf7'_ڵd P+³A[H95"ClhTM2jPw\Bba!vXꆶ t ($׮.H^9 RXÉqifRb >&*L鷍Cs@z꾂?:#ؗoVU<*hCϣ dذ+v''peqX ; b[U.~7C neFo0kNO rlJXֆ^ kula95J~uy:a7Nxw5Yύ ~~OCog/a;{+~$Fjvt1=vg׊Z ݄$WH8?6&c]CH=?\HpeA_6|V՜?*>PIk*z76ύ +<þ .W@aVS3Ν?Y9q3t4ǥ`c\zĜ7/:Ѧ|wr؜XP)弛 x kФO76ύ kyճ(oյMQoiNOL_$h?[uRjPQIko/IyyttHdjzӾ|t#2Qd<)S=5=<'t~+wb{o{>x~:pyb+/N)xn<}ލkfIENDB`xteddy-2.2/images/icons/0000777000265600020320000000000011143371632012244 500000000000000xteddy-2.2/images/icons/teddy.xpm0000644000265600020320000000236111143371632014021 00000000000000/* XPM */ static char * teddy_xpm[] = { "25 32 19 1", " c None", ". c #DBB692", "+ c #DB926D", "@ c #B6926D", "# c #DBB66D", "$ c #FFB692", "% c #926D49", "& c #B69249", "* c #B66D49", "= c #6D4949", "- c #FFFFB6", "; c #FFDBB6", "> c #FFDB92", ", c #DB6D49", "' c #DB4949", ") c #6D6D49", "! c #6D4924", "~ c #B69292", "{ c #B6B692", " ... ", " +@@@#$$$..$$$ ... ", " @%%&+##++++++#@@@+ ", " @%%%@++@@@@@@++@%%# ", " @%%**@@@@@@@@@#@=%@ ", " @%%%%%&&@@@&&@.+%%@ ", " @%*%%%&&@@&@#.#@@. ", " @&%%%@..+@@+.+@# ", " @*%%%----@=+.#. ", " @%%&;-..->@##. ", " @**@;;+#>>##+. ", " @*%.>>$$$++@ ", " #@*,+>$.+,,+ ", " .#+&*''''''''*@ ", " $$#@%*'''**''*%%&@ ", " .##+&*,''**&*''%%%*@# ", " .#+++@*'''**@*,'%%)%*@. ", " #@@@+&*,'**%@@*'%%=%&@+ ", "#@@@@@%&**@&*@@@,@%%%@++.", "+@&&&@%@@@@@*&@@+@&**&@+.", "+&**&@@@++@@*&@@@@@&*&@#.", " @&&@%%@@+#@&@+++@@@@@@# ", " @@%!=%&@@@@@@@%%%@~.. ", " %%%%%%&@@@@@@%%@ ", " %%*%%&&@@@@@+@@@ ", " &&&*&&*%%&&@++#@ ", " #@@&&&@&%%%&&@+#. ", " #@@@@@++%%%*&@@+. ", " .@+#++#@@%%&@@@+ ", " +@#+++@@&@@@@@. ", " ~#@@@{ @~{~@. ", " ..{{ "}; xteddy-2.2/images/icons/xalex.xpm0000644000265600020320000000336111143371632014032 00000000000000/* XPM */ static char * xalex_xpm[] = { "32 30 43 1", " c None", ". c #B64900", "+ c #B66D24", "@ c #B66D00", "# c #DB6D00", "$ c #DB6D24", "% c #DB9224", "& c #DB4900", "* c #B69224", "= c #924900", "- c #6D2400", "; c #B64924", "> c #B66D49", ", c #924924", "' c #926D24", ") c #240000", "! c #DB926D", "~ c #FFDBDB", "{ c #FFFFDB", "] c #DBB692", "^ c #242400", "/ c #DBB6B6", "( c #DBDBDB", "_ c #6D4949", ": c #492424", "< c #B6B6B6", "[ c #DBDBB6", "} c #DBB66D", "| c #6D0000", "1 c #926D6D", "2 c #B69249", "3 c #490000", "4 c #6D4900", "5 c #FFDBB6", "6 c #B6B66D", "7 c #DBDB92", "8 c #B6B692", "9 c #6D4924", "0 c #B6926D", "a c #492400", "b c #922400", "c c #DB9249", "d c #6D2424", " ..+++ ", " +@###$+ ", " %++#&##$+ ", " *++$.&.=$$+ ", " %++=..#$.@* ", " %@-+;>,=-.+= ", " '+=)!~{~]^--,+ ", " -++/~(_:<[}>.,+ ", " |=%[{{[1:<{~[2-++ ", " |3|4}(~[[[[(5[[6-3,++ ", " 33))3333 2[[[7}[8[7}'9 )+$%%$* ", "3)))33333 ,0}]}]}!2>,-3 ++$$$*", "3))3333a+$.-,,,,----33-+ =.$$'", " 33333 *$#$b)33)))))))=% = ", " +%$.@.-))))3)))a$%* ", " %#@....b-b=.-)3b.$%+ ", " c%#@-+&##$&...=b=..++ ", " %$.- %$##$.&&.==3bbb- ", " +b3 +%$#$&#$&.@.= 33- ", " )) +%#$$#....$$$= ", " +$$%$.$&..&#@= ", " +$#$$@+@..#$+ ", " +$#+$+...&&#+ ", " =#&&.....&&#&@ ", " .&#&....$..... ", " =.##.@.bb+...b. ", " ...b... ,2+;.== ", " .;..++= ,]]2,- ", " ]]]02,a 99da ", " ,99a3) "}; xteddy-2.2/images/icons/xbobo.xpm0000644000265600020320000000314711143371632014024 00000000000000/* XPM */ static char * xbobo_xpm[] = { "32 32 29 1", " c None", ". c #DBB692", "+ c #FFDBB6", "@ c #DBB66D", "# c #B66D24", "$ c #DBDBB6", "% c #DB9224", "& c #FFDB92", "* c #DB9249", "= c #B69249", "- c #DBB649", "; c #DBDB92", "> c #DBB6B6", ", c #B66D49", "' c #B6926D", ") c #926D49", "! c #DB6D24", "~ c #DBDBDB", "{ c #B6B692", "] c #6D4924", "^ c #924924", "/ c #FFDBDB", "( c #FFFFDB", "_ c #492400", ": c #B64924", "< c #B64900", "[ c #924900", "} c #B6B66D", "| c #492424", " ", " ", " ", " ", " ", " ", " ", " ", " ", " .. ", " +@#@ ", " $...@%%@ ", " $&@@@@**= ", " $+&@@@-@&;$. ", " ++;&@--*--@&+$> @**, ", " '@..&&..@-***-**.*.@. .$@@*, ", ")==**@@.@-***%%%!*%-*@@=@$+.*##)", ">~>{'))@@*%%!!!%%%**%-*@#=,)]^] ", " '$/($.@**%####!!!!%###@*#_ ", " ]).$$$+!!#*##:<:[<<<####] ", " ))';!<#@./$.'={''''^_ ", " }+.@.]))^|])))) ", " =$($ ", " =' ", " ", " ", " ", " ", " ", " ", " ", " "}; xteddy-2.2/images/icons/xbrummi.xpm0000644000265600020320000000422011143371632014367 00000000000000/* XPM */ static char * xbrummi_xpm[] = { "30 32 70 1", " c None", ". c #DBB66D", "+ c #DBB692", "@ c #B69249", "# c #B69224", "$ c #DBB649", "% c #FFB649", "& c #FFDB6D", "* c #FFDB92", "= c #FFB624", "- c #FFDBB6", "; c #B6926D", "> c #DBB624", ", c #DB6D00", "' c #FFB66D", ") c #FFDB49", "! c #FFFFB6", "~ c #FFDBDB", "{ c #DB9249", "] c #DB9224", "^ c #FF9200", "/ c #FFB600", "( c #B66D24", "_ c #DB9200", ": c #B66D00", "< c #FFFFDB", "[ c #DBDBB6", "} c #6D4900", "| c #DBDB92", "1 c #494924", "2 c #240000", "3 c #926D24", "4 c #6D4924", "5 c #6D6D24", "6 c #242424", "7 c #DBDB6D", "8 c #6D6D49", "9 c #B6B649", "0 c #DBDB49", "a c #929224", "b c #926D00", "c c #924900", "d c #B64900", "e c #922400", "f c #490000", "g c #924924", "h c #B64924", "i c #DB4949", "j c #924949", "k c #492424", "l c #B69292", "m c #DB9292", "n c #DB92B6", "o c #6D0000", "p c #492400", "q c #922424", "r c #6D2424", "s c #DBB6B6", "t c #B692B6", "u c #6D2400", "v c #B62400", "w c #DB4900", "x c #DB6D24", "y c #B6B66D", "z c #DBDB24", "A c #B69200", "B c #926D49", "C c #242400", "D c #494900", "E c #000000", " ..+ .++ ", " @..#$.%&&&%.****+ ", " .$%&&%==%%%%&-*.$$; ", " $>,$'*=>=%==%)&!~{]$ ", " {],{&%=^///===%&~~${ ", " @,(%%%>>&**%_::$*<[@ ", " (:$$$}#!|;+<-12$%*[3 ", " {$%$4[!561!![>=]7+ ", " $$%%$!!78.&*-$__>{ ", " #>>>$*&&90&77$,_]# ", " #>]_$700a$0#.],__( ", " (]]_>.(b(#(@._,]:c ", " :__]$.@c3#{]d]:ef ", " e:_,,]]d#],d:dd(. ", " .$>>>]dd:gec:(ddhh]>=%&|+ ", " .%=___==],iijgkglmn{>>]=&*[ ", "@.%>____==>opoo2qrls(]__%&&$. ", "##]],,,,]=_d:f2fq4tu:__,]%>>$@", " #_:d,,,____,ofovrje_:,____,_b", " c:,,dvv,,,,wvddwvod,]$$$],,,g", " :]>]]:c,,,,ww,,,,vdx$%'%$]:c ", " ]>$]]]]_,,,,w,,,,w,$%**-*.( ", "@$77.]]]]_,,ww,],,,>$|70$$[c ", "y#]>].]]$>,,ww,],,,$7$$$$$+u ", " #(]]$$__$],ww,]_,]>.$]$$.gc} ", " $]>$00$]>]:wd:]_,]$7&7>z>(@p ", " @>>7>z7]]]d,::],:]{70>__>$@ ", " 3bb:A_>],:dd::::(]{$$((d:#c ", " p2pu::::cuddd:d::(]$(cc33p ", " 4fp}ccuf2cccgcuc}c#.BB;C2 ", " 33Dpp22 fpuu22p22p442E ", " 2E EEEEE "}; xteddy-2.2/images/icons/xcherubino.xpm0000644000265600020320000000251611143371632015060 00000000000000/* XPM */ static char * xcherubino_xpm[] = { "24 32 27 1", " c None", ". c #000000", "+ c #2B2B2B", "@ c #555555", "# c #805580", "$ c #805555", "% c #AA5580", "& c #AA8080", "* c #AA5555", "= c #808080", "- c #AA2B2B", "; c #AA2B55", "> c #00002B", ", c #AA002B", "' c #D42B55", ") c #D48080", "! c #552B55", "~ c #D45555", "{ c #802B55", "] c #802B2B", "^ c #80002B", "/ c #D45580", "( c #552B2B", "_ c #800000", ": c #2B002B", "< c #D42B2B", "[ c #AA0000", " .+@#####@+. ", " .+$%%%&**%&&$. ", " .@=*--;;----*&=+ ", " @&-----------;%=+ ", " >=;--------;-,-')#. ", " !%----------;,--~)# ", " +${;-------]];-,--~=> ", ".$***------;;;;;---'=> .", "+#;%*-,----;;---;*$#@. .", "$%-**--^----;---;*#@ ..", "#*-];-]];;---''~~*;#! ", "#*,^];-{;;;--;*~/*--*! ", "$*-,^;****~~;$$;/*^--$+ ", "(*--,]$%%///~$]{%{]---$.", "+$*-,]]]%%))))%{{{;---*(", ".]*;--{{]$%%))%]];-----$", " +$*-,-]^^{{{]]^]-;----#", " .$*--^_^^^^___^^^-'---#", " (*--^__^^^___^^_-'--*#", " (*--^_________^^;*''%(", " :$;--]_______^_^{%*#! ", " .#*;;'-^_____^^^]]{( ", " .%;--'~-__^]]]]]--;! ", " +%-_,;'-^^];-----;*#. ", " (%-__-<-]$;------<;%+ ", " (%-_^----*'<------'/! ", " +);_^---;/~'<-;-<'~/$ ", " +&~[_-<-;)~-,,,--'~/$ ", " .#/---'-;%/-[[[[['/)$ ", " +#/~~~${$&/--[[-'~&+ ", " . :$##$+>+$%))/~'~/$. ", " +. ... .(#&&%#$!. "}; xteddy-2.2/images/icons/xduck.xpm0000644000265600020320000000270511143371632014030 00000000000000/* XPM */ static char * xduck_xpm[] = { "26 32 31 1", " c None", ". c #DBB600", "+ c #B69200", "@ c #DB9200", "# c #B66D00", "$ c #926D00", "% c #492400", "& c #929249", "* c #6D4924", "= c #000000", "- c #92926D", "; c #6D0000", "> c #B62400", ", c #B64900", "' c #DB6D24", ") c #DB6D00", "! c #B69249", "~ c #DB4900", "{ c #DB4924", "] c #DB2400", "^ c #B69224", "/ c #922400", "( c #6D2400", "_ c #920000", ": c #DBDB24", "< c #490000", "[ c #490024", "} c #240000", "| c #924900", "1 c #FFB600", "2 c #FFDB00", " ", " .... ", " +@...... ", " +++@..+@. ", " ##+++$%&+@@ ", " #####*=-#++ ", " ;> ,,')##&&!++++ ", " ;;>,~~{],#^^+++++ ", " /;;>]]]]]#++@@@++ ", " /(;;>>>]])@@@..@+ ", " ;;_>>>~~,++@@@+ : ", " <[;;__//_#+++++... ", " <<<<<<<;;_,##+++... ", " <}}<<;___|###++@1... ", " <<;;___>,####++111.. ", " ;;_/,,#######@1211.. ", " ||,#######@@1111.. ", " ||,#####+##@@@11..1 ", " $|,#####+++@@@@....1 ", " #|,#####++++@@@@...... ", " ########++++@@@@...... ", " #########++++@@@@...... ", " #########++++@@@@...... ", " #########++++@++@@..... ", " #########++++++@@@@@@.. ", " ##########+++++@@@@@@.. ", " #########+++++@@@+@@. ", " ########+++++++@@+@@ ", " ########++++++++@@ ", " ######+++++++++ ", " #####++++++ ", " "}; xteddy-2.2/images/icons/xhedgehog.xpm0000644000265600020320000000244211143371632014652 00000000000000/* XPM */ static char * xhedgehog_xpm[] = { "25 32 22 1", " c None", ". c #000000", "+ c #242424", "@ c #494949", "# c #6D4949", "$ c #6D6D6D", "% c #240024", "& c #242449", "* c #492424", "= c #492449", "- c #926D6D", "; c #242400", "> c #6D496D", ", c #494924", "' c #924949", ") c #929292", "! c #926D92", "~ c #240000", "{ c #6D2424", "] c #6D4924", "^ c #926D49", "/ c #000024", " .+@@#$$@+%. ", " &@@@@@@@#$&. ", " .+@*++*++*@@#@. ", " +$@++*++++**@#= ", " .@@*****++++**@@. ", " &@+@#+++++++**#$+ ", " +=++#-@++;;;+*###@. ", " .=*++*>#+;;;;+*@**@. ", " %@***@##*;;;;+***,@. ", " +@++@####*;;++**#@#. ", " +*+*#####@*****#>>>+ ", " +*+*##'#####***#>>#@. ", " ++;*##-**#->####-#@>% ", " .*++*#$>>$-$#*+@#$@@#. ", " %*;++@-'-)!-@%%+@$$$$+ ", " +*++~*>-!!-$@%.+>-----+ ", " +$#*+;*-!!--$@+#------>.", ".@->#{**@$$------------>.", ".#>''''######-!!-##---->.", "+>$'''''-'#{*>--#]#--!-#.", "@>-'^----''#]##]]##-!)$+ ", "@>-'---$^'''''#####$-!= ", "*@$---$#'^^-----##-!!!$+ ", "**@$$--!--'-^^--#-!---!$.", "**-!----!-'''--'-!-->#-!@", "*@$-->##-!-#'--#--#***@-!", "+@$-#***#--#'-'#--*+***-)", ".@$-*****--##'##--*+++*-!", ".@--*+*+*-$####@--#*+*#!@", " &!!#***#-@++*++@!!###->+", " +$!-##$-@/ .. /@$@=++. ", " .+++=@=+. .... ... "}; xteddy-2.2/images/icons/xklitze.xpm0000644000265600020320000000347311143371632014407 00000000000000/* XPM */ static char * xklitze_xpm[] = { "32 32 43 1", " c None", ". c #6D2400", "+ c #492400", "@ c #240000", "# c #6D2424", "$ c #6D4924", "% c #924924", "& c #B69249", "* c #DBB649", "= c #DBDB49", "- c #926D24", "; c #000000", "> c #490000", ", c #FFFF49", "' c #DBDB24", ") c #B69224", "! c #6D6D00", "~ c #FFDB24", "{ c #6D4949", "] c #929292", "^ c #B6B6B6", "/ c #DBDBB6", "( c #92926D", "_ c #242400", ": c #6D4900", "< c #926D00", "[ c #DBDB92", "} c #DBFFDB", "| c #B6B692", "1 c #926D49", "2 c #494924", "3 c #924900", "4 c #492424", "5 c #B6B66D", "6 c #B6926D", "7 c #DBB624", "8 c #B66D24", "9 c #DBB66D", "0 c #6D6D49", "a c #926D6D", "b c #DBB6B6", "c c #DBDBDB", "d c #929249", " ", " ", " ", " ", " ", " ", " ", " ", " ", " .+++@ ", " #$.+@@@@@ ", " +++ #$%&*=-@;;@ ", " +@@>##%=,,')!;@@@> ", " @@+##-=~~~')&{]^/(_", " $.$==):<*[}/|1112", " $#+)'3@@4/[56$+@ ", " +++ .$#+)78+@@6|51$@ ", "@@>++++@@++++#+$*9$@@46$$+@ ", "+@++@@@@;@@>@+0|//+@+$++>@ ", " +@@@@@@;@@44|//|6+++@@@@ ", " +@@@@@+$$abc/6%$+@@@ ", " +@@>+$$dd1611+@ ", " @+@@@ ", " ", " ", " ", " ", " ", " ", " ", " ", " "}; xteddy-2.2/images/icons/xnamu.xpm0000644000265600020320000000320511143371632014036 00000000000000/* XPM */ static char * xnamu_xpm[] = { "32 32 31 1", " c None", ". c #240000", "+ c #926D49", "@ c #DBDBDB", "# c #6D4949", "$ c #000000", "% c #242400", "& c #492424", "* c #DBDBB6", "= c #DBB6B6", "- c #B6B6B6", "; c #929292", "> c #92926D", ", c #926D6D", "' c #6D6D49", ") c #FFFFDB", "! c #FFFFFF", "~ c #FFDBDB", "{ c #DBB692", "] c #492400", "^ c #FFDBB6", "/ c #B6926D", "( c #B69249", "_ c #B69292", ": c #242424", "< c #B66D49", "[ c #924924", "} c #6D4924", "| c #DBB66D", "1 c #6D2424", "2 c #6D2400", " ", " ", " ", " ", " ", " ", " ", " ", " ", " ", " .. ", " ..... .+@@#$$$ ", " .....$$$%%$$$$$$ ", " #.$$$$$$$&*=-;>,,", " &..$$$$$$$')!)~*{ ", " ]...$$$$$$$$$&*^{/+ ", " ..$.. .&&.$.$$$$$$$$$$$/{(+ ", " .$$$$$$$#!!)_#:.&'#$$$$..<+[ ", ".$$$%%$$.&__*))~~**{%..$.}[} ", "$$$$}//,&...#*{{|/+++]]]}} ", " ///++//+[}12]]]] ", " }}}} ", " ", " ", " ", " ", " ", " ", " ", " ", " ", " "}; xteddy-2.2/images/icons/xorca.xpm0000644000265600020320000000243111143371632014022 00000000000000/* XPM */ static char * xorca_xpm[] = { "30 32 11 1", " c None", ". c #242424", "+ c #000000", "@ c #002424", "# c #6D6D6D", "$ c #929292", "% c #B6B6B6", "& c #DBDBDB", "* c #FFFFFF", "= c #244949", "- c #494949", " ", " ", " ", " ", " ", " ", " ", " . ", " +. ", " +.. ", " +........++. ", " +++++++........ ", " ++++++........++..+ ", " ++++...............++ ", " ++++.................@++ ", " +++..................... ", " ++....#$%&&&%$#........... ", " +++..#&&&&&***&$=...........", " ++.-$&&&%%%%&&-........-%-..", " +.-#& %%#-###$....$#..", " ++.. $$$%%&$.......", " ++.. %%&*&-......", " +.... %%&*%...#-.", "+..... $%&*%...-.", ".. %&*&---.", " %&&&#-.", " ", " ", " ", " ", " ", " "}; xteddy-2.2/images/icons/xpenguin.xpm0000644000265600020320000000310211143371632014537 00000000000000/* XPM */ static char * xpenguin_xpm[] = { "27 32 37 1", " c None", ". c #000000", "+ c #242424", "@ c #494949", "# c #B6B6B6", "$ c #92926D", "% c #929292", "& c #494924", "* c #B69224", "= c #B69200", "- c #242400", "; c #DBB600", "> c #DBDB24", ", c #FFDB24", "' c #DBB624", ") c #492400", "! c #DB9200", "~ c #FFB624", "{ c #929249", "] c #B69249", "^ c #B6926D", "/ c #DBDBDB", "( c #FFFFFF", "_ c #6D6D6D", ": c #DBDBB6", "< c #6D6D49", "[ c #FFDB92", "} c #926D49", "| c #926D00", "1 c #FFB600", "2 c #494900", "3 c #DBB6B6", "4 c #B66D00", "5 c #DBDB92", "6 c #240000", "7 c #6D4900", "8 c #924900", " .... ", " .....+. ", " .....+@.. ", " ......... ", " .....++.. ", " +#@.$#%.. ", " @@%.#+#+. ", " @&*=*-#.. ", " -*;>,,'... ", " )!;,~!=... ", " +{=!=]#+@+ ", " +#^]^/(%... ", " .#(##/(((+.. ", " .@((((((((_... ", " .._((((((//%.... ", " ..#(((((((/:@+... ", " +@((((((((((#.+.. ", " ../(((((((((((@.+.. ", " .@((((((((((((_.... ", " .+%((((((((((((_.... ", " .+#((((((((((((%.... ", " .+#((((((((((((_.... ", " ;=<((((((((((([}..++ ", " !~~|@/(((((((((;|...! ", " ;1~~~~2+#(((((((3;=2241 ", " 1~~~~~!../((((((#!;!!1~~ ", " ;~~~~~~|+/((((((_!~11~~~~ ", " ;~~~~~~;5(((((/@-!~~~~~~~;", "!1~~~~~~1|%###_..-!~~~~~; ", "4=!!;1~~;46......)=1~1!= ", " ||4=!476 -|!!4 ", " 77 788 "}; xteddy-2.2/images/icons/xpuppy.xpm0000644000265600020320000000274611143371632014264 00000000000000/* XPM */ static char * xpuppy_xpm[] = { "27 32 31 1", " c None", ". c #000000", "+ c #552B55", "@ c #805580", "# c #555555", "$ c #00002B", "% c #2B2B2B", "& c #555580", "* c #D4AAAA", "= c #D4D4D4", "- c #AAAAAA", "; c #D4D4AA", "> c #FFD4D4", ", c #AAAAD4", "' c #AA80AA", ") c #D4D4FF", "! c #2B2B55", "~ c #AA8080", "{ c #8080AA", "] c #D4AAD4", "^ c #808080", "/ c #FFD4AA", "( c #AAAA80", "_ c #808055", ": c #805555", "< c #55552B", "[ c #2B002B", "} c #80552B", "| c #552B2B", "1 c #AA8055", "2 c #002B2B", " .+@##$ ", " ..%&*===-% ", " ..+&-;=>>=>,#.. ", " .#'**===>>>>)='#$. ", " . .#-====>=>>>>>===-!. ", " !-====>===)>=>====-% ", " .~;==;===)))========{. ", " .. +*===--==)==*===,>==]! ", " . $'====^-==/(##^=)=)===@.", " ..#*==*=-*==*#%!#-==)==={.", ". %-****=]*===-##{====*=={.", " ._**---*====>=*-====,*=={.", " %'-,-~:-======;*====,*;=^.", " $@'{::<:-=====--**=-^---#.", " .[[.<~~}:-,]]*-----~||##. ", " ...^--~|#-,,==]]]--^... ", " ...%~-**1}#^----'~~--! ", "....$~-***1}%%%%#:^-*=^. ", "...$.^-****~#%2%_-,===,% ", "..$$2&-***;*-#|^-,]====^. ", " ..!^^-**;;==#%^,-=))==,% .", " .#-~'*;;;==-^:-=))))==&. ", " .#'~~*;/;==,~_~=)===>=,% ", " .|~~-*;/==)='--))==>>==# ", " .:~-;======---===>>/;={.", " .|~*=======,-'====;;==-.", " %^*====>==,-',=***;;;'.", " .#-=*=====-{{&@{-**--#.", " .'**====-&[$..!{--'#. ", " |@-=**-#. .[+&#. ", " $@--{!. ... .", " .. .!![. ."}; xteddy-2.2/images/icons/xruessel.xpm0000644000265600020320000000317111143371632014562 00000000000000/* XPM */ static char * xruessel_xpm[] = { "32 32 30 1", " c None", ". c #B6B6B6", "+ c #DBDBDB", "@ c #DBDBB6", "# c #B6B692", "$ c #FFDBDB", "% c #DBB6B6", "& c #FFFFDB", "* c #DBDB92", "= c #DBB692", "- c #B6B66D", "; c #FFDBB6", "> c #B6926D", ", c #B69249", "' c #6D4924", ") c #DBB66D", "! c #926D49", "~ c #B66D49", "{ c #926D24", "] c #92926D", "^ c #929249", "/ c #B6B649", "( c #492400", "_ c #240000", ": c #924924", "< c #6D2400", "[ c #DBDB6D", "} c #490000", "| c #929224", "1 c #6D6D24", " ", " ", " ", " ", " ", " ", " .+@ ", " #$@$$% ", " #@@@@@$$&# ", " @@**+$$$$+ ", " *@**=+$$$&+% ", " @@@*--;$$$@= ", " @@- *@***-=@@@>,> ", " -,,> '***)-!!~{'-****=# ", " -**#!=*))--]-**=)***@@@# ", " ^-***-----=**=))-)))****# ", " !----,,,-****)))---)***=^ ", " {,>,^{!-***)-/,,,)***==- ", " '''((^***))--{^=****)-- ", " !**))-,,'!)***))-^- ", " -))-,!'(',===))-^* ", " '{{!{(_ (,--=),{* ", " ______ ((:{:'<(/[ ", " _____} (_____(|[ ", " _____ (____ 1-- ", " -* ", " ^^", " ", " ", " ", " ", " "}; xteddy-2.2/images/icons/xteddy.xpm0000644000265600020320000000234311143371632014211 00000000000000/* XPM */ static char * xteddy_xpm[] = { "25 32 18 1", " c None", ". c #DBB692", "+ c #B6926D", "@ c #DBB66D", "# c #FFB692", "$ c #B69249", "% c #926D49", "& c #DB926D", "* c #6D4949", "= c #B66D49", "- c #6D4924", "; c #FFFFB6", "> c #B6B66D", ", c #FFDBB6", "' c #FFDB92", ") c #DB6D49", "! c #DB4949", "~ c #B6B692", " ... ", " ++++@###...###...# ", " $%%$&@@&&@@@@.++++ ", " $%*=+&&&++&&&&@+%%& ", " +%%$=+++++++$+@@-%+ ", " +%%=%=+$+++$$+.@+=+ ", " $=$%%$$$++$+@.@++. ", " +$=%%+..@$+&.@+. ", " $==%%;;;;>*&... ", " $=%$,;..,,+@.. ", " +$$$,,@@,'@.@. ", " +$=#''##'&&+ ", " .+==&''#&))& ", " #@&$=!))))!!)=+ ", " ##@+==)!!)))!=%=+& ", " ...&+=)!!==$=!)%%%$+. ", " ..@&&$=!!!==+$)!=%%%=+. ", " @&&&&+=)!==%++=!=%%%$+@.", ".++++&=$==+$=+++)+%%%+&&.", "@+++++=$++++=+++&++==$+@.", "&$$$$+++&&&+$$+&&++$$$+@.", "@+$$++++@@@+$$&@@&++$++@.", " .++%-%%++.@$+@@+%%+~+.. ", " *%%%%+++@+++=%%+ ", " %%$%%$$+++++&+$+ ", " $$$=$$$=$$$+&&@+ ", " +$$$$$+$%%=$+&&@. ", " @&&+++&&%=%$++&@. ", " .+@@&&@@+%%$++++. ", " +..@&@++$$++&+@ ", " .+.&+&..+@.@@.. ", " ...... ..... "}; xteddy-2.2/images/icons/xtrouble.xpm0000644000265600020320000000264111143371632014555 00000000000000/* XPM */ static char * xtrouble_xpm[] = { "29 32 22 1", " c None", ". c #000000", "+ c #242424", "@ c #240000", "# c #6D4924", "$ c #B66D49", "% c #926D49", "& c #924924", "* c #492424", "= c #6D4949", "- c #B66D24", "; c #B64924", "> c #B64900", ", c #B66D00", "' c #924900", ") c #242400", "! c #926D24", "~ c #6D2424", "{ c #6D2400", "] c #492400", "^ c #6D4900", "/ c #924949", " .+. @#$$$$%#+&%@ ", " *$=*&-$--------* ", " .#$$--$---------#. ", " .#-;-&---->,,---#. ", " *&&-&;>;;>'',--#. ", " )#&&;'#&--&#>-$*. ", " .#'&&'&-------%. ", " .##&&&------$-%. ", " .#&&&!--&~{--$%. ", " *&&&&&-&@]&--%*. ", " *#####&&-#^;-->-#. ", " .*#{{{#~^&-&';;'>>-#. ", " *&'{{{~{{^&&&&'''>>-) ", " .&'''{{^##&&-;;;''>>-# ", " *-;''{{^&&&&;---&'>>,-*. ", " #--;'{^&&''&-----''>>,;#+ ", " .#--&^{&''''>,----;''>,>,-]", ".*#&;&'{'&''''>,--,-,;''>,,-!", "#-;'-&'''&&'''>>-,,,,-&'>>,,$", "&-;--&&'&&&'';'>-->,---''>,-#", "$----&&&&&&&&;''>,>>;>-,;-;*.", "%---&&&;;'&&'&&'>--''>>>,-*. ", "*&&&#&'>>>>&''&';-&''>>>>-* ", ".)***#;;>>';;&&&&&'''''>>-&@ ", " @&&;;';;,--&{'''>'''>>-#.", " @&&;>,->>,,>''''''''>>>-+", " .*&'>>>>>>>>''''''''>>-$*", " *&'>>>>>>>-''''''''>;-$*", " #;'>>>>>>>,;'''''''&;-/@", " #-&;;;;;;;-&''''''&&-/+ ", " @#-&&---&&#]*~&#####*@ ", " @*#&&/#*+@ .@)@@... "}; xteddy-2.2/images/icons/xtuxxy.xpm0000644000265600020320000000301511143371632014276 00000000000000/* XPM */ static char * xtuxxy_xpm[] = { "24 32 40 1", " c None", ". c #000000", "+ c #242424", "@ c #494949", "# c #DBDBDB", "$ c #B6B6B6", "% c #6D6D6D", "& c #002400", "* c #6D4949", "= c #242400", "- c #926D24", "; c #B69224", "> c #DBB624", ", c #DBB649", "' c #B6926D", ") c #494924", "! c #926D00", "~ c #B69200", "{ c #DB9200", "] c #DBB600", "^ c #6D6D24", "/ c #B66D00", "( c #6D4924", "_ c #492400", ": c #6D4900", "< c #6D6D00", "[ c #926D49", "} c #B69249", "| c #926D6D", "1 c #929292", "2 c #B6B6DB", "3 c #92926D", "4 c #DBDBFF", "5 c #DB9224", "6 c #B69292", "7 c #6D6D49", "8 c #492424", "9 c #B6B649", "0 c #B6B624", "a c #929224", " ...+ ", " .....+ ", " ......@ ", " ....@++#@ ", " ...@$$+%@ ", " &..%@+@@*@ ", " =&.++=-;>,' ", " =..=)!~~{]> ", " =&..^!/~~~] ", " =&..(__:::^ ", " =&.+^<---;[ ", " =+@%[--}|++ ", " ++@11$$#1++ ", " ++@1$2##1.++ ", " +++@1$$##$..+& ", " ++++@1$$###@.+++ ", " +++++@11$###$&+++=+ ", " ++++.+@|1$2###@+++++++", " +=++..+@|1$$###$+++++++", "++++ ...%31$$##4# @) ", "+==+ ..+111$$####%-~5 ", "+&.. ..+116$$####7~{] ", "+=&....+|16$$###6(~]]> ", "+++&&&=+)36$$##$)!~{] ", " ==.+==)))71$$1)=!~;> ", " =.&==)~~~;-)+8+)!-, ", " &..=^~~~/{;@@@^-;9 ", " ++:!!~//{,@@+^-0 ", " ^!///{>, ", " (^-~~>>} ", " (^a;;9 ", " ^-} "};