summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore2
-rw-r--r--acinclude.m477
-rw-r--r--config/50-x11-input-joystick.fdi8
-rw-r--r--configure.ac6
-rw-r--r--include/joystick-properties.h12
-rw-r--r--man/joystick.man44
-rw-r--r--shave-libtool.in69
-rw-r--r--shave.in79
-rw-r--r--src/Makefile.am3
-rw-r--r--src/StrKeysym.c82
-rw-r--r--src/StrKeysym.h28
-rw-r--r--src/jstk.c22
-rw-r--r--src/jstk.h19
-rw-r--r--src/jstk_key.c344
-rw-r--r--src/jstk_options.c56
-rw-r--r--src/jstk_properties.c91
-rw-r--r--src/ks_tables.h2694
17 files changed, 680 insertions, 2956 deletions
diff --git a/.gitignore b/.gitignore
index e5a79a1..443e330 100644
--- a/.gitignore
+++ b/.gitignore
@@ -26,3 +26,5 @@ xf86-input-joystick-*.tar.gz
ChangeLog
*.pc
tags
+shave
+shave-libtool
diff --git a/acinclude.m4 b/acinclude.m4
new file mode 100644
index 0000000..0a3509e
--- /dev/null
+++ b/acinclude.m4
@@ -0,0 +1,77 @@
+dnl Make automake/libtool output more friendly to humans
+dnl Damien Lespiau <damien.lespiau@gmail.com>
+dnl
+dnl SHAVE_INIT([shavedir],[default_mode])
+dnl
+dnl shavedir: the directory where the shave scripts are, it defaults to
+dnl $(top_builddir)
+dnl default_mode: (enable|disable) default shave mode. This parameter
+dnl controls shave's behaviour when no option has been
+dnl given to configure. It defaults to disable.
+dnl
+dnl * SHAVE_INIT should be called late in your configure.(ac|in) file (just
+dnl before AC_CONFIG_FILE/AC_OUTPUT is perfect. This macro rewrites CC and
+dnl LIBTOOL, you don't want the configure tests to have these variables
+dnl re-defined.
+dnl * This macro requires GNU make's -s option.
+
+AC_DEFUN([_SHAVE_ARG_ENABLE],
+[
+ AC_ARG_ENABLE([shave],
+ AS_HELP_STRING(
+ [--enable-shave],
+ [use shave to make the build pretty [[default=$1]]]),,
+ [enable_shave=$1]
+ )
+])
+
+AC_DEFUN([SHAVE_INIT],
+[
+ dnl you can tweak the default value of enable_shave
+ m4_if([$2], [enable], [_SHAVE_ARG_ENABLE(yes)], [_SHAVE_ARG_ENABLE(no)])
+
+ if test x"$enable_shave" = xyes; then
+ dnl where can we find the shave scripts?
+ m4_if([$1],,
+ [shavedir="$ac_pwd"],
+ [shavedir="$ac_pwd/$1"])
+ AC_SUBST(shavedir)
+
+ dnl make is now quiet
+ AC_SUBST([MAKEFLAGS], [-s])
+ AC_SUBST([AM_MAKEFLAGS], ['`test -z $V && echo -s`'])
+
+ dnl we need sed
+ AC_CHECK_PROG(SED,sed,sed,false)
+
+ dnl substitute libtool
+ SHAVE_SAVED_LIBTOOL=$LIBTOOL
+ LIBTOOL="${SHELL} ${shavedir}/shave-libtool '${SHAVE_SAVED_LIBTOOL}'"
+ AC_SUBST(LIBTOOL)
+
+ dnl substitute cc/cxx
+ SHAVE_SAVED_CC=$CC
+ SHAVE_SAVED_CXX=$CXX
+ SHAVE_SAVED_FC=$FC
+ SHAVE_SAVED_F77=$F77
+ SHAVE_SAVED_OBJC=$OBJC
+ CC="${SHELL} ${shavedir}/shave cc ${SHAVE_SAVED_CC}"
+ CXX="${SHELL} ${shavedir}/shave cxx ${SHAVE_SAVED_CXX}"
+ FC="${SHELL} ${shavedir}/shave fc ${SHAVE_SAVED_FC}"
+ F77="${SHELL} ${shavedir}/shave f77 ${SHAVE_SAVED_F77}"
+ OBJC="${SHELL} ${shavedir}/shave objc ${SHAVE_SAVED_OBJC}"
+ AC_SUBST(CC)
+ AC_SUBST(CXX)
+ AC_SUBST(FC)
+ AC_SUBST(F77)
+ AC_SUBST(OBJC)
+
+ V=@
+ else
+ V=1
+ fi
+ Q='$(V:1=)'
+ AC_SUBST(V)
+ AC_SUBST(Q)
+])
+
diff --git a/config/50-x11-input-joystick.fdi b/config/50-x11-input-joystick.fdi
index 0364362..aec77b0 100644
--- a/config/50-x11-input-joystick.fdi
+++ b/config/50-x11-input-joystick.fdi
@@ -33,13 +33,13 @@
<!-- EXAMPLES
<merge key="input.x11_options.DebugLevel" type="string">5</merge>
<merge key="input.x11_options.AutoRepeat" type="string">500 4</merge>
- <merge key="input.x11_options.MapButton4" type="string">key=Alt_L+Tab</merge>
+ <merge key="input.x11_options.MapButton4" type="string">key=64+23</merge>
<merge key="input.x11_options.MapButton8" type="string">amplify=0.3</merge>
<merge key="input.x11_options.MapButton9" type="string">disable-mouse</merge>
- <merge key="input.x11_options.MapButton10" type="string">key=space</merge>
+ <merge key="input.x11_options.MapButton10" type="string">key=65</merge>
- <merge key="input.x11_options.MapAxis1" type="string">mode=accelerated keylow=Left keyhigh=Right</merge>
- <merge key="input.x11_options.MapAxis2" type="string">mode=accelerated keylow=Up keyhigh=Down</merge>
+ <merge key="input.x11_options.MapAxis1" type="string">mode=accelerated keylow=113 keyhigh=114</merge>
+ <merge key="input.x11_options.MapAxis2" type="string">mode=accelerated keylow=111 keyhigh=116</merge>
-->
</match>
</match>
diff --git a/configure.ac b/configure.ac
index dafd453..63f3f7e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -22,7 +22,7 @@
AC_PREREQ(2.57)
AC_INIT([xf86-input-joystick],
- 1.4.99.1,
+ 1.4.99.2,
[https://bugs.freedesktop.org/enter_bug.cgi?product=xorg],
xf86-input-joystick)
@@ -32,6 +32,8 @@ AM_INIT_AUTOMAKE([dist-bzip2])
AM_MAINTAINER_MODE
+AC_CONFIG_FILES([shave shave-libtool])
+
# Require xorg-macros: XORG_CWARNFLAGS, XORG_CHANGELOG
m4_ifndef([XORG_MACROS_VERSION], [AC_FATAL([must install xorg-macros 1.2 or later before running autoconf/autogen])])
XORG_MACROS_VERSION(1.2)
@@ -121,6 +123,8 @@ XORG_MANPAGE_SECTIONS
XORG_RELEASE_VERSION
XORG_CHANGELOG
+SHAVE_INIT([.], [enable])
+
AC_OUTPUT([Makefile
src/Makefile
man/Makefile
diff --git a/include/joystick-properties.h b/include/joystick-properties.h
index 0f0d4ed..49ef800 100644
--- a/include/joystick-properties.h
+++ b/include/joystick-properties.h
@@ -93,12 +93,12 @@ typedef enum _JSTK_MAPPING {
/* FLOAT[MAXAXES], movement amplify per axis */
#define JSTK_PROP_AXIS_AMPLIFY "Axis Amplify"
-/** Set KeySyms for axis in low position */
-/* TODO 16 bit */
+/** Scancodes for axis in low position */
+/* 8 bit, 4 per axis */
#define JSTK_PROP_AXIS_KEYS_LOW "Axis Keys (low)"
-/** Set KeySyms for axis in high position */
-/* TODO 16 bit */
+/** Scancodes for axis in high position */
+/* 8 bit, 4 per axis */
#define JSTK_PROP_AXIS_KEYS_HIGH "Axis keys (high)"
/** Set the mapping of each button to
@@ -115,8 +115,8 @@ typedef enum _JSTK_MAPPING {
/* FLOAT[MAXBUTTONS], amplify value per button */
#define JSTK_PROP_BUTTON_AMPLIFY "Button Amplify"
-/** Set KeySyms for button */
-/* TODO 16 bit, set keysyms for button. Format: (button keysym1 keysym2 keysym3 keysym4) */
+/** Scancodes for button */
+/* 8 bit, 4 per button */
#define JSTK_PROP_BUTTON_KEYS "Button Keys"
diff --git a/man/joystick.man b/man/joystick.man
index 03f9800..97e3ba3 100644
--- a/man/joystick.man
+++ b/man/joystick.man
@@ -93,10 +93,10 @@ Use positive and negative values to control the direction. Default: 1.0
Amplifies the movement of all axes by the given factor when pressed. Different
factors can be combined.
.TP 7
-.BI "\*qkey="<keysym>[,<keysym>[,<keysym>[,<keysym>]]]
-When button is pressed, a series of keydown events with the specified keysym is
+.BI "\*qkey="<scancode>[,<scancode>[,<scancode>[,<scancode>]]]
+When button is pressed, a series of keydown events with the specified scancode is
generated. When the button is released, keyup events in the opposite
-order are generated. You can specify up to 4 keysyms per button.
+order are generated. You can specify up to 4 scancodes per button.
See special section about key events below.
.TP 7
@@ -150,12 +150,12 @@ is an optional amplifier of the axis, like
.B -, +, -5, 0.4, 1.3, ...
Negative values will invert the movement. Default: 1.0
.TP 7
-.BI "\*qkeylow= "<keysym>[,<keysym>[,<keysym>[,<keysym>]]]
+.BI "\*qkeylow= "<scancode>[,<scancode>[,<scancode>[,<scancode>]]]
.TP 7
-.BI "\*qkeyhigh="<keysym>[,<keysym>[,<keysym>[,<keysym>]]]
+.BI "\*qkeyhigh="<scancode>[,<scancode>[,<scancode>[,<scancode>]]]
When the axis is moved out of the deadzone, a series of keydown events according
to the direction of the movement is generated. When the axis is released, keyup
-events will be generated. You can specify up to 4 keysyms for each direction.
+events will be generated. You can specify up to 4 scancodes for each direction.
.B keylow
defines the keys to be generated when the axis is moved in negative direction (ie. left or up),
@@ -270,45 +270,41 @@ total range of 200 pixels, 100 to the top and 100 to the bottom:
.fi
.SH "GENERATING KEY EVENTS"
-Providing a \*qkey=<keysym>[,<keysym>[...]]\*q option will generate X Events with the specified keysyms
+Providing a \*qkey=<scancode>[,<scancode>[...]]\*q option will generate X Events with the specified scancodes
when the joystick button is pressed or the axis changed it's position. When the button/axis is released, the keys are released in the reverse order.
-The keysym parameter can be defined as a numerical value, which can be looked up in the file
-.IR /usr/include/X11/keysymdef.h ,
-or as the symbolic identifier (case sensitive, without the leading XK_).
+To lookup keycodes for KeySyms, you can use
+.BR "xmodmap -pk" .
+You can use unused keycodes and map them to a KeySym of your choice using xmodmap(1).
-You can specify up to 4 keysyms per joystick button/axis, which is useful to use modificators. Make sure you use the modificators
+You can specify up to 4 scancodes per joystick button/axis, which is useful to use modificators. Make sure you use modificators
that are necessary to get a certain keysym.
Examples:
.nf
-.BI " Option \*qMapButton1\*q \*q" "key=0xffe9,0xff09" \*q
-.BI " Option \*qMapButton1\*q \*q" "key=Alt_L,Tab" \*q
+.BI " Option \*qMapButton1\*q \*q" "key=64,23" \*q
.fi
will generate
.I "Alt_L+Tab"
when the button is pressed.
.nf
-.BI " Option \*qMapButton1\*q \*q" "key=0xffe1,0x0064" \*q
-.BI " Option \*qMapButton1\*q \*q" "key=Shift_L,d" \*q
+.BI " Option \*qMapButton1\*q \*q" "key=50,40" \*q
.fi
-will generate an uppercase
+will generate a Shift_L+d which will be an uppercase
.IR d .
.nf
-.BI " Option \*qMapButton1\*q \*q" "key=0x0020" \*q
-.BI " Option \*qMapButton1\*q \*q" "key=32" \*q
-.BI " Option \*qMapButton1\*q \*q" "key=space" \*q
+.BI " Option \*qMapButton1\*q \*q" "key=65" \*q
.fi
is for the
.IR "space " key.
.nf
-.BI " Option \*qMapAxis1\*q \*q" "mode=relative keylow=Left keyhigh=Right axis=0.5key" \*q
-.BI " Option \*qMapAxis2\*q \*q" "mode=relative keylow=Up keyhigh=Down" \*q
-.BI " Option \*qMapAxis3\*q \*q" "mode=accelerated keylow=Left keyhigh=Right" \*q
-.BI " Option \*qMapAxis4\*q \*q" "mode=accelerated keylow=Up keyhigh=Down" \*q
+.BI " Option \*qMapAxis1\*q \*q" "mode=relative keylow=113 keyhigh=114 axis=0.5key" \*q
+.BI " Option \*qMapAxis2\*q \*q" "mode=relative keylow=111 keyhigh=116" \*q
+.BI " Option \*qMapAxis3\*q \*q" "mode=accelerated keylow=113 keyhigh=114" \*q
+.BI " Option \*qMapAxis4\*q \*q" "mode=accelerated keylow=111 keyhigh=116" \*q
.fi
will map the first and third axis to the arrow keys
.IR left " and " right
@@ -345,6 +341,6 @@ Example:
.SH "SEE ALSO"
__xservername__(__appmansuffix__), __xconfigfile__(__filemansuffix__), Xserver(__appmansuffix__), X(__miscmansuffix__), xmodmap(1)
.SH AUTHORS
-Sascha Hlusiak (2007-2008),
+Sascha Hlusiak (2007-2009),
.fi
Frederic Lepied (1995-1999)
diff --git a/shave-libtool.in b/shave-libtool.in
new file mode 100644
index 0000000..1f3a720
--- /dev/null
+++ b/shave-libtool.in
@@ -0,0 +1,69 @@
+#!/bin/sh
+
+# we need sed
+SED=@SED@
+if test -z "$SED" ; then
+SED=sed
+fi
+
+lt_unmangle ()
+{
+ last_result=`echo $1 | $SED -e 's#.libs/##' -e 's#[0-9a-zA-Z_\-\.]*_la-##'`
+}
+
+# the real libtool to use
+LIBTOOL="$1"
+shift
+
+# if 1, don't print anything, the underlaying wrapper will do it
+pass_though=0
+
+# scan the arguments, keep the right ones for libtool, and discover the mode
+preserved_args=
+while test "$#" -gt 0; do
+ opt="$1"
+ shift
+
+ case $opt in
+ --mode=*)
+ mode=`echo $opt | $SED -e 's/[-_a-zA-Z0-9]*=//'`
+ preserved_args="$preserved_args $opt"
+ ;;
+ -o)
+ lt_output="$1"
+ preserved_args="$preserved_args $opt"
+ ;;
+ *)
+ preserved_args="$preserved_args $opt"
+ ;;
+ esac
+done
+
+case "$mode" in
+compile)
+ # shave will be called and print the actual CC/CXX/LINK line
+ preserved_args="$preserved_args --shave-mode=$mode"
+ pass_though=1
+ ;;
+link)
+ preserved_args="$preserved_args --shave-mode=$mode"
+ Q=" LINK "
+ ;;
+*)
+ # let's u
+ # echo "*** libtool: Unimplemented mode: $mode, fill a bug report"
+ ;;
+esac
+
+lt_unmangle "$lt_output"
+output=$last_result
+
+if test -z $V; then
+ if test $pass_though -eq 0; then
+ echo "$Q$output"
+ fi
+ $LIBTOOL --silent $preserved_args
+else
+ echo $LIBTOOL $preserved_args
+ $LIBTOOL $preserved_args
+fi
diff --git a/shave.in b/shave.in
new file mode 100644
index 0000000..5c16f27
--- /dev/null
+++ b/shave.in
@@ -0,0 +1,79 @@
+#!/bin/sh
+
+# we need sed
+SED=@SED@
+if test -z "$SED" ; then
+SED=sed
+fi
+
+lt_unmangle ()
+{
+ last_result=`echo $1 | $SED -e 's#.libs/##' -e 's#[0-9a-zA-Z_\-\.]*_la-##'`
+}
+
+# the tool to wrap (cc, cxx, ar, ranlib, ..)
+tool="$1"
+shift
+
+# the reel tool (to call)
+REEL_TOOL="$1"
+shift
+
+pass_through=0
+preserved_args=
+while test "$#" -gt 0; do
+ opt="$1"
+ shift
+
+ case $opt in
+ --shave-mode=*)
+ mode=`echo $opt | $SED -e 's/[-_a-zA-Z0-9]*=//'`
+ ;;
+ -o)
+ lt_output="$1"
+ preserved_args="$preserved_args $opt"
+ ;;
+ *)
+ preserved_args="$preserved_args $opt"
+ ;;
+ esac
+done
+
+# mode=link is handled in the libtool wrapper
+case "$mode,$tool" in
+link,*)
+ pass_through=1
+ ;;
+*,cxx)
+ Q=" CXX "
+ ;;
+*,cc)
+ Q=" CC "
+ ;;
+*,fc)
+ Q=" FC "
+ ;;
+*,f77)
+ Q=" F77 "
+ ;;
+*,objc)
+ Q=" OBJC "
+ ;;
+*,*)
+ # should not happen
+ Q=" CC "
+ ;;
+esac
+
+lt_unmangle "$lt_output"
+output=$last_result
+
+if test -z $V; then
+ if test $pass_through -eq 0; then
+ echo "$Q$output"
+ fi
+ $REEL_TOOL $preserved_args
+else
+ echo $REEL_TOOL $preserved_args
+ $REEL_TOOL $preserved_args
+fi
diff --git a/src/Makefile.am b/src/Makefile.am
index fecb7e0..1f8898e 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -36,8 +36,7 @@ INCLUDES=-I$(top_srcdir)/include/
jstk_axis.c jstk_axis.h \
jstk_key.c jstk_key.h \
jstk_options.c jstk_options.h \
- jstk_properties.c jstk_properties.h \
- StrKeysym.c StrKeysym.h ks_tables.h
+ jstk_properties.c jstk_properties.h
BSD_SRCS = backend_bsd.c backend_bsd.h
LINUX_SRCS = backend_joystick.c backend_joystick.h
diff --git a/src/StrKeysym.c b/src/StrKeysym.c
deleted file mode 100644
index 8d2d3f2..0000000
--- a/src/StrKeysym.c
+++ /dev/null
@@ -1,82 +0,0 @@
-/* $Xorg: StrKeysym.c,v 1.5 2001/02/09 02:03:37 xorgcvs Exp $ */
-/*
-
-Copyright 1985, 1987, 1990, 1998 The Open Group
-
-Permission to use, copy, modify, distribute, and sell this software and its
-documentation for any purpose is hereby granted without fee, provided that
-the above copyright notice appear in all copies and that both that
-copyright notice and this permission notice appear in supporting
-documentation.
-
-The above copyright notice and this permission notice shall be included in
-all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
-AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
-CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
-Except as contained in this notice, the name of The Open Group shall not be
-used in advertising or otherwise to promote the sale, use or other dealings
-in this Software without prior written authorization from The Open Group.
-
-*/
-/* $XFree86: xc/lib/X11/StrKeysym.c,v 3.7 2003/04/13 19:22:18 dawes Exp $ */
-
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
-#include <xf86.h>
-#include <X11/keysymdef.h>
-
-#define NEEDKTABLE
-#include "ks_tables.h"
-
-#include "StrKeysym.h"
-
-
-KeySym
-XStringToKeysym(_Xconst char *s)
-{
- register int i, n;
- int h;
- register unsigned long sig = 0;
- register const char *p = s;
- register int c;
- register int idx;
- const unsigned char *entry;
- unsigned char sig1, sig2;
- KeySym val;
-
- while ((c = *p++))
- sig = (sig << 1) + c;
- i = sig % KTABLESIZE;
- h = i + 1;
- sig1 = (sig >> 8) & 0xff;
- sig2 = sig & 0xff;
- n = KMAXHASH;
- while ((idx = hashString[i]))
- {
- entry = &_XkeyTable[idx];
- if ((entry[0] == sig1) && (entry[1] == sig2) &&
- !strcmp(s, (char *)entry + 6))
- {
- val = (entry[2] << 24) | (entry[3] << 16) |
- (entry[4] << 8) | entry[5];
- if (!val)
- val = XK_VoidSymbol;
- return val;
- }
- if (!--n)
- break;
- i += h;
- if (i >= KTABLESIZE)
- i -= KTABLESIZE;
- }
-
- return NoSymbol;
-}
diff --git a/src/StrKeysym.h b/src/StrKeysym.h
deleted file mode 100644
index 04e9719..0000000
--- a/src/StrKeysym.h
+++ /dev/null
@@ -1,28 +0,0 @@
-/*
- * Copyright 2007-2008 by Sascha Hlusiak. <saschahlusiak@freedesktop.org>
- *
- * Permission to use, copy, modify, distribute, and sell this software and its
- * documentation for any purpose is hereby granted without fee, provided that
- * the above copyright notice appear in all copies and that both that
- * copyright notice and this permission notice appear in supporting
- * documentation, and that the names of copyright holders not be used in
- * advertising or publicity pertaining to distribution of the software without
- * specific, written prior permission. The copyright holders make no
- * representations about the suitability of this software for any purpose. It
- * is provided "as is" without express or implied warranty.
- *
- * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
- * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
- * EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
- * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
- * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
- * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
- * PERFORMANCE OF THIS SOFTWARE.
- */
-
-#ifndef _STRKEYSYM_H_INCLUDED_
-#define _STRKEYSYM_H_INCLUDED_
-
-KeySym XStringToKeysym(_Xconst char *s);
-
-#endif
diff --git a/src/jstk.c b/src/jstk.c
index a02d7f0..a2e927c 100644
--- a/src/jstk.c
+++ b/src/jstk.c
@@ -555,8 +555,6 @@ jstkCorePreInit(InputDriverPtr drv, IDevPtr dev, int flags)
priv->keys_enabled = TRUE;
priv->amplify = 1.0f;
priv->keyboard_device = NULL;
- priv->keymap.size = 1;
- memset(priv->keymap.map, NoSymbol, sizeof(priv->keymap.map));
priv->repeat_delay = 0;
priv->repeat_interval = 0;
priv->num_axes = MAXAXES;
@@ -660,6 +658,26 @@ jstkCorePreInit(InputDriverPtr drv, IDevPtr dev, int flags)
}
xfree(s);
}
+
+ priv->rmlvo.rules = xf86SetStrOption(dev->commonOptions, "xkb_rules", NULL);
+ if (!priv->rmlvo.rules)
+ priv->rmlvo.rules = xf86SetStrOption(dev->commonOptions, "XkbRules", "evdev");
+
+ priv->rmlvo.model = xf86SetStrOption(dev->commonOptions, "xkb_model", NULL);
+ if (!priv->rmlvo.model)
+ priv->rmlvo.model = xf86SetStrOption(dev->commonOptions, "XkbModel", "evdev");
+
+ priv->rmlvo.layout = xf86SetStrOption(dev->commonOptions, "xkb_layout", NULL);
+ if (!priv->rmlvo.layout)
+ priv->rmlvo.layout = xf86SetStrOption(dev->commonOptions, "XkbLayout", "us");
+
+ priv->rmlvo.variant = xf86SetStrOption(dev->commonOptions, "xkb_variant", NULL);
+ if (!priv->rmlvo.variant)
+ priv->rmlvo.variant = xf86SetStrOption(dev->commonOptions, "XkbVariant", "");
+
+ priv->rmlvo.options = xf86SetStrOption(dev->commonOptions, "xkb_options", NULL);
+ if (!priv->rmlvo.options)
+ priv->rmlvo.options = xf86SetStrOption(dev->commonOptions, "XkbOptions", "");
priv->mouse_enabled = xf86SetBoolOption(dev->commonOptions, "StartMouseEnabled", TRUE);
priv->keys_enabled = xf86SetBoolOption(dev->commonOptions, "StartKeysEnabled", TRUE);
diff --git a/src/jstk.h b/src/jstk.h
index 1d97937..78a1f83 100644
--- a/src/jstk.h
+++ b/src/jstk.h
@@ -55,6 +55,17 @@
#define XI_JOYSTICK "JOYSTICK"
#endif
+#if GET_ABI_MAJOR(ABI_XINPUT_VERSION) < 5
+typedef struct {
+ char *rules;
+ char *model;
+ char *layout;
+ char *variant;
+ char *options;
+} XkbRMLVOSet;
+#endif
+
+
typedef enum _JOYSTICKEVENT {
EVENT_NONE=0,
@@ -69,7 +80,7 @@ typedef void(*jstkCloseDeviceProc)(JoystickDevPtr joystick);
typedef int(*jstkReadDataProc)(JoystickDevPtr joystick,
JOYSTICKEVENT *event, int *number);
-typedef unsigned int KEYSCANCODES [MAXKEYSPERBUTTON];
+typedef unsigned char KEYSCANCODES [MAXKEYSPERBUTTON];
typedef struct _AXIS {
JSTK_TYPE type;
@@ -118,11 +129,7 @@ typedef struct _JoystickDevRec {
CARD8 num_buttons, num_axes; /* Detected number of buttons/axes */
- struct _KEYMAP {
- int size;
- KeySym map[256-MIN_KEYCODE];
- } keymap;
-
+ XkbRMLVOSet rmlvo;
AXIS axis[MAXAXES]; /* Configuration per axis */
BUTTON button[MAXBUTTONS]; /* Configuration per button */
} JoystickDevRec;
diff --git a/src/jstk_key.c b/src/jstk_key.c
index b2c5b5d..fb1f52e 100644
--- a/src/jstk_key.c
+++ b/src/jstk_key.c
@@ -42,6 +42,9 @@
#include <xkbsrv.h>
#endif
+#define MIN_KEYCODE 8
+#define GLYPHS_PER_KEY 2
+
#define AltMask Mod1Mask
#define NumLockMask Mod2Mask
#define AltLangMask Mod3Mask
@@ -50,6 +53,277 @@
+#if GET_ABI_MAJOR(ABI_XINPUT_VERSION) < 5
+static KeySym map[] = {
+ /* 0x00 */ NoSymbol, NoSymbol,
+ /* 0x01 */ XK_Escape, NoSymbol,
+ /* 0x02 */ XK_1, XK_exclam,
+ /* 0x03 */ XK_2, XK_at,
+ /* 0x04 */ XK_3, XK_numbersign,
+ /* 0x05 */ XK_4, XK_dollar,
+ /* 0x06 */ XK_5, XK_percent,
+ /* 0x07 */ XK_6, XK_asciicircum,
+ /* 0x08 */ XK_7, XK_ampersand,
+ /* 0x09 */ XK_8, XK_asterisk,
+ /* 0x0a */ XK_9, XK_parenleft,
+ /* 0x0b */ XK_0, XK_parenright,
+ /* 0x0c */ XK_minus, XK_underscore,
+ /* 0x0d */ XK_equal, XK_plus,
+ /* 0x0e */ XK_BackSpace, NoSymbol,
+ /* 0x0f */ XK_Tab, XK_ISO_Left_Tab,
+ /* 0x10 */ XK_Q, NoSymbol,
+ /* 0x11 */ XK_W, NoSymbol,
+ /* 0x12 */ XK_E, NoSymbol,
+ /* 0x13 */ XK_R, NoSymbol,
+ /* 0x14 */ XK_T, NoSymbol,
+ /* 0x15 */ XK_Y, NoSymbol,
+ /* 0x16 */ XK_U, NoSymbol,
+ /* 0x17 */ XK_I, NoSymbol,
+ /* 0x18 */ XK_O, NoSymbol,
+ /* 0x19 */ XK_P, NoSymbol,
+ /* 0x1a */ XK_bracketleft, XK_braceleft,
+ /* 0x1b */ XK_bracketright,XK_braceright,
+ /* 0x1c */ XK_Return, NoSymbol,
+ /* 0x1d */ XK_Control_L, NoSymbol,
+ /* 0x1e */ XK_A, NoSymbol,
+ /* 0x1f */ XK_S, NoSymbol,
+ /* 0x20 */ XK_D, NoSymbol,
+ /* 0x21 */ XK_F, NoSymbol,
+ /* 0x22 */ XK_G, NoSymbol,
+ /* 0x23 */ XK_H, NoSymbol,
+ /* 0x24 */ XK_J, NoSymbol,
+ /* 0x25 */ XK_K, NoSymbol,
+ /* 0x26 */ XK_L, NoSymbol,
+ /* 0x27 */ XK_semicolon, XK_colon,
+ /* 0x28 */ XK_quoteright, XK_quotedbl,
+ /* 0x29 */ XK_quoteleft, XK_asciitilde,
+ /* 0x2a */ XK_Shift_L, NoSymbol,
+ /* 0x2b */ XK_backslash, XK_bar,
+ /* 0x2c */ XK_Z, NoSymbol,
+ /* 0x2d */ XK_X, NoSymbol,
+ /* 0x2e */ XK_C, NoSymbol,
+ /* 0x2f */ XK_V, NoSymbol,
+ /* 0x30 */ XK_B, NoSymbol,
+ /* 0x31 */ XK_N, NoSymbol,
+ /* 0x32 */ XK_M, NoSymbol,
+ /* 0x33 */ XK_comma, XK_less,
+ /* 0x34 */ XK_period, XK_greater,
+ /* 0x35 */ XK_slash, XK_question,
+ /* 0x36 */ XK_Shift_R, NoSymbol,
+ /* 0x37 */ XK_KP_Multiply, NoSymbol,
+ /* 0x38 */ XK_Alt_L, XK_Meta_L,
+ /* 0x39 */ XK_space, NoSymbol,
+ /* 0x3a */ XK_Caps_Lock, NoSymbol,
+ /* 0x3b */ XK_F1, NoSymbol,
+ /* 0x3c */ XK_F2, NoSymbol,
+ /* 0x3d */ XK_F3, NoSymbol,
+ /* 0x3e */ XK_F4, NoSymbol,
+ /* 0x3f */ XK_F5, NoSymbol,
+ /* 0x40 */ XK_F6, NoSymbol,
+ /* 0x41 */ XK_F7, NoSymbol,
+ /* 0x42 */ XK_F8, NoSymbol,
+ /* 0x43 */ XK_F9, NoSymbol,
+ /* 0x44 */ XK_F10, NoSymbol,
+ /* 0x45 */ XK_Num_Lock, NoSymbol,
+ /* 0x46 */ XK_Scroll_Lock, NoSymbol,
+ /* These KP keys should have the KP_7 keysyms in the numlock
+ * modifer... ? */
+ /* 0x47 */ XK_KP_Home, XK_KP_7,
+ /* 0x48 */ XK_KP_Up, XK_KP_8,
+ /* 0x49 */ XK_KP_Prior, XK_KP_9,
+ /* 0x4a */ XK_KP_Subtract, NoSymbol,
+ /* 0x4b */ XK_KP_Left, XK_KP_4,
+ /* 0x4c */ XK_KP_Begin, XK_KP_5,
+ /* 0x4d */ XK_KP_Right, XK_KP_6,
+ /* 0x4e */ XK_KP_Add, NoSymbol,
+ /* 0x4f */ XK_KP_End, XK_KP_1,
+ /* 0x50 */ XK_KP_Down, XK_KP_2,
+ /* 0x51 */ XK_KP_Next, XK_KP_3,
+ /* 0x52 */ XK_KP_Insert, XK_KP_0,
+ /* 0x53 */ XK_KP_Delete, XK_KP_Decimal,
+ /* 0x54 */ NoSymbol, NoSymbol,
+ /* 0x55 */ XK_F13, NoSymbol,
+ /* 0x56 */ XK_less, XK_greater,
+ /* 0x57 */ XK_F11, NoSymbol,
+ /* 0x58 */ XK_F12, NoSymbol,
+ /* 0x59 */ XK_F14, NoSymbol,
+ /* 0x5a */ XK_F15, NoSymbol,
+ /* 0x5b */ XK_F16, NoSymbol,
+ /* 0x5c */ XK_F17, NoSymbol,
+ /* 0x5d */ XK_F18, NoSymbol,
+ /* 0x5e */ XK_F19, NoSymbol,
+ /* 0x5f */ XK_F20, NoSymbol,
+ /* 0x60 */ XK_KP_Enter, NoSymbol,
+ /* 0x61 */ XK_Control_R, NoSymbol,
+ /* 0x62 */ XK_KP_Divide, NoSymbol,
+ /* 0x63 */ XK_Print, XK_Sys_Req,
+ /* 0x64 */ XK_Alt_R, XK_Meta_R,
+ /* 0x65 */ NoSymbol, NoSymbol, /* KEY_LINEFEED */
+ /* 0x66 */ XK_Home, NoSymbol,
+ /* 0x67 */ XK_Up, NoSymbol,
+ /* 0x68 */ XK_Prior, NoSymbol,
+ /* 0x69 */ XK_Left, NoSymbol,
+ /* 0x6a */ XK_Right, NoSymbol,
+ /* 0x6b */ XK_End, NoSymbol,
+ /* 0x6c */ XK_Down, NoSymbol,
+ /* 0x6d */ XK_Next, NoSymbol,
+ /* 0x6e */ XK_Insert, NoSymbol,
+ /* 0x6f */ XK_Delete, NoSymbol,
+ /* 0x70 */ NoSymbol, NoSymbol, /* KEY_MACRO */
+ /* 0x71 */ NoSymbol, NoSymbol,
+ /* 0x72 */ NoSymbol, NoSymbol,
+ /* 0x73 */ NoSymbol, NoSymbol,
+ /* 0x74 */ NoSymbol, NoSymbol,
+ /* 0x75 */ XK_KP_Equal, NoSymbol,
+ /* 0x76 */ NoSymbol, NoSymbol,
+ /* 0x77 */ NoSymbol, NoSymbol,
+ /* 0x78 */ XK_F21, NoSymbol,
+ /* 0x79 */ XK_F22, NoSymbol,
+ /* 0x7a */ XK_F23, NoSymbol,
+ /* 0x7b */ XK_F24, NoSymbol,
+ /* 0x7c */ XK_KP_Separator, NoSymbol,
+ /* 0x7d */ XK_Meta_L, NoSymbol,
+ /* 0x7e */ XK_Meta_R, NoSymbol,
+ /* 0x7f */ XK_Multi_key, NoSymbol,
+ /* 0x80 */ NoSymbol, NoSymbol,
+ /* 0x81 */ NoSymbol, NoSymbol,
+ /* 0x82 */ NoSymbol, NoSymbol,
+ /* 0x83 */ NoSymbol, NoSymbol,
+ /* 0x84 */ NoSymbol, NoSymbol,
+ /* 0x85 */ NoSymbol, NoSymbol,
+ /* 0x86 */ NoSymbol, NoSymbol,
+ /* 0x87 */ NoSymbol, NoSymbol,
+ /* 0x88 */ NoSymbol, NoSymbol,
+ /* 0x89 */ NoSymbol, NoSymbol,
+ /* 0x8a */ NoSymbol, NoSymbol,
+ /* 0x8b */ NoSymbol, NoSymbol,
+ /* 0x8c */ NoSymbol, NoSymbol,
+ /* 0x8d */ NoSymbol, NoSymbol,
+ /* 0x8e */ NoSymbol, NoSymbol,
+ /* 0x8f */ NoSymbol, NoSymbol,
+ /* 0x90 */ NoSymbol, NoSymbol,
+ /* 0x91 */ NoSymbol, NoSymbol,
+ /* 0x92 */ NoSymbol, NoSymbol,
+ /* 0x93 */ NoSymbol, NoSymbol,
+ /* 0x94 */ NoSymbol, NoSymbol,
+ /* 0x95 */ NoSymbol, NoSymbol,
+ /* 0x96 */ NoSymbol, NoSymbol,
+ /* 0x97 */ NoSymbol, NoSymbol,
+ /* 0x98 */ NoSymbol, NoSymbol,
+ /* 0x99 */ NoSymbol, NoSymbol,
+ /* 0x9a */ NoSymbol, NoSymbol,
+ /* 0x9b */ NoSymbol, NoSymbol,
+ /* 0x9c */ NoSymbol, NoSymbol,
+ /* 0x9d */ NoSymbol, NoSymbol,
+ /* 0x9e */ NoSymbol, NoSymbol,
+ /* 0x9f */ NoSymbol, NoSymbol,
+ /* 0xa0 */ NoSymbol, NoSymbol,
+ /* 0xa1 */ NoSymbol, NoSymbol,
+ /* 0xa2 */ NoSymbol, NoSymbol,
+ /* 0xa3 */ NoSymbol, NoSymbol,
+ /* 0xa4 */ NoSymbol, NoSymbol,
+ /* 0xa5 */ NoSymbol, NoSymbol,
+ /* 0xa6 */ NoSymbol, NoSymbol,
+ /* 0xa7 */ NoSymbol, NoSymbol,
+ /* 0xa8 */ NoSymbol, NoSymbol,
+ /* 0xa9 */ NoSymbol, NoSymbol,
+ /* 0xaa */ NoSymbol, NoSymbol,
+ /* 0xab */ NoSymbol, NoSymbol,
+ /* 0xac */ NoSymbol, NoSymbol,
+ /* 0xad */ NoSymbol, NoSymbol,
+ /* 0xae */ NoSymbol, NoSymbol,
+ /* 0xaf */ NoSymbol, NoSymbol,
+ /* 0xb0 */ NoSymbol, NoSymbol,
+ /* 0xb1 */ NoSymbol, NoSymbol,
+ /* 0xb2 */ NoSymbol, NoSymbol,
+ /* 0xb3 */ NoSymbol, NoSymbol,
+ /* 0xb4 */ NoSymbol, NoSymbol,
+ /* 0xb5 */ NoSymbol, NoSymbol,
+ /* 0xb6 */ NoSymbol, NoSymbol,
+ /* 0xb7 */ NoSymbol, NoSymbol,
+ /* 0xb8 */ NoSymbol, NoSymbol,
+ /* 0xb9 */ NoSymbol, NoSymbol,
+ /* 0xba */ NoSymbol, NoSymbol,
+ /* 0xbb */ NoSymbol, NoSymbol,
+ /* 0xbc */ NoSymbol, NoSymbol,
+ /* 0xbd */ NoSymbol, NoSymbol,
+ /* 0xbe */ NoSymbol, NoSymbol,
+ /* 0xbf */ NoSymbol, NoSymbol,
+ /* 0xc0 */ NoSymbol, NoSymbol,
+ /* 0xc1 */ NoSymbol, NoSymbol,
+ /* 0xc2 */ NoSymbol, NoSymbol,
+ /* 0xc3 */ NoSymbol, NoSymbol,
+ /* 0xc4 */ NoSymbol, NoSymbol,
+ /* 0xc5 */ NoSymbol, NoSymbol,
+ /* 0xc6 */ NoSymbol, NoSymbol,
+ /* 0xc7 */ NoSymbol, NoSymbol,
+ /* 0xc8 */ NoSymbol, NoSymbol,
+ /* 0xc9 */ NoSymbol, NoSymbol,
+ /* 0xca */ NoSymbol, NoSymbol,
+ /* 0xcb */ NoSymbol, NoSymbol,
+ /* 0xcc */ NoSymbol, NoSymbol,
+ /* 0xcd */ NoSymbol, NoSymbol,
+ /* 0xce */ NoSymbol, NoSymbol,
+ /* 0xcf */ NoSymbol, NoSymbol,
+ /* 0xd0 */ NoSymbol, NoSymbol,
+ /* 0xd1 */ NoSymbol, NoSymbol,
+ /* 0xd2 */ NoSymbol, NoSymbol,
+ /* 0xd3 */ NoSymbol, NoSymbol,
+ /* 0xd4 */ NoSymbol, NoSymbol,
+ /* 0xd5 */ NoSymbol, NoSymbol,
+ /* 0xd6 */ NoSymbol, NoSymbol,
+ /* 0xd7 */ NoSymbol, NoSymbol,
+ /* 0xd8 */ NoSymbol, NoSymbol,
+ /* 0xd9 */ NoSymbol, NoSymbol,
+ /* 0xda */ NoSymbol, NoSymbol,
+ /* 0xdb */ NoSymbol, NoSymbol,
+ /* 0xdc */ NoSymbol, NoSymbol,
+ /* 0xdd */ NoSymbol, NoSymbol,
+ /* 0xde */ NoSymbol, NoSymbol,
+ /* 0xdf */ NoSymbol, NoSymbol,
+ /* 0xe0 */ NoSymbol, NoSymbol,
+ /* 0xe1 */ NoSymbol, NoSymbol,
+ /* 0xe2 */ NoSymbol, NoSymbol,
+ /* 0xe3 */ NoSymbol, NoSymbol,
+ /* 0xe4 */ NoSymbol, NoSymbol,
+ /* 0xe5 */ NoSymbol, NoSymbol,
+ /* 0xe6 */ NoSymbol, NoSymbol,
+ /* 0xe7 */ NoSymbol, NoSymbol,
+ /* 0xe8 */ NoSymbol, NoSymbol,
+ /* 0xe9 */ NoSymbol, NoSymbol,
+ /* 0xea */ NoSymbol, NoSymbol,
+ /* 0xeb */ NoSymbol, NoSymbol,
+ /* 0xec */ NoSymbol, NoSymbol,
+ /* 0xed */ NoSymbol, NoSymbol,
+ /* 0xee */ NoSymbol, NoSymbol,
+ /* 0xef */ NoSymbol, NoSymbol,
+ /* 0xf0 */ NoSymbol, NoSymbol,
+ /* 0xf1 */ NoSymbol, NoSymbol,
+ /* 0xf2 */ NoSymbol, NoSymbol,
+ /* 0xf3 */ NoSymbol, NoSymbol,
+ /* 0xf4 */ NoSymbol, NoSymbol,
+ /* 0xf5 */ NoSymbol, NoSymbol,
+ /* 0xf6 */ NoSymbol, NoSymbol,
+ /* 0xf7 */ NoSymbol, NoSymbol,
+};
+
+static struct { KeySym keysym; CARD8 mask; } modifiers[] = {
+ { XK_Shift_L, ShiftMask },
+ { XK_Shift_R, ShiftMask },
+ { XK_Control_L, ControlMask },
+ { XK_Control_R, ControlMask },
+ { XK_Caps_Lock, LockMask },
+ { XK_Alt_L, AltMask },
+ { XK_Alt_R, AltMask },
+ { XK_Meta_L, Mod4Mask },
+ { XK_Meta_R, Mod4Mask },
+ { XK_Num_Lock, NumLockMask },
+ { XK_Scroll_Lock, ScrollLockMask },
+ { XK_Mode_switch, AltLangMask }
+};
+#endif
+
+
static void
jstkKbdCtrl(DeviceIntPtr device, KeybdCtrl *ctrl)
@@ -69,67 +343,48 @@ jstkKbdCtrl(DeviceIntPtr device, KeybdCtrl *ctrl)
static int
jstkInitKeys(DeviceIntPtr pJstk, JoystickDevPtr priv)
{
- KeySymsRec keySyms;
- CARD8 modMap[MAP_LENGTH];
- KeySym sym;
- int i, j;
XkbSrvInfoPtr xkbi;
XkbControlsPtr ctrls;
- static struct { KeySym keysym; CARD8 mask; } modifiers[] = {
- { XK_Shift_L, ShiftMask },
- { XK_Shift_R, ShiftMask },
- { XK_Control_L, ControlMask },
- { XK_Control_R, ControlMask },
- { XK_Caps_Lock, LockMask },
- { XK_Alt_L, AltMask },
- { XK_Alt_R, AltMask },
- { XK_Num_Lock, NumLockMask },
- { XK_Scroll_Lock, ScrollLockMask },
- { XK_Mode_switch, AltLangMask }
- };
-
- DBG(1, xf86Msg(X_CONFIG, "Initializing Keyboard with %d keys\n",
- priv->keymap.size));
- for (i = 0; i < priv->keymap.size; i++)
+#if GET_ABI_MAJOR(ABI_XINPUT_VERSION) >= 5
{
- DBG(6, xf86Msg(X_CONFIG, "Keymap [%d]: 0x%08X\n", MIN_KEYCODE+i,(unsigned int)priv->keymap.map[i]));
+ if (!InitKeyboardDeviceStruct(pJstk, &priv->rmlvo, NULL, jstkKbdCtrl))
+ {
+ ErrorF("unable to init keyboard device\n");
+ return !Success;
+ }
}
+#else
+ KeySymsRec keySyms;
+ CARD8 modMap[MAP_LENGTH];
+ KeySym sym;
+ int i, j;
+ XkbComponentNamesRec xkbnames;
memset(modMap, 0, sizeof(modMap));
+ memset(&xkbnames, 0, sizeof(xkbnames));
-
- keySyms.map = priv->keymap.map;
- keySyms.mapWidth = 1;
+ keySyms.map = map;
+ keySyms.mapWidth = GLYPHS_PER_KEY;
keySyms.minKeyCode = MIN_KEYCODE;
-/* keySyms.maxKeyCode = MIN_KEYCODE + priv->keymap.size - 1; */
- keySyms.maxKeyCode = MIN_KEYCODE + sizeof(priv->keymap.map)/sizeof(priv->keymap.map[0]) - 1;
+ keySyms.maxKeyCode = MIN_KEYCODE + (sizeof(map) / sizeof(map[0])) / GLYPHS_PER_KEY - 1;
- for (i = 0; i < priv->keymap.size; i++) {
- sym = priv->keymap.map[i];
+ for (i = 0; i < (sizeof(map) / sizeof(map[0])) / GLYPHS_PER_KEY; i++) {
+ sym = map[i * GLYPHS_PER_KEY];
for (j = 0; j < sizeof(modifiers)/sizeof(modifiers[0]); j++) {
if (modifiers[j].keysym == sym)
modMap[i + MIN_KEYCODE] = modifiers[j].mask;
}
}
-#if GET_ABI_MAJOR(ABI_XINPUT_VERSION) >= 5
- {
- XkbRMLVOSet rmlvo;
- XkbGetRulesDflts(&rmlvo);
- /* FIXME */
- #warning KEYMAP FOR ABI_XINPUT_VERSION >= 5 BROKEN RIGHT NOW
- if (!InitKeyboardDeviceStruct(pJstk, &rmlvo, NULL, jstkKbdCtrl))
- {
- ErrorF("unable to init keyboard device\n");
- return !Success;
- }
- }
-#else
- if (InitKeyboardDeviceStruct((DevicePtr)pJstk, &keySyms, modMap, NULL, jstkKbdCtrl) == FALSE) {
- ErrorF("unable to init keyboard device\n");
+ ErrorF("%s, %s, %s, %s, %s\n", priv->rmlvo.rules, priv->rmlvo.model, priv->rmlvo.layout, priv->rmlvo.variant, priv->rmlvo.options);
+ XkbSetRulesDflts(priv->rmlvo.rules, priv->rmlvo.model,
+ priv->rmlvo.layout, priv->rmlvo.variant,
+ priv->rmlvo.options);
+ if (!XkbInitKeyboardDeviceStruct(pJstk, &xkbnames,
+ &keySyms, modMap, NULL,
+ jstkKbdCtrl))
return !Success;
- }
#endif
/* Set Autorepeat and Delay */
@@ -175,7 +430,6 @@ jstkGenerateKeys(LocalDevicePtr device, KEYSCANCODES keys, char pressed)
else k = keys[MAXKEYSPERBUTTON - i - 1];
if (k != 0) {
- k = k + MIN_KEYCODE;
DBG(2, ErrorF("Generating key %s event with keycode %d\n",
(pressed)?"press":"release", k));
xf86PostKeyboardEvent(device->dev, k, pressed);
diff --git a/src/jstk_options.c b/src/jstk_options.c
index 8c0aba1..42293a7 100644
--- a/src/jstk_options.c
+++ b/src/jstk_options.c
@@ -35,38 +35,12 @@
#include <X11/XF86keysym.h>
#include "jstk.h"
#include "jstk_options.h"
-#include "StrKeysym.h"
-
/***********************************************************************
*
- * jstkGetKeyNumberInMap --
- *
- * Adds a KeySym to the keymap and returns the index
- *
- ***********************************************************************
- */
-
-static int
-jstkGetKeyNumberInMap(JoystickDevPtr priv,
- KeySym keysym)
-{
- int j;
- for (j=0; j<priv->keymap.size; j++)
- if (priv->keymap.map[j] == keysym)
- break;
- if (j >= sizeof(priv->keymap.map)/sizeof(priv->keymap.map[0])) return 0;
- priv->keymap.map[j] = keysym;
- if (j + 1 > priv->keymap.size) priv->keymap.size = j + 1;
- return j;
-}
-
-
-/***********************************************************************
- *
* jstkGetAxisMapping --
*
* Parses strings like:
@@ -156,21 +130,17 @@ jstkParseButtonOption(const char* org,
button->mapping = JSTK_MAPPING_KEY;
for (value = 0; value < MAXKEYSPERBUTTON; value++) if (current != NULL) {
- unsigned key;
+ unsigned int key;
next = strchr(current, ',');
- if (!next) next = strchr(current, '+');
+ if (!next) next = strchr(current, '+');
if (next) *(next++) = '\0';
-#ifdef _STRKEYSYM_H_INCLUDED_
- key = XStringToKeysym(current);
- if (key == NoSymbol)
-#endif
- key = strtol(current, NULL, 0);
+ key = strtol(current, NULL, 0);
DBG(3, ErrorF("Parsed %s to %d\n", current, key));
if (key == 0)
xf86Msg(X_WARNING, "%s: error parsing key value: %s.\n",
name, current);
else {
- button->keys[value] = jstkGetKeyNumberInMap(priv, key);
+ button->keys[value] = key;
}
current = next;
} else button->keys[value] = 0;
@@ -272,17 +242,13 @@ jstkParseAxisOption(const char* org,
if (!next) next = strchr(current, '+');
if (next) *(next++) = '\0';
-#ifdef _STRKEYSYM_H_INCLUDED_
- key = XStringToKeysym(current);
- if (key == NoSymbol)
-#endif
- key = strtol(current, NULL, 0);
+ key = strtol(current, NULL, 0);
DBG(3, ErrorF("Parsed %s to %d\n", current, key));
if (key == 0)
xf86Msg(X_WARNING, "%s: error parsing keylow value: %s.\n",
name, current);
else {
- axis->keys_low[value] = jstkGetKeyNumberInMap(priv, key);
+ axis->keys_low[value] = key;
}
current = next;
} else axis->keys_low[value] = 0;
@@ -299,20 +265,16 @@ jstkParseAxisOption(const char* org,
for (value = 0; value < MAXKEYSPERBUTTON; value++)
if (current != NULL) {
next = strchr(current, ',');
- if (!next) next = strchr(current, '+');
+ if (!next) next = strchr(current, '+');
if (next) *(next++) = '\0';
key = strtol(current, NULL, 0);
-#ifdef _STRKEYSYM_H_INCLUDED_
- key = XStringToKeysym(current);
- if (key == NoSymbol)
-#endif
- key = strtol(current, NULL, 0);
+ key = strtol(current, NULL, 0);
DBG(3, ErrorF("Parsed %s to %d\n", current, key));
if (key == 0)
xf86Msg(X_WARNING, "%s: error parsing keyhigh value: %s.\n",
name, current);
else {
- axis->keys_high[value] = jstkGetKeyNumberInMap(priv, key);
+ axis->keys_high[value] = key;
}
current = next;
} else axis->keys_high[value] = 0;
diff --git a/src/jstk_properties.c b/src/jstk_properties.c
index f2c562a..1ceeb06 100644
--- a/src/jstk_properties.c
+++ b/src/jstk_properties.c
@@ -71,7 +71,7 @@ jstkSetProperty(DeviceIntPtr pJstk, Atom atom, XIPropertyValuePtr val,
{
InputInfoPtr pInfo = pJstk->public.devicePrivate;
JoystickDevPtr priv = pInfo->private;
- int i;
+ int i, j;
if (atom == prop_debuglevel)
{
@@ -173,12 +173,38 @@ jstkSetProperty(DeviceIntPtr pJstk, Atom atom, XIPropertyValuePtr val,
}
}else if (atom == prop_axis_keys_low)
{
- /* FIXME */
- return BadValue;
+ unsigned char *values;
+ if (val->size != priv->num_axes*MAXKEYSPERBUTTON || val->format != 8 || val->type != XA_INTEGER)
+ return BadMatch;
+ if (!checkonly)
+ {
+ values = (unsigned char*)val->data;
+ for (i =0; i<val->size/MAXKEYSPERBUTTON; i++) {
+ DBG(1, ErrorF("key_low of axis %d set to ", i));
+ for (j = 0; j<MAXKEYSPERBUTTON; j++) {
+ priv->axis[i].keys_low[j] = values[i*MAXKEYSPERBUTTON+j];
+ DBG(1, ErrorF("%d ", priv->axis[i].keys_low[j]));
+ }
+ DBG(1, ErrorF("\n"));
+ }
+ }
}else if (atom == prop_axis_keys_high)
{
- /* FIXME */
- return BadValue;
+ unsigned char *values;
+ if (val->size != priv->num_axes*MAXKEYSPERBUTTON || val->format != 8 || val->type != XA_INTEGER)
+ return BadMatch;
+ if (!checkonly)
+ {
+ values = (unsigned char*)val->data;
+ for (i =0; i<val->size/MAXKEYSPERBUTTON; i++) {
+ DBG(1, ErrorF("key_high of axis %d set to ", i));
+ for (j = 0; j<MAXKEYSPERBUTTON; j++) {
+ priv->axis[i].keys_high[j] = values[i*MAXKEYSPERBUTTON+j];
+ DBG(1, ErrorF("%d ", priv->axis[i].keys_high[j]));
+ }
+ DBG(1, ErrorF("\n"));
+ }
+ }
}else if (atom == prop_button_mapping)
{
INT8 *values;
@@ -231,8 +257,21 @@ jstkSetProperty(DeviceIntPtr pJstk, Atom atom, XIPropertyValuePtr val,
}
}else if (atom == prop_button_keys)
{
- /* FIXME */
- return BadValue;
+ unsigned char *values;
+ if (val->size != priv->num_buttons*MAXKEYSPERBUTTON || val->format != 8 || val->type != XA_INTEGER)
+ return BadMatch;
+ if (!checkonly)
+ {
+ values = (unsigned char*)val->data;
+ for (i = 0; i<val->size/MAXKEYSPERBUTTON; i++) {
+ DBG(1, ErrorF("keys of button %d set to ", i));
+ for (j = 0; j<MAXKEYSPERBUTTON; j++) {
+ priv->button[i].keys[j] = values[i*MAXKEYSPERBUTTON+j];
+ DBG(1, ErrorF("%d ", priv->button[i].keys[j]));
+ }
+ DBG(1, ErrorF("\n"));
+ }
+ }
}
/* property not handled, report success */
@@ -243,11 +282,11 @@ Bool
jstkInitProperties(DeviceIntPtr pJstk, JoystickDevPtr priv)
{
INT32 axes_values32[MAXAXES];
- INT8 axes_values8[MAXAXES];
- INT8 button_values8[MAXBUTTONS];
+ INT8 axes_values8[MAXAXES*MAXKEYSPERBUTTON];
+ INT8 button_values8[MAXBUTTONS*MAXKEYSPERBUTTON];
float axes_floats[MAXAXES];
float button_floats[MAXBUTTONS];
- int i;
+ int i, j;
XIRegisterPropertyHandler(pJstk, jstkSetProperty, NULL, NULL);
@@ -347,12 +386,26 @@ jstkInitProperties(DeviceIntPtr pJstk, JoystickDevPtr priv)
}
/* priv->axis[].keys_low */
- /* FIXME: prop_axis_keys_low */
+ for (i=0;i<priv->num_axes;i++)
+ for (j=0;j<MAXKEYSPERBUTTON;j++)
+ axes_values8[i*MAXKEYSPERBUTTON+j] = (INT8)priv->axis[i].keys_low[j];
+ prop_axis_keys_low = MakeAtom(JSTK_PROP_AXIS_KEYS_LOW, strlen(JSTK_PROP_AXIS_KEYS_LOW), TRUE);
+ XIChangeDeviceProperty(pJstk, prop_axis_keys_low, XA_INTEGER, 8,
+ PropModeReplace, priv->num_axes*MAXKEYSPERBUTTON,
+ axes_values8,
+ FALSE);
+ XISetDevicePropertyDeletable(pJstk, prop_axis_keys_low, FALSE);
/* priv->axis[].keys_high */
- /* FIXME: prop_axis_keys_high */
-
-
+ for (i=0;i<priv->num_axes;i++)
+ for (j=0;j<MAXKEYSPERBUTTON;j++)
+ axes_values8[i*MAXKEYSPERBUTTON+j] = (INT8)priv->axis[i].keys_high[j];
+ prop_axis_keys_high = MakeAtom(JSTK_PROP_AXIS_KEYS_HIGH, strlen(JSTK_PROP_AXIS_KEYS_HIGH), TRUE);
+ XIChangeDeviceProperty(pJstk, prop_axis_keys_high, XA_INTEGER, 8,
+ PropModeReplace, priv->num_axes*MAXKEYSPERBUTTON,
+ axes_values8,
+ FALSE);
+ XISetDevicePropertyDeletable(pJstk, prop_axis_keys_high, FALSE);
/* priv->button[].mapping */
@@ -391,7 +444,15 @@ jstkInitProperties(DeviceIntPtr pJstk, JoystickDevPtr priv)
}
/* priv->button[].keys */
- /* FIXME: prop_button_keys */
+ for (i=0;i<priv->num_buttons;i++)
+ for (j=0;j<MAXKEYSPERBUTTON;j++)
+ button_values8[i*MAXKEYSPERBUTTON+j] = (INT8)priv->button[i].keys[j];
+ prop_button_keys = MakeAtom(JSTK_PROP_BUTTON_KEYS, strlen(JSTK_PROP_BUTTON_KEYS), TRUE);
+ XIChangeDeviceProperty(pJstk, prop_button_keys, XA_INTEGER, 8,
+ PropModeReplace, priv->num_buttons*MAXKEYSPERBUTTON,
+ button_values8,
+ FALSE);
+ XISetDevicePropertyDeletable(pJstk, prop_button_keys, FALSE);
return TRUE;
}
diff --git a/src/ks_tables.h b/src/ks_tables.h
deleted file mode 100644
index e961c7d..0000000
--- a/src/ks_tables.h
+++ /dev/null
@@ -1,2694 +0,0 @@
-/* This file is generated from keysymdef.h. */
-/* Do not edit. */
-
-#ifdef NEEDKTABLE
-const unsigned char _XkeyTable[] = {
-0,
-0x80, 0xaa, 0x00, 0x00, 0x00, 0x00, 'V','o','i','d','S','y','m','b','o','l',0,
-0xa3, 0xff, 0x00, 0x00, 0xff, 0x08, 'B','a','c','k','S','p','a','c','e',0,
-0x02, 0x74, 0x00, 0x00, 0xff, 0x09, 'T','a','b',0,
-0x5a, 0x42, 0x00, 0x00, 0xff, 0x0a, 'L','i','n','e','f','e','e','d',0,
-0x0a, 0x58, 0x00, 0x00, 0xff, 0x0b, 'C','l','e','a','r',0,
-0x17, 0x56, 0x00, 0x00, 0xff, 0x0d, 'R','e','t','u','r','n',0,
-0x0b, 0x27, 0x00, 0x00, 0xff, 0x13, 'P','a','u','s','e',0,
-0xef, 0x3d, 0x00, 0x00, 0xff, 0x14, 'S','c','r','o','l','l','_','L','o','c','k',0,
-0x30, 0x8b, 0x00, 0x00, 0xff, 0x15, 'S','y','s','_','R','e','q',0,
-0x15, 0xb1, 0x00, 0x00, 0xff, 0x1b, 'E','s','c','a','p','e',0,
-0x15, 0x11, 0x00, 0x00, 0xff, 0xff, 'D','e','l','e','t','e',0,
-0xbd, 0x77, 0x00, 0x00, 0xff, 0x20, 'M','u','l','t','i','_','k','e','y',0,
-0xad, 0x3e, 0x00, 0x00, 0xff, 0x37, 'C','o','d','e','i','n','p','u','t',0,
-0x1a, 0x01, 0x00, 0x00, 0xff, 0x3c, 'S','i','n','g','l','e','C','a','n','d','i','d','a','t','e',0,
-0x32, 0x01, 0x00, 0x00, 0xff, 0x3d, 'M','u','l','t','i','p','l','e','C','a','n','d','i','d','a','t','e',0,
-0x6a, 0x01, 0x00, 0x00, 0xff, 0x3e, 'P','r','e','v','i','o','u','s','C','a','n','d','i','d','a','t','e',0,
-0x0a, 0xad, 0x00, 0x00, 0xff, 0x21, 'K','a','n','j','i',0,
-0x5d, 0x5c, 0x00, 0x00, 0xff, 0x22, 'M','u','h','e','n','k','a','n',0,
-0xbe, 0xc1, 0x00, 0x00, 0xff, 0x23, 'H','e','n','k','a','n','_','M','o','d','e',0,
-0x15, 0x9c, 0x00, 0x00, 0xff, 0x23, 'H','e','n','k','a','n',0,
-0x17, 0x59, 0x00, 0x00, 0xff, 0x24, 'R','o','m','a','j','i',0,
-0x58, 0x89, 0x00, 0x00, 0xff, 0x25, 'H','i','r','a','g','a','n','a',0,
-0x58, 0x69, 0x00, 0x00, 0xff, 0x26, 'K','a','t','a','k','a','n','a',0,
-0xc9, 0x69, 0x00, 0x00, 0xff, 0x27, 'H','i','r','a','g','a','n','a','_','K','a','t','a','k','a','n','a',0,
-0x30, 0x27, 0x00, 0x00, 0xff, 0x28, 'Z','e','n','k','a','k','u',0,
-0x2b, 0x27, 0x00, 0x00, 0xff, 0x29, 'H','a','n','k','a','k','u',0,
-0x81, 0xa7, 0x00, 0x00, 0xff, 0x2a, 'Z','e','n','k','a','k','u','_','H','a','n','k','a','k','u',0,
-0x30, 0xc7, 0x00, 0x00, 0xff, 0x2b, 'T','o','u','r','o','k','u',0,
-0x16, 0x75, 0x00, 0x00, 0xff, 0x2c, 'M','a','s','s','y','o',0,
-0xae, 0x5d, 0x00, 0x00, 0xff, 0x2d, 'K','a','n','a','_','L','o','c','k',0,
-0x5d, 0x74, 0x00, 0x00, 0xff, 0x2e, 'K','a','n','a','_','S','h','i','f','t',0,
-0x60, 0xf4, 0x00, 0x00, 0xff, 0x2f, 'E','i','s','u','_','S','h','i','f','t',0,
-0xc6, 0xc1, 0x00, 0x00, 0xff, 0x30, 'E','i','s','u','_','t','o','g','g','l','e',0,
-0x82, 0xef, 0x00, 0x00, 0xff, 0x37, 'K','a','n','j','i','_','B','a','n','g','o','u',0,
-0x5f, 0x43, 0x00, 0x00, 0xff, 0x3d, 'Z','e','n','_','K','o','h','o',0,
-0x56, 0xa3, 0x00, 0x00, 0xff, 0x3e, 'M','a','e','_','K','o','h','o',0,
-0x05, 0x3b, 0x00, 0x00, 0xff, 0x50, 'H','o','m','e',0,
-0x05, 0x34, 0x00, 0x00, 0xff, 0x51, 'L','e','f','t',0,
-0x01, 0x1a, 0x00, 0x00, 0xff, 0x52, 'U','p',0,
-0x0b, 0x48, 0x00, 0x00, 0xff, 0x53, 'R','i','g','h','t',0,
-0x05, 0x38, 0x00, 0x00, 0xff, 0x54, 'D','o','w','n',0,
-0x0b, 0x84, 0x00, 0x00, 0xff, 0x55, 'P','r','i','o','r',0,
-0x2c, 0x4e, 0x00, 0x00, 0xff, 0x55, 'P','a','g','e','_','U','p',0,
-0x05, 0x68, 0x00, 0x00, 0xff, 0x56, 'N','e','x','t',0,
-0xb2, 0x08, 0x00, 0x00, 0xff, 0x56, 'P','a','g','e','_','D','o','w','n',0,
-0x02, 0x54, 0x00, 0x00, 0xff, 0x57, 'E','n','d',0,
-0x0a, 0x24, 0x00, 0x00, 0xff, 0x58, 'B','e','g','i','n',0,
-0x16, 0xde, 0x00, 0x00, 0xff, 0x60, 'S','e','l','e','c','t',0,
-0x0b, 0x84, 0x00, 0x00, 0xff, 0x61, 'P','r','i','n','t',0,
-0x2c, 0xc9, 0x00, 0x00, 0xff, 0x62, 'E','x','e','c','u','t','e',0,
-0x16, 0x84, 0x00, 0x00, 0xff, 0x63, 'I','n','s','e','r','t',0,
-0x05, 0x97, 0x00, 0x00, 0xff, 0x65, 'U','n','d','o',0,
-0x05, 0x5b, 0x00, 0x00, 0xff, 0x66, 'R','e','d','o',0,
-0x05, 0x4d, 0x00, 0x00, 0xff, 0x67, 'M','e','n','u',0,
-0x05, 0x14, 0x00, 0x00, 0xff, 0x68, 'F','i','n','d',0,
-0x14, 0xa2, 0x00, 0x00, 0xff, 0x69, 'C','a','n','c','e','l',0,
-0x05, 0x1c, 0x00, 0x00, 0xff, 0x6a, 'H','e','l','p',0,
-0x0a, 0x71, 0x00, 0x00, 0xff, 0x6b, 'B','r','e','a','k',0,
-0xdc, 0x56, 0x00, 0x00, 0xff, 0x7e, 'M','o','d','e','_','s','w','i','t','c','h',0,
-0xbf, 0xd6, 0x00, 0x00, 0xff, 0x7e, 's','c','r','i','p','t','_','s','w','i','t','c','h',0,
-0x5d, 0x1d, 0x00, 0x00, 0xff, 0x7f, 'N','u','m','_','L','o','c','k',0,
-0x50, 0xbf, 0x00, 0x00, 0xff, 0x80, 'K','P','_','S','p','a','c','e',0,
-0x13, 0xcc, 0x00, 0x00, 0xff, 0x89, 'K','P','_','T','a','b',0,
-0x50, 0x2c, 0x00, 0x00, 0xff, 0x8d, 'K','P','_','E','n','t','e','r',0,
-0x09, 0x69, 0x00, 0x00, 0xff, 0x91, 'K','P','_','F','1',0,
-0x09, 0x6a, 0x00, 0x00, 0xff, 0x92, 'K','P','_','F','2',0,
-0x09, 0x6b, 0x00, 0x00, 0xff, 0x93, 'K','P','_','F','3',0,
-0x09, 0x6c, 0x00, 0x00, 0xff, 0x94, 'K','P','_','F','4',0,
-0x27, 0xeb, 0x00, 0x00, 0xff, 0x95, 'K','P','_','H','o','m','e',0,
-0x27, 0xe4, 0x00, 0x00, 0xff, 0x96, 'K','P','_','L','e','f','t',0,
-0x09, 0xc6, 0x00, 0x00, 0xff, 0x97, 'K','P','_','U','p',0,
-0x50, 0xa8, 0x00, 0x00, 0xff, 0x98, 'K','P','_','R','i','g','h','t',0,
-0x27, 0xe8, 0x00, 0x00, 0xff, 0x99, 'K','P','_','D','o','w','n',0,
-0x50, 0xe4, 0x00, 0x00, 0xff, 0x9a, 'K','P','_','P','r','i','o','r',0,
-0x41, 0xce, 0x00, 0x00, 0xff, 0x9a, 'K','P','_','P','a','g','e','_','U','p',0,
-0x28, 0x18, 0x00, 0x00, 0xff, 0x9b, 'K','P','_','N','e','x','t',0,
-0x08, 0x08, 0x00, 0x00, 0xff, 0x9b, 'K','P','_','P','a','g','e','_','D','o','w','n',0,
-0x13, 0xac, 0x00, 0x00, 0xff, 0x9c, 'K','P','_','E','n','d',0,
-0x4f, 0x84, 0x00, 0x00, 0xff, 0x9d, 'K','P','_','B','e','g','i','n',0,
-0xa1, 0x44, 0x00, 0x00, 0xff, 0x9e, 'K','P','_','I','n','s','e','r','t',0,
-0x9f, 0xd1, 0x00, 0x00, 0xff, 0x9f, 'K','P','_','D','e','l','e','t','e',0,
-0x50, 0x3a, 0x00, 0x00, 0xff, 0xbd, 'K','P','_','E','q','u','a','l',0,
-0x89, 0xd9, 0x00, 0x00, 0xff, 0xaa, 'K','P','_','M','u','l','t','i','p','l','y',0,
-0x13, 0x88, 0x00, 0x00, 0xff, 0xab, 'K','P','_','A','d','d',0,
-0x10, 0xe8, 0x00, 0x00, 0xff, 0xac, 'K','P','_','S','e','p','a','r','a','t','o','r',0,
-0x8b, 0x8e, 0x00, 0x00, 0xff, 0xad, 'K','P','_','S','u','b','t','r','a','c','t',0,
-0x3f, 0x7a, 0x00, 0x00, 0xff, 0xae, 'K','P','_','D','e','c','i','m','a','l',0,
-0xa0, 0x51, 0x00, 0x00, 0xff, 0xaf, 'K','P','_','D','i','v','i','d','e',0,
-0x04, 0x86, 0x00, 0x00, 0xff, 0xb0, 'K','P','_','0',0,
-0x04, 0x87, 0x00, 0x00, 0xff, 0xb1, 'K','P','_','1',0,
-0x04, 0x88, 0x00, 0x00, 0xff, 0xb2, 'K','P','_','2',0,
-0x04, 0x89, 0x00, 0x00, 0xff, 0xb3, 'K','P','_','3',0,
-0x04, 0x8a, 0x00, 0x00, 0xff, 0xb4, 'K','P','_','4',0,
-0x04, 0x8b, 0x00, 0x00, 0xff, 0xb5, 'K','P','_','5',0,
-0x04, 0x8c, 0x00, 0x00, 0xff, 0xb6, 'K','P','_','6',0,
-0x04, 0x8d, 0x00, 0x00, 0xff, 0xb7, 'K','P','_','7',0,
-0x04, 0x8e, 0x00, 0x00, 0xff, 0xb8, 'K','P','_','8',0,
-0x04, 0x8f, 0x00, 0x00, 0xff, 0xb9, 'K','P','_','9',0,
-0x00, 0xbd, 0x00, 0x00, 0xff, 0xbe, 'F','1',0,
-0x00, 0xbe, 0x00, 0x00, 0xff, 0xbf, 'F','2',0,
-0x00, 0xbf, 0x00, 0x00, 0xff, 0xc0, 'F','3',0,
-0x00, 0xc0, 0x00, 0x00, 0xff, 0xc1, 'F','4',0,
-0x00, 0xc1, 0x00, 0x00, 0xff, 0xc2, 'F','5',0,
-0x00, 0xc2, 0x00, 0x00, 0xff, 0xc3, 'F','6',0,
-0x00, 0xc3, 0x00, 0x00, 0xff, 0xc4, 'F','7',0,
-0x00, 0xc4, 0x00, 0x00, 0xff, 0xc5, 'F','8',0,
-0x00, 0xc5, 0x00, 0x00, 0xff, 0xc6, 'F','9',0,
-0x01, 0xaa, 0x00, 0x00, 0xff, 0xc7, 'F','1','0',0,
-0x01, 0xab, 0x00, 0x00, 0xff, 0xc8, 'F','1','1',0,
-0x00, 0xc9, 0x00, 0x00, 0xff, 0xc8, 'L','1',0,
-0x01, 0xac, 0x00, 0x00, 0xff, 0xc9, 'F','1','2',0,
-0x00, 0xca, 0x00, 0x00, 0xff, 0xc9, 'L','2',0,
-0x01, 0xad, 0x00, 0x00, 0xff, 0xca, 'F','1','3',0,
-0x00, 0xcb, 0x00, 0x00, 0xff, 0xca, 'L','3',0,
-0x01, 0xae, 0x00, 0x00, 0xff, 0xcb, 'F','1','4',0,
-0x00, 0xcc, 0x00, 0x00, 0xff, 0xcb, 'L','4',0,
-0x01, 0xaf, 0x00, 0x00, 0xff, 0xcc, 'F','1','5',0,
-0x00, 0xcd, 0x00, 0x00, 0xff, 0xcc, 'L','5',0,
-0x01, 0xb0, 0x00, 0x00, 0xff, 0xcd, 'F','1','6',0,
-0x00, 0xce, 0x00, 0x00, 0xff, 0xcd, 'L','6',0,
-0x01, 0xb1, 0x00, 0x00, 0xff, 0xce, 'F','1','7',0,
-0x00, 0xcf, 0x00, 0x00, 0xff, 0xce, 'L','7',0,
-0x01, 0xb2, 0x00, 0x00, 0xff, 0xcf, 'F','1','8',0,
-0x00, 0xd0, 0x00, 0x00, 0xff, 0xcf, 'L','8',0,
-0x01, 0xb3, 0x00, 0x00, 0xff, 0xd0, 'F','1','9',0,
-0x00, 0xd1, 0x00, 0x00, 0xff, 0xd0, 'L','9',0,
-0x01, 0xac, 0x00, 0x00, 0xff, 0xd1, 'F','2','0',0,
-0x01, 0xc2, 0x00, 0x00, 0xff, 0xd1, 'L','1','0',0,
-0x01, 0xad, 0x00, 0x00, 0xff, 0xd2, 'F','2','1',0,
-0x00, 0xd5, 0x00, 0x00, 0xff, 0xd2, 'R','1',0,
-0x01, 0xae, 0x00, 0x00, 0xff, 0xd3, 'F','2','2',0,
-0x00, 0xd6, 0x00, 0x00, 0xff, 0xd3, 'R','2',0,
-0x01, 0xaf, 0x00, 0x00, 0xff, 0xd4, 'F','2','3',0,
-0x00, 0xd7, 0x00, 0x00, 0xff, 0xd4, 'R','3',0,
-0x01, 0xb0, 0x00, 0x00, 0xff, 0xd5, 'F','2','4',0,
-0x00, 0xd8, 0x00, 0x00, 0xff, 0xd5, 'R','4',0,
-0x01, 0xb1, 0x00, 0x00, 0xff, 0xd6, 'F','2','5',0,
-0x00, 0xd9, 0x00, 0x00, 0xff, 0xd6, 'R','5',0,
-0x01, 0xb2, 0x00, 0x00, 0xff, 0xd7, 'F','2','6',0,
-0x00, 0xda, 0x00, 0x00, 0xff, 0xd7, 'R','6',0,
-0x01, 0xb3, 0x00, 0x00, 0xff, 0xd8, 'F','2','7',0,
-0x00, 0xdb, 0x00, 0x00, 0xff, 0xd8, 'R','7',0,
-0x01, 0xb4, 0x00, 0x00, 0xff, 0xd9, 'F','2','8',0,
-0x00, 0xdc, 0x00, 0x00, 0xff, 0xd9, 'R','8',0,
-0x01, 0xb5, 0x00, 0x00, 0xff, 0xda, 'F','2','9',0,
-0x00, 0xdd, 0x00, 0x00, 0xff, 0xda, 'R','9',0,
-0x01, 0xae, 0x00, 0x00, 0xff, 0xdb, 'F','3','0',0,
-0x01, 0xda, 0x00, 0x00, 0xff, 0xdb, 'R','1','0',0,
-0x01, 0xaf, 0x00, 0x00, 0xff, 0xdc, 'F','3','1',0,
-0x01, 0xdb, 0x00, 0x00, 0xff, 0xdc, 'R','1','1',0,
-0x01, 0xb0, 0x00, 0x00, 0xff, 0xdd, 'F','3','2',0,
-0x01, 0xdc, 0x00, 0x00, 0xff, 0xdd, 'R','1','2',0,
-0x01, 0xb1, 0x00, 0x00, 0xff, 0xde, 'F','3','3',0,
-0x01, 0xdd, 0x00, 0x00, 0xff, 0xde, 'R','1','3',0,
-0x01, 0xb2, 0x00, 0x00, 0xff, 0xdf, 'F','3','4',0,
-0x01, 0xde, 0x00, 0x00, 0xff, 0xdf, 'R','1','4',0,
-0x01, 0xb3, 0x00, 0x00, 0xff, 0xe0, 'F','3','5',0,
-0x01, 0xdf, 0x00, 0x00, 0xff, 0xe0, 'R','1','5',0,
-0x2e, 0x5a, 0x00, 0x00, 0xff, 0xe1, 'S','h','i','f','t','_','L',0,
-0x2e, 0x60, 0x00, 0x00, 0xff, 0xe2, 'S','h','i','f','t','_','R',0,
-0xb1, 0xd2, 0x00, 0x00, 0xff, 0xe3, 'C','o','n','t','r','o','l','_','L',0,
-0xb1, 0xd8, 0x00, 0x00, 0xff, 0xe4, 'C','o','n','t','r','o','l','_','R',0,
-0xa9, 0x1d, 0x00, 0x00, 0xff, 0xe5, 'C','a','p','s','_','L','o','c','k',0,
-0x75, 0xbd, 0x00, 0x00, 0xff, 0xe6, 'S','h','i','f','t','_','L','o','c','k',0,
-0x16, 0x1e, 0x00, 0x00, 0xff, 0xe7, 'M','e','t','a','_','L',0,
-0x16, 0x24, 0x00, 0x00, 0xff, 0xe8, 'M','e','t','a','_','R',0,
-0x0a, 0x4a, 0x00, 0x00, 0xff, 0xe9, 'A','l','t','_','L',0,
-0x0a, 0x50, 0x00, 0x00, 0xff, 0xea, 'A','l','t','_','R',0,
-0x30, 0x5a, 0x00, 0x00, 0xff, 0xeb, 'S','u','p','e','r','_','L',0,
-0x30, 0x60, 0x00, 0x00, 0xff, 0xec, 'S','u','p','e','r','_','R',0,
-0x2e, 0x1a, 0x00, 0x00, 0xff, 0xed, 'H','y','p','e','r','_','L',0,
-0x2e, 0x20, 0x00, 0x00, 0xff, 0xee, 'H','y','p','e','r','_','R',0,
-0x4e, 0x5d, 0x00, 0x00, 0xfe, 0x01, 'I','S','O','_','L','o','c','k',0,
-0xae, 0x26, 0x00, 0x00, 0xfe, 0x02, 'I','S','O','_','L','e','v','e','l','2','_','L','a','t','c','h',0,
-0xae, 0xf4, 0x00, 0x00, 0xfe, 0x03, 'I','S','O','_','L','e','v','e','l','3','_','S','h','i','f','t',0,
-0xae, 0x66, 0x00, 0x00, 0xfe, 0x04, 'I','S','O','_','L','e','v','e','l','3','_','L','a','t','c','h',0,
-0x57, 0x1d, 0x00, 0x00, 0xfe, 0x05, 'I','S','O','_','L','e','v','e','l','3','_','L','o','c','k',0,
-0xaf, 0x74, 0x00, 0x00, 0xfe, 0x11, 'I','S','O','_','L','e','v','e','l','5','_','S','h','i','f','t',0,
-0xae, 0xe6, 0x00, 0x00, 0xfe, 0x12, 'I','S','O','_','L','e','v','e','l','5','_','L','a','t','c','h',0,
-0x57, 0x5d, 0x00, 0x00, 0xfe, 0x13, 'I','S','O','_','L','e','v','e','l','5','_','L','o','c','k',0,
-0x64, 0xb4, 0x00, 0x00, 0xff, 0x7e, 'I','S','O','_','G','r','o','u','p','_','S','h','i','f','t',0,
-0x64, 0x26, 0x00, 0x00, 0xfe, 0x06, 'I','S','O','_','G','r','o','u','p','_','L','a','t','c','h',0,
-0xb1, 0xfd, 0x00, 0x00, 0xfe, 0x07, 'I','S','O','_','G','r','o','u','p','_','L','o','c','k',0,
-0xb4, 0xf6, 0x00, 0x00, 0xfe, 0x08, 'I','S','O','_','N','e','x','t','_','G','r','o','u','p',0,
-0xa9, 0xfd, 0x00, 0x00, 0xfe, 0x09, 'I','S','O','_','N','e','x','t','_','G','r','o','u','p','_','L','o','c','k',0,
-0xbc, 0xf6, 0x00, 0x00, 0xfe, 0x0a, 'I','S','O','_','P','r','e','v','_','G','r','o','u','p',0,
-0xa9, 0xfd, 0x00, 0x00, 0xfe, 0x0b, 'I','S','O','_','P','r','e','v','_','G','r','o','u','p','_','L','o','c','k',0,
-0x51, 0x76, 0x00, 0x00, 0xfe, 0x0c, 'I','S','O','_','F','i','r','s','t','_','G','r','o','u','p',0,
-0x39, 0xfd, 0x00, 0x00, 0xfe, 0x0d, 'I','S','O','_','F','i','r','s','t','_','G','r','o','u','p','_','L','o','c','k',0,
-0xaa, 0x76, 0x00, 0x00, 0xfe, 0x0e, 'I','S','O','_','L','a','s','t','_','G','r','o','u','p',0,
-0x59, 0xfd, 0x00, 0x00, 0xfe, 0x0f, 'I','S','O','_','L','a','s','t','_','G','r','o','u','p','_','L','o','c','k',0,
-0xe9, 0xac, 0x00, 0x00, 0xfe, 0x20, 'I','S','O','_','L','e','f','t','_','T','a','b',0,
-0xe1, 0x3e, 0x00, 0x00, 0xfe, 0x21, 'I','S','O','_','M','o','v','e','_','L','i','n','e','_','U','p',0,
-0x85, 0xc8, 0x00, 0x00, 0xfe, 0x22, 'I','S','O','_','M','o','v','e','_','L','i','n','e','_','D','o','w','n',0,
-0x8e, 0x3e, 0x00, 0x00, 0xfe, 0x23, 'I','S','O','_','P','a','r','t','i','a','l','_','L','i','n','e','_','U','p',0,
-0x39, 0xc8, 0x00, 0x00, 0xfe, 0x24, 'I','S','O','_','P','a','r','t','i','a','l','_','L','i','n','e','_','D','o','w','n',0,
-0x83, 0x04, 0x00, 0x00, 0xfe, 0x25, 'I','S','O','_','P','a','r','t','i','a','l','_','S','p','a','c','e','_','L','e','f','t',0,
-0x06, 0xe8, 0x00, 0x00, 0xfe, 0x26, 'I','S','O','_','P','a','r','t','i','a','l','_','S','p','a','c','e','_','R','i','g','h','t',0,
-0xe6, 0xa4, 0x00, 0x00, 0xfe, 0x27, 'I','S','O','_','S','e','t','_','M','a','r','g','i','n','_','L','e','f','t',0,
-0xce, 0x28, 0x00, 0x00, 0xfe, 0x28, 'I','S','O','_','S','e','t','_','M','a','r','g','i','n','_','R','i','g','h','t',0,
-0x36, 0xa4, 0x00, 0x00, 0xfe, 0x29, 'I','S','O','_','R','e','l','e','a','s','e','_','M','a','r','g','i','n','_','L','e','f','t',0,
-0x6e, 0x28, 0x00, 0x00, 0xfe, 0x2a, 'I','S','O','_','R','e','l','e','a','s','e','_','M','a','r','g','i','n','_','R','i','g','h','t',0,
-0x48, 0x2b, 0x00, 0x00, 0xfe, 0x2b, 'I','S','O','_','R','e','l','e','a','s','e','_','B','o','t','h','_','M','a','r','g','i','n','s',0,
-0xae, 0xa4, 0x00, 0x00, 0xfe, 0x2c, 'I','S','O','_','F','a','s','t','_','C','u','r','s','o','r','_','L','e','f','t',0,
-0x5e, 0x28, 0x00, 0x00, 0xfe, 0x2d, 'I','S','O','_','F','a','s','t','_','C','u','r','s','o','r','_','R','i','g','h','t',0,
-0xeb, 0x76, 0x00, 0x00, 0xfe, 0x2e, 'I','S','O','_','F','a','s','t','_','C','u','r','s','o','r','_','U','p',0,
-0xae, 0xa8, 0x00, 0x00, 0xfe, 0x2f, 'I','S','O','_','F','a','s','t','_','C','u','r','s','o','r','_','D','o','w','n',0,
-0x81, 0x05, 0x00, 0x00, 0xfe, 0x30, 'I','S','O','_','C','o','n','t','i','n','u','o','u','s','_','U','n','d','e','r','l','i','n','e',0,
-0x81, 0x05, 0x00, 0x00, 0xfe, 0x31, 'I','S','O','_','D','i','s','c','o','n','t','i','n','u','o','u','s','_','U','n','d','e','r','l','i','n','e',0,
-0xd3, 0x25, 0x00, 0x00, 0xfe, 0x32, 'I','S','O','_','E','m','p','h','a','s','i','z','e',0,
-0xe3, 0xde, 0x00, 0x00, 0xfe, 0x33, 'I','S','O','_','C','e','n','t','e','r','_','O','b','j','e','c','t',0,
-0x9c, 0xec, 0x00, 0x00, 0xfe, 0x34, 'I','S','O','_','E','n','t','e','r',0,
-0x8f, 0x35, 0x00, 0x00, 0xfe, 0x50, 'd','e','a','d','_','g','r','a','v','e',0,
-0x8e, 0xa9, 0x00, 0x00, 0xfe, 0x51, 'd','e','a','d','_','a','c','u','t','e',0,
-0xe8, 0x52, 0x00, 0x00, 0xfe, 0x52, 'd','e','a','d','_','c','i','r','c','u','m','f','l','e','x',0,
-0x8f, 0xc5, 0x00, 0x00, 0xfe, 0x53, 'd','e','a','d','_','t','i','l','d','e',0,
-0x1e, 0x9c, 0x00, 0x00, 0xfe, 0x54, 'd','e','a','d','_','m','a','c','r','o','n',0,
-0x8e, 0xf5, 0x00, 0x00, 0xfe, 0x55, 'd','e','a','d','_','b','r','e','v','e',0,
-0x77, 0x4a, 0x00, 0x00, 0xfe, 0x56, 'd','e','a','d','_','a','b','o','v','e','d','o','t',0,
-0xf0, 0xb9, 0x00, 0x00, 0xfe, 0x57, 'd','e','a','d','_','d','i','a','e','r','e','s','i','s',0,
-0xef, 0x47, 0x00, 0x00, 0xfe, 0x58, 'd','e','a','d','_','a','b','o','v','e','r','i','n','g',0,
-0xdf, 0xe9, 0x00, 0x00, 0xfe, 0x59, 'd','e','a','d','_','d','o','u','b','l','e','a','c','u','t','e',0,
-0x8e, 0xac, 0x00, 0x00, 0xfe, 0x5a, 'd','e','a','d','_','c','a','r','o','n',0,
-0x3b, 0x51, 0x00, 0x00, 0xfe, 0x5b, 'd','e','a','d','_','c','e','d','i','l','l','a',0,
-0x1f, 0x75, 0x00, 0x00, 0xfe, 0x5c, 'd','e','a','d','_','o','g','o','n','e','k',0,
-0xc7, 0x7d, 0x00, 0x00, 0xfe, 0x5d, 'd','e','a','d','_','i','o','t','a',0,
-0x36, 0x1c, 0x00, 0x00, 0xfe, 0x5e, 'd','e','a','d','_','v','o','i','c','e','d','_','s','o','u','n','d',0,
-0xf6, 0x1c, 0x00, 0x00, 0xfe, 0x5f, 'd','e','a','d','_','s','e','m','i','v','o','i','c','e','d','_','s','o','u','n','d',0,
-0x78, 0x4a, 0x00, 0x00, 0xfe, 0x60, 'd','e','a','d','_','b','e','l','o','w','d','o','t',0,
-0xc7, 0x75, 0x00, 0x00, 0xfe, 0x61, 'd','e','a','d','_','h','o','o','k',0,
-0xc7, 0x7e, 0x00, 0x00, 0xfe, 0x62, 'd','e','a','d','_','h','o','r','n',0,
-0x20, 0xe7, 0x00, 0x00, 0xfe, 0x63, 'd','e','a','d','_','s','t','r','o','k','e',0,
-0x1f, 0xac, 0x00, 0x00, 0xfe, 0xd0, 'F','i','r','s','t','_','V','i','r','t','u','a','l','_','S','c','r','e','e','n',0,
-0x1f, 0xac, 0x00, 0x00, 0xfe, 0xd1, 'P','r','e','v','_','V','i','r','t','u','a','l','_','S','c','r','e','e','n',0,
-0x1f, 0xac, 0x00, 0x00, 0xfe, 0xd2, 'N','e','x','t','_','V','i','r','t','u','a','l','_','S','c','r','e','e','n',0,
-0x1f, 0xac, 0x00, 0x00, 0xfe, 0xd4, 'L','a','s','t','_','V','i','r','t','u','a','l','_','S','c','r','e','e','n',0,
-0xe7, 0x94, 0x00, 0x00, 0xfe, 0xd5, 'T','e','r','m','i','n','a','t','e','_','S','e','r','v','e','r',0,
-0xae, 0x0d, 0x00, 0x00, 0xfe, 0x70, 'A','c','c','e','s','s','X','_','E','n','a','b','l','e',0,
-0x1f, 0x8d, 0x00, 0x00, 0xfe, 0x71, 'A','c','c','e','s','s','X','_','F','e','e','d','b','a','c','k','_','E','n','a','b','l','e',0,
-0xa5, 0x8d, 0x00, 0x00, 0xfe, 0x72, 'R','e','p','e','a','t','K','e','y','s','_','E','n','a','b','l','e',0,
-0xbd, 0x8d, 0x00, 0x00, 0xfe, 0x73, 'S','l','o','w','K','e','y','s','_','E','n','a','b','l','e',0,
-0xad, 0x8d, 0x00, 0x00, 0xfe, 0x74, 'B','o','u','n','c','e','K','e','y','s','_','E','n','a','b','l','e',0,
-0xed, 0x8d, 0x00, 0x00, 0xfe, 0x75, 'S','t','i','c','k','y','K','e','y','s','_','E','n','a','b','l','e',0,
-0x0d, 0x8d, 0x00, 0x00, 0xfe, 0x76, 'M','o','u','s','e','K','e','y','s','_','E','n','a','b','l','e',0,
-0x32, 0x0d, 0x00, 0x00, 0xfe, 0x77, 'M','o','u','s','e','K','e','y','s','_','A','c','c','e','l','_','E','n','a','b','l','e',0,
-0x90, 0x8d, 0x00, 0x00, 0xfe, 0x78, 'O','v','e','r','l','a','y','1','_','E','n','a','b','l','e',0,
-0x91, 0x0d, 0x00, 0x00, 0xfe, 0x79, 'O','v','e','r','l','a','y','2','_','E','n','a','b','l','e',0,
-0x09, 0x0d, 0x00, 0x00, 0xfe, 0x7a, 'A','u','d','i','b','l','e','B','e','l','l','_','E','n','a','b','l','e',0,
-0xe8, 0xa4, 0x00, 0x00, 0xfe, 0xe0, 'P','o','i','n','t','e','r','_','L','e','f','t',0,
-0xd2, 0x28, 0x00, 0x00, 0xfe, 0xe1, 'P','o','i','n','t','e','r','_','R','i','g','h','t',0,
-0x79, 0xf6, 0x00, 0x00, 0xfe, 0xe2, 'P','o','i','n','t','e','r','_','U','p',0,
-0xe8, 0xa8, 0x00, 0x00, 0xfe, 0xe3, 'P','o','i','n','t','e','r','_','D','o','w','n',0,
-0xa4, 0x94, 0x00, 0x00, 0xfe, 0xe4, 'P','o','i','n','t','e','r','_','U','p','L','e','f','t',0,
-0x4a, 0x08, 0x00, 0x00, 0xfe, 0xe5, 'P','o','i','n','t','e','r','_','U','p','R','i','g','h','t',0,
-0x8f, 0xb4, 0x00, 0x00, 0xfe, 0xe6, 'P','o','i','n','t','e','r','_','D','o','w','n','L','e','f','t',0,
-0x20, 0x48, 0x00, 0x00, 0xfe, 0xe7, 'P','o','i','n','t','e','r','_','D','o','w','n','R','i','g','h','t',0,
-0x8c, 0x74, 0x00, 0x00, 0xfe, 0xe8, 'P','o','i','n','t','e','r','_','B','u','t','t','o','n','_','D','f','l','t',0,
-0x48, 0x49, 0x00, 0x00, 0xfe, 0xe9, 'P','o','i','n','t','e','r','_','B','u','t','t','o','n','1',0,
-0x48, 0x4a, 0x00, 0x00, 0xfe, 0xea, 'P','o','i','n','t','e','r','_','B','u','t','t','o','n','2',0,
-0x48, 0x4b, 0x00, 0x00, 0xfe, 0xeb, 'P','o','i','n','t','e','r','_','B','u','t','t','o','n','3',0,
-0x48, 0x4c, 0x00, 0x00, 0xfe, 0xec, 'P','o','i','n','t','e','r','_','B','u','t','t','o','n','4',0,
-0x48, 0x4d, 0x00, 0x00, 0xfe, 0xed, 'P','o','i','n','t','e','r','_','B','u','t','t','o','n','5',0,
-0x37, 0x94, 0x00, 0x00, 0xfe, 0xee, 'P','o','i','n','t','e','r','_','D','b','l','C','l','i','c','k','_','D','f','l','t',0,
-0x12, 0xfb, 0x00, 0x00, 0xfe, 0xef, 'P','o','i','n','t','e','r','_','D','b','l','C','l','i','c','k','1',0,
-0x12, 0xfc, 0x00, 0x00, 0xfe, 0xf0, 'P','o','i','n','t','e','r','_','D','b','l','C','l','i','c','k','2',0,
-0x12, 0xfd, 0x00, 0x00, 0xfe, 0xf1, 'P','o','i','n','t','e','r','_','D','b','l','C','l','i','c','k','3',0,
-0x12, 0xfe, 0x00, 0x00, 0xfe, 0xf2, 'P','o','i','n','t','e','r','_','D','b','l','C','l','i','c','k','4',0,
-0x12, 0xff, 0x00, 0x00, 0xfe, 0xf3, 'P','o','i','n','t','e','r','_','D','b','l','C','l','i','c','k','5',0,
-0x1b, 0x14, 0x00, 0x00, 0xfe, 0xf4, 'P','o','i','n','t','e','r','_','D','r','a','g','_','D','f','l','t',0,
-0xd1, 0x33, 0x00, 0x00, 0xfe, 0xf5, 'P','o','i','n','t','e','r','_','D','r','a','g','1',0,
-0xd1, 0x34, 0x00, 0x00, 0xfe, 0xf6, 'P','o','i','n','t','e','r','_','D','r','a','g','2',0,
-0xd1, 0x35, 0x00, 0x00, 0xfe, 0xf7, 'P','o','i','n','t','e','r','_','D','r','a','g','3',0,
-0xd1, 0x36, 0x00, 0x00, 0xfe, 0xf8, 'P','o','i','n','t','e','r','_','D','r','a','g','4',0,
-0xd1, 0x37, 0x00, 0x00, 0xfe, 0xfd, 'P','o','i','n','t','e','r','_','D','r','a','g','5',0,
-0x36, 0x21, 0x00, 0x00, 0xfe, 0xf9, 'P','o','i','n','t','e','r','_','E','n','a','b','l','e','K','e','y','s',0,
-0x25, 0xf1, 0x00, 0x00, 0xfe, 0xfa, 'P','o','i','n','t','e','r','_','A','c','c','e','l','e','r','a','t','e',0,
-0x65, 0x48, 0x00, 0x00, 0xfe, 0xfb, 'P','o','i','n','t','e','r','_','D','f','l','t','B','t','n','N','e','x','t',0,
-0x65, 0x68, 0x00, 0x00, 0xfe, 0xfc, 'P','o','i','n','t','e','r','_','D','f','l','t','B','t','n','P','r','e','v',0,
-0x6a, 0x79, 0x00, 0x00, 0xfd, 0x01, '3','2','7','0','_','D','u','p','l','i','c','a','t','e',0,
-0x62, 0xbb, 0x00, 0x00, 0xfd, 0x02, '3','2','7','0','_','F','i','e','l','d','M','a','r','k',0,
-0xad, 0x82, 0x00, 0x00, 0xfd, 0x03, '3','2','7','0','_','R','i','g','h','t','2',0,
-0xd5, 0xfa, 0x00, 0x00, 0xfd, 0x04, '3','2','7','0','_','L','e','f','t','2',0,
-0x56, 0x1c, 0x00, 0x00, 0xfd, 0x05, '3','2','7','0','_','B','a','c','k','T','a','b',0,
-0xb2, 0x70, 0x00, 0x00, 0xfd, 0x06, '3','2','7','0','_','E','r','a','s','e','E','O','F',0,
-0xcc, 0xfe, 0x00, 0x00, 0xfd, 0x07, '3','2','7','0','_','E','r','a','s','e','I','n','p','u','t',0,
-0xd6, 0xb2, 0x00, 0x00, 0xfd, 0x08, '3','2','7','0','_','R','e','s','e','t',0,
-0x6b, 0x52, 0x00, 0x00, 0xfd, 0x09, '3','2','7','0','_','Q','u','i','t',0,
-0x34, 0xcb, 0x00, 0x00, 0xfd, 0x0a, '3','2','7','0','_','P','A','1',0,
-0x34, 0xcc, 0x00, 0x00, 0xfd, 0x0b, '3','2','7','0','_','P','A','2',0,
-0x34, 0xcd, 0x00, 0x00, 0xfd, 0x0c, '3','2','7','0','_','P','A','3',0,
-0x6b, 0x3e, 0x00, 0x00, 0xfd, 0x0d, '3','2','7','0','_','T','e','s','t',0,
-0x6a, 0xde, 0x00, 0x00, 0xfd, 0x0e, '3','2','7','0','_','A','t','t','n',0,
-0xad, 0xeb, 0x00, 0x00, 0xfd, 0x0f, '3','2','7','0','_','C','u','r','s','o','r','B','l','i','n','k',0,
-0x60, 0x5c, 0x00, 0x00, 0xfd, 0x10, '3','2','7','0','_','A','l','t','C','u','r','s','o','r',0,
-0xb3, 0x45, 0x00, 0x00, 0xfd, 0x11, '3','2','7','0','_','K','e','y','C','l','i','c','k',0,
-0x6b, 0x1e, 0x00, 0x00, 0xfd, 0x12, '3','2','7','0','_','J','u','m','p',0,
-0xd5, 0xf4, 0x00, 0x00, 0xfd, 0x13, '3','2','7','0','_','I','d','e','n','t',0,
-0x6b, 0x51, 0x00, 0x00, 0xfd, 0x14, '3','2','7','0','_','R','u','l','e',0,
-0x6a, 0xdd, 0x00, 0x00, 0xfd, 0x15, '3','2','7','0','_','C','o','p','y',0,
-0x6b, 0x1b, 0x00, 0x00, 0xfd, 0x16, '3','2','7','0','_','P','l','a','y',0,
-0xd6, 0xe2, 0x00, 0x00, 0xfd, 0x17, '3','2','7','0','_','S','e','t','u','p',0,
-0xad, 0x6c, 0x00, 0x00, 0xfd, 0x18, '3','2','7','0','_','R','e','c','o','r','d',0,
-0xfb, 0xac, 0x00, 0x00, 0xfd, 0x19, '3','2','7','0','_','C','h','a','n','g','e','S','c','r','e','e','n',0,
-0xc2, 0xcc, 0x00, 0x00, 0xfd, 0x1a, '3','2','7','0','_','D','e','l','e','t','e','W','o','r','d',0,
-0xb2, 0x5e, 0x00, 0x00, 0xfd, 0x1b, '3','2','7','0','_','E','x','S','e','l','e','c','t',0,
-0x5d, 0xde, 0x00, 0x00, 0xfd, 0x1c, '3','2','7','0','_','C','u','r','s','o','r','S','e','l','e','c','t',0,
-0xcf, 0xec, 0x00, 0x00, 0xfd, 0x1d, '3','2','7','0','_','P','r','i','n','t','S','c','r','e','e','n',0,
-0xd6, 0x2c, 0x00, 0x00, 0xfd, 0x1e, '3','2','7','0','_','E','n','t','e','r',0,
-0x0d, 0x5f, 0x00, 0x00, 0x00, 0x20, 's','p','a','c','e',0,
-0x1a, 0x17, 0x00, 0x00, 0x00, 0x21, 'e','x','c','l','a','m',0,
-0x70, 0xc8, 0x00, 0x00, 0x00, 0x22, 'q','u','o','t','e','d','b','l',0,
-0xba, 0x38, 0x00, 0x00, 0x00, 0x23, 'n','u','m','b','e','r','s','i','g','n',0,
-0x19, 0xb4, 0x00, 0x00, 0x00, 0x24, 'd','o','l','l','a','r',0,
-0x35, 0xbc, 0x00, 0x00, 0x00, 0x25, 'p','e','r','c','e','n','t',0,
-0xcd, 0x9c, 0x00, 0x00, 0x00, 0x26, 'a','m','p','e','r','s','a','n','d',0,
-0xa2, 0x4d, 0x00, 0x00, 0x00, 0x27, 'a','p','o','s','t','r','o','p','h','e',0,
-0xc5, 0x68, 0x00, 0x00, 0x00, 0x27, 'q','u','o','t','e','r','i','g','h','t',0,
-0xd6, 0xb4, 0x00, 0x00, 0x00, 0x28, 'p','a','r','e','n','l','e','f','t',0,
-0xae, 0x48, 0x00, 0x00, 0x00, 0x29, 'p','a','r','e','n','r','i','g','h','t',0,
-0x68, 0x95, 0x00, 0x00, 0x00, 0x2a, 'a','s','t','e','r','i','s','k',0,
-0x06, 0x8d, 0x00, 0x00, 0x00, 0x2b, 'p','l','u','s',0,
-0x0c, 0x97, 0x00, 0x00, 0x00, 0x2c, 'c','o','m','m','a',0,
-0x0d, 0x2d, 0x00, 0x00, 0x00, 0x2d, 'm','i','n','u','s',0,
-0x1a, 0xc6, 0x00, 0x00, 0x00, 0x2e, 'p','e','r','i','o','d',0,
-0x0d, 0x62, 0x00, 0x00, 0x00, 0x2f, 's','l','a','s','h',0,
-0x00, 0x30, 0x00, 0x00, 0x00, 0x30, '0',0,
-0x00, 0x31, 0x00, 0x00, 0x00, 0x31, '1',0,
-0x00, 0x32, 0x00, 0x00, 0x00, 0x32, '2',0,
-0x00, 0x33, 0x00, 0x00, 0x00, 0x33, '3',0,
-0x00, 0x34, 0x00, 0x00, 0x00, 0x34, '4',0,
-0x00, 0x35, 0x00, 0x00, 0x00, 0x35, '5',0,
-0x00, 0x36, 0x00, 0x00, 0x00, 0x36, '6',0,
-0x00, 0x37, 0x00, 0x00, 0x00, 0x37, '7',0,
-0x00, 0x38, 0x00, 0x00, 0x00, 0x38, '8',0,
-0x00, 0x39, 0x00, 0x00, 0x00, 0x39, '9',0,
-0x0c, 0xa4, 0x00, 0x00, 0x00, 0x3a, 'c','o','l','o','n',0,
-0xda, 0x84, 0x00, 0x00, 0x00, 0x3b, 's','e','m','i','c','o','l','o','n',0,
-0x06, 0x4d, 0x00, 0x00, 0x00, 0x3c, 'l','e','s','s',0,
-0x0c, 0xda, 0x00, 0x00, 0x00, 0x3d, 'e','q','u','a','l',0,
-0x34, 0x64, 0x00, 0x00, 0x00, 0x3e, 'g','r','e','a','t','e','r',0,
-0x70, 0x20, 0x00, 0x00, 0x00, 0x3f, 'q','u','e','s','t','i','o','n',0,
-0x01, 0x36, 0x00, 0x00, 0x00, 0x40, 'a','t',0,
-0x00, 0x41, 0x00, 0x00, 0x00, 0x41, 'A',0,
-0x00, 0x42, 0x00, 0x00, 0x00, 0x42, 'B',0,
-0x00, 0x43, 0x00, 0x00, 0x00, 0x43, 'C',0,
-0x00, 0x44, 0x00, 0x00, 0x00, 0x44, 'D',0,
-0x00, 0x45, 0x00, 0x00, 0x00, 0x45, 'E',0,
-0x00, 0x46, 0x00, 0x00, 0x00, 0x46, 'F',0,
-0x00, 0x47, 0x00, 0x00, 0x00, 0x47, 'G',0,
-0x00, 0x48, 0x00, 0x00, 0x00, 0x48, 'H',0,
-0x00, 0x49, 0x00, 0x00, 0x00, 0x49, 'I',0,
-0x00, 0x4a, 0x00, 0x00, 0x00, 0x4a, 'J',0,
-0x00, 0x4b, 0x00, 0x00, 0x00, 0x4b, 'K',0,
-0x00, 0x4c, 0x00, 0x00, 0x00, 0x4c, 'L',0,
-0x00, 0x4d, 0x00, 0x00, 0x00, 0x4d, 'M',0,
-0x00, 0x4e, 0x00, 0x00, 0x00, 0x4e, 'N',0,
-0x00, 0x4f, 0x00, 0x00, 0x00, 0x4f, 'O',0,
-0x00, 0x50, 0x00, 0x00, 0x00, 0x50, 'P',0,
-0x00, 0x51, 0x00, 0x00, 0x00, 0x51, 'Q',0,
-0x00, 0x52, 0x00, 0x00, 0x00, 0x52, 'R',0,
-0x00, 0x53, 0x00, 0x00, 0x00, 0x53, 'S',0,
-0x00, 0x54, 0x00, 0x00, 0x00, 0x54, 'T',0,
-0x00, 0x55, 0x00, 0x00, 0x00, 0x55, 'U',0,
-0x00, 0x56, 0x00, 0x00, 0x00, 0x56, 'V',0,
-0x00, 0x57, 0x00, 0x00, 0x00, 0x57, 'W',0,
-0x00, 0x58, 0x00, 0x00, 0x00, 0x58, 'X',0,
-0x00, 0x59, 0x00, 0x00, 0x00, 0x59, 'Y',0,
-0x00, 0x5a, 0x00, 0x00, 0x00, 0x5a, 'Z',0,
-0x33, 0x54, 0x00, 0x00, 0x00, 0x5b, 'b','r','a','c','k','e','t','l','e','f','t',0,
-0xc6, 0x02, 0x00, 0x00, 0x00, 0x5c, 'b','a','c','k','s','l','a','s','h',0,
-0x67, 0x88, 0x00, 0x00, 0x00, 0x5d, 'b','r','a','c','k','e','t','r','i','g','h','t',0,
-0x35, 0x23, 0x00, 0x00, 0x00, 0x5e, 'a','s','c','i','i','c','i','r','c','u','m',0,
-0xbe, 0xcd, 0x00, 0x00, 0x00, 0x5f, 'u','n','d','e','r','s','c','o','r','e',0,
-0x0c, 0xd5, 0x00, 0x00, 0x00, 0x60, 'g','r','a','v','e',0,
-0xe2, 0x44, 0x00, 0x00, 0x00, 0x60, 'q','u','o','t','e','l','e','f','t',0,
-0x00, 0x61, 0x00, 0x00, 0x00, 0x61, 'a',0,
-0x00, 0x62, 0x00, 0x00, 0x00, 0x62, 'b',0,
-0x00, 0x63, 0x00, 0x00, 0x00, 0x63, 'c',0,
-0x00, 0x64, 0x00, 0x00, 0x00, 0x64, 'd',0,
-0x00, 0x65, 0x00, 0x00, 0x00, 0x65, 'e',0,
-0x00, 0x66, 0x00, 0x00, 0x00, 0x66, 'f',0,
-0x00, 0x67, 0x00, 0x00, 0x00, 0x67, 'g',0,
-0x00, 0x68, 0x00, 0x00, 0x00, 0x68, 'h',0,
-0x00, 0x69, 0x00, 0x00, 0x00, 0x69, 'i',0,
-0x00, 0x6a, 0x00, 0x00, 0x00, 0x6a, 'j',0,
-0x00, 0x6b, 0x00, 0x00, 0x00, 0x6b, 'k',0,
-0x00, 0x6c, 0x00, 0x00, 0x00, 0x6c, 'l',0,
-0x00, 0x6d, 0x00, 0x00, 0x00, 0x6d, 'm',0,
-0x00, 0x6e, 0x00, 0x00, 0x00, 0x6e, 'n',0,
-0x00, 0x6f, 0x00, 0x00, 0x00, 0x6f, 'o',0,
-0x00, 0x70, 0x00, 0x00, 0x00, 0x70, 'p',0,
-0x00, 0x71, 0x00, 0x00, 0x00, 0x71, 'q',0,
-0x00, 0x72, 0x00, 0x00, 0x00, 0x72, 'r',0,
-0x00, 0x73, 0x00, 0x00, 0x00, 0x73, 's',0,
-0x00, 0x74, 0x00, 0x00, 0x00, 0x74, 't',0,
-0x00, 0x75, 0x00, 0x00, 0x00, 0x75, 'u',0,
-0x00, 0x76, 0x00, 0x00, 0x00, 0x76, 'v',0,
-0x00, 0x77, 0x00, 0x00, 0x00, 0x77, 'w',0,
-0x00, 0x78, 0x00, 0x00, 0x00, 0x78, 'x',0,
-0x00, 0x79, 0x00, 0x00, 0x00, 0x79, 'y',0,
-0x00, 0x7a, 0x00, 0x00, 0x00, 0x7a, 'z',0,
-0xcc, 0x24, 0x00, 0x00, 0x00, 0x7b, 'b','r','a','c','e','l','e','f','t',0,
-0x02, 0xbc, 0x00, 0x00, 0x00, 0x7c, 'b','a','r',0,
-0x99, 0x28, 0x00, 0x00, 0x00, 0x7d, 'b','r','a','c','e','r','i','g','h','t',0,
-0x9b, 0x45, 0x00, 0x00, 0x00, 0x7e, 'a','s','c','i','i','t','i','l','d','e',0,
-0xc7, 0x7f, 0x00, 0x00, 0x00, 0xa0, 'n','o','b','r','e','a','k','s','p','a','c','e',0,
-0xa7, 0xa8, 0x00, 0x00, 0x00, 0xa1, 'e','x','c','l','a','m','d','o','w','n',0,
-0x05, 0xfc, 0x00, 0x00, 0x00, 0xa2, 'c','e','n','t',0,
-0x70, 0x87, 0x00, 0x00, 0x00, 0xa3, 's','t','e','r','l','i','n','g',0,
-0x6a, 0x3f, 0x00, 0x00, 0x00, 0xa4, 'c','u','r','r','e','n','c','y',0,
-0x03, 0x1c, 0x00, 0x00, 0x00, 0xa5, 'y','e','n',0,
-0xd0, 0x9c, 0x00, 0x00, 0x00, 0xa6, 'b','r','o','k','e','n','b','a','r',0,
-0x36, 0x20, 0x00, 0x00, 0x00, 0xa7, 's','e','c','t','i','o','n',0,
-0xca, 0xb9, 0x00, 0x00, 0x00, 0xa8, 'd','i','a','e','r','e','s','i','s',0,
-0xd2, 0xe8, 0x00, 0x00, 0x00, 0xa9, 'c','o','p','y','r','i','g','h','t',0,
-0x6a, 0xc5, 0x00, 0x00, 0x00, 0xaa, 'o','r','d','f','e','m','i','n','i','n','e',0,
-0x69, 0x14, 0x00, 0x00, 0x00, 0xab, 'g','u','i','l','l','e','m','o','t','l','e','f','t',0,
-0x37, 0x18, 0x00, 0x00, 0x00, 0xac, 'n','o','t','s','i','g','n',0,
-0x1a, 0xe8, 0x00, 0x00, 0x00, 0xad, 'h','y','p','h','e','n',0,
-0xb2, 0x7e, 0x00, 0x00, 0x00, 0xae, 'r','e','g','i','s','t','e','r','e','d',0,
-0x19, 0xdc, 0x00, 0x00, 0x00, 0xaf, 'm','a','c','r','o','n',0,
-0x18, 0xff, 0x00, 0x00, 0x00, 0xb0, 'd','e','g','r','e','e',0,
-0xde, 0xcd, 0x00, 0x00, 0x00, 0xb1, 'p','l','u','s','m','i','n','u','s',0,
-0x9e, 0x94, 0x00, 0x00, 0x00, 0xb2, 't','w','o','s','u','p','e','r','i','o','r',0,
-0xe8, 0x94, 0x00, 0x00, 0x00, 0xb3, 't','h','r','e','e','s','u','p','e','r','i','o','r',0,
-0x0c, 0x49, 0x00, 0x00, 0x00, 0xb4, 'a','c','u','t','e',0,
-0x01, 0x4f, 0x00, 0x00, 0x00, 0xb5, 'm','u',0,
-0xd5, 0xec, 0x00, 0x00, 0x00, 0xb6, 'p','a','r','a','g','r','a','p','h',0,
-0x2b, 0xde, 0x00, 0x00, 0x00, 0xb7, 'p','e','r','i','o','d','c','e','n','t','e','r','e','d',0,
-0x31, 0xd1, 0x00, 0x00, 0x00, 0xb8, 'c','e','d','i','l','l','a',0,
-0x6e, 0x94, 0x00, 0x00, 0x00, 0xb9, 'o','n','e','s','u','p','e','r','i','o','r',0,
-0xd4, 0x35, 0x00, 0x00, 0x00, 0xba, 'm','a','s','c','u','l','i','n','e',0,
-0xd3, 0x08, 0x00, 0x00, 0x00, 0xbb, 'g','u','i','l','l','e','m','o','t','r','i','g','h','t',0,
-0xb6, 0x0c, 0x00, 0x00, 0x00, 0xbc, 'o','n','e','q','u','a','r','t','e','r',0,
-0x35, 0xd2, 0x00, 0x00, 0x00, 0xbd, 'o','n','e','h','a','l','f',0,
-0xe6, 0x8b, 0x00, 0x00, 0x00, 0xbe, 't','h','r','e','e','q','u','a','r','t','e','r','s',0,
-0x08, 0x38, 0x00, 0x00, 0x00, 0xbf, 'q','u','e','s','t','i','o','n','d','o','w','n',0,
-0x14, 0xf5, 0x00, 0x00, 0x00, 0xc0, 'A','g','r','a','v','e',0,
-0x14, 0x69, 0x00, 0x00, 0x00, 0xc1, 'A','a','c','u','t','e',0,
-0xa0, 0x52, 0x00, 0x00, 0x00, 0xc2, 'A','c','i','r','c','u','m','f','l','e','x',0,
-0x15, 0x85, 0x00, 0x00, 0x00, 0xc3, 'A','t','i','l','d','e',0,
-0x4c, 0xb9, 0x00, 0x00, 0x00, 0xc4, 'A','d','i','a','e','r','e','s','i','s',0,
-0x0a, 0x87, 0x00, 0x00, 0x00, 0xc5, 'A','r','i','n','g',0,
-0x00, 0xc7, 0x00, 0x00, 0x00, 0xc6, 'A','E',0,
-0x53, 0x51, 0x00, 0x00, 0x00, 0xc7, 'C','c','e','d','i','l','l','a',0,
-0x15, 0x75, 0x00, 0x00, 0x00, 0xc8, 'E','g','r','a','v','e',0,
-0x14, 0xe9, 0x00, 0x00, 0x00, 0xc9, 'E','a','c','u','t','e',0,
-0xb0, 0x52, 0x00, 0x00, 0x00, 0xca, 'E','c','i','r','c','u','m','f','l','e','x',0,
-0x54, 0xb9, 0x00, 0x00, 0x00, 0xcb, 'E','d','i','a','e','r','e','s','i','s',0,
-0x15, 0xf5, 0x00, 0x00, 0x00, 0xcc, 'I','g','r','a','v','e',0,
-0x15, 0x69, 0x00, 0x00, 0x00, 0xcd, 'I','a','c','u','t','e',0,
-0xc0, 0x52, 0x00, 0x00, 0x00, 0xce, 'I','c','i','r','c','u','m','f','l','e','x',0,
-0x5c, 0xb9, 0x00, 0x00, 0x00, 0xcf, 'I','d','i','a','e','r','e','s','i','s',0,
-0x02, 0x04, 0x00, 0x00, 0x00, 0xd0, 'E','T','H',0,
-0x02, 0x64, 0x00, 0x00, 0x00, 0xd0, 'E','t','h',0,
-0x17, 0x25, 0x00, 0x00, 0x00, 0xd1, 'N','t','i','l','d','e',0,
-0x16, 0xb5, 0x00, 0x00, 0x00, 0xd2, 'O','g','r','a','v','e',0,
-0x16, 0x29, 0x00, 0x00, 0x00, 0xd3, 'O','a','c','u','t','e',0,
-0xd8, 0x52, 0x00, 0x00, 0x00, 0xd4, 'O','c','i','r','c','u','m','f','l','e','x',0,
-0x17, 0x45, 0x00, 0x00, 0x00, 0xd5, 'O','t','i','l','d','e',0,
-0x68, 0xb9, 0x00, 0x00, 0x00, 0xd6, 'O','d','i','a','e','r','e','s','i','s',0,
-0x6e, 0xd9, 0x00, 0x00, 0x00, 0xd7, 'm','u','l','t','i','p','l','y',0,
-0x17, 0x42, 0x00, 0x00, 0x00, 0xd8, 'O','s','l','a','s','h',0,
-0x5c, 0x9b, 0x00, 0x00, 0x00, 0xd8, 'O','o','b','l','i','q','u','e',0,
-0x17, 0x75, 0x00, 0x00, 0x00, 0xd9, 'U','g','r','a','v','e',0,
-0x16, 0xe9, 0x00, 0x00, 0x00, 0xda, 'U','a','c','u','t','e',0,
-0xf0, 0x52, 0x00, 0x00, 0x00, 0xdb, 'U','c','i','r','c','u','m','f','l','e','x',0,
-0x74, 0xb9, 0x00, 0x00, 0x00, 0xdc, 'U','d','i','a','e','r','e','s','i','s',0,
-0x17, 0x69, 0x00, 0x00, 0x00, 0xdd, 'Y','a','c','u','t','e',0,
-0x09, 0xae, 0x00, 0x00, 0x00, 0xde, 'T','H','O','R','N',0,
-0x0b, 0x8e, 0x00, 0x00, 0x00, 0xde, 'T','h','o','r','n',0,
-0x1b, 0xa8, 0x00, 0x00, 0x00, 0xdf, 's','s','h','a','r','p',0,
-0x18, 0xf5, 0x00, 0x00, 0x00, 0xe0, 'a','g','r','a','v','e',0,
-0x18, 0x69, 0x00, 0x00, 0x00, 0xe1, 'a','a','c','u','t','e',0,
-0x20, 0x52, 0x00, 0x00, 0x00, 0xe2, 'a','c','i','r','c','u','m','f','l','e','x',0,
-0x19, 0x85, 0x00, 0x00, 0x00, 0xe3, 'a','t','i','l','d','e',0,
-0x8c, 0xb9, 0x00, 0x00, 0x00, 0xe4, 'a','d','i','a','e','r','e','s','i','s',0,
-0x0c, 0x87, 0x00, 0x00, 0x00, 0xe5, 'a','r','i','n','g',0,
-0x01, 0x27, 0x00, 0x00, 0x00, 0xe6, 'a','e',0,
-0x63, 0x51, 0x00, 0x00, 0x00, 0xe7, 'c','c','e','d','i','l','l','a',0,
-0x19, 0x75, 0x00, 0x00, 0x00, 0xe8, 'e','g','r','a','v','e',0,
-0x18, 0xe9, 0x00, 0x00, 0x00, 0xe9, 'e','a','c','u','t','e',0,
-0x30, 0x52, 0x00, 0x00, 0x00, 0xea, 'e','c','i','r','c','u','m','f','l','e','x',0,
-0x94, 0xb9, 0x00, 0x00, 0x00, 0xeb, 'e','d','i','a','e','r','e','s','i','s',0,
-0x19, 0xf5, 0x00, 0x00, 0x00, 0xec, 'i','g','r','a','v','e',0,
-0x19, 0x69, 0x00, 0x00, 0x00, 0xed, 'i','a','c','u','t','e',0,
-0x40, 0x52, 0x00, 0x00, 0x00, 0xee, 'i','c','i','r','c','u','m','f','l','e','x',0,
-0x9c, 0xb9, 0x00, 0x00, 0x00, 0xef, 'i','d','i','a','e','r','e','s','i','s',0,
-0x02, 0xe4, 0x00, 0x00, 0x00, 0xf0, 'e','t','h',0,
-0x1b, 0x25, 0x00, 0x00, 0x00, 0xf1, 'n','t','i','l','d','e',0,
-0x1a, 0xb5, 0x00, 0x00, 0x00, 0xf2, 'o','g','r','a','v','e',0,
-0x1a, 0x29, 0x00, 0x00, 0x00, 0xf3, 'o','a','c','u','t','e',0,
-0x58, 0x52, 0x00, 0x00, 0x00, 0xf4, 'o','c','i','r','c','u','m','f','l','e','x',0,
-0x1b, 0x45, 0x00, 0x00, 0x00, 0xf5, 'o','t','i','l','d','e',0,
-0xa8, 0xb9, 0x00, 0x00, 0x00, 0xf6, 'o','d','i','a','e','r','e','s','i','s',0,
-0x68, 0x18, 0x00, 0x00, 0x00, 0xf7, 'd','i','v','i','s','i','o','n',0,
-0x1b, 0x42, 0x00, 0x00, 0x00, 0xf8, 'o','s','l','a','s','h',0,
-0x6c, 0x9b, 0x00, 0x00, 0x00, 0xf8, 'o','o','b','l','i','q','u','e',0,
-0x1b, 0x75, 0x00, 0x00, 0x00, 0xf9, 'u','g','r','a','v','e',0,
-0x1a, 0xe9, 0x00, 0x00, 0x00, 0xfa, 'u','a','c','u','t','e',0,
-0x70, 0x52, 0x00, 0x00, 0x00, 0xfb, 'u','c','i','r','c','u','m','f','l','e','x',0,
-0xb4, 0xb9, 0x00, 0x00, 0x00, 0xfc, 'u','d','i','a','e','r','e','s','i','s',0,
-0x1b, 0x69, 0x00, 0x00, 0x00, 0xfd, 'y','a','c','u','t','e',0,
-0x0d, 0x8e, 0x00, 0x00, 0x00, 0xfe, 't','h','o','r','n',0,
-0xbc, 0xb9, 0x00, 0x00, 0x00, 0xff, 'y','d','i','a','e','r','e','s','i','s',0,
-0x2a, 0xf5, 0x00, 0x00, 0x01, 0xa1, 'A','o','g','o','n','e','k',0,
-0x0c, 0x95, 0x00, 0x00, 0x01, 0xa2, 'b','r','e','v','e',0,
-0x2f, 0x27, 0x00, 0x00, 0x01, 0xa3, 'L','s','t','r','o','k','e',0,
-0x15, 0xcc, 0x00, 0x00, 0x01, 0xa5, 'L','c','a','r','o','n',0,
-0x16, 0xa9, 0x00, 0x00, 0x01, 0xa6, 'S','a','c','u','t','e',0,
-0x16, 0xac, 0x00, 0x00, 0x01, 0xa9, 'S','c','a','r','o','n',0,
-0x5b, 0x51, 0x00, 0x00, 0x01, 0xaa, 'S','c','e','d','i','l','l','a',0,
-0x16, 0xcc, 0x00, 0x00, 0x01, 0xab, 'T','c','a','r','o','n',0,
-0x17, 0x89, 0x00, 0x00, 0x01, 0xac, 'Z','a','c','u','t','e',0,
-0x17, 0x8c, 0x00, 0x00, 0x01, 0xae, 'Z','c','a','r','o','n',0,
-0xbe, 0x4a, 0x00, 0x00, 0x01, 0xaf, 'Z','a','b','o','v','e','d','o','t',0,
-0x32, 0xf5, 0x00, 0x00, 0x01, 0xb1, 'a','o','g','o','n','e','k',0,
-0x1a, 0xb5, 0x00, 0x00, 0x01, 0xb2, 'o','g','o','n','e','k',0,
-0x37, 0x27, 0x00, 0x00, 0x01, 0xb3, 'l','s','t','r','o','k','e',0,
-0x19, 0xcc, 0x00, 0x00, 0x01, 0xb5, 'l','c','a','r','o','n',0,
-0x1a, 0xa9, 0x00, 0x00, 0x01, 0xb6, 's','a','c','u','t','e',0,
-0x0c, 0x4c, 0x00, 0x00, 0x01, 0xb7, 'c','a','r','o','n',0,
-0x1a, 0xac, 0x00, 0x00, 0x01, 0xb9, 's','c','a','r','o','n',0,
-0x6b, 0x51, 0x00, 0x00, 0x01, 0xba, 's','c','e','d','i','l','l','a',0,
-0x1a, 0xcc, 0x00, 0x00, 0x01, 0xbb, 't','c','a','r','o','n',0,
-0x1b, 0x89, 0x00, 0x00, 0x01, 0xbc, 'z','a','c','u','t','e',0,
-0x47, 0xe9, 0x00, 0x00, 0x01, 0xbd, 'd','o','u','b','l','e','a','c','u','t','e',0,
-0x1b, 0x8c, 0x00, 0x00, 0x01, 0xbe, 'z','c','a','r','o','n',0,
-0xde, 0x4a, 0x00, 0x00, 0x01, 0xbf, 'z','a','b','o','v','e','d','o','t',0,
-0x16, 0x89, 0x00, 0x00, 0x01, 0xc0, 'R','a','c','u','t','e',0,
-0x14, 0xb5, 0x00, 0x00, 0x01, 0xc3, 'A','b','r','e','v','e',0,
-0x15, 0xc9, 0x00, 0x00, 0x01, 0xc5, 'L','a','c','u','t','e',0,
-0x14, 0xa9, 0x00, 0x00, 0x01, 0xc6, 'C','a','c','u','t','e',0,
-0x14, 0xac, 0x00, 0x00, 0x01, 0xc8, 'C','c','a','r','o','n',0,
-0x2b, 0xf5, 0x00, 0x00, 0x01, 0xca, 'E','o','g','o','n','e','k',0,
-0x14, 0xec, 0x00, 0x00, 0x01, 0xcc, 'E','c','a','r','o','n',0,
-0x14, 0xcc, 0x00, 0x00, 0x01, 0xcf, 'D','c','a','r','o','n',0,
-0x2d, 0x27, 0x00, 0x00, 0x01, 0xd0, 'D','s','t','r','o','k','e',0,
-0x16, 0x09, 0x00, 0x00, 0x01, 0xd1, 'N','a','c','u','t','e',0,
-0x16, 0x0c, 0x00, 0x00, 0x01, 0xd2, 'N','c','a','r','o','n',0,
-0xbf, 0xe9, 0x00, 0x00, 0x01, 0xd5, 'O','d','o','u','b','l','e','a','c','u','t','e',0,
-0x16, 0x8c, 0x00, 0x00, 0x01, 0xd8, 'R','c','a','r','o','n',0,
-0x0b, 0xc7, 0x00, 0x00, 0x01, 0xd9, 'U','r','i','n','g',0,
-0xef, 0xe9, 0x00, 0x00, 0x01, 0xdb, 'U','d','o','u','b','l','e','a','c','u','t','e',0,
-0x5b, 0xd1, 0x00, 0x00, 0x01, 0xde, 'T','c','e','d','i','l','l','a',0,
-0x1a, 0x89, 0x00, 0x00, 0x01, 0xe0, 'r','a','c','u','t','e',0,
-0x18, 0xb5, 0x00, 0x00, 0x01, 0xe3, 'a','b','r','e','v','e',0,
-0x19, 0xc9, 0x00, 0x00, 0x01, 0xe5, 'l','a','c','u','t','e',0,
-0x18, 0xa9, 0x00, 0x00, 0x01, 0xe6, 'c','a','c','u','t','e',0,
-0x18, 0xac, 0x00, 0x00, 0x01, 0xe8, 'c','c','a','r','o','n',0,
-0x33, 0xf5, 0x00, 0x00, 0x01, 0xea, 'e','o','g','o','n','e','k',0,
-0x18, 0xec, 0x00, 0x00, 0x01, 0xec, 'e','c','a','r','o','n',0,
-0x18, 0xcc, 0x00, 0x00, 0x01, 0xef, 'd','c','a','r','o','n',0,
-0x35, 0x27, 0x00, 0x00, 0x01, 0xf0, 'd','s','t','r','o','k','e',0,
-0x1a, 0x09, 0x00, 0x00, 0x01, 0xf1, 'n','a','c','u','t','e',0,
-0x1a, 0x0c, 0x00, 0x00, 0x01, 0xf2, 'n','c','a','r','o','n',0,
-0xbf, 0xe9, 0x00, 0x00, 0x01, 0xf5, 'o','d','o','u','b','l','e','a','c','u','t','e',0,
-0xef, 0xe9, 0x00, 0x00, 0x01, 0xfb, 'u','d','o','u','b','l','e','a','c','u','t','e',0,
-0x1a, 0x8c, 0x00, 0x00, 0x01, 0xf8, 'r','c','a','r','o','n',0,
-0x0d, 0xc7, 0x00, 0x00, 0x01, 0xf9, 'u','r','i','n','g',0,
-0x6b, 0xd1, 0x00, 0x00, 0x01, 0xfe, 't','c','e','d','i','l','l','a',0,
-0x64, 0x4a, 0x00, 0x00, 0x01, 0xff, 'a','b','o','v','e','d','o','t',0,
-0x2e, 0x27, 0x00, 0x00, 0x02, 0xa1, 'H','s','t','r','o','k','e',0,
-0xbc, 0x52, 0x00, 0x00, 0x02, 0xa6, 'H','c','i','r','c','u','m','f','l','e','x',0,
-0xad, 0x4a, 0x00, 0x00, 0x02, 0xa9, 'I','a','b','o','v','e','d','o','t',0,
-0x15, 0x75, 0x00, 0x00, 0x02, 0xab, 'G','b','r','e','v','e',0,
-0xc4, 0x52, 0x00, 0x00, 0x02, 0xac, 'J','c','i','r','c','u','m','f','l','e','x',0,
-0x36, 0x27, 0x00, 0x00, 0x02, 0xb1, 'h','s','t','r','o','k','e',0,
-0x3c, 0x52, 0x00, 0x00, 0x02, 0xb6, 'h','c','i','r','c','u','m','f','l','e','x',0,
-0x68, 0xed, 0x00, 0x00, 0x02, 0xb9, 'i','d','o','t','l','e','s','s',0,
-0x19, 0x75, 0x00, 0x00, 0x02, 0xbb, 'g','b','r','e','v','e',0,
-0x44, 0x52, 0x00, 0x00, 0x02, 0xbc, 'j','c','i','r','c','u','m','f','l','e','x',0,
-0xa7, 0x4a, 0x00, 0x00, 0x02, 0xc5, 'C','a','b','o','v','e','d','o','t',0,
-0xa8, 0x52, 0x00, 0x00, 0x02, 0xc6, 'C','c','i','r','c','u','m','f','l','e','x',0,
-0xab, 0x4a, 0x00, 0x00, 0x02, 0xd5, 'G','a','b','o','v','e','d','o','t',0,
-0xb8, 0x52, 0x00, 0x00, 0x02, 0xd8, 'G','c','i','r','c','u','m','f','l','e','x',0,
-0x17, 0x35, 0x00, 0x00, 0x02, 0xdd, 'U','b','r','e','v','e',0,
-0xe8, 0x52, 0x00, 0x00, 0x02, 0xde, 'S','c','i','r','c','u','m','f','l','e','x',0,
-0xc7, 0x4a, 0x00, 0x00, 0x02, 0xe5, 'c','a','b','o','v','e','d','o','t',0,
-0x28, 0x52, 0x00, 0x00, 0x02, 0xe6, 'c','c','i','r','c','u','m','f','l','e','x',0,
-0xcb, 0x4a, 0x00, 0x00, 0x02, 0xf5, 'g','a','b','o','v','e','d','o','t',0,
-0x38, 0x52, 0x00, 0x00, 0x02, 0xf8, 'g','c','i','r','c','u','m','f','l','e','x',0,
-0x1b, 0x35, 0x00, 0x00, 0x02, 0xfd, 'u','b','r','e','v','e',0,
-0x68, 0x52, 0x00, 0x00, 0x02, 0xfe, 's','c','i','r','c','u','m','f','l','e','x',0,
-0x02, 0xf1, 0x00, 0x00, 0x03, 0xa2, 'k','r','a',0,
-0x0c, 0xb9, 0x00, 0x00, 0x03, 0xa2, 'k','a','p','p','a',0,
-0x5a, 0xd1, 0x00, 0x00, 0x03, 0xa3, 'R','c','e','d','i','l','l','a',0,
-0x16, 0x85, 0x00, 0x00, 0x03, 0xa5, 'I','t','i','l','d','e',0,
-0x57, 0xd1, 0x00, 0x00, 0x03, 0xa6, 'L','c','e','d','i','l','l','a',0,
-0x2b, 0x1c, 0x00, 0x00, 0x03, 0xaa, 'E','m','a','c','r','o','n',0,
-0x55, 0x51, 0x00, 0x00, 0x03, 0xab, 'G','c','e','d','i','l','l','a',0,
-0x17, 0xe2, 0x00, 0x00, 0x03, 0xac, 'T','s','l','a','s','h',0,
-0x6a, 0xd1, 0x00, 0x00, 0x03, 0xb3, 'r','c','e','d','i','l','l','a',0,
-0x1a, 0x85, 0x00, 0x00, 0x03, 0xb5, 'i','t','i','l','d','e',0,
-0x67, 0xd1, 0x00, 0x00, 0x03, 0xb6, 'l','c','e','d','i','l','l','a',0,
-0x33, 0x1c, 0x00, 0x00, 0x03, 0xba, 'e','m','a','c','r','o','n',0,
-0x65, 0x51, 0x00, 0x00, 0x03, 0xbb, 'g','c','e','d','i','l','l','a',0,
-0x1b, 0xe2, 0x00, 0x00, 0x03, 0xbc, 't','s','l','a','s','h',0,
-0x01, 0xf7, 0x00, 0x00, 0x03, 0xbd, 'E','N','G',0,
-0x02, 0xd7, 0x00, 0x00, 0x03, 0xbf, 'e','n','g',0,
-0x2a, 0x1c, 0x00, 0x00, 0x03, 0xc0, 'A','m','a','c','r','o','n',0,
-0x2c, 0xf5, 0x00, 0x00, 0x03, 0xc7, 'I','o','g','o','n','e','k',0,
-0xa9, 0x4a, 0x00, 0x00, 0x03, 0xcc, 'E','a','b','o','v','e','d','o','t',0,
-0x2c, 0x1c, 0x00, 0x00, 0x03, 0xcf, 'I','m','a','c','r','o','n',0,
-0x58, 0xd1, 0x00, 0x00, 0x03, 0xd1, 'N','c','e','d','i','l','l','a',0,
-0x2d, 0x9c, 0x00, 0x00, 0x03, 0xd2, 'O','m','a','c','r','o','n',0,
-0x57, 0x51, 0x00, 0x00, 0x03, 0xd3, 'K','c','e','d','i','l','l','a',0,
-0x2f, 0xf5, 0x00, 0x00, 0x03, 0xd9, 'U','o','g','o','n','e','k',0,
-0x18, 0x05, 0x00, 0x00, 0x03, 0xdd, 'U','t','i','l','d','e',0,
-0x2f, 0x1c, 0x00, 0x00, 0x03, 0xde, 'U','m','a','c','r','o','n',0,
-0x32, 0x1c, 0x00, 0x00, 0x03, 0xe0, 'a','m','a','c','r','o','n',0,
-0x34, 0xf5, 0x00, 0x00, 0x03, 0xe7, 'i','o','g','o','n','e','k',0,
-0xc9, 0x4a, 0x00, 0x00, 0x03, 0xec, 'e','a','b','o','v','e','d','o','t',0,
-0x34, 0x1c, 0x00, 0x00, 0x03, 0xef, 'i','m','a','c','r','o','n',0,
-0x68, 0xd1, 0x00, 0x00, 0x03, 0xf1, 'n','c','e','d','i','l','l','a',0,
-0x35, 0x9c, 0x00, 0x00, 0x03, 0xf2, 'o','m','a','c','r','o','n',0,
-0x67, 0x51, 0x00, 0x00, 0x03, 0xf3, 'k','c','e','d','i','l','l','a',0,
-0x37, 0xf5, 0x00, 0x00, 0x03, 0xf9, 'u','o','g','o','n','e','k',0,
-0x1c, 0x05, 0x00, 0x00, 0x03, 0xfd, 'u','t','i','l','d','e',0,
-0x37, 0x1c, 0x00, 0x00, 0x03, 0xfe, 'u','m','a','c','r','o','n',0,
-0xa6, 0x4a, 0x01, 0x00, 0x1e, 0x02, 'B','a','b','o','v','e','d','o','t',0,
-0xc6, 0x4a, 0x01, 0x00, 0x1e, 0x03, 'b','a','b','o','v','e','d','o','t',0,
-0xa8, 0x4a, 0x01, 0x00, 0x1e, 0x0a, 'D','a','b','o','v','e','d','o','t',0,
-0x17, 0xb5, 0x01, 0x00, 0x1e, 0x80, 'W','g','r','a','v','e',0,
-0x17, 0x29, 0x01, 0x00, 0x1e, 0x82, 'W','a','c','u','t','e',0,
-0xc8, 0x4a, 0x01, 0x00, 0x1e, 0x0b, 'd','a','b','o','v','e','d','o','t',0,
-0x17, 0xf5, 0x01, 0x00, 0x1e, 0xf2, 'Y','g','r','a','v','e',0,
-0xaa, 0x4a, 0x01, 0x00, 0x1e, 0x1e, 'F','a','b','o','v','e','d','o','t',0,
-0xca, 0x4a, 0x01, 0x00, 0x1e, 0x1f, 'f','a','b','o','v','e','d','o','t',0,
-0xb1, 0x4a, 0x01, 0x00, 0x1e, 0x40, 'M','a','b','o','v','e','d','o','t',0,
-0xd1, 0x4a, 0x01, 0x00, 0x1e, 0x41, 'm','a','b','o','v','e','d','o','t',0,
-0xb4, 0x4a, 0x01, 0x00, 0x1e, 0x56, 'P','a','b','o','v','e','d','o','t',0,
-0x1b, 0xb5, 0x01, 0x00, 0x1e, 0x81, 'w','g','r','a','v','e',0,
-0xd4, 0x4a, 0x01, 0x00, 0x1e, 0x57, 'p','a','b','o','v','e','d','o','t',0,
-0x1b, 0x29, 0x01, 0x00, 0x1e, 0x83, 'w','a','c','u','t','e',0,
-0xb7, 0x4a, 0x01, 0x00, 0x1e, 0x60, 'S','a','b','o','v','e','d','o','t',0,
-0x1b, 0xf5, 0x01, 0x00, 0x1e, 0xf3, 'y','g','r','a','v','e',0,
-0x78, 0xb9, 0x01, 0x00, 0x1e, 0x84, 'W','d','i','a','e','r','e','s','i','s',0,
-0xb8, 0xb9, 0x01, 0x00, 0x1e, 0x85, 'w','d','i','a','e','r','e','s','i','s',0,
-0xd7, 0x4a, 0x01, 0x00, 0x1e, 0x61, 's','a','b','o','v','e','d','o','t',0,
-0xf8, 0x52, 0x01, 0x00, 0x01, 0x74, 'W','c','i','r','c','u','m','f','l','e','x',0,
-0xb8, 0x4a, 0x01, 0x00, 0x1e, 0x6a, 'T','a','b','o','v','e','d','o','t',0,
-0x00, 0x52, 0x01, 0x00, 0x01, 0x76, 'Y','c','i','r','c','u','m','f','l','e','x',0,
-0x78, 0x52, 0x01, 0x00, 0x01, 0x75, 'w','c','i','r','c','u','m','f','l','e','x',0,
-0xd8, 0x4a, 0x01, 0x00, 0x1e, 0x6b, 't','a','b','o','v','e','d','o','t',0,
-0x80, 0x52, 0x01, 0x00, 0x01, 0x77, 'y','c','i','r','c','u','m','f','l','e','x',0,
-0x00, 0xe3, 0x00, 0x00, 0x13, 0xbc, 'O','E',0,
-0x01, 0x43, 0x00, 0x00, 0x13, 0xbd, 'o','e',0,
-0x7c, 0xb9, 0x00, 0x00, 0x13, 0xbe, 'Y','d','i','a','e','r','e','s','i','s',0,
-0x6f, 0x05, 0x00, 0x00, 0x04, 0x7e, 'o','v','e','r','l','i','n','e',0,
-0xfc, 0x36, 0x00, 0x00, 0x04, 0xa1, 'k','a','n','a','_','f','u','l','l','s','t','o','p',0,
-0xa6, 0x52, 0x00, 0x00, 0x04, 0xa2, 'k','a','n','a','_','o','p','e','n','i','n','g','b','r','a','c','k','e','t',0,
-0x4a, 0x52, 0x00, 0x00, 0x04, 0xa3, 'k','a','n','a','_','c','l','o','s','i','n','g','b','r','a','c','k','e','t',0,
-0x9e, 0xb7, 0x00, 0x00, 0x04, 0xa4, 'k','a','n','a','_','c','o','m','m','a',0,
-0xcc, 0xc5, 0x00, 0x00, 0x04, 0xa5, 'k','a','n','a','_','c','o','n','j','u','n','c','t','i','v','e',0,
-0xf5, 0xca, 0x00, 0x00, 0x04, 0xa5, 'k','a','n','a','_','m','i','d','d','l','e','d','o','t',0,
-0x33, 0x41, 0x00, 0x00, 0x04, 0xa6, 'k','a','n','a','_','W','O',0,
-0x19, 0x83, 0x00, 0x00, 0x04, 0xa7, 'k','a','n','a','_','a',0,
-0x19, 0x8b, 0x00, 0x00, 0x04, 0xa8, 'k','a','n','a','_','i',0,
-0x19, 0x97, 0x00, 0x00, 0x04, 0xa9, 'k','a','n','a','_','u',0,
-0x19, 0x87, 0x00, 0x00, 0x04, 0xaa, 'k','a','n','a','_','e',0,
-0x19, 0x91, 0x00, 0x00, 0x04, 0xab, 'k','a','n','a','_','o',0,
-0x33, 0x97, 0x00, 0x00, 0x04, 0xac, 'k','a','n','a','_','y','a',0,
-0x33, 0xab, 0x00, 0x00, 0x04, 0xad, 'k','a','n','a','_','y','u',0,
-0x33, 0xa5, 0x00, 0x00, 0x04, 0xae, 'k','a','n','a','_','y','o',0,
-0x67, 0xb3, 0x00, 0x00, 0x04, 0xaf, 'k','a','n','a','_','t','s','u',0,
-0x33, 0xa1, 0x00, 0x00, 0x04, 0xaf, 'k','a','n','a','_','t','u',0,
-0xfa, 0xfc, 0x00, 0x00, 0x04, 0xb0, 'p','r','o','l','o','n','g','e','d','s','o','u','n','d',0,
-0x19, 0x63, 0x00, 0x00, 0x04, 0xb1, 'k','a','n','a','_','A',0,
-0x19, 0x6b, 0x00, 0x00, 0x04, 0xb2, 'k','a','n','a','_','I',0,
-0x19, 0x77, 0x00, 0x00, 0x04, 0xb3, 'k','a','n','a','_','U',0,
-0x19, 0x67, 0x00, 0x00, 0x04, 0xb4, 'k','a','n','a','_','E',0,
-0x19, 0x71, 0x00, 0x00, 0x04, 0xb5, 'k','a','n','a','_','O',0,
-0x33, 0x1b, 0x00, 0x00, 0x04, 0xb6, 'k','a','n','a','_','K','A',0,
-0x33, 0x23, 0x00, 0x00, 0x04, 0xb7, 'k','a','n','a','_','K','I',0,
-0x33, 0x2f, 0x00, 0x00, 0x04, 0xb8, 'k','a','n','a','_','K','U',0,
-0x33, 0x1f, 0x00, 0x00, 0x04, 0xb9, 'k','a','n','a','_','K','E',0,
-0x33, 0x29, 0x00, 0x00, 0x04, 0xba, 'k','a','n','a','_','K','O',0,
-0x33, 0x2b, 0x00, 0x00, 0x04, 0xbb, 'k','a','n','a','_','S','A',0,
-0x66, 0xad, 0x00, 0x00, 0x04, 0xbc, 'k','a','n','a','_','S','H','I',0,
-0x33, 0x3f, 0x00, 0x00, 0x04, 0xbd, 'k','a','n','a','_','S','U',0,
-0x33, 0x2f, 0x00, 0x00, 0x04, 0xbe, 'k','a','n','a','_','S','E',0,
-0x33, 0x39, 0x00, 0x00, 0x04, 0xbf, 'k','a','n','a','_','S','O',0,
-0x33, 0x2d, 0x00, 0x00, 0x04, 0xc0, 'k','a','n','a','_','T','A',0,
-0x66, 0x6d, 0x00, 0x00, 0x04, 0xc1, 'k','a','n','a','_','C','H','I',0,
-0x33, 0x35, 0x00, 0x00, 0x04, 0xc1, 'k','a','n','a','_','T','I',0,
-0x66, 0xd3, 0x00, 0x00, 0x04, 0xc2, 'k','a','n','a','_','T','S','U',0,
-0x33, 0x41, 0x00, 0x00, 0x04, 0xc2, 'k','a','n','a','_','T','U',0,
-0x33, 0x31, 0x00, 0x00, 0x04, 0xc3, 'k','a','n','a','_','T','E',0,
-0x33, 0x3b, 0x00, 0x00, 0x04, 0xc4, 'k','a','n','a','_','T','O',0,
-0x33, 0x21, 0x00, 0x00, 0x04, 0xc5, 'k','a','n','a','_','N','A',0,
-0x33, 0x29, 0x00, 0x00, 0x04, 0xc6, 'k','a','n','a','_','N','I',0,
-0x33, 0x35, 0x00, 0x00, 0x04, 0xc7, 'k','a','n','a','_','N','U',0,
-0x33, 0x25, 0x00, 0x00, 0x04, 0xc8, 'k','a','n','a','_','N','E',0,
-0x33, 0x2f, 0x00, 0x00, 0x04, 0xc9, 'k','a','n','a','_','N','O',0,
-0x33, 0x15, 0x00, 0x00, 0x04, 0xca, 'k','a','n','a','_','H','A',0,
-0x33, 0x1d, 0x00, 0x00, 0x04, 0xcb, 'k','a','n','a','_','H','I',0,
-0x33, 0x25, 0x00, 0x00, 0x04, 0xcc, 'k','a','n','a','_','F','U',0,
-0x33, 0x29, 0x00, 0x00, 0x04, 0xcc, 'k','a','n','a','_','H','U',0,
-0x33, 0x19, 0x00, 0x00, 0x04, 0xcd, 'k','a','n','a','_','H','E',0,
-0x33, 0x23, 0x00, 0x00, 0x04, 0xce, 'k','a','n','a','_','H','O',0,
-0x33, 0x1f, 0x00, 0x00, 0x04, 0xcf, 'k','a','n','a','_','M','A',0,
-0x33, 0x27, 0x00, 0x00, 0x04, 0xd0, 'k','a','n','a','_','M','I',0,
-0x33, 0x33, 0x00, 0x00, 0x04, 0xd1, 'k','a','n','a','_','M','U',0,
-0x33, 0x23, 0x00, 0x00, 0x04, 0xd2, 'k','a','n','a','_','M','E',0,
-0x33, 0x2d, 0x00, 0x00, 0x04, 0xd3, 'k','a','n','a','_','M','O',0,
-0x33, 0x37, 0x00, 0x00, 0x04, 0xd4, 'k','a','n','a','_','Y','A',0,
-0x33, 0x4b, 0x00, 0x00, 0x04, 0xd5, 'k','a','n','a','_','Y','U',0,
-0x33, 0x45, 0x00, 0x00, 0x04, 0xd6, 'k','a','n','a','_','Y','O',0,
-0x33, 0x29, 0x00, 0x00, 0x04, 0xd7, 'k','a','n','a','_','R','A',0,
-0x33, 0x31, 0x00, 0x00, 0x04, 0xd8, 'k','a','n','a','_','R','I',0,
-0x33, 0x3d, 0x00, 0x00, 0x04, 0xd9, 'k','a','n','a','_','R','U',0,
-0x33, 0x2d, 0x00, 0x00, 0x04, 0xda, 'k','a','n','a','_','R','E',0,
-0x33, 0x37, 0x00, 0x00, 0x04, 0xdb, 'k','a','n','a','_','R','O',0,
-0x33, 0x33, 0x00, 0x00, 0x04, 0xdc, 'k','a','n','a','_','W','A',0,
-0x19, 0x70, 0x00, 0x00, 0x04, 0xdd, 'k','a','n','a','_','N',0,
-0x83, 0xfc, 0x00, 0x00, 0x04, 0xde, 'v','o','i','c','e','d','s','o','u','n','d',0,
-0xfb, 0xfc, 0x00, 0x00, 0x04, 0xdf, 's','e','m','i','v','o','i','c','e','d','s','o','u','n','d',0,
-0x40, 0x56, 0x00, 0x00, 0xff, 0x7e, 'k','a','n','a','_','s','w','i','t','c','h',0,
-0x2a, 0xea, 0x01, 0x00, 0x06, 0xf0, 'F','a','r','s','i','_','0',0,
-0x2a, 0xeb, 0x01, 0x00, 0x06, 0xf1, 'F','a','r','s','i','_','1',0,
-0x2a, 0xec, 0x01, 0x00, 0x06, 0xf2, 'F','a','r','s','i','_','2',0,
-0x2a, 0xed, 0x01, 0x00, 0x06, 0xf3, 'F','a','r','s','i','_','3',0,
-0x2a, 0xee, 0x01, 0x00, 0x06, 0xf4, 'F','a','r','s','i','_','4',0,
-0x2a, 0xef, 0x01, 0x00, 0x06, 0xf5, 'F','a','r','s','i','_','5',0,
-0x2a, 0xf0, 0x01, 0x00, 0x06, 0xf6, 'F','a','r','s','i','_','6',0,
-0x2a, 0xf1, 0x01, 0x00, 0x06, 0xf7, 'F','a','r','s','i','_','7',0,
-0x2a, 0xf2, 0x01, 0x00, 0x06, 0xf8, 'F','a','r','s','i','_','8',0,
-0x2a, 0xf3, 0x01, 0x00, 0x06, 0xf9, 'F','a','r','s','i','_','9',0,
-0x6a, 0x3c, 0x01, 0x00, 0x06, 0x6a, 'A','r','a','b','i','c','_','p','e','r','c','e','n','t',0,
-0x0e, 0xd8, 0x01, 0x00, 0x06, 0x70, 'A','r','a','b','i','c','_','s','u','p','e','r','s','c','r','i','p','t','_','a','l','e','f',0,
-0xad, 0x32, 0x01, 0x00, 0x06, 0x79, 'A','r','a','b','i','c','_','t','t','e','h',0,
-0x56, 0x3a, 0x01, 0x00, 0x06, 0x7e, 'A','r','a','b','i','c','_','p','e','h',0,
-0x5a, 0x4a, 0x01, 0x00, 0x06, 0x86, 'A','r','a','b','i','c','_','t','c','h','e','h',0,
-0xac, 0x6e, 0x01, 0x00, 0x06, 0x88, 'A','r','a','b','i','c','_','d','d','a','l',0,
-0xad, 0x1a, 0x01, 0x00, 0x06, 0x91, 'A','r','a','b','i','c','_','r','r','e','h',0,
-0x59, 0xb7, 0x00, 0x00, 0x05, 0xac, 'A','r','a','b','i','c','_','c','o','m','m','a',0,
-0xd4, 0x36, 0x01, 0x00, 0x06, 0xd4, 'A','r','a','b','i','c','_','f','u','l','l','s','t','o','p',0,
-0x55, 0x02, 0x01, 0x00, 0x06, 0x60, 'A','r','a','b','i','c','_','0',0,
-0x55, 0x03, 0x01, 0x00, 0x06, 0x61, 'A','r','a','b','i','c','_','1',0,
-0x55, 0x04, 0x01, 0x00, 0x06, 0x62, 'A','r','a','b','i','c','_','2',0,
-0x55, 0x05, 0x01, 0x00, 0x06, 0x63, 'A','r','a','b','i','c','_','3',0,
-0x55, 0x06, 0x01, 0x00, 0x06, 0x64, 'A','r','a','b','i','c','_','4',0,
-0x55, 0x07, 0x01, 0x00, 0x06, 0x65, 'A','r','a','b','i','c','_','5',0,
-0x55, 0x08, 0x01, 0x00, 0x06, 0x66, 'A','r','a','b','i','c','_','6',0,
-0x55, 0x09, 0x01, 0x00, 0x06, 0x67, 'A','r','a','b','i','c','_','7',0,
-0x55, 0x0a, 0x01, 0x00, 0x06, 0x68, 'A','r','a','b','i','c','_','8',0,
-0x55, 0x0b, 0x01, 0x00, 0x06, 0x69, 'A','r','a','b','i','c','_','9',0,
-0xac, 0x84, 0x00, 0x00, 0x05, 0xbb, 'A','r','a','b','i','c','_','s','e','m','i','c','o','l','o','n',0,
-0x30, 0x2b, 0x00, 0x00, 0x05, 0xbf, 'A','r','a','b','i','c','_','q','u','e','s','t','i','o','n','_','m','a','r','k',0,
-0x59, 0xb1, 0x00, 0x00, 0x05, 0xc1, 'A','r','a','b','i','c','_','h','a','m','z','a',0,
-0x86, 0xe8, 0x00, 0x00, 0x05, 0xc2, 'A','r','a','b','i','c','_','m','a','d','d','a','o','n','a','l','e','f',0,
-0x86, 0xe8, 0x00, 0x00, 0x05, 0xc3, 'A','r','a','b','i','c','_','h','a','m','z','a','o','n','a','l','e','f',0,
-0x43, 0x95, 0x00, 0x00, 0x05, 0xc4, 'A','r','a','b','i','c','_','h','a','m','z','a','o','n','w','a','w',0,
-0x40, 0xa8, 0x00, 0x00, 0x05, 0xc5, 'A','r','a','b','i','c','_','h','a','m','z','a','u','n','d','e','r','a','l','e','f',0,
-0x43, 0x96, 0x00, 0x00, 0x05, 0xc6, 'A','r','a','b','i','c','_','h','a','m','z','a','o','n','y','e','h',0,
-0xac, 0x78, 0x00, 0x00, 0x05, 0xc7, 'A','r','a','b','i','c','_','a','l','e','f',0,
-0x56, 0x02, 0x00, 0x00, 0x05, 0xc8, 'A','r','a','b','i','c','_','b','e','h',0,
-0x59, 0xad, 0x00, 0x00, 0x05, 0xc9, 'A','r','a','b','i','c','_','t','e','h','m','a','r','b','u','t','a',0,
-0x56, 0x4a, 0x00, 0x00, 0x05, 0xca, 'A','r','a','b','i','c','_','t','e','h',0,
-0xad, 0x02, 0x00, 0x00, 0x05, 0xcb, 'A','r','a','b','i','c','_','t','h','e','h',0,
-0xac, 0xab, 0x00, 0x00, 0x05, 0xcc, 'A','r','a','b','i','c','_','j','e','e','m',0,
-0x56, 0x12, 0x00, 0x00, 0x05, 0xcd, 'A','r','a','b','i','c','_','h','a','h',0,
-0xac, 0xb2, 0x00, 0x00, 0x05, 0xce, 'A','r','a','b','i','c','_','k','h','a','h',0,
-0x56, 0x06, 0x00, 0x00, 0x05, 0xcf, 'A','r','a','b','i','c','_','d','a','l',0,
-0xac, 0xfe, 0x00, 0x00, 0x05, 0xd0, 'A','r','a','b','i','c','_','t','h','a','l',0,
-0xaa, 0xe9, 0x00, 0x00, 0x05, 0xd1, 'A','r','a','b','i','c','_','r','a',0,
-0xad, 0x24, 0x00, 0x00, 0x05, 0xd2, 'A','r','a','b','i','c','_','z','a','i','n',0,
-0xac, 0xf4, 0x00, 0x00, 0x05, 0xd3, 'A','r','a','b','i','c','_','s','e','e','n',0,
-0x5a, 0x5c, 0x00, 0x00, 0x05, 0xd4, 'A','r','a','b','i','c','_','s','h','e','e','n',0,
-0x56, 0x3a, 0x00, 0x00, 0x05, 0xd5, 'A','r','a','b','i','c','_','s','a','d',0,
-0x55, 0xfe, 0x00, 0x00, 0x05, 0xd6, 'A','r','a','b','i','c','_','d','a','d',0,
-0x56, 0x42, 0x00, 0x00, 0x05, 0xd7, 'A','r','a','b','i','c','_','t','a','h',0,
-0x56, 0x5a, 0x00, 0x00, 0x05, 0xd8, 'A','r','a','b','i','c','_','z','a','h',0,
-0x56, 0x0c, 0x00, 0x00, 0x05, 0xd9, 'A','r','a','b','i','c','_','a','i','n',0,
-0x59, 0x94, 0x00, 0x00, 0x05, 0xda, 'A','r','a','b','i','c','_','g','h','a','i','n',0,
-0x6b, 0x62, 0x00, 0x00, 0x05, 0xe0, 'A','r','a','b','i','c','_','t','a','t','w','e','e','l',0,
-0x56, 0x12, 0x00, 0x00, 0x05, 0xe1, 'A','r','a','b','i','c','_','f','e','h',0,
-0x56, 0x34, 0x00, 0x00, 0x05, 0xe2, 'A','r','a','b','i','c','_','q','a','f',0,
-0x56, 0x1c, 0x00, 0x00, 0x05, 0xe3, 'A','r','a','b','i','c','_','k','a','f',0,
-0x56, 0x27, 0x00, 0x00, 0x05, 0xe4, 'A','r','a','b','i','c','_','l','a','m',0,
-0xac, 0xc3, 0x00, 0x00, 0x05, 0xe5, 'A','r','a','b','i','c','_','m','e','e','m',0,
-0xad, 0x08, 0x00, 0x00, 0x05, 0xe6, 'A','r','a','b','i','c','_','n','o','o','n',0,
-0xaa, 0xd5, 0x00, 0x00, 0x05, 0xe7, 'A','r','a','b','i','c','_','h','a',0,
-0x56, 0x1a, 0x00, 0x00, 0x05, 0xe7, 'A','r','a','b','i','c','_','h','e','h',0,
-0x56, 0x5d, 0x00, 0x00, 0x05, 0xe8, 'A','r','a','b','i','c','_','w','a','w',0,
-0x70, 0xc1, 0x00, 0x00, 0x05, 0xe9, 'A','r','a','b','i','c','_','a','l','e','f','m','a','k','s','u','r','a',0,
-0x56, 0x5e, 0x00, 0x00, 0x05, 0xea, 'A','r','a','b','i','c','_','y','e','h',0,
-0xcf, 0x48, 0x00, 0x00, 0x05, 0xeb, 'A','r','a','b','i','c','_','f','a','t','h','a','t','a','n',0,
-0xcd, 0xb8, 0x00, 0x00, 0x05, 0xec, 'A','r','a','b','i','c','_','d','a','m','m','a','t','a','n',0,
-0xd2, 0x48, 0x00, 0x00, 0x05, 0xed, 'A','r','a','b','i','c','_','k','a','s','r','a','t','a','n',0,
-0x59, 0x89, 0x00, 0x00, 0x05, 0xee, 'A','r','a','b','i','c','_','f','a','t','h','a',0,
-0x59, 0x57, 0x00, 0x00, 0x05, 0xef, 'A','r','a','b','i','c','_','d','a','m','m','a',0,
-0x59, 0xe9, 0x00, 0x00, 0x05, 0xf0, 'A','r','a','b','i','c','_','k','a','s','r','a',0,
-0xb4, 0xe1, 0x00, 0x00, 0x05, 0xf1, 'A','r','a','b','i','c','_','s','h','a','d','d','a',0,
-0x5a, 0xfc, 0x00, 0x00, 0x05, 0xf2, 'A','r','a','b','i','c','_','s','u','k','u','n',0,
-0x84, 0x4d, 0x01, 0x00, 0x06, 0x53, 'A','r','a','b','i','c','_','m','a','d','d','a','_','a','b','o','v','e',0,
-0x84, 0x4d, 0x01, 0x00, 0x06, 0x54, 'A','r','a','b','i','c','_','h','a','m','z','a','_','a','b','o','v','e',0,
-0x84, 0x6d, 0x01, 0x00, 0x06, 0x55, 'A','r','a','b','i','c','_','h','a','m','z','a','_','b','e','l','o','w',0,
-0x56, 0x22, 0x01, 0x00, 0x06, 0x98, 'A','r','a','b','i','c','_','j','e','h',0,
-0x56, 0x52, 0x01, 0x00, 0x06, 0xa4, 'A','r','a','b','i','c','_','v','e','h',0,
-0x59, 0xca, 0x01, 0x00, 0x06, 0xa9, 'A','r','a','b','i','c','_','k','e','h','e','h',0,
-0x56, 0x0c, 0x01, 0x00, 0x06, 0xaf, 'A','r','a','b','i','c','_','g','a','f',0,
-0xb5, 0xbd, 0x01, 0x00, 0x06, 0xba, 'A','r','a','b','i','c','_','n','o','o','n','_','g','h','u','n','n','a',0,
-0xcb, 0xf3, 0x01, 0x00, 0x06, 0xbe, 'A','r','a','b','i','c','_','h','e','h','_','d','o','a','c','h','a','s','h','m','e','e',0,
-0xad, 0xfe, 0x01, 0x00, 0x06, 0xcc, 'F','a','r','s','i','_','y','e','h',0,
-0x9f, 0xfe, 0x01, 0x00, 0x06, 0xcc, 'A','r','a','b','i','c','_','f','a','r','s','i','_','y','e','h',0,
-0xaf, 0x7f, 0x01, 0x00, 0x06, 0xd2, 'A','r','a','b','i','c','_','y','e','h','_','b','a','r','e','e',0,
-0xcf, 0x52, 0x01, 0x00, 0x06, 0xc1, 'A','r','a','b','i','c','_','h','e','h','_','g','o','a','l',0,
-0xb6, 0x56, 0x00, 0x00, 0xff, 0x7e, 'A','r','a','b','i','c','_','s','w','i','t','c','h',0,
-0x29, 0x44, 0x01, 0x00, 0x04, 0x92, 'C','y','r','i','l','l','i','c','_','G','H','E','_','b','a','r',0,
-0x37, 0x44, 0x01, 0x00, 0x04, 0x93, 'C','y','r','i','l','l','i','c','_','g','h','e','_','b','a','r',0,
-0x9e, 0x2c, 0x01, 0x00, 0x04, 0x96, 'C','y','r','i','l','l','i','c','_','Z','H','E','_','d','e','s','c','e','n','d','e','r',0,
-0x1e, 0x2c, 0x01, 0x00, 0x04, 0x97, 'C','y','r','i','l','l','i','c','_','z','h','e','_','d','e','s','c','e','n','d','e','r',0,
-0x76, 0x2c, 0x01, 0x00, 0x04, 0x9a, 'C','y','r','i','l','l','i','c','_','K','A','_','d','e','s','c','e','n','d','e','r',0,
-0xf6, 0x2c, 0x01, 0x00, 0x04, 0x9b, 'C','y','r','i','l','l','i','c','_','k','a','_','d','e','s','c','e','n','d','e','r',0,
-0x17, 0x27, 0x01, 0x00, 0x04, 0x9c, 'C','y','r','i','l','l','i','c','_','K','A','_','v','e','r','t','s','t','r','o','k','e',0,
-0x17, 0x27, 0x01, 0x00, 0x04, 0x9d, 'C','y','r','i','l','l','i','c','_','k','a','_','v','e','r','t','s','t','r','o','k','e',0,
-0x7a, 0x2c, 0x01, 0x00, 0x04, 0xa2, 'C','y','r','i','l','l','i','c','_','E','N','_','d','e','s','c','e','n','d','e','r',0,
-0xfa, 0x2c, 0x01, 0x00, 0x04, 0xa3, 'C','y','r','i','l','l','i','c','_','e','n','_','d','e','s','c','e','n','d','e','r',0,
-0x9d, 0xf8, 0x01, 0x00, 0x04, 0xae, 'C','y','r','i','l','l','i','c','_','U','_','s','t','r','a','i','g','h','t',0,
-0xdd, 0xf8, 0x01, 0x00, 0x04, 0xaf, 'C','y','r','i','l','l','i','c','_','u','_','s','t','r','a','i','g','h','t',0,
-0xe5, 0x34, 0x01, 0x00, 0x04, 0xb0, 'C','y','r','i','l','l','i','c','_','U','_','s','t','r','a','i','g','h','t','_','b','a','r',0,
-0xe5, 0x34, 0x01, 0x00, 0x04, 0xb1, 'C','y','r','i','l','l','i','c','_','u','_','s','t','r','a','i','g','h','t','_','b','a','r',0,
-0x5e, 0x2c, 0x01, 0x00, 0x04, 0xb2, 'C','y','r','i','l','l','i','c','_','H','A','_','d','e','s','c','e','n','d','e','r',0,
-0xde, 0x2c, 0x01, 0x00, 0x04, 0xb3, 'C','y','r','i','l','l','i','c','_','h','a','_','d','e','s','c','e','n','d','e','r',0,
-0x2e, 0x2c, 0x01, 0x00, 0x04, 0xb6, 'C','y','r','i','l','l','i','c','_','C','H','E','_','d','e','s','c','e','n','d','e','r',0,
-0xae, 0x2c, 0x01, 0x00, 0x04, 0xb7, 'C','y','r','i','l','l','i','c','_','c','h','e','_','d','e','s','c','e','n','d','e','r',0,
-0x87, 0x27, 0x01, 0x00, 0x04, 0xb8, 'C','y','r','i','l','l','i','c','_','C','H','E','_','v','e','r','t','s','t','r','o','k','e',0,
-0x87, 0x27, 0x01, 0x00, 0x04, 0xb9, 'C','y','r','i','l','l','i','c','_','c','h','e','_','v','e','r','t','s','t','r','o','k','e',0,
-0x65, 0x19, 0x01, 0x00, 0x04, 0xba, 'C','y','r','i','l','l','i','c','_','S','H','H','A',0,
-0x66, 0xf9, 0x01, 0x00, 0x04, 0xbb, 'C','y','r','i','l','l','i','c','_','s','h','h','a',0,
-0xca, 0x77, 0x01, 0x00, 0x04, 0xd8, 'C','y','r','i','l','l','i','c','_','S','C','H','W','A',0,
-0xce, 0x57, 0x01, 0x00, 0x04, 0xd9, 'C','y','r','i','l','l','i','c','_','s','c','h','w','a',0,
-0x5f, 0x1c, 0x01, 0x00, 0x04, 0xe2, 'C','y','r','i','l','l','i','c','_','I','_','m','a','c','r','o','n',0,
-0x6f, 0x1c, 0x01, 0x00, 0x04, 0xe3, 'C','y','r','i','l','l','i','c','_','i','_','m','a','c','r','o','n',0,
-0xcb, 0xc4, 0x01, 0x00, 0x04, 0xe8, 'C','y','r','i','l','l','i','c','_','O','_','b','a','r',0,
-0xcd, 0xc4, 0x01, 0x00, 0x04, 0xe9, 'C','y','r','i','l','l','i','c','_','o','_','b','a','r',0,
-0x65, 0x1c, 0x01, 0x00, 0x04, 0xee, 'C','y','r','i','l','l','i','c','_','U','_','m','a','c','r','o','n',0,
-0x75, 0x1c, 0x01, 0x00, 0x04, 0xef, 'C','y','r','i','l','l','i','c','_','u','_','m','a','c','r','o','n',0,
-0xec, 0x01, 0x00, 0x00, 0x06, 0xa1, 'S','e','r','b','i','a','n','_','d','j','e',0,
-0xfd, 0xfd, 0x00, 0x00, 0x06, 0xa2, 'M','a','c','e','d','o','n','i','a','_','g','j','e',0,
-0xd9, 0x65, 0x00, 0x00, 0x06, 0xa3, 'C','y','r','i','l','l','i','c','_','i','o',0,
-0x02, 0x53, 0x00, 0x00, 0x06, 0xa4, 'U','k','r','a','i','n','i','a','n','_','i','e',0,
-0x01, 0x55, 0x00, 0x00, 0x06, 0xa4, 'U','k','r','a','n','i','a','n','_','j','e',0,
-0xfe, 0x03, 0x00, 0x00, 0x06, 0xa5, 'M','a','c','e','d','o','n','i','a','_','d','s','e',0,
-0x00, 0xf7, 0x00, 0x00, 0x06, 0xa6, 'U','k','r','a','i','n','i','a','n','_','i',0,
-0x80, 0x77, 0x00, 0x00, 0x06, 0xa6, 'U','k','r','a','n','i','a','n','_','i',0,
-0x02, 0x77, 0x00, 0x00, 0x06, 0xa7, 'U','k','r','a','i','n','i','a','n','_','y','i',0,
-0x01, 0x77, 0x00, 0x00, 0x06, 0xa7, 'U','k','r','a','n','i','a','n','_','y','i',0,
-0xd9, 0x5d, 0x00, 0x00, 0x06, 0xa8, 'C','y','r','i','l','l','i','c','_','j','e',0,
-0x75, 0xd5, 0x00, 0x00, 0x06, 0xa8, 'S','e','r','b','i','a','n','_','j','e',0,
-0xb3, 0x31, 0x00, 0x00, 0x06, 0xa9, 'C','y','r','i','l','l','i','c','_','l','j','e',0,
-0xec, 0x21, 0x00, 0x00, 0x06, 0xa9, 'S','e','r','b','i','a','n','_','l','j','e',0,
-0xb3, 0x39, 0x00, 0x00, 0x06, 0xaa, 'C','y','r','i','l','l','i','c','_','n','j','e',0,
-0xec, 0x29, 0x00, 0x00, 0x06, 0xaa, 'S','e','r','b','i','a','n','_','n','j','e',0,
-0xd9, 0x11, 0x00, 0x00, 0x06, 0xab, 'S','e','r','b','i','a','n','_','t','s','h','e',0,
-0xfe, 0x0d, 0x00, 0x00, 0x06, 0xac, 'M','a','c','e','d','o','n','i','a','_','k','j','e',0,
-0x12, 0x26, 0x00, 0x00, 0x06, 0xad, 'U','k','r','a','i','n','i','a','n','_','g','h','e','_','w','i','t','h','_','u','p','t','u','r','n',0,
-0x51, 0x3d, 0x00, 0x00, 0x06, 0xae, 'B','y','e','l','o','r','u','s','s','i','a','n','_','s','h','o','r','t','u',0,
-0x66, 0xcd, 0x00, 0x00, 0x06, 0xaf, 'C','y','r','i','l','l','i','c','_','d','z','h','e',0,
-0xec, 0x21, 0x00, 0x00, 0x06, 0xaf, 'S','e','r','b','i','a','n','_','d','z','e',0,
-0xbc, 0x68, 0x00, 0x00, 0x06, 0xb0, 'n','u','m','e','r','o','s','i','g','n',0,
-0xeb, 0x21, 0x00, 0x00, 0x06, 0xb1, 'S','e','r','b','i','a','n','_','D','J','E',0,
-0xfd, 0x1d, 0x00, 0x00, 0x06, 0xb2, 'M','a','c','e','d','o','n','i','a','_','G','J','E',0,
-0xd9, 0x05, 0x00, 0x00, 0x06, 0xb3, 'C','y','r','i','l','l','i','c','_','I','O',0,
-0x01, 0xf3, 0x00, 0x00, 0x06, 0xb4, 'U','k','r','a','i','n','i','a','n','_','I','E',0,
-0x00, 0xf5, 0x00, 0x00, 0x06, 0xb4, 'U','k','r','a','n','i','a','n','_','J','E',0,
-0xfd, 0x23, 0x00, 0x00, 0x06, 0xb5, 'M','a','c','e','d','o','n','i','a','_','D','S','E',0,
-0x00, 0xd7, 0x00, 0x00, 0x06, 0xb6, 'U','k','r','a','i','n','i','a','n','_','I',0,
-0x80, 0x57, 0x00, 0x00, 0x06, 0xb6, 'U','k','r','a','n','i','a','n','_','I',0,
-0x02, 0x17, 0x00, 0x00, 0x06, 0xb7, 'U','k','r','a','i','n','i','a','n','_','Y','I',0,
-0x01, 0x17, 0x00, 0x00, 0x06, 0xb7, 'U','k','r','a','n','i','a','n','_','Y','I',0,
-0xd8, 0xfd, 0x00, 0x00, 0x06, 0xb8, 'C','y','r','i','l','l','i','c','_','J','E',0,
-0x75, 0x75, 0x00, 0x00, 0x06, 0xb8, 'S','e','r','b','i','a','n','_','J','E',0,
-0xb2, 0x51, 0x00, 0x00, 0x06, 0xb9, 'C','y','r','i','l','l','i','c','_','L','J','E',0,
-0xeb, 0x41, 0x00, 0x00, 0x06, 0xb9, 'S','e','r','b','i','a','n','_','L','J','E',0,
-0xb2, 0x59, 0x00, 0x00, 0x06, 0xba, 'C','y','r','i','l','l','i','c','_','N','J','E',0,
-0xeb, 0x49, 0x00, 0x00, 0x06, 0xba, 'S','e','r','b','i','a','n','_','N','J','E',0,
-0xd7, 0x31, 0x00, 0x00, 0x06, 0xbb, 'S','e','r','b','i','a','n','_','T','S','H','E',0,
-0xfd, 0x2d, 0x00, 0x00, 0x06, 0xbc, 'M','a','c','e','d','o','n','i','a','_','K','J','E',0,
-0x1a, 0x46, 0x00, 0x00, 0x06, 0xbd, 'U','k','r','a','i','n','i','a','n','_','G','H','E','_','W','I','T','H','_','U','P','T','U','R','N',0,
-0x49, 0x5d, 0x00, 0x00, 0x06, 0xbe, 'B','y','e','l','o','r','u','s','s','i','a','n','_','S','H','O','R','T','U',0,
-0x64, 0xed, 0x00, 0x00, 0x06, 0xbf, 'C','y','r','i','l','l','i','c','_','D','Z','H','E',0,
-0xeb, 0x41, 0x00, 0x00, 0x06, 0xbf, 'S','e','r','b','i','a','n','_','D','Z','E',0,
-0xd9, 0x8b, 0x00, 0x00, 0x06, 0xc0, 'C','y','r','i','l','l','i','c','_','y','u',0,
-0x6c, 0x73, 0x00, 0x00, 0x06, 0xc1, 'C','y','r','i','l','l','i','c','_','a',0,
-0xd9, 0x4d, 0x00, 0x00, 0x06, 0xc2, 'C','y','r','i','l','l','i','c','_','b','e',0,
-0xb3, 0x63, 0x00, 0x00, 0x06, 0xc3, 'C','y','r','i','l','l','i','c','_','t','s','e',0,
-0xd9, 0x51, 0x00, 0x00, 0x06, 0xc4, 'C','y','r','i','l','l','i','c','_','d','e',0,
-0xd9, 0x5b, 0x00, 0x00, 0x06, 0xc5, 'C','y','r','i','l','l','i','c','_','i','e',0,
-0xd9, 0x54, 0x00, 0x00, 0x06, 0xc6, 'C','y','r','i','l','l','i','c','_','e','f',0,
-0xb3, 0x19, 0x00, 0x00, 0x06, 0xc7, 'C','y','r','i','l','l','i','c','_','g','h','e',0,
-0xd9, 0x55, 0x00, 0x00, 0x06, 0xc8, 'C','y','r','i','l','l','i','c','_','h','a',0,
-0x6c, 0x7b, 0x00, 0x00, 0x06, 0xc9, 'C','y','r','i','l','l','i','c','_','i',0,
-0x9d, 0xb1, 0x00, 0x00, 0x06, 0xca, 'C','y','r','i','l','l','i','c','_','s','h','o','r','t','i',0,
-0xd9, 0x5b, 0x00, 0x00, 0x06, 0xcb, 'C','y','r','i','l','l','i','c','_','k','a',0,
-0xd9, 0x5a, 0x00, 0x00, 0x06, 0xcc, 'C','y','r','i','l','l','i','c','_','e','l',0,
-0xd9, 0x5b, 0x00, 0x00, 0x06, 0xcd, 'C','y','r','i','l','l','i','c','_','e','m',0,
-0xd9, 0x5c, 0x00, 0x00, 0x06, 0xce, 'C','y','r','i','l','l','i','c','_','e','n',0,
-0x6c, 0x81, 0x00, 0x00, 0x06, 0xcf, 'C','y','r','i','l','l','i','c','_','o',0,
-0xd9, 0x69, 0x00, 0x00, 0x06, 0xd0, 'C','y','r','i','l','l','i','c','_','p','e',0,
-0xd9, 0x77, 0x00, 0x00, 0x06, 0xd1, 'C','y','r','i','l','l','i','c','_','y','a',0,
-0xd9, 0x60, 0x00, 0x00, 0x06, 0xd2, 'C','y','r','i','l','l','i','c','_','e','r',0,
-0xd9, 0x61, 0x00, 0x00, 0x06, 0xd3, 'C','y','r','i','l','l','i','c','_','e','s',0,
-0xd9, 0x71, 0x00, 0x00, 0x06, 0xd4, 'C','y','r','i','l','l','i','c','_','t','e',0,
-0x6c, 0x87, 0x00, 0x00, 0x06, 0xd5, 'C','y','r','i','l','l','i','c','_','u',0,
-0xb3, 0x65, 0x00, 0x00, 0x06, 0xd6, 'C','y','r','i','l','l','i','c','_','z','h','e',0,
-0xd9, 0x75, 0x00, 0x00, 0x06, 0xd7, 'C','y','r','i','l','l','i','c','_','v','e',0,
-0x78, 0xb8, 0x00, 0x00, 0x06, 0xd8, 'C','y','r','i','l','l','i','c','_','s','o','f','t','s','i','g','n',0,
-0x67, 0x45, 0x00, 0x00, 0x06, 0xd9, 'C','y','r','i','l','l','i','c','_','y','e','r','u',0,
-0xd9, 0x7d, 0x00, 0x00, 0x06, 0xda, 'C','y','r','i','l','l','i','c','_','z','e',0,
-0xb3, 0x45, 0x00, 0x00, 0x06, 0xdb, 'C','y','r','i','l','l','i','c','_','s','h','a',0,
-0x6c, 0x77, 0x00, 0x00, 0x06, 0xdc, 'C','y','r','i','l','l','i','c','_','e',0,
-0xce, 0x4d, 0x00, 0x00, 0x06, 0xdd, 'C','y','r','i','l','l','i','c','_','s','h','c','h','a',0,
-0xb3, 0x09, 0x00, 0x00, 0x06, 0xde, 'C','y','r','i','l','l','i','c','_','c','h','e',0,
-0x70, 0x38, 0x00, 0x00, 0x06, 0xdf, 'C','y','r','i','l','l','i','c','_','h','a','r','d','s','i','g','n',0,
-0xd9, 0x2b, 0x00, 0x00, 0x06, 0xe0, 'C','y','r','i','l','l','i','c','_','Y','U',0,
-0x6c, 0x53, 0x00, 0x00, 0x06, 0xe1, 'C','y','r','i','l','l','i','c','_','A',0,
-0xd8, 0xed, 0x00, 0x00, 0x06, 0xe2, 'C','y','r','i','l','l','i','c','_','B','E',0,
-0xb2, 0x83, 0x00, 0x00, 0x06, 0xe3, 'C','y','r','i','l','l','i','c','_','T','S','E',0,
-0xd8, 0xf1, 0x00, 0x00, 0x06, 0xe4, 'C','y','r','i','l','l','i','c','_','D','E',0,
-0xd8, 0xfb, 0x00, 0x00, 0x06, 0xe5, 'C','y','r','i','l','l','i','c','_','I','E',0,
-0xd8, 0xf4, 0x00, 0x00, 0x06, 0xe6, 'C','y','r','i','l','l','i','c','_','E','F',0,
-0xb2, 0x39, 0x00, 0x00, 0x06, 0xe7, 'C','y','r','i','l','l','i','c','_','G','H','E',0,
-0xd8, 0xf5, 0x00, 0x00, 0x06, 0xe8, 'C','y','r','i','l','l','i','c','_','H','A',0,
-0x6c, 0x5b, 0x00, 0x00, 0x06, 0xe9, 'C','y','r','i','l','l','i','c','_','I',0,
-0x95, 0xd1, 0x00, 0x00, 0x06, 0xea, 'C','y','r','i','l','l','i','c','_','S','H','O','R','T','I',0,
-0xd8, 0xfb, 0x00, 0x00, 0x06, 0xeb, 'C','y','r','i','l','l','i','c','_','K','A',0,
-0xd8, 0xfa, 0x00, 0x00, 0x06, 0xec, 'C','y','r','i','l','l','i','c','_','E','L',0,
-0xd8, 0xfb, 0x00, 0x00, 0x06, 0xed, 'C','y','r','i','l','l','i','c','_','E','M',0,
-0xd8, 0xfc, 0x00, 0x00, 0x06, 0xee, 'C','y','r','i','l','l','i','c','_','E','N',0,
-0x6c, 0x61, 0x00, 0x00, 0x06, 0xef, 'C','y','r','i','l','l','i','c','_','O',0,
-0xd9, 0x09, 0x00, 0x00, 0x06, 0xf0, 'C','y','r','i','l','l','i','c','_','P','E',0,
-0xd9, 0x17, 0x00, 0x00, 0x06, 0xf1, 'C','y','r','i','l','l','i','c','_','Y','A',0,
-0xd9, 0x00, 0x00, 0x00, 0x06, 0xf2, 'C','y','r','i','l','l','i','c','_','E','R',0,
-0xd9, 0x01, 0x00, 0x00, 0x06, 0xf3, 'C','y','r','i','l','l','i','c','_','E','S',0,
-0xd9, 0x11, 0x00, 0x00, 0x06, 0xf4, 'C','y','r','i','l','l','i','c','_','T','E',0,
-0x6c, 0x67, 0x00, 0x00, 0x06, 0xf5, 'C','y','r','i','l','l','i','c','_','U',0,
-0xb2, 0x85, 0x00, 0x00, 0x06, 0xf6, 'C','y','r','i','l','l','i','c','_','Z','H','E',0,
-0xd9, 0x15, 0x00, 0x00, 0x06, 0xf7, 'C','y','r','i','l','l','i','c','_','V','E',0,
-0x58, 0xd8, 0x00, 0x00, 0x06, 0xf8, 'C','y','r','i','l','l','i','c','_','S','O','F','T','S','I','G','N',0,
-0x65, 0x65, 0x00, 0x00, 0x06, 0xf9, 'C','y','r','i','l','l','i','c','_','Y','E','R','U',0,
-0xd9, 0x1d, 0x00, 0x00, 0x06, 0xfa, 'C','y','r','i','l','l','i','c','_','Z','E',0,
-0xb2, 0x65, 0x00, 0x00, 0x06, 0xfb, 'C','y','r','i','l','l','i','c','_','S','H','A',0,
-0x6c, 0x57, 0x00, 0x00, 0x06, 0xfc, 'C','y','r','i','l','l','i','c','_','E',0,
-0xca, 0x6d, 0x00, 0x00, 0x06, 0xfd, 'C','y','r','i','l','l','i','c','_','S','H','C','H','A',0,
-0xb2, 0x29, 0x00, 0x00, 0x06, 0xfe, 'C','y','r','i','l','l','i','c','_','C','H','E',0,
-0x50, 0x58, 0x00, 0x00, 0x06, 0xff, 'C','y','r','i','l','l','i','c','_','H','A','R','D','S','I','G','N',0,
-0xc0, 0x8c, 0x00, 0x00, 0x07, 0xa1, 'G','r','e','e','k','_','A','L','P','H','A','a','c','c','e','n','t',0,
-0x6d, 0x4c, 0x00, 0x00, 0x07, 0xa2, 'G','r','e','e','k','_','E','P','S','I','L','O','N','a','c','c','e','n','t',0,
-0x79, 0x8c, 0x00, 0x00, 0x07, 0xa3, 'G','r','e','e','k','_','E','T','A','a','c','c','e','n','t',0,
-0xf7, 0x8c, 0x00, 0x00, 0x07, 0xa4, 'G','r','e','e','k','_','I','O','T','A','a','c','c','e','n','t',0,
-0xe3, 0x39, 0x00, 0x00, 0x07, 0xa5, 'G','r','e','e','k','_','I','O','T','A','d','i','e','r','e','s','i','s',0,
-0xc4, 0xb9, 0x00, 0x00, 0x07, 0xa5, 'G','r','e','e','k','_','I','O','T','A','d','i','a','e','r','e','s','i','s',0,
-0xc7, 0x4c, 0x00, 0x00, 0x07, 0xa7, 'G','r','e','e','k','_','O','M','I','C','R','O','N','a','c','c','e','n','t',0,
-0x6d, 0x4c, 0x00, 0x00, 0x07, 0xa8, 'G','r','e','e','k','_','U','P','S','I','L','O','N','a','c','c','e','n','t',0,
-0xba, 0x39, 0x00, 0x00, 0x07, 0xa9, 'G','r','e','e','k','_','U','P','S','I','L','O','N','d','i','e','r','e','s','i','s',0,
-0xef, 0x0c, 0x00, 0x00, 0x07, 0xab, 'G','r','e','e','k','_','O','M','E','G','A','a','c','c','e','n','t',0,
-0xf2, 0x39, 0x00, 0x00, 0x07, 0xae, 'G','r','e','e','k','_','a','c','c','e','n','t','d','i','e','r','e','s','i','s',0,
-0x5c, 0x1c, 0x00, 0x00, 0x07, 0xaf, 'G','r','e','e','k','_','h','o','r','i','z','b','a','r',0,
-0xb8, 0x8c, 0x00, 0x00, 0x07, 0xb1, 'G','r','e','e','k','_','a','l','p','h','a','a','c','c','e','n','t',0,
-0x65, 0x4c, 0x00, 0x00, 0x07, 0xb2, 'G','r','e','e','k','_','e','p','s','i','l','o','n','a','c','c','e','n','t',0,
-0xb1, 0x8c, 0x00, 0x00, 0x07, 0xb3, 'G','r','e','e','k','_','e','t','a','a','c','c','e','n','t',0,
-0x6f, 0x8c, 0x00, 0x00, 0x07, 0xb4, 'G','r','e','e','k','_','i','o','t','a','a','c','c','e','n','t',0,
-0xc3, 0x39, 0x00, 0x00, 0x07, 0xb5, 'G','r','e','e','k','_','i','o','t','a','d','i','e','r','e','s','i','s',0,
-0xf2, 0x39, 0x00, 0x00, 0x07, 0xb6, 'G','r','e','e','k','_','i','o','t','a','a','c','c','e','n','t','d','i','e','r','e','s','i','s',0,
-0xbf, 0x4c, 0x00, 0x00, 0x07, 0xb7, 'G','r','e','e','k','_','o','m','i','c','r','o','n','a','c','c','e','n','t',0,
-0x65, 0x4c, 0x00, 0x00, 0x07, 0xb8, 'G','r','e','e','k','_','u','p','s','i','l','o','n','a','c','c','e','n','t',0,
-0x9a, 0x39, 0x00, 0x00, 0x07, 0xb9, 'G','r','e','e','k','_','u','p','s','i','l','o','n','d','i','e','r','e','s','i','s',0,
-0xb2, 0x39, 0x00, 0x00, 0x07, 0xba, 'G','r','e','e','k','_','u','p','s','i','l','o','n','a','c','c','e','n','t','d','i','e','r','e','s','i','s',0,
-0xe7, 0x0c, 0x00, 0x00, 0x07, 0xbb, 'G','r','e','e','k','_','o','m','e','g','a','a','c','c','e','n','t',0,
-0xc6, 0xa1, 0x00, 0x00, 0x07, 0xc1, 'G','r','e','e','k','_','A','L','P','H','A',0,
-0x63, 0x1d, 0x00, 0x00, 0x07, 0xc2, 'G','r','e','e','k','_','B','E','T','A',0,
-0xc6, 0xa7, 0x00, 0x00, 0x07, 0xc3, 'G','r','e','e','k','_','G','A','M','M','A',0,
-0xc6, 0xa1, 0x00, 0x00, 0x07, 0xc4, 'G','r','e','e','k','_','D','E','L','T','A',0,
-0x1d, 0x54, 0x00, 0x00, 0x07, 0xc5, 'G','r','e','e','k','_','E','P','S','I','L','O','N',0,
-0x63, 0xdd, 0x00, 0x00, 0x07, 0xc6, 'G','r','e','e','k','_','Z','E','T','A',0,
-0xb1, 0x85, 0x00, 0x00, 0x07, 0xc7, 'G','r','e','e','k','_','E','T','A',0,
-0xc7, 0x9d, 0x00, 0x00, 0x07, 0xc8, 'G','r','e','e','k','_','T','H','E','T','A',0,
-0x63, 0x7d, 0x00, 0x00, 0x07, 0xc9, 'G','r','e','e','k','_','I','O','T','A',0,
-0xc6, 0xf9, 0x00, 0x00, 0x07, 0xca, 'G','r','e','e','k','_','K','A','P','P','A',0,
-0xc6, 0xe5, 0x00, 0x00, 0x07, 0xcb, 'G','r','e','e','k','_','L','A','M','D','A',0,
-0x8e, 0x09, 0x00, 0x00, 0x07, 0xcb, 'G','r','e','e','k','_','L','A','M','B','D','A',0,
-0x58, 0xb3, 0x00, 0x00, 0x07, 0xcc, 'G','r','e','e','k','_','M','U',0,
-0x58, 0xb5, 0x00, 0x00, 0x07, 0xcd, 'G','r','e','e','k','_','N','U',0,
-0x58, 0xbd, 0x00, 0x00, 0x07, 0xce, 'G','r','e','e','k','_','X','I',0,
-0x1e, 0xbc, 0x00, 0x00, 0x07, 0xcf, 'G','r','e','e','k','_','O','M','I','C','R','O','N',0,
-0x58, 0xad, 0x00, 0x00, 0x07, 0xd0, 'G','r','e','e','k','_','P','I',0,
-0xb1, 0xaf, 0x00, 0x00, 0x07, 0xd1, 'G','r','e','e','k','_','R','H','O',0,
-0xc7, 0x8f, 0x00, 0x00, 0x07, 0xd2, 'G','r','e','e','k','_','S','I','G','M','A',0,
-0xb1, 0xaf, 0x00, 0x00, 0x07, 0xd4, 'G','r','e','e','k','_','T','A','U',0,
-0x21, 0x54, 0x00, 0x00, 0x07, 0xd5, 'G','r','e','e','k','_','U','P','S','I','L','O','N',0,
-0xb1, 0xa1, 0x00, 0x00, 0x07, 0xd6, 'G','r','e','e','k','_','P','H','I',0,
-0xb1, 0x6d, 0x00, 0x00, 0x07, 0xd7, 'G','r','e','e','k','_','C','H','I',0,
-0xb1, 0xb7, 0x00, 0x00, 0x07, 0xd8, 'G','r','e','e','k','_','P','S','I',0,
-0xc7, 0x5b, 0x00, 0x00, 0x07, 0xd9, 'G','r','e','e','k','_','O','M','E','G','A',0,
-0xca, 0x81, 0x00, 0x00, 0x07, 0xe1, 'G','r','e','e','k','_','a','l','p','h','a',0,
-0x64, 0xfd, 0x00, 0x00, 0x07, 0xe2, 'G','r','e','e','k','_','b','e','t','a',0,
-0xca, 0x87, 0x00, 0x00, 0x07, 0xe3, 'G','r','e','e','k','_','g','a','m','m','a',0,
-0xca, 0x81, 0x00, 0x00, 0x07, 0xe4, 'G','r','e','e','k','_','d','e','l','t','a',0,
-0x2d, 0x34, 0x00, 0x00, 0x07, 0xe5, 'G','r','e','e','k','_','e','p','s','i','l','o','n',0,
-0x65, 0xbd, 0x00, 0x00, 0x07, 0xe6, 'G','r','e','e','k','_','z','e','t','a',0,
-0xb2, 0x65, 0x00, 0x00, 0x07, 0xe7, 'G','r','e','e','k','_','e','t','a',0,
-0xcb, 0x7d, 0x00, 0x00, 0x07, 0xe8, 'G','r','e','e','k','_','t','h','e','t','a',0,
-0x65, 0x5d, 0x00, 0x00, 0x07, 0xe9, 'G','r','e','e','k','_','i','o','t','a',0,
-0xca, 0xd9, 0x00, 0x00, 0x07, 0xea, 'G','r','e','e','k','_','k','a','p','p','a',0,
-0xca, 0xc5, 0x00, 0x00, 0x07, 0xeb, 'G','r','e','e','k','_','l','a','m','d','a',0,
-0x95, 0xe9, 0x00, 0x00, 0x07, 0xeb, 'G','r','e','e','k','_','l','a','m','b','d','a',0,
-0x59, 0x13, 0x00, 0x00, 0x07, 0xec, 'G','r','e','e','k','_','m','u',0,
-0x59, 0x15, 0x00, 0x00, 0x07, 0xed, 'G','r','e','e','k','_','n','u',0,
-0x59, 0x1d, 0x00, 0x00, 0x07, 0xee, 'G','r','e','e','k','_','x','i',0,
-0x2e, 0x9c, 0x00, 0x00, 0x07, 0xef, 'G','r','e','e','k','_','o','m','i','c','r','o','n',0,
-0x59, 0x0d, 0x00, 0x00, 0x07, 0xf0, 'G','r','e','e','k','_','p','i',0,
-0xb2, 0x8f, 0x00, 0x00, 0x07, 0xf1, 'G','r','e','e','k','_','r','h','o',0,
-0xcb, 0x6f, 0x00, 0x00, 0x07, 0xf2, 'G','r','e','e','k','_','s','i','g','m','a',0,
-0x71, 0x4f, 0x00, 0x00, 0x07, 0xf3, 'G','r','e','e','k','_','f','i','n','a','l','s','m','a','l','l','s','i','g','m','a',0,
-0xb2, 0x8f, 0x00, 0x00, 0x07, 0xf4, 'G','r','e','e','k','_','t','a','u',0,
-0x31, 0x34, 0x00, 0x00, 0x07, 0xf5, 'G','r','e','e','k','_','u','p','s','i','l','o','n',0,
-0xb2, 0x81, 0x00, 0x00, 0x07, 0xf6, 'G','r','e','e','k','_','p','h','i',0,
-0xb2, 0x4d, 0x00, 0x00, 0x07, 0xf7, 'G','r','e','e','k','_','c','h','i',0,
-0xb2, 0x97, 0x00, 0x00, 0x07, 0xf8, 'G','r','e','e','k','_','p','s','i',0,
-0xcb, 0x3b, 0x00, 0x00, 0x07, 0xf9, 'G','r','e','e','k','_','o','m','e','g','a',0,
-0x98, 0x56, 0x00, 0x00, 0xff, 0x7e, 'G','r','e','e','k','_','s','w','i','t','c','h',0,
-0x4e, 0xe2, 0x00, 0x00, 0x08, 0xa1, 'l','e','f','t','r','a','d','i','c','a','l',0,
-0x3e, 0xe2, 0x00, 0x00, 0x08, 0xa2, 't','o','p','l','e','f','t','r','a','d','i','c','a','l',0,
-0xe8, 0x48, 0x00, 0x00, 0x08, 0xa3, 'h','o','r','i','z','c','o','n','n','e','c','t','o','r',0,
-0x88, 0xfe, 0x00, 0x00, 0x08, 0xa4, 't','o','p','i','n','t','e','g','r','a','l',0,
-0x44, 0xfe, 0x00, 0x00, 0x08, 0xa5, 'b','o','t','i','n','t','e','g','r','a','l',0,
-0x08, 0x48, 0x00, 0x00, 0x08, 0xa6, 'v','e','r','t','c','o','n','n','e','c','t','o','r',0,
-0x06, 0x52, 0x00, 0x00, 0x08, 0xa7, 't','o','p','l','e','f','t','s','q','b','r','a','c','k','e','t',0,
-0x86, 0x52, 0x00, 0x00, 0x08, 0xa8, 'b','o','t','l','e','f','t','s','q','b','r','a','c','k','e','t',0,
-0xee, 0x52, 0x00, 0x00, 0x08, 0xa9, 't','o','p','r','i','g','h','t','s','q','b','r','a','c','k','e','t',0,
-0xee, 0x52, 0x00, 0x00, 0x08, 0xaa, 'b','o','t','r','i','g','h','t','s','q','b','r','a','c','k','e','t',0,
-0x1f, 0x83, 0x00, 0x00, 0x08, 0xab, 't','o','p','l','e','f','t','p','a','r','e','n','s',0,
-0x0f, 0x83, 0x00, 0x00, 0x08, 0xac, 'b','o','t','l','e','f','t','p','a','r','e','n','s',0,
-0x5c, 0x83, 0x00, 0x00, 0x08, 0xad, 't','o','p','r','i','g','h','t','p','a','r','e','n','s',0,
-0x3c, 0x83, 0x00, 0x00, 0x08, 0xae, 'b','o','t','r','i','g','h','t','p','a','r','e','n','s',0,
-0x1e, 0x7f, 0x00, 0x00, 0x08, 0xaf, 'l','e','f','t','m','i','d','d','l','e','c','u','r','l','y','b','r','a','c','e',0,
-0x1e, 0x7f, 0x00, 0x00, 0x08, 0xb0, 'r','i','g','h','t','m','i','d','d','l','e','c','u','r','l','y','b','r','a','c','e',0,
-0x0b, 0x00, 0x00, 0x00, 0x08, 0xb1, 't','o','p','l','e','f','t','s','u','m','m','a','t','i','o','n',0,
-0x8b, 0x00, 0x00, 0x00, 0x08, 0xb2, 'b','o','t','l','e','f','t','s','u','m','m','a','t','i','o','n',0,
-0xd0, 0x48, 0x00, 0x00, 0x08, 0xb3, 't','o','p','v','e','r','t','s','u','m','m','a','t','i','o','n','c','o','n','n','e','c','t','o','r',0,
-0xd0, 0x48, 0x00, 0x00, 0x08, 0xb4, 'b','o','t','v','e','r','t','s','u','m','m','a','t','i','o','n','c','o','n','n','e','c','t','o','r',0,
-0xf3, 0x00, 0x00, 0x00, 0x08, 0xb5, 't','o','p','r','i','g','h','t','s','u','m','m','a','t','i','o','n',0,
-0xf3, 0x00, 0x00, 0x00, 0x08, 0xb6, 'b','o','t','r','i','g','h','t','s','u','m','m','a','t','i','o','n',0,
-0x1d, 0x00, 0x00, 0x00, 0x08, 0xb7, 'r','i','g','h','t','m','i','d','d','l','e','s','u','m','m','a','t','i','o','n',0,
-0x74, 0xda, 0x00, 0x00, 0x08, 0xbc, 'l','e','s','s','t','h','a','n','e','q','u','a','l',0,
-0x6e, 0x1a, 0x00, 0x00, 0x08, 0xbd, 'n','o','t','e','q','u','a','l',0,
-0xa2, 0xda, 0x00, 0x00, 0x08, 0xbe, 'g','r','e','a','t','e','r','t','h','a','n','e','q','u','a','l',0,
-0x6a, 0xfe, 0x00, 0x00, 0x08, 0xbf, 'i','n','t','e','g','r','a','l',0,
-0xdc, 0x05, 0x00, 0x00, 0x08, 0xc0, 't','h','e','r','e','f','o','r','e',0,
-0xdc, 0xc0, 0x00, 0x00, 0x08, 0xc1, 'v','a','r','i','a','t','i','o','n',0,
-0x69, 0xc5, 0x00, 0x00, 0x08, 0xc2, 'i','n','f','i','n','i','t','y',0,
-0x0c, 0xa9, 0x00, 0x00, 0x08, 0xc5, 'n','a','b','l','a',0,
-0x44, 0x89, 0x00, 0x00, 0x08, 0xc8, 'a','p','p','r','o','x','i','m','a','t','e',0,
-0xe8, 0x5a, 0x00, 0x00, 0x08, 0xc9, 's','i','m','i','l','a','r','e','q','u','a','l',0,
-0x69, 0x3c, 0x00, 0x00, 0x08, 0xcd, 'i','f','o','n','l','y','i','f',0,
-0x35, 0x21, 0x00, 0x00, 0x08, 0xce, 'i','m','p','l','i','e','s',0,
-0xcf, 0x42, 0x00, 0x00, 0x08, 0xcf, 'i','d','e','n','t','i','c','a','l',0,
-0x34, 0xe2, 0x00, 0x00, 0x08, 0xd6, 'r','a','d','i','c','a','l',0,
-0xa7, 0x58, 0x00, 0x00, 0x08, 0xda, 'i','n','c','l','u','d','e','d','i','n',0,
-0x69, 0x95, 0x00, 0x00, 0x08, 0xdb, 'i','n','c','l','u','d','e','s',0,
-0xbc, 0x20, 0x00, 0x00, 0x08, 0xdc, 'i','n','t','e','r','s','e','c','t','i','o','n',0,
-0x0d, 0xb0, 0x00, 0x00, 0x08, 0xdd, 'u','n','i','o','n',0,
-0xad, 0x54, 0x00, 0x00, 0x08, 0xde, 'l','o','g','i','c','a','l','a','n','d',0,
-0xd6, 0x98, 0x00, 0x00, 0x08, 0xdf, 'l','o','g','i','c','a','l','o','r',0,
-0x63, 0xa5, 0x00, 0x00, 0x08, 0xef, 'p','a','r','t','i','a','l','d','e','r','i','v','a','t','i','v','e',0,
-0x6a, 0xc0, 0x00, 0x00, 0x08, 0xf6, 'f','u','n','c','t','i','o','n',0,
-0xd3, 0x3d, 0x00, 0x00, 0x08, 0xfb, 'l','e','f','t','a','r','r','o','w',0,
-0x37, 0xfd, 0x00, 0x00, 0x08, 0xfc, 'u','p','a','r','r','o','w',0,
-0xb5, 0xbd, 0x00, 0x00, 0x08, 0xfd, 'r','i','g','h','t','a','r','r','o','w',0,
-0xd3, 0xbd, 0x00, 0x00, 0x08, 0xfe, 'd','o','w','n','a','r','r','o','w',0,
-0x0c, 0x4b, 0x00, 0x00, 0x09, 0xdf, 'b','l','a','n','k',0,
-0xf9, 0x94, 0x00, 0x00, 0x09, 0xe0, 's','o','l','i','d','d','i','a','m','o','n','d',0,
-0x4e, 0x64, 0x00, 0x00, 0x09, 0xe1, 'c','h','e','c','k','e','r','b','o','a','r','d',0,
-0x01, 0x44, 0x00, 0x00, 0x09, 0xe2, 'h','t',0,
-0x01, 0x32, 0x00, 0x00, 0x09, 0xe3, 'f','f',0,
-0x01, 0x38, 0x00, 0x00, 0x09, 0xe4, 'c','r',0,
-0x01, 0x3e, 0x00, 0x00, 0x09, 0xe5, 'l','f',0,
-0x01, 0x48, 0x00, 0x00, 0x09, 0xe8, 'n','l',0,
-0x01, 0x60, 0x00, 0x00, 0x09, 0xe9, 'v','t',0,
-0x93, 0xd4, 0x00, 0x00, 0x09, 0xea, 'l','o','w','r','i','g','h','t','c','o','r','n','e','r',0,
-0x3b, 0xd4, 0x00, 0x00, 0x09, 0xeb, 'u','p','r','i','g','h','t','c','o','r','n','e','r',0,
-0x0e, 0xd4, 0x00, 0x00, 0x09, 0xec, 'u','p','l','e','f','t','c','o','r','n','e','r',0,
-0xba, 0xd4, 0x00, 0x00, 0x09, 0xed, 'l','o','w','l','e','f','t','c','o','r','n','e','r',0,
-0x3e, 0xdd, 0x00, 0x00, 0x09, 0xee, 'c','r','o','s','s','i','n','g','l','i','n','e','s',0,
-0xed, 0x79, 0x00, 0x00, 0x09, 0xef, 'h','o','r','i','z','l','i','n','e','s','c','a','n','1',0,
-0xed, 0x7b, 0x00, 0x00, 0x09, 0xf0, 'h','o','r','i','z','l','i','n','e','s','c','a','n','3',0,
-0xed, 0x7d, 0x00, 0x00, 0x09, 0xf1, 'h','o','r','i','z','l','i','n','e','s','c','a','n','5',0,
-0xed, 0x7f, 0x00, 0x00, 0x09, 0xf2, 'h','o','r','i','z','l','i','n','e','s','c','a','n','7',0,
-0xed, 0x81, 0x00, 0x00, 0x09, 0xf3, 'h','o','r','i','z','l','i','n','e','s','c','a','n','9',0,
-0x0c, 0xdc, 0x00, 0x00, 0x09, 0xf4, 'l','e','f','t','t',0,
-0x1b, 0x04, 0x00, 0x00, 0x09, 0xf5, 'r','i','g','h','t','t',0,
-0x06, 0x28, 0x00, 0x00, 0x09, 0xf6, 'b','o','t','t',0,
-0x06, 0xb0, 0x00, 0x00, 0x09, 0xf7, 't','o','p','t',0,
-0x37, 0x9c, 0x00, 0x00, 0x09, 0xf8, 'v','e','r','t','b','a','r',0,
-0x34, 0x3f, 0x00, 0x00, 0x0a, 0xa1, 'e','m','s','p','a','c','e',0,
-0x34, 0x5f, 0x00, 0x00, 0x0a, 0xa2, 'e','n','s','p','a','c','e',0,
-0x61, 0x7f, 0x00, 0x00, 0x0a, 0xa3, 'e','m','3','s','p','a','c','e',0,
-0x61, 0x9f, 0x00, 0x00, 0x0a, 0xa4, 'e','m','4','s','p','a','c','e',0,
-0x9a, 0x9f, 0x00, 0x00, 0x0a, 0xa5, 'd','i','g','i','t','s','p','a','c','e',0,
-0xc0, 0x9f, 0x00, 0x00, 0x0a, 0xa6, 'p','u','n','c','t','s','p','a','c','e',0,
-0xdd, 0x5f, 0x00, 0x00, 0x0a, 0xa7, 't','h','i','n','s','p','a','c','e',0,
-0xce, 0x5f, 0x00, 0x00, 0x0a, 0xa8, 'h','a','i','r','s','p','a','c','e',0,
-0x19, 0x62, 0x00, 0x00, 0x0a, 0xa9, 'e','m','d','a','s','h',0,
-0x19, 0x72, 0x00, 0x00, 0x0a, 0xaa, 'e','n','d','a','s','h',0,
-0x6f, 0x4b, 0x00, 0x00, 0x0a, 0xac, 's','i','g','n','i','f','b','l','a','n','k',0,
-0x68, 0x21, 0x00, 0x00, 0x0a, 0xae, 'e','l','l','i','p','s','i','s',0,
-0x64, 0x8a, 0x00, 0x00, 0x0a, 0xaf, 'd','o','u','b','b','a','s','e','l','i','n','e','d','o','t',0,
-0x6d, 0x0c, 0x00, 0x00, 0x0a, 0xb0, 'o','n','e','t','h','i','r','d',0,
-0xe6, 0x8b, 0x00, 0x00, 0x0a, 0xb1, 't','w','o','t','h','i','r','d','s',0,
-0x6c, 0x30, 0x00, 0x00, 0x0a, 0xb2, 'o','n','e','f','i','f','t','h',0,
-0xe4, 0xd3, 0x00, 0x00, 0x0a, 0xb3, 't','w','o','f','i','f','t','h','s',0,
-0x77, 0x53, 0x00, 0x00, 0x0a, 0xb4, 't','h','r','e','e','f','i','f','t','h','s',0,
-0xab, 0x93, 0x00, 0x00, 0x0a, 0xb5, 'f','o','u','r','f','i','f','t','h','s',0,
-0x6d, 0x48, 0x00, 0x00, 0x0a, 0xb6, 'o','n','e','s','i','x','t','h',0,
-0xa5, 0x03, 0x00, 0x00, 0x0a, 0xb7, 'f','i','v','e','s','i','x','t','h','s',0,
-0x18, 0xd8, 0x00, 0x00, 0x0a, 0xb8, 'c','a','r','e','o','f',0,
-0x33, 0x02, 0x00, 0x00, 0x0a, 0xbb, 'f','i','g','d','a','s','h',0,
-0x9f, 0x52, 0x00, 0x00, 0x0a, 0xbc, 'l','e','f','t','a','n','g','l','e','b','r','a','c','k','e','t',0,
-0x4c, 0xac, 0x00, 0x00, 0x0a, 0xbd, 'd','e','c','i','m','a','l','p','o','i','n','t',0,
-0xdf, 0x52, 0x00, 0x00, 0x0a, 0xbe, 'r','i','g','h','t','a','n','g','l','e','b','r','a','c','k','e','t',0,
-0x1a, 0x28, 0x00, 0x00, 0x0a, 0xbf, 'm','a','r','k','e','r',0,
-0xd8, 0x98, 0x00, 0x00, 0x0a, 0xc3, 'o','n','e','e','i','g','h','t','h',0,
-0xee, 0xa3, 0x00, 0x00, 0x0a, 0xc4, 't','h','r','e','e','e','i','g','h','t','h','s',0,
-0x45, 0xa3, 0x00, 0x00, 0x0a, 0xc5, 'f','i','v','e','e','i','g','h','t','h','s',0,
-0xe7, 0x23, 0x00, 0x00, 0x0a, 0xc6, 's','e','v','e','n','e','i','g','h','t','h','s',0,
-0xde, 0x4b, 0x00, 0x00, 0x0a, 0xc9, 't','r','a','d','e','m','a','r','k',0,
-0xc3, 0x0b, 0x00, 0x00, 0x0a, 0xca, 's','i','g','n','a','t','u','r','e','m','a','r','k',0,
-0xb4, 0x49, 0x00, 0x00, 0x0a, 0xcb, 't','r','a','d','e','m','a','r','k','i','n','c','i','r','c','l','e',0,
-0x1f, 0xf9, 0x00, 0x00, 0x0a, 0xcc, 'l','e','f','t','o','p','e','n','t','r','i','a','n','g','l','e',0,
-0x5f, 0xf9, 0x00, 0x00, 0x0a, 0xcd, 'r','i','g','h','t','o','p','e','n','t','r','i','a','n','g','l','e',0,
-0x91, 0x49, 0x00, 0x00, 0x0a, 0xce, 'e','m','o','p','e','n','c','i','r','c','l','e',0,
-0x98, 0x19, 0x00, 0x00, 0x0a, 0xcf, 'e','m','o','p','e','n','r','e','c','t','a','n','g','l','e',0,
-0x54, 0x4b, 0x00, 0x00, 0x0a, 0xd0, 'l','e','f','t','s','i','n','g','l','e','q','u','o','t','e','m','a','r','k',0,
-0x54, 0x4b, 0x00, 0x00, 0x0a, 0xd1, 'r','i','g','h','t','s','i','n','g','l','e','q','u','o','t','e','m','a','r','k',0,
-0x9c, 0x4b, 0x00, 0x00, 0x0a, 0xd2, 'l','e','f','t','d','o','u','b','l','e','q','u','o','t','e','m','a','r','k',0,
-0x9c, 0x4b, 0x00, 0x00, 0x0a, 0xd3, 'r','i','g','h','t','d','o','u','b','l','e','q','u','o','t','e','m','a','r','k',0,
-0xed, 0xb0, 0x00, 0x00, 0x0a, 0xd4, 'p','r','e','s','c','r','i','p','t','i','o','n',0,
-0x35, 0xf5, 0x00, 0x00, 0x0a, 0xd6, 'm','i','n','u','t','e','s',0,
-0x35, 0xfb, 0x00, 0x00, 0x0a, 0xd7, 's','e','c','o','n','d','s',0,
-0xa7, 0xd5, 0x00, 0x00, 0x0a, 0xd9, 'l','a','t','i','n','c','r','o','s','s',0,
-0x68, 0x7f, 0x00, 0x00, 0x0a, 0xda, 'h','e','x','a','g','r','a','m',0,
-0xe9, 0x5e, 0x00, 0x00, 0x0a, 0xdb, 'f','i','l','l','e','d','r','e','c','t','b','u','l','l','e','t',0,
-0x09, 0x1e, 0x00, 0x00, 0x0a, 0xdc, 'f','i','l','l','e','d','l','e','f','t','t','r','i','b','u','l','l','e','t',0,
-0xf1, 0x1e, 0x00, 0x00, 0x0a, 0xdd, 'f','i','l','l','e','d','r','i','g','h','t','t','r','i','b','u','l','l','e','t',0,
-0xec, 0xc9, 0x00, 0x00, 0x0a, 0xde, 'e','m','f','i','l','l','e','d','c','i','r','c','l','e',0,
-0x7b, 0x3e, 0x00, 0x00, 0x0a, 0xdf, 'e','m','f','i','l','l','e','d','r','e','c','t',0,
-0x5a, 0x9e, 0x00, 0x00, 0x0a, 0xe0, 'e','n','o','p','e','n','c','i','r','c','b','u','l','l','e','t',0,
-0x13, 0x1e, 0x00, 0x00, 0x0a, 0xe1, 'e','n','o','p','e','n','s','q','u','a','r','e','b','u','l','l','e','t',0,
-0x71, 0x5e, 0x00, 0x00, 0x0a, 0xe2, 'o','p','e','n','r','e','c','t','b','u','l','l','e','t',0,
-0x05, 0xd2, 0x00, 0x00, 0x0a, 0xe3, 'o','p','e','n','t','r','i','b','u','l','l','e','t','u','p',0,
-0x18, 0x18, 0x00, 0x00, 0x0a, 0xe4, 'o','p','e','n','t','r','i','b','u','l','l','e','t','d','o','w','n',0,
-0x6d, 0x9c, 0x00, 0x00, 0x0a, 0xe5, 'o','p','e','n','s','t','a','r',0,
-0xd2, 0x9e, 0x00, 0x00, 0x0a, 0xe6, 'e','n','f','i','l','l','e','d','c','i','r','c','b','u','l','l','e','t',0,
-0xfd, 0x9e, 0x00, 0x00, 0x0a, 0xe7, 'e','n','f','i','l','l','e','d','s','q','b','u','l','l','e','t',0,
-0xf5, 0xd2, 0x00, 0x00, 0x0a, 0xe8, 'f','i','l','l','e','d','t','r','i','b','u','l','l','e','t','u','p',0,
-0xd8, 0x18, 0x00, 0x00, 0x0a, 0xe9, 'f','i','l','l','e','d','t','r','i','b','u','l','l','e','t','d','o','w','n',0,
-0x50, 0xec, 0x00, 0x00, 0x0a, 0xea, 'l','e','f','t','p','o','i','n','t','e','r',0,
-0xda, 0xec, 0x00, 0x00, 0x0a, 0xeb, 'r','i','g','h','t','p','o','i','n','t','e','r',0,
-0x06, 0x14, 0x00, 0x00, 0x0a, 0xec, 'c','l','u','b',0,
-0x32, 0x94, 0x00, 0x00, 0x0a, 0xed, 'd','i','a','m','o','n','d',0,
-0x0c, 0x84, 0x00, 0x00, 0x0a, 0xee, 'h','e','a','r','t',0,
-0xa0, 0xb5, 0x00, 0x00, 0x0a, 0xf0, 'm','a','l','t','e','s','e','c','r','o','s','s',0,
-0x18, 0xa0, 0x00, 0x00, 0x0a, 0xf1, 'd','a','g','g','e','r',0,
-0x8f, 0xe0, 0x00, 0x00, 0x0a, 0xf2, 'd','o','u','b','l','e','d','a','g','g','e','r',0,
-0xc9, 0x8b, 0x00, 0x00, 0x0a, 0xf3, 'c','h','e','c','k','m','a','r','k',0,
-0x23, 0x15, 0x00, 0x00, 0x0a, 0xf4, 'b','a','l','l','o','t','c','r','o','s','s',0,
-0xef, 0x88, 0x00, 0x00, 0x0a, 0xf5, 'm','u','s','i','c','a','l','s','h','a','r','p',0,
-0x77, 0x36, 0x00, 0x00, 0x0a, 0xf6, 'm','u','s','i','c','a','l','f','l','a','t',0,
-0xa6, 0x6a, 0x00, 0x00, 0x0a, 0xf7, 'm','a','l','e','s','y','m','b','o','l',0,
-0x6a, 0x6a, 0x00, 0x00, 0x0a, 0xf8, 'f','e','m','a','l','e','s','y','m','b','o','l',0,
-0xdb, 0x5d, 0x00, 0x00, 0x0a, 0xf9, 't','e','l','e','p','h','o','n','e',0,
-0xc8, 0xec, 0x00, 0x00, 0x0a, 0xfa, 't','e','l','e','p','h','o','n','e','r','e','c','o','r','d','e','r',0,
-0x2a, 0xe8, 0x00, 0x00, 0x0a, 0xfb, 'p','h','o','n','o','g','r','a','p','h','c','o','p','y','r','i','g','h','t',0,
-0x0c, 0x3e, 0x00, 0x00, 0x0a, 0xfc, 'c','a','r','e','t',0,
-0x7c, 0x4b, 0x00, 0x00, 0x0a, 0xfd, 's','i','n','g','l','e','l','o','w','q','u','o','t','e','m','a','r','k',0,
-0xbc, 0x4b, 0x00, 0x00, 0x0a, 0xfe, 'd','o','u','b','l','e','l','o','w','q','u','o','t','e','m','a','r','k',0,
-0x1a, 0x5c, 0x00, 0x00, 0x0a, 0xff, 'c','u','r','s','o','r',0,
-0xd2, 0xbe, 0x00, 0x00, 0x0b, 0xa3, 'l','e','f','t','c','a','r','e','t',0,
-0xb5, 0x3e, 0x00, 0x00, 0x0b, 0xa6, 'r','i','g','h','t','c','a','r','e','t',0,
-0xd3, 0x3e, 0x00, 0x00, 0x0b, 0xa8, 'd','o','w','n','c','a','r','e','t',0,
-0x37, 0x7e, 0x00, 0x00, 0x0b, 0xa9, 'u','p','c','a','r','e','t',0,
-0x37, 0x1c, 0x00, 0x00, 0x0b, 0xc0, 'o','v','e','r','b','a','r',0,
-0x69, 0xd5, 0x00, 0x00, 0x0b, 0xc2, 'd','o','w','n','t','a','c','k',0,
-0x1c, 0x1b, 0x00, 0x00, 0x0b, 0xc3, 'u','p','s','h','o','e',0,
-0xd4, 0xb1, 0x00, 0x00, 0x0b, 0xc4, 'd','o','w','n','s','t','i','l','e',0,
-0x6f, 0x1c, 0x00, 0x00, 0x0b, 0xc6, 'u','n','d','e','r','b','a','r',0,
-0x02, 0xfa, 0x00, 0x00, 0x0b, 0xca, 'j','o','t',0,
-0x06, 0x82, 0x00, 0x00, 0x0b, 0xcc, 'q','u','a','d',0,
-0x1b, 0xf5, 0x00, 0x00, 0x0b, 0xce, 'u','p','t','a','c','k',0,
-0x19, 0x49, 0x00, 0x00, 0x0b, 0xcf, 'c','i','r','c','l','e',0,
-0x38, 0xf1, 0x00, 0x00, 0x0b, 0xd3, 'u','p','s','t','i','l','e',0,
-0x69, 0xfb, 0x00, 0x00, 0x0b, 0xd6, 'd','o','w','n','s','h','o','e',0,
-0xda, 0xfb, 0x00, 0x00, 0x0b, 0xd8, 'r','i','g','h','t','s','h','o','e',0,
-0x69, 0xbb, 0x00, 0x00, 0x0b, 0xda, 'l','e','f','t','s','h','o','e',0,
-0x69, 0x95, 0x00, 0x00, 0x0b, 0xdc, 'l','e','f','t','t','a','c','k',0,
-0xda, 0xd5, 0x00, 0x00, 0x0b, 0xfc, 'r','i','g','h','t','t','a','c','k',0,
-0x45, 0x15, 0x00, 0x00, 0x0c, 0xdf, 'h','e','b','r','e','w','_','d','o','u','b','l','e','l','o','w','l','i','n','e',0,
-0x72, 0x6c, 0x00, 0x00, 0x0c, 0xe0, 'h','e','b','r','e','w','_','a','l','e','p','h',0,
-0x9c, 0x4e, 0x00, 0x00, 0x0c, 0xe1, 'h','e','b','r','e','w','_','b','e','t',0,
-0x39, 0x04, 0x00, 0x00, 0x0c, 0xe1, 'h','e','b','r','e','w','_','b','e','t','h',0,
-0x72, 0xc2, 0x00, 0x00, 0x0c, 0xe2, 'h','e','b','r','e','w','_','g','i','m','e','l',0,
-0xe6, 0x02, 0x00, 0x00, 0x0c, 0xe2, 'h','e','b','r','e','w','_','g','i','m','m','e','l',0,
-0x72, 0x56, 0x00, 0x00, 0x0c, 0xe3, 'h','e','b','r','e','w','_','d','a','l','e','t',0,
-0xe5, 0x14, 0x00, 0x00, 0x0c, 0xe3, 'h','e','b','r','e','w','_','d','a','l','e','t','h',0,
-0xcd, 0xf9, 0x00, 0x00, 0x0c, 0xe4, 'h','e','b','r','e','w','_','h','e',0,
-0x9c, 0x9d, 0x00, 0x00, 0x0c, 0xe5, 'h','e','b','r','e','w','_','w','a','w',0,
-0x39, 0xa4, 0x00, 0x00, 0x0c, 0xe6, 'h','e','b','r','e','w','_','z','a','i','n',0,
-0x73, 0xec, 0x00, 0x00, 0x0c, 0xe6, 'h','e','b','r','e','w','_','z','a','y','i','n',0,
-0x39, 0x06, 0x00, 0x00, 0x0c, 0xe7, 'h','e','b','r','e','w','_','c','h','e','t',0,
-0x9c, 0x66, 0x00, 0x00, 0x0c, 0xe7, 'h','e','b','r','e','w','_','h','e','t',0,
-0x9c, 0x96, 0x00, 0x00, 0x0c, 0xe8, 'h','e','b','r','e','w','_','t','e','t',0,
-0x39, 0x94, 0x00, 0x00, 0x0c, 0xe8, 'h','e','b','r','e','w','_','t','e','t','h',0,
-0x9c, 0xae, 0x00, 0x00, 0x0c, 0xe9, 'h','e','b','r','e','w','_','y','o','d',0,
-0x31, 0x04, 0x00, 0x00, 0x0c, 0xea, 'h','e','b','r','e','w','_','f','i','n','a','l','k','a','p','h',0,
-0x39, 0x34, 0x00, 0x00, 0x0c, 0xeb, 'h','e','b','r','e','w','_','k','a','p','h',0,
-0x72, 0xca, 0x00, 0x00, 0x0c, 0xec, 'h','e','b','r','e','w','_','l','a','m','e','d',0,
-0x98, 0x5b, 0x00, 0x00, 0x0c, 0xed, 'h','e','b','r','e','w','_','f','i','n','a','l','m','e','m',0,
-0x9c, 0x73, 0x00, 0x00, 0x0c, 0xee, 'h','e','b','r','e','w','_','m','e','m',0,
-0x98, 0x80, 0x00, 0x00, 0x0c, 0xef, 'h','e','b','r','e','w','_','f','i','n','a','l','n','u','n',0,
-0x9c, 0x98, 0x00, 0x00, 0x0c, 0xf0, 'h','e','b','r','e','w','_','n','u','n',0,
-0xe6, 0xda, 0x00, 0x00, 0x0c, 0xf1, 'h','e','b','r','e','w','_','s','a','m','e','c','h',0,
-0xe6, 0xea, 0x00, 0x00, 0x0c, 0xf1, 'h','e','b','r','e','w','_','s','a','m','e','k','h',0,
-0x39, 0x3c, 0x00, 0x00, 0x0c, 0xf2, 'h','e','b','r','e','w','_','a','y','i','n',0,
-0xcb, 0xfd, 0x00, 0x00, 0x0c, 0xf3, 'h','e','b','r','e','w','_','f','i','n','a','l','p','e',0,
-0xce, 0x09, 0x00, 0x00, 0x0c, 0xf4, 'h','e','b','r','e','w','_','p','e',0,
-0x31, 0x61, 0x00, 0x00, 0x0c, 0xf5, 'h','e','b','r','e','w','_','f','i','n','a','l','z','a','d','e',0,
-0x31, 0x65, 0x00, 0x00, 0x0c, 0xf5, 'h','e','b','r','e','w','_','f','i','n','a','l','z','a','d','i',0,
-0x39, 0x91, 0x00, 0x00, 0x0c, 0xf6, 'h','e','b','r','e','w','_','z','a','d','e',0,
-0x39, 0x95, 0x00, 0x00, 0x0c, 0xf6, 'h','e','b','r','e','w','_','z','a','d','i',0,
-0x39, 0x9c, 0x00, 0x00, 0x0c, 0xf7, 'h','e','b','r','e','w','_','q','o','p','h',0,
-0x9c, 0x84, 0x00, 0x00, 0x0c, 0xf7, 'h','e','b','r','e','w','_','k','u','f',0,
-0x39, 0x82, 0x00, 0x00, 0x0c, 0xf8, 'h','e','b','r','e','w','_','r','e','s','h',0,
-0x39, 0x88, 0x00, 0x00, 0x0c, 0xf9, 'h','e','b','r','e','w','_','s','h','i','n',0,
-0x9c, 0x91, 0x00, 0x00, 0x0c, 0xfa, 'h','e','b','r','e','w','_','t','a','w',0,
-0x9c, 0x80, 0x00, 0x00, 0x0c, 0xfa, 'h','e','b','r','e','w','_','t','a','f',0,
-0xe8, 0x56, 0x00, 0x00, 0xff, 0x7e, 'H','e','b','r','e','w','_','s','w','i','t','c','h',0,
-0x73, 0x9f, 0x00, 0x00, 0x0d, 0xa1, 'T','h','a','i','_','k','o','k','a','i',0,
-0xcf, 0x53, 0x00, 0x00, 0x0d, 0xa2, 'T','h','a','i','_','k','h','o','k','h','a','i',0,
-0x9f, 0x5a, 0x00, 0x00, 0x0d, 0xa3, 'T','h','a','i','_','k','h','o','k','h','u','a','t',0,
-0x9f, 0x57, 0x00, 0x00, 0x0d, 0xa4, 'T','h','a','i','_','k','h','o','k','h','w','a','i',0,
-0xcf, 0x74, 0x00, 0x00, 0x0d, 0xa5, 'T','h','a','i','_','k','h','o','k','h','o','n',0,
-0x7e, 0xd7, 0x00, 0x00, 0x0d, 0xa6, 'T','h','a','i','_','k','h','o','r','a','k','h','a','n','g',0,
-0xe7, 0xe3, 0x00, 0x00, 0x0d, 0xa7, 'T','h','a','i','_','n','g','o','n','g','u',0,
-0xcd, 0x18, 0x00, 0x00, 0x0d, 0xa8, 'T','h','a','i','_','c','h','o','c','h','a','n',0,
-0x9a, 0xb7, 0x00, 0x00, 0x0d, 0xa9, 'T','h','a','i','_','c','h','o','c','h','i','n','g',0,
-0x9a, 0x97, 0x00, 0x00, 0x0d, 0xaa, 'T','h','a','i','_','c','h','o','c','h','a','n','g',0,
-0xb9, 0xf9, 0x00, 0x00, 0x0d, 0xab, 'T','h','a','i','_','s','o','s','o',0,
-0xcd, 0x2b, 0x00, 0x00, 0x0d, 0xac, 'T','h','a','i','_','c','h','o','c','h','o','e',0,
-0xe9, 0xff, 0x00, 0x00, 0x0d, 0xad, 'T','h','a','i','_','y','o','y','i','n','g',0,
-0xcd, 0x7d, 0x00, 0x00, 0x0d, 0xae, 'T','h','a','i','_','d','o','c','h','a','d','a',0,
-0xd2, 0x65, 0x00, 0x00, 0x0d, 0xaf, 'T','h','a','i','_','t','o','p','a','t','a','k',0,
-0xd1, 0xe0, 0x00, 0x00, 0x0d, 0xb0, 'T','h','a','i','_','t','h','o','t','h','a','n',0,
-0x84, 0xcf, 0x00, 0x00, 0x0d, 0xb1, 'T','h','a','i','_','t','h','o','n','a','n','g','m','o','n','t','h','o',0,
-0x92, 0x41, 0x00, 0x00, 0x0d, 0xb2, 'T','h','a','i','_','t','h','o','p','h','u','t','h','a','o',0,
-0x73, 0xe8, 0x00, 0x00, 0x0d, 0xb3, 'T','h','a','i','_','n','o','n','e','n',0,
-0x73, 0x1d, 0x00, 0x00, 0x0d, 0xb4, 'T','h','a','i','_','d','o','d','e','k',0,
-0x74, 0x59, 0x00, 0x00, 0x0d, 0xb5, 'T','h','a','i','_','t','o','t','a','o',0,
-0xa4, 0x77, 0x00, 0x00, 0x0d, 0xb6, 'T','h','a','i','_','t','h','o','t','h','u','n','g',0,
-0x48, 0x98, 0x00, 0x00, 0x0d, 0xb7, 'T','h','a','i','_','t','h','o','t','h','a','h','a','n',0,
-0xa4, 0x5f, 0x00, 0x00, 0x0d, 0xb8, 'T','h','a','i','_','t','h','o','t','h','o','n','g',0,
-0xb9, 0xcd, 0x00, 0x00, 0x0d, 0xb9, 'T','h','a','i','_','n','o','n','u',0,
-0x9a, 0x37, 0x00, 0x00, 0x0d, 0xba, 'T','h','a','i','_','b','o','b','a','i','m','a','i',0,
-0x74, 0x11, 0x00, 0x00, 0x0d, 0xbb, 'T','h','a','i','_','p','o','p','l','a',0,
-0xa2, 0x37, 0x00, 0x00, 0x0d, 0xbc, 'T','h','a','i','_','p','h','o','p','h','u','n','g',0,
-0xb9, 0x69, 0x00, 0x00, 0x0d, 0xbd, 'T','h','a','i','_','f','o','f','a',0,
-0xd0, 0xc0, 0x00, 0x00, 0x0d, 0xbe, 'T','h','a','i','_','p','h','o','p','h','a','n',0,
-0x73, 0x40, 0x00, 0x00, 0x0d, 0xbf, 'T','h','a','i','_','f','o','f','a','n',0,
-0x89, 0x81, 0x00, 0x00, 0x0d, 0xc0, 'T','h','a','i','_','p','h','o','s','a','m','p','h','a','o',0,
-0xb9, 0xaf, 0x00, 0x00, 0x0d, 0xc1, 'T','h','a','i','_','m','o','m','a',0,
-0x74, 0xb9, 0x00, 0x00, 0x0d, 0xc2, 'T','h','a','i','_','y','o','y','a','k',0,
-0x74, 0x4b, 0x00, 0x00, 0x0d, 0xc3, 'T','h','a','i','_','r','o','r','u','a',0,
-0x2e, 0x2d, 0x00, 0x00, 0x0d, 0xc4, 'T','h','a','i','_','r','u',0,
-0xe7, 0xf7, 0x00, 0x00, 0x0d, 0xc5, 'T','h','a','i','_','l','o','l','i','n','g',0,
-0x2e, 0x21, 0x00, 0x00, 0x0d, 0xc6, 'T','h','a','i','_','l','u',0,
-0xe9, 0x84, 0x00, 0x00, 0x0d, 0xc7, 'T','h','a','i','_','w','o','w','a','e','n',0,
-0xe8, 0xe5, 0x00, 0x00, 0x0d, 0xc8, 'T','h','a','i','_','s','o','s','a','l','a',0,
-0xe9, 0x43, 0x00, 0x00, 0x0d, 0xc9, 'T','h','a','i','_','s','o','r','u','s','i',0,
-0x74, 0x5f, 0x00, 0x00, 0x0d, 0xca, 'T','h','a','i','_','s','o','s','u','a',0,
-0x73, 0x7a, 0x00, 0x00, 0x0d, 0xcb, 'T','h','a','i','_','h','o','h','i','p',0,
-0xcf, 0xdd, 0x00, 0x00, 0x0d, 0xcc, 'T','h','a','i','_','l','o','c','h','u','l','a',0,
-0xb9, 0x8f, 0x00, 0x00, 0x0d, 0xcd, 'T','h','a','i','_','o','a','n','g',0,
-0x9f, 0xbd, 0x00, 0x00, 0x0d, 0xce, 'T','h','a','i','_','h','o','n','o','k','h','u','k',0,
-0x40, 0x5f, 0x00, 0x00, 0x0d, 0xcf, 'T','h','a','i','_','p','a','i','y','a','n','n','o','i',0,
-0x73, 0xc3, 0x00, 0x00, 0x0d, 0xd0, 'T','h','a','i','_','s','a','r','a','a',0,
-0x76, 0x6a, 0x00, 0x00, 0x0d, 0xd1, 'T','h','a','i','_','m','a','i','h','a','n','a','k','a','t',0,
-0xe7, 0xe7, 0x00, 0x00, 0x0d, 0xd2, 'T','h','a','i','_','s','a','r','a','a','a',0,
-0xe7, 0xf3, 0x00, 0x00, 0x0d, 0xd3, 'T','h','a','i','_','s','a','r','a','a','m',0,
-0x73, 0xcb, 0x00, 0x00, 0x0d, 0xd4, 'T','h','a','i','_','s','a','r','a','i',0,
-0xe7, 0xff, 0x00, 0x00, 0x0d, 0xd5, 'T','h','a','i','_','s','a','r','a','i','i',0,
-0xe8, 0x13, 0x00, 0x00, 0x0d, 0xd6, 'T','h','a','i','_','s','a','r','a','u','e',0,
-0xd0, 0x8b, 0x00, 0x00, 0x0d, 0xd7, 'T','h','a','i','_','s','a','r','a','u','e','e',0,
-0x73, 0xd7, 0x00, 0x00, 0x0d, 0xd8, 'T','h','a','i','_','s','a','r','a','u',0,
-0xe8, 0x23, 0x00, 0x00, 0x0d, 0xd9, 'T','h','a','i','_','s','a','r','a','u','u',0,
-0xd0, 0x95, 0x00, 0x00, 0x0d, 0xda, 'T','h','a','i','_','p','h','i','n','t','h','u',0,
-0x66, 0xc7, 0x00, 0x00, 0x0d, 0xde, 'T','h','a','i','_','m','a','i','h','a','n','a','k','a','t','_','m','a','i','t','h','o',0,
-0xb9, 0x28, 0x00, 0x00, 0x0d, 0xdf, 'T','h','a','i','_','b','a','h','t',0,
-0x73, 0xc7, 0x00, 0x00, 0x0d, 0xe0, 'T','h','a','i','_','s','a','r','a','e',0,
-0xe7, 0xeb, 0x00, 0x00, 0x0d, 0xe1, 'T','h','a','i','_','s','a','r','a','a','e',0,
-0x73, 0xd1, 0x00, 0x00, 0x0d, 0xe2, 'T','h','a','i','_','s','a','r','a','o',0,
-0x2b, 0xdc, 0x00, 0x00, 0x0d, 0xe3, 'T','h','a','i','_','s','a','r','a','a','i','m','a','i','m','u','a','n',0,
-0x57, 0x93, 0x00, 0x00, 0x0d, 0xe4, 'T','h','a','i','_','s','a','r','a','a','i','m','a','i','m','a','l','a','i',0,
-0xed, 0xcd, 0x00, 0x00, 0x0d, 0xe5, 'T','h','a','i','_','l','a','k','k','h','a','n','g','y','a','o',0,
-0x9e, 0x75, 0x00, 0x00, 0x0d, 0xe6, 'T','h','a','i','_','m','a','i','y','a','m','o','k',0,
-0x3c, 0x89, 0x00, 0x00, 0x0d, 0xe7, 'T','h','a','i','_','m','a','i','t','a','i','k','h','u',0,
-0x73, 0x51, 0x00, 0x00, 0x0d, 0xe8, 'T','h','a','i','_','m','a','i','e','k',0,
-0xe7, 0x47, 0x00, 0x00, 0x0d, 0xe9, 'T','h','a','i','_','m','a','i','t','h','o',0,
-0xe7, 0x55, 0x00, 0x00, 0x0d, 0xea, 'T','h','a','i','_','m','a','i','t','r','i',0,
-0xec, 0x53, 0x00, 0x00, 0x0d, 0xeb, 'T','h','a','i','_','m','a','i','c','h','a','t','t','a','w','a',0,
-0x16, 0x3e, 0x00, 0x00, 0x0d, 0xec, 'T','h','a','i','_','t','h','a','n','t','h','a','k','h','a','t',0,
-0xa0, 0x0e, 0x00, 0x00, 0x0d, 0xed, 'T','h','a','i','_','n','i','k','h','a','h','i','t',0,
-0xe7, 0x8c, 0x00, 0x00, 0x0d, 0xf0, 'T','h','a','i','_','l','e','k','s','u','n',0,
-0xcf, 0x57, 0x00, 0x00, 0x0d, 0xf1, 'T','h','a','i','_','l','e','k','n','u','n','g',0,
-0xcf, 0x67, 0x00, 0x00, 0x0d, 0xf2, 'T','h','a','i','_','l','e','k','s','o','n','g',0,
-0xe7, 0x63, 0x00, 0x00, 0x0d, 0xf3, 'T','h','a','i','_','l','e','k','s','a','m',0,
-0x73, 0x83, 0x00, 0x00, 0x0d, 0xf4, 'T','h','a','i','_','l','e','k','s','i',0,
-0x73, 0x65, 0x00, 0x00, 0x0d, 0xf5, 'T','h','a','i','_','l','e','k','h','a',0,
-0xe7, 0x51, 0x00, 0x00, 0x0d, 0xf6, 'T','h','a','i','_','l','e','k','h','o','k',0,
-0xce, 0xc6, 0x00, 0x00, 0x0d, 0xf7, 'T','h','a','i','_','l','e','k','c','h','e','t',0,
-0xcf, 0x12, 0x00, 0x00, 0x0d, 0xf8, 'T','h','a','i','_','l','e','k','p','a','e','t',0,
-0xe7, 0x45, 0x00, 0x00, 0x0d, 0xf9, 'T','h','a','i','_','l','e','k','k','a','o',0,
-0x15, 0x72, 0x00, 0x00, 0xff, 0x31, 'H','a','n','g','u','l',0,
-0x74, 0x0c, 0x00, 0x00, 0xff, 0x32, 'H','a','n','g','u','l','_','S','t','a','r','t',0,
-0x5c, 0x6c, 0x00, 0x00, 0xff, 0x33, 'H','a','n','g','u','l','_','E','n','d',0,
-0x72, 0xd5, 0x00, 0x00, 0xff, 0x34, 'H','a','n','g','u','l','_','H','a','n','j','a',0,
-0xb9, 0x4d, 0x00, 0x00, 0xff, 0x35, 'H','a','n','g','u','l','_','J','a','m','o',0,
-0xe8, 0x11, 0x00, 0x00, 0xff, 0x36, 'H','a','n','g','u','l','_','R','o','m','a','j','a',0,
-0x33, 0x3e, 0x00, 0x00, 0xff, 0x37, 'H','a','n','g','u','l','_','C','o','d','e','i','n','p','u','t',0,
-0xe6, 0xb5, 0x00, 0x00, 0xff, 0x38, 'H','a','n','g','u','l','_','J','e','o','n','j','a',0,
-0x72, 0x75, 0x00, 0x00, 0xff, 0x39, 'H','a','n','g','u','l','_','B','a','n','j','a',0,
-0x9e, 0x95, 0x00, 0x00, 0xff, 0x3a, 'H','a','n','g','u','l','_','P','r','e','H','a','n','j','a',0,
-0x43, 0x35, 0x00, 0x00, 0xff, 0x3b, 'H','a','n','g','u','l','_','P','o','s','t','H','a','n','j','a',0,
-0x9a, 0x01, 0x00, 0x00, 0xff, 0x3c, 'H','a','n','g','u','l','_','S','i','n','g','l','e','C','a','n','d','i','d','a','t','e',0,
-0x32, 0x01, 0x00, 0x00, 0xff, 0x3d, 'H','a','n','g','u','l','_','M','u','l','t','i','p','l','e','C','a','n','d','i','d','a','t','e',0,
-0x6a, 0x01, 0x00, 0x00, 0xff, 0x3e, 'H','a','n','g','u','l','_','P','r','e','v','i','o','u','s','C','a','n','d','i','d','a','t','e',0,
-0xd0, 0x7a, 0x00, 0x00, 0xff, 0x3f, 'H','a','n','g','u','l','_','S','p','e','c','i','a','l',0,
-0xec, 0xd6, 0x00, 0x00, 0xff, 0x7e, 'H','a','n','g','u','l','_','s','w','i','t','c','h',0,
-0xe7, 0x51, 0x00, 0x00, 0x0e, 0xa1, 'H','a','n','g','u','l','_','K','i','y','e','o','g',0,
-0x12, 0x51, 0x00, 0x00, 0x0e, 0xa2, 'H','a','n','g','u','l','_','S','s','a','n','g','K','i','y','e','o','g',0,
-0x7a, 0x9d, 0x00, 0x00, 0x0e, 0xa3, 'H','a','n','g','u','l','_','K','i','y','e','o','g','S','i','o','s',0,
-0x73, 0x74, 0x00, 0x00, 0x0e, 0xa4, 'H','a','n','g','u','l','_','N','i','e','u','n',0,
-0x79, 0x50, 0x00, 0x00, 0x0e, 0xa5, 'H','a','n','g','u','l','_','N','i','e','u','n','J','i','e','u','j',0,
-0x79, 0x2e, 0x00, 0x00, 0x0e, 0xa6, 'H','a','n','g','u','l','_','N','i','e','u','n','H','i','e','u','h',0,
-0xe6, 0x0a, 0x00, 0x00, 0x0e, 0xa7, 'H','a','n','g','u','l','_','D','i','k','e','u','d',0,
-0x11, 0x0a, 0x00, 0x00, 0x0e, 0xa8, 'H','a','n','g','u','l','_','S','s','a','n','g','D','i','k','e','u','d',0,
-0x73, 0xb2, 0x00, 0x00, 0x0e, 0xa9, 'H','a','n','g','u','l','_','R','i','e','u','l',0,
-0x03, 0x11, 0x00, 0x00, 0x0e, 0xaa, 'H','a','n','g','u','l','_','R','i','e','u','l','K','i','y','e','o','g',0,
-0x81, 0x43, 0x00, 0x00, 0x0e, 0xab, 'H','a','n','g','u','l','_','R','i','e','u','l','M','i','e','u','m',0,
-0x81, 0x68, 0x00, 0x00, 0x0e, 0xac, 'H','a','n','g','u','l','_','R','i','e','u','l','P','i','e','u','b',0,
-0x40, 0xad, 0x00, 0x00, 0x0e, 0xad, 'H','a','n','g','u','l','_','R','i','e','u','l','S','i','o','s',0,
-0x81, 0xba, 0x00, 0x00, 0x0e, 0xae, 'H','a','n','g','u','l','_','R','i','e','u','l','T','i','e','u','t',0,
-0x03, 0x2c, 0x00, 0x00, 0x0e, 0xaf, 'H','a','n','g','u','l','_','R','i','e','u','l','P','h','i','e','u','f',0,
-0x80, 0xee, 0x00, 0x00, 0x0e, 0xb0, 'H','a','n','g','u','l','_','R','i','e','u','l','H','i','e','u','h',0,
-0x73, 0x63, 0x00, 0x00, 0x0e, 0xb1, 'H','a','n','g','u','l','_','M','i','e','u','m',0,
-0x73, 0x88, 0x00, 0x00, 0x0e, 0xb2, 'H','a','n','g','u','l','_','P','i','e','u','b',0,
-0x89, 0x08, 0x00, 0x00, 0x0e, 0xb3, 'H','a','n','g','u','l','_','S','s','a','n','g','P','i','e','u','b',0,
-0x3e, 0x0d, 0x00, 0x00, 0x0e, 0xb4, 'H','a','n','g','u','l','_','P','i','e','u','b','S','i','o','s',0,
-0xb9, 0xbd, 0x00, 0x00, 0x0e, 0xb5, 'H','a','n','g','u','l','_','S','i','o','s',0,
-0x44, 0x7d, 0x00, 0x00, 0x0e, 0xb6, 'H','a','n','g','u','l','_','S','s','a','n','g','S','i','o','s',0,
-0x73, 0x2f, 0x00, 0x00, 0x0e, 0xb7, 'H','a','n','g','u','l','_','I','e','u','n','g',0,
-0x73, 0x30, 0x00, 0x00, 0x0e, 0xb8, 'H','a','n','g','u','l','_','J','i','e','u','j',0,
-0x88, 0xb0, 0x00, 0x00, 0x0e, 0xb9, 'H','a','n','g','u','l','_','S','s','a','n','g','J','i','e','u','j',0,
-0x72, 0xb9, 0x00, 0x00, 0x0e, 0xba, 'H','a','n','g','u','l','_','C','i','e','u','c',0,
-0xe6, 0xd7, 0x00, 0x00, 0x0e, 0xbb, 'H','a','n','g','u','l','_','K','h','i','e','u','q',0,
-0x73, 0xda, 0x00, 0x00, 0x0e, 0xbc, 'H','a','n','g','u','l','_','T','i','e','u','t',0,
-0xe7, 0x6c, 0x00, 0x00, 0x0e, 0xbd, 'H','a','n','g','u','l','_','P','h','i','e','u','f',0,
-0x73, 0x0e, 0x00, 0x00, 0x0e, 0xbe, 'H','a','n','g','u','l','_','H','i','e','u','h',0,
-0x56, 0xc7, 0x00, 0x00, 0x0e, 0xbf, 'H','a','n','g','u','l','_','A',0,
-0xad, 0xd3, 0x00, 0x00, 0x0e, 0xc0, 'H','a','n','g','u','l','_','A','E',0,
-0xad, 0xff, 0x00, 0x00, 0x0e, 0xc1, 'H','a','n','g','u','l','_','Y','A',0,
-0x5c, 0x43, 0x00, 0x00, 0x0e, 0xc2, 'H','a','n','g','u','l','_','Y','A','E',0,
-0xad, 0xe5, 0x00, 0x00, 0x0e, 0xc3, 'H','a','n','g','u','l','_','E','O',0,
-0x56, 0xcb, 0x00, 0x00, 0x0e, 0xc4, 'H','a','n','g','u','l','_','E',0,
-0x5c, 0x55, 0x00, 0x00, 0x0e, 0xc5, 'H','a','n','g','u','l','_','Y','E','O',0,
-0xae, 0x03, 0x00, 0x00, 0x0e, 0xc6, 'H','a','n','g','u','l','_','Y','E',0,
-0x56, 0xd5, 0x00, 0x00, 0x0e, 0xc7, 'H','a','n','g','u','l','_','O',0,
-0xad, 0xfb, 0x00, 0x00, 0x0e, 0xc8, 'H','a','n','g','u','l','_','W','A',0,
-0x5c, 0x3b, 0x00, 0x00, 0x0e, 0xc9, 'H','a','n','g','u','l','_','W','A','E',0,
-0xad, 0xef, 0x00, 0x00, 0x0e, 0xca, 'H','a','n','g','u','l','_','O','E',0,
-0xae, 0x0d, 0x00, 0x00, 0x0e, 0xcb, 'H','a','n','g','u','l','_','Y','O',0,
-0x56, 0xdb, 0x00, 0x00, 0x0e, 0xcc, 'H','a','n','g','u','l','_','U',0,
-0x5c, 0x4d, 0x00, 0x00, 0x0e, 0xcd, 'H','a','n','g','u','l','_','W','E','O',0,
-0xad, 0xff, 0x00, 0x00, 0x0e, 0xce, 'H','a','n','g','u','l','_','W','E',0,
-0xae, 0x03, 0x00, 0x00, 0x0e, 0xcf, 'H','a','n','g','u','l','_','W','I',0,
-0xae, 0x13, 0x00, 0x00, 0x0e, 0xd0, 'H','a','n','g','u','l','_','Y','U',0,
-0xad, 0xeb, 0x00, 0x00, 0x0e, 0xd1, 'H','a','n','g','u','l','_','E','U',0,
-0xae, 0x07, 0x00, 0x00, 0x0e, 0xd2, 'H','a','n','g','u','l','_','Y','I',0,
-0x56, 0xcf, 0x00, 0x00, 0x0e, 0xd3, 'H','a','n','g','u','l','_','I',0,
-0x96, 0x51, 0x00, 0x00, 0x0e, 0xd4, 'H','a','n','g','u','l','_','J','_','K','i','y','e','o','g',0,
-0xf2, 0x51, 0x00, 0x00, 0x0e, 0xd5, 'H','a','n','g','u','l','_','J','_','S','s','a','n','g','K','i','y','e','o','g',0,
-0x6a, 0x9d, 0x00, 0x00, 0x0e, 0xd6, 'H','a','n','g','u','l','_','J','_','K','i','y','e','o','g','S','i','o','s',0,
-0xca, 0xf4, 0x00, 0x00, 0x0e, 0xd7, 'H','a','n','g','u','l','_','J','_','N','i','e','u','n',0,
-0x69, 0x50, 0x00, 0x00, 0x0e, 0xd8, 'H','a','n','g','u','l','_','J','_','N','i','e','u','n','J','i','e','u','j',0,
-0x69, 0x2e, 0x00, 0x00, 0x0e, 0xd9, 'H','a','n','g','u','l','_','J','_','N','i','e','u','n','H','i','e','u','h',0,
-0x95, 0x0a, 0x00, 0x00, 0x0e, 0xda, 'H','a','n','g','u','l','_','J','_','D','i','k','e','u','d',0,
-0xcb, 0x32, 0x00, 0x00, 0x0e, 0xdb, 'H','a','n','g','u','l','_','J','_','R','i','e','u','l',0,
-0xe3, 0x11, 0x00, 0x00, 0x0e, 0xdc, 'H','a','n','g','u','l','_','J','_','R','i','e','u','l','K','i','y','e','o','g',0,
-0x71, 0x43, 0x00, 0x00, 0x0e, 0xdd, 'H','a','n','g','u','l','_','J','_','R','i','e','u','l','M','i','e','u','m',0,
-0x71, 0x68, 0x00, 0x00, 0x0e, 0xde, 'H','a','n','g','u','l','_','J','_','R','i','e','u','l','P','i','e','u','b',0,
-0xb8, 0xad, 0x00, 0x00, 0x0e, 0xdf, 'H','a','n','g','u','l','_','J','_','R','i','e','u','l','S','i','o','s',0,
-0x71, 0xba, 0x00, 0x00, 0x0e, 0xe0, 'H','a','n','g','u','l','_','J','_','R','i','e','u','l','T','i','e','u','t',0,
-0xe3, 0x2c, 0x00, 0x00, 0x0e, 0xe1, 'H','a','n','g','u','l','_','J','_','R','i','e','u','l','P','h','i','e','u','f',0,
-0x70, 0xee, 0x00, 0x00, 0x0e, 0xe2, 'H','a','n','g','u','l','_','J','_','R','i','e','u','l','H','i','e','u','h',0,
-0xca, 0xe3, 0x00, 0x00, 0x0e, 0xe3, 'H','a','n','g','u','l','_','J','_','M','i','e','u','m',0,
-0xcb, 0x08, 0x00, 0x00, 0x0e, 0xe4, 'H','a','n','g','u','l','_','J','_','P','i','e','u','b',0,
-0xb6, 0x0d, 0x00, 0x00, 0x0e, 0xe5, 'H','a','n','g','u','l','_','J','_','P','i','e','u','b','S','i','o','s',0,
-0xe5, 0x7d, 0x00, 0x00, 0x0e, 0xe6, 'H','a','n','g','u','l','_','J','_','S','i','o','s',0,
-0xbc, 0x7d, 0x00, 0x00, 0x0e, 0xe7, 'H','a','n','g','u','l','_','J','_','S','s','a','n','g','S','i','o','s',0,
-0xca, 0xaf, 0x00, 0x00, 0x0e, 0xe8, 'H','a','n','g','u','l','_','J','_','I','e','u','n','g',0,
-0xca, 0xb0, 0x00, 0x00, 0x0e, 0xe9, 'H','a','n','g','u','l','_','J','_','J','i','e','u','j',0,
-0xca, 0x39, 0x00, 0x00, 0x0e, 0xea, 'H','a','n','g','u','l','_','J','_','C','i','e','u','c',0,
-0x95, 0xd7, 0x00, 0x00, 0x0e, 0xeb, 'H','a','n','g','u','l','_','J','_','K','h','i','e','u','q',0,
-0xcb, 0x5a, 0x00, 0x00, 0x0e, 0xec, 'H','a','n','g','u','l','_','J','_','T','i','e','u','t',0,
-0x96, 0x6c, 0x00, 0x00, 0x0e, 0xed, 'H','a','n','g','u','l','_','J','_','P','h','i','e','u','f',0,
-0xca, 0x8e, 0x00, 0x00, 0x0e, 0xee, 'H','a','n','g','u','l','_','J','_','H','i','e','u','h',0,
-0x98, 0xae, 0x00, 0x00, 0x0e, 0xef, 'H','a','n','g','u','l','_','R','i','e','u','l','Y','e','o','r','i','n','H','i','e','u','h',0,
-0x7f, 0x63, 0x00, 0x00, 0x0e, 0xf0, 'H','a','n','g','u','l','_','S','u','n','k','y','e','o','n','g','e','u','m','M','i','e','u','m',0,
-0x7f, 0x88, 0x00, 0x00, 0x0e, 0xf1, 'H','a','n','g','u','l','_','S','u','n','k','y','e','o','n','g','e','u','m','P','i','e','u','b',0,
-0xce, 0x0d, 0x00, 0x00, 0x0e, 0xf2, 'H','a','n','g','u','l','_','P','a','n','S','i','o','s',0,
-0xb1, 0xcf, 0x00, 0x00, 0x0e, 0xf3, 'H','a','n','g','u','l','_','K','k','o','g','j','i','D','a','l','r','i','n','I','e','u','n','g',0,
-0xff, 0x6c, 0x00, 0x00, 0x0e, 0xf4, 'H','a','n','g','u','l','_','S','u','n','k','y','e','o','n','g','e','u','m','P','h','i','e','u','f',0,
-0x20, 0xae, 0x00, 0x00, 0x0e, 0xf5, 'H','a','n','g','u','l','_','Y','e','o','r','i','n','H','i','e','u','h',0,
-0x72, 0x8f, 0x00, 0x00, 0x0e, 0xf6, 'H','a','n','g','u','l','_','A','r','a','e','A',0,
-0xe5, 0x63, 0x00, 0x00, 0x0e, 0xf7, 'H','a','n','g','u','l','_','A','r','a','e','A','E',0,
-0x2c, 0x0d, 0x00, 0x00, 0x0e, 0xf8, 'H','a','n','g','u','l','_','J','_','P','a','n','S','i','o','s',0,
-0xb1, 0xcf, 0x00, 0x00, 0x0e, 0xf9, 'H','a','n','g','u','l','_','J','_','K','k','o','g','j','i','D','a','l','r','i','n','I','e','u','n','g',0,
-0x00, 0xae, 0x00, 0x00, 0x0e, 0xfa, 'H','a','n','g','u','l','_','J','_','Y','e','o','r','i','n','H','i','e','u','h',0,
-0x6f, 0xe0, 0x00, 0x00, 0x0e, 0xff, 'K','o','r','e','a','n','_','W','o','n',0,
-0x8a, 0x25, 0x01, 0x00, 0x05, 0x87, 'A','r','m','e','n','i','a','n','_','l','i','g','a','t','u','r','e','_','e','w',0,
-0x63, 0xa6, 0x01, 0x00, 0x05, 0x89, 'A','r','m','e','n','i','a','n','_','f','u','l','l','_','s','t','o','p',0,
-0x36, 0x12, 0x01, 0x00, 0x05, 0x89, 'A','r','m','e','n','i','a','n','_','v','e','r','j','a','k','e','t',0,
-0x50, 0x2b, 0x01, 0x00, 0x05, 0x5d, 'A','r','m','e','n','i','a','n','_','s','e','p','a','r','a','t','i','o','n','_','m','a','r','k',0,
-0x79, 0x1e, 0x01, 0x00, 0x05, 0x5d, 'A','r','m','e','n','i','a','n','_','b','u','t',0,
-0xcc, 0xa8, 0x01, 0x00, 0x05, 0x8a, 'A','r','m','e','n','i','a','n','_','h','y','p','h','e','n',0,
-0x37, 0xb9, 0x01, 0x00, 0x05, 0x8a, 'A','r','m','e','n','i','a','n','_','y','e','n','t','a','m','n','a',0,
-0xcb, 0xd7, 0x01, 0x00, 0x05, 0x5c, 'A','r','m','e','n','i','a','n','_','e','x','c','l','a','m',0,
-0xca, 0x9d, 0x01, 0x00, 0x05, 0x5c, 'A','r','m','e','n','i','a','n','_','a','m','a','n','a','k',0,
-0xca, 0x0c, 0x01, 0x00, 0x05, 0x5b, 'A','r','m','e','n','i','a','n','_','a','c','c','e','n','t',0,
-0xcc, 0xd8, 0x01, 0x00, 0x05, 0x5b, 'A','r','m','e','n','i','a','n','_','s','h','e','s','h','t',0,
-0x37, 0x20, 0x01, 0x00, 0x05, 0x5e, 'A','r','m','e','n','i','a','n','_','q','u','e','s','t','i','o','n',0,
-0xcc, 0x91, 0x01, 0x00, 0x05, 0x5e, 'A','r','m','e','n','i','a','n','_','p','a','r','u','y','k',0,
-0x78, 0x30, 0x01, 0x00, 0x05, 0x31, 'A','r','m','e','n','i','a','n','_','A','Y','B',0,
-0x79, 0x10, 0x01, 0x00, 0x05, 0x61, 'A','r','m','e','n','i','a','n','_','a','y','b',0,
-0x78, 0x18, 0x01, 0x00, 0x05, 0x32, 'A','r','m','e','n','i','a','n','_','B','E','N',0,
-0x78, 0xf8, 0x01, 0x00, 0x05, 0x62, 'A','r','m','e','n','i','a','n','_','b','e','n',0,
-0x78, 0x33, 0x01, 0x00, 0x05, 0x33, 'A','r','m','e','n','i','a','n','_','G','I','M',0,
-0x79, 0x13, 0x01, 0x00, 0x05, 0x63, 'A','r','m','e','n','i','a','n','_','g','i','m',0,
-0xbb, 0xe5, 0x01, 0x00, 0x05, 0x34, 'A','r','m','e','n','i','a','n','_','D','A',0,
-0xbc, 0x45, 0x01, 0x00, 0x05, 0x64, 'A','r','m','e','n','i','a','n','_','d','a',0,
-0xf1, 0x1a, 0x01, 0x00, 0x05, 0x35, 'A','r','m','e','n','i','a','n','_','Y','E','C','H',0,
-0xf2, 0xfa, 0x01, 0x00, 0x05, 0x65, 'A','r','m','e','n','i','a','n','_','y','e','c','h',0,
-0xbc, 0x11, 0x01, 0x00, 0x05, 0x36, 'A','r','m','e','n','i','a','n','_','Z','A',0,
-0xbc, 0x71, 0x01, 0x00, 0x05, 0x66, 'A','r','m','e','n','i','a','n','_','z','a',0,
-0x5d, 0xd3, 0x01, 0x00, 0x05, 0x37, 'A','r','m','e','n','i','a','n','_','E',0,
-0x5d, 0xf3, 0x01, 0x00, 0x05, 0x67, 'A','r','m','e','n','i','a','n','_','e',0,
-0xbb, 0xf2, 0x01, 0x00, 0x05, 0x38, 'A','r','m','e','n','i','a','n','_','A','T',0,
-0xbc, 0x52, 0x01, 0x00, 0x05, 0x68, 'A','r','m','e','n','i','a','n','_','a','t',0,
-0xbc, 0x13, 0x01, 0x00, 0x05, 0x39, 'A','r','m','e','n','i','a','n','_','T','O',0,
-0xbc, 0x73, 0x01, 0x00, 0x05, 0x69, 'A','r','m','e','n','i','a','n','_','t','o',0,
-0x78, 0x75, 0x01, 0x00, 0x05, 0x3a, 'A','r','m','e','n','i','a','n','_','Z','H','E',0,
-0x79, 0x55, 0x01, 0x00, 0x05, 0x6a, 'A','r','m','e','n','i','a','n','_','z','h','e',0,
-0x78, 0x41, 0x01, 0x00, 0x05, 0x3b, 'A','r','m','e','n','i','a','n','_','I','N','I',0,
-0x79, 0x21, 0x01, 0x00, 0x05, 0x6b, 'A','r','m','e','n','i','a','n','_','i','n','i',0,
-0xf1, 0x2c, 0x01, 0x00, 0x05, 0x3c, 'A','r','m','e','n','i','a','n','_','L','Y','U','N',0,
-0xf3, 0x0c, 0x01, 0x00, 0x05, 0x6c, 'A','r','m','e','n','i','a','n','_','l','y','u','n',0,
-0x78, 0x39, 0x01, 0x00, 0x05, 0x3d, 'A','r','m','e','n','i','a','n','_','K','H','E',0,
-0x79, 0x19, 0x01, 0x00, 0x05, 0x6d, 'A','r','m','e','n','i','a','n','_','k','h','e',0,
-0x78, 0x6f, 0x01, 0x00, 0x05, 0x3e, 'A','r','m','e','n','i','a','n','_','T','S','A',0,
-0x79, 0x4f, 0x01, 0x00, 0x05, 0x6e, 'A','r','m','e','n','i','a','n','_','t','s','a',0,
-0x78, 0x3c, 0x01, 0x00, 0x05, 0x3f, 'A','r','m','e','n','i','a','n','_','K','E','N',0,
-0x79, 0x1c, 0x01, 0x00, 0x05, 0x6f, 'A','r','m','e','n','i','a','n','_','k','e','n',0,
-0xbb, 0xfb, 0x01, 0x00, 0x05, 0x40, 'A','r','m','e','n','i','a','n','_','H','O',0,
-0xbc, 0x5b, 0x01, 0x00, 0x05, 0x70, 'A','r','m','e','n','i','a','n','_','h','o',0,
-0x78, 0x3d, 0x01, 0x00, 0x05, 0x41, 'A','r','m','e','n','i','a','n','_','D','Z','A',0,
-0x79, 0x1d, 0x01, 0x00, 0x05, 0x71, 'A','r','m','e','n','i','a','n','_','d','z','a',0,
-0xf0, 0x9e, 0x01, 0x00, 0x05, 0x42, 'A','r','m','e','n','i','a','n','_','G','H','A','T',0,
-0xf2, 0x7e, 0x01, 0x00, 0x05, 0x72, 'A','r','m','e','n','i','a','n','_','g','h','a','t',0,
-0xf0, 0xf1, 0x01, 0x00, 0x05, 0x43, 'A','r','m','e','n','i','a','n','_','T','C','H','E',0,
-0xf2, 0xd1, 0x01, 0x00, 0x05, 0x73, 'A','r','m','e','n','i','a','n','_','t','c','h','e',0,
-0x78, 0x44, 0x01, 0x00, 0x05, 0x44, 'A','r','m','e','n','i','a','n','_','M','E','N',0,
-0x79, 0x24, 0x01, 0x00, 0x05, 0x74, 'A','r','m','e','n','i','a','n','_','m','e','n',0,
-0xbb, 0xf5, 0x01, 0x00, 0x05, 0x45, 'A','r','m','e','n','i','a','n','_','H','I',0,
-0xbc, 0x55, 0x01, 0x00, 0x05, 0x75, 'A','r','m','e','n','i','a','n','_','h','i',0,
-0xbc, 0x0d, 0x01, 0x00, 0x05, 0x46, 'A','r','m','e','n','i','a','n','_','N','U',0,
-0xbc, 0x6d, 0x01, 0x00, 0x05, 0x76, 'A','r','m','e','n','i','a','n','_','n','u',0,
-0x78, 0x55, 0x01, 0x00, 0x05, 0x47, 'A','r','m','e','n','i','a','n','_','S','H','A',0,
-0x79, 0x35, 0x01, 0x00, 0x05, 0x77, 'A','r','m','e','n','i','a','n','_','s','h','a',0,
-0xbc, 0x17, 0x01, 0x00, 0x05, 0x48, 'A','r','m','e','n','i','a','n','_','V','O',0,
-0xbc, 0x77, 0x01, 0x00, 0x05, 0x78, 'A','r','m','e','n','i','a','n','_','v','o',0,
-0x78, 0x15, 0x01, 0x00, 0x05, 0x49, 'A','r','m','e','n','i','a','n','_','C','H','A',0,
-0x78, 0xf5, 0x01, 0x00, 0x05, 0x79, 'A','r','m','e','n','i','a','n','_','c','h','a',0,
-0xbc, 0x01, 0x01, 0x00, 0x05, 0x4a, 'A','r','m','e','n','i','a','n','_','P','E',0,
-0xbc, 0x61, 0x01, 0x00, 0x05, 0x7a, 'A','r','m','e','n','i','a','n','_','p','e',0,
-0xbb, 0xf5, 0x01, 0x00, 0x05, 0x4b, 'A','r','m','e','n','i','a','n','_','J','E',0,
-0xbc, 0x55, 0x01, 0x00, 0x05, 0x7b, 'A','r','m','e','n','i','a','n','_','j','e',0,
-0xbc, 0x01, 0x01, 0x00, 0x05, 0x4c, 'A','r','m','e','n','i','a','n','_','R','A',0,
-0xbc, 0x61, 0x01, 0x00, 0x05, 0x7c, 'A','r','m','e','n','i','a','n','_','r','a',0,
-0xbc, 0x07, 0x01, 0x00, 0x05, 0x4d, 'A','r','m','e','n','i','a','n','_','S','E',0,
-0xbc, 0x67, 0x01, 0x00, 0x05, 0x7d, 'A','r','m','e','n','i','a','n','_','s','e',0,
-0x78, 0x70, 0x01, 0x00, 0x05, 0x4e, 'A','r','m','e','n','i','a','n','_','V','E','V',0,
-0x79, 0x50, 0x01, 0x00, 0x05, 0x7e, 'A','r','m','e','n','i','a','n','_','v','e','v',0,
-0xf1, 0x6c, 0x01, 0x00, 0x05, 0x4f, 'A','r','m','e','n','i','a','n','_','T','Y','U','N',0,
-0xf3, 0x4c, 0x01, 0x00, 0x05, 0x7f, 'A','r','m','e','n','i','a','n','_','t','y','u','n',0,
-0xbc, 0x05, 0x01, 0x00, 0x05, 0x50, 'A','r','m','e','n','i','a','n','_','R','E',0,
-0xbc, 0x65, 0x01, 0x00, 0x05, 0x80, 'A','r','m','e','n','i','a','n','_','r','e',0,
-0x78, 0x7d, 0x01, 0x00, 0x05, 0x51, 'A','r','m','e','n','i','a','n','_','T','S','O',0,
-0x79, 0x5d, 0x01, 0x00, 0x05, 0x81, 'A','r','m','e','n','i','a','n','_','t','s','o',0,
-0xf1, 0x7c, 0x01, 0x00, 0x05, 0x52, 'A','r','m','e','n','i','a','n','_','V','Y','U','N',0,
-0xf3, 0x5c, 0x01, 0x00, 0x05, 0x82, 'A','r','m','e','n','i','a','n','_','v','y','u','n',0,
-0xf1, 0x50, 0x01, 0x00, 0x05, 0x53, 'A','r','m','e','n','i','a','n','_','P','Y','U','R',0,
-0xf3, 0x30, 0x01, 0x00, 0x05, 0x83, 'A','r','m','e','n','i','a','n','_','p','y','u','r',0,
-0xbb, 0xf7, 0x01, 0x00, 0x05, 0x54, 'A','r','m','e','n','i','a','n','_','K','E',0,
-0xbc, 0x57, 0x01, 0x00, 0x05, 0x84, 'A','r','m','e','n','i','a','n','_','k','e',0,
-0x5d, 0xdd, 0x01, 0x00, 0x05, 0x55, 'A','r','m','e','n','i','a','n','_','O',0,
-0x5d, 0xfd, 0x01, 0x00, 0x05, 0x85, 'A','r','m','e','n','i','a','n','_','o',0,
-0xbb, 0xed, 0x01, 0x00, 0x05, 0x56, 'A','r','m','e','n','i','a','n','_','F','E',0,
-0xbc, 0x4d, 0x01, 0x00, 0x05, 0x86, 'A','r','m','e','n','i','a','n','_','f','e',0,
-0xbe, 0x4d, 0x01, 0x00, 0x05, 0x5a, 'A','r','m','e','n','i','a','n','_','a','p','o','s','t','r','o','p','h','e',0,
-0xc1, 0x0c, 0x01, 0x00, 0x10, 0xd0, 'G','e','o','r','g','i','a','n','_','a','n',0,
-0x82, 0x70, 0x01, 0x00, 0x10, 0xd1, 'G','e','o','r','g','i','a','n','_','b','a','n',0,
-0x82, 0x84, 0x01, 0x00, 0x10, 0xd2, 'G','e','o','r','g','i','a','n','_','g','a','n',0,
-0x82, 0x94, 0x01, 0x00, 0x10, 0xd3, 'G','e','o','r','g','i','a','n','_','d','o','n',0,
-0xc1, 0x14, 0x01, 0x00, 0x10, 0xd4, 'G','e','o','r','g','i','a','n','_','e','n',0,
-0x82, 0xd0, 0x01, 0x00, 0x10, 0xd5, 'G','e','o','r','g','i','a','n','_','v','i','n',0,
-0x82, 0xd8, 0x01, 0x00, 0x10, 0xd6, 'G','e','o','r','g','i','a','n','_','z','e','n',0,
-0x82, 0xb8, 0x01, 0x00, 0x10, 0xd7, 'G','e','o','r','g','i','a','n','_','t','a','n',0,
-0xc1, 0x1c, 0x01, 0x00, 0x10, 0xd8, 'G','e','o','r','g','i','a','n','_','i','n',0,
-0x82, 0x94, 0x01, 0x00, 0x10, 0xd9, 'G','e','o','r','g','i','a','n','_','k','a','n',0,
-0x82, 0x9d, 0x01, 0x00, 0x10, 0xda, 'G','e','o','r','g','i','a','n','_','l','a','s',0,
-0x82, 0x9c, 0x01, 0x00, 0x10, 0xdb, 'G','e','o','r','g','i','a','n','_','m','a','n',0,
-0x82, 0xa4, 0x01, 0x00, 0x10, 0xdc, 'G','e','o','r','g','i','a','n','_','n','a','r',0,
-0xc1, 0x28, 0x01, 0x00, 0x10, 0xdd, 'G','e','o','r','g','i','a','n','_','o','n',0,
-0x82, 0xac, 0x01, 0x00, 0x10, 0xde, 'G','e','o','r','g','i','a','n','_','p','a','r',0,
-0x06, 0x14, 0x01, 0x00, 0x10, 0xdf, 'G','e','o','r','g','i','a','n','_','z','h','a','r',0,
-0x82, 0xa7, 0x01, 0x00, 0x10, 0xe0, 'G','e','o','r','g','i','a','n','_','r','a','e',0,
-0x82, 0xb4, 0x01, 0x00, 0x10, 0xe1, 'G','e','o','r','g','i','a','n','_','s','a','n',0,
-0x82, 0xbc, 0x01, 0x00, 0x10, 0xe2, 'G','e','o','r','g','i','a','n','_','t','a','r',0,
-0xc1, 0x34, 0x01, 0x00, 0x10, 0xe3, 'G','e','o','r','g','i','a','n','_','u','n',0,
-0x05, 0xc4, 0x01, 0x00, 0x10, 0xe4, 'G','e','o','r','g','i','a','n','_','p','h','a','r',0,
-0x05, 0x9c, 0x01, 0x00, 0x10, 0xe5, 'G','e','o','r','g','i','a','n','_','k','h','a','r',0,
-0x05, 0x78, 0x01, 0x00, 0x10, 0xe6, 'G','e','o','r','g','i','a','n','_','g','h','a','n',0,
-0x82, 0xb0, 0x01, 0x00, 0x10, 0xe7, 'G','e','o','r','g','i','a','n','_','q','a','r',0,
-0x05, 0xe8, 0x01, 0x00, 0x10, 0xe8, 'G','e','o','r','g','i','a','n','_','s','h','i','n',0,
-0x05, 0x68, 0x01, 0x00, 0x10, 0xe9, 'G','e','o','r','g','i','a','n','_','c','h','i','n',0,
-0x82, 0x74, 0x01, 0x00, 0x10, 0xea, 'G','e','o','r','g','i','a','n','_','c','a','n',0,
-0x82, 0x9e, 0x01, 0x00, 0x10, 0xeb, 'G','e','o','r','g','i','a','n','_','j','i','l',0,
-0x82, 0x82, 0x01, 0x00, 0x10, 0xec, 'G','e','o','r','g','i','a','n','_','c','i','l',0,
-0x05, 0x5c, 0x01, 0x00, 0x10, 0xed, 'G','e','o','r','g','i','a','n','_','c','h','a','r',0,
-0x82, 0xc8, 0x01, 0x00, 0x10, 0xee, 'G','e','o','r','g','i','a','n','_','x','a','n',0,
-0x05, 0x90, 0x01, 0x00, 0x10, 0xef, 'G','e','o','r','g','i','a','n','_','j','h','a','n',0,
-0x82, 0x7f, 0x01, 0x00, 0x10, 0xf0, 'G','e','o','r','g','i','a','n','_','h','a','e',0,
-0xc1, 0x11, 0x01, 0x00, 0x10, 0xf1, 'G','e','o','r','g','i','a','n','_','h','e',0,
-0x82, 0x8f, 0x01, 0x00, 0x10, 0xf2, 'G','e','o','r','g','i','a','n','_','h','i','e',0,
-0xc1, 0x2f, 0x01, 0x00, 0x10, 0xf3, 'G','e','o','r','g','i','a','n','_','w','e',0,
-0x82, 0x8c, 0x01, 0x00, 0x10, 0xf4, 'G','e','o','r','g','i','a','n','_','h','a','r',0,
-0x82, 0x9b, 0x01, 0x00, 0x10, 0xf5, 'G','e','o','r','g','i','a','n','_','h','o','e',0,
-0xc1, 0x11, 0x01, 0x00, 0x10, 0xf6, 'G','e','o','r','g','i','a','n','_','f','i',0,
-0xbc, 0x4a, 0x01, 0x00, 0x1e, 0x8a, 'X','a','b','o','v','e','d','o','t',0,
-0x15, 0xb5, 0x01, 0x00, 0x01, 0x2c, 'I','b','r','e','v','e',0,
-0x32, 0xa7, 0x01, 0x00, 0x01, 0xb5, 'Z','s','t','r','o','k','e',0,
-0x15, 0x2c, 0x01, 0x00, 0x01, 0xe6, 'G','c','a','r','o','n',0,
-0x16, 0x2c, 0x01, 0x00, 0x01, 0xd1, 'O','c','a','r','o','n',0,
-0x2c, 0x96, 0x01, 0x00, 0x01, 0x9f, 'O','b','a','r','r','e','d',0,
-0xdc, 0x4a, 0x01, 0x00, 0x1e, 0x8b, 'x','a','b','o','v','e','d','o','t',0,
-0x19, 0xb5, 0x01, 0x00, 0x01, 0x2d, 'i','b','r','e','v','e',0,
-0x3a, 0xa7, 0x01, 0x00, 0x01, 0xb6, 'z','s','t','r','o','k','e',0,
-0x19, 0x2c, 0x01, 0x00, 0x01, 0xe7, 'g','c','a','r','o','n',0,
-0x1a, 0x2c, 0x01, 0x00, 0x01, 0xd2, 'o','c','a','r','o','n',0,
-0x34, 0x96, 0x01, 0x00, 0x02, 0x75, 'o','b','a','r','r','e','d',0,
-0x09, 0x57, 0x01, 0x00, 0x01, 0x8f, 'S','C','H','W','A',0,
-0x0d, 0x37, 0x01, 0x00, 0x02, 0x59, 's','c','h','w','a',0,
-0xb1, 0x4a, 0x01, 0x00, 0x1e, 0x36, 'L','b','e','l','o','w','d','o','t',0,
-0xd1, 0x4a, 0x01, 0x00, 0x1e, 0x37, 'l','b','e','l','o','w','d','o','t',0,
-0xa6, 0x4a, 0x01, 0x00, 0x1e, 0xa0, 'A','b','e','l','o','w','d','o','t',0,
-0xc6, 0x4a, 0x01, 0x00, 0x1e, 0xa1, 'a','b','e','l','o','w','d','o','t',0,
-0x0a, 0x55, 0x01, 0x00, 0x1e, 0xa2, 'A','h','o','o','k',0,
-0x0c, 0x55, 0x01, 0x00, 0x1e, 0xa3, 'a','h','o','o','k',0,
-0x16, 0x89, 0x01, 0x00, 0x1e, 0xa4, 'A','c','i','r','c','u','m','f','l','e','x','a','c','u','t','e',0,
-0x16, 0x89, 0x01, 0x00, 0x1e, 0xa5, 'a','c','i','r','c','u','m','f','l','e','x','a','c','u','t','e',0,
-0x17, 0x15, 0x01, 0x00, 0x1e, 0xa6, 'A','c','i','r','c','u','m','f','l','e','x','g','r','a','v','e',0,
-0x17, 0x15, 0x01, 0x00, 0x1e, 0xa7, 'a','c','i','r','c','u','m','f','l','e','x','g','r','a','v','e',0,
-0x0b, 0x65, 0x01, 0x00, 0x1e, 0xa8, 'A','c','i','r','c','u','m','f','l','e','x','h','o','o','k',0,
-0x0b, 0x65, 0x01, 0x00, 0x1e, 0xa9, 'a','c','i','r','c','u','m','f','l','e','x','h','o','o','k',0,
-0x17, 0xa5, 0x01, 0x00, 0x1e, 0xaa, 'A','c','i','r','c','u','m','f','l','e','x','t','i','l','d','e',0,
-0x17, 0xa5, 0x01, 0x00, 0x1e, 0xab, 'a','c','i','r','c','u','m','f','l','e','x','t','i','l','d','e',0,
-0xb7, 0x4a, 0x01, 0x00, 0x1e, 0xac, 'A','c','i','r','c','u','m','f','l','e','x','b','e','l','o','w','d','o','t',0,
-0xb7, 0x4a, 0x01, 0x00, 0x1e, 0xad, 'a','c','i','r','c','u','m','f','l','e','x','b','e','l','o','w','d','o','t',0,
-0xa2, 0xe9, 0x01, 0x00, 0x1e, 0xae, 'A','b','r','e','v','e','a','c','u','t','e',0,
-0x22, 0xe9, 0x01, 0x00, 0x1e, 0xaf, 'a','b','r','e','v','e','a','c','u','t','e',0,
-0xa3, 0x75, 0x01, 0x00, 0x1e, 0xb0, 'A','b','r','e','v','e','g','r','a','v','e',0,
-0x23, 0x75, 0x01, 0x00, 0x1e, 0xb1, 'a','b','r','e','v','e','g','r','a','v','e',0,
-0x51, 0x95, 0x01, 0x00, 0x1e, 0xb2, 'A','b','r','e','v','e','h','o','o','k',0,
-0x91, 0x95, 0x01, 0x00, 0x1e, 0xb3, 'a','b','r','e','v','e','h','o','o','k',0,
-0xa4, 0x05, 0x01, 0x00, 0x1e, 0xb4, 'A','b','r','e','v','e','t','i','l','d','e',0,
-0x24, 0x05, 0x01, 0x00, 0x1e, 0xb5, 'a','b','r','e','v','e','t','i','l','d','e',0,
-0x1a, 0x4a, 0x01, 0x00, 0x1e, 0xb6, 'A','b','r','e','v','e','b','e','l','o','w','d','o','t',0,
-0x1a, 0x4a, 0x01, 0x00, 0x1e, 0xb7, 'a','b','r','e','v','e','b','e','l','o','w','d','o','t',0,
-0xaa, 0x4a, 0x01, 0x00, 0x1e, 0xb8, 'E','b','e','l','o','w','d','o','t',0,
-0xca, 0x4a, 0x01, 0x00, 0x1e, 0xb9, 'e','b','e','l','o','w','d','o','t',0,
-0x0a, 0x95, 0x01, 0x00, 0x1e, 0xba, 'E','h','o','o','k',0,
-0x0c, 0x95, 0x01, 0x00, 0x1e, 0xbb, 'e','h','o','o','k',0,
-0x16, 0x05, 0x01, 0x00, 0x1e, 0xbc, 'E','t','i','l','d','e',0,
-0x1a, 0x05, 0x01, 0x00, 0x1e, 0xbd, 'e','t','i','l','d','e',0,
-0x16, 0x89, 0x01, 0x00, 0x1e, 0xbe, 'E','c','i','r','c','u','m','f','l','e','x','a','c','u','t','e',0,
-0x16, 0x89, 0x01, 0x00, 0x1e, 0xbf, 'e','c','i','r','c','u','m','f','l','e','x','a','c','u','t','e',0,
-0x17, 0x15, 0x01, 0x00, 0x1e, 0xc0, 'E','c','i','r','c','u','m','f','l','e','x','g','r','a','v','e',0,
-0x17, 0x15, 0x01, 0x00, 0x1e, 0xc1, 'e','c','i','r','c','u','m','f','l','e','x','g','r','a','v','e',0,
-0x0b, 0x65, 0x01, 0x00, 0x1e, 0xc2, 'E','c','i','r','c','u','m','f','l','e','x','h','o','o','k',0,
-0x0b, 0x65, 0x01, 0x00, 0x1e, 0xc3, 'e','c','i','r','c','u','m','f','l','e','x','h','o','o','k',0,
-0x17, 0xa5, 0x01, 0x00, 0x1e, 0xc4, 'E','c','i','r','c','u','m','f','l','e','x','t','i','l','d','e',0,
-0x17, 0xa5, 0x01, 0x00, 0x1e, 0xc5, 'e','c','i','r','c','u','m','f','l','e','x','t','i','l','d','e',0,
-0xb7, 0x4a, 0x01, 0x00, 0x1e, 0xc6, 'E','c','i','r','c','u','m','f','l','e','x','b','e','l','o','w','d','o','t',0,
-0xb7, 0x4a, 0x01, 0x00, 0x1e, 0xc7, 'e','c','i','r','c','u','m','f','l','e','x','b','e','l','o','w','d','o','t',0,
-0x0a, 0xd5, 0x01, 0x00, 0x1e, 0xc8, 'I','h','o','o','k',0,
-0x0c, 0xd5, 0x01, 0x00, 0x1e, 0xc9, 'i','h','o','o','k',0,
-0xae, 0x4a, 0x01, 0x00, 0x1e, 0xca, 'I','b','e','l','o','w','d','o','t',0,
-0xce, 0x4a, 0x01, 0x00, 0x1e, 0xcb, 'i','b','e','l','o','w','d','o','t',0,
-0xb4, 0x4a, 0x01, 0x00, 0x1e, 0xcc, 'O','b','e','l','o','w','d','o','t',0,
-0xd4, 0x4a, 0x01, 0x00, 0x1e, 0xcd, 'o','b','e','l','o','w','d','o','t',0,
-0x0b, 0x35, 0x01, 0x00, 0x1e, 0xce, 'O','h','o','o','k',0,
-0x0d, 0x35, 0x01, 0x00, 0x1e, 0xcf, 'o','h','o','o','k',0,
-0x16, 0x89, 0x01, 0x00, 0x1e, 0xd0, 'O','c','i','r','c','u','m','f','l','e','x','a','c','u','t','e',0,
-0x16, 0x89, 0x01, 0x00, 0x1e, 0xd1, 'o','c','i','r','c','u','m','f','l','e','x','a','c','u','t','e',0,
-0x17, 0x15, 0x01, 0x00, 0x1e, 0xd2, 'O','c','i','r','c','u','m','f','l','e','x','g','r','a','v','e',0,
-0x17, 0x15, 0x01, 0x00, 0x1e, 0xd3, 'o','c','i','r','c','u','m','f','l','e','x','g','r','a','v','e',0,
-0x8b, 0x65, 0x01, 0x00, 0x1e, 0xd4, 'O','c','i','r','c','u','m','f','l','e','x','h','o','o','k',0,
-0x8b, 0x65, 0x01, 0x00, 0x1e, 0xd5, 'o','c','i','r','c','u','m','f','l','e','x','h','o','o','k',0,
-0x17, 0xa5, 0x01, 0x00, 0x1e, 0xd6, 'O','c','i','r','c','u','m','f','l','e','x','t','i','l','d','e',0,
-0x17, 0xa5, 0x01, 0x00, 0x1e, 0xd7, 'o','c','i','r','c','u','m','f','l','e','x','t','i','l','d','e',0,
-0xb7, 0x4a, 0x01, 0x00, 0x1e, 0xd8, 'O','c','i','r','c','u','m','f','l','e','x','b','e','l','o','w','d','o','t',0,
-0xb7, 0x4a, 0x01, 0x00, 0x1e, 0xd9, 'o','c','i','r','c','u','m','f','l','e','x','b','e','l','o','w','d','o','t',0,
-0x74, 0x09, 0x01, 0x00, 0x1e, 0xda, 'O','h','o','r','n','a','c','u','t','e',0,
-0xb4, 0x09, 0x01, 0x00, 0x1e, 0xdb, 'o','h','o','r','n','a','c','u','t','e',0,
-0x74, 0x95, 0x01, 0x00, 0x1e, 0xdc, 'O','h','o','r','n','g','r','a','v','e',0,
-0xb4, 0x95, 0x01, 0x00, 0x1e, 0xdd, 'o','h','o','r','n','g','r','a','v','e',0,
-0xba, 0x25, 0x01, 0x00, 0x1e, 0xde, 'O','h','o','r','n','h','o','o','k',0,
-0xda, 0x25, 0x01, 0x00, 0x1e, 0xdf, 'o','h','o','r','n','h','o','o','k',0,
-0x75, 0x25, 0x01, 0x00, 0x1e, 0xe0, 'O','h','o','r','n','t','i','l','d','e',0,
-0xb5, 0x25, 0x01, 0x00, 0x1e, 0xe1, 'o','h','o','r','n','t','i','l','d','e',0,
-0xa3, 0x4a, 0x01, 0x00, 0x1e, 0xe2, 'O','h','o','r','n','b','e','l','o','w','d','o','t',0,
-0xa3, 0x4a, 0x01, 0x00, 0x1e, 0xe3, 'o','h','o','r','n','b','e','l','o','w','d','o','t',0,
-0xba, 0x4a, 0x01, 0x00, 0x1e, 0xe4, 'U','b','e','l','o','w','d','o','t',0,
-0xda, 0x4a, 0x01, 0x00, 0x1e, 0xe5, 'u','b','e','l','o','w','d','o','t',0,
-0x0b, 0x95, 0x01, 0x00, 0x1e, 0xe6, 'U','h','o','o','k',0,
-0x0d, 0x95, 0x01, 0x00, 0x1e, 0xe7, 'u','h','o','o','k',0,
-0x80, 0x09, 0x01, 0x00, 0x1e, 0xe8, 'U','h','o','r','n','a','c','u','t','e',0,
-0xc0, 0x09, 0x01, 0x00, 0x1e, 0xe9, 'u','h','o','r','n','a','c','u','t','e',0,
-0x80, 0x95, 0x01, 0x00, 0x1e, 0xea, 'U','h','o','r','n','g','r','a','v','e',0,
-0xc0, 0x95, 0x01, 0x00, 0x1e, 0xeb, 'u','h','o','r','n','g','r','a','v','e',0,
-0xc0, 0x25, 0x01, 0x00, 0x1e, 0xec, 'U','h','o','r','n','h','o','o','k',0,
-0xe0, 0x25, 0x01, 0x00, 0x1e, 0xed, 'u','h','o','r','n','h','o','o','k',0,
-0x81, 0x25, 0x01, 0x00, 0x1e, 0xee, 'U','h','o','r','n','t','i','l','d','e',0,
-0xc1, 0x25, 0x01, 0x00, 0x1e, 0xef, 'u','h','o','r','n','t','i','l','d','e',0,
-0x03, 0x4a, 0x01, 0x00, 0x1e, 0xf0, 'U','h','o','r','n','b','e','l','o','w','d','o','t',0,
-0x03, 0x4a, 0x01, 0x00, 0x1e, 0xf1, 'u','h','o','r','n','b','e','l','o','w','d','o','t',0,
-0xbe, 0x4a, 0x01, 0x00, 0x1e, 0xf4, 'Y','b','e','l','o','w','d','o','t',0,
-0xde, 0x4a, 0x01, 0x00, 0x1e, 0xf5, 'y','b','e','l','o','w','d','o','t',0,
-0x0b, 0xd5, 0x01, 0x00, 0x1e, 0xf6, 'Y','h','o','o','k',0,
-0x0d, 0xd5, 0x01, 0x00, 0x1e, 0xf7, 'y','h','o','o','k',0,
-0x18, 0x85, 0x01, 0x00, 0x1e, 0xf8, 'Y','t','i','l','d','e',0,
-0x1c, 0x85, 0x01, 0x00, 0x1e, 0xf9, 'y','t','i','l','d','e',0,
-0x0b, 0x3e, 0x01, 0x00, 0x01, 0xa0, 'O','h','o','r','n',0,
-0x0d, 0x3e, 0x01, 0x00, 0x01, 0xa1, 'o','h','o','r','n',0,
-0x0b, 0x9e, 0x01, 0x00, 0x01, 0xaf, 'U','h','o','r','n',0,
-0x0d, 0x9e, 0x01, 0x00, 0x01, 0xb0, 'u','h','o','r','n',0,
-0x2a, 0x68, 0x01, 0x00, 0x20, 0xa0, 'E','c','u','S','i','g','n',0,
-0xaf, 0xb8, 0x01, 0x00, 0x20, 0xa1, 'C','o','l','o','n','S','i','g','n',0,
-0xab, 0x68, 0x01, 0x00, 0x20, 0xa2, 'C','r','u','z','e','i','r','o','S','i','g','n',0,
-0x3c, 0xa8, 0x01, 0x00, 0x20, 0xa3, 'F','F','r','a','n','c','S','i','g','n',0,
-0x5a, 0x08, 0x01, 0x00, 0x20, 0xa4, 'L','i','r','a','S','i','g','n',0,
-0x5a, 0x78, 0x01, 0x00, 0x20, 0xa5, 'M','i','l','l','S','i','g','n',0,
-0xb2, 0x88, 0x01, 0x00, 0x20, 0xa6, 'N','a','i','r','a','S','i','g','n',0,
-0x71, 0xc8, 0x01, 0x00, 0x20, 0xa7, 'P','e','s','e','t','a','S','i','g','n',0,
-0xc0, 0xe8, 0x01, 0x00, 0x20, 0xa8, 'R','u','p','e','e','S','i','g','n',0,
-0x2f, 0xf8, 0x01, 0x00, 0x20, 0xa9, 'W','o','n','S','i','g','n',0,
-0x59, 0x98, 0x01, 0x00, 0x20, 0xaa, 'N','e','w','S','h','e','q','e','l','S','i','g','n',0,
-0x57, 0x68, 0x01, 0x00, 0x20, 0xab, 'D','o','n','g','S','i','g','n',0,
-0x5a, 0x68, 0x00, 0x00, 0x20, 0xac, 'E','u','r','o','S','i','g','n',0,
-0x28, 0x94, 0x01, 0x00, 0x20, 0x70, 'z','e','r','o','s','u','p','e','r','i','o','r',0,
-0xb9, 0x94, 0x01, 0x00, 0x20, 0x74, 'f','o','u','r','s','u','p','e','r','i','o','r',0,
-0x96, 0x94, 0x01, 0x00, 0x20, 0x75, 'f','i','v','e','s','u','p','e','r','i','o','r',0,
-0x87, 0x94, 0x01, 0x00, 0x20, 0x76, 's','i','x','s','u','p','e','r','i','o','r',0,
-0xd9, 0x94, 0x01, 0x00, 0x20, 0x77, 's','e','v','e','n','s','u','p','e','r','i','o','r',0,
-0xe9, 0x94, 0x01, 0x00, 0x20, 0x78, 'e','i','g','h','t','s','u','p','e','r','i','o','r',0,
-0xc6, 0x94, 0x01, 0x00, 0x20, 0x79, 'n','i','n','e','s','u','p','e','r','i','o','r',0,
-0x4f, 0x18, 0x01, 0x00, 0x20, 0x80, 'z','e','r','o','s','u','b','s','c','r','i','p','t',0,
-0xdb, 0x18, 0x01, 0x00, 0x20, 0x81, 'o','n','e','s','u','b','s','c','r','i','p','t',0,
-0x3b, 0x18, 0x01, 0x00, 0x20, 0x82, 't','w','o','s','u','b','s','c','r','i','p','t',0,
-0xcf, 0x18, 0x01, 0x00, 0x20, 0x83, 't','h','r','e','e','s','u','b','s','c','r','i','p','t',0,
-0x71, 0x18, 0x01, 0x00, 0x20, 0x84, 'f','o','u','r','s','u','b','s','c','r','i','p','t',0,
-0x2b, 0x18, 0x01, 0x00, 0x20, 0x85, 'f','i','v','e','s','u','b','s','c','r','i','p','t',0,
-0x0d, 0x18, 0x01, 0x00, 0x20, 0x86, 's','i','x','s','u','b','s','c','r','i','p','t',0,
-0xb1, 0x18, 0x01, 0x00, 0x20, 0x87, 's','e','v','e','n','s','u','b','s','c','r','i','p','t',0,
-0xd1, 0x18, 0x01, 0x00, 0x20, 0x88, 'e','i','g','h','t','s','u','b','s','c','r','i','p','t',0,
-0x8b, 0x18, 0x01, 0x00, 0x20, 0x89, 'n','i','n','e','s','u','b','s','c','r','i','p','t',0,
-0x1e, 0xf2, 0x01, 0x00, 0x22, 0x02, 'p','a','r','t','d','i','f','f','e','r','e','n','t','i','a','l',0,
-0x69, 0xd2, 0x01, 0x00, 0x22, 0x05, 'e','m','p','t','y','s','e','t',0,
-0xce, 0xb4, 0x01, 0x00, 0x22, 0x08, 'e','l','e','m','e','n','t','o','f',0,
-0xe2, 0xb4, 0x01, 0x00, 0x22, 0x09, 'n','o','t','e','l','e','m','e','n','t','o','f',0,
-0xa2, 0x21, 0x01, 0x00, 0x22, 0x0b, 'c','o','n','t','a','i','n','s','a','s',0,
-0xc4, 0xee, 0x01, 0x00, 0x22, 0x1a, 's','q','u','a','r','e','r','o','o','t',0,
-0x67, 0xee, 0x01, 0x00, 0x22, 0x1b, 'c','u','b','e','r','o','o','t',0,
-0xad, 0x9e, 0x01, 0x00, 0x22, 0x1c, 'f','o','u','r','t','h','r','o','o','t',0,
-0xce, 0xfe, 0x01, 0x00, 0x22, 0x2c, 'd','i','n','t','e','g','r','a','l',0,
-0xde, 0xfe, 0x01, 0x00, 0x22, 0x2d, 't','i','n','t','e','g','r','a','l',0,
-0x31, 0x77, 0x01, 0x00, 0x22, 0x35, 'b','e','c','a','u','s','e',0,
-0x68, 0x33, 0x01, 0x00, 0x22, 0x48, 'a','p','p','r','o','x','e','q',0,
-0x72, 0x33, 0x01, 0x00, 0x22, 0x47, 'n','o','t','a','p','p','r','o','x','e','q',0,
-0xe3, 0x42, 0x01, 0x00, 0x22, 0x62, 'n','o','t','i','d','e','n','t','i','c','a','l',0,
-0x71, 0x73, 0x01, 0x00, 0x22, 0x63, 's','t','r','i','c','t','e','q',0,
-0xd9, 0x97, 0x00, 0x00, 0xff, 0xf1, 'b','r','a','i','l','l','e','_','d','o','t','_','1',0,
-0xd9, 0x98, 0x00, 0x00, 0xff, 0xf2, 'b','r','a','i','l','l','e','_','d','o','t','_','2',0,
-0xd9, 0x99, 0x00, 0x00, 0xff, 0xf3, 'b','r','a','i','l','l','e','_','d','o','t','_','3',0,
-0xd9, 0x9a, 0x00, 0x00, 0xff, 0xf4, 'b','r','a','i','l','l','e','_','d','o','t','_','4',0,
-0xd9, 0x9b, 0x00, 0x00, 0xff, 0xf5, 'b','r','a','i','l','l','e','_','d','o','t','_','5',0,
-0xd9, 0x9c, 0x00, 0x00, 0xff, 0xf6, 'b','r','a','i','l','l','e','_','d','o','t','_','6',0,
-0xd9, 0x9d, 0x00, 0x00, 0xff, 0xf7, 'b','r','a','i','l','l','e','_','d','o','t','_','7',0,
-0xd9, 0x9e, 0x00, 0x00, 0xff, 0xf8, 'b','r','a','i','l','l','e','_','d','o','t','_','8',0,
-0xd9, 0x9f, 0x00, 0x00, 0xff, 0xf9, 'b','r','a','i','l','l','e','_','d','o','t','_','9',0,
-0xb3, 0x5e, 0x00, 0x00, 0xff, 0xfa, 'b','r','a','i','l','l','e','_','d','o','t','_','1','0',0,
-0xd9, 0x6b, 0x01, 0x00, 0x28, 0x00, 'b','r','a','i','l','l','e','_','b','l','a','n','k',0,
-0xb4, 0x0b, 0x01, 0x00, 0x28, 0x01, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1',0,
-0xb4, 0x0c, 0x01, 0x00, 0x28, 0x02, 'b','r','a','i','l','l','e','_','d','o','t','s','_','2',0,
-0x68, 0x48, 0x01, 0x00, 0x28, 0x03, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','2',0,
-0xb4, 0x0d, 0x01, 0x00, 0x28, 0x04, 'b','r','a','i','l','l','e','_','d','o','t','s','_','3',0,
-0x68, 0x49, 0x01, 0x00, 0x28, 0x05, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','3',0,
-0x68, 0x4b, 0x01, 0x00, 0x28, 0x06, 'b','r','a','i','l','l','e','_','d','o','t','s','_','2','3',0,
-0xd0, 0xc3, 0x01, 0x00, 0x28, 0x07, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','2','3',0,
-0xb4, 0x0e, 0x01, 0x00, 0x28, 0x08, 'b','r','a','i','l','l','e','_','d','o','t','s','_','4',0,
-0x68, 0x4a, 0x01, 0x00, 0x28, 0x09, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','4',0,
-0x68, 0x4c, 0x01, 0x00, 0x28, 0x0a, 'b','r','a','i','l','l','e','_','d','o','t','s','_','2','4',0,
-0xd0, 0xc4, 0x01, 0x00, 0x28, 0x0b, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','2','4',0,
-0x68, 0x4e, 0x01, 0x00, 0x28, 0x0c, 'b','r','a','i','l','l','e','_','d','o','t','s','_','3','4',0,
-0xd0, 0xc6, 0x01, 0x00, 0x28, 0x0d, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','3','4',0,
-0xd0, 0xca, 0x01, 0x00, 0x28, 0x0e, 'b','r','a','i','l','l','e','_','d','o','t','s','_','2','3','4',0,
-0xa1, 0xba, 0x01, 0x00, 0x28, 0x0f, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','2','3','4',0,
-0xb4, 0x0f, 0x01, 0x00, 0x28, 0x10, 'b','r','a','i','l','l','e','_','d','o','t','s','_','5',0,
-0x68, 0x4b, 0x01, 0x00, 0x28, 0x11, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','5',0,
-0x68, 0x4d, 0x01, 0x00, 0x28, 0x12, 'b','r','a','i','l','l','e','_','d','o','t','s','_','2','5',0,
-0xd0, 0xc5, 0x01, 0x00, 0x28, 0x13, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','2','5',0,
-0x68, 0x4f, 0x01, 0x00, 0x28, 0x14, 'b','r','a','i','l','l','e','_','d','o','t','s','_','3','5',0,
-0xd0, 0xc7, 0x01, 0x00, 0x28, 0x15, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','3','5',0,
-0xd0, 0xcb, 0x01, 0x00, 0x28, 0x16, 'b','r','a','i','l','l','e','_','d','o','t','s','_','2','3','5',0,
-0xa1, 0xbb, 0x01, 0x00, 0x28, 0x17, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','2','3','5',0,
-0x68, 0x51, 0x01, 0x00, 0x28, 0x18, 'b','r','a','i','l','l','e','_','d','o','t','s','_','4','5',0,
-0xd0, 0xc9, 0x01, 0x00, 0x28, 0x19, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','4','5',0,
-0xd0, 0xcd, 0x01, 0x00, 0x28, 0x1a, 'b','r','a','i','l','l','e','_','d','o','t','s','_','2','4','5',0,
-0xa1, 0xbd, 0x01, 0x00, 0x28, 0x1b, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','2','4','5',0,
-0xd0, 0xd1, 0x01, 0x00, 0x28, 0x1c, 'b','r','a','i','l','l','e','_','d','o','t','s','_','3','4','5',0,
-0xa1, 0xc1, 0x01, 0x00, 0x28, 0x1d, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','3','4','5',0,
-0xa1, 0xc9, 0x01, 0x00, 0x28, 0x1e, 'b','r','a','i','l','l','e','_','d','o','t','s','_','2','3','4','5',0,
-0x43, 0xa9, 0x01, 0x00, 0x28, 0x1f, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','2','3','4','5',0,
-0xb4, 0x10, 0x01, 0x00, 0x28, 0x20, 'b','r','a','i','l','l','e','_','d','o','t','s','_','6',0,
-0x68, 0x4c, 0x01, 0x00, 0x28, 0x21, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','6',0,
-0x68, 0x4e, 0x01, 0x00, 0x28, 0x22, 'b','r','a','i','l','l','e','_','d','o','t','s','_','2','6',0,
-0xd0, 0xc6, 0x01, 0x00, 0x28, 0x23, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','2','6',0,
-0x68, 0x50, 0x01, 0x00, 0x28, 0x24, 'b','r','a','i','l','l','e','_','d','o','t','s','_','3','6',0,
-0xd0, 0xc8, 0x01, 0x00, 0x28, 0x25, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','3','6',0,
-0xd0, 0xcc, 0x01, 0x00, 0x28, 0x26, 'b','r','a','i','l','l','e','_','d','o','t','s','_','2','3','6',0,
-0xa1, 0xbc, 0x01, 0x00, 0x28, 0x27, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','2','3','6',0,
-0x68, 0x52, 0x01, 0x00, 0x28, 0x28, 'b','r','a','i','l','l','e','_','d','o','t','s','_','4','6',0,
-0xd0, 0xca, 0x01, 0x00, 0x28, 0x29, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','4','6',0,
-0xd0, 0xce, 0x01, 0x00, 0x28, 0x2a, 'b','r','a','i','l','l','e','_','d','o','t','s','_','2','4','6',0,
-0xa1, 0xbe, 0x01, 0x00, 0x28, 0x2b, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','2','4','6',0,
-0xd0, 0xd2, 0x01, 0x00, 0x28, 0x2c, 'b','r','a','i','l','l','e','_','d','o','t','s','_','3','4','6',0,
-0xa1, 0xc2, 0x01, 0x00, 0x28, 0x2d, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','3','4','6',0,
-0xa1, 0xca, 0x01, 0x00, 0x28, 0x2e, 'b','r','a','i','l','l','e','_','d','o','t','s','_','2','3','4','6',0,
-0x43, 0xaa, 0x01, 0x00, 0x28, 0x2f, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','2','3','4','6',0,
-0x68, 0x54, 0x01, 0x00, 0x28, 0x30, 'b','r','a','i','l','l','e','_','d','o','t','s','_','5','6',0,
-0xd0, 0xcc, 0x01, 0x00, 0x28, 0x31, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','5','6',0,
-0xd0, 0xd0, 0x01, 0x00, 0x28, 0x32, 'b','r','a','i','l','l','e','_','d','o','t','s','_','2','5','6',0,
-0xa1, 0xc0, 0x01, 0x00, 0x28, 0x33, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','2','5','6',0,
-0xd0, 0xd4, 0x01, 0x00, 0x28, 0x34, 'b','r','a','i','l','l','e','_','d','o','t','s','_','3','5','6',0,
-0xa1, 0xc4, 0x01, 0x00, 0x28, 0x35, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','3','5','6',0,
-0xa1, 0xcc, 0x01, 0x00, 0x28, 0x36, 'b','r','a','i','l','l','e','_','d','o','t','s','_','2','3','5','6',0,
-0x43, 0xac, 0x01, 0x00, 0x28, 0x37, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','2','3','5','6',0,
-0xd0, 0xd8, 0x01, 0x00, 0x28, 0x38, 'b','r','a','i','l','l','e','_','d','o','t','s','_','4','5','6',0,
-0xa1, 0xc8, 0x01, 0x00, 0x28, 0x39, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','4','5','6',0,
-0xa1, 0xd0, 0x01, 0x00, 0x28, 0x3a, 'b','r','a','i','l','l','e','_','d','o','t','s','_','2','4','5','6',0,
-0x43, 0xb0, 0x01, 0x00, 0x28, 0x3b, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','2','4','5','6',0,
-0xa1, 0xd8, 0x01, 0x00, 0x28, 0x3c, 'b','r','a','i','l','l','e','_','d','o','t','s','_','3','4','5','6',0,
-0x43, 0xb8, 0x01, 0x00, 0x28, 0x3d, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','3','4','5','6',0,
-0x43, 0xc8, 0x01, 0x00, 0x28, 0x3e, 'b','r','a','i','l','l','e','_','d','o','t','s','_','2','3','4','5','6',0,
-0x87, 0x88, 0x01, 0x00, 0x28, 0x3f, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','2','3','4','5','6',0,
-0xb4, 0x11, 0x01, 0x00, 0x28, 0x40, 'b','r','a','i','l','l','e','_','d','o','t','s','_','7',0,
-0x68, 0x4d, 0x01, 0x00, 0x28, 0x41, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','7',0,
-0x68, 0x4f, 0x01, 0x00, 0x28, 0x42, 'b','r','a','i','l','l','e','_','d','o','t','s','_','2','7',0,
-0xd0, 0xc7, 0x01, 0x00, 0x28, 0x43, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','2','7',0,
-0x68, 0x51, 0x01, 0x00, 0x28, 0x44, 'b','r','a','i','l','l','e','_','d','o','t','s','_','3','7',0,
-0xd0, 0xc9, 0x01, 0x00, 0x28, 0x45, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','3','7',0,
-0xd0, 0xcd, 0x01, 0x00, 0x28, 0x46, 'b','r','a','i','l','l','e','_','d','o','t','s','_','2','3','7',0,
-0xa1, 0xbd, 0x01, 0x00, 0x28, 0x47, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','2','3','7',0,
-0x68, 0x53, 0x01, 0x00, 0x28, 0x48, 'b','r','a','i','l','l','e','_','d','o','t','s','_','4','7',0,
-0xd0, 0xcb, 0x01, 0x00, 0x28, 0x49, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','4','7',0,
-0xd0, 0xcf, 0x01, 0x00, 0x28, 0x4a, 'b','r','a','i','l','l','e','_','d','o','t','s','_','2','4','7',0,
-0xa1, 0xbf, 0x01, 0x00, 0x28, 0x4b, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','2','4','7',0,
-0xd0, 0xd3, 0x01, 0x00, 0x28, 0x4c, 'b','r','a','i','l','l','e','_','d','o','t','s','_','3','4','7',0,
-0xa1, 0xc3, 0x01, 0x00, 0x28, 0x4d, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','3','4','7',0,
-0xa1, 0xcb, 0x01, 0x00, 0x28, 0x4e, 'b','r','a','i','l','l','e','_','d','o','t','s','_','2','3','4','7',0,
-0x43, 0xab, 0x01, 0x00, 0x28, 0x4f, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','2','3','4','7',0,
-0x68, 0x55, 0x01, 0x00, 0x28, 0x50, 'b','r','a','i','l','l','e','_','d','o','t','s','_','5','7',0,
-0xd0, 0xcd, 0x01, 0x00, 0x28, 0x51, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','5','7',0,
-0xd0, 0xd1, 0x01, 0x00, 0x28, 0x52, 'b','r','a','i','l','l','e','_','d','o','t','s','_','2','5','7',0,
-0xa1, 0xc1, 0x01, 0x00, 0x28, 0x53, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','2','5','7',0,
-0xd0, 0xd5, 0x01, 0x00, 0x28, 0x54, 'b','r','a','i','l','l','e','_','d','o','t','s','_','3','5','7',0,
-0xa1, 0xc5, 0x01, 0x00, 0x28, 0x55, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','3','5','7',0,
-0xa1, 0xcd, 0x01, 0x00, 0x28, 0x56, 'b','r','a','i','l','l','e','_','d','o','t','s','_','2','3','5','7',0,
-0x43, 0xad, 0x01, 0x00, 0x28, 0x57, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','2','3','5','7',0,
-0xd0, 0xd9, 0x01, 0x00, 0x28, 0x58, 'b','r','a','i','l','l','e','_','d','o','t','s','_','4','5','7',0,
-0xa1, 0xc9, 0x01, 0x00, 0x28, 0x59, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','4','5','7',0,
-0xa1, 0xd1, 0x01, 0x00, 0x28, 0x5a, 'b','r','a','i','l','l','e','_','d','o','t','s','_','2','4','5','7',0,
-0x43, 0xb1, 0x01, 0x00, 0x28, 0x5b, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','2','4','5','7',0,
-0xa1, 0xd9, 0x01, 0x00, 0x28, 0x5c, 'b','r','a','i','l','l','e','_','d','o','t','s','_','3','4','5','7',0,
-0x43, 0xb9, 0x01, 0x00, 0x28, 0x5d, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','3','4','5','7',0,
-0x43, 0xc9, 0x01, 0x00, 0x28, 0x5e, 'b','r','a','i','l','l','e','_','d','o','t','s','_','2','3','4','5','7',0,
-0x87, 0x89, 0x01, 0x00, 0x28, 0x5f, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','2','3','4','5','7',0,
-0x68, 0x57, 0x01, 0x00, 0x28, 0x60, 'b','r','a','i','l','l','e','_','d','o','t','s','_','6','7',0,
-0xd0, 0xcf, 0x01, 0x00, 0x28, 0x61, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','6','7',0,
-0xd0, 0xd3, 0x01, 0x00, 0x28, 0x62, 'b','r','a','i','l','l','e','_','d','o','t','s','_','2','6','7',0,
-0xa1, 0xc3, 0x01, 0x00, 0x28, 0x63, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','2','6','7',0,
-0xd0, 0xd7, 0x01, 0x00, 0x28, 0x64, 'b','r','a','i','l','l','e','_','d','o','t','s','_','3','6','7',0,
-0xa1, 0xc7, 0x01, 0x00, 0x28, 0x65, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','3','6','7',0,
-0xa1, 0xcf, 0x01, 0x00, 0x28, 0x66, 'b','r','a','i','l','l','e','_','d','o','t','s','_','2','3','6','7',0,
-0x43, 0xaf, 0x01, 0x00, 0x28, 0x67, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','2','3','6','7',0,
-0xd0, 0xdb, 0x01, 0x00, 0x28, 0x68, 'b','r','a','i','l','l','e','_','d','o','t','s','_','4','6','7',0,
-0xa1, 0xcb, 0x01, 0x00, 0x28, 0x69, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','4','6','7',0,
-0xa1, 0xd3, 0x01, 0x00, 0x28, 0x6a, 'b','r','a','i','l','l','e','_','d','o','t','s','_','2','4','6','7',0,
-0x43, 0xb3, 0x01, 0x00, 0x28, 0x6b, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','2','4','6','7',0,
-0xa1, 0xdb, 0x01, 0x00, 0x28, 0x6c, 'b','r','a','i','l','l','e','_','d','o','t','s','_','3','4','6','7',0,
-0x43, 0xbb, 0x01, 0x00, 0x28, 0x6d, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','3','4','6','7',0,
-0x43, 0xcb, 0x01, 0x00, 0x28, 0x6e, 'b','r','a','i','l','l','e','_','d','o','t','s','_','2','3','4','6','7',0,
-0x87, 0x8b, 0x01, 0x00, 0x28, 0x6f, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','2','3','4','6','7',0,
-0xd0, 0xdf, 0x01, 0x00, 0x28, 0x70, 'b','r','a','i','l','l','e','_','d','o','t','s','_','5','6','7',0,
-0xa1, 0xcf, 0x01, 0x00, 0x28, 0x71, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','5','6','7',0,
-0xa1, 0xd7, 0x01, 0x00, 0x28, 0x72, 'b','r','a','i','l','l','e','_','d','o','t','s','_','2','5','6','7',0,
-0x43, 0xb7, 0x01, 0x00, 0x28, 0x73, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','2','5','6','7',0,
-0xa1, 0xdf, 0x01, 0x00, 0x28, 0x74, 'b','r','a','i','l','l','e','_','d','o','t','s','_','3','5','6','7',0,
-0x43, 0xbf, 0x01, 0x00, 0x28, 0x75, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','3','5','6','7',0,
-0x43, 0xcf, 0x01, 0x00, 0x28, 0x76, 'b','r','a','i','l','l','e','_','d','o','t','s','_','2','3','5','6','7',0,
-0x87, 0x8f, 0x01, 0x00, 0x28, 0x77, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','2','3','5','6','7',0,
-0xa1, 0xe7, 0x01, 0x00, 0x28, 0x78, 'b','r','a','i','l','l','e','_','d','o','t','s','_','4','5','6','7',0,
-0x43, 0xc7, 0x01, 0x00, 0x28, 0x79, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','4','5','6','7',0,
-0x43, 0xd7, 0x01, 0x00, 0x28, 0x7a, 'b','r','a','i','l','l','e','_','d','o','t','s','_','2','4','5','6','7',0,
-0x87, 0x97, 0x01, 0x00, 0x28, 0x7b, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','2','4','5','6','7',0,
-0x43, 0xe7, 0x01, 0x00, 0x28, 0x7c, 'b','r','a','i','l','l','e','_','d','o','t','s','_','3','4','5','6','7',0,
-0x87, 0xa7, 0x01, 0x00, 0x28, 0x7d, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','3','4','5','6','7',0,
-0x87, 0xc7, 0x01, 0x00, 0x28, 0x7e, 'b','r','a','i','l','l','e','_','d','o','t','s','_','2','3','4','5','6','7',0,
-0x0f, 0x47, 0x01, 0x00, 0x28, 0x7f, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','2','3','4','5','6','7',0,
-0xb4, 0x12, 0x01, 0x00, 0x28, 0x80, 'b','r','a','i','l','l','e','_','d','o','t','s','_','8',0,
-0x68, 0x4e, 0x01, 0x00, 0x28, 0x81, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','8',0,
-0x68, 0x50, 0x01, 0x00, 0x28, 0x82, 'b','r','a','i','l','l','e','_','d','o','t','s','_','2','8',0,
-0xd0, 0xc8, 0x01, 0x00, 0x28, 0x83, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','2','8',0,
-0x68, 0x52, 0x01, 0x00, 0x28, 0x84, 'b','r','a','i','l','l','e','_','d','o','t','s','_','3','8',0,
-0xd0, 0xca, 0x01, 0x00, 0x28, 0x85, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','3','8',0,
-0xd0, 0xce, 0x01, 0x00, 0x28, 0x86, 'b','r','a','i','l','l','e','_','d','o','t','s','_','2','3','8',0,
-0xa1, 0xbe, 0x01, 0x00, 0x28, 0x87, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','2','3','8',0,
-0x68, 0x54, 0x01, 0x00, 0x28, 0x88, 'b','r','a','i','l','l','e','_','d','o','t','s','_','4','8',0,
-0xd0, 0xcc, 0x01, 0x00, 0x28, 0x89, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','4','8',0,
-0xd0, 0xd0, 0x01, 0x00, 0x28, 0x8a, 'b','r','a','i','l','l','e','_','d','o','t','s','_','2','4','8',0,
-0xa1, 0xc0, 0x01, 0x00, 0x28, 0x8b, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','2','4','8',0,
-0xd0, 0xd4, 0x01, 0x00, 0x28, 0x8c, 'b','r','a','i','l','l','e','_','d','o','t','s','_','3','4','8',0,
-0xa1, 0xc4, 0x01, 0x00, 0x28, 0x8d, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','3','4','8',0,
-0xa1, 0xcc, 0x01, 0x00, 0x28, 0x8e, 'b','r','a','i','l','l','e','_','d','o','t','s','_','2','3','4','8',0,
-0x43, 0xac, 0x01, 0x00, 0x28, 0x8f, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','2','3','4','8',0,
-0x68, 0x56, 0x01, 0x00, 0x28, 0x90, 'b','r','a','i','l','l','e','_','d','o','t','s','_','5','8',0,
-0xd0, 0xce, 0x01, 0x00, 0x28, 0x91, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','5','8',0,
-0xd0, 0xd2, 0x01, 0x00, 0x28, 0x92, 'b','r','a','i','l','l','e','_','d','o','t','s','_','2','5','8',0,
-0xa1, 0xc2, 0x01, 0x00, 0x28, 0x93, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','2','5','8',0,
-0xd0, 0xd6, 0x01, 0x00, 0x28, 0x94, 'b','r','a','i','l','l','e','_','d','o','t','s','_','3','5','8',0,
-0xa1, 0xc6, 0x01, 0x00, 0x28, 0x95, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','3','5','8',0,
-0xa1, 0xce, 0x01, 0x00, 0x28, 0x96, 'b','r','a','i','l','l','e','_','d','o','t','s','_','2','3','5','8',0,
-0x43, 0xae, 0x01, 0x00, 0x28, 0x97, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','2','3','5','8',0,
-0xd0, 0xda, 0x01, 0x00, 0x28, 0x98, 'b','r','a','i','l','l','e','_','d','o','t','s','_','4','5','8',0,
-0xa1, 0xca, 0x01, 0x00, 0x28, 0x99, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','4','5','8',0,
-0xa1, 0xd2, 0x01, 0x00, 0x28, 0x9a, 'b','r','a','i','l','l','e','_','d','o','t','s','_','2','4','5','8',0,
-0x43, 0xb2, 0x01, 0x00, 0x28, 0x9b, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','2','4','5','8',0,
-0xa1, 0xda, 0x01, 0x00, 0x28, 0x9c, 'b','r','a','i','l','l','e','_','d','o','t','s','_','3','4','5','8',0,
-0x43, 0xba, 0x01, 0x00, 0x28, 0x9d, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','3','4','5','8',0,
-0x43, 0xca, 0x01, 0x00, 0x28, 0x9e, 'b','r','a','i','l','l','e','_','d','o','t','s','_','2','3','4','5','8',0,
-0x87, 0x8a, 0x01, 0x00, 0x28, 0x9f, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','2','3','4','5','8',0,
-0x68, 0x58, 0x01, 0x00, 0x28, 0xa0, 'b','r','a','i','l','l','e','_','d','o','t','s','_','6','8',0,
-0xd0, 0xd0, 0x01, 0x00, 0x28, 0xa1, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','6','8',0,
-0xd0, 0xd4, 0x01, 0x00, 0x28, 0xa2, 'b','r','a','i','l','l','e','_','d','o','t','s','_','2','6','8',0,
-0xa1, 0xc4, 0x01, 0x00, 0x28, 0xa3, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','2','6','8',0,
-0xd0, 0xd8, 0x01, 0x00, 0x28, 0xa4, 'b','r','a','i','l','l','e','_','d','o','t','s','_','3','6','8',0,
-0xa1, 0xc8, 0x01, 0x00, 0x28, 0xa5, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','3','6','8',0,
-0xa1, 0xd0, 0x01, 0x00, 0x28, 0xa6, 'b','r','a','i','l','l','e','_','d','o','t','s','_','2','3','6','8',0,
-0x43, 0xb0, 0x01, 0x00, 0x28, 0xa7, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','2','3','6','8',0,
-0xd0, 0xdc, 0x01, 0x00, 0x28, 0xa8, 'b','r','a','i','l','l','e','_','d','o','t','s','_','4','6','8',0,
-0xa1, 0xcc, 0x01, 0x00, 0x28, 0xa9, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','4','6','8',0,
-0xa1, 0xd4, 0x01, 0x00, 0x28, 0xaa, 'b','r','a','i','l','l','e','_','d','o','t','s','_','2','4','6','8',0,
-0x43, 0xb4, 0x01, 0x00, 0x28, 0xab, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','2','4','6','8',0,
-0xa1, 0xdc, 0x01, 0x00, 0x28, 0xac, 'b','r','a','i','l','l','e','_','d','o','t','s','_','3','4','6','8',0,
-0x43, 0xbc, 0x01, 0x00, 0x28, 0xad, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','3','4','6','8',0,
-0x43, 0xcc, 0x01, 0x00, 0x28, 0xae, 'b','r','a','i','l','l','e','_','d','o','t','s','_','2','3','4','6','8',0,
-0x87, 0x8c, 0x01, 0x00, 0x28, 0xaf, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','2','3','4','6','8',0,
-0xd0, 0xe0, 0x01, 0x00, 0x28, 0xb0, 'b','r','a','i','l','l','e','_','d','o','t','s','_','5','6','8',0,
-0xa1, 0xd0, 0x01, 0x00, 0x28, 0xb1, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','5','6','8',0,
-0xa1, 0xd8, 0x01, 0x00, 0x28, 0xb2, 'b','r','a','i','l','l','e','_','d','o','t','s','_','2','5','6','8',0,
-0x43, 0xb8, 0x01, 0x00, 0x28, 0xb3, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','2','5','6','8',0,
-0xa1, 0xe0, 0x01, 0x00, 0x28, 0xb4, 'b','r','a','i','l','l','e','_','d','o','t','s','_','3','5','6','8',0,
-0x43, 0xc0, 0x01, 0x00, 0x28, 0xb5, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','3','5','6','8',0,
-0x43, 0xd0, 0x01, 0x00, 0x28, 0xb6, 'b','r','a','i','l','l','e','_','d','o','t','s','_','2','3','5','6','8',0,
-0x87, 0x90, 0x01, 0x00, 0x28, 0xb7, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','2','3','5','6','8',0,
-0xa1, 0xe8, 0x01, 0x00, 0x28, 0xb8, 'b','r','a','i','l','l','e','_','d','o','t','s','_','4','5','6','8',0,
-0x43, 0xc8, 0x01, 0x00, 0x28, 0xb9, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','4','5','6','8',0,
-0x43, 0xd8, 0x01, 0x00, 0x28, 0xba, 'b','r','a','i','l','l','e','_','d','o','t','s','_','2','4','5','6','8',0,
-0x87, 0x98, 0x01, 0x00, 0x28, 0xbb, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','2','4','5','6','8',0,
-0x43, 0xe8, 0x01, 0x00, 0x28, 0xbc, 'b','r','a','i','l','l','e','_','d','o','t','s','_','3','4','5','6','8',0,
-0x87, 0xa8, 0x01, 0x00, 0x28, 0xbd, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','3','4','5','6','8',0,
-0x87, 0xc8, 0x01, 0x00, 0x28, 0xbe, 'b','r','a','i','l','l','e','_','d','o','t','s','_','2','3','4','5','6','8',0,
-0x0f, 0x48, 0x01, 0x00, 0x28, 0xbf, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','2','3','4','5','6','8',0,
-0x68, 0x5a, 0x01, 0x00, 0x28, 0xc0, 'b','r','a','i','l','l','e','_','d','o','t','s','_','7','8',0,
-0xd0, 0xd2, 0x01, 0x00, 0x28, 0xc1, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','7','8',0,
-0xd0, 0xd6, 0x01, 0x00, 0x28, 0xc2, 'b','r','a','i','l','l','e','_','d','o','t','s','_','2','7','8',0,
-0xa1, 0xc6, 0x01, 0x00, 0x28, 0xc3, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','2','7','8',0,
-0xd0, 0xda, 0x01, 0x00, 0x28, 0xc4, 'b','r','a','i','l','l','e','_','d','o','t','s','_','3','7','8',0,
-0xa1, 0xca, 0x01, 0x00, 0x28, 0xc5, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','3','7','8',0,
-0xa1, 0xd2, 0x01, 0x00, 0x28, 0xc6, 'b','r','a','i','l','l','e','_','d','o','t','s','_','2','3','7','8',0,
-0x43, 0xb2, 0x01, 0x00, 0x28, 0xc7, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','2','3','7','8',0,
-0xd0, 0xde, 0x01, 0x00, 0x28, 0xc8, 'b','r','a','i','l','l','e','_','d','o','t','s','_','4','7','8',0,
-0xa1, 0xce, 0x01, 0x00, 0x28, 0xc9, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','4','7','8',0,
-0xa1, 0xd6, 0x01, 0x00, 0x28, 0xca, 'b','r','a','i','l','l','e','_','d','o','t','s','_','2','4','7','8',0,
-0x43, 0xb6, 0x01, 0x00, 0x28, 0xcb, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','2','4','7','8',0,
-0xa1, 0xde, 0x01, 0x00, 0x28, 0xcc, 'b','r','a','i','l','l','e','_','d','o','t','s','_','3','4','7','8',0,
-0x43, 0xbe, 0x01, 0x00, 0x28, 0xcd, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','3','4','7','8',0,
-0x43, 0xce, 0x01, 0x00, 0x28, 0xce, 'b','r','a','i','l','l','e','_','d','o','t','s','_','2','3','4','7','8',0,
-0x87, 0x8e, 0x01, 0x00, 0x28, 0xcf, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','2','3','4','7','8',0,
-0xd0, 0xe2, 0x01, 0x00, 0x28, 0xd0, 'b','r','a','i','l','l','e','_','d','o','t','s','_','5','7','8',0,
-0xa1, 0xd2, 0x01, 0x00, 0x28, 0xd1, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','5','7','8',0,
-0xa1, 0xda, 0x01, 0x00, 0x28, 0xd2, 'b','r','a','i','l','l','e','_','d','o','t','s','_','2','5','7','8',0,
-0x43, 0xba, 0x01, 0x00, 0x28, 0xd3, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','2','5','7','8',0,
-0xa1, 0xe2, 0x01, 0x00, 0x28, 0xd4, 'b','r','a','i','l','l','e','_','d','o','t','s','_','3','5','7','8',0,
-0x43, 0xc2, 0x01, 0x00, 0x28, 0xd5, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','3','5','7','8',0,
-0x43, 0xd2, 0x01, 0x00, 0x28, 0xd6, 'b','r','a','i','l','l','e','_','d','o','t','s','_','2','3','5','7','8',0,
-0x87, 0x92, 0x01, 0x00, 0x28, 0xd7, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','2','3','5','7','8',0,
-0xa1, 0xea, 0x01, 0x00, 0x28, 0xd8, 'b','r','a','i','l','l','e','_','d','o','t','s','_','4','5','7','8',0,
-0x43, 0xca, 0x01, 0x00, 0x28, 0xd9, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','4','5','7','8',0,
-0x43, 0xda, 0x01, 0x00, 0x28, 0xda, 'b','r','a','i','l','l','e','_','d','o','t','s','_','2','4','5','7','8',0,
-0x87, 0x9a, 0x01, 0x00, 0x28, 0xdb, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','2','4','5','7','8',0,
-0x43, 0xea, 0x01, 0x00, 0x28, 0xdc, 'b','r','a','i','l','l','e','_','d','o','t','s','_','3','4','5','7','8',0,
-0x87, 0xaa, 0x01, 0x00, 0x28, 0xdd, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','3','4','5','7','8',0,
-0x87, 0xca, 0x01, 0x00, 0x28, 0xde, 'b','r','a','i','l','l','e','_','d','o','t','s','_','2','3','4','5','7','8',0,
-0x0f, 0x4a, 0x01, 0x00, 0x28, 0xdf, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','2','3','4','5','7','8',0,
-0xd0, 0xe6, 0x01, 0x00, 0x28, 0xe0, 'b','r','a','i','l','l','e','_','d','o','t','s','_','6','7','8',0,
-0xa1, 0xd6, 0x01, 0x00, 0x28, 0xe1, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','6','7','8',0,
-0xa1, 0xde, 0x01, 0x00, 0x28, 0xe2, 'b','r','a','i','l','l','e','_','d','o','t','s','_','2','6','7','8',0,
-0x43, 0xbe, 0x01, 0x00, 0x28, 0xe3, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','2','6','7','8',0,
-0xa1, 0xe6, 0x01, 0x00, 0x28, 0xe4, 'b','r','a','i','l','l','e','_','d','o','t','s','_','3','6','7','8',0,
-0x43, 0xc6, 0x01, 0x00, 0x28, 0xe5, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','3','6','7','8',0,
-0x43, 0xd6, 0x01, 0x00, 0x28, 0xe6, 'b','r','a','i','l','l','e','_','d','o','t','s','_','2','3','6','7','8',0,
-0x87, 0x96, 0x01, 0x00, 0x28, 0xe7, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','2','3','6','7','8',0,
-0xa1, 0xee, 0x01, 0x00, 0x28, 0xe8, 'b','r','a','i','l','l','e','_','d','o','t','s','_','4','6','7','8',0,
-0x43, 0xce, 0x01, 0x00, 0x28, 0xe9, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','4','6','7','8',0,
-0x43, 0xde, 0x01, 0x00, 0x28, 0xea, 'b','r','a','i','l','l','e','_','d','o','t','s','_','2','4','6','7','8',0,
-0x87, 0x9e, 0x01, 0x00, 0x28, 0xeb, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','2','4','6','7','8',0,
-0x43, 0xee, 0x01, 0x00, 0x28, 0xec, 'b','r','a','i','l','l','e','_','d','o','t','s','_','3','4','6','7','8',0,
-0x87, 0xae, 0x01, 0x00, 0x28, 0xed, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','3','4','6','7','8',0,
-0x87, 0xce, 0x01, 0x00, 0x28, 0xee, 'b','r','a','i','l','l','e','_','d','o','t','s','_','2','3','4','6','7','8',0,
-0x0f, 0x4e, 0x01, 0x00, 0x28, 0xef, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','2','3','4','6','7','8',0,
-0xa1, 0xf6, 0x01, 0x00, 0x28, 0xf0, 'b','r','a','i','l','l','e','_','d','o','t','s','_','5','6','7','8',0,
-0x43, 0xd6, 0x01, 0x00, 0x28, 0xf1, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','5','6','7','8',0,
-0x43, 0xe6, 0x01, 0x00, 0x28, 0xf2, 'b','r','a','i','l','l','e','_','d','o','t','s','_','2','5','6','7','8',0,
-0x87, 0xa6, 0x01, 0x00, 0x28, 0xf3, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','2','5','6','7','8',0,
-0x43, 0xf6, 0x01, 0x00, 0x28, 0xf4, 'b','r','a','i','l','l','e','_','d','o','t','s','_','3','5','6','7','8',0,
-0x87, 0xb6, 0x01, 0x00, 0x28, 0xf5, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','3','5','6','7','8',0,
-0x87, 0xd6, 0x01, 0x00, 0x28, 0xf6, 'b','r','a','i','l','l','e','_','d','o','t','s','_','2','3','5','6','7','8',0,
-0x0f, 0x56, 0x01, 0x00, 0x28, 0xf7, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','2','3','5','6','7','8',0,
-0x44, 0x06, 0x01, 0x00, 0x28, 0xf8, 'b','r','a','i','l','l','e','_','d','o','t','s','_','4','5','6','7','8',0,
-0x87, 0xc6, 0x01, 0x00, 0x28, 0xf9, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','4','5','6','7','8',0,
-0x87, 0xe6, 0x01, 0x00, 0x28, 0xfa, 'b','r','a','i','l','l','e','_','d','o','t','s','_','2','4','5','6','7','8',0,
-0x0f, 0x66, 0x01, 0x00, 0x28, 0xfb, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','2','4','5','6','7','8',0,
-0x88, 0x06, 0x01, 0x00, 0x28, 0xfc, 'b','r','a','i','l','l','e','_','d','o','t','s','_','3','4','5','6','7','8',0,
-0x0f, 0x86, 0x01, 0x00, 0x28, 0xfd, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','3','4','5','6','7','8',0,
-0x0f, 0xc6, 0x01, 0x00, 0x28, 0xfe, 'b','r','a','i','l','l','e','_','d','o','t','s','_','2','3','4','5','6','7','8',0,
-0x1e, 0xc6, 0x01, 0x00, 0x28, 0xff, 'b','r','a','i','l','l','e','_','d','o','t','s','_','1','2','3','4','5','6','7','8',0
-};
-
-#define KTABLESIZE 2907
-#define KMAXHASH 14
-
-static const unsigned short hashString[KTABLESIZE] = {
-0x28f6, 0x0000, 0x0000, 0x0000, 0x2787, 0x0000, 0x22f0, 0x0467,
-0x34af, 0x0000, 0x4117, 0x0000, 0x2912, 0x4ca3, 0x0000, 0x1ab3,
-0x5f2c, 0x0000, 0x0000, 0x0000, 0x2795, 0x0000, 0x1e3f, 0x0000,
-0x28da, 0x0000, 0x5eaf, 0x0000, 0x0000, 0x0fac, 0x2c6c, 0x2ca0,
-0x2886, 0x0000, 0x0000, 0x0000, 0x8764, 0x0000, 0x68e2, 0x72e2,
-0x02c0, 0x0275, 0x4dbf, 0x0000, 0x27f8, 0x7067, 0x0000, 0x0000,
-0x1524, 0x152c, 0x1534, 0x153c, 0x1544, 0x154c, 0x1554, 0x155c,
-0x1564, 0x156c, 0x2822, 0x0000, 0x29ba, 0x0000, 0x549b, 0x8d11,
-0x0000, 0x15cd, 0x15d5, 0x15dd, 0x15e5, 0x15ed, 0x15f5, 0x15fd,
-0x1605, 0x160d, 0x1615, 0x161d, 0x1625, 0x162d, 0x1635, 0x163d,
-0x1645, 0x164d, 0x1655, 0x02cd, 0x1665, 0x166d, 0x1675, 0x167d,
-0x1685, 0x168d, 0x1695, 0x8200, 0x17fb, 0x0000, 0x0000, 0x0000,
-0x0000, 0x1711, 0x1719, 0x1721, 0x1729, 0x1731, 0x1739, 0x0cc2,
-0x1749, 0x1751, 0x1759, 0x1761, 0x1769, 0x1771, 0x1779, 0x1781,
-0x1789, 0x1791, 0x1799, 0x17a1, 0x17a9, 0x17b1, 0x17b9, 0x17c1,
-0x17c9, 0x17d1, 0x17d9, 0x0000, 0x405d, 0x0956, 0x0940, 0x21d8,
-0x2e9a, 0x0000, 0x0000, 0x421e, 0x59f0, 0x0000, 0x6e0c, 0x714c,
-0x0000, 0x25c2, 0x0000, 0x0000, 0x1b7b, 0x877b, 0x0000, 0x1b4e,
-0x0000, 0x1ade, 0x11b7, 0x0000, 0x2d6e, 0x55d1, 0x4232, 0x66bb,
-0x1328, 0x27ea, 0x0000, 0x1ba4, 0x0000, 0x0000, 0x1841, 0x0000,
-0x0047, 0x5146, 0x0000, 0x013a, 0x5370, 0x0000, 0x0000, 0x165d,
-0x0000, 0x0000, 0x5132, 0x0000, 0x0000, 0x4959, 0x0860, 0x0395,
-0x701c, 0x0165, 0x0000, 0x1bd4, 0x086e, 0x53c2, 0x465d, 0x0000,
-0x0eb8, 0x0000, 0x4687, 0x20f7, 0x469c, 0x0496, 0x0581, 0x058a,
-0x0593, 0x059c, 0x05a5, 0x05ae, 0x05b7, 0x05c0, 0x0000, 0x1a6f,
-0x744b, 0x05dd, 0x05f0, 0x0603, 0x0616, 0x0629, 0x063c, 0x064f,
-0x0662, 0x0675, 0x0000, 0x1e4c, 0x0000, 0x069c, 0x06af, 0x0486,
-0x06d5, 0x06e8, 0x06fb, 0x070e, 0x0721, 0x0734, 0x0000, 0x1b15,
-0x0000, 0x0000, 0x0000, 0x25e4, 0x0000, 0x0abf, 0x3d2a, 0x2489,
-0x0000, 0x74bb, 0x3909, 0x0000, 0x5349, 0x0000, 0x07b5, 0x01eb,
-0x457c, 0x1eb9, 0x6d4f, 0x1e30, 0x07c3, 0x21b6, 0x0000, 0x3b97,
-0x6e3c, 0x1ffa, 0x54f4, 0x3a36, 0x83de, 0x0000, 0x31bd, 0x247c,
-0x0000, 0x3aa5, 0x671b, 0x1bed, 0x552a, 0x88e8, 0x6147, 0x3b10,
-0x40e4, 0x0000, 0x6766, 0x0000, 0x092a, 0x7217, 0x0bd9, 0x0000,
-0x6b16, 0x0000, 0x67b1, 0x2ecc, 0x0000, 0x0000, 0x0000, 0x3942,
-0x0000, 0x0000, 0x0255, 0x37e1, 0x455b, 0x3c94, 0x2414, 0x6fd4,
-0x0000, 0x3850, 0x3184, 0x7294, 0x26f8, 0x2377, 0x0000, 0x1c5c,
-0x0000, 0x4bd1, 0x6881, 0x03fc, 0x1c50, 0x5d08, 0x0000, 0x5336,
-0x0000, 0x486e, 0x45b7, 0x5428, 0x18b2, 0x0000, 0x1486, 0x1741,
-0x0c67, 0x0000, 0x1def, 0x0d17, 0x14f3, 0x330b, 0x45c9, 0x24a6,
-0x5e5a, 0x108e, 0x0379, 0x25ed, 0x45ae, 0x5eef, 0x1fdb, 0x0000,
-0x45d2, 0x1574, 0x0000, 0x309d, 0x0000, 0x0000, 0x444a, 0x1960,
-0x59bf, 0x0000, 0x0000, 0x0000, 0x2dc6, 0x0000, 0x0000, 0x04fa,
-0x2cca, 0x0000, 0x2fca, 0x0000, 0x2d4b, 0x3d12, 0x2264, 0x0000,
-0x45db, 0x4aaf, 0x2df9, 0x3029, 0x0000, 0x0000, 0x89fd, 0x0419,
-0x2d28, 0x4648, 0x2f22, 0x0c78, 0x0000, 0x5518, 0x0000, 0x0000,
-0x27db, 0x4672, 0x2e54, 0x0000, 0x0000, 0x0000, 0x5f7f, 0x0000,
-0x2fe3, 0x0000, 0x16f5, 0x0578, 0x4c45, 0x2e65, 0x0000, 0x159b,
-0x2714, 0x0ceb, 0x0000, 0x53a2, 0x0cb1, 0x0000, 0x04e9, 0x0000,
-0x0000, 0x0000, 0x2e43, 0x3580, 0x41ab, 0x0000, 0x825f, 0x730a,
-0x2aee, 0x439f, 0x1b3c, 0x4eb9, 0x0000, 0x523e, 0x0000, 0x3953,
-0x2dd7, 0x47f9, 0x252d, 0x0000, 0x0000, 0x0000, 0x22e1, 0x0ba5,
-0x2cf3, 0x0e26, 0x849b, 0x502f, 0x0000, 0x0000, 0x0000, 0x4a52,
-0x2ff4, 0x0000, 0x05c9, 0x05d3, 0x05e6, 0x05f9, 0x060c, 0x061f,
-0x0632, 0x0645, 0x0658, 0x066b, 0x0717, 0x072a, 0x3df9, 0x47e9,
-0x204a, 0x482b, 0x48ee, 0x1dfb, 0x169d, 0x140a, 0x0000, 0x0000,
-0x0000, 0x0000, 0x0688, 0x1b88, 0x0c56, 0x7fbf, 0x0000, 0x0060,
-0x0000, 0x0000, 0x85bf, 0x355a, 0x0000, 0x12fc, 0x0000, 0x0add,
-0x0000, 0x49b7, 0x14ff, 0x4728, 0x3e33, 0x0000, 0x0000, 0x0000,
-0x0000, 0x5674, 0x0747, 0x075b, 0x076f, 0x0783, 0x0797, 0x07ab,
-0x6a70, 0x209a, 0x283f, 0x59a8, 0x6e1c, 0x1d4f, 0x0000, 0x39a5,
-0x0000, 0x3cfd, 0x459b, 0x4387, 0x0000, 0x0000, 0x4796, 0x0000,
-0x0000, 0x686e, 0x4f92, 0x2030, 0x0000, 0x6b0a, 0x203d, 0x231a,
-0x0000, 0x475a, 0x4145, 0x0000, 0x0000, 0x5990, 0x254a, 0x2016,
-0x743c, 0x0000, 0x0000, 0x0000, 0x1432, 0x0000, 0x46d5, 0x1518,
-0x0000, 0x855e, 0x0000, 0x0f48, 0x8b73, 0x0000, 0x0000, 0x6991,
-0x8c0c, 0x0000, 0x6da9, 0x0000, 0x0000, 0x2207, 0x2065, 0x4fb9,
-0x0000, 0x0000, 0x8654, 0x545f, 0x0000, 0x338e, 0x6c48, 0x0000,
-0x0000, 0x8022, 0x483c, 0x0000, 0x619b, 0x735a, 0x0000, 0x3750,
-0x0000, 0x0000, 0x0000, 0x0000, 0x8c3f, 0x39b6, 0x8545, 0x0000,
-0x5e99, 0x39db, 0x8425, 0x1c81, 0x36de, 0x0fc1, 0x2058, 0x0000,
-0x8af4, 0x0000, 0x3a6f, 0x39ed, 0x35a3, 0x364a, 0x0000, 0x1b97,
-0x3ada, 0x3aec, 0x0000, 0x4c57, 0x55b7, 0x036a, 0x0000, 0x0000,
-0x2f85, 0x1911, 0x0476, 0x69b6, 0x3c47, 0x0000, 0x452e, 0x38bb,
-0x0000, 0x3afe, 0x0000, 0x0000, 0x02aa, 0x0a53, 0x0000, 0x3ac8,
-0x59d7, 0x1a33, 0x0df2, 0x725b, 0x672d, 0x0f61, 0x49d1, 0x0000,
-0x5056, 0x0f99, 0x04c4, 0x0000, 0x1b0b, 0x806d, 0x6dda, 0x0e57,
-0x2f38, 0x0000, 0x782d, 0x3993, 0x20cd, 0x15c4, 0x6930, 0x544b,
-0x6740, 0x3e1b, 0x6b2d, 0x1251, 0x0022, 0x6ce4, 0x6a7e, 0x0000,
-0x69c8, 0x180c, 0x710e, 0x69a3, 0x0000, 0x0000, 0x0000, 0x0000,
-0x6753, 0x5782, 0x77a0, 0x2ef6, 0x010c, 0x0000, 0x81a4, 0x06c2,
-0x67e9, 0x2394, 0x691d, 0x6017, 0x71f5, 0x3761, 0x5fdf, 0x0000,
-0x67fc, 0x3786, 0x7571, 0x4db2, 0x37aa, 0x37cf, 0x04a5, 0x0000,
-0x25b0, 0x0a0f, 0x258e, 0x3798, 0x383e, 0x348c, 0x23f7, 0x23a2,
-0x3885, 0x3897, 0x1d1f, 0x0000, 0x679e, 0x33f9, 0x874c, 0x0000,
-0x2644, 0x3861, 0x0000, 0x4cbd, 0x476a, 0x2746, 0x846b, 0x0000,
-0x5e84, 0x276d, 0x7d4b, 0x1cbe, 0x6957, 0x2753, 0x834b, 0x1122,
-0x0000, 0x0000, 0x2166, 0x017d, 0x17f1, 0x391d, 0x5a46, 0x1c74,
-0x0000, 0x2760, 0x0000, 0x1580, 0x6105, 0x3018, 0x87db, 0x0000,
-0x0000, 0x648b, 0x7f8f, 0x373e, 0x1954, 0x26a9, 0x858f, 0x0d91,
-0x0000, 0x26d0, 0x0000, 0x0000, 0x5218, 0x26b6, 0x8793, 0x0d75,
-0x8b40, 0x48fe, 0x5db5, 0x020e, 0x1bb1, 0x0000, 0x0000, 0x3c60,
-0x0000, 0x26c3, 0x0000, 0x0000, 0x1cee, 0x5dd0, 0x87f3, 0x29e3,
-0x0000, 0x00aa, 0x0e8a, 0x0000, 0x3d5a, 0x266f, 0x0844, 0x0000,
-0x87ab, 0x225a, 0x3f27, 0x0cd6, 0x0852, 0x2117, 0x8394, 0x0000,
-0x0000, 0x0000, 0x3112, 0x6ea9, 0x18f3, 0x4b79, 0x146b, 0x6a63,
-0x57fc, 0x0000, 0x7f2c, 0x46b1, 0x0000, 0x5eda, 0x8824, 0x0000,
-0x8a5f, 0x447b, 0x7b76, 0x0000, 0x0000, 0x0000, 0x843c, 0x0000,
-0x8900, 0x0ea2, 0x5c25, 0x2023, 0x4e0a, 0x5312, 0x1e9f, 0x69ee,
-0x3e45, 0x886e, 0x2b12, 0x8622, 0x186a, 0x8932, 0x0000, 0x0072,
-0x83c5, 0x2db5, 0x096b, 0x8686, 0x2cb8, 0x0bf8, 0x1904, 0x5e6f,
-0x8855, 0x745d, 0x7034, 0x0000, 0x8609, 0x0000, 0x0000, 0x3be8,
-0x0000, 0x44b6, 0x6543, 0x86b9, 0x7e0e, 0x89c9, 0x6697, 0x0000,
-0x0a3c, 0x8b59, 0x4ddc, 0x0f88, 0x0000, 0x535a, 0x3f9f, 0x1cb1,
-0x897d, 0x8c25, 0x0000, 0x3334, 0x0000, 0x0000, 0x6ade, 0x0000,
-0x7345, 0x82a5, 0x651f, 0x0000, 0x0000, 0x7ecb, 0x0000, 0x6cfd,
-0x0000, 0x8c8d, 0x65fd, 0x2080, 0x0000, 0x4d9a, 0x208d, 0x2d16,
-0x0000, 0x067e, 0x3f7b, 0x01af, 0x64f9, 0x06a5, 0x2d39, 0x06b8,
-0x5b95, 0x06cb, 0x44c7, 0x06de, 0x2182, 0x06f1, 0x8ba8, 0x0704,
-0x1b5b, 0x2ee5, 0x1a52, 0x5cbf, 0x0000, 0x0000, 0x0000, 0x2e76,
-0x4881, 0x70f2, 0x4899, 0x13c8, 0x0000, 0x6a1d, 0x64d5, 0x47a5,
-0x3ec1, 0x0000, 0x559e, 0x0000, 0x0000, 0x0f1c, 0x4e59, 0x5dff,
-0x6335, 0x1830, 0x4e48, 0x6381, 0x63cb, 0x0000, 0x22b8, 0x5ff6,
-0x4dec, 0x7818, 0x0000, 0x16d2, 0x6ab2, 0x0000, 0x0000, 0x30c7,
-0x5b65, 0x8cdc, 0x443b, 0x8108, 0x0000, 0x0000, 0x5c45, 0x0000,
-0x0000, 0x0000, 0x4f11, 0x0000, 0x4c7b, 0x87c4, 0x0000, 0x711a,
-0x2d90, 0x0000, 0x4d55, 0x21c6, 0x6131, 0x0000, 0x4cfb, 0x4fa8,
-0x0000, 0x305f, 0x2d5c, 0x4516, 0x0000, 0x6a2b, 0x2d04, 0x0000,
-0x0000, 0x5d9b, 0x5c55, 0x0000, 0x2e88, 0x6e58, 0x3b21, 0x65af,
-0x42fd, 0x1dd0, 0x0c9f, 0x0000, 0x62c1, 0x0000, 0x5c35, 0x0000,
-0x0000, 0x0000, 0x85a7, 0x0000, 0x6621, 0x50d8, 0x2b24, 0x7140,
-0x4dcd, 0x0000, 0x4f22, 0x4e92, 0x4fcf, 0x0000, 0x73fd, 0x22d4,
-0x2d7e, 0x4ec9, 0x61f9, 0x2009, 0x11d0, 0x4ac6, 0x20c0, 0x7102,
-0x3e8e, 0x0000, 0x0428, 0x0000, 0x0000, 0x0000, 0x2adc, 0x543b,
-0x0000, 0x4e35, 0x4f45, 0x0000, 0x0000, 0x0000, 0x8514, 0x4857,
-0x0000, 0x0000, 0x0000, 0x2c0c, 0x5c04, 0x1cdd, 0x0000, 0x460d,
-0x16e4, 0x0000, 0x5195, 0x1eac, 0x11ea, 0x0ee8, 0x1ec5, 0x0000,
-0x731e, 0x0000, 0x0000, 0x0000, 0x0000, 0x09fa, 0x60ef, 0x1d05,
-0x0000, 0x1ed2, 0x0000, 0x0000, 0x0000, 0x0000, 0x7548, 0x0000,
-0x01ca, 0x1b01, 0x4a9c, 0x742e, 0x0bbe, 0x0000, 0x0000, 0x30f5,
-0x150b, 0x33bb, 0x660f, 0x71a6, 0x4c32, 0x0000, 0x1ee1, 0x0000,
-0x0000, 0x0000, 0x0000, 0x0000, 0x3bd0, 0x09af, 0x0000, 0x5907,
-0x527e, 0x0000, 0x80ed, 0x0000, 0x6c59, 0x43d2, 0x0000, 0x0000,
-0x57e6, 0x0000, 0x575e, 0x5622, 0x0000, 0x0000, 0x0000, 0x0000,
-0x0000, 0x6555, 0x18e6, 0x1d87, 0x0000, 0x199c, 0x0b12, 0x48a6,
-0x0000, 0x0000, 0x2e32, 0x0000, 0x650c, 0x0000, 0x0000, 0x4f7f,
-0x78e2, 0x0a6c, 0x0000, 0x3cca, 0x441b, 0x37f2, 0x0000, 0x0000,
-0x19f2, 0x51d0, 0x0000, 0x04d7, 0x73b9, 0x0000, 0x46bd, 0x0000,
-0x4912, 0x0000, 0x2eaa, 0x0000, 0x0000, 0x755c, 0x0000, 0x6188,
-0x16bf, 0x7235, 0x61d4, 0x759c, 0x0000, 0x0000, 0x42b8, 0x0000,
-0x6348, 0x0000, 0x496c, 0x6394, 0x4da5, 0x198e, 0x4b4a, 0x1dc4,
-0x62fa, 0x39ff, 0x7ca5, 0x0221, 0x30de, 0x6579, 0x51f3, 0x1cf8,
-0x6e00, 0x0000, 0x0000, 0x2520, 0x4b31, 0x20ad, 0x0000, 0x3a5d,
-0x41fa, 0x3a93, 0x761f, 0x595f, 0x64c2, 0x5813, 0x0af7, 0x1c06,
-0x6032, 0x0000, 0x0000, 0x0000, 0x09c9, 0x0000, 0x050a, 0x0515,
-0x0520, 0x052b, 0x0536, 0x0541, 0x054c, 0x0557, 0x0562, 0x056d,
-0x0000, 0x31a1, 0x1d3e, 0x0d3b, 0x0000, 0x1278, 0x636e, 0x65c2,
-0x0000, 0x4a2c, 0x6ffc, 0x0000, 0x62d4, 0x73a9, 0x0ed0, 0x516d,
-0x8334, 0x0000, 0x0000, 0x0000, 0x6634, 0x113a, 0x114e, 0x1162,
-0x1176, 0x0c8e, 0x136d, 0x12ec, 0x0000, 0x0000, 0x0000, 0x0000,
-0x23bd, 0x0000, 0x5b12, 0x1db7, 0x0000, 0x78b4, 0x5e14, 0x0000,
-0x5f9f, 0x3a11, 0x0000, 0x3b72, 0x420c, 0x6245, 0x4bdd, 0x1d7a,
-0x0000, 0x690a, 0x0000, 0x0000, 0x8578, 0x14d9, 0x404d, 0x3349,
-0x0000, 0x6fa2, 0x0000, 0x440c, 0x0000, 0x822f, 0x7dac, 0x60c1,
-0x7172, 0x366d, 0x0000, 0x1eee, 0x522b, 0x88cf, 0x1f0d, 0x697e,
-0x0000, 0x3692, 0x0000, 0x5933, 0x77e7, 0x0447, 0x0000, 0x60d7,
-0x0000, 0x0000, 0x553d, 0x45c0, 0x24e3, 0x3b84, 0x0000, 0x0000,
-0x137d, 0x0000, 0x0000, 0x133c, 0x4784, 0x0000, 0x7e83, 0x0000,
-0x6c00, 0x8483, 0x1bf9, 0x0000, 0x7d63, 0x0000, 0x35c9, 0x16af,
-0x3ff3, 0x0000, 0x7ee3, 0x0000, 0x0000, 0x84e3, 0x0000, 0x2503,
-0x0000, 0x42a4, 0x0000, 0x39c8, 0x0000, 0x0012, 0x4ce2, 0x0000,
-0x0000, 0x0692, 0x4af4, 0x12dc, 0x073d, 0x0000, 0x5a5d, 0x0751,
-0x0000, 0x0000, 0x0765, 0x67d6, 0x0315, 0x0779, 0x0000, 0x0000,
-0x078d, 0x0000, 0x3625, 0x07a1, 0x032d, 0x0000, 0x135d, 0x1204,
-0x0000, 0x6abe, 0x4982, 0x0000, 0x510e, 0x6b5b, 0x0000, 0x3ce2,
-0x4bc3, 0x6fe8, 0x572c, 0x0000, 0x230d, 0x793f, 0x0dd7, 0x0000,
-0x8054, 0x4a87, 0x5aac, 0x73ee, 0x024a, 0x381a, 0x56f4, 0x1da6,
-0x026a, 0x68cf, 0x5634, 0x023f, 0x70ba, 0x52c9, 0x76a8, 0x245c,
-0x68f6, 0x685b, 0x3968, 0x0000, 0x4319, 0x66cc, 0x2194, 0x0000,
-0x56c0, 0x74a7, 0x0000, 0x73cc, 0x0000, 0x030a, 0x228c, 0x2431,
-0x68bb, 0x58c4, 0x7ba4, 0x74cf, 0x0000, 0x52a0, 0x340b, 0x0000,
-0x406f, 0x7280, 0x0000, 0x02ff, 0x0000, 0x0000, 0x3d71, 0x0000,
-0x0b4f, 0x4eec, 0x0000, 0x38a9, 0x0000, 0x4d64, 0x0000, 0x119e,
-0x028f, 0x4849, 0x7772, 0x38df, 0x7c00, 0x0000, 0x42cd, 0x3873,
-0x1c20, 0x5688, 0x32d9, 0x0000, 0x68a7, 0x29d6, 0x0000, 0x277a,
-0x0000, 0x4777, 0x3467, 0x43f5, 0x6c24, 0x8247, 0x4cc9, 0x2175,
-0x2f71, 0x0000, 0x0000, 0x0000, 0x0000, 0x2b5f, 0x2b6e, 0x2b7d,
-0x2b8c, 0x1e76, 0x2baa, 0x2bb9, 0x2bc8, 0x0d28, 0x2be6, 0x0000,
-0x0000, 0x0000, 0x77b8, 0x82bc, 0x0000, 0x0000, 0x0344, 0x02f4,
-0x0000, 0x37bc, 0x0f74, 0x605e, 0x6893, 0x0000, 0x20d9, 0x1c32,
-0x0000, 0x8218, 0x13f2, 0x6fc3, 0x0000, 0x0000, 0x4c10, 0x0000,
-0x8708, 0x28be, 0x0000, 0x30b3, 0x58ef, 0x0e0c, 0x63a7, 0x2324,
-0x0aa2, 0x28cc, 0x591f, 0x27b1, 0x499c, 0x2878, 0x0000, 0x26dd,
-0x403c, 0x28a2, 0x492a, 0x2920, 0x4d18, 0x27bf, 0x0000, 0x27cd,
-0x4bf0, 0x2814, 0x4739, 0x27a3, 0x0000, 0x285c, 0x6bb5, 0x292e,
-0x5183, 0x2831, 0x0000, 0x2958, 0x2904, 0x2806, 0x0000, 0x286a,
-0x557b, 0x299e, 0x34d4, 0x03e2, 0x22a9, 0x269b, 0x0000, 0x040b,
-0x54ad, 0x2974, 0x03d4, 0x0000, 0x53b0, 0x7d7b, 0x28e8, 0x2966,
-0x1e59, 0x293c, 0x57bf, 0x3773, 0x54d0, 0x38cc, 0x0000, 0x8888,
-0x0000, 0x0000, 0x294a, 0x265e, 0x6834, 0x6e64, 0x0000, 0x0000,
-0x28b0, 0x0000, 0x347a, 0x1d94, 0x0000, 0x4d90, 0x2990, 0x0000,
-0x54e2, 0x10aa, 0x10c2, 0x10da, 0x10f2, 0x110a, 0x25f6, 0x2982,
-0x0000, 0x83ac, 0x2894, 0x0000, 0x6be6, 0x0dc5, 0x0000, 0x0439,
-0x5301, 0x0000, 0x0000, 0x0000, 0x6c6a, 0x0000, 0x1a06, 0x0000,
-0x80a0, 0x0000, 0x0000, 0x29ac, 0x4bb8, 0x7ff0, 0x0000, 0x86a0,
-0x0000, 0x0000, 0x2fb1, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
-0x0199, 0x0000, 0x58ab, 0x5f60, 0x0000, 0x0000, 0x284e, 0x392f,
-0x46ca, 0x7dde, 0x43b7, 0x26ea, 0x0000, 0x31f3, 0x4ba5, 0x2b49,
-0x0000, 0x29c8, 0x0000, 0x0000, 0x0000, 0x2723, 0x0000, 0x21e5,
-0x0000, 0x2706, 0x83f8, 0x0e40, 0x594c, 0x0000, 0x0000, 0x21f7,
-0x0000, 0x8964, 0x0000, 0x3265, 0x0000, 0x8086, 0x0000, 0x0000,
-0x6dc0, 0x739a, 0x3c00, 0x8996, 0x0000, 0x1590, 0x6e92, 0x0000,
-0x0000, 0x1940, 0x1979, 0x8b26, 0x0000, 0x0000, 0x0000, 0x0000,
-0x4d08, 0x7127, 0x2a2b, 0x0000, 0x4d47, 0x1313, 0x86ed, 0x48b6,
-0x6f03, 0x0000, 0x0000, 0x8bf2, 0x8b8d, 0x80b9, 0x0000, 0x4e1a,
-0x1d6b, 0x0000, 0x0da5, 0x0000, 0x8c59, 0x0000, 0x0000, 0x42e2,
-0x52ed, 0x8aa9, 0x0d4d, 0x0db5, 0x0000, 0x5d4e, 0x3e7a, 0x840e,
-0x565d, 0x0a86, 0x3dc3, 0x0000, 0x6f92, 0x5fcb, 0x4e7e, 0x726e,
-0x5cee, 0x0000, 0x18a2, 0x76bd, 0x5f4b, 0x0000, 0x7635, 0x0000,
-0x0000, 0x1f1a, 0x19d3, 0x0000, 0x0000, 0x14e8, 0x0000, 0x29f5,
-0x70e2, 0x8b0d, 0x7b49, 0x0000, 0x41be, 0x6567, 0x0000, 0x3d44,
-0x0000, 0x0000, 0x6a00, 0x611b, 0x8cf6, 0x3e56, 0x4620, 0x7b33,
-0x0000, 0x3a24, 0x5cd4, 0x0000, 0x5406, 0x80d3, 0x8133, 0x470a,
-0x0000, 0x0000, 0x7c8e, 0x89e3, 0x0000, 0x658b, 0x828e, 0x2f4b,
-0x23e9, 0x0000, 0x7be9, 0x3a81, 0x0000, 0x5dea, 0x49ec, 0x01fc,
-0x0000, 0x680f, 0x2229, 0x0000, 0x6ed6, 0x0000, 0x6405, 0x1ccb,
-0x0d00, 0x6043, 0x0000, 0x143e, 0x7158, 0x4b61, 0x79e4, 0x2a0b,
-0x0000, 0x192e, 0x53e2, 0x4347, 0x0000, 0x0000, 0x8735, 0x1c13,
-0x51bc, 0x35b7, 0x0000, 0x46ee, 0x0000, 0x0000, 0x0000, 0x453d,
-0x4d29, 0x47bb, 0x7056, 0x3ee4, 0x4a3b, 0x3ab6, 0x331f, 0x47ca,
-0x0000, 0x0d5d, 0x0000, 0x8ca7, 0x503f, 0x0000, 0x0000, 0x1d12,
-0x0000, 0x0000, 0x0000, 0x0000, 0x2e0a, 0x6a8b, 0x50fa, 0x3ed2,
-0x51a8, 0x53d0, 0x372c, 0x46fc, 0x79cc, 0x24d3, 0x7cbc, 0x0000,
-0x15a7, 0x0000, 0x7e3c, 0x0000, 0x79fb, 0x5b34, 0x1aa1, 0x5d33,
-0x82eb, 0x3b34, 0x7e6b, 0x0000, 0x7a5b, 0x0000, 0x3f4a, 0x0000,
-0x7957, 0x2c27, 0x48db, 0x0000, 0x191e, 0x0000, 0x1fbb, 0x2b36,
-0x8303, 0x62e7, 0x3f09, 0x0000, 0x7a73, 0x481c, 0x3f18, 0x6441,
-0x3faf, 0x0000, 0x5897, 0x0000, 0x77ff, 0x796f, 0x7c5f, 0x7a2b,
-0x7d1b, 0x831b, 0x3005, 0x7a8b, 0x6cc8, 0x837b, 0x0230, 0x84fb,
-0x53f4, 0x880b, 0x6a98, 0x7abc, 0x63f1, 0x50e9, 0x4941, 0x852c,
-0x3e9f, 0x883c, 0x7fd8, 0x85f0, 0x5205, 0x5bd5, 0x61e7, 0x0000,
-0x31d9, 0x64af, 0x4c68, 0x7ad5, 0x7dc5, 0x741e, 0x66dd, 0x2496,
-0x8a78, 0x2f5e, 0x2248, 0x6279, 0x0000, 0x8919, 0x6467, 0x0000,
-0x1ca0, 0x3520, 0x5b25, 0x866d, 0x3bbd, 0x5bb4, 0x5b75, 0x6e7b,
-0x244c, 0x3fcf, 0x5c65, 0x5d1e, 0x6aa6, 0x5b44, 0x5d82, 0x456c,
-0x5380, 0x8bd9, 0x3f59, 0x736f, 0x5ac4, 0x4a1b, 0x3c1a, 0x12af,
-0x12be, 0x12cd, 0x3fbf, 0x0000, 0x629d, 0x0000, 0x5e2d, 0x0000,
-0x3042, 0x4b22, 0x0000, 0x0000, 0x480b, 0x635b, 0x4eff, 0x36fe,
-0x0000, 0x50a3, 0x0000, 0x5326, 0x0000, 0x18c4, 0x44a8, 0x0000,
-0x0000, 0x8c74, 0x0000, 0x0000, 0x0000, 0x07d1, 0x3361, 0x6419,
-0x0000, 0x259e, 0x4d39, 0x07e1, 0x0000, 0x3f69, 0x0000, 0x0000,
-0x615f, 0x23cb, 0x0000, 0x0000, 0x0000, 0x314b, 0x58dc, 0x0000,
-0x0000, 0x5bc4, 0x0000, 0x3eaf, 0x576f, 0x0000, 0x4456, 0x69db,
-0x0000, 0x5b54, 0x0000, 0x0000, 0x32bb, 0x700c, 0x66ef, 0x0000,
-0x36b7, 0x0000, 0x2aff, 0x2105, 0x5008, 0x0000, 0x320d, 0x0000,
-0x620b, 0x1a78, 0x0000, 0x5b84, 0x63b9, 0x38f1, 0x0000, 0x0000,
-0x4adf, 0x0000, 0x6531, 0x029a, 0x2da2, 0x448a, 0x621f, 0x0000,
-0x659d, 0x0000, 0x630d, 0x2072, 0x0000, 0x4f6d, 0x649d, 0x0000,
-0x3a47, 0x7859, 0x1a94, 0x0000, 0x62af, 0x0000, 0x0000, 0x009a,
-0x64e7, 0x0000, 0x6821, 0x0000, 0x0000, 0x7679, 0x4016, 0x19ae,
-0x3ef6, 0x0000, 0x0000, 0x3808, 0x2385, 0x3c30, 0x7b8d, 0x0000,
-0x0000, 0x628b, 0x6321, 0x0000, 0x747f, 0x7493, 0x3f36, 0x71d4,
-0x47da, 0x306f, 0x74f7, 0x750b, 0x2510, 0x6479, 0x55fc, 0x43e6,
-0x7e25, 0x3540, 0x50b4, 0x0fee, 0x312f, 0x66a9, 0x0000, 0x5ca5,
-0x50c6, 0x5611, 0x0000, 0x4a6c, 0x811d, 0x0000, 0x6701, 0x8d2c,
-0x4179, 0x506d, 0x65d5, 0x0f32, 0x4f33, 0x507f, 0x4ea5, 0x1e84,
-0x0000, 0x0000, 0x1be1, 0x0000, 0x5091, 0x56e3, 0x3602, 0x6c12,
-0x8160, 0x501a, 0x6647, 0x232e, 0x4eda, 0x0000, 0x0000, 0x1af0,
-0x329e, 0x0b6e, 0x0000, 0x0000, 0x6b88, 0x45e4, 0x3086, 0x0000,
-0x0000, 0x185b, 0x5417, 0x8cc1, 0x0000, 0x0000, 0x09df, 0x0000,
-0x0000, 0x0000, 0x8a47, 0x56d2, 0x35dc, 0x0000, 0x3444, 0x0000,
-0x6c8e, 0x0000, 0x0000, 0x0000, 0x4169, 0x04b7, 0x6b72, 0x0000,
-0x2406, 0x0000, 0x1421, 0x4c20, 0x0000, 0x0000, 0x6778, 0x0000,
-0x0000, 0x0000, 0x4107, 0x3ddd, 0x84cb, 0x0000, 0x4278, 0x23d9,
-0x0000, 0x4468, 0x4189, 0x0000, 0x0000, 0x0000, 0x3638, 0x0000,
-0x52b4, 0x0000, 0x0000, 0x4d71, 0x0000, 0x0000, 0x678b, 0x0000,
-0x1478, 0x045a, 0x0000, 0x0000, 0x19be, 0x00e8, 0x35ee, 0x7164,
-0x0000, 0x3249, 0x65e9, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
-0x36ca, 0x803c, 0x0000, 0x5474, 0x7088, 0x4f56, 0x19e4, 0x556a,
-0x0000, 0x0000, 0x2616, 0x54bf, 0x3e68, 0x1874, 0x0000, 0x4e6b,
-0x0000, 0x0388, 0x0000, 0x0000, 0x23af, 0x0000, 0x894c, 0x5507,
-0x6b44, 0x1c65, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x61ae,
-0x3718, 0x8176, 0x0000, 0x2ebb, 0x341e, 0x0000, 0x0000, 0x2686,
-0x526d, 0x49ff, 0x7098, 0x0000, 0x72a8, 0x72bb, 0x0000, 0x4a0d,
-0x6e2c, 0x2134, 0x0a29, 0x6c36, 0x0000, 0x0000, 0x4498, 0x0000,
-0x0000, 0x0000, 0x1e66, 0x6d7c, 0x0000, 0x0000, 0x4b93, 0x0000,
-0x0000, 0x0000, 0x7843, 0x0000, 0x0000, 0x0000, 0x1b6c, 0x0000,
-0x0000, 0x6f4e, 0x7870, 0x7078, 0x0000, 0x0000, 0x7b60, 0x6ec0,
-0x48c9, 0x2abe, 0x356e, 0x0000, 0x1884, 0x0000, 0x70a9, 0x7028,
-0x0000, 0x0000, 0x2f98, 0x2146, 0x1219, 0x75f4, 0x0000, 0x0000,
-0x5ad7, 0x0000, 0x34e7, 0x0000, 0x0000, 0x666f, 0x0000, 0x0000,
-0x73dd, 0x63de, 0x01da, 0x60ae, 0x0000, 0x4367, 0x41d0, 0x0000,
-0x365c, 0x74e3, 0x2607, 0x0000, 0x0000, 0x0000, 0x0000, 0x6454,
-0x71c4, 0x2a1d, 0x2127, 0x2a39, 0x2a47, 0x2a55, 0x2a63, 0x2a71,
-0x2a7f, 0x2a8d, 0x2a9b, 0x0000, 0x1de1, 0x0000, 0x2aa9, 0x088b,
-0x0000, 0x4d81, 0x0000, 0x5391, 0x0156, 0x6d0a, 0x75dd, 0x1006,
-0x0b89, 0x586e, 0x0000, 0x4290, 0x7662, 0x51e0, 0x7716, 0x0000,
-0x8149, 0x528f, 0x5a1b, 0x0000, 0x4719, 0x0000, 0x7bd2, 0x223b,
-0x799e, 0x0000, 0x7789, 0x0000, 0x818d, 0x0000, 0x3591, 0x0000,
-0x6b9e, 0x5a2e, 0x2731, 0x229b, 0x0147, 0x0000, 0x1a26, 0x6f5f,
-0x72cf, 0x0000, 0x3ba8, 0x6a53, 0x82d4, 0x0000, 0x018b, 0x57d3,
-0x8454, 0x1d5e, 0x0000, 0x4129, 0x00d0, 0x0000, 0x0000, 0x1d31,
-0x84b4, 0x7690, 0x7744, 0x6c7c, 0x2219, 0x7910, 0x3680, 0x08b9,
-0x77cf, 0x0e6c, 0x7c2f, 0x7533, 0x7ceb, 0x44f5, 0x36a5, 0x6d66,
-0x33e5, 0x5fb8, 0x7c47, 0x0fd7, 0x7d03, 0x6f70, 0x3430, 0x255b,
-0x2c84, 0x8363, 0x52dd, 0x7aee, 0x0000, 0x22c5, 0x7fa7, 0x24c3,
-0x350c, 0x41e5, 0x7f14, 0x7182, 0x7f5e, 0x139e, 0x234a, 0x0320,
-0x0000, 0x6268, 0x0980, 0x0000, 0x0b30, 0x0c46, 0x1f51, 0x863c,
-0x246c, 0x1f5e, 0x0000, 0x118a, 0x2368, 0x5afe, 0x574b, 0x44e9,
-0x7045, 0x1bc3, 0x1f37, 0x122e, 0x7248, 0x5978, 0x0000, 0x642d,
-0x0000, 0x0000, 0x5830, 0x0000, 0x0000, 0x8ac2, 0x0000, 0x0000,
-0x0000, 0x03a4, 0x03b0, 0x03bc, 0x03c8, 0x0000, 0x145a, 0x0000,
-0x0000, 0x1f86, 0x20e8, 0x44d6, 0x4634, 0x0000, 0x0000, 0x181d,
-0x6943, 0x6d38, 0x2154, 0x0000, 0x0000, 0x3cae, 0x0000, 0x0000,
-0x34f9, 0x1496, 0x5c8a, 0x0000, 0x4330, 0x0000, 0x1969, 0x0000,
-0x1e09, 0x0000, 0x0000, 0x6eec, 0x0000, 0x0000, 0x134c, 0x6257,
-0x40f8, 0x1f79, 0x0000, 0x0000, 0x1240, 0x0000, 0x40b7, 0x584f,
-0x40c6, 0x0000, 0x1a19, 0x6bcc, 0x3614, 0x4b0a, 0x5aeb, 0x0000,
-0x40d5, 0x0000, 0x1fe7, 0x13b0, 0x6aee, 0x0000, 0x0000, 0x08fd,
-0x322b, 0x0000, 0x8bc0, 0x0000, 0x18d8, 0x4249, 0x1892, 0x0000,
-0x243e, 0x0000, 0x0000, 0x0000, 0x0000, 0x08a2, 0x008d, 0x608f,
-0x0000, 0x0000, 0x0000, 0x1e91, 0x3456, 0x0000, 0x6683, 0x57a8,
-0x0000, 0x0000, 0x0000, 0x0000, 0x4fe0, 0x6fb2, 0x03f0, 0x0000,
-0x0000, 0x6ace, 0x0000, 0x7a13, 0x0000, 0x0000, 0x0000, 0x0000,
-0x6cd8, 0x5a86, 0x5a99, 0x0000, 0x4ff4, 0x0000, 0x751f, 0x0000,
-0x0000, 0x0000, 0x00ba, 0x0000, 0x0000, 0x0000, 0x3b46, 0x0000,
-0x5719, 0x0000, 0x0000, 0x0000, 0x1f6b, 0x0000, 0x33d3, 0x0000,
-0x0000, 0x0000, 0x665b, 0x3d8a, 0x0000, 0x15b5, 0x4c8b, 0x0001,
-0x0000, 0x0000, 0x81e9, 0x7203, 0x0000, 0x24f3, 0x0000, 0x0000,
-0x256c, 0x5646, 0x5794, 0x86d3, 0x7b1d, 0x0000, 0x262a, 0x442b,
-0x7700, 0x0000, 0x55e8, 0x67c3, 0x775c, 0x5a08, 0x34c2, 0x8a2f,
-0x7bbc, 0x6d92, 0x81bc, 0x235a, 0x2e1d, 0x7e9b, 0x1ad1, 0x7195,
-0x7df8, 0x5a6f, 0x011b, 0x7aa4, 0x45f9, 0x1c8e, 0x104c, 0x573e,
-0x0000, 0x32f7, 0x1a87, 0x0000, 0x0000, 0x0000, 0x0000, 0x5d68,
-0x0000, 0x14c8, 0x89b0, 0x07f1, 0x02b4, 0x2de8, 0x76e9, 0x6f81,
-0x4dfb, 0x7886, 0x1a45, 0x08d0, 0x772d, 0x789d, 0x5883, 0x78f9,
-0x46e0, 0x79b5, 0x4506, 0x7928, 0x7c18, 0x08e6, 0x7cd4, 0x2bf5,
-0x7e54, 0x7a44, 0x7d34, 0x087c, 0x7eb4, 0x0281, 0x0000, 0x129f,
-0x7f78, 0x012d, 0x0000, 0x85d8, 0x4080, 0x0000, 0x0000, 0x8a18,
-0x6a38, 0x0000, 0x082c, 0x0000, 0x128e, 0x0000, 0x14b8, 0x6848,
-0x0838, 0x70ce, 0x8a90, 0x0000, 0x184c, 0x6afe, 0x0080, 0x0000,
-0x003b, 0x21a4, 0x6a10, 0x0000, 0x0000, 0x0801, 0x5257, 0x0000,
-0x0000, 0x7f45, 0x0000, 0x740e, 0x5c74, 0x3b5e, 0x0000, 0x6175,
-0x0000, 0x3379, 0x555a, 0x0914, 0x0000, 0x8009, 0x1f44, 0x382c,
-0x61c1, 0x0338, 0x0000, 0x6ca3, 0x0000, 0x349e, 0x3f8b, 0x3fe1,
-0x0000, 0x22fe, 0x40a4, 0x5485, 0x138d, 0x4004, 0x0000, 0x253d,
-0x0000, 0x7b08, 0x7332, 0x1701, 0x0000, 0x6a45, 0x0000, 0x1a63,
-0x397b, 0x2423, 0x7efb, 0x14a7, 0x0000, 0x0000, 0x0000, 0x0000,
-0x5706, 0x454d, 0x72f5, 0x0000, 0x0000, 0x144b, 0x0000, 0x8adc,
-0x25d2, 0x0000, 0x1ac4, 0x0000, 0x71b5, 0x3167, 0x0000, 0x4bfd,
-0x0000, 0x0000, 0x0000, 0x1c3f, 0x0000, 0x889f, 0x7586, 0x75b1,
-0x7609, 0x75c7, 0x6cf0, 0x76d3, 0x764c, 0x0100, 0x1fa1, 0x5ba5,
-0x78cc, 0x1fae, 0x7988, 0x7c78, 0x8278, 0x5ec4, 0x1020, 0x1036,
-0x02d9, 0x1062, 0x1078, 0x4092, 0x0000, 0x0000, 0x2f0c, 0x0000,
-0x0000, 0x5bf5, 0x0000, 0x0812, 0x0000, 0x002c, 0x0000, 0x33a3,
-0x0000, 0x081f, 0x3281, 0x0000, 0x0000, 0x6233, 0x1b2f, 0x3da9,
-0x0000, 0x696a, 0x0000, 0x0000, 0x0000, 0x6df4, 0x0000, 0x0000,
-0x4260, 0x0000, 0x0000, 0x2cdb, 0x257c, 0x0000, 0x0000, 0x56ad,
-0x0000, 0x0000, 0x4155, 0x0000, 0x233c, 0x3c7a, 0x0000, 0x0000,
-0x0000, 0x0000, 0x0000, 0x7226, 0x0000, 0x0000, 0x0c2e, 0x0000,
-0x0000, 0x0000, 0x7d94, 0x81d2, 0x6f1a, 0x0000, 0x1efb, 0x0000,
-0x0000, 0x0000, 0x5be5, 0x4028, 0x0000, 0x88b7, 0x0000, 0x0356,
-0x5c15, 0x0000, 0x0eff, 0x0000, 0x0000, 0x0000, 0x7134, 0x0000,
-0x4199, 0x0000, 0x0000, 0x0000, 0x13de, 0x0000, 0x0000, 0x0000,
-0x6e4c, 0x558d, 0x0000, 0x2b9b, 0x0000, 0x0000, 0x1f93, 0x4588,
-0x0000, 0x17e1, 0x01bd, 0x2bd7, 0x0000, 0x511f, 0x1264, 0x6f34,
-0x0000, 0x569a, 0x099a, 0x0000, 0x0000, 0x0000, 0x5e41, 0x0054,
-0x0000, 0x02e7, 0x227f, 0x0000, 0x0000, 0x0c1a, 0x1f2a, 0x871e,
-0x0000, 0x1fce, 0x0000, 0x0000, 0x0000, 0x6d21, 0x0000, 0x0000,
-0x71e5, 0x0000, 0x0000, 0x0000, 0x6cb8, 0x474a, 0x515a, 0x0000,
-0x7470, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x5f0d, 0x0000,
-0x025e, 0x0000, 0x0000, 0x2c53, 0x0000, 0x0000, 0x1e16, 0x0000,
-0x24b3, 0x1e23, 0x0000, 0x6077, 0x2270, 0x2c3a, 0x0000, 0x7383,
-0x0000, 0x0000, 0x1b22
-};
-#endif /* NEEDKTABLE */
-
-#ifdef NEEDVTABLE
-#define VTABLESIZE 2633
-#define VMAXHASH 12
-
-static const unsigned short hashKeysym[VTABLESIZE] = {
-0x0003, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
-0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x8591, 0x0000,
-0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
-0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
-0x1434, 0x1440, 0x144d, 0x145c, 0x146d, 0x147a, 0x1488, 0x1498,
-0x14ba, 0x14ca, 0x14db, 0x14ea, 0x14f5, 0x1501, 0x150d, 0x151a,
-0x1526, 0x152e, 0x1536, 0x153e, 0x1546, 0x154e, 0x1556, 0x155e,
-0x1566, 0x156e, 0x1576, 0x1582, 0x1592, 0x159d, 0x15a9, 0x15b7,
-0x15c6, 0x15cf, 0x15d7, 0x15df, 0x15e7, 0x15ef, 0x15f7, 0x15ff,
-0x1607, 0x160f, 0x1617, 0x161f, 0x1627, 0x162f, 0x1637, 0x163f,
-0x1647, 0x164f, 0x1657, 0x165f, 0x1667, 0x166f, 0x1677, 0x167f,
-0x1687, 0x168f, 0x1697, 0x169f, 0x16b1, 0x16c1, 0x16d4, 0x16e6,
-0x16f7, 0x1713, 0x171b, 0x1723, 0x172b, 0x1733, 0x173b, 0x1743,
-0x174b, 0x1753, 0x175b, 0x1763, 0x176b, 0x1773, 0x177b, 0x1783,
-0x178b, 0x1793, 0x179b, 0x17a3, 0x17ab, 0x17b3, 0x17bb, 0x17c3,
-0x17cb, 0x17d3, 0x17db, 0x17e3, 0x17f3, 0x17fd, 0x180e, 0x0000,
-0x48f0, 0x4900, 0x4914, 0x492c, 0x4943, 0x495b, 0x496e, 0x4984,
-0x499e, 0x49b9, 0x49d3, 0x49ee, 0x0000, 0x4a01, 0x4a0f, 0x0000,
-0x4a1d, 0x4a2e, 0x4a3d, 0x4a54, 0x4a6e, 0x4a89, 0x4a9e, 0x4ab1,
-0x4ac8, 0x4ae1, 0x4af6, 0x4b0c, 0x4b24, 0x4b33, 0x4b4c, 0x4b63,
-0x181f, 0x1832, 0x1843, 0x184e, 0x185d, 0x186c, 0x1876, 0x1886,
-0x1894, 0x18a4, 0x18b4, 0x18c6, 0x18da, 0x18e8, 0x18f5, 0x1906,
-0x1913, 0x1920, 0x1930, 0x1942, 0x1956, 0x1962, 0x196b, 0x197b,
-0x1990, 0x199e, 0x19b0, 0x19c0, 0x19d5, 0x19e6, 0x19f4, 0x1a08,
-0x1a1b, 0x1a28, 0x1a35, 0x1a47, 0x1a54, 0x1a65, 0x1a71, 0x1a7a,
-0x1a89, 0x1a96, 0x1aa3, 0x1ab5, 0x1ac6, 0x1ad3, 0x1ae0, 0x1af2,
-0x1b03, 0x1b17, 0x1b24, 0x1b31, 0x1b3e, 0x1b50, 0x1b5d, 0x1b6e,
-0x1b7d, 0x1b99, 0x1ba6, 0x1bb3, 0x1bc5, 0x1bd6, 0x1be3, 0x1bfb,
-0x1c08, 0x1c15, 0x1c22, 0x1c34, 0x1c41, 0x1c52, 0x1c5e, 0x1c67,
-0x1c76, 0x1c83, 0x1c90, 0x1ca2, 0x1cb3, 0x1cc0, 0x1ccd, 0x1cdf,
-0x1cf0, 0x1cfa, 0x1d07, 0x1d14, 0x1d21, 0x1d33, 0x1d40, 0x1d51,
-0x1d60, 0x1d7c, 0x1d89, 0x1d96, 0x1da8, 0x1db9, 0x1dc6, 0x1dd2,
-0x6993, 0x0000, 0x69a5, 0x88ea, 0x0000, 0x0000, 0x69ca, 0x0000,
-0x69dd, 0x0000, 0x46f0, 0x0000, 0x83ae, 0x46fe, 0x0000, 0x0000,
-0x470c, 0x0000, 0x83c7, 0x471b, 0x0000, 0x0000, 0x472a, 0x6aa8,
-0x0000, 0x473b, 0x0000, 0x0000, 0x474c, 0x0000, 0x6a12, 0x475c,
-0x0000, 0x0000, 0x476c, 0x7237, 0x7cbe, 0x4779, 0x0000, 0x0000,
-0x0000, 0x0000, 0x0000, 0x4786, 0x0000, 0x725d, 0x7ced, 0x7270,
-0x0000, 0x4798, 0x0000, 0x7296, 0x47a7, 0x72aa, 0x8456, 0x47bd,
-0x0000, 0x7136, 0x47cc, 0x7142, 0x0000, 0x47dc, 0x0000, 0x0000,
-0x47eb, 0x4b7b, 0x0000, 0x47fb, 0x0000, 0x4ba7, 0x480d, 0x4bba,
-0x3061, 0x481e, 0x0000, 0x4bd3, 0x482d, 0x7320, 0x0000, 0x483e,
-0x89ff, 0x4bf2, 0x257e, 0x4bff, 0x3088, 0x25b2, 0x0000, 0x4c22,
-0x25a0, 0x4c34, 0x4d0a, 0x25d4, 0x6247, 0x4c59, 0x4870, 0x4c6a,
-0x4d3b, 0x4883, 0x0000, 0x4c8d, 0x489b, 0x4ca5, 0x628d, 0x4cbf,
-0x0000, 0x4ccb, 0x0000, 0x4ce4, 0x852e, 0x4cfd, 0x0000, 0x56c2,
-0x48a8, 0x6a9a, 0x0000, 0x48b8, 0x0000, 0x56d4, 0x48cb, 0x4d49,
-0x0000, 0x48dd, 0x4d66, 0x4d73, 0x0000, 0x4d83, 0x857a, 0x0000,
-0x0000, 0x4d92, 0x0000, 0x4d9c, 0x6370, 0x4da7, 0x4db4, 0x7184,
-0x0000, 0x7197, 0x4dc1, 0x71a8, 0x0000, 0x4dcf, 0x0000, 0x4dde,
-0x2f0e, 0x4dee, 0x2f24, 0x4dfd, 0x2f3a, 0x71f7, 0x2f4d, 0x7205,
-0x2f60, 0x7219, 0x2f73, 0x6a3a, 0x2f87, 0x6a8d, 0x0000, 0x0000,
-0x0000, 0x1de3, 0x1df1, 0x1dfd, 0x0000, 0x1e0b, 0x1e18, 0x0000,
-0x0000, 0x1e25, 0x1e32, 0x1e41, 0x1e4e, 0x0000, 0x1e5b, 0x1e68,
-0x0000, 0x1e78, 0x1e86, 0x1e93, 0x0000, 0x1ea1, 0x1eae, 0x1ebb,
-0x0000, 0x1ec7, 0x1ed4, 0x1ee3, 0x1ef0, 0x1efd, 0x1f0f, 0x1f1c,
-0x1f2c, 0x724a, 0x0000, 0x1f39, 0x0000, 0x1f46, 0x1f53, 0x6a80,
-0x1f60, 0x0000, 0x1f6d, 0x484b, 0x1f7b, 0x6a65, 0x0000, 0x1f88,
-0x1f95, 0x1fa3, 0x1fb0, 0x6a47, 0x0000, 0x1fbd, 0x0000, 0x0000,
-0x1fd0, 0x1fdd, 0x0000, 0x1fe9, 0x0000, 0x0000, 0x1ffc, 0x0000,
-0x200b, 0x0000, 0x0000, 0x2018, 0x0000, 0x2025, 0x2032, 0x0000,
-0x203f, 0x0000, 0x204c, 0x72e4, 0x205a, 0x0000, 0x4bc5, 0x2067,
-0x2074, 0x2082, 0x208f, 0x0000, 0x0000, 0x209c, 0x0000, 0x4bdf,
-0x20c2, 0x20cf, 0x7347, 0x20af, 0x877d, 0x735c, 0x20db, 0x20ea,
-0x4c12, 0x0000, 0x0000, 0x714e, 0x0000, 0x6ad0, 0x715a, 0x0000,
-0x0000, 0x4c47, 0x0000, 0x6060, 0x0000, 0x8ca9, 0x87c6, 0x8135,
-0x0000, 0x0000, 0x4c7d, 0x0000, 0x87dd, 0x6a1f, 0x0000, 0x0000,
-0x6a72, 0x0000, 0x87f5, 0x8cde, 0x0000, 0x0000, 0x8178, 0x0000,
-0x880d, 0x0000, 0x74e5, 0x7385, 0x0000, 0x0000, 0x739c, 0x0000,
-0x0000, 0x73ab, 0x73bb, 0x0000, 0x73ce, 0x0000, 0x0000, 0x0000,
-0x750d, 0x0000, 0x8857, 0x0000, 0x7845, 0x0000, 0x0000, 0x7521,
-0x0000, 0x0000, 0x0000, 0x73df, 0x73f0, 0x73ff, 0x7535, 0x0000,
-0x7888, 0x0000, 0x672f, 0x4859, 0x88a1, 0x7166, 0x0000, 0x0000,
-0x7174, 0x0000, 0x0000, 0x0000, 0x0000, 0x7410, 0x7420, 0x0000,
-0x78e4, 0x0000, 0x0000, 0x0000, 0x71b7, 0x827a, 0x7430, 0x71c6,
-0x0000, 0x80ef, 0x71d6, 0x782f, 0x792a, 0x71e7, 0x0000, 0x0000,
-0x7941, 0x0000, 0x0000, 0x7282, 0x0000, 0x0000, 0x0000, 0x0000,
-0x744d, 0x743e, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
-0x79a0, 0x0000, 0x0000, 0x0000, 0x7228, 0x0000, 0x0000, 0x0000,
-0x79ce, 0x0000, 0x897f, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
-0x79fd, 0x0000, 0x0000, 0x745f, 0x7472, 0x0000, 0x89b2, 0x4b95,
-0x0000, 0x0000, 0x0000, 0x72d1, 0x7a46, 0x0000, 0x0000, 0x0000,
-0x0000, 0x0000, 0x0000, 0x72f7, 0x0000, 0x0000, 0x4e1c, 0x4e37,
-0x4e4a, 0x4e6d, 0x4e94, 0x4ebb, 0x4ecb, 0x4edc, 0x4f01, 0x4f24,
-0x4f47, 0x20f9, 0x4f6f, 0x4f81, 0x4f94, 0x4faa, 0x2107, 0x4fd1,
-0x4fe2, 0x2119, 0x501c, 0x2129, 0x2136, 0x506f, 0x5093, 0x50b6,
-0x50c8, 0x2148, 0x0000, 0x0000, 0x0000, 0x0000, 0x2156, 0x0000,
-0x0000, 0x2168, 0x0000, 0x2177, 0x2184, 0x0000, 0x0000, 0x4d2b,
-0x0000, 0x60f1, 0x0000, 0x0000, 0x6091, 0x2196, 0x21a6, 0x6149,
-0x849d, 0x0000, 0x0000, 0x0000, 0x0000, 0x84b6, 0x0000, 0x0000,
-0x618a, 0x0000, 0x84cd, 0x61b0, 0x8af6, 0x21b8, 0x61d6, 0x0000,
-0x21c8, 0x61fb, 0x0000, 0x0000, 0x6221, 0x21da, 0x21e7, 0x597a,
-0x7c31, 0x8516, 0x626a, 0x0000, 0x0000, 0x21f9, 0x2209, 0x0000,
-0x62b1, 0x0000, 0x0000, 0x59d9, 0x0000, 0x0000, 0x62fc, 0x0000,
-0x0000, 0x0000, 0x0000, 0x4d57, 0x634a, 0x221b, 0x0000, 0x5a30,
-0x222b, 0x0000, 0x6396, 0x0000, 0x7cd6, 0x223d, 0x224a, 0x0000,
-0x63e0, 0x0000, 0x0000, 0x5a88, 0x85c1, 0x0000, 0x642f, 0x0000,
-0x7d1d, 0x6456, 0x0000, 0x0000, 0x7d36, 0x0000, 0x85f2, 0x649f,
-0x7d4d, 0x0000, 0x64c4, 0x0000, 0x0000, 0x64e9, 0x8c0e, 0x0000,
-0x650e, 0x0000, 0x0000, 0x6533, 0x8c27, 0x0000, 0x6557, 0x0000,
-0x7dae, 0x657b, 0x8656, 0x0000, 0x659f, 0x0000, 0x0000, 0x65c4,
-0x8c5b, 0x72bd, 0x65eb, 0x0000, 0x0000, 0x6611, 0x7481, 0x0000,
-0x50da, 0x86a2, 0x0000, 0x5ba7, 0x7495, 0x0000, 0x6685, 0x0000,
-0x0000, 0x66ab, 0x74a9, 0x0000, 0x66ce, 0x730c, 0x0000, 0x66f1,
-0x74bd, 0x0000, 0x6045, 0x0000, 0x0000, 0x870a, 0x74d1, 0x7334,
-0x37d1, 0x0000, 0x0000, 0x60c3, 0x37f4, 0x0000, 0x0000, 0x6fa4,
-0x0000, 0x0000, 0x74f9, 0x0000, 0x0000, 0x0000, 0x7371, 0x0000,
-0x5110, 0x5121, 0x5134, 0x5148, 0x515c, 0x516f, 0x5185, 0x5197,
-0x51aa, 0x51be, 0x51d2, 0x51e2, 0x51f5, 0x5207, 0x521a, 0x4e0c,
-0x5240, 0x5259, 0x526f, 0x5280, 0x5291, 0x52a2, 0x52b6, 0x52cb,
-0x52df, 0x52ef, 0x5303, 0x5314, 0x5328, 0x5338, 0x534b, 0x535c,
-0x5372, 0x5382, 0x5393, 0x53a4, 0x53b2, 0x53c4, 0x53d2, 0x53e4,
-0x53f6, 0x5408, 0x5419, 0x542a, 0x543d, 0x544d, 0x5461, 0x5476,
-0x5487, 0x549d, 0x54af, 0x54c1, 0x54d2, 0x54e4, 0x30c9, 0x30e0,
-0x551a, 0x552c, 0x30f7, 0x3114, 0x0000, 0x553f, 0x3131, 0x314d,
-0x3169, 0x3186, 0x55a0, 0x55b9, 0x55d3, 0x55ea, 0x31a3, 0x31bf,
-0x5624, 0x5636, 0x225c, 0x2272, 0x5676, 0x2281, 0x228e, 0x568a,
-0x569c, 0x56af, 0x229d, 0x22ab, 0x22ba, 0x322d, 0x324b, 0x3267,
-0x572e, 0x0000, 0x3283, 0x22c7, 0x32bd, 0x22d6, 0x22e3, 0x330d,
-0x8934, 0x0000, 0x22f2, 0x2300, 0x230f, 0x231c, 0x0000, 0x2326,
-0x2330, 0x0000, 0x0000, 0x5fcd, 0x818f, 0x0000, 0x0000, 0x233e,
-0x0000, 0x0000, 0x0000, 0x0000, 0x234c, 0x0000, 0x0000, 0x235c,
-0x0000, 0x236a, 0x2379, 0x2387, 0x3321, 0x3336, 0x89cb, 0x0000,
-0x0000, 0x2396, 0x0000, 0x0000, 0x0000, 0x23a4, 0x23b1, 0x3363,
-0x23bf, 0x0000, 0x0000, 0x0000, 0x337b, 0x3390, 0x0000, 0x23cd,
-0x0000, 0x0000, 0x33a5, 0x33bd, 0x23db, 0x0000, 0x0000, 0x23eb,
-0x0000, 0x23f9, 0x2408, 0x2416, 0x0000, 0x0000, 0x0000, 0x0000,
-0x0000, 0x2425, 0x0000, 0x0000, 0x82d6, 0x2433, 0x2440, 0x0000,
-0x0000, 0x6ab4, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
-0x0000, 0x0000, 0x0000, 0x0000, 0x8336, 0x0000, 0x0000, 0x0000,
-0x834d, 0x0000, 0x555c, 0x0000, 0x8365, 0x0000, 0x556c, 0x0000,
-0x837d, 0x4d1a, 0x557d, 0x0000, 0x8396, 0x0000, 0x558f, 0x0000,
-0x43f7, 0x778b, 0x0000, 0x0000, 0x77a2, 0x0000, 0x8b5b, 0x77ba,
-0x83e0, 0x0000, 0x77d1, 0x8b75, 0x442d, 0x6177, 0x619d, 0x61c3,
-0x61e9, 0x620d, 0x6235, 0x6259, 0x627b, 0x629f, 0x62c3, 0x62e9,
-0x630f, 0x6337, 0x635d, 0x6383, 0x63a9, 0x63cd, 0x63f3, 0x641b,
-0x6443, 0x6469, 0x648d, 0x64b1, 0x64d7, 0x64fb, 0x6521, 0x6545,
-0x6569, 0x658d, 0x65b1, 0x65d7, 0x65ff, 0x6623, 0x6649, 0x6671,
-0x6699, 0x66bd, 0x66df, 0x8c41, 0x84e5, 0x0000, 0x6703, 0x611d,
-0x5899, 0x58ad, 0x58c6, 0x58de, 0x58f1, 0x5909, 0x5921, 0x5935,
-0x594e, 0x5961, 0x31db, 0x5992, 0x59aa, 0x59c1, 0x31f5, 0x59f2,
-0x5a0a, 0x5a1d, 0x320f, 0x5a48, 0x5a5f, 0x5a71, 0x56f6, 0x5a9b,
-0x5aae, 0x5ac6, 0x5ad9, 0x5aed, 0x5b00, 0x5b14, 0x5b27, 0x5b36,
-0x5b46, 0x5b56, 0x5b67, 0x5b77, 0x5b86, 0x5b97, 0x2609, 0x5bb6,
-0x5bc6, 0x5bd7, 0x5be7, 0x5bf7, 0x5c06, 0x5c17, 0x5c27, 0x5c37,
-0x5c47, 0x5c57, 0x5c67, 0x5c76, 0x5c8c, 0x5ca7, 0x5cc1, 0x5cd6,
-0x5cf0, 0x5d0a, 0x5d20, 0x5d35, 0x5d50, 0x5d6a, 0x5d84, 0x5d9d,
-0x5db7, 0x5dd2, 0x5dec, 0x5e01, 0x5e16, 0x5e2f, 0x5e43, 0x5e5c,
-0x5e71, 0x2618, 0x262c, 0x2646, 0x2660, 0x2671, 0x269d, 0x26ab,
-0x26b8, 0x26c5, 0x26d2, 0x26df, 0x26ec, 0x26fa, 0x2708, 0x2716,
-0x2733, 0x2748, 0x2755, 0x2762, 0x276f, 0x277c, 0x2789, 0x2797,
-0x27a5, 0x27b3, 0x27c1, 0x27cf, 0x27dd, 0x27ec, 0x27fa, 0x2808,
-0x2816, 0x2824, 0x2841, 0x285e, 0x286c, 0x287a, 0x2888, 0x2896,
-0x28a4, 0x28b2, 0x28c0, 0x28ce, 0x28dc, 0x28f8, 0x2906, 0x2914,
-0x2922, 0x2930, 0x293e, 0x294c, 0x295a, 0x2968, 0x2976, 0x2984,
-0x2992, 0x29a0, 0x29ae, 0x29bc, 0x29ca, 0x29d8, 0x29e5, 0x29f7,
-0x883e, 0x7d65, 0x0000, 0x0000, 0x4518, 0x0000, 0x0000, 0x7d96,
-0x8870, 0x0000, 0x7129, 0x0000, 0x888a, 0x7dc7, 0x0000, 0x0000,
-0x7de0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x7e10, 0x0000,
-0x88d1, 0x0000, 0x3bea, 0x0000, 0x3c02, 0x0000, 0x0000, 0x0000,
-0x8902, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
-0x7e9d, 0x0000, 0x0000, 0x7eb6, 0x0000, 0x0000, 0x7ecd, 0x0000,
-0x0000, 0x7ee5, 0x0000, 0x0000, 0x6636, 0x0000, 0x0000, 0x7f16,
-0x8998, 0x0000, 0x7f2e, 0x0000, 0x665d, 0x7f47, 0x0000, 0x0000,
-0x7f60, 0x0000, 0x0000, 0x7f7a, 0x0000, 0x0000, 0x7f91, 0x0000,
-0x56e5, 0x7fa9, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
-0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
-0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
-0x8a92, 0x0000, 0x0000, 0x4f58, 0x0000, 0x0000, 0x0000, 0x0000,
-0x0000, 0x0000, 0x0000, 0x83fa, 0x0000, 0x4fbb, 0x0000, 0x2f9a,
-0x2fb3, 0x2fcc, 0x0000, 0x500a, 0x8b0f, 0x0000, 0x811f, 0x5031,
-0x8b28, 0x5041, 0x0000, 0x0000, 0x2b61, 0x2b70, 0x2b7f, 0x2b8e,
-0x2b9d, 0x2bac, 0x2bbb, 0x2bca, 0x2bd9, 0x2be8, 0x2aab, 0x0000,
-0x81a6, 0x0000, 0x0000, 0x0000, 0x2ac0, 0x0000, 0x81d4, 0x0000,
-0x8bc2, 0x81eb, 0x0000, 0x0000, 0x8bdb, 0x2ade, 0x0000, 0x0000,
-0x8bf4, 0x0000, 0x2af0, 0x0000, 0x6bb7, 0x0000, 0x0000, 0x0000,
-0x6bce, 0x0000, 0x2b01, 0x671d, 0x2b14, 0x6742, 0x6755, 0x6768,
-0x677a, 0x678d, 0x67a0, 0x67b3, 0x67c5, 0x2b26, 0x67eb, 0x67fe,
-0x6811, 0x6823, 0x6836, 0x684a, 0x2fe5, 0x6870, 0x6883, 0x6895,
-0x68a9, 0x68bd, 0x68d1, 0x68e4, 0x68f8, 0x690c, 0x691f, 0x6932,
-0x2ff6, 0x6959, 0x696c, 0x6980, 0x43d4, 0x3007, 0x69b8, 0x43e8,
-0x418b, 0x69f0, 0x419b, 0x301a, 0x2b38, 0x440e, 0x0000, 0x0000,
-0x441d, 0x0000, 0x810a, 0x2512, 0x0000, 0x0000, 0x302b, 0x0000,
-0x0000, 0x0000, 0x3044, 0x2bf7, 0x0000, 0x309f, 0x0000, 0x2c0e,
-0x0000, 0x2c29, 0x2c3c, 0x2c55, 0x2c6e, 0x2c86, 0x2ca2, 0x2cba,
-0x2ccc, 0x2cdd, 0x2cf5, 0x2d06, 0x2d18, 0x2d2a, 0x2d3b, 0x2d4d,
-0x2b4b, 0x2d70, 0x2d80, 0x2d92, 0x2da4, 0x2db7, 0x2dc8, 0x2dd9,
-0x2dea, 0x2dfb, 0x2e0c, 0x0000, 0x0000, 0x8547, 0x0000, 0x0000,
-0x2e1f, 0x2e34, 0x2e45, 0x2e56, 0x2e67, 0x2e78, 0x2e8a, 0x2e9c,
-0x2ebd, 0x2ece, 0x2ee7, 0x2ef8, 0x2a1f, 0x2a2d, 0x2a3b, 0x2a49,
-0x2a57, 0x2a65, 0x2a73, 0x2a81, 0x2a8f, 0x2a9d, 0x0000, 0x0000,
-0x0000, 0x0000, 0x754a, 0x863e, 0x755e, 0x0000, 0x7573, 0x0000,
-0x7588, 0x866f, 0x759e, 0x0000, 0x8688, 0x0000, 0x0000, 0x6407,
-0x0000, 0x0000, 0x86bb, 0x0000, 0x0000, 0x86d5, 0x0000, 0x0000,
-0x86ef, 0x0000, 0x0000, 0x85da, 0x0000, 0x0000, 0x0000, 0x0000,
-0x7692, 0x8737, 0x76aa, 0x0000, 0x76bf, 0x0000, 0x76d5, 0x8766,
-0x0000, 0x0000, 0x7702, 0x0000, 0x0000, 0x8795, 0x0000, 0x0000,
-0x87ad, 0x1206, 0x121b, 0x1230, 0x1242, 0x1253, 0x1266, 0x127a,
-0x1290, 0x12a1, 0x12b1, 0x12c0, 0x12cf, 0x12de, 0x12ee, 0x12fe,
-0x1315, 0x132a, 0x133e, 0x134e, 0x135f, 0x136f, 0x137f, 0x138f,
-0x13a0, 0x13b2, 0x13ca, 0x13e0, 0x13f4, 0x140c, 0x1423, 0x0000,
-0x78b6, 0x88b9, 0x78ce, 0x0000, 0x6a02, 0x0000, 0x78fb, 0x6a55,
-0x7912, 0x0000, 0x4530, 0x0000, 0x6fc5, 0x0000, 0x7959, 0x0000,
-0x7971, 0x0000, 0x798a, 0x0000, 0x6fea, 0x8c76, 0x79b7, 0x0000,
-0x67d8, 0x453f, 0x79e6, 0x0000, 0x700e, 0x0000, 0x7a15, 0x455d,
-0x7a2d, 0x0000, 0x456e, 0x0000, 0x7a5d, 0x89e5, 0x7a75, 0x0000,
-0x7a8d, 0x0000, 0x7aa6, 0x8a1a, 0x7abe, 0x685d, 0x7ad7, 0x0000,
-0x7af0, 0x0000, 0x7b0a, 0x0000, 0x7b1f, 0x0000, 0x7b35, 0x8a7a,
-0x7b4b, 0x0000, 0x7b62, 0x0000, 0x7b78, 0x8aab, 0x7b8f, 0x0000,
-0x8ac4, 0x0000, 0x0000, 0x8ade, 0x7bd4, 0x0000, 0x6ae0, 0x0000,
-0x7c02, 0x6af0, 0x7c1a, 0x0000, 0x6b00, 0x0000, 0x0000, 0x6b0c,
-0x0000, 0x6945, 0x6b18, 0x0000, 0x0000, 0x6b2f, 0x0000, 0x0000,
-0x6b46, 0x33d5, 0x33e7, 0x33fb, 0x340d, 0x3432, 0x3446, 0x3469,
-0x348e, 0x34b1, 0x34d6, 0x34fb, 0x350e, 0x3522, 0x3542, 0x355c,
-0x3582, 0x3593, 0x35a5, 0x35b9, 0x35cb, 0x35f0, 0x3604, 0x3627,
-0x364c, 0x366f, 0x3694, 0x36b9, 0x36cc, 0x36e0, 0x3700, 0x371a,
-0x3740, 0x3752, 0x3763, 0x3775, 0x3788, 0x379a, 0x37ac, 0x37be,
-0x24b5, 0x37e3, 0x24c5, 0x380a, 0x381c, 0x382e, 0x3840, 0x3852,
-0x3863, 0x3875, 0x3887, 0x3899, 0x38ab, 0x38bd, 0x38ce, 0x38e1,
-0x38f3, 0x390b, 0x391f, 0x3931, 0x3944, 0x3955, 0x396a, 0x397d,
-0x3995, 0x39a7, 0x39b8, 0x39ca, 0x39dd, 0x39ef, 0x3a01, 0x3a13,
-0x3a26, 0x3a38, 0x3a49, 0x3a5f, 0x3a71, 0x3a83, 0x3a95, 0x3aa7,
-0x3ab8, 0x3aca, 0x3adc, 0x3aee, 0x3b00, 0x3b12, 0x3b23, 0x3b36,
-0x3b48, 0x3b60, 0x3b74, 0x3b86, 0x3b99, 0x3baa, 0x3bbf, 0x3bd2,
-0x814b, 0x0000, 0x8162, 0x0000, 0x4220, 0x0000, 0x4234, 0x0000,
-0x424b, 0x0000, 0x81be, 0x0000, 0x427a, 0x0000, 0x4292, 0x0000,
-0x8202, 0x0000, 0x821a, 0x0000, 0x8231, 0x0000, 0x8249, 0x6a2d,
-0x8261, 0x0000, 0x431b, 0x0000, 0x8290, 0x54f6, 0x82a7, 0x5509,
-0x82be, 0x0000, 0x4389, 0x0000, 0x82ed, 0x0000, 0x8305, 0x0000,
-0x0000, 0x087e, 0x088d, 0x08a4, 0x08bb, 0x08d2, 0x0942, 0x0958,
-0x096d, 0x0982, 0x099c, 0x09b1, 0x09cb, 0x09e1, 0x09fc, 0x0a11,
-0x24f5, 0x08e8, 0x08ff, 0x0916, 0x443d, 0x55fe, 0x8427, 0x5613,
-0x843e, 0x0000, 0x444c, 0x0000, 0x846d, 0x5648, 0x8485, 0x565f,
-0x0a2b, 0x0a3e, 0x0a55, 0x0a6e, 0x0a88, 0x0aa4, 0x0ac1, 0x0adf,
-0x0af9, 0x0b14, 0x0b32, 0x0b51, 0x0b70, 0x0b8b, 0x0ba7, 0x0bc0,
-0x0bdb, 0x0bfa, 0x0c1c, 0x0c30, 0x0c48, 0x5708, 0x85a9, 0x571b,
-0x2590, 0x0000, 0x25c4, 0x702a, 0x44aa, 0x0000, 0x860b, 0x32a0,
-0x8624, 0x7047, 0x63bb, 0x32db, 0x44b8, 0x32f9, 0x44c9, 0x7069,
-0x44d8, 0x0000, 0x44eb, 0x0000, 0x44f7, 0x708a, 0x4508, 0x0000,
-0x0c58, 0x0c69, 0x0c7a, 0x0c90, 0x0ca1, 0x0cb3, 0x0cc4, 0x0cd8,
-0x0ced, 0x0d02, 0x0d19, 0x0d2a, 0x0d3d, 0x0d4f, 0x0d5f, 0x0d77,
-0x0d93, 0x0da7, 0x0db7, 0x0dc7, 0x247e, 0x0000, 0x2505, 0x0000,
-0x248b, 0x0000, 0x2522, 0x7110, 0x254c, 0x0000, 0x255d, 0x8c8f,
-0x0e59, 0x0e6e, 0x0e8c, 0x0ea4, 0x0eba, 0x0ed2, 0x0eea, 0x0f01,
-0x0f1e, 0x0f34, 0x0f4a, 0x3c1c, 0x3c32, 0x3c49, 0x891b, 0x3c7c,
-0x3c96, 0x3cb0, 0x894e, 0x3ccc, 0x8966, 0x0000, 0x3ce4, 0x3cff,
-0x454f, 0x3d14, 0x3d2c, 0x3d46, 0x3d5c, 0x3d73, 0x3d8c, 0x3dab,
-0x3dc5, 0x3ddf, 0x3dfb, 0x3e1d, 0x8a31, 0x334b, 0x8a49, 0x0000,
-0x8a61, 0x3e35, 0x3e47, 0x3e58, 0x3e6a, 0x3e7c, 0x3e90, 0x3ea1,
-0x3eb1, 0x3ec3, 0x3ed4, 0x3ee6, 0x3f0b, 0x3f1a, 0x3f29, 0x3f38,
-0x3f4c, 0x3f5b, 0x3f6b, 0x0000, 0x3f7d, 0x3f8d, 0x3fa1, 0x3fb1,
-0x3fc1, 0x3fd1, 0x6b5d, 0x0000, 0x6b74, 0x0000, 0x6b8a, 0x0000,
-0x6ba0, 0x3fe3, 0x3ff5, 0x4006, 0x4018, 0x402a, 0x403e, 0x404f,
-0x405f, 0x4071, 0x4082, 0x4094, 0x40b9, 0x40c8, 0x40d7, 0x40e6,
-0x40fa, 0x4109, 0x4119, 0x412b, 0x4147, 0x4157, 0x416b, 0x417b,
-0x0dd9, 0x0df4, 0x0e0e, 0x0000, 0x0e28, 0x0e42, 0x0000, 0x0000,
-0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x6cff, 0x0000,
-0x0f63, 0x0f76, 0x0f8a, 0x0f9b, 0x0fae, 0x0fc3, 0x0fd9, 0x0ff0,
-0x1008, 0x1022, 0x1038, 0x104e, 0x1064, 0x107a, 0x1090, 0x10ac,
-0x10c4, 0x10dc, 0x10f4, 0x110c, 0x1124, 0x113c, 0x1150, 0x1164,
-0x1178, 0x11a0, 0x11b9, 0x11d2, 0x11ec, 0x118c, 0x75b3, 0x75c9,
-0x75df, 0x75f6, 0x760b, 0x7621, 0x7637, 0x764e, 0x7664, 0x767b,
-0x0014, 0x0024, 0x002e, 0x003d, 0x76eb, 0x0049, 0x7718, 0x772f,
-0x7746, 0x775e, 0x7774, 0x0056, 0x0062, 0x0074, 0x6f36, 0x77e9,
-0x7801, 0x781a, 0x6f61, 0x0082, 0x785b, 0x7872, 0x6f83, 0x789f,
-0x009c, 0x0102, 0x010e, 0x011d, 0x013c, 0x0149, 0x0158, 0x0167,
-0x017f, 0x018d, 0x019b, 0x01b1, 0x01bf, 0x01cc, 0x01dc, 0x01ed,
-0x01fe, 0x5740, 0x574d, 0x5760, 0x5771, 0x5784, 0x5796, 0x00ac,
-0x57c1, 0x57d5, 0x57e8, 0x57fe, 0x00bc, 0x00d2, 0x00ea, 0x5870,
-0x7ba6, 0x7bbe, 0x70ab, 0x7beb, 0x244e, 0x245e, 0x70d0, 0x7c49,
-0x7c61, 0x7c7a, 0x7c90, 0x7ca7, 0x246e, 0x2498, 0x70f4, 0x7d05,
-0x0241, 0x024c, 0x0257, 0x0260, 0x026c, 0x0277, 0x0291, 0x02ac,
-0x02b6, 0x7dfa, 0x2d5e, 0x7e27, 0x7e3e, 0x7e56, 0x7e6d, 0x7e85,
-0x02c2, 0x02cf, 0x02db, 0x02e9, 0x7efd, 0x02f6, 0x0301, 0x030c,
-0x0317, 0x0322, 0x032f, 0x033a, 0x7fc1, 0x7fda, 0x7ff2, 0x800b,
-0x8024, 0x803e, 0x8056, 0x806f, 0x8088, 0x80a2, 0x80bb, 0x80d5,
-0x6ac0, 0x41c0, 0x41d2, 0x41e7, 0x41fc, 0x420e, 0x0346, 0x036c,
-0x037b, 0x4262, 0x24d5, 0x24e5, 0x42a6, 0x42ba, 0x42cf, 0x42e4,
-0x42ff, 0x038a, 0x4332, 0x4349, 0x4369, 0x0397, 0x43a1, 0x43b9,
-0x831d, 0x03a6, 0x03b2, 0x03be, 0x03ca, 0x03d6, 0x03e4, 0x03f2,
-0x03fe, 0x040d, 0x041b, 0x043b, 0x045c, 0x0469, 0x0478, 0x0488,
-0x4458, 0x446a, 0x252f, 0x256e, 0x84fd, 0x447d, 0x448c, 0x449a,
-0x8560, 0x6323, 0x04a7, 0x04b9, 0x04c6, 0x04d9, 0x04eb, 0x04fc,
-0x050c, 0x0517, 0x0522, 0x052d, 0x0538, 0x0543, 0x054e, 0x0559,
-0x0564, 0x056f, 0x8720, 0x647b, 0x874e, 0x0498, 0x057a, 0x0583,
-0x058c, 0x0595, 0x059e, 0x05a7, 0x05b0, 0x05b9, 0x05c2, 0x05cb,
-0x05d5, 0x05e8, 0x05fb, 0x060e, 0x0621, 0x0634, 0x0647, 0x065a,
-0x066d, 0x0680, 0x0694, 0x06a7, 0x06ba, 0x06cd, 0x06e0, 0x06f3,
-0x0706, 0x0719, 0x072c, 0x073f, 0x0753, 0x0767, 0x077b, 0x078f,
-0x07a3, 0x07b7, 0x07c5, 0x07d3, 0x07e3, 0x07f3, 0x0803, 0x0814,
-0x0821, 0x082e, 0x083a, 0x0846, 0x0854, 0x0862, 0x0870, 0x6be8,
-0x6c02, 0x6c14, 0x6c26, 0x6c38, 0x6c4a, 0x6c5b, 0x6c6c, 0x6c7e,
-0x6c90, 0x6ca5, 0x6cba, 0x6cca, 0x6cda, 0x6ce6, 0x6cf2, 0x008f,
-0x6d0c, 0x6d23, 0x6d3a, 0x6d51, 0x6d68, 0x6d7e, 0x6d94, 0x6dab,
-0x6dc2, 0x6ddc, 0x6df6, 0x6e02, 0x6e0e, 0x6e1e, 0x6e2e, 0x6e3e,
-0x6e4e, 0x6e5a, 0x6e66, 0x6e7d, 0x6e94, 0x6eab, 0x6ec2, 0x6ed8,
-0x6eee, 0x6f05, 0x6f1c, 0x5e86, 0x6f50, 0x5e9b, 0x6f72, 0x5eb1,
-0x6f94, 0x5ec6, 0x6fb4, 0x5edc, 0x6fd6, 0x5ef1, 0x6ffe, 0x5f0f,
-0x701e, 0x5f2e, 0x7036, 0x5f4d, 0x7058, 0x5f62, 0x707a, 0x5f81,
-0x709a, 0x5fa1, 0x70bc, 0x5fba, 0x24a8, 0x253f, 0x70e4, 0x5fe1,
-0x7104, 0x5ff8, 0x711c, 0x6019, 0x0000, 0x0000, 0x0000, 0x0000,
-0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x6034, 0x0000, 0x0000,
-0x0000, 0x0000, 0x0000, 0x25e6, 0x25ef, 0x25f8, 0x0000, 0x0000,
-0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x8b42, 0x0000,
-0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
-0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
-0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
-0x0000, 0x8b8f, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
-0x0000, 0x0000, 0x8baa, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
-0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
-0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
-0x0000, 0x8826, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
-0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
-0x0000, 0x7d7d, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
-0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
-0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x457e,
-0x458a, 0x459d, 0x45b0, 0x45b9, 0x45c2, 0x45cb, 0x0000, 0x8410,
-0x45d4, 0x45dd, 0x45e6, 0x45fb, 0x460f, 0x4622, 0x4636, 0x464a,
-0x465f, 0x4674, 0x4689, 0x469e, 0x46b3, 0x46bf, 0x46cc, 0x46d7,
-0x46e2, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
-0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x8cc3, 0x0000, 0x0000,
-0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
-0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x8cf8,
-0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
-0x8d13, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
-0x0000, 0x8d2e, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
-0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x522d,
-0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x62d6, 0x0000,
-0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
-0x0000
-};
-#endif /* NEEDVTABLE */