From sean at seanoneill.info Tue Apr 1 19:56:12 2003 From: sean at seanoneill.info (sean at seanoneill.info) Date: Tue, 1 Apr 2003 19:56:12 -0800 Subject: [Orca-checkins] rev 227 - branches/orca/import_orca_services_2.0/lib Message-ID: <200304020356.h323uCQk013743@orcaware.com> Author: sean at seanoneill.info Date: 2003-04-01 19:56:04 -0800 (Tue, 01 Apr 2003) New Revision: 227 Added: branches/orca/import_orca_services_2.0/lib/Orca_Services/ Removed: branches/orca/import_orca_services_2.0/lib/Orca_services/ Log: Moved: lib/Orca_services -> lib/Orca_Services Log: * Moved lib/Orca_services to lib/Orca_Services Copied: Orca_Services (from rev 222, branches/orca/import_orca_services_2.0/lib/Orca_services) From blair at orcaware.com Fri Apr 4 19:46:47 2003 From: blair at orcaware.com (blair at orcaware.com) Date: Fri, 4 Apr 2003 19:46:47 -0800 Subject: [Orca-checkins] rev 228 - in trunk/orca: . packages packages/Time-HiRes-1.45 packages/Time-HiRes-1.45/t Message-ID: <200304050346.h353klXU014283@orcaware.com> Author: blair Date: 2003-04-04 19:46:36 -0800 (Fri, 04 Apr 2003) New Revision: 228 Added: trunk/orca/packages/Time-HiRes-1.45/ Removed: trunk/orca/packages/Time-HiRes-1.44/ Modified: trunk/orca/INSTALL trunk/orca/configure.in trunk/orca/packages/Time-HiRes-1.45/Changes trunk/orca/packages/Time-HiRes-1.45/HiRes.pm trunk/orca/packages/Time-HiRes-1.45/Makefile.PL trunk/orca/packages/Time-HiRes-1.45/t/HiRes.t Log: Upgrade Time::HiRes from 1.44 to 1.45. * INSTALL (Determine which Perl modules need compiling and installing): Update all references to Time::HiRes's version number from 1.44 to 1.45. * configure.in: Bump Time::HiRes's version number to 1.45. * packages/Time-HiRes-1.45: Renamed from packages/Time-HiRes-1.44. Directory contents updated from Time-HiRes-1.45.tar.gz. Modified: trunk/orca/configure.in ============================================================================== --- trunk/orca/configure.in (original) +++ trunk/orca/configure.in 2003-04-04 19:46:45.000000000 -0800 @@ -41,8 +41,8 @@ RRDTOOL_VER=1.000411 STORABLE_DIR=Storable-2.06 STORABLE_VER=2.06 -TIME_HIRES_DIR=Time-HiRes-1.44 -TIME_HIRES_VER=1.44 +TIME_HIRES_DIR=Time-HiRes-1.45 +TIME_HIRES_VER=1.45 AC_SUBST(COMPRESS_ZLIB_DIR) AC_SUBST(DATA_DUMPER_DIR) Modified: trunk/orca/INSTALL ============================================================================== --- trunk/orca/INSTALL (original) +++ trunk/orca/INSTALL 2003-04-04 19:46:45.000000000 -0800 @@ -176,7 +176,7 @@ Math::IntervalSearch >= 1.05 >= 1.05 1.05 RRDs >= 1.000411 >= 1.0.41 1.0.41 Storable >= 2.06 >= 2.06 2.06 - Time::HiRes Not required by Orca 1.44 + Time::HiRes Not required by Orca 1.45 All seven of these modules are included with the Orca distribution in the packages directory. When you configure Orca in step 3), @@ -277,10 +277,10 @@ Time::HiRes - http://www.perl.com/CPAN/authors/id/J/JH/JHI/Time-HiRes-1.44.tar.gz + http://www.perl.com/CPAN/authors/id/J/JH/JHI/Time-HiRes-1.45.tar.gz - % gunzip -c Time-HiRes-1.44.tar.gz | tar xvf - - % cd Time-HiRes-1.44 + % gunzip -c Time-HiRes-1.45.tar.gz | tar xvf - + % cd Time-HiRes-1.45 % perl Makefile.PL % make % make test Copied: Time-HiRes-1.45 (from rev 227, trunk/orca/packages/Time-HiRes-1.44) Modified: trunk/orca/packages/Time-HiRes-1.45/t/HiRes.t ============================================================================== --- trunk/orca/packages/Time-HiRes-1.44/t/HiRes.t (original) +++ trunk/orca/packages/Time-HiRes-1.45/t/HiRes.t 2003-04-04 19:46:45.000000000 -0800 @@ -30,7 +30,7 @@ use Config; -my $xdefine; +my $xdefine = ''; if (open(XDEFINE, "xdefine")) { chomp($xdefine = ); Modified: trunk/orca/packages/Time-HiRes-1.45/HiRes.pm ============================================================================== --- trunk/orca/packages/Time-HiRes-1.44/HiRes.pm (original) +++ trunk/orca/packages/Time-HiRes-1.45/HiRes.pm 2003-04-04 19:46:45.000000000 -0800 @@ -15,7 +15,7 @@ d_usleep d_ualarm d_gettimeofday d_getitimer d_setitimer d_nanosleep); -$VERSION = '1.44'; +$VERSION = '1.45'; $XS_VERSION = $VERSION; $VERSION = eval $VERSION; Modified: trunk/orca/packages/Time-HiRes-1.45/Makefile.PL ============================================================================== --- trunk/orca/packages/Time-HiRes-1.44/Makefile.PL (original) +++ trunk/orca/packages/Time-HiRes-1.45/Makefile.PL 2003-04-04 19:46:45.000000000 -0800 @@ -14,8 +14,8 @@ my $LIBS; my $XSOPT; -unless($ENV{PERL_CORE}) { # This trick from Encode/Makefile.PL. - $ENV{PERL_CORE} = 1 if ($^X =~ m{\bminiperl[^/\\\]>:]*$}o); +unless($ENV{PERL_CORE}) { + $ENV{PERL_CORE} = 1 if grep { $_ eq 'PERL_CORE=1' } @ARGV; } # Perls 5.002 and 5.003 did not have File::Spec, fake what we need. Modified: trunk/orca/packages/Time-HiRes-1.45/Changes ============================================================================== --- trunk/orca/packages/Time-HiRes-1.44/Changes (original) +++ trunk/orca/packages/Time-HiRes-1.45/Changes 2003-04-04 19:46:45.000000000 -0800 @@ -1,9 +1,15 @@ Revision history for Perl extension Time::HiRes. +1.45 + - guarantee that $xdefine in HiRes.t is always defined + (perl change #19109, from IlyaZ) + - a cleaner way to detect PERL_CORE (perl change #19111, + from IlyaZ) + 1.44 - add hints/irix.pl to turn off overly POSIX flags that cause hide struct timespec to be hidden (and compilation - to fail) + to fail) (bleadperl change #19085) - documentation tweaks 1.43 From blair at orcaware.com Sat Apr 12 10:46:28 2003 From: blair at orcaware.com (Blair Zajac) Date: Sat, 12 Apr 2003 10:46:28 -0700 Subject: [Orca-checkins] rev 229 - in trunk/orca: . packages/rrdtool-1.0.41 packages/rrdtool-1.0.42 packages/rrdtool-1.0.42/config packages/rrdtool-1.0.42/contrib/trytime packages/rrdtool-1.0.42/doc packages/rrdtool-1.0.42/gd1.3 packages/rrdtool-1.0.42/perl-piped packages/rrdtool-1.0.42/perl-shared packages/rrdtool-1.0.42/src Message-ID: <200304121746.h3CHkSb9001771@orcaware.com> Author: blair Date: Sat Apr 12 10:45:54 2003 New Revision: 229 Added: trunk/orca/packages/rrdtool-1.0.42/ - copied from rev 228, trunk/orca/packages/rrdtool-1.0.41/ trunk/orca/packages/rrdtool-1.0.42/gd1.3/gdlucidab12l2.c trunk/orca/packages/rrdtool-1.0.42/gd1.3/gdlucidab12l2.h trunk/orca/packages/rrdtool-1.0.42/gd1.3/gdlucidan10l2.c trunk/orca/packages/rrdtool-1.0.42/gd1.3/gdlucidan10l2.h trunk/orca/packages/rrdtool-1.0.42/perl-piped/Makefile.PL.in Removed: trunk/orca/packages/rrdtool-1.0.41/ Modified: trunk/orca/INSTALL trunk/orca/configure.in trunk/orca/packages/rrdtool-1.0.42/CHANGES trunk/orca/packages/rrdtool-1.0.42/Makefile.am trunk/orca/packages/rrdtool-1.0.42/Makefile.in trunk/orca/packages/rrdtool-1.0.42/config/acconfig.h trunk/orca/packages/rrdtool-1.0.42/config/config.h.in trunk/orca/packages/rrdtool-1.0.42/configure trunk/orca/packages/rrdtool-1.0.42/configure.in trunk/orca/packages/rrdtool-1.0.42/contrib/trytime/Makefile.am trunk/orca/packages/rrdtool-1.0.42/contrib/trytime/Makefile.in trunk/orca/packages/rrdtool-1.0.42/doc/RRDp.txt trunk/orca/packages/rrdtool-1.0.42/doc/RRDs.txt trunk/orca/packages/rrdtool-1.0.42/doc/bin_dec_hex.txt trunk/orca/packages/rrdtool-1.0.42/doc/cdeftutorial.txt trunk/orca/packages/rrdtool-1.0.42/doc/rpntutorial.txt trunk/orca/packages/rrdtool-1.0.42/doc/rrdcreate.txt trunk/orca/packages/rrdtool-1.0.42/doc/rrddump.txt trunk/orca/packages/rrdtool-1.0.42/doc/rrdfetch.txt trunk/orca/packages/rrdtool-1.0.42/doc/rrdgraph.html trunk/orca/packages/rrdtool-1.0.42/doc/rrdgraph.pod trunk/orca/packages/rrdtool-1.0.42/doc/rrdgraph.txt trunk/orca/packages/rrdtool-1.0.42/doc/rrdinfo.txt trunk/orca/packages/rrdtool-1.0.42/doc/rrdlast.txt trunk/orca/packages/rrdtool-1.0.42/doc/rrdresize.txt trunk/orca/packages/rrdtool-1.0.42/doc/rrdrestore.txt trunk/orca/packages/rrdtool-1.0.42/doc/rrdtool.txt trunk/orca/packages/rrdtool-1.0.42/doc/rrdtune.txt trunk/orca/packages/rrdtool-1.0.42/doc/rrdtutorial.es.txt trunk/orca/packages/rrdtool-1.0.42/doc/rrdtutorial.html trunk/orca/packages/rrdtool-1.0.42/doc/rrdtutorial.pod trunk/orca/packages/rrdtool-1.0.42/doc/rrdtutorial.txt trunk/orca/packages/rrdtool-1.0.42/doc/rrdupdate.txt trunk/orca/packages/rrdtool-1.0.42/doc/rrdxport.txt trunk/orca/packages/rrdtool-1.0.42/gd1.3/Makefile.am trunk/orca/packages/rrdtool-1.0.42/gd1.3/Makefile.in trunk/orca/packages/rrdtool-1.0.42/perl-piped/RRDp.pm trunk/orca/packages/rrdtool-1.0.42/perl-shared/RRDs.pm trunk/orca/packages/rrdtool-1.0.42/rrdtool.spec trunk/orca/packages/rrdtool-1.0.42/src/gdpng.c trunk/orca/packages/rrdtool-1.0.42/src/gifsize.c trunk/orca/packages/rrdtool-1.0.42/src/pngsize.c trunk/orca/packages/rrdtool-1.0.42/src/rrd.h trunk/orca/packages/rrdtool-1.0.42/src/rrd_cgi.c trunk/orca/packages/rrdtool-1.0.42/src/rrd_create.c trunk/orca/packages/rrdtool-1.0.42/src/rrd_diff.c trunk/orca/packages/rrdtool-1.0.42/src/rrd_dump.c trunk/orca/packages/rrdtool-1.0.42/src/rrd_error.c trunk/orca/packages/rrdtool-1.0.42/src/rrd_fetch.c trunk/orca/packages/rrdtool-1.0.42/src/rrd_format.c trunk/orca/packages/rrdtool-1.0.42/src/rrd_format.h trunk/orca/packages/rrdtool-1.0.42/src/rrd_graph.c trunk/orca/packages/rrdtool-1.0.42/src/rrd_graph.h trunk/orca/packages/rrdtool-1.0.42/src/rrd_info.c trunk/orca/packages/rrdtool-1.0.42/src/rrd_last.c trunk/orca/packages/rrdtool-1.0.42/src/rrd_open.c trunk/orca/packages/rrdtool-1.0.42/src/rrd_resize.c trunk/orca/packages/rrdtool-1.0.42/src/rrd_restore.c trunk/orca/packages/rrdtool-1.0.42/src/rrd_tool.c trunk/orca/packages/rrdtool-1.0.42/src/rrd_tool.h trunk/orca/packages/rrdtool-1.0.42/src/rrd_tune.c trunk/orca/packages/rrdtool-1.0.42/src/rrd_update.c trunk/orca/packages/rrdtool-1.0.42/src/rrd_xport.c trunk/orca/packages/rrdtool-1.0.42/src/rrd_xport.h Log: Update rrdtool from 1.0.41 to 1.0.42. * configure.in: Bump the required RRDs Perl VERSION number from 1.000411 to 1.000421 and update the directory to find rrdtool in from rrdtool-1.0.41 to rrdtool-1.0.42. * INSTALL (Determine which Perl modules need compiling and installing): Bump the required RRDs Perl VERSION number from 1.000411 to 1.000421 and update the RRDs package version from 1.0.41 to 1.0.42. * packages/rrdtool-1.0.42: Renamed from packages/rrdtool-1.0.41. Directory contents updated from rrdtool-1.0.42.tar.gz. Modified: trunk/orca/INSTALL ============================================================================== --- trunk/orca/INSTALL (original) +++ trunk/orca/INSTALL Sat Apr 12 10:45:54 2003 @@ -174,7 +174,7 @@ Devel::DProf Not required by Orca 19990108 Digest::MD5 >= 2.24 >= 2.24 2.24 Math::IntervalSearch >= 1.05 >= 1.05 1.05 - RRDs >= 1.000411 >= 1.0.41 1.0.41 + RRDs >= 1.000421 >= 1.0.42 1.0.42 Storable >= 2.06 >= 2.06 2.06 Time::HiRes Not required by Orca 1.45 Modified: trunk/orca/configure.in ============================================================================== --- trunk/orca/configure.in (original) +++ trunk/orca/configure.in Sat Apr 12 10:45:54 2003 @@ -37,8 +37,8 @@ DIGEST_MD5_VER=2.24 MATH_INTERVALSEARCH_DIR=Math-Interpolate-1.05 MATH_INTERVALSEARCH_VER=1.05 -RRDTOOL_DIR=rrdtool-1.0.41 -RRDTOOL_VER=1.000411 +RRDTOOL_DIR=rrdtool-1.0.42 +RRDTOOL_VER=1.000421 STORABLE_DIR=Storable-2.06 STORABLE_VER=2.06 TIME_HIRES_DIR=Time-HiRes-1.45 Modified: trunk/orca/packages/rrdtool-1.0.42/CHANGES ============================================================================== --- trunk/orca/packages/rrdtool-1.0.41/CHANGES (original) +++ trunk/orca/packages/rrdtool-1.0.42/CHANGES Sat Apr 12 10:45:54 2003 @@ -2,6 +2,29 @@ --------------------------- - bugfix, + enhancement, * contrib, = RELEASE --------------------------------------------- += 1.0.42 2003/04/12 -- Tobi + +- 2003/04/10 - Fabrice Bacchella + make build realy location independent + ++ 2003/04/04 - Micha?^B Suszko" + added --enable-latin2 option to config + +- 2003/03/30 - Burton M. Strauss III + rrd_uptate should not crash on a bad option + +- 2003/03/13 - Tobias Oetiker + fixed rrdcgi to not segfault enen when abused. + +- 2003/03/10 - Sasha Mikheev + handle negative numbers with DERIVE and COUNTER + +- 2003/03/01 - Christophe Kalt + don't display legends for [HV]RULEs out of graph bounds (rrdgraph) + +- 2003/03/01 Matt Zimmerman + don't print image size when outputting to stdout + = 1.0.41 2003/02/19 -- Tobi - 2003/02/16 Matthias Lederhofer Modified: trunk/orca/packages/rrdtool-1.0.42/Makefile.am ============================================================================== --- trunk/orca/packages/rrdtool-1.0.41/Makefile.am (original) +++ trunk/orca/packages/rrdtool-1.0.42/Makefile.am Sat Apr 12 10:45:54 2003 @@ -8,7 +8,7 @@ # the following files are not mentioned in any other Makefile EXTRA_DIST = COPYRIGHT CHANGES NT-BUILD-TIPS.txt TODO CONTRIBUTORS rrdtool.spec \ perl-piped/MANIFEST perl-piped/README perl-piped/rrdpl.ds? \ - perl-piped/RRDp.pm perl-piped/Makefile.PL perl-piped/t/base.t \ + perl-piped/RRDp.pm perl-piped/Makefile.PL.in perl-piped/t/base.t \ perl-shared/MANIFEST perl-shared/README perl-shared/RRDs.xs \ perl-shared/ntmake.pl perl-shared/Makefile.PL.in perl-shared/t/base.t \ perl-shared/rrdpl.ds? perl-shared/RRDs.pm rrdtool.spec Modified: trunk/orca/packages/rrdtool-1.0.42/Makefile.in ============================================================================== --- trunk/orca/packages/rrdtool-1.0.41/Makefile.in (original) +++ trunk/orca/packages/rrdtool-1.0.42/Makefile.in Sat Apr 12 10:45:54 2003 @@ -92,7 +92,7 @@ # the following files are not mentioned in any other Makefile -EXTRA_DIST = COPYRIGHT CHANGES NT-BUILD-TIPS.txt TODO CONTRIBUTORS rrdtool.spec perl-piped/MANIFEST perl-piped/README perl-piped/rrdpl.ds? perl-piped/RRDp.pm perl-piped/Makefile.PL perl-piped/t/base.t perl-shared/MANIFEST perl-shared/README perl-shared/RRDs.xs perl-shared/ntmake.pl perl-shared/Makefile.PL.in perl-shared/t/base.t perl-shared/rrdpl.ds? perl-shared/RRDs.pm rrdtool.spec +EXTRA_DIST = COPYRIGHT CHANGES NT-BUILD-TIPS.txt TODO CONTRIBUTORS rrdtool.spec perl-piped/MANIFEST perl-piped/README perl-piped/rrdpl.ds? perl-piped/RRDp.pm perl-piped/Makefile.PL.in perl-piped/t/base.t perl-shared/MANIFEST perl-shared/README perl-shared/RRDs.xs perl-shared/ntmake.pl perl-shared/Makefile.PL.in perl-shared/t/base.t perl-shared/rrdpl.ds? perl-shared/RRDs.pm rrdtool.spec CLEANFILES = config.cache Modified: trunk/orca/packages/rrdtool-1.0.42/config/acconfig.h ============================================================================== --- trunk/orca/packages/rrdtool-1.0.41/config/acconfig.h (original) +++ trunk/orca/packages/rrdtool-1.0.42/config/acconfig.h Sat Apr 12 10:45:54 2003 @@ -13,6 +13,9 @@ /* realloc does not support NULL as argument */ #undef NO_NULL_REALLOC +/* should we use LATION 2 fonts ? */ +#undef LATIN2_ENABLE + @BOTTOM@ /* define strrchr, strchr and memcpy, memmove in terms of bsd funcs Modified: trunk/orca/packages/rrdtool-1.0.42/config/config.h.in ============================================================================== --- trunk/orca/packages/rrdtool-1.0.41/config/config.h.in (original) +++ trunk/orca/packages/rrdtool-1.0.42/config/config.h.in Sat Apr 12 10:45:54 2003 @@ -32,6 +32,9 @@ /* realloc does not support NULL as argument */ #undef NO_NULL_REALLOC +/* should we use LATION 2 fonts ? */ +#undef LATIN2_ENABLE + /* Define if you have the chdir function. */ #undef HAVE_CHDIR Modified: trunk/orca/packages/rrdtool-1.0.42/configure ============================================================================== --- trunk/orca/packages/rrdtool-1.0.41/configure (original) +++ trunk/orca/packages/rrdtool-1.0.42/configure Sat Apr 12 10:45:54 2003 @@ -11,13 +11,15 @@ ac_help= ac_default_prefix=/usr/local # Any additions from configure.in: -ac_default_prefix=/usr/local/rrdtool-1.0.41 +ac_default_prefix=/usr/local/rrdtool-1.0.42 ac_help="$ac_help --with-tcllib=DIR location of the tclConfig.sh" ac_help="$ac_help --with-perl-options=[OPTIONS] options to pass on command-line when generating Makefile from Makefile.PL" ac_help="$ac_help + --enable-latin2 use ISO-8859-2 fonts " +ac_help="$ac_help --enable-shared[=PKGS] build shared libraries [default=no]" ac_help="$ac_help --enable-static[=PKGS] build static libraries [default=yes]" @@ -586,7 +588,7 @@ fi echo $ac_n "checking host system type""... $ac_c" 1>&6 -echo "configure:590: checking host system type" >&5 +echo "configure:592: checking host system type" >&5 host_alias=$host case "$host_alias" in @@ -607,7 +609,7 @@ echo "$ac_t""$host" 1>&6 echo $ac_n "checking target system type""... $ac_c" 1>&6 -echo "configure:611: checking target system type" >&5 +echo "configure:613: checking target system type" >&5 target_alias=$target case "$target_alias" in @@ -625,7 +627,7 @@ echo "$ac_t""$target" 1>&6 echo $ac_n "checking build system type""... $ac_c" 1>&6 -echo "configure:629: checking build system type" >&5 +echo "configure:631: checking build system type" >&5 build_alias=$build case "$build_alias" in @@ -660,7 +662,7 @@ # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" # ./install, which can be erroneously created by make from ./install.sh. echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6 -echo "configure:664: checking for a BSD compatible install" >&5 +echo "configure:666: checking for a BSD compatible install" >&5 if test -z "$INSTALL"; then if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -713,7 +715,7 @@ test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' echo $ac_n "checking whether build environment is sane""... $ac_c" 1>&6 -echo "configure:717: checking whether build environment is sane" >&5 +echo "configure:719: checking whether build environment is sane" >&5 # Just in case sleep 1 echo timestamp > conftestfile @@ -770,7 +772,7 @@ test "$program_transform_name" = "" && program_transform_name="s,x,x," echo $ac_n "checking whether ${MAKE-make} sets \${MAKE}""... $ac_c" 1>&6 -echo "configure:774: checking whether ${MAKE-make} sets \${MAKE}" >&5 +echo "configure:776: checking whether ${MAKE-make} sets \${MAKE}" >&5 set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_prog_make_${ac_make}_set'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -799,7 +801,7 @@ PACKAGE=rrdtool -VERSION=1.0.41 +VERSION=1.0.42 if test "`cd $srcdir && pwd`" != "`pwd`" && test -f $srcdir/config.status; then { echo "configure: error: source directory already configured; run "make distclean" there first" 1>&2; exit 1; } @@ -816,7 +818,7 @@ missing_dir=`cd $ac_aux_dir && pwd` echo $ac_n "checking for working aclocal""... $ac_c" 1>&6 -echo "configure:820: checking for working aclocal" >&5 +echo "configure:822: checking for working aclocal" >&5 # Run test in a subshell; some versions of sh will print an error if # an executable is not found, even if stderr is redirected. # Redirect stdin to placate older versions of autoconf. Sigh. @@ -829,7 +831,7 @@ fi echo $ac_n "checking for working autoconf""... $ac_c" 1>&6 -echo "configure:833: checking for working autoconf" >&5 +echo "configure:835: checking for working autoconf" >&5 # Run test in a subshell; some versions of sh will print an error if # an executable is not found, even if stderr is redirected. # Redirect stdin to placate older versions of autoconf. Sigh. @@ -842,7 +844,7 @@ fi echo $ac_n "checking for working automake""... $ac_c" 1>&6 -echo "configure:846: checking for working automake" >&5 +echo "configure:848: checking for working automake" >&5 # Run test in a subshell; some versions of sh will print an error if # an executable is not found, even if stderr is redirected. # Redirect stdin to placate older versions of autoconf. Sigh. @@ -855,7 +857,7 @@ fi echo $ac_n "checking for working autoheader""... $ac_c" 1>&6 -echo "configure:859: checking for working autoheader" >&5 +echo "configure:861: checking for working autoheader" >&5 # Run test in a subshell; some versions of sh will print an error if # an executable is not found, even if stderr is redirected. # Redirect stdin to placate older versions of autoconf. Sigh. @@ -868,7 +870,7 @@ fi echo $ac_n "checking for working makeinfo""... $ac_c" 1>&6 -echo "configure:872: checking for working makeinfo" >&5 +echo "configure:874: checking for working makeinfo" >&5 # Run test in a subshell; some versions of sh will print an error if # an executable is not found, even if stderr is redirected. # Redirect stdin to placate older versions of autoconf. Sigh. @@ -905,7 +907,7 @@ # Extract the first word of "perl", so it can be a program name with args. set dummy perl; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:909: checking for $ac_word" >&5 +echo "configure:911: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_path_PERL'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -943,11 +945,11 @@ else COMP_PERL="perl_piped perl_shared" echo $ac_n "checking for shared library extension""... $ac_c" 1>&6 -echo "configure:947: checking for shared library extension" >&5 +echo "configure:949: checking for shared library extension" >&5 SO_EXT=`$PERL -e 'use Config; if (defined $Config{so} and $Config{so} ne 'a') {print "$Config{so}\n"} else {print "so\n"};'` echo "$ac_t""$SO_EXT" 1>&6 echo $ac_n "checking for the C compiler perl wants to use to build its modules""... $ac_c" 1>&6 -echo "configure:951: checking for the C compiler perl wants to use to build its modules" >&5 +echo "configure:953: checking for the C compiler perl wants to use to build its modules" >&5 PROBLEMCC=`$PERL -e 'use Config; ($cc = $Config{cc}) =~ s/\s.*//; exit 0 if -x $cc; map {if (-x "$_/$cc"){exit 0}} split /:/, $ENV{PATH};print $Config{cc}'` if test x$PROBLEMCC != x; then echo "$ac_t""no" 1>&6 @@ -972,7 +974,7 @@ found=0 echo $ac_n "checking for tclConfig.sh in $withval""... $ac_c" 1>&6 -echo "configure:976: checking for tclConfig.sh in $withval" >&5 +echo "configure:978: checking for tclConfig.sh in $withval" >&5 if test -f "$withval/tclConfig.sh" ; then tcl_config=$withval/tclConfig.sh found=1 @@ -997,6 +999,19 @@ +# Check whether --enable-latin2 or --disable-latin2 was given. +if test "${enable_latin2+set}" = set; then + enableval="$enable_latin2" + with_latin2=$enableval +else + with_latin2=no +fi + +test "$with_latin2" = "yes" && cat >> confdefs.h <<\EOF +#define LATIN2_ENABLE 1 +EOF + + if test x$found = x1 ; then @@ -1017,7 +1032,7 @@ # Extract the first word of "gcc", so it can be a program name with args. set dummy gcc; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:1021: checking for $ac_word" >&5 +echo "configure:1036: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -1047,7 +1062,7 @@ # Extract the first word of "cc", so it can be a program name with args. set dummy cc; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:1051: checking for $ac_word" >&5 +echo "configure:1066: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -1098,7 +1113,7 @@ # Extract the first word of "cl", so it can be a program name with args. set dummy cl; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:1102: checking for $ac_word" >&5 +echo "configure:1117: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -1130,7 +1145,7 @@ fi echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works""... $ac_c" 1>&6 -echo "configure:1134: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5 +echo "configure:1149: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5 ac_ext=c # CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options. @@ -1141,12 +1156,12 @@ cat > conftest.$ac_ext << EOF -#line 1145 "configure" +#line 1160 "configure" #include "confdefs.h" main(){return(0);} EOF -if { (eval echo configure:1150: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:1165: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then ac_cv_prog_cc_works=yes # If we can't run a trivial program, we are probably using a cross compiler. if (./conftest; exit) 2>/dev/null; then @@ -1172,12 +1187,12 @@ { echo "configure: error: installation or configuration problem: C compiler cannot create executables." 1>&2; exit 1; } fi echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6 -echo "configure:1176: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5 +echo "configure:1191: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5 echo "$ac_t""$ac_cv_prog_cc_cross" 1>&6 cross_compiling=$ac_cv_prog_cc_cross echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6 -echo "configure:1181: checking whether we are using GNU C" >&5 +echo "configure:1196: checking whether we are using GNU C" >&5 if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -1186,7 +1201,7 @@ yes; #endif EOF -if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:1190: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then +if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:1205: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then ac_cv_prog_gcc=yes else ac_cv_prog_gcc=no @@ -1205,7 +1220,7 @@ ac_save_CFLAGS="$CFLAGS" CFLAGS= echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6 -echo "configure:1209: checking whether ${CC-cc} accepts -g" >&5 +echo "configure:1224: checking whether ${CC-cc} accepts -g" >&5 if eval "test \"`echo '$''{'ac_cv_prog_cc_g'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -1237,7 +1252,7 @@ fi echo $ac_n "checking how to run the C preprocessor""... $ac_c" 1>&6 -echo "configure:1241: checking how to run the C preprocessor" >&5 +echo "configure:1256: checking how to run the C preprocessor" >&5 # On Suns, sometimes $CPP names a directory. if test -n "$CPP" && test -d "$CPP"; then CPP= @@ -1252,13 +1267,13 @@ # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. cat > conftest.$ac_ext < Syntax Error EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:1262: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:1277: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then : @@ -1269,13 +1284,13 @@ rm -rf conftest* CPP="${CC-cc} -E -traditional-cpp" cat > conftest.$ac_ext < Syntax Error EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:1279: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:1294: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then : @@ -1286,13 +1301,13 @@ rm -rf conftest* CPP="${CC-cc} -nologo -E" cat > conftest.$ac_ext < Syntax Error EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:1296: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:1311: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then : @@ -1390,7 +1405,7 @@ # Extract the first word of "ranlib", so it can be a program name with args. set dummy ranlib; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:1394: checking for $ac_word" >&5 +echo "configure:1409: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -1429,7 +1444,7 @@ if test "$ac_cv_prog_gcc" = yes; then # Check if gcc -print-prog-name=ld gives a path. echo $ac_n "checking for ld used by GCC""... $ac_c" 1>&6 -echo "configure:1433: checking for ld used by GCC" >&5 +echo "configure:1448: checking for ld used by GCC" >&5 ac_prog=`($CC -print-prog-name=ld) 2>&5` case "$ac_prog" in # Accept absolute paths. @@ -1453,10 +1468,10 @@ esac elif test "$with_gnu_ld" = yes; then echo $ac_n "checking for GNU ld""... $ac_c" 1>&6 -echo "configure:1457: checking for GNU ld" >&5 +echo "configure:1472: checking for GNU ld" >&5 else echo $ac_n "checking for non-GNU ld""... $ac_c" 1>&6 -echo "configure:1460: checking for non-GNU ld" >&5 +echo "configure:1475: checking for non-GNU ld" >&5 fi if eval "test \"`echo '$''{'ac_cv_path_LD'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -1491,7 +1506,7 @@ fi test -z "$LD" && { echo "configure: error: no acceptable ld found in \$PATH" 1>&2; exit 1; } echo $ac_n "checking if the linker ($LD) is GNU ld""... $ac_c" 1>&6 -echo "configure:1495: checking if the linker ($LD) is GNU ld" >&5 +echo "configure:1510: checking if the linker ($LD) is GNU ld" >&5 if eval "test \"`echo '$''{'ac_cv_prog_gnu_ld'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -1507,7 +1522,7 @@ echo $ac_n "checking for BSD-compatible nm""... $ac_c" 1>&6 -echo "configure:1511: checking for BSD-compatible nm" >&5 +echo "configure:1526: checking for BSD-compatible nm" >&5 if eval "test \"`echo '$''{'ac_cv_path_NM'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -1543,7 +1558,7 @@ echo "$ac_t""$NM" 1>&6 echo $ac_n "checking whether ln -s works""... $ac_c" 1>&6 -echo "configure:1547: checking whether ln -s works" >&5 +echo "configure:1562: checking whether ln -s works" >&5 if eval "test \"`echo '$''{'ac_cv_prog_LN_S'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -1592,8 +1607,8 @@ case "$lt_target" in *-*-irix6*) # Find out which ABI we are using. - echo '#line 1596 "configure"' > conftest.$ac_ext - if { (eval echo configure:1597: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then + echo '#line 1611 "configure"' > conftest.$ac_ext + if { (eval echo configure:1612: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then case "`/usr/bin/file conftest.o`" in *32-bit*) LD="${LD-ld} -32" @@ -1614,19 +1629,19 @@ SAVE_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS -belf" echo $ac_n "checking whether the C compiler needs -belf""... $ac_c" 1>&6 -echo "configure:1618: checking whether the C compiler needs -belf" >&5 +echo "configure:1633: checking whether the C compiler needs -belf" >&5 if eval "test \"`echo '$''{'lt_cv_cc_needs_belf'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:1645: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* lt_cv_cc_needs_belf=yes else @@ -1729,12 +1744,12 @@ echo $ac_n "checking for ANSI C header files""... $ac_c" 1>&6 -echo "configure:1733: checking for ANSI C header files" >&5 +echo "configure:1748: checking for ANSI C header files" >&5 if eval "test \"`echo '$''{'ac_cv_header_stdc'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < #include @@ -1742,7 +1757,7 @@ #include EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:1746: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:1761: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -1759,7 +1774,7 @@ if test $ac_cv_header_stdc = yes; then # SunOS 4.x string.h does not declare mem*, contrary to ANSI. cat > conftest.$ac_ext < EOF @@ -1777,7 +1792,7 @@ if test $ac_cv_header_stdc = yes; then # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. cat > conftest.$ac_ext < EOF @@ -1798,7 +1813,7 @@ : else cat > conftest.$ac_ext < #define ISLOWER(c) ('a' <= (c) && (c) <= 'z') @@ -1809,7 +1824,7 @@ exit (0); } EOF -if { (eval echo configure:1813: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:1828: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then : else @@ -1836,17 +1851,17 @@ do ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 -echo "configure:1840: checking for $ac_hdr" >&5 +echo "configure:1855: checking for $ac_hdr" >&5 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:1850: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:1865: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -1874,12 +1889,12 @@ echo $ac_n "checking for working const""... $ac_c" 1>&6 -echo "configure:1878: checking for working const" >&5 +echo "configure:1893: checking for working const" >&5 if eval "test \"`echo '$''{'ac_cv_c_const'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:1947: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ac_cv_c_const=yes else @@ -1949,12 +1964,12 @@ fi echo $ac_n "checking whether time.h and sys/time.h may both be included""... $ac_c" 1>&6 -echo "configure:1953: checking whether time.h and sys/time.h may both be included" >&5 +echo "configure:1968: checking whether time.h and sys/time.h may both be included" >&5 if eval "test \"`echo '$''{'ac_cv_header_time'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < #include @@ -1963,7 +1978,7 @@ struct tm *tp; ; return 0; } EOF -if { (eval echo configure:1967: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:1982: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ac_cv_header_time=yes else @@ -1984,12 +1999,12 @@ fi echo $ac_n "checking whether struct tm is in sys/time.h or time.h""... $ac_c" 1>&6 -echo "configure:1988: checking whether struct tm is in sys/time.h or time.h" >&5 +echo "configure:2003: checking whether struct tm is in sys/time.h or time.h" >&5 if eval "test \"`echo '$''{'ac_cv_struct_tm'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < #include @@ -1997,7 +2012,7 @@ struct tm *tp; tp->tm_sec; ; return 0; } EOF -if { (eval echo configure:2001: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:2016: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ac_cv_struct_tm=time.h else @@ -2019,12 +2034,12 @@ echo $ac_n "checking for acos""... $ac_c" 1>&6 -echo "configure:2023: checking for acos" >&5 +echo "configure:2038: checking for acos" >&5 if eval "test \"`echo '$''{'ac_cv_func_acos'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:2066: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_acos=yes" else @@ -2065,7 +2080,7 @@ else echo "$ac_t""no" 1>&6 echo $ac_n "checking for acos in -lm""... $ac_c" 1>&6 -echo "configure:2069: checking for acos in -lm" >&5 +echo "configure:2084: checking for acos in -lm" >&5 ac_lib_var=`echo m'_'acos | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -2073,7 +2088,7 @@ ac_save_LIBS="$LIBS" LIBS="-lm $LIBS" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:2103: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -2119,7 +2134,7 @@ # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:2123: checking for $ac_word" >&5 +echo "configure:2138: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_path_NROFF'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -2159,7 +2174,7 @@ # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:2163: checking for $ac_word" >&5 +echo "configure:2178: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_path_TROFF'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -2199,19 +2214,19 @@ oCFLAGS=$CFLAGS CFLAGS="$CFLAGS -Wall -pedantic -Wshadow -Wpointer-arith -Wcast-align -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Winline" echo $ac_n "checking if we can use GCC-specific compiler options""... $ac_c" 1>&6 -echo "configure:2203: checking if we can use GCC-specific compiler options" >&5 +echo "configure:2218: checking if we can use GCC-specific compiler options" >&5 if eval "test \"`echo '$''{'rd_cv_gcc_opt'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:2230: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* rd_cv_gcc_opt=yes else @@ -2242,12 +2257,12 @@ echo $ac_n "checking for strftime""... $ac_c" 1>&6 -echo "configure:2246: checking for strftime" >&5 +echo "configure:2261: checking for strftime" >&5 if eval "test \"`echo '$''{'ac_cv_func_strftime'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:2289: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_strftime=yes" else @@ -2292,7 +2307,7 @@ echo "$ac_t""no" 1>&6 # strftime is in -lintl on SCO UNIX. echo $ac_n "checking for strftime in -lintl""... $ac_c" 1>&6 -echo "configure:2296: checking for strftime in -lintl" >&5 +echo "configure:2311: checking for strftime in -lintl" >&5 ac_lib_var=`echo intl'_'strftime | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -2300,7 +2315,7 @@ ac_save_LIBS="$LIBS" LIBS="-lintl $LIBS" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:2330: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -2338,12 +2353,12 @@ fi echo $ac_n "checking for vprintf""... $ac_c" 1>&6 -echo "configure:2342: checking for vprintf" >&5 +echo "configure:2357: checking for vprintf" >&5 if eval "test \"`echo '$''{'ac_cv_func_vprintf'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:2385: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_vprintf=yes" else @@ -2390,12 +2405,12 @@ if test "$ac_cv_func_vprintf" != yes; then echo $ac_n "checking for _doprnt""... $ac_c" 1>&6 -echo "configure:2394: checking for _doprnt" >&5 +echo "configure:2409: checking for _doprnt" >&5 if eval "test \"`echo '$''{'ac_cv_func__doprnt'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:2437: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func__doprnt=yes" else @@ -2447,12 +2462,12 @@ for ac_func in opendir readdir chdir chroot getuid strerror tzset setlocale snprintf vsnprintf fpclass class fp_class isnan memmove strchr mktime getrusage gettimeofday do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:2451: checking for $ac_func" >&5 +echo "configure:2466: checking for $ac_func" >&5 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:2494: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_$ac_func=yes" else @@ -2503,12 +2518,12 @@ for ac_func in fpclassify do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:2507: checking for $ac_func" >&5 +echo "configure:2522: checking for $ac_func" >&5 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:2550: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_$ac_func=yes" else @@ -2553,16 +2568,16 @@ else echo "$ac_t""no" 1>&6 echo $ac_n "checking for fpclassify with ""... $ac_c" 1>&6 -echo "configure:2557: checking for fpclassify with " >&5 +echo "configure:2572: checking for fpclassify with " >&5 cat > conftest.$ac_ext < int main() { float f = 0.0; fpclassify(f) ; return 0; } EOF -if { (eval echo configure:2566: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:2581: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* echo "$ac_t""yes" 1>&6 cat >> confdefs.h <<\EOF @@ -2582,12 +2597,12 @@ for ac_func in finite do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:2586: checking for $ac_func" >&5 +echo "configure:2601: checking for $ac_func" >&5 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:2629: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_$ac_func=yes" else @@ -2634,12 +2649,12 @@ for ac_func in isfinite do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:2638: checking for $ac_func" >&5 +echo "configure:2653: checking for $ac_func" >&5 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:2681: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_$ac_func=yes" else @@ -2684,16 +2699,16 @@ else echo "$ac_t""no" 1>&6 echo $ac_n "checking for isfinite with ""... $ac_c" 1>&6 -echo "configure:2688: checking for isfinite with " >&5 +echo "configure:2703: checking for isfinite with " >&5 cat > conftest.$ac_ext < int main() { float f = 0.0; isfinite(f) ; return 0; } EOF -if { (eval echo configure:2697: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:2712: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* echo "$ac_t""yes" 1>&6 cat >> confdefs.h <<\EOF @@ -2716,12 +2731,12 @@ for ac_func in isinf do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:2720: checking for $ac_func" >&5 +echo "configure:2735: checking for $ac_func" >&5 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:2763: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_$ac_func=yes" else @@ -2766,16 +2781,16 @@ else echo "$ac_t""no" 1>&6 echo $ac_n "checking for isinf with ""... $ac_c" 1>&6 -echo "configure:2770: checking for isinf with " >&5 +echo "configure:2785: checking for isinf with " >&5 cat > conftest.$ac_ext < int main() { float f = 0.0; isinf(f) ; return 0; } EOF -if { (eval echo configure:2779: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:2794: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* echo "$ac_t""yes" 1>&6 cat >> confdefs.h <<\EOF @@ -2795,7 +2810,7 @@ echo $ac_n "checking if realloc can deal with NULL""... $ac_c" 1>&6 -echo "configure:2799: checking if realloc can deal with NULL" >&5 +echo "configure:2814: checking if realloc can deal with NULL" >&5 if eval "test \"`echo '$''{'rd_cv_null_realloc'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -2803,7 +2818,7 @@ : else cat > conftest.$ac_ext < int main(void){ @@ -2813,7 +2828,7 @@ return 0; } EOF -if { (eval echo configure:2817: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:2832: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then rd_cv_null_realloc=yes else @@ -2841,7 +2856,7 @@ _cflags=${CFLAGS} echo $ac_n "checking if IEEE math works out of the box""... $ac_c" 1>&6 -echo "configure:2845: checking if IEEE math works out of the box" >&5 +echo "configure:2860: checking if IEEE math works out of the box" >&5 if eval "test \"`echo '$''{'rd_cv_ieee_works'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -2849,7 +2864,7 @@ : else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:2936: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then rd_cv_ieee_works=yes else @@ -2938,7 +2953,7 @@ echo "$ac_t""no" 1>&6 CFLAGS="$_cflags -ieee" echo $ac_n "checking if IEEE math works with the -ieee switch""... $ac_c" 1>&6 -echo "configure:2942: checking if IEEE math works with the -ieee switch" >&5 +echo "configure:2957: checking if IEEE math works with the -ieee switch" >&5 if eval "test \"`echo '$''{'rd_cv_ieee_switch'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -2946,7 +2961,7 @@ : else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:3033: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then rd_cv_ieee_switch=yes else @@ -3035,7 +3050,7 @@ echo "$ac_t""no" 1>&6 CFLAGS="$_cflags -qfloat=nofold" echo $ac_n "checking if IEEE math works with the -qfloat=nofold switch""... $ac_c" 1>&6 -echo "configure:3039: checking if IEEE math works with the -qfloat=nofold switch" >&5 +echo "configure:3054: checking if IEEE math works with the -qfloat=nofold switch" >&5 if eval "test \"`echo '$''{'rd_cv_ieee_nofold'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -3043,7 +3058,7 @@ : else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:3130: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then rd_cv_ieee_nofold=yes else @@ -3132,7 +3147,7 @@ echo "$ac_t""no" 1>&6 CFLAGS="$_cflags -w -qflttrap=enable:zerodivide" echo $ac_n "checking if IEEE math works with the -w -qflttrap=enable:zerodivide""... $ac_c" 1>&6 -echo "configure:3136: checking if IEEE math works with the -w -qflttrap=enable:zerodivide" >&5 +echo "configure:3151: checking if IEEE math works with the -w -qflttrap=enable:zerodivide" >&5 if eval "test \"`echo '$''{'rd_cv_ieee_flttrap'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -3140,7 +3155,7 @@ : else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:3227: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then rd_cv_ieee_flttrap=yes else @@ -3229,7 +3244,7 @@ echo "$ac_t""no" 1>&6 CFLAGS="$_cflags -mieee" echo $ac_n "checking if IEEE math works with the -mieee switch""... $ac_c" 1>&6 -echo "configure:3233: checking if IEEE math works with the -mieee switch" >&5 +echo "configure:3248: checking if IEEE math works with the -mieee switch" >&5 if eval "test \"`echo '$''{'rd_cv_ieee_mswitch'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -3237,7 +3252,7 @@ : else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:3324: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then rd_cv_ieee_mswitch=yes else @@ -3326,7 +3341,7 @@ echo "$ac_t""no" 1>&6 CFLAGS="$_cflags -q float=rndsngl" echo $ac_n "checking if IEEE math works with the -q float=rndsngl switch""... $ac_c" 1>&6 -echo "configure:3330: checking if IEEE math works with the -q float=rndsngl switch" >&5 +echo "configure:3345: checking if IEEE math works with the -q float=rndsngl switch" >&5 if eval "test \"`echo '$''{'rd_cv_ieee_qswitch'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -3334,7 +3349,7 @@ : else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:3421: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then rd_cv_ieee_qswitch=yes else @@ -3423,7 +3438,7 @@ echo "$ac_t""no" 1>&6 CFLAGS="$_cflags -OPT:IEEE_NaN_inf=ON" echo $ac_n "checking if IEEE math works with the -OPT:IEEE_NaN_inf=ON switch""... $ac_c" 1>&6 -echo "configure:3427: checking if IEEE math works with the -OPT:IEEE_NaN_inf=ON switch" >&5 +echo "configure:3442: checking if IEEE math works with the -OPT:IEEE_NaN_inf=ON switch" >&5 if eval "test \"`echo '$''{'rd_cv_ieee_ieeenaninfswitch'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -3431,7 +3446,7 @@ : else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:3518: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then rd_cv_ieee_ieeenaninfswitch=yes else @@ -3520,7 +3535,7 @@ echo "$ac_t""no" 1>&6 CFLAGS="$_cflags -OPT:IEEE_comparisons=ON" echo $ac_n "checking if IEEE math works with the -OPT:IEEE_comparisons=ON switch""... $ac_c" 1>&6 -echo "configure:3524: checking if IEEE math works with the -OPT:IEEE_comparisons=ON switch" >&5 +echo "configure:3539: checking if IEEE math works with the -OPT:IEEE_comparisons=ON switch" >&5 if eval "test \"`echo '$''{'rd_cv_ieee_ieeecmpswitch'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -3528,7 +3543,7 @@ : else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:3615: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then rd_cv_ieee_ieeecmpswitch=yes else @@ -3617,7 +3632,7 @@ echo "$ac_t""no" 1>&6 CFLAGS=$_cflags echo $ac_n "checking if IEEE math works with fpsetmask(0)""... $ac_c" 1>&6 -echo "configure:3621: checking if IEEE math works with fpsetmask(0)" >&5 +echo "configure:3636: checking if IEEE math works with fpsetmask(0)" >&5 if eval "test \"`echo '$''{'rd_cv_ieee_mask'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -3625,7 +3640,7 @@ : else cat > conftest.$ac_ext < @@ -3693,7 +3708,7 @@ return 0; } EOF -if { (eval echo configure:3697: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:3712: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then rd_cv_ieee_mask=yes else @@ -3717,7 +3732,7 @@ else echo "$ac_t""no" 1>&6 echo $ac_n "checking if IEEE math works with signal(SIGFPE,SIG_IGN)""... $ac_c" 1>&6 -echo "configure:3721: checking if IEEE math works with signal(SIGFPE,SIG_IGN)" >&5 +echo "configure:3736: checking if IEEE math works with signal(SIGFPE,SIG_IGN)" >&5 if eval "test \"`echo '$''{'rd_cv_ieee_sigfpe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -3725,7 +3740,7 @@ : else cat > conftest.$ac_ext < @@ -3793,7 +3808,7 @@ return 0; } EOF -if { (eval echo configure:3797: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:3812: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then rd_cv_ieee_sigfpe=yes else @@ -3978,6 +3993,7 @@ src/Makefile \ tcl/Makefile \ perl-shared/Makefile.PL \ + perl-piped/Makefile.PL \ Makefile config/config.h" | sed "s/:[^ ]*//g"` conftest*; exit 1' 1 2 15 EOF cat >> $CONFIG_STATUS <> $CONFIG_STATUS <<\EOF @@ -4309,7 +4326,7 @@ echo $ac_n "checking in""... $ac_c" 1>&6 -echo "configure:4313: checking in" >&5 +echo "configure:4330: checking in" >&5 echo "$ac_t""and out again" 1>&6 echo $ac_n "ordering CD from http://people.ee.ethz.ch/~oetiker/wish $ac_c" 1>&6 Modified: trunk/orca/packages/rrdtool-1.0.42/configure.in ============================================================================== --- trunk/orca/packages/rrdtool-1.0.41/configure.in (original) +++ trunk/orca/packages/rrdtool-1.0.42/configure.in Sat Apr 12 10:45:54 2003 @@ -24,11 +24,11 @@ AC_CANONICAL_SYSTEM dnl tell automake the this script is for rrdtool -AM_INIT_AUTOMAKE(rrdtool, 1.0.41) +AM_INIT_AUTOMAKE(rrdtool, 1.0.42) AC_SUBST(VERSION) dnl where we install our stuff ... -AC_PREFIX_DEFAULT( /usr/local/rrdtool-1.0.41 ) +AC_PREFIX_DEFAULT( /usr/local/rrdtool-1.0.42 ) dnl tell automake which file to use as config header AM_CONFIG_HEADER(config/config.h) @@ -102,6 +102,13 @@ [PERL_MAKE_OPTIONS=$withval]) AC_SUBST(PERL_MAKE_OPTIONS) +dnl Enable ISO-8859-2 fonts rather than ISO-8859-2 +AC_ARG_ENABLE(latin2, +[ --enable-latin2 use ISO-8859-2 fonts ], +[with_latin2=$enableval], +[with_latin2=no]) +test "$with_latin2" = "yes" && AC_DEFINE(LATIN2_ENABLE) + AM_CONDITIONAL(COMP_TCL, test x$found = x1 ) AC_SUBST(TCL_PREFIX) @@ -351,6 +358,7 @@ src/Makefile \ tcl/Makefile \ perl-shared/Makefile.PL \ + perl-piped/Makefile.PL \ Makefile, \ [chmod +x examples/*.cgi examples/*.pl contrib/*/*.pl]) Modified: trunk/orca/packages/rrdtool-1.0.42/contrib/trytime/Makefile.am ============================================================================== --- trunk/orca/packages/rrdtool-1.0.41/contrib/trytime/Makefile.am (original) +++ trunk/orca/packages/rrdtool-1.0.42/contrib/trytime/Makefile.am Sat Apr 12 10:45:54 2003 @@ -5,4 +5,4 @@ contrib_DATA = README trytime.c bin_PROGRAMS = trytime trytime_SOURCES = trytime.c -trytime_LDADD = $(top_srcdir)/src/librrd.la +trytime_LDADD = ../../src/librrd.la Modified: trunk/orca/packages/rrdtool-1.0.42/contrib/trytime/Makefile.in ============================================================================== --- trunk/orca/packages/rrdtool-1.0.41/contrib/trytime/Makefile.in (original) +++ trunk/orca/packages/rrdtool-1.0.42/contrib/trytime/Makefile.in Sat Apr 12 10:45:54 2003 @@ -93,7 +93,7 @@ contrib_DATA = README trytime.c bin_PROGRAMS = trytime trytime_SOURCES = trytime.c -trytime_LDADD = $(top_srcdir)/src/librrd.la +trytime_LDADD = ../../src/librrd.la mkinstalldirs = $(SHELL) $(top_srcdir)/config/mkinstalldirs CONFIG_HEADER = ../../config/config.h CONFIG_CLEAN_FILES = @@ -105,7 +105,7 @@ LDFLAGS = @LDFLAGS@ LIBS = @LIBS@ trytime_OBJECTS = trytime.o -trytime_DEPENDENCIES = $(top_srcdir)/src/librrd.la +trytime_DEPENDENCIES = ../../src/librrd.la trytime_LDFLAGS = CFLAGS = @CFLAGS@ COMPILE = $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) Modified: trunk/orca/packages/rrdtool-1.0.42/doc/RRDp.txt ============================================================================== --- trunk/orca/packages/rrdtool-1.0.41/doc/RRDp.txt (original) +++ trunk/orca/packages/rrdtool-1.0.42/doc/RRDp.txt Sat Apr 12 10:45:54 2003 @@ -89,4 +89,4 @@ -1.0.41 2003-02-19 RRDp(3) +1.0.42 2003-04-12 RRDp(3) Modified: trunk/orca/packages/rrdtool-1.0.42/doc/RRDs.txt ============================================================================== --- trunk/orca/packages/rrdtool-1.0.41/doc/RRDs.txt (original) +++ trunk/orca/packages/rrdtool-1.0.42/doc/RRDs.txt Sat Apr 12 10:45:54 2003 @@ -115,4 +115,4 @@ -1.0.41 2003-02-19 RRDs(3) +1.0.42 2003-04-12 RRDs(3) Modified: trunk/orca/packages/rrdtool-1.0.42/doc/bin_dec_hex.txt ============================================================================== --- trunk/orca/packages/rrdtool-1.0.41/doc/bin_dec_hex.txt (original) +++ trunk/orca/packages/rrdtool-1.0.42/doc/bin_dec_hex.txt Sat Apr 12 10:45:54 2003 @@ -411,4 +411,4 @@ -1.0.41 2002-02-26 BIN_DEC_HEX(1) +1.0.42 2002-02-26 BIN_DEC_HEX(1) Modified: trunk/orca/packages/rrdtool-1.0.42/doc/cdeftutorial.txt ============================================================================== --- trunk/orca/packages/rrdtool-1.0.41/doc/cdeftutorial.txt (original) +++ trunk/orca/packages/rrdtool-1.0.42/doc/cdeftutorial.txt Sat Apr 12 10:45:54 2003 @@ -881,4 +881,4 @@ -1.0.41 2002-06-20 CDEFTUTORIAL(1) +1.0.42 2002-06-20 CDEFTUTORIAL(1) Modified: trunk/orca/packages/rrdtool-1.0.42/doc/rpntutorial.txt ============================================================================== --- trunk/orca/packages/rrdtool-1.0.41/doc/rpntutorial.txt (original) +++ trunk/orca/packages/rrdtool-1.0.42/doc/rpntutorial.txt Sat Apr 12 10:45:54 2003 @@ -202,4 +202,4 @@ -1.0.41 2002-02-26 RPNTUTORIAL(1) +1.0.42 2002-02-26 RPNTUTORIAL(1) Modified: trunk/orca/packages/rrdtool-1.0.42/doc/rrdcreate.txt ============================================================================== --- trunk/orca/packages/rrdtool-1.0.41/doc/rrdcreate.txt (original) +++ trunk/orca/packages/rrdtool-1.0.42/doc/rrdcreate.txt Sat Apr 12 10:45:54 2003 @@ -248,4 +248,4 @@ -1.0.41 2002-12-20 RRDCREATE(1) +1.0.42 2002-12-20 RRDCREATE(1) Modified: trunk/orca/packages/rrdtool-1.0.42/doc/rrddump.txt ============================================================================== --- trunk/orca/packages/rrdtool-1.0.41/doc/rrddump.txt (original) +++ trunk/orca/packages/rrdtool-1.0.42/doc/rrddump.txt Sat Apr 12 10:45:54 2003 @@ -24,4 +24,4 @@ -1.0.41 2002-02-26 RRDDUMP(1) +1.0.42 2002-02-26 RRDDUMP(1) Modified: trunk/orca/packages/rrdtool-1.0.42/doc/rrdfetch.txt ============================================================================== --- trunk/orca/packages/rrdtool-1.0.41/doc/rrdfetch.txt (original) +++ trunk/orca/packages/rrdtool-1.0.42/doc/rrdfetch.txt Sat Apr 12 10:45:54 2003 @@ -249,4 +249,4 @@ -1.0.41 2002-07-31 RRDFETCH(1) +1.0.42 2002-07-31 RRDFETCH(1) Modified: trunk/orca/packages/rrdtool-1.0.42/doc/rrdgraph.html ============================================================================== --- trunk/orca/packages/rrdtool-1.0.41/doc/rrdgraph.html (original) +++ trunk/orca/packages/rrdtool-1.0.42/doc/rrdgraph.html Sat Apr 12 10:45:54 2003 @@ -587,7 +587,7 @@
Calculate the chosen consolidation function CF over the data-source variable vname and printf the result to stdout using format. -In the format string there should be a '%lf'or '%le' marker in the +In the format string there should be a '%lf', '%lg' or '%le' marker in the place where the number should be printed.
Modified: trunk/orca/packages/rrdtool-1.0.42/doc/rrdgraph.pod ============================================================================== --- trunk/orca/packages/rrdtool-1.0.41/doc/rrdgraph.pod (original) +++ trunk/orca/packages/rrdtool-1.0.42/doc/rrdgraph.pod Sat Apr 12 10:45:54 2003 @@ -443,7 +443,7 @@ Calculate the chosen consolidation function I over the data-source variable I and C the result to stdout using I. -In the I string there should be a '%lf'or '%le' marker in the +In the I string there should be a '%lf', '%lg' or '%le' marker in the place where the number should be printed. If an additional '%s' is found AFTER the marker, the value will be scaled Modified: trunk/orca/packages/rrdtool-1.0.42/doc/rrdgraph.txt ============================================================================== --- trunk/orca/packages/rrdtool-1.0.41/doc/rrdgraph.txt (original) +++ trunk/orca/packages/rrdtool-1.0.42/doc/rrdgraph.txt Sat Apr 12 10:45:54 2003 @@ -430,8 +430,8 @@ Calculate the chosen consolidation function _C_F over the data-source variable _v_n_a_m_e and "printf" the result to stdout using _f_o_r_m_a_t. In the _f_o_r_m_a_t string there - should be a '%lf'or '%le' marker in the place where - the number should be printed. + should be a '%lf', '%lg' or '%le' marker in the place + where the number should be printed. If an additional '%s' is found AFTER the marker, the value will be scaled and an appropriate SI magnitude @@ -639,4 +639,4 @@ -1.0.41 2003-02-16 RRDGRAPH(1) +1.0.42 2003-02-19 RRDGRAPH(1) Modified: trunk/orca/packages/rrdtool-1.0.42/doc/rrdinfo.txt ============================================================================== --- trunk/orca/packages/rrdtool-1.0.41/doc/rrdinfo.txt (original) +++ trunk/orca/packages/rrdtool-1.0.42/doc/rrdinfo.txt Sat Apr 12 10:45:54 2003 @@ -56,4 +56,4 @@ -1.0.41 2002-02-26 RRDINFO(1) +1.0.42 2002-02-26 RRDINFO(1) Modified: trunk/orca/packages/rrdtool-1.0.42/doc/rrdlast.txt ============================================================================== --- trunk/orca/packages/rrdtool-1.0.41/doc/rrdlast.txt (original) +++ trunk/orca/packages/rrdtool-1.0.42/doc/rrdlast.txt Sat Apr 12 10:45:54 2003 @@ -21,4 +21,4 @@ -1.0.41 2002-02-26 RRDLAST(1) +1.0.42 2002-02-26 RRDLAST(1) Modified: trunk/orca/packages/rrdtool-1.0.42/doc/rrdresize.txt ============================================================================== --- trunk/orca/packages/rrdtool-1.0.41/doc/rrdresize.txt (original) +++ trunk/orca/packages/rrdtool-1.0.42/doc/rrdresize.txt Sat Apr 12 10:45:54 2003 @@ -44,4 +44,4 @@ -1.0.41 2002-07-05 RRDRESIZE(1) +1.0.42 2002-07-05 RRDRESIZE(1) Modified: trunk/orca/packages/rrdtool-1.0.42/doc/rrdrestore.txt ============================================================================== --- trunk/orca/packages/rrdtool-1.0.41/doc/rrdrestore.txt (original) +++ trunk/orca/packages/rrdtool-1.0.42/doc/rrdrestore.txt Sat Apr 12 10:45:54 2003 @@ -29,4 +29,4 @@ -1.0.41 2002-02-26 RRDRESTORE(1) +1.0.42 2002-02-26 RRDRESTORE(1) Modified: trunk/orca/packages/rrdtool-1.0.42/doc/rrdtool.txt ============================================================================== --- trunk/orca/packages/rrdtool-1.0.41/doc/rrdtool.txt (original) +++ trunk/orca/packages/rrdtool-1.0.42/doc/rrdtool.txt Sat Apr 12 10:45:54 2003 @@ -202,4 +202,4 @@ -1.0.41 2002-11-29 RRDTOOL(1) +1.0.42 2002-11-29 RRDTOOL(1) Modified: trunk/orca/packages/rrdtool-1.0.42/doc/rrdtune.txt ============================================================================== --- trunk/orca/packages/rrdtool-1.0.41/doc/rrdtune.txt (original) +++ trunk/orca/packages/rrdtool-1.0.42/doc/rrdtune.txt Sat Apr 12 10:45:54 2003 @@ -64,4 +64,4 @@ -1.0.41 2002-02-26 RRDTUNE(1) +1.0.42 2002-02-26 RRDTUNE(1) Modified: trunk/orca/packages/rrdtool-1.0.42/doc/rrdtutorial.es.txt ============================================================================== --- trunk/orca/packages/rrdtool-1.0.41/doc/rrdtutorial.es.txt (original) +++ trunk/orca/packages/rrdtool-1.0.42/doc/rrdtutorial.es.txt Sat Apr 12 10:45:54 2003 @@ -1262,4 +1262,4 @@ -1.0.41 2003-01-20 RRDTUTORIAL.ES(1) +1.0.42 2003-01-20 RRDTUTORIAL.ES(1) Modified: trunk/orca/packages/rrdtool-1.0.42/doc/rrdtutorial.html ============================================================================== --- trunk/orca/packages/rrdtool-1.0.41/doc/rrdtutorial.html (original) +++ trunk/orca/packages/rrdtool-1.0.42/doc/rrdtutorial.html Sat Apr 12 10:45:54 2003 @@ -547,7 +547,7 @@

Hopefully you get a number as a result, the number of interfaces. If so, you can carry on and try a different program called ``snmpwalk''.

-   snmpwalk myrouter public interfaces.iftable.ifentry.ifdescr
+ snmpwalk myrouter public interfaces.ifTable.ifEntry.ifDescr

If it returns with a list of interfaces, you're almost there. Here's an example: [user at host /home/alex]$ snmpwalk cisco public 2.2.1.2

Modified: trunk/orca/packages/rrdtool-1.0.42/doc/rrdtutorial.pod ============================================================================== --- trunk/orca/packages/rrdtool-1.0.41/doc/rrdtutorial.pod (original) +++ trunk/orca/packages/rrdtool-1.0.42/doc/rrdtutorial.pod Sat Apr 12 10:45:54 2003 @@ -563,7 +563,7 @@ Hopefully you get a number as a result, the number of interfaces. If so, you can carry on and try a different program called "snmpwalk". - snmpwalk myrouter public interfaces.iftable.ifentry.ifdescr + snmpwalk myrouter public interfaces.ifTable.ifEntry.ifDescr If it returns with a list of interfaces, you're almost there. Here's an example: Modified: trunk/orca/packages/rrdtool-1.0.42/doc/rrdtutorial.txt ============================================================================== --- trunk/orca/packages/rrdtool-1.0.41/doc/rrdtutorial.txt (original) +++ trunk/orca/packages/rrdtool-1.0.42/doc/rrdtutorial.txt Sat Apr 12 10:45:54 2003 @@ -650,7 +650,7 @@ interfaces. If so, you can carry on and try a different program called "snmpwalk". - snmpwalk myrouter public interfaces.iftable.ifentry.ifdescr + snmpwalk myrouter public interfaces.ifTable.ifEntry.ifDescr If it returns with a list of interfaces, you're almost there. Here's an example: @@ -1241,4 +1241,4 @@ -1.0.41 2002-02-27 RRDTUTORIAL(1) +1.0.42 2003-02-27 RRDTUTORIAL(1) Modified: trunk/orca/packages/rrdtool-1.0.42/doc/rrdupdate.txt ============================================================================== --- trunk/orca/packages/rrdtool-1.0.41/doc/rrdupdate.txt (original) +++ trunk/orca/packages/rrdtool-1.0.42/doc/rrdupdate.txt Sat Apr 12 10:45:54 2003 @@ -72,4 +72,4 @@ -1.0.41 2002-02-26 RRDUPDATE(1) +1.0.42 2002-02-26 RRDUPDATE(1) Modified: trunk/orca/packages/rrdtool-1.0.42/doc/rrdxport.txt ============================================================================== --- trunk/orca/packages/rrdtool-1.0.41/doc/rrdxport.txt (original) +++ trunk/orca/packages/rrdtool-1.0.42/doc/rrdxport.txt Sat Apr 12 10:45:54 2003 @@ -125,4 +125,4 @@ -1.0.41 2002-05-29 RRDXPORT(1) +1.0.42 2002-05-29 RRDXPORT(1) Modified: trunk/orca/packages/rrdtool-1.0.42/gd1.3/Makefile.am ============================================================================== --- trunk/orca/packages/rrdtool-1.0.41/gd1.3/Makefile.am (original) +++ trunk/orca/packages/rrdtool-1.0.42/gd1.3/Makefile.am Sat Apr 12 10:45:54 2003 @@ -6,9 +6,11 @@ gd.c gdfontg.c gdfontl.c gdfontmb.c \ gdfonts.c gdfontt.c gdlucidab10.c gdlucidab12.c \ gdlucidab14.c gdlucidan10.c gdlucidan12.c gdlucidan14.c \ + gdlucidan10l2.c gdlucidab12l2.c \ gd.h gdfontmb.h gdlucidab10.h gdlucidan10.h \ gdfontg.h gdfonts.h gdlucidab12.h gdlucidan12.h \ - gdfontl.h gdfontt.h gdlucidab14.h gdlucidan14.h + gdfontl.h gdfontt.h gdlucidab14.h gdlucidan14.h \ + gdlucidan10l2.h gdlucidab12l2.h EXTRA_DIST= README.rrdtool demoin.gif gd.dsp gd.dsw index.html readme.txt \ Modified: trunk/orca/packages/rrdtool-1.0.42/gd1.3/Makefile.in ============================================================================== --- trunk/orca/packages/rrdtool-1.0.41/gd1.3/Makefile.in (original) +++ trunk/orca/packages/rrdtool-1.0.42/gd1.3/Makefile.in Sat Apr 12 10:45:54 2003 @@ -89,7 +89,7 @@ noinst_LTLIBRARIES = librrd_gd.la -librrd_gd_la_SOURCES = gd.c gdfontg.c gdfontl.c gdfontmb.c gdfonts.c gdfontt.c gdlucidab10.c gdlucidab12.c gdlucidab14.c gdlucidan10.c gdlucidan12.c gdlucidan14.c gd.h gdfontmb.h gdlucidab10.h gdlucidan10.h gdfontg.h gdfonts.h gdlucidab12.h gdlucidan12.h gdfontl.h gdfontt.h gdlucidab14.h gdlucidan14.h +librrd_gd_la_SOURCES = gd.c gdfontg.c gdfontl.c gdfontmb.c gdfonts.c gdfontt.c gdlucidab10.c gdlucidab12.c gdlucidab14.c gdlucidan10.c gdlucidan12.c gdlucidan14.c gdlucidan10l2.c gdlucidab12l2.c gd.h gdfontmb.h gdlucidab10.h gdlucidan10.h gdfontg.h gdfonts.h gdlucidab12.h gdlucidan12.h gdfontl.h gdfontt.h gdlucidab14.h gdlucidan14.h gdlucidan10l2.h gdlucidab12l2.h EXTRA_DIST = README.rrdtool demoin.gif gd.dsp gd.dsw index.html readme.txt webgif.c mtables.c mathmake.c giftogd.c @@ -108,7 +108,8 @@ librrd_gd_la_LIBADD = librrd_gd_la_OBJECTS = gd.lo gdfontg.lo gdfontl.lo gdfontmb.lo \ gdfonts.lo gdfontt.lo gdlucidab10.lo gdlucidab12.lo gdlucidab14.lo \ -gdlucidan10.lo gdlucidan12.lo gdlucidan14.lo +gdlucidan10.lo gdlucidan12.lo gdlucidan14.lo gdlucidan10l2.lo \ +gdlucidab12l2.lo CFLAGS = @CFLAGS@ COMPILE = $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) @@ -239,8 +240,10 @@ gdfontt.lo gdfontt.o : gdfontt.c gdfontt.h gd.h gdlucidab10.lo gdlucidab10.o : gdlucidab10.c gdlucidab10.h gd.h gdlucidab12.lo gdlucidab12.o : gdlucidab12.c gdlucidab12.h gd.h +gdlucidab12l2.lo gdlucidab12l2.o : gdlucidab12l2.c gdlucidab12l2.h gd.h gdlucidab14.lo gdlucidab14.o : gdlucidab14.c gdlucidab14.h gd.h gdlucidan10.lo gdlucidan10.o : gdlucidan10.c gdlucidan10.h gd.h +gdlucidan10l2.lo gdlucidan10l2.o : gdlucidan10l2.c gdlucidan10l2.h gd.h gdlucidan12.lo gdlucidan12.o : gdlucidan12.c gdlucidan12.h gd.h gdlucidan14.lo gdlucidan14.o : gdlucidan14.c gdlucidan14.h gd.h Added: trunk/orca/packages/rrdtool-1.0.42/gd1.3/gdlucidab12l2.c ============================================================================== --- (empty file) +++ trunk/orca/packages/rrdtool-1.0.42/gd1.3/gdlucidab12l2.c Sat Apr 12 10:45:54 2003 @@ -0,0 +1,4382 @@ + +/* + This is a header file for gd font, generated using + bdftogd version 0.60 by Jan Pazdziora, adelton at fi.muni.cz + from bdf font + -B&H-LucidaTypewriter-Medium-R-Normal-Sans-12-120-75-75-M-70-iso8859-2 + at Wed Apr 2 23:46:21 2003. + The original bdf was holding following copyright: + "Copyright Bigelow & Holmes 1986, 1985." + */ + + +#include "gdlucidab12l2.h" + +char gdLucidaBold12l2Data[] = { +/* Char 0 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,1,0,1,0,1,0, +0,0,0,0,0,0,0, +0,1,0,0,0,1,0, +0,0,0,0,0,0,0, +0,1,0,0,0,1,0, +0,0,0,0,0,0,0, +0,1,0,0,0,1,0, +0,0,0,0,0,0,0, +0,1,0,1,0,1,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 1 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 2 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 3 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 4 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 5 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 6 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 7 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 8 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 9 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 10 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 11 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 12 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 13 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 14 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 15 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 16 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 17 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 18 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 19 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 20 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 21 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 22 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 23 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 24 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 25 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 26 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 27 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 28 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 29 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 30 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 31 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 32 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 33 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,1,1,0,0, +0,0,0,1,1,0,0, +0,0,0,1,1,0,0, +0,0,0,1,1,0,0, +0,0,0,1,1,0,0, +0,0,0,1,0,0,0, +0,0,0,0,0,0,0, +0,0,0,1,1,0,0, +0,0,0,1,1,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 34 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,1,0,1,0,0, +0,0,1,0,1,0,0, +0,0,1,0,1,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 35 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,1,0,0,1,0, +0,0,1,0,0,1,0, +0,1,1,1,1,1,1, +0,0,1,0,0,1,0, +0,0,1,0,0,1,0, +0,1,1,1,1,1,1, +0,0,1,0,0,1,0, +0,0,1,0,0,1,0, +0,0,1,0,0,1,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 36 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,1,0,0,0, +0,0,1,1,1,0,0, +0,1,0,1,0,1,0, +0,1,0,1,0,0,0, +0,0,1,1,0,0,0, +0,0,0,1,1,0,0, +0,0,0,1,0,1,0, +0,0,0,1,0,1,0, +0,1,0,1,0,1,0, +0,0,1,1,1,0,0, +0,0,0,1,0,0,0, +0,0,0,0,0,0,0, + +/* Char 37 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,1,1,0,0,0,0, +1,0,0,1,0,0,1, +1,0,0,1,0,1,0, +0,1,1,0,1,0,0, +0,0,0,1,0,0,0, +0,0,1,0,1,1,0, +0,1,0,1,0,0,1, +1,0,0,1,0,0,1, +0,0,0,0,1,1,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 38 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,1,1,0,0, +0,0,1,0,0,1,0, +0,0,1,0,0,1,0, +0,0,0,1,1,0,0, +0,0,1,1,0,0,1, +0,1,0,0,1,0,1, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,0,1,1,1,0,1, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 39 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 40 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,1,1,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,1,0,0,0,0, +0,0,1,0,0,0,0, +0,0,1,0,0,0,0, +0,0,1,0,0,0,0, +0,0,1,0,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,0,1,1,0, +0,0,0,0,0,0,0, + +/* Char 41 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,1,1,0,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,0,1,0,0, +0,0,0,0,1,0,0, +0,0,0,0,1,0,0, +0,0,0,0,1,0,0, +0,0,0,0,1,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,1,1,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 42 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,1,0,0,0, +0,1,0,1,0,1,0, +0,0,1,0,1,0,0, +0,1,0,1,0,1,0, +0,0,0,1,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 43 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +1,1,1,1,1,1,1, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 44 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,1,1,0,0, +0,0,0,1,1,0,0, +0,0,1,1,0,0,0, +0,0,0,0,0,0,0, + +/* Char 45 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +1,1,1,1,1,1,1, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 46 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,1,1,0,0,0, +0,0,1,1,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 47 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,1,0, +0,0,0,0,0,1,0, +0,0,0,0,1,0,0, +0,0,0,0,1,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,1,0,0,0,0, +0,0,1,0,0,0,0, +0,1,0,0,0,0,0, +0,1,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 48 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,1,1,1,0,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,0,1,1,1,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 49 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,1,0,0,0, +0,0,1,1,0,0,0, +0,1,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 50 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,1,1,1,0,0, +0,1,0,0,0,1,0, +0,0,0,0,0,1,0, +0,0,0,0,0,1,0, +0,0,0,0,1,0,0, +0,0,0,1,0,0,0, +0,0,1,0,0,0,0, +0,1,0,0,0,0,0, +0,1,1,1,1,1,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 51 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,1,1,1,0,0, +0,1,0,0,0,1,0, +0,0,0,0,0,1,0, +0,0,0,0,0,1,0, +0,0,0,1,1,0,0, +0,0,0,0,0,1,0, +0,0,0,0,0,1,0, +0,1,0,0,0,1,0, +0,0,1,1,1,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 52 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,1,0,0, +0,0,0,1,1,0,0, +0,0,1,0,1,0,0, +0,1,0,0,1,0,0, +1,0,0,0,1,0,0, +1,1,1,1,1,1,0, +0,0,0,0,1,0,0, +0,0,0,0,1,0,0, +0,0,0,0,1,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 53 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,1,1,1,1,1,0, +0,1,0,0,0,0,0, +0,1,0,0,0,0,0, +0,1,1,1,1,0,0, +0,0,0,0,0,1,0, +0,0,0,0,0,1,0, +0,0,0,0,0,1,0, +0,1,0,0,0,1,0, +0,0,1,1,1,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 54 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,1,1,1,0,0, +0,1,0,0,0,1,0, +0,1,0,0,0,0,0, +0,1,0,0,0,0,0, +0,1,1,1,1,0,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,0,1,1,1,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 55 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,1,1,1,1,1,0, +0,0,0,0,0,1,0, +0,0,0,0,0,1,0, +0,0,0,0,1,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,1,0,0,0,0, +0,0,1,0,0,0,0, +0,0,1,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 56 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,1,1,1,0,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,0,1,1,1,0,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,0,1,1,1,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 57 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,1,1,1,0,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,0,1,1,1,1,0, +0,0,0,0,0,1,0, +0,0,0,0,0,1,0, +0,1,0,0,0,1,0, +0,0,1,1,1,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 58 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,1,1,0,0,0, +0,0,1,1,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,1,1,0,0,0, +0,0,1,1,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 59 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,1,1,0,0,0, +0,0,1,1,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,1,1,0,0,0, +0,0,1,1,0,0,0, +0,1,1,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 60 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,1,0, +0,0,0,0,1,0,0, +0,0,0,1,0,0,0, +0,0,1,0,0,0,0, +0,0,0,1,0,0,0, +0,0,0,0,1,0,0, +0,0,0,0,0,1,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 61 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +1,1,1,1,1,1,1, +0,0,0,0,0,0,0, +1,1,1,1,1,1,1, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 62 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,1,0,0,0,0, +0,0,0,1,0,0,0, +0,0,0,0,1,0,0, +0,0,0,0,0,1,0, +0,0,0,0,1,0,0, +0,0,0,1,0,0,0, +0,0,1,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 63 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,1,1,1,1,0,0, +0,0,0,0,0,1,0, +0,0,0,0,0,1,0, +0,0,0,0,0,1,0, +0,0,1,1,1,0,0, +0,0,1,0,0,0,0, +0,0,0,0,0,0,0, +0,0,1,0,0,0,0, +0,0,1,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 64 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,1,1,1,0,0, +0,1,0,0,0,1,0, +1,0,0,1,1,1,0, +1,0,1,0,0,1,0, +1,0,1,0,0,1,0, +1,0,1,0,1,1,0, +1,0,0,1,0,0,1, +0,1,0,0,0,0,0, +0,0,1,1,1,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 65 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,1,1,0,0, +0,0,0,1,1,0,0, +0,0,1,0,0,1,0, +0,0,1,0,0,1,0, +0,0,1,0,0,1,0, +0,1,1,1,1,1,1, +0,1,0,0,0,0,1, +0,1,0,0,0,0,1, +0,1,0,0,0,0,1, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 66 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,1,1,1,1,0,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,1,1,1,0,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,1,1,1,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 67 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,1,1,1,0, +0,0,1,0,0,1,0, +0,1,0,0,0,0,0, +0,1,0,0,0,0,0, +0,1,0,0,0,0,0, +0,1,0,0,0,0,0, +0,1,0,0,0,0,0, +0,0,1,0,0,0,0, +0,0,0,1,1,1,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 68 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,1,1,1,0,0,0, +0,1,0,0,1,0,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,1,0,0, +0,1,1,1,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 69 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,1,1,1,1,1,0, +0,1,0,0,0,0,0, +0,1,0,0,0,0,0, +0,1,0,0,0,0,0, +0,1,1,1,1,0,0, +0,1,0,0,0,0,0, +0,1,0,0,0,0,0, +0,1,0,0,0,0,0, +0,1,1,1,1,1,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 70 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,1,1,1,1,0, +0,0,1,0,0,0,0, +0,0,1,0,0,0,0, +0,0,1,0,0,0,0, +0,0,1,1,1,1,0, +0,0,1,0,0,0,0, +0,0,1,0,0,0,0, +0,0,1,0,0,0,0, +0,0,1,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 71 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,1,1,1,0, +0,0,1,0,0,1,0, +0,1,0,0,0,0,0, +0,1,0,0,0,0,0, +0,1,0,0,0,0,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,0,1,0,0,1,0, +0,0,0,1,1,1,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 72 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,1,1,1,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 73 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,1,1,1,1,1,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,1,1,1,1,1,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 74 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,1,1,1,1,1,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +1,1,1,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 75 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,1,0,0,0,0,1, +0,1,0,0,0,1,0, +0,1,0,0,1,0,0, +0,1,0,1,0,0,0, +0,1,1,1,0,0,0, +0,1,0,0,1,0,0, +0,1,0,0,0,1,0, +0,1,0,0,0,0,1, +0,1,0,0,0,0,1, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 76 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,1,0,0,0,0, +0,0,1,0,0,0,0, +0,0,1,0,0,0,0, +0,0,1,0,0,0,0, +0,0,1,0,0,0,0, +0,0,1,0,0,0,0, +0,0,1,0,0,0,0, +0,0,1,0,0,0,0, +0,0,1,1,1,1,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 77 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,1,0,0,0,0,1, +0,1,1,0,0,1,1, +0,1,1,0,0,1,1, +0,1,0,1,1,0,1, +0,1,0,1,1,0,1, +0,1,0,1,1,0,1, +0,1,0,0,0,0,1, +0,1,0,0,0,0,1, +0,1,0,0,0,0,1, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 78 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,1,0,0,0,1,0, +0,1,1,0,0,1,0, +0,1,1,0,0,1,0, +0,1,0,1,0,1,0, +0,1,0,1,0,1,0, +0,1,0,0,1,1,0, +0,1,0,0,1,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 79 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,1,1,0,0, +0,0,1,0,0,1,0, +0,1,0,0,0,0,1, +0,1,0,0,0,0,1, +0,1,0,0,0,0,1, +0,1,0,0,0,0,1, +0,1,0,0,0,0,1, +0,0,1,0,0,1,0, +0,0,0,1,1,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 80 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,1,1,1,1,0,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,1,1,1,0,0, +0,1,0,0,0,0,0, +0,1,0,0,0,0,0, +0,1,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 81 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,1,1,0,0, +0,0,1,0,0,1,0, +0,1,0,0,0,0,1, +0,1,0,0,0,0,1, +0,1,0,0,0,0,1, +0,1,0,0,0,0,1, +0,1,0,0,0,0,1, +0,0,1,0,0,1,0, +0,0,0,1,1,0,0, +0,0,0,0,1,1,0, +0,0,0,0,0,1,1, + +/* Char 82 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,1,1,1,1,0,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,1,1,1,0,0, +0,1,0,0,1,0,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 83 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,1,1,1,1,0, +0,1,0,0,0,0,0, +0,1,0,0,0,0,0, +0,1,1,0,0,0,0, +0,0,1,1,1,0,0, +0,0,0,0,1,1,0, +0,0,0,0,0,1,0, +0,0,0,0,0,1,0, +0,1,1,1,1,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 84 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +1,1,1,1,1,1,1, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 85 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,0,1,1,1,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 86 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,1,0,0,0,0,1, +0,1,0,0,0,0,1, +0,1,0,0,0,0,1, +0,1,0,0,0,0,1, +0,0,1,0,0,1,0, +0,0,1,0,0,1,0, +0,0,1,0,0,1,0, +0,0,0,1,1,0,0, +0,0,0,1,1,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 87 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +1,0,0,0,0,0,1, +1,0,0,1,0,0,1, +1,0,0,1,0,0,1, +1,0,0,1,0,0,1, +1,0,1,0,1,0,1, +0,1,1,0,1,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 88 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,0,1,0,1,0,0, +0,0,1,0,1,0,0, +0,0,0,1,0,0,0, +0,0,1,0,1,0,0, +0,0,1,0,1,0,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 89 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,0,1,0,1,0,0, +0,0,1,0,1,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 90 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,1,1,1,1,1,0, +0,0,0,0,0,1,0, +0,0,0,0,1,0,0, +0,0,0,0,1,0,0, +0,0,0,1,0,0,0, +0,0,1,0,0,0,0, +0,0,1,0,0,0,0, +0,1,0,0,0,0,0, +0,1,1,1,1,1,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 91 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,1,1,1,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,1,1,0, +0,0,0,0,0,0,0, + +/* Char 92 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,1,0,0,0,0,0, +0,1,0,0,0,0,0, +0,0,1,0,0,0,0, +0,0,1,0,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,0,1,0,0, +0,0,0,0,1,0,0, +0,0,0,0,0,1,0, +0,0,0,0,0,1,0, +0,0,0,0,0,0,0, + +/* Char 93 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,1,1,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,1,1,1,0,0,0, +0,0,0,0,0,0,0, + +/* Char 94 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,1,0,1,0,0, +0,0,1,0,1,0,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 95 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +1,1,1,1,1,1,1, +0,0,0,0,0,0,0, + +/* Char 96 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,1,0,0,0, +0,0,0,0,1,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 97 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,1,1,1,0,0, +0,1,0,0,0,1,0, +0,0,0,0,0,1,0, +0,0,1,1,1,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,0,1,1,1,0,1, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 98 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,1,0,0,0,0,0, +0,1,0,0,0,0,0, +0,1,0,0,0,0,0, +0,1,0,1,1,0,0, +0,1,1,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,1,1,1,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 99 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,1,1,1,0, +0,0,1,0,0,0,0, +0,1,0,0,0,0,0, +0,1,0,0,0,0,0, +0,1,0,0,0,0,0, +0,0,1,0,0,0,0, +0,0,0,1,1,1,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 100 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,1,0, +0,0,0,0,0,1,0, +0,0,0,0,0,1,0, +0,0,1,1,1,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,1,1,0, +0,0,1,1,0,1,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 101 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,1,1,1,0,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,1,1,1,1,0, +0,1,0,0,0,0,0, +0,1,0,0,0,1,0, +0,0,1,1,1,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 102 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,1,1,1,0, +0,0,1,0,0,0,0, +0,0,1,0,0,0,0, +0,1,1,1,1,1,0, +0,0,1,0,0,0,0, +0,0,1,0,0,0,0, +0,0,1,0,0,0,0, +0,0,1,0,0,0,0, +0,0,1,0,0,0,0, +0,0,1,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 103 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,1,1,1,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,1,1,0, +0,0,1,1,0,1,0, +0,0,0,0,0,1,0, +0,0,0,0,0,1,0, +0,0,1,1,1,0,0, + +/* Char 104 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,1,0,0,0,0,0, +0,1,0,0,0,0,0, +0,1,0,0,0,0,0, +0,1,0,1,1,0,0, +0,1,1,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 105 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,0,0,0,0, +0,1,1,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 106 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,1,0,0, +0,0,0,0,1,0,0, +0,0,0,0,0,0,0, +0,1,1,1,1,0,0, +0,0,0,0,1,0,0, +0,0,0,0,1,0,0, +0,0,0,0,1,0,0, +0,0,0,0,1,0,0, +0,0,0,0,1,0,0, +0,0,0,0,1,0,0, +0,0,0,0,1,0,0, +0,1,1,1,0,0,0, + +/* Char 107 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,1,0,0,0,0,0, +0,1,0,0,0,0,0, +0,1,0,0,0,0,0, +0,1,0,0,0,1,0, +0,1,0,0,1,0,0, +0,1,0,1,0,0,0, +0,1,1,1,0,0,0, +0,1,0,0,1,0,0, +0,1,0,0,0,1,0, +0,1,0,0,0,0,1, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 108 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,1,1,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 109 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +1,0,1,0,0,1,0, +1,1,0,1,1,0,1, +1,0,0,1,0,0,1, +1,0,0,1,0,0,1, +1,0,0,1,0,0,1, +1,0,0,1,0,0,1, +1,0,0,1,0,0,1, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 110 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,1,0,1,1,0,0, +0,1,1,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 111 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,1,1,1,0,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,0,1,1,1,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 112 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,1,0,1,1,0,0, +0,1,1,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,1,1,1,0,0, +0,1,0,0,0,0,0, +0,1,0,0,0,0,0, + +/* Char 113 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,1,1,1,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,1,1,0, +0,0,1,1,0,1,0, +0,0,0,0,0,1,0, +0,0,0,0,0,1,0, + +/* Char 114 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,1,0,1,1,0, +0,0,1,1,0,0,0, +0,0,1,0,0,0,0, +0,0,1,0,0,0,0, +0,0,1,0,0,0,0, +0,0,1,0,0,0,0, +0,0,1,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 115 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,1,1,1,1,0, +0,1,0,0,0,0,0, +0,1,0,0,0,0,0, +0,0,1,1,1,0,0, +0,0,0,0,0,1,0, +0,0,0,0,0,1,0, +0,1,1,1,1,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 116 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,1,0,0,0,0, +0,0,1,0,0,0,0, +0,1,1,1,1,1,0, +0,0,1,0,0,0,0, +0,0,1,0,0,0,0, +0,0,1,0,0,0,0, +0,0,1,0,0,0,0, +0,0,1,0,0,0,0, +0,0,0,1,1,1,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 117 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,1,1,0, +0,0,1,1,0,1,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 118 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,0,1,0,1,0,0, +0,0,1,0,1,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 119 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +1,0,0,0,0,0,1, +1,0,0,1,0,0,1, +1,0,0,1,0,0,1, +1,0,1,0,1,0,1, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 120 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,0,1,0,1,0,0, +0,0,0,1,0,0,0, +0,0,1,0,1,0,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 121 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,0,1,0,1,0,0, +0,0,1,0,1,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,1,0,0,0,0, +0,1,1,0,0,0,0, + +/* Char 122 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,1,1,1,1,1,0, +0,0,0,0,0,1,0, +0,0,0,0,1,0,0, +0,0,0,1,0,0,0, +0,0,1,0,0,0,0, +0,1,0,0,0,0,0, +0,1,1,1,1,1,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 123 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,1,1,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,0,1,0,0, +0,0,1,1,0,0,0, +0,0,0,0,1,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,0,1,1,0, +0,0,0,0,0,0,0, + +/* Char 124 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,0,0,0,0, + +/* Char 125 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,1,1,0,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,1,0,0,0,0, +0,0,0,1,1,0,0, +0,0,1,0,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,1,1,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 126 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,1,1,1,0,0,1, +1,0,0,1,1,1,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 127 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 128 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 129 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 130 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 131 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 132 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 133 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 134 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 135 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 136 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 137 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 138 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 139 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 140 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 141 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 142 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 143 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 144 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 145 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 146 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 147 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 148 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 149 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 150 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 151 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 152 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 153 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 154 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 155 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 156 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 157 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 158 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 159 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 160 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 161 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,1,1,0,0, +0,0,0,1,1,0,0, +0,0,1,0,0,1,0, +0,0,1,0,0,1,0, +0,0,1,0,0,1,0, +0,1,1,1,1,1,1, +0,1,0,0,0,0,1, +0,1,0,0,0,0,1, +0,1,0,0,0,0,1, +0,0,0,1,0,0,0, +0,0,0,0,1,1,0, + +/* Char 162 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,1,0,0,1,0, +0,0,0,1,1,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 163 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,1,0,0,0,0, +0,0,1,0,0,0,0, +0,0,1,0,0,0,0, +0,0,1,1,1,0,0, +1,1,1,0,0,0,0, +0,0,1,0,0,0,0, +0,0,1,0,0,0,0, +0,0,1,0,0,0,0, +0,0,1,1,1,1,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 164 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +1,0,0,0,0,0,1, +0,1,1,1,1,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,1,1,1,1,0, +1,0,0,0,0,0,1, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 165 */ +0,0,0,0,0,0,0, +0,0,1,0,1,0,0, +0,0,0,1,0,0,0, +0,0,0,0,0,0,0, +0,0,1,0,0,0,0, +0,0,1,0,0,0,0, +0,0,1,0,0,0,0, +0,0,1,0,0,0,0, +0,0,1,0,0,0,0, +0,0,1,0,0,0,0, +0,0,1,0,0,0,0, +0,0,1,0,0,0,0, +0,0,1,1,1,1,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 166 */ +0,0,0,0,0,0,0, +0,0,0,0,1,0,0, +0,0,0,1,0,0,0, +0,0,0,0,0,0,0, +0,0,1,1,1,1,0, +0,1,0,0,0,0,0, +0,1,0,0,0,0,0, +0,1,1,0,0,0,0, +0,0,1,1,1,0,0, +0,0,0,0,1,1,0, +0,0,0,0,0,1,0, +0,0,0,0,0,1,0, +0,1,1,1,1,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 167 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,1,1,0,0, +0,0,1,0,0,1,0, +0,0,1,0,0,0,0, +0,1,0,1,0,0,0, +0,1,0,0,1,0,0, +0,0,1,0,0,1,0, +0,0,0,1,0,1,0, +0,0,0,0,1,0,0, +0,1,0,0,1,0,0, +0,0,1,1,0,0,0, +0,0,0,0,0,0,0, + +/* Char 168 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,1,0,0,1,0, +0,0,1,0,0,1,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 169 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,1,0,1,0,0, +0,0,0,1,0,0,0, +0,0,0,0,0,0,0, +0,0,1,1,1,1,0, +0,1,0,0,0,0,0, +0,1,1,0,0,0,0, +0,0,1,1,1,0,0, +0,0,0,0,1,1,0, +0,0,0,0,0,1,0, +0,0,0,0,0,1,0, +0,1,1,1,1,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 170 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,1,1,1,1,0, +0,1,0,0,0,0,0, +0,1,0,0,0,0,0, +0,1,1,0,0,0,0, +0,0,1,1,1,0,0, +0,0,0,0,1,1,0, +0,0,0,0,0,1,0, +0,0,0,0,0,1,0, +0,1,1,1,1,0,0, +0,0,0,0,1,0,0, +0,0,1,1,0,0,0, + +/* Char 171 */ +0,0,0,0,0,0,0, +0,0,1,0,1,0,0, +0,0,0,1,0,0,0, +0,0,0,0,0,0,0, +1,1,1,1,1,1,1, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 172 */ +0,0,0,0,0,0,0, +0,0,0,0,1,0,0, +0,0,0,1,0,0,0, +0,0,0,0,0,0,0, +0,1,1,1,1,1,0, +0,0,0,0,0,1,0, +0,0,0,0,1,0,0, +0,0,0,0,1,0,0, +0,0,0,1,0,0,0, +0,0,1,0,0,0,0, +0,0,1,0,0,0,0, +0,1,0,0,0,0,0, +0,1,1,1,1,1,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 173 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,1,1,1,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 174 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,1,0,1,0,0, +0,0,0,1,0,0,0, +0,0,0,0,0,0,0, +0,1,1,1,1,1,0, +0,0,0,0,0,1,0, +0,0,0,0,1,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,1,0,0,0,0, +0,1,0,0,0,0,0, +0,1,1,1,1,1,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 175 */ +0,0,0,0,0,0,0, +0,0,0,1,1,0,0, +0,0,0,1,1,0,0, +0,0,0,0,0,0,0, +0,1,1,1,1,1,0, +0,0,0,0,0,1,0, +0,0,0,0,1,0,0, +0,0,0,0,1,0,0, +0,0,0,1,0,0,0, +0,0,1,0,0,0,0, +0,0,1,0,0,0,0, +0,1,0,0,0,0,0, +0,1,1,1,1,1,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 176 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,1,1,0,0,0, +0,1,0,0,1,0,0, +0,0,1,1,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 177 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,1,1,1,0,0, +0,1,0,0,0,1,0, +0,0,0,0,0,1,0, +0,0,1,1,1,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,0,1,1,1,0,1, +0,0,0,1,0,0,0, +0,0,0,0,1,1,0, + +/* Char 178 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,1,0,0,0, +0,0,0,0,1,1,0, + +/* Char 179 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,1,1,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,1,1,0, +0,1,1,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 180 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,1,0,0, +0,0,0,1,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 181 */ +0,1,0,1,0,0,0, +0,0,1,0,0,0,0, +0,0,0,0,0,0,0, +0,1,1,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 182 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,1,0,0, +0,0,0,1,0,0,0, +0,0,0,0,0,0,0, +0,0,1,1,1,1,0, +0,1,0,0,0,0,0, +0,1,0,0,0,0,0, +0,0,1,1,1,0,0, +0,0,0,0,0,1,0, +0,0,0,0,0,1,0, +0,1,1,1,1,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 183 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,1,0,1,0, +0,0,0,0,1,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 184 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,1,0,0, +0,0,1,1,0,0,0, + +/* Char 185 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,1,0,1,0,0, +0,0,0,1,0,0,0, +0,0,0,0,0,0,0, +0,0,1,1,1,1,0, +0,1,0,0,0,0,0, +0,1,0,0,0,0,0, +0,0,1,1,1,0,0, +0,0,0,0,0,1,0, +0,0,0,0,0,1,0, +0,1,1,1,1,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 186 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,1,1,1,1,0, +0,1,0,0,0,0,0, +0,1,0,0,0,0,0, +0,0,1,1,1,0,0, +0,0,0,0,0,1,0, +0,0,0,0,0,1,0, +0,1,1,1,1,0,0, +0,0,0,1,0,0,0, +0,1,1,0,0,0,0, + +/* Char 187 */ +0,0,0,0,0,0,0, +0,0,1,0,1,0,0, +0,0,0,1,0,0,0, +0,0,0,0,0,0,0, +0,0,1,0,0,0,0, +0,0,1,0,0,0,0, +0,1,1,1,1,1,0, +0,0,1,0,0,0,0, +0,0,1,0,0,0,0, +0,0,1,0,0,0,0, +0,0,1,0,0,0,0, +0,0,1,0,0,0,0, +0,0,0,1,1,1,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 188 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,1,0,0, +0,0,0,1,0,0,0, +0,0,0,0,0,0,0, +0,1,1,1,1,1,0, +0,0,0,0,0,1,0, +0,0,0,0,1,0,0, +0,0,0,1,0,0,0, +0,0,1,0,0,0,0, +0,1,0,0,0,0,0, +0,1,1,1,1,1,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 189 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,1,0,0,1, +0,0,1,0,0,1,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 190 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,1,0,1,0,0, +0,0,0,1,0,0,0, +0,0,0,0,0,0,0, +0,1,1,1,1,1,0, +0,0,0,0,0,1,0, +0,0,0,0,1,0,0, +0,0,0,1,0,0,0, +0,0,1,0,0,0,0, +0,1,0,0,0,0,0, +0,1,1,1,1,1,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 191 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,1,1,0,0, +0,0,0,1,1,0,0, +0,0,0,0,0,0,0, +0,1,1,1,1,1,0, +0,0,0,0,0,1,0, +0,0,0,0,1,0,0, +0,0,0,1,0,0,0, +0,0,1,0,0,0,0, +0,1,0,0,0,0,0, +0,1,1,1,1,1,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 192 */ +0,0,0,0,0,0,0, +0,0,0,0,1,0,0, +0,0,0,1,0,0,0, +0,0,0,0,0,0,0, +0,1,1,1,1,0,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,1,1,1,0,0, +0,1,0,0,1,0,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 193 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,1,0,0, +0,0,0,1,0,0,0, +0,0,0,0,0,0,0, +0,0,0,1,1,0,0, +0,0,0,1,1,0,0, +0,0,1,0,0,1,0, +0,0,1,0,0,1,0, +0,1,1,1,1,1,1, +0,1,0,0,0,0,1, +0,1,0,0,0,0,1, +0,1,0,0,0,0,1, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 194 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,1,1,0,0, +0,0,1,0,0,1,0, +0,0,0,0,0,0,0, +0,0,0,1,1,0,0, +0,0,0,1,1,0,0, +0,0,1,0,0,1,0, +0,0,1,0,0,1,0, +0,1,1,1,1,1,1, +0,1,0,0,0,0,1, +0,1,0,0,0,0,1, +0,1,0,0,0,0,1, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 195 */ +0,0,0,0,0,0,0, +0,0,1,0,0,1,0, +0,0,0,1,1,0,0, +0,0,0,0,0,0,0, +0,0,0,1,1,0,0, +0,0,0,1,1,0,0, +0,0,1,0,0,1,0, +0,0,1,0,0,1,0, +0,0,1,0,0,1,0, +0,1,1,1,1,1,1, +0,1,0,0,0,0,1, +0,1,0,0,0,0,1, +0,1,0,0,0,0,1, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 196 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,1,0,0,1,0, +0,0,1,0,0,1,0, +0,0,0,0,0,0,0, +0,0,0,1,1,0,0, +0,0,0,1,1,0,0, +0,0,1,0,0,1,0, +0,0,1,0,0,1,0, +0,1,1,1,1,1,1, +0,1,0,0,0,0,1, +0,1,0,0,0,0,1, +0,1,0,0,0,0,1, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 197 */ +0,0,0,0,0,0,0, +0,0,0,1,0,0,0, +0,0,1,0,0,0,0, +0,0,0,0,0,0,0, +0,0,1,0,0,0,0, +0,0,1,0,0,0,0, +0,0,1,0,0,0,0, +0,0,1,0,0,0,0, +0,0,1,0,0,0,0, +0,0,1,0,0,0,0, +0,0,1,0,0,0,0, +0,0,1,0,0,0,0, +0,0,1,1,1,1,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 198 */ +0,0,0,0,0,0,0, +0,0,0,0,1,0,0, +0,0,0,1,0,0,0, +0,0,0,0,0,0,0, +0,0,0,1,1,1,0, +0,0,1,0,0,1,0, +0,1,0,0,0,0,0, +0,1,0,0,0,0,0, +0,1,0,0,0,0,0, +0,1,0,0,0,0,0, +0,1,0,0,0,0,0, +0,0,1,0,0,0,0, +0,0,0,1,1,1,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 199 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,1,1,1,0, +0,0,1,0,0,1,0, +0,1,0,0,0,0,0, +0,1,0,0,0,0,0, +0,1,0,0,0,0,0, +0,1,0,0,0,0,0, +0,1,0,0,0,0,0, +0,0,1,0,0,0,0, +0,0,0,1,1,1,0, +0,0,0,0,1,0,0, +0,0,1,1,0,0,0, + +/* Char 200 */ +0,0,0,0,0,0,0, +0,0,1,0,1,0,0, +0,0,0,1,0,0,0, +0,0,0,0,0,0,0, +0,0,0,1,1,1,0, +0,0,1,0,0,1,0, +0,1,0,0,0,0,0, +0,1,0,0,0,0,0, +0,1,0,0,0,0,0, +0,1,0,0,0,0,0, +0,1,0,0,0,0,0, +0,0,1,0,0,0,0, +0,0,0,1,1,1,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 201 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,1,0,0, +0,0,0,1,0,0,0, +0,0,0,0,0,0,0, +0,1,1,1,1,1,0, +0,1,0,0,0,0,0, +0,1,0,0,0,0,0, +0,1,1,1,1,0,0, +0,1,0,0,0,0,0, +0,1,0,0,0,0,0, +0,1,0,0,0,0,0, +0,1,1,1,1,1,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 202 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,1,1,1,1,1,0, +0,1,0,0,0,0,0, +0,1,0,0,0,0,0, +0,1,0,0,0,0,0, +0,1,1,1,1,0,0, +0,1,0,0,0,0,0, +0,1,0,0,0,0,0, +0,1,0,0,0,0,0, +0,1,1,1,1,1,0, +0,0,1,0,0,0,0, +0,0,0,1,1,0,0, + +/* Char 203 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,1,0,1,0,0, +0,0,1,0,1,0,0, +0,0,0,0,0,0,0, +0,1,1,1,1,1,0, +0,1,0,0,0,0,0, +0,1,0,0,0,0,0, +0,1,1,1,1,0,0, +0,1,0,0,0,0,0, +0,1,0,0,0,0,0, +0,1,0,0,0,0,0, +0,1,1,1,1,1,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 204 */ +0,0,0,0,0,0,0, +0,0,1,0,1,0,0, +0,0,0,1,0,0,0, +0,0,0,0,0,0,0, +0,1,1,1,1,1,0, +0,1,0,0,0,0,0, +0,1,0,0,0,0,0, +0,1,0,0,0,0,0, +0,1,1,1,1,0,0, +0,1,0,0,0,0,0, +0,1,0,0,0,0,0, +0,1,0,0,0,0,0, +0,1,1,1,1,1,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 205 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,1,0,0, +0,0,0,1,0,0,0, +0,0,0,0,0,0,0, +0,1,1,1,1,1,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,1,1,1,1,1,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 206 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,1,0,0,0, +0,0,1,0,1,0,0, +0,0,0,0,0,0,0, +0,1,1,1,1,1,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,1,1,1,1,1,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 207 */ +0,0,0,0,0,0,0, +0,0,1,0,1,0,0, +0,0,0,1,0,0,0, +0,0,0,0,0,0,0, +0,1,1,1,0,0,0, +0,1,0,0,1,0,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,1,0,0, +0,1,1,1,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 208 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,1,1,1,0,0,0, +0,1,0,0,1,0,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +1,1,1,1,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,1,0,0, +0,1,1,1,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 209 */ +0,0,0,0,0,0,0, +0,0,0,0,1,0,0, +0,0,0,1,0,0,0, +0,0,0,0,0,0,0, +0,1,0,0,0,1,0, +0,1,1,0,0,1,0, +0,1,1,0,0,1,0, +0,1,0,1,0,1,0, +0,1,0,1,0,1,0, +0,1,0,0,1,1,0, +0,1,0,0,1,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 210 */ +0,0,0,0,0,0,0, +0,0,1,0,1,0,0, +0,0,0,1,0,0,0, +0,0,0,0,0,0,0, +0,1,0,0,0,1,0, +0,1,1,0,0,1,0, +0,1,1,0,0,1,0, +0,1,0,1,0,1,0, +0,1,0,1,0,1,0, +0,1,0,0,1,1,0, +0,1,0,0,1,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 211 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,1,0,0, +0,0,0,1,0,0,0, +0,0,0,0,0,0,0, +0,0,0,1,1,0,0, +0,0,1,0,0,1,0, +0,1,0,0,0,0,1, +0,1,0,0,0,0,1, +0,1,0,0,0,0,1, +0,1,0,0,0,0,1, +0,0,1,0,0,1,0, +0,0,0,1,1,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 212 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,1,0,0, +0,0,0,1,0,1,0, +0,0,0,0,0,0,0, +0,0,0,1,1,0,0, +0,0,1,0,0,1,0, +0,1,0,0,0,0,1, +0,1,0,0,0,0,1, +0,1,0,0,0,0,1, +0,1,0,0,0,0,1, +0,0,1,0,0,1,0, +0,0,0,1,1,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 213 */ +0,0,0,0,0,0,0, +0,0,0,1,0,0,1, +0,0,1,0,0,1,0, +0,0,0,0,0,0,0, +0,0,0,1,1,0,0, +0,0,1,0,0,1,0, +0,1,0,0,0,0,1, +0,1,0,0,0,0,1, +0,1,0,0,0,0,1, +0,1,0,0,0,0,1, +0,1,0,0,0,0,1, +0,0,1,0,0,1,0, +0,0,0,1,1,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 214 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,1,0,0,1,0, +0,0,1,0,0,1,0, +0,0,0,0,0,0,0, +0,0,0,1,1,0,0, +0,0,1,0,0,1,0, +0,1,0,0,0,0,1, +0,1,0,0,0,0,1, +0,1,0,0,0,0,1, +0,1,0,0,0,0,1, +0,0,1,0,0,1,0, +0,0,0,1,1,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 215 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,1,0,0,0,1,0, +0,0,1,0,1,0,0, +0,0,0,1,0,0,0, +0,0,1,0,1,0,0, +0,1,0,0,0,1,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 216 */ +0,0,0,0,0,0,0, +0,0,1,0,1,0,0, +0,0,0,1,0,0,0, +0,0,0,0,0,0,0, +0,1,1,1,1,0,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,1,1,1,0,0, +0,1,0,0,1,0,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 217 */ +0,0,0,1,1,0,0, +0,0,1,0,0,1,0, +0,0,0,1,1,0,0, +0,0,0,0,0,0,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,0,1,1,1,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 218 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,1,0,0, +0,0,0,1,0,0,0, +0,0,0,0,0,0,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,0,1,1,1,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 219 */ +0,0,0,0,0,0,0, +0,0,1,0,0,1,0, +0,1,0,0,1,0,0, +0,0,0,0,0,0,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,0,1,1,1,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 220 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,1,0,1,0,0, +0,0,1,0,1,0,0, +0,0,0,0,0,0,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,0,1,1,1,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 221 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,1,0,0, +0,0,0,1,0,0,0, +0,0,0,0,0,0,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,0,1,0,1,0,0, +0,0,1,0,1,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 222 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +1,1,1,1,1,1,1, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,1,1,0,0,0,0, + +/* Char 223 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,1,1,0,0,0, +0,1,0,0,1,0,0, +0,1,0,0,1,0,0, +0,1,0,1,0,0,0, +0,1,0,1,0,0,0, +0,1,0,0,1,0,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,1,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 224 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,1,0,0, +0,0,0,1,0,0,0, +0,0,0,0,0,0,0, +0,0,1,0,1,1,0, +0,0,1,1,0,0,0, +0,0,1,0,0,0,0, +0,0,1,0,0,0,0, +0,0,1,0,0,0,0, +0,0,1,0,0,0,0, +0,0,1,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 225 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,1,0,0, +0,0,0,1,0,0,0, +0,0,0,0,0,0,0, +0,0,1,1,1,0,0, +0,1,0,0,0,1,0, +0,0,0,0,0,1,0, +0,0,1,1,1,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,0,1,1,1,0,1, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 226 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,1,0,0,0, +0,0,1,0,1,0,0, +0,0,0,0,0,0,0, +0,0,1,1,1,0,0, +0,1,0,0,0,1,0, +0,0,0,0,0,1,0, +0,0,1,1,1,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,0,1,1,1,0,1, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 227 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,1,0,0,1,0, +0,0,0,1,1,0,0, +0,0,0,0,0,0,0, +0,0,1,1,1,0,0, +0,1,0,0,0,1,0, +0,0,0,0,0,1,0, +0,0,1,1,1,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,0,1,1,1,0,1, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 228 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,1,0,1,0,0, +0,0,1,0,1,0,0, +0,0,0,0,0,0,0, +0,0,1,1,1,0,0, +0,1,0,0,0,1,0, +0,0,0,0,0,1,0, +0,0,1,1,1,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,0,1,1,1,0,1, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 229 */ +0,0,0,1,0,0,0, +0,0,1,0,0,0,0, +0,0,0,0,0,0,0, +0,1,1,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 230 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,1,0,0, +0,0,0,1,0,0,0, +0,0,0,0,0,0,0, +0,0,0,1,1,1,0, +0,0,1,0,0,0,0, +0,1,0,0,0,0,0, +0,1,0,0,0,0,0, +0,1,0,0,0,0,0, +0,0,1,0,0,0,0, +0,0,0,1,1,1,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 231 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,1,1,1,0, +0,0,1,0,0,0,0, +0,1,0,0,0,0,0, +0,1,0,0,0,0,0, +0,1,0,0,0,0,0, +0,0,1,0,0,0,0, +0,0,0,1,1,1,0, +0,0,0,0,1,0,0, +0,0,1,1,0,0,0, + +/* Char 232 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,1,0,1,0,0, +0,0,0,1,0,0,0, +0,0,0,0,0,0,0, +0,0,0,1,1,1,0, +0,0,1,0,0,0,0, +0,1,0,0,0,0,0, +0,1,0,0,0,0,0, +0,1,0,0,0,0,0, +0,0,1,0,0,0,0, +0,0,0,1,1,1,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 233 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,1,0,0, +0,0,0,1,0,0,0, +0,0,0,0,0,0,0, +0,0,1,1,1,0,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,1,1,1,1,0, +0,1,0,0,0,0,0, +0,1,0,0,0,1,0, +0,0,1,1,1,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 234 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,1,1,1,0,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,1,1,1,1,0, +0,1,0,0,0,0,0, +0,1,0,0,0,1,0, +0,0,1,1,1,0,0, +0,0,0,1,0,0,0, +0,0,0,0,1,1,0, + +/* Char 235 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,1,0,1,0,0, +0,0,1,0,1,0,0, +0,0,0,0,0,0,0, +0,0,1,1,1,0,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,1,1,1,1,0, +0,1,0,0,0,0,0, +0,1,0,0,0,1,0, +0,0,1,1,1,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 236 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,1,0,1,0,0, +0,0,0,1,0,0,0, +0,0,0,0,0,0,0, +0,0,1,1,1,0,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,1,1,1,1,0, +0,1,0,0,0,0,0, +0,1,0,0,0,1,0, +0,0,1,1,1,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 237 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,1,0,0,0, +0,0,1,0,0,0,0, +0,0,0,0,0,0,0, +0,1,1,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 238 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,1,0,0,0, +0,0,1,0,1,0,0, +0,0,0,0,0,0,0, +0,1,1,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 239 */ +0,0,0,1,0,1,0, +0,0,0,0,1,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,1,0, +0,0,0,0,0,1,0, +0,0,0,0,0,1,0, +0,0,1,1,1,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,1,1,0, +0,0,1,1,0,1,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 240 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,1,0, +0,0,1,1,1,1,1, +0,0,0,0,0,1,0, +0,0,1,1,1,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,1,1,0, +0,0,1,1,0,1,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 241 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,1,0,0, +0,0,0,1,0,0,0, +0,0,0,0,0,0,0, +0,1,0,1,1,0,0, +0,1,1,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 242 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,1,0,1,0,0, +0,0,0,1,0,0,0, +0,0,0,0,0,0,0, +0,1,0,1,1,0,0, +0,1,1,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 243 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,1,0,0, +0,0,0,1,0,0,0, +0,0,0,0,0,0,0, +0,0,1,1,1,0,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,0,1,1,1,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 244 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,1,0,0,0, +0,0,1,0,1,0,0, +0,0,0,0,0,0,0, +0,0,1,1,1,0,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,0,1,1,1,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 245 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,1,0,0,1,0, +0,1,0,0,1,0,0, +0,0,0,0,0,0,0, +0,0,1,1,1,0,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,0,1,1,1,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 246 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,1,0,1,0,0, +0,0,1,0,1,0,0, +0,0,0,0,0,0,0, +0,0,1,1,1,0,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,0,1,1,1,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 247 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,0,0,0,0, +1,1,1,1,1,1,1, +0,0,0,0,0,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 248 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,1,0,1,0,0, +0,0,0,1,0,0,0, +0,0,0,0,0,0,0, +0,0,1,0,1,1,0, +0,0,1,1,0,0,0, +0,0,1,0,0,0,0, +0,0,1,0,0,0,0, +0,0,1,0,0,0,0, +0,0,1,0,0,0,0, +0,0,1,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 249 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,1,1,0,0, +0,0,1,0,0,1,0, +0,0,0,1,1,0,0, +0,0,0,0,0,0,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,1,1,0, +0,0,1,1,0,1,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 250 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,1,0,0, +0,0,0,1,0,0,0, +0,0,0,0,0,0,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,1,1,0, +0,0,1,1,0,1,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 251 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,1,0,0,1,0, +0,1,0,0,1,0,0, +0,0,0,0,0,0,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,1,1,0, +0,0,1,1,0,1,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 252 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,1,0,1,0,0, +0,0,1,0,1,0,0, +0,0,0,0,0,0,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,1,1,0, +0,0,1,1,0,1,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + +/* Char 253 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,1,0,0, +0,0,0,1,0,0,0, +0,0,0,0,0,0,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,1,0,0,0,1,0, +0,0,1,0,1,0,0, +0,0,1,0,1,0,0, +0,0,0,1,0,0,0, +0,0,0,1,0,0,0, +0,0,1,0,0,0,0, +0,1,1,0,0,0,0, + +/* Char 254 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,1,0,0,0,0, +0,0,1,0,0,0,0, +0,1,1,1,1,1,0, +0,0,1,0,0,0,0, +0,0,1,0,0,0,0, +0,0,1,0,0,0,0, +0,0,1,0,0,0,0, +0,0,1,0,0,0,0, +0,0,0,1,1,1,0, +0,0,0,1,0,0,0, +0,1,1,0,0,0,0, + +/* Char 255 */ +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,1,1,0,0, +0,0,0,1,1,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, +0,0,0,0,0,0,0, + + +}; + +gdFont gdLucidaBold12l2Rep = { + 256, + 0, + 7, + 15, + gdLucidaBold12l2Data +}; + +gdFontPtr gdLucidaBold12l2 = &gdLucidaBold12l2Rep; + +/* This file has not been truncated. */ + Added: trunk/orca/packages/rrdtool-1.0.42/gd1.3/gdlucidab12l2.h ============================================================================== --- (empty file) +++ trunk/orca/packages/rrdtool-1.0.42/gd1.3/gdlucidab12l2.h Sat Apr 12 10:45:54 2003 @@ -0,0 +1,21 @@ + +#ifndef _GDLUCIDAB12L2_H_ +#define _GDLUCIDAB12L2_H_ 1 + +/* + This is a header file for gd font, generated using + bdftogd version 0.60 by Jan Pazdziora, adelton at fi.muni.cz + from bdf font + -B&H-LucidaTypewriter-Medium-R-Normal-Sans-12-120-75-75-M-70-iso8859-2 + at Wed Apr 2 23:46:21 2003. + The original bdf was holding following copyright: + "Copyright Bigelow & Holmes 1986, 1985." + */ + + +#include "gd.h" + +extern gdFontPtr gdLucidaBold12l2; + +#endif + Added: trunk/orca/packages/rrdtool-1.0.42/gd1.3/gdlucidan10l2.c ============================================================================== --- (empty file) +++ trunk/orca/packages/rrdtool-1.0.42/gd1.3/gdlucidan10l2.c Sat Apr 12 10:45:54 2003 @@ -0,0 +1,3870 @@ + +/* + This is a header file for gd font, generated using + bdftogd version 0.60 by Jan Pazdziora, adelton at fi.muni.cz + from bdf font + -B&H-LucidaTypewriter-Medium-R-Normal-Sans-10-100-75-75-M-60-iso8859-2 + at Wed Apr 2 23:42:34 2003. + The original bdf was holding following copyright: + "Copyright Bigelow & Holmes 1986, 1985." + */ + + +#include "gdlucidan10l2.h" + +char gdLucidaNormal10l2Data[] = { +/* Char 0 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,1,0,1,0,0, +0,0,0,0,0,0, +0,1,0,1,0,0, +0,0,0,0,0,0, +0,1,0,1,0,0, +0,0,0,0,0,0, +0,1,0,1,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 1 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 2 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 3 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 4 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 5 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 6 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 7 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 8 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 9 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 10 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 11 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 12 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 13 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 14 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 15 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 16 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 17 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 18 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 19 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 20 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 21 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 22 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 23 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 24 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 25 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 26 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 27 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 28 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 29 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 30 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 31 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 32 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 33 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,1,0,0,0, +0,0,1,0,0,0, +0,0,1,0,0,0, +0,0,1,0,0,0, +0,0,0,0,0,0, +0,0,1,0,0,0, +0,0,1,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 34 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,1,0,1,0, +0,0,1,0,1,0, +0,0,1,0,1,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 35 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,1,0,1,0,0, +0,1,0,1,0,0, +1,1,0,1,1,0, +0,1,0,1,0,0, +1,1,0,1,1,0, +0,1,0,1,0,0, +0,1,0,1,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 36 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,1,0,0,0, +0,1,1,1,1,0, +1,0,1,0,0,0, +1,0,1,0,0,0, +0,1,1,1,0,0, +0,0,1,0,1,0, +0,0,1,0,1,0, +1,1,1,1,0,0, +0,0,1,0,0,0, +0,0,0,0,0,0, + +/* Char 37 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,1,0,0,0,1, +1,0,1,0,1,0, +0,1,0,1,0,0, +0,0,0,1,0,0, +0,0,1,0,1,0, +0,1,0,1,0,1, +1,0,0,0,1,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 38 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,1,1,0,0, +0,1,0,0,1,0, +0,0,1,1,0,0, +0,0,1,1,0,1, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,0,1,1,0,1, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 39 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 40 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,1,0, +0,0,0,1,0,0, +0,0,1,0,0,0, +0,0,1,0,0,0, +0,0,1,0,0,0, +0,0,1,0,0,0, +0,0,1,0,0,0, +0,0,0,1,0,0, +0,0,0,0,1,0, +0,0,0,0,0,0, + +/* Char 41 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,1,0,0,0,0, +0,0,1,0,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,1,0,0,0, +0,1,0,0,0,0, +0,0,0,0,0,0, + +/* Char 42 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,1,0,1,0,0, +0,0,1,0,0,0, +0,1,0,1,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 43 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,1,1,1,1,1, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 44 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,1,0,0,0, + +/* Char 45 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,1,1,1,1,1, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 46 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,1,0,0,0, +0,0,1,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 47 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,1, +0,0,0,0,0,1, +0,0,0,0,1,0, +0,0,0,0,1,0, +0,0,0,1,0,0, +0,0,1,0,0,0, +0,0,1,0,0,0, +0,1,0,0,0,0, +0,1,0,0,0,0, +0,0,0,0,0,0, + +/* Char 48 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,1,1,1,0, +0,1,0,0,0,1, +0,1,0,0,0,1, +0,1,0,0,0,1, +0,1,0,0,0,1, +0,1,0,0,0,1, +0,0,1,1,1,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 49 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,1,0,0, +0,0,1,1,0,0, +0,1,0,1,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 50 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,1,1,1,0, +0,1,0,0,0,1, +0,0,0,0,0,1, +0,0,0,1,1,0, +0,0,1,0,0,0, +0,1,0,0,0,0, +0,1,1,1,1,1, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 51 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,1,1,1,0, +0,1,0,0,0,1, +0,0,0,0,0,1, +0,0,0,1,1,0, +0,0,0,0,0,1, +0,1,0,0,0,1, +0,0,1,1,1,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 52 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,1,1,0, +0,0,1,0,1,0, +0,0,1,0,1,0, +0,1,0,0,1,0, +0,1,1,1,1,1, +0,0,0,0,1,0, +0,0,0,0,1,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 53 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,1,1,1,1,1, +0,1,0,0,0,0, +0,1,0,0,0,0, +0,1,1,1,1,0, +0,0,0,0,0,1, +0,1,0,0,0,1, +0,0,1,1,1,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 54 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,1,1,1,0, +0,1,0,0,0,1, +0,1,0,0,0,0, +0,1,1,1,1,0, +0,1,0,0,0,1, +0,1,0,0,0,1, +0,0,1,1,1,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 55 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,1,1,1,1,1, +0,0,0,0,0,1, +0,0,0,0,1,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,1,0,0,0, +0,0,1,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 56 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,1,1,1,0, +0,1,0,0,0,1, +0,1,0,0,0,1, +0,0,1,1,1,0, +0,1,0,0,0,1, +0,1,0,0,0,1, +0,0,1,1,1,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 57 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,1,1,1,0, +0,1,0,0,0,1, +0,1,0,0,0,1, +0,0,1,1,1,1, +0,0,0,0,0,1, +0,1,0,0,0,1, +0,0,1,1,1,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 58 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,1,0,0,0, +0,0,1,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,1,0,0,0, +0,0,1,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 59 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,1,0,0,0, + +/* Char 60 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,1,0, +0,0,0,1,0,0, +0,0,1,0,0,0, +0,0,0,1,0,0, +0,0,0,0,1,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 61 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,1,1,1,1,1, +0,0,0,0,0,0, +0,1,1,1,1,1, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 62 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,1,0,0,0,0, +0,0,1,0,0,0, +0,0,0,1,0,0, +0,0,1,0,0,0, +0,1,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 63 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,1,1,1,0, +0,1,0,0,0,1, +0,0,0,0,0,1, +0,0,0,1,1,0, +0,0,0,0,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 64 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,1,1,1,0,0, +1,0,0,0,1,0, +1,0,1,1,1,0, +1,0,1,0,1,0, +1,0,1,1,1,1, +1,0,0,0,0,0, +0,1,1,1,1,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 65 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,1,1,0,0, +0,0,1,1,0,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,1,1,1,1,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 66 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,1,1,1,0,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,1,1,1,0,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,1,1,1,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 67 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,1,1,1,0, +0,1,0,0,1,0, +1,0,0,0,0,0, +1,0,0,0,0,0, +1,0,0,0,0,0, +0,1,0,0,0,0, +0,0,1,1,1,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 68 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,1,1,1,0,0, +0,1,0,0,1,0, +0,1,0,0,0,1, +0,1,0,0,0,1, +0,1,0,0,0,1, +0,1,0,0,1,0, +0,1,1,1,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 69 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,1,1,1,1,0, +0,1,0,0,0,0, +0,1,0,0,0,0, +0,1,1,1,0,0, +0,1,0,0,0,0, +0,1,0,0,0,0, +0,1,1,1,1,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 70 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,1,1,1,1,0, +0,1,0,0,0,0, +0,1,0,0,0,0, +0,1,1,1,0,0, +0,1,0,0,0,0, +0,1,0,0,0,0, +0,1,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 71 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,1,1,1,0, +0,1,0,0,1,0, +1,0,0,0,0,0, +1,0,0,0,0,0, +1,0,0,0,1,0, +0,1,0,0,1,0, +0,0,1,1,1,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 72 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,1,1,1,1,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 73 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,1,1,1,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,1,1,1,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 74 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,1,1,1,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +1,1,1,0,0,0, + +/* Char 75 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,1,0,0,0,1, +0,1,0,0,1,0, +0,1,0,1,0,0, +0,1,1,0,0,0, +0,1,0,1,0,0, +0,1,0,0,1,0, +0,1,0,0,0,1, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 76 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,1,0,0,0,0, +0,1,0,0,0,0, +0,1,0,0,0,0, +0,1,0,0,0,0, +0,1,0,0,0,0, +0,1,0,0,0,0, +0,1,1,1,1,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 77 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,1,0,0,0,1, +0,1,1,0,1,1, +0,1,1,0,1,1, +0,1,0,1,0,1, +0,1,0,1,0,1, +0,1,0,0,0,1, +0,1,0,0,0,1, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 78 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,1,0,0,1,0, +0,1,1,0,1,0, +0,1,1,0,1,0, +0,1,0,1,1,0, +0,1,0,1,1,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 79 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,1,1,0,0, +0,1,0,0,1,0, +1,0,0,0,0,1, +1,0,0,0,0,1, +1,0,0,0,0,1, +0,1,0,0,1,0, +0,0,1,1,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 80 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,1,1,1,0,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,1,1,1,0,0, +0,1,0,0,0,0, +0,1,0,0,0,0, +0,1,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 81 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,1,1,0,0, +0,1,0,0,1,0, +1,0,0,0,0,1, +1,0,0,0,0,1, +1,0,0,0,0,1, +0,1,0,0,1,0, +0,0,1,1,0,0, +0,0,0,1,1,0, +0,0,0,0,1,1, + +/* Char 82 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,1,1,1,0,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,1,1,1,0,0, +0,1,0,1,0,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 83 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,1,1,1,0, +0,1,0,0,0,0, +0,1,0,0,0,0, +0,0,1,1,0,0, +0,0,0,0,1,0, +0,0,0,0,1,0, +0,1,1,1,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 84 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,1,1,1,1,1, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 85 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,0,1,1,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 86 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,0,1,1,0,0, +0,0,1,1,0,0, +0,0,1,1,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 87 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,1,0,0,0,1, +0,1,0,1,0,1, +0,1,0,1,0,1, +0,1,0,1,0,1, +0,1,1,1,1,1, +0,0,1,0,1,0, +0,0,1,0,1,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 88 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,0,1,1,0,0, +0,0,1,1,0,0, +0,0,1,1,0,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 89 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,1,0,0,0,1, +0,1,0,0,0,1, +0,0,1,0,1,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 90 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,1,1,1,1,0, +0,0,0,0,1,0, +0,0,0,1,0,0, +0,0,1,1,0,0, +0,0,1,0,0,0, +0,1,0,0,0,0, +0,1,1,1,1,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 91 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,1,1,1,0, +0,0,1,0,0,0, +0,0,1,0,0,0, +0,0,1,0,0,0, +0,0,1,0,0,0, +0,0,1,0,0,0, +0,0,1,0,0,0, +0,0,1,0,0,0, +0,0,1,1,1,0, +0,0,0,0,0,0, + +/* Char 92 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,1,0,0,0,0, +0,1,0,0,0,0, +0,0,1,0,0,0, +0,0,1,0,0,0, +0,0,0,1,0,0, +0,0,0,0,1,0, +0,0,0,0,1,0, +0,0,0,0,0,1, +0,0,0,0,0,1, +0,0,0,0,0,0, + +/* Char 93 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,1,1,1,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,1,1,1,0,0, +0,0,0,0,0,0, + +/* Char 94 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,1,0,1,0, +0,0,1,0,1,0, +0,1,0,0,0,1, +0,1,0,0,0,1, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 95 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +1,1,1,1,1,1, +0,0,0,0,0,0, + +/* Char 96 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,1,0,0,0, +0,0,0,1,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 97 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,1,1,0,0, +0,0,0,0,1,0, +0,0,1,1,1,0, +0,1,0,0,1,0, +0,1,0,1,1,0, +0,0,1,0,1,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 98 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,1,0,0,0,0, +0,1,0,0,0,0, +0,1,0,1,0,0, +0,1,1,0,1,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,1,1,1,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 99 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,1,1,1,0, +0,1,0,0,0,0, +0,1,0,0,0,0, +0,1,0,0,0,0, +0,1,0,0,0,0, +0,0,1,1,1,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 100 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,1,0, +0,0,0,0,1,0, +0,0,1,1,1,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,1,0,1,1,0, +0,0,1,0,1,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 101 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,1,1,0,0, +0,1,0,0,1,0, +0,1,1,1,1,0, +0,1,0,0,0,0, +0,1,0,0,0,0, +0,0,1,1,1,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 102 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,1,1,1, +0,0,1,0,0,0, +0,1,1,1,1,0, +0,0,1,0,0,0, +0,0,1,0,0,0, +0,0,1,0,0,0, +0,0,1,0,0,0, +0,0,1,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 103 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,1,1,1,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,1,0,1,1,0, +0,0,1,0,1,0, +0,0,0,0,1,0, +0,1,1,1,0,0, + +/* Char 104 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,1,0,0,0,0, +0,1,0,0,0,0, +0,1,0,1,0,0, +0,1,1,0,1,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 105 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,1,0,0, +0,0,0,0,0,0, +0,1,1,1,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 106 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,1,0,0, +0,0,0,0,0,0, +0,1,1,1,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +1,1,1,0,0,0, + +/* Char 107 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,1,0,0,0,0, +0,1,0,0,0,0, +0,1,0,0,1,0, +0,1,0,1,0,0, +0,1,1,0,0,0, +0,1,0,1,0,0, +0,1,0,0,1,0, +0,1,0,0,0,1, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 108 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,1,1,1,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 109 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,1,1,0,1,0, +0,1,0,1,0,1, +0,1,0,1,0,1, +0,1,0,1,0,1, +0,1,0,1,0,1, +0,1,0,1,0,1, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 110 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,1,0,1,0,0, +0,1,1,0,1,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 111 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,1,1,0,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,0,1,1,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 112 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,1,0,1,0,0, +0,1,1,0,1,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,1,1,1,0,0, +0,1,0,0,0,0, +0,1,0,0,0,0, + +/* Char 113 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,1,1,1,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,1,0,1,1,0, +0,0,1,0,1,0, +0,0,0,0,1,0, +0,0,0,0,1,0, + +/* Char 114 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,1,0,1,1, +0,0,1,1,0,1, +0,0,1,0,0,0, +0,0,1,0,0,0, +0,0,1,0,0,0, +0,0,1,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 115 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,1,1,1,0, +0,1,0,0,0,0, +0,1,1,0,0,0, +0,0,0,1,1,0, +0,0,0,0,1,0, +0,1,1,1,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 116 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,1,0,0,0, +0,1,1,1,1,0, +0,0,1,0,0,0, +0,0,1,0,0,0, +0,0,1,0,0,0, +0,0,1,0,0,0, +0,0,0,1,1,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 117 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,1,0,1,1,0, +0,0,1,0,1,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 118 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,0,1,1,0,0, +0,0,1,1,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 119 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,1,0,0,0,1, +0,1,0,1,0,1, +0,1,0,1,0,1, +0,1,1,1,1,1, +0,0,1,0,1,0, +0,0,1,0,1,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 120 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,1,0,0,0,1, +0,0,1,0,1,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,1,0,1,0, +0,1,0,0,0,1, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 121 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,0,1,1,0,0, +0,0,1,1,0,0, +0,0,1,0,0,0, +0,1,0,0,0,0, +0,1,0,0,0,0, + +/* Char 122 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,1,1,1,1,0, +0,0,0,0,1,0, +0,0,0,1,0,0, +0,0,1,0,0,0, +0,1,0,0,0,0, +0,1,1,1,1,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 123 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,1,1,0, +0,0,1,0,0,0, +0,0,1,0,0,0, +0,0,1,0,0,0, +1,1,0,0,0,0, +0,0,1,0,0,0, +0,0,1,0,0,0, +0,0,1,0,0,0, +0,0,0,1,1,0, +0,0,0,0,0,0, + +/* Char 124 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,0,0,0, + +/* Char 125 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,1,1,0,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,0,1,1, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,1,1,0,0,0, +0,0,0,0,0,0, + +/* Char 126 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,1,1,0,0,1, +1,0,0,1,1,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 127 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 128 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 129 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 130 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 131 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 132 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 133 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 134 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 135 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 136 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 137 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 138 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 139 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 140 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 141 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 142 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 143 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 144 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 145 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 146 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 147 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 148 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 149 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 150 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 151 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 152 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 153 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 154 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 155 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 156 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 157 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 158 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 159 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 160 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 161 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,1,1,0,0, +0,0,1,1,0,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,1,1,1,1,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,0,1,0,0,0, +0,0,0,1,0,0, + +/* Char 162 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,1,0,0,1,0, +0,0,1,1,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 163 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,1,0,0,0,0, +0,1,0,0,0,0, +0,1,0,1,0,0, +0,1,1,0,0,0, +1,1,0,0,0,0, +0,1,0,0,0,0, +0,1,1,1,1,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 164 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +1,0,0,0,0,1, +0,1,1,1,1,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,1,1,1,1,0, +1,0,0,0,0,1, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 165 */ +0,0,0,0,0,0, +0,1,0,1,0,0, +0,0,1,0,0,0, +0,0,0,0,0,0, +0,1,0,0,0,0, +0,1,0,0,0,0, +0,1,0,0,0,0, +0,1,0,0,0,0, +0,1,0,0,0,0, +0,1,0,0,0,0, +0,1,1,1,1,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 166 */ +0,0,0,0,0,0, +0,0,0,1,0,0, +0,0,1,0,0,0, +0,0,0,0,0,0, +0,0,1,1,1,0, +0,1,0,0,0,0, +0,1,0,0,0,0, +0,0,1,1,0,0, +0,0,0,0,1,0, +0,0,0,0,1,0, +0,1,1,1,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 167 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,1,1,1,0, +0,1,0,0,0,0, +0,1,1,1,0,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,0,1,1,1,0, +0,0,0,0,1,0, +0,1,1,1,0,0, +0,0,0,0,0,0, + +/* Char 168 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,1,0,0,1,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 169 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,1,0,1,0, +0,0,0,1,0,0, +0,0,0,0,0,0, +0,0,1,1,1,0, +0,1,0,0,0,0, +0,0,1,0,0,0, +0,0,0,1,0,0, +0,0,0,0,1,0, +0,1,1,1,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 170 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,1,1,1,0, +0,1,0,0,0,0, +0,1,0,0,0,0, +0,0,1,1,0,0, +0,0,0,0,1,0, +0,0,0,0,1,0, +0,1,1,1,0,0, +0,0,0,1,0,0, +0,0,1,0,0,0, + +/* Char 171 */ +0,0,0,0,0,0, +0,0,1,0,1,0, +0,0,0,1,0,0, +0,0,0,0,0,0, +0,1,1,1,1,1, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 172 */ +0,0,0,0,0,0, +0,0,0,0,1,0, +0,0,0,1,0,0, +0,0,0,0,0,0, +0,1,1,1,1,0, +0,0,0,0,1,0, +0,0,0,1,0,0, +0,0,1,1,0,0, +0,0,1,0,0,0, +0,1,0,0,0,0, +0,1,1,1,1,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 173 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,1,1,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 174 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,1,0,1,0, +0,0,0,1,0,0, +0,0,0,0,0,0, +0,1,1,1,1,0, +0,0,0,0,1,0, +0,0,0,1,0,0, +0,0,1,0,0,0, +0,1,0,0,0,0, +0,1,1,1,1,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 175 */ +0,0,0,0,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,0,0,0, +0,1,1,1,1,0, +0,0,0,0,1,0, +0,0,0,1,0,0, +0,0,1,1,0,0, +0,0,1,0,0,0, +0,1,0,0,0,0, +0,1,1,1,1,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 176 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,1,0,0, +0,0,1,0,1,0, +0,0,0,1,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 177 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,1,1,0,0, +0,0,0,0,1,0, +0,0,1,1,1,0, +0,1,0,0,1,0, +0,1,0,1,1,0, +0,0,1,0,1,0, +0,0,0,1,0,0, +0,0,0,0,1,0, + +/* Char 178 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,1,0,0,0, +0,0,0,1,0,0, + +/* Char 179 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,1,1,1,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,1,1,1, +0,1,1,1,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 180 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,1,0,0, +0,0,1,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 181 */ +0,1,0,1,0,0, +0,0,1,0,0,0, +0,0,0,0,0,0, +0,1,1,1,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 182 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,1,0,0, +0,0,1,0,0,0, +0,0,0,0,0,0, +0,0,1,1,1,0, +0,1,0,0,0,0, +0,1,1,0,0,0, +0,0,0,1,1,0, +0,0,0,0,1,0, +0,1,1,1,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 183 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,1,0,1,0, +0,0,0,1,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 184 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,1,0,0, +0,0,1,0,0,0, + +/* Char 185 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,1,0,1,0, +0,0,0,1,0,0, +0,0,0,0,0,0, +0,0,1,1,1,0, +0,1,0,0,0,0, +0,1,1,0,0,0, +0,0,0,1,1,0, +0,0,0,0,1,0, +0,1,1,1,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 186 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,1,1,1,0, +0,1,0,0,0,0, +0,1,1,0,0,0, +0,0,0,1,1,0, +0,0,0,0,1,0, +0,1,1,1,0,0, +0,0,0,1,0,0, +0,0,1,0,0,0, + +/* Char 187 */ +0,0,0,0,0,0, +0,1,0,1,0,0, +0,0,1,0,0,0, +0,0,0,0,0,0, +0,0,1,0,0,0, +0,1,1,1,1,0, +0,0,1,0,0,0, +0,0,1,0,0,0, +0,0,1,0,0,0, +0,0,1,0,0,0, +0,0,0,1,1,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 188 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,1,0, +0,0,0,1,0,0, +0,0,0,0,0,0, +0,1,1,1,1,0, +0,0,0,0,1,0, +0,0,0,1,0,0, +0,0,1,0,0,0, +0,1,0,0,0,0, +0,1,1,1,1,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 189 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,1,0,0,1, +0,1,0,0,1,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 190 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,1,0,1,0, +0,0,0,1,0,0, +0,0,0,0,0,0, +0,1,1,1,1,0, +0,0,0,0,1,0, +0,0,0,1,0,0, +0,0,1,0,0,0, +0,1,0,0,0,0, +0,1,1,1,1,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 191 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,0,0,0, +0,1,1,1,1,0, +0,0,0,0,1,0, +0,0,0,1,0,0, +0,0,1,0,0,0, +0,1,0,0,0,0, +0,1,1,1,1,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 192 */ +0,0,0,0,0,0, +0,0,0,1,0,0, +0,0,1,0,0,0, +0,0,0,0,0,0, +0,1,1,1,0,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,1,1,1,0,0, +0,1,0,1,0,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 193 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,1,0,0, +0,0,1,0,0,0, +0,0,0,0,0,0, +0,0,1,1,0,0, +0,0,1,1,0,0, +0,1,0,0,1,0, +0,1,1,1,1,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 194 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,1,0,0, +0,0,1,0,1,0, +0,0,0,0,0,0, +0,0,1,1,0,0, +0,0,1,1,0,0, +0,1,0,0,1,0, +0,1,1,1,1,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 195 */ +0,0,0,0,0,0, +0,1,0,0,1,0, +0,0,1,1,0,0, +0,0,0,0,0,0, +0,0,1,1,0,0, +0,0,1,1,0,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,1,1,1,1,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 196 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,1,0,0,1,0, +0,0,0,0,0,0, +0,0,1,1,0,0, +0,0,1,1,0,0, +0,1,0,0,1,0, +0,1,1,1,1,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 197 */ +0,0,0,0,0,0, +0,0,1,0,0,0, +0,1,0,0,0,0, +0,0,0,0,0,0, +0,1,0,0,0,0, +0,1,0,0,0,0, +0,1,0,0,0,0, +0,1,0,0,0,0, +0,1,0,0,0,0, +0,1,0,0,0,0, +0,1,1,1,1,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 198 */ +0,0,0,0,0,0, +0,0,0,1,0,0, +0,0,1,0,0,0, +0,0,0,0,0,0, +0,0,1,1,1,0, +0,1,0,0,1,0, +1,0,0,0,0,0, +1,0,0,0,0,0, +1,0,0,0,0,0, +0,1,0,0,0,0, +0,0,1,1,1,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 199 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,1,1,1,0, +0,1,0,0,1,0, +1,0,0,0,0,0, +1,0,0,0,0,0, +1,0,0,0,0,0, +0,1,0,0,0,0, +0,0,1,1,1,0, +0,0,0,1,0,0, +0,0,1,0,0,0, + +/* Char 200 */ +0,0,0,0,0,0, +0,0,1,0,1,0, +0,0,0,1,0,0, +0,0,0,0,0,0, +0,0,1,1,1,0, +0,1,0,0,1,0, +1,0,0,0,0,0, +1,0,0,0,0,0, +1,0,0,0,0,0, +0,1,0,0,0,0, +0,0,1,1,1,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 201 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,1,0,0, +0,0,1,0,0,0, +0,0,0,0,0,0, +0,1,1,1,1,0, +0,1,0,0,0,0, +0,1,1,1,0,0, +0,1,0,0,0,0, +0,1,0,0,0,0, +0,1,1,1,1,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 202 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,1,1,1,1,0, +0,1,0,0,0,0, +0,1,0,0,0,0, +0,1,1,1,0,0, +0,1,0,0,0,0, +0,1,0,0,0,0, +0,1,1,1,1,0, +0,0,1,0,0,0, +0,0,0,1,0,0, + +/* Char 203 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,1,0,1,0, +0,0,0,0,0,0, +0,1,1,1,1,0, +0,1,0,0,0,0, +0,1,1,1,0,0, +0,1,0,0,0,0, +0,1,0,0,0,0, +0,1,1,1,1,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 204 */ +0,0,0,0,0,0, +0,1,0,1,0,0, +0,0,1,0,0,0, +0,0,0,0,0,0, +0,1,1,1,1,0, +0,1,0,0,0,0, +0,1,0,0,0,0, +0,1,1,1,0,0, +0,1,0,0,0,0, +0,1,0,0,0,0, +0,1,1,1,1,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 205 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,1,0, +0,0,0,1,0,0, +0,0,0,0,0,0, +0,0,1,1,1,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,1,1,1,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 206 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,1,0,0, +0,0,1,0,1,0, +0,0,0,0,0,0, +0,0,1,1,1,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,1,1,1,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 207 */ +0,0,0,0,0,0, +0,1,0,1,0,0, +0,0,1,0,0,0, +0,0,0,0,0,0, +0,1,1,1,0,0, +0,1,0,0,1,0, +0,1,0,0,0,1, +0,1,0,0,0,1, +0,1,0,0,0,1, +0,1,0,0,1,0, +0,1,1,1,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 208 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,1,1,1,0,0, +0,1,0,0,1,0, +0,1,0,0,0,1, +1,1,1,1,0,1, +0,1,0,0,0,1, +0,1,0,0,1,0, +0,1,1,1,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 209 */ +0,0,0,0,0,0, +0,0,0,1,0,0, +0,0,1,0,0,0, +0,0,0,0,0,0, +0,1,0,0,1,0, +0,1,1,0,1,0, +0,1,1,0,1,0, +0,1,0,1,1,0, +0,1,0,1,1,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 210 */ +0,0,0,0,0,0, +0,1,0,1,0,0, +0,0,1,0,0,0, +0,0,0,0,0,0, +0,1,0,0,1,0, +0,1,1,0,1,0, +0,1,1,0,1,0, +0,1,0,1,1,0, +0,1,0,1,1,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 211 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,1,0,0, +0,0,1,0,0,0, +0,0,0,0,0,0, +0,0,1,1,0,0, +0,1,0,0,1,0, +1,0,0,0,0,1, +1,0,0,0,0,1, +0,1,0,0,1,0, +0,0,1,1,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 212 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,1,0,0, +0,0,1,0,1,0, +0,0,0,0,0,0, +0,0,1,1,0,0, +0,1,0,0,1,0, +1,0,0,0,0,1, +1,0,0,0,0,1, +0,1,0,0,1,0, +0,0,1,1,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 213 */ +0,0,0,0,0,0, +0,0,1,0,0,1, +0,1,0,0,1,0, +0,0,0,0,0,0, +0,0,1,1,0,0, +0,1,0,0,1,0, +1,0,0,0,0,1, +1,0,0,0,0,1, +1,0,0,0,0,1, +0,1,0,0,1,0, +0,0,1,1,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 214 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,1,0,0,1,0, +0,0,0,0,0,0, +0,0,1,1,0,0, +0,1,0,0,1,0, +1,0,0,0,0,1, +1,0,0,0,0,1, +0,1,0,0,1,0, +0,0,1,1,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 215 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,1,0,0,0,1, +0,0,1,0,1,0, +0,0,0,1,0,0, +0,0,1,0,1,0, +0,1,0,0,0,1, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 216 */ +0,0,0,0,0,0, +0,1,0,1,0,0, +0,0,1,0,0,0, +0,0,0,0,0,0, +0,1,1,1,0,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,1,1,1,0,0, +0,1,0,1,0,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 217 */ +0,0,0,1,0,0, +0,0,1,0,1,0, +0,0,0,1,0,0, +0,0,0,0,0,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,0,1,1,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 218 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,1,0,0, +0,0,1,0,0,0, +0,0,0,0,0,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,0,1,1,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 219 */ +0,0,0,0,0,0, +0,0,1,0,0,1, +0,1,0,0,1,0, +0,0,0,0,0,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,0,1,1,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 220 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,1,0,0,1,0, +0,0,0,0,0,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,0,1,1,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 221 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,1,0, +0,0,0,1,0,0, +0,0,0,0,0,0, +0,1,0,0,0,1, +0,1,0,0,0,1, +0,0,1,0,1,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 222 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,1,1,1,1,1, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,1,0,0,0, + +/* Char 223 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,1,1,0,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,1,0,1,0,0, +0,1,0,0,1,0, +0,1,0,0,0,1, +0,1,0,0,0,1, +0,1,0,1,1,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 224 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,1,0, +0,0,0,1,0,0, +0,0,0,0,0,0, +0,0,1,0,1,1, +0,0,1,1,0,1, +0,0,1,0,0,0, +0,0,1,0,0,0, +0,0,1,0,0,0, +0,0,1,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 225 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,1,0,0, +0,0,1,0,0,0, +0,0,0,0,0,0, +0,0,1,1,0,0, +0,0,0,0,1,0, +0,0,1,1,1,0, +0,1,0,0,1,0, +0,1,0,1,1,0, +0,0,1,0,1,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 226 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,1,0,0, +0,0,1,0,1,0, +0,0,0,0,0,0, +0,0,1,1,0,0, +0,0,0,0,1,0, +0,0,1,1,1,0, +0,1,0,0,1,0, +0,1,0,1,1,0, +0,0,1,0,1,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 227 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,1,0,0,1,0, +0,0,1,1,0,0, +0,0,0,0,0,0, +0,0,1,1,0,0, +0,0,0,0,1,0, +0,0,1,1,1,0, +0,1,0,0,1,0, +0,1,0,1,1,0, +0,0,1,0,1,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 228 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,1,0,1,0, +0,0,0,0,0,0, +0,0,1,1,0,0, +0,0,0,0,1,0, +0,0,1,1,1,0, +0,1,0,0,1,0, +0,1,0,1,1,0, +0,0,1,0,1,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 229 */ +0,0,0,1,0,0, +0,0,1,0,0,0, +0,0,0,0,0,0, +0,1,1,1,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 230 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,1,0,0, +0,0,1,0,0,0, +0,0,0,0,0,0, +0,0,1,1,1,0, +0,1,0,0,0,0, +0,1,0,0,0,0, +0,1,0,0,0,0, +0,1,0,0,0,0, +0,0,1,1,1,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 231 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,1,1,1,0, +0,1,0,0,0,0, +0,1,0,0,0,0, +0,1,0,0,0,0, +0,1,0,0,0,0, +0,0,1,1,1,0, +0,0,0,1,0,0, +0,0,1,0,0,0, + +/* Char 232 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,1,0,1,0, +0,0,0,1,0,0, +0,0,0,0,0,0, +0,0,1,1,1,0, +0,1,0,0,0,0, +0,1,0,0,0,0, +0,1,0,0,0,0, +0,1,0,0,0,0, +0,0,1,1,1,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 233 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,1,0,0, +0,0,1,0,0,0, +0,0,0,0,0,0, +0,0,1,1,0,0, +0,1,0,0,1,0, +0,1,1,1,1,0, +0,1,0,0,0,0, +0,1,0,0,0,0, +0,0,1,1,1,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 234 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,1,1,0,0, +0,1,0,0,1,0, +0,1,1,1,1,0, +0,1,0,0,0,0, +0,1,0,0,0,0, +0,0,1,1,1,0, +0,0,1,0,0,0, +0,0,0,1,0,0, + +/* Char 235 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,1,0,0,1,0, +0,0,0,0,0,0, +0,0,1,1,0,0, +0,1,0,0,1,0, +0,1,1,1,1,0, +0,1,0,0,0,0, +0,1,0,0,0,0, +0,0,1,1,1,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 236 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,1,0,1,0, +0,0,0,1,0,0, +0,0,0,0,0,0, +0,0,1,1,0,0, +0,1,0,0,1,0, +0,1,1,1,1,0, +0,1,0,0,0,0, +0,1,0,0,0,0, +0,0,1,1,1,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 237 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,1,0,0, +0,0,1,0,0,0, +0,0,0,0,0,0, +0,1,1,1,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 238 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,1,0,0, +0,0,1,0,1,0, +0,0,0,0,0,0, +0,1,1,1,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 239 */ +0,0,1,0,1,0, +0,0,0,1,0,0, +0,0,0,0,0,0, +0,0,0,0,1,0, +0,0,0,0,1,0, +0,0,1,1,1,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,1,0,1,1,0, +0,0,1,0,1,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 240 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,1,0, +0,0,1,1,1,0, +0,0,1,1,1,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,1,0,1,1,0, +0,0,1,0,1,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 241 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,1,0,0, +0,0,1,0,0,0, +0,0,0,0,0,0, +0,1,0,1,0,0, +0,1,1,0,1,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 242 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,1,0,1,0,0, +0,0,1,0,0,0, +0,0,0,0,0,0, +0,1,0,1,0,0, +0,1,1,0,1,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 243 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,1,0,0, +0,0,1,0,0,0, +0,0,0,0,0,0, +0,0,1,1,0,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,0,1,1,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 244 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,1,0,0, +0,0,1,0,1,0, +0,0,0,0,0,0, +0,0,1,1,0,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,0,1,1,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 245 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,1,0,0,1, +0,1,0,0,1,0, +0,0,0,0,0,0, +0,0,1,1,0,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,0,1,1,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 246 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,1,0,0,1,0, +0,0,0,0,0,0, +0,0,1,1,0,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,0,1,1,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 247 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,1,0,0, +0,0,0,0,0,0, +0,1,1,1,1,1, +0,0,0,0,0,0, +0,0,0,1,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 248 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,1,0,1, +0,0,0,0,1,0, +0,0,0,0,0,0, +0,0,1,0,1,1, +0,0,1,1,0,1, +0,0,1,0,0,0, +0,0,1,0,0,0, +0,0,1,0,0,0, +0,0,1,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 249 */ +0,0,0,0,0,0, +0,0,0,1,0,0, +0,0,1,0,1,0, +0,0,0,1,0,0, +0,0,0,0,0,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,1,0,1,1,0, +0,0,1,0,1,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 250 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,1,0,0, +0,0,1,0,0,0, +0,0,0,0,0,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,1,0,1,1,0, +0,0,1,0,1,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 251 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,1,0,0,1, +0,1,0,0,1,0, +0,0,0,0,0,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,1,0,1,1,0, +0,0,1,0,1,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 252 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,1,0,0,1,0, +0,0,0,0,0,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,1,0,1,1,0, +0,0,1,0,1,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + +/* Char 253 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,1,0,0, +0,0,1,0,0,0, +0,0,0,0,0,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,1,0,0,1,0, +0,0,1,1,0,0, +0,0,1,1,0,0, +0,0,1,0,0,0, +0,1,0,0,0,0, +0,1,0,0,0,0, + +/* Char 254 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,1,0,0,0, +0,1,1,1,1,0, +0,0,1,0,0,0, +0,0,1,0,0,0, +0,0,1,0,0,0, +0,0,1,0,0,0, +0,0,0,1,1,0, +0,0,0,1,0,0, +0,0,1,0,0,0, + +/* Char 255 */ +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,1,0,0, +0,0,0,1,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, +0,0,0,0,0,0, + + +}; + +gdFont gdLucidaNormal10l2Rep = { + 256, + 0, + 6, + 13, + gdLucidaNormal10l2Data +}; + +gdFontPtr gdLucidaNormal10l2 = &gdLucidaNormal10l2Rep; + +/* This file has not been truncated. */ + Added: trunk/orca/packages/rrdtool-1.0.42/gd1.3/gdlucidan10l2.h ============================================================================== --- (empty file) +++ trunk/orca/packages/rrdtool-1.0.42/gd1.3/gdlucidan10l2.h Sat Apr 12 10:45:54 2003 @@ -0,0 +1,21 @@ + +#ifndef _GDLUCIDAN10L2_H_ +#define _GDLUCIDAN10L2_H_ 1 + +/* + This is a header file for gd font, generated using + bdftogd version 0.60 by Jan Pazdziora, adelton at fi.muni.cz + from bdf font + -B&H-LucidaTypewriter-Medium-R-Normal-Sans-10-100-75-75-M-60-iso8859-2 + at Wed Apr 2 23:42:34 2003. + The original bdf was holding following copyright: + "Copyright Bigelow & Holmes 1986, 1985." + */ + + +#include "gd.h" + +extern gdFontPtr gdLucidaNormal10l2; + +#endif + Added: trunk/orca/packages/rrdtool-1.0.42/perl-piped/Makefile.PL.in ============================================================================== --- (empty file) +++ trunk/orca/packages/rrdtool-1.0.42/perl-piped/Makefile.PL.in Sat Apr 12 10:45:54 2003 @@ -0,0 +1,10 @@ +use ExtUtils::MakeMaker; + +# See lib/ExtUtils/MakeMaker.pm for details of how to influence +# the contents of the Makefile that is written. +WriteMakefile( + 'NAME' => 'RRDp', + 'VERSION' => '@top_srcdir@/perl-piped/RRDp.pm', # finds $VERSION + 'linkext' => {LINKTYPE => ''}, + 'dist' => {COMPRESS=>'gzip', SUFFIX=>'gz'}, +); Modified: trunk/orca/packages/rrdtool-1.0.42/perl-piped/RRDp.pm ============================================================================== --- trunk/orca/packages/rrdtool-1.0.41/perl-piped/RRDp.pm (original) +++ trunk/orca/packages/rrdtool-1.0.42/perl-piped/RRDp.pm Sat Apr 12 10:45:54 2003 @@ -110,7 +110,7 @@ sub end (); sub read (); -$VERSION = 1.000411 ; +$VERSION = 1.000421 ; sub start ($){ croak "rrdtool is already running" Modified: trunk/orca/packages/rrdtool-1.0.42/perl-shared/RRDs.pm ============================================================================== --- trunk/orca/packages/rrdtool-1.0.41/perl-shared/RRDs.pm (original) +++ trunk/orca/packages/rrdtool-1.0.42/perl-shared/RRDs.pm Sat Apr 12 10:45:54 2003 @@ -7,7 +7,7 @@ require DynaLoader; -$VERSION = 1.000411; +$VERSION = 1.000421; bootstrap RRDs $VERSION; Modified: trunk/orca/packages/rrdtool-1.0.42/rrdtool.spec ============================================================================== --- trunk/orca/packages/rrdtool-1.0.41/rrdtool.spec (original) +++ trunk/orca/packages/rrdtool-1.0.42/rrdtool.spec Sat Apr 12 10:45:54 2003 @@ -5,7 +5,7 @@ Summary: RRDtool - round robin database Name: rrdtool -Version: 1.0.40 +Version: 1.0.41 Release: 1.%{DISTRO_REL} Copyright: GPL Group: Applications/Databases @@ -89,6 +89,9 @@ %changelog +* Wed Mar 26 2003 Tom Scanlan +- 1.0.41 + * Mon Oct 28 2002 Andrew Pam - 1.0.40 Modified: trunk/orca/packages/rrdtool-1.0.42/src/gdpng.c ============================================================================== --- trunk/orca/packages/rrdtool-1.0.41/src/gdpng.c (original) +++ trunk/orca/packages/rrdtool-1.0.42/src/gdpng.c Sat Apr 12 10:45:54 2003 @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.0.41 Copyright Tobias Oetiker, 1997 - 2000 + * RRDtool 1.0.42 Copyright Tobias Oetiker, 1997 - 2000 ***************************************************************************** * gdpng.c add PNG output routine to gd library *****************************************************************************/ Modified: trunk/orca/packages/rrdtool-1.0.42/src/gifsize.c ============================================================================== --- trunk/orca/packages/rrdtool-1.0.41/src/gifsize.c (original) +++ trunk/orca/packages/rrdtool-1.0.42/src/gifsize.c Sat Apr 12 10:45:54 2003 @@ -1,5 +1,5 @@ /**************************************************************************** - * RRDtool 1.0.41 Copyright Tobias Oetiker, 1997 - 2000 + * RRDtool 1.0.42 Copyright Tobias Oetiker, 1997 - 2000 **************************************************************************** * gifsize.c provides the function gifsize which determines the size of a gif ****************************************************************************/ Modified: trunk/orca/packages/rrdtool-1.0.42/src/pngsize.c ============================================================================== --- trunk/orca/packages/rrdtool-1.0.41/src/pngsize.c (original) +++ trunk/orca/packages/rrdtool-1.0.42/src/pngsize.c Sat Apr 12 10:45:54 2003 @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.0.41 Copyright Tobias Oetiker, 1997 - 2000 + * RRDtool 1.0.42 Copyright Tobias Oetiker, 1997 - 2000 ***************************************************************************** * pngsize.c determine the size of a PNG image *****************************************************************************/ Modified: trunk/orca/packages/rrdtool-1.0.42/src/rrd.h ============================================================================== --- trunk/orca/packages/rrdtool-1.0.41/src/rrd.h (original) +++ trunk/orca/packages/rrdtool-1.0.42/src/rrd.h Sat Apr 12 10:45:54 2003 @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.0.41 Copyright Tobias Oetiker, 1997,1998, 1999 + * RRDtool 1.0.42 Copyright Tobias Oetiker, 1997,1998, 1999 ***************************************************************************** * rrdlib.h Public header file for librrd ***************************************************************************** Modified: trunk/orca/packages/rrdtool-1.0.42/src/rrd_cgi.c ============================================================================== --- trunk/orca/packages/rrdtool-1.0.41/src/rrd_cgi.c (original) +++ trunk/orca/packages/rrdtool-1.0.42/src/rrd_cgi.c Sat Apr 12 10:45:54 2003 @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.0.41 Copyright Tobias Oetiker, 1997 - 2000 + * RRDtool 1.0.42 Copyright Tobias Oetiker, 1997 - 2000 ***************************************************************************** * rrd_cgi.c RRD Web Page Generator *****************************************************************************/ @@ -128,9 +128,11 @@ server_url = getenv("SERVER_URL"); } -if ( (optind != argc-2 && strstr( getenv("SERVER_SOFTWARE"),"Apache/2") != NULL) && optind != argc-1) { - fprintf(stderr, "ERROR: expected a filename\n"); - exit(1); + /* make sure we have one extra argument, if there are others, we do not care Apache gives several */ + /* if ( (optind != argc-2 && strstr( getenv("SERVER_SOFTWARE"),"Apache/2") != NULL) && optind != argc-1) { */ + if ( optind >= argc ) { + fprintf(stderr, "ERROR: expected a filename\n"); + exit(1); } else { length = readfile(argv[optind], &buffer, 1); } Modified: trunk/orca/packages/rrdtool-1.0.42/src/rrd_create.c ============================================================================== --- trunk/orca/packages/rrdtool-1.0.41/src/rrd_create.c (original) +++ trunk/orca/packages/rrdtool-1.0.42/src/rrd_create.c Sat Apr 12 10:45:54 2003 @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.0.41 Copyright Tobias Oetiker, 1997 - 2000 + * RRDtool 1.0.42 Copyright Tobias Oetiker, 1997 - 2000 ***************************************************************************** * rrd_create.c creates new rrds *****************************************************************************/ Modified: trunk/orca/packages/rrdtool-1.0.42/src/rrd_diff.c ============================================================================== --- trunk/orca/packages/rrdtool-1.0.41/src/rrd_diff.c (original) +++ trunk/orca/packages/rrdtool-1.0.42/src/rrd_diff.c Sat Apr 12 10:45:54 2003 @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.0.41 Copyright Tobias Oetiker, 1999 + * RRDtool 1.0.42 Copyright Tobias Oetiker, 1999 * This code is stolen from rateup (mrtg-2.x) by Dave Rand ***************************************************************************** * diff calculate the difference between two very long integers available as @@ -31,21 +31,31 @@ { char res[LAST_DS_LEN+1], *a1, *b1, *r1, *fix; int c,x,m; - - while (!(isdigit((int)*a) || *a==0)) + char a_neg=0, b_neg=0; + double result; + + while (!(isdigit((int)*a) || *a==0)) { + if(*a=='-') + a_neg = 1; a++; + } fix=a; while (isdigit((int)*fix)) fix++; *fix = 0; /* maybe there is some non digit data in the string */ - while (!(isdigit((int)*b) || *b==0)) + while (!(isdigit((int)*b) || *b==0)) { + if(*b=='-') + b_neg = 1; b++; + } fix=b; while (isdigit((int)*fix)) fix++; *fix = 0; /* maybe there is some non digit data in the string */ if(!isdigit((int)*a) || !isdigit((int)*b)) return DNAN; + if(a_neg+b_neg == 1) /* can not handle numbers with different signs yet */ + return DNAN; a1 = &a[strlen(a)-1]; m = max(strlen(a),strlen(b)); if (m > LAST_DS_LEN) return DNAN; /* result string too short */ @@ -86,7 +96,12 @@ c=0; } } - return(-atof(res)); + result = -atof(res); } else - return(atof(res)); + result = atof(res); + + if(a_neg+b_neg==2) /* both are negatives, reverse sign */ + result = -result; + + return result; } Modified: trunk/orca/packages/rrdtool-1.0.42/src/rrd_dump.c ============================================================================== --- trunk/orca/packages/rrdtool-1.0.41/src/rrd_dump.c (original) +++ trunk/orca/packages/rrdtool-1.0.42/src/rrd_dump.c Sat Apr 12 10:45:54 2003 @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.0.41 Copyright Tobias Oetiker, 1997 - 2000 + * RRDtool 1.0.42 Copyright Tobias Oetiker, 1997 - 2000 ***************************************************************************** * rrd_dump Display a RRD ***************************************************************************** Modified: trunk/orca/packages/rrdtool-1.0.42/src/rrd_error.c ============================================================================== --- trunk/orca/packages/rrdtool-1.0.41/src/rrd_error.c (original) +++ trunk/orca/packages/rrdtool-1.0.42/src/rrd_error.c Sat Apr 12 10:45:54 2003 @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.0.41 Copyright Tobias Oetiker, 1997 - 2000 + * RRDtool 1.0.42 Copyright Tobias Oetiker, 1997 - 2000 ***************************************************************************** * rrd_error.c Common Header File ***************************************************************************** Modified: trunk/orca/packages/rrdtool-1.0.42/src/rrd_fetch.c ============================================================================== --- trunk/orca/packages/rrdtool-1.0.41/src/rrd_fetch.c (original) +++ trunk/orca/packages/rrdtool-1.0.42/src/rrd_fetch.c Sat Apr 12 10:45:54 2003 @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.0.41 Copyright Tobias Oetiker, 1997 - 2000 + * RRDtool 1.0.42 Copyright Tobias Oetiker, 1997 - 2000 ***************************************************************************** * rrd_fetch.c read date from an rrd to use for further processing ***************************************************************************** Modified: trunk/orca/packages/rrdtool-1.0.42/src/rrd_format.c ============================================================================== --- trunk/orca/packages/rrdtool-1.0.41/src/rrd_format.c (original) +++ trunk/orca/packages/rrdtool-1.0.42/src/rrd_format.c Sat Apr 12 10:45:54 2003 @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.0.41 Copyright Tobias Oetiker, 1999 + * RRDtool 1.0.42 Copyright Tobias Oetiker, 1999 ***************************************************************************** * rrd_format.c RRD Database Format helper functions ***************************************************************************** Modified: trunk/orca/packages/rrdtool-1.0.42/src/rrd_format.h ============================================================================== --- trunk/orca/packages/rrdtool-1.0.41/src/rrd_format.h (original) +++ trunk/orca/packages/rrdtool-1.0.42/src/rrd_format.h Sat Apr 12 10:45:54 2003 @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.0.41 Copyright Tobias Oetiker, 1997, 1998, 1999 + * RRDtool 1.0.42 Copyright Tobias Oetiker, 1997, 1998, 1999 ***************************************************************************** * rrd_format.h RRD Database Format header *****************************************************************************/ Modified: trunk/orca/packages/rrdtool-1.0.42/src/rrd_graph.c ============================================================================== --- trunk/orca/packages/rrdtool-1.0.41/src/rrd_graph.c (original) +++ trunk/orca/packages/rrdtool-1.0.42/src/rrd_graph.c Sat Apr 12 10:45:54 2003 @@ -1,6 +1,6 @@ /**************************************************************************** - * RRDtool 1.0.41 Copyright Tobias Oetiker, 1997 - 2000 + * RRDtool 1.0.42 Copyright Tobias Oetiker, 1997 - 2000 **************************************************************************** * rrd__graph.c make creates ne rrds ****************************************************************************/ @@ -8,8 +8,15 @@ #include "rrd_tool.h" #include "rrd_graph.h" #include + +#ifdef LATIN2_ENABLE +#include +#include +#else #include #include +#endif + #include #ifdef WIN32 #include @@ -23,9 +30,14 @@ #ifdef HAVE_LOCALE_H #include #endif - + +#ifdef LATIN2_ENABLE +#define SmallFont gdLucidaNormal10l2 +#define LargeFont gdLucidaBold12l2 +#else #define SmallFont gdLucidaNormal10 #define LargeFont gdLucidaBold12 +#endif /* #define DEBUG */ @@ -1660,6 +1672,14 @@ for(i=0;igdes_c;i++){ fill_last = fill; + if (im->gdes[i].gf == GF_HRULE && + (im->gdes[i].yrule < im->minval || im->gdes[i].yrule > im->maxval)) + im->gdes[i].legend[0] = '\0'; + + if (im->gdes[i].gf == GF_VRULE && + (im->gdes[i].xrule < im->start || im->gdes[i].xrule > im->end)) + im->gdes[i].legend[0] = '\0'; + leg_cc = strlen(im->gdes[i].legend); /* is there a controle code ant the end of the legend string ? */ Modified: trunk/orca/packages/rrdtool-1.0.42/src/rrd_graph.h ============================================================================== --- trunk/orca/packages/rrdtool-1.0.41/src/rrd_graph.h (original) +++ trunk/orca/packages/rrdtool-1.0.42/src/rrd_graph.h Sat Apr 12 10:45:54 2003 @@ -1,5 +1,5 @@ /**************************************************************************** - * RRDtool 1.0.41 Copyright Tobias Oetiker, 1997 - 2000 + * RRDtool 1.0.42 Copyright Tobias Oetiker, 1997 - 2000 **************************************************************************** * rrd__graph.h ****************************************************************************/ Modified: trunk/orca/packages/rrdtool-1.0.42/src/rrd_info.c ============================================================================== --- trunk/orca/packages/rrdtool-1.0.41/src/rrd_info.c (original) +++ trunk/orca/packages/rrdtool-1.0.42/src/rrd_info.c Sat Apr 12 10:45:54 2003 @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.0.41 Copyright Tobias Oetiker, 1997 - 2000 + * RRDtool 1.0.42 Copyright Tobias Oetiker, 1997 - 2000 ***************************************************************************** * rrd_info Get Information about the configuration of an RRD *****************************************************************************/ Modified: trunk/orca/packages/rrdtool-1.0.42/src/rrd_last.c ============================================================================== --- trunk/orca/packages/rrdtool-1.0.41/src/rrd_last.c (original) +++ trunk/orca/packages/rrdtool-1.0.42/src/rrd_last.c Sat Apr 12 10:45:54 2003 @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.0.41 Copyright Tobias Oetiker, 1997 - 2000 + * RRDtool 1.0.42 Copyright Tobias Oetiker, 1997 - 2000 ***************************************************************************** * rrd_last.c ***************************************************************************** Modified: trunk/orca/packages/rrdtool-1.0.42/src/rrd_open.c ============================================================================== --- trunk/orca/packages/rrdtool-1.0.41/src/rrd_open.c (original) +++ trunk/orca/packages/rrdtool-1.0.42/src/rrd_open.c Sat Apr 12 10:45:54 2003 @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.0.41 Copyright Tobias Oetiker, 1997 - 2000 + * RRDtool 1.0.42 Copyright Tobias Oetiker, 1997 - 2000 ***************************************************************************** * rrd_open.c Open an RRD File ***************************************************************************** Modified: trunk/orca/packages/rrdtool-1.0.42/src/rrd_resize.c ============================================================================== --- trunk/orca/packages/rrdtool-1.0.41/src/rrd_resize.c (original) +++ trunk/orca/packages/rrdtool-1.0.42/src/rrd_resize.c Sat Apr 12 10:45:54 2003 @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.0.41 Copyright Tobias Oetiker, 1997 - 2000 + * RRDtool 1.0.42 Copyright Tobias Oetiker, 1997 - 2000 ***************************************************************************** * rrd_resize.c Alters size of an RRA ***************************************************************************** Modified: trunk/orca/packages/rrdtool-1.0.42/src/rrd_restore.c ============================================================================== --- trunk/orca/packages/rrdtool-1.0.41/src/rrd_restore.c (original) +++ trunk/orca/packages/rrdtool-1.0.42/src/rrd_restore.c Sat Apr 12 10:45:54 2003 @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.0.41 Copyright Tobias Oetiker, 1997 - 2000 + * RRDtool 1.0.42 Copyright Tobias Oetiker, 1997 - 2000 ***************************************************************************** * rrd_restore.c creates new rrd from data dumped by rrd_dump.c *****************************************************************************/ Modified: trunk/orca/packages/rrdtool-1.0.42/src/rrd_tool.c ============================================================================== --- trunk/orca/packages/rrdtool-1.0.41/src/rrd_tool.c (original) +++ trunk/orca/packages/rrdtool-1.0.42/src/rrd_tool.c Sat Apr 12 10:45:54 2003 @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.0.41 Copyright Tobias Oetiker, 1997 - 2001 + * RRDtool 1.0.42 Copyright Tobias Oetiker, 1997 - 2001 ***************************************************************************** * rrd_tool.c Startup wrapper *****************************************************************************/ @@ -20,7 +20,7 @@ { char help_main[] = - "RRDtool 1.0.41 Copyright 1997-2001 by Tobias Oetiker \n\n" + "RRDtool 1.0.42 Copyright 1997-2001 by Tobias Oetiker \n\n" "Usage: rrdtool [options] command command_options\n\n"; char help_list[] = @@ -319,7 +319,7 @@ strcmp("v", argv[1]) == 0 || strcmp("-v", argv[1]) == 0 || strcmp("-version", argv[1]) == 0 ) - printf("RRDtool 1.0.41 Copyright (C) 1997-2001 by Tobias Oetiker \n"); + printf("RRDtool 1.0.42 Copyright (C) 1997-2001 by Tobias Oetiker \n"); else if (strcmp("restore", argv[1]) == 0) rrd_restore(argc-1, &argv[1]); else if (strcmp("resize", argv[1]) == 0) @@ -401,12 +401,13 @@ char **calcpr; int xsize, ysize; int i; + int tostdout = (strcmp(argv[2],"-") == 0); if( rrd_graph(argc-1, &argv[1], &calcpr, &xsize, &ysize) != -1 ) { - if (strcmp(argv[2],"-") != 0) + if (!tostdout) printf ("%dx%d\n",xsize,ysize); if (calcpr) { for(i=0;calcpr[i];i++){ - if (strcmp(argv[2],"-") != 0) + if (!tostdout) printf("%s\n",calcpr[i]); free(calcpr[i]); } Modified: trunk/orca/packages/rrdtool-1.0.42/src/rrd_tool.h ============================================================================== --- trunk/orca/packages/rrdtool-1.0.41/src/rrd_tool.h (original) +++ trunk/orca/packages/rrdtool-1.0.42/src/rrd_tool.h Sat Apr 12 10:45:54 2003 @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.0.41 Copyright Tobias Oetiker, 1997 - 2000 + * RRDtool 1.0.42 Copyright Tobias Oetiker, 1997 - 2000 ***************************************************************************** * rrd_tool.h Common Header File ***************************************************************************** Modified: trunk/orca/packages/rrdtool-1.0.42/src/rrd_tune.c ============================================================================== --- trunk/orca/packages/rrdtool-1.0.41/src/rrd_tune.c (original) +++ trunk/orca/packages/rrdtool-1.0.42/src/rrd_tune.c Sat Apr 12 10:45:54 2003 @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.0.41 Copyright Tobias Oetiker, 1997 - 2000 + * RRDtool 1.0.42 Copyright Tobias Oetiker, 1997 - 2000 ***************************************************************************** * change header parameters of an rrd ***************************************************************************** Modified: trunk/orca/packages/rrdtool-1.0.42/src/rrd_update.c ============================================================================== --- trunk/orca/packages/rrdtool-1.0.41/src/rrd_update.c (original) +++ trunk/orca/packages/rrdtool-1.0.42/src/rrd_update.c Sat Apr 12 10:45:54 2003 @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.0.41 Copyright Tobias Oetiker, 1997 - 2000 + * RRDtool 1.0.42 Copyright Tobias Oetiker, 1997 - 2000 ***************************************************************************** * rrd_update.c RRD Update Function ***************************************************************************** @@ -32,7 +32,7 @@ main(int argc, char **argv){ rrd_update(argc,argv); if (rrd_test_error()) { - printf("RRDtool 1.0.41 Copyright 1997-2000 by Tobias Oetiker \n\n" + printf("RRDtool 1.0.42 Copyright 1997-2000 by Tobias Oetiker \n\n" "Usage: rrdupdate filename\n" "\t\t\t[--template|-t ds-name:ds-name:...]\n" "\t\t\ttime|N:value[:value...]\n\n" @@ -118,7 +118,6 @@ case '?': rrd_set_error("unknown option '%s'",argv[optind-1]); - rrd_free(&rrd); return(-1); } } Modified: trunk/orca/packages/rrdtool-1.0.42/src/rrd_xport.c ============================================================================== --- trunk/orca/packages/rrdtool-1.0.41/src/rrd_xport.c (original) +++ trunk/orca/packages/rrdtool-1.0.42/src/rrd_xport.c Sat Apr 12 10:45:54 2003 @@ -1,5 +1,5 @@ /**************************************************************************** - * RRDtool 1.0.41 Copyright Tobias Oetiker, 1997 - 2000 + * RRDtool 1.0.42 Copyright Tobias Oetiker, 1997 - 2000 **************************************************************************** * rrd_xport.c export RRD data ****************************************************************************/ Modified: trunk/orca/packages/rrdtool-1.0.42/src/rrd_xport.h ============================================================================== --- trunk/orca/packages/rrdtool-1.0.41/src/rrd_xport.h (original) +++ trunk/orca/packages/rrdtool-1.0.42/src/rrd_xport.h Sat Apr 12 10:45:54 2003 @@ -1,5 +1,5 @@ /**************************************************************************** - * RRDtool 1.0.41 Copyright Tobias Oetiker, 1997 - 2000 + * RRDtool 1.0.42 Copyright Tobias Oetiker, 1997 - 2000 **************************************************************************** * rrd_xport.h contains XML related constants ****************************************************************************/ From blair at orcaware.com Tue Apr 22 17:09:59 2003 From: blair at orcaware.com (Blair Zajac) Date: Tue, 22 Apr 2003 17:09:59 -0700 Subject: [Orca-checkins] rev 230 - trunk/orca/orca Message-ID: <200304230009.h3N09x9o014344@orcaware.com> Author: blair Date: Tue Apr 22 17:09:57 2003 New Revision: 230 Modified: trunk/orca/orca/orca.pl.in Log: * orca/orca.pl.in (create_static_images): When creating the logo images, open for writing in binary mode to support operating systems that may modify the output data, such as Windows. Modified: trunk/orca/orca/orca.pl.in ============================================================================== --- trunk/orca/orca/orca.pl.in (original) +++ trunk/orca/orca/orca.pl.in Tue Apr 22 17:09:57 2003 @@ -277,7 +277,11 @@ } elsif (/OPEN (.*)/) { $image_filename = "$config_global{html_dir}/$1"; print "Creating $1.\n" if $opt_verbose; - unless (open(ORCA_WRITE, ">$image_filename")) { + if (open(ORCA_WRITE, ">$image_filename")) { + # Some of these generated files are images, so always open in + # binary mode. + binmode ORCA_WRITE; + } else { warn "$0: cannot open `$image_filename' for writing: $!\n"; $image_filename = ''; } From blair at orcaware.com Fri Apr 25 10:03:50 2003 From: blair at orcaware.com (Blair Zajac) Date: Fri, 25 Apr 2003 10:03:50 -0700 Subject: [Orca-checkins] rev 231 - in trunk/orca: . packages/Time-HiRes-1.45 packages/Time-HiRes-1.46 Message-ID: <200304251703.h3PH3oan010985@orcaware.com> Author: blair Date: Fri Apr 25 10:03:45 2003 New Revision: 231 Added: trunk/orca/packages/Time-HiRes-1.46/ - copied from rev 230, trunk/orca/packages/Time-HiRes-1.45/ Removed: trunk/orca/packages/Time-HiRes-1.45/ Modified: trunk/orca/INSTALL trunk/orca/configure.in trunk/orca/packages/Time-HiRes-1.46/Changes trunk/orca/packages/Time-HiRes-1.46/HiRes.pm trunk/orca/packages/Time-HiRes-1.46/Makefile.PL Log: Upgrade Time::HiRes from 1.45 to 1.46. * INSTALL (Determine which Perl modules need compiling and installing): Update all references to Time::HiRes's version number from 1.45 to 1.46. * configure.in: Bump Time::HiRes's version number to 1.46. * packages/Time-HiRes-1.46: Renamed from packages/Time-HiRes-1.45. Directory contents updated from Time-HiRes-1.46.tar.gz. Modified: trunk/orca/INSTALL ============================================================================== --- trunk/orca/INSTALL (original) +++ trunk/orca/INSTALL Fri Apr 25 10:03:45 2003 @@ -176,7 +176,7 @@ Math::IntervalSearch >= 1.05 >= 1.05 1.05 RRDs >= 1.000421 >= 1.0.42 1.0.42 Storable >= 2.06 >= 2.06 2.06 - Time::HiRes Not required by Orca 1.45 + Time::HiRes Not required by Orca 1.46 All seven of these modules are included with the Orca distribution in the packages directory. When you configure Orca in step 3), @@ -277,10 +277,10 @@ Time::HiRes - http://www.perl.com/CPAN/authors/id/J/JH/JHI/Time-HiRes-1.45.tar.gz + http://www.perl.com/CPAN/authors/id/J/JH/JHI/Time-HiRes-1.46.tar.gz - % gunzip -c Time-HiRes-1.45.tar.gz | tar xvf - - % cd Time-HiRes-1.45 + % gunzip -c Time-HiRes-1.46.tar.gz | tar xvf - + % cd Time-HiRes-1.46 % perl Makefile.PL % make % make test Modified: trunk/orca/configure.in ============================================================================== --- trunk/orca/configure.in (original) +++ trunk/orca/configure.in Fri Apr 25 10:03:45 2003 @@ -41,8 +41,8 @@ RRDTOOL_VER=1.000421 STORABLE_DIR=Storable-2.06 STORABLE_VER=2.06 -TIME_HIRES_DIR=Time-HiRes-1.45 -TIME_HIRES_VER=1.45 +TIME_HIRES_DIR=Time-HiRes-1.46 +TIME_HIRES_VER=1.46 AC_SUBST(COMPRESS_ZLIB_DIR) AC_SUBST(DATA_DUMPER_DIR) Modified: trunk/orca/packages/Time-HiRes-1.46/Changes ============================================================================== --- trunk/orca/packages/Time-HiRes-1.45/Changes (original) +++ trunk/orca/packages/Time-HiRes-1.46/Changes Fri Apr 25 10:03:45 2003 @@ -1,5 +1,10 @@ Revision history for Perl extension Time::HiRes. +1.46 + - do not create files in blib directories under core + (perl change #19160, from rgs) + - detypo s/VTLARM/VTARLM/ (perl change #19328, from mjd) + 1.45 - guarantee that $xdefine in HiRes.t is always defined (perl change #19109, from IlyaZ) Modified: trunk/orca/packages/Time-HiRes-1.46/HiRes.pm ============================================================================== --- trunk/orca/packages/Time-HiRes-1.45/HiRes.pm (original) +++ trunk/orca/packages/Time-HiRes-1.46/HiRes.pm Fri Apr 25 10:03:45 2003 @@ -15,7 +15,7 @@ d_usleep d_ualarm d_gettimeofday d_getitimer d_setitimer d_nanosleep); -$VERSION = '1.45'; +$VERSION = '1.46'; $XS_VERSION = $VERSION; $VERSION = eval $VERSION; @@ -288,7 +288,7 @@ use Time::HiRes qw ( setitimer ITIMER_VIRTUAL time ); - $SIG{VTLARM} = sub { print time, "\n" }; + $SIG{VTALRM} = sub { print time, "\n" }; setitimer(ITIMER_VIRTUAL, 10, 2.5); =head1 C API Modified: trunk/orca/packages/Time-HiRes-1.46/Makefile.PL ============================================================================== --- trunk/orca/packages/Time-HiRes-1.45/Makefile.PL (original) +++ trunk/orca/packages/Time-HiRes-1.46/Makefile.PL Fri Apr 25 10:03:45 2003 @@ -48,8 +48,8 @@ BEGIN { eval { require File::Spec }; if ($@) { - *File::Spec::catdir = \&my_catdir; - *File::Spec::updir = \&my_updir; + *File::Spec::catdir = \&my_catdir; + *File::Spec::updir = \&my_updir; *File::Spec::catfile = \&my_catfile; } } @@ -408,6 +408,10 @@ realclean => {FILES=> 'const-c.inc const-xs.inc'}, ); + if ($ENV{PERL_CORE}) { + push @makefileopts, MAN3PODS => {}; + } + WriteMakefile(@makefileopts); }