diff -Nru fcitx-4.0.1/aclocal.m4 fcitx-4.1.1/aclocal.m4 --- fcitx-4.0.1/aclocal.m4 2010-12-17 04:26:29.000000000 +0000 +++ fcitx-4.1.1/aclocal.m4 1970-01-01 00:00:00.000000000 +0000 @@ -1,12095 +0,0 @@ -# generated automatically by aclocal 1.11.1 -*- Autoconf -*- - -# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, -# 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc. -# This file is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - -m4_ifndef([AC_AUTOCONF_VERSION], - [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl -m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.68],, -[m4_warning([this file was generated for autoconf 2.68. -You have another version of autoconf. It may work, but is not guaranteed to. -If you have problems, you may need to regenerate the build system entirely. -To do so, use the procedure documented by the package, typically `autoreconf'.])]) - -# gettext.m4 serial 63 (gettext-0.18) -dnl Copyright (C) 1995-2010 Free Software Foundation, Inc. -dnl This file is free software; the Free Software Foundation -dnl gives unlimited permission to copy and/or distribute it, -dnl with or without modifications, as long as this notice is preserved. -dnl -dnl This file can can be used in projects which are not available under -dnl the GNU General Public License or the GNU Library General Public -dnl License but which still want to provide support for the GNU gettext -dnl functionality. -dnl Please note that the actual code of the GNU gettext library is covered -dnl by the GNU Library General Public License, and the rest of the GNU -dnl gettext package package is covered by the GNU General Public License. -dnl They are *not* in the public domain. - -dnl Authors: -dnl Ulrich Drepper , 1995-2000. -dnl Bruno Haible , 2000-2006, 2008-2010. - -dnl Macro to add for using GNU gettext. - -dnl Usage: AM_GNU_GETTEXT([INTLSYMBOL], [NEEDSYMBOL], [INTLDIR]). -dnl INTLSYMBOL can be one of 'external', 'no-libtool', 'use-libtool'. The -dnl default (if it is not specified or empty) is 'no-libtool'. -dnl INTLSYMBOL should be 'external' for packages with no intl directory, -dnl and 'no-libtool' or 'use-libtool' for packages with an intl directory. -dnl If INTLSYMBOL is 'use-libtool', then a libtool library -dnl $(top_builddir)/intl/libintl.la will be created (shared and/or static, -dnl depending on --{enable,disable}-{shared,static} and on the presence of -dnl AM-DISABLE-SHARED). If INTLSYMBOL is 'no-libtool', a static library -dnl $(top_builddir)/intl/libintl.a will be created. -dnl If NEEDSYMBOL is specified and is 'need-ngettext', then GNU gettext -dnl implementations (in libc or libintl) without the ngettext() function -dnl will be ignored. If NEEDSYMBOL is specified and is -dnl 'need-formatstring-macros', then GNU gettext implementations that don't -dnl support the ISO C 99 formatstring macros will be ignored. -dnl INTLDIR is used to find the intl libraries. If empty, -dnl the value `$(top_builddir)/intl/' is used. -dnl -dnl The result of the configuration is one of three cases: -dnl 1) GNU gettext, as included in the intl subdirectory, will be compiled -dnl and used. -dnl Catalog format: GNU --> install in $(datadir) -dnl Catalog extension: .mo after installation, .gmo in source tree -dnl 2) GNU gettext has been found in the system's C library. -dnl Catalog format: GNU --> install in $(datadir) -dnl Catalog extension: .mo after installation, .gmo in source tree -dnl 3) No internationalization, always use English msgid. -dnl Catalog format: none -dnl Catalog extension: none -dnl If INTLSYMBOL is 'external', only cases 2 and 3 can occur. -dnl The use of .gmo is historical (it was needed to avoid overwriting the -dnl GNU format catalogs when building on a platform with an X/Open gettext), -dnl but we keep it in order not to force irrelevant filename changes on the -dnl maintainers. -dnl -AC_DEFUN([AM_GNU_GETTEXT], -[ - dnl Argument checking. - ifelse([$1], [], , [ifelse([$1], [external], , [ifelse([$1], [no-libtool], , [ifelse([$1], [use-libtool], , - [errprint([ERROR: invalid first argument to AM_GNU_GETTEXT -])])])])]) - ifelse(ifelse([$1], [], [old])[]ifelse([$1], [no-libtool], [old]), [old], - [AC_DIAGNOSE([obsolete], [Use of AM_GNU_GETTEXT without [external] argument is deprecated.])]) - ifelse([$2], [], , [ifelse([$2], [need-ngettext], , [ifelse([$2], [need-formatstring-macros], , - [errprint([ERROR: invalid second argument to AM_GNU_GETTEXT -])])])]) - define([gt_included_intl], - ifelse([$1], [external], - ifdef([AM_GNU_GETTEXT_][INTL_SUBDIR], [yes], [no]), - [yes])) - define([gt_libtool_suffix_prefix], ifelse([$1], [use-libtool], [l], [])) - gt_NEEDS_INIT - AM_GNU_GETTEXT_NEED([$2]) - - AC_REQUIRE([AM_PO_SUBDIRS])dnl - ifelse(gt_included_intl, yes, [ - AC_REQUIRE([AM_INTL_SUBDIR])dnl - ]) - - dnl Prerequisites of AC_LIB_LINKFLAGS_BODY. - AC_REQUIRE([AC_LIB_PREPARE_PREFIX]) - AC_REQUIRE([AC_LIB_RPATH]) - - dnl Sometimes libintl requires libiconv, so first search for libiconv. - dnl Ideally we would do this search only after the - dnl if test "$USE_NLS" = "yes"; then - dnl if { eval "gt_val=\$$gt_func_gnugettext_libc"; test "$gt_val" != "yes"; }; then - dnl tests. But if configure.in invokes AM_ICONV after AM_GNU_GETTEXT - dnl the configure script would need to contain the same shell code - dnl again, outside any 'if'. There are two solutions: - dnl - Invoke AM_ICONV_LINKFLAGS_BODY here, outside any 'if'. - dnl - Control the expansions in more detail using AC_PROVIDE_IFELSE. - dnl Since AC_PROVIDE_IFELSE is only in autoconf >= 2.52 and not - dnl documented, we avoid it. - ifelse(gt_included_intl, yes, , [ - AC_REQUIRE([AM_ICONV_LINKFLAGS_BODY]) - ]) - - dnl Sometimes, on MacOS X, libintl requires linking with CoreFoundation. - gt_INTL_MACOSX - - dnl Set USE_NLS. - AC_REQUIRE([AM_NLS]) - - ifelse(gt_included_intl, yes, [ - BUILD_INCLUDED_LIBINTL=no - USE_INCLUDED_LIBINTL=no - ]) - LIBINTL= - LTLIBINTL= - POSUB= - - dnl Add a version number to the cache macros. - case " $gt_needs " in - *" need-formatstring-macros "*) gt_api_version=3 ;; - *" need-ngettext "*) gt_api_version=2 ;; - *) gt_api_version=1 ;; - esac - gt_func_gnugettext_libc="gt_cv_func_gnugettext${gt_api_version}_libc" - gt_func_gnugettext_libintl="gt_cv_func_gnugettext${gt_api_version}_libintl" - - dnl If we use NLS figure out what method - if test "$USE_NLS" = "yes"; then - gt_use_preinstalled_gnugettext=no - ifelse(gt_included_intl, yes, [ - AC_MSG_CHECKING([whether included gettext is requested]) - AC_ARG_WITH([included-gettext], - [ --with-included-gettext use the GNU gettext library included here], - nls_cv_force_use_gnu_gettext=$withval, - nls_cv_force_use_gnu_gettext=no) - AC_MSG_RESULT([$nls_cv_force_use_gnu_gettext]) - - nls_cv_use_gnu_gettext="$nls_cv_force_use_gnu_gettext" - if test "$nls_cv_force_use_gnu_gettext" != "yes"; then - ]) - dnl User does not insist on using GNU NLS library. Figure out what - dnl to use. If GNU gettext is available we use this. Else we have - dnl to fall back to GNU NLS library. - - if test $gt_api_version -ge 3; then - gt_revision_test_code=' -#ifndef __GNU_GETTEXT_SUPPORTED_REVISION -#define __GNU_GETTEXT_SUPPORTED_REVISION(major) ((major) == 0 ? 0 : -1) -#endif -changequote(,)dnl -typedef int array [2 * (__GNU_GETTEXT_SUPPORTED_REVISION(0) >= 1) - 1]; -changequote([,])dnl -' - else - gt_revision_test_code= - fi - if test $gt_api_version -ge 2; then - gt_expression_test_code=' + * ngettext ("", "", 0)' - else - gt_expression_test_code= - fi - - AC_CACHE_CHECK([for GNU gettext in libc], [$gt_func_gnugettext_libc], - [AC_TRY_LINK([#include -$gt_revision_test_code -extern int _nl_msg_cat_cntr; -extern int *_nl_domain_bindings;], - [bindtextdomain ("", ""); -return * gettext ("")$gt_expression_test_code + _nl_msg_cat_cntr + *_nl_domain_bindings], - [eval "$gt_func_gnugettext_libc=yes"], - [eval "$gt_func_gnugettext_libc=no"])]) - - if { eval "gt_val=\$$gt_func_gnugettext_libc"; test "$gt_val" != "yes"; }; then - dnl Sometimes libintl requires libiconv, so first search for libiconv. - ifelse(gt_included_intl, yes, , [ - AM_ICONV_LINK - ]) - dnl Search for libintl and define LIBINTL, LTLIBINTL and INCINTL - dnl accordingly. Don't use AC_LIB_LINKFLAGS_BODY([intl],[iconv]) - dnl because that would add "-liconv" to LIBINTL and LTLIBINTL - dnl even if libiconv doesn't exist. - AC_LIB_LINKFLAGS_BODY([intl]) - AC_CACHE_CHECK([for GNU gettext in libintl], - [$gt_func_gnugettext_libintl], - [gt_save_CPPFLAGS="$CPPFLAGS" - CPPFLAGS="$CPPFLAGS $INCINTL" - gt_save_LIBS="$LIBS" - LIBS="$LIBS $LIBINTL" - dnl Now see whether libintl exists and does not depend on libiconv. - AC_TRY_LINK([#include -$gt_revision_test_code -extern int _nl_msg_cat_cntr; -extern -#ifdef __cplusplus -"C" -#endif -const char *_nl_expand_alias (const char *);], - [bindtextdomain ("", ""); -return * gettext ("")$gt_expression_test_code + _nl_msg_cat_cntr + *_nl_expand_alias ("")], - [eval "$gt_func_gnugettext_libintl=yes"], - [eval "$gt_func_gnugettext_libintl=no"]) - dnl Now see whether libintl exists and depends on libiconv. - if { eval "gt_val=\$$gt_func_gnugettext_libintl"; test "$gt_val" != yes; } && test -n "$LIBICONV"; then - LIBS="$LIBS $LIBICONV" - AC_TRY_LINK([#include -$gt_revision_test_code -extern int _nl_msg_cat_cntr; -extern -#ifdef __cplusplus -"C" -#endif -const char *_nl_expand_alias (const char *);], - [bindtextdomain ("", ""); -return * gettext ("")$gt_expression_test_code + _nl_msg_cat_cntr + *_nl_expand_alias ("")], - [LIBINTL="$LIBINTL $LIBICONV" - LTLIBINTL="$LTLIBINTL $LTLIBICONV" - eval "$gt_func_gnugettext_libintl=yes" - ]) - fi - CPPFLAGS="$gt_save_CPPFLAGS" - LIBS="$gt_save_LIBS"]) - fi - - dnl If an already present or preinstalled GNU gettext() is found, - dnl use it. But if this macro is used in GNU gettext, and GNU - dnl gettext is already preinstalled in libintl, we update this - dnl libintl. (Cf. the install rule in intl/Makefile.in.) - if { eval "gt_val=\$$gt_func_gnugettext_libc"; test "$gt_val" = "yes"; } \ - || { { eval "gt_val=\$$gt_func_gnugettext_libintl"; test "$gt_val" = "yes"; } \ - && test "$PACKAGE" != gettext-runtime \ - && test "$PACKAGE" != gettext-tools; }; then - gt_use_preinstalled_gnugettext=yes - else - dnl Reset the values set by searching for libintl. - LIBINTL= - LTLIBINTL= - INCINTL= - fi - - ifelse(gt_included_intl, yes, [ - if test "$gt_use_preinstalled_gnugettext" != "yes"; then - dnl GNU gettext is not found in the C library. - dnl Fall back on included GNU gettext library. - nls_cv_use_gnu_gettext=yes - fi - fi - - if test "$nls_cv_use_gnu_gettext" = "yes"; then - dnl Mark actions used to generate GNU NLS library. - BUILD_INCLUDED_LIBINTL=yes - USE_INCLUDED_LIBINTL=yes - LIBINTL="ifelse([$3],[],\${top_builddir}/intl,[$3])/libintl.[]gt_libtool_suffix_prefix[]a $LIBICONV $LIBTHREAD" - LTLIBINTL="ifelse([$3],[],\${top_builddir}/intl,[$3])/libintl.[]gt_libtool_suffix_prefix[]a $LTLIBICONV $LTLIBTHREAD" - LIBS=`echo " $LIBS " | sed -e 's/ -lintl / /' -e 's/^ //' -e 's/ $//'` - fi - - CATOBJEXT= - if test "$gt_use_preinstalled_gnugettext" = "yes" \ - || test "$nls_cv_use_gnu_gettext" = "yes"; then - dnl Mark actions to use GNU gettext tools. - CATOBJEXT=.gmo - fi - ]) - - if test -n "$INTL_MACOSX_LIBS"; then - if test "$gt_use_preinstalled_gnugettext" = "yes" \ - || test "$nls_cv_use_gnu_gettext" = "yes"; then - dnl Some extra flags are needed during linking. - LIBINTL="$LIBINTL $INTL_MACOSX_LIBS" - LTLIBINTL="$LTLIBINTL $INTL_MACOSX_LIBS" - fi - fi - - if test "$gt_use_preinstalled_gnugettext" = "yes" \ - || test "$nls_cv_use_gnu_gettext" = "yes"; then - AC_DEFINE([ENABLE_NLS], [1], - [Define to 1 if translation of program messages to the user's native language - is requested.]) - else - USE_NLS=no - fi - fi - - AC_MSG_CHECKING([whether to use NLS]) - AC_MSG_RESULT([$USE_NLS]) - if test "$USE_NLS" = "yes"; then - AC_MSG_CHECKING([where the gettext function comes from]) - if test "$gt_use_preinstalled_gnugettext" = "yes"; then - if { eval "gt_val=\$$gt_func_gnugettext_libintl"; test "$gt_val" = "yes"; }; then - gt_source="external libintl" - else - gt_source="libc" - fi - else - gt_source="included intl directory" - fi - AC_MSG_RESULT([$gt_source]) - fi - - if test "$USE_NLS" = "yes"; then - - if test "$gt_use_preinstalled_gnugettext" = "yes"; then - if { eval "gt_val=\$$gt_func_gnugettext_libintl"; test "$gt_val" = "yes"; }; then - AC_MSG_CHECKING([how to link with libintl]) - AC_MSG_RESULT([$LIBINTL]) - AC_LIB_APPENDTOVAR([CPPFLAGS], [$INCINTL]) - fi - - dnl For backward compatibility. Some packages may be using this. - AC_DEFINE([HAVE_GETTEXT], [1], - [Define if the GNU gettext() function is already present or preinstalled.]) - AC_DEFINE([HAVE_DCGETTEXT], [1], - [Define if the GNU dcgettext() function is already present or preinstalled.]) - fi - - dnl We need to process the po/ directory. - POSUB=po - fi - - ifelse(gt_included_intl, yes, [ - dnl If this is used in GNU gettext we have to set BUILD_INCLUDED_LIBINTL - dnl to 'yes' because some of the testsuite requires it. - if test "$PACKAGE" = gettext-runtime || test "$PACKAGE" = gettext-tools; then - BUILD_INCLUDED_LIBINTL=yes - fi - - dnl Make all variables we use known to autoconf. - AC_SUBST([BUILD_INCLUDED_LIBINTL]) - AC_SUBST([USE_INCLUDED_LIBINTL]) - AC_SUBST([CATOBJEXT]) - - dnl For backward compatibility. Some configure.ins may be using this. - nls_cv_header_intl= - nls_cv_header_libgt= - - dnl For backward compatibility. Some Makefiles may be using this. - DATADIRNAME=share - AC_SUBST([DATADIRNAME]) - - dnl For backward compatibility. Some Makefiles may be using this. - INSTOBJEXT=.mo - AC_SUBST([INSTOBJEXT]) - - dnl For backward compatibility. Some Makefiles may be using this. - GENCAT=gencat - AC_SUBST([GENCAT]) - - dnl For backward compatibility. Some Makefiles may be using this. - INTLOBJS= - if test "$USE_INCLUDED_LIBINTL" = yes; then - INTLOBJS="\$(GETTOBJS)" - fi - AC_SUBST([INTLOBJS]) - - dnl Enable libtool support if the surrounding package wishes it. - INTL_LIBTOOL_SUFFIX_PREFIX=gt_libtool_suffix_prefix - AC_SUBST([INTL_LIBTOOL_SUFFIX_PREFIX]) - ]) - - dnl For backward compatibility. Some Makefiles may be using this. - INTLLIBS="$LIBINTL" - AC_SUBST([INTLLIBS]) - - dnl Make all documented variables known to autoconf. - AC_SUBST([LIBINTL]) - AC_SUBST([LTLIBINTL]) - AC_SUBST([POSUB]) -]) - - -dnl gt_NEEDS_INIT ensures that the gt_needs variable is initialized. -m4_define([gt_NEEDS_INIT], -[ - m4_divert_text([DEFAULTS], [gt_needs=]) - m4_define([gt_NEEDS_INIT], []) -]) - - -dnl Usage: AM_GNU_GETTEXT_NEED([NEEDSYMBOL]) -AC_DEFUN([AM_GNU_GETTEXT_NEED], -[ - m4_divert_text([INIT_PREPARE], [gt_needs="$gt_needs $1"]) -]) - - -dnl Usage: AM_GNU_GETTEXT_VERSION([gettext-version]) -AC_DEFUN([AM_GNU_GETTEXT_VERSION], []) - -# iconv.m4 serial 11 (gettext-0.18.1) -dnl Copyright (C) 2000-2002, 2007-2010 Free Software Foundation, Inc. -dnl This file is free software; the Free Software Foundation -dnl gives unlimited permission to copy and/or distribute it, -dnl with or without modifications, as long as this notice is preserved. - -dnl From Bruno Haible. - -AC_DEFUN([AM_ICONV_LINKFLAGS_BODY], -[ - dnl Prerequisites of AC_LIB_LINKFLAGS_BODY. - AC_REQUIRE([AC_LIB_PREPARE_PREFIX]) - AC_REQUIRE([AC_LIB_RPATH]) - - dnl Search for libiconv and define LIBICONV, LTLIBICONV and INCICONV - dnl accordingly. - AC_LIB_LINKFLAGS_BODY([iconv]) -]) - -AC_DEFUN([AM_ICONV_LINK], -[ - dnl Some systems have iconv in libc, some have it in libiconv (OSF/1 and - dnl those with the standalone portable GNU libiconv installed). - AC_REQUIRE([AC_CANONICAL_HOST]) dnl for cross-compiles - - dnl Search for libiconv and define LIBICONV, LTLIBICONV and INCICONV - dnl accordingly. - AC_REQUIRE([AM_ICONV_LINKFLAGS_BODY]) - - dnl Add $INCICONV to CPPFLAGS before performing the following checks, - dnl because if the user has installed libiconv and not disabled its use - dnl via --without-libiconv-prefix, he wants to use it. The first - dnl AC_TRY_LINK will then fail, the second AC_TRY_LINK will succeed. - am_save_CPPFLAGS="$CPPFLAGS" - AC_LIB_APPENDTOVAR([CPPFLAGS], [$INCICONV]) - - AC_CACHE_CHECK([for iconv], [am_cv_func_iconv], [ - am_cv_func_iconv="no, consider installing GNU libiconv" - am_cv_lib_iconv=no - AC_TRY_LINK([#include -#include ], - [iconv_t cd = iconv_open("",""); - iconv(cd,NULL,NULL,NULL,NULL); - iconv_close(cd);], - [am_cv_func_iconv=yes]) - if test "$am_cv_func_iconv" != yes; then - am_save_LIBS="$LIBS" - LIBS="$LIBS $LIBICONV" - AC_TRY_LINK([#include -#include ], - [iconv_t cd = iconv_open("",""); - iconv(cd,NULL,NULL,NULL,NULL); - iconv_close(cd);], - [am_cv_lib_iconv=yes] - [am_cv_func_iconv=yes]) - LIBS="$am_save_LIBS" - fi - ]) - if test "$am_cv_func_iconv" = yes; then - AC_CACHE_CHECK([for working iconv], [am_cv_func_iconv_works], [ - dnl This tests against bugs in AIX 5.1, HP-UX 11.11, Solaris 10. - am_save_LIBS="$LIBS" - if test $am_cv_lib_iconv = yes; then - LIBS="$LIBS $LIBICONV" - fi - AC_TRY_RUN([ -#include -#include -int main () -{ - /* Test against AIX 5.1 bug: Failures are not distinguishable from successful - returns. */ - { - iconv_t cd_utf8_to_88591 = iconv_open ("ISO8859-1", "UTF-8"); - if (cd_utf8_to_88591 != (iconv_t)(-1)) - { - static const char input[] = "\342\202\254"; /* EURO SIGN */ - char buf[10]; - const char *inptr = input; - size_t inbytesleft = strlen (input); - char *outptr = buf; - size_t outbytesleft = sizeof (buf); - size_t res = iconv (cd_utf8_to_88591, - (char **) &inptr, &inbytesleft, - &outptr, &outbytesleft); - if (res == 0) - return 1; - } - } - /* Test against Solaris 10 bug: Failures are not distinguishable from - successful returns. */ - { - iconv_t cd_ascii_to_88591 = iconv_open ("ISO8859-1", "646"); - if (cd_ascii_to_88591 != (iconv_t)(-1)) - { - static const char input[] = "\263"; - char buf[10]; - const char *inptr = input; - size_t inbytesleft = strlen (input); - char *outptr = buf; - size_t outbytesleft = sizeof (buf); - size_t res = iconv (cd_ascii_to_88591, - (char **) &inptr, &inbytesleft, - &outptr, &outbytesleft); - if (res == 0) - return 1; - } - } -#if 0 /* This bug could be worked around by the caller. */ - /* Test against HP-UX 11.11 bug: Positive return value instead of 0. */ - { - iconv_t cd_88591_to_utf8 = iconv_open ("utf8", "iso88591"); - if (cd_88591_to_utf8 != (iconv_t)(-1)) - { - static const char input[] = "\304rger mit b\366sen B\374bchen ohne Augenma\337"; - char buf[50]; - const char *inptr = input; - size_t inbytesleft = strlen (input); - char *outptr = buf; - size_t outbytesleft = sizeof (buf); - size_t res = iconv (cd_88591_to_utf8, - (char **) &inptr, &inbytesleft, - &outptr, &outbytesleft); - if ((int)res > 0) - return 1; - } - } -#endif - /* Test against HP-UX 11.11 bug: No converter from EUC-JP to UTF-8 is - provided. */ - if (/* Try standardized names. */ - iconv_open ("UTF-8", "EUC-JP") == (iconv_t)(-1) - /* Try IRIX, OSF/1 names. */ - && iconv_open ("UTF-8", "eucJP") == (iconv_t)(-1) - /* Try AIX names. */ - && iconv_open ("UTF-8", "IBM-eucJP") == (iconv_t)(-1) - /* Try HP-UX names. */ - && iconv_open ("utf8", "eucJP") == (iconv_t)(-1)) - return 1; - return 0; -}], [am_cv_func_iconv_works=yes], [am_cv_func_iconv_works=no], - [case "$host_os" in - aix* | hpux*) am_cv_func_iconv_works="guessing no" ;; - *) am_cv_func_iconv_works="guessing yes" ;; - esac]) - LIBS="$am_save_LIBS" - ]) - case "$am_cv_func_iconv_works" in - *no) am_func_iconv=no am_cv_lib_iconv=no ;; - *) am_func_iconv=yes ;; - esac - else - am_func_iconv=no am_cv_lib_iconv=no - fi - if test "$am_func_iconv" = yes; then - AC_DEFINE([HAVE_ICONV], [1], - [Define if you have the iconv() function and it works.]) - fi - if test "$am_cv_lib_iconv" = yes; then - AC_MSG_CHECKING([how to link with libiconv]) - AC_MSG_RESULT([$LIBICONV]) - else - dnl If $LIBICONV didn't lead to a usable library, we don't need $INCICONV - dnl either. - CPPFLAGS="$am_save_CPPFLAGS" - LIBICONV= - LTLIBICONV= - fi - AC_SUBST([LIBICONV]) - AC_SUBST([LTLIBICONV]) -]) - -dnl Define AM_ICONV using AC_DEFUN_ONCE for Autoconf >= 2.64, in order to -dnl avoid warnings like -dnl "warning: AC_REQUIRE: `AM_ICONV' was expanded before it was required". -dnl This is tricky because of the way 'aclocal' is implemented: -dnl - It requires defining an auxiliary macro whose name ends in AC_DEFUN. -dnl Otherwise aclocal's initial scan pass would miss the macro definition. -dnl - It requires a line break inside the AC_DEFUN_ONCE and AC_DEFUN expansions. -dnl Otherwise aclocal would emit many "Use of uninitialized value $1" -dnl warnings. -m4_define([gl_iconv_AC_DEFUN], - m4_version_prereq([2.64], - [[AC_DEFUN_ONCE( - [$1], [$2])]], - [[AC_DEFUN( - [$1], [$2])]])) -gl_iconv_AC_DEFUN([AM_ICONV], -[ - AM_ICONV_LINK - if test "$am_cv_func_iconv" = yes; then - AC_MSG_CHECKING([for iconv declaration]) - AC_CACHE_VAL([am_cv_proto_iconv], [ - AC_TRY_COMPILE([ -#include -#include -extern -#ifdef __cplusplus -"C" -#endif -#if defined(__STDC__) || defined(__cplusplus) -size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft); -#else -size_t iconv(); -#endif -], [], [am_cv_proto_iconv_arg1=""], [am_cv_proto_iconv_arg1="const"]) - am_cv_proto_iconv="extern size_t iconv (iconv_t cd, $am_cv_proto_iconv_arg1 char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);"]) - am_cv_proto_iconv=`echo "[$]am_cv_proto_iconv" | tr -s ' ' | sed -e 's/( /(/'` - AC_MSG_RESULT([ - $am_cv_proto_iconv]) - AC_DEFINE_UNQUOTED([ICONV_CONST], [$am_cv_proto_iconv_arg1], - [Define as const if the declaration of iconv() needs const.]) - fi -]) - -# intlmacosx.m4 serial 3 (gettext-0.18) -dnl Copyright (C) 2004-2010 Free Software Foundation, Inc. -dnl This file is free software; the Free Software Foundation -dnl gives unlimited permission to copy and/or distribute it, -dnl with or without modifications, as long as this notice is preserved. -dnl -dnl This file can can be used in projects which are not available under -dnl the GNU General Public License or the GNU Library General Public -dnl License but which still want to provide support for the GNU gettext -dnl functionality. -dnl Please note that the actual code of the GNU gettext library is covered -dnl by the GNU Library General Public License, and the rest of the GNU -dnl gettext package package is covered by the GNU General Public License. -dnl They are *not* in the public domain. - -dnl Checks for special options needed on MacOS X. -dnl Defines INTL_MACOSX_LIBS. -AC_DEFUN([gt_INTL_MACOSX], -[ - dnl Check for API introduced in MacOS X 10.2. - AC_CACHE_CHECK([for CFPreferencesCopyAppValue], - [gt_cv_func_CFPreferencesCopyAppValue], - [gt_save_LIBS="$LIBS" - LIBS="$LIBS -Wl,-framework -Wl,CoreFoundation" - AC_TRY_LINK([#include ], - [CFPreferencesCopyAppValue(NULL, NULL)], - [gt_cv_func_CFPreferencesCopyAppValue=yes], - [gt_cv_func_CFPreferencesCopyAppValue=no]) - LIBS="$gt_save_LIBS"]) - if test $gt_cv_func_CFPreferencesCopyAppValue = yes; then - AC_DEFINE([HAVE_CFPREFERENCESCOPYAPPVALUE], [1], - [Define to 1 if you have the MacOS X function CFPreferencesCopyAppValue in the CoreFoundation framework.]) - fi - dnl Check for API introduced in MacOS X 10.3. - AC_CACHE_CHECK([for CFLocaleCopyCurrent], [gt_cv_func_CFLocaleCopyCurrent], - [gt_save_LIBS="$LIBS" - LIBS="$LIBS -Wl,-framework -Wl,CoreFoundation" - AC_TRY_LINK([#include ], [CFLocaleCopyCurrent();], - [gt_cv_func_CFLocaleCopyCurrent=yes], - [gt_cv_func_CFLocaleCopyCurrent=no]) - LIBS="$gt_save_LIBS"]) - if test $gt_cv_func_CFLocaleCopyCurrent = yes; then - AC_DEFINE([HAVE_CFLOCALECOPYCURRENT], [1], - [Define to 1 if you have the MacOS X function CFLocaleCopyCurrent in the CoreFoundation framework.]) - fi - INTL_MACOSX_LIBS= - if test $gt_cv_func_CFPreferencesCopyAppValue = yes || test $gt_cv_func_CFLocaleCopyCurrent = yes; then - INTL_MACOSX_LIBS="-Wl,-framework -Wl,CoreFoundation" - fi - AC_SUBST([INTL_MACOSX_LIBS]) -]) - - -dnl IT_PROG_INTLTOOL([MINIMUM-VERSION], [no-xml]) -# serial 40 IT_PROG_INTLTOOL -AC_DEFUN([IT_PROG_INTLTOOL], [ -AC_PREREQ([2.50])dnl -AC_REQUIRE([AM_NLS])dnl - -case "$am__api_version" in - 1.[01234]) - AC_MSG_ERROR([Automake 1.5 or newer is required to use intltool]) - ;; - *) - ;; -esac - -if test -n "$1"; then - AC_MSG_CHECKING([for intltool >= $1]) - - INTLTOOL_REQUIRED_VERSION_AS_INT=`echo $1 | awk -F. '{ print $ 1 * 1000 + $ 2 * 100 + $ 3; }'` - INTLTOOL_APPLIED_VERSION=`intltool-update --version | head -1 | cut -d" " -f3` - [INTLTOOL_APPLIED_VERSION_AS_INT=`echo $INTLTOOL_APPLIED_VERSION | awk -F. '{ print $ 1 * 1000 + $ 2 * 100 + $ 3; }'` - ] - AC_MSG_RESULT([$INTLTOOL_APPLIED_VERSION found]) - test "$INTLTOOL_APPLIED_VERSION_AS_INT" -ge "$INTLTOOL_REQUIRED_VERSION_AS_INT" || - AC_MSG_ERROR([Your intltool is too old. You need intltool $1 or later.]) -fi - -AC_PATH_PROG(INTLTOOL_UPDATE, [intltool-update]) -AC_PATH_PROG(INTLTOOL_MERGE, [intltool-merge]) -AC_PATH_PROG(INTLTOOL_EXTRACT, [intltool-extract]) -if test -z "$INTLTOOL_UPDATE" -o -z "$INTLTOOL_MERGE" -o -z "$INTLTOOL_EXTRACT"; then - AC_MSG_ERROR([The intltool scripts were not found. Please install intltool.]) -fi - - INTLTOOL_DESKTOP_RULE='%.desktop: %.desktop.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' -INTLTOOL_DIRECTORY_RULE='%.directory: %.directory.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' - INTLTOOL_KEYS_RULE='%.keys: %.keys.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -k -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' - INTLTOOL_PROP_RULE='%.prop: %.prop.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' - INTLTOOL_OAF_RULE='%.oaf: %.oaf.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -o -p $(top_srcdir)/po $< [$]@' - INTLTOOL_PONG_RULE='%.pong: %.pong.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' - INTLTOOL_SERVER_RULE='%.server: %.server.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -o -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' - INTLTOOL_SHEET_RULE='%.sheet: %.sheet.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' -INTLTOOL_SOUNDLIST_RULE='%.soundlist: %.soundlist.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' - INTLTOOL_UI_RULE='%.ui: %.ui.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' - INTLTOOL_XML_RULE='%.xml: %.xml.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' - INTLTOOL_XML_NOMERGE_RULE='%.xml: %.xml.in $(INTLTOOL_MERGE) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u /tmp $< [$]@' - INTLTOOL_XAM_RULE='%.xam: %.xml.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' - INTLTOOL_KBD_RULE='%.kbd: %.kbd.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -m -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' - INTLTOOL_CAVES_RULE='%.caves: %.caves.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' - INTLTOOL_SCHEMAS_RULE='%.schemas: %.schemas.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -s -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' - INTLTOOL_THEME_RULE='%.theme: %.theme.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' - INTLTOOL_SERVICE_RULE='%.service: %.service.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' - INTLTOOL_POLICY_RULE='%.policy: %.policy.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' - -_IT_SUBST(INTLTOOL_DESKTOP_RULE) -_IT_SUBST(INTLTOOL_DIRECTORY_RULE) -_IT_SUBST(INTLTOOL_KEYS_RULE) -_IT_SUBST(INTLTOOL_PROP_RULE) -_IT_SUBST(INTLTOOL_OAF_RULE) -_IT_SUBST(INTLTOOL_PONG_RULE) -_IT_SUBST(INTLTOOL_SERVER_RULE) -_IT_SUBST(INTLTOOL_SHEET_RULE) -_IT_SUBST(INTLTOOL_SOUNDLIST_RULE) -_IT_SUBST(INTLTOOL_UI_RULE) -_IT_SUBST(INTLTOOL_XAM_RULE) -_IT_SUBST(INTLTOOL_KBD_RULE) -_IT_SUBST(INTLTOOL_XML_RULE) -_IT_SUBST(INTLTOOL_XML_NOMERGE_RULE) -_IT_SUBST(INTLTOOL_CAVES_RULE) -_IT_SUBST(INTLTOOL_SCHEMAS_RULE) -_IT_SUBST(INTLTOOL_THEME_RULE) -_IT_SUBST(INTLTOOL_SERVICE_RULE) -_IT_SUBST(INTLTOOL_POLICY_RULE) - -# Check the gettext tools to make sure they are GNU -AC_PATH_PROG(XGETTEXT, xgettext) -AC_PATH_PROG(MSGMERGE, msgmerge) -AC_PATH_PROG(MSGFMT, msgfmt) -AC_PATH_PROG(GMSGFMT, gmsgfmt, $MSGFMT) -if test -z "$XGETTEXT" -o -z "$MSGMERGE" -o -z "$MSGFMT"; then - AC_MSG_ERROR([GNU gettext tools not found; required for intltool]) -fi -xgversion="`$XGETTEXT --version|grep '(GNU ' 2> /dev/null`" -mmversion="`$MSGMERGE --version|grep '(GNU ' 2> /dev/null`" -mfversion="`$MSGFMT --version|grep '(GNU ' 2> /dev/null`" -if test -z "$xgversion" -o -z "$mmversion" -o -z "$mfversion"; then - AC_MSG_ERROR([GNU gettext tools not found; required for intltool]) -fi - -AC_PATH_PROG(INTLTOOL_PERL, perl) -if test -z "$INTLTOOL_PERL"; then - AC_MSG_ERROR([perl not found]) -fi -AC_MSG_CHECKING([for perl >= 5.8.1]) -$INTLTOOL_PERL -e "use 5.8.1;" > /dev/null 2>&1 -if test $? -ne 0; then - AC_MSG_ERROR([perl 5.8.1 is required for intltool]) -else - IT_PERL_VERSION="`$INTLTOOL_PERL -e \"printf '%vd', $^V\"`" - AC_MSG_RESULT([$IT_PERL_VERSION]) -fi -if test "x$2" != "xno-xml"; then - AC_MSG_CHECKING([for XML::Parser]) - if `$INTLTOOL_PERL -e "require XML::Parser" 2>/dev/null`; then - AC_MSG_RESULT([ok]) - else - AC_MSG_ERROR([XML::Parser perl module is required for intltool]) - fi -fi - -# Substitute ALL_LINGUAS so we can use it in po/Makefile -AC_SUBST(ALL_LINGUAS) - -# Set DATADIRNAME correctly if it is not set yet -# (copied from glib-gettext.m4) -if test -z "$DATADIRNAME"; then - AC_LINK_IFELSE( - [AC_LANG_PROGRAM([[]], - [[extern int _nl_msg_cat_cntr; - return _nl_msg_cat_cntr]])], - [DATADIRNAME=share], - [case $host in - *-*-solaris*) - dnl On Solaris, if bind_textdomain_codeset is in libc, - dnl GNU format message catalog is always supported, - dnl since both are added to the libc all together. - dnl Hence, we'd like to go with DATADIRNAME=share - dnl in this case. - AC_CHECK_FUNC(bind_textdomain_codeset, - [DATADIRNAME=share], [DATADIRNAME=lib]) - ;; - *) - [DATADIRNAME=lib] - ;; - esac]) -fi -AC_SUBST(DATADIRNAME) - -IT_PO_SUBDIR([po]) - -]) - - -# IT_PO_SUBDIR(DIRNAME) -# --------------------- -# All po subdirs have to be declared with this macro; the subdir "po" is -# declared by IT_PROG_INTLTOOL. -# -AC_DEFUN([IT_PO_SUBDIR], -[AC_PREREQ([2.53])dnl We use ac_top_srcdir inside AC_CONFIG_COMMANDS. -dnl -dnl The following CONFIG_COMMANDS should be executed at the very end -dnl of config.status. -AC_CONFIG_COMMANDS_PRE([ - AC_CONFIG_COMMANDS([$1/stamp-it], [ - if [ ! grep "^# INTLTOOL_MAKEFILE$" "$1/Makefile.in" > /dev/null ]; then - AC_MSG_ERROR([$1/Makefile.in.in was not created by intltoolize.]) - fi - rm -f "$1/stamp-it" "$1/stamp-it.tmp" "$1/POTFILES" "$1/Makefile.tmp" - >"$1/stamp-it.tmp" - [sed '/^#/d - s/^[[].*] *// - /^[ ]*$/d - '"s|^| $ac_top_srcdir/|" \ - "$srcdir/$1/POTFILES.in" | sed '$!s/$/ \\/' >"$1/POTFILES" - ] - [sed '/^POTFILES =/,/[^\\]$/ { - /^POTFILES =/!d - r $1/POTFILES - } - ' "$1/Makefile.in" >"$1/Makefile"] - rm -f "$1/Makefile.tmp" - mv "$1/stamp-it.tmp" "$1/stamp-it" - ]) -])dnl -]) - -# _IT_SUBST(VARIABLE) -# ------------------- -# Abstract macro to do either _AM_SUBST_NOTMAKE or AC_SUBST -# -AC_DEFUN([_IT_SUBST], -[ -AC_SUBST([$1]) -m4_ifdef([_AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE([$1])]) -] -) - -# deprecated macros -AU_ALIAS([AC_PROG_INTLTOOL], [IT_PROG_INTLTOOL]) -# A hint is needed for aclocal from Automake <= 1.9.4: -# AC_DEFUN([AC_PROG_INTLTOOL], ...) - - -# lib-ld.m4 serial 4 (gettext-0.18) -dnl Copyright (C) 1996-2003, 2009-2010 Free Software Foundation, Inc. -dnl This file is free software; the Free Software Foundation -dnl gives unlimited permission to copy and/or distribute it, -dnl with or without modifications, as long as this notice is preserved. - -dnl Subroutines of libtool.m4, -dnl with replacements s/AC_/AC_LIB/ and s/lt_cv/acl_cv/ to avoid collision -dnl with libtool.m4. - -dnl From libtool-1.4. Sets the variable with_gnu_ld to yes or no. -AC_DEFUN([AC_LIB_PROG_LD_GNU], -[AC_CACHE_CHECK([if the linker ($LD) is GNU ld], [acl_cv_prog_gnu_ld], -[# I'd rather use --version here, but apparently some GNU ld's only accept -v. -case `$LD -v 2>&1 conf$$.sh - echo "exit 0" >>conf$$.sh - chmod +x conf$$.sh - if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then - PATH_SEPARATOR=';' - else - PATH_SEPARATOR=: - fi - rm -f conf$$.sh -fi -ac_prog=ld -if test "$GCC" = yes; then - # Check if gcc -print-prog-name=ld gives a path. - AC_MSG_CHECKING([for ld used by GCC]) - case $host in - *-*-mingw*) - # gcc leaves a trailing carriage return which upsets mingw - ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; - *) - ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; - esac - case $ac_prog in - # Accept absolute paths. - [[\\/]* | [A-Za-z]:[\\/]*)] - [re_direlt='/[^/][^/]*/\.\./'] - # Canonicalize the path of ld - ac_prog=`echo $ac_prog| sed 's%\\\\%/%g'` - while echo $ac_prog | grep "$re_direlt" > /dev/null 2>&1; do - ac_prog=`echo $ac_prog| sed "s%$re_direlt%/%"` - done - test -z "$LD" && LD="$ac_prog" - ;; - "") - # If it fails, then pretend we aren't using GCC. - ac_prog=ld - ;; - *) - # If it is relative, then search for the first ld in PATH. - with_gnu_ld=unknown - ;; - esac -elif test "$with_gnu_ld" = yes; then - AC_MSG_CHECKING([for GNU ld]) -else - AC_MSG_CHECKING([for non-GNU ld]) -fi -AC_CACHE_VAL([acl_cv_path_LD], -[if test -z "$LD"; then - IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}${PATH_SEPARATOR-:}" - for ac_dir in $PATH; do - test -z "$ac_dir" && ac_dir=. - if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then - acl_cv_path_LD="$ac_dir/$ac_prog" - # Check to see if the program is GNU ld. I'd rather use --version, - # but apparently some GNU ld's only accept -v. - # Break only if it was the GNU/non-GNU ld that we prefer. - case `"$acl_cv_path_LD" -v 2>&1 < /dev/null` in - *GNU* | *'with BFD'*) - test "$with_gnu_ld" != no && break ;; - *) - test "$with_gnu_ld" != yes && break ;; - esac - fi - done - IFS="$ac_save_ifs" -else - acl_cv_path_LD="$LD" # Let the user override the test with a path. -fi]) -LD="$acl_cv_path_LD" -if test -n "$LD"; then - AC_MSG_RESULT([$LD]) -else - AC_MSG_RESULT([no]) -fi -test -z "$LD" && AC_MSG_ERROR([no acceptable ld found in \$PATH]) -AC_LIB_PROG_LD_GNU -]) - -# lib-link.m4 serial 21 (gettext-0.18) -dnl Copyright (C) 2001-2010 Free Software Foundation, Inc. -dnl This file is free software; the Free Software Foundation -dnl gives unlimited permission to copy and/or distribute it, -dnl with or without modifications, as long as this notice is preserved. - -dnl From Bruno Haible. - -AC_PREREQ([2.54]) - -dnl AC_LIB_LINKFLAGS(name [, dependencies]) searches for libname and -dnl the libraries corresponding to explicit and implicit dependencies. -dnl Sets and AC_SUBSTs the LIB${NAME} and LTLIB${NAME} variables and -dnl augments the CPPFLAGS variable. -dnl Sets and AC_SUBSTs the LIB${NAME}_PREFIX variable to nonempty if libname -dnl was found in ${LIB${NAME}_PREFIX}/$acl_libdirstem. -AC_DEFUN([AC_LIB_LINKFLAGS], -[ - AC_REQUIRE([AC_LIB_PREPARE_PREFIX]) - AC_REQUIRE([AC_LIB_RPATH]) - pushdef([Name],[translit([$1],[./-], [___])]) - pushdef([NAME],[translit([$1],[abcdefghijklmnopqrstuvwxyz./-], - [ABCDEFGHIJKLMNOPQRSTUVWXYZ___])]) - AC_CACHE_CHECK([how to link with lib[]$1], [ac_cv_lib[]Name[]_libs], [ - AC_LIB_LINKFLAGS_BODY([$1], [$2]) - ac_cv_lib[]Name[]_libs="$LIB[]NAME" - ac_cv_lib[]Name[]_ltlibs="$LTLIB[]NAME" - ac_cv_lib[]Name[]_cppflags="$INC[]NAME" - ac_cv_lib[]Name[]_prefix="$LIB[]NAME[]_PREFIX" - ]) - LIB[]NAME="$ac_cv_lib[]Name[]_libs" - LTLIB[]NAME="$ac_cv_lib[]Name[]_ltlibs" - INC[]NAME="$ac_cv_lib[]Name[]_cppflags" - LIB[]NAME[]_PREFIX="$ac_cv_lib[]Name[]_prefix" - AC_LIB_APPENDTOVAR([CPPFLAGS], [$INC]NAME) - AC_SUBST([LIB]NAME) - AC_SUBST([LTLIB]NAME) - AC_SUBST([LIB]NAME[_PREFIX]) - dnl Also set HAVE_LIB[]NAME so that AC_LIB_HAVE_LINKFLAGS can reuse the - dnl results of this search when this library appears as a dependency. - HAVE_LIB[]NAME=yes - popdef([NAME]) - popdef([Name]) -]) - -dnl AC_LIB_HAVE_LINKFLAGS(name, dependencies, includes, testcode, [missing-message]) -dnl searches for libname and the libraries corresponding to explicit and -dnl implicit dependencies, together with the specified include files and -dnl the ability to compile and link the specified testcode. The missing-message -dnl defaults to 'no' and may contain additional hints for the user. -dnl If found, it sets and AC_SUBSTs HAVE_LIB${NAME}=yes and the LIB${NAME} -dnl and LTLIB${NAME} variables and augments the CPPFLAGS variable, and -dnl #defines HAVE_LIB${NAME} to 1. Otherwise, it sets and AC_SUBSTs -dnl HAVE_LIB${NAME}=no and LIB${NAME} and LTLIB${NAME} to empty. -dnl Sets and AC_SUBSTs the LIB${NAME}_PREFIX variable to nonempty if libname -dnl was found in ${LIB${NAME}_PREFIX}/$acl_libdirstem. -AC_DEFUN([AC_LIB_HAVE_LINKFLAGS], -[ - AC_REQUIRE([AC_LIB_PREPARE_PREFIX]) - AC_REQUIRE([AC_LIB_RPATH]) - pushdef([Name],[translit([$1],[./-], [___])]) - pushdef([NAME],[translit([$1],[abcdefghijklmnopqrstuvwxyz./-], - [ABCDEFGHIJKLMNOPQRSTUVWXYZ___])]) - - dnl Search for lib[]Name and define LIB[]NAME, LTLIB[]NAME and INC[]NAME - dnl accordingly. - AC_LIB_LINKFLAGS_BODY([$1], [$2]) - - dnl Add $INC[]NAME to CPPFLAGS before performing the following checks, - dnl because if the user has installed lib[]Name and not disabled its use - dnl via --without-lib[]Name-prefix, he wants to use it. - ac_save_CPPFLAGS="$CPPFLAGS" - AC_LIB_APPENDTOVAR([CPPFLAGS], [$INC]NAME) - - AC_CACHE_CHECK([for lib[]$1], [ac_cv_lib[]Name], [ - ac_save_LIBS="$LIBS" - dnl If $LIB[]NAME contains some -l options, add it to the end of LIBS, - dnl because these -l options might require -L options that are present in - dnl LIBS. -l options benefit only from the -L options listed before it. - dnl Otherwise, add it to the front of LIBS, because it may be a static - dnl library that depends on another static library that is present in LIBS. - dnl Static libraries benefit only from the static libraries listed after - dnl it. - case " $LIB[]NAME" in - *" -l"*) LIBS="$LIBS $LIB[]NAME" ;; - *) LIBS="$LIB[]NAME $LIBS" ;; - esac - AC_TRY_LINK([$3], [$4], - [ac_cv_lib[]Name=yes], - [ac_cv_lib[]Name='m4_if([$5], [], [no], [[$5]])']) - LIBS="$ac_save_LIBS" - ]) - if test "$ac_cv_lib[]Name" = yes; then - HAVE_LIB[]NAME=yes - AC_DEFINE([HAVE_LIB]NAME, 1, [Define if you have the lib][$1 library.]) - AC_MSG_CHECKING([how to link with lib[]$1]) - AC_MSG_RESULT([$LIB[]NAME]) - else - HAVE_LIB[]NAME=no - dnl If $LIB[]NAME didn't lead to a usable library, we don't need - dnl $INC[]NAME either. - CPPFLAGS="$ac_save_CPPFLAGS" - LIB[]NAME= - LTLIB[]NAME= - LIB[]NAME[]_PREFIX= - fi - AC_SUBST([HAVE_LIB]NAME) - AC_SUBST([LIB]NAME) - AC_SUBST([LTLIB]NAME) - AC_SUBST([LIB]NAME[_PREFIX]) - popdef([NAME]) - popdef([Name]) -]) - -dnl Determine the platform dependent parameters needed to use rpath: -dnl acl_libext, -dnl acl_shlibext, -dnl acl_hardcode_libdir_flag_spec, -dnl acl_hardcode_libdir_separator, -dnl acl_hardcode_direct, -dnl acl_hardcode_minus_L. -AC_DEFUN([AC_LIB_RPATH], -[ - dnl Tell automake >= 1.10 to complain if config.rpath is missing. - m4_ifdef([AC_REQUIRE_AUX_FILE], [AC_REQUIRE_AUX_FILE([config.rpath])]) - AC_REQUIRE([AC_PROG_CC]) dnl we use $CC, $GCC, $LDFLAGS - AC_REQUIRE([AC_LIB_PROG_LD]) dnl we use $LD, $with_gnu_ld - AC_REQUIRE([AC_CANONICAL_HOST]) dnl we use $host - AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT]) dnl we use $ac_aux_dir - AC_CACHE_CHECK([for shared library run path origin], [acl_cv_rpath], [ - CC="$CC" GCC="$GCC" LDFLAGS="$LDFLAGS" LD="$LD" with_gnu_ld="$with_gnu_ld" \ - ${CONFIG_SHELL-/bin/sh} "$ac_aux_dir/config.rpath" "$host" > conftest.sh - . ./conftest.sh - rm -f ./conftest.sh - acl_cv_rpath=done - ]) - wl="$acl_cv_wl" - acl_libext="$acl_cv_libext" - acl_shlibext="$acl_cv_shlibext" - acl_libname_spec="$acl_cv_libname_spec" - acl_library_names_spec="$acl_cv_library_names_spec" - acl_hardcode_libdir_flag_spec="$acl_cv_hardcode_libdir_flag_spec" - acl_hardcode_libdir_separator="$acl_cv_hardcode_libdir_separator" - acl_hardcode_direct="$acl_cv_hardcode_direct" - acl_hardcode_minus_L="$acl_cv_hardcode_minus_L" - dnl Determine whether the user wants rpath handling at all. - AC_ARG_ENABLE([rpath], - [ --disable-rpath do not hardcode runtime library paths], - :, enable_rpath=yes) -]) - -dnl AC_LIB_FROMPACKAGE(name, package) -dnl declares that libname comes from the given package. The configure file -dnl will then not have a --with-libname-prefix option but a -dnl --with-package-prefix option. Several libraries can come from the same -dnl package. This declaration must occur before an AC_LIB_LINKFLAGS or similar -dnl macro call that searches for libname. -AC_DEFUN([AC_LIB_FROMPACKAGE], -[ - pushdef([NAME],[translit([$1],[abcdefghijklmnopqrstuvwxyz./-], - [ABCDEFGHIJKLMNOPQRSTUVWXYZ___])]) - define([acl_frompackage_]NAME, [$2]) - popdef([NAME]) - pushdef([PACK],[$2]) - pushdef([PACKUP],[translit(PACK,[abcdefghijklmnopqrstuvwxyz./-], - [ABCDEFGHIJKLMNOPQRSTUVWXYZ___])]) - define([acl_libsinpackage_]PACKUP, - m4_ifdef([acl_libsinpackage_]PACKUP, [acl_libsinpackage_]PACKUP[[, ]],)[lib$1]) - popdef([PACKUP]) - popdef([PACK]) -]) - -dnl AC_LIB_LINKFLAGS_BODY(name [, dependencies]) searches for libname and -dnl the libraries corresponding to explicit and implicit dependencies. -dnl Sets the LIB${NAME}, LTLIB${NAME} and INC${NAME} variables. -dnl Also, sets the LIB${NAME}_PREFIX variable to nonempty if libname was found -dnl in ${LIB${NAME}_PREFIX}/$acl_libdirstem. -AC_DEFUN([AC_LIB_LINKFLAGS_BODY], -[ - AC_REQUIRE([AC_LIB_PREPARE_MULTILIB]) - pushdef([NAME],[translit([$1],[abcdefghijklmnopqrstuvwxyz./-], - [ABCDEFGHIJKLMNOPQRSTUVWXYZ___])]) - pushdef([PACK],[m4_ifdef([acl_frompackage_]NAME, [acl_frompackage_]NAME, lib[$1])]) - pushdef([PACKUP],[translit(PACK,[abcdefghijklmnopqrstuvwxyz./-], - [ABCDEFGHIJKLMNOPQRSTUVWXYZ___])]) - pushdef([PACKLIBS],[m4_ifdef([acl_frompackage_]NAME, [acl_libsinpackage_]PACKUP, lib[$1])]) - dnl Autoconf >= 2.61 supports dots in --with options. - pushdef([P_A_C_K],[m4_if(m4_version_compare(m4_defn([m4_PACKAGE_VERSION]),[2.61]),[-1],[translit(PACK,[.],[_])],PACK)]) - dnl By default, look in $includedir and $libdir. - use_additional=yes - AC_LIB_WITH_FINAL_PREFIX([ - eval additional_includedir=\"$includedir\" - eval additional_libdir=\"$libdir\" - ]) - AC_ARG_WITH(P_A_C_K[-prefix], -[[ --with-]]P_A_C_K[[-prefix[=DIR] search for ]PACKLIBS[ in DIR/include and DIR/lib - --without-]]P_A_C_K[[-prefix don't search for ]PACKLIBS[ in includedir and libdir]], -[ - if test "X$withval" = "Xno"; then - use_additional=no - else - if test "X$withval" = "X"; then - AC_LIB_WITH_FINAL_PREFIX([ - eval additional_includedir=\"$includedir\" - eval additional_libdir=\"$libdir\" - ]) - else - additional_includedir="$withval/include" - additional_libdir="$withval/$acl_libdirstem" - if test "$acl_libdirstem2" != "$acl_libdirstem" \ - && ! test -d "$withval/$acl_libdirstem"; then - additional_libdir="$withval/$acl_libdirstem2" - fi - fi - fi -]) - dnl Search the library and its dependencies in $additional_libdir and - dnl $LDFLAGS. Using breadth-first-seach. - LIB[]NAME= - LTLIB[]NAME= - INC[]NAME= - LIB[]NAME[]_PREFIX= - dnl HAVE_LIB${NAME} is an indicator that LIB${NAME}, LTLIB${NAME} have been - dnl computed. So it has to be reset here. - HAVE_LIB[]NAME= - rpathdirs= - ltrpathdirs= - names_already_handled= - names_next_round='$1 $2' - while test -n "$names_next_round"; do - names_this_round="$names_next_round" - names_next_round= - for name in $names_this_round; do - already_handled= - for n in $names_already_handled; do - if test "$n" = "$name"; then - already_handled=yes - break - fi - done - if test -z "$already_handled"; then - names_already_handled="$names_already_handled $name" - dnl See if it was already located by an earlier AC_LIB_LINKFLAGS - dnl or AC_LIB_HAVE_LINKFLAGS call. - uppername=`echo "$name" | sed -e 'y|abcdefghijklmnopqrstuvwxyz./-|ABCDEFGHIJKLMNOPQRSTUVWXYZ___|'` - eval value=\"\$HAVE_LIB$uppername\" - if test -n "$value"; then - if test "$value" = yes; then - eval value=\"\$LIB$uppername\" - test -z "$value" || LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$value" - eval value=\"\$LTLIB$uppername\" - test -z "$value" || LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }$value" - else - dnl An earlier call to AC_LIB_HAVE_LINKFLAGS has determined - dnl that this library doesn't exist. So just drop it. - : - fi - else - dnl Search the library lib$name in $additional_libdir and $LDFLAGS - dnl and the already constructed $LIBNAME/$LTLIBNAME. - found_dir= - found_la= - found_so= - found_a= - eval libname=\"$acl_libname_spec\" # typically: libname=lib$name - if test -n "$acl_shlibext"; then - shrext=".$acl_shlibext" # typically: shrext=.so - else - shrext= - fi - if test $use_additional = yes; then - dir="$additional_libdir" - dnl The same code as in the loop below: - dnl First look for a shared library. - if test -n "$acl_shlibext"; then - if test -f "$dir/$libname$shrext"; then - found_dir="$dir" - found_so="$dir/$libname$shrext" - else - if test "$acl_library_names_spec" = '$libname$shrext$versuffix'; then - ver=`(cd "$dir" && \ - for f in "$libname$shrext".*; do echo "$f"; done \ - | sed -e "s,^$libname$shrext\\\\.,," \ - | sort -t '.' -n -r -k1,1 -k2,2 -k3,3 -k4,4 -k5,5 \ - | sed 1q ) 2>/dev/null` - if test -n "$ver" && test -f "$dir/$libname$shrext.$ver"; then - found_dir="$dir" - found_so="$dir/$libname$shrext.$ver" - fi - else - eval library_names=\"$acl_library_names_spec\" - for f in $library_names; do - if test -f "$dir/$f"; then - found_dir="$dir" - found_so="$dir/$f" - break - fi - done - fi - fi - fi - dnl Then look for a static library. - if test "X$found_dir" = "X"; then - if test -f "$dir/$libname.$acl_libext"; then - found_dir="$dir" - found_a="$dir/$libname.$acl_libext" - fi - fi - if test "X$found_dir" != "X"; then - if test -f "$dir/$libname.la"; then - found_la="$dir/$libname.la" - fi - fi - fi - if test "X$found_dir" = "X"; then - for x in $LDFLAGS $LTLIB[]NAME; do - AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) - case "$x" in - -L*) - dir=`echo "X$x" | sed -e 's/^X-L//'` - dnl First look for a shared library. - if test -n "$acl_shlibext"; then - if test -f "$dir/$libname$shrext"; then - found_dir="$dir" - found_so="$dir/$libname$shrext" - else - if test "$acl_library_names_spec" = '$libname$shrext$versuffix'; then - ver=`(cd "$dir" && \ - for f in "$libname$shrext".*; do echo "$f"; done \ - | sed -e "s,^$libname$shrext\\\\.,," \ - | sort -t '.' -n -r -k1,1 -k2,2 -k3,3 -k4,4 -k5,5 \ - | sed 1q ) 2>/dev/null` - if test -n "$ver" && test -f "$dir/$libname$shrext.$ver"; then - found_dir="$dir" - found_so="$dir/$libname$shrext.$ver" - fi - else - eval library_names=\"$acl_library_names_spec\" - for f in $library_names; do - if test -f "$dir/$f"; then - found_dir="$dir" - found_so="$dir/$f" - break - fi - done - fi - fi - fi - dnl Then look for a static library. - if test "X$found_dir" = "X"; then - if test -f "$dir/$libname.$acl_libext"; then - found_dir="$dir" - found_a="$dir/$libname.$acl_libext" - fi - fi - if test "X$found_dir" != "X"; then - if test -f "$dir/$libname.la"; then - found_la="$dir/$libname.la" - fi - fi - ;; - esac - if test "X$found_dir" != "X"; then - break - fi - done - fi - if test "X$found_dir" != "X"; then - dnl Found the library. - LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }-L$found_dir -l$name" - if test "X$found_so" != "X"; then - dnl Linking with a shared library. We attempt to hardcode its - dnl directory into the executable's runpath, unless it's the - dnl standard /usr/lib. - if test "$enable_rpath" = no \ - || test "X$found_dir" = "X/usr/$acl_libdirstem" \ - || test "X$found_dir" = "X/usr/$acl_libdirstem2"; then - dnl No hardcoding is needed. - LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$found_so" - else - dnl Use an explicit option to hardcode DIR into the resulting - dnl binary. - dnl Potentially add DIR to ltrpathdirs. - dnl The ltrpathdirs will be appended to $LTLIBNAME at the end. - haveit= - for x in $ltrpathdirs; do - if test "X$x" = "X$found_dir"; then - haveit=yes - break - fi - done - if test -z "$haveit"; then - ltrpathdirs="$ltrpathdirs $found_dir" - fi - dnl The hardcoding into $LIBNAME is system dependent. - if test "$acl_hardcode_direct" = yes; then - dnl Using DIR/libNAME.so during linking hardcodes DIR into the - dnl resulting binary. - LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$found_so" - else - if test -n "$acl_hardcode_libdir_flag_spec" && test "$acl_hardcode_minus_L" = no; then - dnl Use an explicit option to hardcode DIR into the resulting - dnl binary. - LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$found_so" - dnl Potentially add DIR to rpathdirs. - dnl The rpathdirs will be appended to $LIBNAME at the end. - haveit= - for x in $rpathdirs; do - if test "X$x" = "X$found_dir"; then - haveit=yes - break - fi - done - if test -z "$haveit"; then - rpathdirs="$rpathdirs $found_dir" - fi - else - dnl Rely on "-L$found_dir". - dnl But don't add it if it's already contained in the LDFLAGS - dnl or the already constructed $LIBNAME - haveit= - for x in $LDFLAGS $LIB[]NAME; do - AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) - if test "X$x" = "X-L$found_dir"; then - haveit=yes - break - fi - done - if test -z "$haveit"; then - LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-L$found_dir" - fi - if test "$acl_hardcode_minus_L" != no; then - dnl FIXME: Not sure whether we should use - dnl "-L$found_dir -l$name" or "-L$found_dir $found_so" - dnl here. - LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$found_so" - else - dnl We cannot use $acl_hardcode_runpath_var and LD_RUN_PATH - dnl here, because this doesn't fit in flags passed to the - dnl compiler. So give up. No hardcoding. This affects only - dnl very old systems. - dnl FIXME: Not sure whether we should use - dnl "-L$found_dir -l$name" or "-L$found_dir $found_so" - dnl here. - LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-l$name" - fi - fi - fi - fi - else - if test "X$found_a" != "X"; then - dnl Linking with a static library. - LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$found_a" - else - dnl We shouldn't come here, but anyway it's good to have a - dnl fallback. - LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-L$found_dir -l$name" - fi - fi - dnl Assume the include files are nearby. - additional_includedir= - case "$found_dir" in - */$acl_libdirstem | */$acl_libdirstem/) - basedir=`echo "X$found_dir" | sed -e 's,^X,,' -e "s,/$acl_libdirstem/"'*$,,'` - if test "$name" = '$1'; then - LIB[]NAME[]_PREFIX="$basedir" - fi - additional_includedir="$basedir/include" - ;; - */$acl_libdirstem2 | */$acl_libdirstem2/) - basedir=`echo "X$found_dir" | sed -e 's,^X,,' -e "s,/$acl_libdirstem2/"'*$,,'` - if test "$name" = '$1'; then - LIB[]NAME[]_PREFIX="$basedir" - fi - additional_includedir="$basedir/include" - ;; - esac - if test "X$additional_includedir" != "X"; then - dnl Potentially add $additional_includedir to $INCNAME. - dnl But don't add it - dnl 1. if it's the standard /usr/include, - dnl 2. if it's /usr/local/include and we are using GCC on Linux, - dnl 3. if it's already present in $CPPFLAGS or the already - dnl constructed $INCNAME, - dnl 4. if it doesn't exist as a directory. - if test "X$additional_includedir" != "X/usr/include"; then - haveit= - if test "X$additional_includedir" = "X/usr/local/include"; then - if test -n "$GCC"; then - case $host_os in - linux* | gnu* | k*bsd*-gnu) haveit=yes;; - esac - fi - fi - if test -z "$haveit"; then - for x in $CPPFLAGS $INC[]NAME; do - AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) - if test "X$x" = "X-I$additional_includedir"; then - haveit=yes - break - fi - done - if test -z "$haveit"; then - if test -d "$additional_includedir"; then - dnl Really add $additional_includedir to $INCNAME. - INC[]NAME="${INC[]NAME}${INC[]NAME:+ }-I$additional_includedir" - fi - fi - fi - fi - fi - dnl Look for dependencies. - if test -n "$found_la"; then - dnl Read the .la file. It defines the variables - dnl dlname, library_names, old_library, dependency_libs, current, - dnl age, revision, installed, dlopen, dlpreopen, libdir. - save_libdir="$libdir" - case "$found_la" in - */* | *\\*) . "$found_la" ;; - *) . "./$found_la" ;; - esac - libdir="$save_libdir" - dnl We use only dependency_libs. - for dep in $dependency_libs; do - case "$dep" in - -L*) - additional_libdir=`echo "X$dep" | sed -e 's/^X-L//'` - dnl Potentially add $additional_libdir to $LIBNAME and $LTLIBNAME. - dnl But don't add it - dnl 1. if it's the standard /usr/lib, - dnl 2. if it's /usr/local/lib and we are using GCC on Linux, - dnl 3. if it's already present in $LDFLAGS or the already - dnl constructed $LIBNAME, - dnl 4. if it doesn't exist as a directory. - if test "X$additional_libdir" != "X/usr/$acl_libdirstem" \ - && test "X$additional_libdir" != "X/usr/$acl_libdirstem2"; then - haveit= - if test "X$additional_libdir" = "X/usr/local/$acl_libdirstem" \ - || test "X$additional_libdir" = "X/usr/local/$acl_libdirstem2"; then - if test -n "$GCC"; then - case $host_os in - linux* | gnu* | k*bsd*-gnu) haveit=yes;; - esac - fi - fi - if test -z "$haveit"; then - haveit= - for x in $LDFLAGS $LIB[]NAME; do - AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) - if test "X$x" = "X-L$additional_libdir"; then - haveit=yes - break - fi - done - if test -z "$haveit"; then - if test -d "$additional_libdir"; then - dnl Really add $additional_libdir to $LIBNAME. - LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-L$additional_libdir" - fi - fi - haveit= - for x in $LDFLAGS $LTLIB[]NAME; do - AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) - if test "X$x" = "X-L$additional_libdir"; then - haveit=yes - break - fi - done - if test -z "$haveit"; then - if test -d "$additional_libdir"; then - dnl Really add $additional_libdir to $LTLIBNAME. - LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }-L$additional_libdir" - fi - fi - fi - fi - ;; - -R*) - dir=`echo "X$dep" | sed -e 's/^X-R//'` - if test "$enable_rpath" != no; then - dnl Potentially add DIR to rpathdirs. - dnl The rpathdirs will be appended to $LIBNAME at the end. - haveit= - for x in $rpathdirs; do - if test "X$x" = "X$dir"; then - haveit=yes - break - fi - done - if test -z "$haveit"; then - rpathdirs="$rpathdirs $dir" - fi - dnl Potentially add DIR to ltrpathdirs. - dnl The ltrpathdirs will be appended to $LTLIBNAME at the end. - haveit= - for x in $ltrpathdirs; do - if test "X$x" = "X$dir"; then - haveit=yes - break - fi - done - if test -z "$haveit"; then - ltrpathdirs="$ltrpathdirs $dir" - fi - fi - ;; - -l*) - dnl Handle this in the next round. - names_next_round="$names_next_round "`echo "X$dep" | sed -e 's/^X-l//'` - ;; - *.la) - dnl Handle this in the next round. Throw away the .la's - dnl directory; it is already contained in a preceding -L - dnl option. - names_next_round="$names_next_round "`echo "X$dep" | sed -e 's,^X.*/,,' -e 's,^lib,,' -e 's,\.la$,,'` - ;; - *) - dnl Most likely an immediate library name. - LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$dep" - LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }$dep" - ;; - esac - done - fi - else - dnl Didn't find the library; assume it is in the system directories - dnl known to the linker and runtime loader. (All the system - dnl directories known to the linker should also be known to the - dnl runtime loader, otherwise the system is severely misconfigured.) - LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-l$name" - LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }-l$name" - fi - fi - fi - done - done - if test "X$rpathdirs" != "X"; then - if test -n "$acl_hardcode_libdir_separator"; then - dnl Weird platform: only the last -rpath option counts, the user must - dnl pass all path elements in one option. We can arrange that for a - dnl single library, but not when more than one $LIBNAMEs are used. - alldirs= - for found_dir in $rpathdirs; do - alldirs="${alldirs}${alldirs:+$acl_hardcode_libdir_separator}$found_dir" - done - dnl Note: acl_hardcode_libdir_flag_spec uses $libdir and $wl. - acl_save_libdir="$libdir" - libdir="$alldirs" - eval flag=\"$acl_hardcode_libdir_flag_spec\" - libdir="$acl_save_libdir" - LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$flag" - else - dnl The -rpath options are cumulative. - for found_dir in $rpathdirs; do - acl_save_libdir="$libdir" - libdir="$found_dir" - eval flag=\"$acl_hardcode_libdir_flag_spec\" - libdir="$acl_save_libdir" - LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$flag" - done - fi - fi - if test "X$ltrpathdirs" != "X"; then - dnl When using libtool, the option that works for both libraries and - dnl executables is -R. The -R options are cumulative. - for found_dir in $ltrpathdirs; do - LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }-R$found_dir" - done - fi - popdef([P_A_C_K]) - popdef([PACKLIBS]) - popdef([PACKUP]) - popdef([PACK]) - popdef([NAME]) -]) - -dnl AC_LIB_APPENDTOVAR(VAR, CONTENTS) appends the elements of CONTENTS to VAR, -dnl unless already present in VAR. -dnl Works only for CPPFLAGS, not for LIB* variables because that sometimes -dnl contains two or three consecutive elements that belong together. -AC_DEFUN([AC_LIB_APPENDTOVAR], -[ - for element in [$2]; do - haveit= - for x in $[$1]; do - AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) - if test "X$x" = "X$element"; then - haveit=yes - break - fi - done - if test -z "$haveit"; then - [$1]="${[$1]}${[$1]:+ }$element" - fi - done -]) - -dnl For those cases where a variable contains several -L and -l options -dnl referring to unknown libraries and directories, this macro determines the -dnl necessary additional linker options for the runtime path. -dnl AC_LIB_LINKFLAGS_FROM_LIBS([LDADDVAR], [LIBSVALUE], [USE-LIBTOOL]) -dnl sets LDADDVAR to linker options needed together with LIBSVALUE. -dnl If USE-LIBTOOL evaluates to non-empty, linking with libtool is assumed, -dnl otherwise linking without libtool is assumed. -AC_DEFUN([AC_LIB_LINKFLAGS_FROM_LIBS], -[ - AC_REQUIRE([AC_LIB_RPATH]) - AC_REQUIRE([AC_LIB_PREPARE_MULTILIB]) - $1= - if test "$enable_rpath" != no; then - if test -n "$acl_hardcode_libdir_flag_spec" && test "$acl_hardcode_minus_L" = no; then - dnl Use an explicit option to hardcode directories into the resulting - dnl binary. - rpathdirs= - next= - for opt in $2; do - if test -n "$next"; then - dir="$next" - dnl No need to hardcode the standard /usr/lib. - if test "X$dir" != "X/usr/$acl_libdirstem" \ - && test "X$dir" != "X/usr/$acl_libdirstem2"; then - rpathdirs="$rpathdirs $dir" - fi - next= - else - case $opt in - -L) next=yes ;; - -L*) dir=`echo "X$opt" | sed -e 's,^X-L,,'` - dnl No need to hardcode the standard /usr/lib. - if test "X$dir" != "X/usr/$acl_libdirstem" \ - && test "X$dir" != "X/usr/$acl_libdirstem2"; then - rpathdirs="$rpathdirs $dir" - fi - next= ;; - *) next= ;; - esac - fi - done - if test "X$rpathdirs" != "X"; then - if test -n ""$3""; then - dnl libtool is used for linking. Use -R options. - for dir in $rpathdirs; do - $1="${$1}${$1:+ }-R$dir" - done - else - dnl The linker is used for linking directly. - if test -n "$acl_hardcode_libdir_separator"; then - dnl Weird platform: only the last -rpath option counts, the user - dnl must pass all path elements in one option. - alldirs= - for dir in $rpathdirs; do - alldirs="${alldirs}${alldirs:+$acl_hardcode_libdir_separator}$dir" - done - acl_save_libdir="$libdir" - libdir="$alldirs" - eval flag=\"$acl_hardcode_libdir_flag_spec\" - libdir="$acl_save_libdir" - $1="$flag" - else - dnl The -rpath options are cumulative. - for dir in $rpathdirs; do - acl_save_libdir="$libdir" - libdir="$dir" - eval flag=\"$acl_hardcode_libdir_flag_spec\" - libdir="$acl_save_libdir" - $1="${$1}${$1:+ }$flag" - done - fi - fi - fi - fi - fi - AC_SUBST([$1]) -]) - -# lib-prefix.m4 serial 7 (gettext-0.18) -dnl Copyright (C) 2001-2005, 2008-2010 Free Software Foundation, Inc. -dnl This file is free software; the Free Software Foundation -dnl gives unlimited permission to copy and/or distribute it, -dnl with or without modifications, as long as this notice is preserved. - -dnl From Bruno Haible. - -dnl AC_LIB_ARG_WITH is synonymous to AC_ARG_WITH in autoconf-2.13, and -dnl similar to AC_ARG_WITH in autoconf 2.52...2.57 except that is doesn't -dnl require excessive bracketing. -ifdef([AC_HELP_STRING], -[AC_DEFUN([AC_LIB_ARG_WITH], [AC_ARG_WITH([$1],[[$2]],[$3],[$4])])], -[AC_DEFUN([AC_][LIB_ARG_WITH], [AC_ARG_WITH([$1],[$2],[$3],[$4])])]) - -dnl AC_LIB_PREFIX adds to the CPPFLAGS and LDFLAGS the flags that are needed -dnl to access previously installed libraries. The basic assumption is that -dnl a user will want packages to use other packages he previously installed -dnl with the same --prefix option. -dnl This macro is not needed if only AC_LIB_LINKFLAGS is used to locate -dnl libraries, but is otherwise very convenient. -AC_DEFUN([AC_LIB_PREFIX], -[ - AC_BEFORE([$0], [AC_LIB_LINKFLAGS]) - AC_REQUIRE([AC_PROG_CC]) - AC_REQUIRE([AC_CANONICAL_HOST]) - AC_REQUIRE([AC_LIB_PREPARE_MULTILIB]) - AC_REQUIRE([AC_LIB_PREPARE_PREFIX]) - dnl By default, look in $includedir and $libdir. - use_additional=yes - AC_LIB_WITH_FINAL_PREFIX([ - eval additional_includedir=\"$includedir\" - eval additional_libdir=\"$libdir\" - ]) - AC_LIB_ARG_WITH([lib-prefix], -[ --with-lib-prefix[=DIR] search for libraries in DIR/include and DIR/lib - --without-lib-prefix don't search for libraries in includedir and libdir], -[ - if test "X$withval" = "Xno"; then - use_additional=no - else - if test "X$withval" = "X"; then - AC_LIB_WITH_FINAL_PREFIX([ - eval additional_includedir=\"$includedir\" - eval additional_libdir=\"$libdir\" - ]) - else - additional_includedir="$withval/include" - additional_libdir="$withval/$acl_libdirstem" - fi - fi -]) - if test $use_additional = yes; then - dnl Potentially add $additional_includedir to $CPPFLAGS. - dnl But don't add it - dnl 1. if it's the standard /usr/include, - dnl 2. if it's already present in $CPPFLAGS, - dnl 3. if it's /usr/local/include and we are using GCC on Linux, - dnl 4. if it doesn't exist as a directory. - if test "X$additional_includedir" != "X/usr/include"; then - haveit= - for x in $CPPFLAGS; do - AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) - if test "X$x" = "X-I$additional_includedir"; then - haveit=yes - break - fi - done - if test -z "$haveit"; then - if test "X$additional_includedir" = "X/usr/local/include"; then - if test -n "$GCC"; then - case $host_os in - linux* | gnu* | k*bsd*-gnu) haveit=yes;; - esac - fi - fi - if test -z "$haveit"; then - if test -d "$additional_includedir"; then - dnl Really add $additional_includedir to $CPPFLAGS. - CPPFLAGS="${CPPFLAGS}${CPPFLAGS:+ }-I$additional_includedir" - fi - fi - fi - fi - dnl Potentially add $additional_libdir to $LDFLAGS. - dnl But don't add it - dnl 1. if it's the standard /usr/lib, - dnl 2. if it's already present in $LDFLAGS, - dnl 3. if it's /usr/local/lib and we are using GCC on Linux, - dnl 4. if it doesn't exist as a directory. - if test "X$additional_libdir" != "X/usr/$acl_libdirstem"; then - haveit= - for x in $LDFLAGS; do - AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) - if test "X$x" = "X-L$additional_libdir"; then - haveit=yes - break - fi - done - if test -z "$haveit"; then - if test "X$additional_libdir" = "X/usr/local/$acl_libdirstem"; then - if test -n "$GCC"; then - case $host_os in - linux*) haveit=yes;; - esac - fi - fi - if test -z "$haveit"; then - if test -d "$additional_libdir"; then - dnl Really add $additional_libdir to $LDFLAGS. - LDFLAGS="${LDFLAGS}${LDFLAGS:+ }-L$additional_libdir" - fi - fi - fi - fi - fi -]) - -dnl AC_LIB_PREPARE_PREFIX creates variables acl_final_prefix, -dnl acl_final_exec_prefix, containing the values to which $prefix and -dnl $exec_prefix will expand at the end of the configure script. -AC_DEFUN([AC_LIB_PREPARE_PREFIX], -[ - dnl Unfortunately, prefix and exec_prefix get only finally determined - dnl at the end of configure. - if test "X$prefix" = "XNONE"; then - acl_final_prefix="$ac_default_prefix" - else - acl_final_prefix="$prefix" - fi - if test "X$exec_prefix" = "XNONE"; then - acl_final_exec_prefix='${prefix}' - else - acl_final_exec_prefix="$exec_prefix" - fi - acl_save_prefix="$prefix" - prefix="$acl_final_prefix" - eval acl_final_exec_prefix=\"$acl_final_exec_prefix\" - prefix="$acl_save_prefix" -]) - -dnl AC_LIB_WITH_FINAL_PREFIX([statement]) evaluates statement, with the -dnl variables prefix and exec_prefix bound to the values they will have -dnl at the end of the configure script. -AC_DEFUN([AC_LIB_WITH_FINAL_PREFIX], -[ - acl_save_prefix="$prefix" - prefix="$acl_final_prefix" - acl_save_exec_prefix="$exec_prefix" - exec_prefix="$acl_final_exec_prefix" - $1 - exec_prefix="$acl_save_exec_prefix" - prefix="$acl_save_prefix" -]) - -dnl AC_LIB_PREPARE_MULTILIB creates -dnl - a variable acl_libdirstem, containing the basename of the libdir, either -dnl "lib" or "lib64" or "lib/64", -dnl - a variable acl_libdirstem2, as a secondary possible value for -dnl acl_libdirstem, either the same as acl_libdirstem or "lib/sparcv9" or -dnl "lib/amd64". -AC_DEFUN([AC_LIB_PREPARE_MULTILIB], -[ - dnl There is no formal standard regarding lib and lib64. - dnl On glibc systems, the current practice is that on a system supporting - dnl 32-bit and 64-bit instruction sets or ABIs, 64-bit libraries go under - dnl $prefix/lib64 and 32-bit libraries go under $prefix/lib. We determine - dnl the compiler's default mode by looking at the compiler's library search - dnl path. If at least one of its elements ends in /lib64 or points to a - dnl directory whose absolute pathname ends in /lib64, we assume a 64-bit ABI. - dnl Otherwise we use the default, namely "lib". - dnl On Solaris systems, the current practice is that on a system supporting - dnl 32-bit and 64-bit instruction sets or ABIs, 64-bit libraries go under - dnl $prefix/lib/64 (which is a symlink to either $prefix/lib/sparcv9 or - dnl $prefix/lib/amd64) and 32-bit libraries go under $prefix/lib. - AC_REQUIRE([AC_CANONICAL_HOST]) - acl_libdirstem=lib - acl_libdirstem2= - case "$host_os" in - solaris*) - dnl See Solaris 10 Software Developer Collection > Solaris 64-bit Developer's Guide > The Development Environment - dnl . - dnl "Portable Makefiles should refer to any library directories using the 64 symbolic link." - dnl But we want to recognize the sparcv9 or amd64 subdirectory also if the - dnl symlink is missing, so we set acl_libdirstem2 too. - AC_CACHE_CHECK([for 64-bit host], [gl_cv_solaris_64bit], - [AC_EGREP_CPP([sixtyfour bits], [ -#ifdef _LP64 -sixtyfour bits -#endif - ], [gl_cv_solaris_64bit=yes], [gl_cv_solaris_64bit=no]) - ]) - if test $gl_cv_solaris_64bit = yes; then - acl_libdirstem=lib/64 - case "$host_cpu" in - sparc*) acl_libdirstem2=lib/sparcv9 ;; - i*86 | x86_64) acl_libdirstem2=lib/amd64 ;; - esac - fi - ;; - *) - searchpath=`(LC_ALL=C $CC -print-search-dirs) 2>/dev/null | sed -n -e 's,^libraries: ,,p' | sed -e 's,^=,,'` - if test -n "$searchpath"; then - acl_save_IFS="${IFS= }"; IFS=":" - for searchdir in $searchpath; do - if test -d "$searchdir"; then - case "$searchdir" in - */lib64/ | */lib64 ) acl_libdirstem=lib64 ;; - */../ | */.. ) - # Better ignore directories of this form. They are misleading. - ;; - *) searchdir=`cd "$searchdir" && pwd` - case "$searchdir" in - */lib64 ) acl_libdirstem=lib64 ;; - esac ;; - esac - fi - done - IFS="$acl_save_IFS" - fi - ;; - esac - test -n "$acl_libdirstem2" || acl_libdirstem2="$acl_libdirstem" -]) - -# libtool.m4 - Configure libtool for the host system. -*-Autoconf-*- -# -# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, -# 2006, 2007, 2008, 2009, 2010 Free Software Foundation, -# Inc. -# Written by Gordon Matzigkeit, 1996 -# -# This file is free software; the Free Software Foundation gives -# unlimited permission to copy and/or distribute it, with or without -# modifications, as long as this notice is preserved. - -m4_define([_LT_COPYING], [dnl -# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, -# 2006, 2007, 2008, 2009, 2010 Free Software Foundation, -# Inc. -# Written by Gordon Matzigkeit, 1996 -# -# This file is part of GNU Libtool. -# -# GNU Libtool is free software; you can redistribute it and/or -# modify it under the terms of the GNU General Public License as -# published by the Free Software Foundation; either version 2 of -# the License, or (at your option) any later version. -# -# As a special exception to the GNU General Public License, -# if you distribute this file as part of a program or library that -# is built using GNU Libtool, you may include this file under the -# same distribution terms that you use for the rest of that program. -# -# GNU Libtool is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with GNU Libtool; see the file COPYING. If not, a copy -# can be downloaded from http://www.gnu.org/licenses/gpl.html, or -# obtained by writing to the Free Software Foundation, Inc., -# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -]) - -# serial 57 LT_INIT - - -# LT_PREREQ(VERSION) -# ------------------ -# Complain and exit if this libtool version is less that VERSION. -m4_defun([LT_PREREQ], -[m4_if(m4_version_compare(m4_defn([LT_PACKAGE_VERSION]), [$1]), -1, - [m4_default([$3], - [m4_fatal([Libtool version $1 or higher is required], - 63)])], - [$2])]) - - -# _LT_CHECK_BUILDDIR -# ------------------ -# Complain if the absolute build directory name contains unusual characters -m4_defun([_LT_CHECK_BUILDDIR], -[case `pwd` in - *\ * | *\ *) - AC_MSG_WARN([Libtool does not cope well with whitespace in `pwd`]) ;; -esac -]) - - -# LT_INIT([OPTIONS]) -# ------------------ -AC_DEFUN([LT_INIT], -[AC_PREREQ([2.58])dnl We use AC_INCLUDES_DEFAULT -AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT])dnl -AC_BEFORE([$0], [LT_LANG])dnl -AC_BEFORE([$0], [LT_OUTPUT])dnl -AC_BEFORE([$0], [LTDL_INIT])dnl -m4_require([_LT_CHECK_BUILDDIR])dnl - -dnl Autoconf doesn't catch unexpanded LT_ macros by default: -m4_pattern_forbid([^_?LT_[A-Z_]+$])dnl -m4_pattern_allow([^(_LT_EOF|LT_DLGLOBAL|LT_DLLAZY_OR_NOW|LT_MULTI_MODULE)$])dnl -dnl aclocal doesn't pull ltoptions.m4, ltsugar.m4, or ltversion.m4 -dnl unless we require an AC_DEFUNed macro: -AC_REQUIRE([LTOPTIONS_VERSION])dnl -AC_REQUIRE([LTSUGAR_VERSION])dnl -AC_REQUIRE([LTVERSION_VERSION])dnl -AC_REQUIRE([LTOBSOLETE_VERSION])dnl -m4_require([_LT_PROG_LTMAIN])dnl - -_LT_SHELL_INIT([SHELL=${CONFIG_SHELL-/bin/sh}]) - -dnl Parse OPTIONS -_LT_SET_OPTIONS([$0], [$1]) - -# This can be used to rebuild libtool when needed -LIBTOOL_DEPS="$ltmain" - -# Always use our own libtool. -LIBTOOL='$(SHELL) $(top_builddir)/libtool' -AC_SUBST(LIBTOOL)dnl - -_LT_SETUP - -# Only expand once: -m4_define([LT_INIT]) -])# LT_INIT - -# Old names: -AU_ALIAS([AC_PROG_LIBTOOL], [LT_INIT]) -AU_ALIAS([AM_PROG_LIBTOOL], [LT_INIT]) -dnl aclocal-1.4 backwards compatibility: -dnl AC_DEFUN([AC_PROG_LIBTOOL], []) -dnl AC_DEFUN([AM_PROG_LIBTOOL], []) - - -# _LT_CC_BASENAME(CC) -# ------------------- -# Calculate cc_basename. Skip known compiler wrappers and cross-prefix. -m4_defun([_LT_CC_BASENAME], -[for cc_temp in $1""; do - case $cc_temp in - compile | *[[\\/]]compile | ccache | *[[\\/]]ccache ) ;; - distcc | *[[\\/]]distcc | purify | *[[\\/]]purify ) ;; - \-*) ;; - *) break;; - esac -done -cc_basename=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` -]) - - -# _LT_FILEUTILS_DEFAULTS -# ---------------------- -# It is okay to use these file commands and assume they have been set -# sensibly after `m4_require([_LT_FILEUTILS_DEFAULTS])'. -m4_defun([_LT_FILEUTILS_DEFAULTS], -[: ${CP="cp -f"} -: ${MV="mv -f"} -: ${RM="rm -f"} -])# _LT_FILEUTILS_DEFAULTS - - -# _LT_SETUP -# --------- -m4_defun([_LT_SETUP], -[AC_REQUIRE([AC_CANONICAL_HOST])dnl -AC_REQUIRE([AC_CANONICAL_BUILD])dnl -AC_REQUIRE([_LT_PREPARE_SED_QUOTE_VARS])dnl -AC_REQUIRE([_LT_PROG_ECHO_BACKSLASH])dnl - -_LT_DECL([], [host_alias], [0], [The host system])dnl -_LT_DECL([], [host], [0])dnl -_LT_DECL([], [host_os], [0])dnl -dnl -_LT_DECL([], [build_alias], [0], [The build system])dnl -_LT_DECL([], [build], [0])dnl -_LT_DECL([], [build_os], [0])dnl -dnl -AC_REQUIRE([AC_PROG_CC])dnl -AC_REQUIRE([LT_PATH_LD])dnl -AC_REQUIRE([LT_PATH_NM])dnl -dnl -AC_REQUIRE([AC_PROG_LN_S])dnl -test -z "$LN_S" && LN_S="ln -s" -_LT_DECL([], [LN_S], [1], [Whether we need soft or hard links])dnl -dnl -AC_REQUIRE([LT_CMD_MAX_LEN])dnl -_LT_DECL([objext], [ac_objext], [0], [Object file suffix (normally "o")])dnl -_LT_DECL([], [exeext], [0], [Executable file suffix (normally "")])dnl -dnl -m4_require([_LT_FILEUTILS_DEFAULTS])dnl -m4_require([_LT_CHECK_SHELL_FEATURES])dnl -m4_require([_LT_PATH_CONVERSION_FUNCTIONS])dnl -m4_require([_LT_CMD_RELOAD])dnl -m4_require([_LT_CHECK_MAGIC_METHOD])dnl -m4_require([_LT_CHECK_SHAREDLIB_FROM_LINKLIB])dnl -m4_require([_LT_CMD_OLD_ARCHIVE])dnl -m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl -m4_require([_LT_WITH_SYSROOT])dnl - -_LT_CONFIG_LIBTOOL_INIT([ -# See if we are running on zsh, and set the options which allow our -# commands through without removal of \ escapes INIT. -if test -n "\${ZSH_VERSION+set}" ; then - setopt NO_GLOB_SUBST -fi -]) -if test -n "${ZSH_VERSION+set}" ; then - setopt NO_GLOB_SUBST -fi - -_LT_CHECK_OBJDIR - -m4_require([_LT_TAG_COMPILER])dnl - -case $host_os in -aix3*) - # AIX sometimes has problems with the GCC collect2 program. For some - # reason, if we set the COLLECT_NAMES environment variable, the problems - # vanish in a puff of smoke. - if test "X${COLLECT_NAMES+set}" != Xset; then - COLLECT_NAMES= - export COLLECT_NAMES - fi - ;; -esac - -# Global variables: -ofile=libtool -can_build_shared=yes - -# All known linkers require a `.a' archive for static linking (except MSVC, -# which needs '.lib'). -libext=a - -with_gnu_ld="$lt_cv_prog_gnu_ld" - -old_CC="$CC" -old_CFLAGS="$CFLAGS" - -# Set sane defaults for various variables -test -z "$CC" && CC=cc -test -z "$LTCC" && LTCC=$CC -test -z "$LTCFLAGS" && LTCFLAGS=$CFLAGS -test -z "$LD" && LD=ld -test -z "$ac_objext" && ac_objext=o - -_LT_CC_BASENAME([$compiler]) - -# Only perform the check for file, if the check method requires it -test -z "$MAGIC_CMD" && MAGIC_CMD=file -case $deplibs_check_method in -file_magic*) - if test "$file_magic_cmd" = '$MAGIC_CMD'; then - _LT_PATH_MAGIC - fi - ;; -esac - -# Use C for the default configuration in the libtool script -LT_SUPPORTED_TAG([CC]) -_LT_LANG_C_CONFIG -_LT_LANG_DEFAULT_CONFIG -_LT_CONFIG_COMMANDS -])# _LT_SETUP - - -# _LT_PREPARE_SED_QUOTE_VARS -# -------------------------- -# Define a few sed substitution that help us do robust quoting. -m4_defun([_LT_PREPARE_SED_QUOTE_VARS], -[# Backslashify metacharacters that are still active within -# double-quoted strings. -sed_quote_subst='s/\([["`$\\]]\)/\\\1/g' - -# Same as above, but do not quote variable references. -double_quote_subst='s/\([["`\\]]\)/\\\1/g' - -# Sed substitution to delay expansion of an escaped shell variable in a -# double_quote_subst'ed string. -delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g' - -# Sed substitution to delay expansion of an escaped single quote. -delay_single_quote_subst='s/'\''/'\'\\\\\\\'\''/g' - -# Sed substitution to avoid accidental globbing in evaled expressions -no_glob_subst='s/\*/\\\*/g' -]) - -# _LT_PROG_LTMAIN -# --------------- -# Note that this code is called both from `configure', and `config.status' -# now that we use AC_CONFIG_COMMANDS to generate libtool. Notably, -# `config.status' has no value for ac_aux_dir unless we are using Automake, -# so we pass a copy along to make sure it has a sensible value anyway. -m4_defun([_LT_PROG_LTMAIN], -[m4_ifdef([AC_REQUIRE_AUX_FILE], [AC_REQUIRE_AUX_FILE([ltmain.sh])])dnl -_LT_CONFIG_LIBTOOL_INIT([ac_aux_dir='$ac_aux_dir']) -ltmain="$ac_aux_dir/ltmain.sh" -])# _LT_PROG_LTMAIN - - - -# So that we can recreate a full libtool script including additional -# tags, we accumulate the chunks of code to send to AC_CONFIG_COMMANDS -# in macros and then make a single call at the end using the `libtool' -# label. - - -# _LT_CONFIG_LIBTOOL_INIT([INIT-COMMANDS]) -# ---------------------------------------- -# Register INIT-COMMANDS to be passed to AC_CONFIG_COMMANDS later. -m4_define([_LT_CONFIG_LIBTOOL_INIT], -[m4_ifval([$1], - [m4_append([_LT_OUTPUT_LIBTOOL_INIT], - [$1 -])])]) - -# Initialize. -m4_define([_LT_OUTPUT_LIBTOOL_INIT]) - - -# _LT_CONFIG_LIBTOOL([COMMANDS]) -# ------------------------------ -# Register COMMANDS to be passed to AC_CONFIG_COMMANDS later. -m4_define([_LT_CONFIG_LIBTOOL], -[m4_ifval([$1], - [m4_append([_LT_OUTPUT_LIBTOOL_COMMANDS], - [$1 -])])]) - -# Initialize. -m4_define([_LT_OUTPUT_LIBTOOL_COMMANDS]) - - -# _LT_CONFIG_SAVE_COMMANDS([COMMANDS], [INIT_COMMANDS]) -# ----------------------------------------------------- -m4_defun([_LT_CONFIG_SAVE_COMMANDS], -[_LT_CONFIG_LIBTOOL([$1]) -_LT_CONFIG_LIBTOOL_INIT([$2]) -]) - - -# _LT_FORMAT_COMMENT([COMMENT]) -# ----------------------------- -# Add leading comment marks to the start of each line, and a trailing -# full-stop to the whole comment if one is not present already. -m4_define([_LT_FORMAT_COMMENT], -[m4_ifval([$1], [ -m4_bpatsubst([m4_bpatsubst([$1], [^ *], [# ])], - [['`$\]], [\\\&])]m4_bmatch([$1], [[!?.]$], [], [.]) -)]) - - - - - -# _LT_DECL([CONFIGNAME], VARNAME, VALUE, [DESCRIPTION], [IS-TAGGED?]) -# ------------------------------------------------------------------- -# CONFIGNAME is the name given to the value in the libtool script. -# VARNAME is the (base) name used in the configure script. -# VALUE may be 0, 1 or 2 for a computed quote escaped value based on -# VARNAME. Any other value will be used directly. -m4_define([_LT_DECL], -[lt_if_append_uniq([lt_decl_varnames], [$2], [, ], - [lt_dict_add_subkey([lt_decl_dict], [$2], [libtool_name], - [m4_ifval([$1], [$1], [$2])]) - lt_dict_add_subkey([lt_decl_dict], [$2], [value], [$3]) - m4_ifval([$4], - [lt_dict_add_subkey([lt_decl_dict], [$2], [description], [$4])]) - lt_dict_add_subkey([lt_decl_dict], [$2], - [tagged?], [m4_ifval([$5], [yes], [no])])]) -]) - - -# _LT_TAGDECL([CONFIGNAME], VARNAME, VALUE, [DESCRIPTION]) -# -------------------------------------------------------- -m4_define([_LT_TAGDECL], [_LT_DECL([$1], [$2], [$3], [$4], [yes])]) - - -# lt_decl_tag_varnames([SEPARATOR], [VARNAME1...]) -# ------------------------------------------------ -m4_define([lt_decl_tag_varnames], -[_lt_decl_filter([tagged?], [yes], $@)]) - - -# _lt_decl_filter(SUBKEY, VALUE, [SEPARATOR], [VARNAME1..]) -# --------------------------------------------------------- -m4_define([_lt_decl_filter], -[m4_case([$#], - [0], [m4_fatal([$0: too few arguments: $#])], - [1], [m4_fatal([$0: too few arguments: $#: $1])], - [2], [lt_dict_filter([lt_decl_dict], [$1], [$2], [], lt_decl_varnames)], - [3], [lt_dict_filter([lt_decl_dict], [$1], [$2], [$3], lt_decl_varnames)], - [lt_dict_filter([lt_decl_dict], $@)])[]dnl -]) - - -# lt_decl_quote_varnames([SEPARATOR], [VARNAME1...]) -# -------------------------------------------------- -m4_define([lt_decl_quote_varnames], -[_lt_decl_filter([value], [1], $@)]) - - -# lt_decl_dquote_varnames([SEPARATOR], [VARNAME1...]) -# --------------------------------------------------- -m4_define([lt_decl_dquote_varnames], -[_lt_decl_filter([value], [2], $@)]) - - -# lt_decl_varnames_tagged([SEPARATOR], [VARNAME1...]) -# --------------------------------------------------- -m4_define([lt_decl_varnames_tagged], -[m4_assert([$# <= 2])dnl -_$0(m4_quote(m4_default([$1], [[, ]])), - m4_ifval([$2], [[$2]], [m4_dquote(lt_decl_tag_varnames)]), - m4_split(m4_normalize(m4_quote(_LT_TAGS)), [ ]))]) -m4_define([_lt_decl_varnames_tagged], -[m4_ifval([$3], [lt_combine([$1], [$2], [_], $3)])]) - - -# lt_decl_all_varnames([SEPARATOR], [VARNAME1...]) -# ------------------------------------------------ -m4_define([lt_decl_all_varnames], -[_$0(m4_quote(m4_default([$1], [[, ]])), - m4_if([$2], [], - m4_quote(lt_decl_varnames), - m4_quote(m4_shift($@))))[]dnl -]) -m4_define([_lt_decl_all_varnames], -[lt_join($@, lt_decl_varnames_tagged([$1], - lt_decl_tag_varnames([[, ]], m4_shift($@))))dnl -]) - - -# _LT_CONFIG_STATUS_DECLARE([VARNAME]) -# ------------------------------------ -# Quote a variable value, and forward it to `config.status' so that its -# declaration there will have the same value as in `configure'. VARNAME -# must have a single quote delimited value for this to work. -m4_define([_LT_CONFIG_STATUS_DECLARE], -[$1='`$ECHO "$][$1" | $SED "$delay_single_quote_subst"`']) - - -# _LT_CONFIG_STATUS_DECLARATIONS -# ------------------------------ -# We delimit libtool config variables with single quotes, so when -# we write them to config.status, we have to be sure to quote all -# embedded single quotes properly. In configure, this macro expands -# each variable declared with _LT_DECL (and _LT_TAGDECL) into: -# -# ='`$ECHO "$" | $SED "$delay_single_quote_subst"`' -m4_defun([_LT_CONFIG_STATUS_DECLARATIONS], -[m4_foreach([_lt_var], m4_quote(lt_decl_all_varnames), - [m4_n([_LT_CONFIG_STATUS_DECLARE(_lt_var)])])]) - - -# _LT_LIBTOOL_TAGS -# ---------------- -# Output comment and list of tags supported by the script -m4_defun([_LT_LIBTOOL_TAGS], -[_LT_FORMAT_COMMENT([The names of the tagged configurations supported by this script])dnl -available_tags="_LT_TAGS"dnl -]) - - -# _LT_LIBTOOL_DECLARE(VARNAME, [TAG]) -# ----------------------------------- -# Extract the dictionary values for VARNAME (optionally with TAG) and -# expand to a commented shell variable setting: -# -# # Some comment about what VAR is for. -# visible_name=$lt_internal_name -m4_define([_LT_LIBTOOL_DECLARE], -[_LT_FORMAT_COMMENT(m4_quote(lt_dict_fetch([lt_decl_dict], [$1], - [description])))[]dnl -m4_pushdef([_libtool_name], - m4_quote(lt_dict_fetch([lt_decl_dict], [$1], [libtool_name])))[]dnl -m4_case(m4_quote(lt_dict_fetch([lt_decl_dict], [$1], [value])), - [0], [_libtool_name=[$]$1], - [1], [_libtool_name=$lt_[]$1], - [2], [_libtool_name=$lt_[]$1], - [_libtool_name=lt_dict_fetch([lt_decl_dict], [$1], [value])])[]dnl -m4_ifval([$2], [_$2])[]m4_popdef([_libtool_name])[]dnl -]) - - -# _LT_LIBTOOL_CONFIG_VARS -# ----------------------- -# Produce commented declarations of non-tagged libtool config variables -# suitable for insertion in the LIBTOOL CONFIG section of the `libtool' -# script. Tagged libtool config variables (even for the LIBTOOL CONFIG -# section) are produced by _LT_LIBTOOL_TAG_VARS. -m4_defun([_LT_LIBTOOL_CONFIG_VARS], -[m4_foreach([_lt_var], - m4_quote(_lt_decl_filter([tagged?], [no], [], lt_decl_varnames)), - [m4_n([_LT_LIBTOOL_DECLARE(_lt_var)])])]) - - -# _LT_LIBTOOL_TAG_VARS(TAG) -# ------------------------- -m4_define([_LT_LIBTOOL_TAG_VARS], -[m4_foreach([_lt_var], m4_quote(lt_decl_tag_varnames), - [m4_n([_LT_LIBTOOL_DECLARE(_lt_var, [$1])])])]) - - -# _LT_TAGVAR(VARNAME, [TAGNAME]) -# ------------------------------ -m4_define([_LT_TAGVAR], [m4_ifval([$2], [$1_$2], [$1])]) - - -# _LT_CONFIG_COMMANDS -# ------------------- -# Send accumulated output to $CONFIG_STATUS. Thanks to the lists of -# variables for single and double quote escaping we saved from calls -# to _LT_DECL, we can put quote escaped variables declarations -# into `config.status', and then the shell code to quote escape them in -# for loops in `config.status'. Finally, any additional code accumulated -# from calls to _LT_CONFIG_LIBTOOL_INIT is expanded. -m4_defun([_LT_CONFIG_COMMANDS], -[AC_PROVIDE_IFELSE([LT_OUTPUT], - dnl If the libtool generation code has been placed in $CONFIG_LT, - dnl instead of duplicating it all over again into config.status, - dnl then we will have config.status run $CONFIG_LT later, so it - dnl needs to know what name is stored there: - [AC_CONFIG_COMMANDS([libtool], - [$SHELL $CONFIG_LT || AS_EXIT(1)], [CONFIG_LT='$CONFIG_LT'])], - dnl If the libtool generation code is destined for config.status, - dnl expand the accumulated commands and init code now: - [AC_CONFIG_COMMANDS([libtool], - [_LT_OUTPUT_LIBTOOL_COMMANDS], [_LT_OUTPUT_LIBTOOL_COMMANDS_INIT])]) -])#_LT_CONFIG_COMMANDS - - -# Initialize. -m4_define([_LT_OUTPUT_LIBTOOL_COMMANDS_INIT], -[ - -# The HP-UX ksh and POSIX shell print the target directory to stdout -# if CDPATH is set. -(unset CDPATH) >/dev/null 2>&1 && unset CDPATH - -sed_quote_subst='$sed_quote_subst' -double_quote_subst='$double_quote_subst' -delay_variable_subst='$delay_variable_subst' -_LT_CONFIG_STATUS_DECLARATIONS -LTCC='$LTCC' -LTCFLAGS='$LTCFLAGS' -compiler='$compiler_DEFAULT' - -# A function that is used when there is no print builtin or printf. -func_fallback_echo () -{ - eval 'cat <<_LTECHO_EOF -\$[]1 -_LTECHO_EOF' -} - -# Quote evaled strings. -for var in lt_decl_all_varnames([[ \ -]], lt_decl_quote_varnames); do - case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in - *[[\\\\\\\`\\"\\\$]]*) - eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED \\"\\\$sed_quote_subst\\"\\\`\\\\\\"" - ;; - *) - eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" - ;; - esac -done - -# Double-quote double-evaled strings. -for var in lt_decl_all_varnames([[ \ -]], lt_decl_dquote_varnames); do - case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in - *[[\\\\\\\`\\"\\\$]]*) - eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED -e \\"\\\$double_quote_subst\\" -e \\"\\\$sed_quote_subst\\" -e \\"\\\$delay_variable_subst\\"\\\`\\\\\\"" - ;; - *) - eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" - ;; - esac -done - -_LT_OUTPUT_LIBTOOL_INIT -]) - -# _LT_GENERATED_FILE_INIT(FILE, [COMMENT]) -# ------------------------------------ -# Generate a child script FILE with all initialization necessary to -# reuse the environment learned by the parent script, and make the -# file executable. If COMMENT is supplied, it is inserted after the -# `#!' sequence but before initialization text begins. After this -# macro, additional text can be appended to FILE to form the body of -# the child script. The macro ends with non-zero status if the -# file could not be fully written (such as if the disk is full). -m4_ifdef([AS_INIT_GENERATED], -[m4_defun([_LT_GENERATED_FILE_INIT],[AS_INIT_GENERATED($@)])], -[m4_defun([_LT_GENERATED_FILE_INIT], -[m4_require([AS_PREPARE])]dnl -[m4_pushdef([AS_MESSAGE_LOG_FD])]dnl -[lt_write_fail=0 -cat >$1 <<_ASEOF || lt_write_fail=1 -#! $SHELL -# Generated by $as_me. -$2 -SHELL=\${CONFIG_SHELL-$SHELL} -export SHELL -_ASEOF -cat >>$1 <<\_ASEOF || lt_write_fail=1 -AS_SHELL_SANITIZE -_AS_PREPARE -exec AS_MESSAGE_FD>&1 -_ASEOF -test $lt_write_fail = 0 && chmod +x $1[]dnl -m4_popdef([AS_MESSAGE_LOG_FD])])])# _LT_GENERATED_FILE_INIT - -# LT_OUTPUT -# --------- -# This macro allows early generation of the libtool script (before -# AC_OUTPUT is called), incase it is used in configure for compilation -# tests. -AC_DEFUN([LT_OUTPUT], -[: ${CONFIG_LT=./config.lt} -AC_MSG_NOTICE([creating $CONFIG_LT]) -_LT_GENERATED_FILE_INIT(["$CONFIG_LT"], -[# Run this file to recreate a libtool stub with the current configuration.]) - -cat >>"$CONFIG_LT" <<\_LTEOF -lt_cl_silent=false -exec AS_MESSAGE_LOG_FD>>config.log -{ - echo - AS_BOX([Running $as_me.]) -} >&AS_MESSAGE_LOG_FD - -lt_cl_help="\ -\`$as_me' creates a local libtool stub from the current configuration, -for use in further configure time tests before the real libtool is -generated. - -Usage: $[0] [[OPTIONS]] - - -h, --help print this help, then exit - -V, --version print version number, then exit - -q, --quiet do not print progress messages - -d, --debug don't remove temporary files - -Report bugs to ." - -lt_cl_version="\ -m4_ifset([AC_PACKAGE_NAME], [AC_PACKAGE_NAME ])config.lt[]dnl -m4_ifset([AC_PACKAGE_VERSION], [ AC_PACKAGE_VERSION]) -configured by $[0], generated by m4_PACKAGE_STRING. - -Copyright (C) 2010 Free Software Foundation, Inc. -This config.lt script is free software; the Free Software Foundation -gives unlimited permision to copy, distribute and modify it." - -while test $[#] != 0 -do - case $[1] in - --version | --v* | -V ) - echo "$lt_cl_version"; exit 0 ;; - --help | --h* | -h ) - echo "$lt_cl_help"; exit 0 ;; - --debug | --d* | -d ) - debug=: ;; - --quiet | --q* | --silent | --s* | -q ) - lt_cl_silent=: ;; - - -*) AC_MSG_ERROR([unrecognized option: $[1] -Try \`$[0] --help' for more information.]) ;; - - *) AC_MSG_ERROR([unrecognized argument: $[1] -Try \`$[0] --help' for more information.]) ;; - esac - shift -done - -if $lt_cl_silent; then - exec AS_MESSAGE_FD>/dev/null -fi -_LTEOF - -cat >>"$CONFIG_LT" <<_LTEOF -_LT_OUTPUT_LIBTOOL_COMMANDS_INIT -_LTEOF - -cat >>"$CONFIG_LT" <<\_LTEOF -AC_MSG_NOTICE([creating $ofile]) -_LT_OUTPUT_LIBTOOL_COMMANDS -AS_EXIT(0) -_LTEOF -chmod +x "$CONFIG_LT" - -# configure is writing to config.log, but config.lt does its own redirection, -# appending to config.log, which fails on DOS, as config.log is still kept -# open by configure. Here we exec the FD to /dev/null, effectively closing -# config.log, so it can be properly (re)opened and appended to by config.lt. -lt_cl_success=: -test "$silent" = yes && - lt_config_lt_args="$lt_config_lt_args --quiet" -exec AS_MESSAGE_LOG_FD>/dev/null -$SHELL "$CONFIG_LT" $lt_config_lt_args || lt_cl_success=false -exec AS_MESSAGE_LOG_FD>>config.log -$lt_cl_success || AS_EXIT(1) -])# LT_OUTPUT - - -# _LT_CONFIG(TAG) -# --------------- -# If TAG is the built-in tag, create an initial libtool script with a -# default configuration from the untagged config vars. Otherwise add code -# to config.status for appending the configuration named by TAG from the -# matching tagged config vars. -m4_defun([_LT_CONFIG], -[m4_require([_LT_FILEUTILS_DEFAULTS])dnl -_LT_CONFIG_SAVE_COMMANDS([ - m4_define([_LT_TAG], m4_if([$1], [], [C], [$1]))dnl - m4_if(_LT_TAG, [C], [ - # See if we are running on zsh, and set the options which allow our - # commands through without removal of \ escapes. - if test -n "${ZSH_VERSION+set}" ; then - setopt NO_GLOB_SUBST - fi - - cfgfile="${ofile}T" - trap "$RM \"$cfgfile\"; exit 1" 1 2 15 - $RM "$cfgfile" - - cat <<_LT_EOF >> "$cfgfile" -#! $SHELL - -# `$ECHO "$ofile" | sed 's%^.*/%%'` - Provide generalized library-building support services. -# Generated automatically by $as_me ($PACKAGE$TIMESTAMP) $VERSION -# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: -# NOTE: Changes made to this file will be lost: look at ltmain.sh. -# -_LT_COPYING -_LT_LIBTOOL_TAGS - -# ### BEGIN LIBTOOL CONFIG -_LT_LIBTOOL_CONFIG_VARS -_LT_LIBTOOL_TAG_VARS -# ### END LIBTOOL CONFIG - -_LT_EOF - - case $host_os in - aix3*) - cat <<\_LT_EOF >> "$cfgfile" -# AIX sometimes has problems with the GCC collect2 program. For some -# reason, if we set the COLLECT_NAMES environment variable, the problems -# vanish in a puff of smoke. -if test "X${COLLECT_NAMES+set}" != Xset; then - COLLECT_NAMES= - export COLLECT_NAMES -fi -_LT_EOF - ;; - esac - - _LT_PROG_LTMAIN - - # We use sed instead of cat because bash on DJGPP gets confused if - # if finds mixed CR/LF and LF-only lines. Since sed operates in - # text mode, it properly converts lines to CR/LF. This bash problem - # is reportedly fixed, but why not run on old versions too? - sed '$q' "$ltmain" >> "$cfgfile" \ - || (rm -f "$cfgfile"; exit 1) - - _LT_PROG_REPLACE_SHELLFNS - - mv -f "$cfgfile" "$ofile" || - (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile") - chmod +x "$ofile" -], -[cat <<_LT_EOF >> "$ofile" - -dnl Unfortunately we have to use $1 here, since _LT_TAG is not expanded -dnl in a comment (ie after a #). -# ### BEGIN LIBTOOL TAG CONFIG: $1 -_LT_LIBTOOL_TAG_VARS(_LT_TAG) -# ### END LIBTOOL TAG CONFIG: $1 -_LT_EOF -])dnl /m4_if -], -[m4_if([$1], [], [ - PACKAGE='$PACKAGE' - VERSION='$VERSION' - TIMESTAMP='$TIMESTAMP' - RM='$RM' - ofile='$ofile'], []) -])dnl /_LT_CONFIG_SAVE_COMMANDS -])# _LT_CONFIG - - -# LT_SUPPORTED_TAG(TAG) -# --------------------- -# Trace this macro to discover what tags are supported by the libtool -# --tag option, using: -# autoconf --trace 'LT_SUPPORTED_TAG:$1' -AC_DEFUN([LT_SUPPORTED_TAG], []) - - -# C support is built-in for now -m4_define([_LT_LANG_C_enabled], []) -m4_define([_LT_TAGS], []) - - -# LT_LANG(LANG) -# ------------- -# Enable libtool support for the given language if not already enabled. -AC_DEFUN([LT_LANG], -[AC_BEFORE([$0], [LT_OUTPUT])dnl -m4_case([$1], - [C], [_LT_LANG(C)], - [C++], [_LT_LANG(CXX)], - [Java], [_LT_LANG(GCJ)], - [Fortran 77], [_LT_LANG(F77)], - [Fortran], [_LT_LANG(FC)], - [Windows Resource], [_LT_LANG(RC)], - [m4_ifdef([_LT_LANG_]$1[_CONFIG], - [_LT_LANG($1)], - [m4_fatal([$0: unsupported language: "$1"])])])dnl -])# LT_LANG - - -# _LT_LANG(LANGNAME) -# ------------------ -m4_defun([_LT_LANG], -[m4_ifdef([_LT_LANG_]$1[_enabled], [], - [LT_SUPPORTED_TAG([$1])dnl - m4_append([_LT_TAGS], [$1 ])dnl - m4_define([_LT_LANG_]$1[_enabled], [])dnl - _LT_LANG_$1_CONFIG($1)])dnl -])# _LT_LANG - - -# _LT_LANG_DEFAULT_CONFIG -# ----------------------- -m4_defun([_LT_LANG_DEFAULT_CONFIG], -[AC_PROVIDE_IFELSE([AC_PROG_CXX], - [LT_LANG(CXX)], - [m4_define([AC_PROG_CXX], defn([AC_PROG_CXX])[LT_LANG(CXX)])]) - -AC_PROVIDE_IFELSE([AC_PROG_F77], - [LT_LANG(F77)], - [m4_define([AC_PROG_F77], defn([AC_PROG_F77])[LT_LANG(F77)])]) - -AC_PROVIDE_IFELSE([AC_PROG_FC], - [LT_LANG(FC)], - [m4_define([AC_PROG_FC], defn([AC_PROG_FC])[LT_LANG(FC)])]) - -dnl The call to [A][M_PROG_GCJ] is quoted like that to stop aclocal -dnl pulling things in needlessly. -AC_PROVIDE_IFELSE([AC_PROG_GCJ], - [LT_LANG(GCJ)], - [AC_PROVIDE_IFELSE([A][M_PROG_GCJ], - [LT_LANG(GCJ)], - [AC_PROVIDE_IFELSE([LT_PROG_GCJ], - [LT_LANG(GCJ)], - [m4_ifdef([AC_PROG_GCJ], - [m4_define([AC_PROG_GCJ], defn([AC_PROG_GCJ])[LT_LANG(GCJ)])]) - m4_ifdef([A][M_PROG_GCJ], - [m4_define([A][M_PROG_GCJ], defn([A][M_PROG_GCJ])[LT_LANG(GCJ)])]) - m4_ifdef([LT_PROG_GCJ], - [m4_define([LT_PROG_GCJ], defn([LT_PROG_GCJ])[LT_LANG(GCJ)])])])])]) - -AC_PROVIDE_IFELSE([LT_PROG_RC], - [LT_LANG(RC)], - [m4_define([LT_PROG_RC], defn([LT_PROG_RC])[LT_LANG(RC)])]) -])# _LT_LANG_DEFAULT_CONFIG - -# Obsolete macros: -AU_DEFUN([AC_LIBTOOL_CXX], [LT_LANG(C++)]) -AU_DEFUN([AC_LIBTOOL_F77], [LT_LANG(Fortran 77)]) -AU_DEFUN([AC_LIBTOOL_FC], [LT_LANG(Fortran)]) -AU_DEFUN([AC_LIBTOOL_GCJ], [LT_LANG(Java)]) -AU_DEFUN([AC_LIBTOOL_RC], [LT_LANG(Windows Resource)]) -dnl aclocal-1.4 backwards compatibility: -dnl AC_DEFUN([AC_LIBTOOL_CXX], []) -dnl AC_DEFUN([AC_LIBTOOL_F77], []) -dnl AC_DEFUN([AC_LIBTOOL_FC], []) -dnl AC_DEFUN([AC_LIBTOOL_GCJ], []) -dnl AC_DEFUN([AC_LIBTOOL_RC], []) - - -# _LT_TAG_COMPILER -# ---------------- -m4_defun([_LT_TAG_COMPILER], -[AC_REQUIRE([AC_PROG_CC])dnl - -_LT_DECL([LTCC], [CC], [1], [A C compiler])dnl -_LT_DECL([LTCFLAGS], [CFLAGS], [1], [LTCC compiler flags])dnl -_LT_TAGDECL([CC], [compiler], [1], [A language specific compiler])dnl -_LT_TAGDECL([with_gcc], [GCC], [0], [Is the compiler the GNU compiler?])dnl - -# If no C compiler was specified, use CC. -LTCC=${LTCC-"$CC"} - -# If no C compiler flags were specified, use CFLAGS. -LTCFLAGS=${LTCFLAGS-"$CFLAGS"} - -# Allow CC to be a program name with arguments. -compiler=$CC -])# _LT_TAG_COMPILER - - -# _LT_COMPILER_BOILERPLATE -# ------------------------ -# Check for compiler boilerplate output or warnings with -# the simple compiler test code. -m4_defun([_LT_COMPILER_BOILERPLATE], -[m4_require([_LT_DECL_SED])dnl -ac_outfile=conftest.$ac_objext -echo "$lt_simple_compile_test_code" >conftest.$ac_ext -eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err -_lt_compiler_boilerplate=`cat conftest.err` -$RM conftest* -])# _LT_COMPILER_BOILERPLATE - - -# _LT_LINKER_BOILERPLATE -# ---------------------- -# Check for linker boilerplate output or warnings with -# the simple link test code. -m4_defun([_LT_LINKER_BOILERPLATE], -[m4_require([_LT_DECL_SED])dnl -ac_outfile=conftest.$ac_objext -echo "$lt_simple_link_test_code" >conftest.$ac_ext -eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err -_lt_linker_boilerplate=`cat conftest.err` -$RM -r conftest* -])# _LT_LINKER_BOILERPLATE - -# _LT_REQUIRED_DARWIN_CHECKS -# ------------------------- -m4_defun_once([_LT_REQUIRED_DARWIN_CHECKS],[ - case $host_os in - rhapsody* | darwin*) - AC_CHECK_TOOL([DSYMUTIL], [dsymutil], [:]) - AC_CHECK_TOOL([NMEDIT], [nmedit], [:]) - AC_CHECK_TOOL([LIPO], [lipo], [:]) - AC_CHECK_TOOL([OTOOL], [otool], [:]) - AC_CHECK_TOOL([OTOOL64], [otool64], [:]) - _LT_DECL([], [DSYMUTIL], [1], - [Tool to manipulate archived DWARF debug symbol files on Mac OS X]) - _LT_DECL([], [NMEDIT], [1], - [Tool to change global to local symbols on Mac OS X]) - _LT_DECL([], [LIPO], [1], - [Tool to manipulate fat objects and archives on Mac OS X]) - _LT_DECL([], [OTOOL], [1], - [ldd/readelf like tool for Mach-O binaries on Mac OS X]) - _LT_DECL([], [OTOOL64], [1], - [ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4]) - - AC_CACHE_CHECK([for -single_module linker flag],[lt_cv_apple_cc_single_mod], - [lt_cv_apple_cc_single_mod=no - if test -z "${LT_MULTI_MODULE}"; then - # By default we will add the -single_module flag. You can override - # by either setting the environment variable LT_MULTI_MODULE - # non-empty at configure time, or by adding -multi_module to the - # link flags. - rm -rf libconftest.dylib* - echo "int foo(void){return 1;}" > conftest.c - echo "$LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ --dynamiclib -Wl,-single_module conftest.c" >&AS_MESSAGE_LOG_FD - $LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ - -dynamiclib -Wl,-single_module conftest.c 2>conftest.err - _lt_result=$? - if test -f libconftest.dylib && test ! -s conftest.err && test $_lt_result = 0; then - lt_cv_apple_cc_single_mod=yes - else - cat conftest.err >&AS_MESSAGE_LOG_FD - fi - rm -rf libconftest.dylib* - rm -f conftest.* - fi]) - AC_CACHE_CHECK([for -exported_symbols_list linker flag], - [lt_cv_ld_exported_symbols_list], - [lt_cv_ld_exported_symbols_list=no - save_LDFLAGS=$LDFLAGS - echo "_main" > conftest.sym - LDFLAGS="$LDFLAGS -Wl,-exported_symbols_list,conftest.sym" - AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])], - [lt_cv_ld_exported_symbols_list=yes], - [lt_cv_ld_exported_symbols_list=no]) - LDFLAGS="$save_LDFLAGS" - ]) - AC_CACHE_CHECK([for -force_load linker flag],[lt_cv_ld_force_load], - [lt_cv_ld_force_load=no - cat > conftest.c << _LT_EOF -int forced_loaded() { return 2;} -_LT_EOF - echo "$LTCC $LTCFLAGS -c -o conftest.o conftest.c" >&AS_MESSAGE_LOG_FD - $LTCC $LTCFLAGS -c -o conftest.o conftest.c 2>&AS_MESSAGE_LOG_FD - echo "$AR cru libconftest.a conftest.o" >&AS_MESSAGE_LOG_FD - $AR cru libconftest.a conftest.o 2>&AS_MESSAGE_LOG_FD - echo "$RANLIB libconftest.a" >&AS_MESSAGE_LOG_FD - $RANLIB libconftest.a 2>&AS_MESSAGE_LOG_FD - cat > conftest.c << _LT_EOF -int main() { return 0;} -_LT_EOF - echo "$LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a" >&AS_MESSAGE_LOG_FD - $LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a 2>conftest.err - _lt_result=$? - if test -f conftest && test ! -s conftest.err && test $_lt_result = 0 && $GREP forced_load conftest 2>&1 >/dev/null; then - lt_cv_ld_force_load=yes - else - cat conftest.err >&AS_MESSAGE_LOG_FD - fi - rm -f conftest.err libconftest.a conftest conftest.c - rm -rf conftest.dSYM - ]) - case $host_os in - rhapsody* | darwin1.[[012]]) - _lt_dar_allow_undefined='${wl}-undefined ${wl}suppress' ;; - darwin1.*) - _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; - darwin*) # darwin 5.x on - # if running on 10.5 or later, the deployment target defaults - # to the OS version, if on x86, and 10.4, the deployment - # target defaults to 10.4. Don't you love it? - case ${MACOSX_DEPLOYMENT_TARGET-10.0},$host in - 10.0,*86*-darwin8*|10.0,*-darwin[[91]]*) - _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; - 10.[[012]]*) - _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; - 10.*) - _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; - esac - ;; - esac - if test "$lt_cv_apple_cc_single_mod" = "yes"; then - _lt_dar_single_mod='$single_module' - fi - if test "$lt_cv_ld_exported_symbols_list" = "yes"; then - _lt_dar_export_syms=' ${wl}-exported_symbols_list,$output_objdir/${libname}-symbols.expsym' - else - _lt_dar_export_syms='~$NMEDIT -s $output_objdir/${libname}-symbols.expsym ${lib}' - fi - if test "$DSYMUTIL" != ":" && test "$lt_cv_ld_force_load" = "no"; then - _lt_dsymutil='~$DSYMUTIL $lib || :' - else - _lt_dsymutil= - fi - ;; - esac -]) - - -# _LT_DARWIN_LINKER_FEATURES -# -------------------------- -# Checks for linker and compiler features on darwin -m4_defun([_LT_DARWIN_LINKER_FEATURES], -[ - m4_require([_LT_REQUIRED_DARWIN_CHECKS]) - _LT_TAGVAR(archive_cmds_need_lc, $1)=no - _LT_TAGVAR(hardcode_direct, $1)=no - _LT_TAGVAR(hardcode_automatic, $1)=yes - _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported - if test "$lt_cv_ld_force_load" = "yes"; then - _LT_TAGVAR(whole_archive_flag_spec, $1)='`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience ${wl}-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`' - else - _LT_TAGVAR(whole_archive_flag_spec, $1)='' - fi - _LT_TAGVAR(link_all_deplibs, $1)=yes - _LT_TAGVAR(allow_undefined_flag, $1)="$_lt_dar_allow_undefined" - case $cc_basename in - ifort*) _lt_dar_can_shared=yes ;; - *) _lt_dar_can_shared=$GCC ;; - esac - if test "$_lt_dar_can_shared" = "yes"; then - output_verbose_link_cmd=func_echo_all - _LT_TAGVAR(archive_cmds, $1)="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}" - _LT_TAGVAR(module_cmds, $1)="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}" - _LT_TAGVAR(archive_expsym_cmds, $1)="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}" - _LT_TAGVAR(module_expsym_cmds, $1)="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}" - m4_if([$1], [CXX], -[ if test "$lt_cv_apple_cc_single_mod" != "yes"; then - _LT_TAGVAR(archive_cmds, $1)="\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dsymutil}" - _LT_TAGVAR(archive_expsym_cmds, $1)="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dar_export_syms}${_lt_dsymutil}" - fi -],[]) - else - _LT_TAGVAR(ld_shlibs, $1)=no - fi -]) - -# _LT_SYS_MODULE_PATH_AIX([TAGNAME]) -# ---------------------------------- -# Links a minimal program and checks the executable -# for the system default hardcoded library path. In most cases, -# this is /usr/lib:/lib, but when the MPI compilers are used -# the location of the communication and MPI libs are included too. -# If we don't find anything, use the default library path according -# to the aix ld manual. -# Store the results from the different compilers for each TAGNAME. -# Allow to override them for all tags through lt_cv_aix_libpath. -m4_defun([_LT_SYS_MODULE_PATH_AIX], -[m4_require([_LT_DECL_SED])dnl -if test "${lt_cv_aix_libpath+set}" = set; then - aix_libpath=$lt_cv_aix_libpath -else - AC_CACHE_VAL([_LT_TAGVAR([lt_cv_aix_libpath_], [$1])], - [AC_LINK_IFELSE([AC_LANG_PROGRAM],[ - lt_aix_libpath_sed='[ - /Import File Strings/,/^$/ { - /^0/ { - s/^0 *\([^ ]*\) *$/\1/ - p - } - }]' - _LT_TAGVAR([lt_cv_aix_libpath_], [$1])=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` - # Check for a 64-bit object if we didn't find anything. - if test -z "$_LT_TAGVAR([lt_cv_aix_libpath_], [$1])"; then - _LT_TAGVAR([lt_cv_aix_libpath_], [$1])=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` - fi],[]) - if test -z "$_LT_TAGVAR([lt_cv_aix_libpath_], [$1])"; then - _LT_TAGVAR([lt_cv_aix_libpath_], [$1])="/usr/lib:/lib" - fi - ]) - aix_libpath=$_LT_TAGVAR([lt_cv_aix_libpath_], [$1]) -fi -])# _LT_SYS_MODULE_PATH_AIX - - -# _LT_SHELL_INIT(ARG) -# ------------------- -m4_define([_LT_SHELL_INIT], -[m4_divert_text([M4SH-INIT], [$1 -])])# _LT_SHELL_INIT - - - -# _LT_PROG_ECHO_BACKSLASH -# ----------------------- -# Find how we can fake an echo command that does not interpret backslash. -# In particular, with Autoconf 2.60 or later we add some code to the start -# of the generated configure script which will find a shell with a builtin -# printf (which we can use as an echo command). -m4_defun([_LT_PROG_ECHO_BACKSLASH], -[ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' -ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO -ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO - -AC_MSG_CHECKING([how to print strings]) -# Test print first, because it will be a builtin if present. -if test "X`( print -r -- -n ) 2>/dev/null`" = X-n && \ - test "X`print -r -- $ECHO 2>/dev/null`" = "X$ECHO"; then - ECHO='print -r --' -elif test "X`printf %s $ECHO 2>/dev/null`" = "X$ECHO"; then - ECHO='printf %s\n' -else - # Use this function as a fallback that always works. - func_fallback_echo () - { - eval 'cat <<_LTECHO_EOF -$[]1 -_LTECHO_EOF' - } - ECHO='func_fallback_echo' -fi - -# func_echo_all arg... -# Invoke $ECHO with all args, space-separated. -func_echo_all () -{ - $ECHO "$*" -} - -case "$ECHO" in - printf*) AC_MSG_RESULT([printf]) ;; - print*) AC_MSG_RESULT([print -r]) ;; - *) AC_MSG_RESULT([cat]) ;; -esac - -m4_ifdef([_AS_DETECT_SUGGESTED], -[_AS_DETECT_SUGGESTED([ - test -n "${ZSH_VERSION+set}${BASH_VERSION+set}" || ( - ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' - ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO - ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO - PATH=/empty FPATH=/empty; export PATH FPATH - test "X`printf %s $ECHO`" = "X$ECHO" \ - || test "X`print -r -- $ECHO`" = "X$ECHO" )])]) - -_LT_DECL([], [SHELL], [1], [Shell to use when invoking shell scripts]) -_LT_DECL([], [ECHO], [1], [An echo program that protects backslashes]) -])# _LT_PROG_ECHO_BACKSLASH - - -# _LT_WITH_SYSROOT -# ---------------- -AC_DEFUN([_LT_WITH_SYSROOT], -[AC_MSG_CHECKING([for sysroot]) -AC_ARG_WITH([sysroot], -[ --with-sysroot[=DIR] Search for dependent libraries within DIR - (or the compiler's sysroot if not specified).], -[], [with_sysroot=no]) - -dnl lt_sysroot will always be passed unquoted. We quote it here -dnl in case the user passed a directory name. -lt_sysroot= -case ${with_sysroot} in #( - yes) - if test "$GCC" = yes; then - lt_sysroot=`$CC --print-sysroot 2>/dev/null` - fi - ;; #( - /*) - lt_sysroot=`echo "$with_sysroot" | sed -e "$sed_quote_subst"` - ;; #( - no|'') - ;; #( - *) - AC_MSG_RESULT([${with_sysroot}]) - AC_MSG_ERROR([The sysroot must be an absolute path.]) - ;; -esac - - AC_MSG_RESULT([${lt_sysroot:-no}]) -_LT_DECL([], [lt_sysroot], [0], [The root where to search for ]dnl -[dependent libraries, and in which our libraries should be installed.])]) - -# _LT_ENABLE_LOCK -# --------------- -m4_defun([_LT_ENABLE_LOCK], -[AC_ARG_ENABLE([libtool-lock], - [AS_HELP_STRING([--disable-libtool-lock], - [avoid locking (might break parallel builds)])]) -test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes - -# Some flags need to be propagated to the compiler or linker for good -# libtool support. -case $host in -ia64-*-hpux*) - # Find out which ABI we are using. - echo 'int i;' > conftest.$ac_ext - if AC_TRY_EVAL(ac_compile); then - case `/usr/bin/file conftest.$ac_objext` in - *ELF-32*) - HPUX_IA64_MODE="32" - ;; - *ELF-64*) - HPUX_IA64_MODE="64" - ;; - esac - fi - rm -rf conftest* - ;; -*-*-irix6*) - # Find out which ABI we are using. - echo '[#]line '$LINENO' "configure"' > conftest.$ac_ext - if AC_TRY_EVAL(ac_compile); then - if test "$lt_cv_prog_gnu_ld" = yes; then - case `/usr/bin/file conftest.$ac_objext` in - *32-bit*) - LD="${LD-ld} -melf32bsmip" - ;; - *N32*) - LD="${LD-ld} -melf32bmipn32" - ;; - *64-bit*) - LD="${LD-ld} -melf64bmip" - ;; - esac - else - case `/usr/bin/file conftest.$ac_objext` in - *32-bit*) - LD="${LD-ld} -32" - ;; - *N32*) - LD="${LD-ld} -n32" - ;; - *64-bit*) - LD="${LD-ld} -64" - ;; - esac - fi - fi - rm -rf conftest* - ;; - -x86_64-*kfreebsd*-gnu|x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*| \ -s390*-*linux*|s390*-*tpf*|sparc*-*linux*) - # Find out which ABI we are using. - echo 'int i;' > conftest.$ac_ext - if AC_TRY_EVAL(ac_compile); then - case `/usr/bin/file conftest.o` in - *32-bit*) - case $host in - x86_64-*kfreebsd*-gnu) - LD="${LD-ld} -m elf_i386_fbsd" - ;; - x86_64-*linux*) - LD="${LD-ld} -m elf_i386" - ;; - ppc64-*linux*|powerpc64-*linux*) - LD="${LD-ld} -m elf32ppclinux" - ;; - s390x-*linux*) - LD="${LD-ld} -m elf_s390" - ;; - sparc64-*linux*) - LD="${LD-ld} -m elf32_sparc" - ;; - esac - ;; - *64-bit*) - case $host in - x86_64-*kfreebsd*-gnu) - LD="${LD-ld} -m elf_x86_64_fbsd" - ;; - x86_64-*linux*) - LD="${LD-ld} -m elf_x86_64" - ;; - ppc*-*linux*|powerpc*-*linux*) - LD="${LD-ld} -m elf64ppc" - ;; - s390*-*linux*|s390*-*tpf*) - LD="${LD-ld} -m elf64_s390" - ;; - sparc*-*linux*) - LD="${LD-ld} -m elf64_sparc" - ;; - esac - ;; - esac - fi - rm -rf conftest* - ;; - -*-*-sco3.2v5*) - # On SCO OpenServer 5, we need -belf to get full-featured binaries. - SAVE_CFLAGS="$CFLAGS" - CFLAGS="$CFLAGS -belf" - AC_CACHE_CHECK([whether the C compiler needs -belf], lt_cv_cc_needs_belf, - [AC_LANG_PUSH(C) - AC_LINK_IFELSE([AC_LANG_PROGRAM([[]],[[]])],[lt_cv_cc_needs_belf=yes],[lt_cv_cc_needs_belf=no]) - AC_LANG_POP]) - if test x"$lt_cv_cc_needs_belf" != x"yes"; then - # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf - CFLAGS="$SAVE_CFLAGS" - fi - ;; -sparc*-*solaris*) - # Find out which ABI we are using. - echo 'int i;' > conftest.$ac_ext - if AC_TRY_EVAL(ac_compile); then - case `/usr/bin/file conftest.o` in - *64-bit*) - case $lt_cv_prog_gnu_ld in - yes*) LD="${LD-ld} -m elf64_sparc" ;; - *) - if ${LD-ld} -64 -r -o conftest2.o conftest.o >/dev/null 2>&1; then - LD="${LD-ld} -64" - fi - ;; - esac - ;; - esac - fi - rm -rf conftest* - ;; -esac - -need_locks="$enable_libtool_lock" -])# _LT_ENABLE_LOCK - - -# _LT_PROG_AR -# ----------- -m4_defun([_LT_PROG_AR], -[AC_CHECK_TOOLS(AR, [ar], false) -: ${AR=ar} -: ${AR_FLAGS=cru} -_LT_DECL([], [AR], [1], [The archiver]) -_LT_DECL([], [AR_FLAGS], [1], [Flags to create an archive]) - -AC_CACHE_CHECK([for archiver @FILE support], [lt_cv_ar_at_file], - [lt_cv_ar_at_file=no - AC_COMPILE_IFELSE([AC_LANG_PROGRAM], - [echo conftest.$ac_objext > conftest.lst - lt_ar_try='$AR $AR_FLAGS libconftest.a @conftest.lst >&AS_MESSAGE_LOG_FD' - AC_TRY_EVAL([lt_ar_try]) - if test "$ac_status" -eq 0; then - # Ensure the archiver fails upon bogus file names. - rm -f conftest.$ac_objext libconftest.a - AC_TRY_EVAL([lt_ar_try]) - if test "$ac_status" -ne 0; then - lt_cv_ar_at_file=@ - fi - fi - rm -f conftest.* libconftest.a - ]) - ]) - -if test "x$lt_cv_ar_at_file" = xno; then - archiver_list_spec= -else - archiver_list_spec=$lt_cv_ar_at_file -fi -_LT_DECL([], [archiver_list_spec], [1], - [How to feed a file listing to the archiver]) -])# _LT_PROG_AR - - -# _LT_CMD_OLD_ARCHIVE -# ------------------- -m4_defun([_LT_CMD_OLD_ARCHIVE], -[_LT_PROG_AR - -AC_CHECK_TOOL(STRIP, strip, :) -test -z "$STRIP" && STRIP=: -_LT_DECL([], [STRIP], [1], [A symbol stripping program]) - -AC_CHECK_TOOL(RANLIB, ranlib, :) -test -z "$RANLIB" && RANLIB=: -_LT_DECL([], [RANLIB], [1], - [Commands used to install an old-style archive]) - -# Determine commands to create old-style static archives. -old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs' -old_postinstall_cmds='chmod 644 $oldlib' -old_postuninstall_cmds= - -if test -n "$RANLIB"; then - case $host_os in - openbsd*) - old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$oldlib" - ;; - *) - old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$oldlib" - ;; - esac - old_archive_cmds="$old_archive_cmds~\$RANLIB \$oldlib" -fi - -case $host_os in - darwin*) - lock_old_archive_extraction=yes ;; - *) - lock_old_archive_extraction=no ;; -esac -_LT_DECL([], [old_postinstall_cmds], [2]) -_LT_DECL([], [old_postuninstall_cmds], [2]) -_LT_TAGDECL([], [old_archive_cmds], [2], - [Commands used to build an old-style archive]) -_LT_DECL([], [lock_old_archive_extraction], [0], - [Whether to use a lock for old archive extraction]) -])# _LT_CMD_OLD_ARCHIVE - - -# _LT_COMPILER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS, -# [OUTPUT-FILE], [ACTION-SUCCESS], [ACTION-FAILURE]) -# ---------------------------------------------------------------- -# Check whether the given compiler option works -AC_DEFUN([_LT_COMPILER_OPTION], -[m4_require([_LT_FILEUTILS_DEFAULTS])dnl -m4_require([_LT_DECL_SED])dnl -AC_CACHE_CHECK([$1], [$2], - [$2=no - m4_if([$4], , [ac_outfile=conftest.$ac_objext], [ac_outfile=$4]) - echo "$lt_simple_compile_test_code" > conftest.$ac_ext - lt_compiler_flag="$3" - # Insert the option either (1) after the last *FLAGS variable, or - # (2) before a word containing "conftest.", or (3) at the end. - # Note that $ac_compile itself does not contain backslashes and begins - # with a dollar sign (not a hyphen), so the echo should work correctly. - # The option is referenced via a variable to avoid confusing sed. - lt_compile=`echo "$ac_compile" | $SED \ - -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ - -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \ - -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&AS_MESSAGE_LOG_FD) - (eval "$lt_compile" 2>conftest.err) - ac_status=$? - cat conftest.err >&AS_MESSAGE_LOG_FD - echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD - if (exit $ac_status) && test -s "$ac_outfile"; then - # The compiler can only warn and ignore the option if not recognized - # So say no if there are warnings other than the usual output. - $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp - $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 - if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then - $2=yes - fi - fi - $RM conftest* -]) - -if test x"[$]$2" = xyes; then - m4_if([$5], , :, [$5]) -else - m4_if([$6], , :, [$6]) -fi -])# _LT_COMPILER_OPTION - -# Old name: -AU_ALIAS([AC_LIBTOOL_COMPILER_OPTION], [_LT_COMPILER_OPTION]) -dnl aclocal-1.4 backwards compatibility: -dnl AC_DEFUN([AC_LIBTOOL_COMPILER_OPTION], []) - - -# _LT_LINKER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS, -# [ACTION-SUCCESS], [ACTION-FAILURE]) -# ---------------------------------------------------- -# Check whether the given linker option works -AC_DEFUN([_LT_LINKER_OPTION], -[m4_require([_LT_FILEUTILS_DEFAULTS])dnl -m4_require([_LT_DECL_SED])dnl -AC_CACHE_CHECK([$1], [$2], - [$2=no - save_LDFLAGS="$LDFLAGS" - LDFLAGS="$LDFLAGS $3" - echo "$lt_simple_link_test_code" > conftest.$ac_ext - if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then - # The linker can only warn and ignore the option if not recognized - # So say no if there are warnings - if test -s conftest.err; then - # Append any errors to the config.log. - cat conftest.err 1>&AS_MESSAGE_LOG_FD - $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp - $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 - if diff conftest.exp conftest.er2 >/dev/null; then - $2=yes - fi - else - $2=yes - fi - fi - $RM -r conftest* - LDFLAGS="$save_LDFLAGS" -]) - -if test x"[$]$2" = xyes; then - m4_if([$4], , :, [$4]) -else - m4_if([$5], , :, [$5]) -fi -])# _LT_LINKER_OPTION - -# Old name: -AU_ALIAS([AC_LIBTOOL_LINKER_OPTION], [_LT_LINKER_OPTION]) -dnl aclocal-1.4 backwards compatibility: -dnl AC_DEFUN([AC_LIBTOOL_LINKER_OPTION], []) - - -# LT_CMD_MAX_LEN -#--------------- -AC_DEFUN([LT_CMD_MAX_LEN], -[AC_REQUIRE([AC_CANONICAL_HOST])dnl -# find the maximum length of command line arguments -AC_MSG_CHECKING([the maximum length of command line arguments]) -AC_CACHE_VAL([lt_cv_sys_max_cmd_len], [dnl - i=0 - teststring="ABCD" - - case $build_os in - msdosdjgpp*) - # On DJGPP, this test can blow up pretty badly due to problems in libc - # (any single argument exceeding 2000 bytes causes a buffer overrun - # during glob expansion). Even if it were fixed, the result of this - # check would be larger than it should be. - lt_cv_sys_max_cmd_len=12288; # 12K is about right - ;; - - gnu*) - # Under GNU Hurd, this test is not required because there is - # no limit to the length of command line arguments. - # Libtool will interpret -1 as no limit whatsoever - lt_cv_sys_max_cmd_len=-1; - ;; - - cygwin* | mingw* | cegcc*) - # On Win9x/ME, this test blows up -- it succeeds, but takes - # about 5 minutes as the teststring grows exponentially. - # Worse, since 9x/ME are not pre-emptively multitasking, - # you end up with a "frozen" computer, even though with patience - # the test eventually succeeds (with a max line length of 256k). - # Instead, let's just punt: use the minimum linelength reported by - # all of the supported platforms: 8192 (on NT/2K/XP). - lt_cv_sys_max_cmd_len=8192; - ;; - - mint*) - # On MiNT this can take a long time and run out of memory. - lt_cv_sys_max_cmd_len=8192; - ;; - - amigaos*) - # On AmigaOS with pdksh, this test takes hours, literally. - # So we just punt and use a minimum line length of 8192. - lt_cv_sys_max_cmd_len=8192; - ;; - - netbsd* | freebsd* | openbsd* | darwin* | dragonfly*) - # This has been around since 386BSD, at least. Likely further. - if test -x /sbin/sysctl; then - lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax` - elif test -x /usr/sbin/sysctl; then - lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax` - else - lt_cv_sys_max_cmd_len=65536 # usable default for all BSDs - fi - # And add a safety zone - lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` - lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` - ;; - - interix*) - # We know the value 262144 and hardcode it with a safety zone (like BSD) - lt_cv_sys_max_cmd_len=196608 - ;; - - osf*) - # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure - # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not - # nice to cause kernel panics so lets avoid the loop below. - # First set a reasonable default. - lt_cv_sys_max_cmd_len=16384 - # - if test -x /sbin/sysconfig; then - case `/sbin/sysconfig -q proc exec_disable_arg_limit` in - *1*) lt_cv_sys_max_cmd_len=-1 ;; - esac - fi - ;; - sco3.2v5*) - lt_cv_sys_max_cmd_len=102400 - ;; - sysv5* | sco5v6* | sysv4.2uw2*) - kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null` - if test -n "$kargmax"; then - lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[[ ]]//'` - else - lt_cv_sys_max_cmd_len=32768 - fi - ;; - *) - lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null` - if test -n "$lt_cv_sys_max_cmd_len"; then - lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` - lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` - else - # Make teststring a little bigger before we do anything with it. - # a 1K string should be a reasonable start. - for i in 1 2 3 4 5 6 7 8 ; do - teststring=$teststring$teststring - done - SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}} - # If test is not a shell built-in, we'll probably end up computing a - # maximum length that is only half of the actual maximum length, but - # we can't tell. - while { test "X"`func_fallback_echo "$teststring$teststring" 2>/dev/null` \ - = "X$teststring$teststring"; } >/dev/null 2>&1 && - test $i != 17 # 1/2 MB should be enough - do - i=`expr $i + 1` - teststring=$teststring$teststring - done - # Only check the string length outside the loop. - lt_cv_sys_max_cmd_len=`expr "X$teststring" : ".*" 2>&1` - teststring= - # Add a significant safety factor because C++ compilers can tack on - # massive amounts of additional arguments before passing them to the - # linker. It appears as though 1/2 is a usable value. - lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2` - fi - ;; - esac -]) -if test -n $lt_cv_sys_max_cmd_len ; then - AC_MSG_RESULT($lt_cv_sys_max_cmd_len) -else - AC_MSG_RESULT(none) -fi -max_cmd_len=$lt_cv_sys_max_cmd_len -_LT_DECL([], [max_cmd_len], [0], - [What is the maximum length of a command?]) -])# LT_CMD_MAX_LEN - -# Old name: -AU_ALIAS([AC_LIBTOOL_SYS_MAX_CMD_LEN], [LT_CMD_MAX_LEN]) -dnl aclocal-1.4 backwards compatibility: -dnl AC_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN], []) - - -# _LT_HEADER_DLFCN -# ---------------- -m4_defun([_LT_HEADER_DLFCN], -[AC_CHECK_HEADERS([dlfcn.h], [], [], [AC_INCLUDES_DEFAULT])dnl -])# _LT_HEADER_DLFCN - - -# _LT_TRY_DLOPEN_SELF (ACTION-IF-TRUE, ACTION-IF-TRUE-W-USCORE, -# ACTION-IF-FALSE, ACTION-IF-CROSS-COMPILING) -# ---------------------------------------------------------------- -m4_defun([_LT_TRY_DLOPEN_SELF], -[m4_require([_LT_HEADER_DLFCN])dnl -if test "$cross_compiling" = yes; then : - [$4] -else - lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 - lt_status=$lt_dlunknown - cat > conftest.$ac_ext <<_LT_EOF -[#line $LINENO "configure" -#include "confdefs.h" - -#if HAVE_DLFCN_H -#include -#endif - -#include - -#ifdef RTLD_GLOBAL -# define LT_DLGLOBAL RTLD_GLOBAL -#else -# ifdef DL_GLOBAL -# define LT_DLGLOBAL DL_GLOBAL -# else -# define LT_DLGLOBAL 0 -# endif -#endif - -/* We may have to define LT_DLLAZY_OR_NOW in the command line if we - find out it does not work in some platform. */ -#ifndef LT_DLLAZY_OR_NOW -# ifdef RTLD_LAZY -# define LT_DLLAZY_OR_NOW RTLD_LAZY -# else -# ifdef DL_LAZY -# define LT_DLLAZY_OR_NOW DL_LAZY -# else -# ifdef RTLD_NOW -# define LT_DLLAZY_OR_NOW RTLD_NOW -# else -# ifdef DL_NOW -# define LT_DLLAZY_OR_NOW DL_NOW -# else -# define LT_DLLAZY_OR_NOW 0 -# endif -# endif -# endif -# endif -#endif - -/* When -fvisbility=hidden is used, assume the code has been annotated - correspondingly for the symbols needed. */ -#if defined(__GNUC__) && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) -int fnord () __attribute__((visibility("default"))); -#endif - -int fnord () { return 42; } -int main () -{ - void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); - int status = $lt_dlunknown; - - if (self) - { - if (dlsym (self,"fnord")) status = $lt_dlno_uscore; - else - { - if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; - else puts (dlerror ()); - } - /* dlclose (self); */ - } - else - puts (dlerror ()); - - return status; -}] -_LT_EOF - if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext} 2>/dev/null; then - (./conftest; exit; ) >&AS_MESSAGE_LOG_FD 2>/dev/null - lt_status=$? - case x$lt_status in - x$lt_dlno_uscore) $1 ;; - x$lt_dlneed_uscore) $2 ;; - x$lt_dlunknown|x*) $3 ;; - esac - else : - # compilation failed - $3 - fi -fi -rm -fr conftest* -])# _LT_TRY_DLOPEN_SELF - - -# LT_SYS_DLOPEN_SELF -# ------------------ -AC_DEFUN([LT_SYS_DLOPEN_SELF], -[m4_require([_LT_HEADER_DLFCN])dnl -if test "x$enable_dlopen" != xyes; then - enable_dlopen=unknown - enable_dlopen_self=unknown - enable_dlopen_self_static=unknown -else - lt_cv_dlopen=no - lt_cv_dlopen_libs= - - case $host_os in - beos*) - lt_cv_dlopen="load_add_on" - lt_cv_dlopen_libs= - lt_cv_dlopen_self=yes - ;; - - mingw* | pw32* | cegcc*) - lt_cv_dlopen="LoadLibrary" - lt_cv_dlopen_libs= - ;; - - cygwin*) - lt_cv_dlopen="dlopen" - lt_cv_dlopen_libs= - ;; - - darwin*) - # if libdl is installed we need to link against it - AC_CHECK_LIB([dl], [dlopen], - [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"],[ - lt_cv_dlopen="dyld" - lt_cv_dlopen_libs= - lt_cv_dlopen_self=yes - ]) - ;; - - *) - AC_CHECK_FUNC([shl_load], - [lt_cv_dlopen="shl_load"], - [AC_CHECK_LIB([dld], [shl_load], - [lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-ldld"], - [AC_CHECK_FUNC([dlopen], - [lt_cv_dlopen="dlopen"], - [AC_CHECK_LIB([dl], [dlopen], - [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"], - [AC_CHECK_LIB([svld], [dlopen], - [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld"], - [AC_CHECK_LIB([dld], [dld_link], - [lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-ldld"]) - ]) - ]) - ]) - ]) - ]) - ;; - esac - - if test "x$lt_cv_dlopen" != xno; then - enable_dlopen=yes - else - enable_dlopen=no - fi - - case $lt_cv_dlopen in - dlopen) - save_CPPFLAGS="$CPPFLAGS" - test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" - - save_LDFLAGS="$LDFLAGS" - wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\" - - save_LIBS="$LIBS" - LIBS="$lt_cv_dlopen_libs $LIBS" - - AC_CACHE_CHECK([whether a program can dlopen itself], - lt_cv_dlopen_self, [dnl - _LT_TRY_DLOPEN_SELF( - lt_cv_dlopen_self=yes, lt_cv_dlopen_self=yes, - lt_cv_dlopen_self=no, lt_cv_dlopen_self=cross) - ]) - - if test "x$lt_cv_dlopen_self" = xyes; then - wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\" - AC_CACHE_CHECK([whether a statically linked program can dlopen itself], - lt_cv_dlopen_self_static, [dnl - _LT_TRY_DLOPEN_SELF( - lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=yes, - lt_cv_dlopen_self_static=no, lt_cv_dlopen_self_static=cross) - ]) - fi - - CPPFLAGS="$save_CPPFLAGS" - LDFLAGS="$save_LDFLAGS" - LIBS="$save_LIBS" - ;; - esac - - case $lt_cv_dlopen_self in - yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;; - *) enable_dlopen_self=unknown ;; - esac - - case $lt_cv_dlopen_self_static in - yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;; - *) enable_dlopen_self_static=unknown ;; - esac -fi -_LT_DECL([dlopen_support], [enable_dlopen], [0], - [Whether dlopen is supported]) -_LT_DECL([dlopen_self], [enable_dlopen_self], [0], - [Whether dlopen of programs is supported]) -_LT_DECL([dlopen_self_static], [enable_dlopen_self_static], [0], - [Whether dlopen of statically linked programs is supported]) -])# LT_SYS_DLOPEN_SELF - -# Old name: -AU_ALIAS([AC_LIBTOOL_DLOPEN_SELF], [LT_SYS_DLOPEN_SELF]) -dnl aclocal-1.4 backwards compatibility: -dnl AC_DEFUN([AC_LIBTOOL_DLOPEN_SELF], []) - - -# _LT_COMPILER_C_O([TAGNAME]) -# --------------------------- -# Check to see if options -c and -o are simultaneously supported by compiler. -# This macro does not hard code the compiler like AC_PROG_CC_C_O. -m4_defun([_LT_COMPILER_C_O], -[m4_require([_LT_DECL_SED])dnl -m4_require([_LT_FILEUTILS_DEFAULTS])dnl -m4_require([_LT_TAG_COMPILER])dnl -AC_CACHE_CHECK([if $compiler supports -c -o file.$ac_objext], - [_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)], - [_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=no - $RM -r conftest 2>/dev/null - mkdir conftest - cd conftest - mkdir out - echo "$lt_simple_compile_test_code" > conftest.$ac_ext - - lt_compiler_flag="-o out/conftest2.$ac_objext" - # Insert the option either (1) after the last *FLAGS variable, or - # (2) before a word containing "conftest.", or (3) at the end. - # Note that $ac_compile itself does not contain backslashes and begins - # with a dollar sign (not a hyphen), so the echo should work correctly. - lt_compile=`echo "$ac_compile" | $SED \ - -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ - -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \ - -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&AS_MESSAGE_LOG_FD) - (eval "$lt_compile" 2>out/conftest.err) - ac_status=$? - cat out/conftest.err >&AS_MESSAGE_LOG_FD - echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD - if (exit $ac_status) && test -s out/conftest2.$ac_objext - then - # The compiler can only warn and ignore the option if not recognized - # So say no if there are warnings - $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp - $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 - if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then - _LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes - fi - fi - chmod u+w . 2>&AS_MESSAGE_LOG_FD - $RM conftest* - # SGI C++ compiler will create directory out/ii_files/ for - # template instantiation - test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files - $RM out/* && rmdir out - cd .. - $RM -r conftest - $RM conftest* -]) -_LT_TAGDECL([compiler_c_o], [lt_cv_prog_compiler_c_o], [1], - [Does compiler simultaneously support -c and -o options?]) -])# _LT_COMPILER_C_O - - -# _LT_COMPILER_FILE_LOCKS([TAGNAME]) -# ---------------------------------- -# Check to see if we can do hard links to lock some files if needed -m4_defun([_LT_COMPILER_FILE_LOCKS], -[m4_require([_LT_ENABLE_LOCK])dnl -m4_require([_LT_FILEUTILS_DEFAULTS])dnl -_LT_COMPILER_C_O([$1]) - -hard_links="nottested" -if test "$_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)" = no && test "$need_locks" != no; then - # do not overwrite the value of need_locks provided by the user - AC_MSG_CHECKING([if we can lock with hard links]) - hard_links=yes - $RM conftest* - ln conftest.a conftest.b 2>/dev/null && hard_links=no - touch conftest.a - ln conftest.a conftest.b 2>&5 || hard_links=no - ln conftest.a conftest.b 2>/dev/null && hard_links=no - AC_MSG_RESULT([$hard_links]) - if test "$hard_links" = no; then - AC_MSG_WARN([`$CC' does not support `-c -o', so `make -j' may be unsafe]) - need_locks=warn - fi -else - need_locks=no -fi -_LT_DECL([], [need_locks], [1], [Must we lock files when doing compilation?]) -])# _LT_COMPILER_FILE_LOCKS - - -# _LT_CHECK_OBJDIR -# ---------------- -m4_defun([_LT_CHECK_OBJDIR], -[AC_CACHE_CHECK([for objdir], [lt_cv_objdir], -[rm -f .libs 2>/dev/null -mkdir .libs 2>/dev/null -if test -d .libs; then - lt_cv_objdir=.libs -else - # MS-DOS does not allow filenames that begin with a dot. - lt_cv_objdir=_libs -fi -rmdir .libs 2>/dev/null]) -objdir=$lt_cv_objdir -_LT_DECL([], [objdir], [0], - [The name of the directory that contains temporary libtool files])dnl -m4_pattern_allow([LT_OBJDIR])dnl -AC_DEFINE_UNQUOTED(LT_OBJDIR, "$lt_cv_objdir/", - [Define to the sub-directory in which libtool stores uninstalled libraries.]) -])# _LT_CHECK_OBJDIR - - -# _LT_LINKER_HARDCODE_LIBPATH([TAGNAME]) -# -------------------------------------- -# Check hardcoding attributes. -m4_defun([_LT_LINKER_HARDCODE_LIBPATH], -[AC_MSG_CHECKING([how to hardcode library paths into programs]) -_LT_TAGVAR(hardcode_action, $1)= -if test -n "$_LT_TAGVAR(hardcode_libdir_flag_spec, $1)" || - test -n "$_LT_TAGVAR(runpath_var, $1)" || - test "X$_LT_TAGVAR(hardcode_automatic, $1)" = "Xyes" ; then - - # We can hardcode non-existent directories. - if test "$_LT_TAGVAR(hardcode_direct, $1)" != no && - # If the only mechanism to avoid hardcoding is shlibpath_var, we - # have to relink, otherwise we might link with an installed library - # when we should be linking with a yet-to-be-installed one - ## test "$_LT_TAGVAR(hardcode_shlibpath_var, $1)" != no && - test "$_LT_TAGVAR(hardcode_minus_L, $1)" != no; then - # Linking always hardcodes the temporary library directory. - _LT_TAGVAR(hardcode_action, $1)=relink - else - # We can link without hardcoding, and we can hardcode nonexisting dirs. - _LT_TAGVAR(hardcode_action, $1)=immediate - fi -else - # We cannot hardcode anything, or else we can only hardcode existing - # directories. - _LT_TAGVAR(hardcode_action, $1)=unsupported -fi -AC_MSG_RESULT([$_LT_TAGVAR(hardcode_action, $1)]) - -if test "$_LT_TAGVAR(hardcode_action, $1)" = relink || - test "$_LT_TAGVAR(inherit_rpath, $1)" = yes; then - # Fast installation is not supported - enable_fast_install=no -elif test "$shlibpath_overrides_runpath" = yes || - test "$enable_shared" = no; then - # Fast installation is not necessary - enable_fast_install=needless -fi -_LT_TAGDECL([], [hardcode_action], [0], - [How to hardcode a shared library path into an executable]) -])# _LT_LINKER_HARDCODE_LIBPATH - - -# _LT_CMD_STRIPLIB -# ---------------- -m4_defun([_LT_CMD_STRIPLIB], -[m4_require([_LT_DECL_EGREP]) -striplib= -old_striplib= -AC_MSG_CHECKING([whether stripping libraries is possible]) -if test -n "$STRIP" && $STRIP -V 2>&1 | $GREP "GNU strip" >/dev/null; then - test -z "$old_striplib" && old_striplib="$STRIP --strip-debug" - test -z "$striplib" && striplib="$STRIP --strip-unneeded" - AC_MSG_RESULT([yes]) -else -# FIXME - insert some real tests, host_os isn't really good enough - case $host_os in - darwin*) - if test -n "$STRIP" ; then - striplib="$STRIP -x" - old_striplib="$STRIP -S" - AC_MSG_RESULT([yes]) - else - AC_MSG_RESULT([no]) - fi - ;; - *) - AC_MSG_RESULT([no]) - ;; - esac -fi -_LT_DECL([], [old_striplib], [1], [Commands to strip libraries]) -_LT_DECL([], [striplib], [1]) -])# _LT_CMD_STRIPLIB - - -# _LT_SYS_DYNAMIC_LINKER([TAG]) -# ----------------------------- -# PORTME Fill in your ld.so characteristics -m4_defun([_LT_SYS_DYNAMIC_LINKER], -[AC_REQUIRE([AC_CANONICAL_HOST])dnl -m4_require([_LT_DECL_EGREP])dnl -m4_require([_LT_FILEUTILS_DEFAULTS])dnl -m4_require([_LT_DECL_OBJDUMP])dnl -m4_require([_LT_DECL_SED])dnl -m4_require([_LT_CHECK_SHELL_FEATURES])dnl -AC_MSG_CHECKING([dynamic linker characteristics]) -m4_if([$1], - [], [ -if test "$GCC" = yes; then - case $host_os in - darwin*) lt_awk_arg="/^libraries:/,/LR/" ;; - *) lt_awk_arg="/^libraries:/" ;; - esac - case $host_os in - mingw* | cegcc*) lt_sed_strip_eq="s,=\([[A-Za-z]]:\),\1,g" ;; - *) lt_sed_strip_eq="s,=/,/,g" ;; - esac - lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e "s/^libraries://" -e $lt_sed_strip_eq` - case $lt_search_path_spec in - *\;*) - # if the path contains ";" then we assume it to be the separator - # otherwise default to the standard path separator (i.e. ":") - it is - # assumed that no part of a normal pathname contains ";" but that should - # okay in the real world where ";" in dirpaths is itself problematic. - lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED 's/;/ /g'` - ;; - *) - lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED "s/$PATH_SEPARATOR/ /g"` - ;; - esac - # Ok, now we have the path, separated by spaces, we can step through it - # and add multilib dir if necessary. - lt_tmp_lt_search_path_spec= - lt_multi_os_dir=`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null` - for lt_sys_path in $lt_search_path_spec; do - if test -d "$lt_sys_path/$lt_multi_os_dir"; then - lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path/$lt_multi_os_dir" - else - test -d "$lt_sys_path" && \ - lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path" - fi - done - lt_search_path_spec=`$ECHO "$lt_tmp_lt_search_path_spec" | awk ' -BEGIN {RS=" "; FS="/|\n";} { - lt_foo=""; - lt_count=0; - for (lt_i = NF; lt_i > 0; lt_i--) { - if ($lt_i != "" && $lt_i != ".") { - if ($lt_i == "..") { - lt_count++; - } else { - if (lt_count == 0) { - lt_foo="/" $lt_i lt_foo; - } else { - lt_count--; - } - } - } - } - if (lt_foo != "") { lt_freq[[lt_foo]]++; } - if (lt_freq[[lt_foo]] == 1) { print lt_foo; } -}'` - # AWK program above erroneously prepends '/' to C:/dos/paths - # for these hosts. - case $host_os in - mingw* | cegcc*) lt_search_path_spec=`$ECHO "$lt_search_path_spec" |\ - $SED 's,/\([[A-Za-z]]:\),\1,g'` ;; - esac - sys_lib_search_path_spec=`$ECHO "$lt_search_path_spec" | $lt_NL2SP` -else - sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" -fi]) -library_names_spec= -libname_spec='lib$name' -soname_spec= -shrext_cmds=".so" -postinstall_cmds= -postuninstall_cmds= -finish_cmds= -finish_eval= -shlibpath_var= -shlibpath_overrides_runpath=unknown -version_type=none -dynamic_linker="$host_os ld.so" -sys_lib_dlsearch_path_spec="/lib /usr/lib" -need_lib_prefix=unknown -hardcode_into_libs=no - -# when you set need_version to no, make sure it does not cause -set_version -# flags to be left without arguments -need_version=unknown - -case $host_os in -aix3*) - version_type=linux - library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' - shlibpath_var=LIBPATH - - # AIX 3 has no versioning support, so we append a major version to the name. - soname_spec='${libname}${release}${shared_ext}$major' - ;; - -aix[[4-9]]*) - version_type=linux - need_lib_prefix=no - need_version=no - hardcode_into_libs=yes - if test "$host_cpu" = ia64; then - # AIX 5 supports IA64 - library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' - shlibpath_var=LD_LIBRARY_PATH - else - # With GCC up to 2.95.x, collect2 would create an import file - # for dependence libraries. The import file would start with - # the line `#! .'. This would cause the generated library to - # depend on `.', always an invalid library. This was fixed in - # development snapshots of GCC prior to 3.0. - case $host_os in - aix4 | aix4.[[01]] | aix4.[[01]].*) - if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' - echo ' yes ' - echo '#endif'; } | ${CC} -E - | $GREP yes > /dev/null; then - : - else - can_build_shared=no - fi - ;; - esac - # AIX (on Power*) has no versioning support, so currently we can not hardcode correct - # soname into executable. Probably we can add versioning support to - # collect2, so additional links can be useful in future. - if test "$aix_use_runtimelinking" = yes; then - # If using run time linking (on AIX 4.2 or later) use lib.so - # instead of lib.a to let people know that these are not - # typical AIX shared libraries. - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - else - # We preserve .a as extension for shared libraries through AIX4.2 - # and later when we are not doing run time linking. - library_names_spec='${libname}${release}.a $libname.a' - soname_spec='${libname}${release}${shared_ext}$major' - fi - shlibpath_var=LIBPATH - fi - ;; - -amigaos*) - case $host_cpu in - powerpc) - # Since July 2007 AmigaOS4 officially supports .so libraries. - # When compiling the executable, add -use-dynld -Lsobjs: to the compileline. - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - ;; - m68k) - library_names_spec='$libname.ixlibrary $libname.a' - # Create ${libname}_ixlibrary.a entries in /sys/libs. - finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all "$lib" | $SED '\''s%^.*/\([[^/]]*\)\.ixlibrary$%\1%'\''`; test $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' - ;; - esac - ;; - -beos*) - library_names_spec='${libname}${shared_ext}' - dynamic_linker="$host_os ld.so" - shlibpath_var=LIBRARY_PATH - ;; - -bsdi[[45]]*) - version_type=linux - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' - shlibpath_var=LD_LIBRARY_PATH - sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" - sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" - # the default ld.so.conf also contains /usr/contrib/lib and - # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow - # libtool to hard-code these into programs - ;; - -cygwin* | mingw* | pw32* | cegcc*) - version_type=windows - shrext_cmds=".dll" - need_version=no - need_lib_prefix=no - - case $GCC,$cc_basename in - yes,*) - # gcc - library_names_spec='$libname.dll.a' - # DLL is installed to $(libdir)/../bin by postinstall_cmds - postinstall_cmds='base_file=`basename \${file}`~ - dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ - dldir=$destdir/`dirname \$dlpath`~ - test -d \$dldir || mkdir -p \$dldir~ - $install_prog $dir/$dlname \$dldir/$dlname~ - chmod a+x \$dldir/$dlname~ - if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then - eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; - fi' - postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ - dlpath=$dir/\$dldll~ - $RM \$dlpath' - shlibpath_overrides_runpath=yes - - case $host_os in - cygwin*) - # Cygwin DLLs use 'cyg' prefix rather than 'lib' - soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' -m4_if([$1], [],[ - sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/lib/w32api"]) - ;; - mingw* | cegcc*) - # MinGW DLLs use traditional 'lib' prefix - soname_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' - ;; - pw32*) - # pw32 DLLs use 'pw' prefix rather than 'lib' - library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' - ;; - esac - dynamic_linker='Win32 ld.exe' - ;; - - *,cl*) - # Native MSVC - libname_spec='$name' - soname_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' - library_names_spec='${libname}.dll.lib' - - case $build_os in - mingw*) - sys_lib_search_path_spec= - lt_save_ifs=$IFS - IFS=';' - for lt_path in $LIB - do - IFS=$lt_save_ifs - # Let DOS variable expansion print the short 8.3 style file name. - lt_path=`cd "$lt_path" 2>/dev/null && cmd //C "for %i in (".") do @echo %~si"` - sys_lib_search_path_spec="$sys_lib_search_path_spec $lt_path" - done - IFS=$lt_save_ifs - # Convert to MSYS style. - sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | sed -e 's|\\\\|/|g' -e 's| \\([[a-zA-Z]]\\):| /\\1|g' -e 's|^ ||'` - ;; - cygwin*) - # Convert to unix form, then to dos form, then back to unix form - # but this time dos style (no spaces!) so that the unix form looks - # like /cygdrive/c/PROGRA~1:/cygdr... - sys_lib_search_path_spec=`cygpath --path --unix "$LIB"` - sys_lib_search_path_spec=`cygpath --path --dos "$sys_lib_search_path_spec" 2>/dev/null` - sys_lib_search_path_spec=`cygpath --path --unix "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` - ;; - *) - sys_lib_search_path_spec="$LIB" - if $ECHO "$sys_lib_search_path_spec" | [$GREP ';[c-zC-Z]:/' >/dev/null]; then - # It is most probably a Windows format PATH. - sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` - else - sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` - fi - # FIXME: find the short name or the path components, as spaces are - # common. (e.g. "Program Files" -> "PROGRA~1") - ;; - esac - - # DLL is installed to $(libdir)/../bin by postinstall_cmds - postinstall_cmds='base_file=`basename \${file}`~ - dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ - dldir=$destdir/`dirname \$dlpath`~ - test -d \$dldir || mkdir -p \$dldir~ - $install_prog $dir/$dlname \$dldir/$dlname' - postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ - dlpath=$dir/\$dldll~ - $RM \$dlpath' - shlibpath_overrides_runpath=yes - dynamic_linker='Win32 link.exe' - ;; - - *) - # Assume MSVC wrapper - library_names_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext} $libname.lib' - dynamic_linker='Win32 ld.exe' - ;; - esac - # FIXME: first we should search . and the directory the executable is in - shlibpath_var=PATH - ;; - -darwin* | rhapsody*) - dynamic_linker="$host_os dyld" - version_type=darwin - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${major}$shared_ext ${libname}$shared_ext' - soname_spec='${libname}${release}${major}$shared_ext' - shlibpath_overrides_runpath=yes - shlibpath_var=DYLD_LIBRARY_PATH - shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' -m4_if([$1], [],[ - sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/local/lib"]) - sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' - ;; - -dgux*) - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - ;; - -freebsd1*) - dynamic_linker=no - ;; - -freebsd* | dragonfly*) - # DragonFly does not have aout. When/if they implement a new - # versioning mechanism, adjust this. - if test -x /usr/bin/objformat; then - objformat=`/usr/bin/objformat` - else - case $host_os in - freebsd[[123]]*) objformat=aout ;; - *) objformat=elf ;; - esac - fi - version_type=freebsd-$objformat - case $version_type in - freebsd-elf*) - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' - need_version=no - need_lib_prefix=no - ;; - freebsd-*) - library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' - need_version=yes - ;; - esac - shlibpath_var=LD_LIBRARY_PATH - case $host_os in - freebsd2*) - shlibpath_overrides_runpath=yes - ;; - freebsd3.[[01]]* | freebsdelf3.[[01]]*) - shlibpath_overrides_runpath=yes - hardcode_into_libs=yes - ;; - freebsd3.[[2-9]]* | freebsdelf3.[[2-9]]* | \ - freebsd4.[[0-5]] | freebsdelf4.[[0-5]] | freebsd4.1.1 | freebsdelf4.1.1) - shlibpath_overrides_runpath=no - hardcode_into_libs=yes - ;; - *) # from 4.6 on, and DragonFly - shlibpath_overrides_runpath=yes - hardcode_into_libs=yes - ;; - esac - ;; - -gnu*) - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - hardcode_into_libs=yes - ;; - -haiku*) - version_type=linux - need_lib_prefix=no - need_version=no - dynamic_linker="$host_os runtime_loader" - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LIBRARY_PATH - shlibpath_overrides_runpath=yes - sys_lib_dlsearch_path_spec='/boot/home/config/lib /boot/common/lib /boot/system/lib' - hardcode_into_libs=yes - ;; - -hpux9* | hpux10* | hpux11*) - # Give a soname corresponding to the major version so that dld.sl refuses to - # link against other versions. - version_type=sunos - need_lib_prefix=no - need_version=no - case $host_cpu in - ia64*) - shrext_cmds='.so' - hardcode_into_libs=yes - dynamic_linker="$host_os dld.so" - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - if test "X$HPUX_IA64_MODE" = X32; then - sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" - else - sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" - fi - sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec - ;; - hppa*64*) - shrext_cmds='.sl' - hardcode_into_libs=yes - dynamic_linker="$host_os dld.sl" - shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH - shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" - sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec - ;; - *) - shrext_cmds='.sl' - dynamic_linker="$host_os dld.sl" - shlibpath_var=SHLIB_PATH - shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - ;; - esac - # HP-UX runs *really* slowly unless shared libraries are mode 555, ... - postinstall_cmds='chmod 555 $lib' - # or fails outright, so override atomically: - install_override_mode=555 - ;; - -interix[[3-9]]*) - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=no - hardcode_into_libs=yes - ;; - -irix5* | irix6* | nonstopux*) - case $host_os in - nonstopux*) version_type=nonstopux ;; - *) - if test "$lt_cv_prog_gnu_ld" = yes; then - version_type=linux - else - version_type=irix - fi ;; - esac - need_lib_prefix=no - need_version=no - soname_spec='${libname}${release}${shared_ext}$major' - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' - case $host_os in - irix5* | nonstopux*) - libsuff= shlibsuff= - ;; - *) - case $LD in # libtool.m4 will add one of these switches to LD - *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") - libsuff= shlibsuff= libmagic=32-bit;; - *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") - libsuff=32 shlibsuff=N32 libmagic=N32;; - *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") - libsuff=64 shlibsuff=64 libmagic=64-bit;; - *) libsuff= shlibsuff= libmagic=never-match;; - esac - ;; - esac - shlibpath_var=LD_LIBRARY${shlibsuff}_PATH - shlibpath_overrides_runpath=no - sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" - sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" - hardcode_into_libs=yes - ;; - -# No shared lib support for Linux oldld, aout, or coff. -linux*oldld* | linux*aout* | linux*coff*) - dynamic_linker=no - ;; - -# This must be Linux ELF. -linux* | k*bsd*-gnu | kopensolaris*-gnu) - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=no - - # Some binutils ld are patched to set DT_RUNPATH - AC_CACHE_VAL([lt_cv_shlibpath_overrides_runpath], - [lt_cv_shlibpath_overrides_runpath=no - save_LDFLAGS=$LDFLAGS - save_libdir=$libdir - eval "libdir=/foo; wl=\"$_LT_TAGVAR(lt_prog_compiler_wl, $1)\"; \ - LDFLAGS=\"\$LDFLAGS $_LT_TAGVAR(hardcode_libdir_flag_spec, $1)\"" - AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])], - [AS_IF([ ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep "RUNPATH.*$libdir" >/dev/null], - [lt_cv_shlibpath_overrides_runpath=yes])]) - LDFLAGS=$save_LDFLAGS - libdir=$save_libdir - ]) - shlibpath_overrides_runpath=$lt_cv_shlibpath_overrides_runpath - - # This implies no fast_install, which is unacceptable. - # Some rework will be needed to allow for fast_install - # before this can be enabled. - hardcode_into_libs=yes - - # Append ld.so.conf contents to the search path - if test -f /etc/ld.so.conf; then - lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \[$]2)); skip = 1; } { if (!skip) print \[$]0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/"//g;/^$/d' | tr '\n' ' '` - sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" - fi - - # We used to test for /lib/ld.so.1 and disable shared libraries on - # powerpc, because MkLinux only supported shared libraries with the - # GNU dynamic linker. Since this was broken with cross compilers, - # most powerpc-linux boxes support dynamic linking these days and - # people can always --disable-shared, the test was removed, and we - # assume the GNU/Linux dynamic linker is in use. - dynamic_linker='GNU/Linux ld.so' - ;; - -netbsd*) - version_type=sunos - need_lib_prefix=no - need_version=no - if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' - finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' - dynamic_linker='NetBSD (a.out) ld.so' - else - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - dynamic_linker='NetBSD ld.elf_so' - fi - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes - hardcode_into_libs=yes - ;; - -newsos6) - version_type=linux - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes - ;; - -*nto* | *qnx*) - version_type=qnx - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=no - hardcode_into_libs=yes - dynamic_linker='ldqnx.so' - ;; - -openbsd*) - version_type=sunos - sys_lib_dlsearch_path_spec="/usr/lib" - need_lib_prefix=no - # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. - case $host_os in - openbsd3.3 | openbsd3.3.*) need_version=yes ;; - *) need_version=no ;; - esac - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' - finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' - shlibpath_var=LD_LIBRARY_PATH - if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then - case $host_os in - openbsd2.[[89]] | openbsd2.[[89]].*) - shlibpath_overrides_runpath=no - ;; - *) - shlibpath_overrides_runpath=yes - ;; - esac - else - shlibpath_overrides_runpath=yes - fi - ;; - -os2*) - libname_spec='$name' - shrext_cmds=".dll" - need_lib_prefix=no - library_names_spec='$libname${shared_ext} $libname.a' - dynamic_linker='OS/2 ld.exe' - shlibpath_var=LIBPATH - ;; - -osf3* | osf4* | osf5*) - version_type=osf - need_lib_prefix=no - need_version=no - soname_spec='${libname}${release}${shared_ext}$major' - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - shlibpath_var=LD_LIBRARY_PATH - sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" - sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" - ;; - -rdos*) - dynamic_linker=no - ;; - -solaris*) - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes - hardcode_into_libs=yes - # ldd complains unless libraries are executable - postinstall_cmds='chmod +x $lib' - ;; - -sunos4*) - version_type=sunos - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' - finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes - if test "$with_gnu_ld" = yes; then - need_lib_prefix=no - fi - need_version=yes - ;; - -sysv4 | sysv4.3*) - version_type=linux - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - case $host_vendor in - sni) - shlibpath_overrides_runpath=no - need_lib_prefix=no - runpath_var=LD_RUN_PATH - ;; - siemens) - need_lib_prefix=no - ;; - motorola) - need_lib_prefix=no - need_version=no - shlibpath_overrides_runpath=no - sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' - ;; - esac - ;; - -sysv4*MP*) - if test -d /usr/nec ;then - version_type=linux - library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' - soname_spec='$libname${shared_ext}.$major' - shlibpath_var=LD_LIBRARY_PATH - fi - ;; - -sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) - version_type=freebsd-elf - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes - hardcode_into_libs=yes - if test "$with_gnu_ld" = yes; then - sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' - else - sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' - case $host_os in - sco3.2v5*) - sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" - ;; - esac - fi - sys_lib_dlsearch_path_spec='/usr/lib' - ;; - -tpf*) - # TPF is a cross-target only. Preferred cross-host = GNU/Linux. - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=no - hardcode_into_libs=yes - ;; - -uts4*) - version_type=linux - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - ;; - -*) - dynamic_linker=no - ;; -esac -AC_MSG_RESULT([$dynamic_linker]) -test "$dynamic_linker" = no && can_build_shared=no - -variables_saved_for_relink="PATH $shlibpath_var $runpath_var" -if test "$GCC" = yes; then - variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" -fi - -if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then - sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" -fi -if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then - sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec" -fi - -_LT_DECL([], [variables_saved_for_relink], [1], - [Variables whose values should be saved in libtool wrapper scripts and - restored at link time]) -_LT_DECL([], [need_lib_prefix], [0], - [Do we need the "lib" prefix for modules?]) -_LT_DECL([], [need_version], [0], [Do we need a version for libraries?]) -_LT_DECL([], [version_type], [0], [Library versioning type]) -_LT_DECL([], [runpath_var], [0], [Shared library runtime path variable]) -_LT_DECL([], [shlibpath_var], [0],[Shared library path variable]) -_LT_DECL([], [shlibpath_overrides_runpath], [0], - [Is shlibpath searched before the hard-coded library search path?]) -_LT_DECL([], [libname_spec], [1], [Format of library name prefix]) -_LT_DECL([], [library_names_spec], [1], - [[List of archive names. First name is the real one, the rest are links. - The last name is the one that the linker finds with -lNAME]]) -_LT_DECL([], [soname_spec], [1], - [[The coded name of the library, if different from the real name]]) -_LT_DECL([], [install_override_mode], [1], - [Permission mode override for installation of shared libraries]) -_LT_DECL([], [postinstall_cmds], [2], - [Command to use after installation of a shared archive]) -_LT_DECL([], [postuninstall_cmds], [2], - [Command to use after uninstallation of a shared archive]) -_LT_DECL([], [finish_cmds], [2], - [Commands used to finish a libtool library installation in a directory]) -_LT_DECL([], [finish_eval], [1], - [[As "finish_cmds", except a single script fragment to be evaled but - not shown]]) -_LT_DECL([], [hardcode_into_libs], [0], - [Whether we should hardcode library paths into libraries]) -_LT_DECL([], [sys_lib_search_path_spec], [2], - [Compile-time system search path for libraries]) -_LT_DECL([], [sys_lib_dlsearch_path_spec], [2], - [Run-time system search path for libraries]) -])# _LT_SYS_DYNAMIC_LINKER - - -# _LT_PATH_TOOL_PREFIX(TOOL) -# -------------------------- -# find a file program which can recognize shared library -AC_DEFUN([_LT_PATH_TOOL_PREFIX], -[m4_require([_LT_DECL_EGREP])dnl -AC_MSG_CHECKING([for $1]) -AC_CACHE_VAL(lt_cv_path_MAGIC_CMD, -[case $MAGIC_CMD in -[[\\/*] | ?:[\\/]*]) - lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. - ;; -*) - lt_save_MAGIC_CMD="$MAGIC_CMD" - lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR -dnl $ac_dummy forces splitting on constant user-supplied paths. -dnl POSIX.2 word splitting is done only on the output of word expansions, -dnl not every word. This closes a longstanding sh security hole. - ac_dummy="m4_if([$2], , $PATH, [$2])" - for ac_dir in $ac_dummy; do - IFS="$lt_save_ifs" - test -z "$ac_dir" && ac_dir=. - if test -f $ac_dir/$1; then - lt_cv_path_MAGIC_CMD="$ac_dir/$1" - if test -n "$file_magic_test_file"; then - case $deplibs_check_method in - "file_magic "*) - file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` - MAGIC_CMD="$lt_cv_path_MAGIC_CMD" - if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | - $EGREP "$file_magic_regex" > /dev/null; then - : - else - cat <<_LT_EOF 1>&2 - -*** Warning: the command libtool uses to detect shared libraries, -*** $file_magic_cmd, produces output that libtool cannot recognize. -*** The result is that libtool may fail to recognize shared libraries -*** as such. This will affect the creation of libtool libraries that -*** depend on shared libraries, but programs linked with such libtool -*** libraries will work regardless of this problem. Nevertheless, you -*** may want to report the problem to your system manager and/or to -*** bug-libtool@gnu.org - -_LT_EOF - fi ;; - esac - fi - break - fi - done - IFS="$lt_save_ifs" - MAGIC_CMD="$lt_save_MAGIC_CMD" - ;; -esac]) -MAGIC_CMD="$lt_cv_path_MAGIC_CMD" -if test -n "$MAGIC_CMD"; then - AC_MSG_RESULT($MAGIC_CMD) -else - AC_MSG_RESULT(no) -fi -_LT_DECL([], [MAGIC_CMD], [0], - [Used to examine libraries when file_magic_cmd begins with "file"])dnl -])# _LT_PATH_TOOL_PREFIX - -# Old name: -AU_ALIAS([AC_PATH_TOOL_PREFIX], [_LT_PATH_TOOL_PREFIX]) -dnl aclocal-1.4 backwards compatibility: -dnl AC_DEFUN([AC_PATH_TOOL_PREFIX], []) - - -# _LT_PATH_MAGIC -# -------------- -# find a file program which can recognize a shared library -m4_defun([_LT_PATH_MAGIC], -[_LT_PATH_TOOL_PREFIX(${ac_tool_prefix}file, /usr/bin$PATH_SEPARATOR$PATH) -if test -z "$lt_cv_path_MAGIC_CMD"; then - if test -n "$ac_tool_prefix"; then - _LT_PATH_TOOL_PREFIX(file, /usr/bin$PATH_SEPARATOR$PATH) - else - MAGIC_CMD=: - fi -fi -])# _LT_PATH_MAGIC - - -# LT_PATH_LD -# ---------- -# find the pathname to the GNU or non-GNU linker -AC_DEFUN([LT_PATH_LD], -[AC_REQUIRE([AC_PROG_CC])dnl -AC_REQUIRE([AC_CANONICAL_HOST])dnl -AC_REQUIRE([AC_CANONICAL_BUILD])dnl -m4_require([_LT_DECL_SED])dnl -m4_require([_LT_DECL_EGREP])dnl -m4_require([_LT_PROG_ECHO_BACKSLASH])dnl - -AC_ARG_WITH([gnu-ld], - [AS_HELP_STRING([--with-gnu-ld], - [assume the C compiler uses GNU ld @<:@default=no@:>@])], - [test "$withval" = no || with_gnu_ld=yes], - [with_gnu_ld=no])dnl - -ac_prog=ld -if test "$GCC" = yes; then - # Check if gcc -print-prog-name=ld gives a path. - AC_MSG_CHECKING([for ld used by $CC]) - case $host in - *-*-mingw*) - # gcc leaves a trailing carriage return which upsets mingw - ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; - *) - ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; - esac - case $ac_prog in - # Accept absolute paths. - [[\\/]]* | ?:[[\\/]]*) - re_direlt='/[[^/]][[^/]]*/\.\./' - # Canonicalize the pathname of ld - ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'` - while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do - ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"` - done - test -z "$LD" && LD="$ac_prog" - ;; - "") - # If it fails, then pretend we aren't using GCC. - ac_prog=ld - ;; - *) - # If it is relative, then search for the first ld in PATH. - with_gnu_ld=unknown - ;; - esac -elif test "$with_gnu_ld" = yes; then - AC_MSG_CHECKING([for GNU ld]) -else - AC_MSG_CHECKING([for non-GNU ld]) -fi -AC_CACHE_VAL(lt_cv_path_LD, -[if test -z "$LD"; then - lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR - for ac_dir in $PATH; do - IFS="$lt_save_ifs" - test -z "$ac_dir" && ac_dir=. - if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then - lt_cv_path_LD="$ac_dir/$ac_prog" - # Check to see if the program is GNU ld. I'd rather use --version, - # but apparently some variants of GNU ld only accept -v. - # Break only if it was the GNU/non-GNU ld that we prefer. - case `"$lt_cv_path_LD" -v 2>&1 &1 /dev/null 2>&1; then - lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' - lt_cv_file_magic_cmd='func_win32_libid' - else - # Keep this pattern in sync with the one in func_win32_libid. - lt_cv_deplibs_check_method='file_magic file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)' - lt_cv_file_magic_cmd='$OBJDUMP -f' - fi - ;; - -cegcc*) - # use the weaker test based on 'objdump'. See mingw*. - lt_cv_deplibs_check_method='file_magic file format pe-arm-.*little(.*architecture: arm)?' - lt_cv_file_magic_cmd='$OBJDUMP -f' - ;; - -darwin* | rhapsody*) - lt_cv_deplibs_check_method=pass_all - ;; - -freebsd* | dragonfly*) - if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then - case $host_cpu in - i*86 ) - # Not sure whether the presence of OpenBSD here was a mistake. - # Let's accept both of them until this is cleared up. - lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[[3-9]]86 (compact )?demand paged shared library' - lt_cv_file_magic_cmd=/usr/bin/file - lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*` - ;; - esac - else - lt_cv_deplibs_check_method=pass_all - fi - ;; - -gnu*) - lt_cv_deplibs_check_method=pass_all - ;; - -haiku*) - lt_cv_deplibs_check_method=pass_all - ;; - -hpux10.20* | hpux11*) - lt_cv_file_magic_cmd=/usr/bin/file - case $host_cpu in - ia64*) - lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|ELF-[[0-9]][[0-9]]) shared object file - IA64' - lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so - ;; - hppa*64*) - [lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF[ -][0-9][0-9])(-bit)?( [LM]SB)? shared object( file)?[, -]* PA-RISC [0-9]\.[0-9]'] - lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl - ;; - *) - lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|PA-RISC[[0-9]]\.[[0-9]]) shared library' - lt_cv_file_magic_test_file=/usr/lib/libc.sl - ;; - esac - ;; - -interix[[3-9]]*) - # PIC code is broken on Interix 3.x, that's why |\.a not |_pic\.a here - lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|\.a)$' - ;; - -irix5* | irix6* | nonstopux*) - case $LD in - *-32|*"-32 ") libmagic=32-bit;; - *-n32|*"-n32 ") libmagic=N32;; - *-64|*"-64 ") libmagic=64-bit;; - *) libmagic=never-match;; - esac - lt_cv_deplibs_check_method=pass_all - ;; - -# This must be Linux ELF. -linux* | k*bsd*-gnu | kopensolaris*-gnu) - lt_cv_deplibs_check_method=pass_all - ;; - -netbsd*) - if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then - lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' - else - lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|_pic\.a)$' - fi - ;; - -newos6*) - lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (executable|dynamic lib)' - lt_cv_file_magic_cmd=/usr/bin/file - lt_cv_file_magic_test_file=/usr/lib/libnls.so - ;; - -*nto* | *qnx*) - lt_cv_deplibs_check_method=pass_all - ;; - -openbsd*) - if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then - lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|\.so|_pic\.a)$' - else - lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' - fi - ;; - -osf3* | osf4* | osf5*) - lt_cv_deplibs_check_method=pass_all - ;; - -rdos*) - lt_cv_deplibs_check_method=pass_all - ;; - -solaris*) - lt_cv_deplibs_check_method=pass_all - ;; - -sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) - lt_cv_deplibs_check_method=pass_all - ;; - -sysv4 | sysv4.3*) - case $host_vendor in - motorola) - lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (shared object|dynamic lib) M[[0-9]][[0-9]]* Version [[0-9]]' - lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*` - ;; - ncr) - lt_cv_deplibs_check_method=pass_all - ;; - sequent) - lt_cv_file_magic_cmd='/bin/file' - lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB (shared object|dynamic lib )' - ;; - sni) - lt_cv_file_magic_cmd='/bin/file' - lt_cv_deplibs_check_method="file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB dynamic lib" - lt_cv_file_magic_test_file=/lib/libc.so - ;; - siemens) - lt_cv_deplibs_check_method=pass_all - ;; - pc) - lt_cv_deplibs_check_method=pass_all - ;; - esac - ;; - -tpf*) - lt_cv_deplibs_check_method=pass_all - ;; -esac -]) - -file_magic_glob= -want_nocaseglob=no -if test "$build" = "$host"; then - case $host_os in - mingw* | pw32*) - if ( shopt | grep nocaseglob ) >/dev/null 2>&1; then - want_nocaseglob=yes - else - file_magic_glob=`echo aAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyYzZ | $SED -e "s/\(..\)/s\/[[\1]]\/[[\1]]\/g;/g"` - fi - ;; - esac -fi - -file_magic_cmd=$lt_cv_file_magic_cmd -deplibs_check_method=$lt_cv_deplibs_check_method -test -z "$deplibs_check_method" && deplibs_check_method=unknown - -_LT_DECL([], [deplibs_check_method], [1], - [Method to check whether dependent libraries are shared objects]) -_LT_DECL([], [file_magic_cmd], [1], - [Command to use when deplibs_check_method = "file_magic"]) -_LT_DECL([], [file_magic_glob], [1], - [How to find potential files when deplibs_check_method = "file_magic"]) -_LT_DECL([], [want_nocaseglob], [1], - [Find potential files using nocaseglob when deplibs_check_method = "file_magic"]) -])# _LT_CHECK_MAGIC_METHOD - - -# LT_PATH_NM -# ---------- -# find the pathname to a BSD- or MS-compatible name lister -AC_DEFUN([LT_PATH_NM], -[AC_REQUIRE([AC_PROG_CC])dnl -AC_CACHE_CHECK([for BSD- or MS-compatible name lister (nm)], lt_cv_path_NM, -[if test -n "$NM"; then - # Let the user override the test. - lt_cv_path_NM="$NM" -else - lt_nm_to_check="${ac_tool_prefix}nm" - if test -n "$ac_tool_prefix" && test "$build" = "$host"; then - lt_nm_to_check="$lt_nm_to_check nm" - fi - for lt_tmp_nm in $lt_nm_to_check; do - lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR - for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do - IFS="$lt_save_ifs" - test -z "$ac_dir" && ac_dir=. - tmp_nm="$ac_dir/$lt_tmp_nm" - if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext" ; then - # Check to see if the nm accepts a BSD-compat flag. - # Adding the `sed 1q' prevents false positives on HP-UX, which says: - # nm: unknown option "B" ignored - # Tru64's nm complains that /dev/null is an invalid object file - case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in - */dev/null* | *'Invalid file or object type'*) - lt_cv_path_NM="$tmp_nm -B" - break - ;; - *) - case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in - */dev/null*) - lt_cv_path_NM="$tmp_nm -p" - break - ;; - *) - lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but - continue # so that we can try to find one that supports BSD flags - ;; - esac - ;; - esac - fi - done - IFS="$lt_save_ifs" - done - : ${lt_cv_path_NM=no} -fi]) -if test "$lt_cv_path_NM" != "no"; then - NM="$lt_cv_path_NM" -else - # Didn't find any BSD compatible name lister, look for dumpbin. - if test -n "$DUMPBIN"; then : - # Let the user override the test. - else - AC_CHECK_TOOLS(DUMPBIN, [dumpbin "link -dump"], :) - case `$DUMPBIN -symbols /dev/null 2>&1 | sed '1q'` in - *COFF*) - DUMPBIN="$DUMPBIN -symbols" - ;; - *) - DUMPBIN=: - ;; - esac - fi - AC_SUBST([DUMPBIN]) - if test "$DUMPBIN" != ":"; then - NM="$DUMPBIN" - fi -fi -test -z "$NM" && NM=nm -AC_SUBST([NM]) -_LT_DECL([], [NM], [1], [A BSD- or MS-compatible name lister])dnl - -AC_CACHE_CHECK([the name lister ($NM) interface], [lt_cv_nm_interface], - [lt_cv_nm_interface="BSD nm" - echo "int some_variable = 0;" > conftest.$ac_ext - (eval echo "\"\$as_me:$LINENO: $ac_compile\"" >&AS_MESSAGE_LOG_FD) - (eval "$ac_compile" 2>conftest.err) - cat conftest.err >&AS_MESSAGE_LOG_FD - (eval echo "\"\$as_me:$LINENO: $NM \\\"conftest.$ac_objext\\\"\"" >&AS_MESSAGE_LOG_FD) - (eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out) - cat conftest.err >&AS_MESSAGE_LOG_FD - (eval echo "\"\$as_me:$LINENO: output\"" >&AS_MESSAGE_LOG_FD) - cat conftest.out >&AS_MESSAGE_LOG_FD - if $GREP 'External.*some_variable' conftest.out > /dev/null; then - lt_cv_nm_interface="MS dumpbin" - fi - rm -f conftest*]) -])# LT_PATH_NM - -# Old names: -AU_ALIAS([AM_PROG_NM], [LT_PATH_NM]) -AU_ALIAS([AC_PROG_NM], [LT_PATH_NM]) -dnl aclocal-1.4 backwards compatibility: -dnl AC_DEFUN([AM_PROG_NM], []) -dnl AC_DEFUN([AC_PROG_NM], []) - -# _LT_CHECK_SHAREDLIB_FROM_LINKLIB -# -------------------------------- -# how to determine the name of the shared library -# associated with a specific link library. -# -- PORTME fill in with the dynamic library characteristics -m4_defun([_LT_CHECK_SHAREDLIB_FROM_LINKLIB], -[m4_require([_LT_DECL_EGREP]) -m4_require([_LT_DECL_OBJDUMP]) -m4_require([_LT_DECL_DLLTOOL]) -AC_CACHE_CHECK([how to associate runtime and link libraries], -lt_cv_sharedlib_from_linklib_cmd, -[lt_cv_sharedlib_from_linklib_cmd='unknown' - -case $host_os in -cygwin* | mingw* | pw32* | cegcc*) - # two different shell functions defined in ltmain.sh - # decide which to use based on capabilities of $DLLTOOL - case `$DLLTOOL --help 2>&1` in - *--identify-strict*) - lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib - ;; - *) - lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib_fallback - ;; - esac - ;; -*) - # fallback: assume linklib IS sharedlib - lt_cv_sharedlib_from_linklib_cmd="$ECHO" - ;; -esac -]) -sharedlib_from_linklib_cmd=$lt_cv_sharedlib_from_linklib_cmd -test -z "$sharedlib_from_linklib_cmd" && sharedlib_from_linklib_cmd=$ECHO - -_LT_DECL([], [sharedlib_from_linklib_cmd], [1], - [Command to associate shared and link libraries]) -])# _LT_CHECK_SHAREDLIB_FROM_LINKLIB - - -# _LT_PATH_MANIFEST_TOOL -# ---------------------- -# locate the manifest tool -m4_defun([_LT_PATH_MANIFEST_TOOL], -[AC_CHECK_TOOL(MANIFEST_TOOL, mt, :) -test -z "$MANIFEST_TOOL" && MANIFEST_TOOL=mt -AC_CACHE_CHECK([if $MANIFEST_TOOL is a manifest tool], [lt_cv_path_mainfest_tool], - [lt_cv_path_mainfest_tool=no - echo "$as_me:$LINENO: $MANIFEST_TOOL '-?'" >&AS_MESSAGE_LOG_FD - $MANIFEST_TOOL '-?' 2>conftest.err > conftest.out - cat conftest.err >&AS_MESSAGE_LOG_FD - if $GREP 'Manifest Tool' conftest.out > /dev/null; then - lt_cv_path_mainfest_tool=yes - fi - rm -f conftest*]) -if test "x$lt_cv_path_mainfest_tool" != xyes; then - MANIFEST_TOOL=: -fi -_LT_DECL([], [MANIFEST_TOOL], [1], [Manifest tool])dnl -])# _LT_PATH_MANIFEST_TOOL - - -# LT_LIB_M -# -------- -# check for math library -AC_DEFUN([LT_LIB_M], -[AC_REQUIRE([AC_CANONICAL_HOST])dnl -LIBM= -case $host in -*-*-beos* | *-*-cegcc* | *-*-cygwin* | *-*-haiku* | *-*-pw32* | *-*-darwin*) - # These system don't have libm, or don't need it - ;; -*-ncr-sysv4.3*) - AC_CHECK_LIB(mw, _mwvalidcheckl, LIBM="-lmw") - AC_CHECK_LIB(m, cos, LIBM="$LIBM -lm") - ;; -*) - AC_CHECK_LIB(m, cos, LIBM="-lm") - ;; -esac -AC_SUBST([LIBM]) -])# LT_LIB_M - -# Old name: -AU_ALIAS([AC_CHECK_LIBM], [LT_LIB_M]) -dnl aclocal-1.4 backwards compatibility: -dnl AC_DEFUN([AC_CHECK_LIBM], []) - - -# _LT_COMPILER_NO_RTTI([TAGNAME]) -# ------------------------------- -m4_defun([_LT_COMPILER_NO_RTTI], -[m4_require([_LT_TAG_COMPILER])dnl - -_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)= - -if test "$GCC" = yes; then - case $cc_basename in - nvcc*) - _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -Xcompiler -fno-builtin' ;; - *) - _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' ;; - esac - - _LT_COMPILER_OPTION([if $compiler supports -fno-rtti -fno-exceptions], - lt_cv_prog_compiler_rtti_exceptions, - [-fno-rtti -fno-exceptions], [], - [_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)="$_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1) -fno-rtti -fno-exceptions"]) -fi -_LT_TAGDECL([no_builtin_flag], [lt_prog_compiler_no_builtin_flag], [1], - [Compiler flag to turn off builtin functions]) -])# _LT_COMPILER_NO_RTTI - - -# _LT_CMD_GLOBAL_SYMBOLS -# ---------------------- -m4_defun([_LT_CMD_GLOBAL_SYMBOLS], -[AC_REQUIRE([AC_CANONICAL_HOST])dnl -AC_REQUIRE([AC_PROG_CC])dnl -AC_REQUIRE([AC_PROG_AWK])dnl -AC_REQUIRE([LT_PATH_NM])dnl -AC_REQUIRE([LT_PATH_LD])dnl -m4_require([_LT_DECL_SED])dnl -m4_require([_LT_DECL_EGREP])dnl -m4_require([_LT_TAG_COMPILER])dnl - -# Check for command to grab the raw symbol name followed by C symbol from nm. -AC_MSG_CHECKING([command to parse $NM output from $compiler object]) -AC_CACHE_VAL([lt_cv_sys_global_symbol_pipe], -[ -# These are sane defaults that work on at least a few old systems. -# [They come from Ultrix. What could be older than Ultrix?!! ;)] - -# Character class describing NM global symbol codes. -symcode='[[BCDEGRST]]' - -# Regexp to match symbols that can be accessed directly from C. -sympat='\([[_A-Za-z]][[_A-Za-z0-9]]*\)' - -# Define system-specific variables. -case $host_os in -aix*) - symcode='[[BCDT]]' - ;; -cygwin* | mingw* | pw32* | cegcc*) - symcode='[[ABCDGISTW]]' - ;; -hpux*) - if test "$host_cpu" = ia64; then - symcode='[[ABCDEGRST]]' - fi - ;; -irix* | nonstopux*) - symcode='[[BCDEGRST]]' - ;; -osf*) - symcode='[[BCDEGQRST]]' - ;; -solaris*) - symcode='[[BDRT]]' - ;; -sco3.2v5*) - symcode='[[DT]]' - ;; -sysv4.2uw2*) - symcode='[[DT]]' - ;; -sysv5* | sco5v6* | unixware* | OpenUNIX*) - symcode='[[ABDT]]' - ;; -sysv4) - symcode='[[DFNSTU]]' - ;; -esac - -# If we're using GNU nm, then use its standard symbol codes. -case `$NM -V 2>&1` in -*GNU* | *'with BFD'*) - symcode='[[ABCDGIRSTW]]' ;; -esac - -# Transform an extracted symbol line into a proper C declaration. -# Some systems (esp. on ia64) link data and code symbols differently, -# so use this general approach. -lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" - -# Transform an extracted symbol line into symbol name and symbol address -lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([[^ ]]*\)[[ ]]*$/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/ {\"\2\", (void *) \&\2},/p'" -lt_cv_sys_global_symbol_to_c_name_address_lib_prefix="sed -n -e 's/^: \([[^ ]]*\)[[ ]]*$/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \(lib[[^ ]]*\)$/ {\"\2\", (void *) \&\2},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/ {\"lib\2\", (void *) \&\2},/p'" - -# Handle CRLF in mingw tool chain -opt_cr= -case $build_os in -mingw*) - opt_cr=`$ECHO 'x\{0,1\}' | tr x '\015'` # option cr in regexp - ;; -esac - -# Try without a prefix underscore, then with it. -for ac_symprfx in "" "_"; do - - # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol. - symxfrm="\\1 $ac_symprfx\\2 \\2" - - # Write the raw and C identifiers. - if test "$lt_cv_nm_interface" = "MS dumpbin"; then - # Fake it for dumpbin and say T for any non-static function - # and D for any global variable. - # Also find C++ and __fastcall symbols from MSVC++, - # which start with @ or ?. - lt_cv_sys_global_symbol_pipe="$AWK ['"\ -" {last_section=section; section=\$ 3};"\ -" /Section length .*#relocs.*(pick any)/{hide[last_section]=1};"\ -" \$ 0!~/External *\|/{next};"\ -" / 0+ UNDEF /{next}; / UNDEF \([^|]\)*()/{next};"\ -" {if(hide[section]) next};"\ -" {f=0}; \$ 0~/\(\).*\|/{f=1}; {printf f ? \"T \" : \"D \"};"\ -" {split(\$ 0, a, /\||\r/); split(a[2], s)};"\ -" s[1]~/^[@?]/{print s[1], s[1]; next};"\ -" s[1]~prfx {split(s[1],t,\"@\"); print t[1], substr(t[1],length(prfx))}"\ -" ' prfx=^$ac_symprfx]" - else - lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[[ ]]\($symcode$symcode*\)[[ ]][[ ]]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'" - fi - lt_cv_sys_global_symbol_pipe="$lt_cv_sys_global_symbol_pipe | sed '/ __gnu_lto/d'" - - # Check to see that the pipe works correctly. - pipe_works=no - - rm -f conftest* - cat > conftest.$ac_ext <<_LT_EOF -#ifdef __cplusplus -extern "C" { -#endif -char nm_test_var; -void nm_test_func(void); -void nm_test_func(void){} -#ifdef __cplusplus -} -#endif -int main(){nm_test_var='a';nm_test_func();return(0);} -_LT_EOF - - if AC_TRY_EVAL(ac_compile); then - # Now try to grab the symbols. - nlist=conftest.nm - if AC_TRY_EVAL(NM conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist) && test -s "$nlist"; then - # Try sorting and uniquifying the output. - if sort "$nlist" | uniq > "$nlist"T; then - mv -f "$nlist"T "$nlist" - else - rm -f "$nlist"T - fi - - # Make sure that we snagged all the symbols we need. - if $GREP ' nm_test_var$' "$nlist" >/dev/null; then - if $GREP ' nm_test_func$' "$nlist" >/dev/null; then - cat <<_LT_EOF > conftest.$ac_ext -/* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */ -#if defined(_WIN32) || defined(__CYGWIN__) || defined(_WIN32_WCE) -/* DATA imports from DLLs on WIN32 con't be const, because runtime - relocations are performed -- see ld's documentation on pseudo-relocs. */ -# define LT@&t@_DLSYM_CONST -#elif defined(__osf__) -/* This system does not cope well with relocations in const data. */ -# define LT@&t@_DLSYM_CONST -#else -# define LT@&t@_DLSYM_CONST const -#endif - -#ifdef __cplusplus -extern "C" { -#endif - -_LT_EOF - # Now generate the symbol file. - eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | $GREP -v main >> conftest.$ac_ext' - - cat <<_LT_EOF >> conftest.$ac_ext - -/* The mapping between symbol names and symbols. */ -LT@&t@_DLSYM_CONST struct { - const char *name; - void *address; -} -lt__PROGRAM__LTX_preloaded_symbols[[]] = -{ - { "@PROGRAM@", (void *) 0 }, -_LT_EOF - $SED "s/^$symcode$symcode* \(.*\) \(.*\)$/ {\"\2\", (void *) \&\2},/" < "$nlist" | $GREP -v main >> conftest.$ac_ext - cat <<\_LT_EOF >> conftest.$ac_ext - {0, (void *) 0} -}; - -/* This works around a problem in FreeBSD linker */ -#ifdef FREEBSD_WORKAROUND -static const void *lt_preloaded_setup() { - return lt__PROGRAM__LTX_preloaded_symbols; -} -#endif - -#ifdef __cplusplus -} -#endif -_LT_EOF - # Now try linking the two files. - mv conftest.$ac_objext conftstm.$ac_objext - lt_globsym_save_LIBS=$LIBS - lt_globsym_save_CFLAGS=$CFLAGS - LIBS="conftstm.$ac_objext" - CFLAGS="$CFLAGS$_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)" - if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext}; then - pipe_works=yes - fi - LIBS=$lt_globsym_save_LIBS - CFLAGS=$lt_globsym_save_CFLAGS - else - echo "cannot find nm_test_func in $nlist" >&AS_MESSAGE_LOG_FD - fi - else - echo "cannot find nm_test_var in $nlist" >&AS_MESSAGE_LOG_FD - fi - else - echo "cannot run $lt_cv_sys_global_symbol_pipe" >&AS_MESSAGE_LOG_FD - fi - else - echo "$progname: failed program was:" >&AS_MESSAGE_LOG_FD - cat conftest.$ac_ext >&5 - fi - rm -rf conftest* conftst* - - # Do not use the global_symbol_pipe unless it works. - if test "$pipe_works" = yes; then - break - else - lt_cv_sys_global_symbol_pipe= - fi -done -]) -if test -z "$lt_cv_sys_global_symbol_pipe"; then - lt_cv_sys_global_symbol_to_cdecl= -fi -if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then - AC_MSG_RESULT(failed) -else - AC_MSG_RESULT(ok) -fi - -# Response file support. -if test "$lt_cv_nm_interface" = "MS dumpbin"; then - nm_file_list_spec='@' -elif $NM --help 2>/dev/null | grep '[[@]]FILE' >/dev/null; then - nm_file_list_spec='@' -fi - -_LT_DECL([global_symbol_pipe], [lt_cv_sys_global_symbol_pipe], [1], - [Take the output of nm and produce a listing of raw symbols and C names]) -_LT_DECL([global_symbol_to_cdecl], [lt_cv_sys_global_symbol_to_cdecl], [1], - [Transform the output of nm in a proper C declaration]) -_LT_DECL([global_symbol_to_c_name_address], - [lt_cv_sys_global_symbol_to_c_name_address], [1], - [Transform the output of nm in a C name address pair]) -_LT_DECL([global_symbol_to_c_name_address_lib_prefix], - [lt_cv_sys_global_symbol_to_c_name_address_lib_prefix], [1], - [Transform the output of nm in a C name address pair when lib prefix is needed]) -_LT_DECL([], [nm_file_list_spec], [1], - [Specify filename containing input files for $NM]) -]) # _LT_CMD_GLOBAL_SYMBOLS - - -# _LT_COMPILER_PIC([TAGNAME]) -# --------------------------- -m4_defun([_LT_COMPILER_PIC], -[m4_require([_LT_TAG_COMPILER])dnl -_LT_TAGVAR(lt_prog_compiler_wl, $1)= -_LT_TAGVAR(lt_prog_compiler_pic, $1)= -_LT_TAGVAR(lt_prog_compiler_static, $1)= - -m4_if([$1], [CXX], [ - # C++ specific cases for pic, static, wl, etc. - if test "$GXX" = yes; then - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' - - case $host_os in - aix*) - # All AIX code is PIC. - if test "$host_cpu" = ia64; then - # AIX 5 now supports IA64 processor - _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - fi - ;; - - amigaos*) - case $host_cpu in - powerpc) - # see comment about AmigaOS4 .so support - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' - ;; - m68k) - # FIXME: we need at least 68020 code to build shared libraries, but - # adding the `-m68020' flag to GCC prevents building anything better, - # like `-m68040'. - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4' - ;; - esac - ;; - - beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) - # PIC is the default for these OSes. - ;; - mingw* | cygwin* | os2* | pw32* | cegcc*) - # This hack is so that the source file can tell whether it is being - # built for inclusion in a dll (and should export symbols for example). - # Although the cygwin gcc ignores -fPIC, still need this for old-style - # (--disable-auto-import) libraries - m4_if([$1], [GCJ], [], - [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) - ;; - darwin* | rhapsody*) - # PIC is the default on this platform - # Common symbols not allowed in MH_DYLIB files - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' - ;; - *djgpp*) - # DJGPP does not support shared libraries at all - _LT_TAGVAR(lt_prog_compiler_pic, $1)= - ;; - haiku*) - # PIC is the default for Haiku. - # The "-static" flag exists, but is broken. - _LT_TAGVAR(lt_prog_compiler_static, $1)= - ;; - interix[[3-9]]*) - # Interix 3.x gcc -fpic/-fPIC options generate broken code. - # Instead, we relocate shared libraries at runtime. - ;; - sysv4*MP*) - if test -d /usr/nec; then - _LT_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic - fi - ;; - hpux*) - # PIC is the default for 64-bit PA HP-UX, but not for 32-bit - # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag - # sets the default TLS model and affects inlining. - case $host_cpu in - hppa*64*) - ;; - *) - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' - ;; - esac - ;; - *qnx* | *nto*) - # QNX uses GNU C++, but need to define -shared option too, otherwise - # it will coredump. - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' - ;; - *) - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' - ;; - esac - else - case $host_os in - aix[[4-9]]*) - # All AIX code is PIC. - if test "$host_cpu" = ia64; then - # AIX 5 now supports IA64 processor - _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - else - _LT_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp' - fi - ;; - chorus*) - case $cc_basename in - cxch68*) - # Green Hills C++ Compiler - # _LT_TAGVAR(lt_prog_compiler_static, $1)="--no_auto_instantiation -u __main -u __premain -u _abort -r $COOL_DIR/lib/libOrb.a $MVME_DIR/lib/CC/libC.a $MVME_DIR/lib/classix/libcx.s.a" - ;; - esac - ;; - mingw* | cygwin* | os2* | pw32* | cegcc*) - # This hack is so that the source file can tell whether it is being - # built for inclusion in a dll (and should export symbols for example). - m4_if([$1], [GCJ], [], - [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) - ;; - dgux*) - case $cc_basename in - ec++*) - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' - ;; - ghcx*) - # Green Hills C++ Compiler - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' - ;; - *) - ;; - esac - ;; - freebsd* | dragonfly*) - # FreeBSD uses GNU C++ - ;; - hpux9* | hpux10* | hpux11*) - case $cc_basename in - CC*) - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' - if test "$host_cpu" != ia64; then - _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z' - fi - ;; - aCC*) - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' - case $host_cpu in - hppa*64*|ia64*) - # +Z the default - ;; - *) - _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z' - ;; - esac - ;; - *) - ;; - esac - ;; - interix*) - # This is c89, which is MS Visual C++ (no shared libs) - # Anyone wants to do a port? - ;; - irix5* | irix6* | nonstopux*) - case $cc_basename in - CC*) - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' - # CC pic flag -KPIC is the default. - ;; - *) - ;; - esac - ;; - linux* | k*bsd*-gnu | kopensolaris*-gnu) - case $cc_basename in - KCC*) - # KAI C++ Compiler - _LT_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,' - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' - ;; - ecpc* ) - # old Intel C++ for x86_64 which still supported -KPIC. - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' - _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' - ;; - icpc* ) - # Intel C++, used to be incompatible with GCC. - # ICC 10 doesn't accept -KPIC any more. - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' - _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' - ;; - pgCC* | pgcpp*) - # Portland Group C++ compiler - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' - _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - ;; - cxx*) - # Compaq C++ - # Make sure the PIC flag is empty. It appears that all Alpha - # Linux and Compaq Tru64 Unix objects are PIC. - _LT_TAGVAR(lt_prog_compiler_pic, $1)= - _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' - ;; - xlc* | xlC* | bgxl[[cC]]* | mpixl[[cC]]*) - # IBM XL 8.0, 9.0 on PPC and BlueGene - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-qpic' - _LT_TAGVAR(lt_prog_compiler_static, $1)='-qstaticlink' - ;; - *) - case `$CC -V 2>&1 | sed 5q` in - *Sun\ C*) - # Sun C++ 5.9 - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' - _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' - ;; - esac - ;; - esac - ;; - lynxos*) - ;; - m88k*) - ;; - mvs*) - case $cc_basename in - cxx*) - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-W c,exportall' - ;; - *) - ;; - esac - ;; - netbsd*) - ;; - *qnx* | *nto*) - # QNX uses GNU C++, but need to define -shared option too, otherwise - # it will coredump. - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' - ;; - osf3* | osf4* | osf5*) - case $cc_basename in - KCC*) - _LT_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,' - ;; - RCC*) - # Rational C++ 2.4.1 - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' - ;; - cxx*) - # Digital/Compaq C++ - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - # Make sure the PIC flag is empty. It appears that all Alpha - # Linux and Compaq Tru64 Unix objects are PIC. - _LT_TAGVAR(lt_prog_compiler_pic, $1)= - _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' - ;; - *) - ;; - esac - ;; - psos*) - ;; - solaris*) - case $cc_basename in - CC* | sunCC*) - # Sun C++ 4.2, 5.x and Centerline C++ - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' - _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' - ;; - gcx*) - # Green Hills C++ Compiler - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' - ;; - *) - ;; - esac - ;; - sunos4*) - case $cc_basename in - CC*) - # Sun C++ 4.x - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' - _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - ;; - lcc*) - # Lucid - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' - ;; - *) - ;; - esac - ;; - sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) - case $cc_basename in - CC*) - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' - _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - ;; - esac - ;; - tandem*) - case $cc_basename in - NCC*) - # NonStop-UX NCC 3.20 - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' - ;; - *) - ;; - esac - ;; - vxworks*) - ;; - *) - _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no - ;; - esac - fi -], -[ - if test "$GCC" = yes; then - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' - - case $host_os in - aix*) - # All AIX code is PIC. - if test "$host_cpu" = ia64; then - # AIX 5 now supports IA64 processor - _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - fi - ;; - - amigaos*) - case $host_cpu in - powerpc) - # see comment about AmigaOS4 .so support - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' - ;; - m68k) - # FIXME: we need at least 68020 code to build shared libraries, but - # adding the `-m68020' flag to GCC prevents building anything better, - # like `-m68040'. - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4' - ;; - esac - ;; - - beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) - # PIC is the default for these OSes. - ;; - - mingw* | cygwin* | pw32* | os2* | cegcc*) - # This hack is so that the source file can tell whether it is being - # built for inclusion in a dll (and should export symbols for example). - # Although the cygwin gcc ignores -fPIC, still need this for old-style - # (--disable-auto-import) libraries - m4_if([$1], [GCJ], [], - [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) - ;; - - darwin* | rhapsody*) - # PIC is the default on this platform - # Common symbols not allowed in MH_DYLIB files - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' - ;; - - haiku*) - # PIC is the default for Haiku. - # The "-static" flag exists, but is broken. - _LT_TAGVAR(lt_prog_compiler_static, $1)= - ;; - - hpux*) - # PIC is the default for 64-bit PA HP-UX, but not for 32-bit - # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag - # sets the default TLS model and affects inlining. - case $host_cpu in - hppa*64*) - # +Z the default - ;; - *) - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' - ;; - esac - ;; - - interix[[3-9]]*) - # Interix 3.x gcc -fpic/-fPIC options generate broken code. - # Instead, we relocate shared libraries at runtime. - ;; - - msdosdjgpp*) - # Just because we use GCC doesn't mean we suddenly get shared libraries - # on systems that don't support them. - _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no - enable_shared=no - ;; - - *nto* | *qnx*) - # QNX uses GNU C++, but need to define -shared option too, otherwise - # it will coredump. - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' - ;; - - sysv4*MP*) - if test -d /usr/nec; then - _LT_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic - fi - ;; - - *) - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' - ;; - esac - - case $cc_basename in - nvcc*) # Cuda Compiler Driver 2.2 - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Xlinker ' - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-Xcompiler -fPIC' - ;; - esac - else - # PORTME Check for flag to pass linker flags through the system compiler. - case $host_os in - aix*) - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - if test "$host_cpu" = ia64; then - # AIX 5 now supports IA64 processor - _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - else - _LT_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp' - fi - ;; - - mingw* | cygwin* | pw32* | os2* | cegcc*) - # This hack is so that the source file can tell whether it is being - # built for inclusion in a dll (and should export symbols for example). - m4_if([$1], [GCJ], [], - [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) - ;; - - hpux9* | hpux10* | hpux11*) - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but - # not for PA HP-UX. - case $host_cpu in - hppa*64*|ia64*) - # +Z the default - ;; - *) - _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z' - ;; - esac - # Is there a better lt_prog_compiler_static that works with the bundled CC? - _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' - ;; - - irix5* | irix6* | nonstopux*) - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - # PIC (with -KPIC) is the default. - _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' - ;; - - linux* | k*bsd*-gnu | kopensolaris*-gnu) - case $cc_basename in - # old Intel for x86_64 which still supported -KPIC. - ecc*) - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' - _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' - ;; - # icc used to be incompatible with GCC. - # ICC 10 doesn't accept -KPIC any more. - icc* | ifort*) - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' - _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' - ;; - # Lahey Fortran 8.1. - lf95*) - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_TAGVAR(lt_prog_compiler_pic, $1)='--shared' - _LT_TAGVAR(lt_prog_compiler_static, $1)='--static' - ;; - nagfor*) - # NAG Fortran compiler - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,-Wl,,' - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' - _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - ;; - pgcc* | pgf77* | pgf90* | pgf95* | pgfortran*) - # Portland Group compilers (*not* the Pentium gcc compiler, - # which looks to be a dead project) - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' - _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - ;; - ccc*) - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - # All Alpha code is PIC. - _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' - ;; - xl* | bgxl* | bgf* | mpixl*) - # IBM XL C 8.0/Fortran 10.1, 11.1 on PPC and BlueGene - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-qpic' - _LT_TAGVAR(lt_prog_compiler_static, $1)='-qstaticlink' - ;; - *) - case `$CC -V 2>&1 | sed 5q` in - *Sun\ F* | *Sun*Fortran*) - # Sun Fortran 8.3 passes all unrecognized flags to the linker - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' - _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - _LT_TAGVAR(lt_prog_compiler_wl, $1)='' - ;; - *Sun\ C*) - # Sun C 5.9 - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' - _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - ;; - esac - ;; - esac - ;; - - newsos6) - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' - _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - ;; - - *nto* | *qnx*) - # QNX uses GNU C++, but need to define -shared option too, otherwise - # it will coredump. - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' - ;; - - osf3* | osf4* | osf5*) - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - # All OSF/1 code is PIC. - _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' - ;; - - rdos*) - _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' - ;; - - solaris*) - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' - _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - case $cc_basename in - f77* | f90* | f95* | sunf77* | sunf90* | sunf95*) - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ';; - *) - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,';; - esac - ;; - - sunos4*) - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' - _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - ;; - - sysv4 | sysv4.2uw2* | sysv4.3*) - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' - _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - ;; - - sysv4*MP*) - if test -d /usr/nec ;then - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-Kconform_pic' - _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - fi - ;; - - sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' - _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - ;; - - unicos*) - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no - ;; - - uts4*) - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' - _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - ;; - - *) - _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no - ;; - esac - fi -]) -case $host_os in - # For platforms which do not support PIC, -DPIC is meaningless: - *djgpp*) - _LT_TAGVAR(lt_prog_compiler_pic, $1)= - ;; - *) - _LT_TAGVAR(lt_prog_compiler_pic, $1)="$_LT_TAGVAR(lt_prog_compiler_pic, $1)@&t@m4_if([$1],[],[ -DPIC],[m4_if([$1],[CXX],[ -DPIC],[])])" - ;; -esac - -AC_CACHE_CHECK([for $compiler option to produce PIC], - [_LT_TAGVAR(lt_cv_prog_compiler_pic, $1)], - [_LT_TAGVAR(lt_cv_prog_compiler_pic, $1)=$_LT_TAGVAR(lt_prog_compiler_pic, $1)]) -_LT_TAGVAR(lt_prog_compiler_pic, $1)=$_LT_TAGVAR(lt_cv_prog_compiler_pic, $1) - -# -# Check to make sure the PIC flag actually works. -# -if test -n "$_LT_TAGVAR(lt_prog_compiler_pic, $1)"; then - _LT_COMPILER_OPTION([if $compiler PIC flag $_LT_TAGVAR(lt_prog_compiler_pic, $1) works], - [_LT_TAGVAR(lt_cv_prog_compiler_pic_works, $1)], - [$_LT_TAGVAR(lt_prog_compiler_pic, $1)@&t@m4_if([$1],[],[ -DPIC],[m4_if([$1],[CXX],[ -DPIC],[])])], [], - [case $_LT_TAGVAR(lt_prog_compiler_pic, $1) in - "" | " "*) ;; - *) _LT_TAGVAR(lt_prog_compiler_pic, $1)=" $_LT_TAGVAR(lt_prog_compiler_pic, $1)" ;; - esac], - [_LT_TAGVAR(lt_prog_compiler_pic, $1)= - _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no]) -fi -_LT_TAGDECL([pic_flag], [lt_prog_compiler_pic], [1], - [Additional compiler flags for building library objects]) - -_LT_TAGDECL([wl], [lt_prog_compiler_wl], [1], - [How to pass a linker flag through the compiler]) -# -# Check to make sure the static flag actually works. -# -wl=$_LT_TAGVAR(lt_prog_compiler_wl, $1) eval lt_tmp_static_flag=\"$_LT_TAGVAR(lt_prog_compiler_static, $1)\" -_LT_LINKER_OPTION([if $compiler static flag $lt_tmp_static_flag works], - _LT_TAGVAR(lt_cv_prog_compiler_static_works, $1), - $lt_tmp_static_flag, - [], - [_LT_TAGVAR(lt_prog_compiler_static, $1)=]) -_LT_TAGDECL([link_static_flag], [lt_prog_compiler_static], [1], - [Compiler flag to prevent dynamic linking]) -])# _LT_COMPILER_PIC - - -# _LT_LINKER_SHLIBS([TAGNAME]) -# ---------------------------- -# See if the linker supports building shared libraries. -m4_defun([_LT_LINKER_SHLIBS], -[AC_REQUIRE([LT_PATH_LD])dnl -AC_REQUIRE([LT_PATH_NM])dnl -m4_require([_LT_PATH_MANIFEST_TOOL])dnl -m4_require([_LT_FILEUTILS_DEFAULTS])dnl -m4_require([_LT_DECL_EGREP])dnl -m4_require([_LT_DECL_SED])dnl -m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl -m4_require([_LT_TAG_COMPILER])dnl -AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries]) -m4_if([$1], [CXX], [ - _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' - _LT_TAGVAR(exclude_expsyms, $1)=['_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'] - case $host_os in - aix[[4-9]]*) - # If we're using GNU nm, then we don't want the "-C" option. - # -C means demangle to AIX nm, but means don't demangle with GNU nm - # Also, AIX nm treats weak defined symbols like other global defined - # symbols, whereas GNU nm marks them as "W". - if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then - _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' - else - _LT_TAGVAR(export_symbols_cmds, $1)='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' - fi - ;; - pw32*) - _LT_TAGVAR(export_symbols_cmds, $1)="$ltdll_cmds" - ;; - cygwin* | mingw* | cegcc*) - case $cc_basename in - cl*) ;; - *) - _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/;s/^.*[[ ]]__nm__\([[^ ]]*\)[[ ]][[^ ]]*/\1 DATA/;/^I[[ ]]/d;/^[[AITW]][[ ]]/s/.* //'\'' | sort | uniq > $export_symbols' - _LT_TAGVAR(exclude_expsyms, $1)=['[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname'] - ;; - esac - ;; - *) - _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' - ;; - esac -], [ - runpath_var= - _LT_TAGVAR(allow_undefined_flag, $1)= - _LT_TAGVAR(always_export_symbols, $1)=no - _LT_TAGVAR(archive_cmds, $1)= - _LT_TAGVAR(archive_expsym_cmds, $1)= - _LT_TAGVAR(compiler_needs_object, $1)=no - _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no - _LT_TAGVAR(export_dynamic_flag_spec, $1)= - _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' - _LT_TAGVAR(hardcode_automatic, $1)=no - _LT_TAGVAR(hardcode_direct, $1)=no - _LT_TAGVAR(hardcode_direct_absolute, $1)=no - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= - _LT_TAGVAR(hardcode_libdir_flag_spec_ld, $1)= - _LT_TAGVAR(hardcode_libdir_separator, $1)= - _LT_TAGVAR(hardcode_minus_L, $1)=no - _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported - _LT_TAGVAR(inherit_rpath, $1)=no - _LT_TAGVAR(link_all_deplibs, $1)=unknown - _LT_TAGVAR(module_cmds, $1)= - _LT_TAGVAR(module_expsym_cmds, $1)= - _LT_TAGVAR(old_archive_from_new_cmds, $1)= - _LT_TAGVAR(old_archive_from_expsyms_cmds, $1)= - _LT_TAGVAR(thread_safe_flag_spec, $1)= - _LT_TAGVAR(whole_archive_flag_spec, $1)= - # include_expsyms should be a list of space-separated symbols to be *always* - # included in the symbol list - _LT_TAGVAR(include_expsyms, $1)= - # exclude_expsyms can be an extended regexp of symbols to exclude - # it will be wrapped by ` (' and `)$', so one must not match beginning or - # end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc', - # as well as any symbol that contains `d'. - _LT_TAGVAR(exclude_expsyms, $1)=['_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'] - # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out - # platforms (ab)use it in PIC code, but their linkers get confused if - # the symbol is explicitly referenced. Since portable code cannot - # rely on this symbol name, it's probably fine to never include it in - # preloaded symbol tables. - # Exclude shared library initialization/finalization symbols. -dnl Note also adjust exclude_expsyms for C++ above. - extract_expsyms_cmds= - - case $host_os in - cygwin* | mingw* | pw32* | cegcc*) - # FIXME: the MSVC++ port hasn't been tested in a loooong time - # When not using gcc, we currently assume that we are using - # Microsoft Visual C++. - if test "$GCC" != yes; then - with_gnu_ld=no - fi - ;; - interix*) - # we just hope/assume this is gcc and not c89 (= MSVC++) - with_gnu_ld=yes - ;; - openbsd*) - with_gnu_ld=no - ;; - esac - - _LT_TAGVAR(ld_shlibs, $1)=yes - - # On some targets, GNU ld is compatible enough with the native linker - # that we're better off using the native interface for both. - lt_use_gnu_ld_interface=no - if test "$with_gnu_ld" = yes; then - case $host_os in - aix*) - # The AIX port of GNU ld has always aspired to compatibility - # with the native linker. However, as the warning in the GNU ld - # block says, versions before 2.19.5* couldn't really create working - # shared libraries, regardless of the interface used. - case `$LD -v 2>&1` in - *\ \(GNU\ Binutils\)\ 2.19.5*) ;; - *\ \(GNU\ Binutils\)\ 2.[[2-9]]*) ;; - *\ \(GNU\ Binutils\)\ [[3-9]]*) ;; - *) - lt_use_gnu_ld_interface=yes - ;; - esac - ;; - *) - lt_use_gnu_ld_interface=yes - ;; - esac - fi - - if test "$lt_use_gnu_ld_interface" = yes; then - # If archive_cmds runs LD, not CC, wlarc should be empty - wlarc='${wl}' - - # Set some defaults for GNU ld with shared library support. These - # are reset later if shared libraries are not supported. Putting them - # here allows them to be overridden if necessary. - runpath_var=LD_RUN_PATH - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' - # ancient GNU ld didn't support --whole-archive et. al. - if $LD --help 2>&1 | $GREP 'no-whole-archive' > /dev/null; then - _LT_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' - else - _LT_TAGVAR(whole_archive_flag_spec, $1)= - fi - supports_anon_versioning=no - case `$LD -v 2>&1` in - *GNU\ gold*) supports_anon_versioning=yes ;; - *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.10.*) ;; # catch versions < 2.11 - *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... - *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... - *\ 2.11.*) ;; # other 2.11 versions - *) supports_anon_versioning=yes ;; - esac - - # See if GNU ld supports shared libraries. - case $host_os in - aix[[3-9]]*) - # On AIX/PPC, the GNU linker is very broken - if test "$host_cpu" != ia64; then - _LT_TAGVAR(ld_shlibs, $1)=no - cat <<_LT_EOF 1>&2 - -*** Warning: the GNU linker, at least up to release 2.19, is reported -*** to be unable to reliably create shared libraries on AIX. -*** Therefore, libtool is disabling shared libraries support. If you -*** really care for shared libraries, you may want to install binutils -*** 2.20 or above, or modify your PATH so that a non-GNU linker is found. -*** You will then need to restart the configuration process. - -_LT_EOF - fi - ;; - - amigaos*) - case $host_cpu in - powerpc) - # see comment about AmigaOS4 .so support - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='' - ;; - m68k) - _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' - _LT_TAGVAR(hardcode_minus_L, $1)=yes - ;; - esac - ;; - - beos*) - if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then - _LT_TAGVAR(allow_undefined_flag, $1)=unsupported - # Joseph Beckenbach says some releases of gcc - # support --undefined. This deserves some investigation. FIXME - _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - else - _LT_TAGVAR(ld_shlibs, $1)=no - fi - ;; - - cygwin* | mingw* | pw32* | cegcc*) - # _LT_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, - # as there is no search path for DLLs. - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-all-symbols' - _LT_TAGVAR(allow_undefined_flag, $1)=unsupported - _LT_TAGVAR(always_export_symbols, $1)=no - _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes - _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/;s/^.*[[ ]]__nm__\([[^ ]]*\)[[ ]][[^ ]]*/\1 DATA/;/^I[[ ]]/d;/^[[AITW]][[ ]]/s/.* //'\'' | sort | uniq > $export_symbols' - _LT_TAGVAR(exclude_expsyms, $1)=['[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname'] - - if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' - # If the export-symbols file already is a .def file (1st line - # is EXPORTS), use it as is; otherwise, prepend... - _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then - cp $export_symbols $output_objdir/$soname.def; - else - echo EXPORTS > $output_objdir/$soname.def; - cat $export_symbols >> $output_objdir/$soname.def; - fi~ - $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' - else - _LT_TAGVAR(ld_shlibs, $1)=no - fi - ;; - - haiku*) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - _LT_TAGVAR(link_all_deplibs, $1)=yes - ;; - - interix[[3-9]]*) - _LT_TAGVAR(hardcode_direct, $1)=no - _LT_TAGVAR(hardcode_shlibpath_var, $1)=no - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' - # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. - # Instead, shared libraries are loaded at an image base (0x10000000 by - # default) and relocated if they conflict, which is a slow very memory - # consuming and fragmenting process. To avoid this, we pick a random, - # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link - # time. Moving up from 0x10000000 also allows more sbrk(2) space. - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' - ;; - - gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu) - tmp_diet=no - if test "$host_os" = linux-dietlibc; then - case $cc_basename in - diet\ *) tmp_diet=yes;; # linux-dietlibc with static linking (!diet-dyn) - esac - fi - if $LD --help 2>&1 | $EGREP ': supported targets:.* elf' > /dev/null \ - && test "$tmp_diet" = no - then - tmp_addflag=' $pic_flag' - tmp_sharedflag='-shared' - case $cc_basename,$host_cpu in - pgcc*) # Portland Group C compiler - _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' - tmp_addflag=' $pic_flag' - ;; - pgf77* | pgf90* | pgf95* | pgfortran*) - # Portland Group f77 and f90 compilers - _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' - tmp_addflag=' $pic_flag -Mnomain' ;; - ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 - tmp_addflag=' -i_dynamic' ;; - efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64 - tmp_addflag=' -i_dynamic -nofor_main' ;; - ifc* | ifort*) # Intel Fortran compiler - tmp_addflag=' -nofor_main' ;; - lf95*) # Lahey Fortran 8.1 - _LT_TAGVAR(whole_archive_flag_spec, $1)= - tmp_sharedflag='--shared' ;; - xl[[cC]]* | bgxl[[cC]]* | mpixl[[cC]]*) # IBM XL C 8.0 on PPC (deal with xlf below) - tmp_sharedflag='-qmkshrobj' - tmp_addflag= ;; - nvcc*) # Cuda Compiler Driver 2.2 - _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' - _LT_TAGVAR(compiler_needs_object, $1)=yes - ;; - esac - case `$CC -V 2>&1 | sed 5q` in - *Sun\ C*) # Sun C 5.9 - _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' - _LT_TAGVAR(compiler_needs_object, $1)=yes - tmp_sharedflag='-G' ;; - *Sun\ F*) # Sun Fortran 8.3 - tmp_sharedflag='-G' ;; - esac - _LT_TAGVAR(archive_cmds, $1)='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - - if test "x$supports_anon_versioning" = xyes; then - _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ - cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ - echo "local: *; };" >> $output_objdir/$libname.ver~ - $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' - fi - - case $cc_basename in - xlf* | bgf* | bgxlf* | mpixlf*) - # IBM XL Fortran 10.1 on PPC cannot create shared libs itself - _LT_TAGVAR(whole_archive_flag_spec, $1)='--whole-archive$convenience --no-whole-archive' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= - _LT_TAGVAR(hardcode_libdir_flag_spec_ld, $1)='-rpath $libdir' - _LT_TAGVAR(archive_cmds, $1)='$LD -shared $libobjs $deplibs $linker_flags -soname $soname -o $lib' - if test "x$supports_anon_versioning" = xyes; then - _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ - cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ - echo "local: *; };" >> $output_objdir/$libname.ver~ - $LD -shared $libobjs $deplibs $linker_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib' - fi - ;; - esac - else - _LT_TAGVAR(ld_shlibs, $1)=no - fi - ;; - - netbsd*) - if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then - _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' - wlarc= - else - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' - fi - ;; - - solaris*) - if $LD -v 2>&1 | $GREP 'BFD 2\.8' > /dev/null; then - _LT_TAGVAR(ld_shlibs, $1)=no - cat <<_LT_EOF 1>&2 - -*** Warning: The releases 2.8.* of the GNU linker cannot reliably -*** create shared libraries on Solaris systems. Therefore, libtool -*** is disabling shared libraries support. We urge you to upgrade GNU -*** binutils to release 2.9.1 or newer. Another option is to modify -*** your PATH or compiler configuration so that the native linker is -*** used, and then restart. - -_LT_EOF - elif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' - else - _LT_TAGVAR(ld_shlibs, $1)=no - fi - ;; - - sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) - case `$LD -v 2>&1` in - *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.1[[0-5]].*) - _LT_TAGVAR(ld_shlibs, $1)=no - cat <<_LT_EOF 1>&2 - -*** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not -*** reliably create shared libraries on SCO systems. Therefore, libtool -*** is disabling shared libraries support. We urge you to upgrade GNU -*** binutils to release 2.16.91.0.3 or newer. Another option is to modify -*** your PATH or compiler configuration so that the native linker is -*** used, and then restart. - -_LT_EOF - ;; - *) - # For security reasons, it is highly recommended that you always - # use absolute paths for naming shared libraries, and exclude the - # DT_RUNPATH tag from executables and libraries. But doing so - # requires that you compile everything twice, which is a pain. - if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' - else - _LT_TAGVAR(ld_shlibs, $1)=no - fi - ;; - esac - ;; - - sunos4*) - _LT_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' - wlarc= - _LT_TAGVAR(hardcode_direct, $1)=yes - _LT_TAGVAR(hardcode_shlibpath_var, $1)=no - ;; - - *) - if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' - else - _LT_TAGVAR(ld_shlibs, $1)=no - fi - ;; - esac - - if test "$_LT_TAGVAR(ld_shlibs, $1)" = no; then - runpath_var= - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= - _LT_TAGVAR(export_dynamic_flag_spec, $1)= - _LT_TAGVAR(whole_archive_flag_spec, $1)= - fi - else - # PORTME fill in a description of your system's linker (not GNU ld) - case $host_os in - aix3*) - _LT_TAGVAR(allow_undefined_flag, $1)=unsupported - _LT_TAGVAR(always_export_symbols, $1)=yes - _LT_TAGVAR(archive_expsym_cmds, $1)='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' - # Note: this linker hardcodes the directories in LIBPATH if there - # are no directories specified by -L. - _LT_TAGVAR(hardcode_minus_L, $1)=yes - if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then - # Neither direct hardcoding nor static linking is supported with a - # broken collect2. - _LT_TAGVAR(hardcode_direct, $1)=unsupported - fi - ;; - - aix[[4-9]]*) - if test "$host_cpu" = ia64; then - # On IA64, the linker does run time linking by default, so we don't - # have to do anything special. - aix_use_runtimelinking=no - exp_sym_flag='-Bexport' - no_entry_flag="" - else - # If we're using GNU nm, then we don't want the "-C" option. - # -C means demangle to AIX nm, but means don't demangle with GNU nm - # Also, AIX nm treats weak defined symbols like other global - # defined symbols, whereas GNU nm marks them as "W". - if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then - _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' - else - _LT_TAGVAR(export_symbols_cmds, $1)='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' - fi - aix_use_runtimelinking=no - - # Test if we are trying to use run time linking or normal - # AIX style linking. If -brtl is somewhere in LDFLAGS, we - # need to do runtime linking. - case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*) - for ld_flag in $LDFLAGS; do - if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then - aix_use_runtimelinking=yes - break - fi - done - ;; - esac - - exp_sym_flag='-bexport' - no_entry_flag='-bnoentry' - fi - - # When large executables or shared objects are built, AIX ld can - # have problems creating the table of contents. If linking a library - # or program results in "error TOC overflow" add -mminimal-toc to - # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not - # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. - - _LT_TAGVAR(archive_cmds, $1)='' - _LT_TAGVAR(hardcode_direct, $1)=yes - _LT_TAGVAR(hardcode_direct_absolute, $1)=yes - _LT_TAGVAR(hardcode_libdir_separator, $1)=':' - _LT_TAGVAR(link_all_deplibs, $1)=yes - _LT_TAGVAR(file_list_spec, $1)='${wl}-f,' - - if test "$GCC" = yes; then - case $host_os in aix4.[[012]]|aix4.[[012]].*) - # We only want to do this on AIX 4.2 and lower, the check - # below for broken collect2 doesn't work under 4.3+ - collect2name=`${CC} -print-prog-name=collect2` - if test -f "$collect2name" && - strings "$collect2name" | $GREP resolve_lib_name >/dev/null - then - # We have reworked collect2 - : - else - # We have old collect2 - _LT_TAGVAR(hardcode_direct, $1)=unsupported - # It fails to find uninstalled libraries when the uninstalled - # path is not listed in the libpath. Setting hardcode_minus_L - # to unsupported forces relinking - _LT_TAGVAR(hardcode_minus_L, $1)=yes - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' - _LT_TAGVAR(hardcode_libdir_separator, $1)= - fi - ;; - esac - shared_flag='-shared' - if test "$aix_use_runtimelinking" = yes; then - shared_flag="$shared_flag "'${wl}-G' - fi - else - # not using gcc - if test "$host_cpu" = ia64; then - # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release - # chokes on -Wl,-G. The following line is correct: - shared_flag='-G' - else - if test "$aix_use_runtimelinking" = yes; then - shared_flag='${wl}-G' - else - shared_flag='${wl}-bM:SRE' - fi - fi - fi - - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-bexpall' - # It seems that -bexpall does not export symbols beginning with - # underscore (_), so it is better to generate a list of symbols to export. - _LT_TAGVAR(always_export_symbols, $1)=yes - if test "$aix_use_runtimelinking" = yes; then - # Warning - without using the other runtime loading flags (-brtl), - # -berok will link without error, but may produce a broken library. - _LT_TAGVAR(allow_undefined_flag, $1)='-berok' - # Determine the default libpath from the value encoded in an - # empty executable. - _LT_SYS_MODULE_PATH_AIX([$1]) - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then func_echo_all "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" - else - if test "$host_cpu" = ia64; then - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib' - _LT_TAGVAR(allow_undefined_flag, $1)="-z nodefs" - _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" - else - # Determine the default libpath from the value encoded in an - # empty executable. - _LT_SYS_MODULE_PATH_AIX([$1]) - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" - # Warning - without using the other run time loading flags, - # -berok will link without error, but may produce a broken library. - _LT_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok' - _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok' - if test "$with_gnu_ld" = yes; then - # We only use this code for GNU lds that support --whole-archive. - _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive' - else - # Exported symbols can be pulled into shared objects from archives - _LT_TAGVAR(whole_archive_flag_spec, $1)='$convenience' - fi - _LT_TAGVAR(archive_cmds_need_lc, $1)=yes - # This is similar to how AIX traditionally builds its shared libraries. - _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' - fi - fi - ;; - - amigaos*) - case $host_cpu in - powerpc) - # see comment about AmigaOS4 .so support - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='' - ;; - m68k) - _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' - _LT_TAGVAR(hardcode_minus_L, $1)=yes - ;; - esac - ;; - - bsdi[[45]]*) - _LT_TAGVAR(export_dynamic_flag_spec, $1)=-rdynamic - ;; - - cygwin* | mingw* | pw32* | cegcc*) - # When not using gcc, we currently assume that we are using - # Microsoft Visual C++. - # hardcode_libdir_flag_spec is actually meaningless, as there is - # no search path for DLLs. - case $cc_basename in - cl*) - # Native MSVC - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' - _LT_TAGVAR(allow_undefined_flag, $1)=unsupported - _LT_TAGVAR(always_export_symbols, $1)=yes - _LT_TAGVAR(file_list_spec, $1)='@' - # Tell ltmain to make .lib files, not .a files. - libext=lib - # Tell ltmain to make .dll files, not .so files. - shrext_cmds=".dll" - # FIXME: Setting linknames here is a bad hack. - _LT_TAGVAR(archive_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-dll~linknames=' - _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then - sed -n -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' -e '1\\\!p' < $export_symbols > $output_objdir/$soname.exp; - else - sed -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' < $export_symbols > $output_objdir/$soname.exp; - fi~ - $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ - linknames=' - # The linker will not automatically build a static lib if we build a DLL. - # _LT_TAGVAR(old_archive_from_new_cmds, $1)='true' - _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes - _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1,DATA/'\'' | $SED -e '\''/^[[AITW]][[ ]]/s/.*[[ ]]//'\'' | sort | uniq > $export_symbols' - # Don't use ranlib - _LT_TAGVAR(old_postinstall_cmds, $1)='chmod 644 $oldlib' - _LT_TAGVAR(postlink_cmds, $1)='lt_outputfile="@OUTPUT@"~ - lt_tool_outputfile="@TOOL_OUTPUT@"~ - case $lt_outputfile in - *.exe|*.EXE) ;; - *) - lt_outputfile="$lt_outputfile.exe" - lt_tool_outputfile="$lt_tool_outputfile.exe" - ;; - esac~ - if test "$MANIFEST_TOOL" != ":" && test -f "$lt_outputfile.manifest"; then - $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; - $RM "$lt_outputfile.manifest"; - fi' - ;; - *) - # Assume MSVC wrapper - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' - _LT_TAGVAR(allow_undefined_flag, $1)=unsupported - # Tell ltmain to make .lib files, not .a files. - libext=lib - # Tell ltmain to make .dll files, not .so files. - shrext_cmds=".dll" - # FIXME: Setting linknames here is a bad hack. - _LT_TAGVAR(archive_cmds, $1)='$CC -o $lib $libobjs $compiler_flags `func_echo_all "$deplibs" | $SED '\''s/ -lc$//'\''` -link -dll~linknames=' - # The linker will automatically build a .lib file if we build a DLL. - _LT_TAGVAR(old_archive_from_new_cmds, $1)='true' - # FIXME: Should let the user specify the lib program. - _LT_TAGVAR(old_archive_cmds, $1)='lib -OUT:$oldlib$oldobjs$old_deplibs' - _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes - ;; - esac - ;; - - darwin* | rhapsody*) - _LT_DARWIN_LINKER_FEATURES($1) - ;; - - dgux*) - _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' - _LT_TAGVAR(hardcode_shlibpath_var, $1)=no - ;; - - freebsd1*) - _LT_TAGVAR(ld_shlibs, $1)=no - ;; - - # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor - # support. Future versions do this automatically, but an explicit c++rt0.o - # does not break anything, and helps significantly (at the cost of a little - # extra space). - freebsd2.2*) - _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' - _LT_TAGVAR(hardcode_direct, $1)=yes - _LT_TAGVAR(hardcode_shlibpath_var, $1)=no - ;; - - # Unfortunately, older versions of FreeBSD 2 do not have this feature. - freebsd2*) - _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' - _LT_TAGVAR(hardcode_direct, $1)=yes - _LT_TAGVAR(hardcode_minus_L, $1)=yes - _LT_TAGVAR(hardcode_shlibpath_var, $1)=no - ;; - - # FreeBSD 3 and greater uses gcc -shared to do shared libraries. - freebsd* | dragonfly*) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' - _LT_TAGVAR(hardcode_direct, $1)=yes - _LT_TAGVAR(hardcode_shlibpath_var, $1)=no - ;; - - hpux9*) - if test "$GCC" = yes; then - _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared $pic_flag ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' - else - _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' - fi - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' - _LT_TAGVAR(hardcode_libdir_separator, $1)=: - _LT_TAGVAR(hardcode_direct, $1)=yes - - # hardcode_minus_L: Not really in the search PATH, - # but as the default location of the library. - _LT_TAGVAR(hardcode_minus_L, $1)=yes - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' - ;; - - hpux10*) - if test "$GCC" = yes && test "$with_gnu_ld" = no; then - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' - else - _LT_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' - fi - if test "$with_gnu_ld" = no; then - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' - _LT_TAGVAR(hardcode_libdir_flag_spec_ld, $1)='+b $libdir' - _LT_TAGVAR(hardcode_libdir_separator, $1)=: - _LT_TAGVAR(hardcode_direct, $1)=yes - _LT_TAGVAR(hardcode_direct_absolute, $1)=yes - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' - # hardcode_minus_L: Not really in the search PATH, - # but as the default location of the library. - _LT_TAGVAR(hardcode_minus_L, $1)=yes - fi - ;; - - hpux11*) - if test "$GCC" = yes && test "$with_gnu_ld" = no; then - case $host_cpu in - hppa*64*) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' - ;; - ia64*) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' - ;; - *) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' - ;; - esac - else - case $host_cpu in - hppa*64*) - _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' - ;; - ia64*) - _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' - ;; - *) - m4_if($1, [], [ - # Older versions of the 11.00 compiler do not understand -b yet - # (HP92453-01 A.11.01.20 doesn't, HP92453-01 B.11.X.35175-35176.GP does) - _LT_LINKER_OPTION([if $CC understands -b], - _LT_TAGVAR(lt_cv_prog_compiler__b, $1), [-b], - [_LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags'], - [_LT_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags'])], - [_LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags']) - ;; - esac - fi - if test "$with_gnu_ld" = no; then - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' - _LT_TAGVAR(hardcode_libdir_separator, $1)=: - - case $host_cpu in - hppa*64*|ia64*) - _LT_TAGVAR(hardcode_direct, $1)=no - _LT_TAGVAR(hardcode_shlibpath_var, $1)=no - ;; - *) - _LT_TAGVAR(hardcode_direct, $1)=yes - _LT_TAGVAR(hardcode_direct_absolute, $1)=yes - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' - - # hardcode_minus_L: Not really in the search PATH, - # but as the default location of the library. - _LT_TAGVAR(hardcode_minus_L, $1)=yes - ;; - esac - fi - ;; - - irix5* | irix6* | nonstopux*) - if test "$GCC" = yes; then - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' - # Try to use the -exported_symbol ld option, if it does not - # work, assume that -exports_file does not work either and - # implicitly export all symbols. - # This should be the same for all languages, so no per-tag cache variable. - AC_CACHE_CHECK([whether the $host_os linker accepts -exported_symbol], - [lt_cv_irix_exported_symbol], - [save_LDFLAGS="$LDFLAGS" - LDFLAGS="$LDFLAGS -shared ${wl}-exported_symbol ${wl}foo ${wl}-update_registry ${wl}/dev/null" - AC_LINK_IFELSE( - [AC_LANG_SOURCE( - [AC_LANG_CASE([C], [[int foo (void) { return 0; }]], - [C++], [[int foo (void) { return 0; }]], - [Fortran 77], [[ - subroutine foo - end]], - [Fortran], [[ - subroutine foo - end]])])], - [lt_cv_irix_exported_symbol=yes], - [lt_cv_irix_exported_symbol=no]) - LDFLAGS="$save_LDFLAGS"]) - if test "$lt_cv_irix_exported_symbol" = yes; then - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations ${wl}-exports_file ${wl}$export_symbols -o $lib' - fi - else - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -exports_file $export_symbols -o $lib' - fi - _LT_TAGVAR(archive_cmds_need_lc, $1)='no' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' - _LT_TAGVAR(hardcode_libdir_separator, $1)=: - _LT_TAGVAR(inherit_rpath, $1)=yes - _LT_TAGVAR(link_all_deplibs, $1)=yes - ;; - - netbsd*) - if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then - _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out - else - _LT_TAGVAR(archive_cmds, $1)='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF - fi - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' - _LT_TAGVAR(hardcode_direct, $1)=yes - _LT_TAGVAR(hardcode_shlibpath_var, $1)=no - ;; - - newsos6) - _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' - _LT_TAGVAR(hardcode_direct, $1)=yes - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' - _LT_TAGVAR(hardcode_libdir_separator, $1)=: - _LT_TAGVAR(hardcode_shlibpath_var, $1)=no - ;; - - *nto* | *qnx*) - ;; - - openbsd*) - if test -f /usr/libexec/ld.so; then - _LT_TAGVAR(hardcode_direct, $1)=yes - _LT_TAGVAR(hardcode_shlibpath_var, $1)=no - _LT_TAGVAR(hardcode_direct_absolute, $1)=yes - if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' - else - case $host_os in - openbsd[[01]].* | openbsd2.[[0-7]] | openbsd2.[[0-7]].*) - _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' - ;; - *) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' - ;; - esac - fi - else - _LT_TAGVAR(ld_shlibs, $1)=no - fi - ;; - - os2*) - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' - _LT_TAGVAR(hardcode_minus_L, $1)=yes - _LT_TAGVAR(allow_undefined_flag, $1)=unsupported - _LT_TAGVAR(archive_cmds, $1)='$ECHO "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~echo DATA >> $output_objdir/$libname.def~echo " SINGLE NONSHARED" >> $output_objdir/$libname.def~echo EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def' - _LT_TAGVAR(old_archive_from_new_cmds, $1)='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def' - ;; - - osf3*) - if test "$GCC" = yes; then - _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' - _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' - else - _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' - _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' - fi - _LT_TAGVAR(archive_cmds_need_lc, $1)='no' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' - _LT_TAGVAR(hardcode_libdir_separator, $1)=: - ;; - - osf4* | osf5*) # as osf3* with the addition of -msym flag - if test "$GCC" = yes; then - _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' - _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $pic_flag $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' - else - _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' - _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; printf "%s\\n" "-hidden">> $lib.exp~ - $CC -shared${allow_undefined_flag} ${wl}-input ${wl}$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib~$RM $lib.exp' - - # Both c and cxx compiler support -rpath directly - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' - fi - _LT_TAGVAR(archive_cmds_need_lc, $1)='no' - _LT_TAGVAR(hardcode_libdir_separator, $1)=: - ;; - - solaris*) - _LT_TAGVAR(no_undefined_flag, $1)=' -z defs' - if test "$GCC" = yes; then - wlarc='${wl}' - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}-z ${wl}text ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ - $CC -shared $pic_flag ${wl}-z ${wl}text ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' - else - case `$CC -V 2>&1` in - *"Compilers 5.0"*) - wlarc='' - _LT_TAGVAR(archive_cmds, $1)='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' - _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ - $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$RM $lib.exp' - ;; - *) - wlarc='${wl}' - _LT_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ - $CC -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' - ;; - esac - fi - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' - _LT_TAGVAR(hardcode_shlibpath_var, $1)=no - case $host_os in - solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; - *) - # The compiler driver will combine and reorder linker options, - # but understands `-z linker_flag'. GCC discards it without `$wl', - # but is careful enough not to reorder. - # Supported since Solaris 2.6 (maybe 2.5.1?) - if test "$GCC" = yes; then - _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' - else - _LT_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract' - fi - ;; - esac - _LT_TAGVAR(link_all_deplibs, $1)=yes - ;; - - sunos4*) - if test "x$host_vendor" = xsequent; then - # Use $CC to link under sequent, because it throws in some extra .o - # files that make .init and .fini sections work. - _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags' - else - _LT_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' - fi - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' - _LT_TAGVAR(hardcode_direct, $1)=yes - _LT_TAGVAR(hardcode_minus_L, $1)=yes - _LT_TAGVAR(hardcode_shlibpath_var, $1)=no - ;; - - sysv4) - case $host_vendor in - sni) - _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' - _LT_TAGVAR(hardcode_direct, $1)=yes # is this really true??? - ;; - siemens) - ## LD is ld it makes a PLAMLIB - ## CC just makes a GrossModule. - _LT_TAGVAR(archive_cmds, $1)='$LD -G -o $lib $libobjs $deplibs $linker_flags' - _LT_TAGVAR(reload_cmds, $1)='$CC -r -o $output$reload_objs' - _LT_TAGVAR(hardcode_direct, $1)=no - ;; - motorola) - _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' - _LT_TAGVAR(hardcode_direct, $1)=no #Motorola manual says yes, but my tests say they lie - ;; - esac - runpath_var='LD_RUN_PATH' - _LT_TAGVAR(hardcode_shlibpath_var, $1)=no - ;; - - sysv4.3*) - _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' - _LT_TAGVAR(hardcode_shlibpath_var, $1)=no - _LT_TAGVAR(export_dynamic_flag_spec, $1)='-Bexport' - ;; - - sysv4*MP*) - if test -d /usr/nec; then - _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' - _LT_TAGVAR(hardcode_shlibpath_var, $1)=no - runpath_var=LD_RUN_PATH - hardcode_runpath_var=yes - _LT_TAGVAR(ld_shlibs, $1)=yes - fi - ;; - - sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*) - _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' - _LT_TAGVAR(archive_cmds_need_lc, $1)=no - _LT_TAGVAR(hardcode_shlibpath_var, $1)=no - runpath_var='LD_RUN_PATH' - - if test "$GCC" = yes; then - _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - else - _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - fi - ;; - - sysv5* | sco3.2v5* | sco5v6*) - # Note: We can NOT use -z defs as we might desire, because we do not - # link with -lc, and that would cause any symbols used from libc to - # always be unresolved, which means just about no library would - # ever link correctly. If we're not using GNU ld we use -z text - # though, which does catch some bad symbols but isn't as heavy-handed - # as -z defs. - _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' - _LT_TAGVAR(allow_undefined_flag, $1)='${wl}-z,nodefs' - _LT_TAGVAR(archive_cmds_need_lc, $1)=no - _LT_TAGVAR(hardcode_shlibpath_var, $1)=no - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R,$libdir' - _LT_TAGVAR(hardcode_libdir_separator, $1)=':' - _LT_TAGVAR(link_all_deplibs, $1)=yes - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport' - runpath_var='LD_RUN_PATH' - - if test "$GCC" = yes; then - _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - else - _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - fi - ;; - - uts4*) - _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' - _LT_TAGVAR(hardcode_shlibpath_var, $1)=no - ;; - - *) - _LT_TAGVAR(ld_shlibs, $1)=no - ;; - esac - - if test x$host_vendor = xsni; then - case $host in - sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Blargedynsym' - ;; - esac - fi - fi -]) -AC_MSG_RESULT([$_LT_TAGVAR(ld_shlibs, $1)]) -test "$_LT_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no - -_LT_TAGVAR(with_gnu_ld, $1)=$with_gnu_ld - -_LT_DECL([], [libext], [0], [Old archive suffix (normally "a")])dnl -_LT_DECL([], [shrext_cmds], [1], [Shared library suffix (normally ".so")])dnl -_LT_DECL([], [extract_expsyms_cmds], [2], - [The commands to extract the exported symbol list from a shared archive]) - -# -# Do we need to explicitly link libc? -# -case "x$_LT_TAGVAR(archive_cmds_need_lc, $1)" in -x|xyes) - # Assume -lc should be added - _LT_TAGVAR(archive_cmds_need_lc, $1)=yes - - if test "$enable_shared" = yes && test "$GCC" = yes; then - case $_LT_TAGVAR(archive_cmds, $1) in - *'~'*) - # FIXME: we may have to deal with multi-command sequences. - ;; - '$CC '*) - # Test whether the compiler implicitly links with -lc since on some - # systems, -lgcc has to come before -lc. If gcc already passes -lc - # to ld, don't add -lc before -lgcc. - AC_CACHE_CHECK([whether -lc should be explicitly linked in], - [lt_cv_]_LT_TAGVAR(archive_cmds_need_lc, $1), - [$RM conftest* - echo "$lt_simple_compile_test_code" > conftest.$ac_ext - - if AC_TRY_EVAL(ac_compile) 2>conftest.err; then - soname=conftest - lib=conftest - libobjs=conftest.$ac_objext - deplibs= - wl=$_LT_TAGVAR(lt_prog_compiler_wl, $1) - pic_flag=$_LT_TAGVAR(lt_prog_compiler_pic, $1) - compiler_flags=-v - linker_flags=-v - verstring= - output_objdir=. - libname=conftest - lt_save_allow_undefined_flag=$_LT_TAGVAR(allow_undefined_flag, $1) - _LT_TAGVAR(allow_undefined_flag, $1)= - if AC_TRY_EVAL(_LT_TAGVAR(archive_cmds, $1) 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1) - then - lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1)=no - else - lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1)=yes - fi - _LT_TAGVAR(allow_undefined_flag, $1)=$lt_save_allow_undefined_flag - else - cat conftest.err 1>&5 - fi - $RM conftest* - ]) - _LT_TAGVAR(archive_cmds_need_lc, $1)=$lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1) - ;; - esac - fi - ;; -esac - -_LT_TAGDECL([build_libtool_need_lc], [archive_cmds_need_lc], [0], - [Whether or not to add -lc for building shared libraries]) -_LT_TAGDECL([allow_libtool_libs_with_static_runtimes], - [enable_shared_with_static_runtimes], [0], - [Whether or not to disallow shared libs when runtime libs are static]) -_LT_TAGDECL([], [export_dynamic_flag_spec], [1], - [Compiler flag to allow reflexive dlopens]) -_LT_TAGDECL([], [whole_archive_flag_spec], [1], - [Compiler flag to generate shared objects directly from archives]) -_LT_TAGDECL([], [compiler_needs_object], [1], - [Whether the compiler copes with passing no objects directly]) -_LT_TAGDECL([], [old_archive_from_new_cmds], [2], - [Create an old-style archive from a shared archive]) -_LT_TAGDECL([], [old_archive_from_expsyms_cmds], [2], - [Create a temporary old-style archive to link instead of a shared archive]) -_LT_TAGDECL([], [archive_cmds], [2], [Commands used to build a shared archive]) -_LT_TAGDECL([], [archive_expsym_cmds], [2]) -_LT_TAGDECL([], [module_cmds], [2], - [Commands used to build a loadable module if different from building - a shared archive.]) -_LT_TAGDECL([], [module_expsym_cmds], [2]) -_LT_TAGDECL([], [with_gnu_ld], [1], - [Whether we are building with GNU ld or not]) -_LT_TAGDECL([], [allow_undefined_flag], [1], - [Flag that allows shared libraries with undefined symbols to be built]) -_LT_TAGDECL([], [no_undefined_flag], [1], - [Flag that enforces no undefined symbols]) -_LT_TAGDECL([], [hardcode_libdir_flag_spec], [1], - [Flag to hardcode $libdir into a binary during linking. - This must work even if $libdir does not exist]) -_LT_TAGDECL([], [hardcode_libdir_flag_spec_ld], [1], - [[If ld is used when linking, flag to hardcode $libdir into a binary - during linking. This must work even if $libdir does not exist]]) -_LT_TAGDECL([], [hardcode_libdir_separator], [1], - [Whether we need a single "-rpath" flag with a separated argument]) -_LT_TAGDECL([], [hardcode_direct], [0], - [Set to "yes" if using DIR/libNAME${shared_ext} during linking hardcodes - DIR into the resulting binary]) -_LT_TAGDECL([], [hardcode_direct_absolute], [0], - [Set to "yes" if using DIR/libNAME${shared_ext} during linking hardcodes - DIR into the resulting binary and the resulting library dependency is - "absolute", i.e impossible to change by setting ${shlibpath_var} if the - library is relocated]) -_LT_TAGDECL([], [hardcode_minus_L], [0], - [Set to "yes" if using the -LDIR flag during linking hardcodes DIR - into the resulting binary]) -_LT_TAGDECL([], [hardcode_shlibpath_var], [0], - [Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR - into the resulting binary]) -_LT_TAGDECL([], [hardcode_automatic], [0], - [Set to "yes" if building a shared library automatically hardcodes DIR - into the library and all subsequent libraries and executables linked - against it]) -_LT_TAGDECL([], [inherit_rpath], [0], - [Set to yes if linker adds runtime paths of dependent libraries - to runtime path list]) -_LT_TAGDECL([], [link_all_deplibs], [0], - [Whether libtool must link a program against all its dependency libraries]) -_LT_TAGDECL([], [always_export_symbols], [0], - [Set to "yes" if exported symbols are required]) -_LT_TAGDECL([], [export_symbols_cmds], [2], - [The commands to list exported symbols]) -_LT_TAGDECL([], [exclude_expsyms], [1], - [Symbols that should not be listed in the preloaded symbols]) -_LT_TAGDECL([], [include_expsyms], [1], - [Symbols that must always be exported]) -_LT_TAGDECL([], [prelink_cmds], [2], - [Commands necessary for linking programs (against libraries) with templates]) -_LT_TAGDECL([], [postlink_cmds], [2], - [Commands necessary for finishing linking programs]) -_LT_TAGDECL([], [file_list_spec], [1], - [Specify filename containing input files]) -dnl FIXME: Not yet implemented -dnl _LT_TAGDECL([], [thread_safe_flag_spec], [1], -dnl [Compiler flag to generate thread safe objects]) -])# _LT_LINKER_SHLIBS - - -# _LT_LANG_C_CONFIG([TAG]) -# ------------------------ -# Ensure that the configuration variables for a C compiler are suitably -# defined. These variables are subsequently used by _LT_CONFIG to write -# the compiler configuration to `libtool'. -m4_defun([_LT_LANG_C_CONFIG], -[m4_require([_LT_DECL_EGREP])dnl -lt_save_CC="$CC" -AC_LANG_PUSH(C) - -# Source file extension for C test sources. -ac_ext=c - -# Object file extension for compiled C test sources. -objext=o -_LT_TAGVAR(objext, $1)=$objext - -# Code to be used in simple compile tests -lt_simple_compile_test_code="int some_variable = 0;" - -# Code to be used in simple link tests -lt_simple_link_test_code='int main(){return(0);}' - -_LT_TAG_COMPILER -# Save the default compiler, since it gets overwritten when the other -# tags are being tested, and _LT_TAGVAR(compiler, []) is a NOP. -compiler_DEFAULT=$CC - -# save warnings/boilerplate of simple test code -_LT_COMPILER_BOILERPLATE -_LT_LINKER_BOILERPLATE - -if test -n "$compiler"; then - _LT_COMPILER_NO_RTTI($1) - _LT_COMPILER_PIC($1) - _LT_COMPILER_C_O($1) - _LT_COMPILER_FILE_LOCKS($1) - _LT_LINKER_SHLIBS($1) - _LT_SYS_DYNAMIC_LINKER($1) - _LT_LINKER_HARDCODE_LIBPATH($1) - LT_SYS_DLOPEN_SELF - _LT_CMD_STRIPLIB - - # Report which library types will actually be built - AC_MSG_CHECKING([if libtool supports shared libraries]) - AC_MSG_RESULT([$can_build_shared]) - - AC_MSG_CHECKING([whether to build shared libraries]) - test "$can_build_shared" = "no" && enable_shared=no - - # On AIX, shared libraries and static libraries use the same namespace, and - # are all built from PIC. - case $host_os in - aix3*) - test "$enable_shared" = yes && enable_static=no - if test -n "$RANLIB"; then - archive_cmds="$archive_cmds~\$RANLIB \$lib" - postinstall_cmds='$RANLIB $lib' - fi - ;; - - aix[[4-9]]*) - if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then - test "$enable_shared" = yes && enable_static=no - fi - ;; - esac - AC_MSG_RESULT([$enable_shared]) - - AC_MSG_CHECKING([whether to build static libraries]) - # Make sure either enable_shared or enable_static is yes. - test "$enable_shared" = yes || enable_static=yes - AC_MSG_RESULT([$enable_static]) - - _LT_CONFIG($1) -fi -AC_LANG_POP -CC="$lt_save_CC" -])# _LT_LANG_C_CONFIG - - -# _LT_LANG_CXX_CONFIG([TAG]) -# -------------------------- -# Ensure that the configuration variables for a C++ compiler are suitably -# defined. These variables are subsequently used by _LT_CONFIG to write -# the compiler configuration to `libtool'. -m4_defun([_LT_LANG_CXX_CONFIG], -[m4_require([_LT_FILEUTILS_DEFAULTS])dnl -m4_require([_LT_DECL_EGREP])dnl -m4_require([_LT_PATH_MANIFEST_TOOL])dnl -if test -n "$CXX" && ( test "X$CXX" != "Xno" && - ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) || - (test "X$CXX" != "Xg++"))) ; then - AC_PROG_CXXCPP -else - _lt_caught_CXX_error=yes -fi - -AC_LANG_PUSH(C++) -_LT_TAGVAR(archive_cmds_need_lc, $1)=no -_LT_TAGVAR(allow_undefined_flag, $1)= -_LT_TAGVAR(always_export_symbols, $1)=no -_LT_TAGVAR(archive_expsym_cmds, $1)= -_LT_TAGVAR(compiler_needs_object, $1)=no -_LT_TAGVAR(export_dynamic_flag_spec, $1)= -_LT_TAGVAR(hardcode_direct, $1)=no -_LT_TAGVAR(hardcode_direct_absolute, $1)=no -_LT_TAGVAR(hardcode_libdir_flag_spec, $1)= -_LT_TAGVAR(hardcode_libdir_flag_spec_ld, $1)= -_LT_TAGVAR(hardcode_libdir_separator, $1)= -_LT_TAGVAR(hardcode_minus_L, $1)=no -_LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported -_LT_TAGVAR(hardcode_automatic, $1)=no -_LT_TAGVAR(inherit_rpath, $1)=no -_LT_TAGVAR(module_cmds, $1)= -_LT_TAGVAR(module_expsym_cmds, $1)= -_LT_TAGVAR(link_all_deplibs, $1)=unknown -_LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds -_LT_TAGVAR(reload_flag, $1)=$reload_flag -_LT_TAGVAR(reload_cmds, $1)=$reload_cmds -_LT_TAGVAR(no_undefined_flag, $1)= -_LT_TAGVAR(whole_archive_flag_spec, $1)= -_LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no - -# Source file extension for C++ test sources. -ac_ext=cpp - -# Object file extension for compiled C++ test sources. -objext=o -_LT_TAGVAR(objext, $1)=$objext - -# No sense in running all these tests if we already determined that -# the CXX compiler isn't working. Some variables (like enable_shared) -# are currently assumed to apply to all compilers on this platform, -# and will be corrupted by setting them based on a non-working compiler. -if test "$_lt_caught_CXX_error" != yes; then - # Code to be used in simple compile tests - lt_simple_compile_test_code="int some_variable = 0;" - - # Code to be used in simple link tests - lt_simple_link_test_code='int main(int, char *[[]]) { return(0); }' - - # ltmain only uses $CC for tagged configurations so make sure $CC is set. - _LT_TAG_COMPILER - - # save warnings/boilerplate of simple test code - _LT_COMPILER_BOILERPLATE - _LT_LINKER_BOILERPLATE - - # Allow CC to be a program name with arguments. - lt_save_CC=$CC - lt_save_CFLAGS=$CFLAGS - lt_save_LD=$LD - lt_save_GCC=$GCC - GCC=$GXX - lt_save_with_gnu_ld=$with_gnu_ld - lt_save_path_LD=$lt_cv_path_LD - if test -n "${lt_cv_prog_gnu_ldcxx+set}"; then - lt_cv_prog_gnu_ld=$lt_cv_prog_gnu_ldcxx - else - $as_unset lt_cv_prog_gnu_ld - fi - if test -n "${lt_cv_path_LDCXX+set}"; then - lt_cv_path_LD=$lt_cv_path_LDCXX - else - $as_unset lt_cv_path_LD - fi - test -z "${LDCXX+set}" || LD=$LDCXX - CC=${CXX-"c++"} - CFLAGS=$CXXFLAGS - compiler=$CC - _LT_TAGVAR(compiler, $1)=$CC - _LT_CC_BASENAME([$compiler]) - - if test -n "$compiler"; then - # We don't want -fno-exception when compiling C++ code, so set the - # no_builtin_flag separately - if test "$GXX" = yes; then - _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' - else - _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)= - fi - - if test "$GXX" = yes; then - # Set up default GNU C++ configuration - - LT_PATH_LD - - # Check if GNU C++ uses GNU ld as the underlying linker, since the - # archiving commands below assume that GNU ld is being used. - if test "$with_gnu_ld" = yes; then - _LT_TAGVAR(archive_cmds, $1)='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' - - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' - - # If archive_cmds runs LD, not CC, wlarc should be empty - # XXX I think wlarc can be eliminated in ltcf-cxx, but I need to - # investigate it a little bit more. (MM) - wlarc='${wl}' - - # ancient GNU ld didn't support --whole-archive et. al. - if eval "`$CC -print-prog-name=ld` --help 2>&1" | - $GREP 'no-whole-archive' > /dev/null; then - _LT_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' - else - _LT_TAGVAR(whole_archive_flag_spec, $1)= - fi - else - with_gnu_ld=no - wlarc= - - # A generic and very simple default shared library creation - # command for GNU C++ for the case where it uses the native - # linker, instead of GNU ld. If possible, this setting should - # overridden to take advantage of the native linker features on - # the platform it is being used on. - _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' - fi - - # Commands to make compiler produce verbose output that lists - # what "hidden" libraries, object files and flags are used when - # linking a shared library. - output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' - - else - GXX=no - with_gnu_ld=no - wlarc= - fi - - # PORTME: fill in a description of your system's C++ link characteristics - AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries]) - _LT_TAGVAR(ld_shlibs, $1)=yes - case $host_os in - aix3*) - # FIXME: insert proper C++ library support - _LT_TAGVAR(ld_shlibs, $1)=no - ;; - aix[[4-9]]*) - if test "$host_cpu" = ia64; then - # On IA64, the linker does run time linking by default, so we don't - # have to do anything special. - aix_use_runtimelinking=no - exp_sym_flag='-Bexport' - no_entry_flag="" - else - aix_use_runtimelinking=no - - # Test if we are trying to use run time linking or normal - # AIX style linking. If -brtl is somewhere in LDFLAGS, we - # need to do runtime linking. - case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*) - for ld_flag in $LDFLAGS; do - case $ld_flag in - *-brtl*) - aix_use_runtimelinking=yes - break - ;; - esac - done - ;; - esac - - exp_sym_flag='-bexport' - no_entry_flag='-bnoentry' - fi - - # When large executables or shared objects are built, AIX ld can - # have problems creating the table of contents. If linking a library - # or program results in "error TOC overflow" add -mminimal-toc to - # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not - # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. - - _LT_TAGVAR(archive_cmds, $1)='' - _LT_TAGVAR(hardcode_direct, $1)=yes - _LT_TAGVAR(hardcode_direct_absolute, $1)=yes - _LT_TAGVAR(hardcode_libdir_separator, $1)=':' - _LT_TAGVAR(link_all_deplibs, $1)=yes - _LT_TAGVAR(file_list_spec, $1)='${wl}-f,' - - if test "$GXX" = yes; then - case $host_os in aix4.[[012]]|aix4.[[012]].*) - # We only want to do this on AIX 4.2 and lower, the check - # below for broken collect2 doesn't work under 4.3+ - collect2name=`${CC} -print-prog-name=collect2` - if test -f "$collect2name" && - strings "$collect2name" | $GREP resolve_lib_name >/dev/null - then - # We have reworked collect2 - : - else - # We have old collect2 - _LT_TAGVAR(hardcode_direct, $1)=unsupported - # It fails to find uninstalled libraries when the uninstalled - # path is not listed in the libpath. Setting hardcode_minus_L - # to unsupported forces relinking - _LT_TAGVAR(hardcode_minus_L, $1)=yes - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' - _LT_TAGVAR(hardcode_libdir_separator, $1)= - fi - esac - shared_flag='-shared' - if test "$aix_use_runtimelinking" = yes; then - shared_flag="$shared_flag "'${wl}-G' - fi - else - # not using gcc - if test "$host_cpu" = ia64; then - # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release - # chokes on -Wl,-G. The following line is correct: - shared_flag='-G' - else - if test "$aix_use_runtimelinking" = yes; then - shared_flag='${wl}-G' - else - shared_flag='${wl}-bM:SRE' - fi - fi - fi - - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-bexpall' - # It seems that -bexpall does not export symbols beginning with - # underscore (_), so it is better to generate a list of symbols to - # export. - _LT_TAGVAR(always_export_symbols, $1)=yes - if test "$aix_use_runtimelinking" = yes; then - # Warning - without using the other runtime loading flags (-brtl), - # -berok will link without error, but may produce a broken library. - _LT_TAGVAR(allow_undefined_flag, $1)='-berok' - # Determine the default libpath from the value encoded in an empty - # executable. - _LT_SYS_MODULE_PATH_AIX([$1]) - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" - - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then func_echo_all "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" - else - if test "$host_cpu" = ia64; then - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib' - _LT_TAGVAR(allow_undefined_flag, $1)="-z nodefs" - _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" - else - # Determine the default libpath from the value encoded in an - # empty executable. - _LT_SYS_MODULE_PATH_AIX([$1]) - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" - # Warning - without using the other run time loading flags, - # -berok will link without error, but may produce a broken library. - _LT_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok' - _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok' - if test "$with_gnu_ld" = yes; then - # We only use this code for GNU lds that support --whole-archive. - _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive' - else - # Exported symbols can be pulled into shared objects from archives - _LT_TAGVAR(whole_archive_flag_spec, $1)='$convenience' - fi - _LT_TAGVAR(archive_cmds_need_lc, $1)=yes - # This is similar to how AIX traditionally builds its shared - # libraries. - _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' - fi - fi - ;; - - beos*) - if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then - _LT_TAGVAR(allow_undefined_flag, $1)=unsupported - # Joseph Beckenbach says some releases of gcc - # support --undefined. This deserves some investigation. FIXME - _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - else - _LT_TAGVAR(ld_shlibs, $1)=no - fi - ;; - - chorus*) - case $cc_basename in - *) - # FIXME: insert proper C++ library support - _LT_TAGVAR(ld_shlibs, $1)=no - ;; - esac - ;; - - cygwin* | mingw* | pw32* | cegcc*) - case $GXX,$cc_basename in - ,cl* | no,cl*) - # Native MSVC - # hardcode_libdir_flag_spec is actually meaningless, as there is - # no search path for DLLs. - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' - _LT_TAGVAR(allow_undefined_flag, $1)=unsupported - _LT_TAGVAR(always_export_symbols, $1)=yes - _LT_TAGVAR(file_list_spec, $1)='@' - # Tell ltmain to make .lib files, not .a files. - libext=lib - # Tell ltmain to make .dll files, not .so files. - shrext_cmds=".dll" - # FIXME: Setting linknames here is a bad hack. - _LT_TAGVAR(archive_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-dll~linknames=' - _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then - $SED -n -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' -e '1\\\!p' < $export_symbols > $output_objdir/$soname.exp; - else - $SED -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' < $export_symbols > $output_objdir/$soname.exp; - fi~ - $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ - linknames=' - # The linker will not automatically build a static lib if we build a DLL. - # _LT_TAGVAR(old_archive_from_new_cmds, $1)='true' - _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes - # Don't use ranlib - _LT_TAGVAR(old_postinstall_cmds, $1)='chmod 644 $oldlib' - _LT_TAGVAR(postlink_cmds, $1)='lt_outputfile="@OUTPUT@"~ - lt_tool_outputfile="@TOOL_OUTPUT@"~ - case $lt_outputfile in - *.exe|*.EXE) ;; - *) - lt_outputfile="$lt_outputfile.exe" - lt_tool_outputfile="$lt_tool_outputfile.exe" - ;; - esac~ - func_to_tool_file "$lt_outputfile"~ - if test "$MANIFEST_TOOL" != ":" && test -f "$lt_outputfile.manifest"; then - $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; - $RM "$lt_outputfile.manifest"; - fi' - ;; - *) - # g++ - # _LT_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, - # as there is no search path for DLLs. - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-all-symbols' - _LT_TAGVAR(allow_undefined_flag, $1)=unsupported - _LT_TAGVAR(always_export_symbols, $1)=no - _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes - - if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then - _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' - # If the export-symbols file already is a .def file (1st line - # is EXPORTS), use it as is; otherwise, prepend... - _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then - cp $export_symbols $output_objdir/$soname.def; - else - echo EXPORTS > $output_objdir/$soname.def; - cat $export_symbols >> $output_objdir/$soname.def; - fi~ - $CC -shared -nostdlib $output_objdir/$soname.def $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' - else - _LT_TAGVAR(ld_shlibs, $1)=no - fi - ;; - esac - ;; - darwin* | rhapsody*) - _LT_DARWIN_LINKER_FEATURES($1) - ;; - - dgux*) - case $cc_basename in - ec++*) - # FIXME: insert proper C++ library support - _LT_TAGVAR(ld_shlibs, $1)=no - ;; - ghcx*) - # Green Hills C++ Compiler - # FIXME: insert proper C++ library support - _LT_TAGVAR(ld_shlibs, $1)=no - ;; - *) - # FIXME: insert proper C++ library support - _LT_TAGVAR(ld_shlibs, $1)=no - ;; - esac - ;; - - freebsd[[12]]*) - # C++ shared libraries reported to be fairly broken before - # switch to ELF - _LT_TAGVAR(ld_shlibs, $1)=no - ;; - - freebsd-elf*) - _LT_TAGVAR(archive_cmds_need_lc, $1)=no - ;; - - freebsd* | dragonfly*) - # FreeBSD 3 and later use GNU C++ and GNU ld with standard ELF - # conventions - _LT_TAGVAR(ld_shlibs, $1)=yes - ;; - - gnu*) - ;; - - haiku*) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - _LT_TAGVAR(link_all_deplibs, $1)=yes - ;; - - hpux9*) - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' - _LT_TAGVAR(hardcode_libdir_separator, $1)=: - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' - _LT_TAGVAR(hardcode_direct, $1)=yes - _LT_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH, - # but as the default - # location of the library. - - case $cc_basename in - CC*) - # FIXME: insert proper C++ library support - _LT_TAGVAR(ld_shlibs, $1)=no - ;; - aCC*) - _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -b ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' - # Commands to make compiler produce verbose output that lists - # what "hidden" libraries, object files and flags are used when - # linking a shared library. - # - # There doesn't appear to be a way to prevent this compiler from - # explicitly linking system object files so we need to strip them - # from the output so that they don't get included in the library - # dependencies. - output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $EGREP "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' - ;; - *) - if test "$GXX" = yes; then - _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared -nostdlib $pic_flag ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' - else - # FIXME: insert proper C++ library support - _LT_TAGVAR(ld_shlibs, $1)=no - fi - ;; - esac - ;; - - hpux10*|hpux11*) - if test $with_gnu_ld = no; then - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' - _LT_TAGVAR(hardcode_libdir_separator, $1)=: - - case $host_cpu in - hppa*64*|ia64*) - ;; - *) - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' - ;; - esac - fi - case $host_cpu in - hppa*64*|ia64*) - _LT_TAGVAR(hardcode_direct, $1)=no - _LT_TAGVAR(hardcode_shlibpath_var, $1)=no - ;; - *) - _LT_TAGVAR(hardcode_direct, $1)=yes - _LT_TAGVAR(hardcode_direct_absolute, $1)=yes - _LT_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH, - # but as the default - # location of the library. - ;; - esac - - case $cc_basename in - CC*) - # FIXME: insert proper C++ library support - _LT_TAGVAR(ld_shlibs, $1)=no - ;; - aCC*) - case $host_cpu in - hppa*64*) - _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' - ;; - ia64*) - _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' - ;; - *) - _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' - ;; - esac - # Commands to make compiler produce verbose output that lists - # what "hidden" libraries, object files and flags are used when - # linking a shared library. - # - # There doesn't appear to be a way to prevent this compiler from - # explicitly linking system object files so we need to strip them - # from the output so that they don't get included in the library - # dependencies. - output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $GREP "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' - ;; - *) - if test "$GXX" = yes; then - if test $with_gnu_ld = no; then - case $host_cpu in - hppa*64*) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' - ;; - ia64*) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $pic_flag ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' - ;; - *) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' - ;; - esac - fi - else - # FIXME: insert proper C++ library support - _LT_TAGVAR(ld_shlibs, $1)=no - fi - ;; - esac - ;; - - interix[[3-9]]*) - _LT_TAGVAR(hardcode_direct, $1)=no - _LT_TAGVAR(hardcode_shlibpath_var, $1)=no - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' - # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. - # Instead, shared libraries are loaded at an image base (0x10000000 by - # default) and relocated if they conflict, which is a slow very memory - # consuming and fragmenting process. To avoid this, we pick a random, - # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link - # time. Moving up from 0x10000000 also allows more sbrk(2) space. - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' - ;; - irix5* | irix6*) - case $cc_basename in - CC*) - # SGI C++ - _LT_TAGVAR(archive_cmds, $1)='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' - - # Archives containing C++ object files must be created using - # "CC -ar", where "CC" is the IRIX C++ compiler. This is - # necessary to make sure instantiated templates are included - # in the archive. - _LT_TAGVAR(old_archive_cmds, $1)='$CC -ar -WR,-u -o $oldlib $oldobjs' - ;; - *) - if test "$GXX" = yes; then - if test "$with_gnu_ld" = no; then - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' - else - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` -o $lib' - fi - fi - _LT_TAGVAR(link_all_deplibs, $1)=yes - ;; - esac - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' - _LT_TAGVAR(hardcode_libdir_separator, $1)=: - _LT_TAGVAR(inherit_rpath, $1)=yes - ;; - - linux* | k*bsd*-gnu | kopensolaris*-gnu) - case $cc_basename in - KCC*) - # Kuck and Associates, Inc. (KAI) C++ Compiler - - # KCC will only create a shared library if the output file - # ends with ".so" (or ".sl" for HP-UX), so rename the library - # to its proper name (with version) after linking. - _LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib ${wl}-retain-symbols-file,$export_symbols; mv \$templib $lib' - # Commands to make compiler produce verbose output that lists - # what "hidden" libraries, object files and flags are used when - # linking a shared library. - # - # There doesn't appear to be a way to prevent this compiler from - # explicitly linking system object files so we need to strip them - # from the output so that they don't get included in the library - # dependencies. - output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | $GREP "ld"`; rm -f libconftest$shared_ext; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' - - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' - - # Archives containing C++ object files must be created using - # "CC -Bstatic", where "CC" is the KAI C++ compiler. - _LT_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' - ;; - icpc* | ecpc* ) - # Intel C++ - with_gnu_ld=yes - # version 8.0 and above of icpc choke on multiply defined symbols - # if we add $predep_objects and $postdep_objects, however 7.1 and - # earlier do not add the objects themselves. - case `$CC -V 2>&1` in - *"Version 7."*) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' - ;; - *) # Version 8.0 or newer - tmp_idyn= - case $host_cpu in - ia64*) tmp_idyn=' -i_dynamic';; - esac - _LT_TAGVAR(archive_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' - ;; - esac - _LT_TAGVAR(archive_cmds_need_lc, $1)=no - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' - _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive' - ;; - pgCC* | pgcpp*) - # Portland Group C++ compiler - case `$CC -V` in - *pgCC\ [[1-5]].* | *pgcpp\ [[1-5]].*) - _LT_TAGVAR(prelink_cmds, $1)='tpldir=Template.dir~ - rm -rf $tpldir~ - $CC --prelink_objects --instantiation_dir $tpldir $objs $libobjs $compile_deplibs~ - compile_command="$compile_command `find $tpldir -name \*.o | sort | $NL2SP`"' - _LT_TAGVAR(old_archive_cmds, $1)='tpldir=Template.dir~ - rm -rf $tpldir~ - $CC --prelink_objects --instantiation_dir $tpldir $oldobjs$old_deplibs~ - $AR $AR_FLAGS $oldlib$oldobjs$old_deplibs `find $tpldir -name \*.o | sort | $NL2SP`~ - $RANLIB $oldlib' - _LT_TAGVAR(archive_cmds, $1)='tpldir=Template.dir~ - rm -rf $tpldir~ - $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ - $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='tpldir=Template.dir~ - rm -rf $tpldir~ - $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ - $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib' - ;; - *) # Version 6 and above use weak symbols - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib' - ;; - esac - - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir' - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' - _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' - ;; - cxx*) - # Compaq C++ - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib ${wl}-retain-symbols-file $wl$export_symbols' - - runpath_var=LD_RUN_PATH - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' - _LT_TAGVAR(hardcode_libdir_separator, $1)=: - - # Commands to make compiler produce verbose output that lists - # what "hidden" libraries, object files and flags are used when - # linking a shared library. - # - # There doesn't appear to be a way to prevent this compiler from - # explicitly linking system object files so we need to strip them - # from the output so that they don't get included in the library - # dependencies. - output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld .*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "X$list" | $Xsed' - ;; - xl* | mpixl* | bgxl*) - # IBM XL 8.0 on PPC, with GNU ld - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' - _LT_TAGVAR(archive_cmds, $1)='$CC -qmkshrobj $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - if test "x$supports_anon_versioning" = xyes; then - _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ - cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ - echo "local: *; };" >> $output_objdir/$libname.ver~ - $CC -qmkshrobj $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' - fi - ;; - *) - case `$CC -V 2>&1 | sed 5q` in - *Sun\ C*) - # Sun C++ 5.9 - _LT_TAGVAR(no_undefined_flag, $1)=' -zdefs' - _LT_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file ${wl}$export_symbols' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' - _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' - _LT_TAGVAR(compiler_needs_object, $1)=yes - - # Not sure whether something based on - # $CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 - # would be better. - output_verbose_link_cmd='func_echo_all' - - # Archives containing C++ object files must be created using - # "CC -xar", where "CC" is the Sun C++ compiler. This is - # necessary to make sure instantiated templates are included - # in the archive. - _LT_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs' - ;; - esac - ;; - esac - ;; - - lynxos*) - # FIXME: insert proper C++ library support - _LT_TAGVAR(ld_shlibs, $1)=no - ;; - - m88k*) - # FIXME: insert proper C++ library support - _LT_TAGVAR(ld_shlibs, $1)=no - ;; - - mvs*) - case $cc_basename in - cxx*) - # FIXME: insert proper C++ library support - _LT_TAGVAR(ld_shlibs, $1)=no - ;; - *) - # FIXME: insert proper C++ library support - _LT_TAGVAR(ld_shlibs, $1)=no - ;; - esac - ;; - - netbsd*) - if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then - _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags' - wlarc= - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' - _LT_TAGVAR(hardcode_direct, $1)=yes - _LT_TAGVAR(hardcode_shlibpath_var, $1)=no - fi - # Workaround some broken pre-1.5 toolchains - output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP conftest.$objext | $SED -e "s:-lgcc -lc -lgcc::"' - ;; - - *nto* | *qnx*) - _LT_TAGVAR(ld_shlibs, $1)=yes - ;; - - openbsd2*) - # C++ shared libraries are fairly broken - _LT_TAGVAR(ld_shlibs, $1)=no - ;; - - openbsd*) - if test -f /usr/libexec/ld.so; then - _LT_TAGVAR(hardcode_direct, $1)=yes - _LT_TAGVAR(hardcode_shlibpath_var, $1)=no - _LT_TAGVAR(hardcode_direct_absolute, $1)=yes - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' - if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file,$export_symbols -o $lib' - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' - _LT_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' - fi - output_verbose_link_cmd=func_echo_all - else - _LT_TAGVAR(ld_shlibs, $1)=no - fi - ;; - - osf3* | osf4* | osf5*) - case $cc_basename in - KCC*) - # Kuck and Associates, Inc. (KAI) C++ Compiler - - # KCC will only create a shared library if the output file - # ends with ".so" (or ".sl" for HP-UX), so rename the library - # to its proper name (with version) after linking. - _LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo "$lib" | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' - - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' - _LT_TAGVAR(hardcode_libdir_separator, $1)=: - - # Archives containing C++ object files must be created using - # the KAI C++ compiler. - case $host in - osf3*) _LT_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' ;; - *) _LT_TAGVAR(old_archive_cmds, $1)='$CC -o $oldlib $oldobjs' ;; - esac - ;; - RCC*) - # Rational C++ 2.4.1 - # FIXME: insert proper C++ library support - _LT_TAGVAR(ld_shlibs, $1)=no - ;; - cxx*) - case $host in - osf3*) - _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' - _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $soname `test -n "$verstring" && func_echo_all "${wl}-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' - ;; - *) - _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' - _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done~ - echo "-hidden">> $lib.exp~ - $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname ${wl}-input ${wl}$lib.exp `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib~ - $RM $lib.exp' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' - ;; - esac - - _LT_TAGVAR(hardcode_libdir_separator, $1)=: - - # Commands to make compiler produce verbose output that lists - # what "hidden" libraries, object files and flags are used when - # linking a shared library. - # - # There doesn't appear to be a way to prevent this compiler from - # explicitly linking system object files so we need to strip them - # from the output so that they don't get included in the library - # dependencies. - output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld" | $GREP -v "ld:"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' - ;; - *) - if test "$GXX" = yes && test "$with_gnu_ld" = no; then - _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' - case $host in - osf3*) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' - ;; - *) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' - ;; - esac - - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' - _LT_TAGVAR(hardcode_libdir_separator, $1)=: - - # Commands to make compiler produce verbose output that lists - # what "hidden" libraries, object files and flags are used when - # linking a shared library. - output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' - - else - # FIXME: insert proper C++ library support - _LT_TAGVAR(ld_shlibs, $1)=no - fi - ;; - esac - ;; - - psos*) - # FIXME: insert proper C++ library support - _LT_TAGVAR(ld_shlibs, $1)=no - ;; - - sunos4*) - case $cc_basename in - CC*) - # Sun C++ 4.x - # FIXME: insert proper C++ library support - _LT_TAGVAR(ld_shlibs, $1)=no - ;; - lcc*) - # Lucid - # FIXME: insert proper C++ library support - _LT_TAGVAR(ld_shlibs, $1)=no - ;; - *) - # FIXME: insert proper C++ library support - _LT_TAGVAR(ld_shlibs, $1)=no - ;; - esac - ;; - - solaris*) - case $cc_basename in - CC* | sunCC*) - # Sun C++ 4.2, 5.x and Centerline C++ - _LT_TAGVAR(archive_cmds_need_lc,$1)=yes - _LT_TAGVAR(no_undefined_flag, $1)=' -zdefs' - _LT_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' - _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ - $CC -G${allow_undefined_flag} ${wl}-M ${wl}$lib.exp -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' - - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' - _LT_TAGVAR(hardcode_shlibpath_var, $1)=no - case $host_os in - solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; - *) - # The compiler driver will combine and reorder linker options, - # but understands `-z linker_flag'. - # Supported since Solaris 2.6 (maybe 2.5.1?) - _LT_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract' - ;; - esac - _LT_TAGVAR(link_all_deplibs, $1)=yes - - output_verbose_link_cmd='func_echo_all' - - # Archives containing C++ object files must be created using - # "CC -xar", where "CC" is the Sun C++ compiler. This is - # necessary to make sure instantiated templates are included - # in the archive. - _LT_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs' - ;; - gcx*) - # Green Hills C++ Compiler - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' - - # The C++ compiler must be used to create the archive. - _LT_TAGVAR(old_archive_cmds, $1)='$CC $LDFLAGS -archive -o $oldlib $oldobjs' - ;; - *) - # GNU C++ compiler with Solaris linker - if test "$GXX" = yes && test "$with_gnu_ld" = no; then - _LT_TAGVAR(no_undefined_flag, $1)=' ${wl}-z ${wl}defs' - if $CC --version | $GREP -v '^2\.7' > /dev/null; then - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ - $CC -shared $pic_flag -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' - - # Commands to make compiler produce verbose output that lists - # what "hidden" libraries, object files and flags are used when - # linking a shared library. - output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' - else - # g++ 2.7 appears to require `-G' NOT `-shared' on this - # platform. - _LT_TAGVAR(archive_cmds, $1)='$CC -G -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ - $CC -G -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' - - # Commands to make compiler produce verbose output that lists - # what "hidden" libraries, object files and flags are used when - # linking a shared library. - output_verbose_link_cmd='$CC -G $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' - fi - - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $wl$libdir' - case $host_os in - solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; - *) - _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' - ;; - esac - fi - ;; - esac - ;; - - sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*) - _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' - _LT_TAGVAR(archive_cmds_need_lc, $1)=no - _LT_TAGVAR(hardcode_shlibpath_var, $1)=no - runpath_var='LD_RUN_PATH' - - case $cc_basename in - CC*) - _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - ;; - *) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - ;; - esac - ;; - - sysv5* | sco3.2v5* | sco5v6*) - # Note: We can NOT use -z defs as we might desire, because we do not - # link with -lc, and that would cause any symbols used from libc to - # always be unresolved, which means just about no library would - # ever link correctly. If we're not using GNU ld we use -z text - # though, which does catch some bad symbols but isn't as heavy-handed - # as -z defs. - _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' - _LT_TAGVAR(allow_undefined_flag, $1)='${wl}-z,nodefs' - _LT_TAGVAR(archive_cmds_need_lc, $1)=no - _LT_TAGVAR(hardcode_shlibpath_var, $1)=no - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R,$libdir' - _LT_TAGVAR(hardcode_libdir_separator, $1)=':' - _LT_TAGVAR(link_all_deplibs, $1)=yes - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport' - runpath_var='LD_RUN_PATH' - - case $cc_basename in - CC*) - _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_TAGVAR(old_archive_cmds, $1)='$CC -Tprelink_objects $oldobjs~ - '"$_LT_TAGVAR(old_archive_cmds, $1)" - _LT_TAGVAR(reload_cmds, $1)='$CC -Tprelink_objects $reload_objs~ - '"$_LT_TAGVAR(reload_cmds, $1)" - ;; - *) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - ;; - esac - ;; - - tandem*) - case $cc_basename in - NCC*) - # NonStop-UX NCC 3.20 - # FIXME: insert proper C++ library support - _LT_TAGVAR(ld_shlibs, $1)=no - ;; - *) - # FIXME: insert proper C++ library support - _LT_TAGVAR(ld_shlibs, $1)=no - ;; - esac - ;; - - vxworks*) - # FIXME: insert proper C++ library support - _LT_TAGVAR(ld_shlibs, $1)=no - ;; - - *) - # FIXME: insert proper C++ library support - _LT_TAGVAR(ld_shlibs, $1)=no - ;; - esac - - AC_MSG_RESULT([$_LT_TAGVAR(ld_shlibs, $1)]) - test "$_LT_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no - - _LT_TAGVAR(GCC, $1)="$GXX" - _LT_TAGVAR(LD, $1)="$LD" - - ## CAVEAT EMPTOR: - ## There is no encapsulation within the following macros, do not change - ## the running order or otherwise move them around unless you know exactly - ## what you are doing... - _LT_SYS_HIDDEN_LIBDEPS($1) - _LT_COMPILER_PIC($1) - _LT_COMPILER_C_O($1) - _LT_COMPILER_FILE_LOCKS($1) - _LT_LINKER_SHLIBS($1) - _LT_SYS_DYNAMIC_LINKER($1) - _LT_LINKER_HARDCODE_LIBPATH($1) - - _LT_CONFIG($1) - fi # test -n "$compiler" - - CC=$lt_save_CC - CFLAGS=$lt_save_CFLAGS - LDCXX=$LD - LD=$lt_save_LD - GCC=$lt_save_GCC - with_gnu_ld=$lt_save_with_gnu_ld - lt_cv_path_LDCXX=$lt_cv_path_LD - lt_cv_path_LD=$lt_save_path_LD - lt_cv_prog_gnu_ldcxx=$lt_cv_prog_gnu_ld - lt_cv_prog_gnu_ld=$lt_save_with_gnu_ld -fi # test "$_lt_caught_CXX_error" != yes - -AC_LANG_POP -])# _LT_LANG_CXX_CONFIG - - -# _LT_FUNC_STRIPNAME_CNF -# ---------------------- -# func_stripname_cnf prefix suffix name -# strip PREFIX and SUFFIX off of NAME. -# PREFIX and SUFFIX must not contain globbing or regex special -# characters, hashes, percent signs, but SUFFIX may contain a leading -# dot (in which case that matches only a dot). -# -# This function is identical to the (non-XSI) version of func_stripname, -# except this one can be used by m4 code that may be executed by configure, -# rather than the libtool script. -m4_defun([_LT_FUNC_STRIPNAME_CNF],[dnl -AC_REQUIRE([_LT_DECL_SED]) -AC_REQUIRE([_LT_PROG_ECHO_BACKSLASH]) -func_stripname_cnf () -{ - case ${2} in - .*) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%\\\\${2}\$%%"`;; - *) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%${2}\$%%"`;; - esac -} # func_stripname_cnf -])# _LT_FUNC_STRIPNAME_CNF - -# _LT_SYS_HIDDEN_LIBDEPS([TAGNAME]) -# --------------------------------- -# Figure out "hidden" library dependencies from verbose -# compiler output when linking a shared library. -# Parse the compiler output and extract the necessary -# objects, libraries and library flags. -m4_defun([_LT_SYS_HIDDEN_LIBDEPS], -[m4_require([_LT_FILEUTILS_DEFAULTS])dnl -AC_REQUIRE([_LT_FUNC_STRIPNAME_CNF])dnl -# Dependencies to place before and after the object being linked: -_LT_TAGVAR(predep_objects, $1)= -_LT_TAGVAR(postdep_objects, $1)= -_LT_TAGVAR(predeps, $1)= -_LT_TAGVAR(postdeps, $1)= -_LT_TAGVAR(compiler_lib_search_path, $1)= - -dnl we can't use the lt_simple_compile_test_code here, -dnl because it contains code intended for an executable, -dnl not a library. It's possible we should let each -dnl tag define a new lt_????_link_test_code variable, -dnl but it's only used here... -m4_if([$1], [], [cat > conftest.$ac_ext <<_LT_EOF -int a; -void foo (void) { a = 0; } -_LT_EOF -], [$1], [CXX], [cat > conftest.$ac_ext <<_LT_EOF -class Foo -{ -public: - Foo (void) { a = 0; } -private: - int a; -}; -_LT_EOF -], [$1], [F77], [cat > conftest.$ac_ext <<_LT_EOF - subroutine foo - implicit none - integer*4 a - a=0 - return - end -_LT_EOF -], [$1], [FC], [cat > conftest.$ac_ext <<_LT_EOF - subroutine foo - implicit none - integer a - a=0 - return - end -_LT_EOF -], [$1], [GCJ], [cat > conftest.$ac_ext <<_LT_EOF -public class foo { - private int a; - public void bar (void) { - a = 0; - } -}; -_LT_EOF -]) - -_lt_libdeps_save_CFLAGS=$CFLAGS -case "$CC $CFLAGS " in #( -*\ -flto*\ *) CFLAGS="$CFLAGS -fno-lto" ;; -*\ -fwhopr*\ *) CFLAGS="$CFLAGS -fno-whopr" ;; -esac - -dnl Parse the compiler output and extract the necessary -dnl objects, libraries and library flags. -if AC_TRY_EVAL(ac_compile); then - # Parse the compiler output and extract the necessary - # objects, libraries and library flags. - - # Sentinel used to keep track of whether or not we are before - # the conftest object file. - pre_test_object_deps_done=no - - for p in `eval "$output_verbose_link_cmd"`; do - case ${prev}${p} in - - -L* | -R* | -l*) - # Some compilers place space between "-{L,R}" and the path. - # Remove the space. - if test $p = "-L" || - test $p = "-R"; then - prev=$p - continue - fi - - # Expand the sysroot to ease extracting the directories later. - if test -z "$prev"; then - case $p in - -L*) func_stripname_cnf '-L' '' "$p"; prev=-L; p=$func_stripname_result ;; - -R*) func_stripname_cnf '-R' '' "$p"; prev=-R; p=$func_stripname_result ;; - -l*) func_stripname_cnf '-l' '' "$p"; prev=-l; p=$func_stripname_result ;; - esac - fi - case $p in - =*) func_stripname_cnf '=' '' "$p"; p=$lt_sysroot$func_stripname_result ;; - esac - if test "$pre_test_object_deps_done" = no; then - case ${prev} in - -L | -R) - # Internal compiler library paths should come after those - # provided the user. The postdeps already come after the - # user supplied libs so there is no need to process them. - if test -z "$_LT_TAGVAR(compiler_lib_search_path, $1)"; then - _LT_TAGVAR(compiler_lib_search_path, $1)="${prev}${p}" - else - _LT_TAGVAR(compiler_lib_search_path, $1)="${_LT_TAGVAR(compiler_lib_search_path, $1)} ${prev}${p}" - fi - ;; - # The "-l" case would never come before the object being - # linked, so don't bother handling this case. - esac - else - if test -z "$_LT_TAGVAR(postdeps, $1)"; then - _LT_TAGVAR(postdeps, $1)="${prev}${p}" - else - _LT_TAGVAR(postdeps, $1)="${_LT_TAGVAR(postdeps, $1)} ${prev}${p}" - fi - fi - prev= - ;; - - *.lto.$objext) ;; # Ignore GCC LTO objects - *.$objext) - # This assumes that the test object file only shows up - # once in the compiler output. - if test "$p" = "conftest.$objext"; then - pre_test_object_deps_done=yes - continue - fi - - if test "$pre_test_object_deps_done" = no; then - if test -z "$_LT_TAGVAR(predep_objects, $1)"; then - _LT_TAGVAR(predep_objects, $1)="$p" - else - _LT_TAGVAR(predep_objects, $1)="$_LT_TAGVAR(predep_objects, $1) $p" - fi - else - if test -z "$_LT_TAGVAR(postdep_objects, $1)"; then - _LT_TAGVAR(postdep_objects, $1)="$p" - else - _LT_TAGVAR(postdep_objects, $1)="$_LT_TAGVAR(postdep_objects, $1) $p" - fi - fi - ;; - - *) ;; # Ignore the rest. - - esac - done - - # Clean up. - rm -f a.out a.exe -else - echo "libtool.m4: error: problem compiling $1 test program" -fi - -$RM -f confest.$objext -CFLAGS=$_lt_libdeps_save_CFLAGS - -# PORTME: override above test on systems where it is broken -m4_if([$1], [CXX], -[case $host_os in -interix[[3-9]]*) - # Interix 3.5 installs completely hosed .la files for C++, so rather than - # hack all around it, let's just trust "g++" to DTRT. - _LT_TAGVAR(predep_objects,$1)= - _LT_TAGVAR(postdep_objects,$1)= - _LT_TAGVAR(postdeps,$1)= - ;; - -linux*) - case `$CC -V 2>&1 | sed 5q` in - *Sun\ C*) - # Sun C++ 5.9 - - # The more standards-conforming stlport4 library is - # incompatible with the Cstd library. Avoid specifying - # it if it's in CXXFLAGS. Ignore libCrun as - # -library=stlport4 depends on it. - case " $CXX $CXXFLAGS " in - *" -library=stlport4 "*) - solaris_use_stlport4=yes - ;; - esac - - if test "$solaris_use_stlport4" != yes; then - _LT_TAGVAR(postdeps,$1)='-library=Cstd -library=Crun' - fi - ;; - esac - ;; - -solaris*) - case $cc_basename in - CC* | sunCC*) - # The more standards-conforming stlport4 library is - # incompatible with the Cstd library. Avoid specifying - # it if it's in CXXFLAGS. Ignore libCrun as - # -library=stlport4 depends on it. - case " $CXX $CXXFLAGS " in - *" -library=stlport4 "*) - solaris_use_stlport4=yes - ;; - esac - - # Adding this requires a known-good setup of shared libraries for - # Sun compiler versions before 5.6, else PIC objects from an old - # archive will be linked into the output, leading to subtle bugs. - if test "$solaris_use_stlport4" != yes; then - _LT_TAGVAR(postdeps,$1)='-library=Cstd -library=Crun' - fi - ;; - esac - ;; -esac -]) - -case " $_LT_TAGVAR(postdeps, $1) " in -*" -lc "*) _LT_TAGVAR(archive_cmds_need_lc, $1)=no ;; -esac - _LT_TAGVAR(compiler_lib_search_dirs, $1)= -if test -n "${_LT_TAGVAR(compiler_lib_search_path, $1)}"; then - _LT_TAGVAR(compiler_lib_search_dirs, $1)=`echo " ${_LT_TAGVAR(compiler_lib_search_path, $1)}" | ${SED} -e 's! -L! !g' -e 's!^ !!'` -fi -_LT_TAGDECL([], [compiler_lib_search_dirs], [1], - [The directories searched by this compiler when creating a shared library]) -_LT_TAGDECL([], [predep_objects], [1], - [Dependencies to place before and after the objects being linked to - create a shared library]) -_LT_TAGDECL([], [postdep_objects], [1]) -_LT_TAGDECL([], [predeps], [1]) -_LT_TAGDECL([], [postdeps], [1]) -_LT_TAGDECL([], [compiler_lib_search_path], [1], - [The library search path used internally by the compiler when linking - a shared library]) -])# _LT_SYS_HIDDEN_LIBDEPS - - -# _LT_LANG_F77_CONFIG([TAG]) -# -------------------------- -# Ensure that the configuration variables for a Fortran 77 compiler are -# suitably defined. These variables are subsequently used by _LT_CONFIG -# to write the compiler configuration to `libtool'. -m4_defun([_LT_LANG_F77_CONFIG], -[AC_LANG_PUSH(Fortran 77) -if test -z "$F77" || test "X$F77" = "Xno"; then - _lt_disable_F77=yes -fi - -_LT_TAGVAR(archive_cmds_need_lc, $1)=no -_LT_TAGVAR(allow_undefined_flag, $1)= -_LT_TAGVAR(always_export_symbols, $1)=no -_LT_TAGVAR(archive_expsym_cmds, $1)= -_LT_TAGVAR(export_dynamic_flag_spec, $1)= -_LT_TAGVAR(hardcode_direct, $1)=no -_LT_TAGVAR(hardcode_direct_absolute, $1)=no -_LT_TAGVAR(hardcode_libdir_flag_spec, $1)= -_LT_TAGVAR(hardcode_libdir_flag_spec_ld, $1)= -_LT_TAGVAR(hardcode_libdir_separator, $1)= -_LT_TAGVAR(hardcode_minus_L, $1)=no -_LT_TAGVAR(hardcode_automatic, $1)=no -_LT_TAGVAR(inherit_rpath, $1)=no -_LT_TAGVAR(module_cmds, $1)= -_LT_TAGVAR(module_expsym_cmds, $1)= -_LT_TAGVAR(link_all_deplibs, $1)=unknown -_LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds -_LT_TAGVAR(reload_flag, $1)=$reload_flag -_LT_TAGVAR(reload_cmds, $1)=$reload_cmds -_LT_TAGVAR(no_undefined_flag, $1)= -_LT_TAGVAR(whole_archive_flag_spec, $1)= -_LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no - -# Source file extension for f77 test sources. -ac_ext=f - -# Object file extension for compiled f77 test sources. -objext=o -_LT_TAGVAR(objext, $1)=$objext - -# No sense in running all these tests if we already determined that -# the F77 compiler isn't working. Some variables (like enable_shared) -# are currently assumed to apply to all compilers on this platform, -# and will be corrupted by setting them based on a non-working compiler. -if test "$_lt_disable_F77" != yes; then - # Code to be used in simple compile tests - lt_simple_compile_test_code="\ - subroutine t - return - end -" - - # Code to be used in simple link tests - lt_simple_link_test_code="\ - program t - end -" - - # ltmain only uses $CC for tagged configurations so make sure $CC is set. - _LT_TAG_COMPILER - - # save warnings/boilerplate of simple test code - _LT_COMPILER_BOILERPLATE - _LT_LINKER_BOILERPLATE - - # Allow CC to be a program name with arguments. - lt_save_CC="$CC" - lt_save_GCC=$GCC - lt_save_CFLAGS=$CFLAGS - CC=${F77-"f77"} - CFLAGS=$FFLAGS - compiler=$CC - _LT_TAGVAR(compiler, $1)=$CC - _LT_CC_BASENAME([$compiler]) - GCC=$G77 - if test -n "$compiler"; then - AC_MSG_CHECKING([if libtool supports shared libraries]) - AC_MSG_RESULT([$can_build_shared]) - - AC_MSG_CHECKING([whether to build shared libraries]) - test "$can_build_shared" = "no" && enable_shared=no - - # On AIX, shared libraries and static libraries use the same namespace, and - # are all built from PIC. - case $host_os in - aix3*) - test "$enable_shared" = yes && enable_static=no - if test -n "$RANLIB"; then - archive_cmds="$archive_cmds~\$RANLIB \$lib" - postinstall_cmds='$RANLIB $lib' - fi - ;; - aix[[4-9]]*) - if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then - test "$enable_shared" = yes && enable_static=no - fi - ;; - esac - AC_MSG_RESULT([$enable_shared]) - - AC_MSG_CHECKING([whether to build static libraries]) - # Make sure either enable_shared or enable_static is yes. - test "$enable_shared" = yes || enable_static=yes - AC_MSG_RESULT([$enable_static]) - - _LT_TAGVAR(GCC, $1)="$G77" - _LT_TAGVAR(LD, $1)="$LD" - - ## CAVEAT EMPTOR: - ## There is no encapsulation within the following macros, do not change - ## the running order or otherwise move them around unless you know exactly - ## what you are doing... - _LT_COMPILER_PIC($1) - _LT_COMPILER_C_O($1) - _LT_COMPILER_FILE_LOCKS($1) - _LT_LINKER_SHLIBS($1) - _LT_SYS_DYNAMIC_LINKER($1) - _LT_LINKER_HARDCODE_LIBPATH($1) - - _LT_CONFIG($1) - fi # test -n "$compiler" - - GCC=$lt_save_GCC - CC="$lt_save_CC" - CFLAGS="$lt_save_CFLAGS" -fi # test "$_lt_disable_F77" != yes - -AC_LANG_POP -])# _LT_LANG_F77_CONFIG - - -# _LT_LANG_FC_CONFIG([TAG]) -# ------------------------- -# Ensure that the configuration variables for a Fortran compiler are -# suitably defined. These variables are subsequently used by _LT_CONFIG -# to write the compiler configuration to `libtool'. -m4_defun([_LT_LANG_FC_CONFIG], -[AC_LANG_PUSH(Fortran) - -if test -z "$FC" || test "X$FC" = "Xno"; then - _lt_disable_FC=yes -fi - -_LT_TAGVAR(archive_cmds_need_lc, $1)=no -_LT_TAGVAR(allow_undefined_flag, $1)= -_LT_TAGVAR(always_export_symbols, $1)=no -_LT_TAGVAR(archive_expsym_cmds, $1)= -_LT_TAGVAR(export_dynamic_flag_spec, $1)= -_LT_TAGVAR(hardcode_direct, $1)=no -_LT_TAGVAR(hardcode_direct_absolute, $1)=no -_LT_TAGVAR(hardcode_libdir_flag_spec, $1)= -_LT_TAGVAR(hardcode_libdir_flag_spec_ld, $1)= -_LT_TAGVAR(hardcode_libdir_separator, $1)= -_LT_TAGVAR(hardcode_minus_L, $1)=no -_LT_TAGVAR(hardcode_automatic, $1)=no -_LT_TAGVAR(inherit_rpath, $1)=no -_LT_TAGVAR(module_cmds, $1)= -_LT_TAGVAR(module_expsym_cmds, $1)= -_LT_TAGVAR(link_all_deplibs, $1)=unknown -_LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds -_LT_TAGVAR(reload_flag, $1)=$reload_flag -_LT_TAGVAR(reload_cmds, $1)=$reload_cmds -_LT_TAGVAR(no_undefined_flag, $1)= -_LT_TAGVAR(whole_archive_flag_spec, $1)= -_LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no - -# Source file extension for fc test sources. -ac_ext=${ac_fc_srcext-f} - -# Object file extension for compiled fc test sources. -objext=o -_LT_TAGVAR(objext, $1)=$objext - -# No sense in running all these tests if we already determined that -# the FC compiler isn't working. Some variables (like enable_shared) -# are currently assumed to apply to all compilers on this platform, -# and will be corrupted by setting them based on a non-working compiler. -if test "$_lt_disable_FC" != yes; then - # Code to be used in simple compile tests - lt_simple_compile_test_code="\ - subroutine t - return - end -" - - # Code to be used in simple link tests - lt_simple_link_test_code="\ - program t - end -" - - # ltmain only uses $CC for tagged configurations so make sure $CC is set. - _LT_TAG_COMPILER - - # save warnings/boilerplate of simple test code - _LT_COMPILER_BOILERPLATE - _LT_LINKER_BOILERPLATE - - # Allow CC to be a program name with arguments. - lt_save_CC="$CC" - lt_save_GCC=$GCC - lt_save_CFLAGS=$CFLAGS - CC=${FC-"f95"} - CFLAGS=$FCFLAGS - compiler=$CC - GCC=$ac_cv_fc_compiler_gnu - - _LT_TAGVAR(compiler, $1)=$CC - _LT_CC_BASENAME([$compiler]) - - if test -n "$compiler"; then - AC_MSG_CHECKING([if libtool supports shared libraries]) - AC_MSG_RESULT([$can_build_shared]) - - AC_MSG_CHECKING([whether to build shared libraries]) - test "$can_build_shared" = "no" && enable_shared=no - - # On AIX, shared libraries and static libraries use the same namespace, and - # are all built from PIC. - case $host_os in - aix3*) - test "$enable_shared" = yes && enable_static=no - if test -n "$RANLIB"; then - archive_cmds="$archive_cmds~\$RANLIB \$lib" - postinstall_cmds='$RANLIB $lib' - fi - ;; - aix[[4-9]]*) - if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then - test "$enable_shared" = yes && enable_static=no - fi - ;; - esac - AC_MSG_RESULT([$enable_shared]) - - AC_MSG_CHECKING([whether to build static libraries]) - # Make sure either enable_shared or enable_static is yes. - test "$enable_shared" = yes || enable_static=yes - AC_MSG_RESULT([$enable_static]) - - _LT_TAGVAR(GCC, $1)="$ac_cv_fc_compiler_gnu" - _LT_TAGVAR(LD, $1)="$LD" - - ## CAVEAT EMPTOR: - ## There is no encapsulation within the following macros, do not change - ## the running order or otherwise move them around unless you know exactly - ## what you are doing... - _LT_SYS_HIDDEN_LIBDEPS($1) - _LT_COMPILER_PIC($1) - _LT_COMPILER_C_O($1) - _LT_COMPILER_FILE_LOCKS($1) - _LT_LINKER_SHLIBS($1) - _LT_SYS_DYNAMIC_LINKER($1) - _LT_LINKER_HARDCODE_LIBPATH($1) - - _LT_CONFIG($1) - fi # test -n "$compiler" - - GCC=$lt_save_GCC - CC=$lt_save_CC - CFLAGS=$lt_save_CFLAGS -fi # test "$_lt_disable_FC" != yes - -AC_LANG_POP -])# _LT_LANG_FC_CONFIG - - -# _LT_LANG_GCJ_CONFIG([TAG]) -# -------------------------- -# Ensure that the configuration variables for the GNU Java Compiler compiler -# are suitably defined. These variables are subsequently used by _LT_CONFIG -# to write the compiler configuration to `libtool'. -m4_defun([_LT_LANG_GCJ_CONFIG], -[AC_REQUIRE([LT_PROG_GCJ])dnl -AC_LANG_SAVE - -# Source file extension for Java test sources. -ac_ext=java - -# Object file extension for compiled Java test sources. -objext=o -_LT_TAGVAR(objext, $1)=$objext - -# Code to be used in simple compile tests -lt_simple_compile_test_code="class foo {}" - -# Code to be used in simple link tests -lt_simple_link_test_code='public class conftest { public static void main(String[[]] argv) {}; }' - -# ltmain only uses $CC for tagged configurations so make sure $CC is set. -_LT_TAG_COMPILER - -# save warnings/boilerplate of simple test code -_LT_COMPILER_BOILERPLATE -_LT_LINKER_BOILERPLATE - -# Allow CC to be a program name with arguments. -lt_save_CC=$CC -lt_save_CFLAGS=$CFLAGS -lt_save_GCC=$GCC -GCC=yes -CC=${GCJ-"gcj"} -CFLAGS=$GCJFLAGS -compiler=$CC -_LT_TAGVAR(compiler, $1)=$CC -_LT_TAGVAR(LD, $1)="$LD" -_LT_CC_BASENAME([$compiler]) - -# GCJ did not exist at the time GCC didn't implicitly link libc in. -_LT_TAGVAR(archive_cmds_need_lc, $1)=no - -_LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds -_LT_TAGVAR(reload_flag, $1)=$reload_flag -_LT_TAGVAR(reload_cmds, $1)=$reload_cmds - -if test -n "$compiler"; then - _LT_COMPILER_NO_RTTI($1) - _LT_COMPILER_PIC($1) - _LT_COMPILER_C_O($1) - _LT_COMPILER_FILE_LOCKS($1) - _LT_LINKER_SHLIBS($1) - _LT_LINKER_HARDCODE_LIBPATH($1) - - _LT_CONFIG($1) -fi - -AC_LANG_RESTORE - -GCC=$lt_save_GCC -CC=$lt_save_CC -CFLAGS=$lt_save_CFLAGS -])# _LT_LANG_GCJ_CONFIG - - -# _LT_LANG_RC_CONFIG([TAG]) -# ------------------------- -# Ensure that the configuration variables for the Windows resource compiler -# are suitably defined. These variables are subsequently used by _LT_CONFIG -# to write the compiler configuration to `libtool'. -m4_defun([_LT_LANG_RC_CONFIG], -[AC_REQUIRE([LT_PROG_RC])dnl -AC_LANG_SAVE - -# Source file extension for RC test sources. -ac_ext=rc - -# Object file extension for compiled RC test sources. -objext=o -_LT_TAGVAR(objext, $1)=$objext - -# Code to be used in simple compile tests -lt_simple_compile_test_code='sample MENU { MENUITEM "&Soup", 100, CHECKED }' - -# Code to be used in simple link tests -lt_simple_link_test_code="$lt_simple_compile_test_code" - -# ltmain only uses $CC for tagged configurations so make sure $CC is set. -_LT_TAG_COMPILER - -# save warnings/boilerplate of simple test code -_LT_COMPILER_BOILERPLATE -_LT_LINKER_BOILERPLATE - -# Allow CC to be a program name with arguments. -lt_save_CC="$CC" -lt_save_CFLAGS=$CFLAGS -lt_save_GCC=$GCC -GCC= -CC=${RC-"windres"} -CFLAGS= -compiler=$CC -_LT_TAGVAR(compiler, $1)=$CC -_LT_CC_BASENAME([$compiler]) -_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes - -if test -n "$compiler"; then - : - _LT_CONFIG($1) -fi - -GCC=$lt_save_GCC -AC_LANG_RESTORE -CC=$lt_save_CC -CFLAGS=$lt_save_CFLAGS -])# _LT_LANG_RC_CONFIG - - -# LT_PROG_GCJ -# ----------- -AC_DEFUN([LT_PROG_GCJ], -[m4_ifdef([AC_PROG_GCJ], [AC_PROG_GCJ], - [m4_ifdef([A][M_PROG_GCJ], [A][M_PROG_GCJ], - [AC_CHECK_TOOL(GCJ, gcj,) - test "x${GCJFLAGS+set}" = xset || GCJFLAGS="-g -O2" - AC_SUBST(GCJFLAGS)])])[]dnl -]) - -# Old name: -AU_ALIAS([LT_AC_PROG_GCJ], [LT_PROG_GCJ]) -dnl aclocal-1.4 backwards compatibility: -dnl AC_DEFUN([LT_AC_PROG_GCJ], []) - - -# LT_PROG_RC -# ---------- -AC_DEFUN([LT_PROG_RC], -[AC_CHECK_TOOL(RC, windres,) -]) - -# Old name: -AU_ALIAS([LT_AC_PROG_RC], [LT_PROG_RC]) -dnl aclocal-1.4 backwards compatibility: -dnl AC_DEFUN([LT_AC_PROG_RC], []) - - -# _LT_DECL_EGREP -# -------------- -# If we don't have a new enough Autoconf to choose the best grep -# available, choose the one first in the user's PATH. -m4_defun([_LT_DECL_EGREP], -[AC_REQUIRE([AC_PROG_EGREP])dnl -AC_REQUIRE([AC_PROG_FGREP])dnl -test -z "$GREP" && GREP=grep -_LT_DECL([], [GREP], [1], [A grep program that handles long lines]) -_LT_DECL([], [EGREP], [1], [An ERE matcher]) -_LT_DECL([], [FGREP], [1], [A literal string matcher]) -dnl Non-bleeding-edge autoconf doesn't subst GREP, so do it here too -AC_SUBST([GREP]) -]) - - -# _LT_DECL_OBJDUMP -# -------------- -# If we don't have a new enough Autoconf to choose the best objdump -# available, choose the one first in the user's PATH. -m4_defun([_LT_DECL_OBJDUMP], -[AC_CHECK_TOOL(OBJDUMP, objdump, false) -test -z "$OBJDUMP" && OBJDUMP=objdump -_LT_DECL([], [OBJDUMP], [1], [An object symbol dumper]) -AC_SUBST([OBJDUMP]) -]) - -# _LT_DECL_DLLTOOL -# ---------------- -# Ensure DLLTOOL variable is set. -m4_defun([_LT_DECL_DLLTOOL], -[AC_CHECK_TOOL(DLLTOOL, dlltool, false) -test -z "$DLLTOOL" && DLLTOOL=dlltool -_LT_DECL([], [DLLTOOL], [1], [DLL creation program]) -AC_SUBST([DLLTOOL]) -]) - -# _LT_DECL_SED -# ------------ -# Check for a fully-functional sed program, that truncates -# as few characters as possible. Prefer GNU sed if found. -m4_defun([_LT_DECL_SED], -[AC_PROG_SED -test -z "$SED" && SED=sed -Xsed="$SED -e 1s/^X//" -_LT_DECL([], [SED], [1], [A sed program that does not truncate output]) -_LT_DECL([], [Xsed], ["\$SED -e 1s/^X//"], - [Sed that helps us avoid accidentally triggering echo(1) options like -n]) -])# _LT_DECL_SED - -m4_ifndef([AC_PROG_SED], [ -# NOTE: This macro has been submitted for inclusion into # -# GNU Autoconf as AC_PROG_SED. When it is available in # -# a released version of Autoconf we should remove this # -# macro and use it instead. # - -m4_defun([AC_PROG_SED], -[AC_MSG_CHECKING([for a sed that does not truncate output]) -AC_CACHE_VAL(lt_cv_path_SED, -[# Loop through the user's path and test for sed and gsed. -# Then use that list of sed's as ones to test for truncation. -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for lt_ac_prog in sed gsed; do - for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$lt_ac_prog$ac_exec_ext"; then - lt_ac_sed_list="$lt_ac_sed_list $as_dir/$lt_ac_prog$ac_exec_ext" - fi - done - done -done -IFS=$as_save_IFS -lt_ac_max=0 -lt_ac_count=0 -# Add /usr/xpg4/bin/sed as it is typically found on Solaris -# along with /bin/sed that truncates output. -for lt_ac_sed in $lt_ac_sed_list /usr/xpg4/bin/sed; do - test ! -f $lt_ac_sed && continue - cat /dev/null > conftest.in - lt_ac_count=0 - echo $ECHO_N "0123456789$ECHO_C" >conftest.in - # Check for GNU sed and select it if it is found. - if "$lt_ac_sed" --version 2>&1 < /dev/null | grep 'GNU' > /dev/null; then - lt_cv_path_SED=$lt_ac_sed - break - fi - while true; do - cat conftest.in conftest.in >conftest.tmp - mv conftest.tmp conftest.in - cp conftest.in conftest.nl - echo >>conftest.nl - $lt_ac_sed -e 's/a$//' < conftest.nl >conftest.out || break - cmp -s conftest.out conftest.nl || break - # 10000 chars as input seems more than enough - test $lt_ac_count -gt 10 && break - lt_ac_count=`expr $lt_ac_count + 1` - if test $lt_ac_count -gt $lt_ac_max; then - lt_ac_max=$lt_ac_count - lt_cv_path_SED=$lt_ac_sed - fi - done -done -]) -SED=$lt_cv_path_SED -AC_SUBST([SED]) -AC_MSG_RESULT([$SED]) -])#AC_PROG_SED -])#m4_ifndef - -# Old name: -AU_ALIAS([LT_AC_PROG_SED], [AC_PROG_SED]) -dnl aclocal-1.4 backwards compatibility: -dnl AC_DEFUN([LT_AC_PROG_SED], []) - - -# _LT_CHECK_SHELL_FEATURES -# ------------------------ -# Find out whether the shell is Bourne or XSI compatible, -# or has some other useful features. -m4_defun([_LT_CHECK_SHELL_FEATURES], -[AC_MSG_CHECKING([whether the shell understands some XSI constructs]) -# Try some XSI features -xsi_shell=no -( _lt_dummy="a/b/c" - test "${_lt_dummy##*/},${_lt_dummy%/*},${_lt_dummy#??}"${_lt_dummy%"$_lt_dummy"}, \ - = c,a/b,b/c, \ - && eval 'test $(( 1 + 1 )) -eq 2 \ - && test "${#_lt_dummy}" -eq 5' ) >/dev/null 2>&1 \ - && xsi_shell=yes -AC_MSG_RESULT([$xsi_shell]) -_LT_CONFIG_LIBTOOL_INIT([xsi_shell='$xsi_shell']) - -AC_MSG_CHECKING([whether the shell understands "+="]) -lt_shell_append=no -( foo=bar; set foo baz; eval "$[1]+=\$[2]" && test "$foo" = barbaz ) \ - >/dev/null 2>&1 \ - && lt_shell_append=yes -AC_MSG_RESULT([$lt_shell_append]) -_LT_CONFIG_LIBTOOL_INIT([lt_shell_append='$lt_shell_append']) - -if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then - lt_unset=unset -else - lt_unset=false -fi -_LT_DECL([], [lt_unset], [0], [whether the shell understands "unset"])dnl - -# test EBCDIC or ASCII -case `echo X|tr X '\101'` in - A) # ASCII based system - # \n is not interpreted correctly by Solaris 8 /usr/ucb/tr - lt_SP2NL='tr \040 \012' - lt_NL2SP='tr \015\012 \040\040' - ;; - *) # EBCDIC based system - lt_SP2NL='tr \100 \n' - lt_NL2SP='tr \r\n \100\100' - ;; -esac -_LT_DECL([SP2NL], [lt_SP2NL], [1], [turn spaces into newlines])dnl -_LT_DECL([NL2SP], [lt_NL2SP], [1], [turn newlines into spaces])dnl -])# _LT_CHECK_SHELL_FEATURES - - -# _LT_PROG_FUNCTION_REPLACE (FUNCNAME, REPLACEMENT-BODY) -# ------------------------------------------------------ -# In `$cfgfile', look for function FUNCNAME delimited by `^FUNCNAME ()$' and -# '^} FUNCNAME ', and replace its body with REPLACEMENT-BODY. -m4_defun([_LT_PROG_FUNCTION_REPLACE], -[dnl { -sed -e '/^$1 ()$/,/^} # $1 /c\ -$1 ()\ -{\ -m4_bpatsubsts([$2], [$], [\\], [^\([ ]\)], [\\\1]) -} # Extended-shell $1 implementation' "$cfgfile" > $cfgfile.tmp \ - && mv -f "$cfgfile.tmp" "$cfgfile" \ - || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") -test 0 -eq $? || _lt_function_replace_fail=: -]) - - -# _LT_PROG_REPLACE_SHELLFNS -# ------------------------- -# Replace existing portable implementations of several shell functions with -# equivalent extended shell implementations where those features are available.. -m4_defun([_LT_PROG_REPLACE_SHELLFNS], -[if test x"$xsi_shell" = xyes; then - _LT_PROG_FUNCTION_REPLACE([func_dirname], [dnl - case ${1} in - */*) func_dirname_result="${1%/*}${2}" ;; - * ) func_dirname_result="${3}" ;; - esac]) - - _LT_PROG_FUNCTION_REPLACE([func_basename], [dnl - func_basename_result="${1##*/}"]) - - _LT_PROG_FUNCTION_REPLACE([func_dirname_and_basename], [dnl - case ${1} in - */*) func_dirname_result="${1%/*}${2}" ;; - * ) func_dirname_result="${3}" ;; - esac - func_basename_result="${1##*/}"]) - - _LT_PROG_FUNCTION_REPLACE([func_stripname], [dnl - # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are - # positional parameters, so assign one to ordinary parameter first. - func_stripname_result=${3} - func_stripname_result=${func_stripname_result#"${1}"} - func_stripname_result=${func_stripname_result%"${2}"}]) - - _LT_PROG_FUNCTION_REPLACE([func_split_long_opt], [dnl - func_split_long_opt_name=${1%%=*} - func_split_long_opt_arg=${1#*=}]) - - _LT_PROG_FUNCTION_REPLACE([func_split_short_opt], [dnl - func_split_short_opt_arg=${1#??} - func_split_short_opt_name=${1%"$func_split_short_opt_arg"}]) - - _LT_PROG_FUNCTION_REPLACE([func_lo2o], [dnl - case ${1} in - *.lo) func_lo2o_result=${1%.lo}.${objext} ;; - *) func_lo2o_result=${1} ;; - esac]) - - _LT_PROG_FUNCTION_REPLACE([func_xform], [ func_xform_result=${1%.*}.lo]) - - _LT_PROG_FUNCTION_REPLACE([func_arith], [ func_arith_result=$(( $[*] ))]) - - _LT_PROG_FUNCTION_REPLACE([func_len], [ func_len_result=${#1}]) -fi - -if test x"$lt_shell_append" = xyes; then - _LT_PROG_FUNCTION_REPLACE([func_append], [ eval "${1}+=\\${2}"]) - - _LT_PROG_FUNCTION_REPLACE([func_append_quoted], [dnl - func_quote_for_eval "${2}" -dnl m4 expansion turns \\\\ into \\, and then the shell eval turns that into \ - eval "${1}+=\\\\ \\$func_quote_for_eval_result"]) - - # Save a `func_append' function call where possible by direct use of '+=' - sed -e 's%func_append \([[a-zA-Z_]]\{1,\}\) "%\1+="%g' $cfgfile > $cfgfile.tmp \ - && mv -f "$cfgfile.tmp" "$cfgfile" \ - || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") - test 0 -eq $? || _lt_function_replace_fail=: -else - # Save a `func_append' function call even when '+=' is not available - sed -e 's%func_append \([[a-zA-Z_]]\{1,\}\) "%\1="$\1%g' $cfgfile > $cfgfile.tmp \ - && mv -f "$cfgfile.tmp" "$cfgfile" \ - || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") - test 0 -eq $? || _lt_function_replace_fail=: -fi - -if test x"$_lt_function_replace_fail" = x":"; then - AC_MSG_WARN([Unable to substitute extended shell functions in $ofile]) -fi -]) - -# _LT_PATH_CONVERSION_FUNCTIONS -# ----------------------------- -# Determine which file name conversion functions should be used by -# func_to_host_file (and, implicitly, by func_to_host_path). These are needed -# for certain cross-compile configurations and native mingw. -m4_defun([_LT_PATH_CONVERSION_FUNCTIONS], -[AC_REQUIRE([AC_CANONICAL_HOST])dnl -AC_REQUIRE([AC_CANONICAL_BUILD])dnl -AC_MSG_CHECKING([how to convert $build file names to $host format]) -AC_CACHE_VAL(lt_cv_to_host_file_cmd, -[case $host in - *-*-mingw* ) - case $build in - *-*-mingw* ) # actually msys - lt_cv_to_host_file_cmd=func_convert_file_msys_to_w32 - ;; - *-*-cygwin* ) - lt_cv_to_host_file_cmd=func_convert_file_cygwin_to_w32 - ;; - * ) # otherwise, assume *nix - lt_cv_to_host_file_cmd=func_convert_file_nix_to_w32 - ;; - esac - ;; - *-*-cygwin* ) - case $build in - *-*-mingw* ) # actually msys - lt_cv_to_host_file_cmd=func_convert_file_msys_to_cygwin - ;; - *-*-cygwin* ) - lt_cv_to_host_file_cmd=func_convert_file_noop - ;; - * ) # otherwise, assume *nix - lt_cv_to_host_file_cmd=func_convert_file_nix_to_cygwin - ;; - esac - ;; - * ) # unhandled hosts (and "normal" native builds) - lt_cv_to_host_file_cmd=func_convert_file_noop - ;; -esac -]) -to_host_file_cmd=$lt_cv_to_host_file_cmd -AC_MSG_RESULT([$lt_cv_to_host_file_cmd]) -_LT_DECL([to_host_file_cmd], [lt_cv_to_host_file_cmd], - [0], [convert $build file names to $host format])dnl - -AC_MSG_CHECKING([how to convert $build file names to toolchain format]) -AC_CACHE_VAL(lt_cv_to_tool_file_cmd, -[#assume ordinary cross tools, or native build. -lt_cv_to_tool_file_cmd=func_convert_file_noop -case $host in - *-*-mingw* ) - case $build in - *-*-mingw* ) # actually msys - lt_cv_to_tool_file_cmd=func_convert_file_msys_to_w32 - ;; - esac - ;; -esac -]) -to_tool_file_cmd=$lt_cv_to_tool_file_cmd -AC_MSG_RESULT([$lt_cv_to_tool_file_cmd]) -_LT_DECL([to_tool_file_cmd], [lt_cv_to_tool_file_cmd], - [0], [convert $build files to toolchain format])dnl -])# _LT_PATH_CONVERSION_FUNCTIONS - -# Helper functions for option handling. -*- Autoconf -*- -# -# Copyright (C) 2004, 2005, 2007, 2008, 2009 Free Software Foundation, -# Inc. -# Written by Gary V. Vaughan, 2004 -# -# This file is free software; the Free Software Foundation gives -# unlimited permission to copy and/or distribute it, with or without -# modifications, as long as this notice is preserved. - -# serial 7 ltoptions.m4 - -# This is to help aclocal find these macros, as it can't see m4_define. -AC_DEFUN([LTOPTIONS_VERSION], [m4_if([1])]) - - -# _LT_MANGLE_OPTION(MACRO-NAME, OPTION-NAME) -# ------------------------------------------ -m4_define([_LT_MANGLE_OPTION], -[[_LT_OPTION_]m4_bpatsubst($1__$2, [[^a-zA-Z0-9_]], [_])]) - - -# _LT_SET_OPTION(MACRO-NAME, OPTION-NAME) -# --------------------------------------- -# Set option OPTION-NAME for macro MACRO-NAME, and if there is a -# matching handler defined, dispatch to it. Other OPTION-NAMEs are -# saved as a flag. -m4_define([_LT_SET_OPTION], -[m4_define(_LT_MANGLE_OPTION([$1], [$2]))dnl -m4_ifdef(_LT_MANGLE_DEFUN([$1], [$2]), - _LT_MANGLE_DEFUN([$1], [$2]), - [m4_warning([Unknown $1 option `$2'])])[]dnl -]) - - -# _LT_IF_OPTION(MACRO-NAME, OPTION-NAME, IF-SET, [IF-NOT-SET]) -# ------------------------------------------------------------ -# Execute IF-SET if OPTION is set, IF-NOT-SET otherwise. -m4_define([_LT_IF_OPTION], -[m4_ifdef(_LT_MANGLE_OPTION([$1], [$2]), [$3], [$4])]) - - -# _LT_UNLESS_OPTIONS(MACRO-NAME, OPTION-LIST, IF-NOT-SET) -# ------------------------------------------------------- -# Execute IF-NOT-SET unless all options in OPTION-LIST for MACRO-NAME -# are set. -m4_define([_LT_UNLESS_OPTIONS], -[m4_foreach([_LT_Option], m4_split(m4_normalize([$2])), - [m4_ifdef(_LT_MANGLE_OPTION([$1], _LT_Option), - [m4_define([$0_found])])])[]dnl -m4_ifdef([$0_found], [m4_undefine([$0_found])], [$3 -])[]dnl -]) - - -# _LT_SET_OPTIONS(MACRO-NAME, OPTION-LIST) -# ---------------------------------------- -# OPTION-LIST is a space-separated list of Libtool options associated -# with MACRO-NAME. If any OPTION has a matching handler declared with -# LT_OPTION_DEFINE, dispatch to that macro; otherwise complain about -# the unknown option and exit. -m4_defun([_LT_SET_OPTIONS], -[# Set options -m4_foreach([_LT_Option], m4_split(m4_normalize([$2])), - [_LT_SET_OPTION([$1], _LT_Option)]) - -m4_if([$1],[LT_INIT],[ - dnl - dnl Simply set some default values (i.e off) if boolean options were not - dnl specified: - _LT_UNLESS_OPTIONS([LT_INIT], [dlopen], [enable_dlopen=no - ]) - _LT_UNLESS_OPTIONS([LT_INIT], [win32-dll], [enable_win32_dll=no - ]) - dnl - dnl If no reference was made to various pairs of opposing options, then - dnl we run the default mode handler for the pair. For example, if neither - dnl `shared' nor `disable-shared' was passed, we enable building of shared - dnl archives by default: - _LT_UNLESS_OPTIONS([LT_INIT], [shared disable-shared], [_LT_ENABLE_SHARED]) - _LT_UNLESS_OPTIONS([LT_INIT], [static disable-static], [_LT_ENABLE_STATIC]) - _LT_UNLESS_OPTIONS([LT_INIT], [pic-only no-pic], [_LT_WITH_PIC]) - _LT_UNLESS_OPTIONS([LT_INIT], [fast-install disable-fast-install], - [_LT_ENABLE_FAST_INSTALL]) - ]) -])# _LT_SET_OPTIONS - - - -# _LT_MANGLE_DEFUN(MACRO-NAME, OPTION-NAME) -# ----------------------------------------- -m4_define([_LT_MANGLE_DEFUN], -[[_LT_OPTION_DEFUN_]m4_bpatsubst(m4_toupper([$1__$2]), [[^A-Z0-9_]], [_])]) - - -# LT_OPTION_DEFINE(MACRO-NAME, OPTION-NAME, CODE) -# ----------------------------------------------- -m4_define([LT_OPTION_DEFINE], -[m4_define(_LT_MANGLE_DEFUN([$1], [$2]), [$3])[]dnl -])# LT_OPTION_DEFINE - - -# dlopen -# ------ -LT_OPTION_DEFINE([LT_INIT], [dlopen], [enable_dlopen=yes -]) - -AU_DEFUN([AC_LIBTOOL_DLOPEN], -[_LT_SET_OPTION([LT_INIT], [dlopen]) -AC_DIAGNOSE([obsolete], -[$0: Remove this warning and the call to _LT_SET_OPTION when you -put the `dlopen' option into LT_INIT's first parameter.]) -]) - -dnl aclocal-1.4 backwards compatibility: -dnl AC_DEFUN([AC_LIBTOOL_DLOPEN], []) - - -# win32-dll -# --------- -# Declare package support for building win32 dll's. -LT_OPTION_DEFINE([LT_INIT], [win32-dll], -[enable_win32_dll=yes - -case $host in -*-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-cegcc*) - AC_CHECK_TOOL(AS, as, false) - AC_CHECK_TOOL(DLLTOOL, dlltool, false) - AC_CHECK_TOOL(OBJDUMP, objdump, false) - ;; -esac - -test -z "$AS" && AS=as -_LT_DECL([], [AS], [1], [Assembler program])dnl - -test -z "$DLLTOOL" && DLLTOOL=dlltool -_LT_DECL([], [DLLTOOL], [1], [DLL creation program])dnl - -test -z "$OBJDUMP" && OBJDUMP=objdump -_LT_DECL([], [OBJDUMP], [1], [Object dumper program])dnl -])# win32-dll - -AU_DEFUN([AC_LIBTOOL_WIN32_DLL], -[AC_REQUIRE([AC_CANONICAL_HOST])dnl -_LT_SET_OPTION([LT_INIT], [win32-dll]) -AC_DIAGNOSE([obsolete], -[$0: Remove this warning and the call to _LT_SET_OPTION when you -put the `win32-dll' option into LT_INIT's first parameter.]) -]) - -dnl aclocal-1.4 backwards compatibility: -dnl AC_DEFUN([AC_LIBTOOL_WIN32_DLL], []) - - -# _LT_ENABLE_SHARED([DEFAULT]) -# ---------------------------- -# implement the --enable-shared flag, and supports the `shared' and -# `disable-shared' LT_INIT options. -# DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. -m4_define([_LT_ENABLE_SHARED], -[m4_define([_LT_ENABLE_SHARED_DEFAULT], [m4_if($1, no, no, yes)])dnl -AC_ARG_ENABLE([shared], - [AS_HELP_STRING([--enable-shared@<:@=PKGS@:>@], - [build shared libraries @<:@default=]_LT_ENABLE_SHARED_DEFAULT[@:>@])], - [p=${PACKAGE-default} - case $enableval in - yes) enable_shared=yes ;; - no) enable_shared=no ;; - *) - enable_shared=no - # Look at the argument we got. We use all the common list separators. - lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," - for pkg in $enableval; do - IFS="$lt_save_ifs" - if test "X$pkg" = "X$p"; then - enable_shared=yes - fi - done - IFS="$lt_save_ifs" - ;; - esac], - [enable_shared=]_LT_ENABLE_SHARED_DEFAULT) - - _LT_DECL([build_libtool_libs], [enable_shared], [0], - [Whether or not to build shared libraries]) -])# _LT_ENABLE_SHARED - -LT_OPTION_DEFINE([LT_INIT], [shared], [_LT_ENABLE_SHARED([yes])]) -LT_OPTION_DEFINE([LT_INIT], [disable-shared], [_LT_ENABLE_SHARED([no])]) - -# Old names: -AC_DEFUN([AC_ENABLE_SHARED], -[_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[shared]) -]) - -AC_DEFUN([AC_DISABLE_SHARED], -[_LT_SET_OPTION([LT_INIT], [disable-shared]) -]) - -AU_DEFUN([AM_ENABLE_SHARED], [AC_ENABLE_SHARED($@)]) -AU_DEFUN([AM_DISABLE_SHARED], [AC_DISABLE_SHARED($@)]) - -dnl aclocal-1.4 backwards compatibility: -dnl AC_DEFUN([AM_ENABLE_SHARED], []) -dnl AC_DEFUN([AM_DISABLE_SHARED], []) - - - -# _LT_ENABLE_STATIC([DEFAULT]) -# ---------------------------- -# implement the --enable-static flag, and support the `static' and -# `disable-static' LT_INIT options. -# DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. -m4_define([_LT_ENABLE_STATIC], -[m4_define([_LT_ENABLE_STATIC_DEFAULT], [m4_if($1, no, no, yes)])dnl -AC_ARG_ENABLE([static], - [AS_HELP_STRING([--enable-static@<:@=PKGS@:>@], - [build static libraries @<:@default=]_LT_ENABLE_STATIC_DEFAULT[@:>@])], - [p=${PACKAGE-default} - case $enableval in - yes) enable_static=yes ;; - no) enable_static=no ;; - *) - enable_static=no - # Look at the argument we got. We use all the common list separators. - lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," - for pkg in $enableval; do - IFS="$lt_save_ifs" - if test "X$pkg" = "X$p"; then - enable_static=yes - fi - done - IFS="$lt_save_ifs" - ;; - esac], - [enable_static=]_LT_ENABLE_STATIC_DEFAULT) - - _LT_DECL([build_old_libs], [enable_static], [0], - [Whether or not to build static libraries]) -])# _LT_ENABLE_STATIC - -LT_OPTION_DEFINE([LT_INIT], [static], [_LT_ENABLE_STATIC([yes])]) -LT_OPTION_DEFINE([LT_INIT], [disable-static], [_LT_ENABLE_STATIC([no])]) - -# Old names: -AC_DEFUN([AC_ENABLE_STATIC], -[_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[static]) -]) - -AC_DEFUN([AC_DISABLE_STATIC], -[_LT_SET_OPTION([LT_INIT], [disable-static]) -]) - -AU_DEFUN([AM_ENABLE_STATIC], [AC_ENABLE_STATIC($@)]) -AU_DEFUN([AM_DISABLE_STATIC], [AC_DISABLE_STATIC($@)]) - -dnl aclocal-1.4 backwards compatibility: -dnl AC_DEFUN([AM_ENABLE_STATIC], []) -dnl AC_DEFUN([AM_DISABLE_STATIC], []) - - - -# _LT_ENABLE_FAST_INSTALL([DEFAULT]) -# ---------------------------------- -# implement the --enable-fast-install flag, and support the `fast-install' -# and `disable-fast-install' LT_INIT options. -# DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. -m4_define([_LT_ENABLE_FAST_INSTALL], -[m4_define([_LT_ENABLE_FAST_INSTALL_DEFAULT], [m4_if($1, no, no, yes)])dnl -AC_ARG_ENABLE([fast-install], - [AS_HELP_STRING([--enable-fast-install@<:@=PKGS@:>@], - [optimize for fast installation @<:@default=]_LT_ENABLE_FAST_INSTALL_DEFAULT[@:>@])], - [p=${PACKAGE-default} - case $enableval in - yes) enable_fast_install=yes ;; - no) enable_fast_install=no ;; - *) - enable_fast_install=no - # Look at the argument we got. We use all the common list separators. - lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," - for pkg in $enableval; do - IFS="$lt_save_ifs" - if test "X$pkg" = "X$p"; then - enable_fast_install=yes - fi - done - IFS="$lt_save_ifs" - ;; - esac], - [enable_fast_install=]_LT_ENABLE_FAST_INSTALL_DEFAULT) - -_LT_DECL([fast_install], [enable_fast_install], [0], - [Whether or not to optimize for fast installation])dnl -])# _LT_ENABLE_FAST_INSTALL - -LT_OPTION_DEFINE([LT_INIT], [fast-install], [_LT_ENABLE_FAST_INSTALL([yes])]) -LT_OPTION_DEFINE([LT_INIT], [disable-fast-install], [_LT_ENABLE_FAST_INSTALL([no])]) - -# Old names: -AU_DEFUN([AC_ENABLE_FAST_INSTALL], -[_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[fast-install]) -AC_DIAGNOSE([obsolete], -[$0: Remove this warning and the call to _LT_SET_OPTION when you put -the `fast-install' option into LT_INIT's first parameter.]) -]) - -AU_DEFUN([AC_DISABLE_FAST_INSTALL], -[_LT_SET_OPTION([LT_INIT], [disable-fast-install]) -AC_DIAGNOSE([obsolete], -[$0: Remove this warning and the call to _LT_SET_OPTION when you put -the `disable-fast-install' option into LT_INIT's first parameter.]) -]) - -dnl aclocal-1.4 backwards compatibility: -dnl AC_DEFUN([AC_ENABLE_FAST_INSTALL], []) -dnl AC_DEFUN([AM_DISABLE_FAST_INSTALL], []) - - -# _LT_WITH_PIC([MODE]) -# -------------------- -# implement the --with-pic flag, and support the `pic-only' and `no-pic' -# LT_INIT options. -# MODE is either `yes' or `no'. If omitted, it defaults to `both'. -m4_define([_LT_WITH_PIC], -[AC_ARG_WITH([pic], - [AS_HELP_STRING([--with-pic], - [try to use only PIC/non-PIC objects @<:@default=use both@:>@])], - [pic_mode="$withval"], - [pic_mode=default]) - -test -z "$pic_mode" && pic_mode=m4_default([$1], [default]) - -_LT_DECL([], [pic_mode], [0], [What type of objects to build])dnl -])# _LT_WITH_PIC - -LT_OPTION_DEFINE([LT_INIT], [pic-only], [_LT_WITH_PIC([yes])]) -LT_OPTION_DEFINE([LT_INIT], [no-pic], [_LT_WITH_PIC([no])]) - -# Old name: -AU_DEFUN([AC_LIBTOOL_PICMODE], -[_LT_SET_OPTION([LT_INIT], [pic-only]) -AC_DIAGNOSE([obsolete], -[$0: Remove this warning and the call to _LT_SET_OPTION when you -put the `pic-only' option into LT_INIT's first parameter.]) -]) - -dnl aclocal-1.4 backwards compatibility: -dnl AC_DEFUN([AC_LIBTOOL_PICMODE], []) - - -m4_define([_LTDL_MODE], []) -LT_OPTION_DEFINE([LTDL_INIT], [nonrecursive], - [m4_define([_LTDL_MODE], [nonrecursive])]) -LT_OPTION_DEFINE([LTDL_INIT], [recursive], - [m4_define([_LTDL_MODE], [recursive])]) -LT_OPTION_DEFINE([LTDL_INIT], [subproject], - [m4_define([_LTDL_MODE], [subproject])]) - -m4_define([_LTDL_TYPE], []) -LT_OPTION_DEFINE([LTDL_INIT], [installable], - [m4_define([_LTDL_TYPE], [installable])]) -LT_OPTION_DEFINE([LTDL_INIT], [convenience], - [m4_define([_LTDL_TYPE], [convenience])]) - -# ltsugar.m4 -- libtool m4 base layer. -*-Autoconf-*- -# -# Copyright (C) 2004, 2005, 2007, 2008 Free Software Foundation, Inc. -# Written by Gary V. Vaughan, 2004 -# -# This file is free software; the Free Software Foundation gives -# unlimited permission to copy and/or distribute it, with or without -# modifications, as long as this notice is preserved. - -# serial 6 ltsugar.m4 - -# This is to help aclocal find these macros, as it can't see m4_define. -AC_DEFUN([LTSUGAR_VERSION], [m4_if([0.1])]) - - -# lt_join(SEP, ARG1, [ARG2...]) -# ----------------------------- -# Produce ARG1SEPARG2...SEPARGn, omitting [] arguments and their -# associated separator. -# Needed until we can rely on m4_join from Autoconf 2.62, since all earlier -# versions in m4sugar had bugs. -m4_define([lt_join], -[m4_if([$#], [1], [], - [$#], [2], [[$2]], - [m4_if([$2], [], [], [[$2]_])$0([$1], m4_shift(m4_shift($@)))])]) -m4_define([_lt_join], -[m4_if([$#$2], [2], [], - [m4_if([$2], [], [], [[$1$2]])$0([$1], m4_shift(m4_shift($@)))])]) - - -# lt_car(LIST) -# lt_cdr(LIST) -# ------------ -# Manipulate m4 lists. -# These macros are necessary as long as will still need to support -# Autoconf-2.59 which quotes differently. -m4_define([lt_car], [[$1]]) -m4_define([lt_cdr], -[m4_if([$#], 0, [m4_fatal([$0: cannot be called without arguments])], - [$#], 1, [], - [m4_dquote(m4_shift($@))])]) -m4_define([lt_unquote], $1) - - -# lt_append(MACRO-NAME, STRING, [SEPARATOR]) -# ------------------------------------------ -# Redefine MACRO-NAME to hold its former content plus `SEPARATOR'`STRING'. -# Note that neither SEPARATOR nor STRING are expanded; they are appended -# to MACRO-NAME as is (leaving the expansion for when MACRO-NAME is invoked). -# No SEPARATOR is output if MACRO-NAME was previously undefined (different -# than defined and empty). -# -# This macro is needed until we can rely on Autoconf 2.62, since earlier -# versions of m4sugar mistakenly expanded SEPARATOR but not STRING. -m4_define([lt_append], -[m4_define([$1], - m4_ifdef([$1], [m4_defn([$1])[$3]])[$2])]) - - - -# lt_combine(SEP, PREFIX-LIST, INFIX, SUFFIX1, [SUFFIX2...]) -# ---------------------------------------------------------- -# Produce a SEP delimited list of all paired combinations of elements of -# PREFIX-LIST with SUFFIX1 through SUFFIXn. Each element of the list -# has the form PREFIXmINFIXSUFFIXn. -# Needed until we can rely on m4_combine added in Autoconf 2.62. -m4_define([lt_combine], -[m4_if(m4_eval([$# > 3]), [1], - [m4_pushdef([_Lt_sep], [m4_define([_Lt_sep], m4_defn([lt_car]))])]]dnl -[[m4_foreach([_Lt_prefix], [$2], - [m4_foreach([_Lt_suffix], - ]m4_dquote(m4_dquote(m4_shift(m4_shift(m4_shift($@)))))[, - [_Lt_sep([$1])[]m4_defn([_Lt_prefix])[$3]m4_defn([_Lt_suffix])])])])]) - - -# lt_if_append_uniq(MACRO-NAME, VARNAME, [SEPARATOR], [UNIQ], [NOT-UNIQ]) -# ----------------------------------------------------------------------- -# Iff MACRO-NAME does not yet contain VARNAME, then append it (delimited -# by SEPARATOR if supplied) and expand UNIQ, else NOT-UNIQ. -m4_define([lt_if_append_uniq], -[m4_ifdef([$1], - [m4_if(m4_index([$3]m4_defn([$1])[$3], [$3$2$3]), [-1], - [lt_append([$1], [$2], [$3])$4], - [$5])], - [lt_append([$1], [$2], [$3])$4])]) - - -# lt_dict_add(DICT, KEY, VALUE) -# ----------------------------- -m4_define([lt_dict_add], -[m4_define([$1($2)], [$3])]) - - -# lt_dict_add_subkey(DICT, KEY, SUBKEY, VALUE) -# -------------------------------------------- -m4_define([lt_dict_add_subkey], -[m4_define([$1($2:$3)], [$4])]) - - -# lt_dict_fetch(DICT, KEY, [SUBKEY]) -# ---------------------------------- -m4_define([lt_dict_fetch], -[m4_ifval([$3], - m4_ifdef([$1($2:$3)], [m4_defn([$1($2:$3)])]), - m4_ifdef([$1($2)], [m4_defn([$1($2)])]))]) - - -# lt_if_dict_fetch(DICT, KEY, [SUBKEY], VALUE, IF-TRUE, [IF-FALSE]) -# ----------------------------------------------------------------- -m4_define([lt_if_dict_fetch], -[m4_if(lt_dict_fetch([$1], [$2], [$3]), [$4], - [$5], - [$6])]) - - -# lt_dict_filter(DICT, [SUBKEY], VALUE, [SEPARATOR], KEY, [...]) -# -------------------------------------------------------------- -m4_define([lt_dict_filter], -[m4_if([$5], [], [], - [lt_join(m4_quote(m4_default([$4], [[, ]])), - lt_unquote(m4_split(m4_normalize(m4_foreach(_Lt_key, lt_car([m4_shiftn(4, $@)]), - [lt_if_dict_fetch([$1], _Lt_key, [$2], [$3], [_Lt_key ])])))))])[]dnl -]) - -# ltversion.m4 -- version numbers -*- Autoconf -*- -# -# Copyright (C) 2004 Free Software Foundation, Inc. -# Written by Scott James Remnant, 2004 -# -# This file is free software; the Free Software Foundation gives -# unlimited permission to copy and/or distribute it, with or without -# modifications, as long as this notice is preserved. - -# @configure_input@ - -# serial 3293 ltversion.m4 -# This file is part of GNU Libtool - -m4_define([LT_PACKAGE_VERSION], [2.4]) -m4_define([LT_PACKAGE_REVISION], [1.3293]) - -AC_DEFUN([LTVERSION_VERSION], -[macro_version='2.4' -macro_revision='1.3293' -_LT_DECL(, macro_version, 0, [Which release of libtool.m4 was used?]) -_LT_DECL(, macro_revision, 0) -]) - -# lt~obsolete.m4 -- aclocal satisfying obsolete definitions. -*-Autoconf-*- -# -# Copyright (C) 2004, 2005, 2007, 2009 Free Software Foundation, Inc. -# Written by Scott James Remnant, 2004. -# -# This file is free software; the Free Software Foundation gives -# unlimited permission to copy and/or distribute it, with or without -# modifications, as long as this notice is preserved. - -# serial 5 lt~obsolete.m4 - -# These exist entirely to fool aclocal when bootstrapping libtool. -# -# In the past libtool.m4 has provided macros via AC_DEFUN (or AU_DEFUN) -# which have later been changed to m4_define as they aren't part of the -# exported API, or moved to Autoconf or Automake where they belong. -# -# The trouble is, aclocal is a bit thick. It'll see the old AC_DEFUN -# in /usr/share/aclocal/libtool.m4 and remember it, then when it sees us -# using a macro with the same name in our local m4/libtool.m4 it'll -# pull the old libtool.m4 in (it doesn't see our shiny new m4_define -# and doesn't know about Autoconf macros at all.) -# -# So we provide this file, which has a silly filename so it's always -# included after everything else. This provides aclocal with the -# AC_DEFUNs it wants, but when m4 processes it, it doesn't do anything -# because those macros already exist, or will be overwritten later. -# We use AC_DEFUN over AU_DEFUN for compatibility with aclocal-1.6. -# -# Anytime we withdraw an AC_DEFUN or AU_DEFUN, remember to add it here. -# Yes, that means every name once taken will need to remain here until -# we give up compatibility with versions before 1.7, at which point -# we need to keep only those names which we still refer to. - -# This is to help aclocal find these macros, as it can't see m4_define. -AC_DEFUN([LTOBSOLETE_VERSION], [m4_if([1])]) - -m4_ifndef([AC_LIBTOOL_LINKER_OPTION], [AC_DEFUN([AC_LIBTOOL_LINKER_OPTION])]) -m4_ifndef([AC_PROG_EGREP], [AC_DEFUN([AC_PROG_EGREP])]) -m4_ifndef([_LT_AC_PROG_ECHO_BACKSLASH], [AC_DEFUN([_LT_AC_PROG_ECHO_BACKSLASH])]) -m4_ifndef([_LT_AC_SHELL_INIT], [AC_DEFUN([_LT_AC_SHELL_INIT])]) -m4_ifndef([_LT_AC_SYS_LIBPATH_AIX], [AC_DEFUN([_LT_AC_SYS_LIBPATH_AIX])]) -m4_ifndef([_LT_PROG_LTMAIN], [AC_DEFUN([_LT_PROG_LTMAIN])]) -m4_ifndef([_LT_AC_TAGVAR], [AC_DEFUN([_LT_AC_TAGVAR])]) -m4_ifndef([AC_LTDL_ENABLE_INSTALL], [AC_DEFUN([AC_LTDL_ENABLE_INSTALL])]) -m4_ifndef([AC_LTDL_PREOPEN], [AC_DEFUN([AC_LTDL_PREOPEN])]) -m4_ifndef([_LT_AC_SYS_COMPILER], [AC_DEFUN([_LT_AC_SYS_COMPILER])]) -m4_ifndef([_LT_AC_LOCK], [AC_DEFUN([_LT_AC_LOCK])]) -m4_ifndef([AC_LIBTOOL_SYS_OLD_ARCHIVE], [AC_DEFUN([AC_LIBTOOL_SYS_OLD_ARCHIVE])]) -m4_ifndef([_LT_AC_TRY_DLOPEN_SELF], [AC_DEFUN([_LT_AC_TRY_DLOPEN_SELF])]) -m4_ifndef([AC_LIBTOOL_PROG_CC_C_O], [AC_DEFUN([AC_LIBTOOL_PROG_CC_C_O])]) -m4_ifndef([AC_LIBTOOL_SYS_HARD_LINK_LOCKS], [AC_DEFUN([AC_LIBTOOL_SYS_HARD_LINK_LOCKS])]) -m4_ifndef([AC_LIBTOOL_OBJDIR], [AC_DEFUN([AC_LIBTOOL_OBJDIR])]) -m4_ifndef([AC_LTDL_OBJDIR], [AC_DEFUN([AC_LTDL_OBJDIR])]) -m4_ifndef([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH], [AC_DEFUN([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH])]) -m4_ifndef([AC_LIBTOOL_SYS_LIB_STRIP], [AC_DEFUN([AC_LIBTOOL_SYS_LIB_STRIP])]) -m4_ifndef([AC_PATH_MAGIC], [AC_DEFUN([AC_PATH_MAGIC])]) -m4_ifndef([AC_PROG_LD_GNU], [AC_DEFUN([AC_PROG_LD_GNU])]) -m4_ifndef([AC_PROG_LD_RELOAD_FLAG], [AC_DEFUN([AC_PROG_LD_RELOAD_FLAG])]) -m4_ifndef([AC_DEPLIBS_CHECK_METHOD], [AC_DEFUN([AC_DEPLIBS_CHECK_METHOD])]) -m4_ifndef([AC_LIBTOOL_PROG_COMPILER_NO_RTTI], [AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_NO_RTTI])]) -m4_ifndef([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE], [AC_DEFUN([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE])]) -m4_ifndef([AC_LIBTOOL_PROG_COMPILER_PIC], [AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_PIC])]) -m4_ifndef([AC_LIBTOOL_PROG_LD_SHLIBS], [AC_DEFUN([AC_LIBTOOL_PROG_LD_SHLIBS])]) -m4_ifndef([AC_LIBTOOL_POSTDEP_PREDEP], [AC_DEFUN([AC_LIBTOOL_POSTDEP_PREDEP])]) -m4_ifndef([LT_AC_PROG_EGREP], [AC_DEFUN([LT_AC_PROG_EGREP])]) -m4_ifndef([LT_AC_PROG_SED], [AC_DEFUN([LT_AC_PROG_SED])]) -m4_ifndef([_LT_CC_BASENAME], [AC_DEFUN([_LT_CC_BASENAME])]) -m4_ifndef([_LT_COMPILER_BOILERPLATE], [AC_DEFUN([_LT_COMPILER_BOILERPLATE])]) -m4_ifndef([_LT_LINKER_BOILERPLATE], [AC_DEFUN([_LT_LINKER_BOILERPLATE])]) -m4_ifndef([_AC_PROG_LIBTOOL], [AC_DEFUN([_AC_PROG_LIBTOOL])]) -m4_ifndef([AC_LIBTOOL_SETUP], [AC_DEFUN([AC_LIBTOOL_SETUP])]) -m4_ifndef([_LT_AC_CHECK_DLFCN], [AC_DEFUN([_LT_AC_CHECK_DLFCN])]) -m4_ifndef([AC_LIBTOOL_SYS_DYNAMIC_LINKER], [AC_DEFUN([AC_LIBTOOL_SYS_DYNAMIC_LINKER])]) -m4_ifndef([_LT_AC_TAGCONFIG], [AC_DEFUN([_LT_AC_TAGCONFIG])]) -m4_ifndef([AC_DISABLE_FAST_INSTALL], [AC_DEFUN([AC_DISABLE_FAST_INSTALL])]) -m4_ifndef([_LT_AC_LANG_CXX], [AC_DEFUN([_LT_AC_LANG_CXX])]) -m4_ifndef([_LT_AC_LANG_F77], [AC_DEFUN([_LT_AC_LANG_F77])]) -m4_ifndef([_LT_AC_LANG_GCJ], [AC_DEFUN([_LT_AC_LANG_GCJ])]) -m4_ifndef([AC_LIBTOOL_LANG_C_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_C_CONFIG])]) -m4_ifndef([_LT_AC_LANG_C_CONFIG], [AC_DEFUN([_LT_AC_LANG_C_CONFIG])]) -m4_ifndef([AC_LIBTOOL_LANG_CXX_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_CXX_CONFIG])]) -m4_ifndef([_LT_AC_LANG_CXX_CONFIG], [AC_DEFUN([_LT_AC_LANG_CXX_CONFIG])]) -m4_ifndef([AC_LIBTOOL_LANG_F77_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_F77_CONFIG])]) -m4_ifndef([_LT_AC_LANG_F77_CONFIG], [AC_DEFUN([_LT_AC_LANG_F77_CONFIG])]) -m4_ifndef([AC_LIBTOOL_LANG_GCJ_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_GCJ_CONFIG])]) -m4_ifndef([_LT_AC_LANG_GCJ_CONFIG], [AC_DEFUN([_LT_AC_LANG_GCJ_CONFIG])]) -m4_ifndef([AC_LIBTOOL_LANG_RC_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_RC_CONFIG])]) -m4_ifndef([_LT_AC_LANG_RC_CONFIG], [AC_DEFUN([_LT_AC_LANG_RC_CONFIG])]) -m4_ifndef([AC_LIBTOOL_CONFIG], [AC_DEFUN([AC_LIBTOOL_CONFIG])]) -m4_ifndef([_LT_AC_FILE_LTDLL_C], [AC_DEFUN([_LT_AC_FILE_LTDLL_C])]) -m4_ifndef([_LT_REQUIRED_DARWIN_CHECKS], [AC_DEFUN([_LT_REQUIRED_DARWIN_CHECKS])]) -m4_ifndef([_LT_AC_PROG_CXXCPP], [AC_DEFUN([_LT_AC_PROG_CXXCPP])]) -m4_ifndef([_LT_PREPARE_SED_QUOTE_VARS], [AC_DEFUN([_LT_PREPARE_SED_QUOTE_VARS])]) -m4_ifndef([_LT_PROG_ECHO_BACKSLASH], [AC_DEFUN([_LT_PROG_ECHO_BACKSLASH])]) -m4_ifndef([_LT_PROG_F77], [AC_DEFUN([_LT_PROG_F77])]) -m4_ifndef([_LT_PROG_FC], [AC_DEFUN([_LT_PROG_FC])]) -m4_ifndef([_LT_PROG_CXX], [AC_DEFUN([_LT_PROG_CXX])]) - -# nls.m4 serial 5 (gettext-0.18) -dnl Copyright (C) 1995-2003, 2005-2006, 2008-2010 Free Software Foundation, -dnl Inc. -dnl This file is free software; the Free Software Foundation -dnl gives unlimited permission to copy and/or distribute it, -dnl with or without modifications, as long as this notice is preserved. -dnl -dnl This file can can be used in projects which are not available under -dnl the GNU General Public License or the GNU Library General Public -dnl License but which still want to provide support for the GNU gettext -dnl functionality. -dnl Please note that the actual code of the GNU gettext library is covered -dnl by the GNU Library General Public License, and the rest of the GNU -dnl gettext package package is covered by the GNU General Public License. -dnl They are *not* in the public domain. - -dnl Authors: -dnl Ulrich Drepper , 1995-2000. -dnl Bruno Haible , 2000-2003. - -AC_PREREQ([2.50]) - -AC_DEFUN([AM_NLS], -[ - AC_MSG_CHECKING([whether NLS is requested]) - dnl Default is enabled NLS - AC_ARG_ENABLE([nls], - [ --disable-nls do not use Native Language Support], - USE_NLS=$enableval, USE_NLS=yes) - AC_MSG_RESULT([$USE_NLS]) - AC_SUBST([USE_NLS]) -]) - -# pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*- -# serial 1 (pkg-config-0.24) -# -# Copyright © 2004 Scott James Remnant . -# -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, but -# WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -# -# As a special exception to the GNU General Public License, if you -# distribute this file as part of a program that contains a -# configuration script generated by Autoconf, you may include it under -# the same distribution terms that you use for the rest of that program. - -# PKG_PROG_PKG_CONFIG([MIN-VERSION]) -# ---------------------------------- -AC_DEFUN([PKG_PROG_PKG_CONFIG], -[m4_pattern_forbid([^_?PKG_[A-Z_]+$]) -m4_pattern_allow([^PKG_CONFIG(_PATH)?$]) -AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility]) -AC_ARG_VAR([PKG_CONFIG_PATH], [directories to add to pkg-config's search path]) -AC_ARG_VAR([PKG_CONFIG_LIBDIR], [path overriding pkg-config's built-in search path]) - -if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then - AC_PATH_TOOL([PKG_CONFIG], [pkg-config]) -fi -if test -n "$PKG_CONFIG"; then - _pkg_min_version=m4_default([$1], [0.9.0]) - AC_MSG_CHECKING([pkg-config is at least version $_pkg_min_version]) - if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then - AC_MSG_RESULT([yes]) - else - AC_MSG_RESULT([no]) - PKG_CONFIG="" - fi -fi[]dnl -])# PKG_PROG_PKG_CONFIG - -# PKG_CHECK_EXISTS(MODULES, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) -# -# Check to see whether a particular set of modules exists. Similar -# to PKG_CHECK_MODULES(), but does not set variables or print errors. -# -# Please remember that m4 expands AC_REQUIRE([PKG_PROG_PKG_CONFIG]) -# only at the first occurence in configure.ac, so if the first place -# it's called might be skipped (such as if it is within an "if", you -# have to call PKG_CHECK_EXISTS manually -# -------------------------------------------------------------- -AC_DEFUN([PKG_CHECK_EXISTS], -[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl -if test -n "$PKG_CONFIG" && \ - AC_RUN_LOG([$PKG_CONFIG --exists --print-errors "$1"]); then - m4_default([$2], [:]) -m4_ifvaln([$3], [else - $3])dnl -fi]) - -# _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES]) -# --------------------------------------------- -m4_define([_PKG_CONFIG], -[if test -n "$$1"; then - pkg_cv_[]$1="$$1" - elif test -n "$PKG_CONFIG"; then - PKG_CHECK_EXISTS([$3], - [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null`], - [pkg_failed=yes]) - else - pkg_failed=untried -fi[]dnl -])# _PKG_CONFIG - -# _PKG_SHORT_ERRORS_SUPPORTED -# ----------------------------- -AC_DEFUN([_PKG_SHORT_ERRORS_SUPPORTED], -[AC_REQUIRE([PKG_PROG_PKG_CONFIG]) -if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then - _pkg_short_errors_supported=yes -else - _pkg_short_errors_supported=no -fi[]dnl -])# _PKG_SHORT_ERRORS_SUPPORTED - - -# PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND], -# [ACTION-IF-NOT-FOUND]) -# -# -# Note that if there is a possibility the first call to -# PKG_CHECK_MODULES might not happen, you should be sure to include an -# explicit call to PKG_PROG_PKG_CONFIG in your configure.ac -# -# -# -------------------------------------------------------------- -AC_DEFUN([PKG_CHECK_MODULES], -[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl -AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl -AC_ARG_VAR([$1][_LIBS], [linker flags for $1, overriding pkg-config])dnl - -pkg_failed=no -AC_MSG_CHECKING([for $1]) - -_PKG_CONFIG([$1][_CFLAGS], [cflags], [$2]) -_PKG_CONFIG([$1][_LIBS], [libs], [$2]) - -m4_define([_PKG_TEXT], [Alternatively, you may set the environment variables $1[]_CFLAGS -and $1[]_LIBS to avoid the need to call pkg-config. -See the pkg-config man page for more details.]) - -if test $pkg_failed = yes; then - AC_MSG_RESULT([no]) - _PKG_SHORT_ERRORS_SUPPORTED - if test $_pkg_short_errors_supported = yes; then - $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "$2" 2>&1` - else - $1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors "$2" 2>&1` - fi - # Put the nasty error message in config.log where it belongs - echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD - - m4_default([$4], [AC_MSG_ERROR( -[Package requirements ($2) were not met: - -$$1_PKG_ERRORS - -Consider adjusting the PKG_CONFIG_PATH environment variable if you -installed software in a non-standard prefix. - -_PKG_TEXT])[]dnl - ]) -elif test $pkg_failed = untried; then - AC_MSG_RESULT([no]) - m4_default([$4], [AC_MSG_FAILURE( -[The pkg-config script could not be found or is too old. Make sure it -is in your PATH or set the PKG_CONFIG environment variable to the full -path to pkg-config. - -_PKG_TEXT - -To get pkg-config, see .])dnl - ]) -else - $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS - $1[]_LIBS=$pkg_cv_[]$1[]_LIBS - AC_MSG_RESULT([yes]) - $3 -fi[]dnl -])# PKG_CHECK_MODULES - -# po.m4 serial 17 (gettext-0.18) -dnl Copyright (C) 1995-2010 Free Software Foundation, Inc. -dnl This file is free software; the Free Software Foundation -dnl gives unlimited permission to copy and/or distribute it, -dnl with or without modifications, as long as this notice is preserved. -dnl -dnl This file can can be used in projects which are not available under -dnl the GNU General Public License or the GNU Library General Public -dnl License but which still want to provide support for the GNU gettext -dnl functionality. -dnl Please note that the actual code of the GNU gettext library is covered -dnl by the GNU Library General Public License, and the rest of the GNU -dnl gettext package package is covered by the GNU General Public License. -dnl They are *not* in the public domain. - -dnl Authors: -dnl Ulrich Drepper , 1995-2000. -dnl Bruno Haible , 2000-2003. - -AC_PREREQ([2.50]) - -dnl Checks for all prerequisites of the po subdirectory. -AC_DEFUN([AM_PO_SUBDIRS], -[ - AC_REQUIRE([AC_PROG_MAKE_SET])dnl - AC_REQUIRE([AC_PROG_INSTALL])dnl - AC_REQUIRE([AM_PROG_MKDIR_P])dnl defined by automake - AC_REQUIRE([AM_NLS])dnl - - dnl Release version of the gettext macros. This is used to ensure that - dnl the gettext macros and po/Makefile.in.in are in sync. - AC_SUBST([GETTEXT_MACRO_VERSION], [0.18]) - - dnl Perform the following tests also if --disable-nls has been given, - dnl because they are needed for "make dist" to work. - - dnl Search for GNU msgfmt in the PATH. - dnl The first test excludes Solaris msgfmt and early GNU msgfmt versions. - dnl The second test excludes FreeBSD msgfmt. - AM_PATH_PROG_WITH_TEST(MSGFMT, msgfmt, - [$ac_dir/$ac_word --statistics /dev/null >&]AS_MESSAGE_LOG_FD[ 2>&1 && - (if $ac_dir/$ac_word --statistics /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi)], - :) - AC_PATH_PROG([GMSGFMT], [gmsgfmt], [$MSGFMT]) - - dnl Test whether it is GNU msgfmt >= 0.15. -changequote(,)dnl - case `$MSGFMT --version | sed 1q | sed -e 's,^[^0-9]*,,'` in - '' | 0.[0-9] | 0.[0-9].* | 0.1[0-4] | 0.1[0-4].*) MSGFMT_015=: ;; - *) MSGFMT_015=$MSGFMT ;; - esac -changequote([,])dnl - AC_SUBST([MSGFMT_015]) -changequote(,)dnl - case `$GMSGFMT --version | sed 1q | sed -e 's,^[^0-9]*,,'` in - '' | 0.[0-9] | 0.[0-9].* | 0.1[0-4] | 0.1[0-4].*) GMSGFMT_015=: ;; - *) GMSGFMT_015=$GMSGFMT ;; - esac -changequote([,])dnl - AC_SUBST([GMSGFMT_015]) - - dnl Search for GNU xgettext 0.12 or newer in the PATH. - dnl The first test excludes Solaris xgettext and early GNU xgettext versions. - dnl The second test excludes FreeBSD xgettext. - AM_PATH_PROG_WITH_TEST(XGETTEXT, xgettext, - [$ac_dir/$ac_word --omit-header --copyright-holder= --msgid-bugs-address= /dev/null >&]AS_MESSAGE_LOG_FD[ 2>&1 && - (if $ac_dir/$ac_word --omit-header --copyright-holder= --msgid-bugs-address= /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi)], - :) - dnl Remove leftover from FreeBSD xgettext call. - rm -f messages.po - - dnl Test whether it is GNU xgettext >= 0.15. -changequote(,)dnl - case `$XGETTEXT --version | sed 1q | sed -e 's,^[^0-9]*,,'` in - '' | 0.[0-9] | 0.[0-9].* | 0.1[0-4] | 0.1[0-4].*) XGETTEXT_015=: ;; - *) XGETTEXT_015=$XGETTEXT ;; - esac -changequote([,])dnl - AC_SUBST([XGETTEXT_015]) - - dnl Search for GNU msgmerge 0.11 or newer in the PATH. - AM_PATH_PROG_WITH_TEST(MSGMERGE, msgmerge, - [$ac_dir/$ac_word --update -q /dev/null /dev/null >&]AS_MESSAGE_LOG_FD[ 2>&1], :) - - dnl Installation directories. - dnl Autoconf >= 2.60 defines localedir. For older versions of autoconf, we - dnl have to define it here, so that it can be used in po/Makefile. - test -n "$localedir" || localedir='${datadir}/locale' - AC_SUBST([localedir]) - - dnl Support for AM_XGETTEXT_OPTION. - test -n "${XGETTEXT_EXTRA_OPTIONS+set}" || XGETTEXT_EXTRA_OPTIONS= - AC_SUBST([XGETTEXT_EXTRA_OPTIONS]) - - AC_CONFIG_COMMANDS([po-directories], [[ - for ac_file in $CONFIG_FILES; do - # Support "outfile[:infile[:infile...]]" - case "$ac_file" in - *:*) ac_file=`echo "$ac_file"|sed 's%:.*%%'` ;; - esac - # PO directories have a Makefile.in generated from Makefile.in.in. - case "$ac_file" in */Makefile.in) - # Adjust a relative srcdir. - ac_dir=`echo "$ac_file"|sed 's%/[^/][^/]*$%%'` - ac_dir_suffix="/`echo "$ac_dir"|sed 's%^\./%%'`" - ac_dots=`echo "$ac_dir_suffix"|sed 's%/[^/]*%../%g'` - # In autoconf-2.13 it is called $ac_given_srcdir. - # In autoconf-2.50 it is called $srcdir. - test -n "$ac_given_srcdir" || ac_given_srcdir="$srcdir" - case "$ac_given_srcdir" in - .) top_srcdir=`echo $ac_dots|sed 's%/$%%'` ;; - /*) top_srcdir="$ac_given_srcdir" ;; - *) top_srcdir="$ac_dots$ac_given_srcdir" ;; - esac - # Treat a directory as a PO directory if and only if it has a - # POTFILES.in file. This allows packages to have multiple PO - # directories under different names or in different locations. - if test -f "$ac_given_srcdir/$ac_dir/POTFILES.in"; then - rm -f "$ac_dir/POTFILES" - test -n "$as_me" && echo "$as_me: creating $ac_dir/POTFILES" || echo "creating $ac_dir/POTFILES" - cat "$ac_given_srcdir/$ac_dir/POTFILES.in" | sed -e "/^#/d" -e "/^[ ]*\$/d" -e "s,.*, $top_srcdir/& \\\\," | sed -e "\$s/\(.*\) \\\\/\1/" > "$ac_dir/POTFILES" - POMAKEFILEDEPS="POTFILES.in" - # ALL_LINGUAS, POFILES, UPDATEPOFILES, DUMMYPOFILES, GMOFILES depend - # on $ac_dir but don't depend on user-specified configuration - # parameters. - if test -f "$ac_given_srcdir/$ac_dir/LINGUAS"; then - # The LINGUAS file contains the set of available languages. - if test -n "$OBSOLETE_ALL_LINGUAS"; then - test -n "$as_me" && echo "$as_me: setting ALL_LINGUAS in configure.in is obsolete" || echo "setting ALL_LINGUAS in configure.in is obsolete" - fi - ALL_LINGUAS_=`sed -e "/^#/d" -e "s/#.*//" "$ac_given_srcdir/$ac_dir/LINGUAS"` - # Hide the ALL_LINGUAS assigment from automake < 1.5. - eval 'ALL_LINGUAS''=$ALL_LINGUAS_' - POMAKEFILEDEPS="$POMAKEFILEDEPS LINGUAS" - else - # The set of available languages was given in configure.in. - # Hide the ALL_LINGUAS assigment from automake < 1.5. - eval 'ALL_LINGUAS''=$OBSOLETE_ALL_LINGUAS' - fi - # Compute POFILES - # as $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(lang).po) - # Compute UPDATEPOFILES - # as $(foreach lang, $(ALL_LINGUAS), $(lang).po-update) - # Compute DUMMYPOFILES - # as $(foreach lang, $(ALL_LINGUAS), $(lang).nop) - # Compute GMOFILES - # as $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(lang).gmo) - case "$ac_given_srcdir" in - .) srcdirpre= ;; - *) srcdirpre='$(srcdir)/' ;; - esac - POFILES= - UPDATEPOFILES= - DUMMYPOFILES= - GMOFILES= - for lang in $ALL_LINGUAS; do - POFILES="$POFILES $srcdirpre$lang.po" - UPDATEPOFILES="$UPDATEPOFILES $lang.po-update" - DUMMYPOFILES="$DUMMYPOFILES $lang.nop" - GMOFILES="$GMOFILES $srcdirpre$lang.gmo" - done - # CATALOGS depends on both $ac_dir and the user's LINGUAS - # environment variable. - INST_LINGUAS= - if test -n "$ALL_LINGUAS"; then - for presentlang in $ALL_LINGUAS; do - useit=no - if test "%UNSET%" != "$LINGUAS"; then - desiredlanguages="$LINGUAS" - else - desiredlanguages="$ALL_LINGUAS" - fi - for desiredlang in $desiredlanguages; do - # Use the presentlang catalog if desiredlang is - # a. equal to presentlang, or - # b. a variant of presentlang (because in this case, - # presentlang can be used as a fallback for messages - # which are not translated in the desiredlang catalog). - case "$desiredlang" in - "$presentlang"*) useit=yes;; - esac - done - if test $useit = yes; then - INST_LINGUAS="$INST_LINGUAS $presentlang" - fi - done - fi - CATALOGS= - if test -n "$INST_LINGUAS"; then - for lang in $INST_LINGUAS; do - CATALOGS="$CATALOGS $lang.gmo" - done - fi - test -n "$as_me" && echo "$as_me: creating $ac_dir/Makefile" || echo "creating $ac_dir/Makefile" - sed -e "/^POTFILES =/r $ac_dir/POTFILES" -e "/^# Makevars/r $ac_given_srcdir/$ac_dir/Makevars" -e "s|@POFILES@|$POFILES|g" -e "s|@UPDATEPOFILES@|$UPDATEPOFILES|g" -e "s|@DUMMYPOFILES@|$DUMMYPOFILES|g" -e "s|@GMOFILES@|$GMOFILES|g" -e "s|@CATALOGS@|$CATALOGS|g" -e "s|@POMAKEFILEDEPS@|$POMAKEFILEDEPS|g" "$ac_dir/Makefile.in" > "$ac_dir/Makefile" - for f in "$ac_given_srcdir/$ac_dir"/Rules-*; do - if test -f "$f"; then - case "$f" in - *.orig | *.bak | *~) ;; - *) cat "$f" >> "$ac_dir/Makefile" ;; - esac - fi - done - fi - ;; - esac - done]], - [# Capture the value of obsolete ALL_LINGUAS because we need it to compute - # POFILES, UPDATEPOFILES, DUMMYPOFILES, GMOFILES, CATALOGS. But hide it - # from automake < 1.5. - eval 'OBSOLETE_ALL_LINGUAS''="$ALL_LINGUAS"' - # Capture the value of LINGUAS because we need it to compute CATALOGS. - LINGUAS="${LINGUAS-%UNSET%}" - ]) -]) - -dnl Postprocesses a Makefile in a directory containing PO files. -AC_DEFUN([AM_POSTPROCESS_PO_MAKEFILE], -[ - # When this code is run, in config.status, two variables have already been - # set: - # - OBSOLETE_ALL_LINGUAS is the value of LINGUAS set in configure.in, - # - LINGUAS is the value of the environment variable LINGUAS at configure - # time. - -changequote(,)dnl - # Adjust a relative srcdir. - ac_dir=`echo "$ac_file"|sed 's%/[^/][^/]*$%%'` - ac_dir_suffix="/`echo "$ac_dir"|sed 's%^\./%%'`" - ac_dots=`echo "$ac_dir_suffix"|sed 's%/[^/]*%../%g'` - # In autoconf-2.13 it is called $ac_given_srcdir. - # In autoconf-2.50 it is called $srcdir. - test -n "$ac_given_srcdir" || ac_given_srcdir="$srcdir" - case "$ac_given_srcdir" in - .) top_srcdir=`echo $ac_dots|sed 's%/$%%'` ;; - /*) top_srcdir="$ac_given_srcdir" ;; - *) top_srcdir="$ac_dots$ac_given_srcdir" ;; - esac - - # Find a way to echo strings without interpreting backslash. - if test "X`(echo '\t') 2>/dev/null`" = 'X\t'; then - gt_echo='echo' - else - if test "X`(printf '%s\n' '\t') 2>/dev/null`" = 'X\t'; then - gt_echo='printf %s\n' - else - echo_func () { - cat < "$ac_file.tmp" - if grep -l '@TCLCATALOGS@' "$ac_file" > /dev/null; then - # Add dependencies that cannot be formulated as a simple suffix rule. - for lang in $ALL_LINGUAS; do - frobbedlang=`echo $lang | sed -e 's/\..*$//' -e 'y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/'` - cat >> "$ac_file.tmp" < /dev/null; then - # Add dependencies that cannot be formulated as a simple suffix rule. - for lang in $ALL_LINGUAS; do - frobbedlang=`echo $lang | sed -e 's/_/-/g' -e 's/^sr-CS/sr-SP/' -e 's/@latin$/-Latn/' -e 's/@cyrillic$/-Cyrl/' -e 's/^sr-SP$/sr-SP-Latn/' -e 's/^uz-UZ$/uz-UZ-Latn/'` - cat >> "$ac_file.tmp" <> "$ac_file.tmp" <, 1996. - -AC_PREREQ([2.50]) - -# Search path for a program which passes the given test. - -dnl AM_PATH_PROG_WITH_TEST(VARIABLE, PROG-TO-CHECK-FOR, -dnl TEST-PERFORMED-ON-FOUND_PROGRAM [, VALUE-IF-NOT-FOUND [, PATH]]) -AC_DEFUN([AM_PATH_PROG_WITH_TEST], -[ -# Prepare PATH_SEPARATOR. -# The user is always right. -if test "${PATH_SEPARATOR+set}" != set; then - echo "#! /bin/sh" >conf$$.sh - echo "exit 0" >>conf$$.sh - chmod +x conf$$.sh - if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then - PATH_SEPARATOR=';' - else - PATH_SEPARATOR=: - fi - rm -f conf$$.sh -fi - -# Find out how to test for executable files. Don't use a zero-byte file, -# as systems may use methods other than mode bits to determine executability. -cat >conf$$.file <<_ASEOF -#! /bin/sh -exit 0 -_ASEOF -chmod +x conf$$.file -if test -x conf$$.file >/dev/null 2>&1; then - ac_executable_p="test -x" -else - ac_executable_p="test -f" -fi -rm -f conf$$.file - -# Extract the first word of "$2", so it can be a program name with args. -set dummy $2; ac_word=[$]2 -AC_MSG_CHECKING([for $ac_word]) -AC_CACHE_VAL([ac_cv_path_$1], -[case "[$]$1" in - [[\\/]]* | ?:[[\\/]]*) - ac_cv_path_$1="[$]$1" # Let the user override the test with a path. - ;; - *) - ac_save_IFS="$IFS"; IFS=$PATH_SEPARATOR - for ac_dir in ifelse([$5], , $PATH, [$5]); do - IFS="$ac_save_IFS" - test -z "$ac_dir" && ac_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $ac_executable_p "$ac_dir/$ac_word$ac_exec_ext"; then - echo "$as_me: trying $ac_dir/$ac_word..." >&AS_MESSAGE_LOG_FD - if [$3]; then - ac_cv_path_$1="$ac_dir/$ac_word$ac_exec_ext" - break 2 - fi - fi - done - done - IFS="$ac_save_IFS" -dnl If no 4th arg is given, leave the cache variable unset, -dnl so AC_PATH_PROGS will keep looking. -ifelse([$4], , , [ test -z "[$]ac_cv_path_$1" && ac_cv_path_$1="$4" -])dnl - ;; -esac])dnl -$1="$ac_cv_path_$1" -if test ifelse([$4], , [-n "[$]$1"], ["[$]$1" != "$4"]); then - AC_MSG_RESULT([$][$1]) -else - AC_MSG_RESULT([no]) -fi -AC_SUBST([$1])dnl -]) - -# Copyright (C) 2002, 2003, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. -# -# This file is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# AM_AUTOMAKE_VERSION(VERSION) -# ---------------------------- -# Automake X.Y traces this macro to ensure aclocal.m4 has been -# generated from the m4 files accompanying Automake X.Y. -# (This private macro should not be called outside this file.) -AC_DEFUN([AM_AUTOMAKE_VERSION], -[am__api_version='1.11' -dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to -dnl require some minimum version. Point them to the right macro. -m4_if([$1], [1.11.1], [], - [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl -]) - -# _AM_AUTOCONF_VERSION(VERSION) -# ----------------------------- -# aclocal traces this macro to find the Autoconf version. -# This is a private macro too. Using m4_define simplifies -# the logic in aclocal, which can simply ignore this definition. -m4_define([_AM_AUTOCONF_VERSION], []) - -# AM_SET_CURRENT_AUTOMAKE_VERSION -# ------------------------------- -# Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced. -# This function is AC_REQUIREd by AM_INIT_AUTOMAKE. -AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], -[AM_AUTOMAKE_VERSION([1.11.1])dnl -m4_ifndef([AC_AUTOCONF_VERSION], - [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl -_AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))]) - -# AM_AUX_DIR_EXPAND -*- Autoconf -*- - -# Copyright (C) 2001, 2003, 2005 Free Software Foundation, Inc. -# -# This file is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets -# $ac_aux_dir to `$srcdir/foo'. In other projects, it is set to -# `$srcdir', `$srcdir/..', or `$srcdir/../..'. -# -# Of course, Automake must honor this variable whenever it calls a -# tool from the auxiliary directory. The problem is that $srcdir (and -# therefore $ac_aux_dir as well) can be either absolute or relative, -# depending on how configure is run. This is pretty annoying, since -# it makes $ac_aux_dir quite unusable in subdirectories: in the top -# source directory, any form will work fine, but in subdirectories a -# relative path needs to be adjusted first. -# -# $ac_aux_dir/missing -# fails when called from a subdirectory if $ac_aux_dir is relative -# $top_srcdir/$ac_aux_dir/missing -# fails if $ac_aux_dir is absolute, -# fails when called from a subdirectory in a VPATH build with -# a relative $ac_aux_dir -# -# The reason of the latter failure is that $top_srcdir and $ac_aux_dir -# are both prefixed by $srcdir. In an in-source build this is usually -# harmless because $srcdir is `.', but things will broke when you -# start a VPATH build or use an absolute $srcdir. -# -# So we could use something similar to $top_srcdir/$ac_aux_dir/missing, -# iff we strip the leading $srcdir from $ac_aux_dir. That would be: -# am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"` -# and then we would define $MISSING as -# MISSING="\${SHELL} $am_aux_dir/missing" -# This will work as long as MISSING is not called from configure, because -# unfortunately $(top_srcdir) has no meaning in configure. -# However there are other variables, like CC, which are often used in -# configure, and could therefore not use this "fixed" $ac_aux_dir. -# -# Another solution, used here, is to always expand $ac_aux_dir to an -# absolute PATH. The drawback is that using absolute paths prevent a -# configured tree to be moved without reconfiguration. - -AC_DEFUN([AM_AUX_DIR_EXPAND], -[dnl Rely on autoconf to set up CDPATH properly. -AC_PREREQ([2.50])dnl -# expand $ac_aux_dir to an absolute path -am_aux_dir=`cd $ac_aux_dir && pwd` -]) - -# AM_CONDITIONAL -*- Autoconf -*- - -# Copyright (C) 1997, 2000, 2001, 2003, 2004, 2005, 2006, 2008 -# Free Software Foundation, Inc. -# -# This file is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# serial 9 - -# AM_CONDITIONAL(NAME, SHELL-CONDITION) -# ------------------------------------- -# Define a conditional. -AC_DEFUN([AM_CONDITIONAL], -[AC_PREREQ(2.52)dnl - ifelse([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])], - [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl -AC_SUBST([$1_TRUE])dnl -AC_SUBST([$1_FALSE])dnl -_AM_SUBST_NOTMAKE([$1_TRUE])dnl -_AM_SUBST_NOTMAKE([$1_FALSE])dnl -m4_define([_AM_COND_VALUE_$1], [$2])dnl -if $2; then - $1_TRUE= - $1_FALSE='#' -else - $1_TRUE='#' - $1_FALSE= -fi -AC_CONFIG_COMMANDS_PRE( -[if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then - AC_MSG_ERROR([[conditional "$1" was never defined. -Usually this means the macro was only invoked conditionally.]]) -fi])]) - -# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2009 -# Free Software Foundation, Inc. -# -# This file is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# serial 10 - -# There are a few dirty hacks below to avoid letting `AC_PROG_CC' be -# written in clear, in which case automake, when reading aclocal.m4, -# will think it sees a *use*, and therefore will trigger all it's -# C support machinery. Also note that it means that autoscan, seeing -# CC etc. in the Makefile, will ask for an AC_PROG_CC use... - - -# _AM_DEPENDENCIES(NAME) -# ---------------------- -# See how the compiler implements dependency checking. -# NAME is "CC", "CXX", "GCJ", or "OBJC". -# We try a few techniques and use that to set a single cache variable. -# -# We don't AC_REQUIRE the corresponding AC_PROG_CC since the latter was -# modified to invoke _AM_DEPENDENCIES(CC); we would have a circular -# dependency, and given that the user is not expected to run this macro, -# just rely on AC_PROG_CC. -AC_DEFUN([_AM_DEPENDENCIES], -[AC_REQUIRE([AM_SET_DEPDIR])dnl -AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl -AC_REQUIRE([AM_MAKE_INCLUDE])dnl -AC_REQUIRE([AM_DEP_TRACK])dnl - -ifelse([$1], CC, [depcc="$CC" am_compiler_list=], - [$1], CXX, [depcc="$CXX" am_compiler_list=], - [$1], OBJC, [depcc="$OBJC" am_compiler_list='gcc3 gcc'], - [$1], UPC, [depcc="$UPC" am_compiler_list=], - [$1], GCJ, [depcc="$GCJ" am_compiler_list='gcc3 gcc'], - [depcc="$$1" am_compiler_list=]) - -AC_CACHE_CHECK([dependency style of $depcc], - [am_cv_$1_dependencies_compiler_type], -[if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then - # We make a subdir and do the tests there. Otherwise we can end up - # making bogus files that we don't know about and never remove. For - # instance it was reported that on HP-UX the gcc test will end up - # making a dummy file named `D' -- because `-MD' means `put the output - # in D'. - mkdir conftest.dir - # Copy depcomp to subdir because otherwise we won't find it if we're - # using a relative directory. - cp "$am_depcomp" conftest.dir - cd conftest.dir - # We will build objects and dependencies in a subdirectory because - # it helps to detect inapplicable dependency modes. For instance - # both Tru64's cc and ICC support -MD to output dependencies as a - # side effect of compilation, but ICC will put the dependencies in - # the current directory while Tru64 will put them in the object - # directory. - mkdir sub - - am_cv_$1_dependencies_compiler_type=none - if test "$am_compiler_list" = ""; then - am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp` - fi - am__universal=false - m4_case([$1], [CC], - [case " $depcc " in #( - *\ -arch\ *\ -arch\ *) am__universal=true ;; - esac], - [CXX], - [case " $depcc " in #( - *\ -arch\ *\ -arch\ *) am__universal=true ;; - esac]) - - for depmode in $am_compiler_list; do - # Setup a source with many dependencies, because some compilers - # like to wrap large dependency lists on column 80 (with \), and - # we should not choose a depcomp mode which is confused by this. - # - # We need to recreate these files for each test, as the compiler may - # overwrite some of them when testing with obscure command lines. - # This happens at least with the AIX C compiler. - : > sub/conftest.c - for i in 1 2 3 4 5 6; do - echo '#include "conftst'$i'.h"' >> sub/conftest.c - # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with - # Solaris 8's {/usr,}/bin/sh. - touch sub/conftst$i.h - done - echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf - - # We check with `-c' and `-o' for the sake of the "dashmstdout" - # mode. It turns out that the SunPro C++ compiler does not properly - # handle `-M -o', and we need to detect this. Also, some Intel - # versions had trouble with output in subdirs - am__obj=sub/conftest.${OBJEXT-o} - am__minus_obj="-o $am__obj" - case $depmode in - gcc) - # This depmode causes a compiler race in universal mode. - test "$am__universal" = false || continue - ;; - nosideeffect) - # after this tag, mechanisms are not by side-effect, so they'll - # only be used when explicitly requested - if test "x$enable_dependency_tracking" = xyes; then - continue - else - break - fi - ;; - msvisualcpp | msvcmsys) - # This compiler won't grok `-c -o', but also, the minuso test has - # not run yet. These depmodes are late enough in the game, and - # so weak that their functioning should not be impacted. - am__obj=conftest.${OBJEXT-o} - am__minus_obj= - ;; - none) break ;; - esac - if depmode=$depmode \ - source=sub/conftest.c object=$am__obj \ - depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ - $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ - >/dev/null 2>conftest.err && - grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && - grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && - grep $am__obj sub/conftest.Po > /dev/null 2>&1 && - ${MAKE-make} -s -f confmf > /dev/null 2>&1; then - # icc doesn't choke on unknown options, it will just issue warnings - # or remarks (even with -Werror). So we grep stderr for any message - # that says an option was ignored or not supported. - # When given -MP, icc 7.0 and 7.1 complain thusly: - # icc: Command line warning: ignoring option '-M'; no argument required - # The diagnosis changed in icc 8.0: - # icc: Command line remark: option '-MP' not supported - if (grep 'ignoring option' conftest.err || - grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else - am_cv_$1_dependencies_compiler_type=$depmode - break - fi - fi - done - - cd .. - rm -rf conftest.dir -else - am_cv_$1_dependencies_compiler_type=none -fi -]) -AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type]) -AM_CONDITIONAL([am__fastdep$1], [ - test "x$enable_dependency_tracking" != xno \ - && test "$am_cv_$1_dependencies_compiler_type" = gcc3]) -]) - - -# AM_SET_DEPDIR -# ------------- -# Choose a directory name for dependency files. -# This macro is AC_REQUIREd in _AM_DEPENDENCIES -AC_DEFUN([AM_SET_DEPDIR], -[AC_REQUIRE([AM_SET_LEADING_DOT])dnl -AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl -]) - - -# AM_DEP_TRACK -# ------------ -AC_DEFUN([AM_DEP_TRACK], -[AC_ARG_ENABLE(dependency-tracking, -[ --disable-dependency-tracking speeds up one-time build - --enable-dependency-tracking do not reject slow dependency extractors]) -if test "x$enable_dependency_tracking" != xno; then - am_depcomp="$ac_aux_dir/depcomp" - AMDEPBACKSLASH='\' -fi -AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno]) -AC_SUBST([AMDEPBACKSLASH])dnl -_AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl -]) - -# Generate code to set up dependency tracking. -*- Autoconf -*- - -# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2008 -# Free Software Foundation, Inc. -# -# This file is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -#serial 5 - -# _AM_OUTPUT_DEPENDENCY_COMMANDS -# ------------------------------ -AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], -[{ - # Autoconf 2.62 quotes --file arguments for eval, but not when files - # are listed without --file. Let's play safe and only enable the eval - # if we detect the quoting. - case $CONFIG_FILES in - *\'*) eval set x "$CONFIG_FILES" ;; - *) set x $CONFIG_FILES ;; - esac - shift - for mf - do - # Strip MF so we end up with the name of the file. - mf=`echo "$mf" | sed -e 's/:.*$//'` - # Check whether this is an Automake generated Makefile or not. - # We used to match only the files named `Makefile.in', but - # some people rename them; so instead we look at the file content. - # Grep'ing the first line is not enough: some people post-process - # each Makefile.in and add a new line on top of each file to say so. - # Grep'ing the whole file is not good either: AIX grep has a line - # limit of 2048, but all sed's we know have understand at least 4000. - if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then - dirpart=`AS_DIRNAME("$mf")` - else - continue - fi - # Extract the definition of DEPDIR, am__include, and am__quote - # from the Makefile without running `make'. - DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` - test -z "$DEPDIR" && continue - am__include=`sed -n 's/^am__include = //p' < "$mf"` - test -z "am__include" && continue - am__quote=`sed -n 's/^am__quote = //p' < "$mf"` - # When using ansi2knr, U may be empty or an underscore; expand it - U=`sed -n 's/^U = //p' < "$mf"` - # Find all dependency output files, they are included files with - # $(DEPDIR) in their names. We invoke sed twice because it is the - # simplest approach to changing $(DEPDIR) to its actual value in the - # expansion. - for file in `sed -n " - s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ - sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do - # Make sure the directory exists. - test -f "$dirpart/$file" && continue - fdir=`AS_DIRNAME(["$file"])` - AS_MKDIR_P([$dirpart/$fdir]) - # echo "creating $dirpart/$file" - echo '# dummy' > "$dirpart/$file" - done - done -} -])# _AM_OUTPUT_DEPENDENCY_COMMANDS - - -# AM_OUTPUT_DEPENDENCY_COMMANDS -# ----------------------------- -# This macro should only be invoked once -- use via AC_REQUIRE. -# -# This code is only required when automatic dependency tracking -# is enabled. FIXME. This creates each `.P' file that we will -# need in order to bootstrap the dependency handling code. -AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS], -[AC_CONFIG_COMMANDS([depfiles], - [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS], - [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"]) -]) - -# Do all the work for Automake. -*- Autoconf -*- - -# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, -# 2005, 2006, 2008, 2009 Free Software Foundation, Inc. -# -# This file is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# serial 16 - -# This macro actually does too much. Some checks are only needed if -# your package does certain things. But this isn't really a big deal. - -# AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE]) -# AM_INIT_AUTOMAKE([OPTIONS]) -# ----------------------------------------------- -# The call with PACKAGE and VERSION arguments is the old style -# call (pre autoconf-2.50), which is being phased out. PACKAGE -# and VERSION should now be passed to AC_INIT and removed from -# the call to AM_INIT_AUTOMAKE. -# We support both call styles for the transition. After -# the next Automake release, Autoconf can make the AC_INIT -# arguments mandatory, and then we can depend on a new Autoconf -# release and drop the old call support. -AC_DEFUN([AM_INIT_AUTOMAKE], -[AC_PREREQ([2.62])dnl -dnl Autoconf wants to disallow AM_ names. We explicitly allow -dnl the ones we care about. -m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl -AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl -AC_REQUIRE([AC_PROG_INSTALL])dnl -if test "`cd $srcdir && pwd`" != "`pwd`"; then - # Use -I$(srcdir) only when $(srcdir) != ., so that make's output - # is not polluted with repeated "-I." - AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl - # test to see if srcdir already configured - if test -f $srcdir/config.status; then - AC_MSG_ERROR([source directory already configured; run "make distclean" there first]) - fi -fi - -# test whether we have cygpath -if test -z "$CYGPATH_W"; then - if (cygpath --version) >/dev/null 2>/dev/null; then - CYGPATH_W='cygpath -w' - else - CYGPATH_W=echo - fi -fi -AC_SUBST([CYGPATH_W]) - -# Define the identity of the package. -dnl Distinguish between old-style and new-style calls. -m4_ifval([$2], -[m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl - AC_SUBST([PACKAGE], [$1])dnl - AC_SUBST([VERSION], [$2])], -[_AM_SET_OPTIONS([$1])dnl -dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT. -m4_if(m4_ifdef([AC_PACKAGE_NAME], 1)m4_ifdef([AC_PACKAGE_VERSION], 1), 11,, - [m4_fatal([AC_INIT should be called with package and version arguments])])dnl - AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl - AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl - -_AM_IF_OPTION([no-define],, -[AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package]) - AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])])dnl - -# Some tools Automake needs. -AC_REQUIRE([AM_SANITY_CHECK])dnl -AC_REQUIRE([AC_ARG_PROGRAM])dnl -AM_MISSING_PROG(ACLOCAL, aclocal-${am__api_version}) -AM_MISSING_PROG(AUTOCONF, autoconf) -AM_MISSING_PROG(AUTOMAKE, automake-${am__api_version}) -AM_MISSING_PROG(AUTOHEADER, autoheader) -AM_MISSING_PROG(MAKEINFO, makeinfo) -AC_REQUIRE([AM_PROG_INSTALL_SH])dnl -AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl -AC_REQUIRE([AM_PROG_MKDIR_P])dnl -# We need awk for the "check" target. The system "awk" is bad on -# some platforms. -AC_REQUIRE([AC_PROG_AWK])dnl -AC_REQUIRE([AC_PROG_MAKE_SET])dnl -AC_REQUIRE([AM_SET_LEADING_DOT])dnl -_AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], - [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], - [_AM_PROG_TAR([v7])])]) -_AM_IF_OPTION([no-dependencies],, -[AC_PROVIDE_IFELSE([AC_PROG_CC], - [_AM_DEPENDENCIES(CC)], - [define([AC_PROG_CC], - defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl -AC_PROVIDE_IFELSE([AC_PROG_CXX], - [_AM_DEPENDENCIES(CXX)], - [define([AC_PROG_CXX], - defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl -AC_PROVIDE_IFELSE([AC_PROG_OBJC], - [_AM_DEPENDENCIES(OBJC)], - [define([AC_PROG_OBJC], - defn([AC_PROG_OBJC])[_AM_DEPENDENCIES(OBJC)])])dnl -]) -_AM_IF_OPTION([silent-rules], [AC_REQUIRE([AM_SILENT_RULES])])dnl -dnl The `parallel-tests' driver may need to know about EXEEXT, so add the -dnl `am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen. This macro -dnl is hooked onto _AC_COMPILER_EXEEXT early, see below. -AC_CONFIG_COMMANDS_PRE(dnl -[m4_provide_if([_AM_COMPILER_EXEEXT], - [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl -]) - -dnl Hook into `_AC_COMPILER_EXEEXT' early to learn its expansion. Do not -dnl add the conditional right here, as _AC_COMPILER_EXEEXT may be further -dnl mangled by Autoconf and run in a shell conditional statement. -m4_define([_AC_COMPILER_EXEEXT], -m4_defn([_AC_COMPILER_EXEEXT])[m4_provide([_AM_COMPILER_EXEEXT])]) - - -# When config.status generates a header, we must update the stamp-h file. -# This file resides in the same directory as the config header -# that is generated. The stamp files are numbered to have different names. - -# Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the -# loop where config.status creates the headers, so we can generate -# our stamp files there. -AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], -[# Compute $1's index in $config_headers. -_am_arg=$1 -_am_stamp_count=1 -for _am_header in $config_headers :; do - case $_am_header in - $_am_arg | $_am_arg:* ) - break ;; - * ) - _am_stamp_count=`expr $_am_stamp_count + 1` ;; - esac -done -echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count]) - -# Copyright (C) 2001, 2003, 2005, 2008 Free Software Foundation, Inc. -# -# This file is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# AM_PROG_INSTALL_SH -# ------------------ -# Define $install_sh. -AC_DEFUN([AM_PROG_INSTALL_SH], -[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl -if test x"${install_sh}" != xset; then - case $am_aux_dir in - *\ * | *\ *) - install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; - *) - install_sh="\${SHELL} $am_aux_dir/install-sh" - esac -fi -AC_SUBST(install_sh)]) - -# Copyright (C) 2003, 2005 Free Software Foundation, Inc. -# -# This file is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# serial 2 - -# Check whether the underlying file-system supports filenames -# with a leading dot. For instance MS-DOS doesn't. -AC_DEFUN([AM_SET_LEADING_DOT], -[rm -rf .tst 2>/dev/null -mkdir .tst 2>/dev/null -if test -d .tst; then - am__leading_dot=. -else - am__leading_dot=_ -fi -rmdir .tst 2>/dev/null -AC_SUBST([am__leading_dot])]) - -# Check to see how 'make' treats includes. -*- Autoconf -*- - -# Copyright (C) 2001, 2002, 2003, 2005, 2009 Free Software Foundation, Inc. -# -# This file is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# serial 4 - -# AM_MAKE_INCLUDE() -# ----------------- -# Check to see how make treats includes. -AC_DEFUN([AM_MAKE_INCLUDE], -[am_make=${MAKE-make} -cat > confinc << 'END' -am__doit: - @echo this is the am__doit target -.PHONY: am__doit -END -# If we don't find an include directive, just comment out the code. -AC_MSG_CHECKING([for style of include used by $am_make]) -am__include="#" -am__quote= -_am_result=none -# First try GNU make style include. -echo "include confinc" > confmf -# Ignore all kinds of additional output from `make'. -case `$am_make -s -f confmf 2> /dev/null` in #( -*the\ am__doit\ target*) - am__include=include - am__quote= - _am_result=GNU - ;; -esac -# Now try BSD make style include. -if test "$am__include" = "#"; then - echo '.include "confinc"' > confmf - case `$am_make -s -f confmf 2> /dev/null` in #( - *the\ am__doit\ target*) - am__include=.include - am__quote="\"" - _am_result=BSD - ;; - esac -fi -AC_SUBST([am__include]) -AC_SUBST([am__quote]) -AC_MSG_RESULT([$_am_result]) -rm -f confinc confmf -]) - -# Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- - -# Copyright (C) 1997, 1999, 2000, 2001, 2003, 2004, 2005, 2008 -# Free Software Foundation, Inc. -# -# This file is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# serial 6 - -# AM_MISSING_PROG(NAME, PROGRAM) -# ------------------------------ -AC_DEFUN([AM_MISSING_PROG], -[AC_REQUIRE([AM_MISSING_HAS_RUN]) -$1=${$1-"${am_missing_run}$2"} -AC_SUBST($1)]) - - -# AM_MISSING_HAS_RUN -# ------------------ -# Define MISSING if not defined so far and test if it supports --run. -# If it does, set am_missing_run to use it, otherwise, to nothing. -AC_DEFUN([AM_MISSING_HAS_RUN], -[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl -AC_REQUIRE_AUX_FILE([missing])dnl -if test x"${MISSING+set}" != xset; then - case $am_aux_dir in - *\ * | *\ *) - MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; - *) - MISSING="\${SHELL} $am_aux_dir/missing" ;; - esac -fi -# Use eval to expand $SHELL -if eval "$MISSING --run true"; then - am_missing_run="$MISSING --run " -else - am_missing_run= - AC_MSG_WARN([`missing' script is too old or missing]) -fi -]) - -# Copyright (C) 2003, 2004, 2005, 2006 Free Software Foundation, Inc. -# -# This file is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# AM_PROG_MKDIR_P -# --------------- -# Check for `mkdir -p'. -AC_DEFUN([AM_PROG_MKDIR_P], -[AC_PREREQ([2.60])dnl -AC_REQUIRE([AC_PROG_MKDIR_P])dnl -dnl Automake 1.8 to 1.9.6 used to define mkdir_p. We now use MKDIR_P, -dnl while keeping a definition of mkdir_p for backward compatibility. -dnl @MKDIR_P@ is magic: AC_OUTPUT adjusts its value for each Makefile. -dnl However we cannot define mkdir_p as $(MKDIR_P) for the sake of -dnl Makefile.ins that do not define MKDIR_P, so we do our own -dnl adjustment using top_builddir (which is defined more often than -dnl MKDIR_P). -AC_SUBST([mkdir_p], ["$MKDIR_P"])dnl -case $mkdir_p in - [[\\/$]]* | ?:[[\\/]]*) ;; - */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;; -esac -]) - -# Helper functions for option handling. -*- Autoconf -*- - -# Copyright (C) 2001, 2002, 2003, 2005, 2008 Free Software Foundation, Inc. -# -# This file is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# serial 4 - -# _AM_MANGLE_OPTION(NAME) -# ----------------------- -AC_DEFUN([_AM_MANGLE_OPTION], -[[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])]) - -# _AM_SET_OPTION(NAME) -# ------------------------------ -# Set option NAME. Presently that only means defining a flag for this option. -AC_DEFUN([_AM_SET_OPTION], -[m4_define(_AM_MANGLE_OPTION([$1]), 1)]) - -# _AM_SET_OPTIONS(OPTIONS) -# ---------------------------------- -# OPTIONS is a space-separated list of Automake options. -AC_DEFUN([_AM_SET_OPTIONS], -[m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])]) - -# _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET]) -# ------------------------------------------- -# Execute IF-SET if OPTION is set, IF-NOT-SET otherwise. -AC_DEFUN([_AM_IF_OPTION], -[m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])]) - -# Check to make sure that the build environment is sane. -*- Autoconf -*- - -# Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005, 2008 -# Free Software Foundation, Inc. -# -# This file is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# serial 5 - -# AM_SANITY_CHECK -# --------------- -AC_DEFUN([AM_SANITY_CHECK], -[AC_MSG_CHECKING([whether build environment is sane]) -# Just in case -sleep 1 -echo timestamp > conftest.file -# Reject unsafe characters in $srcdir or the absolute working directory -# name. Accept space and tab only in the latter. -am_lf=' -' -case `pwd` in - *[[\\\"\#\$\&\'\`$am_lf]]*) - AC_MSG_ERROR([unsafe absolute working directory name]);; -esac -case $srcdir in - *[[\\\"\#\$\&\'\`$am_lf\ \ ]]*) - AC_MSG_ERROR([unsafe srcdir value: `$srcdir']);; -esac - -# Do `set' in a subshell so we don't clobber the current shell's -# arguments. Must try -L first in case configure is actually a -# symlink; some systems play weird games with the mod time of symlinks -# (eg FreeBSD returns the mod time of the symlink's containing -# directory). -if ( - set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` - if test "$[*]" = "X"; then - # -L didn't work. - set X `ls -t "$srcdir/configure" conftest.file` - fi - rm -f conftest.file - if test "$[*]" != "X $srcdir/configure conftest.file" \ - && test "$[*]" != "X conftest.file $srcdir/configure"; then - - # If neither matched, then we have a broken ls. This can happen - # if, for instance, CONFIG_SHELL is bash and it inherits a - # broken ls alias from the environment. This has actually - # happened. Such a system could not be considered "sane". - AC_MSG_ERROR([ls -t appears to fail. Make sure there is not a broken -alias in your environment]) - fi - - test "$[2]" = conftest.file - ) -then - # Ok. - : -else - AC_MSG_ERROR([newly created file is older than distributed files! -Check your system clock]) -fi -AC_MSG_RESULT(yes)]) - -# Copyright (C) 2009 Free Software Foundation, Inc. -# -# This file is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# serial 1 - -# AM_SILENT_RULES([DEFAULT]) -# -------------------------- -# Enable less verbose build rules; with the default set to DEFAULT -# (`yes' being less verbose, `no' or empty being verbose). -AC_DEFUN([AM_SILENT_RULES], -[AC_ARG_ENABLE([silent-rules], -[ --enable-silent-rules less verbose build output (undo: `make V=1') - --disable-silent-rules verbose build output (undo: `make V=0')]) -case $enable_silent_rules in -yes) AM_DEFAULT_VERBOSITY=0;; -no) AM_DEFAULT_VERBOSITY=1;; -*) AM_DEFAULT_VERBOSITY=m4_if([$1], [yes], [0], [1]);; -esac -AC_SUBST([AM_DEFAULT_VERBOSITY])dnl -AM_BACKSLASH='\' -AC_SUBST([AM_BACKSLASH])dnl -_AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl -]) - -# Copyright (C) 2001, 2003, 2005 Free Software Foundation, Inc. -# -# This file is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# AM_PROG_INSTALL_STRIP -# --------------------- -# One issue with vendor `install' (even GNU) is that you can't -# specify the program used to strip binaries. This is especially -# annoying in cross-compiling environments, where the build's strip -# is unlikely to handle the host's binaries. -# Fortunately install-sh will honor a STRIPPROG variable, so we -# always use install-sh in `make install-strip', and initialize -# STRIPPROG with the value of the STRIP variable (set by the user). -AC_DEFUN([AM_PROG_INSTALL_STRIP], -[AC_REQUIRE([AM_PROG_INSTALL_SH])dnl -# Installed binaries are usually stripped using `strip' when the user -# run `make install-strip'. However `strip' might not be the right -# tool to use in cross-compilation environments, therefore Automake -# will honor the `STRIP' environment variable to overrule this program. -dnl Don't test for $cross_compiling = yes, because it might be `maybe'. -if test "$cross_compiling" != no; then - AC_CHECK_TOOL([STRIP], [strip], :) -fi -INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" -AC_SUBST([INSTALL_STRIP_PROGRAM])]) - -# Copyright (C) 2006, 2008 Free Software Foundation, Inc. -# -# This file is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# serial 2 - -# _AM_SUBST_NOTMAKE(VARIABLE) -# --------------------------- -# Prevent Automake from outputting VARIABLE = @VARIABLE@ in Makefile.in. -# This macro is traced by Automake. -AC_DEFUN([_AM_SUBST_NOTMAKE]) - -# AM_SUBST_NOTMAKE(VARIABLE) -# --------------------------- -# Public sister of _AM_SUBST_NOTMAKE. -AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)]) - -# Check how to create a tarball. -*- Autoconf -*- - -# Copyright (C) 2004, 2005 Free Software Foundation, Inc. -# -# This file is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# serial 2 - -# _AM_PROG_TAR(FORMAT) -# -------------------- -# Check how to create a tarball in format FORMAT. -# FORMAT should be one of `v7', `ustar', or `pax'. -# -# Substitute a variable $(am__tar) that is a command -# writing to stdout a FORMAT-tarball containing the directory -# $tardir. -# tardir=directory && $(am__tar) > result.tar -# -# Substitute a variable $(am__untar) that extract such -# a tarball read from stdin. -# $(am__untar) < result.tar -AC_DEFUN([_AM_PROG_TAR], -[# Always define AMTAR for backward compatibility. -AM_MISSING_PROG([AMTAR], [tar]) -m4_if([$1], [v7], - [am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -'], - [m4_case([$1], [ustar],, [pax],, - [m4_fatal([Unknown tar format])]) -AC_MSG_CHECKING([how to create a $1 tar archive]) -# Loop over all known methods to create a tar archive until one works. -_am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none' -_am_tools=${am_cv_prog_tar_$1-$_am_tools} -# Do not fold the above two line into one, because Tru64 sh and -# Solaris sh will not grok spaces in the rhs of `-'. -for _am_tool in $_am_tools -do - case $_am_tool in - gnutar) - for _am_tar in tar gnutar gtar; - do - AM_RUN_LOG([$_am_tar --version]) && break - done - am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"' - am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"' - am__untar="$_am_tar -xf -" - ;; - plaintar) - # Must skip GNU tar: if it does not support --format= it doesn't create - # ustar tarball either. - (tar --version) >/dev/null 2>&1 && continue - am__tar='tar chf - "$$tardir"' - am__tar_='tar chf - "$tardir"' - am__untar='tar xf -' - ;; - pax) - am__tar='pax -L -x $1 -w "$$tardir"' - am__tar_='pax -L -x $1 -w "$tardir"' - am__untar='pax -r' - ;; - cpio) - am__tar='find "$$tardir" -print | cpio -o -H $1 -L' - am__tar_='find "$tardir" -print | cpio -o -H $1 -L' - am__untar='cpio -i -H $1 -d' - ;; - none) - am__tar=false - am__tar_=false - am__untar=false - ;; - esac - - # If the value was cached, stop now. We just wanted to have am__tar - # and am__untar set. - test -n "${am_cv_prog_tar_$1}" && break - - # tar/untar a dummy directory, and stop if the command works - rm -rf conftest.dir - mkdir conftest.dir - echo GrepMe > conftest.dir/file - AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar]) - rm -rf conftest.dir - if test -s conftest.tar; then - AM_RUN_LOG([$am__untar /dev/null 2>&1 && break - fi -done -rm -rf conftest.dir - -AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool]) -AC_MSG_RESULT([$am_cv_prog_tar_$1])]) -AC_SUBST([am__tar]) -AC_SUBST([am__untar]) -]) # _AM_PROG_TAR - diff -Nru fcitx-4.0.1/autogen.sh fcitx-4.1.1/autogen.sh --- fcitx-4.0.1/autogen.sh 2010-11-28 11:54:51.000000000 +0000 +++ fcitx-4.1.1/autogen.sh 1970-01-01 00:00:00.000000000 +0000 @@ -1,42 +0,0 @@ -#!/bin/sh - -aclocal || exit 1 -autoheader || exit 1 -libtoolize --automake --copy --force || exit 1 -intltoolize --force --copy || exit 1 -automake --add-missing --copy --include-deps || exit 1 -autoconf || exit 1 - -if [ -z "$1" ] ; then - echo - echo 'FCITX now prepared to build. Run:' - echo " ./configure && make" -else - ./configure "$@" || exit 1 - make || exit 1 -fi - -echo -echo 'Build and Install on system:' -echo ' ./configure && make install # run as root' - -echo 'Build and Install on user home:' -echo ' ./configure --prefix="$HOME" && make install' - -echo 'Build without xft:' -echo ' ./configure --enable-xft=no && make' - -echo -echo 'Build RPM Package:' -echo ' ./configure && make dist' -echo ' rpmbuild -ts fcitx-*.tar.gz # build source package' -echo ' rpmbuild -tb fcitx-*.tar.gz # build binary package' - -echo -echo 'Build Debian Package:' -echo ' ./configure && fakeroot dpkg-buildpackage -uc -b -d' - -echo -echo 'Create and test source distribution:' -echo ' ./configure && make distcheck' - diff -Nru fcitx-4.0.1/ChangeLog fcitx-4.1.1/ChangeLog --- fcitx-4.0.1/ChangeLog 2010-12-15 17:48:58.000000000 +0000 +++ fcitx-4.1.1/ChangeLog 2011-09-08 16:00:05.000000000 +0000 @@ -1,3 +1,7 @@ +2011-04-27: CSSlayer + * 修复txt2mb在64位系统下的一个bug + * 参考Freedesktop.org WM-Spec尝试解决GNOME3窗口显示相关的问题(未验证) + 2010-12-16: CSSlayer * 增加man * 移除pdf和odt格式的文档,以后fcitx-handbook将分开发布。 @@ -925,7 +929,7 @@ * src/xim.c: 修改生成IC时将CurrentIC设置为新的值的问题(MyCreateICHandler)。 * src/xim.c: 如果动作的IC值与CurrentIC不相同,将不处理(MyForwardEventHandler)──试图解决出现双字母的问题。 * src/InputWindow.h: 将INPUTWND_WIDTH的默认值设置为200。 - * src/py.c: 修改一处错误的变量调用,此问题会导致联想候选字表显示不正常(PYGetLegendCandWords)。 + * src/py.c: 修改一处错误的变量调用,此问题会导致联想候选字表显示不正常(PYGetRemindCandWords)。 * src/MainWindow.c,src/tools.c,src/xim.c: 在主窗口上增加一个锁定按钮,打开时将无法用键盘来切换输入法。 2004-03-01 Xiao Huo diff -Nru fcitx-4.0.1/cmake/CMakeLists.txt fcitx-4.1.1/cmake/CMakeLists.txt --- fcitx-4.0.1/cmake/CMakeLists.txt 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/cmake/CMakeLists.txt 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,2 @@ +install(FILES FcitxConfig.cmake FcitxMacro.cmake DESTINATION ${prefix}/share/cmake/fcitx/) +install(FILES ${CMAKE_CURRENT_BINARY_DIR}/FcitxConfigVersion.cmake DESTINATION ${prefix}/share/cmake/fcitx/) diff -Nru fcitx-4.0.1/cmake/cmake_uninstall.cmake.in fcitx-4.1.1/cmake/cmake_uninstall.cmake.in --- fcitx-4.0.1/cmake/cmake_uninstall.cmake.in 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/cmake/cmake_uninstall.cmake.in 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,21 @@ +if (NOT EXISTS "@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt") + message(FATAL_ERROR "Cannot find install manifest: \"@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt\"") +endif(NOT EXISTS "@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt") + +file(READ "@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt" files) +string(REGEX REPLACE "\n" ";" files "${files}") +foreach (file ${files}) + message(STATUS "Uninstalling \"$ENV{DESTDIR}${file}\"") + if (EXISTS "$ENV{DESTDIR}${file}" OR IS_SYMLINK "$ENV{DESTDIR}${file}") + execute_process( + COMMAND @CMAKE_COMMAND@ -E remove "$ENV{DESTDIR}${file}" + OUTPUT_VARIABLE rm_out + RESULT_VARIABLE rm_retval + ) + if(NOT ${rm_retval} EQUAL 0) + message(FATAL_ERROR "Problem when removing \"$ENV{DESTDIR}${file}\"") + endif (NOT ${rm_retval} EQUAL 0) + else (EXISTS "$ENV{DESTDIR}${file}" OR IS_SYMLINK "$ENV{DESTDIR}${file}") + message(STATUS "File \"$ENV{DESTDIR}${file}\" does not exist.") + endif (EXISTS "$ENV{DESTDIR}${file}" OR IS_SYMLINK "$ENV{DESTDIR}${file}") +endforeach(file) diff -Nru fcitx-4.0.1/cmake/COPYING-CMAKE-SCRIPTS fcitx-4.1.1/cmake/COPYING-CMAKE-SCRIPTS --- fcitx-4.0.1/cmake/COPYING-CMAKE-SCRIPTS 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/cmake/COPYING-CMAKE-SCRIPTS 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,22 @@ +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +1. Redistributions of source code must retain the copyright + notice, this list of conditions and the following disclaimer. +2. Redistributions in binary form must reproduce the copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. +3. The name of the author may not be used to endorse or promote products + derived from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR +IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES +OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. +IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT +NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF +THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff -Nru fcitx-4.0.1/cmake/FcitxConfig.cmake fcitx-4.1.1/cmake/FcitxConfig.cmake --- fcitx-4.0.1/cmake/FcitxConfig.cmake 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/cmake/FcitxConfig.cmake 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,90 @@ +# - Locate the fcitx4 library +# This module defines +# FCITX4_FCITX_FOUND found libfcitx +# FCITX4_FCITX_LIBRARIES the, library to link against +# FCITX4_FCITX_LIBRARY_DIRS, where to find library +# FCITX4_FCITX_INCLUDE_DIRS, where to find headers +# FCITX4_FCITX_CONFIG_FOUND found libfcitx-config +# FCITX4_FCITX_CONFIG_LIBRARIES, library to link against +# FCITX4_FCITX_CONFIG_LIBRARY_DIRS, where to find library +# FCITX4_FCITX_CONFIG_INCLUDE_DIRS, where to find headers +# FCITX4_FCITX_UTILS_FOUND found libfcitx-utils +# FCITX4_FCITX_UTILS_LIBRARIES, library to link against +# FCITX4_FCITX_UTILS_LIBRARY_DIRS, where to find library +# FCITX4_FCITX_UTILS_INCLUDE_DIRS, where to find headers +# FCITX4_ADDON_INSTALL_DIR directory to install fcitx addon +# FCITX4_CONFIGDESC_INSTALL_DIR directory to install fcitx configuration description file +# FCITX4_ADDON_CONFIG_INSTALL_DIR directory to install fcitx addon config +# FCITX4_PACKAGE_NAME package name of fcitx, normally is "fcitx" +# FCITX4_VERSION version of fcitx +# +# Please look in FcitxMacro.cmake for more information. + +#============================================================================== +# Copyright 2011 Xuetian Weng +# +# Distributed under the GPLv2 License +# see accompanying file COPYRIGHT for details +#============================================================================== +# (To distribute this file outside of Fcitx, substitute the full +# License text for the above reference.) + +# use pkg-config to get the directories and then use these values +# in the FIND_PATH() and FIND_LIBRARY() calls +FIND_PACKAGE(PkgConfig) +PKG_CHECK_MODULES(PC_FCITX fcitx) +PKG_CHECK_MODULES(PC_FCITX_CONFIG fcitx-config) +PKG_CHECK_MODULES(PC_FCITX_UTILS fcitx-utils) + +SET(FCITX4_FCITX_FOUND ${PC_FCITX_FOUND}) +SET(FCITX4_FCITX_LIBRARIES ${PC_FCITX_LIBRARIES}) +SET(FCITX4_FCITX_LIBRARY_DIRS ${PC_FCITX_LIBRARY_DIRS}) +SET(FCITX4_FCITX_LDFLAGS ${PC_FCITX_LDFLAGS}) +SET(FCITX4_FCITX_LDFLAGS_OTHER ${PC_FCITX_LDFLAGS_OTHER}) +SET(FCITX4_FCITX_INCLUDE_DIRS ${PC_FCITX_INCLUDE_DIRS}) +SET(FCITX4_FCITX_CFLAGS ${PC_FCITX_CFLAGS}) +SET(FCITX4_FCITX_CFLAGS_OTHER ${PC_FCITX_CFLAGS_OTHER}) + +SET(FCITX4_FCITX_CONFIG_FOUND ${PC_FCITX_FOUND}) +SET(FCITX4_FCITX_CONFIG_LIBRARIES ${PC_FCITX_CONFIG_LIBRARIES}) +SET(FCITX4_FCITX_CONFIG_LIBRARY_DIRS ${PC_FCITX_CONFIG_LIBRARY_DIRS}) +SET(FCITX4_FCITX_CONFIG_LDFLAGS ${PC_FCITX_CONFIG_LDFLAGS}) +SET(FCITX4_FCITX_CONFIG_LDFLAGS_OTHER ${PC_FCITX_CONFIG_LDFLAGS_OTHER}) +SET(FCITX4_FCITX_CONFIG_INCLUDE_DIRS ${PC_FCITX_CONFIG_INCLUDE_DIRS}) +SET(FCITX4_FCITX_CONFIG_CFLAGS ${PC_FCITX_CONFIG_CFLAGS}) +SET(FCITX4_FCITX_CONFIG_CFLAGS_OTHER ${PC_FCITX_CONFIG_CFLAGS_OTHER}) + +SET(FCITX4_FCITX_UTILS_FOUND ${PC_FCITX_FOUND}) +SET(FCITX4_FCITX_UTILS_LIBRARIES ${PC_FCITX_UTILS_LIBRARIES}) +SET(FCITX4_FCITX_UTILS_LIBRARY_DIRS ${PC_FCITX_UTILS_LIBRARY_DIRS}) +SET(FCITX4_FCITX_UTILS_LDFLAGS ${PC_FCITX_UTILS_LDFLAGS}) +SET(FCITX4_FCITX_UTILS_LDFLAGS_OTHER ${PC_FCITX_UTILS_LDFLAGS_OTHER}) +SET(FCITX4_FCITX_UTILS_INCLUDE_DIRS ${PC_FCITX_UTILS_INCLUDE_DIRS}) +SET(FCITX4_FCITX_UTILS_CFLAGS ${PC_FCITX_UTILS_CFLAGS}) +SET(FCITX4_FCITX_UTILS_CFLAGS_OTHER ${PC_FCITX_UTILS_CFLAGS_OTHER}) + +FIND_PROGRAM(FCITX4_FCITXCONFIG_EXECUTABLE NAMES fcitx4-config + # the suffix must be used since KDEDIRS can be a list of directories which don't have bin/ appended + PATH_SUFFIXES bin + HINTS + ${CMAKE_INSTALL_PREFIX} + /opt/fcitx + ONLY_CMAKE_FIND_ROOT_PATH + ) + +IF(FCITX4_FCITXCONFIG_EXECUTABLE) + message(STATUS "fcitx4-config found ${FCITX4_FCITXCONFIG_EXECUTABLE}") + EXECUTE_PROCESS(COMMAND "${FCITX4_FCITXCONFIG_EXECUTABLE}" --addondir OUTPUT_VARIABLE FCITX4_ADDON_INSTALL_DIR ERROR_QUIET OUTPUT_STRIP_TRAILING_WHITESPACE) + EXECUTE_PROCESS(COMMAND "${FCITX4_FCITXCONFIG_EXECUTABLE}" --configdescdir OUTPUT_VARIABLE FCITX4_CONFIGDESC_INSTALL_DIR ERROR_QUIET OUTPUT_STRIP_TRAILING_WHITESPACE) + EXECUTE_PROCESS(COMMAND "${FCITX4_FCITXCONFIG_EXECUTABLE}" --addonconfigdir OUTPUT_VARIABLE FCITX4_ADDON_CONFIG_INSTALL_DIR ERROR_QUIET OUTPUT_STRIP_TRAILING_WHITESPACE) + EXECUTE_PROCESS(COMMAND "${FCITX4_FCITXCONFIG_EXECUTABLE}" --package OUTPUT_VARIABLE FCITX4_PACKAGE_NAME ERROR_QUIET OUTPUT_STRIP_TRAILING_WHITESPACE) + EXECUTE_PROCESS(COMMAND "${FCITX4_FCITXCONFIG_EXECUTABLE}" --version OUTPUT_VARIABLE FCITX4_VERSION ERROR_QUIET OUTPUT_STRIP_TRAILING_WHITESPACE) + EXECUTE_PROCESS(COMMAND "${FCITX4_FCITXCONFIG_EXECUTABLE}" --prefix OUTPUT_VARIABLE FCITX4_PREFIX ERROR_QUIET OUTPUT_STRIP_TRAILING_WHITESPACE) +else(FCITX4_FCITXCONFIG_EXECUTABLE) + message(STATUS "fcitx4-config not found") +ENDIF(FCITX4_FCITXCONFIG_EXECUTABLE) + +INCLUDE(FindPackageHandleStandardArgs) +FIND_PACKAGE_HANDLE_STANDARD_ARGS(Fcitx DEFAULT_MSG FCITX4_VERSION) + +INCLUDE(${FCITX4_PREFIX}/share/cmake/fcitx/FcitxMacro.cmake) diff -Nru fcitx-4.0.1/cmake/FcitxConfigVersion.cmake.in fcitx-4.1.1/cmake/FcitxConfigVersion.cmake.in --- fcitx-4.0.1/cmake/FcitxConfigVersion.cmake.in 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/cmake/FcitxConfigVersion.cmake.in 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,10 @@ +set(PACKAGE_VERSION @version@) + +if("${PACKAGE_VERSION}" VERSION_LESS "${PACKAGE_FIND_VERSION}" ) + set(PACKAGE_VERSION_COMPATIBLE FALSE) +else("${PACKAGE_VERSION}" VERSION_LESS "${PACKAGE_FIND_VERSION}" ) + set(PACKAGE_VERSION_COMPATIBLE TRUE) + if( "${PACKAGE_FIND_VERSION}" STREQUAL "${PACKAGE_VERSION}") + set(PACKAGE_VERSION_EXACT TRUE) + endif( "${PACKAGE_FIND_VERSION}" STREQUAL "${PACKAGE_VERSION}") +endif("${PACKAGE_VERSION}" VERSION_LESS "${PACKAGE_FIND_VERSION}" ) \ No newline at end of file diff -Nru fcitx-4.0.1/cmake/FcitxMacro.cmake fcitx-4.1.1/cmake/FcitxMacro.cmake --- fcitx-4.0.1/cmake/FcitxMacro.cmake 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/cmake/FcitxMacro.cmake 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,85 @@ +# This file is included by FindFcitx4.cmake, don't include it directly. +# - Useful macro for fcitx development +# +# Usage: +# INTLTOOL_MERGE_TRANSLATION([INFILE] [OUTFILE]) +# merge translation to fcitx config and desktop file +# +# FCITX_ADD_ADDON_CONF_FILE([conffilename]) +# merge addon .conf.in translation and install it to correct path +# you shouldn't put .in in filename, just put foobar.conf +# +# FCITX_ADD_CONFIGDESC_FILE([filename]*) +# install configuration description file to correct path +# +# EXTRACT_FCITX_ADDON_CONF_POSTRING() +# extract fcitx addon conf translatable string from POFILES.in from +# ${CMAKE_CURRENT_BINARY_DIR}, the file need end with ,conf.in +# + +#============================================================================== +# Copyright 2011 Xuetian Weng +# +# Distributed under the GPLv2 License +# see accompanying file COPYRIGHT for details +#============================================================================== +# (To distribute this file outside of Fcitx, substitute the full +# License text for the above reference.) + +FIND_PROGRAM(INTLTOOL_EXTRACT intltool-extract) +FIND_PROGRAM(INTLTOOL_UPDATE intltool-update) +FIND_PROGRAM(INTLTOOL_MERGE intltool-merge) + +MACRO(INTLTOOL_MERGE_TRANSLATION infile outfile) + ADD_CUSTOM_COMMAND( + OUTPUT ${outfile} + COMMAND LC_ALL=C ${INTLTOOL_MERGE} -d -u ${PROJECT_SOURCE_DIR}/po ${infile} ${outfile} + DEPENDS ${infile} + ) +ENDMACRO(INTLTOOL_MERGE_TRANSLATION) + +MACRO(FCITX_ADD_ADDON_CONF_FILE conffilename) + intltool_merge_translation(${CMAKE_CURRENT_SOURCE_DIR}/${conffilename}.in ${CMAKE_CURRENT_BINARY_DIR}/${conffilename}) + add_custom_target(${conffilename}.target ALL DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/${conffilename}) + install(FILES ${CMAKE_CURRENT_BINARY_DIR}/${conffilename} DESTINATION ${FCITX4_ADDON_CONFIG_INSTALL_DIR}) +ENDMACRO(FCITX_ADD_ADDON_CONF_FILE addonname) + +MACRO(FCITX_ADD_CONFIGDESC_FILE) + set(_args ${ARGN}) + set(_DESCFILES ${_args}) + install(FILES ${_DESCFILES} DESTINATION ${FCITX4_CONFIGDESC_INSTALL_DIR}) +ENDMACRO(FCITX_ADD_CONFIGDESC_FILE) + +MACRO(EXTRACT_FCITX_ADDON_CONF_POSTRING) + file(STRINGS ${CMAKE_CURRENT_BINARY_DIR}/POTFILES.in POTFILES_IN) + set(TEMPHEADER "") + foreach(EXTRACTFILE ${POTFILES_IN}) + if ( ${EXTRACTFILE} MATCHES ".conf.in$") + get_filename_component(_EXTRAFILENAME ${EXTRACTFILE} NAME) + add_custom_command(OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/tmp/${_EXTRAFILENAME}.h + COMMAND ${INTLTOOL_EXTRACT} --srcdir=${PROJECT_BINARY_DIR} --local --type=gettext/ini ${EXTRACTFILE} + WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} + ) + set(TEMPHEADER ${TEMPHEADER} "${CMAKE_CURRENT_BINARY_DIR}/tmp/${_EXTRAFILENAME}.h") + endif ( ${EXTRACTFILE} MATCHES ".conf.in$") + endforeach(EXTRACTFILE ${POTFILES_IN}) + + add_custom_command( + OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/conf.po + COMMAND xgettext --add-comments --output=conf.po --keyword=N_ ${TEMPHEADER} + DEPENDS ${TEMPHEADER}) +ENDMACRO(EXTRACT_FCITX_ADDON_CONF_POSTRING) + +MACRO(FCITX_ADD_ADDON target) + set(_args ${ARGN}) + set(_SRCS ${_args}) + add_library(${target} MODULE ${_SRCS}) + set_target_properties( ${target} PROPERTIES PREFIX "" COMPILE_FLAGS "-fvisibility=hidden") + install(TARGETS ${target} DESTINATION ${FCITX4_ADDON_INSTALL_DIR}) +ENDMACRO(FCITX_ADD_ADDON) + +MACRO(FCITX_ADD_ADDON_HEADER subdir) + set(_args ${ARGN}) + set(_SRCS ${_args}) + install(FILES ${_SRCS} DESTINATION ${includedir}/${FCITX4_PACKAGE_NAME}/module/${subdir}) +ENDMACRO(FCITX_ADD_ADDON_HEADER) diff -Nru fcitx-4.0.1/cmake/FindDL.cmake fcitx-4.1.1/cmake/FindDL.cmake --- fcitx-4.0.1/cmake/FindDL.cmake 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/cmake/FindDL.cmake 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,17 @@ +# - find where dlopen and friends are located. +# DL_FOUND - system has dynamic linking interface available +# DL_INCLUDE_DIR - where dlfcn.h is located. +# DL_LIBRARIES - libraries needed to use dlopen + +include(CheckFunctionExists) + +find_path(DL_INCLUDE_DIR NAMES dlfcn.h) +find_library(DL_LIBRARIES NAMES dl) +if(DL_LIBRARIES) + set(DL_FOUND) +else(DL_LIBRARIES) + check_function_exists(dlopen DL_FOUND) + # If dlopen can be found without linking in dl then dlopen is part + # of libc, so don't need to link extra libs. + set(DL_LIBRARIES "") +endif(DL_LIBRARIES) diff -Nru fcitx-4.0.1/cmake/FindICU.cmake fcitx-4.1.1/cmake/FindICU.cmake --- fcitx-4.0.1/cmake/FindICU.cmake 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/cmake/FindICU.cmake 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,76 @@ +# Finds the International Components for Unicode (ICU) Library +# +# ICU_FOUND - True if ICU found. +# ICU_I18N_FOUND - True if ICU's internationalization library found. +# ICU_INCLUDE_DIRS - Directory to include to get ICU headers +# Note: always include ICU headers as, e.g., +# unicode/utypes.h +# ICU_LIBRARIES - Libraries to link against for the common ICU +# ICU_I18N_LIBRARIES - Libraries to link against for ICU internationaliation +# (note: in addition to ICU_LIBRARIES) + +# Look for the header file. +FIND_PATH( + ICU_INCLUDE_DIR + NAMES unicode/utypes.h + DOC "Include directory for the ICU library") +MARK_AS_ADVANCED(ICU_INCLUDE_DIR) + +# Look for the library. +FIND_LIBRARY( + ICU_LIBRARY + NAMES icuuc cygicuuc cygicuuc32 + DOC "Libraries to link against for the common parts of ICU") +MARK_AS_ADVANCED(ICU_LIBRARY) + +# Copy the results to the output variables. +IF (ICU_INCLUDE_DIR AND ICU_LIBRARY) + SET(ICU_FOUND 1) + SET(ICU_LIBRARIES ${ICU_LIBRARY}) + SET(ICU_INCLUDE_DIRS ${ICU_INCLUDE_DIR}) + + SET(ICU_VERSION 0) + SET(ICU_MAJOR_VERSION 0) + SET(ICU_MINOR_VERSION 0) + FILE(READ "${ICU_INCLUDE_DIR}/unicode/uversion.h" _ICU_VERSION_CONENTS) + STRING(REGEX REPLACE ".*#define U_ICU_VERSION_MAJOR_NUM ([0-9]+).*" "\\1" ICU_MAJOR_VERSION "${_ICU_VERSION_CONENTS}") + STRING(REGEX REPLACE ".*#define U_ICU_VERSION_MINOR_NUM ([0-9]+).*" "\\1" ICU_MINOR_VERSION "${_ICU_VERSION_CONENTS}") + + SET(ICU_VERSION "${ICU_MAJOR_VERSION}.${ICU_MINOR_VERSION}") + + # Look for the ICU internationalization libraries + FIND_LIBRARY( + ICU_I18N_LIBRARY + NAMES icuin icui18n cygicuin cygicuin32 + DOC "Libraries to link against for ICU internationalization") + MARK_AS_ADVANCED(ICU_I18N_LIBRARY) + IF (ICU_I18N_LIBRARY) + SET(ICU_I18N_FOUND 1) + SET(ICU_I18N_LIBRARIES ${ICU_I18N_LIBRARY}) + ELSE () + SET(ICU_I18N_FOUND 0) + SET(ICU_I18N_LIBRARIES) + ENDIF () +ELSE () + SET(ICU_FOUND 0) + SET(ICU_I18N_FOUND 0) + SET(ICU_LIBRARIES) + SET(ICU_I18N_LIBRARIES) + SET(ICU_INCLUDE_DIRS) + SET(ICU_VERSION) + SET(ICU_MAJOR_VERSION) + SET(ICU_MINOR_VERSION) +ENDIF () + +IF (ICU_FOUND) + IF (NOT ICU_FIND_QUIETLY) + MESSAGE(STATUS "Found ICU header files in ${ICU_INCLUDE_DIRS}") + MESSAGE(STATUS "Found ICU libraries: ${ICU_LIBRARIES}") + ENDIF () +ELSE () + IF (ICU_FIND_REQUIRED) + MESSAGE(FATAL_ERROR "Could not find ICU") + ELSE () + MESSAGE(STATUS "Optional package ICU was not found") + ENDIF () +ENDIF () diff -Nru fcitx-4.0.1/cmake/FindLibexecinfo.cmake fcitx-4.1.1/cmake/FindLibexecinfo.cmake --- fcitx-4.0.1/cmake/FindLibexecinfo.cmake 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/cmake/FindLibexecinfo.cmake 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,46 @@ +# Try to find LibExecinfo functionality +# Once done this will define +# +# LIBEXECINFO_FOUND - system has LibExecinfo +# LIBEXECINFO_INCLUDE_DIR - LibExecinfo include directory +# LIBEXECINFO_LIBRARIES - Libraries needed to use LibExecinfo +# +# TODO: This will enable translations only if Gettext functionality is +# present in libc. Must have more robust system for release, where Gettext +# functionality can also reside in standalone Gettext library, or the one +# embedded within kdelibs (cf. gettext.m4 from Gettext source). + +# Copyright (c) 2006, Chusslove Illich, +# Copyright (c) 2007, Alexander Neundorf, +# +# Redistribution and use is allowed according to the terms of the BSD license. +# For details see the accompanying COPYING-CMAKE-SCRIPTS file. + +if(LIBEXECINFO_INCLUDE_DIR AND LIBEXECINFO_LIB_FOUND) + set(LibExecinfo_FIND_QUIETLY TRUE) +endif(LIBEXECINFO_INCLUDE_DIR AND LIBEXECINFO_LIB_FOUND) + +find_path(LIBEXECINFO_INCLUDE_DIR execinfo.h) + +set(LIBEXECINFO_LIB_FOUND FALSE) + +if(LIBEXECINFO_INCLUDE_DIR) + include(CheckFunctionExists) + check_function_exists(backtrace LIBEXECINFO_LIBC_HAS_LIBEXECINFO_BACKTRACE) + + if (LIBEXECINFO_LIBC_HAS_LIBEXECINFO_BACKTRACE) + set(LIBEXECINFO_LIBRARIES) + set(LIBEXECINFO_LIB_FOUND TRUE) + else (LIBEXECINFO_LIBC_HAS_LIBEXECINFO_BACKTRACE) + find_library(LIBEXECINFO_LIBRARIES NAMES execinfo libexecinfo ) + if(LIBEXECINFO_LIBRARIES) + set(LIBEXECINFO_LIB_FOUND TRUE) + endif(LIBEXECINFO_LIBRARIES) + endif (LIBEXECINFO_LIBC_HAS_LIBEXECINFO_BACKTRACE) + +endif(LIBEXECINFO_INCLUDE_DIR) + +include(FindPackageHandleStandardArgs) +find_package_handle_standard_args(LibExecinfo DEFAULT_MSG LIBEXECINFO_INCLUDE_DIR LIBEXECINFO_LIB_FOUND) + +mark_as_advanced(LIBEXECINFO_INCLUDE_DIR LIBEXECINFO_LIBRARIES LIBEXECINFO_LIBC_HAS_LIBEXECINFO_BACKTRACE LIBEXECINFO_LIB_FOUND) \ No newline at end of file diff -Nru fcitx-4.0.1/cmake/FindLibiconv.cmake fcitx-4.1.1/cmake/FindLibiconv.cmake --- fcitx-4.0.1/cmake/FindLibiconv.cmake 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/cmake/FindLibiconv.cmake 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,46 @@ +# Try to find Libiconv functionality +# Once done this will define +# +# LIBICONV_FOUND - system has Libiconv +# LIBICONV_INCLUDE_DIR - Libiconv include directory +# LIBICONV_LIBRARIES - Libraries needed to use Libiconv +# +# TODO: This will enable translations only if Gettext functionality is +# present in libc. Must have more robust system for release, where Gettext +# functionality can also reside in standalone Gettext library, or the one +# embedded within kdelibs (cf. gettext.m4 from Gettext source). + +# Copyright (c) 2006, Chusslove Illich, +# Copyright (c) 2007, Alexander Neundorf, +# +# Redistribution and use is allowed according to the terms of the BSD license. +# For details see the accompanying COPYING-CMAKE-SCRIPTS file. + +if(LIBICONV_INCLUDE_DIR AND LIBICONV_LIB_FOUND) + set(Libiconv_FIND_QUIETLY TRUE) +endif(LIBICONV_INCLUDE_DIR AND LIBICONV_LIB_FOUND) + +find_path(LIBICONV_INCLUDE_DIR iconv.h) + +set(LIBICONV_LIB_FOUND FALSE) + +if(LIBICONV_INCLUDE_DIR) + include(CheckFunctionExists) + check_function_exists(iconv_open LIBICONV_LIBC_HAS_ICONV_OPEN) + + if (LIBICONV_LIBC_HAS_ICONV_OPEN) + set(LIBICONV_LIBRARIES) + set(LIBICONV_LIB_FOUND TRUE) + else (LIBICONV_LIBC_HAS_ICONV_OPEN) + find_library(LIBICONV_LIBRARIES NAMES iconv) + if(LIBICONV_LIBRARIES) + set(LIBICONV_LIB_FOUND TRUE) + endif(LIBICONV_LIBRARIES) + endif (LIBICONV_LIBC_HAS_ICONV_OPEN) + +endif(LIBICONV_INCLUDE_DIR) + +include(FindPackageHandleStandardArgs) +find_package_handle_standard_args(Libiconv DEFAULT_MSG LIBICONV_INCLUDE_DIR LIBICONV_LIB_FOUND) + +mark_as_advanced(LIBICONV_INCLUDE_DIR LIBICONV_LIBRARIES LIBICONV_LIBC_HAS_ICONV_OPEN LIBICONV_LIB_FOUND) \ No newline at end of file diff -Nru fcitx-4.0.1/cmake/FindLibintl.cmake fcitx-4.1.1/cmake/FindLibintl.cmake --- fcitx-4.0.1/cmake/FindLibintl.cmake 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/cmake/FindLibintl.cmake 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,46 @@ +# Try to find Libintl functionality +# Once done this will define +# +# LIBINTL_FOUND - system has Libintl +# LIBINTL_INCLUDE_DIR - Libintl include directory +# LIBINTL_LIBRARIES - Libraries needed to use Libintl +# +# TODO: This will enable translations only if Gettext functionality is +# present in libc. Must have more robust system for release, where Gettext +# functionality can also reside in standalone Gettext library, or the one +# embedded within kdelibs (cf. gettext.m4 from Gettext source). + +# Copyright (c) 2006, Chusslove Illich, +# Copyright (c) 2007, Alexander Neundorf, +# +# Redistribution and use is allowed according to the terms of the BSD license. +# For details see the accompanying COPYING-CMAKE-SCRIPTS file. + +if(LIBINTL_INCLUDE_DIR AND LIBINTL_LIB_FOUND) + set(Libintl_FIND_QUIETLY TRUE) +endif(LIBINTL_INCLUDE_DIR AND LIBINTL_LIB_FOUND) + +find_path(LIBINTL_INCLUDE_DIR libintl.h) + +set(LIBINTL_LIB_FOUND FALSE) + +if(LIBINTL_INCLUDE_DIR) + include(CheckFunctionExists) + check_function_exists(dgettext LIBINTL_LIBC_HAS_DGETTEXT) + + if (LIBINTL_LIBC_HAS_DGETTEXT) + set(LIBINTL_LIBRARIES) + set(LIBINTL_LIB_FOUND TRUE) + else (LIBINTL_LIBC_HAS_DGETTEXT) + find_library(LIBINTL_LIBRARIES NAMES intl libintl ) + if(LIBINTL_LIBRARIES) + set(LIBINTL_LIB_FOUND TRUE) + endif(LIBINTL_LIBRARIES) + endif (LIBINTL_LIBC_HAS_DGETTEXT) + +endif(LIBINTL_INCLUDE_DIR) + +include(FindPackageHandleStandardArgs) +find_package_handle_standard_args(Libintl DEFAULT_MSG LIBINTL_INCLUDE_DIR LIBINTL_LIB_FOUND) + +mark_as_advanced(LIBINTL_INCLUDE_DIR LIBINTL_LIBRARIES LIBINTL_LIBC_HAS_DGETTEXT LIBINTL_LIB_FOUND) \ No newline at end of file diff -Nru fcitx-4.0.1/cmake/FindPthread.cmake fcitx-4.1.1/cmake/FindPthread.cmake --- fcitx-4.0.1/cmake/FindPthread.cmake 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/cmake/FindPthread.cmake 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,46 @@ +# Try to find Pthread functionality +# Once done this will define +# +# PTHREAD_FOUND - system has Pthread +# PTHREAD_INCLUDE_DIR - Pthread include directory +# PTHREAD_LIBRARIES - Libraries needed to use Pthread +# +# TODO: This will enable translations only if Gettext functionality is +# present in libc. Must have more robust system for release, where Gettext +# functionality can also reside in standalone Gettext library, or the one +# embedded within kdelibs (cf. gettext.m4 from Gettext source). + +# Copyright (c) 2006, Chusslove Illich, +# Copyright (c) 2007, Alexander Neundorf, +# +# Redistribution and use is allowed according to the terms of the BSD license. +# For details see the accompanying COPYING-CMAKE-SCRIPTS file. + +if(PTHREAD_INCLUDE_DIR AND PTHREAD_LIB_FOUND) + set(Pthread_FIND_QUIETLY TRUE) +endif(PTHREAD_INCLUDE_DIR AND PTHREAD_LIB_FOUND) + +find_path(PTHREAD_INCLUDE_DIR pthread.h) + +set(PTHREAD_LIB_FOUND FALSE) + +if(PTHREAD_INCLUDE_DIR) + include(CheckFunctionExists) + check_function_exists(pthread_create PTHREAD_LIBC_HAS_PTHREAD_CREATE) + + if (PTHREAD_LIBC_HAS_PTHREAD_CREATE) + set(PTHREAD_LIBRARIES) + set(PTHREAD_LIB_FOUND TRUE) + else (PTHREAD_LIBC_HAS_PTHREAD_CREATE) + find_library(PTHREAD_LIBRARIES NAMES pthread libpthread ) + if(PTHREAD_LIBRARIES) + set(PTHREAD_LIB_FOUND TRUE) + endif(PTHREAD_LIBRARIES) + endif (PTHREAD_LIBC_HAS_PTHREAD_CREATE) + +endif(PTHREAD_INCLUDE_DIR) + +include(FindPackageHandleStandardArgs) +find_package_handle_standard_args(Pthread DEFAULT_MSG PTHREAD_INCLUDE_DIR PTHREAD_LIB_FOUND) + +mark_as_advanced(PTHREAD_INCLUDE_DIR PTHREAD_LIBRARIES PTHREAD_LIBC_HAS_PTHREAD_CREATE PTHREAD_LIB_FOUND) \ No newline at end of file diff -Nru fcitx-4.0.1/cmake/UseDoxygen.cmake fcitx-4.1.1/cmake/UseDoxygen.cmake --- fcitx-4.0.1/cmake/UseDoxygen.cmake 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/cmake/UseDoxygen.cmake 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,143 @@ +# - Run Doxygen +# +# Adds a doxygen target that runs doxygen to generate the html +# and optionally the LaTeX API documentation. +# The doxygen target is added to the doc target as a dependency. +# i.e.: the API documentation is built with: +# make doc +# +# USAGE: GLOBAL INSTALL +# +# Install it with: +# cmake ./ && sudo make install +# Add the following to the CMakeLists.txt of your project: +# include(UseDoxygen OPTIONAL) +# Optionally copy Doxyfile.in in the directory of CMakeLists.txt and edit it. +# +# USAGE: INCLUDE IN PROJECT +# +# set(CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}) +# include(UseDoxygen) +# Add the Doxyfile.in and UseDoxygen.cmake files to the projects source directory. +# +# +# CONFIGURATION +# +# To configure Doxygen you can edit Doxyfile.in and set some variables in cmake. +# Variables you may define are: +# DOXYFILE_SOURCE_DIR - Path where the Doxygen input files are. +# Defaults to the current source directory. +# DOXYFILE_EXTRA_SOURCES - Additional source diretories/files for Doxygen to scan. +# The Paths should be in double quotes and separated by space. e.g.: +# "${CMAKE_CURRENT_BINARY_DIR}/foo.c" "${CMAKE_CURRENT_BINARY_DIR}/bar/" +# +# DOXYFILE_OUTPUT_DIR - Path where the Doxygen output is stored. +# Defaults to "${CMAKE_CURRENT_BINARY_DIR}/doc". +# +# DOXYFILE_LATEX - ON/OFF; Set to "ON" if you want the LaTeX documentation +# to be built. +# DOXYFILE_LATEX_DIR - Directory relative to DOXYFILE_OUTPUT_DIR where +# the Doxygen LaTeX output is stored. Defaults to "latex". +# +# DOXYFILE_HTML_DIR - Directory relative to DOXYFILE_OUTPUT_DIR where +# the Doxygen html output is stored. Defaults to "html". +# + +# +# Copyright (c) 2009, 2010, 2011 Tobias Rautenkranz +# +# Redistribution and use is allowed according to the terms of the New +# BSD license. +# For details see the accompanying COPYING-CMAKE-SCRIPTS file. +# + +macro(usedoxygen_set_default name value type docstring) + if(NOT DEFINED "${name}") + set("${name}" "${value}" CACHE "${type}" "${docstring}") + endif() +endmacro() + +find_package(Doxygen) + +if(DOXYGEN_FOUND) + find_file(DOXYFILE_IN "Doxyfile.in" + PATHS "${CMAKE_CURRENT_SOURCE_DIR}" "${CMAKE_ROOT}/Modules/" + NO_DEFAULT_PATH + DOC "Path to the doxygen configuration template file") + set(DOXYFILE "${CMAKE_CURRENT_BINARY_DIR}/Doxyfile") + include(FindPackageHandleStandardArgs) + find_package_handle_standard_args(DOXYFILE_IN DEFAULT_MSG "DOXYFILE_IN") +endif() + +if(DOXYGEN_FOUND AND DOXYFILE_IN_FOUND) + usedoxygen_set_default(DOXYFILE_OUTPUT_DIR "${CMAKE_CURRENT_BINARY_DIR}/doc" + PATH "Doxygen output directory") + usedoxygen_set_default(DOXYFILE_HTML_DIR "html" + STRING "Doxygen HTML output directory") + usedoxygen_set_default(DOXYFILE_SOURCE_DIR "${CMAKE_CURRENT_SOURCE_DIR}" + PATH "Input files source directory") + usedoxygen_set_default(DOXYFILE_EXTRA_SOURCE_DIRS "" + STRING "Additional source files/directories separated by space") + set(DOXYFILE_SOURE_DIRS "\"${DOXYFILE_SOURCE_DIR}\" ${DOXYFILE_EXTRA_SOURCES}") + + usedoxygen_set_default(DOXYFILE_LATEX YES BOOL "Generate LaTeX API documentation" OFF) + usedoxygen_set_default(DOXYFILE_LATEX_DIR "latex" STRING "LaTex output directory") + + mark_as_advanced(DOXYFILE_OUTPUT_DIR DOXYFILE_HTML_DIR DOXYFILE_LATEX_DIR + DOXYFILE_SOURCE_DIR DOXYFILE_EXTRA_SOURCE_DIRS DOXYFILE_IN) + + + set_property(DIRECTORY + APPEND PROPERTY + ADDITIONAL_MAKE_CLEAN_FILES + "${DOXYFILE_OUTPUT_DIR}/${DOXYFILE_HTML_DIR}") + + add_custom_target(doxygen + COMMAND "${DOXYGEN_EXECUTABLE}" + "${DOXYFILE}" + COMMENT "Writing documentation to ${DOXYFILE_OUTPUT_DIR}..." + WORKING_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}") + + ## LaTeX + set(DOXYFILE_PDFLATEX "NO") + set(DOXYFILE_DOT "NO") + + set_property(DIRECTORY APPEND PROPERTY + ADDITIONAL_MAKE_CLEAN_FILES + "${DOXYFILE_OUTPUT_DIR}/${DOXYFILE_LATEX_DIR}") + + if(DOXYFILE_LATEX STREQUAL "ON") + set(DOXYFILE_GENERATE_LATEX "YES") + find_package(LATEX) + find_program(DOXYFILE_MAKE make) + mark_as_advanced(DOXYFILE_MAKE) + if(LATEX_COMPILER AND MAKEINDEX_COMPILER AND DOXYFILE_MAKE) + if(PDFLATEX_COMPILER) + set(DOXYFILE_PDFLATEX "YES") + endif() + if(DOXYGEN_DOT_EXECUTABLE) + set(DOXYFILE_DOT "YES") + endif() + + add_custom_command(TARGET doxygen + POST_BUILD + COMMAND "${DOXYFILE_MAKE}" + COMMENT "Running LaTeX for Doxygen documentation in ${DOXYFILE_OUTPUT_DIR}/${DOXYFILE_LATEX_DIR}..." + WORKING_DIRECTORY "${DOXYFILE_OUTPUT_DIR}/${DOXYFILE_LATEX_DIR}") + else() + set(DOXYGEN_LATEX "NO") + endif() + else() + set(DOXYFILE_GENERATE_LATEX "NO") + endif() + + + configure_file("${DOXYFILE_IN}" "${DOXYFILE}" @ONLY) + + get_target_property(DOC_TARGET doc TYPE) + if(NOT DOC_TARGET) + add_custom_target(doc) + endif() + + add_dependencies(doc doxygen) +endif() diff -Nru fcitx-4.0.1/CMakeLists.txt fcitx-4.1.1/CMakeLists.txt --- fcitx-4.0.1/CMakeLists.txt 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/CMakeLists.txt 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,152 @@ +cmake_minimum_required (VERSION 2.6) + +project(fcitx) + +set(version 4.1.1) + +set(CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake) + +option(ENABLE_CAIRO "Enable Cairo" ON) +option(ENABLE_DBUS "Enable DBus Support" ON) +option(ENABLE_PANGO "Enable Pango Support" ON) +option(ENABLE_DEBUG "Enable Debug" OFF) +option(ENABLE_TABLE "Enable Table IM" ON) +option(ENABLE_GTK2_IM_MODULE "Enable GTK2 IM Module" ON) +option(ENABLE_GTK3_IM_MODULE "Enable GTK3 IM Module" OFF) +option(ENABLE_QT_IM_MODULE "Enable Qt IM Module" OFF) +option(ENABLE_OPENCC "Enable OpenCC for Chinese Transform" ON) +option(ENABLE_STATIC "Build Static Library" OFF) +option(ENABLE_TEST "Test build" OFF) + +# uninstall target +configure_file( + "${CMAKE_CURRENT_SOURCE_DIR}/cmake/cmake_uninstall.cmake.in" + "${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake" + IMMEDIATE @ONLY) + +add_custom_target(uninstall + COMMAND ${CMAKE_COMMAND} -P ${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake) + +include(CheckIncludeFiles) +include(CheckFunctionExists) +include(FindPkgConfig) +include(UseDoxygen OPTIONAL) +include(FcitxMacro) + +check_include_files(unistd.h HAVE_UNISTD_H) +check_include_files(malloc.h HAVE_MALLOC_H) +check_include_files(stdbool.h HAVE_STDBOOL_H) +check_function_exists(asprintf HAVE_ASPRINTF) + +FIND_PACKAGE(Gettext REQUIRED) +FIND_PACKAGE(Libintl REQUIRED) +FIND_PACKAGE(Libiconv REQUIRED) +FIND_PACKAGE(Pthread REQUIRED) +FIND_PACKAGE(Libexecinfo REQUIRED) +FIND_PACKAGE(DL REQUIRED) +FIND_PROGRAM(WGET wget) +FIND_PROGRAM(TAR tar) + +FIND_PACKAGE(X11 REQUIRED) + +if (ENABLE_TEST) + ENABLE_TESTING() +endif (ENABLE_TEST) + +set(_ENABLE_CAIRO 0) +set(_ENABLE_PANGO 0) +if (ENABLE_CAIRO) + PKG_CHECK_MODULES(CAIRO_XLIB REQUIRED "cairo-xlib >= 1.0" ) + if (CAIRO_XLIB_FOUND) + set(_ENABLE_CAIRO 1) + endif (CAIRO_XLIB_FOUND) +endif (ENABLE_CAIRO) + +set(_ENABLE_PANGO 0) +if (_ENABLE_CAIRO) + if (ENABLE_PANGO) + PKG_CHECK_MODULES(PANGOCAIRO "pangocairo >= 1.0" ) + if (PANGOCAIRO_FOUND) + set(_ENABLE_PANGO 1) + endif (PANGOCAIRO_FOUND) + endif (ENABLE_PANGO) + if (NOT _ENABLE_PANGO) + PKG_CHECK_MODULES(FONTCONFIG REQUIRED "fontconfig") + endif (NOT _ENABLE_PANGO) +endif(_ENABLE_CAIRO) + +set(_ENABLE_DBUS 0) +if (ENABLE_DBUS) + PKG_CHECK_MODULES(DBUS "dbus-1 >= 1.1.0" ) + if (DBUS_FOUND) + set(_ENABLE_DBUS 1) + endif (DBUS_FOUND) +endif (ENABLE_DBUS) + +set(_ENABLE_OPENCC 0) +if (ENABLE_OPENCC) + PKG_CHECK_MODULES(OPENCC "opencc >= 0.1.1" ) + if (OPENCC_FOUND) + set(_ENABLE_OPENCC 1) + endif (OPENCC_FOUND) +endif (ENABLE_OPENCC) + +if(ENABLE_DEBUG) + set(_DEBUG) +endif(ENABLE_DEBUG) + +set(package fcitx) +set(prefix ${CMAKE_INSTALL_PREFIX}) +set(exec_prefix ${CMAKE_INSTALL_PREFIX}) +set(bindir ${exec_prefix}/bin) + +if(NOT DEFINED LIB_INSTALL_DIR) + set(LIB_INSTALL_DIR ${exec_prefix}/lib) +endif() + +set(libdir ${LIB_INSTALL_DIR}) +set(addondir ${libdir}/${package} ) +set(pkgdatadir ${prefix}/share/${package}) +set(configdescdir ${pkgdatadir}/configdesc) +set(addonconfigdir ${pkgdatadir}/addon) +set(localedir ${CMAKE_INSTALL_PREFIX}/share/locale) +set(includedir ${CMAKE_INSTALL_PREFIX}/include) + +list(FIND CMAKE_PLATFORM_IMPLICIT_LINK_DIRECTORIES "${LIB_INSTALL_DIR}" isSystemDir) +if("${isSystemDir}" STREQUAL "-1") + set(CMAKE_SKIP_BUILD_RPATH FALSE) + set(CMAKE_BUILD_WITH_INSTALL_RPATH FALSE) + set(CMAKE_INSTALL_RPATH "${LIB_INSTALL_DIR}") + set(CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE) +endif("${isSystemDir}" STREQUAL "-1") + +# For FcitxMacro +set(FCITX4_ADDON_INSTALL_DIR ${addondir}) +set(FCITX4_CONFIGDESC_INSTALL_DIR ${configdescdir}) +set(FCITX4_ADDON_CONFIG_INSTALL_DIR ${addonconfigdir}) +set(FCITX4_PACKAGE_NAME ${package}) + +set(CMAKE_C_FLAGS "-Wall -Wextra -Wno-sign-compare -Wno-unused-parameter -fvisibility=hidden ${CMAKE_C_FLAGS}") +set(CMAKE_CXX_FLAGS "-Wall -Wextra -Wno-sign-compare -Wno-unused-parameter -fvisibility=hidden ${CMAKE_CXX_FLAGS}") +set(CMAKE_SHARED_LINKER_FLAGS "-Wl,--as-needed ${CMAKE_SHARED_LINKER_FLAGS}") +set(CMAKE_MODULE_LINKER_FLAGS "-Wl,--as-needed ${CMAKE_MODULE_LINKER_FLAGS}") +add_definitions("-D_GNU_SOURCE -DFCITX_HAVE_CONFIG_H") + +configure_file(${PROJECT_SOURCE_DIR}/config.h.in ${PROJECT_BINARY_DIR}/config.h) +configure_file("${PROJECT_SOURCE_DIR}/cmake/FcitxConfigVersion.cmake.in" + "${PROJECT_BINARY_DIR}/cmake/FcitxConfigVersion.cmake" +) + +include_directories(${PROJECT_BINARY_DIR}) + +add_subdirectory(src) +add_subdirectory(doc) +add_subdirectory(skin) +add_subdirectory(tools) +add_subdirectory(data) +add_subdirectory(po) +add_subdirectory(cmake) + +if (ENABLE_TEST) + add_subdirectory(test) +endif (ENABLE_TEST) diff -Nru fcitx-4.0.1/config.guess fcitx-4.1.1/config.guess --- fcitx-4.0.1/config.guess 2010-11-28 11:55:34.000000000 +0000 +++ fcitx-4.1.1/config.guess 1970-01-01 00:00:00.000000000 +0000 @@ -1,1501 +0,0 @@ -#! /bin/sh -# Attempt to guess a canonical system name. -# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, -# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 -# Free Software Foundation, Inc. - -timestamp='2009-11-20' - -# This file is free software; you can redistribute it and/or modify it -# under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, but -# WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA -# 02110-1301, USA. -# -# As a special exception to the GNU General Public License, if you -# distribute this file as part of a program that contains a -# configuration script generated by Autoconf, you may include it under -# the same distribution terms that you use for the rest of that program. - - -# Originally written by Per Bothner. Please send patches (context -# diff format) to and include a ChangeLog -# entry. -# -# This script attempts to guess a canonical system name similar to -# config.sub. If it succeeds, it prints the system name on stdout, and -# exits with 0. Otherwise, it exits with 1. -# -# You can get the latest version of this script from: -# http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD - -me=`echo "$0" | sed -e 's,.*/,,'` - -usage="\ -Usage: $0 [OPTION] - -Output the configuration name of the system \`$me' is run on. - -Operation modes: - -h, --help print this help, then exit - -t, --time-stamp print date of last modification, then exit - -v, --version print version number, then exit - -Report bugs and patches to ." - -version="\ -GNU config.guess ($timestamp) - -Originally written by Per Bothner. -Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, -2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. - -This is free software; see the source for copying conditions. There is NO -warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." - -help=" -Try \`$me --help' for more information." - -# Parse command line -while test $# -gt 0 ; do - case $1 in - --time-stamp | --time* | -t ) - echo "$timestamp" ; exit ;; - --version | -v ) - echo "$version" ; exit ;; - --help | --h* | -h ) - echo "$usage"; exit ;; - -- ) # Stop option processing - shift; break ;; - - ) # Use stdin as input. - break ;; - -* ) - echo "$me: invalid option $1$help" >&2 - exit 1 ;; - * ) - break ;; - esac -done - -if test $# != 0; then - echo "$me: too many arguments$help" >&2 - exit 1 -fi - -trap 'exit 1' 1 2 15 - -# CC_FOR_BUILD -- compiler used by this script. Note that the use of a -# compiler to aid in system detection is discouraged as it requires -# temporary files to be created and, as you can see below, it is a -# headache to deal with in a portable fashion. - -# Historically, `CC_FOR_BUILD' used to be named `HOST_CC'. We still -# use `HOST_CC' if defined, but it is deprecated. - -# Portable tmp directory creation inspired by the Autoconf team. - -set_cc_for_build=' -trap "exitcode=\$?; (rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null) && exit \$exitcode" 0 ; -trap "rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null; exit 1" 1 2 13 15 ; -: ${TMPDIR=/tmp} ; - { tmp=`(umask 077 && mktemp -d "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } || - { test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir $tmp) ; } || - { tmp=$TMPDIR/cg-$$ && (umask 077 && mkdir $tmp) && echo "Warning: creating insecure temp directory" >&2 ; } || - { echo "$me: cannot create a temporary directory in $TMPDIR" >&2 ; exit 1 ; } ; -dummy=$tmp/dummy ; -tmpfiles="$dummy.c $dummy.o $dummy.rel $dummy" ; -case $CC_FOR_BUILD,$HOST_CC,$CC in - ,,) echo "int x;" > $dummy.c ; - for c in cc gcc c89 c99 ; do - if ($c -c -o $dummy.o $dummy.c) >/dev/null 2>&1 ; then - CC_FOR_BUILD="$c"; break ; - fi ; - done ; - if test x"$CC_FOR_BUILD" = x ; then - CC_FOR_BUILD=no_compiler_found ; - fi - ;; - ,,*) CC_FOR_BUILD=$CC ;; - ,*,*) CC_FOR_BUILD=$HOST_CC ;; -esac ; set_cc_for_build= ;' - -# This is needed to find uname on a Pyramid OSx when run in the BSD universe. -# (ghazi@noc.rutgers.edu 1994-08-24) -if (test -f /.attbin/uname) >/dev/null 2>&1 ; then - PATH=$PATH:/.attbin ; export PATH -fi - -UNAME_MACHINE=`(uname -m) 2>/dev/null` || UNAME_MACHINE=unknown -UNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEASE=unknown -UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown -UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown - -# Note: order is significant - the case branches are not exclusive. - -case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in - *:NetBSD:*:*) - # NetBSD (nbsd) targets should (where applicable) match one or - # more of the tupples: *-*-netbsdelf*, *-*-netbsdaout*, - # *-*-netbsdecoff* and *-*-netbsd*. For targets that recently - # switched to ELF, *-*-netbsd* would select the old - # object file format. This provides both forward - # compatibility and a consistent mechanism for selecting the - # object file format. - # - # Note: NetBSD doesn't particularly care about the vendor - # portion of the name. We always set it to "unknown". - sysctl="sysctl -n hw.machine_arch" - UNAME_MACHINE_ARCH=`(/sbin/$sysctl 2>/dev/null || \ - /usr/sbin/$sysctl 2>/dev/null || echo unknown)` - case "${UNAME_MACHINE_ARCH}" in - armeb) machine=armeb-unknown ;; - arm*) machine=arm-unknown ;; - sh3el) machine=shl-unknown ;; - sh3eb) machine=sh-unknown ;; - sh5el) machine=sh5le-unknown ;; - *) machine=${UNAME_MACHINE_ARCH}-unknown ;; - esac - # The Operating System including object format, if it has switched - # to ELF recently, or will in the future. - case "${UNAME_MACHINE_ARCH}" in - arm*|i386|m68k|ns32k|sh3*|sparc|vax) - eval $set_cc_for_build - if echo __ELF__ | $CC_FOR_BUILD -E - 2>/dev/null \ - | grep -q __ELF__ - then - # Once all utilities can be ECOFF (netbsdecoff) or a.out (netbsdaout). - # Return netbsd for either. FIX? - os=netbsd - else - os=netbsdelf - fi - ;; - *) - os=netbsd - ;; - esac - # The OS release - # Debian GNU/NetBSD machines have a different userland, and - # thus, need a distinct triplet. However, they do not need - # kernel version information, so it can be replaced with a - # suitable tag, in the style of linux-gnu. - case "${UNAME_VERSION}" in - Debian*) - release='-gnu' - ;; - *) - release=`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/\./'` - ;; - esac - # Since CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM: - # contains redundant information, the shorter form: - # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used. - echo "${machine}-${os}${release}" - exit ;; - *:OpenBSD:*:*) - UNAME_MACHINE_ARCH=`arch | sed 's/OpenBSD.//'` - echo ${UNAME_MACHINE_ARCH}-unknown-openbsd${UNAME_RELEASE} - exit ;; - *:ekkoBSD:*:*) - echo ${UNAME_MACHINE}-unknown-ekkobsd${UNAME_RELEASE} - exit ;; - *:SolidBSD:*:*) - echo ${UNAME_MACHINE}-unknown-solidbsd${UNAME_RELEASE} - exit ;; - macppc:MirBSD:*:*) - echo powerpc-unknown-mirbsd${UNAME_RELEASE} - exit ;; - *:MirBSD:*:*) - echo ${UNAME_MACHINE}-unknown-mirbsd${UNAME_RELEASE} - exit ;; - alpha:OSF1:*:*) - case $UNAME_RELEASE in - *4.0) - UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $3}'` - ;; - *5.*) - UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $4}'` - ;; - esac - # According to Compaq, /usr/sbin/psrinfo has been available on - # OSF/1 and Tru64 systems produced since 1995. I hope that - # covers most systems running today. This code pipes the CPU - # types through head -n 1, so we only detect the type of CPU 0. - ALPHA_CPU_TYPE=`/usr/sbin/psrinfo -v | sed -n -e 's/^ The alpha \(.*\) processor.*$/\1/p' | head -n 1` - case "$ALPHA_CPU_TYPE" in - "EV4 (21064)") - UNAME_MACHINE="alpha" ;; - "EV4.5 (21064)") - UNAME_MACHINE="alpha" ;; - "LCA4 (21066/21068)") - UNAME_MACHINE="alpha" ;; - "EV5 (21164)") - UNAME_MACHINE="alphaev5" ;; - "EV5.6 (21164A)") - UNAME_MACHINE="alphaev56" ;; - "EV5.6 (21164PC)") - UNAME_MACHINE="alphapca56" ;; - "EV5.7 (21164PC)") - UNAME_MACHINE="alphapca57" ;; - "EV6 (21264)") - UNAME_MACHINE="alphaev6" ;; - "EV6.7 (21264A)") - UNAME_MACHINE="alphaev67" ;; - "EV6.8CB (21264C)") - UNAME_MACHINE="alphaev68" ;; - "EV6.8AL (21264B)") - UNAME_MACHINE="alphaev68" ;; - "EV6.8CX (21264D)") - UNAME_MACHINE="alphaev68" ;; - "EV6.9A (21264/EV69A)") - UNAME_MACHINE="alphaev69" ;; - "EV7 (21364)") - UNAME_MACHINE="alphaev7" ;; - "EV7.9 (21364A)") - UNAME_MACHINE="alphaev79" ;; - esac - # A Pn.n version is a patched version. - # A Vn.n version is a released version. - # A Tn.n version is a released field test version. - # A Xn.n version is an unreleased experimental baselevel. - # 1.2 uses "1.2" for uname -r. - echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[PVTX]//' | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` - exit ;; - Alpha\ *:Windows_NT*:*) - # How do we know it's Interix rather than the generic POSIX subsystem? - # Should we change UNAME_MACHINE based on the output of uname instead - # of the specific Alpha model? - echo alpha-pc-interix - exit ;; - 21064:Windows_NT:50:3) - echo alpha-dec-winnt3.5 - exit ;; - Amiga*:UNIX_System_V:4.0:*) - echo m68k-unknown-sysv4 - exit ;; - *:[Aa]miga[Oo][Ss]:*:*) - echo ${UNAME_MACHINE}-unknown-amigaos - exit ;; - *:[Mm]orph[Oo][Ss]:*:*) - echo ${UNAME_MACHINE}-unknown-morphos - exit ;; - *:OS/390:*:*) - echo i370-ibm-openedition - exit ;; - *:z/VM:*:*) - echo s390-ibm-zvmoe - exit ;; - *:OS400:*:*) - echo powerpc-ibm-os400 - exit ;; - arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*) - echo arm-acorn-riscix${UNAME_RELEASE} - exit ;; - arm:riscos:*:*|arm:RISCOS:*:*) - echo arm-unknown-riscos - exit ;; - SR2?01:HI-UX/MPP:*:* | SR8000:HI-UX/MPP:*:*) - echo hppa1.1-hitachi-hiuxmpp - exit ;; - Pyramid*:OSx*:*:* | MIS*:OSx*:*:* | MIS*:SMP_DC-OSx*:*:*) - # akee@wpdis03.wpafb.af.mil (Earle F. Ake) contributed MIS and NILE. - if test "`(/bin/universe) 2>/dev/null`" = att ; then - echo pyramid-pyramid-sysv3 - else - echo pyramid-pyramid-bsd - fi - exit ;; - NILE*:*:*:dcosx) - echo pyramid-pyramid-svr4 - exit ;; - DRS?6000:unix:4.0:6*) - echo sparc-icl-nx6 - exit ;; - DRS?6000:UNIX_SV:4.2*:7* | DRS?6000:isis:4.2*:7*) - case `/usr/bin/uname -p` in - sparc) echo sparc-icl-nx7; exit ;; - esac ;; - s390x:SunOS:*:*) - echo ${UNAME_MACHINE}-ibm-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` - exit ;; - sun4H:SunOS:5.*:*) - echo sparc-hal-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` - exit ;; - sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*) - echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` - exit ;; - i86pc:AuroraUX:5.*:* | i86xen:AuroraUX:5.*:*) - echo i386-pc-auroraux${UNAME_RELEASE} - exit ;; - i86pc:SunOS:5.*:* | i86xen:SunOS:5.*:*) - eval $set_cc_for_build - SUN_ARCH="i386" - # If there is a compiler, see if it is configured for 64-bit objects. - # Note that the Sun cc does not turn __LP64__ into 1 like gcc does. - # This test works for both compilers. - if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then - if (echo '#ifdef __amd64'; echo IS_64BIT_ARCH; echo '#endif') | \ - (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \ - grep IS_64BIT_ARCH >/dev/null - then - SUN_ARCH="x86_64" - fi - fi - echo ${SUN_ARCH}-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` - exit ;; - sun4*:SunOS:6*:*) - # According to config.sub, this is the proper way to canonicalize - # SunOS6. Hard to guess exactly what SunOS6 will be like, but - # it's likely to be more like Solaris than SunOS4. - echo sparc-sun-solaris3`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` - exit ;; - sun4*:SunOS:*:*) - case "`/usr/bin/arch -k`" in - Series*|S4*) - UNAME_RELEASE=`uname -v` - ;; - esac - # Japanese Language versions have a version number like `4.1.3-JL'. - echo sparc-sun-sunos`echo ${UNAME_RELEASE}|sed -e 's/-/_/'` - exit ;; - sun3*:SunOS:*:*) - echo m68k-sun-sunos${UNAME_RELEASE} - exit ;; - sun*:*:4.2BSD:*) - UNAME_RELEASE=`(sed 1q /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null` - test "x${UNAME_RELEASE}" = "x" && UNAME_RELEASE=3 - case "`/bin/arch`" in - sun3) - echo m68k-sun-sunos${UNAME_RELEASE} - ;; - sun4) - echo sparc-sun-sunos${UNAME_RELEASE} - ;; - esac - exit ;; - aushp:SunOS:*:*) - echo sparc-auspex-sunos${UNAME_RELEASE} - exit ;; - # The situation for MiNT is a little confusing. The machine name - # can be virtually everything (everything which is not - # "atarist" or "atariste" at least should have a processor - # > m68000). The system name ranges from "MiNT" over "FreeMiNT" - # to the lowercase version "mint" (or "freemint"). Finally - # the system name "TOS" denotes a system which is actually not - # MiNT. But MiNT is downward compatible to TOS, so this should - # be no problem. - atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*) - echo m68k-atari-mint${UNAME_RELEASE} - exit ;; - atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*) - echo m68k-atari-mint${UNAME_RELEASE} - exit ;; - *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*) - echo m68k-atari-mint${UNAME_RELEASE} - exit ;; - milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*) - echo m68k-milan-mint${UNAME_RELEASE} - exit ;; - hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*) - echo m68k-hades-mint${UNAME_RELEASE} - exit ;; - *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*) - echo m68k-unknown-mint${UNAME_RELEASE} - exit ;; - m68k:machten:*:*) - echo m68k-apple-machten${UNAME_RELEASE} - exit ;; - powerpc:machten:*:*) - echo powerpc-apple-machten${UNAME_RELEASE} - exit ;; - RISC*:Mach:*:*) - echo mips-dec-mach_bsd4.3 - exit ;; - RISC*:ULTRIX:*:*) - echo mips-dec-ultrix${UNAME_RELEASE} - exit ;; - VAX*:ULTRIX*:*:*) - echo vax-dec-ultrix${UNAME_RELEASE} - exit ;; - 2020:CLIX:*:* | 2430:CLIX:*:*) - echo clipper-intergraph-clix${UNAME_RELEASE} - exit ;; - mips:*:*:UMIPS | mips:*:*:RISCos) - eval $set_cc_for_build - sed 's/^ //' << EOF >$dummy.c -#ifdef __cplusplus -#include /* for printf() prototype */ - int main (int argc, char *argv[]) { -#else - int main (argc, argv) int argc; char *argv[]; { -#endif - #if defined (host_mips) && defined (MIPSEB) - #if defined (SYSTYPE_SYSV) - printf ("mips-mips-riscos%ssysv\n", argv[1]); exit (0); - #endif - #if defined (SYSTYPE_SVR4) - printf ("mips-mips-riscos%ssvr4\n", argv[1]); exit (0); - #endif - #if defined (SYSTYPE_BSD43) || defined(SYSTYPE_BSD) - printf ("mips-mips-riscos%sbsd\n", argv[1]); exit (0); - #endif - #endif - exit (-1); - } -EOF - $CC_FOR_BUILD -o $dummy $dummy.c && - dummyarg=`echo "${UNAME_RELEASE}" | sed -n 's/\([0-9]*\).*/\1/p'` && - SYSTEM_NAME=`$dummy $dummyarg` && - { echo "$SYSTEM_NAME"; exit; } - echo mips-mips-riscos${UNAME_RELEASE} - exit ;; - Motorola:PowerMAX_OS:*:*) - echo powerpc-motorola-powermax - exit ;; - Motorola:*:4.3:PL8-*) - echo powerpc-harris-powermax - exit ;; - Night_Hawk:*:*:PowerMAX_OS | Synergy:PowerMAX_OS:*:*) - echo powerpc-harris-powermax - exit ;; - Night_Hawk:Power_UNIX:*:*) - echo powerpc-harris-powerunix - exit ;; - m88k:CX/UX:7*:*) - echo m88k-harris-cxux7 - exit ;; - m88k:*:4*:R4*) - echo m88k-motorola-sysv4 - exit ;; - m88k:*:3*:R3*) - echo m88k-motorola-sysv3 - exit ;; - AViiON:dgux:*:*) - # DG/UX returns AViiON for all architectures - UNAME_PROCESSOR=`/usr/bin/uname -p` - if [ $UNAME_PROCESSOR = mc88100 ] || [ $UNAME_PROCESSOR = mc88110 ] - then - if [ ${TARGET_BINARY_INTERFACE}x = m88kdguxelfx ] || \ - [ ${TARGET_BINARY_INTERFACE}x = x ] - then - echo m88k-dg-dgux${UNAME_RELEASE} - else - echo m88k-dg-dguxbcs${UNAME_RELEASE} - fi - else - echo i586-dg-dgux${UNAME_RELEASE} - fi - exit ;; - M88*:DolphinOS:*:*) # DolphinOS (SVR3) - echo m88k-dolphin-sysv3 - exit ;; - M88*:*:R3*:*) - # Delta 88k system running SVR3 - echo m88k-motorola-sysv3 - exit ;; - XD88*:*:*:*) # Tektronix XD88 system running UTekV (SVR3) - echo m88k-tektronix-sysv3 - exit ;; - Tek43[0-9][0-9]:UTek:*:*) # Tektronix 4300 system running UTek (BSD) - echo m68k-tektronix-bsd - exit ;; - *:IRIX*:*:*) - echo mips-sgi-irix`echo ${UNAME_RELEASE}|sed -e 's/-/_/g'` - exit ;; - ????????:AIX?:[12].1:2) # AIX 2.2.1 or AIX 2.1.1 is RT/PC AIX. - echo romp-ibm-aix # uname -m gives an 8 hex-code CPU id - exit ;; # Note that: echo "'`uname -s`'" gives 'AIX ' - i*86:AIX:*:*) - echo i386-ibm-aix - exit ;; - ia64:AIX:*:*) - if [ -x /usr/bin/oslevel ] ; then - IBM_REV=`/usr/bin/oslevel` - else - IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} - fi - echo ${UNAME_MACHINE}-ibm-aix${IBM_REV} - exit ;; - *:AIX:2:3) - if grep bos325 /usr/include/stdio.h >/dev/null 2>&1; then - eval $set_cc_for_build - sed 's/^ //' << EOF >$dummy.c - #include - - main() - { - if (!__power_pc()) - exit(1); - puts("powerpc-ibm-aix3.2.5"); - exit(0); - } -EOF - if $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` - then - echo "$SYSTEM_NAME" - else - echo rs6000-ibm-aix3.2.5 - fi - elif grep bos324 /usr/include/stdio.h >/dev/null 2>&1; then - echo rs6000-ibm-aix3.2.4 - else - echo rs6000-ibm-aix3.2 - fi - exit ;; - *:AIX:*:[456]) - IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'` - if /usr/sbin/lsattr -El ${IBM_CPU_ID} | grep ' POWER' >/dev/null 2>&1; then - IBM_ARCH=rs6000 - else - IBM_ARCH=powerpc - fi - if [ -x /usr/bin/oslevel ] ; then - IBM_REV=`/usr/bin/oslevel` - else - IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} - fi - echo ${IBM_ARCH}-ibm-aix${IBM_REV} - exit ;; - *:AIX:*:*) - echo rs6000-ibm-aix - exit ;; - ibmrt:4.4BSD:*|romp-ibm:BSD:*) - echo romp-ibm-bsd4.4 - exit ;; - ibmrt:*BSD:*|romp-ibm:BSD:*) # covers RT/PC BSD and - echo romp-ibm-bsd${UNAME_RELEASE} # 4.3 with uname added to - exit ;; # report: romp-ibm BSD 4.3 - *:BOSX:*:*) - echo rs6000-bull-bosx - exit ;; - DPX/2?00:B.O.S.:*:*) - echo m68k-bull-sysv3 - exit ;; - 9000/[34]??:4.3bsd:1.*:*) - echo m68k-hp-bsd - exit ;; - hp300:4.4BSD:*:* | 9000/[34]??:4.3bsd:2.*:*) - echo m68k-hp-bsd4.4 - exit ;; - 9000/[34678]??:HP-UX:*:*) - HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` - case "${UNAME_MACHINE}" in - 9000/31? ) HP_ARCH=m68000 ;; - 9000/[34]?? ) HP_ARCH=m68k ;; - 9000/[678][0-9][0-9]) - if [ -x /usr/bin/getconf ]; then - sc_cpu_version=`/usr/bin/getconf SC_CPU_VERSION 2>/dev/null` - sc_kernel_bits=`/usr/bin/getconf SC_KERNEL_BITS 2>/dev/null` - case "${sc_cpu_version}" in - 523) HP_ARCH="hppa1.0" ;; # CPU_PA_RISC1_0 - 528) HP_ARCH="hppa1.1" ;; # CPU_PA_RISC1_1 - 532) # CPU_PA_RISC2_0 - case "${sc_kernel_bits}" in - 32) HP_ARCH="hppa2.0n" ;; - 64) HP_ARCH="hppa2.0w" ;; - '') HP_ARCH="hppa2.0" ;; # HP-UX 10.20 - esac ;; - esac - fi - if [ "${HP_ARCH}" = "" ]; then - eval $set_cc_for_build - sed 's/^ //' << EOF >$dummy.c - - #define _HPUX_SOURCE - #include - #include - - int main () - { - #if defined(_SC_KERNEL_BITS) - long bits = sysconf(_SC_KERNEL_BITS); - #endif - long cpu = sysconf (_SC_CPU_VERSION); - - switch (cpu) - { - case CPU_PA_RISC1_0: puts ("hppa1.0"); break; - case CPU_PA_RISC1_1: puts ("hppa1.1"); break; - case CPU_PA_RISC2_0: - #if defined(_SC_KERNEL_BITS) - switch (bits) - { - case 64: puts ("hppa2.0w"); break; - case 32: puts ("hppa2.0n"); break; - default: puts ("hppa2.0"); break; - } break; - #else /* !defined(_SC_KERNEL_BITS) */ - puts ("hppa2.0"); break; - #endif - default: puts ("hppa1.0"); break; - } - exit (0); - } -EOF - (CCOPTS= $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null) && HP_ARCH=`$dummy` - test -z "$HP_ARCH" && HP_ARCH=hppa - fi ;; - esac - if [ ${HP_ARCH} = "hppa2.0w" ] - then - eval $set_cc_for_build - - # hppa2.0w-hp-hpux* has a 64-bit kernel and a compiler generating - # 32-bit code. hppa64-hp-hpux* has the same kernel and a compiler - # generating 64-bit code. GNU and HP use different nomenclature: - # - # $ CC_FOR_BUILD=cc ./config.guess - # => hppa2.0w-hp-hpux11.23 - # $ CC_FOR_BUILD="cc +DA2.0w" ./config.guess - # => hppa64-hp-hpux11.23 - - if echo __LP64__ | (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | - grep -q __LP64__ - then - HP_ARCH="hppa2.0w" - else - HP_ARCH="hppa64" - fi - fi - echo ${HP_ARCH}-hp-hpux${HPUX_REV} - exit ;; - ia64:HP-UX:*:*) - HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` - echo ia64-hp-hpux${HPUX_REV} - exit ;; - 3050*:HI-UX:*:*) - eval $set_cc_for_build - sed 's/^ //' << EOF >$dummy.c - #include - int - main () - { - long cpu = sysconf (_SC_CPU_VERSION); - /* The order matters, because CPU_IS_HP_MC68K erroneously returns - true for CPU_PA_RISC1_0. CPU_IS_PA_RISC returns correct - results, however. */ - if (CPU_IS_PA_RISC (cpu)) - { - switch (cpu) - { - case CPU_PA_RISC1_0: puts ("hppa1.0-hitachi-hiuxwe2"); break; - case CPU_PA_RISC1_1: puts ("hppa1.1-hitachi-hiuxwe2"); break; - case CPU_PA_RISC2_0: puts ("hppa2.0-hitachi-hiuxwe2"); break; - default: puts ("hppa-hitachi-hiuxwe2"); break; - } - } - else if (CPU_IS_HP_MC68K (cpu)) - puts ("m68k-hitachi-hiuxwe2"); - else puts ("unknown-hitachi-hiuxwe2"); - exit (0); - } -EOF - $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` && - { echo "$SYSTEM_NAME"; exit; } - echo unknown-hitachi-hiuxwe2 - exit ;; - 9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:* ) - echo hppa1.1-hp-bsd - exit ;; - 9000/8??:4.3bsd:*:*) - echo hppa1.0-hp-bsd - exit ;; - *9??*:MPE/iX:*:* | *3000*:MPE/iX:*:*) - echo hppa1.0-hp-mpeix - exit ;; - hp7??:OSF1:*:* | hp8?[79]:OSF1:*:* ) - echo hppa1.1-hp-osf - exit ;; - hp8??:OSF1:*:*) - echo hppa1.0-hp-osf - exit ;; - i*86:OSF1:*:*) - if [ -x /usr/sbin/sysversion ] ; then - echo ${UNAME_MACHINE}-unknown-osf1mk - else - echo ${UNAME_MACHINE}-unknown-osf1 - fi - exit ;; - parisc*:Lites*:*:*) - echo hppa1.1-hp-lites - exit ;; - C1*:ConvexOS:*:* | convex:ConvexOS:C1*:*) - echo c1-convex-bsd - exit ;; - C2*:ConvexOS:*:* | convex:ConvexOS:C2*:*) - if getsysinfo -f scalar_acc - then echo c32-convex-bsd - else echo c2-convex-bsd - fi - exit ;; - C34*:ConvexOS:*:* | convex:ConvexOS:C34*:*) - echo c34-convex-bsd - exit ;; - C38*:ConvexOS:*:* | convex:ConvexOS:C38*:*) - echo c38-convex-bsd - exit ;; - C4*:ConvexOS:*:* | convex:ConvexOS:C4*:*) - echo c4-convex-bsd - exit ;; - CRAY*Y-MP:*:*:*) - echo ymp-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' - exit ;; - CRAY*[A-Z]90:*:*:*) - echo ${UNAME_MACHINE}-cray-unicos${UNAME_RELEASE} \ - | sed -e 's/CRAY.*\([A-Z]90\)/\1/' \ - -e y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/ \ - -e 's/\.[^.]*$/.X/' - exit ;; - CRAY*TS:*:*:*) - echo t90-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' - exit ;; - CRAY*T3E:*:*:*) - echo alphaev5-cray-unicosmk${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' - exit ;; - CRAY*SV1:*:*:*) - echo sv1-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' - exit ;; - *:UNICOS/mp:*:*) - echo craynv-cray-unicosmp${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' - exit ;; - F30[01]:UNIX_System_V:*:* | F700:UNIX_System_V:*:*) - FUJITSU_PROC=`uname -m | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` - FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` - FUJITSU_REL=`echo ${UNAME_RELEASE} | sed -e 's/ /_/'` - echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" - exit ;; - 5000:UNIX_System_V:4.*:*) - FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` - FUJITSU_REL=`echo ${UNAME_RELEASE} | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/ /_/'` - echo "sparc-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" - exit ;; - i*86:BSD/386:*:* | i*86:BSD/OS:*:* | *:Ascend\ Embedded/OS:*:*) - echo ${UNAME_MACHINE}-pc-bsdi${UNAME_RELEASE} - exit ;; - sparc*:BSD/OS:*:*) - echo sparc-unknown-bsdi${UNAME_RELEASE} - exit ;; - *:BSD/OS:*:*) - echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE} - exit ;; - *:FreeBSD:*:*) - case ${UNAME_MACHINE} in - pc98) - echo i386-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; - amd64) - echo x86_64-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; - *) - echo ${UNAME_MACHINE}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; - esac - exit ;; - i*:CYGWIN*:*) - echo ${UNAME_MACHINE}-pc-cygwin - exit ;; - *:MINGW*:*) - echo ${UNAME_MACHINE}-pc-mingw32 - exit ;; - i*:windows32*:*) - # uname -m includes "-pc" on this system. - echo ${UNAME_MACHINE}-mingw32 - exit ;; - i*:PW*:*) - echo ${UNAME_MACHINE}-pc-pw32 - exit ;; - *:Interix*:*) - case ${UNAME_MACHINE} in - x86) - echo i586-pc-interix${UNAME_RELEASE} - exit ;; - authenticamd | genuineintel | EM64T) - echo x86_64-unknown-interix${UNAME_RELEASE} - exit ;; - IA64) - echo ia64-unknown-interix${UNAME_RELEASE} - exit ;; - esac ;; - [345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*) - echo i${UNAME_MACHINE}-pc-mks - exit ;; - 8664:Windows_NT:*) - echo x86_64-pc-mks - exit ;; - i*:Windows_NT*:* | Pentium*:Windows_NT*:*) - # How do we know it's Interix rather than the generic POSIX subsystem? - # It also conflicts with pre-2.0 versions of AT&T UWIN. Should we - # UNAME_MACHINE based on the output of uname instead of i386? - echo i586-pc-interix - exit ;; - i*:UWIN*:*) - echo ${UNAME_MACHINE}-pc-uwin - exit ;; - amd64:CYGWIN*:*:* | x86_64:CYGWIN*:*:*) - echo x86_64-unknown-cygwin - exit ;; - p*:CYGWIN*:*) - echo powerpcle-unknown-cygwin - exit ;; - prep*:SunOS:5.*:*) - echo powerpcle-unknown-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` - exit ;; - *:GNU:*:*) - # the GNU system - echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-gnu`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'` - exit ;; - *:GNU/*:*:*) - # other systems with GNU libc and userland - echo ${UNAME_MACHINE}-unknown-`echo ${UNAME_SYSTEM} | sed 's,^[^/]*/,,' | tr '[A-Z]' '[a-z]'``echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-gnu - exit ;; - i*86:Minix:*:*) - echo ${UNAME_MACHINE}-pc-minix - exit ;; - alpha:Linux:*:*) - case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in - EV5) UNAME_MACHINE=alphaev5 ;; - EV56) UNAME_MACHINE=alphaev56 ;; - PCA56) UNAME_MACHINE=alphapca56 ;; - PCA57) UNAME_MACHINE=alphapca56 ;; - EV6) UNAME_MACHINE=alphaev6 ;; - EV67) UNAME_MACHINE=alphaev67 ;; - EV68*) UNAME_MACHINE=alphaev68 ;; - esac - objdump --private-headers /bin/sh | grep -q ld.so.1 - if test "$?" = 0 ; then LIBC="libc1" ; else LIBC="" ; fi - echo ${UNAME_MACHINE}-unknown-linux-gnu${LIBC} - exit ;; - arm*:Linux:*:*) - eval $set_cc_for_build - if echo __ARM_EABI__ | $CC_FOR_BUILD -E - 2>/dev/null \ - | grep -q __ARM_EABI__ - then - echo ${UNAME_MACHINE}-unknown-linux-gnu - else - echo ${UNAME_MACHINE}-unknown-linux-gnueabi - fi - exit ;; - avr32*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-gnu - exit ;; - cris:Linux:*:*) - echo cris-axis-linux-gnu - exit ;; - crisv32:Linux:*:*) - echo crisv32-axis-linux-gnu - exit ;; - frv:Linux:*:*) - echo frv-unknown-linux-gnu - exit ;; - i*86:Linux:*:*) - LIBC=gnu - eval $set_cc_for_build - sed 's/^ //' << EOF >$dummy.c - #ifdef __dietlibc__ - LIBC=dietlibc - #endif -EOF - eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^LIBC'` - echo "${UNAME_MACHINE}-pc-linux-${LIBC}" - exit ;; - ia64:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-gnu - exit ;; - m32r*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-gnu - exit ;; - m68*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-gnu - exit ;; - mips:Linux:*:* | mips64:Linux:*:*) - eval $set_cc_for_build - sed 's/^ //' << EOF >$dummy.c - #undef CPU - #undef ${UNAME_MACHINE} - #undef ${UNAME_MACHINE}el - #if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL) - CPU=${UNAME_MACHINE}el - #else - #if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB) - CPU=${UNAME_MACHINE} - #else - CPU= - #endif - #endif -EOF - eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^CPU'` - test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; } - ;; - or32:Linux:*:*) - echo or32-unknown-linux-gnu - exit ;; - padre:Linux:*:*) - echo sparc-unknown-linux-gnu - exit ;; - parisc64:Linux:*:* | hppa64:Linux:*:*) - echo hppa64-unknown-linux-gnu - exit ;; - parisc:Linux:*:* | hppa:Linux:*:*) - # Look for CPU level - case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in - PA7*) echo hppa1.1-unknown-linux-gnu ;; - PA8*) echo hppa2.0-unknown-linux-gnu ;; - *) echo hppa-unknown-linux-gnu ;; - esac - exit ;; - ppc64:Linux:*:*) - echo powerpc64-unknown-linux-gnu - exit ;; - ppc:Linux:*:*) - echo powerpc-unknown-linux-gnu - exit ;; - s390:Linux:*:* | s390x:Linux:*:*) - echo ${UNAME_MACHINE}-ibm-linux - exit ;; - sh64*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-gnu - exit ;; - sh*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-gnu - exit ;; - sparc:Linux:*:* | sparc64:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-gnu - exit ;; - vax:Linux:*:*) - echo ${UNAME_MACHINE}-dec-linux-gnu - exit ;; - x86_64:Linux:*:*) - echo x86_64-unknown-linux-gnu - exit ;; - xtensa*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-gnu - exit ;; - i*86:DYNIX/ptx:4*:*) - # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there. - # earlier versions are messed up and put the nodename in both - # sysname and nodename. - echo i386-sequent-sysv4 - exit ;; - i*86:UNIX_SV:4.2MP:2.*) - # Unixware is an offshoot of SVR4, but it has its own version - # number series starting with 2... - # I am not positive that other SVR4 systems won't match this, - # I just have to hope. -- rms. - # Use sysv4.2uw... so that sysv4* matches it. - echo ${UNAME_MACHINE}-pc-sysv4.2uw${UNAME_VERSION} - exit ;; - i*86:OS/2:*:*) - # If we were able to find `uname', then EMX Unix compatibility - # is probably installed. - echo ${UNAME_MACHINE}-pc-os2-emx - exit ;; - i*86:XTS-300:*:STOP) - echo ${UNAME_MACHINE}-unknown-stop - exit ;; - i*86:atheos:*:*) - echo ${UNAME_MACHINE}-unknown-atheos - exit ;; - i*86:syllable:*:*) - echo ${UNAME_MACHINE}-pc-syllable - exit ;; - i*86:LynxOS:2.*:* | i*86:LynxOS:3.[01]*:* | i*86:LynxOS:4.[02]*:*) - echo i386-unknown-lynxos${UNAME_RELEASE} - exit ;; - i*86:*DOS:*:*) - echo ${UNAME_MACHINE}-pc-msdosdjgpp - exit ;; - i*86:*:4.*:* | i*86:SYSTEM_V:4.*:*) - UNAME_REL=`echo ${UNAME_RELEASE} | sed 's/\/MP$//'` - if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then - echo ${UNAME_MACHINE}-univel-sysv${UNAME_REL} - else - echo ${UNAME_MACHINE}-pc-sysv${UNAME_REL} - fi - exit ;; - i*86:*:5:[678]*) - # UnixWare 7.x, OpenUNIX and OpenServer 6. - case `/bin/uname -X | grep "^Machine"` in - *486*) UNAME_MACHINE=i486 ;; - *Pentium) UNAME_MACHINE=i586 ;; - *Pent*|*Celeron) UNAME_MACHINE=i686 ;; - esac - echo ${UNAME_MACHINE}-unknown-sysv${UNAME_RELEASE}${UNAME_SYSTEM}${UNAME_VERSION} - exit ;; - i*86:*:3.2:*) - if test -f /usr/options/cb.name; then - UNAME_REL=`sed -n 's/.*Version //p' /dev/null >/dev/null ; then - UNAME_REL=`(/bin/uname -X|grep Release|sed -e 's/.*= //')` - (/bin/uname -X|grep i80486 >/dev/null) && UNAME_MACHINE=i486 - (/bin/uname -X|grep '^Machine.*Pentium' >/dev/null) \ - && UNAME_MACHINE=i586 - (/bin/uname -X|grep '^Machine.*Pent *II' >/dev/null) \ - && UNAME_MACHINE=i686 - (/bin/uname -X|grep '^Machine.*Pentium Pro' >/dev/null) \ - && UNAME_MACHINE=i686 - echo ${UNAME_MACHINE}-pc-sco$UNAME_REL - else - echo ${UNAME_MACHINE}-pc-sysv32 - fi - exit ;; - pc:*:*:*) - # Left here for compatibility: - # uname -m prints for DJGPP always 'pc', but it prints nothing about - # the processor, so we play safe by assuming i586. - # Note: whatever this is, it MUST be the same as what config.sub - # prints for the "djgpp" host, or else GDB configury will decide that - # this is a cross-build. - echo i586-pc-msdosdjgpp - exit ;; - Intel:Mach:3*:*) - echo i386-pc-mach3 - exit ;; - paragon:*:*:*) - echo i860-intel-osf1 - exit ;; - i860:*:4.*:*) # i860-SVR4 - if grep Stardent /usr/include/sys/uadmin.h >/dev/null 2>&1 ; then - echo i860-stardent-sysv${UNAME_RELEASE} # Stardent Vistra i860-SVR4 - else # Add other i860-SVR4 vendors below as they are discovered. - echo i860-unknown-sysv${UNAME_RELEASE} # Unknown i860-SVR4 - fi - exit ;; - mini*:CTIX:SYS*5:*) - # "miniframe" - echo m68010-convergent-sysv - exit ;; - mc68k:UNIX:SYSTEM5:3.51m) - echo m68k-convergent-sysv - exit ;; - M680?0:D-NIX:5.3:*) - echo m68k-diab-dnix - exit ;; - M68*:*:R3V[5678]*:*) - test -r /sysV68 && { echo 'm68k-motorola-sysv'; exit; } ;; - 3[345]??:*:4.0:3.0 | 3[34]??A:*:4.0:3.0 | 3[34]??,*:*:4.0:3.0 | 3[34]??/*:*:4.0:3.0 | 4400:*:4.0:3.0 | 4850:*:4.0:3.0 | SKA40:*:4.0:3.0 | SDS2:*:4.0:3.0 | SHG2:*:4.0:3.0 | S7501*:*:4.0:3.0) - OS_REL='' - test -r /etc/.relid \ - && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` - /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ - && { echo i486-ncr-sysv4.3${OS_REL}; exit; } - /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ - && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;; - 3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*) - /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ - && { echo i486-ncr-sysv4; exit; } ;; - NCR*:*:4.2:* | MPRAS*:*:4.2:*) - OS_REL='.3' - test -r /etc/.relid \ - && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` - /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ - && { echo i486-ncr-sysv4.3${OS_REL}; exit; } - /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ - && { echo i586-ncr-sysv4.3${OS_REL}; exit; } - /bin/uname -p 2>/dev/null | /bin/grep pteron >/dev/null \ - && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;; - m68*:LynxOS:2.*:* | m68*:LynxOS:3.0*:*) - echo m68k-unknown-lynxos${UNAME_RELEASE} - exit ;; - mc68030:UNIX_System_V:4.*:*) - echo m68k-atari-sysv4 - exit ;; - TSUNAMI:LynxOS:2.*:*) - echo sparc-unknown-lynxos${UNAME_RELEASE} - exit ;; - rs6000:LynxOS:2.*:*) - echo rs6000-unknown-lynxos${UNAME_RELEASE} - exit ;; - PowerPC:LynxOS:2.*:* | PowerPC:LynxOS:3.[01]*:* | PowerPC:LynxOS:4.[02]*:*) - echo powerpc-unknown-lynxos${UNAME_RELEASE} - exit ;; - SM[BE]S:UNIX_SV:*:*) - echo mips-dde-sysv${UNAME_RELEASE} - exit ;; - RM*:ReliantUNIX-*:*:*) - echo mips-sni-sysv4 - exit ;; - RM*:SINIX-*:*:*) - echo mips-sni-sysv4 - exit ;; - *:SINIX-*:*:*) - if uname -p 2>/dev/null >/dev/null ; then - UNAME_MACHINE=`(uname -p) 2>/dev/null` - echo ${UNAME_MACHINE}-sni-sysv4 - else - echo ns32k-sni-sysv - fi - exit ;; - PENTIUM:*:4.0*:*) # Unisys `ClearPath HMP IX 4000' SVR4/MP effort - # says - echo i586-unisys-sysv4 - exit ;; - *:UNIX_System_V:4*:FTX*) - # From Gerald Hewes . - # How about differentiating between stratus architectures? -djm - echo hppa1.1-stratus-sysv4 - exit ;; - *:*:*:FTX*) - # From seanf@swdc.stratus.com. - echo i860-stratus-sysv4 - exit ;; - i*86:VOS:*:*) - # From Paul.Green@stratus.com. - echo ${UNAME_MACHINE}-stratus-vos - exit ;; - *:VOS:*:*) - # From Paul.Green@stratus.com. - echo hppa1.1-stratus-vos - exit ;; - mc68*:A/UX:*:*) - echo m68k-apple-aux${UNAME_RELEASE} - exit ;; - news*:NEWS-OS:6*:*) - echo mips-sony-newsos6 - exit ;; - R[34]000:*System_V*:*:* | R4000:UNIX_SYSV:*:* | R*000:UNIX_SV:*:*) - if [ -d /usr/nec ]; then - echo mips-nec-sysv${UNAME_RELEASE} - else - echo mips-unknown-sysv${UNAME_RELEASE} - fi - exit ;; - BeBox:BeOS:*:*) # BeOS running on hardware made by Be, PPC only. - echo powerpc-be-beos - exit ;; - BeMac:BeOS:*:*) # BeOS running on Mac or Mac clone, PPC only. - echo powerpc-apple-beos - exit ;; - BePC:BeOS:*:*) # BeOS running on Intel PC compatible. - echo i586-pc-beos - exit ;; - BePC:Haiku:*:*) # Haiku running on Intel PC compatible. - echo i586-pc-haiku - exit ;; - SX-4:SUPER-UX:*:*) - echo sx4-nec-superux${UNAME_RELEASE} - exit ;; - SX-5:SUPER-UX:*:*) - echo sx5-nec-superux${UNAME_RELEASE} - exit ;; - SX-6:SUPER-UX:*:*) - echo sx6-nec-superux${UNAME_RELEASE} - exit ;; - SX-7:SUPER-UX:*:*) - echo sx7-nec-superux${UNAME_RELEASE} - exit ;; - SX-8:SUPER-UX:*:*) - echo sx8-nec-superux${UNAME_RELEASE} - exit ;; - SX-8R:SUPER-UX:*:*) - echo sx8r-nec-superux${UNAME_RELEASE} - exit ;; - Power*:Rhapsody:*:*) - echo powerpc-apple-rhapsody${UNAME_RELEASE} - exit ;; - *:Rhapsody:*:*) - echo ${UNAME_MACHINE}-apple-rhapsody${UNAME_RELEASE} - exit ;; - *:Darwin:*:*) - UNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown - case $UNAME_PROCESSOR in - i386) - eval $set_cc_for_build - if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then - if (echo '#ifdef __LP64__'; echo IS_64BIT_ARCH; echo '#endif') | \ - (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \ - grep IS_64BIT_ARCH >/dev/null - then - UNAME_PROCESSOR="x86_64" - fi - fi ;; - unknown) UNAME_PROCESSOR=powerpc ;; - esac - echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE} - exit ;; - *:procnto*:*:* | *:QNX:[0123456789]*:*) - UNAME_PROCESSOR=`uname -p` - if test "$UNAME_PROCESSOR" = "x86"; then - UNAME_PROCESSOR=i386 - UNAME_MACHINE=pc - fi - echo ${UNAME_PROCESSOR}-${UNAME_MACHINE}-nto-qnx${UNAME_RELEASE} - exit ;; - *:QNX:*:4*) - echo i386-pc-qnx - exit ;; - NSE-?:NONSTOP_KERNEL:*:*) - echo nse-tandem-nsk${UNAME_RELEASE} - exit ;; - NSR-?:NONSTOP_KERNEL:*:*) - echo nsr-tandem-nsk${UNAME_RELEASE} - exit ;; - *:NonStop-UX:*:*) - echo mips-compaq-nonstopux - exit ;; - BS2000:POSIX*:*:*) - echo bs2000-siemens-sysv - exit ;; - DS/*:UNIX_System_V:*:*) - echo ${UNAME_MACHINE}-${UNAME_SYSTEM}-${UNAME_RELEASE} - exit ;; - *:Plan9:*:*) - # "uname -m" is not consistent, so use $cputype instead. 386 - # is converted to i386 for consistency with other x86 - # operating systems. - if test "$cputype" = "386"; then - UNAME_MACHINE=i386 - else - UNAME_MACHINE="$cputype" - fi - echo ${UNAME_MACHINE}-unknown-plan9 - exit ;; - *:TOPS-10:*:*) - echo pdp10-unknown-tops10 - exit ;; - *:TENEX:*:*) - echo pdp10-unknown-tenex - exit ;; - KS10:TOPS-20:*:* | KL10:TOPS-20:*:* | TYPE4:TOPS-20:*:*) - echo pdp10-dec-tops20 - exit ;; - XKL-1:TOPS-20:*:* | TYPE5:TOPS-20:*:*) - echo pdp10-xkl-tops20 - exit ;; - *:TOPS-20:*:*) - echo pdp10-unknown-tops20 - exit ;; - *:ITS:*:*) - echo pdp10-unknown-its - exit ;; - SEI:*:*:SEIUX) - echo mips-sei-seiux${UNAME_RELEASE} - exit ;; - *:DragonFly:*:*) - echo ${UNAME_MACHINE}-unknown-dragonfly`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` - exit ;; - *:*VMS:*:*) - UNAME_MACHINE=`(uname -p) 2>/dev/null` - case "${UNAME_MACHINE}" in - A*) echo alpha-dec-vms ; exit ;; - I*) echo ia64-dec-vms ; exit ;; - V*) echo vax-dec-vms ; exit ;; - esac ;; - *:XENIX:*:SysV) - echo i386-pc-xenix - exit ;; - i*86:skyos:*:*) - echo ${UNAME_MACHINE}-pc-skyos`echo ${UNAME_RELEASE}` | sed -e 's/ .*$//' - exit ;; - i*86:rdos:*:*) - echo ${UNAME_MACHINE}-pc-rdos - exit ;; - i*86:AROS:*:*) - echo ${UNAME_MACHINE}-pc-aros - exit ;; -esac - -#echo '(No uname command or uname output not recognized.)' 1>&2 -#echo "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" 1>&2 - -eval $set_cc_for_build -cat >$dummy.c < -# include -#endif -main () -{ -#if defined (sony) -#if defined (MIPSEB) - /* BFD wants "bsd" instead of "newsos". Perhaps BFD should be changed, - I don't know.... */ - printf ("mips-sony-bsd\n"); exit (0); -#else -#include - printf ("m68k-sony-newsos%s\n", -#ifdef NEWSOS4 - "4" -#else - "" -#endif - ); exit (0); -#endif -#endif - -#if defined (__arm) && defined (__acorn) && defined (__unix) - printf ("arm-acorn-riscix\n"); exit (0); -#endif - -#if defined (hp300) && !defined (hpux) - printf ("m68k-hp-bsd\n"); exit (0); -#endif - -#if defined (NeXT) -#if !defined (__ARCHITECTURE__) -#define __ARCHITECTURE__ "m68k" -#endif - int version; - version=`(hostinfo | sed -n 's/.*NeXT Mach \([0-9]*\).*/\1/p') 2>/dev/null`; - if (version < 4) - printf ("%s-next-nextstep%d\n", __ARCHITECTURE__, version); - else - printf ("%s-next-openstep%d\n", __ARCHITECTURE__, version); - exit (0); -#endif - -#if defined (MULTIMAX) || defined (n16) -#if defined (UMAXV) - printf ("ns32k-encore-sysv\n"); exit (0); -#else -#if defined (CMU) - printf ("ns32k-encore-mach\n"); exit (0); -#else - printf ("ns32k-encore-bsd\n"); exit (0); -#endif -#endif -#endif - -#if defined (__386BSD__) - printf ("i386-pc-bsd\n"); exit (0); -#endif - -#if defined (sequent) -#if defined (i386) - printf ("i386-sequent-dynix\n"); exit (0); -#endif -#if defined (ns32000) - printf ("ns32k-sequent-dynix\n"); exit (0); -#endif -#endif - -#if defined (_SEQUENT_) - struct utsname un; - - uname(&un); - - if (strncmp(un.version, "V2", 2) == 0) { - printf ("i386-sequent-ptx2\n"); exit (0); - } - if (strncmp(un.version, "V1", 2) == 0) { /* XXX is V1 correct? */ - printf ("i386-sequent-ptx1\n"); exit (0); - } - printf ("i386-sequent-ptx\n"); exit (0); - -#endif - -#if defined (vax) -# if !defined (ultrix) -# include -# if defined (BSD) -# if BSD == 43 - printf ("vax-dec-bsd4.3\n"); exit (0); -# else -# if BSD == 199006 - printf ("vax-dec-bsd4.3reno\n"); exit (0); -# else - printf ("vax-dec-bsd\n"); exit (0); -# endif -# endif -# else - printf ("vax-dec-bsd\n"); exit (0); -# endif -# else - printf ("vax-dec-ultrix\n"); exit (0); -# endif -#endif - -#if defined (alliant) && defined (i860) - printf ("i860-alliant-bsd\n"); exit (0); -#endif - - exit (1); -} -EOF - -$CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null && SYSTEM_NAME=`$dummy` && - { echo "$SYSTEM_NAME"; exit; } - -# Apollos put the system type in the environment. - -test -d /usr/apollo && { echo ${ISP}-apollo-${SYSTYPE}; exit; } - -# Convex versions that predate uname can use getsysinfo(1) - -if [ -x /usr/convex/getsysinfo ] -then - case `getsysinfo -f cpu_type` in - c1*) - echo c1-convex-bsd - exit ;; - c2*) - if getsysinfo -f scalar_acc - then echo c32-convex-bsd - else echo c2-convex-bsd - fi - exit ;; - c34*) - echo c34-convex-bsd - exit ;; - c38*) - echo c38-convex-bsd - exit ;; - c4*) - echo c4-convex-bsd - exit ;; - esac -fi - -cat >&2 < in order to provide the needed -information to handle your system. - -config.guess timestamp = $timestamp - -uname -m = `(uname -m) 2>/dev/null || echo unknown` -uname -r = `(uname -r) 2>/dev/null || echo unknown` -uname -s = `(uname -s) 2>/dev/null || echo unknown` -uname -v = `(uname -v) 2>/dev/null || echo unknown` - -/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null` -/bin/uname -X = `(/bin/uname -X) 2>/dev/null` - -hostinfo = `(hostinfo) 2>/dev/null` -/bin/universe = `(/bin/universe) 2>/dev/null` -/usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null` -/bin/arch = `(/bin/arch) 2>/dev/null` -/usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null` -/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null` - -UNAME_MACHINE = ${UNAME_MACHINE} -UNAME_RELEASE = ${UNAME_RELEASE} -UNAME_SYSTEM = ${UNAME_SYSTEM} -UNAME_VERSION = ${UNAME_VERSION} -EOF - -exit 1 - -# Local variables: -# eval: (add-hook 'write-file-hooks 'time-stamp) -# time-stamp-start: "timestamp='" -# time-stamp-format: "%:y-%02m-%02d" -# time-stamp-end: "'" -# End: diff -Nru fcitx-4.0.1/config.h.in fcitx-4.1.1/config.h.in --- fcitx-4.0.1/config.h.in 2010-12-17 04:27:45.000000000 +0000 +++ fcitx-4.1.1/config.h.in 2011-09-08 16:00:05.000000000 +0000 @@ -1,190 +1,16 @@ -/* config.h.in. Generated from configure.in by autoheader. */ - -/* Define to 1 if translation of program messages to the user's native - language is requested. */ -#undef ENABLE_NLS - -/* Gettext package */ -#undef GETTEXT_PACKAGE - -/* Define to 1 if you have the `asprintf' function. */ -#undef HAVE_ASPRINTF - -/* Define to 1 if you have the MacOS X function CFLocaleCopyCurrent in the - CoreFoundation framework. */ -#undef HAVE_CFLOCALECOPYCURRENT - -/* Define to 1 if you have the MacOS X function CFPreferencesCopyAppValue in - the CoreFoundation framework. */ -#undef HAVE_CFPREFERENCESCOPYAPPVALUE - -/* Define if the GNU dcgettext() function is already present or preinstalled. - */ -#undef HAVE_DCGETTEXT - -/* Define to 1 if you have the header file. */ -#undef HAVE_DLFCN_H - -/* Define to 1 if you have the `fork' function. */ -#undef HAVE_FORK - -/* Define if the GNU gettext() function is already present or preinstalled. */ -#undef HAVE_GETTEXT - -/* Define if you have the iconv() function and it works. */ -#undef HAVE_ICONV - -/* Define to 1 if you have the header file. */ -#undef HAVE_INTTYPES_H - -/* Define to 1 if you have the header file. */ -#undef HAVE_LIMITS_H - -/* Define to 1 if you have the header file. */ -#undef HAVE_MACHINE_ENDIAN_H - -/* Define to 1 if your system has a GNU libc compatible `malloc' function, and - to 0 otherwise. */ -#undef HAVE_MALLOC - -/* Define to 1 if you have the header file. */ -#undef HAVE_MALLOC_H - -/* Define to 1 if you have the header file. */ -#undef HAVE_MALLOC_MALLOC_H - -/* Define to 1 if you have the `memmove' function. */ -#undef HAVE_MEMMOVE - -/* Define to 1 if you have the header file. */ -#undef HAVE_MEMORY_H - -/* Define to 1 if you have the `memset' function. */ -#undef HAVE_MEMSET - -/* Define to 1 if you have the `mkdir' function. */ -#undef HAVE_MKDIR - -/* Define to 1 if you have the header file. */ -#undef HAVE_PTHREAD_H - -/* Define to 1 if you have the `setlocale' function. */ -#undef HAVE_SETLOCALE - -/* Define to 1 if you have the header file. */ -#undef HAVE_STDINT_H - -/* Define to 1 if you have the header file. */ -#undef HAVE_STDLIB_H - -/* Define to 1 if you have the `strcasecmp' function. */ -#undef HAVE_STRCASECMP - -/* Define to 1 if you have the header file. */ -#undef HAVE_STRINGS_H - -/* Define to 1 if you have the header file. */ -#undef HAVE_STRING_H - -/* Define to 1 if you have the `strstr' function. */ -#undef HAVE_STRSTR - -/* Define to 1 if you have the `strtol' function. */ -#undef HAVE_STRTOL - -/* Define to 1 if you have the header file. */ -#undef HAVE_SYS_PARAM_H - -/* Define to 1 if you have the header file. */ -#undef HAVE_SYS_STAT_H - -/* Define to 1 if you have the header file. */ -#undef HAVE_SYS_TYPES_H - -/* Define to 1 if you have the header file. */ -#undef HAVE_SYS_WAIT_H - -/* Define to 1 if you have the header file. */ -#undef HAVE_UNISTD_H - -/* Define to 1 if you have the `vasprintf' function. */ -#undef HAVE_VASPRINTF - -/* Define to 1 if you have the `vfork' function. */ -#undef HAVE_VFORK - -/* Define to 1 if you have the header file. */ -#undef HAVE_VFORK_H - -/* Define to 1 if you have the header file. */ -#undef HAVE_WAIT_H - -/* Define to 1 if `fork' works. */ -#undef HAVE_WORKING_FORK - -/* Define to 1 if `vfork' works. */ -#undef HAVE_WORKING_VFORK - -/* Define as const if the declaration of iconv() needs const. */ -#undef ICONV_CONST - -/* Define to the sub-directory in which libtool stores uninstalled libraries. - */ -#undef LT_OBJDIR - -/* Name of package */ -#undef PACKAGE - -/* Define to the address where bug reports for this package should be sent. */ -#undef PACKAGE_BUGREPORT - -/* Define to the full name of this package. */ -#undef PACKAGE_NAME - -/* Define to the full name and version of this package. */ -#undef PACKAGE_STRING - -/* Define to the one symbol short name of this package. */ -#undef PACKAGE_TARNAME - -/* Define to the home page for this package. */ -#undef PACKAGE_URL - -/* Define to the version of this package. */ -#undef PACKAGE_VERSION - -/* Define as the return type of signal handlers (`int' or `void'). */ -#undef RETSIGTYPE - -/* Define to 1 if you have the ANSI C header files. */ -#undef STDC_HEADERS - -/* Version number of package */ -#undef VERSION - -/* Enable Debug */ -#undef _DEBUG - -/* Enable DBus */ -#undef _ENABLE_DBUS - -/* Enable Pango */ -#undef _ENABLE_PANGO - -/* Enable Recording */ -#undef _ENABLE_RECORDING - -/* Enable Tray Icon */ -#undef _ENABLE_TRAY - -/* Define to rpl_malloc if the replacement function should be used. */ -#undef malloc - -/* Define to `int' if does not define. */ -#undef pid_t - -/* Define to `unsigned int' if does not define. */ -#undef size_t - -/* Define as `fork' if `vfork' does not work. */ -#undef vfork +#cmakedefine HAVE_UNISTD_H +#cmakedefine HAVE_MALLOC_H +#cmakedefine HAVE_STDBOOL_H +#cmakedefine HAVE_ASPRINTF +#cmakedefine _DEBUG +#cmakedefine _ENABLE_DBUS +#cmakedefine _ENABLE_PANGO +#cmakedefine _ENABLE_OPENCC +#define LOCALEDIR "@localedir@" +#define PACKAGE "@package@" +#define DATADIR "@prefix@/share" +#define PKGDATADIR "@pkgdatadir@" +#define BINDIR "@bindir@" +#define LIBDIR "@libdir@" +#define VERSION "@version@" +#define INTERNAL_VERSION 3 \ No newline at end of file diff -Nru fcitx-4.0.1/config.rpath fcitx-4.1.1/config.rpath --- fcitx-4.0.1/config.rpath 2010-11-28 11:54:51.000000000 +0000 +++ fcitx-4.1.1/config.rpath 1970-01-01 00:00:00.000000000 +0000 @@ -1,666 +0,0 @@ -#! /bin/sh -# Output a system dependent set of variables, describing how to set the -# run time search path of shared libraries in an executable. -# -# Copyright 1996-2007 Free Software Foundation, Inc. -# Taken from GNU libtool, 2001 -# Originally by Gordon Matzigkeit , 1996 -# -# This file is free software; the Free Software Foundation gives -# unlimited permission to copy and/or distribute it, with or without -# modifications, as long as this notice is preserved. -# -# The first argument passed to this file is the canonical host specification, -# CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM -# or -# CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM -# The environment variables CC, GCC, LDFLAGS, LD, with_gnu_ld -# should be set by the caller. -# -# The set of defined variables is at the end of this script. - -# Known limitations: -# - On IRIX 6.5 with CC="cc", the run time search patch must not be longer -# than 256 bytes, otherwise the compiler driver will dump core. The only -# known workaround is to choose shorter directory names for the build -# directory and/or the installation directory. - -# All known linkers require a `.a' archive for static linking (except MSVC, -# which needs '.lib'). -libext=a -shrext=.so - -host="$1" -host_cpu=`echo "$host" | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'` -host_vendor=`echo "$host" | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'` -host_os=`echo "$host" | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'` - -# Code taken from libtool.m4's _LT_CC_BASENAME. - -for cc_temp in $CC""; do - case $cc_temp in - compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; - distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; - \-*) ;; - *) break;; - esac -done -cc_basename=`echo "$cc_temp" | sed -e 's%^.*/%%'` - -# Code taken from libtool.m4's AC_LIBTOOL_PROG_COMPILER_PIC. - -wl= -if test "$GCC" = yes; then - wl='-Wl,' -else - case "$host_os" in - aix*) - wl='-Wl,' - ;; - darwin*) - case $cc_basename in - xlc*) - wl='-Wl,' - ;; - esac - ;; - mingw* | cygwin* | pw32* | os2*) - ;; - hpux9* | hpux10* | hpux11*) - wl='-Wl,' - ;; - irix5* | irix6* | nonstopux*) - wl='-Wl,' - ;; - newsos6) - ;; - linux* | k*bsd*-gnu) - case $cc_basename in - icc* | ecc*) - wl='-Wl,' - ;; - pgcc | pgf77 | pgf90) - wl='-Wl,' - ;; - ccc*) - wl='-Wl,' - ;; - como) - wl='-lopt=' - ;; - *) - case `$CC -V 2>&1 | sed 5q` in - *Sun\ C*) - wl='-Wl,' - ;; - esac - ;; - esac - ;; - osf3* | osf4* | osf5*) - wl='-Wl,' - ;; - rdos*) - ;; - solaris*) - wl='-Wl,' - ;; - sunos4*) - wl='-Qoption ld ' - ;; - sysv4 | sysv4.2uw2* | sysv4.3*) - wl='-Wl,' - ;; - sysv4*MP*) - ;; - sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) - wl='-Wl,' - ;; - unicos*) - wl='-Wl,' - ;; - uts4*) - ;; - esac -fi - -# Code taken from libtool.m4's AC_LIBTOOL_PROG_LD_SHLIBS. - -hardcode_libdir_flag_spec= -hardcode_libdir_separator= -hardcode_direct=no -hardcode_minus_L=no - -case "$host_os" in - cygwin* | mingw* | pw32*) - # FIXME: the MSVC++ port hasn't been tested in a loooong time - # When not using gcc, we currently assume that we are using - # Microsoft Visual C++. - if test "$GCC" != yes; then - with_gnu_ld=no - fi - ;; - interix*) - # we just hope/assume this is gcc and not c89 (= MSVC++) - with_gnu_ld=yes - ;; - openbsd*) - with_gnu_ld=no - ;; -esac - -ld_shlibs=yes -if test "$with_gnu_ld" = yes; then - # Set some defaults for GNU ld with shared library support. These - # are reset later if shared libraries are not supported. Putting them - # here allows them to be overridden if necessary. - # Unlike libtool, we use -rpath here, not --rpath, since the documented - # option of GNU ld is called -rpath, not --rpath. - hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' - case "$host_os" in - aix3* | aix4* | aix5*) - # On AIX/PPC, the GNU linker is very broken - if test "$host_cpu" != ia64; then - ld_shlibs=no - fi - ;; - amigaos*) - hardcode_libdir_flag_spec='-L$libdir' - hardcode_minus_L=yes - # Samuel A. Falvo II reports - # that the semantics of dynamic libraries on AmigaOS, at least up - # to version 4, is to share data among multiple programs linked - # with the same dynamic library. Since this doesn't match the - # behavior of shared libraries on other platforms, we cannot use - # them. - ld_shlibs=no - ;; - beos*) - if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then - : - else - ld_shlibs=no - fi - ;; - cygwin* | mingw* | pw32*) - # hardcode_libdir_flag_spec is actually meaningless, as there is - # no search path for DLLs. - hardcode_libdir_flag_spec='-L$libdir' - if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then - : - else - ld_shlibs=no - fi - ;; - interix[3-9]*) - hardcode_direct=no - hardcode_libdir_flag_spec='${wl}-rpath,$libdir' - ;; - gnu* | linux* | k*bsd*-gnu) - if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then - : - else - ld_shlibs=no - fi - ;; - netbsd*) - ;; - solaris*) - if $LD -v 2>&1 | grep 'BFD 2\.8' > /dev/null; then - ld_shlibs=no - elif $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then - : - else - ld_shlibs=no - fi - ;; - sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) - case `$LD -v 2>&1` in - *\ [01].* | *\ 2.[0-9].* | *\ 2.1[0-5].*) - ld_shlibs=no - ;; - *) - if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then - hardcode_libdir_flag_spec='`test -z "$SCOABSPATH" && echo ${wl}-rpath,$libdir`' - else - ld_shlibs=no - fi - ;; - esac - ;; - sunos4*) - hardcode_direct=yes - ;; - *) - if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then - : - else - ld_shlibs=no - fi - ;; - esac - if test "$ld_shlibs" = no; then - hardcode_libdir_flag_spec= - fi -else - case "$host_os" in - aix3*) - # Note: this linker hardcodes the directories in LIBPATH if there - # are no directories specified by -L. - hardcode_minus_L=yes - if test "$GCC" = yes; then - # Neither direct hardcoding nor static linking is supported with a - # broken collect2. - hardcode_direct=unsupported - fi - ;; - aix4* | aix5*) - if test "$host_cpu" = ia64; then - # On IA64, the linker does run time linking by default, so we don't - # have to do anything special. - aix_use_runtimelinking=no - else - aix_use_runtimelinking=no - # Test if we are trying to use run time linking or normal - # AIX style linking. If -brtl is somewhere in LDFLAGS, we - # need to do runtime linking. - case $host_os in aix4.[23]|aix4.[23].*|aix5*) - for ld_flag in $LDFLAGS; do - if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then - aix_use_runtimelinking=yes - break - fi - done - ;; - esac - fi - hardcode_direct=yes - hardcode_libdir_separator=':' - if test "$GCC" = yes; then - case $host_os in aix4.[012]|aix4.[012].*) - collect2name=`${CC} -print-prog-name=collect2` - if test -f "$collect2name" && \ - strings "$collect2name" | grep resolve_lib_name >/dev/null - then - # We have reworked collect2 - : - else - # We have old collect2 - hardcode_direct=unsupported - hardcode_minus_L=yes - hardcode_libdir_flag_spec='-L$libdir' - hardcode_libdir_separator= - fi - ;; - esac - fi - # Begin _LT_AC_SYS_LIBPATH_AIX. - echo 'int main () { return 0; }' > conftest.c - ${CC} ${LDFLAGS} conftest.c -o conftest - aix_libpath=`dump -H conftest 2>/dev/null | sed -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } -}'` - if test -z "$aix_libpath"; then - aix_libpath=`dump -HX64 conftest 2>/dev/null | sed -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } -}'` - fi - if test -z "$aix_libpath"; then - aix_libpath="/usr/lib:/lib" - fi - rm -f conftest.c conftest - # End _LT_AC_SYS_LIBPATH_AIX. - if test "$aix_use_runtimelinking" = yes; then - hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath" - else - if test "$host_cpu" = ia64; then - hardcode_libdir_flag_spec='${wl}-R $libdir:/usr/lib:/lib' - else - hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath" - fi - fi - ;; - amigaos*) - hardcode_libdir_flag_spec='-L$libdir' - hardcode_minus_L=yes - # see comment about different semantics on the GNU ld section - ld_shlibs=no - ;; - bsdi[45]*) - ;; - cygwin* | mingw* | pw32*) - # When not using gcc, we currently assume that we are using - # Microsoft Visual C++. - # hardcode_libdir_flag_spec is actually meaningless, as there is - # no search path for DLLs. - hardcode_libdir_flag_spec=' ' - libext=lib - ;; - darwin* | rhapsody*) - hardcode_direct=no - if test "$GCC" = yes ; then - : - else - case $cc_basename in - xlc*) - ;; - *) - ld_shlibs=no - ;; - esac - fi - ;; - dgux*) - hardcode_libdir_flag_spec='-L$libdir' - ;; - freebsd1*) - ld_shlibs=no - ;; - freebsd2.2*) - hardcode_libdir_flag_spec='-R$libdir' - hardcode_direct=yes - ;; - freebsd2*) - hardcode_direct=yes - hardcode_minus_L=yes - ;; - freebsd* | dragonfly*) - hardcode_libdir_flag_spec='-R$libdir' - hardcode_direct=yes - ;; - hpux9*) - hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' - hardcode_libdir_separator=: - hardcode_direct=yes - # hardcode_minus_L: Not really in the search PATH, - # but as the default location of the library. - hardcode_minus_L=yes - ;; - hpux10*) - if test "$with_gnu_ld" = no; then - hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' - hardcode_libdir_separator=: - hardcode_direct=yes - # hardcode_minus_L: Not really in the search PATH, - # but as the default location of the library. - hardcode_minus_L=yes - fi - ;; - hpux11*) - if test "$with_gnu_ld" = no; then - hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' - hardcode_libdir_separator=: - case $host_cpu in - hppa*64*|ia64*) - hardcode_direct=no - ;; - *) - hardcode_direct=yes - # hardcode_minus_L: Not really in the search PATH, - # but as the default location of the library. - hardcode_minus_L=yes - ;; - esac - fi - ;; - irix5* | irix6* | nonstopux*) - hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' - hardcode_libdir_separator=: - ;; - netbsd*) - hardcode_libdir_flag_spec='-R$libdir' - hardcode_direct=yes - ;; - newsos6) - hardcode_direct=yes - hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' - hardcode_libdir_separator=: - ;; - openbsd*) - if test -f /usr/libexec/ld.so; then - hardcode_direct=yes - if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then - hardcode_libdir_flag_spec='${wl}-rpath,$libdir' - else - case "$host_os" in - openbsd[01].* | openbsd2.[0-7] | openbsd2.[0-7].*) - hardcode_libdir_flag_spec='-R$libdir' - ;; - *) - hardcode_libdir_flag_spec='${wl}-rpath,$libdir' - ;; - esac - fi - else - ld_shlibs=no - fi - ;; - os2*) - hardcode_libdir_flag_spec='-L$libdir' - hardcode_minus_L=yes - ;; - osf3*) - hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' - hardcode_libdir_separator=: - ;; - osf4* | osf5*) - if test "$GCC" = yes; then - hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' - else - # Both cc and cxx compiler support -rpath directly - hardcode_libdir_flag_spec='-rpath $libdir' - fi - hardcode_libdir_separator=: - ;; - solaris*) - hardcode_libdir_flag_spec='-R$libdir' - ;; - sunos4*) - hardcode_libdir_flag_spec='-L$libdir' - hardcode_direct=yes - hardcode_minus_L=yes - ;; - sysv4) - case $host_vendor in - sni) - hardcode_direct=yes # is this really true??? - ;; - siemens) - hardcode_direct=no - ;; - motorola) - hardcode_direct=no #Motorola manual says yes, but my tests say they lie - ;; - esac - ;; - sysv4.3*) - ;; - sysv4*MP*) - if test -d /usr/nec; then - ld_shlibs=yes - fi - ;; - sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*) - ;; - sysv5* | sco3.2v5* | sco5v6*) - hardcode_libdir_flag_spec='`test -z "$SCOABSPATH" && echo ${wl}-R,$libdir`' - hardcode_libdir_separator=':' - ;; - uts4*) - hardcode_libdir_flag_spec='-L$libdir' - ;; - *) - ld_shlibs=no - ;; - esac -fi - -# Check dynamic linker characteristics -# Code taken from libtool.m4's AC_LIBTOOL_SYS_DYNAMIC_LINKER. -# Unlike libtool.m4, here we don't care about _all_ names of the library, but -# only about the one the linker finds when passed -lNAME. This is the last -# element of library_names_spec in libtool.m4, or possibly two of them if the -# linker has special search rules. -library_names_spec= # the last element of library_names_spec in libtool.m4 -libname_spec='lib$name' -case "$host_os" in - aix3*) - library_names_spec='$libname.a' - ;; - aix4* | aix5*) - library_names_spec='$libname$shrext' - ;; - amigaos*) - library_names_spec='$libname.a' - ;; - beos*) - library_names_spec='$libname$shrext' - ;; - bsdi[45]*) - library_names_spec='$libname$shrext' - ;; - cygwin* | mingw* | pw32*) - shrext=.dll - library_names_spec='$libname.dll.a $libname.lib' - ;; - darwin* | rhapsody*) - shrext=.dylib - library_names_spec='$libname$shrext' - ;; - dgux*) - library_names_spec='$libname$shrext' - ;; - freebsd1*) - ;; - freebsd* | dragonfly*) - case "$host_os" in - freebsd[123]*) - library_names_spec='$libname$shrext$versuffix' ;; - *) - library_names_spec='$libname$shrext' ;; - esac - ;; - gnu*) - library_names_spec='$libname$shrext' - ;; - hpux9* | hpux10* | hpux11*) - case $host_cpu in - ia64*) - shrext=.so - ;; - hppa*64*) - shrext=.sl - ;; - *) - shrext=.sl - ;; - esac - library_names_spec='$libname$shrext' - ;; - interix[3-9]*) - library_names_spec='$libname$shrext' - ;; - irix5* | irix6* | nonstopux*) - library_names_spec='$libname$shrext' - case "$host_os" in - irix5* | nonstopux*) - libsuff= shlibsuff= - ;; - *) - case $LD in - *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") libsuff= shlibsuff= ;; - *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") libsuff=32 shlibsuff=N32 ;; - *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") libsuff=64 shlibsuff=64 ;; - *) libsuff= shlibsuff= ;; - esac - ;; - esac - ;; - linux*oldld* | linux*aout* | linux*coff*) - ;; - linux* | k*bsd*-gnu) - library_names_spec='$libname$shrext' - ;; - knetbsd*-gnu) - library_names_spec='$libname$shrext' - ;; - netbsd*) - library_names_spec='$libname$shrext' - ;; - newsos6) - library_names_spec='$libname$shrext' - ;; - nto-qnx*) - library_names_spec='$libname$shrext' - ;; - openbsd*) - library_names_spec='$libname$shrext$versuffix' - ;; - os2*) - libname_spec='$name' - shrext=.dll - library_names_spec='$libname.a' - ;; - osf3* | osf4* | osf5*) - library_names_spec='$libname$shrext' - ;; - rdos*) - ;; - solaris*) - library_names_spec='$libname$shrext' - ;; - sunos4*) - library_names_spec='$libname$shrext$versuffix' - ;; - sysv4 | sysv4.3*) - library_names_spec='$libname$shrext' - ;; - sysv4*MP*) - library_names_spec='$libname$shrext' - ;; - sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) - library_names_spec='$libname$shrext' - ;; - uts4*) - library_names_spec='$libname$shrext' - ;; -esac - -sed_quote_subst='s/\(["`$\\]\)/\\\1/g' -escaped_wl=`echo "X$wl" | sed -e 's/^X//' -e "$sed_quote_subst"` -shlibext=`echo "$shrext" | sed -e 's,^\.,,'` -escaped_libname_spec=`echo "X$libname_spec" | sed -e 's/^X//' -e "$sed_quote_subst"` -escaped_library_names_spec=`echo "X$library_names_spec" | sed -e 's/^X//' -e "$sed_quote_subst"` -escaped_hardcode_libdir_flag_spec=`echo "X$hardcode_libdir_flag_spec" | sed -e 's/^X//' -e "$sed_quote_subst"` - -LC_ALL=C sed -e 's/^\([a-zA-Z0-9_]*\)=/acl_cv_\1=/' <. Submit a context -# diff and a properly formatted GNU ChangeLog entry. -# -# Configuration subroutine to validate and canonicalize a configuration type. -# Supply the specified configuration type as an argument. -# If it is invalid, we print an error message on stderr and exit with code 1. -# Otherwise, we print the canonical config type on stdout and succeed. - -# You can get the latest version of this script from: -# http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD - -# This file is supposed to be the same for all GNU packages -# and recognize all the CPU types, system types and aliases -# that are meaningful with *any* GNU software. -# Each package is responsible for reporting which valid configurations -# it does not support. The user should be able to distinguish -# a failure to support a valid configuration from a meaningless -# configuration. - -# The goal of this file is to map all the various variations of a given -# machine specification into a single specification in the form: -# CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM -# or in some cases, the newer four-part form: -# CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM -# It is wrong to echo any other type of specification. - -me=`echo "$0" | sed -e 's,.*/,,'` - -usage="\ -Usage: $0 [OPTION] CPU-MFR-OPSYS - $0 [OPTION] ALIAS - -Canonicalize a configuration name. - -Operation modes: - -h, --help print this help, then exit - -t, --time-stamp print date of last modification, then exit - -v, --version print version number, then exit - -Report bugs and patches to ." - -version="\ -GNU config.sub ($timestamp) - -Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, -2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. - -This is free software; see the source for copying conditions. There is NO -warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." - -help=" -Try \`$me --help' for more information." - -# Parse command line -while test $# -gt 0 ; do - case $1 in - --time-stamp | --time* | -t ) - echo "$timestamp" ; exit ;; - --version | -v ) - echo "$version" ; exit ;; - --help | --h* | -h ) - echo "$usage"; exit ;; - -- ) # Stop option processing - shift; break ;; - - ) # Use stdin as input. - break ;; - -* ) - echo "$me: invalid option $1$help" - exit 1 ;; - - *local*) - # First pass through any local machine types. - echo $1 - exit ;; - - * ) - break ;; - esac -done - -case $# in - 0) echo "$me: missing argument$help" >&2 - exit 1;; - 1) ;; - *) echo "$me: too many arguments$help" >&2 - exit 1;; -esac - -# Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any). -# Here we must recognize all the valid KERNEL-OS combinations. -maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'` -case $maybe_os in - nto-qnx* | linux-gnu* | linux-dietlibc | linux-newlib* | linux-uclibc* | \ - uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | knetbsd*-gnu* | netbsd*-gnu* | \ - kopensolaris*-gnu* | \ - storm-chaos* | os2-emx* | rtmk-nova*) - os=-$maybe_os - basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'` - ;; - *) - basic_machine=`echo $1 | sed 's/-[^-]*$//'` - if [ $basic_machine != $1 ] - then os=`echo $1 | sed 's/.*-/-/'` - else os=; fi - ;; -esac - -### Let's recognize common machines as not being operating systems so -### that things like config.sub decstation-3100 work. We also -### recognize some manufacturers as not being operating systems, so we -### can provide default operating systems below. -case $os in - -sun*os*) - # Prevent following clause from handling this invalid input. - ;; - -dec* | -mips* | -sequent* | -encore* | -pc532* | -sgi* | -sony* | \ - -att* | -7300* | -3300* | -delta* | -motorola* | -sun[234]* | \ - -unicom* | -ibm* | -next | -hp | -isi* | -apollo | -altos* | \ - -convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\ - -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \ - -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \ - -apple | -axis | -knuth | -cray | -microblaze) - os= - basic_machine=$1 - ;; - -bluegene*) - os=-cnk - ;; - -sim | -cisco | -oki | -wec | -winbond) - os= - basic_machine=$1 - ;; - -scout) - ;; - -wrs) - os=-vxworks - basic_machine=$1 - ;; - -chorusos*) - os=-chorusos - basic_machine=$1 - ;; - -chorusrdb) - os=-chorusrdb - basic_machine=$1 - ;; - -hiux*) - os=-hiuxwe2 - ;; - -sco6) - os=-sco5v6 - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` - ;; - -sco5) - os=-sco3.2v5 - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` - ;; - -sco4) - os=-sco3.2v4 - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` - ;; - -sco3.2.[4-9]*) - os=`echo $os | sed -e 's/sco3.2./sco3.2v/'` - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` - ;; - -sco3.2v[4-9]*) - # Don't forget version if it is 3.2v4 or newer. - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` - ;; - -sco5v6*) - # Don't forget version if it is 3.2v4 or newer. - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` - ;; - -sco*) - os=-sco3.2v2 - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` - ;; - -udk*) - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` - ;; - -isc) - os=-isc2.2 - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` - ;; - -clix*) - basic_machine=clipper-intergraph - ;; - -isc*) - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` - ;; - -lynx*) - os=-lynxos - ;; - -ptx*) - basic_machine=`echo $1 | sed -e 's/86-.*/86-sequent/'` - ;; - -windowsnt*) - os=`echo $os | sed -e 's/windowsnt/winnt/'` - ;; - -psos*) - os=-psos - ;; - -mint | -mint[0-9]*) - basic_machine=m68k-atari - os=-mint - ;; -esac - -# Decode aliases for certain CPU-COMPANY combinations. -case $basic_machine in - # Recognize the basic CPU types without company name. - # Some are omitted here because they have special meanings below. - 1750a | 580 \ - | a29k \ - | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \ - | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \ - | am33_2.0 \ - | arc | arm | arm[bl]e | arme[lb] | armv[2345] | armv[345][lb] | avr | avr32 \ - | bfin \ - | c4x | clipper \ - | d10v | d30v | dlx | dsp16xx \ - | fido | fr30 | frv \ - | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \ - | i370 | i860 | i960 | ia64 \ - | ip2k | iq2000 \ - | lm32 \ - | m32c | m32r | m32rle | m68000 | m68k | m88k \ - | maxq | mb | microblaze | mcore | mep | metag \ - | mips | mipsbe | mipseb | mipsel | mipsle \ - | mips16 \ - | mips64 | mips64el \ - | mips64octeon | mips64octeonel \ - | mips64orion | mips64orionel \ - | mips64r5900 | mips64r5900el \ - | mips64vr | mips64vrel \ - | mips64vr4100 | mips64vr4100el \ - | mips64vr4300 | mips64vr4300el \ - | mips64vr5000 | mips64vr5000el \ - | mips64vr5900 | mips64vr5900el \ - | mipsisa32 | mipsisa32el \ - | mipsisa32r2 | mipsisa32r2el \ - | mipsisa64 | mipsisa64el \ - | mipsisa64r2 | mipsisa64r2el \ - | mipsisa64sb1 | mipsisa64sb1el \ - | mipsisa64sr71k | mipsisa64sr71kel \ - | mipstx39 | mipstx39el \ - | mn10200 | mn10300 \ - | moxie \ - | mt \ - | msp430 \ - | nios | nios2 \ - | ns16k | ns32k \ - | or32 \ - | pdp10 | pdp11 | pj | pjl \ - | powerpc | powerpc64 | powerpc64le | powerpcle | ppcbe \ - | pyramid \ - | rx \ - | score \ - | sh | sh[1234] | sh[24]a | sh[24]aeb | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3ele \ - | sh64 | sh64le \ - | sparc | sparc64 | sparc64b | sparc64v | sparc86x | sparclet | sparclite \ - | sparcv8 | sparcv9 | sparcv9b | sparcv9v \ - | spu | strongarm \ - | tahoe | thumb | tic4x | tic80 | tron \ - | ubicom32 \ - | v850 | v850e \ - | we32k \ - | x86 | xc16x | xscale | xscalee[bl] | xstormy16 | xtensa \ - | z8k | z80) - basic_machine=$basic_machine-unknown - ;; - m6811 | m68hc11 | m6812 | m68hc12 | picochip) - # Motorola 68HC11/12. - basic_machine=$basic_machine-unknown - os=-none - ;; - m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | v70 | w65 | z8k) - ;; - ms1) - basic_machine=mt-unknown - ;; - - # We use `pc' rather than `unknown' - # because (1) that's what they normally are, and - # (2) the word "unknown" tends to confuse beginning users. - i*86 | x86_64) - basic_machine=$basic_machine-pc - ;; - # Object if more than one company name word. - *-*-*) - echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 - exit 1 - ;; - # Recognize the basic CPU types with company name. - 580-* \ - | a29k-* \ - | alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \ - | alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \ - | alphapca5[67]-* | alpha64pca5[67]-* | arc-* \ - | arm-* | armbe-* | armle-* | armeb-* | armv*-* \ - | avr-* | avr32-* \ - | bfin-* | bs2000-* \ - | c[123]* | c30-* | [cjt]90-* | c4x-* | c54x-* | c55x-* | c6x-* \ - | clipper-* | craynv-* | cydra-* \ - | d10v-* | d30v-* | dlx-* \ - | elxsi-* \ - | f30[01]-* | f700-* | fido-* | fr30-* | frv-* | fx80-* \ - | h8300-* | h8500-* \ - | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \ - | i*86-* | i860-* | i960-* | ia64-* \ - | ip2k-* | iq2000-* \ - | lm32-* \ - | m32c-* | m32r-* | m32rle-* \ - | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \ - | m88110-* | m88k-* | maxq-* | mcore-* | metag-* | microblaze-* \ - | mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \ - | mips16-* \ - | mips64-* | mips64el-* \ - | mips64octeon-* | mips64octeonel-* \ - | mips64orion-* | mips64orionel-* \ - | mips64r5900-* | mips64r5900el-* \ - | mips64vr-* | mips64vrel-* \ - | mips64vr4100-* | mips64vr4100el-* \ - | mips64vr4300-* | mips64vr4300el-* \ - | mips64vr5000-* | mips64vr5000el-* \ - | mips64vr5900-* | mips64vr5900el-* \ - | mipsisa32-* | mipsisa32el-* \ - | mipsisa32r2-* | mipsisa32r2el-* \ - | mipsisa64-* | mipsisa64el-* \ - | mipsisa64r2-* | mipsisa64r2el-* \ - | mipsisa64sb1-* | mipsisa64sb1el-* \ - | mipsisa64sr71k-* | mipsisa64sr71kel-* \ - | mipstx39-* | mipstx39el-* \ - | mmix-* \ - | mt-* \ - | msp430-* \ - | nios-* | nios2-* \ - | none-* | np1-* | ns16k-* | ns32k-* \ - | orion-* \ - | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \ - | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* | ppcbe-* \ - | pyramid-* \ - | romp-* | rs6000-* | rx-* \ - | sh-* | sh[1234]-* | sh[24]a-* | sh[24]aeb-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \ - | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \ - | sparc-* | sparc64-* | sparc64b-* | sparc64v-* | sparc86x-* | sparclet-* \ - | sparclite-* \ - | sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | strongarm-* | sv1-* | sx?-* \ - | tahoe-* | thumb-* \ - | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* | tile-* \ - | tron-* \ - | ubicom32-* \ - | v850-* | v850e-* | vax-* \ - | we32k-* \ - | x86-* | x86_64-* | xc16x-* | xps100-* | xscale-* | xscalee[bl]-* \ - | xstormy16-* | xtensa*-* \ - | ymp-* \ - | z8k-* | z80-*) - ;; - # Recognize the basic CPU types without company name, with glob match. - xtensa*) - basic_machine=$basic_machine-unknown - ;; - # Recognize the various machine names and aliases which stand - # for a CPU type and a company and sometimes even an OS. - 386bsd) - basic_machine=i386-unknown - os=-bsd - ;; - 3b1 | 7300 | 7300-att | att-7300 | pc7300 | safari | unixpc) - basic_machine=m68000-att - ;; - 3b*) - basic_machine=we32k-att - ;; - a29khif) - basic_machine=a29k-amd - os=-udi - ;; - abacus) - basic_machine=abacus-unknown - ;; - adobe68k) - basic_machine=m68010-adobe - os=-scout - ;; - alliant | fx80) - basic_machine=fx80-alliant - ;; - altos | altos3068) - basic_machine=m68k-altos - ;; - am29k) - basic_machine=a29k-none - os=-bsd - ;; - amd64) - basic_machine=x86_64-pc - ;; - amd64-*) - basic_machine=x86_64-`echo $basic_machine | sed 's/^[^-]*-//'` - ;; - amdahl) - basic_machine=580-amdahl - os=-sysv - ;; - amiga | amiga-*) - basic_machine=m68k-unknown - ;; - amigaos | amigados) - basic_machine=m68k-unknown - os=-amigaos - ;; - amigaunix | amix) - basic_machine=m68k-unknown - os=-sysv4 - ;; - apollo68) - basic_machine=m68k-apollo - os=-sysv - ;; - apollo68bsd) - basic_machine=m68k-apollo - os=-bsd - ;; - aros) - basic_machine=i386-pc - os=-aros - ;; - aux) - basic_machine=m68k-apple - os=-aux - ;; - balance) - basic_machine=ns32k-sequent - os=-dynix - ;; - blackfin) - basic_machine=bfin-unknown - os=-linux - ;; - blackfin-*) - basic_machine=bfin-`echo $basic_machine | sed 's/^[^-]*-//'` - os=-linux - ;; - bluegene*) - basic_machine=powerpc-ibm - os=-cnk - ;; - c90) - basic_machine=c90-cray - os=-unicos - ;; - cegcc) - basic_machine=arm-unknown - os=-cegcc - ;; - convex-c1) - basic_machine=c1-convex - os=-bsd - ;; - convex-c2) - basic_machine=c2-convex - os=-bsd - ;; - convex-c32) - basic_machine=c32-convex - os=-bsd - ;; - convex-c34) - basic_machine=c34-convex - os=-bsd - ;; - convex-c38) - basic_machine=c38-convex - os=-bsd - ;; - cray | j90) - basic_machine=j90-cray - os=-unicos - ;; - craynv) - basic_machine=craynv-cray - os=-unicosmp - ;; - cr16) - basic_machine=cr16-unknown - os=-elf - ;; - crds | unos) - basic_machine=m68k-crds - ;; - crisv32 | crisv32-* | etraxfs*) - basic_machine=crisv32-axis - ;; - cris | cris-* | etrax*) - basic_machine=cris-axis - ;; - crx) - basic_machine=crx-unknown - os=-elf - ;; - da30 | da30-*) - basic_machine=m68k-da30 - ;; - decstation | decstation-3100 | pmax | pmax-* | pmin | dec3100 | decstatn) - basic_machine=mips-dec - ;; - decsystem10* | dec10*) - basic_machine=pdp10-dec - os=-tops10 - ;; - decsystem20* | dec20*) - basic_machine=pdp10-dec - os=-tops20 - ;; - delta | 3300 | motorola-3300 | motorola-delta \ - | 3300-motorola | delta-motorola) - basic_machine=m68k-motorola - ;; - delta88) - basic_machine=m88k-motorola - os=-sysv3 - ;; - dicos) - basic_machine=i686-pc - os=-dicos - ;; - djgpp) - basic_machine=i586-pc - os=-msdosdjgpp - ;; - dpx20 | dpx20-*) - basic_machine=rs6000-bull - os=-bosx - ;; - dpx2* | dpx2*-bull) - basic_machine=m68k-bull - os=-sysv3 - ;; - ebmon29k) - basic_machine=a29k-amd - os=-ebmon - ;; - elxsi) - basic_machine=elxsi-elxsi - os=-bsd - ;; - encore | umax | mmax) - basic_machine=ns32k-encore - ;; - es1800 | OSE68k | ose68k | ose | OSE) - basic_machine=m68k-ericsson - os=-ose - ;; - fx2800) - basic_machine=i860-alliant - ;; - genix) - basic_machine=ns32k-ns - ;; - gmicro) - basic_machine=tron-gmicro - os=-sysv - ;; - go32) - basic_machine=i386-pc - os=-go32 - ;; - h3050r* | hiux*) - basic_machine=hppa1.1-hitachi - os=-hiuxwe2 - ;; - h8300hms) - basic_machine=h8300-hitachi - os=-hms - ;; - h8300xray) - basic_machine=h8300-hitachi - os=-xray - ;; - h8500hms) - basic_machine=h8500-hitachi - os=-hms - ;; - harris) - basic_machine=m88k-harris - os=-sysv3 - ;; - hp300-*) - basic_machine=m68k-hp - ;; - hp300bsd) - basic_machine=m68k-hp - os=-bsd - ;; - hp300hpux) - basic_machine=m68k-hp - os=-hpux - ;; - hp3k9[0-9][0-9] | hp9[0-9][0-9]) - basic_machine=hppa1.0-hp - ;; - hp9k2[0-9][0-9] | hp9k31[0-9]) - basic_machine=m68000-hp - ;; - hp9k3[2-9][0-9]) - basic_machine=m68k-hp - ;; - hp9k6[0-9][0-9] | hp6[0-9][0-9]) - basic_machine=hppa1.0-hp - ;; - hp9k7[0-79][0-9] | hp7[0-79][0-9]) - basic_machine=hppa1.1-hp - ;; - hp9k78[0-9] | hp78[0-9]) - # FIXME: really hppa2.0-hp - basic_machine=hppa1.1-hp - ;; - hp9k8[67]1 | hp8[67]1 | hp9k80[24] | hp80[24] | hp9k8[78]9 | hp8[78]9 | hp9k893 | hp893) - # FIXME: really hppa2.0-hp - basic_machine=hppa1.1-hp - ;; - hp9k8[0-9][13679] | hp8[0-9][13679]) - basic_machine=hppa1.1-hp - ;; - hp9k8[0-9][0-9] | hp8[0-9][0-9]) - basic_machine=hppa1.0-hp - ;; - hppa-next) - os=-nextstep3 - ;; - hppaosf) - basic_machine=hppa1.1-hp - os=-osf - ;; - hppro) - basic_machine=hppa1.1-hp - os=-proelf - ;; - i370-ibm* | ibm*) - basic_machine=i370-ibm - ;; -# I'm not sure what "Sysv32" means. Should this be sysv3.2? - i*86v32) - basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` - os=-sysv32 - ;; - i*86v4*) - basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` - os=-sysv4 - ;; - i*86v) - basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` - os=-sysv - ;; - i*86sol2) - basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` - os=-solaris2 - ;; - i386mach) - basic_machine=i386-mach - os=-mach - ;; - i386-vsta | vsta) - basic_machine=i386-unknown - os=-vsta - ;; - iris | iris4d) - basic_machine=mips-sgi - case $os in - -irix*) - ;; - *) - os=-irix4 - ;; - esac - ;; - isi68 | isi) - basic_machine=m68k-isi - os=-sysv - ;; - m68knommu) - basic_machine=m68k-unknown - os=-linux - ;; - m68knommu-*) - basic_machine=m68k-`echo $basic_machine | sed 's/^[^-]*-//'` - os=-linux - ;; - m88k-omron*) - basic_machine=m88k-omron - ;; - magnum | m3230) - basic_machine=mips-mips - os=-sysv - ;; - merlin) - basic_machine=ns32k-utek - os=-sysv - ;; - microblaze) - basic_machine=microblaze-xilinx - ;; - mingw32) - basic_machine=i386-pc - os=-mingw32 - ;; - mingw32ce) - basic_machine=arm-unknown - os=-mingw32ce - ;; - miniframe) - basic_machine=m68000-convergent - ;; - *mint | -mint[0-9]* | *MiNT | *MiNT[0-9]*) - basic_machine=m68k-atari - os=-mint - ;; - mips3*-*) - basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'` - ;; - mips3*) - basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`-unknown - ;; - monitor) - basic_machine=m68k-rom68k - os=-coff - ;; - morphos) - basic_machine=powerpc-unknown - os=-morphos - ;; - msdos) - basic_machine=i386-pc - os=-msdos - ;; - ms1-*) - basic_machine=`echo $basic_machine | sed -e 's/ms1-/mt-/'` - ;; - mvs) - basic_machine=i370-ibm - os=-mvs - ;; - ncr3000) - basic_machine=i486-ncr - os=-sysv4 - ;; - netbsd386) - basic_machine=i386-unknown - os=-netbsd - ;; - netwinder) - basic_machine=armv4l-rebel - os=-linux - ;; - news | news700 | news800 | news900) - basic_machine=m68k-sony - os=-newsos - ;; - news1000) - basic_machine=m68030-sony - os=-newsos - ;; - news-3600 | risc-news) - basic_machine=mips-sony - os=-newsos - ;; - necv70) - basic_machine=v70-nec - os=-sysv - ;; - next | m*-next ) - basic_machine=m68k-next - case $os in - -nextstep* ) - ;; - -ns2*) - os=-nextstep2 - ;; - *) - os=-nextstep3 - ;; - esac - ;; - nh3000) - basic_machine=m68k-harris - os=-cxux - ;; - nh[45]000) - basic_machine=m88k-harris - os=-cxux - ;; - nindy960) - basic_machine=i960-intel - os=-nindy - ;; - mon960) - basic_machine=i960-intel - os=-mon960 - ;; - nonstopux) - basic_machine=mips-compaq - os=-nonstopux - ;; - np1) - basic_machine=np1-gould - ;; - nsr-tandem) - basic_machine=nsr-tandem - ;; - op50n-* | op60c-*) - basic_machine=hppa1.1-oki - os=-proelf - ;; - openrisc | openrisc-*) - basic_machine=or32-unknown - ;; - os400) - basic_machine=powerpc-ibm - os=-os400 - ;; - OSE68000 | ose68000) - basic_machine=m68000-ericsson - os=-ose - ;; - os68k) - basic_machine=m68k-none - os=-os68k - ;; - pa-hitachi) - basic_machine=hppa1.1-hitachi - os=-hiuxwe2 - ;; - paragon) - basic_machine=i860-intel - os=-osf - ;; - parisc) - basic_machine=hppa-unknown - os=-linux - ;; - parisc-*) - basic_machine=hppa-`echo $basic_machine | sed 's/^[^-]*-//'` - os=-linux - ;; - pbd) - basic_machine=sparc-tti - ;; - pbb) - basic_machine=m68k-tti - ;; - pc532 | pc532-*) - basic_machine=ns32k-pc532 - ;; - pc98) - basic_machine=i386-pc - ;; - pc98-*) - basic_machine=i386-`echo $basic_machine | sed 's/^[^-]*-//'` - ;; - pentium | p5 | k5 | k6 | nexgen | viac3) - basic_machine=i586-pc - ;; - pentiumpro | p6 | 6x86 | athlon | athlon_*) - basic_machine=i686-pc - ;; - pentiumii | pentium2 | pentiumiii | pentium3) - basic_machine=i686-pc - ;; - pentium4) - basic_machine=i786-pc - ;; - pentium-* | p5-* | k5-* | k6-* | nexgen-* | viac3-*) - basic_machine=i586-`echo $basic_machine | sed 's/^[^-]*-//'` - ;; - pentiumpro-* | p6-* | 6x86-* | athlon-*) - basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` - ;; - pentiumii-* | pentium2-* | pentiumiii-* | pentium3-*) - basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` - ;; - pentium4-*) - basic_machine=i786-`echo $basic_machine | sed 's/^[^-]*-//'` - ;; - pn) - basic_machine=pn-gould - ;; - power) basic_machine=power-ibm - ;; - ppc) basic_machine=powerpc-unknown - ;; - ppc-*) basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'` - ;; - ppcle | powerpclittle | ppc-le | powerpc-little) - basic_machine=powerpcle-unknown - ;; - ppcle-* | powerpclittle-*) - basic_machine=powerpcle-`echo $basic_machine | sed 's/^[^-]*-//'` - ;; - ppc64) basic_machine=powerpc64-unknown - ;; - ppc64-*) basic_machine=powerpc64-`echo $basic_machine | sed 's/^[^-]*-//'` - ;; - ppc64le | powerpc64little | ppc64-le | powerpc64-little) - basic_machine=powerpc64le-unknown - ;; - ppc64le-* | powerpc64little-*) - basic_machine=powerpc64le-`echo $basic_machine | sed 's/^[^-]*-//'` - ;; - ps2) - basic_machine=i386-ibm - ;; - pw32) - basic_machine=i586-unknown - os=-pw32 - ;; - rdos) - basic_machine=i386-pc - os=-rdos - ;; - rom68k) - basic_machine=m68k-rom68k - os=-coff - ;; - rm[46]00) - basic_machine=mips-siemens - ;; - rtpc | rtpc-*) - basic_machine=romp-ibm - ;; - s390 | s390-*) - basic_machine=s390-ibm - ;; - s390x | s390x-*) - basic_machine=s390x-ibm - ;; - sa29200) - basic_machine=a29k-amd - os=-udi - ;; - sb1) - basic_machine=mipsisa64sb1-unknown - ;; - sb1el) - basic_machine=mipsisa64sb1el-unknown - ;; - sde) - basic_machine=mipsisa32-sde - os=-elf - ;; - sei) - basic_machine=mips-sei - os=-seiux - ;; - sequent) - basic_machine=i386-sequent - ;; - sh) - basic_machine=sh-hitachi - os=-hms - ;; - sh5el) - basic_machine=sh5le-unknown - ;; - sh64) - basic_machine=sh64-unknown - ;; - sparclite-wrs | simso-wrs) - basic_machine=sparclite-wrs - os=-vxworks - ;; - sps7) - basic_machine=m68k-bull - os=-sysv2 - ;; - spur) - basic_machine=spur-unknown - ;; - st2000) - basic_machine=m68k-tandem - ;; - stratus) - basic_machine=i860-stratus - os=-sysv4 - ;; - sun2) - basic_machine=m68000-sun - ;; - sun2os3) - basic_machine=m68000-sun - os=-sunos3 - ;; - sun2os4) - basic_machine=m68000-sun - os=-sunos4 - ;; - sun3os3) - basic_machine=m68k-sun - os=-sunos3 - ;; - sun3os4) - basic_machine=m68k-sun - os=-sunos4 - ;; - sun4os3) - basic_machine=sparc-sun - os=-sunos3 - ;; - sun4os4) - basic_machine=sparc-sun - os=-sunos4 - ;; - sun4sol2) - basic_machine=sparc-sun - os=-solaris2 - ;; - sun3 | sun3-*) - basic_machine=m68k-sun - ;; - sun4) - basic_machine=sparc-sun - ;; - sun386 | sun386i | roadrunner) - basic_machine=i386-sun - ;; - sv1) - basic_machine=sv1-cray - os=-unicos - ;; - symmetry) - basic_machine=i386-sequent - os=-dynix - ;; - t3e) - basic_machine=alphaev5-cray - os=-unicos - ;; - t90) - basic_machine=t90-cray - os=-unicos - ;; - tic54x | c54x*) - basic_machine=tic54x-unknown - os=-coff - ;; - tic55x | c55x*) - basic_machine=tic55x-unknown - os=-coff - ;; - tic6x | c6x*) - basic_machine=tic6x-unknown - os=-coff - ;; - tile*) - basic_machine=tile-unknown - os=-linux-gnu - ;; - tx39) - basic_machine=mipstx39-unknown - ;; - tx39el) - basic_machine=mipstx39el-unknown - ;; - toad1) - basic_machine=pdp10-xkl - os=-tops20 - ;; - tower | tower-32) - basic_machine=m68k-ncr - ;; - tpf) - basic_machine=s390x-ibm - os=-tpf - ;; - udi29k) - basic_machine=a29k-amd - os=-udi - ;; - ultra3) - basic_machine=a29k-nyu - os=-sym1 - ;; - v810 | necv810) - basic_machine=v810-nec - os=-none - ;; - vaxv) - basic_machine=vax-dec - os=-sysv - ;; - vms) - basic_machine=vax-dec - os=-vms - ;; - vpp*|vx|vx-*) - basic_machine=f301-fujitsu - ;; - vxworks960) - basic_machine=i960-wrs - os=-vxworks - ;; - vxworks68) - basic_machine=m68k-wrs - os=-vxworks - ;; - vxworks29k) - basic_machine=a29k-wrs - os=-vxworks - ;; - w65*) - basic_machine=w65-wdc - os=-none - ;; - w89k-*) - basic_machine=hppa1.1-winbond - os=-proelf - ;; - xbox) - basic_machine=i686-pc - os=-mingw32 - ;; - xps | xps100) - basic_machine=xps100-honeywell - ;; - ymp) - basic_machine=ymp-cray - os=-unicos - ;; - z8k-*-coff) - basic_machine=z8k-unknown - os=-sim - ;; - z80-*-coff) - basic_machine=z80-unknown - os=-sim - ;; - none) - basic_machine=none-none - os=-none - ;; - -# Here we handle the default manufacturer of certain CPU types. It is in -# some cases the only manufacturer, in others, it is the most popular. - w89k) - basic_machine=hppa1.1-winbond - ;; - op50n) - basic_machine=hppa1.1-oki - ;; - op60c) - basic_machine=hppa1.1-oki - ;; - romp) - basic_machine=romp-ibm - ;; - mmix) - basic_machine=mmix-knuth - ;; - rs6000) - basic_machine=rs6000-ibm - ;; - vax) - basic_machine=vax-dec - ;; - pdp10) - # there are many clones, so DEC is not a safe bet - basic_machine=pdp10-unknown - ;; - pdp11) - basic_machine=pdp11-dec - ;; - we32k) - basic_machine=we32k-att - ;; - sh[1234] | sh[24]a | sh[24]aeb | sh[34]eb | sh[1234]le | sh[23]ele) - basic_machine=sh-unknown - ;; - sparc | sparcv8 | sparcv9 | sparcv9b | sparcv9v) - basic_machine=sparc-sun - ;; - cydra) - basic_machine=cydra-cydrome - ;; - orion) - basic_machine=orion-highlevel - ;; - orion105) - basic_machine=clipper-highlevel - ;; - mac | mpw | mac-mpw) - basic_machine=m68k-apple - ;; - pmac | pmac-mpw) - basic_machine=powerpc-apple - ;; - *-unknown) - # Make sure to match an already-canonicalized machine name. - ;; - *) - echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 - exit 1 - ;; -esac - -# Here we canonicalize certain aliases for manufacturers. -case $basic_machine in - *-digital*) - basic_machine=`echo $basic_machine | sed 's/digital.*/dec/'` - ;; - *-commodore*) - basic_machine=`echo $basic_machine | sed 's/commodore.*/cbm/'` - ;; - *) - ;; -esac - -# Decode manufacturer-specific aliases for certain operating systems. - -if [ x"$os" != x"" ] -then -case $os in - # First match some system type aliases - # that might get confused with valid system types. - # -solaris* is a basic system type, with this one exception. - -auroraux) - os=-auroraux - ;; - -solaris1 | -solaris1.*) - os=`echo $os | sed -e 's|solaris1|sunos4|'` - ;; - -solaris) - os=-solaris2 - ;; - -svr4*) - os=-sysv4 - ;; - -unixware*) - os=-sysv4.2uw - ;; - -gnu/linux*) - os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'` - ;; - # First accept the basic system types. - # The portable systems comes first. - # Each alternative MUST END IN A *, to match a version number. - # -sysv* is not here because it comes later, after sysvr4. - -gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \ - | -*vms* | -sco* | -esix* | -isc* | -aix* | -cnk* | -sunos | -sunos[34]*\ - | -hpux* | -unos* | -osf* | -luna* | -dgux* | -auroraux* | -solaris* \ - | -sym* | -kopensolaris* \ - | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \ - | -aos* | -aros* \ - | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \ - | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \ - | -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* \ - | -openbsd* | -solidbsd* \ - | -ekkobsd* | -kfreebsd* | -freebsd* | -riscix* | -lynxos* \ - | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \ - | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \ - | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \ - | -chorusos* | -chorusrdb* | -cegcc* \ - | -cygwin* | -pe* | -psos* | -moss* | -proelf* | -rtems* \ - | -mingw32* | -linux-gnu* | -linux-newlib* | -linux-uclibc* \ - | -uxpv* | -beos* | -mpeix* | -udk* \ - | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \ - | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \ - | -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* \ - | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \ - | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \ - | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \ - | -skyos* | -haiku* | -rdos* | -toppers* | -drops* | -es*) - # Remember, each alternative MUST END IN *, to match a version number. - ;; - -qnx*) - case $basic_machine in - x86-* | i*86-*) - ;; - *) - os=-nto$os - ;; - esac - ;; - -nto-qnx*) - ;; - -nto*) - os=`echo $os | sed -e 's|nto|nto-qnx|'` - ;; - -sim | -es1800* | -hms* | -xray | -os68k* | -none* | -v88r* \ - | -windows* | -osx | -abug | -netware* | -os9* | -beos* | -haiku* \ - | -macos* | -mpw* | -magic* | -mmixware* | -mon960* | -lnews*) - ;; - -mac*) - os=`echo $os | sed -e 's|mac|macos|'` - ;; - -linux-dietlibc) - os=-linux-dietlibc - ;; - -linux*) - os=`echo $os | sed -e 's|linux|linux-gnu|'` - ;; - -sunos5*) - os=`echo $os | sed -e 's|sunos5|solaris2|'` - ;; - -sunos6*) - os=`echo $os | sed -e 's|sunos6|solaris3|'` - ;; - -opened*) - os=-openedition - ;; - -os400*) - os=-os400 - ;; - -wince*) - os=-wince - ;; - -osfrose*) - os=-osfrose - ;; - -osf*) - os=-osf - ;; - -utek*) - os=-bsd - ;; - -dynix*) - os=-bsd - ;; - -acis*) - os=-aos - ;; - -atheos*) - os=-atheos - ;; - -syllable*) - os=-syllable - ;; - -386bsd) - os=-bsd - ;; - -ctix* | -uts*) - os=-sysv - ;; - -nova*) - os=-rtmk-nova - ;; - -ns2 ) - os=-nextstep2 - ;; - -nsk*) - os=-nsk - ;; - # Preserve the version number of sinix5. - -sinix5.*) - os=`echo $os | sed -e 's|sinix|sysv|'` - ;; - -sinix*) - os=-sysv4 - ;; - -tpf*) - os=-tpf - ;; - -triton*) - os=-sysv3 - ;; - -oss*) - os=-sysv3 - ;; - -svr4) - os=-sysv4 - ;; - -svr3) - os=-sysv3 - ;; - -sysvr4) - os=-sysv4 - ;; - # This must come after -sysvr4. - -sysv*) - ;; - -ose*) - os=-ose - ;; - -es1800*) - os=-ose - ;; - -xenix) - os=-xenix - ;; - -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) - os=-mint - ;; - -aros*) - os=-aros - ;; - -kaos*) - os=-kaos - ;; - -zvmoe) - os=-zvmoe - ;; - -dicos*) - os=-dicos - ;; - -none) - ;; - *) - # Get rid of the `-' at the beginning of $os. - os=`echo $os | sed 's/[^-]*-//'` - echo Invalid configuration \`$1\': system \`$os\' not recognized 1>&2 - exit 1 - ;; -esac -else - -# Here we handle the default operating systems that come with various machines. -# The value should be what the vendor currently ships out the door with their -# machine or put another way, the most popular os provided with the machine. - -# Note that if you're going to try to match "-MANUFACTURER" here (say, -# "-sun"), then you have to tell the case statement up towards the top -# that MANUFACTURER isn't an operating system. Otherwise, code above -# will signal an error saying that MANUFACTURER isn't an operating -# system, and we'll never get to this point. - -case $basic_machine in - score-*) - os=-elf - ;; - spu-*) - os=-elf - ;; - *-acorn) - os=-riscix1.2 - ;; - arm*-rebel) - os=-linux - ;; - arm*-semi) - os=-aout - ;; - c4x-* | tic4x-*) - os=-coff - ;; - # This must come before the *-dec entry. - pdp10-*) - os=-tops20 - ;; - pdp11-*) - os=-none - ;; - *-dec | vax-*) - os=-ultrix4.2 - ;; - m68*-apollo) - os=-domain - ;; - i386-sun) - os=-sunos4.0.2 - ;; - m68000-sun) - os=-sunos3 - # This also exists in the configure program, but was not the - # default. - # os=-sunos4 - ;; - m68*-cisco) - os=-aout - ;; - mep-*) - os=-elf - ;; - mips*-cisco) - os=-elf - ;; - mips*-*) - os=-elf - ;; - or32-*) - os=-coff - ;; - *-tti) # must be before sparc entry or we get the wrong os. - os=-sysv3 - ;; - sparc-* | *-sun) - os=-sunos4.1.1 - ;; - *-be) - os=-beos - ;; - *-haiku) - os=-haiku - ;; - *-ibm) - os=-aix - ;; - *-knuth) - os=-mmixware - ;; - *-wec) - os=-proelf - ;; - *-winbond) - os=-proelf - ;; - *-oki) - os=-proelf - ;; - *-hp) - os=-hpux - ;; - *-hitachi) - os=-hiux - ;; - i860-* | *-att | *-ncr | *-altos | *-motorola | *-convergent) - os=-sysv - ;; - *-cbm) - os=-amigaos - ;; - *-dg) - os=-dgux - ;; - *-dolphin) - os=-sysv3 - ;; - m68k-ccur) - os=-rtu - ;; - m88k-omron*) - os=-luna - ;; - *-next ) - os=-nextstep - ;; - *-sequent) - os=-ptx - ;; - *-crds) - os=-unos - ;; - *-ns) - os=-genix - ;; - i370-*) - os=-mvs - ;; - *-next) - os=-nextstep3 - ;; - *-gould) - os=-sysv - ;; - *-highlevel) - os=-bsd - ;; - *-encore) - os=-bsd - ;; - *-sgi) - os=-irix - ;; - *-siemens) - os=-sysv4 - ;; - *-masscomp) - os=-rtu - ;; - f30[01]-fujitsu | f700-fujitsu) - os=-uxpv - ;; - *-rom68k) - os=-coff - ;; - *-*bug) - os=-coff - ;; - *-apple) - os=-macos - ;; - *-atari*) - os=-mint - ;; - *) - os=-none - ;; -esac -fi - -# Here we handle the case where we know the os, and the CPU type, but not the -# manufacturer. We pick the logical manufacturer. -vendor=unknown -case $basic_machine in - *-unknown) - case $os in - -riscix*) - vendor=acorn - ;; - -sunos*) - vendor=sun - ;; - -cnk*|-aix*) - vendor=ibm - ;; - -beos*) - vendor=be - ;; - -hpux*) - vendor=hp - ;; - -mpeix*) - vendor=hp - ;; - -hiux*) - vendor=hitachi - ;; - -unos*) - vendor=crds - ;; - -dgux*) - vendor=dg - ;; - -luna*) - vendor=omron - ;; - -genix*) - vendor=ns - ;; - -mvs* | -opened*) - vendor=ibm - ;; - -os400*) - vendor=ibm - ;; - -ptx*) - vendor=sequent - ;; - -tpf*) - vendor=ibm - ;; - -vxsim* | -vxworks* | -windiss*) - vendor=wrs - ;; - -aux*) - vendor=apple - ;; - -hms*) - vendor=hitachi - ;; - -mpw* | -macos*) - vendor=apple - ;; - -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) - vendor=atari - ;; - -vos*) - vendor=stratus - ;; - esac - basic_machine=`echo $basic_machine | sed "s/unknown/$vendor/"` - ;; -esac - -echo $basic_machine$os -exit - -# Local variables: -# eval: (add-hook 'write-file-hooks 'time-stamp) -# time-stamp-start: "timestamp='" -# time-stamp-format: "%:y-%02m-%02d" -# time-stamp-end: "'" -# End: diff -Nru fcitx-4.0.1/configure fcitx-4.1.1/configure --- fcitx-4.0.1/configure 2010-12-17 04:26:32.000000000 +0000 +++ fcitx-4.1.1/configure 1970-01-01 00:00:00.000000000 +0000 @@ -1,18564 +0,0 @@ -#! /bin/sh -# Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.68. -# -# -# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, -# 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software -# Foundation, Inc. -# -# -# This configure script is free software; the Free Software Foundation -# gives unlimited permission to copy, distribute and modify it. -## -------------------- ## -## M4sh Initialization. ## -## -------------------- ## - -# Be more Bourne compatible -DUALCASE=1; export DUALCASE # for MKS sh -if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : - emulate sh - NULLCMD=: - # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which - # is contrary to our usage. Disable this feature. - alias -g '${1+"$@"}'='"$@"' - setopt NO_GLOB_SUBST -else - case `(set -o) 2>/dev/null` in #( - *posix*) : - set -o posix ;; #( - *) : - ;; -esac -fi - - -as_nl=' -' -export as_nl -# Printing a long string crashes Solaris 7 /usr/bin/printf. -as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' -as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo -as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo -# Prefer a ksh shell builtin over an external printf program on Solaris, -# but without wasting forks for bash or zsh. -if test -z "$BASH_VERSION$ZSH_VERSION" \ - && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then - as_echo='print -r --' - as_echo_n='print -rn --' -elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then - as_echo='printf %s\n' - as_echo_n='printf %s' -else - if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then - as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' - as_echo_n='/usr/ucb/echo -n' - else - as_echo_body='eval expr "X$1" : "X\\(.*\\)"' - as_echo_n_body='eval - arg=$1; - case $arg in #( - *"$as_nl"*) - expr "X$arg" : "X\\(.*\\)$as_nl"; - arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; - esac; - expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" - ' - export as_echo_n_body - as_echo_n='sh -c $as_echo_n_body as_echo' - fi - export as_echo_body - as_echo='sh -c $as_echo_body as_echo' -fi - -# The user is always right. -if test "${PATH_SEPARATOR+set}" != set; then - PATH_SEPARATOR=: - (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { - (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || - PATH_SEPARATOR=';' - } -fi - - -# IFS -# We need space, tab and new line, in precisely that order. Quoting is -# there to prevent editors from complaining about space-tab. -# (If _AS_PATH_WALK were called with IFS unset, it would disable word -# splitting by setting IFS to empty value.) -IFS=" "" $as_nl" - -# Find who we are. Look in the path if we contain no directory separator. -as_myself= -case $0 in #(( - *[\\/]* ) as_myself=$0 ;; - *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break - done -IFS=$as_save_IFS - - ;; -esac -# We did not find ourselves, most probably we were run as `sh COMMAND' -# in which case we are not to be found in the path. -if test "x$as_myself" = x; then - as_myself=$0 -fi -if test ! -f "$as_myself"; then - $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 - exit 1 -fi - -# Unset variables that we do not need and which cause bugs (e.g. in -# pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" -# suppresses any "Segmentation fault" message there. '((' could -# trigger a bug in pdksh 5.2.14. -for as_var in BASH_ENV ENV MAIL MAILPATH -do eval test x\${$as_var+set} = xset \ - && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : -done -PS1='$ ' -PS2='> ' -PS4='+ ' - -# NLS nuisances. -LC_ALL=C -export LC_ALL -LANGUAGE=C -export LANGUAGE - -# CDPATH. -(unset CDPATH) >/dev/null 2>&1 && unset CDPATH - -if test "x$CONFIG_SHELL" = x; then - as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then : - emulate sh - NULLCMD=: - # Pre-4.2 versions of Zsh do word splitting on \${1+\"\$@\"}, which - # is contrary to our usage. Disable this feature. - alias -g '\${1+\"\$@\"}'='\"\$@\"' - setopt NO_GLOB_SUBST -else - case \`(set -o) 2>/dev/null\` in #( - *posix*) : - set -o posix ;; #( - *) : - ;; -esac -fi -" - as_required="as_fn_return () { (exit \$1); } -as_fn_success () { as_fn_return 0; } -as_fn_failure () { as_fn_return 1; } -as_fn_ret_success () { return 0; } -as_fn_ret_failure () { return 1; } - -exitcode=0 -as_fn_success || { exitcode=1; echo as_fn_success failed.; } -as_fn_failure && { exitcode=1; echo as_fn_failure succeeded.; } -as_fn_ret_success || { exitcode=1; echo as_fn_ret_success failed.; } -as_fn_ret_failure && { exitcode=1; echo as_fn_ret_failure succeeded.; } -if ( set x; as_fn_ret_success y && test x = \"\$1\" ); then : - -else - exitcode=1; echo positional parameters were not saved. -fi -test x\$exitcode = x0 || exit 1" - as_suggested=" as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO - as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO - eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" && - test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1 - - test -n \"\${ZSH_VERSION+set}\${BASH_VERSION+set}\" || ( - ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' - ECHO=\$ECHO\$ECHO\$ECHO\$ECHO\$ECHO - ECHO=\$ECHO\$ECHO\$ECHO\$ECHO\$ECHO\$ECHO - PATH=/empty FPATH=/empty; export PATH FPATH - test \"X\`printf %s \$ECHO\`\" = \"X\$ECHO\" \\ - || test \"X\`print -r -- \$ECHO\`\" = \"X\$ECHO\" ) || exit 1 -test \$(( 1 + 1 )) = 2 || exit 1" - if (eval "$as_required") 2>/dev/null; then : - as_have_required=yes -else - as_have_required=no -fi - if test x$as_have_required = xyes && (eval "$as_suggested") 2>/dev/null; then : - -else - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -as_found=false -for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - as_found=: - case $as_dir in #( - /*) - for as_base in sh bash ksh sh5; do - # Try only shells that exist, to save several forks. - as_shell=$as_dir/$as_base - if { test -f "$as_shell" || test -f "$as_shell.exe"; } && - { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$as_shell"; } 2>/dev/null; then : - CONFIG_SHELL=$as_shell as_have_required=yes - if { $as_echo "$as_bourne_compatible""$as_suggested" | as_run=a "$as_shell"; } 2>/dev/null; then : - break 2 -fi -fi - done;; - esac - as_found=false -done -$as_found || { if { test -f "$SHELL" || test -f "$SHELL.exe"; } && - { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$SHELL"; } 2>/dev/null; then : - CONFIG_SHELL=$SHELL as_have_required=yes -fi; } -IFS=$as_save_IFS - - - if test "x$CONFIG_SHELL" != x; then : - # We cannot yet assume a decent shell, so we have to provide a - # neutralization value for shells without unset; and this also - # works around shells that cannot unset nonexistent variables. - # Preserve -v and -x to the replacement shell. - BASH_ENV=/dev/null - ENV=/dev/null - (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV - export CONFIG_SHELL - case $- in # (((( - *v*x* | *x*v* ) as_opts=-vx ;; - *v* ) as_opts=-v ;; - *x* ) as_opts=-x ;; - * ) as_opts= ;; - esac - exec "$CONFIG_SHELL" $as_opts "$as_myself" ${1+"$@"} -fi - - if test x$as_have_required = xno; then : - $as_echo "$0: This script requires a shell more modern than all" - $as_echo "$0: the shells that I found on your system." - if test x${ZSH_VERSION+set} = xset ; then - $as_echo "$0: In particular, zsh $ZSH_VERSION has bugs and should" - $as_echo "$0: be upgraded to zsh 4.3.4 or later." - else - $as_echo "$0: Please tell bug-autoconf@gnu.org about your system, -$0: including any error possibly output before this -$0: message. Then install a modern shell, or manually run -$0: the script under such a shell if you do have one." - fi - exit 1 -fi -fi -fi -SHELL=${CONFIG_SHELL-/bin/sh} -export SHELL -# Unset more variables known to interfere with behavior of common tools. -CLICOLOR_FORCE= GREP_OPTIONS= -unset CLICOLOR_FORCE GREP_OPTIONS - -## --------------------- ## -## M4sh Shell Functions. ## -## --------------------- ## -# as_fn_unset VAR -# --------------- -# Portably unset VAR. -as_fn_unset () -{ - { eval $1=; unset $1;} -} -as_unset=as_fn_unset - -# as_fn_set_status STATUS -# ----------------------- -# Set $? to STATUS, without forking. -as_fn_set_status () -{ - return $1 -} # as_fn_set_status - -# as_fn_exit STATUS -# ----------------- -# Exit the shell with STATUS, even in a "trap 0" or "set -e" context. -as_fn_exit () -{ - set +e - as_fn_set_status $1 - exit $1 -} # as_fn_exit - -# as_fn_mkdir_p -# ------------- -# Create "$as_dir" as a directory, including parents if necessary. -as_fn_mkdir_p () -{ - - case $as_dir in #( - -*) as_dir=./$as_dir;; - esac - test -d "$as_dir" || eval $as_mkdir_p || { - as_dirs= - while :; do - case $as_dir in #( - *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( - *) as_qdir=$as_dir;; - esac - as_dirs="'$as_qdir' $as_dirs" - as_dir=`$as_dirname -- "$as_dir" || -$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$as_dir" : 'X\(//\)[^/]' \| \ - X"$as_dir" : 'X\(//\)$' \| \ - X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || -$as_echo X"$as_dir" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ - s//\1/ - q - } - /^X\(\/\/\)[^/].*/{ - s//\1/ - q - } - /^X\(\/\/\)$/{ - s//\1/ - q - } - /^X\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q'` - test -d "$as_dir" && break - done - test -z "$as_dirs" || eval "mkdir $as_dirs" - } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" - - -} # as_fn_mkdir_p -# as_fn_append VAR VALUE -# ---------------------- -# Append the text in VALUE to the end of the definition contained in VAR. Take -# advantage of any shell optimizations that allow amortized linear growth over -# repeated appends, instead of the typical quadratic growth present in naive -# implementations. -if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : - eval 'as_fn_append () - { - eval $1+=\$2 - }' -else - as_fn_append () - { - eval $1=\$$1\$2 - } -fi # as_fn_append - -# as_fn_arith ARG... -# ------------------ -# Perform arithmetic evaluation on the ARGs, and store the result in the -# global $as_val. Take advantage of shells that can avoid forks. The arguments -# must be portable across $(()) and expr. -if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : - eval 'as_fn_arith () - { - as_val=$(( $* )) - }' -else - as_fn_arith () - { - as_val=`expr "$@" || test $? -eq 1` - } -fi # as_fn_arith - - -# as_fn_error STATUS ERROR [LINENO LOG_FD] -# ---------------------------------------- -# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are -# provided, also output the error to LOG_FD, referencing LINENO. Then exit the -# script with STATUS, using 1 if that was 0. -as_fn_error () -{ - as_status=$1; test $as_status -eq 0 && as_status=1 - if test "$4"; then - as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 - fi - $as_echo "$as_me: error: $2" >&2 - as_fn_exit $as_status -} # as_fn_error - -if expr a : '\(a\)' >/dev/null 2>&1 && - test "X`expr 00001 : '.*\(...\)'`" = X001; then - as_expr=expr -else - as_expr=false -fi - -if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then - as_basename=basename -else - as_basename=false -fi - -if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then - as_dirname=dirname -else - as_dirname=false -fi - -as_me=`$as_basename -- "$0" || -$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ - X"$0" : 'X\(//\)$' \| \ - X"$0" : 'X\(/\)' \| . 2>/dev/null || -$as_echo X/"$0" | - sed '/^.*\/\([^/][^/]*\)\/*$/{ - s//\1/ - q - } - /^X\/\(\/\/\)$/{ - s//\1/ - q - } - /^X\/\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q'` - -# Avoid depending upon Character Ranges. -as_cr_letters='abcdefghijklmnopqrstuvwxyz' -as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' -as_cr_Letters=$as_cr_letters$as_cr_LETTERS -as_cr_digits='0123456789' -as_cr_alnum=$as_cr_Letters$as_cr_digits - - - as_lineno_1=$LINENO as_lineno_1a=$LINENO - as_lineno_2=$LINENO as_lineno_2a=$LINENO - eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" && - test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || { - # Blame Lee E. McMahon (1931-1989) for sed's syntax. :-) - sed -n ' - p - /[$]LINENO/= - ' <$as_myself | - sed ' - s/[$]LINENO.*/&-/ - t lineno - b - :lineno - N - :loop - s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/ - t loop - s/-\n.*// - ' >$as_me.lineno && - chmod +x "$as_me.lineno" || - { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; } - - # Don't try to exec as it changes $[0], causing all sort of problems - # (the dirname of $[0] is not the place where we might find the - # original and so on. Autoconf is especially sensitive to this). - . "./$as_me.lineno" - # Exit status is that of the last command. - exit -} - -ECHO_C= ECHO_N= ECHO_T= -case `echo -n x` in #((((( --n*) - case `echo 'xy\c'` in - *c*) ECHO_T=' ';; # ECHO_T is single tab character. - xy) ECHO_C='\c';; - *) echo `echo ksh88 bug on AIX 6.1` > /dev/null - ECHO_T=' ';; - esac;; -*) - ECHO_N='-n';; -esac - -rm -f conf$$ conf$$.exe conf$$.file -if test -d conf$$.dir; then - rm -f conf$$.dir/conf$$.file -else - rm -f conf$$.dir - mkdir conf$$.dir 2>/dev/null -fi -if (echo >conf$$.file) 2>/dev/null; then - if ln -s conf$$.file conf$$ 2>/dev/null; then - as_ln_s='ln -s' - # ... but there are two gotchas: - # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. - # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. - # In both cases, we have to default to `cp -p'. - ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || - as_ln_s='cp -p' - elif ln conf$$.file conf$$ 2>/dev/null; then - as_ln_s=ln - else - as_ln_s='cp -p' - fi -else - as_ln_s='cp -p' -fi -rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file -rmdir conf$$.dir 2>/dev/null - -if mkdir -p . 2>/dev/null; then - as_mkdir_p='mkdir -p "$as_dir"' -else - test -d ./-p && rmdir ./-p - as_mkdir_p=false -fi - -if test -x / >/dev/null 2>&1; then - as_test_x='test -x' -else - if ls -dL / >/dev/null 2>&1; then - as_ls_L_option=L - else - as_ls_L_option= - fi - as_test_x=' - eval sh -c '\'' - if test -d "$1"; then - test -d "$1/."; - else - case $1 in #( - -*)set "./$1";; - esac; - case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in #(( - ???[sx]*):;;*)false;;esac;fi - '\'' sh - ' -fi -as_executable_p=$as_test_x - -# Sed expression to map a string onto a valid CPP name. -as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" - -# Sed expression to map a string onto a valid variable name. -as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" - -SHELL=${CONFIG_SHELL-/bin/sh} - - -test -n "$DJDIR" || exec 7<&0 &1 - -# Name of the host. -# hostname on some systems (SVR3.2, old GNU/Linux) returns a bogus exit status, -# so uname gets run too. -ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q` - -# -# Initializations. -# -ac_default_prefix=/usr/local -ac_clean_files= -ac_config_libobj_dir=. -LIBOBJS= -cross_compiling=no -subdirs= -MFLAGS= -MAKEFLAGS= - -# Identity of this package. -PACKAGE_NAME= -PACKAGE_TARNAME= -PACKAGE_VERSION= -PACKAGE_STRING= -PACKAGE_BUGREPORT= -PACKAGE_URL= - -ac_unique_file="src/core/main.c" -# Factoring default headers for most tests. -ac_includes_default="\ -#include -#ifdef HAVE_SYS_TYPES_H -# include -#endif -#ifdef HAVE_SYS_STAT_H -# include -#endif -#ifdef STDC_HEADERS -# include -# include -#else -# ifdef HAVE_STDLIB_H -# include -# endif -#endif -#ifdef HAVE_STRING_H -# if !defined STDC_HEADERS && defined HAVE_MEMORY_H -# include -# endif -# include -#endif -#ifdef HAVE_STRINGS_H -# include -#endif -#ifdef HAVE_INTTYPES_H -# include -#endif -#ifdef HAVE_STDINT_H -# include -#endif -#ifdef HAVE_UNISTD_H -# include -#endif" - -gt_needs= -ac_subst_vars='am__EXEEXT_FALSE -am__EXEEXT_TRUE -LTLIBOBJS -INCINTL -POSUB -LTLIBINTL -LIBINTL -INTLLIBS -INTL_MACOSX_LIBS -XGETTEXT_EXTRA_OPTIONS -XGETTEXT_015 -GMSGFMT_015 -MSGFMT_015 -GETTEXT_MACRO_VERSION -DATADIRNAME -ALL_LINGUAS -INTLTOOL_PERL -GMSGFMT -MSGFMT -MSGMERGE -XGETTEXT -INTLTOOL_POLICY_RULE -INTLTOOL_SERVICE_RULE -INTLTOOL_THEME_RULE -INTLTOOL_SCHEMAS_RULE -INTLTOOL_CAVES_RULE -INTLTOOL_XML_NOMERGE_RULE -INTLTOOL_XML_RULE -INTLTOOL_KBD_RULE -INTLTOOL_XAM_RULE -INTLTOOL_UI_RULE -INTLTOOL_SOUNDLIST_RULE -INTLTOOL_SHEET_RULE -INTLTOOL_SERVER_RULE -INTLTOOL_PONG_RULE -INTLTOOL_OAF_RULE -INTLTOOL_PROP_RULE -INTLTOOL_KEYS_RULE -INTLTOOL_DIRECTORY_RULE -INTLTOOL_DESKTOP_RULE -INTLTOOL_EXTRACT -INTLTOOL_MERGE -INTLTOOL_UPDATE -USE_NLS -GETTEXT_PACKAGE -LIBOBJS -ENABLE_TABLE_DATA_FALSE -ENABLE_TABLE_DATA_TRUE -HAVE_DBUS_FALSE -HAVE_DBUS_TRUE -DBUS_LIBS -DBUS_CFLAGS -ENABLE_RECORDING_FALSE -ENABLE_RECORDING_TRUE -ENABLE_TRAY_FALSE -ENABLE_TRAY_TRUE -ENABLE_DEBUG_FALSE -ENABLE_DEBUG_TRUE -FONTCONFIG_LIBS -FONTCONFIG_CFLAGS -HAVE_PANGOCAIRO_FALSE -HAVE_PANGOCAIRO_TRUE -PANGOCAIRO_LIBS -PANGOCAIRO_CFLAGS -CAIRO_XLIB_LIBS -CAIRO_XLIB_CFLAGS -XRENDER_LIBS -XRENDER_CFLAGS -PKG_CONFIG_LIBDIR -PKG_CONFIG_PATH -PKG_CONFIG -X_CFLAGS -X_LIBS -XMKMF -MD5SUM -TAR -WGET -HOST_LIBS -LTLIBICONV -LIBICONV -CPP -OTOOL64 -OTOOL -LIPO -NMEDIT -DSYMUTIL -MANIFEST_TOOL -ac_ct_AR -AR -DLLTOOL -OBJDUMP -LN_S -NM -ac_ct_DUMPBIN -DUMPBIN -LD -FGREP -EGREP -GREP -SED -LIBTOOL -RANLIB -am__fastdepCC_FALSE -am__fastdepCC_TRUE -CCDEPMODE -AMDEPBACKSLASH -AMDEP_FALSE -AMDEP_TRUE -am__quote -am__include -DEPDIR -OBJEXT -EXEEXT -ac_ct_CC -CPPFLAGS -LDFLAGS -CFLAGS -CC -AM_BACKSLASH -AM_DEFAULT_VERBOSITY -host_os -host_vendor -host_cpu -host -build_os -build_vendor -build_cpu -build -am__untar -am__tar -AMTAR -am__leading_dot -SET_MAKE -AWK -mkdir_p -MKDIR_P -INSTALL_STRIP_PROGRAM -STRIP -install_sh -MAKEINFO -AUTOHEADER -AUTOMAKE -AUTOCONF -ACLOCAL -VERSION -PACKAGE -CYGPATH_W -am__isrc -INSTALL_DATA -INSTALL_SCRIPT -INSTALL_PROGRAM -target_alias -host_alias -build_alias -LIBS -ECHO_T -ECHO_N -ECHO_C -DEFS -mandir -localedir -libdir -psdir -pdfdir -dvidir -htmldir -infodir -docdir -oldincludedir -includedir -localstatedir -sharedstatedir -sysconfdir -datadir -datarootdir -libexecdir -sbindir -bindir -program_transform_name -prefix -exec_prefix -PACKAGE_URL -PACKAGE_BUGREPORT -PACKAGE_STRING -PACKAGE_VERSION -PACKAGE_TARNAME -PACKAGE_NAME -PATH_SEPARATOR -SHELL' -ac_subst_files='' -ac_user_opts=' -enable_option_checking -enable_silent_rules -enable_dependency_tracking -enable_shared -enable_static -with_pic -enable_fast_install -with_gnu_ld -with_sysroot -enable_libtool_lock -enable_rpath -with_libiconv_prefix -with_x -enable_pango -enable_debug -enable_tray -enable_recording -enable_dbus -enable_table_data -enable_nls -with_libintl_prefix -' - ac_precious_vars='build_alias -host_alias -target_alias -CC -CFLAGS -LDFLAGS -LIBS -CPPFLAGS -CPP -XMKMF -PKG_CONFIG -PKG_CONFIG_PATH -PKG_CONFIG_LIBDIR -XRENDER_CFLAGS -XRENDER_LIBS -CAIRO_XLIB_CFLAGS -CAIRO_XLIB_LIBS -PANGOCAIRO_CFLAGS -PANGOCAIRO_LIBS -FONTCONFIG_CFLAGS -FONTCONFIG_LIBS -DBUS_CFLAGS -DBUS_LIBS' - - -# Initialize some variables set by options. -ac_init_help= -ac_init_version=false -ac_unrecognized_opts= -ac_unrecognized_sep= -# The variables have the same names as the options, with -# dashes changed to underlines. -cache_file=/dev/null -exec_prefix=NONE -no_create= -no_recursion= -prefix=NONE -program_prefix=NONE -program_suffix=NONE -program_transform_name=s,x,x, -silent= -site= -srcdir= -verbose= -x_includes=NONE -x_libraries=NONE - -# Installation directory options. -# These are left unexpanded so users can "make install exec_prefix=/foo" -# and all the variables that are supposed to be based on exec_prefix -# by default will actually change. -# Use braces instead of parens because sh, perl, etc. also accept them. -# (The list follows the same order as the GNU Coding Standards.) -bindir='${exec_prefix}/bin' -sbindir='${exec_prefix}/sbin' -libexecdir='${exec_prefix}/libexec' -datarootdir='${prefix}/share' -datadir='${datarootdir}' -sysconfdir='${prefix}/etc' -sharedstatedir='${prefix}/com' -localstatedir='${prefix}/var' -includedir='${prefix}/include' -oldincludedir='/usr/include' -docdir='${datarootdir}/doc/${PACKAGE}' -infodir='${datarootdir}/info' -htmldir='${docdir}' -dvidir='${docdir}' -pdfdir='${docdir}' -psdir='${docdir}' -libdir='${exec_prefix}/lib' -localedir='${datarootdir}/locale' -mandir='${datarootdir}/man' - -ac_prev= -ac_dashdash= -for ac_option -do - # If the previous option needs an argument, assign it. - if test -n "$ac_prev"; then - eval $ac_prev=\$ac_option - ac_prev= - continue - fi - - case $ac_option in - *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;; - *=) ac_optarg= ;; - *) ac_optarg=yes ;; - esac - - # Accept the important Cygnus configure options, so we can diagnose typos. - - case $ac_dashdash$ac_option in - --) - ac_dashdash=yes ;; - - -bindir | --bindir | --bindi | --bind | --bin | --bi) - ac_prev=bindir ;; - -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*) - bindir=$ac_optarg ;; - - -build | --build | --buil | --bui | --bu) - ac_prev=build_alias ;; - -build=* | --build=* | --buil=* | --bui=* | --bu=*) - build_alias=$ac_optarg ;; - - -cache-file | --cache-file | --cache-fil | --cache-fi \ - | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c) - ac_prev=cache_file ;; - -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \ - | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*) - cache_file=$ac_optarg ;; - - --config-cache | -C) - cache_file=config.cache ;; - - -datadir | --datadir | --datadi | --datad) - ac_prev=datadir ;; - -datadir=* | --datadir=* | --datadi=* | --datad=*) - datadir=$ac_optarg ;; - - -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \ - | --dataroo | --dataro | --datar) - ac_prev=datarootdir ;; - -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \ - | --dataroot=* | --dataroo=* | --dataro=* | --datar=*) - datarootdir=$ac_optarg ;; - - -disable-* | --disable-*) - ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'` - # Reject names that are not valid shell variable names. - expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && - as_fn_error $? "invalid feature name: $ac_useropt" - ac_useropt_orig=$ac_useropt - ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` - case $ac_user_opts in - *" -"enable_$ac_useropt" -"*) ;; - *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--disable-$ac_useropt_orig" - ac_unrecognized_sep=', ';; - esac - eval enable_$ac_useropt=no ;; - - -docdir | --docdir | --docdi | --doc | --do) - ac_prev=docdir ;; - -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*) - docdir=$ac_optarg ;; - - -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv) - ac_prev=dvidir ;; - -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*) - dvidir=$ac_optarg ;; - - -enable-* | --enable-*) - ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` - # Reject names that are not valid shell variable names. - expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && - as_fn_error $? "invalid feature name: $ac_useropt" - ac_useropt_orig=$ac_useropt - ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` - case $ac_user_opts in - *" -"enable_$ac_useropt" -"*) ;; - *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--enable-$ac_useropt_orig" - ac_unrecognized_sep=', ';; - esac - eval enable_$ac_useropt=\$ac_optarg ;; - - -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \ - | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \ - | --exec | --exe | --ex) - ac_prev=exec_prefix ;; - -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \ - | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \ - | --exec=* | --exe=* | --ex=*) - exec_prefix=$ac_optarg ;; - - -gas | --gas | --ga | --g) - # Obsolete; use --with-gas. - with_gas=yes ;; - - -help | --help | --hel | --he | -h) - ac_init_help=long ;; - -help=r* | --help=r* | --hel=r* | --he=r* | -hr*) - ac_init_help=recursive ;; - -help=s* | --help=s* | --hel=s* | --he=s* | -hs*) - ac_init_help=short ;; - - -host | --host | --hos | --ho) - ac_prev=host_alias ;; - -host=* | --host=* | --hos=* | --ho=*) - host_alias=$ac_optarg ;; - - -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht) - ac_prev=htmldir ;; - -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \ - | --ht=*) - htmldir=$ac_optarg ;; - - -includedir | --includedir | --includedi | --included | --include \ - | --includ | --inclu | --incl | --inc) - ac_prev=includedir ;; - -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \ - | --includ=* | --inclu=* | --incl=* | --inc=*) - includedir=$ac_optarg ;; - - -infodir | --infodir | --infodi | --infod | --info | --inf) - ac_prev=infodir ;; - -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*) - infodir=$ac_optarg ;; - - -libdir | --libdir | --libdi | --libd) - ac_prev=libdir ;; - -libdir=* | --libdir=* | --libdi=* | --libd=*) - libdir=$ac_optarg ;; - - -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \ - | --libexe | --libex | --libe) - ac_prev=libexecdir ;; - -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \ - | --libexe=* | --libex=* | --libe=*) - libexecdir=$ac_optarg ;; - - -localedir | --localedir | --localedi | --localed | --locale) - ac_prev=localedir ;; - -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*) - localedir=$ac_optarg ;; - - -localstatedir | --localstatedir | --localstatedi | --localstated \ - | --localstate | --localstat | --localsta | --localst | --locals) - ac_prev=localstatedir ;; - -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \ - | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*) - localstatedir=$ac_optarg ;; - - -mandir | --mandir | --mandi | --mand | --man | --ma | --m) - ac_prev=mandir ;; - -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*) - mandir=$ac_optarg ;; - - -nfp | --nfp | --nf) - # Obsolete; use --without-fp. - with_fp=no ;; - - -no-create | --no-create | --no-creat | --no-crea | --no-cre \ - | --no-cr | --no-c | -n) - no_create=yes ;; - - -no-recursion | --no-recursion | --no-recursio | --no-recursi \ - | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) - no_recursion=yes ;; - - -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \ - | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \ - | --oldin | --oldi | --old | --ol | --o) - ac_prev=oldincludedir ;; - -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \ - | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \ - | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*) - oldincludedir=$ac_optarg ;; - - -prefix | --prefix | --prefi | --pref | --pre | --pr | --p) - ac_prev=prefix ;; - -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*) - prefix=$ac_optarg ;; - - -program-prefix | --program-prefix | --program-prefi | --program-pref \ - | --program-pre | --program-pr | --program-p) - ac_prev=program_prefix ;; - -program-prefix=* | --program-prefix=* | --program-prefi=* \ - | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*) - program_prefix=$ac_optarg ;; - - -program-suffix | --program-suffix | --program-suffi | --program-suff \ - | --program-suf | --program-su | --program-s) - ac_prev=program_suffix ;; - -program-suffix=* | --program-suffix=* | --program-suffi=* \ - | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*) - program_suffix=$ac_optarg ;; - - -program-transform-name | --program-transform-name \ - | --program-transform-nam | --program-transform-na \ - | --program-transform-n | --program-transform- \ - | --program-transform | --program-transfor \ - | --program-transfo | --program-transf \ - | --program-trans | --program-tran \ - | --progr-tra | --program-tr | --program-t) - ac_prev=program_transform_name ;; - -program-transform-name=* | --program-transform-name=* \ - | --program-transform-nam=* | --program-transform-na=* \ - | --program-transform-n=* | --program-transform-=* \ - | --program-transform=* | --program-transfor=* \ - | --program-transfo=* | --program-transf=* \ - | --program-trans=* | --program-tran=* \ - | --progr-tra=* | --program-tr=* | --program-t=*) - program_transform_name=$ac_optarg ;; - - -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd) - ac_prev=pdfdir ;; - -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*) - pdfdir=$ac_optarg ;; - - -psdir | --psdir | --psdi | --psd | --ps) - ac_prev=psdir ;; - -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*) - psdir=$ac_optarg ;; - - -q | -quiet | --quiet | --quie | --qui | --qu | --q \ - | -silent | --silent | --silen | --sile | --sil) - silent=yes ;; - - -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb) - ac_prev=sbindir ;; - -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \ - | --sbi=* | --sb=*) - sbindir=$ac_optarg ;; - - -sharedstatedir | --sharedstatedir | --sharedstatedi \ - | --sharedstated | --sharedstate | --sharedstat | --sharedsta \ - | --sharedst | --shareds | --shared | --share | --shar \ - | --sha | --sh) - ac_prev=sharedstatedir ;; - -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \ - | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \ - | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \ - | --sha=* | --sh=*) - sharedstatedir=$ac_optarg ;; - - -site | --site | --sit) - ac_prev=site ;; - -site=* | --site=* | --sit=*) - site=$ac_optarg ;; - - -srcdir | --srcdir | --srcdi | --srcd | --src | --sr) - ac_prev=srcdir ;; - -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*) - srcdir=$ac_optarg ;; - - -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \ - | --syscon | --sysco | --sysc | --sys | --sy) - ac_prev=sysconfdir ;; - -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \ - | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*) - sysconfdir=$ac_optarg ;; - - -target | --target | --targe | --targ | --tar | --ta | --t) - ac_prev=target_alias ;; - -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*) - target_alias=$ac_optarg ;; - - -v | -verbose | --verbose | --verbos | --verbo | --verb) - verbose=yes ;; - - -version | --version | --versio | --versi | --vers | -V) - ac_init_version=: ;; - - -with-* | --with-*) - ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` - # Reject names that are not valid shell variable names. - expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && - as_fn_error $? "invalid package name: $ac_useropt" - ac_useropt_orig=$ac_useropt - ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` - case $ac_user_opts in - *" -"with_$ac_useropt" -"*) ;; - *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--with-$ac_useropt_orig" - ac_unrecognized_sep=', ';; - esac - eval with_$ac_useropt=\$ac_optarg ;; - - -without-* | --without-*) - ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'` - # Reject names that are not valid shell variable names. - expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && - as_fn_error $? "invalid package name: $ac_useropt" - ac_useropt_orig=$ac_useropt - ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` - case $ac_user_opts in - *" -"with_$ac_useropt" -"*) ;; - *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--without-$ac_useropt_orig" - ac_unrecognized_sep=', ';; - esac - eval with_$ac_useropt=no ;; - - --x) - # Obsolete; use --with-x. - with_x=yes ;; - - -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \ - | --x-incl | --x-inc | --x-in | --x-i) - ac_prev=x_includes ;; - -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \ - | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*) - x_includes=$ac_optarg ;; - - -x-libraries | --x-libraries | --x-librarie | --x-librari \ - | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l) - ac_prev=x_libraries ;; - -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \ - | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*) - x_libraries=$ac_optarg ;; - - -*) as_fn_error $? "unrecognized option: \`$ac_option' -Try \`$0 --help' for more information" - ;; - - *=*) - ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='` - # Reject names that are not valid shell variable names. - case $ac_envvar in #( - '' | [0-9]* | *[!_$as_cr_alnum]* ) - as_fn_error $? "invalid variable name: \`$ac_envvar'" ;; - esac - eval $ac_envvar=\$ac_optarg - export $ac_envvar ;; - - *) - # FIXME: should be removed in autoconf 3.0. - $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2 - expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && - $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2 - : "${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}" - ;; - - esac -done - -if test -n "$ac_prev"; then - ac_option=--`echo $ac_prev | sed 's/_/-/g'` - as_fn_error $? "missing argument to $ac_option" -fi - -if test -n "$ac_unrecognized_opts"; then - case $enable_option_checking in - no) ;; - fatal) as_fn_error $? "unrecognized options: $ac_unrecognized_opts" ;; - *) $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;; - esac -fi - -# Check all directory arguments for consistency. -for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \ - datadir sysconfdir sharedstatedir localstatedir includedir \ - oldincludedir docdir infodir htmldir dvidir pdfdir psdir \ - libdir localedir mandir -do - eval ac_val=\$$ac_var - # Remove trailing slashes. - case $ac_val in - */ ) - ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'` - eval $ac_var=\$ac_val;; - esac - # Be sure to have absolute directory names. - case $ac_val in - [\\/$]* | ?:[\\/]* ) continue;; - NONE | '' ) case $ac_var in *prefix ) continue;; esac;; - esac - as_fn_error $? "expected an absolute directory name for --$ac_var: $ac_val" -done - -# There might be people who depend on the old broken behavior: `$host' -# used to hold the argument of --host etc. -# FIXME: To remove some day. -build=$build_alias -host=$host_alias -target=$target_alias - -# FIXME: To remove some day. -if test "x$host_alias" != x; then - if test "x$build_alias" = x; then - cross_compiling=maybe - $as_echo "$as_me: WARNING: if you wanted to set the --build type, don't use --host. - If a cross compiler is detected then cross compile mode will be used" >&2 - elif test "x$build_alias" != "x$host_alias"; then - cross_compiling=yes - fi -fi - -ac_tool_prefix= -test -n "$host_alias" && ac_tool_prefix=$host_alias- - -test "$silent" = yes && exec 6>/dev/null - - -ac_pwd=`pwd` && test -n "$ac_pwd" && -ac_ls_di=`ls -di .` && -ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` || - as_fn_error $? "working directory cannot be determined" -test "X$ac_ls_di" = "X$ac_pwd_ls_di" || - as_fn_error $? "pwd does not report name of working directory" - - -# Find the source files, if location was not specified. -if test -z "$srcdir"; then - ac_srcdir_defaulted=yes - # Try the directory containing this script, then the parent directory. - ac_confdir=`$as_dirname -- "$as_myself" || -$as_expr X"$as_myself" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$as_myself" : 'X\(//\)[^/]' \| \ - X"$as_myself" : 'X\(//\)$' \| \ - X"$as_myself" : 'X\(/\)' \| . 2>/dev/null || -$as_echo X"$as_myself" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ - s//\1/ - q - } - /^X\(\/\/\)[^/].*/{ - s//\1/ - q - } - /^X\(\/\/\)$/{ - s//\1/ - q - } - /^X\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q'` - srcdir=$ac_confdir - if test ! -r "$srcdir/$ac_unique_file"; then - srcdir=.. - fi -else - ac_srcdir_defaulted=no -fi -if test ! -r "$srcdir/$ac_unique_file"; then - test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .." - as_fn_error $? "cannot find sources ($ac_unique_file) in $srcdir" -fi -ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work" -ac_abs_confdir=`( - cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error $? "$ac_msg" - pwd)` -# When building in place, set srcdir=. -if test "$ac_abs_confdir" = "$ac_pwd"; then - srcdir=. -fi -# Remove unnecessary trailing slashes from srcdir. -# Double slashes in file names in object file debugging info -# mess up M-x gdb in Emacs. -case $srcdir in -*/) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;; -esac -for ac_var in $ac_precious_vars; do - eval ac_env_${ac_var}_set=\${${ac_var}+set} - eval ac_env_${ac_var}_value=\$${ac_var} - eval ac_cv_env_${ac_var}_set=\${${ac_var}+set} - eval ac_cv_env_${ac_var}_value=\$${ac_var} -done - -# -# Report the --help message. -# -if test "$ac_init_help" = "long"; then - # Omit some internal or obsolete options to make the list less imposing. - # This message is too long to be a string in the A/UX 3.1 sh. - cat <<_ACEOF -\`configure' configures this package to adapt to many kinds of systems. - -Usage: $0 [OPTION]... [VAR=VALUE]... - -To assign environment variables (e.g., CC, CFLAGS...), specify them as -VAR=VALUE. See below for descriptions of some of the useful variables. - -Defaults for the options are specified in brackets. - -Configuration: - -h, --help display this help and exit - --help=short display options specific to this package - --help=recursive display the short help of all the included packages - -V, --version display version information and exit - -q, --quiet, --silent do not print \`checking ...' messages - --cache-file=FILE cache test results in FILE [disabled] - -C, --config-cache alias for \`--cache-file=config.cache' - -n, --no-create do not create output files - --srcdir=DIR find the sources in DIR [configure dir or \`..'] - -Installation directories: - --prefix=PREFIX install architecture-independent files in PREFIX - [$ac_default_prefix] - --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX - [PREFIX] - -By default, \`make install' will install all the files in -\`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify -an installation prefix other than \`$ac_default_prefix' using \`--prefix', -for instance \`--prefix=\$HOME'. - -For better control, use the options below. - -Fine tuning of the installation directories: - --bindir=DIR user executables [EPREFIX/bin] - --sbindir=DIR system admin executables [EPREFIX/sbin] - --libexecdir=DIR program executables [EPREFIX/libexec] - --sysconfdir=DIR read-only single-machine data [PREFIX/etc] - --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] - --localstatedir=DIR modifiable single-machine data [PREFIX/var] - --libdir=DIR object code libraries [EPREFIX/lib] - --includedir=DIR C header files [PREFIX/include] - --oldincludedir=DIR C header files for non-gcc [/usr/include] - --datarootdir=DIR read-only arch.-independent data root [PREFIX/share] - --datadir=DIR read-only architecture-independent data [DATAROOTDIR] - --infodir=DIR info documentation [DATAROOTDIR/info] - --localedir=DIR locale-dependent data [DATAROOTDIR/locale] - --mandir=DIR man documentation [DATAROOTDIR/man] - --docdir=DIR documentation root [DATAROOTDIR/doc/PACKAGE] - --htmldir=DIR html documentation [DOCDIR] - --dvidir=DIR dvi documentation [DOCDIR] - --pdfdir=DIR pdf documentation [DOCDIR] - --psdir=DIR ps documentation [DOCDIR] -_ACEOF - - cat <<\_ACEOF - -Program names: - --program-prefix=PREFIX prepend PREFIX to installed program names - --program-suffix=SUFFIX append SUFFIX to installed program names - --program-transform-name=PROGRAM run sed PROGRAM on installed program names - -X features: - --x-includes=DIR X include files are in DIR - --x-libraries=DIR X library files are in DIR - -System types: - --build=BUILD configure for building on BUILD [guessed] - --host=HOST cross-compile to build programs to run on HOST [BUILD] -_ACEOF -fi - -if test -n "$ac_init_help"; then - - cat <<\_ACEOF - -Optional Features: - --disable-option-checking ignore unrecognized --enable/--with options - --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) - --enable-FEATURE[=ARG] include FEATURE [ARG=yes] - --enable-silent-rules less verbose build output (undo: `make V=1') - --disable-silent-rules verbose build output (undo: `make V=0') - --disable-dependency-tracking speeds up one-time build - --enable-dependency-tracking do not reject slow dependency extractors - --enable-shared[=PKGS] build shared libraries [default=yes] - --enable-static[=PKGS] build static libraries [default=yes] - --enable-fast-install[=PKGS] - optimize for fast installation [default=yes] - --disable-libtool-lock avoid locking (might break parallel builds) - --disable-rpath do not hardcode runtime library paths - --enable-pango Enable Pango For Better font support - --enable-debug Enable DEBUG - --disable-tray Disable tray icon - --enable-recording Enable recording of user input - --enable-dbus Enable Dbus for kimpanel support - --disable-table-data Disable Table Data Install - --disable-nls do not use Native Language Support - -Optional Packages: - --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] - --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) - --with-pic try to use only PIC/non-PIC objects [default=use - both] - --with-gnu-ld assume the C compiler uses GNU ld [default=no] - --with-sysroot=DIR Search for dependent libraries within DIR - (or the compiler's sysroot if not specified). - --with-gnu-ld assume the C compiler uses GNU ld default=no - --with-libiconv-prefix[=DIR] search for libiconv in DIR/include and DIR/lib - --without-libiconv-prefix don't search for libiconv in includedir and libdir - --with-x use the X Window System - --with-libintl-prefix[=DIR] search for libintl in DIR/include and DIR/lib - --without-libintl-prefix don't search for libintl in includedir and libdir - -Some influential environment variables: - CC C compiler command - CFLAGS C compiler flags - LDFLAGS linker flags, e.g. -L if you have libraries in a - nonstandard directory - LIBS libraries to pass to the linker, e.g. -l - CPPFLAGS (Objective) C/C++ preprocessor flags, e.g. -I if - you have headers in a nonstandard directory - CPP C preprocessor - XMKMF Path to xmkmf, Makefile generator for X Window System - PKG_CONFIG path to pkg-config utility - PKG_CONFIG_PATH - directories to add to pkg-config's search path - PKG_CONFIG_LIBDIR - path overriding pkg-config's built-in search path - XRENDER_CFLAGS - C compiler flags for XRENDER, overriding pkg-config - XRENDER_LIBS - linker flags for XRENDER, overriding pkg-config - CAIRO_XLIB_CFLAGS - C compiler flags for CAIRO_XLIB, overriding pkg-config - CAIRO_XLIB_LIBS - linker flags for CAIRO_XLIB, overriding pkg-config - PANGOCAIRO_CFLAGS - C compiler flags for PANGOCAIRO, overriding pkg-config - PANGOCAIRO_LIBS - linker flags for PANGOCAIRO, overriding pkg-config - FONTCONFIG_CFLAGS - C compiler flags for FONTCONFIG, overriding pkg-config - FONTCONFIG_LIBS - linker flags for FONTCONFIG, overriding pkg-config - DBUS_CFLAGS C compiler flags for DBUS, overriding pkg-config - DBUS_LIBS linker flags for DBUS, overriding pkg-config - -Use these variables to override the choices made by `configure' or to help -it to find libraries and programs with nonstandard names/locations. - -Report bugs to the package provider. -_ACEOF -ac_status=$? -fi - -if test "$ac_init_help" = "recursive"; then - # If there are subdirs, report their specific --help. - for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue - test -d "$ac_dir" || - { cd "$srcdir" && ac_pwd=`pwd` && srcdir=. && test -d "$ac_dir"; } || - continue - ac_builddir=. - -case "$ac_dir" in -.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; -*) - ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` - # A ".." for each directory in $ac_dir_suffix. - ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` - case $ac_top_builddir_sub in - "") ac_top_builddir_sub=. ac_top_build_prefix= ;; - *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; - esac ;; -esac -ac_abs_top_builddir=$ac_pwd -ac_abs_builddir=$ac_pwd$ac_dir_suffix -# for backward compatibility: -ac_top_builddir=$ac_top_build_prefix - -case $srcdir in - .) # We are building in place. - ac_srcdir=. - ac_top_srcdir=$ac_top_builddir_sub - ac_abs_top_srcdir=$ac_pwd ;; - [\\/]* | ?:[\\/]* ) # Absolute name. - ac_srcdir=$srcdir$ac_dir_suffix; - ac_top_srcdir=$srcdir - ac_abs_top_srcdir=$srcdir ;; - *) # Relative name. - ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix - ac_top_srcdir=$ac_top_build_prefix$srcdir - ac_abs_top_srcdir=$ac_pwd/$srcdir ;; -esac -ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix - - cd "$ac_dir" || { ac_status=$?; continue; } - # Check for guested configure. - if test -f "$ac_srcdir/configure.gnu"; then - echo && - $SHELL "$ac_srcdir/configure.gnu" --help=recursive - elif test -f "$ac_srcdir/configure"; then - echo && - $SHELL "$ac_srcdir/configure" --help=recursive - else - $as_echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2 - fi || ac_status=$? - cd "$ac_pwd" || { ac_status=$?; break; } - done -fi - -test -n "$ac_init_help" && exit $ac_status -if $ac_init_version; then - cat <<\_ACEOF -configure -generated by GNU Autoconf 2.68 - -Copyright (C) 2010 Free Software Foundation, Inc. -This configure script is free software; the Free Software Foundation -gives unlimited permission to copy, distribute and modify it. -_ACEOF - exit -fi - -## ------------------------ ## -## Autoconf initialization. ## -## ------------------------ ## - -# ac_fn_c_try_compile LINENO -# -------------------------- -# Try to compile conftest.$ac_ext, and return whether this succeeded. -ac_fn_c_try_compile () -{ - as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - rm -f conftest.$ac_objext - if { { ac_try="$ac_compile" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_compile") 2>conftest.err - ac_status=$? - if test -s conftest.err; then - grep -v '^ *+' conftest.err >conftest.er1 - cat conftest.er1 >&5 - mv -f conftest.er1 conftest.err - fi - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then : - ac_retval=0 -else - $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_retval=1 -fi - eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno - as_fn_set_status $ac_retval - -} # ac_fn_c_try_compile - -# ac_fn_c_try_link LINENO -# ----------------------- -# Try to link conftest.$ac_ext, and return whether this succeeded. -ac_fn_c_try_link () -{ - as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - rm -f conftest.$ac_objext conftest$ac_exeext - if { { ac_try="$ac_link" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_link") 2>conftest.err - ac_status=$? - if test -s conftest.err; then - grep -v '^ *+' conftest.err >conftest.er1 - cat conftest.er1 >&5 - mv -f conftest.er1 conftest.err - fi - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest$ac_exeext && { - test "$cross_compiling" = yes || - $as_test_x conftest$ac_exeext - }; then : - ac_retval=0 -else - $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_retval=1 -fi - # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information - # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would - # interfere with the next link command; also delete a directory that is - # left behind by Apple's compiler. We do this before executing the actions. - rm -rf conftest.dSYM conftest_ipa8_conftest.oo - eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno - as_fn_set_status $ac_retval - -} # ac_fn_c_try_link - -# ac_fn_c_check_header_compile LINENO HEADER VAR INCLUDES -# ------------------------------------------------------- -# Tests whether HEADER exists and can be compiled using the include files in -# INCLUDES, setting the cache variable VAR accordingly. -ac_fn_c_check_header_compile () -{ - as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 -$as_echo_n "checking for $2... " >&6; } -if eval \${$3+:} false; then : - $as_echo_n "(cached) " >&6 -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -$4 -#include <$2> -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - eval "$3=yes" -else - eval "$3=no" -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -eval ac_res=\$$3 - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } - eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno - -} # ac_fn_c_check_header_compile - -# ac_fn_c_try_cpp LINENO -# ---------------------- -# Try to preprocess conftest.$ac_ext, and return whether this succeeded. -ac_fn_c_try_cpp () -{ - as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - if { { ac_try="$ac_cpp conftest.$ac_ext" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_cpp conftest.$ac_ext") 2>conftest.err - ac_status=$? - if test -s conftest.err; then - grep -v '^ *+' conftest.err >conftest.er1 - cat conftest.er1 >&5 - mv -f conftest.er1 conftest.err - fi - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } > conftest.i && { - test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || - test ! -s conftest.err - }; then : - ac_retval=0 -else - $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_retval=1 -fi - eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno - as_fn_set_status $ac_retval - -} # ac_fn_c_try_cpp - -# ac_fn_c_try_run LINENO -# ---------------------- -# Try to link conftest.$ac_ext, and return whether this succeeded. Assumes -# that executables *can* be run. -ac_fn_c_try_run () -{ - as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - if { { ac_try="$ac_link" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_link") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } && { ac_try='./conftest$ac_exeext' - { { case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_try") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; }; then : - ac_retval=0 -else - $as_echo "$as_me: program exited with status $ac_status" >&5 - $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_retval=$ac_status -fi - rm -rf conftest.dSYM conftest_ipa8_conftest.oo - eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno - as_fn_set_status $ac_retval - -} # ac_fn_c_try_run - -# ac_fn_c_check_func LINENO FUNC VAR -# ---------------------------------- -# Tests whether FUNC exists, setting the cache variable VAR accordingly -ac_fn_c_check_func () -{ - as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 -$as_echo_n "checking for $2... " >&6; } -if eval \${$3+:} false; then : - $as_echo_n "(cached) " >&6 -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -/* Define $2 to an innocuous variant, in case declares $2. - For example, HP-UX 11i declares gettimeofday. */ -#define $2 innocuous_$2 - -/* System header to define __stub macros and hopefully few prototypes, - which can conflict with char $2 (); below. - Prefer to if __STDC__ is defined, since - exists even on freestanding compilers. */ - -#ifdef __STDC__ -# include -#else -# include -#endif - -#undef $2 - -/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif -char $2 (); -/* The GNU C library defines this for functions which it implements - to always fail with ENOSYS. Some functions are actually named - something starting with __ and the normal name is an alias. */ -#if defined __stub_$2 || defined __stub___$2 -choke me -#endif - -int -main () -{ -return $2 (); - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - eval "$3=yes" -else - eval "$3=no" -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -fi -eval ac_res=\$$3 - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } - eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno - -} # ac_fn_c_check_func - -# ac_fn_c_check_header_mongrel LINENO HEADER VAR INCLUDES -# ------------------------------------------------------- -# Tests whether HEADER exists, giving a warning if it cannot be compiled using -# the include files in INCLUDES and setting the cache variable VAR -# accordingly. -ac_fn_c_check_header_mongrel () -{ - as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - if eval \${$3+:} false; then : - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 -$as_echo_n "checking for $2... " >&6; } -if eval \${$3+:} false; then : - $as_echo_n "(cached) " >&6 -fi -eval ac_res=\$$3 - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } -else - # Is the header compilable? -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 usability" >&5 -$as_echo_n "checking $2 usability... " >&6; } -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -$4 -#include <$2> -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - ac_header_compiler=yes -else - ac_header_compiler=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_compiler" >&5 -$as_echo "$ac_header_compiler" >&6; } - -# Is the header present? -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 presence" >&5 -$as_echo_n "checking $2 presence... " >&6; } -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include <$2> -_ACEOF -if ac_fn_c_try_cpp "$LINENO"; then : - ac_header_preproc=yes -else - ac_header_preproc=no -fi -rm -f conftest.err conftest.i conftest.$ac_ext -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc" >&5 -$as_echo "$ac_header_preproc" >&6; } - -# So? What about this header? -case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in #(( - yes:no: ) - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&5 -$as_echo "$as_me: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&2;} - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 -$as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} - ;; - no:yes:* ) - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: present but cannot be compiled" >&5 -$as_echo "$as_me: WARNING: $2: present but cannot be compiled" >&2;} - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: check for missing prerequisite headers?" >&5 -$as_echo "$as_me: WARNING: $2: check for missing prerequisite headers?" >&2;} - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: see the Autoconf documentation" >&5 -$as_echo "$as_me: WARNING: $2: see the Autoconf documentation" >&2;} - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&5 -$as_echo "$as_me: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&2;} - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 -$as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} - ;; -esac - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 -$as_echo_n "checking for $2... " >&6; } -if eval \${$3+:} false; then : - $as_echo_n "(cached) " >&6 -else - eval "$3=\$ac_header_compiler" -fi -eval ac_res=\$$3 - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } -fi - eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno - -} # ac_fn_c_check_header_mongrel - -# ac_fn_c_check_type LINENO TYPE VAR INCLUDES -# ------------------------------------------- -# Tests whether TYPE exists after having included INCLUDES, setting cache -# variable VAR accordingly. -ac_fn_c_check_type () -{ - as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 -$as_echo_n "checking for $2... " >&6; } -if eval \${$3+:} false; then : - $as_echo_n "(cached) " >&6 -else - eval "$3=no" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -$4 -int -main () -{ -if (sizeof ($2)) - return 0; - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -$4 -int -main () -{ -if (sizeof (($2))) - return 0; - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - -else - eval "$3=yes" -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -eval ac_res=\$$3 - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } - eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno - -} # ac_fn_c_check_type -cat >config.log <<_ACEOF -This file contains any messages produced by compilers while -running configure, to aid debugging if configure makes a mistake. - -It was created by $as_me, which was -generated by GNU Autoconf 2.68. Invocation command line was - - $ $0 $@ - -_ACEOF -exec 5>>config.log -{ -cat <<_ASUNAME -## --------- ## -## Platform. ## -## --------- ## - -hostname = `(hostname || uname -n) 2>/dev/null | sed 1q` -uname -m = `(uname -m) 2>/dev/null || echo unknown` -uname -r = `(uname -r) 2>/dev/null || echo unknown` -uname -s = `(uname -s) 2>/dev/null || echo unknown` -uname -v = `(uname -v) 2>/dev/null || echo unknown` - -/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown` -/bin/uname -X = `(/bin/uname -X) 2>/dev/null || echo unknown` - -/bin/arch = `(/bin/arch) 2>/dev/null || echo unknown` -/usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown` -/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown` -/usr/bin/hostinfo = `(/usr/bin/hostinfo) 2>/dev/null || echo unknown` -/bin/machine = `(/bin/machine) 2>/dev/null || echo unknown` -/usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown` -/bin/universe = `(/bin/universe) 2>/dev/null || echo unknown` - -_ASUNAME - -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - $as_echo "PATH: $as_dir" - done -IFS=$as_save_IFS - -} >&5 - -cat >&5 <<_ACEOF - - -## ----------- ## -## Core tests. ## -## ----------- ## - -_ACEOF - - -# Keep a trace of the command line. -# Strip out --no-create and --no-recursion so they do not pile up. -# Strip out --silent because we don't want to record it for future runs. -# Also quote any args containing shell meta-characters. -# Make two passes to allow for proper duplicate-argument suppression. -ac_configure_args= -ac_configure_args0= -ac_configure_args1= -ac_must_keep_next=false -for ac_pass in 1 2 -do - for ac_arg - do - case $ac_arg in - -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;; - -q | -quiet | --quiet | --quie | --qui | --qu | --q \ - | -silent | --silent | --silen | --sile | --sil) - continue ;; - *\'*) - ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; - esac - case $ac_pass in - 1) as_fn_append ac_configure_args0 " '$ac_arg'" ;; - 2) - as_fn_append ac_configure_args1 " '$ac_arg'" - if test $ac_must_keep_next = true; then - ac_must_keep_next=false # Got value, back to normal. - else - case $ac_arg in - *=* | --config-cache | -C | -disable-* | --disable-* \ - | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \ - | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \ - | -with-* | --with-* | -without-* | --without-* | --x) - case "$ac_configure_args0 " in - "$ac_configure_args1"*" '$ac_arg' "* ) continue ;; - esac - ;; - -* ) ac_must_keep_next=true ;; - esac - fi - as_fn_append ac_configure_args " '$ac_arg'" - ;; - esac - done -done -{ ac_configure_args0=; unset ac_configure_args0;} -{ ac_configure_args1=; unset ac_configure_args1;} - -# When interrupted or exit'd, cleanup temporary files, and complete -# config.log. We remove comments because anyway the quotes in there -# would cause problems or look ugly. -# WARNING: Use '\'' to represent an apostrophe within the trap. -# WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug. -trap 'exit_status=$? - # Save into config.log some information that might help in debugging. - { - echo - - $as_echo "## ---------------- ## -## Cache variables. ## -## ---------------- ##" - echo - # The following way of writing the cache mishandles newlines in values, -( - for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do - eval ac_val=\$$ac_var - case $ac_val in #( - *${as_nl}*) - case $ac_var in #( - *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 -$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; - esac - case $ac_var in #( - _ | IFS | as_nl) ;; #( - BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( - *) { eval $ac_var=; unset $ac_var;} ;; - esac ;; - esac - done - (set) 2>&1 | - case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #( - *${as_nl}ac_space=\ *) - sed -n \ - "s/'\''/'\''\\\\'\'''\''/g; - s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p" - ;; #( - *) - sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" - ;; - esac | - sort -) - echo - - $as_echo "## ----------------- ## -## Output variables. ## -## ----------------- ##" - echo - for ac_var in $ac_subst_vars - do - eval ac_val=\$$ac_var - case $ac_val in - *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; - esac - $as_echo "$ac_var='\''$ac_val'\''" - done | sort - echo - - if test -n "$ac_subst_files"; then - $as_echo "## ------------------- ## -## File substitutions. ## -## ------------------- ##" - echo - for ac_var in $ac_subst_files - do - eval ac_val=\$$ac_var - case $ac_val in - *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; - esac - $as_echo "$ac_var='\''$ac_val'\''" - done | sort - echo - fi - - if test -s confdefs.h; then - $as_echo "## ----------- ## -## confdefs.h. ## -## ----------- ##" - echo - cat confdefs.h - echo - fi - test "$ac_signal" != 0 && - $as_echo "$as_me: caught signal $ac_signal" - $as_echo "$as_me: exit $exit_status" - } >&5 - rm -f core *.core core.conftest.* && - rm -f -r conftest* confdefs* conf$$* $ac_clean_files && - exit $exit_status -' 0 -for ac_signal in 1 2 13 15; do - trap 'ac_signal='$ac_signal'; as_fn_exit 1' $ac_signal -done -ac_signal=0 - -# confdefs.h avoids OS command line length limits that DEFS can exceed. -rm -f -r conftest* confdefs.h - -$as_echo "/* confdefs.h */" > confdefs.h - -# Predefined preprocessor variables. - -cat >>confdefs.h <<_ACEOF -#define PACKAGE_NAME "$PACKAGE_NAME" -_ACEOF - -cat >>confdefs.h <<_ACEOF -#define PACKAGE_TARNAME "$PACKAGE_TARNAME" -_ACEOF - -cat >>confdefs.h <<_ACEOF -#define PACKAGE_VERSION "$PACKAGE_VERSION" -_ACEOF - -cat >>confdefs.h <<_ACEOF -#define PACKAGE_STRING "$PACKAGE_STRING" -_ACEOF - -cat >>confdefs.h <<_ACEOF -#define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT" -_ACEOF - -cat >>confdefs.h <<_ACEOF -#define PACKAGE_URL "$PACKAGE_URL" -_ACEOF - - -# Let the site file select an alternate cache file if it wants to. -# Prefer an explicitly selected file to automatically selected ones. -ac_site_file1=NONE -ac_site_file2=NONE -if test -n "$CONFIG_SITE"; then - # We do not want a PATH search for config.site. - case $CONFIG_SITE in #(( - -*) ac_site_file1=./$CONFIG_SITE;; - */*) ac_site_file1=$CONFIG_SITE;; - *) ac_site_file1=./$CONFIG_SITE;; - esac -elif test "x$prefix" != xNONE; then - ac_site_file1=$prefix/share/config.site - ac_site_file2=$prefix/etc/config.site -else - ac_site_file1=$ac_default_prefix/share/config.site - ac_site_file2=$ac_default_prefix/etc/config.site -fi -for ac_site_file in "$ac_site_file1" "$ac_site_file2" -do - test "x$ac_site_file" = xNONE && continue - if test /dev/null != "$ac_site_file" && test -r "$ac_site_file"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5 -$as_echo "$as_me: loading site script $ac_site_file" >&6;} - sed 's/^/| /' "$ac_site_file" >&5 - . "$ac_site_file" \ - || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error $? "failed to load site script $ac_site_file -See \`config.log' for more details" "$LINENO" 5; } - fi -done - -if test -r "$cache_file"; then - # Some versions of bash will fail to source /dev/null (special files - # actually), so we avoid doing that. DJGPP emulates it as a regular file. - if test /dev/null != "$cache_file" && test -f "$cache_file"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5 -$as_echo "$as_me: loading cache $cache_file" >&6;} - case $cache_file in - [\\/]* | ?:[\\/]* ) . "$cache_file";; - *) . "./$cache_file";; - esac - fi -else - { $as_echo "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5 -$as_echo "$as_me: creating cache $cache_file" >&6;} - >$cache_file -fi - -gt_needs="$gt_needs " -# Check that the precious variables saved in the cache have kept the same -# value. -ac_cache_corrupted=false -for ac_var in $ac_precious_vars; do - eval ac_old_set=\$ac_cv_env_${ac_var}_set - eval ac_new_set=\$ac_env_${ac_var}_set - eval ac_old_val=\$ac_cv_env_${ac_var}_value - eval ac_new_val=\$ac_env_${ac_var}_value - case $ac_old_set,$ac_new_set in - set,) - { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 -$as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} - ac_cache_corrupted=: ;; - ,set) - { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was not set in the previous run" >&5 -$as_echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;} - ac_cache_corrupted=: ;; - ,);; - *) - if test "x$ac_old_val" != "x$ac_new_val"; then - # differences in whitespace do not lead to failure. - ac_old_val_w=`echo x $ac_old_val` - ac_new_val_w=`echo x $ac_new_val` - if test "$ac_old_val_w" != "$ac_new_val_w"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' has changed since the previous run:" >&5 -$as_echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} - ac_cache_corrupted=: - else - { $as_echo "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5 -$as_echo "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;} - eval $ac_var=\$ac_old_val - fi - { $as_echo "$as_me:${as_lineno-$LINENO}: former value: \`$ac_old_val'" >&5 -$as_echo "$as_me: former value: \`$ac_old_val'" >&2;} - { $as_echo "$as_me:${as_lineno-$LINENO}: current value: \`$ac_new_val'" >&5 -$as_echo "$as_me: current value: \`$ac_new_val'" >&2;} - fi;; - esac - # Pass precious variables to config.status. - if test "$ac_new_set" = set; then - case $ac_new_val in - *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; - *) ac_arg=$ac_var=$ac_new_val ;; - esac - case " $ac_configure_args " in - *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy. - *) as_fn_append ac_configure_args " '$ac_arg'" ;; - esac - fi -done -if $ac_cache_corrupted; then - { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} - { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5 -$as_echo "$as_me: error: changes in the environment can compromise the build" >&2;} - as_fn_error $? "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5 -fi -## -------------------- ## -## Main body of script. ## -## -------------------- ## - -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu - - - -am__api_version='1.11' - -ac_aux_dir= -for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do - if test -f "$ac_dir/install-sh"; then - ac_aux_dir=$ac_dir - ac_install_sh="$ac_aux_dir/install-sh -c" - break - elif test -f "$ac_dir/install.sh"; then - ac_aux_dir=$ac_dir - ac_install_sh="$ac_aux_dir/install.sh -c" - break - elif test -f "$ac_dir/shtool"; then - ac_aux_dir=$ac_dir - ac_install_sh="$ac_aux_dir/shtool install -c" - break - fi -done -if test -z "$ac_aux_dir"; then - as_fn_error $? "cannot find install-sh, install.sh, or shtool in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" "$LINENO" 5 -fi - -# These three variables are undocumented and unsupported, -# and are intended to be withdrawn in a future Autoconf release. -# They can cause serious problems if a builder's source tree is in a directory -# whose full name contains unusual characters. -ac_config_guess="$SHELL $ac_aux_dir/config.guess" # Please don't use this var. -ac_config_sub="$SHELL $ac_aux_dir/config.sub" # Please don't use this var. -ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var. - - -# Find a good install program. We prefer a C program (faster), -# so one script is as good as another. But avoid the broken or -# incompatible versions: -# SysV /etc/install, /usr/sbin/install -# SunOS /usr/etc/install -# IRIX /sbin/install -# AIX /bin/install -# AmigaOS /C/install, which installs bootblocks on floppy discs -# AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag -# AFS /usr/afsws/bin/install, which mishandles nonexistent args -# SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" -# OS/2's system install, which has a completely different semantic -# ./install, which can be erroneously created by make from ./install.sh. -# Reject install programs that cannot install multiple files. -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5 -$as_echo_n "checking for a BSD-compatible install... " >&6; } -if test -z "$INSTALL"; then -if ${ac_cv_path_install+:} false; then : - $as_echo_n "(cached) " >&6 -else - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - # Account for people who put trailing slashes in PATH elements. -case $as_dir/ in #(( - ./ | .// | /[cC]/* | \ - /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \ - ?:[\\/]os2[\\/]install[\\/]* | ?:[\\/]OS2[\\/]INSTALL[\\/]* | \ - /usr/ucb/* ) ;; - *) - # OSF1 and SCO ODT 3.0 have their own names for install. - # Don't use installbsd from OSF since it installs stuff as root - # by default. - for ac_prog in ginstall scoinst install; do - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; }; then - if test $ac_prog = install && - grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then - # AIX install. It has an incompatible calling convention. - : - elif test $ac_prog = install && - grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then - # program-specific install script used by HP pwplus--don't use. - : - else - rm -rf conftest.one conftest.two conftest.dir - echo one > conftest.one - echo two > conftest.two - mkdir conftest.dir - if "$as_dir/$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir" && - test -s conftest.one && test -s conftest.two && - test -s conftest.dir/conftest.one && - test -s conftest.dir/conftest.two - then - ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c" - break 3 - fi - fi - fi - done - done - ;; -esac - - done -IFS=$as_save_IFS - -rm -rf conftest.one conftest.two conftest.dir - -fi - if test "${ac_cv_path_install+set}" = set; then - INSTALL=$ac_cv_path_install - else - # As a last resort, use the slow shell script. Don't cache a - # value for INSTALL within a source directory, because that will - # break other packages using the cache if that directory is - # removed, or if the value is a relative name. - INSTALL=$ac_install_sh - fi -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $INSTALL" >&5 -$as_echo "$INSTALL" >&6; } - -# Use test -z because SunOS4 sh mishandles braces in ${var-val}. -# It thinks the first close brace ends the variable substitution. -test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}' - -test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}' - -test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether build environment is sane" >&5 -$as_echo_n "checking whether build environment is sane... " >&6; } -# Just in case -sleep 1 -echo timestamp > conftest.file -# Reject unsafe characters in $srcdir or the absolute working directory -# name. Accept space and tab only in the latter. -am_lf=' -' -case `pwd` in - *[\\\"\#\$\&\'\`$am_lf]*) - as_fn_error $? "unsafe absolute working directory name" "$LINENO" 5;; -esac -case $srcdir in - *[\\\"\#\$\&\'\`$am_lf\ \ ]*) - as_fn_error $? "unsafe srcdir value: \`$srcdir'" "$LINENO" 5;; -esac - -# Do `set' in a subshell so we don't clobber the current shell's -# arguments. Must try -L first in case configure is actually a -# symlink; some systems play weird games with the mod time of symlinks -# (eg FreeBSD returns the mod time of the symlink's containing -# directory). -if ( - set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` - if test "$*" = "X"; then - # -L didn't work. - set X `ls -t "$srcdir/configure" conftest.file` - fi - rm -f conftest.file - if test "$*" != "X $srcdir/configure conftest.file" \ - && test "$*" != "X conftest.file $srcdir/configure"; then - - # If neither matched, then we have a broken ls. This can happen - # if, for instance, CONFIG_SHELL is bash and it inherits a - # broken ls alias from the environment. This has actually - # happened. Such a system could not be considered "sane". - as_fn_error $? "ls -t appears to fail. Make sure there is not a broken -alias in your environment" "$LINENO" 5 - fi - - test "$2" = conftest.file - ) -then - # Ok. - : -else - as_fn_error $? "newly created file is older than distributed files! -Check your system clock" "$LINENO" 5 -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } -test "$program_prefix" != NONE && - program_transform_name="s&^&$program_prefix&;$program_transform_name" -# Use a double $ so make ignores it. -test "$program_suffix" != NONE && - program_transform_name="s&\$&$program_suffix&;$program_transform_name" -# Double any \ or $. -# By default was `s,x,x', remove it if useless. -ac_script='s/[\\$]/&&/g;s/;s,x,x,$//' -program_transform_name=`$as_echo "$program_transform_name" | sed "$ac_script"` - -# expand $ac_aux_dir to an absolute path -am_aux_dir=`cd $ac_aux_dir && pwd` - -if test x"${MISSING+set}" != xset; then - case $am_aux_dir in - *\ * | *\ *) - MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; - *) - MISSING="\${SHELL} $am_aux_dir/missing" ;; - esac -fi -# Use eval to expand $SHELL -if eval "$MISSING --run true"; then - am_missing_run="$MISSING --run " -else - am_missing_run= - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \`missing' script is too old or missing" >&5 -$as_echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;} -fi - -if test x"${install_sh}" != xset; then - case $am_aux_dir in - *\ * | *\ *) - install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; - *) - install_sh="\${SHELL} $am_aux_dir/install-sh" - esac -fi - -# Installed binaries are usually stripped using `strip' when the user -# run `make install-strip'. However `strip' might not be the right -# tool to use in cross-compilation environments, therefore Automake -# will honor the `STRIP' environment variable to overrule this program. -if test "$cross_compiling" != no; then - if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. -set dummy ${ac_tool_prefix}strip; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_STRIP+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$STRIP"; then - ac_cv_prog_STRIP="$STRIP" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_STRIP="${ac_tool_prefix}strip" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -STRIP=$ac_cv_prog_STRIP -if test -n "$STRIP"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5 -$as_echo "$STRIP" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -fi -if test -z "$ac_cv_prog_STRIP"; then - ac_ct_STRIP=$STRIP - # Extract the first word of "strip", so it can be a program name with args. -set dummy strip; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_ac_ct_STRIP+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$ac_ct_STRIP"; then - ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_ac_ct_STRIP="strip" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP -if test -n "$ac_ct_STRIP"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5 -$as_echo "$ac_ct_STRIP" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - if test "x$ac_ct_STRIP" = x; then - STRIP=":" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - STRIP=$ac_ct_STRIP - fi -else - STRIP="$ac_cv_prog_STRIP" -fi - -fi -INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a thread-safe mkdir -p" >&5 -$as_echo_n "checking for a thread-safe mkdir -p... " >&6; } -if test -z "$MKDIR_P"; then - if ${ac_cv_path_mkdir+:} false; then : - $as_echo_n "(cached) " >&6 -else - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH$PATH_SEPARATOR/opt/sfw/bin -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_prog in mkdir gmkdir; do - for ac_exec_ext in '' $ac_executable_extensions; do - { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; } || continue - case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #( - 'mkdir (GNU coreutils) '* | \ - 'mkdir (coreutils) '* | \ - 'mkdir (fileutils) '4.1*) - ac_cv_path_mkdir=$as_dir/$ac_prog$ac_exec_ext - break 3;; - esac - done - done - done -IFS=$as_save_IFS - -fi - - test -d ./--version && rmdir ./--version - if test "${ac_cv_path_mkdir+set}" = set; then - MKDIR_P="$ac_cv_path_mkdir -p" - else - # As a last resort, use the slow shell script. Don't cache a - # value for MKDIR_P within a source directory, because that will - # break other packages using the cache if that directory is - # removed, or if the value is a relative name. - MKDIR_P="$ac_install_sh -d" - fi -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $MKDIR_P" >&5 -$as_echo "$MKDIR_P" >&6; } - -mkdir_p="$MKDIR_P" -case $mkdir_p in - [\\/$]* | ?:[\\/]*) ;; - */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;; -esac - -for ac_prog in gawk mawk nawk awk -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_AWK+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$AWK"; then - ac_cv_prog_AWK="$AWK" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_AWK="$ac_prog" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -AWK=$ac_cv_prog_AWK -if test -n "$AWK"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AWK" >&5 -$as_echo "$AWK" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$AWK" && break -done - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \$(MAKE)" >&5 -$as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; } -set x ${MAKE-make} -ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` -if eval \${ac_cv_prog_make_${ac_make}_set+:} false; then : - $as_echo_n "(cached) " >&6 -else - cat >conftest.make <<\_ACEOF -SHELL = /bin/sh -all: - @echo '@@@%%%=$(MAKE)=@@@%%%' -_ACEOF -# GNU make sometimes prints "make[1]: Entering ...", which would confuse us. -case `${MAKE-make} -f conftest.make 2>/dev/null` in - *@@@%%%=?*=@@@%%%*) - eval ac_cv_prog_make_${ac_make}_set=yes;; - *) - eval ac_cv_prog_make_${ac_make}_set=no;; -esac -rm -f conftest.make -fi -if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } - SET_MAKE= -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - SET_MAKE="MAKE=${MAKE-make}" -fi - -rm -rf .tst 2>/dev/null -mkdir .tst 2>/dev/null -if test -d .tst; then - am__leading_dot=. -else - am__leading_dot=_ -fi -rmdir .tst 2>/dev/null - -if test "`cd $srcdir && pwd`" != "`pwd`"; then - # Use -I$(srcdir) only when $(srcdir) != ., so that make's output - # is not polluted with repeated "-I." - am__isrc=' -I$(srcdir)' - # test to see if srcdir already configured - if test -f $srcdir/config.status; then - as_fn_error $? "source directory already configured; run \"make distclean\" there first" "$LINENO" 5 - fi -fi - -# test whether we have cygpath -if test -z "$CYGPATH_W"; then - if (cygpath --version) >/dev/null 2>/dev/null; then - CYGPATH_W='cygpath -w' - else - CYGPATH_W=echo - fi -fi - - -# Define the identity of the package. - PACKAGE=fcitx - VERSION="4.0.1" - - -cat >>confdefs.h <<_ACEOF -#define PACKAGE "$PACKAGE" -_ACEOF - - -cat >>confdefs.h <<_ACEOF -#define VERSION "$VERSION" -_ACEOF - -# Some tools Automake needs. - -ACLOCAL=${ACLOCAL-"${am_missing_run}aclocal-${am__api_version}"} - - -AUTOCONF=${AUTOCONF-"${am_missing_run}autoconf"} - - -AUTOMAKE=${AUTOMAKE-"${am_missing_run}automake-${am__api_version}"} - - -AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"} - - -MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"} - -# We need awk for the "check" target. The system "awk" is bad on -# some platforms. -# Always define AMTAR for backward compatibility. - -AMTAR=${AMTAR-"${am_missing_run}tar"} - -am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -' - - - - - - -# Make sure we can run config.sub. -$SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 || - as_fn_error $? "cannot run $SHELL $ac_aux_dir/config.sub" "$LINENO" 5 - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking build system type" >&5 -$as_echo_n "checking build system type... " >&6; } -if ${ac_cv_build+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_build_alias=$build_alias -test "x$ac_build_alias" = x && - ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"` -test "x$ac_build_alias" = x && - as_fn_error $? "cannot guess build type; you must specify one" "$LINENO" 5 -ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` || - as_fn_error $? "$SHELL $ac_aux_dir/config.sub $ac_build_alias failed" "$LINENO" 5 - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_build" >&5 -$as_echo "$ac_cv_build" >&6; } -case $ac_cv_build in -*-*-*) ;; -*) as_fn_error $? "invalid value of canonical build" "$LINENO" 5;; -esac -build=$ac_cv_build -ac_save_IFS=$IFS; IFS='-' -set x $ac_cv_build -shift -build_cpu=$1 -build_vendor=$2 -shift; shift -# Remember, the first character of IFS is used to create $*, -# except with old shells: -build_os=$* -IFS=$ac_save_IFS -case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking host system type" >&5 -$as_echo_n "checking host system type... " >&6; } -if ${ac_cv_host+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test "x$host_alias" = x; then - ac_cv_host=$ac_cv_build -else - ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` || - as_fn_error $? "$SHELL $ac_aux_dir/config.sub $host_alias failed" "$LINENO" 5 -fi - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_host" >&5 -$as_echo "$ac_cv_host" >&6; } -case $ac_cv_host in -*-*-*) ;; -*) as_fn_error $? "invalid value of canonical host" "$LINENO" 5;; -esac -host=$ac_cv_host -ac_save_IFS=$IFS; IFS='-' -set x $ac_cv_host -shift -host_cpu=$1 -host_vendor=$2 -shift; shift -# Remember, the first character of IFS is used to create $*, -# except with old shells: -host_os=$* -IFS=$ac_save_IFS -case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac - - -ac_config_headers="$ac_config_headers config.h" - - -# Check whether --enable-silent-rules was given. -if test "${enable_silent_rules+set}" = set; then : - enableval=$enable_silent_rules; -fi - -case $enable_silent_rules in -yes) AM_DEFAULT_VERBOSITY=0;; -no) AM_DEFAULT_VERBOSITY=1;; -*) AM_DEFAULT_VERBOSITY=0;; -esac -AM_BACKSLASH='\' - - -# Checks for programs. -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu -if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. -set dummy ${ac_tool_prefix}gcc; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_CC+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$CC"; then - ac_cv_prog_CC="$CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_CC="${ac_tool_prefix}gcc" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -CC=$ac_cv_prog_CC -if test -n "$CC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 -$as_echo "$CC" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -fi -if test -z "$ac_cv_prog_CC"; then - ac_ct_CC=$CC - # Extract the first word of "gcc", so it can be a program name with args. -set dummy gcc; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_ac_ct_CC+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$ac_ct_CC"; then - ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_ac_ct_CC="gcc" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -ac_ct_CC=$ac_cv_prog_ac_ct_CC -if test -n "$ac_ct_CC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 -$as_echo "$ac_ct_CC" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - if test "x$ac_ct_CC" = x; then - CC="" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - CC=$ac_ct_CC - fi -else - CC="$ac_cv_prog_CC" -fi - -if test -z "$CC"; then - if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. -set dummy ${ac_tool_prefix}cc; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_CC+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$CC"; then - ac_cv_prog_CC="$CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_CC="${ac_tool_prefix}cc" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -CC=$ac_cv_prog_CC -if test -n "$CC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 -$as_echo "$CC" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - fi -fi -if test -z "$CC"; then - # Extract the first word of "cc", so it can be a program name with args. -set dummy cc; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_CC+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$CC"; then - ac_cv_prog_CC="$CC" # Let the user override the test. -else - ac_prog_rejected=no -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then - ac_prog_rejected=yes - continue - fi - ac_cv_prog_CC="cc" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -if test $ac_prog_rejected = yes; then - # We found a bogon in the path, so make sure we never use it. - set dummy $ac_cv_prog_CC - shift - if test $# != 0; then - # We chose a different compiler from the bogus one. - # However, it has the same basename, so the bogon will be chosen - # first if we set CC to just the basename; use the full file name. - shift - ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@" - fi -fi -fi -fi -CC=$ac_cv_prog_CC -if test -n "$CC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 -$as_echo "$CC" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -fi -if test -z "$CC"; then - if test -n "$ac_tool_prefix"; then - for ac_prog in cl.exe - do - # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. -set dummy $ac_tool_prefix$ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_CC+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$CC"; then - ac_cv_prog_CC="$CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_CC="$ac_tool_prefix$ac_prog" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -CC=$ac_cv_prog_CC -if test -n "$CC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 -$as_echo "$CC" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$CC" && break - done -fi -if test -z "$CC"; then - ac_ct_CC=$CC - for ac_prog in cl.exe -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_ac_ct_CC+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$ac_ct_CC"; then - ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_ac_ct_CC="$ac_prog" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -ac_ct_CC=$ac_cv_prog_ac_ct_CC -if test -n "$ac_ct_CC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 -$as_echo "$ac_ct_CC" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$ac_ct_CC" && break -done - - if test "x$ac_ct_CC" = x; then - CC="" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - CC=$ac_ct_CC - fi -fi - -fi - - -test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error $? "no acceptable C compiler found in \$PATH -See \`config.log' for more details" "$LINENO" 5; } - -# Provide some information about the compiler. -$as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5 -set X $ac_compile -ac_compiler=$2 -for ac_option in --version -v -V -qversion; do - { { ac_try="$ac_compiler $ac_option >&5" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_compiler $ac_option >&5") 2>conftest.err - ac_status=$? - if test -s conftest.err; then - sed '10a\ -... rest of stderr output deleted ... - 10q' conftest.err >conftest.er1 - cat conftest.er1 >&5 - fi - rm -f conftest.er1 conftest.err - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } -done - -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -ac_clean_files_save=$ac_clean_files -ac_clean_files="$ac_clean_files a.out a.out.dSYM a.exe b.out" -# Try to create an executable without -o first, disregard a.out. -# It will help us diagnose broken compilers, and finding out an intuition -# of exeext. -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler works" >&5 -$as_echo_n "checking whether the C compiler works... " >&6; } -ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` - -# The possible output files: -ac_files="a.out conftest.exe conftest a.exe a_out.exe b.out conftest.*" - -ac_rmfiles= -for ac_file in $ac_files -do - case $ac_file in - *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; - * ) ac_rmfiles="$ac_rmfiles $ac_file";; - esac -done -rm -f $ac_rmfiles - -if { { ac_try="$ac_link_default" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_link_default") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then : - # Autoconf-2.13 could set the ac_cv_exeext variable to `no'. -# So ignore a value of `no', otherwise this would lead to `EXEEXT = no' -# in a Makefile. We should not override ac_cv_exeext if it was cached, -# so that the user can short-circuit this test for compilers unknown to -# Autoconf. -for ac_file in $ac_files '' -do - test -f "$ac_file" || continue - case $ac_file in - *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) - ;; - [ab].out ) - # We found the default executable, but exeext='' is most - # certainly right. - break;; - *.* ) - if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no; - then :; else - ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` - fi - # We set ac_cv_exeext here because the later test for it is not - # safe: cross compilers may not add the suffix if given an `-o' - # argument, so we may need to know it at that point already. - # Even if this section looks crufty: it has the advantage of - # actually working. - break;; - * ) - break;; - esac -done -test "$ac_cv_exeext" = no && ac_cv_exeext= - -else - ac_file='' -fi -if test -z "$ac_file"; then : - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -$as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error 77 "C compiler cannot create executables -See \`config.log' for more details" "$LINENO" 5; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler default output file name" >&5 -$as_echo_n "checking for C compiler default output file name... " >&6; } -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_file" >&5 -$as_echo "$ac_file" >&6; } -ac_exeext=$ac_cv_exeext - -rm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out -ac_clean_files=$ac_clean_files_save -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of executables" >&5 -$as_echo_n "checking for suffix of executables... " >&6; } -if { { ac_try="$ac_link" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_link") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then : - # If both `conftest.exe' and `conftest' are `present' (well, observable) -# catch `conftest.exe'. For instance with Cygwin, `ls conftest' will -# work properly (i.e., refer to `conftest.exe'), while it won't with -# `rm'. -for ac_file in conftest.exe conftest conftest.*; do - test -f "$ac_file" || continue - case $ac_file in - *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; - *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` - break;; - * ) break;; - esac -done -else - { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error $? "cannot compute suffix of executables: cannot compile and link -See \`config.log' for more details" "$LINENO" 5; } -fi -rm -f conftest conftest$ac_cv_exeext -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5 -$as_echo "$ac_cv_exeext" >&6; } - -rm -f conftest.$ac_ext -EXEEXT=$ac_cv_exeext -ac_exeext=$EXEEXT -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include -int -main () -{ -FILE *f = fopen ("conftest.out", "w"); - return ferror (f) || fclose (f) != 0; - - ; - return 0; -} -_ACEOF -ac_clean_files="$ac_clean_files conftest.out" -# Check that the compiler produces executables we can run. If not, either -# the compiler is broken, or we cross compile. -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are cross compiling" >&5 -$as_echo_n "checking whether we are cross compiling... " >&6; } -if test "$cross_compiling" != yes; then - { { ac_try="$ac_link" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_link") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } - if { ac_try='./conftest$ac_cv_exeext' - { { case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_try") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; }; then - cross_compiling=no - else - if test "$cross_compiling" = maybe; then - cross_compiling=yes - else - { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error $? "cannot run C compiled programs. -If you meant to cross compile, use \`--host'. -See \`config.log' for more details" "$LINENO" 5; } - fi - fi -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $cross_compiling" >&5 -$as_echo "$cross_compiling" >&6; } - -rm -f conftest.$ac_ext conftest$ac_cv_exeext conftest.out -ac_clean_files=$ac_clean_files_save -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5 -$as_echo_n "checking for suffix of object files... " >&6; } -if ${ac_cv_objext+:} false; then : - $as_echo_n "(cached) " >&6 -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -rm -f conftest.o conftest.obj -if { { ac_try="$ac_compile" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_compile") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then : - for ac_file in conftest.o conftest.obj conftest.*; do - test -f "$ac_file" || continue; - case $ac_file in - *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) ;; - *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'` - break;; - esac -done -else - $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error $? "cannot compute suffix of object files: cannot compile -See \`config.log' for more details" "$LINENO" 5; } -fi -rm -f conftest.$ac_cv_objext conftest.$ac_ext -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_objext" >&5 -$as_echo "$ac_cv_objext" >&6; } -OBJEXT=$ac_cv_objext -ac_objext=$OBJEXT -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5 -$as_echo_n "checking whether we are using the GNU C compiler... " >&6; } -if ${ac_cv_c_compiler_gnu+:} false; then : - $as_echo_n "(cached) " >&6 -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ -#ifndef __GNUC__ - choke me -#endif - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - ac_compiler_gnu=yes -else - ac_compiler_gnu=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -ac_cv_c_compiler_gnu=$ac_compiler_gnu - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5 -$as_echo "$ac_cv_c_compiler_gnu" >&6; } -if test $ac_compiler_gnu = yes; then - GCC=yes -else - GCC= -fi -ac_test_CFLAGS=${CFLAGS+set} -ac_save_CFLAGS=$CFLAGS -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5 -$as_echo_n "checking whether $CC accepts -g... " >&6; } -if ${ac_cv_prog_cc_g+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_save_c_werror_flag=$ac_c_werror_flag - ac_c_werror_flag=yes - ac_cv_prog_cc_g=no - CFLAGS="-g" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - ac_cv_prog_cc_g=yes -else - CFLAGS="" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - -else - ac_c_werror_flag=$ac_save_c_werror_flag - CFLAGS="-g" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - ac_cv_prog_cc_g=yes -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - ac_c_werror_flag=$ac_save_c_werror_flag -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5 -$as_echo "$ac_cv_prog_cc_g" >&6; } -if test "$ac_test_CFLAGS" = set; then - CFLAGS=$ac_save_CFLAGS -elif test $ac_cv_prog_cc_g = yes; then - if test "$GCC" = yes; then - CFLAGS="-g -O2" - else - CFLAGS="-g" - fi -else - if test "$GCC" = yes; then - CFLAGS="-O2" - else - CFLAGS= - fi -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5 -$as_echo_n "checking for $CC option to accept ISO C89... " >&6; } -if ${ac_cv_prog_cc_c89+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_cv_prog_cc_c89=no -ac_save_CC=$CC -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include -#include -#include -#include -/* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ -struct buf { int x; }; -FILE * (*rcsopen) (struct buf *, struct stat *, int); -static char *e (p, i) - char **p; - int i; -{ - return p[i]; -} -static char *f (char * (*g) (char **, int), char **p, ...) -{ - char *s; - va_list v; - va_start (v,p); - s = g (p, va_arg (v,int)); - va_end (v); - return s; -} - -/* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has - function prototypes and stuff, but not '\xHH' hex character constants. - These don't provoke an error unfortunately, instead are silently treated - as 'x'. The following induces an error, until -std is added to get - proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an - array size at least. It's necessary to write '\x00'==0 to get something - that's true only with -std. */ -int osf4_cc_array ['\x00' == 0 ? 1 : -1]; - -/* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters - inside strings and character constants. */ -#define FOO(x) 'x' -int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1]; - -int test (int i, double x); -struct s1 {int (*f) (int a);}; -struct s2 {int (*f) (double a);}; -int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); -int argc; -char **argv; -int -main () -{ -return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; - ; - return 0; -} -_ACEOF -for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \ - -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" -do - CC="$ac_save_CC $ac_arg" - if ac_fn_c_try_compile "$LINENO"; then : - ac_cv_prog_cc_c89=$ac_arg -fi -rm -f core conftest.err conftest.$ac_objext - test "x$ac_cv_prog_cc_c89" != "xno" && break -done -rm -f conftest.$ac_ext -CC=$ac_save_CC - -fi -# AC_CACHE_VAL -case "x$ac_cv_prog_cc_c89" in - x) - { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 -$as_echo "none needed" >&6; } ;; - xno) - { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 -$as_echo "unsupported" >&6; } ;; - *) - CC="$CC $ac_cv_prog_cc_c89" - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5 -$as_echo "$ac_cv_prog_cc_c89" >&6; } ;; -esac -if test "x$ac_cv_prog_cc_c89" != xno; then : - -fi - -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu -DEPDIR="${am__leading_dot}deps" - -ac_config_commands="$ac_config_commands depfiles" - - -am_make=${MAKE-make} -cat > confinc << 'END' -am__doit: - @echo this is the am__doit target -.PHONY: am__doit -END -# If we don't find an include directive, just comment out the code. -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for style of include used by $am_make" >&5 -$as_echo_n "checking for style of include used by $am_make... " >&6; } -am__include="#" -am__quote= -_am_result=none -# First try GNU make style include. -echo "include confinc" > confmf -# Ignore all kinds of additional output from `make'. -case `$am_make -s -f confmf 2> /dev/null` in #( -*the\ am__doit\ target*) - am__include=include - am__quote= - _am_result=GNU - ;; -esac -# Now try BSD make style include. -if test "$am__include" = "#"; then - echo '.include "confinc"' > confmf - case `$am_make -s -f confmf 2> /dev/null` in #( - *the\ am__doit\ target*) - am__include=.include - am__quote="\"" - _am_result=BSD - ;; - esac -fi - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $_am_result" >&5 -$as_echo "$_am_result" >&6; } -rm -f confinc confmf - -# Check whether --enable-dependency-tracking was given. -if test "${enable_dependency_tracking+set}" = set; then : - enableval=$enable_dependency_tracking; -fi - -if test "x$enable_dependency_tracking" != xno; then - am_depcomp="$ac_aux_dir/depcomp" - AMDEPBACKSLASH='\' -fi - if test "x$enable_dependency_tracking" != xno; then - AMDEP_TRUE= - AMDEP_FALSE='#' -else - AMDEP_TRUE='#' - AMDEP_FALSE= -fi - - - -depcc="$CC" am_compiler_list= - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 -$as_echo_n "checking dependency style of $depcc... " >&6; } -if ${am_cv_CC_dependencies_compiler_type+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then - # We make a subdir and do the tests there. Otherwise we can end up - # making bogus files that we don't know about and never remove. For - # instance it was reported that on HP-UX the gcc test will end up - # making a dummy file named `D' -- because `-MD' means `put the output - # in D'. - mkdir conftest.dir - # Copy depcomp to subdir because otherwise we won't find it if we're - # using a relative directory. - cp "$am_depcomp" conftest.dir - cd conftest.dir - # We will build objects and dependencies in a subdirectory because - # it helps to detect inapplicable dependency modes. For instance - # both Tru64's cc and ICC support -MD to output dependencies as a - # side effect of compilation, but ICC will put the dependencies in - # the current directory while Tru64 will put them in the object - # directory. - mkdir sub - - am_cv_CC_dependencies_compiler_type=none - if test "$am_compiler_list" = ""; then - am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` - fi - am__universal=false - case " $depcc " in #( - *\ -arch\ *\ -arch\ *) am__universal=true ;; - esac - - for depmode in $am_compiler_list; do - # Setup a source with many dependencies, because some compilers - # like to wrap large dependency lists on column 80 (with \), and - # we should not choose a depcomp mode which is confused by this. - # - # We need to recreate these files for each test, as the compiler may - # overwrite some of them when testing with obscure command lines. - # This happens at least with the AIX C compiler. - : > sub/conftest.c - for i in 1 2 3 4 5 6; do - echo '#include "conftst'$i'.h"' >> sub/conftest.c - # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with - # Solaris 8's {/usr,}/bin/sh. - touch sub/conftst$i.h - done - echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf - - # We check with `-c' and `-o' for the sake of the "dashmstdout" - # mode. It turns out that the SunPro C++ compiler does not properly - # handle `-M -o', and we need to detect this. Also, some Intel - # versions had trouble with output in subdirs - am__obj=sub/conftest.${OBJEXT-o} - am__minus_obj="-o $am__obj" - case $depmode in - gcc) - # This depmode causes a compiler race in universal mode. - test "$am__universal" = false || continue - ;; - nosideeffect) - # after this tag, mechanisms are not by side-effect, so they'll - # only be used when explicitly requested - if test "x$enable_dependency_tracking" = xyes; then - continue - else - break - fi - ;; - msvisualcpp | msvcmsys) - # This compiler won't grok `-c -o', but also, the minuso test has - # not run yet. These depmodes are late enough in the game, and - # so weak that their functioning should not be impacted. - am__obj=conftest.${OBJEXT-o} - am__minus_obj= - ;; - none) break ;; - esac - if depmode=$depmode \ - source=sub/conftest.c object=$am__obj \ - depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ - $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ - >/dev/null 2>conftest.err && - grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && - grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && - grep $am__obj sub/conftest.Po > /dev/null 2>&1 && - ${MAKE-make} -s -f confmf > /dev/null 2>&1; then - # icc doesn't choke on unknown options, it will just issue warnings - # or remarks (even with -Werror). So we grep stderr for any message - # that says an option was ignored or not supported. - # When given -MP, icc 7.0 and 7.1 complain thusly: - # icc: Command line warning: ignoring option '-M'; no argument required - # The diagnosis changed in icc 8.0: - # icc: Command line remark: option '-MP' not supported - if (grep 'ignoring option' conftest.err || - grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else - am_cv_CC_dependencies_compiler_type=$depmode - break - fi - fi - done - - cd .. - rm -rf conftest.dir -else - am_cv_CC_dependencies_compiler_type=none -fi - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CC_dependencies_compiler_type" >&5 -$as_echo "$am_cv_CC_dependencies_compiler_type" >&6; } -CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type - - if - test "x$enable_dependency_tracking" != xno \ - && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then - am__fastdepCC_TRUE= - am__fastdepCC_FALSE='#' -else - am__fastdepCC_TRUE='#' - am__fastdepCC_FALSE= -fi - - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \$(MAKE)" >&5 -$as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; } -set x ${MAKE-make} -ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` -if eval \${ac_cv_prog_make_${ac_make}_set+:} false; then : - $as_echo_n "(cached) " >&6 -else - cat >conftest.make <<\_ACEOF -SHELL = /bin/sh -all: - @echo '@@@%%%=$(MAKE)=@@@%%%' -_ACEOF -# GNU make sometimes prints "make[1]: Entering ...", which would confuse us. -case `${MAKE-make} -f conftest.make 2>/dev/null` in - *@@@%%%=?*=@@@%%%*) - eval ac_cv_prog_make_${ac_make}_set=yes;; - *) - eval ac_cv_prog_make_${ac_make}_set=no;; -esac -rm -f conftest.make -fi -if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } - SET_MAKE= -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - SET_MAKE="MAKE=${MAKE-make}" -fi - -if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args. -set dummy ${ac_tool_prefix}ranlib; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_RANLIB+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$RANLIB"; then - ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -RANLIB=$ac_cv_prog_RANLIB -if test -n "$RANLIB"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $RANLIB" >&5 -$as_echo "$RANLIB" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -fi -if test -z "$ac_cv_prog_RANLIB"; then - ac_ct_RANLIB=$RANLIB - # Extract the first word of "ranlib", so it can be a program name with args. -set dummy ranlib; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_ac_ct_RANLIB+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$ac_ct_RANLIB"; then - ac_cv_prog_ac_ct_RANLIB="$ac_ct_RANLIB" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_ac_ct_RANLIB="ranlib" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB -if test -n "$ac_ct_RANLIB"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_RANLIB" >&5 -$as_echo "$ac_ct_RANLIB" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - if test "x$ac_ct_RANLIB" = x; then - RANLIB=":" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - RANLIB=$ac_ct_RANLIB - fi -else - RANLIB="$ac_cv_prog_RANLIB" -fi - -case `pwd` in - *\ * | *\ *) - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Libtool does not cope well with whitespace in \`pwd\`" >&5 -$as_echo "$as_me: WARNING: Libtool does not cope well with whitespace in \`pwd\`" >&2;} ;; -esac - - - -macro_version='2.4' -macro_revision='1.3293' - - - - - - - - - - - - - -ltmain="$ac_aux_dir/ltmain.sh" - -# Backslashify metacharacters that are still active within -# double-quoted strings. -sed_quote_subst='s/\(["`$\\]\)/\\\1/g' - -# Same as above, but do not quote variable references. -double_quote_subst='s/\(["`\\]\)/\\\1/g' - -# Sed substitution to delay expansion of an escaped shell variable in a -# double_quote_subst'ed string. -delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g' - -# Sed substitution to delay expansion of an escaped single quote. -delay_single_quote_subst='s/'\''/'\'\\\\\\\'\''/g' - -# Sed substitution to avoid accidental globbing in evaled expressions -no_glob_subst='s/\*/\\\*/g' - -ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' -ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO -ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to print strings" >&5 -$as_echo_n "checking how to print strings... " >&6; } -# Test print first, because it will be a builtin if present. -if test "X`( print -r -- -n ) 2>/dev/null`" = X-n && \ - test "X`print -r -- $ECHO 2>/dev/null`" = "X$ECHO"; then - ECHO='print -r --' -elif test "X`printf %s $ECHO 2>/dev/null`" = "X$ECHO"; then - ECHO='printf %s\n' -else - # Use this function as a fallback that always works. - func_fallback_echo () - { - eval 'cat <<_LTECHO_EOF -$1 -_LTECHO_EOF' - } - ECHO='func_fallback_echo' -fi - -# func_echo_all arg... -# Invoke $ECHO with all args, space-separated. -func_echo_all () -{ - $ECHO "" -} - -case "$ECHO" in - printf*) { $as_echo "$as_me:${as_lineno-$LINENO}: result: printf" >&5 -$as_echo "printf" >&6; } ;; - print*) { $as_echo "$as_me:${as_lineno-$LINENO}: result: print -r" >&5 -$as_echo "print -r" >&6; } ;; - *) { $as_echo "$as_me:${as_lineno-$LINENO}: result: cat" >&5 -$as_echo "cat" >&6; } ;; -esac - - - - - - - - - - - - - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a sed that does not truncate output" >&5 -$as_echo_n "checking for a sed that does not truncate output... " >&6; } -if ${ac_cv_path_SED+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_script=s/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb/ - for ac_i in 1 2 3 4 5 6 7; do - ac_script="$ac_script$as_nl$ac_script" - done - echo "$ac_script" 2>/dev/null | sed 99q >conftest.sed - { ac_script=; unset ac_script;} - if test -z "$SED"; then - ac_path_SED_found=false - # Loop through the user's path and test for each of PROGNAME-LIST - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_prog in sed gsed; do - for ac_exec_ext in '' $ac_executable_extensions; do - ac_path_SED="$as_dir/$ac_prog$ac_exec_ext" - { test -f "$ac_path_SED" && $as_test_x "$ac_path_SED"; } || continue -# Check for GNU ac_path_SED and select it if it is found. - # Check for GNU $ac_path_SED -case `"$ac_path_SED" --version 2>&1` in -*GNU*) - ac_cv_path_SED="$ac_path_SED" ac_path_SED_found=:;; -*) - ac_count=0 - $as_echo_n 0123456789 >"conftest.in" - while : - do - cat "conftest.in" "conftest.in" >"conftest.tmp" - mv "conftest.tmp" "conftest.in" - cp "conftest.in" "conftest.nl" - $as_echo '' >> "conftest.nl" - "$ac_path_SED" -f conftest.sed < "conftest.nl" >"conftest.out" 2>/dev/null || break - diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break - as_fn_arith $ac_count + 1 && ac_count=$as_val - if test $ac_count -gt ${ac_path_SED_max-0}; then - # Best one so far, save it but keep looking for a better one - ac_cv_path_SED="$ac_path_SED" - ac_path_SED_max=$ac_count - fi - # 10*(2^10) chars as input seems more than enough - test $ac_count -gt 10 && break - done - rm -f conftest.in conftest.tmp conftest.nl conftest.out;; -esac - - $ac_path_SED_found && break 3 - done - done - done -IFS=$as_save_IFS - if test -z "$ac_cv_path_SED"; then - as_fn_error $? "no acceptable sed could be found in \$PATH" "$LINENO" 5 - fi -else - ac_cv_path_SED=$SED -fi - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_SED" >&5 -$as_echo "$ac_cv_path_SED" >&6; } - SED="$ac_cv_path_SED" - rm -f conftest.sed - -test -z "$SED" && SED=sed -Xsed="$SED -e 1s/^X//" - - - - - - - - - - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for grep that handles long lines and -e" >&5 -$as_echo_n "checking for grep that handles long lines and -e... " >&6; } -if ${ac_cv_path_GREP+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -z "$GREP"; then - ac_path_GREP_found=false - # Loop through the user's path and test for each of PROGNAME-LIST - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_prog in grep ggrep; do - for ac_exec_ext in '' $ac_executable_extensions; do - ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext" - { test -f "$ac_path_GREP" && $as_test_x "$ac_path_GREP"; } || continue -# Check for GNU ac_path_GREP and select it if it is found. - # Check for GNU $ac_path_GREP -case `"$ac_path_GREP" --version 2>&1` in -*GNU*) - ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_found=:;; -*) - ac_count=0 - $as_echo_n 0123456789 >"conftest.in" - while : - do - cat "conftest.in" "conftest.in" >"conftest.tmp" - mv "conftest.tmp" "conftest.in" - cp "conftest.in" "conftest.nl" - $as_echo 'GREP' >> "conftest.nl" - "$ac_path_GREP" -e 'GREP$' -e '-(cannot match)-' < "conftest.nl" >"conftest.out" 2>/dev/null || break - diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break - as_fn_arith $ac_count + 1 && ac_count=$as_val - if test $ac_count -gt ${ac_path_GREP_max-0}; then - # Best one so far, save it but keep looking for a better one - ac_cv_path_GREP="$ac_path_GREP" - ac_path_GREP_max=$ac_count - fi - # 10*(2^10) chars as input seems more than enough - test $ac_count -gt 10 && break - done - rm -f conftest.in conftest.tmp conftest.nl conftest.out;; -esac - - $ac_path_GREP_found && break 3 - done - done - done -IFS=$as_save_IFS - if test -z "$ac_cv_path_GREP"; then - as_fn_error $? "no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 - fi -else - ac_cv_path_GREP=$GREP -fi - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_GREP" >&5 -$as_echo "$ac_cv_path_GREP" >&6; } - GREP="$ac_cv_path_GREP" - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for egrep" >&5 -$as_echo_n "checking for egrep... " >&6; } -if ${ac_cv_path_EGREP+:} false; then : - $as_echo_n "(cached) " >&6 -else - if echo a | $GREP -E '(a|b)' >/dev/null 2>&1 - then ac_cv_path_EGREP="$GREP -E" - else - if test -z "$EGREP"; then - ac_path_EGREP_found=false - # Loop through the user's path and test for each of PROGNAME-LIST - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_prog in egrep; do - for ac_exec_ext in '' $ac_executable_extensions; do - ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext" - { test -f "$ac_path_EGREP" && $as_test_x "$ac_path_EGREP"; } || continue -# Check for GNU ac_path_EGREP and select it if it is found. - # Check for GNU $ac_path_EGREP -case `"$ac_path_EGREP" --version 2>&1` in -*GNU*) - ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_found=:;; -*) - ac_count=0 - $as_echo_n 0123456789 >"conftest.in" - while : - do - cat "conftest.in" "conftest.in" >"conftest.tmp" - mv "conftest.tmp" "conftest.in" - cp "conftest.in" "conftest.nl" - $as_echo 'EGREP' >> "conftest.nl" - "$ac_path_EGREP" 'EGREP$' < "conftest.nl" >"conftest.out" 2>/dev/null || break - diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break - as_fn_arith $ac_count + 1 && ac_count=$as_val - if test $ac_count -gt ${ac_path_EGREP_max-0}; then - # Best one so far, save it but keep looking for a better one - ac_cv_path_EGREP="$ac_path_EGREP" - ac_path_EGREP_max=$ac_count - fi - # 10*(2^10) chars as input seems more than enough - test $ac_count -gt 10 && break - done - rm -f conftest.in conftest.tmp conftest.nl conftest.out;; -esac - - $ac_path_EGREP_found && break 3 - done - done - done -IFS=$as_save_IFS - if test -z "$ac_cv_path_EGREP"; then - as_fn_error $? "no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 - fi -else - ac_cv_path_EGREP=$EGREP -fi - - fi -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_EGREP" >&5 -$as_echo "$ac_cv_path_EGREP" >&6; } - EGREP="$ac_cv_path_EGREP" - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for fgrep" >&5 -$as_echo_n "checking for fgrep... " >&6; } -if ${ac_cv_path_FGREP+:} false; then : - $as_echo_n "(cached) " >&6 -else - if echo 'ab*c' | $GREP -F 'ab*c' >/dev/null 2>&1 - then ac_cv_path_FGREP="$GREP -F" - else - if test -z "$FGREP"; then - ac_path_FGREP_found=false - # Loop through the user's path and test for each of PROGNAME-LIST - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_prog in fgrep; do - for ac_exec_ext in '' $ac_executable_extensions; do - ac_path_FGREP="$as_dir/$ac_prog$ac_exec_ext" - { test -f "$ac_path_FGREP" && $as_test_x "$ac_path_FGREP"; } || continue -# Check for GNU ac_path_FGREP and select it if it is found. - # Check for GNU $ac_path_FGREP -case `"$ac_path_FGREP" --version 2>&1` in -*GNU*) - ac_cv_path_FGREP="$ac_path_FGREP" ac_path_FGREP_found=:;; -*) - ac_count=0 - $as_echo_n 0123456789 >"conftest.in" - while : - do - cat "conftest.in" "conftest.in" >"conftest.tmp" - mv "conftest.tmp" "conftest.in" - cp "conftest.in" "conftest.nl" - $as_echo 'FGREP' >> "conftest.nl" - "$ac_path_FGREP" FGREP < "conftest.nl" >"conftest.out" 2>/dev/null || break - diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break - as_fn_arith $ac_count + 1 && ac_count=$as_val - if test $ac_count -gt ${ac_path_FGREP_max-0}; then - # Best one so far, save it but keep looking for a better one - ac_cv_path_FGREP="$ac_path_FGREP" - ac_path_FGREP_max=$ac_count - fi - # 10*(2^10) chars as input seems more than enough - test $ac_count -gt 10 && break - done - rm -f conftest.in conftest.tmp conftest.nl conftest.out;; -esac - - $ac_path_FGREP_found && break 3 - done - done - done -IFS=$as_save_IFS - if test -z "$ac_cv_path_FGREP"; then - as_fn_error $? "no acceptable fgrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 - fi -else - ac_cv_path_FGREP=$FGREP -fi - - fi -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_FGREP" >&5 -$as_echo "$ac_cv_path_FGREP" >&6; } - FGREP="$ac_cv_path_FGREP" - - -test -z "$GREP" && GREP=grep - - - - - - - - - - - - - - - - - - - -# Check whether --with-gnu-ld was given. -if test "${with_gnu_ld+set}" = set; then : - withval=$with_gnu_ld; test "$withval" = no || with_gnu_ld=yes -else - with_gnu_ld=no -fi - -ac_prog=ld -if test "$GCC" = yes; then - # Check if gcc -print-prog-name=ld gives a path. - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld used by $CC" >&5 -$as_echo_n "checking for ld used by $CC... " >&6; } - case $host in - *-*-mingw*) - # gcc leaves a trailing carriage return which upsets mingw - ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; - *) - ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; - esac - case $ac_prog in - # Accept absolute paths. - [\\/]* | ?:[\\/]*) - re_direlt='/[^/][^/]*/\.\./' - # Canonicalize the pathname of ld - ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'` - while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do - ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"` - done - test -z "$LD" && LD="$ac_prog" - ;; - "") - # If it fails, then pretend we aren't using GCC. - ac_prog=ld - ;; - *) - # If it is relative, then search for the first ld in PATH. - with_gnu_ld=unknown - ;; - esac -elif test "$with_gnu_ld" = yes; then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU ld" >&5 -$as_echo_n "checking for GNU ld... " >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for non-GNU ld" >&5 -$as_echo_n "checking for non-GNU ld... " >&6; } -fi -if ${lt_cv_path_LD+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -z "$LD"; then - lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR - for ac_dir in $PATH; do - IFS="$lt_save_ifs" - test -z "$ac_dir" && ac_dir=. - if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then - lt_cv_path_LD="$ac_dir/$ac_prog" - # Check to see if the program is GNU ld. I'd rather use --version, - # but apparently some variants of GNU ld only accept -v. - # Break only if it was the GNU/non-GNU ld that we prefer. - case `"$lt_cv_path_LD" -v 2>&1 &5 -$as_echo "$LD" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi -test -z "$LD" && as_fn_error $? "no acceptable ld found in \$PATH" "$LINENO" 5 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if the linker ($LD) is GNU ld" >&5 -$as_echo_n "checking if the linker ($LD) is GNU ld... " >&6; } -if ${lt_cv_prog_gnu_ld+:} false; then : - $as_echo_n "(cached) " >&6 -else - # I'd rather use --version here, but apparently some GNU lds only accept -v. -case `$LD -v 2>&1 &5 -$as_echo "$lt_cv_prog_gnu_ld" >&6; } -with_gnu_ld=$lt_cv_prog_gnu_ld - - - - - - - - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for BSD- or MS-compatible name lister (nm)" >&5 -$as_echo_n "checking for BSD- or MS-compatible name lister (nm)... " >&6; } -if ${lt_cv_path_NM+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$NM"; then - # Let the user override the test. - lt_cv_path_NM="$NM" -else - lt_nm_to_check="${ac_tool_prefix}nm" - if test -n "$ac_tool_prefix" && test "$build" = "$host"; then - lt_nm_to_check="$lt_nm_to_check nm" - fi - for lt_tmp_nm in $lt_nm_to_check; do - lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR - for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do - IFS="$lt_save_ifs" - test -z "$ac_dir" && ac_dir=. - tmp_nm="$ac_dir/$lt_tmp_nm" - if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext" ; then - # Check to see if the nm accepts a BSD-compat flag. - # Adding the `sed 1q' prevents false positives on HP-UX, which says: - # nm: unknown option "B" ignored - # Tru64's nm complains that /dev/null is an invalid object file - case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in - */dev/null* | *'Invalid file or object type'*) - lt_cv_path_NM="$tmp_nm -B" - break - ;; - *) - case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in - */dev/null*) - lt_cv_path_NM="$tmp_nm -p" - break - ;; - *) - lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but - continue # so that we can try to find one that supports BSD flags - ;; - esac - ;; - esac - fi - done - IFS="$lt_save_ifs" - done - : ${lt_cv_path_NM=no} -fi -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_path_NM" >&5 -$as_echo "$lt_cv_path_NM" >&6; } -if test "$lt_cv_path_NM" != "no"; then - NM="$lt_cv_path_NM" -else - # Didn't find any BSD compatible name lister, look for dumpbin. - if test -n "$DUMPBIN"; then : - # Let the user override the test. - else - if test -n "$ac_tool_prefix"; then - for ac_prog in dumpbin "link -dump" - do - # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. -set dummy $ac_tool_prefix$ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_DUMPBIN+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$DUMPBIN"; then - ac_cv_prog_DUMPBIN="$DUMPBIN" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_DUMPBIN="$ac_tool_prefix$ac_prog" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -DUMPBIN=$ac_cv_prog_DUMPBIN -if test -n "$DUMPBIN"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DUMPBIN" >&5 -$as_echo "$DUMPBIN" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$DUMPBIN" && break - done -fi -if test -z "$DUMPBIN"; then - ac_ct_DUMPBIN=$DUMPBIN - for ac_prog in dumpbin "link -dump" -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_ac_ct_DUMPBIN+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$ac_ct_DUMPBIN"; then - ac_cv_prog_ac_ct_DUMPBIN="$ac_ct_DUMPBIN" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_ac_ct_DUMPBIN="$ac_prog" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -ac_ct_DUMPBIN=$ac_cv_prog_ac_ct_DUMPBIN -if test -n "$ac_ct_DUMPBIN"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DUMPBIN" >&5 -$as_echo "$ac_ct_DUMPBIN" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$ac_ct_DUMPBIN" && break -done - - if test "x$ac_ct_DUMPBIN" = x; then - DUMPBIN=":" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - DUMPBIN=$ac_ct_DUMPBIN - fi -fi - - case `$DUMPBIN -symbols /dev/null 2>&1 | sed '1q'` in - *COFF*) - DUMPBIN="$DUMPBIN -symbols" - ;; - *) - DUMPBIN=: - ;; - esac - fi - - if test "$DUMPBIN" != ":"; then - NM="$DUMPBIN" - fi -fi -test -z "$NM" && NM=nm - - - - - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking the name lister ($NM) interface" >&5 -$as_echo_n "checking the name lister ($NM) interface... " >&6; } -if ${lt_cv_nm_interface+:} false; then : - $as_echo_n "(cached) " >&6 -else - lt_cv_nm_interface="BSD nm" - echo "int some_variable = 0;" > conftest.$ac_ext - (eval echo "\"\$as_me:$LINENO: $ac_compile\"" >&5) - (eval "$ac_compile" 2>conftest.err) - cat conftest.err >&5 - (eval echo "\"\$as_me:$LINENO: $NM \\\"conftest.$ac_objext\\\"\"" >&5) - (eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out) - cat conftest.err >&5 - (eval echo "\"\$as_me:$LINENO: output\"" >&5) - cat conftest.out >&5 - if $GREP 'External.*some_variable' conftest.out > /dev/null; then - lt_cv_nm_interface="MS dumpbin" - fi - rm -f conftest* -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_nm_interface" >&5 -$as_echo "$lt_cv_nm_interface" >&6; } - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ln -s works" >&5 -$as_echo_n "checking whether ln -s works... " >&6; } -LN_S=$as_ln_s -if test "$LN_S" = "ln -s"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no, using $LN_S" >&5 -$as_echo "no, using $LN_S" >&6; } -fi - -# find the maximum length of command line arguments -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking the maximum length of command line arguments" >&5 -$as_echo_n "checking the maximum length of command line arguments... " >&6; } -if ${lt_cv_sys_max_cmd_len+:} false; then : - $as_echo_n "(cached) " >&6 -else - i=0 - teststring="ABCD" - - case $build_os in - msdosdjgpp*) - # On DJGPP, this test can blow up pretty badly due to problems in libc - # (any single argument exceeding 2000 bytes causes a buffer overrun - # during glob expansion). Even if it were fixed, the result of this - # check would be larger than it should be. - lt_cv_sys_max_cmd_len=12288; # 12K is about right - ;; - - gnu*) - # Under GNU Hurd, this test is not required because there is - # no limit to the length of command line arguments. - # Libtool will interpret -1 as no limit whatsoever - lt_cv_sys_max_cmd_len=-1; - ;; - - cygwin* | mingw* | cegcc*) - # On Win9x/ME, this test blows up -- it succeeds, but takes - # about 5 minutes as the teststring grows exponentially. - # Worse, since 9x/ME are not pre-emptively multitasking, - # you end up with a "frozen" computer, even though with patience - # the test eventually succeeds (with a max line length of 256k). - # Instead, let's just punt: use the minimum linelength reported by - # all of the supported platforms: 8192 (on NT/2K/XP). - lt_cv_sys_max_cmd_len=8192; - ;; - - mint*) - # On MiNT this can take a long time and run out of memory. - lt_cv_sys_max_cmd_len=8192; - ;; - - amigaos*) - # On AmigaOS with pdksh, this test takes hours, literally. - # So we just punt and use a minimum line length of 8192. - lt_cv_sys_max_cmd_len=8192; - ;; - - netbsd* | freebsd* | openbsd* | darwin* | dragonfly*) - # This has been around since 386BSD, at least. Likely further. - if test -x /sbin/sysctl; then - lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax` - elif test -x /usr/sbin/sysctl; then - lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax` - else - lt_cv_sys_max_cmd_len=65536 # usable default for all BSDs - fi - # And add a safety zone - lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` - lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` - ;; - - interix*) - # We know the value 262144 and hardcode it with a safety zone (like BSD) - lt_cv_sys_max_cmd_len=196608 - ;; - - osf*) - # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure - # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not - # nice to cause kernel panics so lets avoid the loop below. - # First set a reasonable default. - lt_cv_sys_max_cmd_len=16384 - # - if test -x /sbin/sysconfig; then - case `/sbin/sysconfig -q proc exec_disable_arg_limit` in - *1*) lt_cv_sys_max_cmd_len=-1 ;; - esac - fi - ;; - sco3.2v5*) - lt_cv_sys_max_cmd_len=102400 - ;; - sysv5* | sco5v6* | sysv4.2uw2*) - kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null` - if test -n "$kargmax"; then - lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[ ]//'` - else - lt_cv_sys_max_cmd_len=32768 - fi - ;; - *) - lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null` - if test -n "$lt_cv_sys_max_cmd_len"; then - lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` - lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` - else - # Make teststring a little bigger before we do anything with it. - # a 1K string should be a reasonable start. - for i in 1 2 3 4 5 6 7 8 ; do - teststring=$teststring$teststring - done - SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}} - # If test is not a shell built-in, we'll probably end up computing a - # maximum length that is only half of the actual maximum length, but - # we can't tell. - while { test "X"`func_fallback_echo "$teststring$teststring" 2>/dev/null` \ - = "X$teststring$teststring"; } >/dev/null 2>&1 && - test $i != 17 # 1/2 MB should be enough - do - i=`expr $i + 1` - teststring=$teststring$teststring - done - # Only check the string length outside the loop. - lt_cv_sys_max_cmd_len=`expr "X$teststring" : ".*" 2>&1` - teststring= - # Add a significant safety factor because C++ compilers can tack on - # massive amounts of additional arguments before passing them to the - # linker. It appears as though 1/2 is a usable value. - lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2` - fi - ;; - esac - -fi - -if test -n $lt_cv_sys_max_cmd_len ; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_sys_max_cmd_len" >&5 -$as_echo "$lt_cv_sys_max_cmd_len" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: none" >&5 -$as_echo "none" >&6; } -fi -max_cmd_len=$lt_cv_sys_max_cmd_len - - - - - - -: ${CP="cp -f"} -: ${MV="mv -f"} -: ${RM="rm -f"} - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the shell understands some XSI constructs" >&5 -$as_echo_n "checking whether the shell understands some XSI constructs... " >&6; } -# Try some XSI features -xsi_shell=no -( _lt_dummy="a/b/c" - test "${_lt_dummy##*/},${_lt_dummy%/*},${_lt_dummy#??}"${_lt_dummy%"$_lt_dummy"}, \ - = c,a/b,b/c, \ - && eval 'test $(( 1 + 1 )) -eq 2 \ - && test "${#_lt_dummy}" -eq 5' ) >/dev/null 2>&1 \ - && xsi_shell=yes -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xsi_shell" >&5 -$as_echo "$xsi_shell" >&6; } - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the shell understands \"+=\"" >&5 -$as_echo_n "checking whether the shell understands \"+=\"... " >&6; } -lt_shell_append=no -( foo=bar; set foo baz; eval "$1+=\$2" && test "$foo" = barbaz ) \ - >/dev/null 2>&1 \ - && lt_shell_append=yes -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_shell_append" >&5 -$as_echo "$lt_shell_append" >&6; } - - -if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then - lt_unset=unset -else - lt_unset=false -fi - - - - - -# test EBCDIC or ASCII -case `echo X|tr X '\101'` in - A) # ASCII based system - # \n is not interpreted correctly by Solaris 8 /usr/ucb/tr - lt_SP2NL='tr \040 \012' - lt_NL2SP='tr \015\012 \040\040' - ;; - *) # EBCDIC based system - lt_SP2NL='tr \100 \n' - lt_NL2SP='tr \r\n \100\100' - ;; -esac - - - - - - - - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to convert $build file names to $host format" >&5 -$as_echo_n "checking how to convert $build file names to $host format... " >&6; } -if ${lt_cv_to_host_file_cmd+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $host in - *-*-mingw* ) - case $build in - *-*-mingw* ) # actually msys - lt_cv_to_host_file_cmd=func_convert_file_msys_to_w32 - ;; - *-*-cygwin* ) - lt_cv_to_host_file_cmd=func_convert_file_cygwin_to_w32 - ;; - * ) # otherwise, assume *nix - lt_cv_to_host_file_cmd=func_convert_file_nix_to_w32 - ;; - esac - ;; - *-*-cygwin* ) - case $build in - *-*-mingw* ) # actually msys - lt_cv_to_host_file_cmd=func_convert_file_msys_to_cygwin - ;; - *-*-cygwin* ) - lt_cv_to_host_file_cmd=func_convert_file_noop - ;; - * ) # otherwise, assume *nix - lt_cv_to_host_file_cmd=func_convert_file_nix_to_cygwin - ;; - esac - ;; - * ) # unhandled hosts (and "normal" native builds) - lt_cv_to_host_file_cmd=func_convert_file_noop - ;; -esac - -fi - -to_host_file_cmd=$lt_cv_to_host_file_cmd -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_to_host_file_cmd" >&5 -$as_echo "$lt_cv_to_host_file_cmd" >&6; } - - - - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to convert $build file names to toolchain format" >&5 -$as_echo_n "checking how to convert $build file names to toolchain format... " >&6; } -if ${lt_cv_to_tool_file_cmd+:} false; then : - $as_echo_n "(cached) " >&6 -else - #assume ordinary cross tools, or native build. -lt_cv_to_tool_file_cmd=func_convert_file_noop -case $host in - *-*-mingw* ) - case $build in - *-*-mingw* ) # actually msys - lt_cv_to_tool_file_cmd=func_convert_file_msys_to_w32 - ;; - esac - ;; -esac - -fi - -to_tool_file_cmd=$lt_cv_to_tool_file_cmd -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_to_tool_file_cmd" >&5 -$as_echo "$lt_cv_to_tool_file_cmd" >&6; } - - - - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $LD option to reload object files" >&5 -$as_echo_n "checking for $LD option to reload object files... " >&6; } -if ${lt_cv_ld_reload_flag+:} false; then : - $as_echo_n "(cached) " >&6 -else - lt_cv_ld_reload_flag='-r' -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_reload_flag" >&5 -$as_echo "$lt_cv_ld_reload_flag" >&6; } -reload_flag=$lt_cv_ld_reload_flag -case $reload_flag in -"" | " "*) ;; -*) reload_flag=" $reload_flag" ;; -esac -reload_cmds='$LD$reload_flag -o $output$reload_objs' -case $host_os in - cygwin* | mingw* | pw32* | cegcc*) - if test "$GCC" != yes; then - reload_cmds=false - fi - ;; - darwin*) - if test "$GCC" = yes; then - reload_cmds='$LTCC $LTCFLAGS -nostdlib ${wl}-r -o $output$reload_objs' - else - reload_cmds='$LD$reload_flag -o $output$reload_objs' - fi - ;; -esac - - - - - - - - - -if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}objdump", so it can be a program name with args. -set dummy ${ac_tool_prefix}objdump; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_OBJDUMP+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$OBJDUMP"; then - ac_cv_prog_OBJDUMP="$OBJDUMP" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_OBJDUMP="${ac_tool_prefix}objdump" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -OBJDUMP=$ac_cv_prog_OBJDUMP -if test -n "$OBJDUMP"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OBJDUMP" >&5 -$as_echo "$OBJDUMP" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -fi -if test -z "$ac_cv_prog_OBJDUMP"; then - ac_ct_OBJDUMP=$OBJDUMP - # Extract the first word of "objdump", so it can be a program name with args. -set dummy objdump; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_ac_ct_OBJDUMP+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$ac_ct_OBJDUMP"; then - ac_cv_prog_ac_ct_OBJDUMP="$ac_ct_OBJDUMP" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_ac_ct_OBJDUMP="objdump" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -ac_ct_OBJDUMP=$ac_cv_prog_ac_ct_OBJDUMP -if test -n "$ac_ct_OBJDUMP"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OBJDUMP" >&5 -$as_echo "$ac_ct_OBJDUMP" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - if test "x$ac_ct_OBJDUMP" = x; then - OBJDUMP="false" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - OBJDUMP=$ac_ct_OBJDUMP - fi -else - OBJDUMP="$ac_cv_prog_OBJDUMP" -fi - -test -z "$OBJDUMP" && OBJDUMP=objdump - - - - - - - - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to recognize dependent libraries" >&5 -$as_echo_n "checking how to recognize dependent libraries... " >&6; } -if ${lt_cv_deplibs_check_method+:} false; then : - $as_echo_n "(cached) " >&6 -else - lt_cv_file_magic_cmd='$MAGIC_CMD' -lt_cv_file_magic_test_file= -lt_cv_deplibs_check_method='unknown' -# Need to set the preceding variable on all platforms that support -# interlibrary dependencies. -# 'none' -- dependencies not supported. -# `unknown' -- same as none, but documents that we really don't know. -# 'pass_all' -- all dependencies passed with no checks. -# 'test_compile' -- check by making test program. -# 'file_magic [[regex]]' -- check by looking for files in library path -# which responds to the $file_magic_cmd with a given extended regex. -# If you have `file' or equivalent on your system and you're not sure -# whether `pass_all' will *always* work, you probably want this one. - -case $host_os in -aix[4-9]*) - lt_cv_deplibs_check_method=pass_all - ;; - -beos*) - lt_cv_deplibs_check_method=pass_all - ;; - -bsdi[45]*) - lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib)' - lt_cv_file_magic_cmd='/usr/bin/file -L' - lt_cv_file_magic_test_file=/shlib/libc.so - ;; - -cygwin*) - # func_win32_libid is a shell function defined in ltmain.sh - lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' - lt_cv_file_magic_cmd='func_win32_libid' - ;; - -mingw* | pw32*) - # Base MSYS/MinGW do not provide the 'file' command needed by - # func_win32_libid shell function, so use a weaker test based on 'objdump', - # unless we find 'file', for example because we are cross-compiling. - # func_win32_libid assumes BSD nm, so disallow it if using MS dumpbin. - if ( test "$lt_cv_nm_interface" = "BSD nm" && file / ) >/dev/null 2>&1; then - lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' - lt_cv_file_magic_cmd='func_win32_libid' - else - # Keep this pattern in sync with the one in func_win32_libid. - lt_cv_deplibs_check_method='file_magic file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)' - lt_cv_file_magic_cmd='$OBJDUMP -f' - fi - ;; - -cegcc*) - # use the weaker test based on 'objdump'. See mingw*. - lt_cv_deplibs_check_method='file_magic file format pe-arm-.*little(.*architecture: arm)?' - lt_cv_file_magic_cmd='$OBJDUMP -f' - ;; - -darwin* | rhapsody*) - lt_cv_deplibs_check_method=pass_all - ;; - -freebsd* | dragonfly*) - if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then - case $host_cpu in - i*86 ) - # Not sure whether the presence of OpenBSD here was a mistake. - # Let's accept both of them until this is cleared up. - lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[3-9]86 (compact )?demand paged shared library' - lt_cv_file_magic_cmd=/usr/bin/file - lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*` - ;; - esac - else - lt_cv_deplibs_check_method=pass_all - fi - ;; - -gnu*) - lt_cv_deplibs_check_method=pass_all - ;; - -haiku*) - lt_cv_deplibs_check_method=pass_all - ;; - -hpux10.20* | hpux11*) - lt_cv_file_magic_cmd=/usr/bin/file - case $host_cpu in - ia64*) - lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF-[0-9][0-9]) shared object file - IA64' - lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so - ;; - hppa*64*) - lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF[ -][0-9][0-9])(-bit)?( [LM]SB)? shared object( file)?[, -]* PA-RISC [0-9]\.[0-9]' - lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl - ;; - *) - lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|PA-RISC[0-9]\.[0-9]) shared library' - lt_cv_file_magic_test_file=/usr/lib/libc.sl - ;; - esac - ;; - -interix[3-9]*) - # PIC code is broken on Interix 3.x, that's why |\.a not |_pic\.a here - lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so|\.a)$' - ;; - -irix5* | irix6* | nonstopux*) - case $LD in - *-32|*"-32 ") libmagic=32-bit;; - *-n32|*"-n32 ") libmagic=N32;; - *-64|*"-64 ") libmagic=64-bit;; - *) libmagic=never-match;; - esac - lt_cv_deplibs_check_method=pass_all - ;; - -# This must be Linux ELF. -linux* | k*bsd*-gnu | kopensolaris*-gnu) - lt_cv_deplibs_check_method=pass_all - ;; - -netbsd*) - if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then - lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|_pic\.a)$' - else - lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so|_pic\.a)$' - fi - ;; - -newos6*) - lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (executable|dynamic lib)' - lt_cv_file_magic_cmd=/usr/bin/file - lt_cv_file_magic_test_file=/usr/lib/libnls.so - ;; - -*nto* | *qnx*) - lt_cv_deplibs_check_method=pass_all - ;; - -openbsd*) - if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then - lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|\.so|_pic\.a)$' - else - lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|_pic\.a)$' - fi - ;; - -osf3* | osf4* | osf5*) - lt_cv_deplibs_check_method=pass_all - ;; - -rdos*) - lt_cv_deplibs_check_method=pass_all - ;; - -solaris*) - lt_cv_deplibs_check_method=pass_all - ;; - -sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) - lt_cv_deplibs_check_method=pass_all - ;; - -sysv4 | sysv4.3*) - case $host_vendor in - motorola) - lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib) M[0-9][0-9]* Version [0-9]' - lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*` - ;; - ncr) - lt_cv_deplibs_check_method=pass_all - ;; - sequent) - lt_cv_file_magic_cmd='/bin/file' - lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [LM]SB (shared object|dynamic lib )' - ;; - sni) - lt_cv_file_magic_cmd='/bin/file' - lt_cv_deplibs_check_method="file_magic ELF [0-9][0-9]*-bit [LM]SB dynamic lib" - lt_cv_file_magic_test_file=/lib/libc.so - ;; - siemens) - lt_cv_deplibs_check_method=pass_all - ;; - pc) - lt_cv_deplibs_check_method=pass_all - ;; - esac - ;; - -tpf*) - lt_cv_deplibs_check_method=pass_all - ;; -esac - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_deplibs_check_method" >&5 -$as_echo "$lt_cv_deplibs_check_method" >&6; } - -file_magic_glob= -want_nocaseglob=no -if test "$build" = "$host"; then - case $host_os in - mingw* | pw32*) - if ( shopt | grep nocaseglob ) >/dev/null 2>&1; then - want_nocaseglob=yes - else - file_magic_glob=`echo aAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyYzZ | $SED -e "s/\(..\)/s\/[\1]\/[\1]\/g;/g"` - fi - ;; - esac -fi - -file_magic_cmd=$lt_cv_file_magic_cmd -deplibs_check_method=$lt_cv_deplibs_check_method -test -z "$deplibs_check_method" && deplibs_check_method=unknown - - - - - - - - - - - - - - - - - - - - - - -if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}dlltool", so it can be a program name with args. -set dummy ${ac_tool_prefix}dlltool; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_DLLTOOL+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$DLLTOOL"; then - ac_cv_prog_DLLTOOL="$DLLTOOL" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_DLLTOOL="${ac_tool_prefix}dlltool" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -DLLTOOL=$ac_cv_prog_DLLTOOL -if test -n "$DLLTOOL"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DLLTOOL" >&5 -$as_echo "$DLLTOOL" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -fi -if test -z "$ac_cv_prog_DLLTOOL"; then - ac_ct_DLLTOOL=$DLLTOOL - # Extract the first word of "dlltool", so it can be a program name with args. -set dummy dlltool; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_ac_ct_DLLTOOL+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$ac_ct_DLLTOOL"; then - ac_cv_prog_ac_ct_DLLTOOL="$ac_ct_DLLTOOL" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_ac_ct_DLLTOOL="dlltool" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -ac_ct_DLLTOOL=$ac_cv_prog_ac_ct_DLLTOOL -if test -n "$ac_ct_DLLTOOL"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DLLTOOL" >&5 -$as_echo "$ac_ct_DLLTOOL" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - if test "x$ac_ct_DLLTOOL" = x; then - DLLTOOL="false" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - DLLTOOL=$ac_ct_DLLTOOL - fi -else - DLLTOOL="$ac_cv_prog_DLLTOOL" -fi - -test -z "$DLLTOOL" && DLLTOOL=dlltool - - - - - - - - - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to associate runtime and link libraries" >&5 -$as_echo_n "checking how to associate runtime and link libraries... " >&6; } -if ${lt_cv_sharedlib_from_linklib_cmd+:} false; then : - $as_echo_n "(cached) " >&6 -else - lt_cv_sharedlib_from_linklib_cmd='unknown' - -case $host_os in -cygwin* | mingw* | pw32* | cegcc*) - # two different shell functions defined in ltmain.sh - # decide which to use based on capabilities of $DLLTOOL - case `$DLLTOOL --help 2>&1` in - *--identify-strict*) - lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib - ;; - *) - lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib_fallback - ;; - esac - ;; -*) - # fallback: assume linklib IS sharedlib - lt_cv_sharedlib_from_linklib_cmd="$ECHO" - ;; -esac - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_sharedlib_from_linklib_cmd" >&5 -$as_echo "$lt_cv_sharedlib_from_linklib_cmd" >&6; } -sharedlib_from_linklib_cmd=$lt_cv_sharedlib_from_linklib_cmd -test -z "$sharedlib_from_linklib_cmd" && sharedlib_from_linklib_cmd=$ECHO - - - - - - - - -if test -n "$ac_tool_prefix"; then - for ac_prog in ar - do - # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. -set dummy $ac_tool_prefix$ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_AR+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$AR"; then - ac_cv_prog_AR="$AR" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_AR="$ac_tool_prefix$ac_prog" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -AR=$ac_cv_prog_AR -if test -n "$AR"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AR" >&5 -$as_echo "$AR" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$AR" && break - done -fi -if test -z "$AR"; then - ac_ct_AR=$AR - for ac_prog in ar -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_ac_ct_AR+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$ac_ct_AR"; then - ac_cv_prog_ac_ct_AR="$ac_ct_AR" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_ac_ct_AR="$ac_prog" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -ac_ct_AR=$ac_cv_prog_ac_ct_AR -if test -n "$ac_ct_AR"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_AR" >&5 -$as_echo "$ac_ct_AR" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$ac_ct_AR" && break -done - - if test "x$ac_ct_AR" = x; then - AR="false" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - AR=$ac_ct_AR - fi -fi - -: ${AR=ar} -: ${AR_FLAGS=cru} - - - - - - - - - - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for archiver @FILE support" >&5 -$as_echo_n "checking for archiver @FILE support... " >&6; } -if ${lt_cv_ar_at_file+:} false; then : - $as_echo_n "(cached) " >&6 -else - lt_cv_ar_at_file=no - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - echo conftest.$ac_objext > conftest.lst - lt_ar_try='$AR $AR_FLAGS libconftest.a @conftest.lst >&5' - { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$lt_ar_try\""; } >&5 - (eval $lt_ar_try) 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } - if test "$ac_status" -eq 0; then - # Ensure the archiver fails upon bogus file names. - rm -f conftest.$ac_objext libconftest.a - { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$lt_ar_try\""; } >&5 - (eval $lt_ar_try) 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } - if test "$ac_status" -ne 0; then - lt_cv_ar_at_file=@ - fi - fi - rm -f conftest.* libconftest.a - -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ar_at_file" >&5 -$as_echo "$lt_cv_ar_at_file" >&6; } - -if test "x$lt_cv_ar_at_file" = xno; then - archiver_list_spec= -else - archiver_list_spec=$lt_cv_ar_at_file -fi - - - - - - - -if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. -set dummy ${ac_tool_prefix}strip; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_STRIP+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$STRIP"; then - ac_cv_prog_STRIP="$STRIP" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_STRIP="${ac_tool_prefix}strip" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -STRIP=$ac_cv_prog_STRIP -if test -n "$STRIP"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5 -$as_echo "$STRIP" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -fi -if test -z "$ac_cv_prog_STRIP"; then - ac_ct_STRIP=$STRIP - # Extract the first word of "strip", so it can be a program name with args. -set dummy strip; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_ac_ct_STRIP+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$ac_ct_STRIP"; then - ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_ac_ct_STRIP="strip" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP -if test -n "$ac_ct_STRIP"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5 -$as_echo "$ac_ct_STRIP" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - if test "x$ac_ct_STRIP" = x; then - STRIP=":" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - STRIP=$ac_ct_STRIP - fi -else - STRIP="$ac_cv_prog_STRIP" -fi - -test -z "$STRIP" && STRIP=: - - - - - - -if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args. -set dummy ${ac_tool_prefix}ranlib; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_RANLIB+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$RANLIB"; then - ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -RANLIB=$ac_cv_prog_RANLIB -if test -n "$RANLIB"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $RANLIB" >&5 -$as_echo "$RANLIB" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -fi -if test -z "$ac_cv_prog_RANLIB"; then - ac_ct_RANLIB=$RANLIB - # Extract the first word of "ranlib", so it can be a program name with args. -set dummy ranlib; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_ac_ct_RANLIB+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$ac_ct_RANLIB"; then - ac_cv_prog_ac_ct_RANLIB="$ac_ct_RANLIB" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_ac_ct_RANLIB="ranlib" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB -if test -n "$ac_ct_RANLIB"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_RANLIB" >&5 -$as_echo "$ac_ct_RANLIB" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - if test "x$ac_ct_RANLIB" = x; then - RANLIB=":" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - RANLIB=$ac_ct_RANLIB - fi -else - RANLIB="$ac_cv_prog_RANLIB" -fi - -test -z "$RANLIB" && RANLIB=: - - - - - - -# Determine commands to create old-style static archives. -old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs' -old_postinstall_cmds='chmod 644 $oldlib' -old_postuninstall_cmds= - -if test -n "$RANLIB"; then - case $host_os in - openbsd*) - old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$oldlib" - ;; - *) - old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$oldlib" - ;; - esac - old_archive_cmds="$old_archive_cmds~\$RANLIB \$oldlib" -fi - -case $host_os in - darwin*) - lock_old_archive_extraction=yes ;; - *) - lock_old_archive_extraction=no ;; -esac - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -# If no C compiler was specified, use CC. -LTCC=${LTCC-"$CC"} - -# If no C compiler flags were specified, use CFLAGS. -LTCFLAGS=${LTCFLAGS-"$CFLAGS"} - -# Allow CC to be a program name with arguments. -compiler=$CC - - -# Check for command to grab the raw symbol name followed by C symbol from nm. -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking command to parse $NM output from $compiler object" >&5 -$as_echo_n "checking command to parse $NM output from $compiler object... " >&6; } -if ${lt_cv_sys_global_symbol_pipe+:} false; then : - $as_echo_n "(cached) " >&6 -else - -# These are sane defaults that work on at least a few old systems. -# [They come from Ultrix. What could be older than Ultrix?!! ;)] - -# Character class describing NM global symbol codes. -symcode='[BCDEGRST]' - -# Regexp to match symbols that can be accessed directly from C. -sympat='\([_A-Za-z][_A-Za-z0-9]*\)' - -# Define system-specific variables. -case $host_os in -aix*) - symcode='[BCDT]' - ;; -cygwin* | mingw* | pw32* | cegcc*) - symcode='[ABCDGISTW]' - ;; -hpux*) - if test "$host_cpu" = ia64; then - symcode='[ABCDEGRST]' - fi - ;; -irix* | nonstopux*) - symcode='[BCDEGRST]' - ;; -osf*) - symcode='[BCDEGQRST]' - ;; -solaris*) - symcode='[BDRT]' - ;; -sco3.2v5*) - symcode='[DT]' - ;; -sysv4.2uw2*) - symcode='[DT]' - ;; -sysv5* | sco5v6* | unixware* | OpenUNIX*) - symcode='[ABDT]' - ;; -sysv4) - symcode='[DFNSTU]' - ;; -esac - -# If we're using GNU nm, then use its standard symbol codes. -case `$NM -V 2>&1` in -*GNU* | *'with BFD'*) - symcode='[ABCDGIRSTW]' ;; -esac - -# Transform an extracted symbol line into a proper C declaration. -# Some systems (esp. on ia64) link data and code symbols differently, -# so use this general approach. -lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" - -# Transform an extracted symbol line into symbol name and symbol address -lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([^ ]*\)[ ]*$/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([^ ]*\) \([^ ]*\)$/ {\"\2\", (void *) \&\2},/p'" -lt_cv_sys_global_symbol_to_c_name_address_lib_prefix="sed -n -e 's/^: \([^ ]*\)[ ]*$/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([^ ]*\) \(lib[^ ]*\)$/ {\"\2\", (void *) \&\2},/p' -e 's/^$symcode* \([^ ]*\) \([^ ]*\)$/ {\"lib\2\", (void *) \&\2},/p'" - -# Handle CRLF in mingw tool chain -opt_cr= -case $build_os in -mingw*) - opt_cr=`$ECHO 'x\{0,1\}' | tr x '\015'` # option cr in regexp - ;; -esac - -# Try without a prefix underscore, then with it. -for ac_symprfx in "" "_"; do - - # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol. - symxfrm="\\1 $ac_symprfx\\2 \\2" - - # Write the raw and C identifiers. - if test "$lt_cv_nm_interface" = "MS dumpbin"; then - # Fake it for dumpbin and say T for any non-static function - # and D for any global variable. - # Also find C++ and __fastcall symbols from MSVC++, - # which start with @ or ?. - lt_cv_sys_global_symbol_pipe="$AWK '"\ -" {last_section=section; section=\$ 3};"\ -" /Section length .*#relocs.*(pick any)/{hide[last_section]=1};"\ -" \$ 0!~/External *\|/{next};"\ -" / 0+ UNDEF /{next}; / UNDEF \([^|]\)*()/{next};"\ -" {if(hide[section]) next};"\ -" {f=0}; \$ 0~/\(\).*\|/{f=1}; {printf f ? \"T \" : \"D \"};"\ -" {split(\$ 0, a, /\||\r/); split(a[2], s)};"\ -" s[1]~/^[@?]/{print s[1], s[1]; next};"\ -" s[1]~prfx {split(s[1],t,\"@\"); print t[1], substr(t[1],length(prfx))}"\ -" ' prfx=^$ac_symprfx" - else - lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[ ]\($symcode$symcode*\)[ ][ ]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'" - fi - lt_cv_sys_global_symbol_pipe="$lt_cv_sys_global_symbol_pipe | sed '/ __gnu_lto/d'" - - # Check to see that the pipe works correctly. - pipe_works=no - - rm -f conftest* - cat > conftest.$ac_ext <<_LT_EOF -#ifdef __cplusplus -extern "C" { -#endif -char nm_test_var; -void nm_test_func(void); -void nm_test_func(void){} -#ifdef __cplusplus -} -#endif -int main(){nm_test_var='a';nm_test_func();return(0);} -_LT_EOF - - if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 - (eval $ac_compile) 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - # Now try to grab the symbols. - nlist=conftest.nm - if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$NM conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist\""; } >&5 - (eval $NM conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist) 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } && test -s "$nlist"; then - # Try sorting and uniquifying the output. - if sort "$nlist" | uniq > "$nlist"T; then - mv -f "$nlist"T "$nlist" - else - rm -f "$nlist"T - fi - - # Make sure that we snagged all the symbols we need. - if $GREP ' nm_test_var$' "$nlist" >/dev/null; then - if $GREP ' nm_test_func$' "$nlist" >/dev/null; then - cat <<_LT_EOF > conftest.$ac_ext -/* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */ -#if defined(_WIN32) || defined(__CYGWIN__) || defined(_WIN32_WCE) -/* DATA imports from DLLs on WIN32 con't be const, because runtime - relocations are performed -- see ld's documentation on pseudo-relocs. */ -# define LT_DLSYM_CONST -#elif defined(__osf__) -/* This system does not cope well with relocations in const data. */ -# define LT_DLSYM_CONST -#else -# define LT_DLSYM_CONST const -#endif - -#ifdef __cplusplus -extern "C" { -#endif - -_LT_EOF - # Now generate the symbol file. - eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | $GREP -v main >> conftest.$ac_ext' - - cat <<_LT_EOF >> conftest.$ac_ext - -/* The mapping between symbol names and symbols. */ -LT_DLSYM_CONST struct { - const char *name; - void *address; -} -lt__PROGRAM__LTX_preloaded_symbols[] = -{ - { "@PROGRAM@", (void *) 0 }, -_LT_EOF - $SED "s/^$symcode$symcode* \(.*\) \(.*\)$/ {\"\2\", (void *) \&\2},/" < "$nlist" | $GREP -v main >> conftest.$ac_ext - cat <<\_LT_EOF >> conftest.$ac_ext - {0, (void *) 0} -}; - -/* This works around a problem in FreeBSD linker */ -#ifdef FREEBSD_WORKAROUND -static const void *lt_preloaded_setup() { - return lt__PROGRAM__LTX_preloaded_symbols; -} -#endif - -#ifdef __cplusplus -} -#endif -_LT_EOF - # Now try linking the two files. - mv conftest.$ac_objext conftstm.$ac_objext - lt_globsym_save_LIBS=$LIBS - lt_globsym_save_CFLAGS=$CFLAGS - LIBS="conftstm.$ac_objext" - CFLAGS="$CFLAGS$lt_prog_compiler_no_builtin_flag" - if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 - (eval $ac_link) 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } && test -s conftest${ac_exeext}; then - pipe_works=yes - fi - LIBS=$lt_globsym_save_LIBS - CFLAGS=$lt_globsym_save_CFLAGS - else - echo "cannot find nm_test_func in $nlist" >&5 - fi - else - echo "cannot find nm_test_var in $nlist" >&5 - fi - else - echo "cannot run $lt_cv_sys_global_symbol_pipe" >&5 - fi - else - echo "$progname: failed program was:" >&5 - cat conftest.$ac_ext >&5 - fi - rm -rf conftest* conftst* - - # Do not use the global_symbol_pipe unless it works. - if test "$pipe_works" = yes; then - break - else - lt_cv_sys_global_symbol_pipe= - fi -done - -fi - -if test -z "$lt_cv_sys_global_symbol_pipe"; then - lt_cv_sys_global_symbol_to_cdecl= -fi -if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: failed" >&5 -$as_echo "failed" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: ok" >&5 -$as_echo "ok" >&6; } -fi - -# Response file support. -if test "$lt_cv_nm_interface" = "MS dumpbin"; then - nm_file_list_spec='@' -elif $NM --help 2>/dev/null | grep '[@]FILE' >/dev/null; then - nm_file_list_spec='@' -fi - - - - - - - - - - - - - - - - - - - - - - - - - - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sysroot" >&5 -$as_echo_n "checking for sysroot... " >&6; } - -# Check whether --with-sysroot was given. -if test "${with_sysroot+set}" = set; then : - withval=$with_sysroot; -else - with_sysroot=no -fi - - -lt_sysroot= -case ${with_sysroot} in #( - yes) - if test "$GCC" = yes; then - lt_sysroot=`$CC --print-sysroot 2>/dev/null` - fi - ;; #( - /*) - lt_sysroot=`echo "$with_sysroot" | sed -e "$sed_quote_subst"` - ;; #( - no|'') - ;; #( - *) - { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${with_sysroot}" >&5 -$as_echo "${with_sysroot}" >&6; } - as_fn_error $? "The sysroot must be an absolute path." "$LINENO" 5 - ;; -esac - - { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${lt_sysroot:-no}" >&5 -$as_echo "${lt_sysroot:-no}" >&6; } - - - - - -# Check whether --enable-libtool-lock was given. -if test "${enable_libtool_lock+set}" = set; then : - enableval=$enable_libtool_lock; -fi - -test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes - -# Some flags need to be propagated to the compiler or linker for good -# libtool support. -case $host in -ia64-*-hpux*) - # Find out which ABI we are using. - echo 'int i;' > conftest.$ac_ext - if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 - (eval $ac_compile) 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - case `/usr/bin/file conftest.$ac_objext` in - *ELF-32*) - HPUX_IA64_MODE="32" - ;; - *ELF-64*) - HPUX_IA64_MODE="64" - ;; - esac - fi - rm -rf conftest* - ;; -*-*-irix6*) - # Find out which ABI we are using. - echo '#line '$LINENO' "configure"' > conftest.$ac_ext - if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 - (eval $ac_compile) 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - if test "$lt_cv_prog_gnu_ld" = yes; then - case `/usr/bin/file conftest.$ac_objext` in - *32-bit*) - LD="${LD-ld} -melf32bsmip" - ;; - *N32*) - LD="${LD-ld} -melf32bmipn32" - ;; - *64-bit*) - LD="${LD-ld} -melf64bmip" - ;; - esac - else - case `/usr/bin/file conftest.$ac_objext` in - *32-bit*) - LD="${LD-ld} -32" - ;; - *N32*) - LD="${LD-ld} -n32" - ;; - *64-bit*) - LD="${LD-ld} -64" - ;; - esac - fi - fi - rm -rf conftest* - ;; - -x86_64-*kfreebsd*-gnu|x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*| \ -s390*-*linux*|s390*-*tpf*|sparc*-*linux*) - # Find out which ABI we are using. - echo 'int i;' > conftest.$ac_ext - if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 - (eval $ac_compile) 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - case `/usr/bin/file conftest.o` in - *32-bit*) - case $host in - x86_64-*kfreebsd*-gnu) - LD="${LD-ld} -m elf_i386_fbsd" - ;; - x86_64-*linux*) - LD="${LD-ld} -m elf_i386" - ;; - ppc64-*linux*|powerpc64-*linux*) - LD="${LD-ld} -m elf32ppclinux" - ;; - s390x-*linux*) - LD="${LD-ld} -m elf_s390" - ;; - sparc64-*linux*) - LD="${LD-ld} -m elf32_sparc" - ;; - esac - ;; - *64-bit*) - case $host in - x86_64-*kfreebsd*-gnu) - LD="${LD-ld} -m elf_x86_64_fbsd" - ;; - x86_64-*linux*) - LD="${LD-ld} -m elf_x86_64" - ;; - ppc*-*linux*|powerpc*-*linux*) - LD="${LD-ld} -m elf64ppc" - ;; - s390*-*linux*|s390*-*tpf*) - LD="${LD-ld} -m elf64_s390" - ;; - sparc*-*linux*) - LD="${LD-ld} -m elf64_sparc" - ;; - esac - ;; - esac - fi - rm -rf conftest* - ;; - -*-*-sco3.2v5*) - # On SCO OpenServer 5, we need -belf to get full-featured binaries. - SAVE_CFLAGS="$CFLAGS" - CFLAGS="$CFLAGS -belf" - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler needs -belf" >&5 -$as_echo_n "checking whether the C compiler needs -belf... " >&6; } -if ${lt_cv_cc_needs_belf+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu - - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - lt_cv_cc_needs_belf=yes -else - lt_cv_cc_needs_belf=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext - ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_cc_needs_belf" >&5 -$as_echo "$lt_cv_cc_needs_belf" >&6; } - if test x"$lt_cv_cc_needs_belf" != x"yes"; then - # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf - CFLAGS="$SAVE_CFLAGS" - fi - ;; -sparc*-*solaris*) - # Find out which ABI we are using. - echo 'int i;' > conftest.$ac_ext - if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 - (eval $ac_compile) 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - case `/usr/bin/file conftest.o` in - *64-bit*) - case $lt_cv_prog_gnu_ld in - yes*) LD="${LD-ld} -m elf64_sparc" ;; - *) - if ${LD-ld} -64 -r -o conftest2.o conftest.o >/dev/null 2>&1; then - LD="${LD-ld} -64" - fi - ;; - esac - ;; - esac - fi - rm -rf conftest* - ;; -esac - -need_locks="$enable_libtool_lock" - -if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}mt", so it can be a program name with args. -set dummy ${ac_tool_prefix}mt; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_MANIFEST_TOOL+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$MANIFEST_TOOL"; then - ac_cv_prog_MANIFEST_TOOL="$MANIFEST_TOOL" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_MANIFEST_TOOL="${ac_tool_prefix}mt" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -MANIFEST_TOOL=$ac_cv_prog_MANIFEST_TOOL -if test -n "$MANIFEST_TOOL"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MANIFEST_TOOL" >&5 -$as_echo "$MANIFEST_TOOL" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -fi -if test -z "$ac_cv_prog_MANIFEST_TOOL"; then - ac_ct_MANIFEST_TOOL=$MANIFEST_TOOL - # Extract the first word of "mt", so it can be a program name with args. -set dummy mt; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_ac_ct_MANIFEST_TOOL+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$ac_ct_MANIFEST_TOOL"; then - ac_cv_prog_ac_ct_MANIFEST_TOOL="$ac_ct_MANIFEST_TOOL" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_ac_ct_MANIFEST_TOOL="mt" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -ac_ct_MANIFEST_TOOL=$ac_cv_prog_ac_ct_MANIFEST_TOOL -if test -n "$ac_ct_MANIFEST_TOOL"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_MANIFEST_TOOL" >&5 -$as_echo "$ac_ct_MANIFEST_TOOL" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - if test "x$ac_ct_MANIFEST_TOOL" = x; then - MANIFEST_TOOL=":" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - MANIFEST_TOOL=$ac_ct_MANIFEST_TOOL - fi -else - MANIFEST_TOOL="$ac_cv_prog_MANIFEST_TOOL" -fi - -test -z "$MANIFEST_TOOL" && MANIFEST_TOOL=mt -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if $MANIFEST_TOOL is a manifest tool" >&5 -$as_echo_n "checking if $MANIFEST_TOOL is a manifest tool... " >&6; } -if ${lt_cv_path_mainfest_tool+:} false; then : - $as_echo_n "(cached) " >&6 -else - lt_cv_path_mainfest_tool=no - echo "$as_me:$LINENO: $MANIFEST_TOOL '-?'" >&5 - $MANIFEST_TOOL '-?' 2>conftest.err > conftest.out - cat conftest.err >&5 - if $GREP 'Manifest Tool' conftest.out > /dev/null; then - lt_cv_path_mainfest_tool=yes - fi - rm -f conftest* -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_path_mainfest_tool" >&5 -$as_echo "$lt_cv_path_mainfest_tool" >&6; } -if test "x$lt_cv_path_mainfest_tool" != xyes; then - MANIFEST_TOOL=: -fi - - - - - - - case $host_os in - rhapsody* | darwin*) - if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}dsymutil", so it can be a program name with args. -set dummy ${ac_tool_prefix}dsymutil; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_DSYMUTIL+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$DSYMUTIL"; then - ac_cv_prog_DSYMUTIL="$DSYMUTIL" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_DSYMUTIL="${ac_tool_prefix}dsymutil" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -DSYMUTIL=$ac_cv_prog_DSYMUTIL -if test -n "$DSYMUTIL"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DSYMUTIL" >&5 -$as_echo "$DSYMUTIL" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -fi -if test -z "$ac_cv_prog_DSYMUTIL"; then - ac_ct_DSYMUTIL=$DSYMUTIL - # Extract the first word of "dsymutil", so it can be a program name with args. -set dummy dsymutil; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_ac_ct_DSYMUTIL+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$ac_ct_DSYMUTIL"; then - ac_cv_prog_ac_ct_DSYMUTIL="$ac_ct_DSYMUTIL" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_ac_ct_DSYMUTIL="dsymutil" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -ac_ct_DSYMUTIL=$ac_cv_prog_ac_ct_DSYMUTIL -if test -n "$ac_ct_DSYMUTIL"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DSYMUTIL" >&5 -$as_echo "$ac_ct_DSYMUTIL" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - if test "x$ac_ct_DSYMUTIL" = x; then - DSYMUTIL=":" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - DSYMUTIL=$ac_ct_DSYMUTIL - fi -else - DSYMUTIL="$ac_cv_prog_DSYMUTIL" -fi - - if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}nmedit", so it can be a program name with args. -set dummy ${ac_tool_prefix}nmedit; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_NMEDIT+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$NMEDIT"; then - ac_cv_prog_NMEDIT="$NMEDIT" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_NMEDIT="${ac_tool_prefix}nmedit" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -NMEDIT=$ac_cv_prog_NMEDIT -if test -n "$NMEDIT"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $NMEDIT" >&5 -$as_echo "$NMEDIT" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -fi -if test -z "$ac_cv_prog_NMEDIT"; then - ac_ct_NMEDIT=$NMEDIT - # Extract the first word of "nmedit", so it can be a program name with args. -set dummy nmedit; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_ac_ct_NMEDIT+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$ac_ct_NMEDIT"; then - ac_cv_prog_ac_ct_NMEDIT="$ac_ct_NMEDIT" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_ac_ct_NMEDIT="nmedit" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -ac_ct_NMEDIT=$ac_cv_prog_ac_ct_NMEDIT -if test -n "$ac_ct_NMEDIT"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_NMEDIT" >&5 -$as_echo "$ac_ct_NMEDIT" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - if test "x$ac_ct_NMEDIT" = x; then - NMEDIT=":" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - NMEDIT=$ac_ct_NMEDIT - fi -else - NMEDIT="$ac_cv_prog_NMEDIT" -fi - - if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}lipo", so it can be a program name with args. -set dummy ${ac_tool_prefix}lipo; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_LIPO+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$LIPO"; then - ac_cv_prog_LIPO="$LIPO" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_LIPO="${ac_tool_prefix}lipo" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -LIPO=$ac_cv_prog_LIPO -if test -n "$LIPO"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LIPO" >&5 -$as_echo "$LIPO" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -fi -if test -z "$ac_cv_prog_LIPO"; then - ac_ct_LIPO=$LIPO - # Extract the first word of "lipo", so it can be a program name with args. -set dummy lipo; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_ac_ct_LIPO+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$ac_ct_LIPO"; then - ac_cv_prog_ac_ct_LIPO="$ac_ct_LIPO" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_ac_ct_LIPO="lipo" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -ac_ct_LIPO=$ac_cv_prog_ac_ct_LIPO -if test -n "$ac_ct_LIPO"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_LIPO" >&5 -$as_echo "$ac_ct_LIPO" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - if test "x$ac_ct_LIPO" = x; then - LIPO=":" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - LIPO=$ac_ct_LIPO - fi -else - LIPO="$ac_cv_prog_LIPO" -fi - - if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}otool", so it can be a program name with args. -set dummy ${ac_tool_prefix}otool; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_OTOOL+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$OTOOL"; then - ac_cv_prog_OTOOL="$OTOOL" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_OTOOL="${ac_tool_prefix}otool" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -OTOOL=$ac_cv_prog_OTOOL -if test -n "$OTOOL"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OTOOL" >&5 -$as_echo "$OTOOL" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -fi -if test -z "$ac_cv_prog_OTOOL"; then - ac_ct_OTOOL=$OTOOL - # Extract the first word of "otool", so it can be a program name with args. -set dummy otool; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_ac_ct_OTOOL+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$ac_ct_OTOOL"; then - ac_cv_prog_ac_ct_OTOOL="$ac_ct_OTOOL" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_ac_ct_OTOOL="otool" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -ac_ct_OTOOL=$ac_cv_prog_ac_ct_OTOOL -if test -n "$ac_ct_OTOOL"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OTOOL" >&5 -$as_echo "$ac_ct_OTOOL" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - if test "x$ac_ct_OTOOL" = x; then - OTOOL=":" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - OTOOL=$ac_ct_OTOOL - fi -else - OTOOL="$ac_cv_prog_OTOOL" -fi - - if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}otool64", so it can be a program name with args. -set dummy ${ac_tool_prefix}otool64; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_OTOOL64+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$OTOOL64"; then - ac_cv_prog_OTOOL64="$OTOOL64" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_OTOOL64="${ac_tool_prefix}otool64" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -OTOOL64=$ac_cv_prog_OTOOL64 -if test -n "$OTOOL64"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OTOOL64" >&5 -$as_echo "$OTOOL64" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -fi -if test -z "$ac_cv_prog_OTOOL64"; then - ac_ct_OTOOL64=$OTOOL64 - # Extract the first word of "otool64", so it can be a program name with args. -set dummy otool64; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_ac_ct_OTOOL64+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$ac_ct_OTOOL64"; then - ac_cv_prog_ac_ct_OTOOL64="$ac_ct_OTOOL64" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_ac_ct_OTOOL64="otool64" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -ac_ct_OTOOL64=$ac_cv_prog_ac_ct_OTOOL64 -if test -n "$ac_ct_OTOOL64"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OTOOL64" >&5 -$as_echo "$ac_ct_OTOOL64" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - if test "x$ac_ct_OTOOL64" = x; then - OTOOL64=":" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - OTOOL64=$ac_ct_OTOOL64 - fi -else - OTOOL64="$ac_cv_prog_OTOOL64" -fi - - - - - - - - - - - - - - - - - - - - - - - - - - - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -single_module linker flag" >&5 -$as_echo_n "checking for -single_module linker flag... " >&6; } -if ${lt_cv_apple_cc_single_mod+:} false; then : - $as_echo_n "(cached) " >&6 -else - lt_cv_apple_cc_single_mod=no - if test -z "${LT_MULTI_MODULE}"; then - # By default we will add the -single_module flag. You can override - # by either setting the environment variable LT_MULTI_MODULE - # non-empty at configure time, or by adding -multi_module to the - # link flags. - rm -rf libconftest.dylib* - echo "int foo(void){return 1;}" > conftest.c - echo "$LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ --dynamiclib -Wl,-single_module conftest.c" >&5 - $LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ - -dynamiclib -Wl,-single_module conftest.c 2>conftest.err - _lt_result=$? - if test -f libconftest.dylib && test ! -s conftest.err && test $_lt_result = 0; then - lt_cv_apple_cc_single_mod=yes - else - cat conftest.err >&5 - fi - rm -rf libconftest.dylib* - rm -f conftest.* - fi -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_apple_cc_single_mod" >&5 -$as_echo "$lt_cv_apple_cc_single_mod" >&6; } - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -exported_symbols_list linker flag" >&5 -$as_echo_n "checking for -exported_symbols_list linker flag... " >&6; } -if ${lt_cv_ld_exported_symbols_list+:} false; then : - $as_echo_n "(cached) " >&6 -else - lt_cv_ld_exported_symbols_list=no - save_LDFLAGS=$LDFLAGS - echo "_main" > conftest.sym - LDFLAGS="$LDFLAGS -Wl,-exported_symbols_list,conftest.sym" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - lt_cv_ld_exported_symbols_list=yes -else - lt_cv_ld_exported_symbols_list=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext - LDFLAGS="$save_LDFLAGS" - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_exported_symbols_list" >&5 -$as_echo "$lt_cv_ld_exported_symbols_list" >&6; } - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -force_load linker flag" >&5 -$as_echo_n "checking for -force_load linker flag... " >&6; } -if ${lt_cv_ld_force_load+:} false; then : - $as_echo_n "(cached) " >&6 -else - lt_cv_ld_force_load=no - cat > conftest.c << _LT_EOF -int forced_loaded() { return 2;} -_LT_EOF - echo "$LTCC $LTCFLAGS -c -o conftest.o conftest.c" >&5 - $LTCC $LTCFLAGS -c -o conftest.o conftest.c 2>&5 - echo "$AR cru libconftest.a conftest.o" >&5 - $AR cru libconftest.a conftest.o 2>&5 - echo "$RANLIB libconftest.a" >&5 - $RANLIB libconftest.a 2>&5 - cat > conftest.c << _LT_EOF -int main() { return 0;} -_LT_EOF - echo "$LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a" >&5 - $LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a 2>conftest.err - _lt_result=$? - if test -f conftest && test ! -s conftest.err && test $_lt_result = 0 && $GREP forced_load conftest 2>&1 >/dev/null; then - lt_cv_ld_force_load=yes - else - cat conftest.err >&5 - fi - rm -f conftest.err libconftest.a conftest conftest.c - rm -rf conftest.dSYM - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_force_load" >&5 -$as_echo "$lt_cv_ld_force_load" >&6; } - case $host_os in - rhapsody* | darwin1.[012]) - _lt_dar_allow_undefined='${wl}-undefined ${wl}suppress' ;; - darwin1.*) - _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; - darwin*) # darwin 5.x on - # if running on 10.5 or later, the deployment target defaults - # to the OS version, if on x86, and 10.4, the deployment - # target defaults to 10.4. Don't you love it? - case ${MACOSX_DEPLOYMENT_TARGET-10.0},$host in - 10.0,*86*-darwin8*|10.0,*-darwin[91]*) - _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; - 10.[012]*) - _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; - 10.*) - _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; - esac - ;; - esac - if test "$lt_cv_apple_cc_single_mod" = "yes"; then - _lt_dar_single_mod='$single_module' - fi - if test "$lt_cv_ld_exported_symbols_list" = "yes"; then - _lt_dar_export_syms=' ${wl}-exported_symbols_list,$output_objdir/${libname}-symbols.expsym' - else - _lt_dar_export_syms='~$NMEDIT -s $output_objdir/${libname}-symbols.expsym ${lib}' - fi - if test "$DSYMUTIL" != ":" && test "$lt_cv_ld_force_load" = "no"; then - _lt_dsymutil='~$DSYMUTIL $lib || :' - else - _lt_dsymutil= - fi - ;; - esac - -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C preprocessor" >&5 -$as_echo_n "checking how to run the C preprocessor... " >&6; } -# On Suns, sometimes $CPP names a directory. -if test -n "$CPP" && test -d "$CPP"; then - CPP= -fi -if test -z "$CPP"; then - if ${ac_cv_prog_CPP+:} false; then : - $as_echo_n "(cached) " >&6 -else - # Double quotes because CPP needs to be expanded - for CPP in "$CC -E" "$CC -E -traditional-cpp" "/lib/cpp" - do - ac_preproc_ok=false -for ac_c_preproc_warn_flag in '' yes -do - # Use a header file that comes with gcc, so configuring glibc - # with a fresh cross-compiler works. - # Prefer to if __STDC__ is defined, since - # exists even on freestanding compilers. - # On the NeXT, cc -E runs the code through the compiler's parser, - # not just through cpp. "Syntax error" is here to catch this case. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#ifdef __STDC__ -# include -#else -# include -#endif - Syntax error -_ACEOF -if ac_fn_c_try_cpp "$LINENO"; then : - -else - # Broken: fails on valid input. -continue -fi -rm -f conftest.err conftest.i conftest.$ac_ext - - # OK, works on sane cases. Now check whether nonexistent headers - # can be detected and how. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include -_ACEOF -if ac_fn_c_try_cpp "$LINENO"; then : - # Broken: success on invalid input. -continue -else - # Passes both tests. -ac_preproc_ok=: -break -fi -rm -f conftest.err conftest.i conftest.$ac_ext - -done -# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. -rm -f conftest.i conftest.err conftest.$ac_ext -if $ac_preproc_ok; then : - break -fi - - done - ac_cv_prog_CPP=$CPP - -fi - CPP=$ac_cv_prog_CPP -else - ac_cv_prog_CPP=$CPP -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $CPP" >&5 -$as_echo "$CPP" >&6; } -ac_preproc_ok=false -for ac_c_preproc_warn_flag in '' yes -do - # Use a header file that comes with gcc, so configuring glibc - # with a fresh cross-compiler works. - # Prefer to if __STDC__ is defined, since - # exists even on freestanding compilers. - # On the NeXT, cc -E runs the code through the compiler's parser, - # not just through cpp. "Syntax error" is here to catch this case. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#ifdef __STDC__ -# include -#else -# include -#endif - Syntax error -_ACEOF -if ac_fn_c_try_cpp "$LINENO"; then : - -else - # Broken: fails on valid input. -continue -fi -rm -f conftest.err conftest.i conftest.$ac_ext - - # OK, works on sane cases. Now check whether nonexistent headers - # can be detected and how. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include -_ACEOF -if ac_fn_c_try_cpp "$LINENO"; then : - # Broken: success on invalid input. -continue -else - # Passes both tests. -ac_preproc_ok=: -break -fi -rm -f conftest.err conftest.i conftest.$ac_ext - -done -# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. -rm -f conftest.i conftest.err conftest.$ac_ext -if $ac_preproc_ok; then : - -else - { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error $? "C preprocessor \"$CPP\" fails sanity check -See \`config.log' for more details" "$LINENO" 5; } -fi - -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5 -$as_echo_n "checking for ANSI C header files... " >&6; } -if ${ac_cv_header_stdc+:} false; then : - $as_echo_n "(cached) " >&6 -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include -#include -#include -#include - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - ac_cv_header_stdc=yes -else - ac_cv_header_stdc=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - -if test $ac_cv_header_stdc = yes; then - # SunOS 4.x string.h does not declare mem*, contrary to ANSI. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include - -_ACEOF -if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | - $EGREP "memchr" >/dev/null 2>&1; then : - -else - ac_cv_header_stdc=no -fi -rm -f conftest* - -fi - -if test $ac_cv_header_stdc = yes; then - # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include - -_ACEOF -if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | - $EGREP "free" >/dev/null 2>&1; then : - -else - ac_cv_header_stdc=no -fi -rm -f conftest* - -fi - -if test $ac_cv_header_stdc = yes; then - # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi. - if test "$cross_compiling" = yes; then : - : -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include -#include -#if ((' ' & 0x0FF) == 0x020) -# define ISLOWER(c) ('a' <= (c) && (c) <= 'z') -# define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c)) -#else -# define ISLOWER(c) \ - (('a' <= (c) && (c) <= 'i') \ - || ('j' <= (c) && (c) <= 'r') \ - || ('s' <= (c) && (c) <= 'z')) -# define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c)) -#endif - -#define XOR(e, f) (((e) && !(f)) || (!(e) && (f))) -int -main () -{ - int i; - for (i = 0; i < 256; i++) - if (XOR (islower (i), ISLOWER (i)) - || toupper (i) != TOUPPER (i)) - return 2; - return 0; -} -_ACEOF -if ac_fn_c_try_run "$LINENO"; then : - -else - ac_cv_header_stdc=no -fi -rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ - conftest.$ac_objext conftest.beam conftest.$ac_ext -fi - -fi -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_stdc" >&5 -$as_echo "$ac_cv_header_stdc" >&6; } -if test $ac_cv_header_stdc = yes; then - -$as_echo "#define STDC_HEADERS 1" >>confdefs.h - -fi - -# On IRIX 5.3, sys/types and inttypes.h are conflicting. -for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \ - inttypes.h stdint.h unistd.h -do : - as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` -ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default -" -if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : - cat >>confdefs.h <<_ACEOF -#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 -_ACEOF - -fi - -done - - -for ac_header in dlfcn.h -do : - ac_fn_c_check_header_compile "$LINENO" "dlfcn.h" "ac_cv_header_dlfcn_h" "$ac_includes_default -" -if test "x$ac_cv_header_dlfcn_h" = xyes; then : - cat >>confdefs.h <<_ACEOF -#define HAVE_DLFCN_H 1 -_ACEOF - -fi - -done - - - - - -# Set options - - - - enable_dlopen=no - - - enable_win32_dll=no - - - # Check whether --enable-shared was given. -if test "${enable_shared+set}" = set; then : - enableval=$enable_shared; p=${PACKAGE-default} - case $enableval in - yes) enable_shared=yes ;; - no) enable_shared=no ;; - *) - enable_shared=no - # Look at the argument we got. We use all the common list separators. - lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," - for pkg in $enableval; do - IFS="$lt_save_ifs" - if test "X$pkg" = "X$p"; then - enable_shared=yes - fi - done - IFS="$lt_save_ifs" - ;; - esac -else - enable_shared=yes -fi - - - - - - - - - - # Check whether --enable-static was given. -if test "${enable_static+set}" = set; then : - enableval=$enable_static; p=${PACKAGE-default} - case $enableval in - yes) enable_static=yes ;; - no) enable_static=no ;; - *) - enable_static=no - # Look at the argument we got. We use all the common list separators. - lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," - for pkg in $enableval; do - IFS="$lt_save_ifs" - if test "X$pkg" = "X$p"; then - enable_static=yes - fi - done - IFS="$lt_save_ifs" - ;; - esac -else - enable_static=yes -fi - - - - - - - - - - -# Check whether --with-pic was given. -if test "${with_pic+set}" = set; then : - withval=$with_pic; pic_mode="$withval" -else - pic_mode=default -fi - - -test -z "$pic_mode" && pic_mode=default - - - - - - - - # Check whether --enable-fast-install was given. -if test "${enable_fast_install+set}" = set; then : - enableval=$enable_fast_install; p=${PACKAGE-default} - case $enableval in - yes) enable_fast_install=yes ;; - no) enable_fast_install=no ;; - *) - enable_fast_install=no - # Look at the argument we got. We use all the common list separators. - lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," - for pkg in $enableval; do - IFS="$lt_save_ifs" - if test "X$pkg" = "X$p"; then - enable_fast_install=yes - fi - done - IFS="$lt_save_ifs" - ;; - esac -else - enable_fast_install=yes -fi - - - - - - - - - - - -# This can be used to rebuild libtool when needed -LIBTOOL_DEPS="$ltmain" - -# Always use our own libtool. -LIBTOOL='$(SHELL) $(top_builddir)/libtool' - - - - - - - - - - - - - - - - - - - - - - - - - - -test -z "$LN_S" && LN_S="ln -s" - - - - - - - - - - - - - - -if test -n "${ZSH_VERSION+set}" ; then - setopt NO_GLOB_SUBST -fi - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for objdir" >&5 -$as_echo_n "checking for objdir... " >&6; } -if ${lt_cv_objdir+:} false; then : - $as_echo_n "(cached) " >&6 -else - rm -f .libs 2>/dev/null -mkdir .libs 2>/dev/null -if test -d .libs; then - lt_cv_objdir=.libs -else - # MS-DOS does not allow filenames that begin with a dot. - lt_cv_objdir=_libs -fi -rmdir .libs 2>/dev/null -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_objdir" >&5 -$as_echo "$lt_cv_objdir" >&6; } -objdir=$lt_cv_objdir - - - - - -cat >>confdefs.h <<_ACEOF -#define LT_OBJDIR "$lt_cv_objdir/" -_ACEOF - - - - -case $host_os in -aix3*) - # AIX sometimes has problems with the GCC collect2 program. For some - # reason, if we set the COLLECT_NAMES environment variable, the problems - # vanish in a puff of smoke. - if test "X${COLLECT_NAMES+set}" != Xset; then - COLLECT_NAMES= - export COLLECT_NAMES - fi - ;; -esac - -# Global variables: -ofile=libtool -can_build_shared=yes - -# All known linkers require a `.a' archive for static linking (except MSVC, -# which needs '.lib'). -libext=a - -with_gnu_ld="$lt_cv_prog_gnu_ld" - -old_CC="$CC" -old_CFLAGS="$CFLAGS" - -# Set sane defaults for various variables -test -z "$CC" && CC=cc -test -z "$LTCC" && LTCC=$CC -test -z "$LTCFLAGS" && LTCFLAGS=$CFLAGS -test -z "$LD" && LD=ld -test -z "$ac_objext" && ac_objext=o - -for cc_temp in $compiler""; do - case $cc_temp in - compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; - distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; - \-*) ;; - *) break;; - esac -done -cc_basename=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` - - -# Only perform the check for file, if the check method requires it -test -z "$MAGIC_CMD" && MAGIC_CMD=file -case $deplibs_check_method in -file_magic*) - if test "$file_magic_cmd" = '$MAGIC_CMD'; then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ${ac_tool_prefix}file" >&5 -$as_echo_n "checking for ${ac_tool_prefix}file... " >&6; } -if ${lt_cv_path_MAGIC_CMD+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $MAGIC_CMD in -[\\/*] | ?:[\\/]*) - lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. - ;; -*) - lt_save_MAGIC_CMD="$MAGIC_CMD" - lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR - ac_dummy="/usr/bin$PATH_SEPARATOR$PATH" - for ac_dir in $ac_dummy; do - IFS="$lt_save_ifs" - test -z "$ac_dir" && ac_dir=. - if test -f $ac_dir/${ac_tool_prefix}file; then - lt_cv_path_MAGIC_CMD="$ac_dir/${ac_tool_prefix}file" - if test -n "$file_magic_test_file"; then - case $deplibs_check_method in - "file_magic "*) - file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` - MAGIC_CMD="$lt_cv_path_MAGIC_CMD" - if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | - $EGREP "$file_magic_regex" > /dev/null; then - : - else - cat <<_LT_EOF 1>&2 - -*** Warning: the command libtool uses to detect shared libraries, -*** $file_magic_cmd, produces output that libtool cannot recognize. -*** The result is that libtool may fail to recognize shared libraries -*** as such. This will affect the creation of libtool libraries that -*** depend on shared libraries, but programs linked with such libtool -*** libraries will work regardless of this problem. Nevertheless, you -*** may want to report the problem to your system manager and/or to -*** bug-libtool@gnu.org - -_LT_EOF - fi ;; - esac - fi - break - fi - done - IFS="$lt_save_ifs" - MAGIC_CMD="$lt_save_MAGIC_CMD" - ;; -esac -fi - -MAGIC_CMD="$lt_cv_path_MAGIC_CMD" -if test -n "$MAGIC_CMD"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MAGIC_CMD" >&5 -$as_echo "$MAGIC_CMD" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - - - -if test -z "$lt_cv_path_MAGIC_CMD"; then - if test -n "$ac_tool_prefix"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for file" >&5 -$as_echo_n "checking for file... " >&6; } -if ${lt_cv_path_MAGIC_CMD+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $MAGIC_CMD in -[\\/*] | ?:[\\/]*) - lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. - ;; -*) - lt_save_MAGIC_CMD="$MAGIC_CMD" - lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR - ac_dummy="/usr/bin$PATH_SEPARATOR$PATH" - for ac_dir in $ac_dummy; do - IFS="$lt_save_ifs" - test -z "$ac_dir" && ac_dir=. - if test -f $ac_dir/file; then - lt_cv_path_MAGIC_CMD="$ac_dir/file" - if test -n "$file_magic_test_file"; then - case $deplibs_check_method in - "file_magic "*) - file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` - MAGIC_CMD="$lt_cv_path_MAGIC_CMD" - if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | - $EGREP "$file_magic_regex" > /dev/null; then - : - else - cat <<_LT_EOF 1>&2 - -*** Warning: the command libtool uses to detect shared libraries, -*** $file_magic_cmd, produces output that libtool cannot recognize. -*** The result is that libtool may fail to recognize shared libraries -*** as such. This will affect the creation of libtool libraries that -*** depend on shared libraries, but programs linked with such libtool -*** libraries will work regardless of this problem. Nevertheless, you -*** may want to report the problem to your system manager and/or to -*** bug-libtool@gnu.org - -_LT_EOF - fi ;; - esac - fi - break - fi - done - IFS="$lt_save_ifs" - MAGIC_CMD="$lt_save_MAGIC_CMD" - ;; -esac -fi - -MAGIC_CMD="$lt_cv_path_MAGIC_CMD" -if test -n "$MAGIC_CMD"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MAGIC_CMD" >&5 -$as_echo "$MAGIC_CMD" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - else - MAGIC_CMD=: - fi -fi - - fi - ;; -esac - -# Use C for the default configuration in the libtool script - -lt_save_CC="$CC" -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu - - -# Source file extension for C test sources. -ac_ext=c - -# Object file extension for compiled C test sources. -objext=o -objext=$objext - -# Code to be used in simple compile tests -lt_simple_compile_test_code="int some_variable = 0;" - -# Code to be used in simple link tests -lt_simple_link_test_code='int main(){return(0);}' - - - - - - - -# If no C compiler was specified, use CC. -LTCC=${LTCC-"$CC"} - -# If no C compiler flags were specified, use CFLAGS. -LTCFLAGS=${LTCFLAGS-"$CFLAGS"} - -# Allow CC to be a program name with arguments. -compiler=$CC - -# Save the default compiler, since it gets overwritten when the other -# tags are being tested, and _LT_TAGVAR(compiler, []) is a NOP. -compiler_DEFAULT=$CC - -# save warnings/boilerplate of simple test code -ac_outfile=conftest.$ac_objext -echo "$lt_simple_compile_test_code" >conftest.$ac_ext -eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err -_lt_compiler_boilerplate=`cat conftest.err` -$RM conftest* - -ac_outfile=conftest.$ac_objext -echo "$lt_simple_link_test_code" >conftest.$ac_ext -eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err -_lt_linker_boilerplate=`cat conftest.err` -$RM -r conftest* - - -if test -n "$compiler"; then - -lt_prog_compiler_no_builtin_flag= - -if test "$GCC" = yes; then - case $cc_basename in - nvcc*) - lt_prog_compiler_no_builtin_flag=' -Xcompiler -fno-builtin' ;; - *) - lt_prog_compiler_no_builtin_flag=' -fno-builtin' ;; - esac - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -fno-rtti -fno-exceptions" >&5 -$as_echo_n "checking if $compiler supports -fno-rtti -fno-exceptions... " >&6; } -if ${lt_cv_prog_compiler_rtti_exceptions+:} false; then : - $as_echo_n "(cached) " >&6 -else - lt_cv_prog_compiler_rtti_exceptions=no - ac_outfile=conftest.$ac_objext - echo "$lt_simple_compile_test_code" > conftest.$ac_ext - lt_compiler_flag="-fno-rtti -fno-exceptions" - # Insert the option either (1) after the last *FLAGS variable, or - # (2) before a word containing "conftest.", or (3) at the end. - # Note that $ac_compile itself does not contain backslashes and begins - # with a dollar sign (not a hyphen), so the echo should work correctly. - # The option is referenced via a variable to avoid confusing sed. - lt_compile=`echo "$ac_compile" | $SED \ - -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ - -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ - -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) - (eval "$lt_compile" 2>conftest.err) - ac_status=$? - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - if (exit $ac_status) && test -s "$ac_outfile"; then - # The compiler can only warn and ignore the option if not recognized - # So say no if there are warnings other than the usual output. - $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp - $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 - if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then - lt_cv_prog_compiler_rtti_exceptions=yes - fi - fi - $RM conftest* - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_rtti_exceptions" >&5 -$as_echo "$lt_cv_prog_compiler_rtti_exceptions" >&6; } - -if test x"$lt_cv_prog_compiler_rtti_exceptions" = xyes; then - lt_prog_compiler_no_builtin_flag="$lt_prog_compiler_no_builtin_flag -fno-rtti -fno-exceptions" -else - : -fi - -fi - - - - - - - lt_prog_compiler_wl= -lt_prog_compiler_pic= -lt_prog_compiler_static= - - - if test "$GCC" = yes; then - lt_prog_compiler_wl='-Wl,' - lt_prog_compiler_static='-static' - - case $host_os in - aix*) - # All AIX code is PIC. - if test "$host_cpu" = ia64; then - # AIX 5 now supports IA64 processor - lt_prog_compiler_static='-Bstatic' - fi - ;; - - amigaos*) - case $host_cpu in - powerpc) - # see comment about AmigaOS4 .so support - lt_prog_compiler_pic='-fPIC' - ;; - m68k) - # FIXME: we need at least 68020 code to build shared libraries, but - # adding the `-m68020' flag to GCC prevents building anything better, - # like `-m68040'. - lt_prog_compiler_pic='-m68020 -resident32 -malways-restore-a4' - ;; - esac - ;; - - beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) - # PIC is the default for these OSes. - ;; - - mingw* | cygwin* | pw32* | os2* | cegcc*) - # This hack is so that the source file can tell whether it is being - # built for inclusion in a dll (and should export symbols for example). - # Although the cygwin gcc ignores -fPIC, still need this for old-style - # (--disable-auto-import) libraries - lt_prog_compiler_pic='-DDLL_EXPORT' - ;; - - darwin* | rhapsody*) - # PIC is the default on this platform - # Common symbols not allowed in MH_DYLIB files - lt_prog_compiler_pic='-fno-common' - ;; - - haiku*) - # PIC is the default for Haiku. - # The "-static" flag exists, but is broken. - lt_prog_compiler_static= - ;; - - hpux*) - # PIC is the default for 64-bit PA HP-UX, but not for 32-bit - # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag - # sets the default TLS model and affects inlining. - case $host_cpu in - hppa*64*) - # +Z the default - ;; - *) - lt_prog_compiler_pic='-fPIC' - ;; - esac - ;; - - interix[3-9]*) - # Interix 3.x gcc -fpic/-fPIC options generate broken code. - # Instead, we relocate shared libraries at runtime. - ;; - - msdosdjgpp*) - # Just because we use GCC doesn't mean we suddenly get shared libraries - # on systems that don't support them. - lt_prog_compiler_can_build_shared=no - enable_shared=no - ;; - - *nto* | *qnx*) - # QNX uses GNU C++, but need to define -shared option too, otherwise - # it will coredump. - lt_prog_compiler_pic='-fPIC -shared' - ;; - - sysv4*MP*) - if test -d /usr/nec; then - lt_prog_compiler_pic=-Kconform_pic - fi - ;; - - *) - lt_prog_compiler_pic='-fPIC' - ;; - esac - - case $cc_basename in - nvcc*) # Cuda Compiler Driver 2.2 - lt_prog_compiler_wl='-Xlinker ' - lt_prog_compiler_pic='-Xcompiler -fPIC' - ;; - esac - else - # PORTME Check for flag to pass linker flags through the system compiler. - case $host_os in - aix*) - lt_prog_compiler_wl='-Wl,' - if test "$host_cpu" = ia64; then - # AIX 5 now supports IA64 processor - lt_prog_compiler_static='-Bstatic' - else - lt_prog_compiler_static='-bnso -bI:/lib/syscalls.exp' - fi - ;; - - mingw* | cygwin* | pw32* | os2* | cegcc*) - # This hack is so that the source file can tell whether it is being - # built for inclusion in a dll (and should export symbols for example). - lt_prog_compiler_pic='-DDLL_EXPORT' - ;; - - hpux9* | hpux10* | hpux11*) - lt_prog_compiler_wl='-Wl,' - # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but - # not for PA HP-UX. - case $host_cpu in - hppa*64*|ia64*) - # +Z the default - ;; - *) - lt_prog_compiler_pic='+Z' - ;; - esac - # Is there a better lt_prog_compiler_static that works with the bundled CC? - lt_prog_compiler_static='${wl}-a ${wl}archive' - ;; - - irix5* | irix6* | nonstopux*) - lt_prog_compiler_wl='-Wl,' - # PIC (with -KPIC) is the default. - lt_prog_compiler_static='-non_shared' - ;; - - linux* | k*bsd*-gnu | kopensolaris*-gnu) - case $cc_basename in - # old Intel for x86_64 which still supported -KPIC. - ecc*) - lt_prog_compiler_wl='-Wl,' - lt_prog_compiler_pic='-KPIC' - lt_prog_compiler_static='-static' - ;; - # icc used to be incompatible with GCC. - # ICC 10 doesn't accept -KPIC any more. - icc* | ifort*) - lt_prog_compiler_wl='-Wl,' - lt_prog_compiler_pic='-fPIC' - lt_prog_compiler_static='-static' - ;; - # Lahey Fortran 8.1. - lf95*) - lt_prog_compiler_wl='-Wl,' - lt_prog_compiler_pic='--shared' - lt_prog_compiler_static='--static' - ;; - nagfor*) - # NAG Fortran compiler - lt_prog_compiler_wl='-Wl,-Wl,,' - lt_prog_compiler_pic='-PIC' - lt_prog_compiler_static='-Bstatic' - ;; - pgcc* | pgf77* | pgf90* | pgf95* | pgfortran*) - # Portland Group compilers (*not* the Pentium gcc compiler, - # which looks to be a dead project) - lt_prog_compiler_wl='-Wl,' - lt_prog_compiler_pic='-fpic' - lt_prog_compiler_static='-Bstatic' - ;; - ccc*) - lt_prog_compiler_wl='-Wl,' - # All Alpha code is PIC. - lt_prog_compiler_static='-non_shared' - ;; - xl* | bgxl* | bgf* | mpixl*) - # IBM XL C 8.0/Fortran 10.1, 11.1 on PPC and BlueGene - lt_prog_compiler_wl='-Wl,' - lt_prog_compiler_pic='-qpic' - lt_prog_compiler_static='-qstaticlink' - ;; - *) - case `$CC -V 2>&1 | sed 5q` in - *Sun\ F* | *Sun*Fortran*) - # Sun Fortran 8.3 passes all unrecognized flags to the linker - lt_prog_compiler_pic='-KPIC' - lt_prog_compiler_static='-Bstatic' - lt_prog_compiler_wl='' - ;; - *Sun\ C*) - # Sun C 5.9 - lt_prog_compiler_pic='-KPIC' - lt_prog_compiler_static='-Bstatic' - lt_prog_compiler_wl='-Wl,' - ;; - esac - ;; - esac - ;; - - newsos6) - lt_prog_compiler_pic='-KPIC' - lt_prog_compiler_static='-Bstatic' - ;; - - *nto* | *qnx*) - # QNX uses GNU C++, but need to define -shared option too, otherwise - # it will coredump. - lt_prog_compiler_pic='-fPIC -shared' - ;; - - osf3* | osf4* | osf5*) - lt_prog_compiler_wl='-Wl,' - # All OSF/1 code is PIC. - lt_prog_compiler_static='-non_shared' - ;; - - rdos*) - lt_prog_compiler_static='-non_shared' - ;; - - solaris*) - lt_prog_compiler_pic='-KPIC' - lt_prog_compiler_static='-Bstatic' - case $cc_basename in - f77* | f90* | f95* | sunf77* | sunf90* | sunf95*) - lt_prog_compiler_wl='-Qoption ld ';; - *) - lt_prog_compiler_wl='-Wl,';; - esac - ;; - - sunos4*) - lt_prog_compiler_wl='-Qoption ld ' - lt_prog_compiler_pic='-PIC' - lt_prog_compiler_static='-Bstatic' - ;; - - sysv4 | sysv4.2uw2* | sysv4.3*) - lt_prog_compiler_wl='-Wl,' - lt_prog_compiler_pic='-KPIC' - lt_prog_compiler_static='-Bstatic' - ;; - - sysv4*MP*) - if test -d /usr/nec ;then - lt_prog_compiler_pic='-Kconform_pic' - lt_prog_compiler_static='-Bstatic' - fi - ;; - - sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) - lt_prog_compiler_wl='-Wl,' - lt_prog_compiler_pic='-KPIC' - lt_prog_compiler_static='-Bstatic' - ;; - - unicos*) - lt_prog_compiler_wl='-Wl,' - lt_prog_compiler_can_build_shared=no - ;; - - uts4*) - lt_prog_compiler_pic='-pic' - lt_prog_compiler_static='-Bstatic' - ;; - - *) - lt_prog_compiler_can_build_shared=no - ;; - esac - fi - -case $host_os in - # For platforms which do not support PIC, -DPIC is meaningless: - *djgpp*) - lt_prog_compiler_pic= - ;; - *) - lt_prog_compiler_pic="$lt_prog_compiler_pic -DPIC" - ;; -esac - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $compiler option to produce PIC" >&5 -$as_echo_n "checking for $compiler option to produce PIC... " >&6; } -if ${lt_cv_prog_compiler_pic+:} false; then : - $as_echo_n "(cached) " >&6 -else - lt_cv_prog_compiler_pic=$lt_prog_compiler_pic -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic" >&5 -$as_echo "$lt_cv_prog_compiler_pic" >&6; } -lt_prog_compiler_pic=$lt_cv_prog_compiler_pic - -# -# Check to make sure the PIC flag actually works. -# -if test -n "$lt_prog_compiler_pic"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler PIC flag $lt_prog_compiler_pic works" >&5 -$as_echo_n "checking if $compiler PIC flag $lt_prog_compiler_pic works... " >&6; } -if ${lt_cv_prog_compiler_pic_works+:} false; then : - $as_echo_n "(cached) " >&6 -else - lt_cv_prog_compiler_pic_works=no - ac_outfile=conftest.$ac_objext - echo "$lt_simple_compile_test_code" > conftest.$ac_ext - lt_compiler_flag="$lt_prog_compiler_pic -DPIC" - # Insert the option either (1) after the last *FLAGS variable, or - # (2) before a word containing "conftest.", or (3) at the end. - # Note that $ac_compile itself does not contain backslashes and begins - # with a dollar sign (not a hyphen), so the echo should work correctly. - # The option is referenced via a variable to avoid confusing sed. - lt_compile=`echo "$ac_compile" | $SED \ - -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ - -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ - -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) - (eval "$lt_compile" 2>conftest.err) - ac_status=$? - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - if (exit $ac_status) && test -s "$ac_outfile"; then - # The compiler can only warn and ignore the option if not recognized - # So say no if there are warnings other than the usual output. - $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp - $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 - if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then - lt_cv_prog_compiler_pic_works=yes - fi - fi - $RM conftest* - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic_works" >&5 -$as_echo "$lt_cv_prog_compiler_pic_works" >&6; } - -if test x"$lt_cv_prog_compiler_pic_works" = xyes; then - case $lt_prog_compiler_pic in - "" | " "*) ;; - *) lt_prog_compiler_pic=" $lt_prog_compiler_pic" ;; - esac -else - lt_prog_compiler_pic= - lt_prog_compiler_can_build_shared=no -fi - -fi - - - - - - - - - - - -# -# Check to make sure the static flag actually works. -# -wl=$lt_prog_compiler_wl eval lt_tmp_static_flag=\"$lt_prog_compiler_static\" -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler static flag $lt_tmp_static_flag works" >&5 -$as_echo_n "checking if $compiler static flag $lt_tmp_static_flag works... " >&6; } -if ${lt_cv_prog_compiler_static_works+:} false; then : - $as_echo_n "(cached) " >&6 -else - lt_cv_prog_compiler_static_works=no - save_LDFLAGS="$LDFLAGS" - LDFLAGS="$LDFLAGS $lt_tmp_static_flag" - echo "$lt_simple_link_test_code" > conftest.$ac_ext - if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then - # The linker can only warn and ignore the option if not recognized - # So say no if there are warnings - if test -s conftest.err; then - # Append any errors to the config.log. - cat conftest.err 1>&5 - $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp - $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 - if diff conftest.exp conftest.er2 >/dev/null; then - lt_cv_prog_compiler_static_works=yes - fi - else - lt_cv_prog_compiler_static_works=yes - fi - fi - $RM -r conftest* - LDFLAGS="$save_LDFLAGS" - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_static_works" >&5 -$as_echo "$lt_cv_prog_compiler_static_works" >&6; } - -if test x"$lt_cv_prog_compiler_static_works" = xyes; then - : -else - lt_prog_compiler_static= -fi - - - - - - - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 -$as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } -if ${lt_cv_prog_compiler_c_o+:} false; then : - $as_echo_n "(cached) " >&6 -else - lt_cv_prog_compiler_c_o=no - $RM -r conftest 2>/dev/null - mkdir conftest - cd conftest - mkdir out - echo "$lt_simple_compile_test_code" > conftest.$ac_ext - - lt_compiler_flag="-o out/conftest2.$ac_objext" - # Insert the option either (1) after the last *FLAGS variable, or - # (2) before a word containing "conftest.", or (3) at the end. - # Note that $ac_compile itself does not contain backslashes and begins - # with a dollar sign (not a hyphen), so the echo should work correctly. - lt_compile=`echo "$ac_compile" | $SED \ - -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ - -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ - -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) - (eval "$lt_compile" 2>out/conftest.err) - ac_status=$? - cat out/conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - if (exit $ac_status) && test -s out/conftest2.$ac_objext - then - # The compiler can only warn and ignore the option if not recognized - # So say no if there are warnings - $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp - $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 - if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then - lt_cv_prog_compiler_c_o=yes - fi - fi - chmod u+w . 2>&5 - $RM conftest* - # SGI C++ compiler will create directory out/ii_files/ for - # template instantiation - test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files - $RM out/* && rmdir out - cd .. - $RM -r conftest - $RM conftest* - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o" >&5 -$as_echo "$lt_cv_prog_compiler_c_o" >&6; } - - - - - - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 -$as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } -if ${lt_cv_prog_compiler_c_o+:} false; then : - $as_echo_n "(cached) " >&6 -else - lt_cv_prog_compiler_c_o=no - $RM -r conftest 2>/dev/null - mkdir conftest - cd conftest - mkdir out - echo "$lt_simple_compile_test_code" > conftest.$ac_ext - - lt_compiler_flag="-o out/conftest2.$ac_objext" - # Insert the option either (1) after the last *FLAGS variable, or - # (2) before a word containing "conftest.", or (3) at the end. - # Note that $ac_compile itself does not contain backslashes and begins - # with a dollar sign (not a hyphen), so the echo should work correctly. - lt_compile=`echo "$ac_compile" | $SED \ - -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ - -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ - -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) - (eval "$lt_compile" 2>out/conftest.err) - ac_status=$? - cat out/conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - if (exit $ac_status) && test -s out/conftest2.$ac_objext - then - # The compiler can only warn and ignore the option if not recognized - # So say no if there are warnings - $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp - $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 - if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then - lt_cv_prog_compiler_c_o=yes - fi - fi - chmod u+w . 2>&5 - $RM conftest* - # SGI C++ compiler will create directory out/ii_files/ for - # template instantiation - test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files - $RM out/* && rmdir out - cd .. - $RM -r conftest - $RM conftest* - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o" >&5 -$as_echo "$lt_cv_prog_compiler_c_o" >&6; } - - - - -hard_links="nottested" -if test "$lt_cv_prog_compiler_c_o" = no && test "$need_locks" != no; then - # do not overwrite the value of need_locks provided by the user - { $as_echo "$as_me:${as_lineno-$LINENO}: checking if we can lock with hard links" >&5 -$as_echo_n "checking if we can lock with hard links... " >&6; } - hard_links=yes - $RM conftest* - ln conftest.a conftest.b 2>/dev/null && hard_links=no - touch conftest.a - ln conftest.a conftest.b 2>&5 || hard_links=no - ln conftest.a conftest.b 2>/dev/null && hard_links=no - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $hard_links" >&5 -$as_echo "$hard_links" >&6; } - if test "$hard_links" = no; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 -$as_echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;} - need_locks=warn - fi -else - need_locks=no -fi - - - - - - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $compiler linker ($LD) supports shared libraries" >&5 -$as_echo_n "checking whether the $compiler linker ($LD) supports shared libraries... " >&6; } - - runpath_var= - allow_undefined_flag= - always_export_symbols=no - archive_cmds= - archive_expsym_cmds= - compiler_needs_object=no - enable_shared_with_static_runtimes=no - export_dynamic_flag_spec= - export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' - hardcode_automatic=no - hardcode_direct=no - hardcode_direct_absolute=no - hardcode_libdir_flag_spec= - hardcode_libdir_flag_spec_ld= - hardcode_libdir_separator= - hardcode_minus_L=no - hardcode_shlibpath_var=unsupported - inherit_rpath=no - link_all_deplibs=unknown - module_cmds= - module_expsym_cmds= - old_archive_from_new_cmds= - old_archive_from_expsyms_cmds= - thread_safe_flag_spec= - whole_archive_flag_spec= - # include_expsyms should be a list of space-separated symbols to be *always* - # included in the symbol list - include_expsyms= - # exclude_expsyms can be an extended regexp of symbols to exclude - # it will be wrapped by ` (' and `)$', so one must not match beginning or - # end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc', - # as well as any symbol that contains `d'. - exclude_expsyms='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*' - # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out - # platforms (ab)use it in PIC code, but their linkers get confused if - # the symbol is explicitly referenced. Since portable code cannot - # rely on this symbol name, it's probably fine to never include it in - # preloaded symbol tables. - # Exclude shared library initialization/finalization symbols. - extract_expsyms_cmds= - - case $host_os in - cygwin* | mingw* | pw32* | cegcc*) - # FIXME: the MSVC++ port hasn't been tested in a loooong time - # When not using gcc, we currently assume that we are using - # Microsoft Visual C++. - if test "$GCC" != yes; then - with_gnu_ld=no - fi - ;; - interix*) - # we just hope/assume this is gcc and not c89 (= MSVC++) - with_gnu_ld=yes - ;; - openbsd*) - with_gnu_ld=no - ;; - esac - - ld_shlibs=yes - - # On some targets, GNU ld is compatible enough with the native linker - # that we're better off using the native interface for both. - lt_use_gnu_ld_interface=no - if test "$with_gnu_ld" = yes; then - case $host_os in - aix*) - # The AIX port of GNU ld has always aspired to compatibility - # with the native linker. However, as the warning in the GNU ld - # block says, versions before 2.19.5* couldn't really create working - # shared libraries, regardless of the interface used. - case `$LD -v 2>&1` in - *\ \(GNU\ Binutils\)\ 2.19.5*) ;; - *\ \(GNU\ Binutils\)\ 2.[2-9]*) ;; - *\ \(GNU\ Binutils\)\ [3-9]*) ;; - *) - lt_use_gnu_ld_interface=yes - ;; - esac - ;; - *) - lt_use_gnu_ld_interface=yes - ;; - esac - fi - - if test "$lt_use_gnu_ld_interface" = yes; then - # If archive_cmds runs LD, not CC, wlarc should be empty - wlarc='${wl}' - - # Set some defaults for GNU ld with shared library support. These - # are reset later if shared libraries are not supported. Putting them - # here allows them to be overridden if necessary. - runpath_var=LD_RUN_PATH - hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' - export_dynamic_flag_spec='${wl}--export-dynamic' - # ancient GNU ld didn't support --whole-archive et. al. - if $LD --help 2>&1 | $GREP 'no-whole-archive' > /dev/null; then - whole_archive_flag_spec="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' - else - whole_archive_flag_spec= - fi - supports_anon_versioning=no - case `$LD -v 2>&1` in - *GNU\ gold*) supports_anon_versioning=yes ;; - *\ [01].* | *\ 2.[0-9].* | *\ 2.10.*) ;; # catch versions < 2.11 - *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... - *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... - *\ 2.11.*) ;; # other 2.11 versions - *) supports_anon_versioning=yes ;; - esac - - # See if GNU ld supports shared libraries. - case $host_os in - aix[3-9]*) - # On AIX/PPC, the GNU linker is very broken - if test "$host_cpu" != ia64; then - ld_shlibs=no - cat <<_LT_EOF 1>&2 - -*** Warning: the GNU linker, at least up to release 2.19, is reported -*** to be unable to reliably create shared libraries on AIX. -*** Therefore, libtool is disabling shared libraries support. If you -*** really care for shared libraries, you may want to install binutils -*** 2.20 or above, or modify your PATH so that a non-GNU linker is found. -*** You will then need to restart the configuration process. - -_LT_EOF - fi - ;; - - amigaos*) - case $host_cpu in - powerpc) - # see comment about AmigaOS4 .so support - archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - archive_expsym_cmds='' - ;; - m68k) - archive_cmds='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' - hardcode_libdir_flag_spec='-L$libdir' - hardcode_minus_L=yes - ;; - esac - ;; - - beos*) - if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then - allow_undefined_flag=unsupported - # Joseph Beckenbach says some releases of gcc - # support --undefined. This deserves some investigation. FIXME - archive_cmds='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - else - ld_shlibs=no - fi - ;; - - cygwin* | mingw* | pw32* | cegcc*) - # _LT_TAGVAR(hardcode_libdir_flag_spec, ) is actually meaningless, - # as there is no search path for DLLs. - hardcode_libdir_flag_spec='-L$libdir' - export_dynamic_flag_spec='${wl}--export-all-symbols' - allow_undefined_flag=unsupported - always_export_symbols=no - enable_shared_with_static_runtimes=yes - export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1 DATA/;s/^.*[ ]__nm__\([^ ]*\)[ ][^ ]*/\1 DATA/;/^I[ ]/d;/^[AITW][ ]/s/.* //'\'' | sort | uniq > $export_symbols' - exclude_expsyms='[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname' - - if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then - archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' - # If the export-symbols file already is a .def file (1st line - # is EXPORTS), use it as is; otherwise, prepend... - archive_expsym_cmds='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then - cp $export_symbols $output_objdir/$soname.def; - else - echo EXPORTS > $output_objdir/$soname.def; - cat $export_symbols >> $output_objdir/$soname.def; - fi~ - $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' - else - ld_shlibs=no - fi - ;; - - haiku*) - archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - link_all_deplibs=yes - ;; - - interix[3-9]*) - hardcode_direct=no - hardcode_shlibpath_var=no - hardcode_libdir_flag_spec='${wl}-rpath,$libdir' - export_dynamic_flag_spec='${wl}-E' - # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. - # Instead, shared libraries are loaded at an image base (0x10000000 by - # default) and relocated if they conflict, which is a slow very memory - # consuming and fragmenting process. To avoid this, we pick a random, - # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link - # time. Moving up from 0x10000000 also allows more sbrk(2) space. - archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' - archive_expsym_cmds='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' - ;; - - gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu) - tmp_diet=no - if test "$host_os" = linux-dietlibc; then - case $cc_basename in - diet\ *) tmp_diet=yes;; # linux-dietlibc with static linking (!diet-dyn) - esac - fi - if $LD --help 2>&1 | $EGREP ': supported targets:.* elf' > /dev/null \ - && test "$tmp_diet" = no - then - tmp_addflag=' $pic_flag' - tmp_sharedflag='-shared' - case $cc_basename,$host_cpu in - pgcc*) # Portland Group C compiler - whole_archive_flag_spec='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' - tmp_addflag=' $pic_flag' - ;; - pgf77* | pgf90* | pgf95* | pgfortran*) - # Portland Group f77 and f90 compilers - whole_archive_flag_spec='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' - tmp_addflag=' $pic_flag -Mnomain' ;; - ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 - tmp_addflag=' -i_dynamic' ;; - efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64 - tmp_addflag=' -i_dynamic -nofor_main' ;; - ifc* | ifort*) # Intel Fortran compiler - tmp_addflag=' -nofor_main' ;; - lf95*) # Lahey Fortran 8.1 - whole_archive_flag_spec= - tmp_sharedflag='--shared' ;; - xl[cC]* | bgxl[cC]* | mpixl[cC]*) # IBM XL C 8.0 on PPC (deal with xlf below) - tmp_sharedflag='-qmkshrobj' - tmp_addflag= ;; - nvcc*) # Cuda Compiler Driver 2.2 - whole_archive_flag_spec='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' - compiler_needs_object=yes - ;; - esac - case `$CC -V 2>&1 | sed 5q` in - *Sun\ C*) # Sun C 5.9 - whole_archive_flag_spec='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' - compiler_needs_object=yes - tmp_sharedflag='-G' ;; - *Sun\ F*) # Sun Fortran 8.3 - tmp_sharedflag='-G' ;; - esac - archive_cmds='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - - if test "x$supports_anon_versioning" = xyes; then - archive_expsym_cmds='echo "{ global:" > $output_objdir/$libname.ver~ - cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ - echo "local: *; };" >> $output_objdir/$libname.ver~ - $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' - fi - - case $cc_basename in - xlf* | bgf* | bgxlf* | mpixlf*) - # IBM XL Fortran 10.1 on PPC cannot create shared libs itself - whole_archive_flag_spec='--whole-archive$convenience --no-whole-archive' - hardcode_libdir_flag_spec= - hardcode_libdir_flag_spec_ld='-rpath $libdir' - archive_cmds='$LD -shared $libobjs $deplibs $linker_flags -soname $soname -o $lib' - if test "x$supports_anon_versioning" = xyes; then - archive_expsym_cmds='echo "{ global:" > $output_objdir/$libname.ver~ - cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ - echo "local: *; };" >> $output_objdir/$libname.ver~ - $LD -shared $libobjs $deplibs $linker_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib' - fi - ;; - esac - else - ld_shlibs=no - fi - ;; - - netbsd*) - if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then - archive_cmds='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' - wlarc= - else - archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' - fi - ;; - - solaris*) - if $LD -v 2>&1 | $GREP 'BFD 2\.8' > /dev/null; then - ld_shlibs=no - cat <<_LT_EOF 1>&2 - -*** Warning: The releases 2.8.* of the GNU linker cannot reliably -*** create shared libraries on Solaris systems. Therefore, libtool -*** is disabling shared libraries support. We urge you to upgrade GNU -*** binutils to release 2.9.1 or newer. Another option is to modify -*** your PATH or compiler configuration so that the native linker is -*** used, and then restart. - -_LT_EOF - elif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then - archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' - else - ld_shlibs=no - fi - ;; - - sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) - case `$LD -v 2>&1` in - *\ [01].* | *\ 2.[0-9].* | *\ 2.1[0-5].*) - ld_shlibs=no - cat <<_LT_EOF 1>&2 - -*** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not -*** reliably create shared libraries on SCO systems. Therefore, libtool -*** is disabling shared libraries support. We urge you to upgrade GNU -*** binutils to release 2.16.91.0.3 or newer. Another option is to modify -*** your PATH or compiler configuration so that the native linker is -*** used, and then restart. - -_LT_EOF - ;; - *) - # For security reasons, it is highly recommended that you always - # use absolute paths for naming shared libraries, and exclude the - # DT_RUNPATH tag from executables and libraries. But doing so - # requires that you compile everything twice, which is a pain. - if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then - hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' - archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' - else - ld_shlibs=no - fi - ;; - esac - ;; - - sunos4*) - archive_cmds='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' - wlarc= - hardcode_direct=yes - hardcode_shlibpath_var=no - ;; - - *) - if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then - archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' - else - ld_shlibs=no - fi - ;; - esac - - if test "$ld_shlibs" = no; then - runpath_var= - hardcode_libdir_flag_spec= - export_dynamic_flag_spec= - whole_archive_flag_spec= - fi - else - # PORTME fill in a description of your system's linker (not GNU ld) - case $host_os in - aix3*) - allow_undefined_flag=unsupported - always_export_symbols=yes - archive_expsym_cmds='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' - # Note: this linker hardcodes the directories in LIBPATH if there - # are no directories specified by -L. - hardcode_minus_L=yes - if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then - # Neither direct hardcoding nor static linking is supported with a - # broken collect2. - hardcode_direct=unsupported - fi - ;; - - aix[4-9]*) - if test "$host_cpu" = ia64; then - # On IA64, the linker does run time linking by default, so we don't - # have to do anything special. - aix_use_runtimelinking=no - exp_sym_flag='-Bexport' - no_entry_flag="" - else - # If we're using GNU nm, then we don't want the "-C" option. - # -C means demangle to AIX nm, but means don't demangle with GNU nm - # Also, AIX nm treats weak defined symbols like other global - # defined symbols, whereas GNU nm marks them as "W". - if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then - export_symbols_cmds='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && (substr(\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' - else - export_symbols_cmds='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && (substr(\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' - fi - aix_use_runtimelinking=no - - # Test if we are trying to use run time linking or normal - # AIX style linking. If -brtl is somewhere in LDFLAGS, we - # need to do runtime linking. - case $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*) - for ld_flag in $LDFLAGS; do - if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then - aix_use_runtimelinking=yes - break - fi - done - ;; - esac - - exp_sym_flag='-bexport' - no_entry_flag='-bnoentry' - fi - - # When large executables or shared objects are built, AIX ld can - # have problems creating the table of contents. If linking a library - # or program results in "error TOC overflow" add -mminimal-toc to - # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not - # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. - - archive_cmds='' - hardcode_direct=yes - hardcode_direct_absolute=yes - hardcode_libdir_separator=':' - link_all_deplibs=yes - file_list_spec='${wl}-f,' - - if test "$GCC" = yes; then - case $host_os in aix4.[012]|aix4.[012].*) - # We only want to do this on AIX 4.2 and lower, the check - # below for broken collect2 doesn't work under 4.3+ - collect2name=`${CC} -print-prog-name=collect2` - if test -f "$collect2name" && - strings "$collect2name" | $GREP resolve_lib_name >/dev/null - then - # We have reworked collect2 - : - else - # We have old collect2 - hardcode_direct=unsupported - # It fails to find uninstalled libraries when the uninstalled - # path is not listed in the libpath. Setting hardcode_minus_L - # to unsupported forces relinking - hardcode_minus_L=yes - hardcode_libdir_flag_spec='-L$libdir' - hardcode_libdir_separator= - fi - ;; - esac - shared_flag='-shared' - if test "$aix_use_runtimelinking" = yes; then - shared_flag="$shared_flag "'${wl}-G' - fi - else - # not using gcc - if test "$host_cpu" = ia64; then - # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release - # chokes on -Wl,-G. The following line is correct: - shared_flag='-G' - else - if test "$aix_use_runtimelinking" = yes; then - shared_flag='${wl}-G' - else - shared_flag='${wl}-bM:SRE' - fi - fi - fi - - export_dynamic_flag_spec='${wl}-bexpall' - # It seems that -bexpall does not export symbols beginning with - # underscore (_), so it is better to generate a list of symbols to export. - always_export_symbols=yes - if test "$aix_use_runtimelinking" = yes; then - # Warning - without using the other runtime loading flags (-brtl), - # -berok will link without error, but may produce a broken library. - allow_undefined_flag='-berok' - # Determine the default libpath from the value encoded in an - # empty executable. - if test "${lt_cv_aix_libpath+set}" = set; then - aix_libpath=$lt_cv_aix_libpath -else - if ${lt_cv_aix_libpath_+:} false; then : - $as_echo_n "(cached) " >&6 -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - - lt_aix_libpath_sed=' - /Import File Strings/,/^$/ { - /^0/ { - s/^0 *\([^ ]*\) *$/\1/ - p - } - }' - lt_cv_aix_libpath_=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` - # Check for a 64-bit object if we didn't find anything. - if test -z "$lt_cv_aix_libpath_"; then - lt_cv_aix_libpath_=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` - fi -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext - if test -z "$lt_cv_aix_libpath_"; then - lt_cv_aix_libpath_="/usr/lib:/lib" - fi - -fi - - aix_libpath=$lt_cv_aix_libpath_ -fi - - hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath" - archive_expsym_cmds='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then func_echo_all "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" - else - if test "$host_cpu" = ia64; then - hardcode_libdir_flag_spec='${wl}-R $libdir:/usr/lib:/lib' - allow_undefined_flag="-z nodefs" - archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" - else - # Determine the default libpath from the value encoded in an - # empty executable. - if test "${lt_cv_aix_libpath+set}" = set; then - aix_libpath=$lt_cv_aix_libpath -else - if ${lt_cv_aix_libpath_+:} false; then : - $as_echo_n "(cached) " >&6 -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - - lt_aix_libpath_sed=' - /Import File Strings/,/^$/ { - /^0/ { - s/^0 *\([^ ]*\) *$/\1/ - p - } - }' - lt_cv_aix_libpath_=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` - # Check for a 64-bit object if we didn't find anything. - if test -z "$lt_cv_aix_libpath_"; then - lt_cv_aix_libpath_=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` - fi -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext - if test -z "$lt_cv_aix_libpath_"; then - lt_cv_aix_libpath_="/usr/lib:/lib" - fi - -fi - - aix_libpath=$lt_cv_aix_libpath_ -fi - - hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath" - # Warning - without using the other run time loading flags, - # -berok will link without error, but may produce a broken library. - no_undefined_flag=' ${wl}-bernotok' - allow_undefined_flag=' ${wl}-berok' - if test "$with_gnu_ld" = yes; then - # We only use this code for GNU lds that support --whole-archive. - whole_archive_flag_spec='${wl}--whole-archive$convenience ${wl}--no-whole-archive' - else - # Exported symbols can be pulled into shared objects from archives - whole_archive_flag_spec='$convenience' - fi - archive_cmds_need_lc=yes - # This is similar to how AIX traditionally builds its shared libraries. - archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' - fi - fi - ;; - - amigaos*) - case $host_cpu in - powerpc) - # see comment about AmigaOS4 .so support - archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - archive_expsym_cmds='' - ;; - m68k) - archive_cmds='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' - hardcode_libdir_flag_spec='-L$libdir' - hardcode_minus_L=yes - ;; - esac - ;; - - bsdi[45]*) - export_dynamic_flag_spec=-rdynamic - ;; - - cygwin* | mingw* | pw32* | cegcc*) - # When not using gcc, we currently assume that we are using - # Microsoft Visual C++. - # hardcode_libdir_flag_spec is actually meaningless, as there is - # no search path for DLLs. - case $cc_basename in - cl*) - # Native MSVC - hardcode_libdir_flag_spec=' ' - allow_undefined_flag=unsupported - always_export_symbols=yes - file_list_spec='@' - # Tell ltmain to make .lib files, not .a files. - libext=lib - # Tell ltmain to make .dll files, not .so files. - shrext_cmds=".dll" - # FIXME: Setting linknames here is a bad hack. - archive_cmds='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-dll~linknames=' - archive_expsym_cmds='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then - sed -n -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' -e '1\\\!p' < $export_symbols > $output_objdir/$soname.exp; - else - sed -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' < $export_symbols > $output_objdir/$soname.exp; - fi~ - $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ - linknames=' - # The linker will not automatically build a static lib if we build a DLL. - # _LT_TAGVAR(old_archive_from_new_cmds, )='true' - enable_shared_with_static_runtimes=yes - export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1,DATA/'\'' | $SED -e '\''/^[AITW][ ]/s/.*[ ]//'\'' | sort | uniq > $export_symbols' - # Don't use ranlib - old_postinstall_cmds='chmod 644 $oldlib' - postlink_cmds='lt_outputfile="@OUTPUT@"~ - lt_tool_outputfile="@TOOL_OUTPUT@"~ - case $lt_outputfile in - *.exe|*.EXE) ;; - *) - lt_outputfile="$lt_outputfile.exe" - lt_tool_outputfile="$lt_tool_outputfile.exe" - ;; - esac~ - if test "$MANIFEST_TOOL" != ":" && test -f "$lt_outputfile.manifest"; then - $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; - $RM "$lt_outputfile.manifest"; - fi' - ;; - *) - # Assume MSVC wrapper - hardcode_libdir_flag_spec=' ' - allow_undefined_flag=unsupported - # Tell ltmain to make .lib files, not .a files. - libext=lib - # Tell ltmain to make .dll files, not .so files. - shrext_cmds=".dll" - # FIXME: Setting linknames here is a bad hack. - archive_cmds='$CC -o $lib $libobjs $compiler_flags `func_echo_all "$deplibs" | $SED '\''s/ -lc$//'\''` -link -dll~linknames=' - # The linker will automatically build a .lib file if we build a DLL. - old_archive_from_new_cmds='true' - # FIXME: Should let the user specify the lib program. - old_archive_cmds='lib -OUT:$oldlib$oldobjs$old_deplibs' - enable_shared_with_static_runtimes=yes - ;; - esac - ;; - - darwin* | rhapsody*) - - - archive_cmds_need_lc=no - hardcode_direct=no - hardcode_automatic=yes - hardcode_shlibpath_var=unsupported - if test "$lt_cv_ld_force_load" = "yes"; then - whole_archive_flag_spec='`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience ${wl}-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`' - else - whole_archive_flag_spec='' - fi - link_all_deplibs=yes - allow_undefined_flag="$_lt_dar_allow_undefined" - case $cc_basename in - ifort*) _lt_dar_can_shared=yes ;; - *) _lt_dar_can_shared=$GCC ;; - esac - if test "$_lt_dar_can_shared" = "yes"; then - output_verbose_link_cmd=func_echo_all - archive_cmds="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}" - module_cmds="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}" - archive_expsym_cmds="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}" - module_expsym_cmds="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}" - - else - ld_shlibs=no - fi - - ;; - - dgux*) - archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' - hardcode_libdir_flag_spec='-L$libdir' - hardcode_shlibpath_var=no - ;; - - freebsd1*) - ld_shlibs=no - ;; - - # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor - # support. Future versions do this automatically, but an explicit c++rt0.o - # does not break anything, and helps significantly (at the cost of a little - # extra space). - freebsd2.2*) - archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' - hardcode_libdir_flag_spec='-R$libdir' - hardcode_direct=yes - hardcode_shlibpath_var=no - ;; - - # Unfortunately, older versions of FreeBSD 2 do not have this feature. - freebsd2*) - archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' - hardcode_direct=yes - hardcode_minus_L=yes - hardcode_shlibpath_var=no - ;; - - # FreeBSD 3 and greater uses gcc -shared to do shared libraries. - freebsd* | dragonfly*) - archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' - hardcode_libdir_flag_spec='-R$libdir' - hardcode_direct=yes - hardcode_shlibpath_var=no - ;; - - hpux9*) - if test "$GCC" = yes; then - archive_cmds='$RM $output_objdir/$soname~$CC -shared $pic_flag ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' - else - archive_cmds='$RM $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' - fi - hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' - hardcode_libdir_separator=: - hardcode_direct=yes - - # hardcode_minus_L: Not really in the search PATH, - # but as the default location of the library. - hardcode_minus_L=yes - export_dynamic_flag_spec='${wl}-E' - ;; - - hpux10*) - if test "$GCC" = yes && test "$with_gnu_ld" = no; then - archive_cmds='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' - else - archive_cmds='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' - fi - if test "$with_gnu_ld" = no; then - hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' - hardcode_libdir_flag_spec_ld='+b $libdir' - hardcode_libdir_separator=: - hardcode_direct=yes - hardcode_direct_absolute=yes - export_dynamic_flag_spec='${wl}-E' - # hardcode_minus_L: Not really in the search PATH, - # but as the default location of the library. - hardcode_minus_L=yes - fi - ;; - - hpux11*) - if test "$GCC" = yes && test "$with_gnu_ld" = no; then - case $host_cpu in - hppa*64*) - archive_cmds='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' - ;; - ia64*) - archive_cmds='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' - ;; - *) - archive_cmds='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' - ;; - esac - else - case $host_cpu in - hppa*64*) - archive_cmds='$CC -b ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' - ;; - ia64*) - archive_cmds='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' - ;; - *) - - # Older versions of the 11.00 compiler do not understand -b yet - # (HP92453-01 A.11.01.20 doesn't, HP92453-01 B.11.X.35175-35176.GP does) - { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC understands -b" >&5 -$as_echo_n "checking if $CC understands -b... " >&6; } -if ${lt_cv_prog_compiler__b+:} false; then : - $as_echo_n "(cached) " >&6 -else - lt_cv_prog_compiler__b=no - save_LDFLAGS="$LDFLAGS" - LDFLAGS="$LDFLAGS -b" - echo "$lt_simple_link_test_code" > conftest.$ac_ext - if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then - # The linker can only warn and ignore the option if not recognized - # So say no if there are warnings - if test -s conftest.err; then - # Append any errors to the config.log. - cat conftest.err 1>&5 - $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp - $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 - if diff conftest.exp conftest.er2 >/dev/null; then - lt_cv_prog_compiler__b=yes - fi - else - lt_cv_prog_compiler__b=yes - fi - fi - $RM -r conftest* - LDFLAGS="$save_LDFLAGS" - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler__b" >&5 -$as_echo "$lt_cv_prog_compiler__b" >&6; } - -if test x"$lt_cv_prog_compiler__b" = xyes; then - archive_cmds='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' -else - archive_cmds='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' -fi - - ;; - esac - fi - if test "$with_gnu_ld" = no; then - hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' - hardcode_libdir_separator=: - - case $host_cpu in - hppa*64*|ia64*) - hardcode_direct=no - hardcode_shlibpath_var=no - ;; - *) - hardcode_direct=yes - hardcode_direct_absolute=yes - export_dynamic_flag_spec='${wl}-E' - - # hardcode_minus_L: Not really in the search PATH, - # but as the default location of the library. - hardcode_minus_L=yes - ;; - esac - fi - ;; - - irix5* | irix6* | nonstopux*) - if test "$GCC" = yes; then - archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' - # Try to use the -exported_symbol ld option, if it does not - # work, assume that -exports_file does not work either and - # implicitly export all symbols. - # This should be the same for all languages, so no per-tag cache variable. - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $host_os linker accepts -exported_symbol" >&5 -$as_echo_n "checking whether the $host_os linker accepts -exported_symbol... " >&6; } -if ${lt_cv_irix_exported_symbol+:} false; then : - $as_echo_n "(cached) " >&6 -else - save_LDFLAGS="$LDFLAGS" - LDFLAGS="$LDFLAGS -shared ${wl}-exported_symbol ${wl}foo ${wl}-update_registry ${wl}/dev/null" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -int foo (void) { return 0; } -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - lt_cv_irix_exported_symbol=yes -else - lt_cv_irix_exported_symbol=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext - LDFLAGS="$save_LDFLAGS" -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_irix_exported_symbol" >&5 -$as_echo "$lt_cv_irix_exported_symbol" >&6; } - if test "$lt_cv_irix_exported_symbol" = yes; then - archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations ${wl}-exports_file ${wl}$export_symbols -o $lib' - fi - else - archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' - archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -exports_file $export_symbols -o $lib' - fi - archive_cmds_need_lc='no' - hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' - hardcode_libdir_separator=: - inherit_rpath=yes - link_all_deplibs=yes - ;; - - netbsd*) - if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then - archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out - else - archive_cmds='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF - fi - hardcode_libdir_flag_spec='-R$libdir' - hardcode_direct=yes - hardcode_shlibpath_var=no - ;; - - newsos6) - archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' - hardcode_direct=yes - hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' - hardcode_libdir_separator=: - hardcode_shlibpath_var=no - ;; - - *nto* | *qnx*) - ;; - - openbsd*) - if test -f /usr/libexec/ld.so; then - hardcode_direct=yes - hardcode_shlibpath_var=no - hardcode_direct_absolute=yes - if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then - archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' - archive_expsym_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols' - hardcode_libdir_flag_spec='${wl}-rpath,$libdir' - export_dynamic_flag_spec='${wl}-E' - else - case $host_os in - openbsd[01].* | openbsd2.[0-7] | openbsd2.[0-7].*) - archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' - hardcode_libdir_flag_spec='-R$libdir' - ;; - *) - archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' - hardcode_libdir_flag_spec='${wl}-rpath,$libdir' - ;; - esac - fi - else - ld_shlibs=no - fi - ;; - - os2*) - hardcode_libdir_flag_spec='-L$libdir' - hardcode_minus_L=yes - allow_undefined_flag=unsupported - archive_cmds='$ECHO "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~echo DATA >> $output_objdir/$libname.def~echo " SINGLE NONSHARED" >> $output_objdir/$libname.def~echo EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def' - old_archive_from_new_cmds='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def' - ;; - - osf3*) - if test "$GCC" = yes; then - allow_undefined_flag=' ${wl}-expect_unresolved ${wl}\*' - archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' - else - allow_undefined_flag=' -expect_unresolved \*' - archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' - fi - archive_cmds_need_lc='no' - hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' - hardcode_libdir_separator=: - ;; - - osf4* | osf5*) # as osf3* with the addition of -msym flag - if test "$GCC" = yes; then - allow_undefined_flag=' ${wl}-expect_unresolved ${wl}\*' - archive_cmds='$CC -shared${allow_undefined_flag} $pic_flag $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' - hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' - else - allow_undefined_flag=' -expect_unresolved \*' - archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' - archive_expsym_cmds='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; printf "%s\\n" "-hidden">> $lib.exp~ - $CC -shared${allow_undefined_flag} ${wl}-input ${wl}$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib~$RM $lib.exp' - - # Both c and cxx compiler support -rpath directly - hardcode_libdir_flag_spec='-rpath $libdir' - fi - archive_cmds_need_lc='no' - hardcode_libdir_separator=: - ;; - - solaris*) - no_undefined_flag=' -z defs' - if test "$GCC" = yes; then - wlarc='${wl}' - archive_cmds='$CC -shared $pic_flag ${wl}-z ${wl}text ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' - archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ - $CC -shared $pic_flag ${wl}-z ${wl}text ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' - else - case `$CC -V 2>&1` in - *"Compilers 5.0"*) - wlarc='' - archive_cmds='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' - archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ - $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$RM $lib.exp' - ;; - *) - wlarc='${wl}' - archive_cmds='$CC -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $compiler_flags' - archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ - $CC -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' - ;; - esac - fi - hardcode_libdir_flag_spec='-R$libdir' - hardcode_shlibpath_var=no - case $host_os in - solaris2.[0-5] | solaris2.[0-5].*) ;; - *) - # The compiler driver will combine and reorder linker options, - # but understands `-z linker_flag'. GCC discards it without `$wl', - # but is careful enough not to reorder. - # Supported since Solaris 2.6 (maybe 2.5.1?) - if test "$GCC" = yes; then - whole_archive_flag_spec='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' - else - whole_archive_flag_spec='-z allextract$convenience -z defaultextract' - fi - ;; - esac - link_all_deplibs=yes - ;; - - sunos4*) - if test "x$host_vendor" = xsequent; then - # Use $CC to link under sequent, because it throws in some extra .o - # files that make .init and .fini sections work. - archive_cmds='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags' - else - archive_cmds='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' - fi - hardcode_libdir_flag_spec='-L$libdir' - hardcode_direct=yes - hardcode_minus_L=yes - hardcode_shlibpath_var=no - ;; - - sysv4) - case $host_vendor in - sni) - archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' - hardcode_direct=yes # is this really true??? - ;; - siemens) - ## LD is ld it makes a PLAMLIB - ## CC just makes a GrossModule. - archive_cmds='$LD -G -o $lib $libobjs $deplibs $linker_flags' - reload_cmds='$CC -r -o $output$reload_objs' - hardcode_direct=no - ;; - motorola) - archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' - hardcode_direct=no #Motorola manual says yes, but my tests say they lie - ;; - esac - runpath_var='LD_RUN_PATH' - hardcode_shlibpath_var=no - ;; - - sysv4.3*) - archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' - hardcode_shlibpath_var=no - export_dynamic_flag_spec='-Bexport' - ;; - - sysv4*MP*) - if test -d /usr/nec; then - archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' - hardcode_shlibpath_var=no - runpath_var=LD_RUN_PATH - hardcode_runpath_var=yes - ld_shlibs=yes - fi - ;; - - sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*) - no_undefined_flag='${wl}-z,text' - archive_cmds_need_lc=no - hardcode_shlibpath_var=no - runpath_var='LD_RUN_PATH' - - if test "$GCC" = yes; then - archive_cmds='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - archive_expsym_cmds='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - else - archive_cmds='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - archive_expsym_cmds='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - fi - ;; - - sysv5* | sco3.2v5* | sco5v6*) - # Note: We can NOT use -z defs as we might desire, because we do not - # link with -lc, and that would cause any symbols used from libc to - # always be unresolved, which means just about no library would - # ever link correctly. If we're not using GNU ld we use -z text - # though, which does catch some bad symbols but isn't as heavy-handed - # as -z defs. - no_undefined_flag='${wl}-z,text' - allow_undefined_flag='${wl}-z,nodefs' - archive_cmds_need_lc=no - hardcode_shlibpath_var=no - hardcode_libdir_flag_spec='${wl}-R,$libdir' - hardcode_libdir_separator=':' - link_all_deplibs=yes - export_dynamic_flag_spec='${wl}-Bexport' - runpath_var='LD_RUN_PATH' - - if test "$GCC" = yes; then - archive_cmds='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - archive_expsym_cmds='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - else - archive_cmds='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - archive_expsym_cmds='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - fi - ;; - - uts4*) - archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' - hardcode_libdir_flag_spec='-L$libdir' - hardcode_shlibpath_var=no - ;; - - *) - ld_shlibs=no - ;; - esac - - if test x$host_vendor = xsni; then - case $host in - sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) - export_dynamic_flag_spec='${wl}-Blargedynsym' - ;; - esac - fi - fi - -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ld_shlibs" >&5 -$as_echo "$ld_shlibs" >&6; } -test "$ld_shlibs" = no && can_build_shared=no - -with_gnu_ld=$with_gnu_ld - - - - - - - - - - - - - - - -# -# Do we need to explicitly link libc? -# -case "x$archive_cmds_need_lc" in -x|xyes) - # Assume -lc should be added - archive_cmds_need_lc=yes - - if test "$enable_shared" = yes && test "$GCC" = yes; then - case $archive_cmds in - *'~'*) - # FIXME: we may have to deal with multi-command sequences. - ;; - '$CC '*) - # Test whether the compiler implicitly links with -lc since on some - # systems, -lgcc has to come before -lc. If gcc already passes -lc - # to ld, don't add -lc before -lgcc. - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether -lc should be explicitly linked in" >&5 -$as_echo_n "checking whether -lc should be explicitly linked in... " >&6; } -if ${lt_cv_archive_cmds_need_lc+:} false; then : - $as_echo_n "(cached) " >&6 -else - $RM conftest* - echo "$lt_simple_compile_test_code" > conftest.$ac_ext - - if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 - (eval $ac_compile) 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } 2>conftest.err; then - soname=conftest - lib=conftest - libobjs=conftest.$ac_objext - deplibs= - wl=$lt_prog_compiler_wl - pic_flag=$lt_prog_compiler_pic - compiler_flags=-v - linker_flags=-v - verstring= - output_objdir=. - libname=conftest - lt_save_allow_undefined_flag=$allow_undefined_flag - allow_undefined_flag= - if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$archive_cmds 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1\""; } >&5 - (eval $archive_cmds 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1) 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } - then - lt_cv_archive_cmds_need_lc=no - else - lt_cv_archive_cmds_need_lc=yes - fi - allow_undefined_flag=$lt_save_allow_undefined_flag - else - cat conftest.err 1>&5 - fi - $RM conftest* - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_archive_cmds_need_lc" >&5 -$as_echo "$lt_cv_archive_cmds_need_lc" >&6; } - archive_cmds_need_lc=$lt_cv_archive_cmds_need_lc - ;; - esac - fi - ;; -esac - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking dynamic linker characteristics" >&5 -$as_echo_n "checking dynamic linker characteristics... " >&6; } - -if test "$GCC" = yes; then - case $host_os in - darwin*) lt_awk_arg="/^libraries:/,/LR/" ;; - *) lt_awk_arg="/^libraries:/" ;; - esac - case $host_os in - mingw* | cegcc*) lt_sed_strip_eq="s,=\([A-Za-z]:\),\1,g" ;; - *) lt_sed_strip_eq="s,=/,/,g" ;; - esac - lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e "s/^libraries://" -e $lt_sed_strip_eq` - case $lt_search_path_spec in - *\;*) - # if the path contains ";" then we assume it to be the separator - # otherwise default to the standard path separator (i.e. ":") - it is - # assumed that no part of a normal pathname contains ";" but that should - # okay in the real world where ";" in dirpaths is itself problematic. - lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED 's/;/ /g'` - ;; - *) - lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED "s/$PATH_SEPARATOR/ /g"` - ;; - esac - # Ok, now we have the path, separated by spaces, we can step through it - # and add multilib dir if necessary. - lt_tmp_lt_search_path_spec= - lt_multi_os_dir=`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null` - for lt_sys_path in $lt_search_path_spec; do - if test -d "$lt_sys_path/$lt_multi_os_dir"; then - lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path/$lt_multi_os_dir" - else - test -d "$lt_sys_path" && \ - lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path" - fi - done - lt_search_path_spec=`$ECHO "$lt_tmp_lt_search_path_spec" | awk ' -BEGIN {RS=" "; FS="/|\n";} { - lt_foo=""; - lt_count=0; - for (lt_i = NF; lt_i > 0; lt_i--) { - if ($lt_i != "" && $lt_i != ".") { - if ($lt_i == "..") { - lt_count++; - } else { - if (lt_count == 0) { - lt_foo="/" $lt_i lt_foo; - } else { - lt_count--; - } - } - } - } - if (lt_foo != "") { lt_freq[lt_foo]++; } - if (lt_freq[lt_foo] == 1) { print lt_foo; } -}'` - # AWK program above erroneously prepends '/' to C:/dos/paths - # for these hosts. - case $host_os in - mingw* | cegcc*) lt_search_path_spec=`$ECHO "$lt_search_path_spec" |\ - $SED 's,/\([A-Za-z]:\),\1,g'` ;; - esac - sys_lib_search_path_spec=`$ECHO "$lt_search_path_spec" | $lt_NL2SP` -else - sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" -fi -library_names_spec= -libname_spec='lib$name' -soname_spec= -shrext_cmds=".so" -postinstall_cmds= -postuninstall_cmds= -finish_cmds= -finish_eval= -shlibpath_var= -shlibpath_overrides_runpath=unknown -version_type=none -dynamic_linker="$host_os ld.so" -sys_lib_dlsearch_path_spec="/lib /usr/lib" -need_lib_prefix=unknown -hardcode_into_libs=no - -# when you set need_version to no, make sure it does not cause -set_version -# flags to be left without arguments -need_version=unknown - -case $host_os in -aix3*) - version_type=linux - library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' - shlibpath_var=LIBPATH - - # AIX 3 has no versioning support, so we append a major version to the name. - soname_spec='${libname}${release}${shared_ext}$major' - ;; - -aix[4-9]*) - version_type=linux - need_lib_prefix=no - need_version=no - hardcode_into_libs=yes - if test "$host_cpu" = ia64; then - # AIX 5 supports IA64 - library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' - shlibpath_var=LD_LIBRARY_PATH - else - # With GCC up to 2.95.x, collect2 would create an import file - # for dependence libraries. The import file would start with - # the line `#! .'. This would cause the generated library to - # depend on `.', always an invalid library. This was fixed in - # development snapshots of GCC prior to 3.0. - case $host_os in - aix4 | aix4.[01] | aix4.[01].*) - if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' - echo ' yes ' - echo '#endif'; } | ${CC} -E - | $GREP yes > /dev/null; then - : - else - can_build_shared=no - fi - ;; - esac - # AIX (on Power*) has no versioning support, so currently we can not hardcode correct - # soname into executable. Probably we can add versioning support to - # collect2, so additional links can be useful in future. - if test "$aix_use_runtimelinking" = yes; then - # If using run time linking (on AIX 4.2 or later) use lib.so - # instead of lib.a to let people know that these are not - # typical AIX shared libraries. - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - else - # We preserve .a as extension for shared libraries through AIX4.2 - # and later when we are not doing run time linking. - library_names_spec='${libname}${release}.a $libname.a' - soname_spec='${libname}${release}${shared_ext}$major' - fi - shlibpath_var=LIBPATH - fi - ;; - -amigaos*) - case $host_cpu in - powerpc) - # Since July 2007 AmigaOS4 officially supports .so libraries. - # When compiling the executable, add -use-dynld -Lsobjs: to the compileline. - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - ;; - m68k) - library_names_spec='$libname.ixlibrary $libname.a' - # Create ${libname}_ixlibrary.a entries in /sys/libs. - finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all "$lib" | $SED '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' - ;; - esac - ;; - -beos*) - library_names_spec='${libname}${shared_ext}' - dynamic_linker="$host_os ld.so" - shlibpath_var=LIBRARY_PATH - ;; - -bsdi[45]*) - version_type=linux - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' - shlibpath_var=LD_LIBRARY_PATH - sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" - sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" - # the default ld.so.conf also contains /usr/contrib/lib and - # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow - # libtool to hard-code these into programs - ;; - -cygwin* | mingw* | pw32* | cegcc*) - version_type=windows - shrext_cmds=".dll" - need_version=no - need_lib_prefix=no - - case $GCC,$cc_basename in - yes,*) - # gcc - library_names_spec='$libname.dll.a' - # DLL is installed to $(libdir)/../bin by postinstall_cmds - postinstall_cmds='base_file=`basename \${file}`~ - dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ - dldir=$destdir/`dirname \$dlpath`~ - test -d \$dldir || mkdir -p \$dldir~ - $install_prog $dir/$dlname \$dldir/$dlname~ - chmod a+x \$dldir/$dlname~ - if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then - eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; - fi' - postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ - dlpath=$dir/\$dldll~ - $RM \$dlpath' - shlibpath_overrides_runpath=yes - - case $host_os in - cygwin*) - # Cygwin DLLs use 'cyg' prefix rather than 'lib' - soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' - - sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/lib/w32api" - ;; - mingw* | cegcc*) - # MinGW DLLs use traditional 'lib' prefix - soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' - ;; - pw32*) - # pw32 DLLs use 'pw' prefix rather than 'lib' - library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' - ;; - esac - dynamic_linker='Win32 ld.exe' - ;; - - *,cl*) - # Native MSVC - libname_spec='$name' - soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' - library_names_spec='${libname}.dll.lib' - - case $build_os in - mingw*) - sys_lib_search_path_spec= - lt_save_ifs=$IFS - IFS=';' - for lt_path in $LIB - do - IFS=$lt_save_ifs - # Let DOS variable expansion print the short 8.3 style file name. - lt_path=`cd "$lt_path" 2>/dev/null && cmd //C "for %i in (".") do @echo %~si"` - sys_lib_search_path_spec="$sys_lib_search_path_spec $lt_path" - done - IFS=$lt_save_ifs - # Convert to MSYS style. - sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | sed -e 's|\\\\|/|g' -e 's| \\([a-zA-Z]\\):| /\\1|g' -e 's|^ ||'` - ;; - cygwin*) - # Convert to unix form, then to dos form, then back to unix form - # but this time dos style (no spaces!) so that the unix form looks - # like /cygdrive/c/PROGRA~1:/cygdr... - sys_lib_search_path_spec=`cygpath --path --unix "$LIB"` - sys_lib_search_path_spec=`cygpath --path --dos "$sys_lib_search_path_spec" 2>/dev/null` - sys_lib_search_path_spec=`cygpath --path --unix "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` - ;; - *) - sys_lib_search_path_spec="$LIB" - if $ECHO "$sys_lib_search_path_spec" | $GREP ';[c-zC-Z]:/' >/dev/null; then - # It is most probably a Windows format PATH. - sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` - else - sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` - fi - # FIXME: find the short name or the path components, as spaces are - # common. (e.g. "Program Files" -> "PROGRA~1") - ;; - esac - - # DLL is installed to $(libdir)/../bin by postinstall_cmds - postinstall_cmds='base_file=`basename \${file}`~ - dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ - dldir=$destdir/`dirname \$dlpath`~ - test -d \$dldir || mkdir -p \$dldir~ - $install_prog $dir/$dlname \$dldir/$dlname' - postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ - dlpath=$dir/\$dldll~ - $RM \$dlpath' - shlibpath_overrides_runpath=yes - dynamic_linker='Win32 link.exe' - ;; - - *) - # Assume MSVC wrapper - library_names_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext} $libname.lib' - dynamic_linker='Win32 ld.exe' - ;; - esac - # FIXME: first we should search . and the directory the executable is in - shlibpath_var=PATH - ;; - -darwin* | rhapsody*) - dynamic_linker="$host_os dyld" - version_type=darwin - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${major}$shared_ext ${libname}$shared_ext' - soname_spec='${libname}${release}${major}$shared_ext' - shlibpath_overrides_runpath=yes - shlibpath_var=DYLD_LIBRARY_PATH - shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' - - sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/local/lib" - sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' - ;; - -dgux*) - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - ;; - -freebsd1*) - dynamic_linker=no - ;; - -freebsd* | dragonfly*) - # DragonFly does not have aout. When/if they implement a new - # versioning mechanism, adjust this. - if test -x /usr/bin/objformat; then - objformat=`/usr/bin/objformat` - else - case $host_os in - freebsd[123]*) objformat=aout ;; - *) objformat=elf ;; - esac - fi - version_type=freebsd-$objformat - case $version_type in - freebsd-elf*) - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' - need_version=no - need_lib_prefix=no - ;; - freebsd-*) - library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' - need_version=yes - ;; - esac - shlibpath_var=LD_LIBRARY_PATH - case $host_os in - freebsd2*) - shlibpath_overrides_runpath=yes - ;; - freebsd3.[01]* | freebsdelf3.[01]*) - shlibpath_overrides_runpath=yes - hardcode_into_libs=yes - ;; - freebsd3.[2-9]* | freebsdelf3.[2-9]* | \ - freebsd4.[0-5] | freebsdelf4.[0-5] | freebsd4.1.1 | freebsdelf4.1.1) - shlibpath_overrides_runpath=no - hardcode_into_libs=yes - ;; - *) # from 4.6 on, and DragonFly - shlibpath_overrides_runpath=yes - hardcode_into_libs=yes - ;; - esac - ;; - -gnu*) - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - hardcode_into_libs=yes - ;; - -haiku*) - version_type=linux - need_lib_prefix=no - need_version=no - dynamic_linker="$host_os runtime_loader" - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LIBRARY_PATH - shlibpath_overrides_runpath=yes - sys_lib_dlsearch_path_spec='/boot/home/config/lib /boot/common/lib /boot/system/lib' - hardcode_into_libs=yes - ;; - -hpux9* | hpux10* | hpux11*) - # Give a soname corresponding to the major version so that dld.sl refuses to - # link against other versions. - version_type=sunos - need_lib_prefix=no - need_version=no - case $host_cpu in - ia64*) - shrext_cmds='.so' - hardcode_into_libs=yes - dynamic_linker="$host_os dld.so" - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - if test "X$HPUX_IA64_MODE" = X32; then - sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" - else - sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" - fi - sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec - ;; - hppa*64*) - shrext_cmds='.sl' - hardcode_into_libs=yes - dynamic_linker="$host_os dld.sl" - shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH - shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" - sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec - ;; - *) - shrext_cmds='.sl' - dynamic_linker="$host_os dld.sl" - shlibpath_var=SHLIB_PATH - shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - ;; - esac - # HP-UX runs *really* slowly unless shared libraries are mode 555, ... - postinstall_cmds='chmod 555 $lib' - # or fails outright, so override atomically: - install_override_mode=555 - ;; - -interix[3-9]*) - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=no - hardcode_into_libs=yes - ;; - -irix5* | irix6* | nonstopux*) - case $host_os in - nonstopux*) version_type=nonstopux ;; - *) - if test "$lt_cv_prog_gnu_ld" = yes; then - version_type=linux - else - version_type=irix - fi ;; - esac - need_lib_prefix=no - need_version=no - soname_spec='${libname}${release}${shared_ext}$major' - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' - case $host_os in - irix5* | nonstopux*) - libsuff= shlibsuff= - ;; - *) - case $LD in # libtool.m4 will add one of these switches to LD - *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") - libsuff= shlibsuff= libmagic=32-bit;; - *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") - libsuff=32 shlibsuff=N32 libmagic=N32;; - *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") - libsuff=64 shlibsuff=64 libmagic=64-bit;; - *) libsuff= shlibsuff= libmagic=never-match;; - esac - ;; - esac - shlibpath_var=LD_LIBRARY${shlibsuff}_PATH - shlibpath_overrides_runpath=no - sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" - sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" - hardcode_into_libs=yes - ;; - -# No shared lib support for Linux oldld, aout, or coff. -linux*oldld* | linux*aout* | linux*coff*) - dynamic_linker=no - ;; - -# This must be Linux ELF. -linux* | k*bsd*-gnu | kopensolaris*-gnu) - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=no - - # Some binutils ld are patched to set DT_RUNPATH - if ${lt_cv_shlibpath_overrides_runpath+:} false; then : - $as_echo_n "(cached) " >&6 -else - lt_cv_shlibpath_overrides_runpath=no - save_LDFLAGS=$LDFLAGS - save_libdir=$libdir - eval "libdir=/foo; wl=\"$lt_prog_compiler_wl\"; \ - LDFLAGS=\"\$LDFLAGS $hardcode_libdir_flag_spec\"" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - if ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep "RUNPATH.*$libdir" >/dev/null; then : - lt_cv_shlibpath_overrides_runpath=yes -fi -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext - LDFLAGS=$save_LDFLAGS - libdir=$save_libdir - -fi - - shlibpath_overrides_runpath=$lt_cv_shlibpath_overrides_runpath - - # This implies no fast_install, which is unacceptable. - # Some rework will be needed to allow for fast_install - # before this can be enabled. - hardcode_into_libs=yes - - # Append ld.so.conf contents to the search path - if test -f /etc/ld.so.conf; then - lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/"//g;/^$/d' | tr '\n' ' '` - sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" - fi - - # We used to test for /lib/ld.so.1 and disable shared libraries on - # powerpc, because MkLinux only supported shared libraries with the - # GNU dynamic linker. Since this was broken with cross compilers, - # most powerpc-linux boxes support dynamic linking these days and - # people can always --disable-shared, the test was removed, and we - # assume the GNU/Linux dynamic linker is in use. - dynamic_linker='GNU/Linux ld.so' - ;; - -netbsd*) - version_type=sunos - need_lib_prefix=no - need_version=no - if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' - finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' - dynamic_linker='NetBSD (a.out) ld.so' - else - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - dynamic_linker='NetBSD ld.elf_so' - fi - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes - hardcode_into_libs=yes - ;; - -newsos6) - version_type=linux - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes - ;; - -*nto* | *qnx*) - version_type=qnx - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=no - hardcode_into_libs=yes - dynamic_linker='ldqnx.so' - ;; - -openbsd*) - version_type=sunos - sys_lib_dlsearch_path_spec="/usr/lib" - need_lib_prefix=no - # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. - case $host_os in - openbsd3.3 | openbsd3.3.*) need_version=yes ;; - *) need_version=no ;; - esac - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' - finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' - shlibpath_var=LD_LIBRARY_PATH - if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then - case $host_os in - openbsd2.[89] | openbsd2.[89].*) - shlibpath_overrides_runpath=no - ;; - *) - shlibpath_overrides_runpath=yes - ;; - esac - else - shlibpath_overrides_runpath=yes - fi - ;; - -os2*) - libname_spec='$name' - shrext_cmds=".dll" - need_lib_prefix=no - library_names_spec='$libname${shared_ext} $libname.a' - dynamic_linker='OS/2 ld.exe' - shlibpath_var=LIBPATH - ;; - -osf3* | osf4* | osf5*) - version_type=osf - need_lib_prefix=no - need_version=no - soname_spec='${libname}${release}${shared_ext}$major' - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - shlibpath_var=LD_LIBRARY_PATH - sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" - sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" - ;; - -rdos*) - dynamic_linker=no - ;; - -solaris*) - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes - hardcode_into_libs=yes - # ldd complains unless libraries are executable - postinstall_cmds='chmod +x $lib' - ;; - -sunos4*) - version_type=sunos - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' - finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes - if test "$with_gnu_ld" = yes; then - need_lib_prefix=no - fi - need_version=yes - ;; - -sysv4 | sysv4.3*) - version_type=linux - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - case $host_vendor in - sni) - shlibpath_overrides_runpath=no - need_lib_prefix=no - runpath_var=LD_RUN_PATH - ;; - siemens) - need_lib_prefix=no - ;; - motorola) - need_lib_prefix=no - need_version=no - shlibpath_overrides_runpath=no - sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' - ;; - esac - ;; - -sysv4*MP*) - if test -d /usr/nec ;then - version_type=linux - library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' - soname_spec='$libname${shared_ext}.$major' - shlibpath_var=LD_LIBRARY_PATH - fi - ;; - -sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) - version_type=freebsd-elf - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes - hardcode_into_libs=yes - if test "$with_gnu_ld" = yes; then - sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' - else - sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' - case $host_os in - sco3.2v5*) - sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" - ;; - esac - fi - sys_lib_dlsearch_path_spec='/usr/lib' - ;; - -tpf*) - # TPF is a cross-target only. Preferred cross-host = GNU/Linux. - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=no - hardcode_into_libs=yes - ;; - -uts4*) - version_type=linux - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - ;; - -*) - dynamic_linker=no - ;; -esac -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $dynamic_linker" >&5 -$as_echo "$dynamic_linker" >&6; } -test "$dynamic_linker" = no && can_build_shared=no - -variables_saved_for_relink="PATH $shlibpath_var $runpath_var" -if test "$GCC" = yes; then - variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" -fi - -if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then - sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" -fi -if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then - sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec" -fi - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to hardcode library paths into programs" >&5 -$as_echo_n "checking how to hardcode library paths into programs... " >&6; } -hardcode_action= -if test -n "$hardcode_libdir_flag_spec" || - test -n "$runpath_var" || - test "X$hardcode_automatic" = "Xyes" ; then - - # We can hardcode non-existent directories. - if test "$hardcode_direct" != no && - # If the only mechanism to avoid hardcoding is shlibpath_var, we - # have to relink, otherwise we might link with an installed library - # when we should be linking with a yet-to-be-installed one - ## test "$_LT_TAGVAR(hardcode_shlibpath_var, )" != no && - test "$hardcode_minus_L" != no; then - # Linking always hardcodes the temporary library directory. - hardcode_action=relink - else - # We can link without hardcoding, and we can hardcode nonexisting dirs. - hardcode_action=immediate - fi -else - # We cannot hardcode anything, or else we can only hardcode existing - # directories. - hardcode_action=unsupported -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $hardcode_action" >&5 -$as_echo "$hardcode_action" >&6; } - -if test "$hardcode_action" = relink || - test "$inherit_rpath" = yes; then - # Fast installation is not supported - enable_fast_install=no -elif test "$shlibpath_overrides_runpath" = yes || - test "$enable_shared" = no; then - # Fast installation is not necessary - enable_fast_install=needless -fi - - - - - - - if test "x$enable_dlopen" != xyes; then - enable_dlopen=unknown - enable_dlopen_self=unknown - enable_dlopen_self_static=unknown -else - lt_cv_dlopen=no - lt_cv_dlopen_libs= - - case $host_os in - beos*) - lt_cv_dlopen="load_add_on" - lt_cv_dlopen_libs= - lt_cv_dlopen_self=yes - ;; - - mingw* | pw32* | cegcc*) - lt_cv_dlopen="LoadLibrary" - lt_cv_dlopen_libs= - ;; - - cygwin*) - lt_cv_dlopen="dlopen" - lt_cv_dlopen_libs= - ;; - - darwin*) - # if libdl is installed we need to link against it - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5 -$as_echo_n "checking for dlopen in -ldl... " >&6; } -if ${ac_cv_lib_dl_dlopen+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-ldl $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif -char dlopen (); -int -main () -{ -return dlopen (); - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - ac_cv_lib_dl_dlopen=yes -else - ac_cv_lib_dl_dlopen=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen" >&5 -$as_echo "$ac_cv_lib_dl_dlopen" >&6; } -if test "x$ac_cv_lib_dl_dlopen" = xyes; then : - lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl" -else - - lt_cv_dlopen="dyld" - lt_cv_dlopen_libs= - lt_cv_dlopen_self=yes - -fi - - ;; - - *) - ac_fn_c_check_func "$LINENO" "shl_load" "ac_cv_func_shl_load" -if test "x$ac_cv_func_shl_load" = xyes; then : - lt_cv_dlopen="shl_load" -else - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for shl_load in -ldld" >&5 -$as_echo_n "checking for shl_load in -ldld... " >&6; } -if ${ac_cv_lib_dld_shl_load+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-ldld $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif -char shl_load (); -int -main () -{ -return shl_load (); - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - ac_cv_lib_dld_shl_load=yes -else - ac_cv_lib_dld_shl_load=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dld_shl_load" >&5 -$as_echo "$ac_cv_lib_dld_shl_load" >&6; } -if test "x$ac_cv_lib_dld_shl_load" = xyes; then : - lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-ldld" -else - ac_fn_c_check_func "$LINENO" "dlopen" "ac_cv_func_dlopen" -if test "x$ac_cv_func_dlopen" = xyes; then : - lt_cv_dlopen="dlopen" -else - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5 -$as_echo_n "checking for dlopen in -ldl... " >&6; } -if ${ac_cv_lib_dl_dlopen+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-ldl $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif -char dlopen (); -int -main () -{ -return dlopen (); - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - ac_cv_lib_dl_dlopen=yes -else - ac_cv_lib_dl_dlopen=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen" >&5 -$as_echo "$ac_cv_lib_dl_dlopen" >&6; } -if test "x$ac_cv_lib_dl_dlopen" = xyes; then : - lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl" -else - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -lsvld" >&5 -$as_echo_n "checking for dlopen in -lsvld... " >&6; } -if ${ac_cv_lib_svld_dlopen+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-lsvld $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif -char dlopen (); -int -main () -{ -return dlopen (); - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - ac_cv_lib_svld_dlopen=yes -else - ac_cv_lib_svld_dlopen=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_svld_dlopen" >&5 -$as_echo "$ac_cv_lib_svld_dlopen" >&6; } -if test "x$ac_cv_lib_svld_dlopen" = xyes; then : - lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld" -else - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dld_link in -ldld" >&5 -$as_echo_n "checking for dld_link in -ldld... " >&6; } -if ${ac_cv_lib_dld_dld_link+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-ldld $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif -char dld_link (); -int -main () -{ -return dld_link (); - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - ac_cv_lib_dld_dld_link=yes -else - ac_cv_lib_dld_dld_link=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dld_dld_link" >&5 -$as_echo "$ac_cv_lib_dld_dld_link" >&6; } -if test "x$ac_cv_lib_dld_dld_link" = xyes; then : - lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-ldld" -fi - - -fi - - -fi - - -fi - - -fi - - -fi - - ;; - esac - - if test "x$lt_cv_dlopen" != xno; then - enable_dlopen=yes - else - enable_dlopen=no - fi - - case $lt_cv_dlopen in - dlopen) - save_CPPFLAGS="$CPPFLAGS" - test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" - - save_LDFLAGS="$LDFLAGS" - wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\" - - save_LIBS="$LIBS" - LIBS="$lt_cv_dlopen_libs $LIBS" - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether a program can dlopen itself" >&5 -$as_echo_n "checking whether a program can dlopen itself... " >&6; } -if ${lt_cv_dlopen_self+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test "$cross_compiling" = yes; then : - lt_cv_dlopen_self=cross -else - lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 - lt_status=$lt_dlunknown - cat > conftest.$ac_ext <<_LT_EOF -#line $LINENO "configure" -#include "confdefs.h" - -#if HAVE_DLFCN_H -#include -#endif - -#include - -#ifdef RTLD_GLOBAL -# define LT_DLGLOBAL RTLD_GLOBAL -#else -# ifdef DL_GLOBAL -# define LT_DLGLOBAL DL_GLOBAL -# else -# define LT_DLGLOBAL 0 -# endif -#endif - -/* We may have to define LT_DLLAZY_OR_NOW in the command line if we - find out it does not work in some platform. */ -#ifndef LT_DLLAZY_OR_NOW -# ifdef RTLD_LAZY -# define LT_DLLAZY_OR_NOW RTLD_LAZY -# else -# ifdef DL_LAZY -# define LT_DLLAZY_OR_NOW DL_LAZY -# else -# ifdef RTLD_NOW -# define LT_DLLAZY_OR_NOW RTLD_NOW -# else -# ifdef DL_NOW -# define LT_DLLAZY_OR_NOW DL_NOW -# else -# define LT_DLLAZY_OR_NOW 0 -# endif -# endif -# endif -# endif -#endif - -/* When -fvisbility=hidden is used, assume the code has been annotated - correspondingly for the symbols needed. */ -#if defined(__GNUC__) && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) -int fnord () __attribute__((visibility("default"))); -#endif - -int fnord () { return 42; } -int main () -{ - void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); - int status = $lt_dlunknown; - - if (self) - { - if (dlsym (self,"fnord")) status = $lt_dlno_uscore; - else - { - if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; - else puts (dlerror ()); - } - /* dlclose (self); */ - } - else - puts (dlerror ()); - - return status; -} -_LT_EOF - if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 - (eval $ac_link) 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } && test -s conftest${ac_exeext} 2>/dev/null; then - (./conftest; exit; ) >&5 2>/dev/null - lt_status=$? - case x$lt_status in - x$lt_dlno_uscore) lt_cv_dlopen_self=yes ;; - x$lt_dlneed_uscore) lt_cv_dlopen_self=yes ;; - x$lt_dlunknown|x*) lt_cv_dlopen_self=no ;; - esac - else : - # compilation failed - lt_cv_dlopen_self=no - fi -fi -rm -fr conftest* - - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_dlopen_self" >&5 -$as_echo "$lt_cv_dlopen_self" >&6; } - - if test "x$lt_cv_dlopen_self" = xyes; then - wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\" - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether a statically linked program can dlopen itself" >&5 -$as_echo_n "checking whether a statically linked program can dlopen itself... " >&6; } -if ${lt_cv_dlopen_self_static+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test "$cross_compiling" = yes; then : - lt_cv_dlopen_self_static=cross -else - lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 - lt_status=$lt_dlunknown - cat > conftest.$ac_ext <<_LT_EOF -#line $LINENO "configure" -#include "confdefs.h" - -#if HAVE_DLFCN_H -#include -#endif - -#include - -#ifdef RTLD_GLOBAL -# define LT_DLGLOBAL RTLD_GLOBAL -#else -# ifdef DL_GLOBAL -# define LT_DLGLOBAL DL_GLOBAL -# else -# define LT_DLGLOBAL 0 -# endif -#endif - -/* We may have to define LT_DLLAZY_OR_NOW in the command line if we - find out it does not work in some platform. */ -#ifndef LT_DLLAZY_OR_NOW -# ifdef RTLD_LAZY -# define LT_DLLAZY_OR_NOW RTLD_LAZY -# else -# ifdef DL_LAZY -# define LT_DLLAZY_OR_NOW DL_LAZY -# else -# ifdef RTLD_NOW -# define LT_DLLAZY_OR_NOW RTLD_NOW -# else -# ifdef DL_NOW -# define LT_DLLAZY_OR_NOW DL_NOW -# else -# define LT_DLLAZY_OR_NOW 0 -# endif -# endif -# endif -# endif -#endif - -/* When -fvisbility=hidden is used, assume the code has been annotated - correspondingly for the symbols needed. */ -#if defined(__GNUC__) && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) -int fnord () __attribute__((visibility("default"))); -#endif - -int fnord () { return 42; } -int main () -{ - void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); - int status = $lt_dlunknown; - - if (self) - { - if (dlsym (self,"fnord")) status = $lt_dlno_uscore; - else - { - if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; - else puts (dlerror ()); - } - /* dlclose (self); */ - } - else - puts (dlerror ()); - - return status; -} -_LT_EOF - if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 - (eval $ac_link) 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } && test -s conftest${ac_exeext} 2>/dev/null; then - (./conftest; exit; ) >&5 2>/dev/null - lt_status=$? - case x$lt_status in - x$lt_dlno_uscore) lt_cv_dlopen_self_static=yes ;; - x$lt_dlneed_uscore) lt_cv_dlopen_self_static=yes ;; - x$lt_dlunknown|x*) lt_cv_dlopen_self_static=no ;; - esac - else : - # compilation failed - lt_cv_dlopen_self_static=no - fi -fi -rm -fr conftest* - - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_dlopen_self_static" >&5 -$as_echo "$lt_cv_dlopen_self_static" >&6; } - fi - - CPPFLAGS="$save_CPPFLAGS" - LDFLAGS="$save_LDFLAGS" - LIBS="$save_LIBS" - ;; - esac - - case $lt_cv_dlopen_self in - yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;; - *) enable_dlopen_self=unknown ;; - esac - - case $lt_cv_dlopen_self_static in - yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;; - *) enable_dlopen_self_static=unknown ;; - esac -fi - - - - - - - - - - - - - - - - - -striplib= -old_striplib= -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether stripping libraries is possible" >&5 -$as_echo_n "checking whether stripping libraries is possible... " >&6; } -if test -n "$STRIP" && $STRIP -V 2>&1 | $GREP "GNU strip" >/dev/null; then - test -z "$old_striplib" && old_striplib="$STRIP --strip-debug" - test -z "$striplib" && striplib="$STRIP --strip-unneeded" - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } -else -# FIXME - insert some real tests, host_os isn't really good enough - case $host_os in - darwin*) - if test -n "$STRIP" ; then - striplib="$STRIP -x" - old_striplib="$STRIP -S" - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } - else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - fi - ;; - *) - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - ;; - esac -fi - - - - - - - - - - - - - # Report which library types will actually be built - { $as_echo "$as_me:${as_lineno-$LINENO}: checking if libtool supports shared libraries" >&5 -$as_echo_n "checking if libtool supports shared libraries... " >&6; } - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $can_build_shared" >&5 -$as_echo "$can_build_shared" >&6; } - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build shared libraries" >&5 -$as_echo_n "checking whether to build shared libraries... " >&6; } - test "$can_build_shared" = "no" && enable_shared=no - - # On AIX, shared libraries and static libraries use the same namespace, and - # are all built from PIC. - case $host_os in - aix3*) - test "$enable_shared" = yes && enable_static=no - if test -n "$RANLIB"; then - archive_cmds="$archive_cmds~\$RANLIB \$lib" - postinstall_cmds='$RANLIB $lib' - fi - ;; - - aix[4-9]*) - if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then - test "$enable_shared" = yes && enable_static=no - fi - ;; - esac - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_shared" >&5 -$as_echo "$enable_shared" >&6; } - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build static libraries" >&5 -$as_echo_n "checking whether to build static libraries... " >&6; } - # Make sure either enable_shared or enable_static is yes. - test "$enable_shared" = yes || enable_static=yes - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_static" >&5 -$as_echo "$enable_static" >&6; } - - - - -fi -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu - -CC="$lt_save_CC" - - - - - - - - - - - - - - ac_config_commands="$ac_config_commands libtool" - - - - -# Only expand once: - - - -# Checks for libraries. - - if test "X$prefix" = "XNONE"; then - acl_final_prefix="$ac_default_prefix" - else - acl_final_prefix="$prefix" - fi - if test "X$exec_prefix" = "XNONE"; then - acl_final_exec_prefix='${prefix}' - else - acl_final_exec_prefix="$exec_prefix" - fi - acl_save_prefix="$prefix" - prefix="$acl_final_prefix" - eval acl_final_exec_prefix=\"$acl_final_exec_prefix\" - prefix="$acl_save_prefix" - - -# Check whether --with-gnu-ld was given. -if test "${with_gnu_ld+set}" = set; then : - withval=$with_gnu_ld; test "$withval" = no || with_gnu_ld=yes -else - with_gnu_ld=no -fi - -# Prepare PATH_SEPARATOR. -# The user is always right. -if test "${PATH_SEPARATOR+set}" != set; then - echo "#! /bin/sh" >conf$$.sh - echo "exit 0" >>conf$$.sh - chmod +x conf$$.sh - if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then - PATH_SEPARATOR=';' - else - PATH_SEPARATOR=: - fi - rm -f conf$$.sh -fi -ac_prog=ld -if test "$GCC" = yes; then - # Check if gcc -print-prog-name=ld gives a path. - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld used by GCC" >&5 -$as_echo_n "checking for ld used by GCC... " >&6; } - case $host in - *-*-mingw*) - # gcc leaves a trailing carriage return which upsets mingw - ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; - *) - ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; - esac - case $ac_prog in - # Accept absolute paths. - [\\/]* | [A-Za-z]:[\\/]*) - re_direlt='/[^/][^/]*/\.\./' - # Canonicalize the path of ld - ac_prog=`echo $ac_prog| sed 's%\\\\%/%g'` - while echo $ac_prog | grep "$re_direlt" > /dev/null 2>&1; do - ac_prog=`echo $ac_prog| sed "s%$re_direlt%/%"` - done - test -z "$LD" && LD="$ac_prog" - ;; - "") - # If it fails, then pretend we aren't using GCC. - ac_prog=ld - ;; - *) - # If it is relative, then search for the first ld in PATH. - with_gnu_ld=unknown - ;; - esac -elif test "$with_gnu_ld" = yes; then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU ld" >&5 -$as_echo_n "checking for GNU ld... " >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for non-GNU ld" >&5 -$as_echo_n "checking for non-GNU ld... " >&6; } -fi -if ${acl_cv_path_LD+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -z "$LD"; then - IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}${PATH_SEPARATOR-:}" - for ac_dir in $PATH; do - test -z "$ac_dir" && ac_dir=. - if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then - acl_cv_path_LD="$ac_dir/$ac_prog" - # Check to see if the program is GNU ld. I'd rather use --version, - # but apparently some GNU ld's only accept -v. - # Break only if it was the GNU/non-GNU ld that we prefer. - case `"$acl_cv_path_LD" -v 2>&1 < /dev/null` in - *GNU* | *'with BFD'*) - test "$with_gnu_ld" != no && break ;; - *) - test "$with_gnu_ld" != yes && break ;; - esac - fi - done - IFS="$ac_save_ifs" -else - acl_cv_path_LD="$LD" # Let the user override the test with a path. -fi -fi - -LD="$acl_cv_path_LD" -if test -n "$LD"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LD" >&5 -$as_echo "$LD" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi -test -z "$LD" && as_fn_error $? "no acceptable ld found in \$PATH" "$LINENO" 5 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if the linker ($LD) is GNU ld" >&5 -$as_echo_n "checking if the linker ($LD) is GNU ld... " >&6; } -if ${acl_cv_prog_gnu_ld+:} false; then : - $as_echo_n "(cached) " >&6 -else - # I'd rather use --version here, but apparently some GNU ld's only accept -v. -case `$LD -v 2>&1 &5 -$as_echo "$acl_cv_prog_gnu_ld" >&6; } -with_gnu_ld=$acl_cv_prog_gnu_ld - - - - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for shared library run path origin" >&5 -$as_echo_n "checking for shared library run path origin... " >&6; } -if ${acl_cv_rpath+:} false; then : - $as_echo_n "(cached) " >&6 -else - - CC="$CC" GCC="$GCC" LDFLAGS="$LDFLAGS" LD="$LD" with_gnu_ld="$with_gnu_ld" \ - ${CONFIG_SHELL-/bin/sh} "$ac_aux_dir/config.rpath" "$host" > conftest.sh - . ./conftest.sh - rm -f ./conftest.sh - acl_cv_rpath=done - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $acl_cv_rpath" >&5 -$as_echo "$acl_cv_rpath" >&6; } - wl="$acl_cv_wl" - acl_libext="$acl_cv_libext" - acl_shlibext="$acl_cv_shlibext" - acl_libname_spec="$acl_cv_libname_spec" - acl_library_names_spec="$acl_cv_library_names_spec" - acl_hardcode_libdir_flag_spec="$acl_cv_hardcode_libdir_flag_spec" - acl_hardcode_libdir_separator="$acl_cv_hardcode_libdir_separator" - acl_hardcode_direct="$acl_cv_hardcode_direct" - acl_hardcode_minus_L="$acl_cv_hardcode_minus_L" - # Check whether --enable-rpath was given. -if test "${enable_rpath+set}" = set; then : - enableval=$enable_rpath; : -else - enable_rpath=yes -fi - - - - - acl_libdirstem=lib - acl_libdirstem2= - case "$host_os" in - solaris*) - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for 64-bit host" >&5 -$as_echo_n "checking for 64-bit host... " >&6; } -if ${gl_cv_solaris_64bit+:} false; then : - $as_echo_n "(cached) " >&6 -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -#ifdef _LP64 -sixtyfour bits -#endif - -_ACEOF -if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | - $EGREP "sixtyfour bits" >/dev/null 2>&1; then : - gl_cv_solaris_64bit=yes -else - gl_cv_solaris_64bit=no -fi -rm -f conftest* - - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_solaris_64bit" >&5 -$as_echo "$gl_cv_solaris_64bit" >&6; } - if test $gl_cv_solaris_64bit = yes; then - acl_libdirstem=lib/64 - case "$host_cpu" in - sparc*) acl_libdirstem2=lib/sparcv9 ;; - i*86 | x86_64) acl_libdirstem2=lib/amd64 ;; - esac - fi - ;; - *) - searchpath=`(LC_ALL=C $CC -print-search-dirs) 2>/dev/null | sed -n -e 's,^libraries: ,,p' | sed -e 's,^=,,'` - if test -n "$searchpath"; then - acl_save_IFS="${IFS= }"; IFS=":" - for searchdir in $searchpath; do - if test -d "$searchdir"; then - case "$searchdir" in - */lib64/ | */lib64 ) acl_libdirstem=lib64 ;; - */../ | */.. ) - # Better ignore directories of this form. They are misleading. - ;; - *) searchdir=`cd "$searchdir" && pwd` - case "$searchdir" in - */lib64 ) acl_libdirstem=lib64 ;; - esac ;; - esac - fi - done - IFS="$acl_save_IFS" - fi - ;; - esac - test -n "$acl_libdirstem2" || acl_libdirstem2="$acl_libdirstem" - - - - - - - - - - - - - use_additional=yes - - acl_save_prefix="$prefix" - prefix="$acl_final_prefix" - acl_save_exec_prefix="$exec_prefix" - exec_prefix="$acl_final_exec_prefix" - - eval additional_includedir=\"$includedir\" - eval additional_libdir=\"$libdir\" - - exec_prefix="$acl_save_exec_prefix" - prefix="$acl_save_prefix" - - -# Check whether --with-libiconv-prefix was given. -if test "${with_libiconv_prefix+set}" = set; then : - withval=$with_libiconv_prefix; - if test "X$withval" = "Xno"; then - use_additional=no - else - if test "X$withval" = "X"; then - - acl_save_prefix="$prefix" - prefix="$acl_final_prefix" - acl_save_exec_prefix="$exec_prefix" - exec_prefix="$acl_final_exec_prefix" - - eval additional_includedir=\"$includedir\" - eval additional_libdir=\"$libdir\" - - exec_prefix="$acl_save_exec_prefix" - prefix="$acl_save_prefix" - - else - additional_includedir="$withval/include" - additional_libdir="$withval/$acl_libdirstem" - if test "$acl_libdirstem2" != "$acl_libdirstem" \ - && ! test -d "$withval/$acl_libdirstem"; then - additional_libdir="$withval/$acl_libdirstem2" - fi - fi - fi - -fi - - LIBICONV= - LTLIBICONV= - INCICONV= - LIBICONV_PREFIX= - HAVE_LIBICONV= - rpathdirs= - ltrpathdirs= - names_already_handled= - names_next_round='iconv ' - while test -n "$names_next_round"; do - names_this_round="$names_next_round" - names_next_round= - for name in $names_this_round; do - already_handled= - for n in $names_already_handled; do - if test "$n" = "$name"; then - already_handled=yes - break - fi - done - if test -z "$already_handled"; then - names_already_handled="$names_already_handled $name" - uppername=`echo "$name" | sed -e 'y|abcdefghijklmnopqrstuvwxyz./-|ABCDEFGHIJKLMNOPQRSTUVWXYZ___|'` - eval value=\"\$HAVE_LIB$uppername\" - if test -n "$value"; then - if test "$value" = yes; then - eval value=\"\$LIB$uppername\" - test -z "$value" || LIBICONV="${LIBICONV}${LIBICONV:+ }$value" - eval value=\"\$LTLIB$uppername\" - test -z "$value" || LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }$value" - else - : - fi - else - found_dir= - found_la= - found_so= - found_a= - eval libname=\"$acl_libname_spec\" # typically: libname=lib$name - if test -n "$acl_shlibext"; then - shrext=".$acl_shlibext" # typically: shrext=.so - else - shrext= - fi - if test $use_additional = yes; then - dir="$additional_libdir" - if test -n "$acl_shlibext"; then - if test -f "$dir/$libname$shrext"; then - found_dir="$dir" - found_so="$dir/$libname$shrext" - else - if test "$acl_library_names_spec" = '$libname$shrext$versuffix'; then - ver=`(cd "$dir" && \ - for f in "$libname$shrext".*; do echo "$f"; done \ - | sed -e "s,^$libname$shrext\\\\.,," \ - | sort -t '.' -n -r -k1,1 -k2,2 -k3,3 -k4,4 -k5,5 \ - | sed 1q ) 2>/dev/null` - if test -n "$ver" && test -f "$dir/$libname$shrext.$ver"; then - found_dir="$dir" - found_so="$dir/$libname$shrext.$ver" - fi - else - eval library_names=\"$acl_library_names_spec\" - for f in $library_names; do - if test -f "$dir/$f"; then - found_dir="$dir" - found_so="$dir/$f" - break - fi - done - fi - fi - fi - if test "X$found_dir" = "X"; then - if test -f "$dir/$libname.$acl_libext"; then - found_dir="$dir" - found_a="$dir/$libname.$acl_libext" - fi - fi - if test "X$found_dir" != "X"; then - if test -f "$dir/$libname.la"; then - found_la="$dir/$libname.la" - fi - fi - fi - if test "X$found_dir" = "X"; then - for x in $LDFLAGS $LTLIBICONV; do - - acl_save_prefix="$prefix" - prefix="$acl_final_prefix" - acl_save_exec_prefix="$exec_prefix" - exec_prefix="$acl_final_exec_prefix" - eval x=\"$x\" - exec_prefix="$acl_save_exec_prefix" - prefix="$acl_save_prefix" - - case "$x" in - -L*) - dir=`echo "X$x" | sed -e 's/^X-L//'` - if test -n "$acl_shlibext"; then - if test -f "$dir/$libname$shrext"; then - found_dir="$dir" - found_so="$dir/$libname$shrext" - else - if test "$acl_library_names_spec" = '$libname$shrext$versuffix'; then - ver=`(cd "$dir" && \ - for f in "$libname$shrext".*; do echo "$f"; done \ - | sed -e "s,^$libname$shrext\\\\.,," \ - | sort -t '.' -n -r -k1,1 -k2,2 -k3,3 -k4,4 -k5,5 \ - | sed 1q ) 2>/dev/null` - if test -n "$ver" && test -f "$dir/$libname$shrext.$ver"; then - found_dir="$dir" - found_so="$dir/$libname$shrext.$ver" - fi - else - eval library_names=\"$acl_library_names_spec\" - for f in $library_names; do - if test -f "$dir/$f"; then - found_dir="$dir" - found_so="$dir/$f" - break - fi - done - fi - fi - fi - if test "X$found_dir" = "X"; then - if test -f "$dir/$libname.$acl_libext"; then - found_dir="$dir" - found_a="$dir/$libname.$acl_libext" - fi - fi - if test "X$found_dir" != "X"; then - if test -f "$dir/$libname.la"; then - found_la="$dir/$libname.la" - fi - fi - ;; - esac - if test "X$found_dir" != "X"; then - break - fi - done - fi - if test "X$found_dir" != "X"; then - LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }-L$found_dir -l$name" - if test "X$found_so" != "X"; then - if test "$enable_rpath" = no \ - || test "X$found_dir" = "X/usr/$acl_libdirstem" \ - || test "X$found_dir" = "X/usr/$acl_libdirstem2"; then - LIBICONV="${LIBICONV}${LIBICONV:+ }$found_so" - else - haveit= - for x in $ltrpathdirs; do - if test "X$x" = "X$found_dir"; then - haveit=yes - break - fi - done - if test -z "$haveit"; then - ltrpathdirs="$ltrpathdirs $found_dir" - fi - if test "$acl_hardcode_direct" = yes; then - LIBICONV="${LIBICONV}${LIBICONV:+ }$found_so" - else - if test -n "$acl_hardcode_libdir_flag_spec" && test "$acl_hardcode_minus_L" = no; then - LIBICONV="${LIBICONV}${LIBICONV:+ }$found_so" - haveit= - for x in $rpathdirs; do - if test "X$x" = "X$found_dir"; then - haveit=yes - break - fi - done - if test -z "$haveit"; then - rpathdirs="$rpathdirs $found_dir" - fi - else - haveit= - for x in $LDFLAGS $LIBICONV; do - - acl_save_prefix="$prefix" - prefix="$acl_final_prefix" - acl_save_exec_prefix="$exec_prefix" - exec_prefix="$acl_final_exec_prefix" - eval x=\"$x\" - exec_prefix="$acl_save_exec_prefix" - prefix="$acl_save_prefix" - - if test "X$x" = "X-L$found_dir"; then - haveit=yes - break - fi - done - if test -z "$haveit"; then - LIBICONV="${LIBICONV}${LIBICONV:+ }-L$found_dir" - fi - if test "$acl_hardcode_minus_L" != no; then - LIBICONV="${LIBICONV}${LIBICONV:+ }$found_so" - else - LIBICONV="${LIBICONV}${LIBICONV:+ }-l$name" - fi - fi - fi - fi - else - if test "X$found_a" != "X"; then - LIBICONV="${LIBICONV}${LIBICONV:+ }$found_a" - else - LIBICONV="${LIBICONV}${LIBICONV:+ }-L$found_dir -l$name" - fi - fi - additional_includedir= - case "$found_dir" in - */$acl_libdirstem | */$acl_libdirstem/) - basedir=`echo "X$found_dir" | sed -e 's,^X,,' -e "s,/$acl_libdirstem/"'*$,,'` - if test "$name" = 'iconv'; then - LIBICONV_PREFIX="$basedir" - fi - additional_includedir="$basedir/include" - ;; - */$acl_libdirstem2 | */$acl_libdirstem2/) - basedir=`echo "X$found_dir" | sed -e 's,^X,,' -e "s,/$acl_libdirstem2/"'*$,,'` - if test "$name" = 'iconv'; then - LIBICONV_PREFIX="$basedir" - fi - additional_includedir="$basedir/include" - ;; - esac - if test "X$additional_includedir" != "X"; then - if test "X$additional_includedir" != "X/usr/include"; then - haveit= - if test "X$additional_includedir" = "X/usr/local/include"; then - if test -n "$GCC"; then - case $host_os in - linux* | gnu* | k*bsd*-gnu) haveit=yes;; - esac - fi - fi - if test -z "$haveit"; then - for x in $CPPFLAGS $INCICONV; do - - acl_save_prefix="$prefix" - prefix="$acl_final_prefix" - acl_save_exec_prefix="$exec_prefix" - exec_prefix="$acl_final_exec_prefix" - eval x=\"$x\" - exec_prefix="$acl_save_exec_prefix" - prefix="$acl_save_prefix" - - if test "X$x" = "X-I$additional_includedir"; then - haveit=yes - break - fi - done - if test -z "$haveit"; then - if test -d "$additional_includedir"; then - INCICONV="${INCICONV}${INCICONV:+ }-I$additional_includedir" - fi - fi - fi - fi - fi - if test -n "$found_la"; then - save_libdir="$libdir" - case "$found_la" in - */* | *\\*) . "$found_la" ;; - *) . "./$found_la" ;; - esac - libdir="$save_libdir" - for dep in $dependency_libs; do - case "$dep" in - -L*) - additional_libdir=`echo "X$dep" | sed -e 's/^X-L//'` - if test "X$additional_libdir" != "X/usr/$acl_libdirstem" \ - && test "X$additional_libdir" != "X/usr/$acl_libdirstem2"; then - haveit= - if test "X$additional_libdir" = "X/usr/local/$acl_libdirstem" \ - || test "X$additional_libdir" = "X/usr/local/$acl_libdirstem2"; then - if test -n "$GCC"; then - case $host_os in - linux* | gnu* | k*bsd*-gnu) haveit=yes;; - esac - fi - fi - if test -z "$haveit"; then - haveit= - for x in $LDFLAGS $LIBICONV; do - - acl_save_prefix="$prefix" - prefix="$acl_final_prefix" - acl_save_exec_prefix="$exec_prefix" - exec_prefix="$acl_final_exec_prefix" - eval x=\"$x\" - exec_prefix="$acl_save_exec_prefix" - prefix="$acl_save_prefix" - - if test "X$x" = "X-L$additional_libdir"; then - haveit=yes - break - fi - done - if test -z "$haveit"; then - if test -d "$additional_libdir"; then - LIBICONV="${LIBICONV}${LIBICONV:+ }-L$additional_libdir" - fi - fi - haveit= - for x in $LDFLAGS $LTLIBICONV; do - - acl_save_prefix="$prefix" - prefix="$acl_final_prefix" - acl_save_exec_prefix="$exec_prefix" - exec_prefix="$acl_final_exec_prefix" - eval x=\"$x\" - exec_prefix="$acl_save_exec_prefix" - prefix="$acl_save_prefix" - - if test "X$x" = "X-L$additional_libdir"; then - haveit=yes - break - fi - done - if test -z "$haveit"; then - if test -d "$additional_libdir"; then - LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }-L$additional_libdir" - fi - fi - fi - fi - ;; - -R*) - dir=`echo "X$dep" | sed -e 's/^X-R//'` - if test "$enable_rpath" != no; then - haveit= - for x in $rpathdirs; do - if test "X$x" = "X$dir"; then - haveit=yes - break - fi - done - if test -z "$haveit"; then - rpathdirs="$rpathdirs $dir" - fi - haveit= - for x in $ltrpathdirs; do - if test "X$x" = "X$dir"; then - haveit=yes - break - fi - done - if test -z "$haveit"; then - ltrpathdirs="$ltrpathdirs $dir" - fi - fi - ;; - -l*) - names_next_round="$names_next_round "`echo "X$dep" | sed -e 's/^X-l//'` - ;; - *.la) - names_next_round="$names_next_round "`echo "X$dep" | sed -e 's,^X.*/,,' -e 's,^lib,,' -e 's,\.la$,,'` - ;; - *) - LIBICONV="${LIBICONV}${LIBICONV:+ }$dep" - LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }$dep" - ;; - esac - done - fi - else - LIBICONV="${LIBICONV}${LIBICONV:+ }-l$name" - LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }-l$name" - fi - fi - fi - done - done - if test "X$rpathdirs" != "X"; then - if test -n "$acl_hardcode_libdir_separator"; then - alldirs= - for found_dir in $rpathdirs; do - alldirs="${alldirs}${alldirs:+$acl_hardcode_libdir_separator}$found_dir" - done - acl_save_libdir="$libdir" - libdir="$alldirs" - eval flag=\"$acl_hardcode_libdir_flag_spec\" - libdir="$acl_save_libdir" - LIBICONV="${LIBICONV}${LIBICONV:+ }$flag" - else - for found_dir in $rpathdirs; do - acl_save_libdir="$libdir" - libdir="$found_dir" - eval flag=\"$acl_hardcode_libdir_flag_spec\" - libdir="$acl_save_libdir" - LIBICONV="${LIBICONV}${LIBICONV:+ }$flag" - done - fi - fi - if test "X$ltrpathdirs" != "X"; then - for found_dir in $ltrpathdirs; do - LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }-R$found_dir" - done - fi - - - - - - - - - - - - - am_save_CPPFLAGS="$CPPFLAGS" - - for element in $INCICONV; do - haveit= - for x in $CPPFLAGS; do - - acl_save_prefix="$prefix" - prefix="$acl_final_prefix" - acl_save_exec_prefix="$exec_prefix" - exec_prefix="$acl_final_exec_prefix" - eval x=\"$x\" - exec_prefix="$acl_save_exec_prefix" - prefix="$acl_save_prefix" - - if test "X$x" = "X$element"; then - haveit=yes - break - fi - done - if test -z "$haveit"; then - CPPFLAGS="${CPPFLAGS}${CPPFLAGS:+ }$element" - fi - done - - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for iconv" >&5 -$as_echo_n "checking for iconv... " >&6; } -if ${am_cv_func_iconv+:} false; then : - $as_echo_n "(cached) " >&6 -else - - am_cv_func_iconv="no, consider installing GNU libiconv" - am_cv_lib_iconv=no - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include -#include -int -main () -{ -iconv_t cd = iconv_open("",""); - iconv(cd,NULL,NULL,NULL,NULL); - iconv_close(cd); - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - am_cv_func_iconv=yes -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext - if test "$am_cv_func_iconv" != yes; then - am_save_LIBS="$LIBS" - LIBS="$LIBS $LIBICONV" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include -#include -int -main () -{ -iconv_t cd = iconv_open("",""); - iconv(cd,NULL,NULL,NULL,NULL); - iconv_close(cd); - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - am_cv_lib_iconv=yes - am_cv_func_iconv=yes -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext - LIBS="$am_save_LIBS" - fi - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_func_iconv" >&5 -$as_echo "$am_cv_func_iconv" >&6; } - if test "$am_cv_func_iconv" = yes; then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for working iconv" >&5 -$as_echo_n "checking for working iconv... " >&6; } -if ${am_cv_func_iconv_works+:} false; then : - $as_echo_n "(cached) " >&6 -else - - am_save_LIBS="$LIBS" - if test $am_cv_lib_iconv = yes; then - LIBS="$LIBS $LIBICONV" - fi - if test "$cross_compiling" = yes; then : - case "$host_os" in - aix* | hpux*) am_cv_func_iconv_works="guessing no" ;; - *) am_cv_func_iconv_works="guessing yes" ;; - esac -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -#include -#include -int main () -{ - /* Test against AIX 5.1 bug: Failures are not distinguishable from successful - returns. */ - { - iconv_t cd_utf8_to_88591 = iconv_open ("ISO8859-1", "UTF-8"); - if (cd_utf8_to_88591 != (iconv_t)(-1)) - { - static const char input[] = "\342\202\254"; /* EURO SIGN */ - char buf[10]; - const char *inptr = input; - size_t inbytesleft = strlen (input); - char *outptr = buf; - size_t outbytesleft = sizeof (buf); - size_t res = iconv (cd_utf8_to_88591, - (char **) &inptr, &inbytesleft, - &outptr, &outbytesleft); - if (res == 0) - return 1; - } - } - /* Test against Solaris 10 bug: Failures are not distinguishable from - successful returns. */ - { - iconv_t cd_ascii_to_88591 = iconv_open ("ISO8859-1", "646"); - if (cd_ascii_to_88591 != (iconv_t)(-1)) - { - static const char input[] = "\263"; - char buf[10]; - const char *inptr = input; - size_t inbytesleft = strlen (input); - char *outptr = buf; - size_t outbytesleft = sizeof (buf); - size_t res = iconv (cd_ascii_to_88591, - (char **) &inptr, &inbytesleft, - &outptr, &outbytesleft); - if (res == 0) - return 1; - } - } -#if 0 /* This bug could be worked around by the caller. */ - /* Test against HP-UX 11.11 bug: Positive return value instead of 0. */ - { - iconv_t cd_88591_to_utf8 = iconv_open ("utf8", "iso88591"); - if (cd_88591_to_utf8 != (iconv_t)(-1)) - { - static const char input[] = "\304rger mit b\366sen B\374bchen ohne Augenma\337"; - char buf[50]; - const char *inptr = input; - size_t inbytesleft = strlen (input); - char *outptr = buf; - size_t outbytesleft = sizeof (buf); - size_t res = iconv (cd_88591_to_utf8, - (char **) &inptr, &inbytesleft, - &outptr, &outbytesleft); - if ((int)res > 0) - return 1; - } - } -#endif - /* Test against HP-UX 11.11 bug: No converter from EUC-JP to UTF-8 is - provided. */ - if (/* Try standardized names. */ - iconv_open ("UTF-8", "EUC-JP") == (iconv_t)(-1) - /* Try IRIX, OSF/1 names. */ - && iconv_open ("UTF-8", "eucJP") == (iconv_t)(-1) - /* Try AIX names. */ - && iconv_open ("UTF-8", "IBM-eucJP") == (iconv_t)(-1) - /* Try HP-UX names. */ - && iconv_open ("utf8", "eucJP") == (iconv_t)(-1)) - return 1; - return 0; -} -_ACEOF -if ac_fn_c_try_run "$LINENO"; then : - am_cv_func_iconv_works=yes -else - am_cv_func_iconv_works=no -fi -rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ - conftest.$ac_objext conftest.beam conftest.$ac_ext -fi - - LIBS="$am_save_LIBS" - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_func_iconv_works" >&5 -$as_echo "$am_cv_func_iconv_works" >&6; } - case "$am_cv_func_iconv_works" in - *no) am_func_iconv=no am_cv_lib_iconv=no ;; - *) am_func_iconv=yes ;; - esac - else - am_func_iconv=no am_cv_lib_iconv=no - fi - if test "$am_func_iconv" = yes; then - -$as_echo "#define HAVE_ICONV 1" >>confdefs.h - - fi - if test "$am_cv_lib_iconv" = yes; then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to link with libiconv" >&5 -$as_echo_n "checking how to link with libiconv... " >&6; } - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LIBICONV" >&5 -$as_echo "$LIBICONV" >&6; } - else - CPPFLAGS="$am_save_CPPFLAGS" - LIBICONV= - LTLIBICONV= - fi - - - - if test "$am_cv_func_iconv" = yes; then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for iconv declaration" >&5 -$as_echo_n "checking for iconv declaration... " >&6; } - if ${am_cv_proto_iconv+:} false; then : - $as_echo_n "(cached) " >&6 -else - - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -#include -#include -extern -#ifdef __cplusplus -"C" -#endif -#if defined(__STDC__) || defined(__cplusplus) -size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft); -#else -size_t iconv(); -#endif - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - am_cv_proto_iconv_arg1="" -else - am_cv_proto_iconv_arg1="const" -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - am_cv_proto_iconv="extern size_t iconv (iconv_t cd, $am_cv_proto_iconv_arg1 char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);" -fi - - am_cv_proto_iconv=`echo "$am_cv_proto_iconv" | tr -s ' ' | sed -e 's/( /(/'` - { $as_echo "$as_me:${as_lineno-$LINENO}: result: - $am_cv_proto_iconv" >&5 -$as_echo " - $am_cv_proto_iconv" >&6; } - -cat >>confdefs.h <<_ACEOF -#define ICONV_CONST $am_cv_proto_iconv_arg1 -_ACEOF - - fi - - -# Checks for header files. -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5 -$as_echo_n "checking for ANSI C header files... " >&6; } -if ${ac_cv_header_stdc+:} false; then : - $as_echo_n "(cached) " >&6 -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include -#include -#include -#include - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - ac_cv_header_stdc=yes -else - ac_cv_header_stdc=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - -if test $ac_cv_header_stdc = yes; then - # SunOS 4.x string.h does not declare mem*, contrary to ANSI. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include - -_ACEOF -if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | - $EGREP "memchr" >/dev/null 2>&1; then : - -else - ac_cv_header_stdc=no -fi -rm -f conftest* - -fi - -if test $ac_cv_header_stdc = yes; then - # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include - -_ACEOF -if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | - $EGREP "free" >/dev/null 2>&1; then : - -else - ac_cv_header_stdc=no -fi -rm -f conftest* - -fi - -if test $ac_cv_header_stdc = yes; then - # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi. - if test "$cross_compiling" = yes; then : - : -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include -#include -#if ((' ' & 0x0FF) == 0x020) -# define ISLOWER(c) ('a' <= (c) && (c) <= 'z') -# define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c)) -#else -# define ISLOWER(c) \ - (('a' <= (c) && (c) <= 'i') \ - || ('j' <= (c) && (c) <= 'r') \ - || ('s' <= (c) && (c) <= 'z')) -# define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c)) -#endif - -#define XOR(e, f) (((e) && !(f)) || (!(e) && (f))) -int -main () -{ - int i; - for (i = 0; i < 256; i++) - if (XOR (islower (i), ISLOWER (i)) - || toupper (i) != TOUPPER (i)) - return 2; - return 0; -} -_ACEOF -if ac_fn_c_try_run "$LINENO"; then : - -else - ac_cv_header_stdc=no -fi -rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ - conftest.$ac_objext conftest.beam conftest.$ac_ext -fi - -fi -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_stdc" >&5 -$as_echo "$ac_cv_header_stdc" >&6; } -if test $ac_cv_header_stdc = yes; then - -$as_echo "#define STDC_HEADERS 1" >>confdefs.h - -fi - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sys/wait.h that is POSIX.1 compatible" >&5 -$as_echo_n "checking for sys/wait.h that is POSIX.1 compatible... " >&6; } -if ${ac_cv_header_sys_wait_h+:} false; then : - $as_echo_n "(cached) " >&6 -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include -#include -#ifndef WEXITSTATUS -# define WEXITSTATUS(stat_val) ((unsigned int) (stat_val) >> 8) -#endif -#ifndef WIFEXITED -# define WIFEXITED(stat_val) (((stat_val) & 255) == 0) -#endif - -int -main () -{ - int s; - wait (&s); - s = WIFEXITED (s) ? WEXITSTATUS (s) : 1; - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - ac_cv_header_sys_wait_h=yes -else - ac_cv_header_sys_wait_h=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_sys_wait_h" >&5 -$as_echo "$ac_cv_header_sys_wait_h" >&6; } -if test $ac_cv_header_sys_wait_h = yes; then - -$as_echo "#define HAVE_SYS_WAIT_H 1" >>confdefs.h - -fi - -for ac_header in limits.h malloc.h malloc/malloc.h stdlib.h string.h sys/param.h unistd.h wait.h sys/wait.h machine/endian.h pthread.h -do : - as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` -ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" -if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : - cat >>confdefs.h <<_ACEOF -#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 -_ACEOF - -fi - -done - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking host platform characteristics" >&5 -$as_echo_n "checking host platform characteristics... " >&6; } - -case "$host" in - *-*-*freebsd*) - HOST_LIBS="-lexecinfo -pthread" - md5prog=gmd5sum - ;; - *-*-linux*) - HOST_LIBS="-ldl -lpthread" - md5prog=md5sum - ;; -esac - - - -for ac_prog in wget -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_WGET+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $WGET in - [\\/]* | ?:[\\/]*) - ac_cv_path_WGET="$WGET" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_path_WGET="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - ;; -esac -fi -WGET=$ac_cv_path_WGET -if test -n "$WGET"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $WGET" >&5 -$as_echo "$WGET" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$WGET" && break -done -test -n "$WGET" || WGET="false" - -if test "x$WGET" = "xfalse" -then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: without wget you cannot download data automatically" >&5 -$as_echo "$as_me: WARNING: without wget you cannot download data automatically" >&2;} -fi - -for ac_prog in tar -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_TAR+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $TAR in - [\\/]* | ?:[\\/]*) - ac_cv_path_TAR="$TAR" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_path_TAR="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - ;; -esac -fi -TAR=$ac_cv_path_TAR -if test -n "$TAR"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $TAR" >&5 -$as_echo "$TAR" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$TAR" && break -done -test -n "$TAR" || TAR="no" - -if test "x$TAR" = "xno"; -then - as_fn_error $? "You need to install tar" "$LINENO" 5 -fi - -for ac_prog in $md5prog -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_MD5SUM+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $MD5SUM in - [\\/]* | ?:[\\/]*) - ac_cv_path_MD5SUM="$MD5SUM" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_path_MD5SUM="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - ;; -esac -fi -MD5SUM=$ac_cv_path_MD5SUM -if test -n "$MD5SUM"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MD5SUM" >&5 -$as_echo "$MD5SUM" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$MD5SUM" && break -done -test -n "$MD5SUM" || MD5SUM="no" - -if test "x$MD5SUM" = "xno"; -then - as_fn_error $? "You need to install md5sum" "$LINENO" 5 -fi - - - - -# x11 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for X" >&5 -$as_echo_n "checking for X... " >&6; } - - -# Check whether --with-x was given. -if test "${with_x+set}" = set; then : - withval=$with_x; -fi - -# $have_x is `yes', `no', `disabled', or empty when we do not yet know. -if test "x$with_x" = xno; then - # The user explicitly disabled X. - have_x=disabled -else - case $x_includes,$x_libraries in #( - *\'*) as_fn_error $? "cannot use X directory names containing '" "$LINENO" 5;; #( - *,NONE | NONE,*) if ${ac_cv_have_x+:} false; then : - $as_echo_n "(cached) " >&6 -else - # One or both of the vars are not set, and there is no cached value. -ac_x_includes=no ac_x_libraries=no -rm -f -r conftest.dir -if mkdir conftest.dir; then - cd conftest.dir - cat >Imakefile <<'_ACEOF' -incroot: - @echo incroot='${INCROOT}' -usrlibdir: - @echo usrlibdir='${USRLIBDIR}' -libdir: - @echo libdir='${LIBDIR}' -_ACEOF - if (export CC; ${XMKMF-xmkmf}) >/dev/null 2>/dev/null && test -f Makefile; then - # GNU make sometimes prints "make[1]: Entering ...", which would confuse us. - for ac_var in incroot usrlibdir libdir; do - eval "ac_im_$ac_var=\`\${MAKE-make} $ac_var 2>/dev/null | sed -n 's/^$ac_var=//p'\`" - done - # Open Windows xmkmf reportedly sets LIBDIR instead of USRLIBDIR. - for ac_extension in a so sl dylib la dll; do - if test ! -f "$ac_im_usrlibdir/libX11.$ac_extension" && - test -f "$ac_im_libdir/libX11.$ac_extension"; then - ac_im_usrlibdir=$ac_im_libdir; break - fi - done - # Screen out bogus values from the imake configuration. They are - # bogus both because they are the default anyway, and because - # using them would break gcc on systems where it needs fixed includes. - case $ac_im_incroot in - /usr/include) ac_x_includes= ;; - *) test -f "$ac_im_incroot/X11/Xos.h" && ac_x_includes=$ac_im_incroot;; - esac - case $ac_im_usrlibdir in - /usr/lib | /usr/lib64 | /lib | /lib64) ;; - *) test -d "$ac_im_usrlibdir" && ac_x_libraries=$ac_im_usrlibdir ;; - esac - fi - cd .. - rm -f -r conftest.dir -fi - -# Standard set of common directories for X headers. -# Check X11 before X11Rn because it is often a symlink to the current release. -ac_x_header_dirs=' -/usr/X11/include -/usr/X11R7/include -/usr/X11R6/include -/usr/X11R5/include -/usr/X11R4/include - -/usr/include/X11 -/usr/include/X11R7 -/usr/include/X11R6 -/usr/include/X11R5 -/usr/include/X11R4 - -/usr/local/X11/include -/usr/local/X11R7/include -/usr/local/X11R6/include -/usr/local/X11R5/include -/usr/local/X11R4/include - -/usr/local/include/X11 -/usr/local/include/X11R7 -/usr/local/include/X11R6 -/usr/local/include/X11R5 -/usr/local/include/X11R4 - -/usr/X386/include -/usr/x386/include -/usr/XFree86/include/X11 - -/usr/include -/usr/local/include -/usr/unsupported/include -/usr/athena/include -/usr/local/x11r5/include -/usr/lpp/Xamples/include - -/usr/openwin/include -/usr/openwin/share/include' - -if test "$ac_x_includes" = no; then - # Guess where to find include files, by looking for Xlib.h. - # First, try using that file with no special directory specified. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include -_ACEOF -if ac_fn_c_try_cpp "$LINENO"; then : - # We can compile using X headers with no special include directory. -ac_x_includes= -else - for ac_dir in $ac_x_header_dirs; do - if test -r "$ac_dir/X11/Xlib.h"; then - ac_x_includes=$ac_dir - break - fi -done -fi -rm -f conftest.err conftest.i conftest.$ac_ext -fi # $ac_x_includes = no - -if test "$ac_x_libraries" = no; then - # Check for the libraries. - # See if we find them without any special options. - # Don't add to $LIBS permanently. - ac_save_LIBS=$LIBS - LIBS="-lX11 $LIBS" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include -int -main () -{ -XrmInitialize () - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - LIBS=$ac_save_LIBS -# We can link X programs with no special library path. -ac_x_libraries= -else - LIBS=$ac_save_LIBS -for ac_dir in `$as_echo "$ac_x_includes $ac_x_header_dirs" | sed s/include/lib/g` -do - # Don't even attempt the hair of trying to link an X program! - for ac_extension in a so sl dylib la dll; do - if test -r "$ac_dir/libX11.$ac_extension"; then - ac_x_libraries=$ac_dir - break 2 - fi - done -done -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -fi # $ac_x_libraries = no - -case $ac_x_includes,$ac_x_libraries in #( - no,* | *,no | *\'*) - # Didn't find X, or a directory has "'" in its name. - ac_cv_have_x="have_x=no";; #( - *) - # Record where we found X for the cache. - ac_cv_have_x="have_x=yes\ - ac_x_includes='$ac_x_includes'\ - ac_x_libraries='$ac_x_libraries'" -esac -fi -;; #( - *) have_x=yes;; - esac - eval "$ac_cv_have_x" -fi # $with_x != no - -if test "$have_x" != yes; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $have_x" >&5 -$as_echo "$have_x" >&6; } - no_x=yes -else - # If each of the values was on the command line, it overrides each guess. - test "x$x_includes" = xNONE && x_includes=$ac_x_includes - test "x$x_libraries" = xNONE && x_libraries=$ac_x_libraries - # Update the cache value to reflect the command line values. - ac_cv_have_x="have_x=yes\ - ac_x_includes='$x_includes'\ - ac_x_libraries='$x_libraries'" - { $as_echo "$as_me:${as_lineno-$LINENO}: result: libraries $x_libraries, headers $x_includes" >&5 -$as_echo "libraries $x_libraries, headers $x_includes" >&6; } -fi - -test -n "$x_libraries" && X_LIBS="-L$x_libraries" -test -n "$x_includes" && X_CFLAGS="-I$x_includes" - - - - - - - - - -if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then - if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args. -set dummy ${ac_tool_prefix}pkg-config; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_PKG_CONFIG+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $PKG_CONFIG in - [\\/]* | ?:[\\/]*) - ac_cv_path_PKG_CONFIG="$PKG_CONFIG" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - ;; -esac -fi -PKG_CONFIG=$ac_cv_path_PKG_CONFIG -if test -n "$PKG_CONFIG"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PKG_CONFIG" >&5 -$as_echo "$PKG_CONFIG" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -fi -if test -z "$ac_cv_path_PKG_CONFIG"; then - ac_pt_PKG_CONFIG=$PKG_CONFIG - # Extract the first word of "pkg-config", so it can be a program name with args. -set dummy pkg-config; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_ac_pt_PKG_CONFIG+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $ac_pt_PKG_CONFIG in - [\\/]* | ?:[\\/]*) - ac_cv_path_ac_pt_PKG_CONFIG="$ac_pt_PKG_CONFIG" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_path_ac_pt_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - ;; -esac -fi -ac_pt_PKG_CONFIG=$ac_cv_path_ac_pt_PKG_CONFIG -if test -n "$ac_pt_PKG_CONFIG"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_pt_PKG_CONFIG" >&5 -$as_echo "$ac_pt_PKG_CONFIG" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - if test "x$ac_pt_PKG_CONFIG" = x; then - PKG_CONFIG="" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - PKG_CONFIG=$ac_pt_PKG_CONFIG - fi -else - PKG_CONFIG="$ac_cv_path_PKG_CONFIG" -fi - -fi -if test -n "$PKG_CONFIG"; then - _pkg_min_version=0.9.0 - { $as_echo "$as_me:${as_lineno-$LINENO}: checking pkg-config is at least version $_pkg_min_version" >&5 -$as_echo_n "checking pkg-config is at least version $_pkg_min_version... " >&6; } - if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } - else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - PKG_CONFIG="" - fi -fi - -pkg_failed=no -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for XRENDER" >&5 -$as_echo_n "checking for XRENDER... " >&6; } - -if test -n "$XRENDER_CFLAGS"; then - pkg_cv_XRENDER_CFLAGS="$XRENDER_CFLAGS" - elif test -n "$PKG_CONFIG"; then - if test -n "$PKG_CONFIG" && \ - { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"xrender\""; } >&5 - ($PKG_CONFIG --exists --print-errors "xrender") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - pkg_cv_XRENDER_CFLAGS=`$PKG_CONFIG --cflags "xrender" 2>/dev/null` -else - pkg_failed=yes -fi - else - pkg_failed=untried -fi -if test -n "$XRENDER_LIBS"; then - pkg_cv_XRENDER_LIBS="$XRENDER_LIBS" - elif test -n "$PKG_CONFIG"; then - if test -n "$PKG_CONFIG" && \ - { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"xrender\""; } >&5 - ($PKG_CONFIG --exists --print-errors "xrender") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - pkg_cv_XRENDER_LIBS=`$PKG_CONFIG --libs "xrender" 2>/dev/null` -else - pkg_failed=yes -fi - else - pkg_failed=untried -fi - - - -if test $pkg_failed = yes; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - -if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then - _pkg_short_errors_supported=yes -else - _pkg_short_errors_supported=no -fi - if test $_pkg_short_errors_supported = yes; then - XRENDER_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "xrender" 2>&1` - else - XRENDER_PKG_ERRORS=`$PKG_CONFIG --print-errors "xrender" 2>&1` - fi - # Put the nasty error message in config.log where it belongs - echo "$XRENDER_PKG_ERRORS" >&5 - - : -elif test $pkg_failed = untried; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - : -else - XRENDER_CFLAGS=$pkg_cv_XRENDER_CFLAGS - XRENDER_LIBS=$pkg_cv_XRENDER_LIBS - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } - have_xrender=true -fi -if test "x$have_xrender" = "xtrue"; then - - - : -else - as_fn_error $? "No XRender Lib found!" "$LINENO" 5 - : -fi - - -pkg_failed=no -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for CAIRO_XLIB" >&5 -$as_echo_n "checking for CAIRO_XLIB... " >&6; } - -if test -n "$CAIRO_XLIB_CFLAGS"; then - pkg_cv_CAIRO_XLIB_CFLAGS="$CAIRO_XLIB_CFLAGS" - elif test -n "$PKG_CONFIG"; then - if test -n "$PKG_CONFIG" && \ - { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"cairo-xlib\""; } >&5 - ($PKG_CONFIG --exists --print-errors "cairo-xlib") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - pkg_cv_CAIRO_XLIB_CFLAGS=`$PKG_CONFIG --cflags "cairo-xlib" 2>/dev/null` -else - pkg_failed=yes -fi - else - pkg_failed=untried -fi -if test -n "$CAIRO_XLIB_LIBS"; then - pkg_cv_CAIRO_XLIB_LIBS="$CAIRO_XLIB_LIBS" - elif test -n "$PKG_CONFIG"; then - if test -n "$PKG_CONFIG" && \ - { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"cairo-xlib\""; } >&5 - ($PKG_CONFIG --exists --print-errors "cairo-xlib") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - pkg_cv_CAIRO_XLIB_LIBS=`$PKG_CONFIG --libs "cairo-xlib" 2>/dev/null` -else - pkg_failed=yes -fi - else - pkg_failed=untried -fi - - - -if test $pkg_failed = yes; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - -if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then - _pkg_short_errors_supported=yes -else - _pkg_short_errors_supported=no -fi - if test $_pkg_short_errors_supported = yes; then - CAIRO_XLIB_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "cairo-xlib" 2>&1` - else - CAIRO_XLIB_PKG_ERRORS=`$PKG_CONFIG --print-errors "cairo-xlib" 2>&1` - fi - # Put the nasty error message in config.log where it belongs - echo "$CAIRO_XLIB_PKG_ERRORS" >&5 - - : -elif test $pkg_failed = untried; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - : -else - CAIRO_XLIB_CFLAGS=$pkg_cv_CAIRO_XLIB_CFLAGS - CAIRO_XLIB_LIBS=$pkg_cv_CAIRO_XLIB_LIBS - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } - have_cairo_xlib=true -fi -if test "x$have_cairo_xlib" = "xtrue"; then - - - : -else - as_fn_error $? "No cairo-xlib found!" "$LINENO" 5 - : -fi - -# Option to enable the DBus interface for kimpanel support. -# Check whether --enable-pango was given. -if test "${enable_pango+set}" = set; then : - enableval=$enable_pango; case "${enableval}" in - yes) enable_pango=yes ;; - no) enable_pango=no ;; - auto) enable_pango=auto ;; - *) as_fn_error $? "bad value \"${enableval}\" for --enable-dbus, use \"yes\" or \"no\" or \"auto\"(default)." "$LINENO" 5 ;; - esac -else - enable_pango=auto - -fi - - -if test "x$enable_pango" = "xno"; then - # --enable-pango=no - : -else - -pkg_failed=no -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for PANGOCAIRO" >&5 -$as_echo_n "checking for PANGOCAIRO... " >&6; } - -if test -n "$PANGOCAIRO_CFLAGS"; then - pkg_cv_PANGOCAIRO_CFLAGS="$PANGOCAIRO_CFLAGS" - elif test -n "$PKG_CONFIG"; then - if test -n "$PKG_CONFIG" && \ - { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"pangocairo\""; } >&5 - ($PKG_CONFIG --exists --print-errors "pangocairo") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - pkg_cv_PANGOCAIRO_CFLAGS=`$PKG_CONFIG --cflags "pangocairo" 2>/dev/null` -else - pkg_failed=yes -fi - else - pkg_failed=untried -fi -if test -n "$PANGOCAIRO_LIBS"; then - pkg_cv_PANGOCAIRO_LIBS="$PANGOCAIRO_LIBS" - elif test -n "$PKG_CONFIG"; then - if test -n "$PKG_CONFIG" && \ - { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"pangocairo\""; } >&5 - ($PKG_CONFIG --exists --print-errors "pangocairo") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - pkg_cv_PANGOCAIRO_LIBS=`$PKG_CONFIG --libs "pangocairo" 2>/dev/null` -else - pkg_failed=yes -fi - else - pkg_failed=untried -fi - - - -if test $pkg_failed = yes; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - -if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then - _pkg_short_errors_supported=yes -else - _pkg_short_errors_supported=no -fi - if test $_pkg_short_errors_supported = yes; then - PANGOCAIRO_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "pangocairo" 2>&1` - else - PANGOCAIRO_PKG_ERRORS=`$PKG_CONFIG --print-errors "pangocairo" 2>&1` - fi - # Put the nasty error message in config.log where it belongs - echo "$PANGOCAIRO_PKG_ERRORS" >&5 - - : -elif test $pkg_failed = untried; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - : -else - PANGOCAIRO_CFLAGS=$pkg_cv_PANGOCAIRO_CFLAGS - PANGOCAIRO_LIBS=$pkg_cv_PANGOCAIRO_LIBS - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } - have_pangocairo=true -fi - if test "x$have_pangocairo" = "xtrue"; then - - - : - else - if test "x$enable_pango" = "xyes"; then - # Must use pango, raise a error. - as_fn_error $? "No PANGOCAIRO found, configure for pango failed!" "$LINENO" 5 - else - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: No PANGOCAIRO found, skipping configure for pango" >&5 -$as_echo "$as_me: WARNING: No PANGOCAIRO found, skipping configure for pango" >&2;} - fi - fi -fi - if test "x$have_pangocairo" = "xtrue"; then - HAVE_PANGOCAIRO_TRUE= - HAVE_PANGOCAIRO_FALSE='#' -else - HAVE_PANGOCAIRO_TRUE='#' - HAVE_PANGOCAIRO_FALSE= -fi - - -if test "x$have_pangocairo" = "xtrue"; then - -$as_echo "#define _ENABLE_PANGO /**/" >>confdefs.h - -fi - - -pkg_failed=no -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for FONTCONFIG" >&5 -$as_echo_n "checking for FONTCONFIG... " >&6; } - -if test -n "$FONTCONFIG_CFLAGS"; then - pkg_cv_FONTCONFIG_CFLAGS="$FONTCONFIG_CFLAGS" - elif test -n "$PKG_CONFIG"; then - if test -n "$PKG_CONFIG" && \ - { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"fontconfig\""; } >&5 - ($PKG_CONFIG --exists --print-errors "fontconfig") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - pkg_cv_FONTCONFIG_CFLAGS=`$PKG_CONFIG --cflags "fontconfig" 2>/dev/null` -else - pkg_failed=yes -fi - else - pkg_failed=untried -fi -if test -n "$FONTCONFIG_LIBS"; then - pkg_cv_FONTCONFIG_LIBS="$FONTCONFIG_LIBS" - elif test -n "$PKG_CONFIG"; then - if test -n "$PKG_CONFIG" && \ - { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"fontconfig\""; } >&5 - ($PKG_CONFIG --exists --print-errors "fontconfig") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - pkg_cv_FONTCONFIG_LIBS=`$PKG_CONFIG --libs "fontconfig" 2>/dev/null` -else - pkg_failed=yes -fi - else - pkg_failed=untried -fi - - - -if test $pkg_failed = yes; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - -if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then - _pkg_short_errors_supported=yes -else - _pkg_short_errors_supported=no -fi - if test $_pkg_short_errors_supported = yes; then - FONTCONFIG_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "fontconfig" 2>&1` - else - FONTCONFIG_PKG_ERRORS=`$PKG_CONFIG --print-errors "fontconfig" 2>&1` - fi - # Put the nasty error message in config.log where it belongs - echo "$FONTCONFIG_PKG_ERRORS" >&5 - - : -elif test $pkg_failed = untried; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - : -else - FONTCONFIG_CFLAGS=$pkg_cv_FONTCONFIG_CFLAGS - FONTCONFIG_LIBS=$pkg_cv_FONTCONFIG_LIBS - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } - have_fontconfig=true -fi -if test "x$have_fontconfig" = "xtrue"; then - - - : -else - as_fn_error $? "No fontconfig lib found!" "$LINENO" 5 - : -fi - -# Option to enable the DEBUG -# Check whether --enable-debug was given. -if test "${enable_debug+set}" = set; then : - enableval=$enable_debug; case "${enableval}" in - yes) enable_debug=yes ;; - no) enable_debug=no ;; - *) as_fn_error $? "bad value \"${enableval}\" for --enable-debug, use \"yes\" or \"no\" (default)." "$LINENO" 5 ;; - esac -else - enable_debug=no - -fi - - -if test "x$enable_debug" = "xyes"; then - -$as_echo "#define _DEBUG /**/" >>confdefs.h - - CFLAGS="$CFLAGS -g" -fi - if test "x$enable_debug" = "xyes"; then - ENABLE_DEBUG_TRUE= - ENABLE_DEBUG_FALSE='#' -else - ENABLE_DEBUG_TRUE='#' - ENABLE_DEBUG_FALSE= -fi - - -# Option to enable the TRAY -# Check whether --enable-tray was given. -if test "${enable_tray+set}" = set; then : - enableval=$enable_tray; case "${enableval}" in - yes) enable_tray=yes ;; - no) enable_tray=no ;; - *) as_fn_error $? "bad value \"${enableval}\" for --enable-tray, use \"yes\" (default) or \"no\"." "$LINENO" 5 ;; - esac -else - enable_tray=yes - -fi - - -if test "x$enable_tray" != "xno"; then - -$as_echo "#define _ENABLE_TRAY /**/" >>confdefs.h - -fi - if test "x$enable_tray" != "xno"; then - ENABLE_TRAY_TRUE= - ENABLE_TRAY_FALSE='#' -else - ENABLE_TRAY_TRUE='#' - ENABLE_TRAY_FALSE= -fi - - -# Option to enable the recording -# Check whether --enable-recording was given. -if test "${enable_recording+set}" = set; then : - enableval=$enable_recording; case "${enableval}" in - yes) enable_recording=yes ;; - no) enable_recording=no ;; - *) as_fn_error $? "bad value \"${enableval}\" for --enable-recording, use \"yes\" or \"no\" (default)." "$LINENO" 5 ;; - esac -else - enable_recording=no - -fi - - -if test "x$enable_recording" = "xyes"; then - -$as_echo "#define _ENABLE_RECORDING /**/" >>confdefs.h - -fi - if test "x$enable_recording" = "xyes"; then - ENABLE_RECORDING_TRUE= - ENABLE_RECORDING_FALSE='#' -else - ENABLE_RECORDING_TRUE='#' - ENABLE_RECORDING_FALSE= -fi - - -# Option to enable the DBus interface for kimpanel support. -# Check whether --enable-dbus was given. -if test "${enable_dbus+set}" = set; then : - enableval=$enable_dbus; case "${enableval}" in - yes) enable_dbus=yes ;; - no) enable_dbus=no ;; - auto) enable_dbus=auto ;; - *) as_fn_error $? "bad value \"${enableval}\" for --enable-dbus, use \"yes\" or \"no\" or \"auto\"(default)." "$LINENO" 5 ;; - esac -else - enable_dbus=auto - -fi - - -if test "x$enable_dbus" = "xno"; then - # --enable-dbus=no - : -else - # Checks for Dbus - -pkg_failed=no -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for DBUS" >&5 -$as_echo_n "checking for DBUS... " >&6; } - -if test -n "$DBUS_CFLAGS"; then - pkg_cv_DBUS_CFLAGS="$DBUS_CFLAGS" - elif test -n "$PKG_CONFIG"; then - if test -n "$PKG_CONFIG" && \ - { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"dbus-1 >= 0.2\""; } >&5 - ($PKG_CONFIG --exists --print-errors "dbus-1 >= 0.2") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - pkg_cv_DBUS_CFLAGS=`$PKG_CONFIG --cflags "dbus-1 >= 0.2" 2>/dev/null` -else - pkg_failed=yes -fi - else - pkg_failed=untried -fi -if test -n "$DBUS_LIBS"; then - pkg_cv_DBUS_LIBS="$DBUS_LIBS" - elif test -n "$PKG_CONFIG"; then - if test -n "$PKG_CONFIG" && \ - { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"dbus-1 >= 0.2\""; } >&5 - ($PKG_CONFIG --exists --print-errors "dbus-1 >= 0.2") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - pkg_cv_DBUS_LIBS=`$PKG_CONFIG --libs "dbus-1 >= 0.2" 2>/dev/null` -else - pkg_failed=yes -fi - else - pkg_failed=untried -fi - - - -if test $pkg_failed = yes; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - -if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then - _pkg_short_errors_supported=yes -else - _pkg_short_errors_supported=no -fi - if test $_pkg_short_errors_supported = yes; then - DBUS_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "dbus-1 >= 0.2" 2>&1` - else - DBUS_PKG_ERRORS=`$PKG_CONFIG --print-errors "dbus-1 >= 0.2" 2>&1` - fi - # Put the nasty error message in config.log where it belongs - echo "$DBUS_PKG_ERRORS" >&5 - - : -elif test $pkg_failed = untried; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - : -else - DBUS_CFLAGS=$pkg_cv_DBUS_CFLAGS - DBUS_LIBS=$pkg_cv_DBUS_LIBS - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } - have_dbus=true -fi - - if test "x$have_dbus" = "xtrue"; then - - - : - else - if test "x$enable_dbus" = "xyes"; then - # Must use dbus, raise a error. - as_fn_error $? "No dbus found, configure for Dbus failed!" "$LINENO" 5 - else - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: No dbus found, skipping configure for Dbus" >&5 -$as_echo "$as_me: WARNING: No dbus found, skipping configure for Dbus" >&2;} - fi - fi -fi - if test "x$have_dbus" = "xtrue"; then - HAVE_DBUS_TRUE= - HAVE_DBUS_FALSE='#' -else - HAVE_DBUS_TRUE='#' - HAVE_DBUS_FALSE= -fi - - -if test "x$have_dbus" = "xtrue"; then - -$as_echo "#define _ENABLE_DBUS /**/" >>confdefs.h - -fi - -# Check whether --enable-table_data was given. -if test "${enable_table_data+set}" = set; then : - enableval=$enable_table_data; case "${enableval}" in - yes) enable_table_data=yes ;; - no) enable_table_data=no ;; - *) as_fn_error $? "bad value \"${enableval}\" for --enable-table-data, use \"yes\"(defaule) or \"no\"." "$LINENO" 5 ;; - esac -else - enable_table_data=yes - -fi - - if test "x$enable_table_data" = "xyes"; then - ENABLE_TABLE_DATA_TRUE= - ENABLE_TABLE_DATA_FALSE='#' -else - ENABLE_TABLE_DATA_TRUE='#' - ENABLE_TABLE_DATA_FALSE= -fi - - - -CFLAGS="$CFLAGS -Wall" - -# Checks for typedefs, structures, and compiler characteristics. -ac_fn_c_check_type "$LINENO" "pid_t" "ac_cv_type_pid_t" "$ac_includes_default" -if test "x$ac_cv_type_pid_t" = xyes; then : - -else - -cat >>confdefs.h <<_ACEOF -#define pid_t int -_ACEOF - -fi - -ac_fn_c_check_type "$LINENO" "size_t" "ac_cv_type_size_t" "$ac_includes_default" -if test "x$ac_cv_type_size_t" = xyes; then : - -else - -cat >>confdefs.h <<_ACEOF -#define size_t unsigned int -_ACEOF - -fi - - -# Checks for library functions. -for ac_header in vfork.h -do : - ac_fn_c_check_header_mongrel "$LINENO" "vfork.h" "ac_cv_header_vfork_h" "$ac_includes_default" -if test "x$ac_cv_header_vfork_h" = xyes; then : - cat >>confdefs.h <<_ACEOF -#define HAVE_VFORK_H 1 -_ACEOF - -fi - -done - -for ac_func in fork vfork -do : - as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` -ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -if eval test \"x\$"$as_ac_var"\" = x"yes"; then : - cat >>confdefs.h <<_ACEOF -#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 -_ACEOF - -fi -done - -if test "x$ac_cv_func_fork" = xyes; then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for working fork" >&5 -$as_echo_n "checking for working fork... " >&6; } -if ${ac_cv_func_fork_works+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test "$cross_compiling" = yes; then : - ac_cv_func_fork_works=cross -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -$ac_includes_default -int -main () -{ - - /* By Ruediger Kuhlmann. */ - return fork () < 0; - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_run "$LINENO"; then : - ac_cv_func_fork_works=yes -else - ac_cv_func_fork_works=no -fi -rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ - conftest.$ac_objext conftest.beam conftest.$ac_ext -fi - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_fork_works" >&5 -$as_echo "$ac_cv_func_fork_works" >&6; } - -else - ac_cv_func_fork_works=$ac_cv_func_fork -fi -if test "x$ac_cv_func_fork_works" = xcross; then - case $host in - *-*-amigaos* | *-*-msdosdjgpp*) - # Override, as these systems have only a dummy fork() stub - ac_cv_func_fork_works=no - ;; - *) - ac_cv_func_fork_works=yes - ;; - esac - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: result $ac_cv_func_fork_works guessed because of cross compilation" >&5 -$as_echo "$as_me: WARNING: result $ac_cv_func_fork_works guessed because of cross compilation" >&2;} -fi -ac_cv_func_vfork_works=$ac_cv_func_vfork -if test "x$ac_cv_func_vfork" = xyes; then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for working vfork" >&5 -$as_echo_n "checking for working vfork... " >&6; } -if ${ac_cv_func_vfork_works+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test "$cross_compiling" = yes; then : - ac_cv_func_vfork_works=cross -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -/* Thanks to Paul Eggert for this test. */ -$ac_includes_default -#include -#ifdef HAVE_VFORK_H -# include -#endif -/* On some sparc systems, changes by the child to local and incoming - argument registers are propagated back to the parent. The compiler - is told about this with #include , but some compilers - (e.g. gcc -O) don't grok . Test for this by using a - static variable whose address is put into a register that is - clobbered by the vfork. */ -static void -#ifdef __cplusplus -sparc_address_test (int arg) -# else -sparc_address_test (arg) int arg; -#endif -{ - static pid_t child; - if (!child) { - child = vfork (); - if (child < 0) { - perror ("vfork"); - _exit(2); - } - if (!child) { - arg = getpid(); - write(-1, "", 0); - _exit (arg); - } - } -} - -int -main () -{ - pid_t parent = getpid (); - pid_t child; - - sparc_address_test (0); - - child = vfork (); - - if (child == 0) { - /* Here is another test for sparc vfork register problems. This - test uses lots of local variables, at least as many local - variables as main has allocated so far including compiler - temporaries. 4 locals are enough for gcc 1.40.3 on a Solaris - 4.1.3 sparc, but we use 8 to be safe. A buggy compiler should - reuse the register of parent for one of the local variables, - since it will think that parent can't possibly be used any more - in this routine. Assigning to the local variable will thus - munge parent in the parent process. */ - pid_t - p = getpid(), p1 = getpid(), p2 = getpid(), p3 = getpid(), - p4 = getpid(), p5 = getpid(), p6 = getpid(), p7 = getpid(); - /* Convince the compiler that p..p7 are live; otherwise, it might - use the same hardware register for all 8 local variables. */ - if (p != p1 || p != p2 || p != p3 || p != p4 - || p != p5 || p != p6 || p != p7) - _exit(1); - - /* On some systems (e.g. IRIX 3.3), vfork doesn't separate parent - from child file descriptors. If the child closes a descriptor - before it execs or exits, this munges the parent's descriptor - as well. Test for this by closing stdout in the child. */ - _exit(close(fileno(stdout)) != 0); - } else { - int status; - struct stat st; - - while (wait(&status) != child) - ; - return ( - /* Was there some problem with vforking? */ - child < 0 - - /* Did the child fail? (This shouldn't happen.) */ - || status - - /* Did the vfork/compiler bug occur? */ - || parent != getpid() - - /* Did the file descriptor bug occur? */ - || fstat(fileno(stdout), &st) != 0 - ); - } -} -_ACEOF -if ac_fn_c_try_run "$LINENO"; then : - ac_cv_func_vfork_works=yes -else - ac_cv_func_vfork_works=no -fi -rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ - conftest.$ac_objext conftest.beam conftest.$ac_ext -fi - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_vfork_works" >&5 -$as_echo "$ac_cv_func_vfork_works" >&6; } - -fi; -if test "x$ac_cv_func_fork_works" = xcross; then - ac_cv_func_vfork_works=$ac_cv_func_vfork - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: result $ac_cv_func_vfork_works guessed because of cross compilation" >&5 -$as_echo "$as_me: WARNING: result $ac_cv_func_vfork_works guessed because of cross compilation" >&2;} -fi - -if test "x$ac_cv_func_vfork_works" = xyes; then - -$as_echo "#define HAVE_WORKING_VFORK 1" >>confdefs.h - -else - -$as_echo "#define vfork fork" >>confdefs.h - -fi -if test "x$ac_cv_func_fork_works" = xyes; then - -$as_echo "#define HAVE_WORKING_FORK 1" >>confdefs.h - -fi - -for ac_header in stdlib.h -do : - ac_fn_c_check_header_mongrel "$LINENO" "stdlib.h" "ac_cv_header_stdlib_h" "$ac_includes_default" -if test "x$ac_cv_header_stdlib_h" = xyes; then : - cat >>confdefs.h <<_ACEOF -#define HAVE_STDLIB_H 1 -_ACEOF - -fi - -done - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU libc compatible malloc" >&5 -$as_echo_n "checking for GNU libc compatible malloc... " >&6; } -if ${ac_cv_func_malloc_0_nonnull+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test "$cross_compiling" = yes; then : - ac_cv_func_malloc_0_nonnull=no -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#if defined STDC_HEADERS || defined HAVE_STDLIB_H -# include -#else -char *malloc (); -#endif - -int -main () -{ -return ! malloc (0); - ; - return 0; -} -_ACEOF -if ac_fn_c_try_run "$LINENO"; then : - ac_cv_func_malloc_0_nonnull=yes -else - ac_cv_func_malloc_0_nonnull=no -fi -rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ - conftest.$ac_objext conftest.beam conftest.$ac_ext -fi - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_malloc_0_nonnull" >&5 -$as_echo "$ac_cv_func_malloc_0_nonnull" >&6; } -if test $ac_cv_func_malloc_0_nonnull = yes; then : - -$as_echo "#define HAVE_MALLOC 1" >>confdefs.h - -else - $as_echo "#define HAVE_MALLOC 0" >>confdefs.h - - case " $LIBOBJS " in - *" malloc.$ac_objext "* ) ;; - *) LIBOBJS="$LIBOBJS malloc.$ac_objext" - ;; -esac - - -$as_echo "#define malloc rpl_malloc" >>confdefs.h - -fi - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking return type of signal handlers" >&5 -$as_echo_n "checking return type of signal handlers... " >&6; } -if ${ac_cv_type_signal+:} false; then : - $as_echo_n "(cached) " >&6 -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include -#include - -int -main () -{ -return *(signal (0, 0)) (0) == 1; - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - ac_cv_type_signal=int -else - ac_cv_type_signal=void -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_type_signal" >&5 -$as_echo "$ac_cv_type_signal" >&6; } - -cat >>confdefs.h <<_ACEOF -#define RETSIGTYPE $ac_cv_type_signal -_ACEOF - - -for ac_func in memmove memset mkdir setlocale strcasecmp strstr strtol asprintf vasprintf -do : - as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` -ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -if eval test \"x\$"$as_ac_var"\" = x"yes"; then : - cat >>confdefs.h <<_ACEOF -#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 -_ACEOF - -fi -done - - -ALL_LINGUAS="zh_CN" -GETTEXT_PACKAGE=fcitx - - -cat >>confdefs.h <<_ACEOF -#define GETTEXT_PACKAGE "$GETTEXT_PACKAGE" -_ACEOF - - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether NLS is requested" >&5 -$as_echo_n "checking whether NLS is requested... " >&6; } - # Check whether --enable-nls was given. -if test "${enable_nls+set}" = set; then : - enableval=$enable_nls; USE_NLS=$enableval -else - USE_NLS=yes -fi - - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_NLS" >&5 -$as_echo "$USE_NLS" >&6; } - - - - -case "$am__api_version" in - 1.01234) - as_fn_error $? "Automake 1.5 or newer is required to use intltool" "$LINENO" 5 - ;; - *) - ;; -esac - -if test -n "0.35.0"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for intltool >= 0.35.0" >&5 -$as_echo_n "checking for intltool >= 0.35.0... " >&6; } - - INTLTOOL_REQUIRED_VERSION_AS_INT=`echo 0.35.0 | awk -F. '{ print $ 1 * 1000 + $ 2 * 100 + $ 3; }'` - INTLTOOL_APPLIED_VERSION=`intltool-update --version | head -1 | cut -d" " -f3` - INTLTOOL_APPLIED_VERSION_AS_INT=`echo $INTLTOOL_APPLIED_VERSION | awk -F. '{ print $ 1 * 1000 + $ 2 * 100 + $ 3; }'` - - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INTLTOOL_APPLIED_VERSION found" >&5 -$as_echo "$INTLTOOL_APPLIED_VERSION found" >&6; } - test "$INTLTOOL_APPLIED_VERSION_AS_INT" -ge "$INTLTOOL_REQUIRED_VERSION_AS_INT" || - as_fn_error $? "Your intltool is too old. You need intltool 0.35.0 or later." "$LINENO" 5 -fi - -# Extract the first word of "intltool-update", so it can be a program name with args. -set dummy intltool-update; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_INTLTOOL_UPDATE+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $INTLTOOL_UPDATE in - [\\/]* | ?:[\\/]*) - ac_cv_path_INTLTOOL_UPDATE="$INTLTOOL_UPDATE" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_path_INTLTOOL_UPDATE="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - ;; -esac -fi -INTLTOOL_UPDATE=$ac_cv_path_INTLTOOL_UPDATE -if test -n "$INTLTOOL_UPDATE"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INTLTOOL_UPDATE" >&5 -$as_echo "$INTLTOOL_UPDATE" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -# Extract the first word of "intltool-merge", so it can be a program name with args. -set dummy intltool-merge; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_INTLTOOL_MERGE+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $INTLTOOL_MERGE in - [\\/]* | ?:[\\/]*) - ac_cv_path_INTLTOOL_MERGE="$INTLTOOL_MERGE" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_path_INTLTOOL_MERGE="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - ;; -esac -fi -INTLTOOL_MERGE=$ac_cv_path_INTLTOOL_MERGE -if test -n "$INTLTOOL_MERGE"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INTLTOOL_MERGE" >&5 -$as_echo "$INTLTOOL_MERGE" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -# Extract the first word of "intltool-extract", so it can be a program name with args. -set dummy intltool-extract; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_INTLTOOL_EXTRACT+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $INTLTOOL_EXTRACT in - [\\/]* | ?:[\\/]*) - ac_cv_path_INTLTOOL_EXTRACT="$INTLTOOL_EXTRACT" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_path_INTLTOOL_EXTRACT="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - ;; -esac -fi -INTLTOOL_EXTRACT=$ac_cv_path_INTLTOOL_EXTRACT -if test -n "$INTLTOOL_EXTRACT"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INTLTOOL_EXTRACT" >&5 -$as_echo "$INTLTOOL_EXTRACT" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -if test -z "$INTLTOOL_UPDATE" -o -z "$INTLTOOL_MERGE" -o -z "$INTLTOOL_EXTRACT"; then - as_fn_error $? "The intltool scripts were not found. Please install intltool." "$LINENO" 5 -fi - - INTLTOOL_DESKTOP_RULE='%.desktop: %.desktop.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' -INTLTOOL_DIRECTORY_RULE='%.directory: %.directory.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' - INTLTOOL_KEYS_RULE='%.keys: %.keys.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -k -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' - INTLTOOL_PROP_RULE='%.prop: %.prop.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' - INTLTOOL_OAF_RULE='%.oaf: %.oaf.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -o -p $(top_srcdir)/po $< $@' - INTLTOOL_PONG_RULE='%.pong: %.pong.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' - INTLTOOL_SERVER_RULE='%.server: %.server.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -o -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' - INTLTOOL_SHEET_RULE='%.sheet: %.sheet.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' -INTLTOOL_SOUNDLIST_RULE='%.soundlist: %.soundlist.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' - INTLTOOL_UI_RULE='%.ui: %.ui.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' - INTLTOOL_XML_RULE='%.xml: %.xml.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' - INTLTOOL_XML_NOMERGE_RULE='%.xml: %.xml.in $(INTLTOOL_MERGE) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u /tmp $< $@' - INTLTOOL_XAM_RULE='%.xam: %.xml.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' - INTLTOOL_KBD_RULE='%.kbd: %.kbd.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -m -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' - INTLTOOL_CAVES_RULE='%.caves: %.caves.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' - INTLTOOL_SCHEMAS_RULE='%.schemas: %.schemas.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -s -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' - INTLTOOL_THEME_RULE='%.theme: %.theme.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' - INTLTOOL_SERVICE_RULE='%.service: %.service.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' - INTLTOOL_POLICY_RULE='%.policy: %.policy.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -# Check the gettext tools to make sure they are GNU -# Extract the first word of "xgettext", so it can be a program name with args. -set dummy xgettext; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_XGETTEXT+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $XGETTEXT in - [\\/]* | ?:[\\/]*) - ac_cv_path_XGETTEXT="$XGETTEXT" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_path_XGETTEXT="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - ;; -esac -fi -XGETTEXT=$ac_cv_path_XGETTEXT -if test -n "$XGETTEXT"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $XGETTEXT" >&5 -$as_echo "$XGETTEXT" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -# Extract the first word of "msgmerge", so it can be a program name with args. -set dummy msgmerge; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_MSGMERGE+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $MSGMERGE in - [\\/]* | ?:[\\/]*) - ac_cv_path_MSGMERGE="$MSGMERGE" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_path_MSGMERGE="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - ;; -esac -fi -MSGMERGE=$ac_cv_path_MSGMERGE -if test -n "$MSGMERGE"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MSGMERGE" >&5 -$as_echo "$MSGMERGE" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -# Extract the first word of "msgfmt", so it can be a program name with args. -set dummy msgfmt; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_MSGFMT+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $MSGFMT in - [\\/]* | ?:[\\/]*) - ac_cv_path_MSGFMT="$MSGFMT" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_path_MSGFMT="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - ;; -esac -fi -MSGFMT=$ac_cv_path_MSGFMT -if test -n "$MSGFMT"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MSGFMT" >&5 -$as_echo "$MSGFMT" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -# Extract the first word of "gmsgfmt", so it can be a program name with args. -set dummy gmsgfmt; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_GMSGFMT+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $GMSGFMT in - [\\/]* | ?:[\\/]*) - ac_cv_path_GMSGFMT="$GMSGFMT" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_path_GMSGFMT="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - test -z "$ac_cv_path_GMSGFMT" && ac_cv_path_GMSGFMT="$MSGFMT" - ;; -esac -fi -GMSGFMT=$ac_cv_path_GMSGFMT -if test -n "$GMSGFMT"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GMSGFMT" >&5 -$as_echo "$GMSGFMT" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -if test -z "$XGETTEXT" -o -z "$MSGMERGE" -o -z "$MSGFMT"; then - as_fn_error $? "GNU gettext tools not found; required for intltool" "$LINENO" 5 -fi -xgversion="`$XGETTEXT --version|grep '(GNU ' 2> /dev/null`" -mmversion="`$MSGMERGE --version|grep '(GNU ' 2> /dev/null`" -mfversion="`$MSGFMT --version|grep '(GNU ' 2> /dev/null`" -if test -z "$xgversion" -o -z "$mmversion" -o -z "$mfversion"; then - as_fn_error $? "GNU gettext tools not found; required for intltool" "$LINENO" 5 -fi - -# Extract the first word of "perl", so it can be a program name with args. -set dummy perl; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_INTLTOOL_PERL+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $INTLTOOL_PERL in - [\\/]* | ?:[\\/]*) - ac_cv_path_INTLTOOL_PERL="$INTLTOOL_PERL" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_path_INTLTOOL_PERL="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - ;; -esac -fi -INTLTOOL_PERL=$ac_cv_path_INTLTOOL_PERL -if test -n "$INTLTOOL_PERL"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INTLTOOL_PERL" >&5 -$as_echo "$INTLTOOL_PERL" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -if test -z "$INTLTOOL_PERL"; then - as_fn_error $? "perl not found" "$LINENO" 5 -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for perl >= 5.8.1" >&5 -$as_echo_n "checking for perl >= 5.8.1... " >&6; } -$INTLTOOL_PERL -e "use 5.8.1;" > /dev/null 2>&1 -if test $? -ne 0; then - as_fn_error $? "perl 5.8.1 is required for intltool" "$LINENO" 5 -else - IT_PERL_VERSION="`$INTLTOOL_PERL -e \"printf '%vd', $^V\"`" - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $IT_PERL_VERSION" >&5 -$as_echo "$IT_PERL_VERSION" >&6; } -fi -if test "x" != "xno-xml"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for XML::Parser" >&5 -$as_echo_n "checking for XML::Parser... " >&6; } - if `$INTLTOOL_PERL -e "require XML::Parser" 2>/dev/null`; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: ok" >&5 -$as_echo "ok" >&6; } - else - as_fn_error $? "XML::Parser perl module is required for intltool" "$LINENO" 5 - fi -fi - -# Substitute ALL_LINGUAS so we can use it in po/Makefile - - -# Set DATADIRNAME correctly if it is not set yet -# (copied from glib-gettext.m4) -if test -z "$DATADIRNAME"; then - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ -extern int _nl_msg_cat_cntr; - return _nl_msg_cat_cntr - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - DATADIRNAME=share -else - case $host in - *-*-solaris*) - ac_fn_c_check_func "$LINENO" "bind_textdomain_codeset" "ac_cv_func_bind_textdomain_codeset" -if test "x$ac_cv_func_bind_textdomain_codeset" = xyes; then : - DATADIRNAME=share -else - DATADIRNAME=lib -fi - - ;; - *) - DATADIRNAME=lib - ;; - esac -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -fi - - - - - - - - GETTEXT_MACRO_VERSION=0.18 - - - - -# Prepare PATH_SEPARATOR. -# The user is always right. -if test "${PATH_SEPARATOR+set}" != set; then - echo "#! /bin/sh" >conf$$.sh - echo "exit 0" >>conf$$.sh - chmod +x conf$$.sh - if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then - PATH_SEPARATOR=';' - else - PATH_SEPARATOR=: - fi - rm -f conf$$.sh -fi - -# Find out how to test for executable files. Don't use a zero-byte file, -# as systems may use methods other than mode bits to determine executability. -cat >conf$$.file <<_ASEOF -#! /bin/sh -exit 0 -_ASEOF -chmod +x conf$$.file -if test -x conf$$.file >/dev/null 2>&1; then - ac_executable_p="test -x" -else - ac_executable_p="test -f" -fi -rm -f conf$$.file - -# Extract the first word of "msgfmt", so it can be a program name with args. -set dummy msgfmt; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_MSGFMT+:} false; then : - $as_echo_n "(cached) " >&6 -else - case "$MSGFMT" in - [\\/]* | ?:[\\/]*) - ac_cv_path_MSGFMT="$MSGFMT" # Let the user override the test with a path. - ;; - *) - ac_save_IFS="$IFS"; IFS=$PATH_SEPARATOR - for ac_dir in $PATH; do - IFS="$ac_save_IFS" - test -z "$ac_dir" && ac_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $ac_executable_p "$ac_dir/$ac_word$ac_exec_ext"; then - echo "$as_me: trying $ac_dir/$ac_word..." >&5 - if $ac_dir/$ac_word --statistics /dev/null >&5 2>&1 && - (if $ac_dir/$ac_word --statistics /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi); then - ac_cv_path_MSGFMT="$ac_dir/$ac_word$ac_exec_ext" - break 2 - fi - fi - done - done - IFS="$ac_save_IFS" - test -z "$ac_cv_path_MSGFMT" && ac_cv_path_MSGFMT=":" - ;; -esac -fi -MSGFMT="$ac_cv_path_MSGFMT" -if test "$MSGFMT" != ":"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MSGFMT" >&5 -$as_echo "$MSGFMT" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - # Extract the first word of "gmsgfmt", so it can be a program name with args. -set dummy gmsgfmt; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_GMSGFMT+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $GMSGFMT in - [\\/]* | ?:[\\/]*) - ac_cv_path_GMSGFMT="$GMSGFMT" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_path_GMSGFMT="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - test -z "$ac_cv_path_GMSGFMT" && ac_cv_path_GMSGFMT="$MSGFMT" - ;; -esac -fi -GMSGFMT=$ac_cv_path_GMSGFMT -if test -n "$GMSGFMT"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GMSGFMT" >&5 -$as_echo "$GMSGFMT" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - - case `$MSGFMT --version | sed 1q | sed -e 's,^[^0-9]*,,'` in - '' | 0.[0-9] | 0.[0-9].* | 0.1[0-4] | 0.1[0-4].*) MSGFMT_015=: ;; - *) MSGFMT_015=$MSGFMT ;; - esac - - case `$GMSGFMT --version | sed 1q | sed -e 's,^[^0-9]*,,'` in - '' | 0.[0-9] | 0.[0-9].* | 0.1[0-4] | 0.1[0-4].*) GMSGFMT_015=: ;; - *) GMSGFMT_015=$GMSGFMT ;; - esac - - - -# Prepare PATH_SEPARATOR. -# The user is always right. -if test "${PATH_SEPARATOR+set}" != set; then - echo "#! /bin/sh" >conf$$.sh - echo "exit 0" >>conf$$.sh - chmod +x conf$$.sh - if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then - PATH_SEPARATOR=';' - else - PATH_SEPARATOR=: - fi - rm -f conf$$.sh -fi - -# Find out how to test for executable files. Don't use a zero-byte file, -# as systems may use methods other than mode bits to determine executability. -cat >conf$$.file <<_ASEOF -#! /bin/sh -exit 0 -_ASEOF -chmod +x conf$$.file -if test -x conf$$.file >/dev/null 2>&1; then - ac_executable_p="test -x" -else - ac_executable_p="test -f" -fi -rm -f conf$$.file - -# Extract the first word of "xgettext", so it can be a program name with args. -set dummy xgettext; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_XGETTEXT+:} false; then : - $as_echo_n "(cached) " >&6 -else - case "$XGETTEXT" in - [\\/]* | ?:[\\/]*) - ac_cv_path_XGETTEXT="$XGETTEXT" # Let the user override the test with a path. - ;; - *) - ac_save_IFS="$IFS"; IFS=$PATH_SEPARATOR - for ac_dir in $PATH; do - IFS="$ac_save_IFS" - test -z "$ac_dir" && ac_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $ac_executable_p "$ac_dir/$ac_word$ac_exec_ext"; then - echo "$as_me: trying $ac_dir/$ac_word..." >&5 - if $ac_dir/$ac_word --omit-header --copyright-holder= --msgid-bugs-address= /dev/null >&5 2>&1 && - (if $ac_dir/$ac_word --omit-header --copyright-holder= --msgid-bugs-address= /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi); then - ac_cv_path_XGETTEXT="$ac_dir/$ac_word$ac_exec_ext" - break 2 - fi - fi - done - done - IFS="$ac_save_IFS" - test -z "$ac_cv_path_XGETTEXT" && ac_cv_path_XGETTEXT=":" - ;; -esac -fi -XGETTEXT="$ac_cv_path_XGETTEXT" -if test "$XGETTEXT" != ":"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $XGETTEXT" >&5 -$as_echo "$XGETTEXT" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - rm -f messages.po - - case `$XGETTEXT --version | sed 1q | sed -e 's,^[^0-9]*,,'` in - '' | 0.[0-9] | 0.[0-9].* | 0.1[0-4] | 0.1[0-4].*) XGETTEXT_015=: ;; - *) XGETTEXT_015=$XGETTEXT ;; - esac - - - -# Prepare PATH_SEPARATOR. -# The user is always right. -if test "${PATH_SEPARATOR+set}" != set; then - echo "#! /bin/sh" >conf$$.sh - echo "exit 0" >>conf$$.sh - chmod +x conf$$.sh - if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then - PATH_SEPARATOR=';' - else - PATH_SEPARATOR=: - fi - rm -f conf$$.sh -fi - -# Find out how to test for executable files. Don't use a zero-byte file, -# as systems may use methods other than mode bits to determine executability. -cat >conf$$.file <<_ASEOF -#! /bin/sh -exit 0 -_ASEOF -chmod +x conf$$.file -if test -x conf$$.file >/dev/null 2>&1; then - ac_executable_p="test -x" -else - ac_executable_p="test -f" -fi -rm -f conf$$.file - -# Extract the first word of "msgmerge", so it can be a program name with args. -set dummy msgmerge; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_MSGMERGE+:} false; then : - $as_echo_n "(cached) " >&6 -else - case "$MSGMERGE" in - [\\/]* | ?:[\\/]*) - ac_cv_path_MSGMERGE="$MSGMERGE" # Let the user override the test with a path. - ;; - *) - ac_save_IFS="$IFS"; IFS=$PATH_SEPARATOR - for ac_dir in $PATH; do - IFS="$ac_save_IFS" - test -z "$ac_dir" && ac_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $ac_executable_p "$ac_dir/$ac_word$ac_exec_ext"; then - echo "$as_me: trying $ac_dir/$ac_word..." >&5 - if $ac_dir/$ac_word --update -q /dev/null /dev/null >&5 2>&1; then - ac_cv_path_MSGMERGE="$ac_dir/$ac_word$ac_exec_ext" - break 2 - fi - fi - done - done - IFS="$ac_save_IFS" - test -z "$ac_cv_path_MSGMERGE" && ac_cv_path_MSGMERGE=":" - ;; -esac -fi -MSGMERGE="$ac_cv_path_MSGMERGE" -if test "$MSGMERGE" != ":"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MSGMERGE" >&5 -$as_echo "$MSGMERGE" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$localedir" || localedir='${datadir}/locale' - - - test -n "${XGETTEXT_EXTRA_OPTIONS+set}" || XGETTEXT_EXTRA_OPTIONS= - - - ac_config_commands="$ac_config_commands po-directories" - - - - - - - - - - - - - - - - - - - - - - - - - - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for CFPreferencesCopyAppValue" >&5 -$as_echo_n "checking for CFPreferencesCopyAppValue... " >&6; } -if ${gt_cv_func_CFPreferencesCopyAppValue+:} false; then : - $as_echo_n "(cached) " >&6 -else - gt_save_LIBS="$LIBS" - LIBS="$LIBS -Wl,-framework -Wl,CoreFoundation" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include -int -main () -{ -CFPreferencesCopyAppValue(NULL, NULL) - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - gt_cv_func_CFPreferencesCopyAppValue=yes -else - gt_cv_func_CFPreferencesCopyAppValue=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext - LIBS="$gt_save_LIBS" -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $gt_cv_func_CFPreferencesCopyAppValue" >&5 -$as_echo "$gt_cv_func_CFPreferencesCopyAppValue" >&6; } - if test $gt_cv_func_CFPreferencesCopyAppValue = yes; then - -$as_echo "#define HAVE_CFPREFERENCESCOPYAPPVALUE 1" >>confdefs.h - - fi - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for CFLocaleCopyCurrent" >&5 -$as_echo_n "checking for CFLocaleCopyCurrent... " >&6; } -if ${gt_cv_func_CFLocaleCopyCurrent+:} false; then : - $as_echo_n "(cached) " >&6 -else - gt_save_LIBS="$LIBS" - LIBS="$LIBS -Wl,-framework -Wl,CoreFoundation" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include -int -main () -{ -CFLocaleCopyCurrent(); - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - gt_cv_func_CFLocaleCopyCurrent=yes -else - gt_cv_func_CFLocaleCopyCurrent=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext - LIBS="$gt_save_LIBS" -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $gt_cv_func_CFLocaleCopyCurrent" >&5 -$as_echo "$gt_cv_func_CFLocaleCopyCurrent" >&6; } - if test $gt_cv_func_CFLocaleCopyCurrent = yes; then - -$as_echo "#define HAVE_CFLOCALECOPYCURRENT 1" >>confdefs.h - - fi - INTL_MACOSX_LIBS= - if test $gt_cv_func_CFPreferencesCopyAppValue = yes || test $gt_cv_func_CFLocaleCopyCurrent = yes; then - INTL_MACOSX_LIBS="-Wl,-framework -Wl,CoreFoundation" - fi - - - - - - - LIBINTL= - LTLIBINTL= - POSUB= - - case " $gt_needs " in - *" need-formatstring-macros "*) gt_api_version=3 ;; - *" need-ngettext "*) gt_api_version=2 ;; - *) gt_api_version=1 ;; - esac - gt_func_gnugettext_libc="gt_cv_func_gnugettext${gt_api_version}_libc" - gt_func_gnugettext_libintl="gt_cv_func_gnugettext${gt_api_version}_libintl" - - if test "$USE_NLS" = "yes"; then - gt_use_preinstalled_gnugettext=no - - - if test $gt_api_version -ge 3; then - gt_revision_test_code=' -#ifndef __GNU_GETTEXT_SUPPORTED_REVISION -#define __GNU_GETTEXT_SUPPORTED_REVISION(major) ((major) == 0 ? 0 : -1) -#endif -typedef int array [2 * (__GNU_GETTEXT_SUPPORTED_REVISION(0) >= 1) - 1]; -' - else - gt_revision_test_code= - fi - if test $gt_api_version -ge 2; then - gt_expression_test_code=' + * ngettext ("", "", 0)' - else - gt_expression_test_code= - fi - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU gettext in libc" >&5 -$as_echo_n "checking for GNU gettext in libc... " >&6; } -if eval \${$gt_func_gnugettext_libc+:} false; then : - $as_echo_n "(cached) " >&6 -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include -$gt_revision_test_code -extern int _nl_msg_cat_cntr; -extern int *_nl_domain_bindings; -int -main () -{ -bindtextdomain ("", ""); -return * gettext ("")$gt_expression_test_code + _nl_msg_cat_cntr + *_nl_domain_bindings - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - eval "$gt_func_gnugettext_libc=yes" -else - eval "$gt_func_gnugettext_libc=no" -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -fi -eval ac_res=\$$gt_func_gnugettext_libc - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } - - if { eval "gt_val=\$$gt_func_gnugettext_libc"; test "$gt_val" != "yes"; }; then - - - - - - am_save_CPPFLAGS="$CPPFLAGS" - - for element in $INCICONV; do - haveit= - for x in $CPPFLAGS; do - - acl_save_prefix="$prefix" - prefix="$acl_final_prefix" - acl_save_exec_prefix="$exec_prefix" - exec_prefix="$acl_final_exec_prefix" - eval x=\"$x\" - exec_prefix="$acl_save_exec_prefix" - prefix="$acl_save_prefix" - - if test "X$x" = "X$element"; then - haveit=yes - break - fi - done - if test -z "$haveit"; then - CPPFLAGS="${CPPFLAGS}${CPPFLAGS:+ }$element" - fi - done - - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for iconv" >&5 -$as_echo_n "checking for iconv... " >&6; } -if ${am_cv_func_iconv+:} false; then : - $as_echo_n "(cached) " >&6 -else - - am_cv_func_iconv="no, consider installing GNU libiconv" - am_cv_lib_iconv=no - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include -#include -int -main () -{ -iconv_t cd = iconv_open("",""); - iconv(cd,NULL,NULL,NULL,NULL); - iconv_close(cd); - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - am_cv_func_iconv=yes -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext - if test "$am_cv_func_iconv" != yes; then - am_save_LIBS="$LIBS" - LIBS="$LIBS $LIBICONV" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include -#include -int -main () -{ -iconv_t cd = iconv_open("",""); - iconv(cd,NULL,NULL,NULL,NULL); - iconv_close(cd); - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - am_cv_lib_iconv=yes - am_cv_func_iconv=yes -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext - LIBS="$am_save_LIBS" - fi - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_func_iconv" >&5 -$as_echo "$am_cv_func_iconv" >&6; } - if test "$am_cv_func_iconv" = yes; then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for working iconv" >&5 -$as_echo_n "checking for working iconv... " >&6; } -if ${am_cv_func_iconv_works+:} false; then : - $as_echo_n "(cached) " >&6 -else - - am_save_LIBS="$LIBS" - if test $am_cv_lib_iconv = yes; then - LIBS="$LIBS $LIBICONV" - fi - if test "$cross_compiling" = yes; then : - case "$host_os" in - aix* | hpux*) am_cv_func_iconv_works="guessing no" ;; - *) am_cv_func_iconv_works="guessing yes" ;; - esac -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -#include -#include -int main () -{ - /* Test against AIX 5.1 bug: Failures are not distinguishable from successful - returns. */ - { - iconv_t cd_utf8_to_88591 = iconv_open ("ISO8859-1", "UTF-8"); - if (cd_utf8_to_88591 != (iconv_t)(-1)) - { - static const char input[] = "\342\202\254"; /* EURO SIGN */ - char buf[10]; - const char *inptr = input; - size_t inbytesleft = strlen (input); - char *outptr = buf; - size_t outbytesleft = sizeof (buf); - size_t res = iconv (cd_utf8_to_88591, - (char **) &inptr, &inbytesleft, - &outptr, &outbytesleft); - if (res == 0) - return 1; - } - } - /* Test against Solaris 10 bug: Failures are not distinguishable from - successful returns. */ - { - iconv_t cd_ascii_to_88591 = iconv_open ("ISO8859-1", "646"); - if (cd_ascii_to_88591 != (iconv_t)(-1)) - { - static const char input[] = "\263"; - char buf[10]; - const char *inptr = input; - size_t inbytesleft = strlen (input); - char *outptr = buf; - size_t outbytesleft = sizeof (buf); - size_t res = iconv (cd_ascii_to_88591, - (char **) &inptr, &inbytesleft, - &outptr, &outbytesleft); - if (res == 0) - return 1; - } - } -#if 0 /* This bug could be worked around by the caller. */ - /* Test against HP-UX 11.11 bug: Positive return value instead of 0. */ - { - iconv_t cd_88591_to_utf8 = iconv_open ("utf8", "iso88591"); - if (cd_88591_to_utf8 != (iconv_t)(-1)) - { - static const char input[] = "\304rger mit b\366sen B\374bchen ohne Augenma\337"; - char buf[50]; - const char *inptr = input; - size_t inbytesleft = strlen (input); - char *outptr = buf; - size_t outbytesleft = sizeof (buf); - size_t res = iconv (cd_88591_to_utf8, - (char **) &inptr, &inbytesleft, - &outptr, &outbytesleft); - if ((int)res > 0) - return 1; - } - } -#endif - /* Test against HP-UX 11.11 bug: No converter from EUC-JP to UTF-8 is - provided. */ - if (/* Try standardized names. */ - iconv_open ("UTF-8", "EUC-JP") == (iconv_t)(-1) - /* Try IRIX, OSF/1 names. */ - && iconv_open ("UTF-8", "eucJP") == (iconv_t)(-1) - /* Try AIX names. */ - && iconv_open ("UTF-8", "IBM-eucJP") == (iconv_t)(-1) - /* Try HP-UX names. */ - && iconv_open ("utf8", "eucJP") == (iconv_t)(-1)) - return 1; - return 0; -} -_ACEOF -if ac_fn_c_try_run "$LINENO"; then : - am_cv_func_iconv_works=yes -else - am_cv_func_iconv_works=no -fi -rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ - conftest.$ac_objext conftest.beam conftest.$ac_ext -fi - - LIBS="$am_save_LIBS" - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_func_iconv_works" >&5 -$as_echo "$am_cv_func_iconv_works" >&6; } - case "$am_cv_func_iconv_works" in - *no) am_func_iconv=no am_cv_lib_iconv=no ;; - *) am_func_iconv=yes ;; - esac - else - am_func_iconv=no am_cv_lib_iconv=no - fi - if test "$am_func_iconv" = yes; then - -$as_echo "#define HAVE_ICONV 1" >>confdefs.h - - fi - if test "$am_cv_lib_iconv" = yes; then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to link with libiconv" >&5 -$as_echo_n "checking how to link with libiconv... " >&6; } - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LIBICONV" >&5 -$as_echo "$LIBICONV" >&6; } - else - CPPFLAGS="$am_save_CPPFLAGS" - LIBICONV= - LTLIBICONV= - fi - - - - - - - - - - - - use_additional=yes - - acl_save_prefix="$prefix" - prefix="$acl_final_prefix" - acl_save_exec_prefix="$exec_prefix" - exec_prefix="$acl_final_exec_prefix" - - eval additional_includedir=\"$includedir\" - eval additional_libdir=\"$libdir\" - - exec_prefix="$acl_save_exec_prefix" - prefix="$acl_save_prefix" - - -# Check whether --with-libintl-prefix was given. -if test "${with_libintl_prefix+set}" = set; then : - withval=$with_libintl_prefix; - if test "X$withval" = "Xno"; then - use_additional=no - else - if test "X$withval" = "X"; then - - acl_save_prefix="$prefix" - prefix="$acl_final_prefix" - acl_save_exec_prefix="$exec_prefix" - exec_prefix="$acl_final_exec_prefix" - - eval additional_includedir=\"$includedir\" - eval additional_libdir=\"$libdir\" - - exec_prefix="$acl_save_exec_prefix" - prefix="$acl_save_prefix" - - else - additional_includedir="$withval/include" - additional_libdir="$withval/$acl_libdirstem" - if test "$acl_libdirstem2" != "$acl_libdirstem" \ - && ! test -d "$withval/$acl_libdirstem"; then - additional_libdir="$withval/$acl_libdirstem2" - fi - fi - fi - -fi - - LIBINTL= - LTLIBINTL= - INCINTL= - LIBINTL_PREFIX= - HAVE_LIBINTL= - rpathdirs= - ltrpathdirs= - names_already_handled= - names_next_round='intl ' - while test -n "$names_next_round"; do - names_this_round="$names_next_round" - names_next_round= - for name in $names_this_round; do - already_handled= - for n in $names_already_handled; do - if test "$n" = "$name"; then - already_handled=yes - break - fi - done - if test -z "$already_handled"; then - names_already_handled="$names_already_handled $name" - uppername=`echo "$name" | sed -e 'y|abcdefghijklmnopqrstuvwxyz./-|ABCDEFGHIJKLMNOPQRSTUVWXYZ___|'` - eval value=\"\$HAVE_LIB$uppername\" - if test -n "$value"; then - if test "$value" = yes; then - eval value=\"\$LIB$uppername\" - test -z "$value" || LIBINTL="${LIBINTL}${LIBINTL:+ }$value" - eval value=\"\$LTLIB$uppername\" - test -z "$value" || LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }$value" - else - : - fi - else - found_dir= - found_la= - found_so= - found_a= - eval libname=\"$acl_libname_spec\" # typically: libname=lib$name - if test -n "$acl_shlibext"; then - shrext=".$acl_shlibext" # typically: shrext=.so - else - shrext= - fi - if test $use_additional = yes; then - dir="$additional_libdir" - if test -n "$acl_shlibext"; then - if test -f "$dir/$libname$shrext"; then - found_dir="$dir" - found_so="$dir/$libname$shrext" - else - if test "$acl_library_names_spec" = '$libname$shrext$versuffix'; then - ver=`(cd "$dir" && \ - for f in "$libname$shrext".*; do echo "$f"; done \ - | sed -e "s,^$libname$shrext\\\\.,," \ - | sort -t '.' -n -r -k1,1 -k2,2 -k3,3 -k4,4 -k5,5 \ - | sed 1q ) 2>/dev/null` - if test -n "$ver" && test -f "$dir/$libname$shrext.$ver"; then - found_dir="$dir" - found_so="$dir/$libname$shrext.$ver" - fi - else - eval library_names=\"$acl_library_names_spec\" - for f in $library_names; do - if test -f "$dir/$f"; then - found_dir="$dir" - found_so="$dir/$f" - break - fi - done - fi - fi - fi - if test "X$found_dir" = "X"; then - if test -f "$dir/$libname.$acl_libext"; then - found_dir="$dir" - found_a="$dir/$libname.$acl_libext" - fi - fi - if test "X$found_dir" != "X"; then - if test -f "$dir/$libname.la"; then - found_la="$dir/$libname.la" - fi - fi - fi - if test "X$found_dir" = "X"; then - for x in $LDFLAGS $LTLIBINTL; do - - acl_save_prefix="$prefix" - prefix="$acl_final_prefix" - acl_save_exec_prefix="$exec_prefix" - exec_prefix="$acl_final_exec_prefix" - eval x=\"$x\" - exec_prefix="$acl_save_exec_prefix" - prefix="$acl_save_prefix" - - case "$x" in - -L*) - dir=`echo "X$x" | sed -e 's/^X-L//'` - if test -n "$acl_shlibext"; then - if test -f "$dir/$libname$shrext"; then - found_dir="$dir" - found_so="$dir/$libname$shrext" - else - if test "$acl_library_names_spec" = '$libname$shrext$versuffix'; then - ver=`(cd "$dir" && \ - for f in "$libname$shrext".*; do echo "$f"; done \ - | sed -e "s,^$libname$shrext\\\\.,," \ - | sort -t '.' -n -r -k1,1 -k2,2 -k3,3 -k4,4 -k5,5 \ - | sed 1q ) 2>/dev/null` - if test -n "$ver" && test -f "$dir/$libname$shrext.$ver"; then - found_dir="$dir" - found_so="$dir/$libname$shrext.$ver" - fi - else - eval library_names=\"$acl_library_names_spec\" - for f in $library_names; do - if test -f "$dir/$f"; then - found_dir="$dir" - found_so="$dir/$f" - break - fi - done - fi - fi - fi - if test "X$found_dir" = "X"; then - if test -f "$dir/$libname.$acl_libext"; then - found_dir="$dir" - found_a="$dir/$libname.$acl_libext" - fi - fi - if test "X$found_dir" != "X"; then - if test -f "$dir/$libname.la"; then - found_la="$dir/$libname.la" - fi - fi - ;; - esac - if test "X$found_dir" != "X"; then - break - fi - done - fi - if test "X$found_dir" != "X"; then - LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }-L$found_dir -l$name" - if test "X$found_so" != "X"; then - if test "$enable_rpath" = no \ - || test "X$found_dir" = "X/usr/$acl_libdirstem" \ - || test "X$found_dir" = "X/usr/$acl_libdirstem2"; then - LIBINTL="${LIBINTL}${LIBINTL:+ }$found_so" - else - haveit= - for x in $ltrpathdirs; do - if test "X$x" = "X$found_dir"; then - haveit=yes - break - fi - done - if test -z "$haveit"; then - ltrpathdirs="$ltrpathdirs $found_dir" - fi - if test "$acl_hardcode_direct" = yes; then - LIBINTL="${LIBINTL}${LIBINTL:+ }$found_so" - else - if test -n "$acl_hardcode_libdir_flag_spec" && test "$acl_hardcode_minus_L" = no; then - LIBINTL="${LIBINTL}${LIBINTL:+ }$found_so" - haveit= - for x in $rpathdirs; do - if test "X$x" = "X$found_dir"; then - haveit=yes - break - fi - done - if test -z "$haveit"; then - rpathdirs="$rpathdirs $found_dir" - fi - else - haveit= - for x in $LDFLAGS $LIBINTL; do - - acl_save_prefix="$prefix" - prefix="$acl_final_prefix" - acl_save_exec_prefix="$exec_prefix" - exec_prefix="$acl_final_exec_prefix" - eval x=\"$x\" - exec_prefix="$acl_save_exec_prefix" - prefix="$acl_save_prefix" - - if test "X$x" = "X-L$found_dir"; then - haveit=yes - break - fi - done - if test -z "$haveit"; then - LIBINTL="${LIBINTL}${LIBINTL:+ }-L$found_dir" - fi - if test "$acl_hardcode_minus_L" != no; then - LIBINTL="${LIBINTL}${LIBINTL:+ }$found_so" - else - LIBINTL="${LIBINTL}${LIBINTL:+ }-l$name" - fi - fi - fi - fi - else - if test "X$found_a" != "X"; then - LIBINTL="${LIBINTL}${LIBINTL:+ }$found_a" - else - LIBINTL="${LIBINTL}${LIBINTL:+ }-L$found_dir -l$name" - fi - fi - additional_includedir= - case "$found_dir" in - */$acl_libdirstem | */$acl_libdirstem/) - basedir=`echo "X$found_dir" | sed -e 's,^X,,' -e "s,/$acl_libdirstem/"'*$,,'` - if test "$name" = 'intl'; then - LIBINTL_PREFIX="$basedir" - fi - additional_includedir="$basedir/include" - ;; - */$acl_libdirstem2 | */$acl_libdirstem2/) - basedir=`echo "X$found_dir" | sed -e 's,^X,,' -e "s,/$acl_libdirstem2/"'*$,,'` - if test "$name" = 'intl'; then - LIBINTL_PREFIX="$basedir" - fi - additional_includedir="$basedir/include" - ;; - esac - if test "X$additional_includedir" != "X"; then - if test "X$additional_includedir" != "X/usr/include"; then - haveit= - if test "X$additional_includedir" = "X/usr/local/include"; then - if test -n "$GCC"; then - case $host_os in - linux* | gnu* | k*bsd*-gnu) haveit=yes;; - esac - fi - fi - if test -z "$haveit"; then - for x in $CPPFLAGS $INCINTL; do - - acl_save_prefix="$prefix" - prefix="$acl_final_prefix" - acl_save_exec_prefix="$exec_prefix" - exec_prefix="$acl_final_exec_prefix" - eval x=\"$x\" - exec_prefix="$acl_save_exec_prefix" - prefix="$acl_save_prefix" - - if test "X$x" = "X-I$additional_includedir"; then - haveit=yes - break - fi - done - if test -z "$haveit"; then - if test -d "$additional_includedir"; then - INCINTL="${INCINTL}${INCINTL:+ }-I$additional_includedir" - fi - fi - fi - fi - fi - if test -n "$found_la"; then - save_libdir="$libdir" - case "$found_la" in - */* | *\\*) . "$found_la" ;; - *) . "./$found_la" ;; - esac - libdir="$save_libdir" - for dep in $dependency_libs; do - case "$dep" in - -L*) - additional_libdir=`echo "X$dep" | sed -e 's/^X-L//'` - if test "X$additional_libdir" != "X/usr/$acl_libdirstem" \ - && test "X$additional_libdir" != "X/usr/$acl_libdirstem2"; then - haveit= - if test "X$additional_libdir" = "X/usr/local/$acl_libdirstem" \ - || test "X$additional_libdir" = "X/usr/local/$acl_libdirstem2"; then - if test -n "$GCC"; then - case $host_os in - linux* | gnu* | k*bsd*-gnu) haveit=yes;; - esac - fi - fi - if test -z "$haveit"; then - haveit= - for x in $LDFLAGS $LIBINTL; do - - acl_save_prefix="$prefix" - prefix="$acl_final_prefix" - acl_save_exec_prefix="$exec_prefix" - exec_prefix="$acl_final_exec_prefix" - eval x=\"$x\" - exec_prefix="$acl_save_exec_prefix" - prefix="$acl_save_prefix" - - if test "X$x" = "X-L$additional_libdir"; then - haveit=yes - break - fi - done - if test -z "$haveit"; then - if test -d "$additional_libdir"; then - LIBINTL="${LIBINTL}${LIBINTL:+ }-L$additional_libdir" - fi - fi - haveit= - for x in $LDFLAGS $LTLIBINTL; do - - acl_save_prefix="$prefix" - prefix="$acl_final_prefix" - acl_save_exec_prefix="$exec_prefix" - exec_prefix="$acl_final_exec_prefix" - eval x=\"$x\" - exec_prefix="$acl_save_exec_prefix" - prefix="$acl_save_prefix" - - if test "X$x" = "X-L$additional_libdir"; then - haveit=yes - break - fi - done - if test -z "$haveit"; then - if test -d "$additional_libdir"; then - LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }-L$additional_libdir" - fi - fi - fi - fi - ;; - -R*) - dir=`echo "X$dep" | sed -e 's/^X-R//'` - if test "$enable_rpath" != no; then - haveit= - for x in $rpathdirs; do - if test "X$x" = "X$dir"; then - haveit=yes - break - fi - done - if test -z "$haveit"; then - rpathdirs="$rpathdirs $dir" - fi - haveit= - for x in $ltrpathdirs; do - if test "X$x" = "X$dir"; then - haveit=yes - break - fi - done - if test -z "$haveit"; then - ltrpathdirs="$ltrpathdirs $dir" - fi - fi - ;; - -l*) - names_next_round="$names_next_round "`echo "X$dep" | sed -e 's/^X-l//'` - ;; - *.la) - names_next_round="$names_next_round "`echo "X$dep" | sed -e 's,^X.*/,,' -e 's,^lib,,' -e 's,\.la$,,'` - ;; - *) - LIBINTL="${LIBINTL}${LIBINTL:+ }$dep" - LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }$dep" - ;; - esac - done - fi - else - LIBINTL="${LIBINTL}${LIBINTL:+ }-l$name" - LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }-l$name" - fi - fi - fi - done - done - if test "X$rpathdirs" != "X"; then - if test -n "$acl_hardcode_libdir_separator"; then - alldirs= - for found_dir in $rpathdirs; do - alldirs="${alldirs}${alldirs:+$acl_hardcode_libdir_separator}$found_dir" - done - acl_save_libdir="$libdir" - libdir="$alldirs" - eval flag=\"$acl_hardcode_libdir_flag_spec\" - libdir="$acl_save_libdir" - LIBINTL="${LIBINTL}${LIBINTL:+ }$flag" - else - for found_dir in $rpathdirs; do - acl_save_libdir="$libdir" - libdir="$found_dir" - eval flag=\"$acl_hardcode_libdir_flag_spec\" - libdir="$acl_save_libdir" - LIBINTL="${LIBINTL}${LIBINTL:+ }$flag" - done - fi - fi - if test "X$ltrpathdirs" != "X"; then - for found_dir in $ltrpathdirs; do - LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }-R$found_dir" - done - fi - - - - - - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU gettext in libintl" >&5 -$as_echo_n "checking for GNU gettext in libintl... " >&6; } -if eval \${$gt_func_gnugettext_libintl+:} false; then : - $as_echo_n "(cached) " >&6 -else - gt_save_CPPFLAGS="$CPPFLAGS" - CPPFLAGS="$CPPFLAGS $INCINTL" - gt_save_LIBS="$LIBS" - LIBS="$LIBS $LIBINTL" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include -$gt_revision_test_code -extern int _nl_msg_cat_cntr; -extern -#ifdef __cplusplus -"C" -#endif -const char *_nl_expand_alias (const char *); -int -main () -{ -bindtextdomain ("", ""); -return * gettext ("")$gt_expression_test_code + _nl_msg_cat_cntr + *_nl_expand_alias ("") - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - eval "$gt_func_gnugettext_libintl=yes" -else - eval "$gt_func_gnugettext_libintl=no" -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext - if { eval "gt_val=\$$gt_func_gnugettext_libintl"; test "$gt_val" != yes; } && test -n "$LIBICONV"; then - LIBS="$LIBS $LIBICONV" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include -$gt_revision_test_code -extern int _nl_msg_cat_cntr; -extern -#ifdef __cplusplus -"C" -#endif -const char *_nl_expand_alias (const char *); -int -main () -{ -bindtextdomain ("", ""); -return * gettext ("")$gt_expression_test_code + _nl_msg_cat_cntr + *_nl_expand_alias ("") - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - LIBINTL="$LIBINTL $LIBICONV" - LTLIBINTL="$LTLIBINTL $LTLIBICONV" - eval "$gt_func_gnugettext_libintl=yes" - -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext - fi - CPPFLAGS="$gt_save_CPPFLAGS" - LIBS="$gt_save_LIBS" -fi -eval ac_res=\$$gt_func_gnugettext_libintl - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } - fi - - if { eval "gt_val=\$$gt_func_gnugettext_libc"; test "$gt_val" = "yes"; } \ - || { { eval "gt_val=\$$gt_func_gnugettext_libintl"; test "$gt_val" = "yes"; } \ - && test "$PACKAGE" != gettext-runtime \ - && test "$PACKAGE" != gettext-tools; }; then - gt_use_preinstalled_gnugettext=yes - else - LIBINTL= - LTLIBINTL= - INCINTL= - fi - - - - if test -n "$INTL_MACOSX_LIBS"; then - if test "$gt_use_preinstalled_gnugettext" = "yes" \ - || test "$nls_cv_use_gnu_gettext" = "yes"; then - LIBINTL="$LIBINTL $INTL_MACOSX_LIBS" - LTLIBINTL="$LTLIBINTL $INTL_MACOSX_LIBS" - fi - fi - - if test "$gt_use_preinstalled_gnugettext" = "yes" \ - || test "$nls_cv_use_gnu_gettext" = "yes"; then - -$as_echo "#define ENABLE_NLS 1" >>confdefs.h - - else - USE_NLS=no - fi - fi - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to use NLS" >&5 -$as_echo_n "checking whether to use NLS... " >&6; } - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_NLS" >&5 -$as_echo "$USE_NLS" >&6; } - if test "$USE_NLS" = "yes"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking where the gettext function comes from" >&5 -$as_echo_n "checking where the gettext function comes from... " >&6; } - if test "$gt_use_preinstalled_gnugettext" = "yes"; then - if { eval "gt_val=\$$gt_func_gnugettext_libintl"; test "$gt_val" = "yes"; }; then - gt_source="external libintl" - else - gt_source="libc" - fi - else - gt_source="included intl directory" - fi - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gt_source" >&5 -$as_echo "$gt_source" >&6; } - fi - - if test "$USE_NLS" = "yes"; then - - if test "$gt_use_preinstalled_gnugettext" = "yes"; then - if { eval "gt_val=\$$gt_func_gnugettext_libintl"; test "$gt_val" = "yes"; }; then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to link with libintl" >&5 -$as_echo_n "checking how to link with libintl... " >&6; } - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LIBINTL" >&5 -$as_echo "$LIBINTL" >&6; } - - for element in $INCINTL; do - haveit= - for x in $CPPFLAGS; do - - acl_save_prefix="$prefix" - prefix="$acl_final_prefix" - acl_save_exec_prefix="$exec_prefix" - exec_prefix="$acl_final_exec_prefix" - eval x=\"$x\" - exec_prefix="$acl_save_exec_prefix" - prefix="$acl_save_prefix" - - if test "X$x" = "X$element"; then - haveit=yes - break - fi - done - if test -z "$haveit"; then - CPPFLAGS="${CPPFLAGS}${CPPFLAGS:+ }$element" - fi - done - - fi - - -$as_echo "#define HAVE_GETTEXT 1" >>confdefs.h - - -$as_echo "#define HAVE_DCGETTEXT 1" >>confdefs.h - - fi - - POSUB=po - fi - - - - INTLLIBS="$LIBINTL" - - - - - - - - - -#dirty workaround for old intltool autoconf and automake -if test "x$DATADIRNAME" = "x"; then - DATADIRNAME=share - -fi - -ac_config_files="$ac_config_files Makefile fcitx.spec doc/Makefile doc/man/Makefile data/Makefile data/table/Makefile skin/Makefile skin/default/Makefile skin/dark/Makefile skin/classic/Makefile png/Makefile lib/Makefile src/Makefile src/core/Makefile src/im/Makefile src/im/pinyin/Makefile src/im/qw/Makefile src/im/special/Makefile src/im/extra/Makefile src/im/table/Makefile src/interface/Makefile src/ui/Makefile src/tools/Makefile src/fcitx-config/Makefile src/fcitx-config/fcitx-config.pc src/core/fcitx.pc tools/Makefile test/Makefile po/Makefile.in" - -cat >confcache <<\_ACEOF -# This file is a shell script that caches the results of configure -# tests run on this system so they can be shared between configure -# scripts and configure runs, see configure's option --config-cache. -# It is not useful on other systems. If it contains results you don't -# want to keep, you may remove or edit it. -# -# config.status only pays attention to the cache file if you give it -# the --recheck option to rerun configure. -# -# `ac_cv_env_foo' variables (set or unset) will be overridden when -# loading this file, other *unset* `ac_cv_foo' will be assigned the -# following values. - -_ACEOF - -# The following way of writing the cache mishandles newlines in values, -# but we know of no workaround that is simple, portable, and efficient. -# So, we kill variables containing newlines. -# Ultrix sh set writes to stderr and can't be redirected directly, -# and sets the high bit in the cache file unless we assign to the vars. -( - for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do - eval ac_val=\$$ac_var - case $ac_val in #( - *${as_nl}*) - case $ac_var in #( - *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 -$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; - esac - case $ac_var in #( - _ | IFS | as_nl) ;; #( - BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( - *) { eval $ac_var=; unset $ac_var;} ;; - esac ;; - esac - done - - (set) 2>&1 | - case $as_nl`(ac_space=' '; set) 2>&1` in #( - *${as_nl}ac_space=\ *) - # `set' does not quote correctly, so add quotes: double-quote - # substitution turns \\\\ into \\, and sed turns \\ into \. - sed -n \ - "s/'/'\\\\''/g; - s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p" - ;; #( - *) - # `set' quotes correctly as required by POSIX, so do not add quotes. - sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" - ;; - esac | - sort -) | - sed ' - /^ac_cv_env_/b end - t clear - :clear - s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/ - t end - s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/ - :end' >>confcache -if diff "$cache_file" confcache >/dev/null 2>&1; then :; else - if test -w "$cache_file"; then - if test "x$cache_file" != "x/dev/null"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5 -$as_echo "$as_me: updating cache $cache_file" >&6;} - if test ! -f "$cache_file" || test -h "$cache_file"; then - cat confcache >"$cache_file" - else - case $cache_file in #( - */* | ?:*) - mv -f confcache "$cache_file"$$ && - mv -f "$cache_file"$$ "$cache_file" ;; #( - *) - mv -f confcache "$cache_file" ;; - esac - fi - fi - else - { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5 -$as_echo "$as_me: not updating unwritable cache $cache_file" >&6;} - fi -fi -rm -f confcache - -test "x$prefix" = xNONE && prefix=$ac_default_prefix -# Let make expand exec_prefix. -test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' - -DEFS=-DHAVE_CONFIG_H - -ac_libobjs= -ac_ltlibobjs= -U= -for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue - # 1. Remove the extension, and $U if already installed. - ac_script='s/\$U\././;s/\.o$//;s/\.obj$//' - ac_i=`$as_echo "$ac_i" | sed "$ac_script"` - # 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR - # will be set to the directory where LIBOBJS objects are built. - as_fn_append ac_libobjs " \${LIBOBJDIR}$ac_i\$U.$ac_objext" - as_fn_append ac_ltlibobjs " \${LIBOBJDIR}$ac_i"'$U.lo' -done -LIBOBJS=$ac_libobjs - -LTLIBOBJS=$ac_ltlibobjs - - - if test -n "$EXEEXT"; then - am__EXEEXT_TRUE= - am__EXEEXT_FALSE='#' -else - am__EXEEXT_TRUE='#' - am__EXEEXT_FALSE= -fi - -if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then - as_fn_error $? "conditional \"AMDEP\" was never defined. -Usually this means the macro was only invoked conditionally." "$LINENO" 5 -fi -if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then - as_fn_error $? "conditional \"am__fastdepCC\" was never defined. -Usually this means the macro was only invoked conditionally." "$LINENO" 5 -fi -if test -z "${HAVE_PANGOCAIRO_TRUE}" && test -z "${HAVE_PANGOCAIRO_FALSE}"; then - as_fn_error $? "conditional \"HAVE_PANGOCAIRO\" was never defined. -Usually this means the macro was only invoked conditionally." "$LINENO" 5 -fi -if test -z "${ENABLE_DEBUG_TRUE}" && test -z "${ENABLE_DEBUG_FALSE}"; then - as_fn_error $? "conditional \"ENABLE_DEBUG\" was never defined. -Usually this means the macro was only invoked conditionally." "$LINENO" 5 -fi -if test -z "${ENABLE_TRAY_TRUE}" && test -z "${ENABLE_TRAY_FALSE}"; then - as_fn_error $? "conditional \"ENABLE_TRAY\" was never defined. -Usually this means the macro was only invoked conditionally." "$LINENO" 5 -fi -if test -z "${ENABLE_RECORDING_TRUE}" && test -z "${ENABLE_RECORDING_FALSE}"; then - as_fn_error $? "conditional \"ENABLE_RECORDING\" was never defined. -Usually this means the macro was only invoked conditionally." "$LINENO" 5 -fi -if test -z "${HAVE_DBUS_TRUE}" && test -z "${HAVE_DBUS_FALSE}"; then - as_fn_error $? "conditional \"HAVE_DBUS\" was never defined. -Usually this means the macro was only invoked conditionally." "$LINENO" 5 -fi -if test -z "${ENABLE_TABLE_DATA_TRUE}" && test -z "${ENABLE_TABLE_DATA_FALSE}"; then - as_fn_error $? "conditional \"ENABLE_TABLE_DATA\" was never defined. -Usually this means the macro was only invoked conditionally." "$LINENO" 5 -fi - - ac_config_commands="$ac_config_commands po/stamp-it" - - - -: "${CONFIG_STATUS=./config.status}" -ac_write_fail=0 -ac_clean_files_save=$ac_clean_files -ac_clean_files="$ac_clean_files $CONFIG_STATUS" -{ $as_echo "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5 -$as_echo "$as_me: creating $CONFIG_STATUS" >&6;} -as_write_fail=0 -cat >$CONFIG_STATUS <<_ASEOF || as_write_fail=1 -#! $SHELL -# Generated by $as_me. -# Run this file to recreate the current configuration. -# Compiler output produced by configure, useful for debugging -# configure, is in config.log if it exists. - -debug=false -ac_cs_recheck=false -ac_cs_silent=false - -SHELL=\${CONFIG_SHELL-$SHELL} -export SHELL -_ASEOF -cat >>$CONFIG_STATUS <<\_ASEOF || as_write_fail=1 -## -------------------- ## -## M4sh Initialization. ## -## -------------------- ## - -# Be more Bourne compatible -DUALCASE=1; export DUALCASE # for MKS sh -if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : - emulate sh - NULLCMD=: - # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which - # is contrary to our usage. Disable this feature. - alias -g '${1+"$@"}'='"$@"' - setopt NO_GLOB_SUBST -else - case `(set -o) 2>/dev/null` in #( - *posix*) : - set -o posix ;; #( - *) : - ;; -esac -fi - - -as_nl=' -' -export as_nl -# Printing a long string crashes Solaris 7 /usr/bin/printf. -as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' -as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo -as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo -# Prefer a ksh shell builtin over an external printf program on Solaris, -# but without wasting forks for bash or zsh. -if test -z "$BASH_VERSION$ZSH_VERSION" \ - && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then - as_echo='print -r --' - as_echo_n='print -rn --' -elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then - as_echo='printf %s\n' - as_echo_n='printf %s' -else - if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then - as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' - as_echo_n='/usr/ucb/echo -n' - else - as_echo_body='eval expr "X$1" : "X\\(.*\\)"' - as_echo_n_body='eval - arg=$1; - case $arg in #( - *"$as_nl"*) - expr "X$arg" : "X\\(.*\\)$as_nl"; - arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; - esac; - expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" - ' - export as_echo_n_body - as_echo_n='sh -c $as_echo_n_body as_echo' - fi - export as_echo_body - as_echo='sh -c $as_echo_body as_echo' -fi - -# The user is always right. -if test "${PATH_SEPARATOR+set}" != set; then - PATH_SEPARATOR=: - (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { - (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || - PATH_SEPARATOR=';' - } -fi - - -# IFS -# We need space, tab and new line, in precisely that order. Quoting is -# there to prevent editors from complaining about space-tab. -# (If _AS_PATH_WALK were called with IFS unset, it would disable word -# splitting by setting IFS to empty value.) -IFS=" "" $as_nl" - -# Find who we are. Look in the path if we contain no directory separator. -as_myself= -case $0 in #(( - *[\\/]* ) as_myself=$0 ;; - *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break - done -IFS=$as_save_IFS - - ;; -esac -# We did not find ourselves, most probably we were run as `sh COMMAND' -# in which case we are not to be found in the path. -if test "x$as_myself" = x; then - as_myself=$0 -fi -if test ! -f "$as_myself"; then - $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 - exit 1 -fi - -# Unset variables that we do not need and which cause bugs (e.g. in -# pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" -# suppresses any "Segmentation fault" message there. '((' could -# trigger a bug in pdksh 5.2.14. -for as_var in BASH_ENV ENV MAIL MAILPATH -do eval test x\${$as_var+set} = xset \ - && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : -done -PS1='$ ' -PS2='> ' -PS4='+ ' - -# NLS nuisances. -LC_ALL=C -export LC_ALL -LANGUAGE=C -export LANGUAGE - -# CDPATH. -(unset CDPATH) >/dev/null 2>&1 && unset CDPATH - - -# as_fn_error STATUS ERROR [LINENO LOG_FD] -# ---------------------------------------- -# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are -# provided, also output the error to LOG_FD, referencing LINENO. Then exit the -# script with STATUS, using 1 if that was 0. -as_fn_error () -{ - as_status=$1; test $as_status -eq 0 && as_status=1 - if test "$4"; then - as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 - fi - $as_echo "$as_me: error: $2" >&2 - as_fn_exit $as_status -} # as_fn_error - - -# as_fn_set_status STATUS -# ----------------------- -# Set $? to STATUS, without forking. -as_fn_set_status () -{ - return $1 -} # as_fn_set_status - -# as_fn_exit STATUS -# ----------------- -# Exit the shell with STATUS, even in a "trap 0" or "set -e" context. -as_fn_exit () -{ - set +e - as_fn_set_status $1 - exit $1 -} # as_fn_exit - -# as_fn_unset VAR -# --------------- -# Portably unset VAR. -as_fn_unset () -{ - { eval $1=; unset $1;} -} -as_unset=as_fn_unset -# as_fn_append VAR VALUE -# ---------------------- -# Append the text in VALUE to the end of the definition contained in VAR. Take -# advantage of any shell optimizations that allow amortized linear growth over -# repeated appends, instead of the typical quadratic growth present in naive -# implementations. -if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : - eval 'as_fn_append () - { - eval $1+=\$2 - }' -else - as_fn_append () - { - eval $1=\$$1\$2 - } -fi # as_fn_append - -# as_fn_arith ARG... -# ------------------ -# Perform arithmetic evaluation on the ARGs, and store the result in the -# global $as_val. Take advantage of shells that can avoid forks. The arguments -# must be portable across $(()) and expr. -if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : - eval 'as_fn_arith () - { - as_val=$(( $* )) - }' -else - as_fn_arith () - { - as_val=`expr "$@" || test $? -eq 1` - } -fi # as_fn_arith - - -if expr a : '\(a\)' >/dev/null 2>&1 && - test "X`expr 00001 : '.*\(...\)'`" = X001; then - as_expr=expr -else - as_expr=false -fi - -if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then - as_basename=basename -else - as_basename=false -fi - -if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then - as_dirname=dirname -else - as_dirname=false -fi - -as_me=`$as_basename -- "$0" || -$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ - X"$0" : 'X\(//\)$' \| \ - X"$0" : 'X\(/\)' \| . 2>/dev/null || -$as_echo X/"$0" | - sed '/^.*\/\([^/][^/]*\)\/*$/{ - s//\1/ - q - } - /^X\/\(\/\/\)$/{ - s//\1/ - q - } - /^X\/\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q'` - -# Avoid depending upon Character Ranges. -as_cr_letters='abcdefghijklmnopqrstuvwxyz' -as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' -as_cr_Letters=$as_cr_letters$as_cr_LETTERS -as_cr_digits='0123456789' -as_cr_alnum=$as_cr_Letters$as_cr_digits - -ECHO_C= ECHO_N= ECHO_T= -case `echo -n x` in #((((( --n*) - case `echo 'xy\c'` in - *c*) ECHO_T=' ';; # ECHO_T is single tab character. - xy) ECHO_C='\c';; - *) echo `echo ksh88 bug on AIX 6.1` > /dev/null - ECHO_T=' ';; - esac;; -*) - ECHO_N='-n';; -esac - -rm -f conf$$ conf$$.exe conf$$.file -if test -d conf$$.dir; then - rm -f conf$$.dir/conf$$.file -else - rm -f conf$$.dir - mkdir conf$$.dir 2>/dev/null -fi -if (echo >conf$$.file) 2>/dev/null; then - if ln -s conf$$.file conf$$ 2>/dev/null; then - as_ln_s='ln -s' - # ... but there are two gotchas: - # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. - # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. - # In both cases, we have to default to `cp -p'. - ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || - as_ln_s='cp -p' - elif ln conf$$.file conf$$ 2>/dev/null; then - as_ln_s=ln - else - as_ln_s='cp -p' - fi -else - as_ln_s='cp -p' -fi -rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file -rmdir conf$$.dir 2>/dev/null - - -# as_fn_mkdir_p -# ------------- -# Create "$as_dir" as a directory, including parents if necessary. -as_fn_mkdir_p () -{ - - case $as_dir in #( - -*) as_dir=./$as_dir;; - esac - test -d "$as_dir" || eval $as_mkdir_p || { - as_dirs= - while :; do - case $as_dir in #( - *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( - *) as_qdir=$as_dir;; - esac - as_dirs="'$as_qdir' $as_dirs" - as_dir=`$as_dirname -- "$as_dir" || -$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$as_dir" : 'X\(//\)[^/]' \| \ - X"$as_dir" : 'X\(//\)$' \| \ - X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || -$as_echo X"$as_dir" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ - s//\1/ - q - } - /^X\(\/\/\)[^/].*/{ - s//\1/ - q - } - /^X\(\/\/\)$/{ - s//\1/ - q - } - /^X\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q'` - test -d "$as_dir" && break - done - test -z "$as_dirs" || eval "mkdir $as_dirs" - } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" - - -} # as_fn_mkdir_p -if mkdir -p . 2>/dev/null; then - as_mkdir_p='mkdir -p "$as_dir"' -else - test -d ./-p && rmdir ./-p - as_mkdir_p=false -fi - -if test -x / >/dev/null 2>&1; then - as_test_x='test -x' -else - if ls -dL / >/dev/null 2>&1; then - as_ls_L_option=L - else - as_ls_L_option= - fi - as_test_x=' - eval sh -c '\'' - if test -d "$1"; then - test -d "$1/."; - else - case $1 in #( - -*)set "./$1";; - esac; - case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in #(( - ???[sx]*):;;*)false;;esac;fi - '\'' sh - ' -fi -as_executable_p=$as_test_x - -# Sed expression to map a string onto a valid CPP name. -as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" - -# Sed expression to map a string onto a valid variable name. -as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" - - -exec 6>&1 -## ----------------------------------- ## -## Main body of $CONFIG_STATUS script. ## -## ----------------------------------- ## -_ASEOF -test $as_write_fail = 0 && chmod +x $CONFIG_STATUS || ac_write_fail=1 - -cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 -# Save the log message, to keep $0 and so on meaningful, and to -# report actual input values of CONFIG_FILES etc. instead of their -# values after options handling. -ac_log=" -This file was extended by $as_me, which was -generated by GNU Autoconf 2.68. Invocation command line was - - CONFIG_FILES = $CONFIG_FILES - CONFIG_HEADERS = $CONFIG_HEADERS - CONFIG_LINKS = $CONFIG_LINKS - CONFIG_COMMANDS = $CONFIG_COMMANDS - $ $0 $@ - -on `(hostname || uname -n) 2>/dev/null | sed 1q` -" - -_ACEOF - -case $ac_config_files in *" -"*) set x $ac_config_files; shift; ac_config_files=$*;; -esac - -case $ac_config_headers in *" -"*) set x $ac_config_headers; shift; ac_config_headers=$*;; -esac - - -cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 -# Files that config.status was made for. -config_files="$ac_config_files" -config_headers="$ac_config_headers" -config_commands="$ac_config_commands" - -_ACEOF - -cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 -ac_cs_usage="\ -\`$as_me' instantiates files and other configuration actions -from templates according to the current configuration. Unless the files -and actions are specified as TAGs, all are instantiated by default. - -Usage: $0 [OPTION]... [TAG]... - - -h, --help print this help, then exit - -V, --version print version number and configuration settings, then exit - --config print configuration, then exit - -q, --quiet, --silent - do not print progress messages - -d, --debug don't remove temporary files - --recheck update $as_me by reconfiguring in the same conditions - --file=FILE[:TEMPLATE] - instantiate the configuration file FILE - --header=FILE[:TEMPLATE] - instantiate the configuration header FILE - -Configuration files: -$config_files - -Configuration headers: -$config_headers - -Configuration commands: -$config_commands - -Report bugs to the package provider." - -_ACEOF -cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 -ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" -ac_cs_version="\\ -config.status -configured by $0, generated by GNU Autoconf 2.68, - with options \\"\$ac_cs_config\\" - -Copyright (C) 2010 Free Software Foundation, Inc. -This config.status script is free software; the Free Software Foundation -gives unlimited permission to copy, distribute and modify it." - -ac_pwd='$ac_pwd' -srcdir='$srcdir' -INSTALL='$INSTALL' -MKDIR_P='$MKDIR_P' -AWK='$AWK' -test -n "\$AWK" || AWK=awk -_ACEOF - -cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 -# The default lists apply if the user does not specify any file. -ac_need_defaults=: -while test $# != 0 -do - case $1 in - --*=?*) - ac_option=`expr "X$1" : 'X\([^=]*\)='` - ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'` - ac_shift=: - ;; - --*=) - ac_option=`expr "X$1" : 'X\([^=]*\)='` - ac_optarg= - ac_shift=: - ;; - *) - ac_option=$1 - ac_optarg=$2 - ac_shift=shift - ;; - esac - - case $ac_option in - # Handling of the options. - -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) - ac_cs_recheck=: ;; - --version | --versio | --versi | --vers | --ver | --ve | --v | -V ) - $as_echo "$ac_cs_version"; exit ;; - --config | --confi | --conf | --con | --co | --c ) - $as_echo "$ac_cs_config"; exit ;; - --debug | --debu | --deb | --de | --d | -d ) - debug=: ;; - --file | --fil | --fi | --f ) - $ac_shift - case $ac_optarg in - *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; - '') as_fn_error $? "missing file argument" ;; - esac - as_fn_append CONFIG_FILES " '$ac_optarg'" - ac_need_defaults=false;; - --header | --heade | --head | --hea ) - $ac_shift - case $ac_optarg in - *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; - esac - as_fn_append CONFIG_HEADERS " '$ac_optarg'" - ac_need_defaults=false;; - --he | --h) - # Conflict between --help and --header - as_fn_error $? "ambiguous option: \`$1' -Try \`$0 --help' for more information.";; - --help | --hel | -h ) - $as_echo "$ac_cs_usage"; exit ;; - -q | -quiet | --quiet | --quie | --qui | --qu | --q \ - | -silent | --silent | --silen | --sile | --sil | --si | --s) - ac_cs_silent=: ;; - - # This is an error. - -*) as_fn_error $? "unrecognized option: \`$1' -Try \`$0 --help' for more information." ;; - - *) as_fn_append ac_config_targets " $1" - ac_need_defaults=false ;; - - esac - shift -done - -ac_configure_extra_args= - -if $ac_cs_silent; then - exec 6>/dev/null - ac_configure_extra_args="$ac_configure_extra_args --silent" -fi - -_ACEOF -cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 -if \$ac_cs_recheck; then - set X '$SHELL' '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion - shift - \$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6 - CONFIG_SHELL='$SHELL' - export CONFIG_SHELL - exec "\$@" -fi - -_ACEOF -cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 -exec 5>>config.log -{ - echo - sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX -## Running $as_me. ## -_ASBOX - $as_echo "$ac_log" -} >&5 - -_ACEOF -cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 -# -# INIT-COMMANDS -# -AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir" - - -# The HP-UX ksh and POSIX shell print the target directory to stdout -# if CDPATH is set. -(unset CDPATH) >/dev/null 2>&1 && unset CDPATH - -sed_quote_subst='$sed_quote_subst' -double_quote_subst='$double_quote_subst' -delay_variable_subst='$delay_variable_subst' -macro_version='`$ECHO "$macro_version" | $SED "$delay_single_quote_subst"`' -macro_revision='`$ECHO "$macro_revision" | $SED "$delay_single_quote_subst"`' -enable_shared='`$ECHO "$enable_shared" | $SED "$delay_single_quote_subst"`' -enable_static='`$ECHO "$enable_static" | $SED "$delay_single_quote_subst"`' -pic_mode='`$ECHO "$pic_mode" | $SED "$delay_single_quote_subst"`' -enable_fast_install='`$ECHO "$enable_fast_install" | $SED "$delay_single_quote_subst"`' -SHELL='`$ECHO "$SHELL" | $SED "$delay_single_quote_subst"`' -ECHO='`$ECHO "$ECHO" | $SED "$delay_single_quote_subst"`' -host_alias='`$ECHO "$host_alias" | $SED "$delay_single_quote_subst"`' -host='`$ECHO "$host" | $SED "$delay_single_quote_subst"`' -host_os='`$ECHO "$host_os" | $SED "$delay_single_quote_subst"`' -build_alias='`$ECHO "$build_alias" | $SED "$delay_single_quote_subst"`' -build='`$ECHO "$build" | $SED "$delay_single_quote_subst"`' -build_os='`$ECHO "$build_os" | $SED "$delay_single_quote_subst"`' -SED='`$ECHO "$SED" | $SED "$delay_single_quote_subst"`' -Xsed='`$ECHO "$Xsed" | $SED "$delay_single_quote_subst"`' -GREP='`$ECHO "$GREP" | $SED "$delay_single_quote_subst"`' -EGREP='`$ECHO "$EGREP" | $SED "$delay_single_quote_subst"`' -FGREP='`$ECHO "$FGREP" | $SED "$delay_single_quote_subst"`' -LD='`$ECHO "$LD" | $SED "$delay_single_quote_subst"`' -NM='`$ECHO "$NM" | $SED "$delay_single_quote_subst"`' -LN_S='`$ECHO "$LN_S" | $SED "$delay_single_quote_subst"`' -max_cmd_len='`$ECHO "$max_cmd_len" | $SED "$delay_single_quote_subst"`' -ac_objext='`$ECHO "$ac_objext" | $SED "$delay_single_quote_subst"`' -exeext='`$ECHO "$exeext" | $SED "$delay_single_quote_subst"`' -lt_unset='`$ECHO "$lt_unset" | $SED "$delay_single_quote_subst"`' -lt_SP2NL='`$ECHO "$lt_SP2NL" | $SED "$delay_single_quote_subst"`' -lt_NL2SP='`$ECHO "$lt_NL2SP" | $SED "$delay_single_quote_subst"`' -lt_cv_to_host_file_cmd='`$ECHO "$lt_cv_to_host_file_cmd" | $SED "$delay_single_quote_subst"`' -lt_cv_to_tool_file_cmd='`$ECHO "$lt_cv_to_tool_file_cmd" | $SED "$delay_single_quote_subst"`' -reload_flag='`$ECHO "$reload_flag" | $SED "$delay_single_quote_subst"`' -reload_cmds='`$ECHO "$reload_cmds" | $SED "$delay_single_quote_subst"`' -OBJDUMP='`$ECHO "$OBJDUMP" | $SED "$delay_single_quote_subst"`' -deplibs_check_method='`$ECHO "$deplibs_check_method" | $SED "$delay_single_quote_subst"`' -file_magic_cmd='`$ECHO "$file_magic_cmd" | $SED "$delay_single_quote_subst"`' -file_magic_glob='`$ECHO "$file_magic_glob" | $SED "$delay_single_quote_subst"`' -want_nocaseglob='`$ECHO "$want_nocaseglob" | $SED "$delay_single_quote_subst"`' -DLLTOOL='`$ECHO "$DLLTOOL" | $SED "$delay_single_quote_subst"`' -sharedlib_from_linklib_cmd='`$ECHO "$sharedlib_from_linklib_cmd" | $SED "$delay_single_quote_subst"`' -AR='`$ECHO "$AR" | $SED "$delay_single_quote_subst"`' -AR_FLAGS='`$ECHO "$AR_FLAGS" | $SED "$delay_single_quote_subst"`' -archiver_list_spec='`$ECHO "$archiver_list_spec" | $SED "$delay_single_quote_subst"`' -STRIP='`$ECHO "$STRIP" | $SED "$delay_single_quote_subst"`' -RANLIB='`$ECHO "$RANLIB" | $SED "$delay_single_quote_subst"`' -old_postinstall_cmds='`$ECHO "$old_postinstall_cmds" | $SED "$delay_single_quote_subst"`' -old_postuninstall_cmds='`$ECHO "$old_postuninstall_cmds" | $SED "$delay_single_quote_subst"`' -old_archive_cmds='`$ECHO "$old_archive_cmds" | $SED "$delay_single_quote_subst"`' -lock_old_archive_extraction='`$ECHO "$lock_old_archive_extraction" | $SED "$delay_single_quote_subst"`' -CC='`$ECHO "$CC" | $SED "$delay_single_quote_subst"`' -CFLAGS='`$ECHO "$CFLAGS" | $SED "$delay_single_quote_subst"`' -compiler='`$ECHO "$compiler" | $SED "$delay_single_quote_subst"`' -GCC='`$ECHO "$GCC" | $SED "$delay_single_quote_subst"`' -lt_cv_sys_global_symbol_pipe='`$ECHO "$lt_cv_sys_global_symbol_pipe" | $SED "$delay_single_quote_subst"`' -lt_cv_sys_global_symbol_to_cdecl='`$ECHO "$lt_cv_sys_global_symbol_to_cdecl" | $SED "$delay_single_quote_subst"`' -lt_cv_sys_global_symbol_to_c_name_address='`$ECHO "$lt_cv_sys_global_symbol_to_c_name_address" | $SED "$delay_single_quote_subst"`' -lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='`$ECHO "$lt_cv_sys_global_symbol_to_c_name_address_lib_prefix" | $SED "$delay_single_quote_subst"`' -nm_file_list_spec='`$ECHO "$nm_file_list_spec" | $SED "$delay_single_quote_subst"`' -lt_sysroot='`$ECHO "$lt_sysroot" | $SED "$delay_single_quote_subst"`' -objdir='`$ECHO "$objdir" | $SED "$delay_single_quote_subst"`' -MAGIC_CMD='`$ECHO "$MAGIC_CMD" | $SED "$delay_single_quote_subst"`' -lt_prog_compiler_no_builtin_flag='`$ECHO "$lt_prog_compiler_no_builtin_flag" | $SED "$delay_single_quote_subst"`' -lt_prog_compiler_pic='`$ECHO "$lt_prog_compiler_pic" | $SED "$delay_single_quote_subst"`' -lt_prog_compiler_wl='`$ECHO "$lt_prog_compiler_wl" | $SED "$delay_single_quote_subst"`' -lt_prog_compiler_static='`$ECHO "$lt_prog_compiler_static" | $SED "$delay_single_quote_subst"`' -lt_cv_prog_compiler_c_o='`$ECHO "$lt_cv_prog_compiler_c_o" | $SED "$delay_single_quote_subst"`' -need_locks='`$ECHO "$need_locks" | $SED "$delay_single_quote_subst"`' -MANIFEST_TOOL='`$ECHO "$MANIFEST_TOOL" | $SED "$delay_single_quote_subst"`' -DSYMUTIL='`$ECHO "$DSYMUTIL" | $SED "$delay_single_quote_subst"`' -NMEDIT='`$ECHO "$NMEDIT" | $SED "$delay_single_quote_subst"`' -LIPO='`$ECHO "$LIPO" | $SED "$delay_single_quote_subst"`' -OTOOL='`$ECHO "$OTOOL" | $SED "$delay_single_quote_subst"`' -OTOOL64='`$ECHO "$OTOOL64" | $SED "$delay_single_quote_subst"`' -libext='`$ECHO "$libext" | $SED "$delay_single_quote_subst"`' -shrext_cmds='`$ECHO "$shrext_cmds" | $SED "$delay_single_quote_subst"`' -extract_expsyms_cmds='`$ECHO "$extract_expsyms_cmds" | $SED "$delay_single_quote_subst"`' -archive_cmds_need_lc='`$ECHO "$archive_cmds_need_lc" | $SED "$delay_single_quote_subst"`' -enable_shared_with_static_runtimes='`$ECHO "$enable_shared_with_static_runtimes" | $SED "$delay_single_quote_subst"`' -export_dynamic_flag_spec='`$ECHO "$export_dynamic_flag_spec" | $SED "$delay_single_quote_subst"`' -whole_archive_flag_spec='`$ECHO "$whole_archive_flag_spec" | $SED "$delay_single_quote_subst"`' -compiler_needs_object='`$ECHO "$compiler_needs_object" | $SED "$delay_single_quote_subst"`' -old_archive_from_new_cmds='`$ECHO "$old_archive_from_new_cmds" | $SED "$delay_single_quote_subst"`' -old_archive_from_expsyms_cmds='`$ECHO "$old_archive_from_expsyms_cmds" | $SED "$delay_single_quote_subst"`' -archive_cmds='`$ECHO "$archive_cmds" | $SED "$delay_single_quote_subst"`' -archive_expsym_cmds='`$ECHO "$archive_expsym_cmds" | $SED "$delay_single_quote_subst"`' -module_cmds='`$ECHO "$module_cmds" | $SED "$delay_single_quote_subst"`' -module_expsym_cmds='`$ECHO "$module_expsym_cmds" | $SED "$delay_single_quote_subst"`' -with_gnu_ld='`$ECHO "$with_gnu_ld" | $SED "$delay_single_quote_subst"`' -allow_undefined_flag='`$ECHO "$allow_undefined_flag" | $SED "$delay_single_quote_subst"`' -no_undefined_flag='`$ECHO "$no_undefined_flag" | $SED "$delay_single_quote_subst"`' -hardcode_libdir_flag_spec='`$ECHO "$hardcode_libdir_flag_spec" | $SED "$delay_single_quote_subst"`' -hardcode_libdir_flag_spec_ld='`$ECHO "$hardcode_libdir_flag_spec_ld" | $SED "$delay_single_quote_subst"`' -hardcode_libdir_separator='`$ECHO "$hardcode_libdir_separator" | $SED "$delay_single_quote_subst"`' -hardcode_direct='`$ECHO "$hardcode_direct" | $SED "$delay_single_quote_subst"`' -hardcode_direct_absolute='`$ECHO "$hardcode_direct_absolute" | $SED "$delay_single_quote_subst"`' -hardcode_minus_L='`$ECHO "$hardcode_minus_L" | $SED "$delay_single_quote_subst"`' -hardcode_shlibpath_var='`$ECHO "$hardcode_shlibpath_var" | $SED "$delay_single_quote_subst"`' -hardcode_automatic='`$ECHO "$hardcode_automatic" | $SED "$delay_single_quote_subst"`' -inherit_rpath='`$ECHO "$inherit_rpath" | $SED "$delay_single_quote_subst"`' -link_all_deplibs='`$ECHO "$link_all_deplibs" | $SED "$delay_single_quote_subst"`' -always_export_symbols='`$ECHO "$always_export_symbols" | $SED "$delay_single_quote_subst"`' -export_symbols_cmds='`$ECHO "$export_symbols_cmds" | $SED "$delay_single_quote_subst"`' -exclude_expsyms='`$ECHO "$exclude_expsyms" | $SED "$delay_single_quote_subst"`' -include_expsyms='`$ECHO "$include_expsyms" | $SED "$delay_single_quote_subst"`' -prelink_cmds='`$ECHO "$prelink_cmds" | $SED "$delay_single_quote_subst"`' -postlink_cmds='`$ECHO "$postlink_cmds" | $SED "$delay_single_quote_subst"`' -file_list_spec='`$ECHO "$file_list_spec" | $SED "$delay_single_quote_subst"`' -variables_saved_for_relink='`$ECHO "$variables_saved_for_relink" | $SED "$delay_single_quote_subst"`' -need_lib_prefix='`$ECHO "$need_lib_prefix" | $SED "$delay_single_quote_subst"`' -need_version='`$ECHO "$need_version" | $SED "$delay_single_quote_subst"`' -version_type='`$ECHO "$version_type" | $SED "$delay_single_quote_subst"`' -runpath_var='`$ECHO "$runpath_var" | $SED "$delay_single_quote_subst"`' -shlibpath_var='`$ECHO "$shlibpath_var" | $SED "$delay_single_quote_subst"`' -shlibpath_overrides_runpath='`$ECHO "$shlibpath_overrides_runpath" | $SED "$delay_single_quote_subst"`' -libname_spec='`$ECHO "$libname_spec" | $SED "$delay_single_quote_subst"`' -library_names_spec='`$ECHO "$library_names_spec" | $SED "$delay_single_quote_subst"`' -soname_spec='`$ECHO "$soname_spec" | $SED "$delay_single_quote_subst"`' -install_override_mode='`$ECHO "$install_override_mode" | $SED "$delay_single_quote_subst"`' -postinstall_cmds='`$ECHO "$postinstall_cmds" | $SED "$delay_single_quote_subst"`' -postuninstall_cmds='`$ECHO "$postuninstall_cmds" | $SED "$delay_single_quote_subst"`' -finish_cmds='`$ECHO "$finish_cmds" | $SED "$delay_single_quote_subst"`' -finish_eval='`$ECHO "$finish_eval" | $SED "$delay_single_quote_subst"`' -hardcode_into_libs='`$ECHO "$hardcode_into_libs" | $SED "$delay_single_quote_subst"`' -sys_lib_search_path_spec='`$ECHO "$sys_lib_search_path_spec" | $SED "$delay_single_quote_subst"`' -sys_lib_dlsearch_path_spec='`$ECHO "$sys_lib_dlsearch_path_spec" | $SED "$delay_single_quote_subst"`' -hardcode_action='`$ECHO "$hardcode_action" | $SED "$delay_single_quote_subst"`' -enable_dlopen='`$ECHO "$enable_dlopen" | $SED "$delay_single_quote_subst"`' -enable_dlopen_self='`$ECHO "$enable_dlopen_self" | $SED "$delay_single_quote_subst"`' -enable_dlopen_self_static='`$ECHO "$enable_dlopen_self_static" | $SED "$delay_single_quote_subst"`' -old_striplib='`$ECHO "$old_striplib" | $SED "$delay_single_quote_subst"`' -striplib='`$ECHO "$striplib" | $SED "$delay_single_quote_subst"`' - -LTCC='$LTCC' -LTCFLAGS='$LTCFLAGS' -compiler='$compiler_DEFAULT' - -# A function that is used when there is no print builtin or printf. -func_fallback_echo () -{ - eval 'cat <<_LTECHO_EOF -\$1 -_LTECHO_EOF' -} - -# Quote evaled strings. -for var in SHELL \ -ECHO \ -SED \ -GREP \ -EGREP \ -FGREP \ -LD \ -NM \ -LN_S \ -lt_SP2NL \ -lt_NL2SP \ -reload_flag \ -OBJDUMP \ -deplibs_check_method \ -file_magic_cmd \ -file_magic_glob \ -want_nocaseglob \ -DLLTOOL \ -sharedlib_from_linklib_cmd \ -AR \ -AR_FLAGS \ -archiver_list_spec \ -STRIP \ -RANLIB \ -CC \ -CFLAGS \ -compiler \ -lt_cv_sys_global_symbol_pipe \ -lt_cv_sys_global_symbol_to_cdecl \ -lt_cv_sys_global_symbol_to_c_name_address \ -lt_cv_sys_global_symbol_to_c_name_address_lib_prefix \ -nm_file_list_spec \ -lt_prog_compiler_no_builtin_flag \ -lt_prog_compiler_pic \ -lt_prog_compiler_wl \ -lt_prog_compiler_static \ -lt_cv_prog_compiler_c_o \ -need_locks \ -MANIFEST_TOOL \ -DSYMUTIL \ -NMEDIT \ -LIPO \ -OTOOL \ -OTOOL64 \ -shrext_cmds \ -export_dynamic_flag_spec \ -whole_archive_flag_spec \ -compiler_needs_object \ -with_gnu_ld \ -allow_undefined_flag \ -no_undefined_flag \ -hardcode_libdir_flag_spec \ -hardcode_libdir_flag_spec_ld \ -hardcode_libdir_separator \ -exclude_expsyms \ -include_expsyms \ -file_list_spec \ -variables_saved_for_relink \ -libname_spec \ -library_names_spec \ -soname_spec \ -install_override_mode \ -finish_eval \ -old_striplib \ -striplib; do - case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in - *[\\\\\\\`\\"\\\$]*) - eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED \\"\\\$sed_quote_subst\\"\\\`\\\\\\"" - ;; - *) - eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" - ;; - esac -done - -# Double-quote double-evaled strings. -for var in reload_cmds \ -old_postinstall_cmds \ -old_postuninstall_cmds \ -old_archive_cmds \ -extract_expsyms_cmds \ -old_archive_from_new_cmds \ -old_archive_from_expsyms_cmds \ -archive_cmds \ -archive_expsym_cmds \ -module_cmds \ -module_expsym_cmds \ -export_symbols_cmds \ -prelink_cmds \ -postlink_cmds \ -postinstall_cmds \ -postuninstall_cmds \ -finish_cmds \ -sys_lib_search_path_spec \ -sys_lib_dlsearch_path_spec; do - case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in - *[\\\\\\\`\\"\\\$]*) - eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED -e \\"\\\$double_quote_subst\\" -e \\"\\\$sed_quote_subst\\" -e \\"\\\$delay_variable_subst\\"\\\`\\\\\\"" - ;; - *) - eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" - ;; - esac -done - -ac_aux_dir='$ac_aux_dir' -xsi_shell='$xsi_shell' -lt_shell_append='$lt_shell_append' - -# See if we are running on zsh, and set the options which allow our -# commands through without removal of \ escapes INIT. -if test -n "\${ZSH_VERSION+set}" ; then - setopt NO_GLOB_SUBST -fi - - - PACKAGE='$PACKAGE' - VERSION='$VERSION' - TIMESTAMP='$TIMESTAMP' - RM='$RM' - ofile='$ofile' - - - -# Capture the value of obsolete ALL_LINGUAS because we need it to compute - # POFILES, UPDATEPOFILES, DUMMYPOFILES, GMOFILES, CATALOGS. But hide it - # from automake < 1.5. - eval 'OBSOLETE_ALL_LINGUAS''="$ALL_LINGUAS"' - # Capture the value of LINGUAS because we need it to compute CATALOGS. - LINGUAS="${LINGUAS-%UNSET%}" - - -_ACEOF - -cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 - -# Handling of arguments. -for ac_config_target in $ac_config_targets -do - case $ac_config_target in - "config.h") CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;; - "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;; - "libtool") CONFIG_COMMANDS="$CONFIG_COMMANDS libtool" ;; - "po-directories") CONFIG_COMMANDS="$CONFIG_COMMANDS po-directories" ;; - "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; - "fcitx.spec") CONFIG_FILES="$CONFIG_FILES fcitx.spec" ;; - "doc/Makefile") CONFIG_FILES="$CONFIG_FILES doc/Makefile" ;; - "doc/man/Makefile") CONFIG_FILES="$CONFIG_FILES doc/man/Makefile" ;; - "data/Makefile") CONFIG_FILES="$CONFIG_FILES data/Makefile" ;; - "data/table/Makefile") CONFIG_FILES="$CONFIG_FILES data/table/Makefile" ;; - "skin/Makefile") CONFIG_FILES="$CONFIG_FILES skin/Makefile" ;; - "skin/default/Makefile") CONFIG_FILES="$CONFIG_FILES skin/default/Makefile" ;; - "skin/dark/Makefile") CONFIG_FILES="$CONFIG_FILES skin/dark/Makefile" ;; - "skin/classic/Makefile") CONFIG_FILES="$CONFIG_FILES skin/classic/Makefile" ;; - "png/Makefile") CONFIG_FILES="$CONFIG_FILES png/Makefile" ;; - "lib/Makefile") CONFIG_FILES="$CONFIG_FILES lib/Makefile" ;; - "src/Makefile") CONFIG_FILES="$CONFIG_FILES src/Makefile" ;; - "src/core/Makefile") CONFIG_FILES="$CONFIG_FILES src/core/Makefile" ;; - "src/im/Makefile") CONFIG_FILES="$CONFIG_FILES src/im/Makefile" ;; - "src/im/pinyin/Makefile") CONFIG_FILES="$CONFIG_FILES src/im/pinyin/Makefile" ;; - "src/im/qw/Makefile") CONFIG_FILES="$CONFIG_FILES src/im/qw/Makefile" ;; - "src/im/special/Makefile") CONFIG_FILES="$CONFIG_FILES src/im/special/Makefile" ;; - "src/im/extra/Makefile") CONFIG_FILES="$CONFIG_FILES src/im/extra/Makefile" ;; - "src/im/table/Makefile") CONFIG_FILES="$CONFIG_FILES src/im/table/Makefile" ;; - "src/interface/Makefile") CONFIG_FILES="$CONFIG_FILES src/interface/Makefile" ;; - "src/ui/Makefile") CONFIG_FILES="$CONFIG_FILES src/ui/Makefile" ;; - "src/tools/Makefile") CONFIG_FILES="$CONFIG_FILES src/tools/Makefile" ;; - "src/fcitx-config/Makefile") CONFIG_FILES="$CONFIG_FILES src/fcitx-config/Makefile" ;; - "src/fcitx-config/fcitx-config.pc") CONFIG_FILES="$CONFIG_FILES src/fcitx-config/fcitx-config.pc" ;; - "src/core/fcitx.pc") CONFIG_FILES="$CONFIG_FILES src/core/fcitx.pc" ;; - "tools/Makefile") CONFIG_FILES="$CONFIG_FILES tools/Makefile" ;; - "test/Makefile") CONFIG_FILES="$CONFIG_FILES test/Makefile" ;; - "po/Makefile.in") CONFIG_FILES="$CONFIG_FILES po/Makefile.in" ;; - "po/stamp-it") CONFIG_COMMANDS="$CONFIG_COMMANDS po/stamp-it" ;; - - *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;; - esac -done - - -# If the user did not use the arguments to specify the items to instantiate, -# then the envvar interface is used. Set only those that are not. -# We use the long form for the default assignment because of an extremely -# bizarre bug on SunOS 4.1.3. -if $ac_need_defaults; then - test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files - test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers - test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands -fi - -# Have a temporary directory for convenience. Make it in the build tree -# simply because there is no reason against having it here, and in addition, -# creating and moving files from /tmp can sometimes cause problems. -# Hook for its removal unless debugging. -# Note that there is a small window in which the directory will not be cleaned: -# after its creation but before its name has been assigned to `$tmp'. -$debug || -{ - tmp= ac_tmp= - trap 'exit_status=$? - : "${ac_tmp:=$tmp}" - { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status -' 0 - trap 'as_fn_exit 1' 1 2 13 15 -} -# Create a (secure) tmp directory for tmp files. - -{ - tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` && - test -d "$tmp" -} || -{ - tmp=./conf$$-$RANDOM - (umask 077 && mkdir "$tmp") -} || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5 -ac_tmp=$tmp - -# Set up the scripts for CONFIG_FILES section. -# No need to generate them if there are no CONFIG_FILES. -# This happens for instance with `./config.status config.h'. -if test -n "$CONFIG_FILES"; then - - -ac_cr=`echo X | tr X '\015'` -# On cygwin, bash can eat \r inside `` if the user requested igncr. -# But we know of no other shell where ac_cr would be empty at this -# point, so we can use a bashism as a fallback. -if test "x$ac_cr" = x; then - eval ac_cr=\$\'\\r\' -fi -ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' /dev/null` -if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then - ac_cs_awk_cr='\\r' -else - ac_cs_awk_cr=$ac_cr -fi - -echo 'BEGIN {' >"$ac_tmp/subs1.awk" && -_ACEOF - - -{ - echo "cat >conf$$subs.awk <<_ACEOF" && - echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' && - echo "_ACEOF" -} >conf$$subs.sh || - as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 -ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'` -ac_delim='%!_!# ' -for ac_last_try in false false false false false :; do - . ./conf$$subs.sh || - as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 - - ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X` - if test $ac_delim_n = $ac_delim_num; then - break - elif $ac_last_try; then - as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 - else - ac_delim="$ac_delim!$ac_delim _$ac_delim!! " - fi -done -rm -f conf$$subs.sh - -cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 -cat >>"\$ac_tmp/subs1.awk" <<\\_ACAWK && -_ACEOF -sed -n ' -h -s/^/S["/; s/!.*/"]=/ -p -g -s/^[^!]*!// -:repl -t repl -s/'"$ac_delim"'$// -t delim -:nl -h -s/\(.\{148\}\)..*/\1/ -t more1 -s/["\\]/\\&/g; s/^/"/; s/$/\\n"\\/ -p -n -b repl -:more1 -s/["\\]/\\&/g; s/^/"/; s/$/"\\/ -p -g -s/.\{148\}// -t nl -:delim -h -s/\(.\{148\}\)..*/\1/ -t more2 -s/["\\]/\\&/g; s/^/"/; s/$/"/ -p -b -:more2 -s/["\\]/\\&/g; s/^/"/; s/$/"\\/ -p -g -s/.\{148\}// -t delim -' >$CONFIG_STATUS || ac_write_fail=1 -rm -f conf$$subs.awk -cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 -_ACAWK -cat >>"\$ac_tmp/subs1.awk" <<_ACAWK && - for (key in S) S_is_set[key] = 1 - FS = "" - -} -{ - line = $ 0 - nfields = split(line, field, "@") - substed = 0 - len = length(field[1]) - for (i = 2; i < nfields; i++) { - key = field[i] - keylen = length(key) - if (S_is_set[key]) { - value = S[key] - line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3) - len += length(value) + length(field[++i]) - substed = 1 - } else - len += 1 + keylen - } - - print line -} - -_ACAWK -_ACEOF -cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 -if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then - sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g" -else - cat -fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \ - || as_fn_error $? "could not setup config files machinery" "$LINENO" 5 -_ACEOF - -# VPATH may cause trouble with some makes, so we remove sole $(srcdir), -# ${srcdir} and @srcdir@ entries from VPATH if srcdir is ".", strip leading and -# trailing colons and then remove the whole line if VPATH becomes empty -# (actually we leave an empty line to preserve line numbers). -if test "x$srcdir" = x.; then - ac_vpsub='/^[ ]*VPATH[ ]*=[ ]*/{ -h -s/// -s/^/:/ -s/[ ]*$/:/ -s/:\$(srcdir):/:/g -s/:\${srcdir}:/:/g -s/:@srcdir@:/:/g -s/^:*// -s/:*$// -x -s/\(=[ ]*\).*/\1/ -G -s/\n// -s/^[^=]*=[ ]*$// -}' -fi - -cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 -fi # test -n "$CONFIG_FILES" - -# Set up the scripts for CONFIG_HEADERS section. -# No need to generate them if there are no CONFIG_HEADERS. -# This happens for instance with `./config.status Makefile'. -if test -n "$CONFIG_HEADERS"; then -cat >"$ac_tmp/defines.awk" <<\_ACAWK || -BEGIN { -_ACEOF - -# Transform confdefs.h into an awk script `defines.awk', embedded as -# here-document in config.status, that substitutes the proper values into -# config.h.in to produce config.h. - -# Create a delimiter string that does not exist in confdefs.h, to ease -# handling of long lines. -ac_delim='%!_!# ' -for ac_last_try in false false :; do - ac_tt=`sed -n "/$ac_delim/p" confdefs.h` - if test -z "$ac_tt"; then - break - elif $ac_last_try; then - as_fn_error $? "could not make $CONFIG_HEADERS" "$LINENO" 5 - else - ac_delim="$ac_delim!$ac_delim _$ac_delim!! " - fi -done - -# For the awk script, D is an array of macro values keyed by name, -# likewise P contains macro parameters if any. Preserve backslash -# newline sequences. - -ac_word_re=[_$as_cr_Letters][_$as_cr_alnum]* -sed -n ' -s/.\{148\}/&'"$ac_delim"'/g -t rset -:rset -s/^[ ]*#[ ]*define[ ][ ]*/ / -t def -d -:def -s/\\$// -t bsnl -s/["\\]/\\&/g -s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ -D["\1"]=" \3"/p -s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2"/p -d -:bsnl -s/["\\]/\\&/g -s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ -D["\1"]=" \3\\\\\\n"\\/p -t cont -s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2\\\\\\n"\\/p -t cont -d -:cont -n -s/.\{148\}/&'"$ac_delim"'/g -t clear -:clear -s/\\$// -t bsnlc -s/["\\]/\\&/g; s/^/"/; s/$/"/p -d -:bsnlc -s/["\\]/\\&/g; s/^/"/; s/$/\\\\\\n"\\/p -b cont -' >$CONFIG_STATUS || ac_write_fail=1 - -cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 - for (key in D) D_is_set[key] = 1 - FS = "" -} -/^[\t ]*#[\t ]*(define|undef)[\t ]+$ac_word_re([\t (]|\$)/ { - line = \$ 0 - split(line, arg, " ") - if (arg[1] == "#") { - defundef = arg[2] - mac1 = arg[3] - } else { - defundef = substr(arg[1], 2) - mac1 = arg[2] - } - split(mac1, mac2, "(") #) - macro = mac2[1] - prefix = substr(line, 1, index(line, defundef) - 1) - if (D_is_set[macro]) { - # Preserve the white space surrounding the "#". - print prefix "define", macro P[macro] D[macro] - next - } else { - # Replace #undef with comments. This is necessary, for example, - # in the case of _POSIX_SOURCE, which is predefined and required - # on some systems where configure will not decide to define it. - if (defundef == "undef") { - print "/*", prefix defundef, macro, "*/" - next - } - } -} -{ print } -_ACAWK -_ACEOF -cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 - as_fn_error $? "could not setup config headers machinery" "$LINENO" 5 -fi # test -n "$CONFIG_HEADERS" - - -eval set X " :F $CONFIG_FILES :H $CONFIG_HEADERS :C $CONFIG_COMMANDS" -shift -for ac_tag -do - case $ac_tag in - :[FHLC]) ac_mode=$ac_tag; continue;; - esac - case $ac_mode$ac_tag in - :[FHL]*:*);; - :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;; - :[FH]-) ac_tag=-:-;; - :[FH]*) ac_tag=$ac_tag:$ac_tag.in;; - esac - ac_save_IFS=$IFS - IFS=: - set x $ac_tag - IFS=$ac_save_IFS - shift - ac_file=$1 - shift - - case $ac_mode in - :L) ac_source=$1;; - :[FH]) - ac_file_inputs= - for ac_f - do - case $ac_f in - -) ac_f="$ac_tmp/stdin";; - *) # Look for the file first in the build tree, then in the source tree - # (if the path is not absolute). The absolute path cannot be DOS-style, - # because $ac_f cannot contain `:'. - test -f "$ac_f" || - case $ac_f in - [\\/$]*) false;; - *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";; - esac || - as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;; - esac - case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac - as_fn_append ac_file_inputs " '$ac_f'" - done - - # Let's still pretend it is `configure' which instantiates (i.e., don't - # use $as_me), people would be surprised to read: - # /* config.h. Generated by config.status. */ - configure_input='Generated from '` - $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g' - `' by configure.' - if test x"$ac_file" != x-; then - configure_input="$ac_file. $configure_input" - { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5 -$as_echo "$as_me: creating $ac_file" >&6;} - fi - # Neutralize special characters interpreted by sed in replacement strings. - case $configure_input in #( - *\&* | *\|* | *\\* ) - ac_sed_conf_input=`$as_echo "$configure_input" | - sed 's/[\\\\&|]/\\\\&/g'`;; #( - *) ac_sed_conf_input=$configure_input;; - esac - - case $ac_tag in - *:-:* | *:-) cat >"$ac_tmp/stdin" \ - || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;; - esac - ;; - esac - - ac_dir=`$as_dirname -- "$ac_file" || -$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$ac_file" : 'X\(//\)[^/]' \| \ - X"$ac_file" : 'X\(//\)$' \| \ - X"$ac_file" : 'X\(/\)' \| . 2>/dev/null || -$as_echo X"$ac_file" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ - s//\1/ - q - } - /^X\(\/\/\)[^/].*/{ - s//\1/ - q - } - /^X\(\/\/\)$/{ - s//\1/ - q - } - /^X\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q'` - as_dir="$ac_dir"; as_fn_mkdir_p - ac_builddir=. - -case "$ac_dir" in -.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; -*) - ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` - # A ".." for each directory in $ac_dir_suffix. - ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` - case $ac_top_builddir_sub in - "") ac_top_builddir_sub=. ac_top_build_prefix= ;; - *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; - esac ;; -esac -ac_abs_top_builddir=$ac_pwd -ac_abs_builddir=$ac_pwd$ac_dir_suffix -# for backward compatibility: -ac_top_builddir=$ac_top_build_prefix - -case $srcdir in - .) # We are building in place. - ac_srcdir=. - ac_top_srcdir=$ac_top_builddir_sub - ac_abs_top_srcdir=$ac_pwd ;; - [\\/]* | ?:[\\/]* ) # Absolute name. - ac_srcdir=$srcdir$ac_dir_suffix; - ac_top_srcdir=$srcdir - ac_abs_top_srcdir=$srcdir ;; - *) # Relative name. - ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix - ac_top_srcdir=$ac_top_build_prefix$srcdir - ac_abs_top_srcdir=$ac_pwd/$srcdir ;; -esac -ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix - - - case $ac_mode in - :F) - # - # CONFIG_FILE - # - - case $INSTALL in - [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;; - *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;; - esac - ac_MKDIR_P=$MKDIR_P - case $MKDIR_P in - [\\/$]* | ?:[\\/]* ) ;; - */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;; - esac -_ACEOF - -cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 -# If the template does not know about datarootdir, expand it. -# FIXME: This hack should be removed a few years after 2.60. -ac_datarootdir_hack=; ac_datarootdir_seen= -ac_sed_dataroot=' -/datarootdir/ { - p - q -} -/@datadir@/p -/@docdir@/p -/@infodir@/p -/@localedir@/p -/@mandir@/p' -case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in -*datarootdir*) ac_datarootdir_seen=yes;; -*@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*) - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 -$as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;} -_ACEOF -cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 - ac_datarootdir_hack=' - s&@datadir@&$datadir&g - s&@docdir@&$docdir&g - s&@infodir@&$infodir&g - s&@localedir@&$localedir&g - s&@mandir@&$mandir&g - s&\\\${datarootdir}&$datarootdir&g' ;; -esac -_ACEOF - -# Neutralize VPATH when `$srcdir' = `.'. -# Shell code in configure.ac might set extrasub. -# FIXME: do we really want to maintain this feature? -cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 -ac_sed_extra="$ac_vpsub -$extrasub -_ACEOF -cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 -:t -/@[a-zA-Z_][a-zA-Z_0-9]*@/!b -s|@configure_input@|$ac_sed_conf_input|;t t -s&@top_builddir@&$ac_top_builddir_sub&;t t -s&@top_build_prefix@&$ac_top_build_prefix&;t t -s&@srcdir@&$ac_srcdir&;t t -s&@abs_srcdir@&$ac_abs_srcdir&;t t -s&@top_srcdir@&$ac_top_srcdir&;t t -s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t -s&@builddir@&$ac_builddir&;t t -s&@abs_builddir@&$ac_abs_builddir&;t t -s&@abs_top_builddir@&$ac_abs_top_builddir&;t t -s&@INSTALL@&$ac_INSTALL&;t t -s&@MKDIR_P@&$ac_MKDIR_P&;t t -$ac_datarootdir_hack -" -eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \ - >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5 - -test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && - { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } && - { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' \ - "$ac_tmp/out"`; test -z "$ac_out"; } && - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir' -which seems to be undefined. Please make sure it is defined" >&5 -$as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir' -which seems to be undefined. Please make sure it is defined" >&2;} - - rm -f "$ac_tmp/stdin" - case $ac_file in - -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";; - *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";; - esac \ - || as_fn_error $? "could not create $ac_file" "$LINENO" 5 - ;; - :H) - # - # CONFIG_HEADER - # - if test x"$ac_file" != x-; then - { - $as_echo "/* $configure_input */" \ - && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" - } >"$ac_tmp/config.h" \ - || as_fn_error $? "could not create $ac_file" "$LINENO" 5 - if diff "$ac_file" "$ac_tmp/config.h" >/dev/null 2>&1; then - { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5 -$as_echo "$as_me: $ac_file is unchanged" >&6;} - else - rm -f "$ac_file" - mv "$ac_tmp/config.h" "$ac_file" \ - || as_fn_error $? "could not create $ac_file" "$LINENO" 5 - fi - else - $as_echo "/* $configure_input */" \ - && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" \ - || as_fn_error $? "could not create -" "$LINENO" 5 - fi -# Compute "$ac_file"'s index in $config_headers. -_am_arg="$ac_file" -_am_stamp_count=1 -for _am_header in $config_headers :; do - case $_am_header in - $_am_arg | $_am_arg:* ) - break ;; - * ) - _am_stamp_count=`expr $_am_stamp_count + 1` ;; - esac -done -echo "timestamp for $_am_arg" >`$as_dirname -- "$_am_arg" || -$as_expr X"$_am_arg" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$_am_arg" : 'X\(//\)[^/]' \| \ - X"$_am_arg" : 'X\(//\)$' \| \ - X"$_am_arg" : 'X\(/\)' \| . 2>/dev/null || -$as_echo X"$_am_arg" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ - s//\1/ - q - } - /^X\(\/\/\)[^/].*/{ - s//\1/ - q - } - /^X\(\/\/\)$/{ - s//\1/ - q - } - /^X\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q'`/stamp-h$_am_stamp_count - ;; - - :C) { $as_echo "$as_me:${as_lineno-$LINENO}: executing $ac_file commands" >&5 -$as_echo "$as_me: executing $ac_file commands" >&6;} - ;; - esac - - - case $ac_file$ac_mode in - "depfiles":C) test x"$AMDEP_TRUE" != x"" || { - # Autoconf 2.62 quotes --file arguments for eval, but not when files - # are listed without --file. Let's play safe and only enable the eval - # if we detect the quoting. - case $CONFIG_FILES in - *\'*) eval set x "$CONFIG_FILES" ;; - *) set x $CONFIG_FILES ;; - esac - shift - for mf - do - # Strip MF so we end up with the name of the file. - mf=`echo "$mf" | sed -e 's/:.*$//'` - # Check whether this is an Automake generated Makefile or not. - # We used to match only the files named `Makefile.in', but - # some people rename them; so instead we look at the file content. - # Grep'ing the first line is not enough: some people post-process - # each Makefile.in and add a new line on top of each file to say so. - # Grep'ing the whole file is not good either: AIX grep has a line - # limit of 2048, but all sed's we know have understand at least 4000. - if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then - dirpart=`$as_dirname -- "$mf" || -$as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$mf" : 'X\(//\)[^/]' \| \ - X"$mf" : 'X\(//\)$' \| \ - X"$mf" : 'X\(/\)' \| . 2>/dev/null || -$as_echo X"$mf" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ - s//\1/ - q - } - /^X\(\/\/\)[^/].*/{ - s//\1/ - q - } - /^X\(\/\/\)$/{ - s//\1/ - q - } - /^X\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q'` - else - continue - fi - # Extract the definition of DEPDIR, am__include, and am__quote - # from the Makefile without running `make'. - DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` - test -z "$DEPDIR" && continue - am__include=`sed -n 's/^am__include = //p' < "$mf"` - test -z "am__include" && continue - am__quote=`sed -n 's/^am__quote = //p' < "$mf"` - # When using ansi2knr, U may be empty or an underscore; expand it - U=`sed -n 's/^U = //p' < "$mf"` - # Find all dependency output files, they are included files with - # $(DEPDIR) in their names. We invoke sed twice because it is the - # simplest approach to changing $(DEPDIR) to its actual value in the - # expansion. - for file in `sed -n " - s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ - sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do - # Make sure the directory exists. - test -f "$dirpart/$file" && continue - fdir=`$as_dirname -- "$file" || -$as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$file" : 'X\(//\)[^/]' \| \ - X"$file" : 'X\(//\)$' \| \ - X"$file" : 'X\(/\)' \| . 2>/dev/null || -$as_echo X"$file" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ - s//\1/ - q - } - /^X\(\/\/\)[^/].*/{ - s//\1/ - q - } - /^X\(\/\/\)$/{ - s//\1/ - q - } - /^X\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q'` - as_dir=$dirpart/$fdir; as_fn_mkdir_p - # echo "creating $dirpart/$file" - echo '# dummy' > "$dirpart/$file" - done - done -} - ;; - "libtool":C) - - # See if we are running on zsh, and set the options which allow our - # commands through without removal of \ escapes. - if test -n "${ZSH_VERSION+set}" ; then - setopt NO_GLOB_SUBST - fi - - cfgfile="${ofile}T" - trap "$RM \"$cfgfile\"; exit 1" 1 2 15 - $RM "$cfgfile" - - cat <<_LT_EOF >> "$cfgfile" -#! $SHELL - -# `$ECHO "$ofile" | sed 's%^.*/%%'` - Provide generalized library-building support services. -# Generated automatically by $as_me ($PACKAGE$TIMESTAMP) $VERSION -# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: -# NOTE: Changes made to this file will be lost: look at ltmain.sh. -# -# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, -# 2006, 2007, 2008, 2009, 2010 Free Software Foundation, -# Inc. -# Written by Gordon Matzigkeit, 1996 -# -# This file is part of GNU Libtool. -# -# GNU Libtool is free software; you can redistribute it and/or -# modify it under the terms of the GNU General Public License as -# published by the Free Software Foundation; either version 2 of -# the License, or (at your option) any later version. -# -# As a special exception to the GNU General Public License, -# if you distribute this file as part of a program or library that -# is built using GNU Libtool, you may include this file under the -# same distribution terms that you use for the rest of that program. -# -# GNU Libtool is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with GNU Libtool; see the file COPYING. If not, a copy -# can be downloaded from http://www.gnu.org/licenses/gpl.html, or -# obtained by writing to the Free Software Foundation, Inc., -# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - - -# The names of the tagged configurations supported by this script. -available_tags="" - -# ### BEGIN LIBTOOL CONFIG - -# Which release of libtool.m4 was used? -macro_version=$macro_version -macro_revision=$macro_revision - -# Whether or not to build shared libraries. -build_libtool_libs=$enable_shared - -# Whether or not to build static libraries. -build_old_libs=$enable_static - -# What type of objects to build. -pic_mode=$pic_mode - -# Whether or not to optimize for fast installation. -fast_install=$enable_fast_install - -# Shell to use when invoking shell scripts. -SHELL=$lt_SHELL - -# An echo program that protects backslashes. -ECHO=$lt_ECHO - -# The host system. -host_alias=$host_alias -host=$host -host_os=$host_os - -# The build system. -build_alias=$build_alias -build=$build -build_os=$build_os - -# A sed program that does not truncate output. -SED=$lt_SED - -# Sed that helps us avoid accidentally triggering echo(1) options like -n. -Xsed="\$SED -e 1s/^X//" - -# A grep program that handles long lines. -GREP=$lt_GREP - -# An ERE matcher. -EGREP=$lt_EGREP - -# A literal string matcher. -FGREP=$lt_FGREP - -# A BSD- or MS-compatible name lister. -NM=$lt_NM - -# Whether we need soft or hard links. -LN_S=$lt_LN_S - -# What is the maximum length of a command? -max_cmd_len=$max_cmd_len - -# Object file suffix (normally "o"). -objext=$ac_objext - -# Executable file suffix (normally ""). -exeext=$exeext - -# whether the shell understands "unset". -lt_unset=$lt_unset - -# turn spaces into newlines. -SP2NL=$lt_lt_SP2NL - -# turn newlines into spaces. -NL2SP=$lt_lt_NL2SP - -# convert \$build file names to \$host format. -to_host_file_cmd=$lt_cv_to_host_file_cmd - -# convert \$build files to toolchain format. -to_tool_file_cmd=$lt_cv_to_tool_file_cmd - -# An object symbol dumper. -OBJDUMP=$lt_OBJDUMP - -# Method to check whether dependent libraries are shared objects. -deplibs_check_method=$lt_deplibs_check_method - -# Command to use when deplibs_check_method = "file_magic". -file_magic_cmd=$lt_file_magic_cmd - -# How to find potential files when deplibs_check_method = "file_magic". -file_magic_glob=$lt_file_magic_glob - -# Find potential files using nocaseglob when deplibs_check_method = "file_magic". -want_nocaseglob=$lt_want_nocaseglob - -# DLL creation program. -DLLTOOL=$lt_DLLTOOL - -# Command to associate shared and link libraries. -sharedlib_from_linklib_cmd=$lt_sharedlib_from_linklib_cmd - -# The archiver. -AR=$lt_AR - -# Flags to create an archive. -AR_FLAGS=$lt_AR_FLAGS - -# How to feed a file listing to the archiver. -archiver_list_spec=$lt_archiver_list_spec - -# A symbol stripping program. -STRIP=$lt_STRIP - -# Commands used to install an old-style archive. -RANLIB=$lt_RANLIB -old_postinstall_cmds=$lt_old_postinstall_cmds -old_postuninstall_cmds=$lt_old_postuninstall_cmds - -# Whether to use a lock for old archive extraction. -lock_old_archive_extraction=$lock_old_archive_extraction - -# A C compiler. -LTCC=$lt_CC - -# LTCC compiler flags. -LTCFLAGS=$lt_CFLAGS - -# Take the output of nm and produce a listing of raw symbols and C names. -global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe - -# Transform the output of nm in a proper C declaration. -global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl - -# Transform the output of nm in a C name address pair. -global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address - -# Transform the output of nm in a C name address pair when lib prefix is needed. -global_symbol_to_c_name_address_lib_prefix=$lt_lt_cv_sys_global_symbol_to_c_name_address_lib_prefix - -# Specify filename containing input files for \$NM. -nm_file_list_spec=$lt_nm_file_list_spec - -# The root where to search for dependent libraries,and in which our libraries should be installed. -lt_sysroot=$lt_sysroot - -# The name of the directory that contains temporary libtool files. -objdir=$objdir - -# Used to examine libraries when file_magic_cmd begins with "file". -MAGIC_CMD=$MAGIC_CMD - -# Must we lock files when doing compilation? -need_locks=$lt_need_locks - -# Manifest tool. -MANIFEST_TOOL=$lt_MANIFEST_TOOL - -# Tool to manipulate archived DWARF debug symbol files on Mac OS X. -DSYMUTIL=$lt_DSYMUTIL - -# Tool to change global to local symbols on Mac OS X. -NMEDIT=$lt_NMEDIT - -# Tool to manipulate fat objects and archives on Mac OS X. -LIPO=$lt_LIPO - -# ldd/readelf like tool for Mach-O binaries on Mac OS X. -OTOOL=$lt_OTOOL - -# ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4. -OTOOL64=$lt_OTOOL64 - -# Old archive suffix (normally "a"). -libext=$libext - -# Shared library suffix (normally ".so"). -shrext_cmds=$lt_shrext_cmds - -# The commands to extract the exported symbol list from a shared archive. -extract_expsyms_cmds=$lt_extract_expsyms_cmds - -# Variables whose values should be saved in libtool wrapper scripts and -# restored at link time. -variables_saved_for_relink=$lt_variables_saved_for_relink - -# Do we need the "lib" prefix for modules? -need_lib_prefix=$need_lib_prefix - -# Do we need a version for libraries? -need_version=$need_version - -# Library versioning type. -version_type=$version_type - -# Shared library runtime path variable. -runpath_var=$runpath_var - -# Shared library path variable. -shlibpath_var=$shlibpath_var - -# Is shlibpath searched before the hard-coded library search path? -shlibpath_overrides_runpath=$shlibpath_overrides_runpath - -# Format of library name prefix. -libname_spec=$lt_libname_spec - -# List of archive names. First name is the real one, the rest are links. -# The last name is the one that the linker finds with -lNAME -library_names_spec=$lt_library_names_spec - -# The coded name of the library, if different from the real name. -soname_spec=$lt_soname_spec - -# Permission mode override for installation of shared libraries. -install_override_mode=$lt_install_override_mode - -# Command to use after installation of a shared archive. -postinstall_cmds=$lt_postinstall_cmds - -# Command to use after uninstallation of a shared archive. -postuninstall_cmds=$lt_postuninstall_cmds - -# Commands used to finish a libtool library installation in a directory. -finish_cmds=$lt_finish_cmds - -# As "finish_cmds", except a single script fragment to be evaled but -# not shown. -finish_eval=$lt_finish_eval - -# Whether we should hardcode library paths into libraries. -hardcode_into_libs=$hardcode_into_libs - -# Compile-time system search path for libraries. -sys_lib_search_path_spec=$lt_sys_lib_search_path_spec - -# Run-time system search path for libraries. -sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec - -# Whether dlopen is supported. -dlopen_support=$enable_dlopen - -# Whether dlopen of programs is supported. -dlopen_self=$enable_dlopen_self - -# Whether dlopen of statically linked programs is supported. -dlopen_self_static=$enable_dlopen_self_static - -# Commands to strip libraries. -old_striplib=$lt_old_striplib -striplib=$lt_striplib - - -# The linker used to build libraries. -LD=$lt_LD - -# How to create reloadable object files. -reload_flag=$lt_reload_flag -reload_cmds=$lt_reload_cmds - -# Commands used to build an old-style archive. -old_archive_cmds=$lt_old_archive_cmds - -# A language specific compiler. -CC=$lt_compiler - -# Is the compiler the GNU compiler? -with_gcc=$GCC - -# Compiler flag to turn off builtin functions. -no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag - -# Additional compiler flags for building library objects. -pic_flag=$lt_lt_prog_compiler_pic - -# How to pass a linker flag through the compiler. -wl=$lt_lt_prog_compiler_wl - -# Compiler flag to prevent dynamic linking. -link_static_flag=$lt_lt_prog_compiler_static - -# Does compiler simultaneously support -c and -o options? -compiler_c_o=$lt_lt_cv_prog_compiler_c_o - -# Whether or not to add -lc for building shared libraries. -build_libtool_need_lc=$archive_cmds_need_lc - -# Whether or not to disallow shared libs when runtime libs are static. -allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes - -# Compiler flag to allow reflexive dlopens. -export_dynamic_flag_spec=$lt_export_dynamic_flag_spec - -# Compiler flag to generate shared objects directly from archives. -whole_archive_flag_spec=$lt_whole_archive_flag_spec - -# Whether the compiler copes with passing no objects directly. -compiler_needs_object=$lt_compiler_needs_object - -# Create an old-style archive from a shared archive. -old_archive_from_new_cmds=$lt_old_archive_from_new_cmds - -# Create a temporary old-style archive to link instead of a shared archive. -old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds - -# Commands used to build a shared archive. -archive_cmds=$lt_archive_cmds -archive_expsym_cmds=$lt_archive_expsym_cmds - -# Commands used to build a loadable module if different from building -# a shared archive. -module_cmds=$lt_module_cmds -module_expsym_cmds=$lt_module_expsym_cmds - -# Whether we are building with GNU ld or not. -with_gnu_ld=$lt_with_gnu_ld - -# Flag that allows shared libraries with undefined symbols to be built. -allow_undefined_flag=$lt_allow_undefined_flag - -# Flag that enforces no undefined symbols. -no_undefined_flag=$lt_no_undefined_flag - -# Flag to hardcode \$libdir into a binary during linking. -# This must work even if \$libdir does not exist -hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec - -# If ld is used when linking, flag to hardcode \$libdir into a binary -# during linking. This must work even if \$libdir does not exist. -hardcode_libdir_flag_spec_ld=$lt_hardcode_libdir_flag_spec_ld - -# Whether we need a single "-rpath" flag with a separated argument. -hardcode_libdir_separator=$lt_hardcode_libdir_separator - -# Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes -# DIR into the resulting binary. -hardcode_direct=$hardcode_direct - -# Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes -# DIR into the resulting binary and the resulting library dependency is -# "absolute",i.e impossible to change by setting \${shlibpath_var} if the -# library is relocated. -hardcode_direct_absolute=$hardcode_direct_absolute - -# Set to "yes" if using the -LDIR flag during linking hardcodes DIR -# into the resulting binary. -hardcode_minus_L=$hardcode_minus_L - -# Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR -# into the resulting binary. -hardcode_shlibpath_var=$hardcode_shlibpath_var - -# Set to "yes" if building a shared library automatically hardcodes DIR -# into the library and all subsequent libraries and executables linked -# against it. -hardcode_automatic=$hardcode_automatic - -# Set to yes if linker adds runtime paths of dependent libraries -# to runtime path list. -inherit_rpath=$inherit_rpath - -# Whether libtool must link a program against all its dependency libraries. -link_all_deplibs=$link_all_deplibs - -# Set to "yes" if exported symbols are required. -always_export_symbols=$always_export_symbols - -# The commands to list exported symbols. -export_symbols_cmds=$lt_export_symbols_cmds - -# Symbols that should not be listed in the preloaded symbols. -exclude_expsyms=$lt_exclude_expsyms - -# Symbols that must always be exported. -include_expsyms=$lt_include_expsyms - -# Commands necessary for linking programs (against libraries) with templates. -prelink_cmds=$lt_prelink_cmds - -# Commands necessary for finishing linking programs. -postlink_cmds=$lt_postlink_cmds - -# Specify filename containing input files. -file_list_spec=$lt_file_list_spec - -# How to hardcode a shared library path into an executable. -hardcode_action=$hardcode_action - -# ### END LIBTOOL CONFIG - -_LT_EOF - - case $host_os in - aix3*) - cat <<\_LT_EOF >> "$cfgfile" -# AIX sometimes has problems with the GCC collect2 program. For some -# reason, if we set the COLLECT_NAMES environment variable, the problems -# vanish in a puff of smoke. -if test "X${COLLECT_NAMES+set}" != Xset; then - COLLECT_NAMES= - export COLLECT_NAMES -fi -_LT_EOF - ;; - esac - - -ltmain="$ac_aux_dir/ltmain.sh" - - - # We use sed instead of cat because bash on DJGPP gets confused if - # if finds mixed CR/LF and LF-only lines. Since sed operates in - # text mode, it properly converts lines to CR/LF. This bash problem - # is reportedly fixed, but why not run on old versions too? - sed '$q' "$ltmain" >> "$cfgfile" \ - || (rm -f "$cfgfile"; exit 1) - - if test x"$xsi_shell" = xyes; then - sed -e '/^func_dirname ()$/,/^} # func_dirname /c\ -func_dirname ()\ -{\ -\ case ${1} in\ -\ */*) func_dirname_result="${1%/*}${2}" ;;\ -\ * ) func_dirname_result="${3}" ;;\ -\ esac\ -} # Extended-shell func_dirname implementation' "$cfgfile" > $cfgfile.tmp \ - && mv -f "$cfgfile.tmp" "$cfgfile" \ - || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") -test 0 -eq $? || _lt_function_replace_fail=: - - - sed -e '/^func_basename ()$/,/^} # func_basename /c\ -func_basename ()\ -{\ -\ func_basename_result="${1##*/}"\ -} # Extended-shell func_basename implementation' "$cfgfile" > $cfgfile.tmp \ - && mv -f "$cfgfile.tmp" "$cfgfile" \ - || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") -test 0 -eq $? || _lt_function_replace_fail=: - - - sed -e '/^func_dirname_and_basename ()$/,/^} # func_dirname_and_basename /c\ -func_dirname_and_basename ()\ -{\ -\ case ${1} in\ -\ */*) func_dirname_result="${1%/*}${2}" ;;\ -\ * ) func_dirname_result="${3}" ;;\ -\ esac\ -\ func_basename_result="${1##*/}"\ -} # Extended-shell func_dirname_and_basename implementation' "$cfgfile" > $cfgfile.tmp \ - && mv -f "$cfgfile.tmp" "$cfgfile" \ - || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") -test 0 -eq $? || _lt_function_replace_fail=: - - - sed -e '/^func_stripname ()$/,/^} # func_stripname /c\ -func_stripname ()\ -{\ -\ # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are\ -\ # positional parameters, so assign one to ordinary parameter first.\ -\ func_stripname_result=${3}\ -\ func_stripname_result=${func_stripname_result#"${1}"}\ -\ func_stripname_result=${func_stripname_result%"${2}"}\ -} # Extended-shell func_stripname implementation' "$cfgfile" > $cfgfile.tmp \ - && mv -f "$cfgfile.tmp" "$cfgfile" \ - || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") -test 0 -eq $? || _lt_function_replace_fail=: - - - sed -e '/^func_split_long_opt ()$/,/^} # func_split_long_opt /c\ -func_split_long_opt ()\ -{\ -\ func_split_long_opt_name=${1%%=*}\ -\ func_split_long_opt_arg=${1#*=}\ -} # Extended-shell func_split_long_opt implementation' "$cfgfile" > $cfgfile.tmp \ - && mv -f "$cfgfile.tmp" "$cfgfile" \ - || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") -test 0 -eq $? || _lt_function_replace_fail=: - - - sed -e '/^func_split_short_opt ()$/,/^} # func_split_short_opt /c\ -func_split_short_opt ()\ -{\ -\ func_split_short_opt_arg=${1#??}\ -\ func_split_short_opt_name=${1%"$func_split_short_opt_arg"}\ -} # Extended-shell func_split_short_opt implementation' "$cfgfile" > $cfgfile.tmp \ - && mv -f "$cfgfile.tmp" "$cfgfile" \ - || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") -test 0 -eq $? || _lt_function_replace_fail=: - - - sed -e '/^func_lo2o ()$/,/^} # func_lo2o /c\ -func_lo2o ()\ -{\ -\ case ${1} in\ -\ *.lo) func_lo2o_result=${1%.lo}.${objext} ;;\ -\ *) func_lo2o_result=${1} ;;\ -\ esac\ -} # Extended-shell func_lo2o implementation' "$cfgfile" > $cfgfile.tmp \ - && mv -f "$cfgfile.tmp" "$cfgfile" \ - || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") -test 0 -eq $? || _lt_function_replace_fail=: - - - sed -e '/^func_xform ()$/,/^} # func_xform /c\ -func_xform ()\ -{\ - func_xform_result=${1%.*}.lo\ -} # Extended-shell func_xform implementation' "$cfgfile" > $cfgfile.tmp \ - && mv -f "$cfgfile.tmp" "$cfgfile" \ - || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") -test 0 -eq $? || _lt_function_replace_fail=: - - - sed -e '/^func_arith ()$/,/^} # func_arith /c\ -func_arith ()\ -{\ - func_arith_result=$(( $* ))\ -} # Extended-shell func_arith implementation' "$cfgfile" > $cfgfile.tmp \ - && mv -f "$cfgfile.tmp" "$cfgfile" \ - || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") -test 0 -eq $? || _lt_function_replace_fail=: - - - sed -e '/^func_len ()$/,/^} # func_len /c\ -func_len ()\ -{\ - func_len_result=${#1}\ -} # Extended-shell func_len implementation' "$cfgfile" > $cfgfile.tmp \ - && mv -f "$cfgfile.tmp" "$cfgfile" \ - || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") -test 0 -eq $? || _lt_function_replace_fail=: - -fi - -if test x"$lt_shell_append" = xyes; then - sed -e '/^func_append ()$/,/^} # func_append /c\ -func_append ()\ -{\ - eval "${1}+=\\${2}"\ -} # Extended-shell func_append implementation' "$cfgfile" > $cfgfile.tmp \ - && mv -f "$cfgfile.tmp" "$cfgfile" \ - || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") -test 0 -eq $? || _lt_function_replace_fail=: - - - sed -e '/^func_append_quoted ()$/,/^} # func_append_quoted /c\ -func_append_quoted ()\ -{\ -\ func_quote_for_eval "${2}"\ -\ eval "${1}+=\\\\ \\$func_quote_for_eval_result"\ -} # Extended-shell func_append_quoted implementation' "$cfgfile" > $cfgfile.tmp \ - && mv -f "$cfgfile.tmp" "$cfgfile" \ - || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") -test 0 -eq $? || _lt_function_replace_fail=: - - - # Save a `func_append' function call where possible by direct use of '+=' - sed -e 's%func_append \([a-zA-Z_]\{1,\}\) "%\1+="%g' $cfgfile > $cfgfile.tmp \ - && mv -f "$cfgfile.tmp" "$cfgfile" \ - || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") - test 0 -eq $? || _lt_function_replace_fail=: -else - # Save a `func_append' function call even when '+=' is not available - sed -e 's%func_append \([a-zA-Z_]\{1,\}\) "%\1="$\1%g' $cfgfile > $cfgfile.tmp \ - && mv -f "$cfgfile.tmp" "$cfgfile" \ - || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") - test 0 -eq $? || _lt_function_replace_fail=: -fi - -if test x"$_lt_function_replace_fail" = x":"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Unable to substitute extended shell functions in $ofile" >&5 -$as_echo "$as_me: WARNING: Unable to substitute extended shell functions in $ofile" >&2;} -fi - - - mv -f "$cfgfile" "$ofile" || - (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile") - chmod +x "$ofile" - - ;; - "po-directories":C) - for ac_file in $CONFIG_FILES; do - # Support "outfile[:infile[:infile...]]" - case "$ac_file" in - *:*) ac_file=`echo "$ac_file"|sed 's%:.*%%'` ;; - esac - # PO directories have a Makefile.in generated from Makefile.in.in. - case "$ac_file" in */Makefile.in) - # Adjust a relative srcdir. - ac_dir=`echo "$ac_file"|sed 's%/[^/][^/]*$%%'` - ac_dir_suffix="/`echo "$ac_dir"|sed 's%^\./%%'`" - ac_dots=`echo "$ac_dir_suffix"|sed 's%/[^/]*%../%g'` - # In autoconf-2.13 it is called $ac_given_srcdir. - # In autoconf-2.50 it is called $srcdir. - test -n "$ac_given_srcdir" || ac_given_srcdir="$srcdir" - case "$ac_given_srcdir" in - .) top_srcdir=`echo $ac_dots|sed 's%/$%%'` ;; - /*) top_srcdir="$ac_given_srcdir" ;; - *) top_srcdir="$ac_dots$ac_given_srcdir" ;; - esac - # Treat a directory as a PO directory if and only if it has a - # POTFILES.in file. This allows packages to have multiple PO - # directories under different names or in different locations. - if test -f "$ac_given_srcdir/$ac_dir/POTFILES.in"; then - rm -f "$ac_dir/POTFILES" - test -n "$as_me" && echo "$as_me: creating $ac_dir/POTFILES" || echo "creating $ac_dir/POTFILES" - cat "$ac_given_srcdir/$ac_dir/POTFILES.in" | sed -e "/^#/d" -e "/^[ ]*\$/d" -e "s,.*, $top_srcdir/& \\\\," | sed -e "\$s/\(.*\) \\\\/\1/" > "$ac_dir/POTFILES" - POMAKEFILEDEPS="POTFILES.in" - # ALL_LINGUAS, POFILES, UPDATEPOFILES, DUMMYPOFILES, GMOFILES depend - # on $ac_dir but don't depend on user-specified configuration - # parameters. - if test -f "$ac_given_srcdir/$ac_dir/LINGUAS"; then - # The LINGUAS file contains the set of available languages. - if test -n "$OBSOLETE_ALL_LINGUAS"; then - test -n "$as_me" && echo "$as_me: setting ALL_LINGUAS in configure.in is obsolete" || echo "setting ALL_LINGUAS in configure.in is obsolete" - fi - ALL_LINGUAS_=`sed -e "/^#/d" -e "s/#.*//" "$ac_given_srcdir/$ac_dir/LINGUAS"` - # Hide the ALL_LINGUAS assigment from automake < 1.5. - eval 'ALL_LINGUAS''=$ALL_LINGUAS_' - POMAKEFILEDEPS="$POMAKEFILEDEPS LINGUAS" - else - # The set of available languages was given in configure.in. - # Hide the ALL_LINGUAS assigment from automake < 1.5. - eval 'ALL_LINGUAS''=$OBSOLETE_ALL_LINGUAS' - fi - # Compute POFILES - # as $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(lang).po) - # Compute UPDATEPOFILES - # as $(foreach lang, $(ALL_LINGUAS), $(lang).po-update) - # Compute DUMMYPOFILES - # as $(foreach lang, $(ALL_LINGUAS), $(lang).nop) - # Compute GMOFILES - # as $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(lang).gmo) - case "$ac_given_srcdir" in - .) srcdirpre= ;; - *) srcdirpre='$(srcdir)/' ;; - esac - POFILES= - UPDATEPOFILES= - DUMMYPOFILES= - GMOFILES= - for lang in $ALL_LINGUAS; do - POFILES="$POFILES $srcdirpre$lang.po" - UPDATEPOFILES="$UPDATEPOFILES $lang.po-update" - DUMMYPOFILES="$DUMMYPOFILES $lang.nop" - GMOFILES="$GMOFILES $srcdirpre$lang.gmo" - done - # CATALOGS depends on both $ac_dir and the user's LINGUAS - # environment variable. - INST_LINGUAS= - if test -n "$ALL_LINGUAS"; then - for presentlang in $ALL_LINGUAS; do - useit=no - if test "%UNSET%" != "$LINGUAS"; then - desiredlanguages="$LINGUAS" - else - desiredlanguages="$ALL_LINGUAS" - fi - for desiredlang in $desiredlanguages; do - # Use the presentlang catalog if desiredlang is - # a. equal to presentlang, or - # b. a variant of presentlang (because in this case, - # presentlang can be used as a fallback for messages - # which are not translated in the desiredlang catalog). - case "$desiredlang" in - "$presentlang"*) useit=yes;; - esac - done - if test $useit = yes; then - INST_LINGUAS="$INST_LINGUAS $presentlang" - fi - done - fi - CATALOGS= - if test -n "$INST_LINGUAS"; then - for lang in $INST_LINGUAS; do - CATALOGS="$CATALOGS $lang.gmo" - done - fi - test -n "$as_me" && echo "$as_me: creating $ac_dir/Makefile" || echo "creating $ac_dir/Makefile" - sed -e "/^POTFILES =/r $ac_dir/POTFILES" -e "/^# Makevars/r $ac_given_srcdir/$ac_dir/Makevars" -e "s|@POFILES@|$POFILES|g" -e "s|@UPDATEPOFILES@|$UPDATEPOFILES|g" -e "s|@DUMMYPOFILES@|$DUMMYPOFILES|g" -e "s|@GMOFILES@|$GMOFILES|g" -e "s|@CATALOGS@|$CATALOGS|g" -e "s|@POMAKEFILEDEPS@|$POMAKEFILEDEPS|g" "$ac_dir/Makefile.in" > "$ac_dir/Makefile" - for f in "$ac_given_srcdir/$ac_dir"/Rules-*; do - if test -f "$f"; then - case "$f" in - *.orig | *.bak | *~) ;; - *) cat "$f" >> "$ac_dir/Makefile" ;; - esac - fi - done - fi - ;; - esac - done ;; - "po/stamp-it":C) - if ! grep "^# INTLTOOL_MAKEFILE$" "po/Makefile.in" > /dev/null ; then - as_fn_error $? "po/Makefile.in.in was not created by intltoolize." "$LINENO" 5 - fi - rm -f "po/stamp-it" "po/stamp-it.tmp" "po/POTFILES" "po/Makefile.tmp" - >"po/stamp-it.tmp" - sed '/^#/d - s/^[[].*] *// - /^[ ]*$/d - '"s|^| $ac_top_srcdir/|" \ - "$srcdir/po/POTFILES.in" | sed '$!s/$/ \\/' >"po/POTFILES" - - sed '/^POTFILES =/,/[^\\]$/ { - /^POTFILES =/!d - r po/POTFILES - } - ' "po/Makefile.in" >"po/Makefile" - rm -f "po/Makefile.tmp" - mv "po/stamp-it.tmp" "po/stamp-it" - ;; - - esac -done # for ac_tag - - -as_fn_exit 0 -_ACEOF -ac_clean_files=$ac_clean_files_save - -test $ac_write_fail = 0 || - as_fn_error $? "write failure creating $CONFIG_STATUS" "$LINENO" 5 - - -# configure is writing to config.log, and then calls config.status. -# config.status does its own redirection, appending to config.log. -# Unfortunately, on DOS this fails, as config.log is still kept open -# by configure, so config.status won't be able to write to it; its -# output is simply discarded. So we exec the FD to /dev/null, -# effectively closing config.log, so it can be properly (re)opened and -# appended to by config.status. When coming back to configure, we -# need to make the FD available again. -if test "$no_create" != yes; then - ac_cs_success=: - ac_config_status_args= - test "$silent" = yes && - ac_config_status_args="$ac_config_status_args --quiet" - exec 5>/dev/null - $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false - exec 5>>config.log - # Use ||, not &&, to avoid exiting from the if with $? = 1, which - # would make configure fail if this is the last instruction. - $ac_cs_success || as_fn_exit 1 -fi -if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5 -$as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;} -fi - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: -Build options: - Version $VERSION - Install prefix $prefix - Build shared libs $enable_shared - Build static libs $enable_static - Build with tray support $enable_tray - Build with pango support $enable_pango - Build with dbus support $enable_dbus - Build with recording support $enable_recording - Build with debug support $enable_debug - Install default table data $enable_table_data -" >&5 -$as_echo " -Build options: - Version $VERSION - Install prefix $prefix - Build shared libs $enable_shared - Build static libs $enable_static - Build with tray support $enable_tray - Build with pango support $enable_pango - Build with dbus support $enable_dbus - Build with recording support $enable_recording - Build with debug support $enable_debug - Install default table data $enable_table_data -" >&6; } diff -Nru fcitx-4.0.1/configure.in fcitx-4.1.1/configure.in --- fcitx-4.0.1/configure.in 2010-12-17 04:24:55.000000000 +0000 +++ fcitx-4.1.1/configure.in 1970-01-01 00:00:00.000000000 +0000 @@ -1,310 +0,0 @@ -# -*- Autoconf -*- -# Process this file with autoconf to produce a configure script. - -AC_INIT -AC_CONFIG_SRCDIR([src/core/main.c]) -AM_INIT_AUTOMAKE(fcitx, "4.0.1") - -dnl Find out what type of system we are -AC_CANONICAL_HOST -AC_CONFIG_HEADERS(config.h) - -m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])]) - -# Checks for programs. -AC_PROG_CC -AC_PROG_INSTALL -AC_PROG_MAKE_SET -AC_PROG_RANLIB -AC_PROG_LIBTOOL - -# Checks for libraries. -AM_ICONV - -# Checks for header files. -AC_HEADER_STDC -AC_HEADER_SYS_WAIT -AC_CHECK_HEADERS([limits.h malloc.h malloc/malloc.h stdlib.h string.h sys/param.h unistd.h wait.h sys/wait.h machine/endian.h pthread.h]) - -AC_MSG_CHECKING([host platform characteristics]) - -case "$host" in - *-*-*freebsd*) - HOST_LIBS="-lexecinfo -pthread" - md5prog=gmd5sum - ;; - *-*-linux*) - HOST_LIBS="-ldl -lpthread" - md5prog=md5sum - ;; -esac - -AC_SUBST(HOST_LIBS) - -AC_PATH_PROGS(WGET, wget, false) -if test "x$WGET" = "xfalse" -then - AC_MSG_WARN([without wget you cannot download data automatically]) -fi - -AC_PATH_PROGS(TAR, tar, no) -if test "x$TAR" = "xno"; -then - AC_MSG_ERROR([You need to install tar]) -fi - -AC_PATH_PROGS(MD5SUM, $md5prog, no) -if test "x$MD5SUM" = "xno"; -then - AC_MSG_ERROR([You need to install md5sum]) -fi -AC_SUBST(WGET) -AC_SUBST(TAR) -AC_SUBST(MD5SUM) - -# x11 -AC_PATH_X -test -n "$x_libraries" && X_LIBS="-L$x_libraries" -test -n "$x_includes" && X_CFLAGS="-I$x_includes" -AC_SUBST(X_LIBS) -AC_SUBST(X_CFLAGS) - -PKG_CHECK_MODULES(XRENDER, xrender, have_xrender=true, :) -if test "x$have_xrender" = "xtrue"; then - AC_SUBST(XRENDER_LIBS) - AC_SUBST(XRENDER_CFLAGS) - : -else - AC_MSG_ERROR([No XRender Lib found!]) - : -fi - -PKG_CHECK_MODULES(CAIRO_XLIB, cairo-xlib, have_cairo_xlib=true, :) -if test "x$have_cairo_xlib" = "xtrue"; then - AC_SUBST(CAIRO_XLIB_LIBS) - AC_SUBST(CAIRO_XLIB_CFLAGS) - : -else - AC_MSG_ERROR([No cairo-xlib found!]) - : -fi - -# Option to enable the DBus interface for kimpanel support. -AC_ARG_ENABLE(pango, - AS_HELP_STRING([--enable-pango], - [Enable Pango For Better font support]), - [case "${enableval}" in - yes) enable_pango=yes ;; - no) enable_pango=no ;; - auto) enable_pango=auto ;; - *) AC_MSG_ERROR([bad value "${enableval}" for --enable-dbus, use "yes" or "no" or "auto"(default).]) ;; - esac], - [enable_pango=auto] -) - -if test "x$enable_pango" = "xno"; then - # --enable-pango=no - : -else - PKG_CHECK_MODULES(PANGOCAIRO, pangocairo, have_pangocairo=true, :) - if test "x$have_pangocairo" = "xtrue"; then - AC_SUBST(PANGOCAIRO_LIBS) - AC_SUBST(PANGOCAIRO_CFLAGS) - : - else - if test "x$enable_pango" = "xyes"; then - # Must use pango, raise a error. - AC_MSG_ERROR([No PANGOCAIRO found, configure for pango failed!]) - else - AC_MSG_WARN([No PANGOCAIRO found, skipping configure for pango]) - fi - fi -fi -AM_CONDITIONAL(HAVE_PANGOCAIRO, [ test "x$have_pangocairo" = "xtrue"]) - -if test "x$have_pangocairo" = "xtrue"; then - AC_DEFINE(_ENABLE_PANGO,,[Enable Pango]) -fi - -PKG_CHECK_MODULES(FONTCONFIG, fontconfig, have_fontconfig=true, :) -if test "x$have_fontconfig" = "xtrue"; then - AC_SUBST(FONTCONFIG_LIBS) - AC_SUBST(FONTCONFIG_CFLAGS) - : -else - AC_MSG_ERROR([No fontconfig lib found!]) - : -fi - -# Option to enable the DEBUG -AC_ARG_ENABLE(debug, - AS_HELP_STRING([--enable-debug],[Enable DEBUG]), - [case "${enableval}" in - yes) enable_debug=yes ;; - no) enable_debug=no ;; - *) AC_MSG_ERROR([bad value "${enableval}" for --enable-debug, use "yes" or "no" (default).]) ;; - esac], - [enable_debug=no] -) - -if test "x$enable_debug" = "xyes"; then - AC_DEFINE(_DEBUG,,[Enable Debug]) - CFLAGS="$CFLAGS -g" -fi -AM_CONDITIONAL([ENABLE_DEBUG], [test "x$enable_debug" = "xyes"]) - -# Option to enable the TRAY -AC_ARG_ENABLE(tray, - AS_HELP_STRING([--disable-tray],[Disable tray icon]), - [case "${enableval}" in - yes) enable_tray=yes ;; - no) enable_tray=no ;; - *) AC_MSG_ERROR([bad value "${enableval}" for --enable-tray, use "yes" (default) or "no".]) ;; - esac], - [enable_tray=yes] -) - -if test "x$enable_tray" != "xno"; then - AC_DEFINE(_ENABLE_TRAY,,[Enable Tray Icon]) -fi -AM_CONDITIONAL([ENABLE_TRAY], [test "x$enable_tray" != "xno"]) - -# Option to enable the recording -AC_ARG_ENABLE(recording, - AS_HELP_STRING([--enable-recording],[Enable recording of user input]), - [case "${enableval}" in - yes) enable_recording=yes ;; - no) enable_recording=no ;; - *) AC_MSG_ERROR([bad value "${enableval}" for --enable-recording, use "yes" or "no" (default).]) ;; - esac], - [enable_recording=no] -) - -if test "x$enable_recording" = "xyes"; then - AC_DEFINE(_ENABLE_RECORDING,,[Enable Recording]) -fi -AM_CONDITIONAL([ENABLE_RECORDING], [test "x$enable_recording" = "xyes"]) - -# Option to enable the DBus interface for kimpanel support. -AC_ARG_ENABLE(dbus, - AS_HELP_STRING([--enable-dbus],[Enable Dbus for kimpanel support]), - [case "${enableval}" in - yes) enable_dbus=yes ;; - no) enable_dbus=no ;; - auto) enable_dbus=auto ;; - *) AC_MSG_ERROR([bad value "${enableval}" for --enable-dbus, use "yes" or "no" or "auto"(default).]) ;; - esac], - [enable_dbus=auto] -) - -if test "x$enable_dbus" = "xno"; then - # --enable-dbus=no - : -else - # Checks for Dbus - PKG_CHECK_MODULES(DBUS, dbus-1 >= 0.2, have_dbus=true, :) - - if test "x$have_dbus" = "xtrue"; then - AC_SUBST(DBUS_LIBS) - AC_SUBST(DBUS_CFLAGS) - : - else - if test "x$enable_dbus" = "xyes"; then - # Must use dbus, raise a error. - AC_MSG_ERROR([No dbus found, configure for Dbus failed!]) - else - AC_MSG_WARN([No dbus found, skipping configure for Dbus]) - fi - fi -fi -AM_CONDITIONAL(HAVE_DBUS, [test "x$have_dbus" = "xtrue"]) - -if test "x$have_dbus" = "xtrue"; then - AC_DEFINE(_ENABLE_DBUS,,[Enable DBus]) -fi - -AC_ARG_ENABLE(table_data, - AS_HELP_STRING([--disable-table-data],[Disable Table Data Install]), - [case "${enableval}" in - yes) enable_table_data=yes ;; - no) enable_table_data=no ;; - *) AC_MSG_ERROR([bad value "${enableval}" for --enable-table-data, use "yes"(defaule) or "no".]) ;; - esac], - [enable_table_data=yes] -) -AM_CONDITIONAL(ENABLE_TABLE_DATA, [test "x$enable_table_data" = "xyes"]) - - -CFLAGS="$CFLAGS -Wall" - -# Checks for typedefs, structures, and compiler characteristics. -AC_TYPE_PID_T -AC_TYPE_SIZE_T - -# Checks for library functions. -AC_FUNC_FORK -AC_FUNC_MALLOC -AC_TYPE_SIGNAL -AC_CHECK_FUNCS([memmove memset mkdir setlocale strcasecmp strstr strtol asprintf vasprintf]) - -ALL_LINGUAS="zh_CN" -GETTEXT_PACKAGE=fcitx -AC_SUBST(GETTEXT_PACKAGE) -AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE,"$GETTEXT_PACKAGE", [Gettext package]) -AC_PROG_INTLTOOL([0.35.0]) -AM_GNU_GETTEXT([external]) - -AC_SUBST(INCINTL) - -#dirty workaround for old intltool autoconf and automake -if test "x$DATADIRNAME" = "x"; then - DATADIRNAME=share - AC_SUBST(DATADIRNAME) -fi - -AC_CONFIG_FILES([ - Makefile - fcitx.spec - doc/Makefile - doc/man/Makefile - data/Makefile - data/table/Makefile - skin/Makefile - skin/default/Makefile - skin/dark/Makefile - skin/classic/Makefile - png/Makefile - lib/Makefile - src/Makefile - src/core/Makefile - src/im/Makefile - src/im/pinyin/Makefile - src/im/qw/Makefile - src/im/special/Makefile - src/im/extra/Makefile - src/im/table/Makefile - src/interface/Makefile - src/ui/Makefile - src/tools/Makefile - src/fcitx-config/Makefile - src/fcitx-config/fcitx-config.pc - src/core/fcitx.pc - tools/Makefile - test/Makefile - po/Makefile.in -]) -AC_OUTPUT - -AC_MSG_RESULT([ -Build options: - Version $VERSION - Install prefix $prefix - Build shared libs $enable_shared - Build static libs $enable_static - Build with tray support $enable_tray - Build with pango support $enable_pango - Build with dbus support $enable_dbus - Build with recording support $enable_recording - Build with debug support $enable_debug - Install default table data $enable_table_data -]) diff -Nru fcitx-4.0.1/data/addon.desc fcitx-4.1.1/data/addon.desc --- fcitx-4.0.1/data/addon.desc 2010-12-17 06:03:52.000000000 +0000 +++ fcitx-4.1.1/data/addon.desc 2011-09-08 16:00:05.000000000 +0000 @@ -2,10 +2,23 @@ Type=String Description=Name +[Addon/GeneralName] +Type=I18NString +Description=Name that can be display in UI +DefaultValue= + +[Addon/Comment] +Type=I18NString +Description=Comment +DefaultValue= + [Addon/Category] Type=Enum -EnumCount=1 +EnumCount=4 Enum0=InputMethod +Enum1=Frontend +Enum2=Module +Enum3=UI Description=Category [Addon/Enabled] @@ -13,12 +26,30 @@ DefaultValue=True Description=Enabled -[Addon/Module] +[Addon/Library] Type=String -Description=Module +Description=Library [Addon/Type] Type=Enum EnumCount=1 Enum0=SharedLibrary Description=Type + +[Addon/Dependency] +Type=String +DefaultValue= +Description=Dependency + +[Addon/Priority] +Type=Integer +DefaultValue=50 +Description=Priority of addon + +[Addon/SubConfig] +Type=String +DefaultValue= +Description=Sub Configuration for Module + +[DescriptionFile] +LocaleDomain=fcitx diff -Nru fcitx-4.0.1/data/CMakeLists.txt fcitx-4.1.1/data/CMakeLists.txt --- fcitx-4.0.1/data/CMakeLists.txt 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/data/CMakeLists.txt 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,63 @@ +if (ENABLE_TABLE) + add_subdirectory(table) +endif (ENABLE_TABLE) + +add_subdirectory(script) + +set(FCITX_DESC_FILES + addon.desc + config.desc + profile.desc +) + +set(FCITX_DATA_FILES + AutoEng.dat + gbks2t.tab + punc.mb + vk.conf +) + +set(FCITX_PY_FILES + pySym.mb + sp.dat +) + +set(FCITX_DSEKTOP_FILES + fcitx.desktop + fcitx-kimpanel.desktop + fcitx-configtool.desktop +) + +set(PY_ORGDATA pyPhrase.org) +set(PY_DATA ${CMAKE_CURRENT_BINARY_DIR}/pybase.mb ${CMAKE_CURRENT_BINARY_DIR}/pyphrase.mb) +set(PY_TAR ${CMAKE_CURRENT_SOURCE_DIR}/pinyin.tar.gz) +set(PY_URL http://fcitx.googlecode.com/files/pinyin.tar.gz) + + +add_subdirectory(png) + +intltool_merge_translation(${CMAKE_CURRENT_SOURCE_DIR}/fcitx-configtool.desktop.in ${CMAKE_CURRENT_BINARY_DIR}/fcitx-configtool.desktop ) +intltool_merge_translation(${CMAKE_CURRENT_SOURCE_DIR}/fcitx-kimpanel.desktop.in ${CMAKE_CURRENT_BINARY_DIR}/fcitx-kimpanel.desktop ) +intltool_merge_translation(${CMAKE_CURRENT_SOURCE_DIR}/fcitx.desktop.in ${CMAKE_CURRENT_BINARY_DIR}/fcitx.desktop ) + +add_custom_target(pinyin_data ALL DEPENDS ${PY_DATA}) + +add_custom_command(OUTPUT ${PY_ORGDATA} + COMMAND ${CMAKE_CURRENT_SOURCE_DIR}/download.sh "${WGET}" "${PY_URL}" "${PY_TAR}" + COMMAND ${TAR} xzmvf ${PY_TAR}) +add_custom_command(OUTPUT ${PY_DATA} + DEPENDS ${PY_ORGDATA} + COMMAND createPYMB ${CMAKE_CURRENT_SOURCE_DIR}/gbkpy.org ${CMAKE_CURRENT_BINARY_DIR}/${PY_ORGDATA}) + +add_custom_target(desktopfile ALL DEPENDS ${FCITX_DSEKTOP_FILES}) +install(FILES ${CMAKE_CURRENT_BINARY_DIR}/fcitx.desktop DESTINATION share/applications/) +install(FILES ${CMAKE_CURRENT_BINARY_DIR}/fcitx-configtool.desktop DESTINATION share/applications/) +if (_ENABLE_DBUS) + install(FILES ${CMAKE_CURRENT_BINARY_DIR}/fcitx-kimpanel.desktop DESTINATION share/applications/) +endif(_ENABLE_DBUS) + +install(FILES ${FCITX_DATA_FILES} DESTINATION ${pkgdatadir}/data) +fcitx_add_configdesc_file(${FCITX_DESC_FILES}) +install(FILES ${FCITX_PY_FILES} ${CMAKE_CURRENT_BINARY_DIR}/pybase.mb ${CMAKE_CURRENT_BINARY_DIR}/pyphrase.mb DESTINATION ${pkgdatadir}/pinyin) + +set_directory_properties(PROPERTIES ADDITIONAL_MAKE_CLEAN_FILES "${CMAKE_CURRENT_BINARY_DIR}/pyERROR,${CMAKE_CURRENT_BINARY_DIR}/pyPhrase.ok") diff -Nru fcitx-4.0.1/data/config.desc fcitx-4.1.1/data/config.desc --- fcitx-4.0.1/data/config.desc 2010-12-03 13:40:29.000000000 +0000 +++ fcitx-4.1.1/data/config.desc 2011-09-08 16:00:05.000000000 +0000 @@ -1,43 +1,13 @@ -[Program/Font] -Type=Font -DefaultValue= -Description=Font - -[Program/MenuFont] -Type=Font -DefaultValue= -Description=Menu Font - -[Program/FontLocale] -Type=String -DefaultValue=zh_CN.UTF-8 -Description=Font Locale to display - -[Program/RecordFile] -Type=File -DefaultValue= -Description=Record File of Input - -[Program/UseTray] -Type=Boolean -DefaultValue=True -Description=Use System Tray Icon - -[Program/UseDBus] -Type=Boolean -DefaultValue=False -Description=Use DBus to display UI (Require KIMPanel) - -[Program/EnableAddons] -Type=Boolean -DefaultValue=True -Description=Enable Addons to Fcitx - [Program/DelayStart] Type=Integer DefaultValue=0 Description=Seconds sleep before fcitx really start +[Program/FirstRun] +Type=Boolean +DefaultValue=True +Description=It's the first time Fcitx Start. + [Output/HalfPuncAfterNumber] Type=Boolean DefaultValue=True @@ -52,53 +22,25 @@ DefaultValue=Commit Description=Action after press enter -[Output/SemiColonAction] -Type=Enum -EnumCount=3 -Enum0=NoChange -Enum1=Eng -Enum2=QuickPhrase -DefaultValue=QuickPhrase -Description=Action after press SemiColon - -[Output/InputEngByCapitalChar] -Type=Boolean -DefaultValue=True -Description=Input English Character if you input upper case - -[Output/ConvertPunc] -Type=Boolean -DefaultValue=True -Description=Convert Punc to Chinese Punc - -[Output/LegendModeDisablePaging] +[Output/RemindModeDisablePaging] Type=Boolean DefaultValue=True -Description=Disable Paging in Legend Mode +Description=Disable Paging in Remind Mode [Output/SendTextWhenSwitchEng] Type=Boolean DefaultValue=False Description=Send inputed Text if Switch to English Mode -[Appearance/CandidateWordNumber] +[Output/CandidateWordNumber] Type=Integer DefaultValue=5 Description=Candidate Word Number -[Appearance/MainWindowHideMode] -Type=Enum -EnumCount=3 -Enum0=Show -Enum1=Auto -Enum2=Hide -DefaultValue=Auto -Description=Main Window Hide Mode - -[Appearance/CenterInputWindow] +[Output/PhraseTips] Type=Boolean -DefaultValue=False -Description=Show Input Window In the center of screen +DefaultValue=True +Description=Give the tips of Phrase [Appearance/ShowInputWindowAfterTriggering] Type=Boolean @@ -120,30 +62,28 @@ DefaultValue=True Description=Show Version -[Appearance/ShowHintWindow] +[Appearance/HideInputWindowWhenOnlyPreeditString] Type=Boolean -DefaultValue=True -Description=Show Hint Window while ENV is not correctly configured. +DefaultValue=False +Description=Do not show input window if there is only preedit string -[Appearance/SkinType] -Type=String -DefaultValue=default -Description=Skin Name in use +[Appearance/HideInputWindowWhenOnlyOneCandidate] +Type=Boolean +DefaultValue=False +Description=Do not show input window if there is one one candidate (Hide when only preedit string must be selected) [Hotkey/TriggerKey] Type=Hotkey DefaultValue=CTRL_SPACE Description=Hot key of Triggering Input Method -[Hotkey/ChnEngSwitchKey] +[Hotkey/SwitchKey] Type=Enum -EnumCount=6 +EnumCount=4 Enum0=R_CTRL Enum1=R_SHIFT Enum2=L_SHIFT -Enum3=R_SUPER -Enum4=L_SUPER -Enum5=L_CTRL +Enum3=L_CTRL DefaultValue=L_CTRL Description=Hotkey of Switching Chinese and English Mode @@ -157,45 +97,25 @@ DefaultValue=250 Description=Interval of Two Key Input -[Hotkey/FollowCursorKey] -Type=Hotkey -DefaultValue=CTRL_K -Description=Hotkey of Switching Follow Cursor Mode - -[Hotkey/HideMainWindowKey] -Type=Hotkey -DefaultValue=CTRL_ALT_H -Description=Hotkey of Hiding Main Window - [Hotkey/VKSwitchKey] Type=Hotkey -DefaultValue=CTRL_ALT_K +DefaultValue=CTRL_ALT_B Description=Hotkey of Switching Virtual Keyboard -[Hotkey/TraditionalChnSwitchKey] -Type=Hotkey -DefaultValue=CTRL_ALT_F -Description=Hotkey of Switching Traditional Chinese Input Mode On. - -[Hotkey/LegendSwitchKey] -Type=Hotkey -DefaultValue=CTRL_L -Description=Hotkey of Switching Legend Mode - -[Hotkey/LookupPinyinKey] +[Hotkey/RemindSwitchKey] Type=Hotkey -DefaultValue=CTRL_ALT_E -Description=Hotkey of Looking up the Corresponding pinyin of Word. +DefaultValue= +Description=Hotkey of Switching Remind Mode [Hotkey/FullWidthSwitchKey] Type=Hotkey DefaultValue=SHIFT_SPACE Description=Hotkey of Switching Full Width Character Mode -[Hotkey/ChnPuncSwitchKey] +[Hotkey/PuncSwitchKey] Type=Hotkey DefaultValue=ALT_SPACE -Description=Hotkey of Switch Chinese Punc Mode +Description=Hotkey of Switch Full Width Punc Mode [Hotkey/PrevPageKey] Type=Hotkey @@ -217,164 +137,10 @@ DefaultValue=CTRL_ALT_S Description=Hotkey of Saving All Config and Input History -[Hotkey/SetRecordingKey] -Type=Hotkey -DefaultValue=CTRL_ALT_J -Description=Hotkey of Switching Recording Mode - -[Hotkey/ResetRecordingKey] +[Hotkey/SwitchPreedit] Type=Hotkey -DefaultValue=CTRL_ALT_A -Description=Hotkey of Reseting Recording Mode - -[InputMethod/PinyinOrder] -Type=Integer -DefaultValue=1 -Description=Pinyin Priority Order, Zero to Disable - -[InputMethod/ShuangpinOrder] -Type=Integer -DefaultValue=1 -Description=Shuangpin Priority Order, Zero to Disable - -[InputMethod/DefaultShuangpinSchema] -Type=String -DefaultValue=自然码 -Description=Default Shuangpin Schema - -[InputMethod/QuweiOrder] -Type=Integer -DefaultValue=0 -Description=Quwei Priority Order, Zero to Disable +DefaultValue=CTRL_ALT_P +Description=Hotkey of Switch Embeded Preedit -[InputMethod/TableOrder] -Type=Integer -DefaultValue=1 -Description=Table Priority Order, Zero to Disable - -[InputMethod/PhraseTips] -Type=Boolean -DefaultValue=True -Description=Give the tips of Phrase - -[Pinyin/UseCompletePinyin] -Type=Boolean -DefaultValue=False -Description=Use Complete Pinyin - -[Pinyin/AutoCreatePhrase] -Type=Boolean -DefaultValue=True -Description=Auto Create Phrase - -[Pinyin/SaveAutoPhrase] -Type=Boolean -DefaultValue=False -Description=Save Auto Created Phrase - -[Pinyin/AddFreqWordKey] -Type=Hotkey -DefaultValue=CTRL_8 -Description=Hotkey of Adding Frequent Word - -[Pinyin/DeleteFreqWordKey] -Type=Hotkey -DefaultValue=CTRL_7 -Description=Hotkey of Deleting Frequent Word - -[Pinyin/DeleteUserPhraseKey] -Type=Hotkey -DefaultValue=CTRL_DELETE -Description=Hotkey of Delete User Phrase - -[Pinyin/InputWordFromPhraseKey] -Type=String -DefaultValue=[] -Description=Hotkey of Inputing Word From Phrase - -[Pinyin/BaseOrder] -Type=Enum -EnumCount=3 -Enum0=AdjustNo -Enum1=AdjustFast -Enum2=AdjustFreq -DefaultValue=AdjustFreq -Description=Rule of Candidate Word Order - -[Pinyin/PhraseOrder] -Type=Enum -EnumCount=3 -Enum0=AdjustNo -Enum1=AdjustFast -Enum2=AdjustFreq -DefaultValue=AdjustFast -Description=Rule of Candidate Phrase Order - -[Pinyin/FreqOrder] -Type=Enum -EnumCount=3 -Enum0=AdjustNo -Enum1=AdjustFast -Enum2=AdjustFreq -DefaultValue=AdjustNo -Description=Rule of Frequent Word Order - -[Pinyin/FuzzyAnAng] -Type=Boolean -DefaultValue=False -Description=Fuzzy an and ang - -[Pinyin/FuzzyEnEng] -Type=Boolean -DefaultValue=False -Description=Fuzzy en and eng - -[Pinyin/FuzzyIanIang] -Type=Boolean -DefaultValue=False -Description=Fuzzy ian and iang - -[Pinyin/FuzzyInIng] -Type=Boolean -DefaultValue=False -Description=Fuzzy in and ing - -[Pinyin/FuzzyOuU] -Type=Boolean -DefaultValue=False -Description=Fuzzy ou and u - -[Pinyin/FuzzyUanUang] -Type=Boolean -DefaultValue=False -Description=Fuzzy uan and uang - -[Pinyin/FuzzyCCh] -Type=Boolean -DefaultValue=False -Description=Fuzzy c and ch - -[Pinyin/FuzzyFH] -Type=Boolean -DefaultValue=False -Description=Fuzzy f and h - -[Pinyin/FuzzyLN] -Type=Boolean -DefaultValue=False -Description=Fuzzy l and n - -[Pinyin/FuzzySSH] -Type=Boolean -DefaultValue=False -Description=Fuzzy s and sh - -[Pinyin/FuzzyZZH] -Type=Boolean -DefaultValue=False -Description=Fuzzy z and zh - -[Pinyin/Misstype] -Type=Boolean -DefaultValue=False -Description=Fix misstype gn/ng +[DescriptionFile] +LocaleDomain=fcitx diff -Nru fcitx-4.0.1/data/download.sh fcitx-4.1.1/data/download.sh --- fcitx-4.0.1/data/download.sh 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/data/download.sh 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,7 @@ +#!/bin/sh +WGET=$1 +URL=$2 +OUTPUT=$3 +if [ ! -f $OUTPUT ]; then + ${WGET} -O $OUTPUT $URL +fi \ No newline at end of file diff -Nru fcitx-4.0.1/data/fcitx-config fcitx-4.1.1/data/fcitx-config --- fcitx-4.0.1/data/fcitx-config 2010-11-28 11:54:59.000000000 +0000 +++ fcitx-4.1.1/data/fcitx-config 1970-01-01 00:00:00.000000000 +0000 @@ -1,39 +0,0 @@ -#!/bin/sh -#-------------------------------------- -# fcitx-config -# - -# from xdg-open - -detectDE() -{ - if [ x"$KDE_FULL_SESSION" = x"true" ]; then DE=kde; - elif [ x"$GNOME_DESKTOP_SESSION_ID" != x"" ]; then DE=gnome; - elif `dbus-send --print-reply --dest=org.freedesktop.DBus /org/freedesktop/DBus org.freedesktop.DBus.GetNameOwner string:org.gnome.SessionManager > /dev/null 2>&1` ; then DE=gnome; - elif xprop -root _DT_SAVE_MODE 2> /dev/null | grep ' = \"xfce4\"$' >/dev/null 2>&1; then DE=xfce; - fi -} - -run_gtk() -{ - command=`which fcitx-config-gtk 2>&1` - if [ $? -eq 0 ]; then - exec $command - else - run_xdg - fi -} - -run_xdg() -{ - command=`which xdg-open` - if [ $? -eq 0 ]; then - exec $command ~/.config/fcitx/config - else - exit 0 - fi -} - -detectDE - -run_gtk diff -Nru fcitx-4.0.1/data/fcitx-configtool.desktop.in fcitx-4.1.1/data/fcitx-configtool.desktop.in --- fcitx-4.0.1/data/fcitx-configtool.desktop.in 2010-12-08 04:40:13.000000000 +0000 +++ fcitx-4.1.1/data/fcitx-configtool.desktop.in 2011-09-08 16:00:05.000000000 +0000 @@ -1,10 +1,10 @@ [Desktop Entry] -Exec=fcitx-config -_GenericName=Fcitx Configuration Tool -_Comment=Fcitx GUI Config Tool _Name=Fcitx Config Tool +_Comment=Fcitx GUI Config Tool +Exec=fcitx-configtool Icon=fcitx MimeType= -StartupNotify=true Type=Application Categories=Settings; +X-KDE-StartupNotify=false +StartupNotify=false diff -Nru fcitx-4.0.1/data/fcitx.desktop.in fcitx-4.1.1/data/fcitx.desktop.in --- fcitx-4.0.1/data/fcitx.desktop.in 2010-11-28 11:54:59.000000000 +0000 +++ fcitx-4.1.1/data/fcitx.desktop.in 2011-09-08 16:00:05.000000000 +0000 @@ -1,15 +1,14 @@ [Desktop Entry] -Encoding=UTF-8 _Name=Fcitx -_GenericName=Free Chinese Input Toy of X _Comment=Chinese Input Method Exec=fcitx Icon=fcitx Terminal=false -Categories= Type=Application Categories=System;Utility; +StartupNotify=false X-GNOME-Autostart-Phase=Applications X-GNOME-AutoRestart=false -X-GNOME-Autostart-Notify=true +X-GNOME-Autostart-Notify=false X-KDE-autostart-after=panel +X-KDE-StartupNotify=false diff -Nru fcitx-4.0.1/data/fcitx-kimpanel.desktop.in fcitx-4.1.1/data/fcitx-kimpanel.desktop.in --- fcitx-4.0.1/data/fcitx-kimpanel.desktop.in 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/data/fcitx-kimpanel.desktop.in 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,14 @@ +[Desktop Entry] +_Name=Fcitx Kimpanel +_Comment=Chinese Input Method (Use Kimpanel) +Exec=fcitx -u fcitx-kimpanel-ui +Icon=fcitx +Terminal=false +Type=Application +Categories=System;Utility; +StartupNotify=false +X-GNOME-Autostart-Phase=Applications +X-GNOME-AutoRestart=false +X-GNOME-Autostart-Notify=false +X-KDE-autostart-after=panel +X-KDE-StartupNotify=false diff -Nru fcitx-4.0.1/data/getdescpo fcitx-4.1.1/data/getdescpo --- fcitx-4.0.1/data/getdescpo 2010-12-03 13:59:20.000000000 +0000 +++ fcitx-4.1.1/data/getdescpo 1970-01-01 00:00:00.000000000 +0000 @@ -1,28 +0,0 @@ -#!/bin/sh -filename=desc.po -dir=$1 -filename=`basename $filename` - -cd $dir - -rm -f desc.po; touch desc.po - -cd .. -# Extract Description -find data -iname "*.desc" | while read f -do - awk '/^[\t ]*Description=/ { print "\n#: '$f':" NR"\n" "msgid \"" substr($0, 13)"\"\n" "msgstr \"\""}' $f >> $dir/$filename -done - -# Extract Table Name -find data/table -name "*.conf" | while read f -do - awk '/^[\t ]*Name=/ { print "\n#: '$f':" NR"\n" "msgid \"" substr($0, 6)"\"\n" "msgstr \"\""}' $f >> $dir/$filename -done - -# Extract Group Name -grep -n '^\[' data/*.desc | awk ' "^[" { split($0, a, ":"); split(a[3], b, "/"); print substr(b[1], 2); }' | sort | uniq | awk '{ print "# unknown\nmsgid \""$0"\"\nmsgstr \"\"\n"; }' >> $dir/$filename - -# Extract Enum Name -grep -h 'Enum[0-9]' data/*.desc | sed -e 's/Enum[0-9]=//g' | sort | uniq | awk '{ print "#: unknown\nmsgid \""$0"\"\nmsgstr \"\"\n"; }' >> $dir/$filename - diff -Nru fcitx-4.0.1/data/Makefile.am fcitx-4.1.1/data/Makefile.am --- fcitx-4.0.1/data/Makefile.am 2010-12-08 04:33:36.000000000 +0000 +++ fcitx-4.1.1/data/Makefile.am 1970-01-01 00:00:00.000000000 +0000 @@ -1,57 +0,0 @@ -if ENABLE_TABLE_DATA -TABLE=table -endif - -SUBDIRS= \ - $(TABLE) \ - $(NULL) - -generaldir = $(pkgdatadir)/data - -configdescfile = config.desc profile.desc table.desc skin.desc addon.desc - -general_DATA = pybase.mb pyphrase.mb pySym.mb sp.dat punc.mb \ - vk.conf gbks2t.tab AutoEng.dat \ - $(configdescfile) - -pyorg_data = @srcdir@/pyPhrase.org -gbkorg_data = @srcdir@/gbkpy.org -py_data = @srcdir@/pybase.mb @srcdir@/pyphrase.mb -py_tar = @srcdir@/pinyin.tar.gz -py_url = http://fcitx.googlecode.com/files/pinyin.tar.gz - -bin_SCRIPTS = fcitx-config - -desktopdir = $(datadir)/applications -desktop_in_files = fcitx.desktop.in fcitx-configtool.desktop.in -desktop_DATA = $(desktop_in_files:.desktop.in=.desktop) - -EXTRA_DIST = pySym.mb sp.dat punc.mb vk.conf gbks2t.tab AutoEng.dat gbkpy.org getdescpo fcitx-config $(configdescfile) $(desktop_in_files) -CLEANFILES = $(py_data) -DISTCLEANFILES = $(pyorg_data) $(desktop_DATA) - -@INTLTOOL_DESKTOP_RULE@ - -@srcdir@/pybase.mb: @srcdir@/pyphrase.mb ; - -@srcdir@/pyphrase.mb: $(pyorg_data) $(gbkorg_data) - cd $(srcdir) && @abs_top_builddir@/tools/createPYMB $(gbkorg_data) $(pyorg_data) - -tools: - $(MAKE) -C ../tools - -$(pyorg_data): $(py_tar) - cd $(srcdir) && $(MD5SUM) -c $(py_tar).md5 || ( $(RM) $(py_tar); exit 1 ) - cd $(srcdir) && $(TAR) xzmvf $(py_tar) - -$(py_tar): - $(WGET) -O $(py_tar) $(py_url) - $(WGET) -O $(py_tar).md5 $(py_url).md5 - -all-local: tools $(py_data) @srcdir@/desc.po - rm -f pyERROR - rm -f pyPhrase.ok - -@srcdir@/desc.po: @srcdir@/*.desc - @srcdir@/getdescpo @abs_srcdir@ - diff -Nru fcitx-4.0.1/data/Makefile.in fcitx-4.1.1/data/Makefile.in --- fcitx-4.0.1/data/Makefile.in 2010-12-17 04:26:30.000000000 +0000 +++ fcitx-4.1.1/data/Makefile.in 1970-01-01 00:00:00.000000000 +0000 @@ -1,761 +0,0 @@ -# Makefile.in generated by automake 1.11.1 from Makefile.am. -# @configure_input@ - -# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, -# Inc. -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - -@SET_MAKE@ - - -VPATH = @srcdir@ -pkgdatadir = $(datadir)/@PACKAGE@ -pkgincludedir = $(includedir)/@PACKAGE@ -pkglibdir = $(libdir)/@PACKAGE@ -pkglibexecdir = $(libexecdir)/@PACKAGE@ -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = @build@ -host_triplet = @host@ -subdir = data -DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/configure.in -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -mkinstalldirs = $(install_sh) -d -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -CONFIG_CLEAN_VPATH_FILES = -am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; -am__vpath_adj = case $$p in \ - $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ - *) f=$$p;; \ - esac; -am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; -am__install_max = 40 -am__nobase_strip_setup = \ - srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` -am__nobase_strip = \ - for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" -am__nobase_list = $(am__nobase_strip_setup); \ - for p in $$list; do echo "$$p $$p"; done | \ - sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ - $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ - if (++n[$$2] == $(am__install_max)) \ - { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ - END { for (dir in files) print dir, files[dir] }' -am__base_list = \ - sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ - sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' -am__installdirs = "$(DESTDIR)$(bindir)" "$(DESTDIR)$(desktopdir)" \ - "$(DESTDIR)$(generaldir)" -SCRIPTS = $(bin_SCRIPTS) -AM_V_GEN = $(am__v_GEN_$(V)) -am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) -am__v_GEN_0 = @echo " GEN " $@; -AM_V_at = $(am__v_at_$(V)) -am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) -am__v_at_0 = @ -SOURCES = -DIST_SOURCES = -RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ - html-recursive info-recursive install-data-recursive \ - install-dvi-recursive install-exec-recursive \ - install-html-recursive install-info-recursive \ - install-pdf-recursive install-ps-recursive install-recursive \ - installcheck-recursive installdirs-recursive pdf-recursive \ - ps-recursive uninstall-recursive -DATA = $(desktop_DATA) $(general_DATA) -RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ - distclean-recursive maintainer-clean-recursive -AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \ - $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \ - distdir -ETAGS = etags -CTAGS = ctags -DIST_SUBDIRS = table -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -am__relativize = \ - dir0=`pwd`; \ - sed_first='s,^\([^/]*\)/.*$$,\1,'; \ - sed_rest='s,^[^/]*/*,,'; \ - sed_last='s,^.*/\([^/]*\)$$,\1,'; \ - sed_butlast='s,/*[^/]*$$,,'; \ - while test -n "$$dir1"; do \ - first=`echo "$$dir1" | sed -e "$$sed_first"`; \ - if test "$$first" != "."; then \ - if test "$$first" = ".."; then \ - dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ - dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ - else \ - first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ - if test "$$first2" = "$$first"; then \ - dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ - else \ - dir2="../$$dir2"; \ - fi; \ - dir0="$$dir0"/"$$first"; \ - fi; \ - fi; \ - dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ - done; \ - reldir="$$dir2" -ACLOCAL = @ACLOCAL@ -ALL_LINGUAS = @ALL_LINGUAS@ -AMTAR = @AMTAR@ -AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ -AR = @AR@ -AUTOCONF = @AUTOCONF@ -AUTOHEADER = @AUTOHEADER@ -AUTOMAKE = @AUTOMAKE@ -AWK = @AWK@ -CAIRO_XLIB_CFLAGS = @CAIRO_XLIB_CFLAGS@ -CAIRO_XLIB_LIBS = @CAIRO_XLIB_LIBS@ -CC = @CC@ -CCDEPMODE = @CCDEPMODE@ -CFLAGS = @CFLAGS@ -CPP = @CPP@ -CPPFLAGS = @CPPFLAGS@ -CYGPATH_W = @CYGPATH_W@ -DATADIRNAME = @DATADIRNAME@ -DBUS_CFLAGS = @DBUS_CFLAGS@ -DBUS_LIBS = @DBUS_LIBS@ -DEFS = @DEFS@ -DEPDIR = @DEPDIR@ -DLLTOOL = @DLLTOOL@ -DSYMUTIL = @DSYMUTIL@ -DUMPBIN = @DUMPBIN@ -ECHO_C = @ECHO_C@ -ECHO_N = @ECHO_N@ -ECHO_T = @ECHO_T@ -EGREP = @EGREP@ -EXEEXT = @EXEEXT@ -FGREP = @FGREP@ -FONTCONFIG_CFLAGS = @FONTCONFIG_CFLAGS@ -FONTCONFIG_LIBS = @FONTCONFIG_LIBS@ -GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ -GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ -GMSGFMT = @GMSGFMT@ -GMSGFMT_015 = @GMSGFMT_015@ -GREP = @GREP@ -HOST_LIBS = @HOST_LIBS@ -INCINTL = @INCINTL@ -INSTALL = @INSTALL@ -INSTALL_DATA = @INSTALL_DATA@ -INSTALL_PROGRAM = @INSTALL_PROGRAM@ -INSTALL_SCRIPT = @INSTALL_SCRIPT@ -INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ -INTLLIBS = @INTLLIBS@ -INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ -INTLTOOL_MERGE = @INTLTOOL_MERGE@ -INTLTOOL_PERL = @INTLTOOL_PERL@ -INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ -INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ -LD = @LD@ -LDFLAGS = @LDFLAGS@ -LIBICONV = @LIBICONV@ -LIBINTL = @LIBINTL@ -LIBOBJS = @LIBOBJS@ -LIBS = @LIBS@ -LIBTOOL = @LIBTOOL@ -LIPO = @LIPO@ -LN_S = @LN_S@ -LTLIBICONV = @LTLIBICONV@ -LTLIBINTL = @LTLIBINTL@ -LTLIBOBJS = @LTLIBOBJS@ -MAKEINFO = @MAKEINFO@ -MANIFEST_TOOL = @MANIFEST_TOOL@ -MD5SUM = @MD5SUM@ -MKDIR_P = @MKDIR_P@ -MSGFMT = @MSGFMT@ -MSGFMT_015 = @MSGFMT_015@ -MSGMERGE = @MSGMERGE@ -NM = @NM@ -NMEDIT = @NMEDIT@ -OBJDUMP = @OBJDUMP@ -OBJEXT = @OBJEXT@ -OTOOL = @OTOOL@ -OTOOL64 = @OTOOL64@ -PACKAGE = @PACKAGE@ -PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ -PACKAGE_NAME = @PACKAGE_NAME@ -PACKAGE_STRING = @PACKAGE_STRING@ -PACKAGE_TARNAME = @PACKAGE_TARNAME@ -PACKAGE_URL = @PACKAGE_URL@ -PACKAGE_VERSION = @PACKAGE_VERSION@ -PANGOCAIRO_CFLAGS = @PANGOCAIRO_CFLAGS@ -PANGOCAIRO_LIBS = @PANGOCAIRO_LIBS@ -PATH_SEPARATOR = @PATH_SEPARATOR@ -PKG_CONFIG = @PKG_CONFIG@ -PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ -PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ -POSUB = @POSUB@ -RANLIB = @RANLIB@ -SED = @SED@ -SET_MAKE = @SET_MAKE@ -SHELL = @SHELL@ -STRIP = @STRIP@ -TAR = @TAR@ -USE_NLS = @USE_NLS@ -VERSION = @VERSION@ -WGET = @WGET@ -XGETTEXT = @XGETTEXT@ -XGETTEXT_015 = @XGETTEXT_015@ -XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ -XMKMF = @XMKMF@ -XRENDER_CFLAGS = @XRENDER_CFLAGS@ -XRENDER_LIBS = @XRENDER_LIBS@ -X_CFLAGS = @X_CFLAGS@ -X_LIBS = @X_LIBS@ -abs_builddir = @abs_builddir@ -abs_srcdir = @abs_srcdir@ -abs_top_builddir = @abs_top_builddir@ -abs_top_srcdir = @abs_top_srcdir@ -ac_ct_AR = @ac_ct_AR@ -ac_ct_CC = @ac_ct_CC@ -ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ -am__include = @am__include@ -am__leading_dot = @am__leading_dot@ -am__quote = @am__quote@ -am__tar = @am__tar@ -am__untar = @am__untar@ -bindir = @bindir@ -build = @build@ -build_alias = @build_alias@ -build_cpu = @build_cpu@ -build_os = @build_os@ -build_vendor = @build_vendor@ -builddir = @builddir@ -datadir = @datadir@ -datarootdir = @datarootdir@ -docdir = @docdir@ -dvidir = @dvidir@ -exec_prefix = @exec_prefix@ -host = @host@ -host_alias = @host_alias@ -host_cpu = @host_cpu@ -host_os = @host_os@ -host_vendor = @host_vendor@ -htmldir = @htmldir@ -includedir = @includedir@ -infodir = @infodir@ -install_sh = @install_sh@ -libdir = @libdir@ -libexecdir = @libexecdir@ -localedir = @localedir@ -localstatedir = @localstatedir@ -mandir = @mandir@ -mkdir_p = @mkdir_p@ -oldincludedir = @oldincludedir@ -pdfdir = @pdfdir@ -prefix = @prefix@ -program_transform_name = @program_transform_name@ -psdir = @psdir@ -sbindir = @sbindir@ -sharedstatedir = @sharedstatedir@ -srcdir = @srcdir@ -sysconfdir = @sysconfdir@ -target_alias = @target_alias@ -top_build_prefix = @top_build_prefix@ -top_builddir = @top_builddir@ -top_srcdir = @top_srcdir@ -@ENABLE_TABLE_DATA_TRUE@TABLE = table -SUBDIRS = \ - $(TABLE) \ - $(NULL) - -generaldir = $(pkgdatadir)/data -configdescfile = config.desc profile.desc table.desc skin.desc addon.desc -general_DATA = pybase.mb pyphrase.mb pySym.mb sp.dat punc.mb \ - vk.conf gbks2t.tab AutoEng.dat \ - $(configdescfile) - -pyorg_data = @srcdir@/pyPhrase.org -gbkorg_data = @srcdir@/gbkpy.org -py_data = @srcdir@/pybase.mb @srcdir@/pyphrase.mb -py_tar = @srcdir@/pinyin.tar.gz -py_url = http://fcitx.googlecode.com/files/pinyin.tar.gz -bin_SCRIPTS = fcitx-config -desktopdir = $(datadir)/applications -desktop_in_files = fcitx.desktop.in fcitx-configtool.desktop.in -desktop_DATA = $(desktop_in_files:.desktop.in=.desktop) -EXTRA_DIST = pySym.mb sp.dat punc.mb vk.conf gbks2t.tab AutoEng.dat gbkpy.org getdescpo fcitx-config $(configdescfile) $(desktop_in_files) -CLEANFILES = $(py_data) -DISTCLEANFILES = $(pyorg_data) $(desktop_DATA) -all: all-recursive - -.SUFFIXES: -$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ - && { if test -f $@; then exit 0; else break; fi; }; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign data/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign data/Makefile -.PRECIOUS: Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(am__aclocal_m4_deps): -install-binSCRIPTS: $(bin_SCRIPTS) - @$(NORMAL_INSTALL) - test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)" - @list='$(bin_SCRIPTS)'; test -n "$(bindir)" || list=; \ - for p in $$list; do \ - if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ - if test -f "$$d$$p"; then echo "$$d$$p"; echo "$$p"; else :; fi; \ - done | \ - sed -e 'p;s,.*/,,;n' \ - -e 'h;s|.*|.|' \ - -e 'p;x;s,.*/,,;$(transform)' | sed 'N;N;N;s,\n, ,g' | \ - $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1; } \ - { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ - if ($$2 == $$4) { files[d] = files[d] " " $$1; \ - if (++n[d] == $(am__install_max)) { \ - print "f", d, files[d]; n[d] = 0; files[d] = "" } } \ - else { print "f", d "/" $$4, $$1 } } \ - END { for (d in files) print "f", d, files[d] }' | \ - while read type dir files; do \ - if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ - test -z "$$files" || { \ - echo " $(INSTALL_SCRIPT) $$files '$(DESTDIR)$(bindir)$$dir'"; \ - $(INSTALL_SCRIPT) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ - } \ - ; done - -uninstall-binSCRIPTS: - @$(NORMAL_UNINSTALL) - @list='$(bin_SCRIPTS)'; test -n "$(bindir)" || exit 0; \ - files=`for p in $$list; do echo "$$p"; done | \ - sed -e 's,.*/,,;$(transform)'`; \ - test -n "$$list" || exit 0; \ - echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ - cd "$(DESTDIR)$(bindir)" && rm -f $$files - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs -install-desktopDATA: $(desktop_DATA) - @$(NORMAL_INSTALL) - test -z "$(desktopdir)" || $(MKDIR_P) "$(DESTDIR)$(desktopdir)" - @list='$(desktop_DATA)'; test -n "$(desktopdir)" || list=; \ - for p in $$list; do \ - if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ - echo "$$d$$p"; \ - done | $(am__base_list) | \ - while read files; do \ - echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(desktopdir)'"; \ - $(INSTALL_DATA) $$files "$(DESTDIR)$(desktopdir)" || exit $$?; \ - done - -uninstall-desktopDATA: - @$(NORMAL_UNINSTALL) - @list='$(desktop_DATA)'; test -n "$(desktopdir)" || list=; \ - files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ - test -n "$$files" || exit 0; \ - echo " ( cd '$(DESTDIR)$(desktopdir)' && rm -f" $$files ")"; \ - cd "$(DESTDIR)$(desktopdir)" && rm -f $$files -install-generalDATA: $(general_DATA) - @$(NORMAL_INSTALL) - test -z "$(generaldir)" || $(MKDIR_P) "$(DESTDIR)$(generaldir)" - @list='$(general_DATA)'; test -n "$(generaldir)" || list=; \ - for p in $$list; do \ - if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ - echo "$$d$$p"; \ - done | $(am__base_list) | \ - while read files; do \ - echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(generaldir)'"; \ - $(INSTALL_DATA) $$files "$(DESTDIR)$(generaldir)" || exit $$?; \ - done - -uninstall-generalDATA: - @$(NORMAL_UNINSTALL) - @list='$(general_DATA)'; test -n "$(generaldir)" || list=; \ - files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ - test -n "$$files" || exit 0; \ - echo " ( cd '$(DESTDIR)$(generaldir)' && rm -f" $$files ")"; \ - cd "$(DESTDIR)$(generaldir)" && rm -f $$files - -# This directory's subdirectories are mostly independent; you can cd -# into them and run `make' without going through this Makefile. -# To change the values of `make' variables: instead of editing Makefiles, -# (1) if the variable is set in `config.status', edit `config.status' -# (which will cause the Makefiles to be regenerated when you run `make'); -# (2) otherwise, pass the desired values on the `make' command line. -$(RECURSIVE_TARGETS): - @fail= failcom='exit 1'; \ - for f in x $$MAKEFLAGS; do \ - case $$f in \ - *=* | --[!k]*);; \ - *k*) failcom='fail=yes';; \ - esac; \ - done; \ - dot_seen=no; \ - target=`echo $@ | sed s/-recursive//`; \ - list='$(SUBDIRS)'; for subdir in $$list; do \ - echo "Making $$target in $$subdir"; \ - if test "$$subdir" = "."; then \ - dot_seen=yes; \ - local_target="$$target-am"; \ - else \ - local_target="$$target"; \ - fi; \ - ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ - || eval $$failcom; \ - done; \ - if test "$$dot_seen" = "no"; then \ - $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ - fi; test -z "$$fail" - -$(RECURSIVE_CLEAN_TARGETS): - @fail= failcom='exit 1'; \ - for f in x $$MAKEFLAGS; do \ - case $$f in \ - *=* | --[!k]*);; \ - *k*) failcom='fail=yes';; \ - esac; \ - done; \ - dot_seen=no; \ - case "$@" in \ - distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ - *) list='$(SUBDIRS)' ;; \ - esac; \ - rev=''; for subdir in $$list; do \ - if test "$$subdir" = "."; then :; else \ - rev="$$subdir $$rev"; \ - fi; \ - done; \ - rev="$$rev ."; \ - target=`echo $@ | sed s/-recursive//`; \ - for subdir in $$rev; do \ - echo "Making $$target in $$subdir"; \ - if test "$$subdir" = "."; then \ - local_target="$$target-am"; \ - else \ - local_target="$$target"; \ - fi; \ - ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ - || eval $$failcom; \ - done && test -z "$$fail" -tags-recursive: - list='$(SUBDIRS)'; for subdir in $$list; do \ - test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ - done -ctags-recursive: - list='$(SUBDIRS)'; for subdir in $$list; do \ - test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ - done - -ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - mkid -fID $$unique -tags: TAGS - -TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - set x; \ - here=`pwd`; \ - if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ - include_option=--etags-include; \ - empty_fix=.; \ - else \ - include_option=--include; \ - empty_fix=; \ - fi; \ - list='$(SUBDIRS)'; for subdir in $$list; do \ - if test "$$subdir" = .; then :; else \ - test ! -f $$subdir/TAGS || \ - set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ - fi; \ - done; \ - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: CTAGS -CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d "$(distdir)/$$file"; then \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ - else \ - test -f "$(distdir)/$$file" \ - || cp -p $$d/$$file "$(distdir)/$$file" \ - || exit 1; \ - fi; \ - done - @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ - if test "$$subdir" = .; then :; else \ - test -d "$(distdir)/$$subdir" \ - || $(MKDIR_P) "$(distdir)/$$subdir" \ - || exit 1; \ - fi; \ - done - @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ - if test "$$subdir" = .; then :; else \ - dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ - $(am__relativize); \ - new_distdir=$$reldir; \ - dir1=$$subdir; dir2="$(top_distdir)"; \ - $(am__relativize); \ - new_top_distdir=$$reldir; \ - echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ - echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ - ($(am__cd) $$subdir && \ - $(MAKE) $(AM_MAKEFLAGS) \ - top_distdir="$$new_top_distdir" \ - distdir="$$new_distdir" \ - am__remove_distdir=: \ - am__skip_length_check=: \ - am__skip_mode_fix=: \ - distdir) \ - || exit 1; \ - fi; \ - done -check-am: all-am -check: check-recursive -all-am: Makefile $(SCRIPTS) $(DATA) all-local -installdirs: installdirs-recursive -installdirs-am: - for dir in "$(DESTDIR)$(bindir)" "$(DESTDIR)$(desktopdir)" "$(DESTDIR)$(generaldir)"; do \ - test -z "$$dir" || $(MKDIR_P) "$$dir"; \ - done -install: install-recursive -install-exec: install-exec-recursive -install-data: install-data-recursive -uninstall: uninstall-recursive - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-recursive -install-strip: - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - `test -z '$(STRIP)' || \ - echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install -mostlyclean-generic: - -clean-generic: - -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-recursive - -clean-am: clean-generic clean-libtool mostlyclean-am - -distclean: distclean-recursive - -rm -f Makefile -distclean-am: clean-am distclean-generic distclean-tags - -dvi: dvi-recursive - -dvi-am: - -html: html-recursive - -html-am: - -info: info-recursive - -info-am: - -install-data-am: install-desktopDATA install-generalDATA - -install-dvi: install-dvi-recursive - -install-dvi-am: - -install-exec-am: install-binSCRIPTS - -install-html: install-html-recursive - -install-html-am: - -install-info: install-info-recursive - -install-info-am: - -install-man: - -install-pdf: install-pdf-recursive - -install-pdf-am: - -install-ps: install-ps-recursive - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-recursive - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-recursive - -mostlyclean-am: mostlyclean-generic mostlyclean-libtool - -pdf: pdf-recursive - -pdf-am: - -ps: ps-recursive - -ps-am: - -uninstall-am: uninstall-binSCRIPTS uninstall-desktopDATA \ - uninstall-generalDATA - -.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) ctags-recursive \ - install-am install-strip tags-recursive - -.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \ - all all-am all-local check check-am clean clean-generic \ - clean-libtool ctags ctags-recursive distclean \ - distclean-generic distclean-libtool distclean-tags distdir dvi \ - dvi-am html html-am info info-am install install-am \ - install-binSCRIPTS install-data install-data-am \ - install-desktopDATA install-dvi install-dvi-am install-exec \ - install-exec-am install-generalDATA install-html \ - install-html-am install-info install-info-am install-man \ - install-pdf install-pdf-am install-ps install-ps-am \ - install-strip installcheck installcheck-am installdirs \ - installdirs-am maintainer-clean maintainer-clean-generic \ - mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ - ps ps-am tags tags-recursive uninstall uninstall-am \ - uninstall-binSCRIPTS uninstall-desktopDATA \ - uninstall-generalDATA - - -@INTLTOOL_DESKTOP_RULE@ - -@srcdir@/pybase.mb: @srcdir@/pyphrase.mb ; - -@srcdir@/pyphrase.mb: $(pyorg_data) $(gbkorg_data) - cd $(srcdir) && @abs_top_builddir@/tools/createPYMB $(gbkorg_data) $(pyorg_data) - -tools: - $(MAKE) -C ../tools - -$(pyorg_data): $(py_tar) - cd $(srcdir) && $(MD5SUM) -c $(py_tar).md5 || ( $(RM) $(py_tar); exit 1 ) - cd $(srcdir) && $(TAR) xzmvf $(py_tar) - -$(py_tar): - $(WGET) -O $(py_tar) $(py_url) - $(WGET) -O $(py_tar).md5 $(py_url).md5 - -all-local: tools $(py_data) @srcdir@/desc.po - rm -f pyERROR - rm -f pyPhrase.ok - -@srcdir@/desc.po: @srcdir@/*.desc - @srcdir@/getdescpo @abs_srcdir@ - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff -Nru fcitx-4.0.1/data/pinyin.tar.gz.md5 fcitx-4.1.1/data/pinyin.tar.gz.md5 --- fcitx-4.0.1/data/pinyin.tar.gz.md5 2010-12-17 06:29:49.000000000 +0000 +++ fcitx-4.1.1/data/pinyin.tar.gz.md5 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -e9d08c2c069288ae39d453f5aba41e14 pinyin.tar.gz diff -Nru fcitx-4.0.1/data/png/CMakeLists.txt fcitx-4.1.1/data/png/CMakeLists.txt --- fcitx-4.0.1/data/png/CMakeLists.txt 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/data/png/CMakeLists.txt 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,31 @@ +set(FCITX_PNG_32_FILES +fcitx-fullwidth-active.png +fcitx-fullwidth-inactive.png +fcitx-punc-active.png +fcitx-punc-inactive.png +fcitx-vk-active.png +fcitx-vk-inactive.png +) + +set(FCITX_PNG_48_FILES +fcitx-cangjie.png +fcitx-chn.png +fcitx-chttrans-active.png +fcitx-chttrans-inactive.png +fcitx-eng.png +fcitx-erbi.png +fcitx-remind-active.png +fcitx-remind-inactive.png +fcitx-pinyin.png +fcitx-wbpy.png +fcitx-wubi.png +fcitx-ziranma.png +fcitx-shuangpin.png +) + +foreach(size 16 22 24 32 48 128) + install(FILES fcitx-${size}.png RENAME fcitx.png DESTINATION share/icons/hicolor/${size}x${size}/apps) +endforeach(size 16 22 24 32 48 128) + +install(FILES ${FCITX_PNG_32_FILES} DESTINATION share/icons/hicolor/32x32/status ) +install(FILES ${FCITX_PNG_48_FILES} DESTINATION share/icons/hicolor/48x48/status ) Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/data/png/fcitx-128.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/data/png/fcitx-128.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/data/png/fcitx-16.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/data/png/fcitx-16.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/data/png/fcitx-22.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/data/png/fcitx-22.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/data/png/fcitx-24.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/data/png/fcitx-24.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/data/png/fcitx-32.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/data/png/fcitx-32.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/data/png/fcitx-48.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/data/png/fcitx-48.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/data/png/fcitx-cangjie.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/data/png/fcitx-cangjie.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/data/png/fcitx-chn.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/data/png/fcitx-chn.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/data/png/fcitx-chttrans-active.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/data/png/fcitx-chttrans-active.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/data/png/fcitx-chttrans-inactive.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/data/png/fcitx-chttrans-inactive.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/data/png/fcitx-eng.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/data/png/fcitx-eng.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/data/png/fcitx-erbi.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/data/png/fcitx-erbi.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/data/png/fcitx-fullwidth-active.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/data/png/fcitx-fullwidth-active.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/data/png/fcitx-fullwidth-inactive.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/data/png/fcitx-fullwidth-inactive.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/data/png/fcitx-pinyin.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/data/png/fcitx-pinyin.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/data/png/fcitx-punc-active.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/data/png/fcitx-punc-active.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/data/png/fcitx-punc-inactive.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/data/png/fcitx-punc-inactive.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/data/png/fcitx-remind-active.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/data/png/fcitx-remind-active.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/data/png/fcitx-remind-inactive.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/data/png/fcitx-remind-inactive.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/data/png/fcitx-shuangpin.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/data/png/fcitx-shuangpin.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/data/png/fcitx-vk-active.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/data/png/fcitx-vk-active.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/data/png/fcitx-vk-inactive.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/data/png/fcitx-vk-inactive.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/data/png/fcitx-wbpy.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/data/png/fcitx-wbpy.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/data/png/fcitx-wubi.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/data/png/fcitx-wubi.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/data/png/fcitx-ziranma.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/data/png/fcitx-ziranma.png differ diff -Nru fcitx-4.0.1/data/profile.desc fcitx-4.1.1/data/profile.desc --- fcitx-4.0.1/data/profile.desc 2010-11-28 11:54:59.000000000 +0000 +++ fcitx-4.1.1/data/profile.desc 2011-09-08 16:00:05.000000000 +0000 @@ -1,39 +1,14 @@ -[Profile/MainWindowOffsetX] -Description=Main Window Position X -Type=Integer -DefaultValue=500 - -[Profile/MainWindowOffsetY] -Description=Main Window Position Y -Type=Integer -DefaultValue=1 - -[Profile/InputWindowOffsetX] -Description=Input Window Position X -Type=Integer -DefaultValue=300 - -[Profile/InputWindowOffsetY] -Description=Input Window Position Y -Type=Integer -DefaultValue=50 - -[Profile/Corner] +[Profile/FullWidth] Description=Use Full Width Character Type=Boolean DefaultValue=False -[Profile/ChnPunc] -Description=Use Chinese Punctuation -Type=Boolean -DefaultValue=True - -[Profile/TrackCursor] -Description=Input Window Shows at the position of cursor +[Profile/WidePunc] +Description=Use Wide Punctuation Type=Boolean DefaultValue=True -[Profile/UseLegend] +[Profile/UseRemind] Description=Prompt the phrases after input Type=Boolean DefaultValue=False @@ -43,22 +18,10 @@ Type=Integer DefaultValue=0 -[Profile/Locked] -Description=Locked +[Profile/PreeditStringInClientWindow] Type=Boolean -DefaultValue=False - -[Profile/CompactMainWindow] -Description=Show Main Window in a compact way -Type=Boolean -DefaultValue=False - -[Profile/UseGBKT] -Description=Use Traditional Chinese in Input -Type=Boolean -DefaultValue=False +DefaultValue=True +Description=Show Preedit String in Client Window -[Profile/Recording] -Description=Use recording mode -Type=Boolean -DefaultValue=False +[DescriptionFile] +LocaleDomain=fcitx diff -Nru fcitx-4.0.1/data/punc.mb fcitx-4.1.1/data/punc.mb --- fcitx-4.0.1/data/punc.mb 2010-11-28 11:54:59.000000000 +0000 +++ fcitx-4.1.1/data/punc.mb 2011-09-08 16:00:05.000000000 +0000 @@ -17,3 +17,4 @@ ) ) [ · ] [ ] +~ ~ \ No newline at end of file diff -Nru fcitx-4.0.1/data/script/CMakeLists.txt fcitx-4.1.1/data/script/CMakeLists.txt --- fcitx-4.0.1/data/script/CMakeLists.txt 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/data/script/CMakeLists.txt 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,4 @@ +install(FILES fcitx-configtool DESTINATION ${bindir} PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE) + +configure_file(fcitx4-config.in ${CMAKE_CURRENT_BINARY_DIR}/fcitx4-config) +install(FILES ${CMAKE_CURRENT_BINARY_DIR}/fcitx4-config DESTINATION ${bindir} PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE) diff -Nru fcitx-4.0.1/data/script/fcitx4-config.in fcitx-4.1.1/data/script/fcitx4-config.in --- fcitx-4.0.1/data/script/fcitx4-config.in 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/data/script/fcitx4-config.in 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,98 @@ +#! /bin/sh + +package=@package@ +prefix=@prefix@ +exec_prefix=@exec_prefix@ +includedir=@includedir@ +libdir=@libdir@ +addondir=@addondir@ +configdescdir=@configdescdir@ +addonconfigdir=@addonconfigdir@ + +usage() +{ + cat < /dev/null 2>&1` ; then DE=gnome; + elif xprop -root _DT_SAVE_MODE 2> /dev/null | grep ' = \"xfce4\"$' >/dev/null 2>&1; then DE=xfce; + fi +} + +run_kde() +{ + command=`which kcmshell4 2>&1` + haskde=0 + if [ $? -eq 0 ]; then + checkinstalled=`$command --list | grep -c kcm_fcitx` + if [ "x$checkinstalled" != "x0" ]; then + haskde=1 + fi + fi + + if [ $haskde = "1" ]; then + exec $command kcm_fcitx + else + run_gtk + fi +} + +run_gtk() +{ + command=`which fcitx-config-gtk 2>&1` + if [ $? -eq 0 ]; then + exec $command + else + run_xdg + fi +} + +run_xdg() +{ + command=`which xdg-open` + if [ $? -eq 0 ]; then + exec $command ~/.config/fcitx/config + else + exit 0 + fi +} + +detectDE + +case "$DE" in + kde) + run_kde + ;; + *) + run_gtk + ;; +esac \ No newline at end of file diff -Nru fcitx-4.0.1/data/skin.desc fcitx-4.1.1/data/skin.desc --- fcitx-4.0.1/data/skin.desc 2010-12-06 08:46:07.000000000 +0000 +++ fcitx-4.1.1/data/skin.desc 1970-01-01 00:00:00.000000000 +0000 @@ -1,234 +0,0 @@ -[SkinInfo/Name] -Type=String -Description=Skin Name - -[SkinInfo/Version] -Type=String -Description=Skin Version - -[SkinInfo/Author] -Type=String -Description=Skin Author - -[SkinInfo/Desc] -Type=String -Description=Description of Skin - -[SkinFont/FontSize] -Type=Integer -Description=Input Font Size - -[SkinFont/MenuFontSize] -Type=Integer -Description=Menu Font Size -DefaultValue=15 - -[SkinFont/TipColor] -Type=Color -Description=Tip Message Color - -[SkinFont/InputColor] -Type=Color -Description=Input Message Color - -[SkinFont/IndexColor] -Type=Color -Description=Candidate Index Color - -[SkinFont/FirstCandColor] -Type=Color -Description=First Candidate Color - -[SkinFont/UserPhraseColor] -Type=Color -Description=User Phrase Color - -[SkinFont/CodeColor] -Type=Color -Description=Table Code Color - -[SkinFont/OtherColor] -Type=Color -Description=Other Color - -[SkinFont/ActiveMenuColor] -Type=Color -Description=Active Menu Item Character Color - -[SkinFont/InactiveMenuColor] -Type=Color -Description=Inactive Menu Item Character Color - -[SkinMainBar/BackImg] -Type=Image -Description=Background Image - -[SkinMainBar/Logo] -Type=Image -Description=Logo Icon - -[SkinMainBar/ZhPunc] -Type=Image -Description=Chinese Punc Icon - -[SkinMainBar/EnPunc] -Type=Image -Description=English Punc Icon - -[SkinMainBar/Chs] -Type=Image -Description=Simplified Chinese Icon - -[SkinMainBar/Cht] -Type=Image -Description=Traditional Chinese Icon - -[SkinMainBar/HalfCorner] -Type=Image -Description=Half Width Character Icon - -[SkinMainBar/FullCorner] -Type=Image -Description=Full Width Character Icon - -[SkinMainBar/Unlock] -Type=Image -Description=UnLock Icon - -[SkinMainBar/Lock] -Type=Image -Description=Lock Icon - -[SkinMainBar/Legend] -Type=Image -Description=Legend mode Icon - -[SkinMainBar/NoLegend] -Type=Image -Description=Legend disabled Icon - -[SkinMainBar/VK] -Type=Image -Description=Virtual Keyboard enabled Icon - -[SkinMainBar/NoVK] -Type=Image -Description=Virtual Keyboard disabled Icon - -[SkinMainBar/Eng] -Type=Image -Description=English Mode Icon - -[SkinMainBar/Chn] -Type=Image -Description=Chinese Mode Icon - -[SkinInputBar/BackImg] -Type=Image -Description=Background Image - -[SkinInputBar/Resize] -Type=Enum -EnumCount=3 -Enum0=Copy -Enum1=Resize -Enum2=Fix -Description=Background Resize Rule - -[SkinInputBar/ResizePos] -Type=Integer -Description=The Resize Position to Left - -[SkinInputBar/ResizeWidth] -Type=Integer -Description=Width of Resize Part - -[SkinInputBar/InputPos] -Type=Integer -Description=Left-down position of Input - -[SkinInputBar/OutputPos] -Type=Integer -Description=Left-down position of Output - -[SkinInputBar/LayoutLeft] -Type=Integer -Description=Space to the left - -[SkinInputBar/LayoutRight] -Type=Integer -Description=Space to the right - -[SkinInputBar/CursorColor] -Type=Color -Description=Color of Cursor - -[SkinInputBar/BackArrow] -Type=Image -Description=Prev Page Icon - -[SkinInputBar/ForwardArrow] -Type=Image -Description=Next Page Icon - -[SkinTrayIcon/Active] -Type=Image -Description=Active Tray Icon - -[SkinTrayIcon/Inactive] -Type=Image -Description=Inctive Tray Icon - -[SkinMenu/BackImg] -Type=Image -Description=Background Image - -[SkinMenu/ResizeHorizontal] -Type=Enum -EnumCount=2 -Enum0=Copy -Enum1=Resize -Description=Background Resize Rule on Horizontal Direction -DefaultValue=Resize - -[SkinMenu/ResizeVertical] -Type=Enum -EnumCount=2 -Enum0=Copy -Enum1=Resize -Description=Background Resize Rule on Vertical Direction -DefaultValue=Resize - -[SkinMenu/MarginTop] -Type=Integer -Description=Margin to top - -[SkinMenu/MarginBottom] -Type=Integer -Description=Margin to bottom - -[SkinMenu/MarginLeft] -Type=Integer -Description=Margin to left - -[SkinMenu/MarginRight] -Type=Integer -Description=Margin to right - -[SkinMenu/ActiveColor] -Type=Color -Description=Active Menu Color - -[SkinMenu/LineColor] -Type=Color -Description=Space Line Color - -[SkinKeyboard/BackImg] -Type=Image -Description=Virtual Keyboard Image -DefaultValue=keyboard.png - -[SkinKeyboard/KeyColor] -Type=Color -Description=Key Color On Virutal Keyboard -DefaultValue=0 0 0 diff -Nru fcitx-4.0.1/data/table/cangjie.conf fcitx-4.1.1/data/table/cangjie.conf --- fcitx-4.0.1/data/table/cangjie.conf 2010-11-28 11:54:59.000000000 +0000 +++ fcitx-4.1.1/data/table/cangjie.conf 1970-01-01 00:00:00.000000000 +0000 @@ -1,15 +0,0 @@ -[CodeTable] -Name=Cangjie -IconName=cangjie -File=cj.mb -Priority=3 -AdjustOrder=AdjustNo -UsePY=True -PYKey=[ -AutoSend=-1 -NoneMatchAutoSend=0 -UseMatchingKey=True -MatchingKey=? -AutoPhrase=False -ExactMatch=False -PromptTableCode=False diff -Nru fcitx-4.0.1/data/table/cangjie.conf.in fcitx-4.1.1/data/table/cangjie.conf.in --- fcitx-4.0.1/data/table/cangjie.conf.in 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/data/table/cangjie.conf.in 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,15 @@ +[CodeTable] +_Name=Cangjie +IconName=cangjie +File=cj.mb +Priority=30 +AdjustOrder=AdjustNo +UsePY=True +PYKey=[ +AutoSend=-1 +NoneMatchAutoSend=0 +UseMatchingKey=True +MatchingKey=? +AutoPhrase=False +ExactMatch=False +PromptTableCode=False diff -Nru fcitx-4.0.1/data/table/CMakeLists.txt fcitx-4.1.1/data/table/CMakeLists.txt --- fcitx-4.0.1/data/table/CMakeLists.txt 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/data/table/CMakeLists.txt 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,36 @@ +set(TABLE_DATA + ${CMAKE_CURRENT_BINARY_DIR}/db.mb + ${CMAKE_CURRENT_BINARY_DIR}/erbi.mb + ${CMAKE_CURRENT_BINARY_DIR}/qxm.mb + ${CMAKE_CURRENT_BINARY_DIR}/wanfeng.mb + ${CMAKE_CURRENT_BINARY_DIR}/wbpy.mb + ${CMAKE_CURRENT_BINARY_DIR}/wbx.mb + ${CMAKE_CURRENT_BINARY_DIR}/zrm.mb + ${CMAKE_CURRENT_BINARY_DIR}/cj.mb +) +set(TABLEORG_DATA db.txt erbi.txt qxm.txt wanfeng.txt wbpy.txt wbx.txt zrm.txt cj.txt) +set(TABLE_NAME db erbi qxm wanfeng wbpy wbx zrm cj) +set(TABLE_CONF db.conf erbi.conf qxm.conf wanfeng.conf wbpy.conf wbx.conf zrm.conf cangjie.conf) +set(TABLE_URL http://fcitx.googlecode.com/files/table.tar.gz) +set(TABLE_TAR ${CMAKE_CURRENT_SOURCE_DIR}/table.tar.gz) + +set(INSTALL_TABLE_CONF "") +foreach(tableconffile ${TABLE_CONF}) + intltool_merge_translation(${CMAKE_CURRENT_SOURCE_DIR}/${tableconffile}.in ${CMAKE_CURRENT_BINARY_DIR}/${tableconffile} ) + install(FILES ${CMAKE_CURRENT_BINARY_DIR}/${tableconffile} DESTINATION ${pkgdatadir}/table ) + set(INSTALL_TABLE_CONF ${INSTALL_TABLE_CONF} ${CMAKE_CURRENT_BINARY_DIR}/${tableconffile}) +endforeach(tableconffile ${TABLE_CONF}) +add_custom_target(table_conf ALL DEPENDS ${INSTALL_TABLE_CONF} ) +add_custom_target(table_data ALL DEPENDS ${TABLE_DATA}) + +add_custom_command(OUTPUT ${TABLEORG_DATA} + COMMAND ${PROJECT_SOURCE_DIR}/data/download.sh "${WGET}" "${TABLE_URL}" "${TABLE_TAR}" + COMMAND ${TAR} xzmvf ${TABLE_TAR}) + +foreach(tblname ${TABLE_NAME}) +add_custom_command(OUTPUT ${tblname}.mb + DEPENDS ${tblname}.txt + COMMAND txt2mb ${tblname}.txt ${tblname}.mb) +endforeach() + +install(FILES ${TABLE_DATA} DESTINATION ${pkgdatadir}/table ) \ No newline at end of file diff -Nru fcitx-4.0.1/data/table/db.conf fcitx-4.1.1/data/table/db.conf --- fcitx-4.0.1/data/table/db.conf 2010-11-28 11:54:59.000000000 +0000 +++ fcitx-4.1.1/data/table/db.conf 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -[CodeTable] -Name=Dianbaoma -IconName=dianbaoma -File=db.mb -AutoSend=-1 -ExactMatch=False -PromptTableCode=True -Choose=qwertyuiop diff -Nru fcitx-4.0.1/data/table/db.conf.in fcitx-4.1.1/data/table/db.conf.in --- fcitx-4.0.1/data/table/db.conf.in 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/data/table/db.conf.in 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,8 @@ +[CodeTable] +_Name=Dianbaoma +IconName=dianbaoma +File=db.mb +AutoSend=-1 +ExactMatch=False +PromptTableCode=True +Choose=qwertyuiop diff -Nru fcitx-4.0.1/data/table/disable-table.conf.template fcitx-4.1.1/data/table/disable-table.conf.template --- fcitx-4.0.1/data/table/disable-table.conf.template 2010-11-28 11:54:59.000000000 +0000 +++ fcitx-4.1.1/data/table/disable-table.conf.template 1970-01-01 00:00:00.000000000 +0000 @@ -1,2 +0,0 @@ -[CodeTable] -Enabled=False diff -Nru fcitx-4.0.1/data/table/erbi.conf fcitx-4.1.1/data/table/erbi.conf --- fcitx-4.0.1/data/table/erbi.conf 2010-11-28 11:54:59.000000000 +0000 +++ fcitx-4.1.1/data/table/erbi.conf 1970-01-01 00:00:00.000000000 +0000 @@ -1,17 +0,0 @@ -[CodeTable] -Name=Erbi -IconName=erbi -File=erbi.mb -AdjustOrder=AdjustFreq -UsePY=True -PYKey=[ -AutoSend=-1 -NoneMatchAutoSend=0 -UseMatchingKey=True -MatchingKey=? -AutoPhrase=True -AutoPhraseLength=4 -AutoPhrasePhrase=False -SaveAutoPhrase=False -ExactMatch=False -PromptTableCode=False diff -Nru fcitx-4.0.1/data/table/erbi.conf.in fcitx-4.1.1/data/table/erbi.conf.in --- fcitx-4.0.1/data/table/erbi.conf.in 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/data/table/erbi.conf.in 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,17 @@ +[CodeTable] +_Name=Erbi +IconName=erbi +File=erbi.mb +AdjustOrder=AdjustFreq +UsePY=True +PYKey=[ +AutoSend=-1 +NoneMatchAutoSend=0 +UseMatchingKey=True +MatchingKey=? +AutoPhrase=True +AutoPhraseLength=4 +AutoPhrasePhrase=False +SaveAutoPhrase=False +ExactMatch=False +PromptTableCode=False diff -Nru fcitx-4.0.1/data/table/Makefile.am fcitx-4.1.1/data/table/Makefile.am --- fcitx-4.0.1/data/table/Makefile.am 2010-11-28 11:54:59.000000000 +0000 +++ fcitx-4.1.1/data/table/Makefile.am 1970-01-01 00:00:00.000000000 +0000 @@ -1,61 +0,0 @@ -tabledir = $(pkgdatadir)/data/table - -mb_data = \ - @srcdir@/cj.mb \ - @srcdir@/erbi.mb \ - @srcdir@/wanfeng.mb \ - @srcdir@/wbpy.mb \ - @srcdir@/qxm.mb \ - @srcdir@/db.mb \ - @srcdir@/wbx.mb \ - @srcdir@/zrm.mb \ - $(NULL) -txt_data = \ - @srcdir@/cj.txt \ - @srcdir@/erbi.txt \ - @srcdir@/wanfeng.txt \ - @srcdir@/wbpy.txt \ - @srcdir@/qxm.txt \ - @srcdir@/db.txt \ - @srcdir@/wbx.txt \ - @srcdir@/zrm.txt \ - $(NULL) -txt_m_data = \ - @srcdir@/erbi.txt \ - @srcdir@/wanfeng.txt \ - @srcdir@/wbpy.txt \ - @srcdir@/qxm.txt \ - @srcdir@/db.txt \ - @srcdir@/wbx.txt \ - @srcdir@/zrm.txt \ - $(NULL) - -mb_conf = qxm.conf db.conf erbi.conf wanfeng.conf wbpy.conf wbx.conf zrm.conf cangjie.conf disable-table.conf.template -table_url = http://fcitx.googlecode.com/files/table.tar.gz -table_tar = @srcdir@/table.tar.gz - -table_DATA = $(mb_data) $(mb_conf) -EXTRA_DIST = $(mb_conf) - -CLEANFILES = $(mb_data) - -DISTCLEANFILES = $(txt_data) - -@srcdir@/%.mb: @srcdir@/%.txt - ../../tools/txt2mb $< $@ - -tools: ../../tools/txt2mb - $(MAKE) -C ../../tools - -$(txt_m_data): @srcdir@/cj.txt ; - -@srcdir@/cj.txt: $(table_tar) - cd $(srcdir) && $(MD5SUM) -c $(table_tar).md5 || ( $(RM) $(table_tar); exit 1) - cd $(srcdir) && $(TAR) xzmvf $(table_tar) - -$(table_tar): - $(WGET) -O $(table_tar) $(table_url) - $(WGET) -O $(table_tar).md5 $(table_url).md5 - -all-local: tools $(txt_data) $(mb_data) - diff -Nru fcitx-4.0.1/data/table/Makefile.in fcitx-4.1.1/data/table/Makefile.in --- fcitx-4.0.1/data/table/Makefile.in 2010-12-17 04:26:30.000000000 +0000 +++ fcitx-4.1.1/data/table/Makefile.in 1970-01-01 00:00:00.000000000 +0000 @@ -1,509 +0,0 @@ -# Makefile.in generated by automake 1.11.1 from Makefile.am. -# @configure_input@ - -# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, -# Inc. -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - -@SET_MAKE@ - -VPATH = @srcdir@ -pkgdatadir = $(datadir)/@PACKAGE@ -pkgincludedir = $(includedir)/@PACKAGE@ -pkglibdir = $(libdir)/@PACKAGE@ -pkglibexecdir = $(libexecdir)/@PACKAGE@ -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = @build@ -host_triplet = @host@ -subdir = data/table -DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/configure.in -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -mkinstalldirs = $(install_sh) -d -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -CONFIG_CLEAN_VPATH_FILES = -AM_V_GEN = $(am__v_GEN_$(V)) -am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) -am__v_GEN_0 = @echo " GEN " $@; -AM_V_at = $(am__v_at_$(V)) -am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) -am__v_at_0 = @ -SOURCES = -DIST_SOURCES = -am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; -am__vpath_adj = case $$p in \ - $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ - *) f=$$p;; \ - esac; -am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; -am__install_max = 40 -am__nobase_strip_setup = \ - srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` -am__nobase_strip = \ - for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" -am__nobase_list = $(am__nobase_strip_setup); \ - for p in $$list; do echo "$$p $$p"; done | \ - sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ - $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ - if (++n[$$2] == $(am__install_max)) \ - { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ - END { for (dir in files) print dir, files[dir] }' -am__base_list = \ - sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ - sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' -am__installdirs = "$(DESTDIR)$(tabledir)" -DATA = $(table_DATA) -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -ACLOCAL = @ACLOCAL@ -ALL_LINGUAS = @ALL_LINGUAS@ -AMTAR = @AMTAR@ -AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ -AR = @AR@ -AUTOCONF = @AUTOCONF@ -AUTOHEADER = @AUTOHEADER@ -AUTOMAKE = @AUTOMAKE@ -AWK = @AWK@ -CAIRO_XLIB_CFLAGS = @CAIRO_XLIB_CFLAGS@ -CAIRO_XLIB_LIBS = @CAIRO_XLIB_LIBS@ -CC = @CC@ -CCDEPMODE = @CCDEPMODE@ -CFLAGS = @CFLAGS@ -CPP = @CPP@ -CPPFLAGS = @CPPFLAGS@ -CYGPATH_W = @CYGPATH_W@ -DATADIRNAME = @DATADIRNAME@ -DBUS_CFLAGS = @DBUS_CFLAGS@ -DBUS_LIBS = @DBUS_LIBS@ -DEFS = @DEFS@ -DEPDIR = @DEPDIR@ -DLLTOOL = @DLLTOOL@ -DSYMUTIL = @DSYMUTIL@ -DUMPBIN = @DUMPBIN@ -ECHO_C = @ECHO_C@ -ECHO_N = @ECHO_N@ -ECHO_T = @ECHO_T@ -EGREP = @EGREP@ -EXEEXT = @EXEEXT@ -FGREP = @FGREP@ -FONTCONFIG_CFLAGS = @FONTCONFIG_CFLAGS@ -FONTCONFIG_LIBS = @FONTCONFIG_LIBS@ -GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ -GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ -GMSGFMT = @GMSGFMT@ -GMSGFMT_015 = @GMSGFMT_015@ -GREP = @GREP@ -HOST_LIBS = @HOST_LIBS@ -INCINTL = @INCINTL@ -INSTALL = @INSTALL@ -INSTALL_DATA = @INSTALL_DATA@ -INSTALL_PROGRAM = @INSTALL_PROGRAM@ -INSTALL_SCRIPT = @INSTALL_SCRIPT@ -INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ -INTLLIBS = @INTLLIBS@ -INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ -INTLTOOL_MERGE = @INTLTOOL_MERGE@ -INTLTOOL_PERL = @INTLTOOL_PERL@ -INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ -INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ -LD = @LD@ -LDFLAGS = @LDFLAGS@ -LIBICONV = @LIBICONV@ -LIBINTL = @LIBINTL@ -LIBOBJS = @LIBOBJS@ -LIBS = @LIBS@ -LIBTOOL = @LIBTOOL@ -LIPO = @LIPO@ -LN_S = @LN_S@ -LTLIBICONV = @LTLIBICONV@ -LTLIBINTL = @LTLIBINTL@ -LTLIBOBJS = @LTLIBOBJS@ -MAKEINFO = @MAKEINFO@ -MANIFEST_TOOL = @MANIFEST_TOOL@ -MD5SUM = @MD5SUM@ -MKDIR_P = @MKDIR_P@ -MSGFMT = @MSGFMT@ -MSGFMT_015 = @MSGFMT_015@ -MSGMERGE = @MSGMERGE@ -NM = @NM@ -NMEDIT = @NMEDIT@ -OBJDUMP = @OBJDUMP@ -OBJEXT = @OBJEXT@ -OTOOL = @OTOOL@ -OTOOL64 = @OTOOL64@ -PACKAGE = @PACKAGE@ -PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ -PACKAGE_NAME = @PACKAGE_NAME@ -PACKAGE_STRING = @PACKAGE_STRING@ -PACKAGE_TARNAME = @PACKAGE_TARNAME@ -PACKAGE_URL = @PACKAGE_URL@ -PACKAGE_VERSION = @PACKAGE_VERSION@ -PANGOCAIRO_CFLAGS = @PANGOCAIRO_CFLAGS@ -PANGOCAIRO_LIBS = @PANGOCAIRO_LIBS@ -PATH_SEPARATOR = @PATH_SEPARATOR@ -PKG_CONFIG = @PKG_CONFIG@ -PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ -PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ -POSUB = @POSUB@ -RANLIB = @RANLIB@ -SED = @SED@ -SET_MAKE = @SET_MAKE@ -SHELL = @SHELL@ -STRIP = @STRIP@ -TAR = @TAR@ -USE_NLS = @USE_NLS@ -VERSION = @VERSION@ -WGET = @WGET@ -XGETTEXT = @XGETTEXT@ -XGETTEXT_015 = @XGETTEXT_015@ -XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ -XMKMF = @XMKMF@ -XRENDER_CFLAGS = @XRENDER_CFLAGS@ -XRENDER_LIBS = @XRENDER_LIBS@ -X_CFLAGS = @X_CFLAGS@ -X_LIBS = @X_LIBS@ -abs_builddir = @abs_builddir@ -abs_srcdir = @abs_srcdir@ -abs_top_builddir = @abs_top_builddir@ -abs_top_srcdir = @abs_top_srcdir@ -ac_ct_AR = @ac_ct_AR@ -ac_ct_CC = @ac_ct_CC@ -ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ -am__include = @am__include@ -am__leading_dot = @am__leading_dot@ -am__quote = @am__quote@ -am__tar = @am__tar@ -am__untar = @am__untar@ -bindir = @bindir@ -build = @build@ -build_alias = @build_alias@ -build_cpu = @build_cpu@ -build_os = @build_os@ -build_vendor = @build_vendor@ -builddir = @builddir@ -datadir = @datadir@ -datarootdir = @datarootdir@ -docdir = @docdir@ -dvidir = @dvidir@ -exec_prefix = @exec_prefix@ -host = @host@ -host_alias = @host_alias@ -host_cpu = @host_cpu@ -host_os = @host_os@ -host_vendor = @host_vendor@ -htmldir = @htmldir@ -includedir = @includedir@ -infodir = @infodir@ -install_sh = @install_sh@ -libdir = @libdir@ -libexecdir = @libexecdir@ -localedir = @localedir@ -localstatedir = @localstatedir@ -mandir = @mandir@ -mkdir_p = @mkdir_p@ -oldincludedir = @oldincludedir@ -pdfdir = @pdfdir@ -prefix = @prefix@ -program_transform_name = @program_transform_name@ -psdir = @psdir@ -sbindir = @sbindir@ -sharedstatedir = @sharedstatedir@ -srcdir = @srcdir@ -sysconfdir = @sysconfdir@ -target_alias = @target_alias@ -top_build_prefix = @top_build_prefix@ -top_builddir = @top_builddir@ -top_srcdir = @top_srcdir@ -tabledir = $(pkgdatadir)/data/table -mb_data = \ - @srcdir@/cj.mb \ - @srcdir@/erbi.mb \ - @srcdir@/wanfeng.mb \ - @srcdir@/wbpy.mb \ - @srcdir@/qxm.mb \ - @srcdir@/db.mb \ - @srcdir@/wbx.mb \ - @srcdir@/zrm.mb \ - $(NULL) - -txt_data = \ - @srcdir@/cj.txt \ - @srcdir@/erbi.txt \ - @srcdir@/wanfeng.txt \ - @srcdir@/wbpy.txt \ - @srcdir@/qxm.txt \ - @srcdir@/db.txt \ - @srcdir@/wbx.txt \ - @srcdir@/zrm.txt \ - $(NULL) - -txt_m_data = \ - @srcdir@/erbi.txt \ - @srcdir@/wanfeng.txt \ - @srcdir@/wbpy.txt \ - @srcdir@/qxm.txt \ - @srcdir@/db.txt \ - @srcdir@/wbx.txt \ - @srcdir@/zrm.txt \ - $(NULL) - -mb_conf = qxm.conf db.conf erbi.conf wanfeng.conf wbpy.conf wbx.conf zrm.conf cangjie.conf disable-table.conf.template -table_url = http://fcitx.googlecode.com/files/table.tar.gz -table_tar = @srcdir@/table.tar.gz -table_DATA = $(mb_data) $(mb_conf) -EXTRA_DIST = $(mb_conf) -CLEANFILES = $(mb_data) -DISTCLEANFILES = $(txt_data) -all: all-am - -.SUFFIXES: -$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ - && { if test -f $@; then exit 0; else break; fi; }; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign data/table/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign data/table/Makefile -.PRECIOUS: Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(am__aclocal_m4_deps): - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs -install-tableDATA: $(table_DATA) - @$(NORMAL_INSTALL) - test -z "$(tabledir)" || $(MKDIR_P) "$(DESTDIR)$(tabledir)" - @list='$(table_DATA)'; test -n "$(tabledir)" || list=; \ - for p in $$list; do \ - if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ - echo "$$d$$p"; \ - done | $(am__base_list) | \ - while read files; do \ - echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(tabledir)'"; \ - $(INSTALL_DATA) $$files "$(DESTDIR)$(tabledir)" || exit $$?; \ - done - -uninstall-tableDATA: - @$(NORMAL_UNINSTALL) - @list='$(table_DATA)'; test -n "$(tabledir)" || list=; \ - files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ - test -n "$$files" || exit 0; \ - echo " ( cd '$(DESTDIR)$(tabledir)' && rm -f" $$files ")"; \ - cd "$(DESTDIR)$(tabledir)" && rm -f $$files -tags: TAGS -TAGS: - -ctags: CTAGS -CTAGS: - - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d "$(distdir)/$$file"; then \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ - else \ - test -f "$(distdir)/$$file" \ - || cp -p $$d/$$file "$(distdir)/$$file" \ - || exit 1; \ - fi; \ - done -check-am: all-am -check: check-am -all-am: Makefile $(DATA) all-local -installdirs: - for dir in "$(DESTDIR)$(tabledir)"; do \ - test -z "$$dir" || $(MKDIR_P) "$$dir"; \ - done -install: install-am -install-exec: install-exec-am -install-data: install-data-am -uninstall: uninstall-am - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-am -install-strip: - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - `test -z '$(STRIP)' || \ - echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install -mostlyclean-generic: - -clean-generic: - -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-am - -clean-am: clean-generic clean-libtool mostlyclean-am - -distclean: distclean-am - -rm -f Makefile -distclean-am: clean-am distclean-generic - -dvi: dvi-am - -dvi-am: - -html: html-am - -html-am: - -info: info-am - -info-am: - -install-data-am: install-tableDATA - -install-dvi: install-dvi-am - -install-dvi-am: - -install-exec-am: - -install-html: install-html-am - -install-html-am: - -install-info: install-info-am - -install-info-am: - -install-man: - -install-pdf: install-pdf-am - -install-pdf-am: - -install-ps: install-ps-am - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-am - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-am - -mostlyclean-am: mostlyclean-generic mostlyclean-libtool - -pdf: pdf-am - -pdf-am: - -ps: ps-am - -ps-am: - -uninstall-am: uninstall-tableDATA - -.MAKE: install-am install-strip - -.PHONY: all all-am all-local check check-am clean clean-generic \ - clean-libtool distclean distclean-generic distclean-libtool \ - distdir dvi dvi-am html html-am info info-am install \ - install-am install-data install-data-am install-dvi \ - install-dvi-am install-exec install-exec-am install-html \ - install-html-am install-info install-info-am install-man \ - install-pdf install-pdf-am install-ps install-ps-am \ - install-strip install-tableDATA installcheck installcheck-am \ - installdirs maintainer-clean maintainer-clean-generic \ - mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ - ps ps-am uninstall uninstall-am uninstall-tableDATA - - -@srcdir@/%.mb: @srcdir@/%.txt - ../../tools/txt2mb $< $@ - -tools: ../../tools/txt2mb - $(MAKE) -C ../../tools - -$(txt_m_data): @srcdir@/cj.txt ; - -@srcdir@/cj.txt: $(table_tar) - cd $(srcdir) && $(MD5SUM) -c $(table_tar).md5 || ( $(RM) $(table_tar); exit 1) - cd $(srcdir) && $(TAR) xzmvf $(table_tar) - -$(table_tar): - $(WGET) -O $(table_tar) $(table_url) - $(WGET) -O $(table_tar).md5 $(table_url).md5 - -all-local: tools $(txt_data) $(mb_data) - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff -Nru fcitx-4.0.1/data/table/qxm.conf fcitx-4.1.1/data/table/qxm.conf --- fcitx-4.0.1/data/table/qxm.conf 2010-11-28 11:54:59.000000000 +0000 +++ fcitx-4.1.1/data/table/qxm.conf 1970-01-01 00:00:00.000000000 +0000 @@ -1,15 +0,0 @@ -[CodeTable] -Name=Bingchan -IconName=bingchan -File=qxm.mb -AdjustOrder=AdjustFast -UsePY=False -AutoSend=-1 -UseMatchingKey=True -MatchingKey=# -AutoPhrase=True -AutoPhraseLength=4 -AutoPhrasePhrase=True -SaveAutoPhrase=True -ExactMatch=False -PromptTableCode=True diff -Nru fcitx-4.0.1/data/table/qxm.conf.in fcitx-4.1.1/data/table/qxm.conf.in --- fcitx-4.0.1/data/table/qxm.conf.in 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/data/table/qxm.conf.in 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,15 @@ +[CodeTable] +_Name=Bingchan +IconName=bingchan +File=qxm.mb +AdjustOrder=AdjustFast +UsePY=False +AutoSend=-1 +UseMatchingKey=True +MatchingKey=# +AutoPhrase=True +AutoPhraseLength=4 +AutoPhrasePhrase=True +SaveAutoPhrase=True +ExactMatch=False +PromptTableCode=True diff -Nru fcitx-4.0.1/data/table/table.tar.gz.md5 fcitx-4.1.1/data/table/table.tar.gz.md5 --- fcitx-4.0.1/data/table/table.tar.gz.md5 2010-12-17 06:29:59.000000000 +0000 +++ fcitx-4.1.1/data/table/table.tar.gz.md5 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -acb0b112423474ab2c1a22cee590d636 table.tar.gz diff -Nru fcitx-4.0.1/data/table/wanfeng.conf fcitx-4.1.1/data/table/wanfeng.conf --- fcitx-4.0.1/data/table/wanfeng.conf 2010-11-28 11:54:59.000000000 +0000 +++ fcitx-4.1.1/data/table/wanfeng.conf 1970-01-01 00:00:00.000000000 +0000 @@ -1,13 +0,0 @@ -[CodeTable] -Name=Wanfeng -IconName=wanfeng -File=wanfeng.mb -EndKey=,;/. -AdjustOrder=AdjustNo -UsePY=False -AutoSend=-1 -NoneMatchAutoSend=1 -UseMatchingKey=False -AutoPhrase=False -ExactMatch=False -PromptTableCode=True diff -Nru fcitx-4.0.1/data/table/wanfeng.conf.in fcitx-4.1.1/data/table/wanfeng.conf.in --- fcitx-4.0.1/data/table/wanfeng.conf.in 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/data/table/wanfeng.conf.in 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,13 @@ +[CodeTable] +_Name=Wanfeng +IconName=wanfeng +File=wanfeng.mb +EndKey=,;/. +AdjustOrder=AdjustNo +UsePY=False +AutoSend=-1 +NoneMatchAutoSend=1 +UseMatchingKey=False +AutoPhrase=False +ExactMatch=False +PromptTableCode=True diff -Nru fcitx-4.0.1/data/table/wbpy.conf fcitx-4.1.1/data/table/wbpy.conf --- fcitx-4.0.1/data/table/wbpy.conf 2010-11-28 11:54:59.000000000 +0000 +++ fcitx-4.1.1/data/table/wbpy.conf 1970-01-01 00:00:00.000000000 +0000 @@ -1,14 +0,0 @@ -[CodeTable] -Name=WubiPinyin -IconName=wbpy -File=wbpy.mb -AdjustOrder=AdjustFreq -Priority=2 -UsePY=False -PYKey=z -AutoSend=-1 -NoneMatchAutoSend=-1 -AutoPhrase=True -SaveAutoPhrase=3 -ExactMatch=False -PromptTableCode=False diff -Nru fcitx-4.0.1/data/table/wbpy.conf.in fcitx-4.1.1/data/table/wbpy.conf.in --- fcitx-4.0.1/data/table/wbpy.conf.in 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/data/table/wbpy.conf.in 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,14 @@ +[CodeTable] +_Name=WubiPinyin +IconName=wbpy +File=wbpy.mb +AdjustOrder=AdjustFreq +Priority=4 +UsePY=False +PYKey=z +AutoSend=-1 +NoneMatchAutoSend=-1 +AutoPhrase=True +SaveAutoPhrase=3 +ExactMatch=False +PromptTableCode=False diff -Nru fcitx-4.0.1/data/table/wbx.conf fcitx-4.1.1/data/table/wbx.conf --- fcitx-4.0.1/data/table/wbx.conf 2010-11-28 11:54:59.000000000 +0000 +++ fcitx-4.1.1/data/table/wbx.conf 1970-01-01 00:00:00.000000000 +0000 @@ -1,19 +0,0 @@ -[CodeTable] -Name=Wubi -IconName=wubi -File=wbx.mb -AdjustOrder=AdjustNo -Priority=1 -UsePY=True -PYKey=z -AutoSend=-1 -NoneMatchAutoSend=0 -UseMatchingKey=True -MatchingKey=z -AutoPhrase=True -AutoPhraseLength=4 -AutoPhrasePhrase=True -SaveAutoPhrase=3 -ExactMatch=False -PromptTableCode=False -Symbol=zzzz diff -Nru fcitx-4.0.1/data/table/wbx.conf.in fcitx-4.1.1/data/table/wbx.conf.in --- fcitx-4.0.1/data/table/wbx.conf.in 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/data/table/wbx.conf.in 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,19 @@ +[CodeTable] +_Name=Wubi +IconName=wubi +File=wbx.mb +AdjustOrder=AdjustNo +Priority=3 +UsePY=True +PYKey=z +AutoSend=-1 +NoneMatchAutoSend=0 +UseMatchingKey=True +MatchingKey=z +AutoPhrase=True +AutoPhraseLength=4 +AutoPhrasePhrase=True +SaveAutoPhrase=3 +ExactMatch=False +PromptTableCode=False +Symbol=zzzz diff -Nru fcitx-4.0.1/data/table/zrm.conf fcitx-4.1.1/data/table/zrm.conf --- fcitx-4.0.1/data/table/zrm.conf 2010-11-28 11:54:59.000000000 +0000 +++ fcitx-4.1.1/data/table/zrm.conf 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ -[CodeTable] -Name=Ziranma -IconName=ziranma -File=zrm.mb -AdjustOrder=AdjustFast -UsePY=False -AutoSend=-1 -UseMatchingKey=False -AutoPhrase=True -ExactMatch=False -PromptTableCode=True diff -Nru fcitx-4.0.1/data/table/zrm.conf.in fcitx-4.1.1/data/table/zrm.conf.in --- fcitx-4.0.1/data/table/zrm.conf.in 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/data/table/zrm.conf.in 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,11 @@ +[CodeTable] +_Name=Ziranma +IconName=ziranma +File=zrm.mb +AdjustOrder=AdjustFast +UsePY=False +AutoSend=-1 +UseMatchingKey=False +AutoPhrase=True +ExactMatch=False +PromptTableCode=True diff -Nru fcitx-4.0.1/data/table.desc fcitx-4.1.1/data/table.desc --- fcitx-4.0.1/data/table.desc 2010-11-28 11:54:59.000000000 +0000 +++ fcitx-4.1.1/data/table.desc 1970-01-01 00:00:00.000000000 +0000 @@ -1,108 +0,0 @@ -[CodeTable/Name] -Description=Code Table Name -Type=String - -[CodeTable/IconName] -Description=Icon Name -Type=String - -[CodeTable/File] -Description=Code Table File -Type=File - -[CodeTable/AdjustOrder] -Description=Adjust Order -Type=Enum -DefaultValue=AdjustNo -EnumCount=3 -Enum0=AdjustNo -Enum1=AdjustFast -Enum2=AdjustFreq - -[CodeTable/Priority] -Description=Order of Code Table -Type=Integer -DefaultValue=99 - -[CodeTable/UsePY] -Description=Use Pinyin -Type=Boolean -DefaultValue=False - -[CodeTable/PYKey] -Description=Pinyin Key -Type=Char -DefaultValue=@ - -[CodeTable/AutoSend] -Description=Auto Send Candidate Word to Client -Type=Integer -DefaultValue=-1 - -[CodeTable/NoneMatchAutoSend] -Description=Auto Send Candidate Word if no match in Code Table -Type=Integer -DefaultValue=-1 - -[CodeTable/EndKey] -Description=End Key -Type=String -DefaultValue= - -[CodeTable/UseMatchingKey] -Description=Use Matching Key -Type=Boolean -DefaultValue=False - -[CodeTable/MatchingKey] -Description=Matching Key -Type=Char -DefaultValue=~ - -[CodeTable/ExactMatch] -Description=Exact Match -Type=Boolean - -[CodeTable/AutoPhrase] -Description=Auto Phrase -Type=Boolean -DefaultValue=True - -[CodeTable/AutoPhraseLength] -Description=Auto Phrase Length -Type=Integer -DefaultValue=4 - -[CodeTable/AutoPhrasePhrase] -Description=Auto Phrase Phrase -Type=Boolean -DefaultValue=True - -[CodeTable/SaveAutoPhrase] -Description=Save Auto Phrase -Type=Integer -DefaultValue=0 - -[CodeTable/PromptTableCode] -Description=Prompt Table Code -Type=Boolean - -[CodeTable/Symbol] -Description=Symbol -Type=String -DefaultValue= - -[CodeTable/SymbolFile] -Description=Symbol File -Type=File -DefaultValue= - -[CodeTable/Choose] -Description=Choose -Type=String -DefaultValue=1234567890 - -[CodeTable/Enabled] -Description=Enable This Table or Not -Type=Boolean -DefaultValue=True diff -Nru fcitx-4.0.1/data/vk.conf fcitx-4.1.1/data/vk.conf --- fcitx-4.0.1/data/vk.conf 2010-11-28 11:54:59.000000000 +0000 +++ fcitx-4.1.1/data/vk.conf 2011-09-08 16:00:05.000000000 +0000 @@ -102,81 +102,83 @@ [VK] NAME=希腊字母 -q=α Α -w=β Β -e=γ Γ -r=δ Δ -t=ε Ε -y=ζ Ζ -u=η Η -i=θ Θ -o=ι Ι -a=κ Κ -s=λ Λ -d=μ Μ -f=ν Ν -g=ξ Ξ -h=ο Ο -j=π Π -k=ρ Ρ -z=σ Σ -x=τ Τ -c=υ Υ -v=φ Φ -b=χ Χ -n=ψ Ψ -m=ω Ω +w=ς Σ +e=ε Ε +r=ρ Ρ +t=τ Τ +y=υ Υ +u=θ Θ +i=ι Ι +o=ο Ο +p=π Π +a=α Α +s=σ Σ +d=δ Δ +f=φ Φ +g=γ Γ +h=η Η +j=ξ Ξ +k=κ Κ +l=λ Λ +z=ζ Ζ +x=χ Χ +c=ψ Ψ +v=ω Ω +b=β Β +n=ν Ν +m=μ Μ [VK] NAME=俄文字母 -q=а А -w=б Б -e=в В -r=г Г -t=д Д -y=е Е -u=ё Ё -i=ж Ж -o=з З -p=и И -[=й И -]=к К -a=л Л -s=м М -d=н Н -f=о О +q=й Ц +w=ц Ц +e=у У +r=к К +t=е Е +y=н Н +u=г Г +i=ш Ш +o=щ Щ +p=з З +[=х Х +]=ъ Ъ +a=ф Ф +s=ы Ы +d=в В +f=а А g=п П h=р Р -j=с С -k=т Т -l=у У -;=ф Ф -'=х Х -z=ц Ц +j=о О +k=л Л +l=д Д +;=ж Ж +'=э Э +z=я Я x=ч Ч -c=ш Ш -v=щ Щ -b=ъ Ъ -n=ы Ы +c=с С +v=м М +b=и И +n=т Т m=ь Ь -,=э Э +,=б Б .=ю Ю -/=я Я +`=ё Ё +3=3 № [VK] NAME=数字序号 -`=Ⅰ -1=Ⅱ -2=Ⅲ -3=Ⅳ -4=Ⅴ -5=Ⅵ -6=Ⅶ -7=Ⅷ -8=Ⅸ -9=Ⅹ -0=Ⅺ --=Ⅻ +1=Ⅰ +2=Ⅱ +3=Ⅲ +4=Ⅳ +5=Ⅴ +6=Ⅵ +7=Ⅶ +8=Ⅷ +9=Ⅸ +0=Ⅹ +-=Ⅺ +==Ⅻ q=⒈ ⒒ w=⒉ ⒓ e=⒊ ⒔ diff -Nru fcitx-4.0.1/debian/changelog fcitx-4.1.1/debian/changelog --- fcitx-4.0.1/debian/changelog 2011-04-13 04:15:52.000000000 +0000 +++ fcitx-4.1.1/debian/changelog 2011-09-27 06:18:46.000000000 +0000 @@ -1,3 +1,36 @@ +fcitx (1:4.1.1-1ubuntu1) oneiric; urgency=low + + * Uploaded to my own ppa, nothing changed. + + -- Zhengpeng Hou Tue, 27 Sep 2011 14:18:19 +0800 + +fcitx (1:4.1.1-1) unstable; urgency=low + + * New upstream major release. + - Highly modularized. + - Ship with GTK+ 2/3 and QT4 IM Modules. (Closes: #518703) + * debian/control: + - Use my @debian.org email address. + - Remove ygh@debian.org from Uploaders list (Closes: #629019) + - Adjust Build-Depends to fit new release. + - Reorganize binary packages. + - Provide im-config and im-switch compatibility. + * debian/compat: + - Set compatibility level to 8. + * debian/rules: + - Adjust to fit new CMake based build system. + - Detect Multi-Arch status of GTK2/3 and QT4. + * debian/patches: + - All removed, merged upstream. + * debian/copyright: + - Update to current DEP-5 specification, update for new release files. + * debian/im-switch/fcitx: + - Update to set all supported IM_MODULES to fcitx. + * debian/README.*: + - Added to describe some detail information about the package. + + -- Aron Xu Wed, 21 Sep 2011 09:48:38 +0800 + fcitx (1:4.0.1-6) unstable; urgency=low * debian/control: diff -Nru fcitx-4.0.1/debian/clean fcitx-4.1.1/debian/clean --- fcitx-4.0.1/debian/clean 2011-03-09 17:02:52.000000000 +0000 +++ fcitx-4.1.1/debian/clean 2011-09-21 13:47:13.000000000 +0000 @@ -1 +1,3 @@ -data/desc.po +debian/fcitx-frontend-gtk2.install +debian/fcitx-frontend-gtk3.install +debian/fcitx-frontend-qt4.install diff -Nru fcitx-4.0.1/debian/compat fcitx-4.1.1/debian/compat --- fcitx-4.0.1/debian/compat 2010-12-17 14:32:59.000000000 +0000 +++ fcitx-4.1.1/debian/compat 2011-09-21 13:47:13.000000000 +0000 @@ -1 +1 @@ -7 +8 diff -Nru fcitx-4.0.1/debian/control fcitx-4.1.1/debian/control --- fcitx-4.0.1/debian/control 2011-04-09 06:53:56.000000000 +0000 +++ fcitx-4.1.1/debian/control 2011-09-27 06:18:50.000000000 +0000 @@ -1,45 +1,355 @@ Source: fcitx Section: utils Priority: optional -Maintainer: IME Packaging Team -Uploaders: LI Daobing , Aron Xu , Yu Guanghui -DM-Upload-Allowed: yes -Build-Depends: debhelper (>= 7.0.50~), dh-autoreconf, libpango1.0-dev, libcairo2-dev, libdbus-1-dev, intltool (>= 0.35.0), libtool +Maintainer: Ubuntu Developers +XSBC-Original-Maintainer: IME Packaging Team +Uploaders: Aron Xu , LI Daobing +Build-Depends: debhelper (>= 8), cmake, intltool (>= 0.35.0), + libdbus-1-dev (>= 1.1.0), libpango1.0-dev (>= 1.0), libcairo2-dev (>= 1.0), + libdbus-glib-1-dev, libopencc-dev (>= 0.1.1), libicu-dev, + libgtk2.0-dev, libqt4-dev, libgtk-3-dev Standards-Version: 3.9.2 Homepage: http://code.google.com/p/fcitx/ Vcs-Git: git://git.debian.org/pkg-ime/fcitx.git Vcs-Browser: http://git.debian.org/?p=pkg-ime/fcitx.git Package: fcitx -Architecture: any -Depends: ${shlibs:Depends}, ${misc:Depends}, fcitx-data -Recommends: im-switch, fcitx-config-gtk -Suggests: fcitx-table-all, fcitx-tools -Description: Free Chinese Input Toy for X (XIM) - fcitx is a small and fast input server initially designed for Chinese, - which is also useful for some other languages (especially CJK) now. +Architecture: all +Depends: ${misc:Depends}, fcitx-bin, fcitx-data (>= 1:4.1.1), fcitx-modules, + fcitx-module-x11, fcitx-frontend-gtk2, fcitx-ui-classic +Recommends: fcitx-pinyin, fcitx-googlepinyin | fcitx-sunpinyin, + fcitx-table-wubi | fcitx-table-wbpy, fcitx-config-gtk, + im-config | im-switch +Suggests: fcitx-frontend-gtk3, fcitx-frontend-qt4, fcitx-tools +Description: Free Chinese Input Toy of X + Fcitx is the Free Chinese Input Toy of X, which was initially designed + for Chinese users, and used XIM protocol. Now it has already evolved + into a highly modularized, feature rich input method framework for + Unix-like platforms supporting a considerable amount of frontends, + backends and modules. + . + It is an ideal choice for the vast majority. Many of its features make + users of Unix-like platforms have a fully modern input experience for + the first time. It has also greatly lower the threshold for developers, + making the development of extended funtions much easier than ever before. . - It supports Pinyin, QuWei and Table-based input methods. + This metapackage pulls in a set of recommended Fcitx components, which + is expected to be fit for most desktop users. -Package: fcitx-data +Package: fcitx-bin Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Recommends: fcitx-data (>= 1:4.1.1), fcitx-modules +Suggests: fcitx (>= 1:4.1.1) +Replaces: fcitx (<< 1:4.1.1) +Breaks: fcitx (<< 1:4.1.1) +Description: Free Chinese Input Toy of X - essential binaries + Fcitx is the Free Chinese Input Toy of X, which was initially designed + for Chinese users, and used XIM protocol. Now it has already evolved + into a highly modularized, feature rich input method framework for + Unix-like platforms supporting a considerable amount of frontends, + backends and modules. + . + It is an ideal choice for the vast majority. Many of its features make + users of Unix-like platforms have a fully modern input experience for + the first time. It has also greatly lower the threshold for developers, + making the development of extended funtions much easier than ever before. + . + This package provides the essential executable binaries. If you are + looking for a working input experience, please install the package + "fcitx" instead. + +Package: fcitx-data +Architecture: all Depends: ${misc:Depends} -Replaces: fcitx (<< 1:4.0.0) -Breaks: fcitx (<< 1:4.0.0) -Description: Data files of Free Chinese Input Toy for X (XIM) - fcitx is a small and fast input server initially designed for Chinese, - which is also useful for some other languages (especially CJK) now. +Recommends: fcitx-bin +Suggests: fcitx (>= 1:4.1.1) +Replaces: fcitx (<< 1:4.1.1) +Breaks: fcitx (<< 1:4.1.1) +Description: Free Chinese Input Toy of X - essential data files + Fcitx is the Free Chinese Input Toy of X, which was initially designed + for Chinese users, and used XIM protocol. Now it has already evolved + into a highly modularized, feature rich input method framework for + Unix-like platforms supporting a considerable amount of frontends, + backends and modules. + . + It is an ideal choice for the vast majority. Many of its features make + users of Unix-like platforms have a fully modern input experience for + the first time. It has also greatly lower the threshold for developers, + making the development of extended funtions becomes much easier than + ever before. + . + This package provides the essential data files. If you are looking for a + working input experience, please install the package "fcitx" instead. + +Package: fcitx-libs +Architecture: any +Section: libs +Depends: ${shlibs:Depends}, ${misc:Depends} +Suggests: fcitx (>= 1:4.1.1) +Replaces: fcitx (<< 1:4.1.1) +Breaks: fcitx (<< 1:4.1.1) +Description: Free Chinese Input Toy of X - library files + Fcitx is the Free Chinese Input Toy of X, which was initially designed + for Chinese users, and used XIM protocol. Now it has already evolved + into a highly modularized, feature rich input method framework for + Unix-like platforms supporting a considerable amount of frontends, + backends and modules. + . + It is an ideal choice for the vast majority. Many of its features make + users of Unix-like platforms have a fully modern input experience for + the first time. It has also greatly lower the threshold for developers, + making the development of extended funtions much easier than ever before. + . + This package contains three libraries: + * libfcitx-core - core functions of Fcitx + * libfcitx-config - support library for Fcitx configurations + * libfcitx-utils - utility support library for Fcitx + +Package: fcitx-libs-dev +Architecture: any +Section: libdevel +Depends: ${misc:Depends}, fcitx-libs (= ${binary:Version}) +Replaces: fcitx (<< 1:4.1.1) +Breaks: fcitx (<< 1:4.1.1) +Description: Free Chinese Input Toy of X - library development files + Fcitx is the Free Chinese Input Toy of X, which was initially designed + for Chinese users, and used XIM protocol. Now it has already evolved + into a highly modularized, feature rich input method framework for + Unix-like platforms supporting a considerable amount of frontends, + backends and modules. + . + It is an ideal choice for the vast majority. Many of its features make + users of Unix-like platforms have a fully modern input experience for + the first time. It has also greatly lower the threshold for developers, + making the development of extended funtions much easier than ever before. + . + This package provides the library development files. + +Package: fcitx-libs-dbg +Architecture: any +Section: debug +Priority: extra +Depends: ${misc:Depends}, fcitx-libs (= ${binary:Version}) +Replaces: fcitx (<< 1:4.1.1) +Breaks: fcitx (<< 1:4.1.1) +Description: Free Chinese Input Toy of X - library debugging symbols + Fcitx is the Free Chinese Input Toy of X, which was initially designed + for Chinese users, and used XIM protocol. Now it has already evolved + into a highly modularized, feature rich input method framework for + Unix-like platforms supporting a considerable amount of frontends, + backends and modules. + . + It is an ideal choice for the vast majority. Many of its features make + users of Unix-like platforms have a fully modern input experience for + the first time. It has also greatly lower the threshold for developers, + making the development of extended funtions much easier than ever before. + . + This package provides the library debugging symbols. + +Package: fcitx-ui-kimpanel +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends}, fcitx (>= 1:4.1.1), + fcitx-module-dbus, plasma-widgets-addons +Replaces: fcitx (<< 1:4.1.1) +Breaks: fcitx (<< 1:4.1.1) +Description: Free Chinese Input Toy of X - KIMPanel user interface + Fcitx is the Free Chinese Input Toy of X, which was initially designed + for Chinese users, and used XIM protocol. Now it has already evolved + into a highly modularized, feature rich input method framework for + Unix-like platforms supporting a considerable amount of frontends, + backends and modules. + . + It is an ideal choice for the vast majority. Many of its features make + users of Unix-like platforms have a fully modern input experience for + the first time. It has also greatly lower the threshold for developers, + making the development of extended funtions much easier than ever before. + . + This package provides the KIMPanel user interface of Fcitx, which is a + good choice for KDE4 users. + +Package: fcitx-ui-classic +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends}, fcitx-module-x11 +Recommends: fcitx (>= 1:4.1.1) +Replaces: fcitx (<< 1:4.1.1) +Breaks: fcitx (<< 1:4.1.1) +Description: Free Chinese Input Toy of X - Classic user interface + Fcitx is the Free Chinese Input Toy of X, which was initially designed + for Chinese users, and used XIM protocol. Now it has already evolved + into a highly modularized, feature rich input method framework for + Unix-like platforms supporting a considerable amount of frontends, + backends and modules. + . + It is an ideal choice for the vast majority. Many of its features make + users of Unix-like platforms have a fully modern input experience for + the first time. It has also greatly lower the threshold for developers, + making the development of extended funtions much easier than ever before. + . + This package provides the classic user interface, which is suitable + for most users. It also provides the following skins: + * classic: Fcitx 3.x classic skin ported to new infrastructure + * dark: the dark skin fits for dark desktop theme + * default: the default skin + +Package: fcitx-frontend-all +Architecture: all +Depends: ${misc:Depends}, fcitx-frontend-gtk2, fcitx-frontend-gtk3, + fcitx-frontend-qt4, fcitx-module-x11, fcitx-module-dbus +Description: Free Chinese Input Toy of X - frontends metapackage + Fcitx is the Free Chinese Input Toy of X, which was initially designed + for Chinese users, and used XIM protocol. Now it has already evolved + into a highly modularized, feature rich input method framework for + Unix-like platforms supporting a considerable amount of frontends, + backends and modules. + . + It is an ideal choice for the vast majority. Many of its features make + users of Unix-like platforms have a fully modern input experience for + the first time. It has also greatly lower the threshold for developers, + making the development of extended funtions much easier than ever before. + . + This metapackage pulls in the following frontends: + * XIM protocol client + * GTK+ 2/3 IM Module + * QT 4 IM Module + * IPC frontend (based on D-Bus, used by various IM Modules) + +Package: fcitx-frontend-gtk2 +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends}, fcitx-module-dbus +Description: Free Chinese Input Toy of X - GTK+ 2 IM Module frontend + Fcitx is the Free Chinese Input Toy of X, which was initially designed + for Chinese users, and used XIM protocol. Now it has already evolved + into a highly modularized, feature rich input method framework for + Unix-like platforms supporting a considerable amount of frontends, + backends and modules. + . + It is an ideal choice for the vast majority. Many of its features make + users of Unix-like platforms have a fully modern input experience for + the first time. It has also greatly lower the threshold for developers, + making the development of extended funtions much easier than ever before. + . + This package provides the GTK+ 2 IM Module frontend, which is + recommended for all desktop users. + +Package: fcitx-frontend-gtk3 +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends}, fcitx-module-dbus +Description: Free Chinese Input Toy of X - GTK+ 3 IM Module frontend + Fcitx is the Free Chinese Input Toy of X, which was initially designed + for Chinese users, and used XIM protocol. Now it has already evolved + into a highly modularized, feature rich input method framework for + Unix-like platforms supporting a considerable amount of frontends, + backends and modules. + . + It is an ideal choice for the vast majority. Many of its features make + users of Unix-like platforms have a fully modern input experience for + the first time. It has also greatly lower the threshold for developers, + making the development of extended funtions much easier than ever before. + . + This package provides the GTK+ 3 IM Module frontend, which is + recommended for all desktop users. This is the best solution if you are + looking for a better input experience with GTK+ 3 applications. + +Package: fcitx-frontend-qt4 +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends}, fcitx-module-dbus +Description: Free Chinese Input Toy of X - QT 4 IM Module frontend + Fcitx is the Free Chinese Input Toy of X, which was initially designed + for Chinese users, and used XIM protocol. Now it has already evolved + into a highly modularized, feature rich input method framework for + Unix-like platforms supporting a considerable amount of frontends, + backends and modules. + . + It is an ideal choice for the vast majority. Many of its features make + users of Unix-like platforms have a fully modern input experience for + the first time. It has also greatly lower the threshold for developers, + making the development of extended funtions much easier than ever before. . - This package contains essential data files of fcitx. + This package provides the QT 4 IM Module frontend, which is recommended + for KDE4 desktop users. + +Package: fcitx-pinyin +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends}, fcitx-bin, + fcitx-data (>= 1:4.1.1), fcitx-modules +Recommends: fcitx (>= 1:4.1.1) +Replaces: fcitx (<< 1:4.1.1) +Breaks: fcitx (<< 1:4.1.1) +Description: Free Chinese Input Toy of X - classic Pinyin engine + Fcitx is the Free Chinese Input Toy of X, which was initially designed + for Chinese users, and used XIM protocol. Now it has already evolved + into a highly modularized, feature rich input method framework for + Unix-like platforms supporting a considerable amount of frontends, + backends and modules. + . + It is an ideal choice for the vast majority. Many of its features make + users of Unix-like platforms have a fully modern input experience for + the first time. It has also greatly lower the threshold for developers, + making the development of extended funtions much easier than ever before. + . + This package provides the classic Pinyin input method, which features + very short responding time by reading all words into RAM during + activation. + +Package: fcitx-qw +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends}, fcitx (>= 1:4.1.1) +Replaces: fcitx (<< 1:4.1.1) +Breaks: fcitx (<< 1:4.1.1) +Description: Free Chinese Input Toy of X - QuWei engine + Fcitx is the Free Chinese Input Toy of X, which was initially designed + for Chinese users, and used XIM protocol. Now it has already evolved + into a highly modularized, feature rich input method framework for + Unix-like platforms supporting a considerable amount of frontends, + backends and modules. + . + It is an ideal choice for the vast majority. Many of its features make + users of Unix-like platforms have a fully modern input experience for + the first time. It has also greatly lower the threshold for developers, + making the development of extended funtions much easier than ever before. + . + This package provides the QuWei input method. + +Package: fcitx-table +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends}, fcitx (>= 1:4.1.1), fcitx-pinyin (>= 1:4.1.1) +Replaces: fcitx (<< 1:4.1.1) +Breaks: fcitx (<< 1:4.1.1) +Description: Free Chinese Input Toy of X - table engine + Fcitx is the Free Chinese Input Toy of X, which was initially designed + for Chinese users, and used XIM protocol. Now it has already evolved + into a highly modularized, feature rich input method framework for + Unix-like platforms supporting a considerable amount of frontends, + backends and modules. + . + It is an ideal choice for the vast majority. Many of its features make + users of Unix-like platforms have a fully modern input experience for + the first time. It has also greatly lower the threshold for developers, + making the development of extended funtions much easier than ever before. + . + This package provides the table engine. By using this engine, Fcitx can + support a large number of table-based input methods such as Wubi, + WubiPinyin, etc. Package: fcitx-table-all Architecture: all -Depends: ${misc:Depends}, fcitx-table-bingchan, fcitx-table-cangjie, fcitx-table-dianbaoma, fcitx-table-erbi, fcitx-table-wanfeng, fcitx-table-wbpy, fcitx-table-wubi, fcitx-table-ziranma -Description: Tables of Free Chinese Input Toy for X (XIM) - meta package - fcitx is a small and fast input server initially designed for Chinese, - which is also useful for some other languages (especially CJK) now. +Depends: ${misc:Depends}, fcitx-table-bingchan, fcitx-table-cangjie, + fcitx-table-dianbaoma, fcitx-table-erbi, fcitx-table-wanfeng, + fcitx-table-wbpy, fcitx-table-wubi, fcitx-table-ziranma +Description: Free Chinese Input Toy of X - tables metapackage + Fcitx is the Free Chinese Input Toy of X, which was initially designed + for Chinese users, and used XIM protocol. Now it has already evolved + into a highly modularized, feature rich input method framework for + Unix-like platforms supporting a considerable amount of frontends, + backends and modules. + . + It is an ideal choice for the vast majority. Many of its features make + users of Unix-like platforms have a fully modern input experience for + the first time. It has also greatly lower the threshold for developers, + making the development of extended funtions much easier than ever before. . - This package pulls in following tables (and configs) for fcitx: + This metapackage pulls in the following tables: * Cangjie * Dianbaoma * Erbi @@ -50,109 +360,232 @@ * Ziranma Package: fcitx-table-bingchan -Architecture: all -Depends: ${misc:Depends}, fcitx -Replaces: fcitx (<< 1:4.0.0) -Breaks: fcitx (<< 1:4.0.0) -Description: Bingchan table of Free Chinese Input Toy for X (XIM) - fcitx is a small and fast input server initially designed for Chinese, - which is also useful for some other languages (especially CJK) now. - . - This package contains Bingchan table and config for fcitx. +Architecture: any +Depends: ${misc:Depends}, fcitx-table +Description: Free Chinese Input Toy of X - Bingchan table + Fcitx is the Free Chinese Input Toy of X, which was initially designed + for Chinese users, and used XIM protocol. Now it has already evolved + into a highly modularized, feature rich input method framework for + Unix-like platforms supporting a considerable amount of frontends, + backends and modules. + . + It is an ideal choice for the vast majority. Many of its features make + users of Unix-like platforms have a fully modern input experience for + the first time. It has also greatly lower the threshold for developers, + making the development of extended funtions much easier than ever before. + . + This package provides Bingchan table used by the Fcitx table engine. Package: fcitx-table-cangjie -Architecture: all -Depends: ${misc:Depends}, fcitx -Replaces: fcitx (<< 1:4.0.0) -Breaks: fcitx (<< 1:4.0.0) -Description: Cangjie table of Free Chinese Input Toy for X (XIM) - fcitx is a small and fast input server initially designed for Chinese, - which is also useful for some other languages (especially CJK) now. - . - This package contains Cangjie table and config for fcitx. +Architecture: any +Depends: ${misc:Depends}, fcitx-table +Description: Free Chinese Input Toy of X - Cangjie table + Fcitx is the Free Chinese Input Toy of X, which was initially designed + for Chinese users, and used XIM protocol. Now it has already evolved + into a highly modularized, feature rich input method framework for + Unix-like platforms supporting a considerable amount of frontends, + backends and modules. + . + It is an ideal choice for the vast majority. Many of its features make + users of Unix-like platforms have a fully modern input experience for + the first time. It has also greatly lower the threshold for developers, + making the development of extended funtions much easier than ever before. + . + This package provides Cangjie table used by the Fcitx table engine. Package: fcitx-table-dianbaoma -Architecture: all -Depends: ${misc:Depends}, fcitx -Replaces: fcitx (<< 1:4.0.0) -Breaks: fcitx (<< 1:4.0.0) -Description: Dianbaoma table of Free Chinese Input Toy for X (XIM) - fcitx is a small and fast input server initially designed for Chinese, - which is also useful for some other languages (especially CJK) now. - . - This package contains Dianbaoma table and config for fcitx. +Architecture: any +Depends: ${misc:Depends}, fcitx-table +Description: Free Chinese Input Toy of X - Dianbaoma table + Fcitx is the Free Chinese Input Toy of X, which was initially designed + for Chinese users, and used XIM protocol. Now it has already evolved + into a highly modularized, feature rich input method framework for + Unix-like platforms supporting a considerable amount of frontends, + backends and modules. + . + It is an ideal choice for the vast majority. Many of its features make + users of Unix-like platforms have a fully modern input experience for + the first time. It has also greatly lower the threshold for developers, + making the development of extended funtions much easier than ever before. + . + This package provides Dianbaoma table used by the Fcitx table engine. Package: fcitx-table-erbi -Architecture: all -Depends: ${misc:Depends}, fcitx -Replaces: fcitx (<< 1:4.0.0) -Breaks: fcitx (<< 1:4.0.0) -Description: Erbi table of Free Chinese Input Toy for X (XIM) - fcitx is a small and fast input server initially designed for Chinese, - which is also useful for some other languages (especially CJK) now. - . - This package contains Erbi table and config for fcitx. +Architecture: any +Depends: ${misc:Depends}, fcitx-table +Description: Free Chinese Input Toy of X - Erbi table + Fcitx is the Free Chinese Input Toy of X, which was initially designed + for Chinese users, and used XIM protocol. Now it has already evolved + into a highly modularized, feature rich input method framework for + Unix-like platforms supporting a considerable amount of frontends, + backends and modules. + . + It is an ideal choice for the vast majority. Many of its features make + users of Unix-like platforms have a fully modern input experience for + the first time. It has also greatly lower the threshold for developers, + making the development of extended funtions much easier than ever before. + . + This package provides Erbi table used by the Fcitx table engine. Package: fcitx-table-wanfeng -Architecture: all -Depends: ${misc:Depends}, fcitx -Replaces: fcitx (<< 1:4.0.0) -Breaks: fcitx (<< 1:4.0.0) -Description: Wanfeng table of Free Chinese Input Toy for X (XIM) - fcitx is a small and fast input server initially designed for Chinese, - which is also useful for some other languages (especially CJK) now. - . - This package contains Wanfeng table and config for fcitx. +Architecture: any +Depends: ${misc:Depends}, fcitx-table +Description: Free Chinese Input Toy of X - Wanfeng table + Fcitx is the Free Chinese Input Toy of X, which was initially designed + for Chinese users, and used XIM protocol. Now it has already evolved + into a highly modularized, feature rich input method framework for + Unix-like platforms supporting a considerable amount of frontends, + backends and modules. + . + It is an ideal choice for the vast majority. Many of its features make + users of Unix-like platforms have a fully modern input experience for + the first time. It has also greatly lower the threshold for developers, + making the development of extended funtions much easier than ever before. + . + This package provides Wanfeng table used by the Fcitx table engine. Package: fcitx-table-wbpy -Architecture: all -Depends: ${misc:Depends}, fcitx -Replaces: fcitx (<< 1:4.0.0) -Breaks: fcitx (<< 1:4.0.0) -Description: Wubi-pinyin table of Free Chinese Input Toy for X (XIM) - fcitx is a small and fast input server initially designed for Chinese, - which is also useful for some other languages (especially CJK) now. - . - This package contains Wubi-pinyin table and config for fcitx. +Architecture: any +Depends: ${misc:Depends}, fcitx-table +Description: Free Chinese Input Toy of X - WubiPinyin table + Fcitx is the Free Chinese Input Toy of X, which was initially designed + for Chinese users, and used XIM protocol. Now it has already evolved + into a highly modularized, feature rich input method framework for + Unix-like platforms supporting a considerable amount of frontends, + backends and modules. + . + It is an ideal choice for the vast majority. Many of its features make + users of Unix-like platforms have a fully modern input experience for + the first time. It has also greatly lower the threshold for developers, + making the development of extended funtions much easier than ever before. + . + This package provides WubiPinyin table used by the Fcitx table engine. Package: fcitx-table-wubi -Architecture: all -Depends: ${misc:Depends}, fcitx -Replaces: fcitx (<< 1:4.0.0) -Breaks: fcitx (<< 1:4.0.0) -Description: Wubi table of Free Chinese Input Toy for X (XIM) - fcitx is a small and fast input server initially designed for Chinese, - which is also useful for some other languages (especially CJK) now. - . - This package contains Wubi table and config for fcitx. +Architecture: any +Depends: ${misc:Depends}, fcitx-table +Description: Free Chinese Input Toy of X - Wubi table + Fcitx is the Free Chinese Input Toy of X, which was initially designed + for Chinese users, and used XIM protocol. Now it has already evolved + into a highly modularized, feature rich input method framework for + Unix-like platforms supporting a considerable amount of frontends, + backends and modules. + . + It is an ideal choice for the vast majority. Many of its features make + users of Unix-like platforms have a fully modern input experience for + the first time. It has also greatly lower the threshold for developers, + making the development of extended funtions much easier than ever before. + . + This package provides Wubi table used by the Fcitx table engine. Package: fcitx-table-ziranma -Architecture: all -Depends: ${misc:Depends}, fcitx -Replaces: fcitx (<< 1:4.0.0) -Breaks: fcitx (<< 1:4.0.0) -Description: Ziranma table of Free Chinese Input Toy for X (XIM) - fcitx is a small and fast input server initially designed for Chinese, - which is also useful for some other languages (especially CJK) now. +Architecture: any +Depends: ${misc:Depends}, fcitx-table +Description: Free Chinese Input Toy of X - Ziranma table + Fcitx is the Free Chinese Input Toy of X, which was initially designed + for Chinese users, and used XIM protocol. Now it has already evolved + into a highly modularized, feature rich input method framework for + Unix-like platforms supporting a considerable amount of frontends, + backends and modules. + . + It is an ideal choice for the vast majority. Many of its features make + users of Unix-like platforms have a fully modern input experience for + the first time. It has also greatly lower the threshold for developers, + making the development of extended funtions much easier than ever before. + . + This package provides Ziranma table used by the Fcitx table engine. + +Package: fcitx-modules +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Recommends: fcitx (>=1:4.1.1), fcitx-module-vk, fcitx-module-x11, fcitx-module-dbus +Replaces: fcitx (<< 1:4.1.1) +Breaks: fcitx (<< 1:4.1.1) +Description: Free Chinese Input Toy of X - core modules + Fcitx is the Free Chinese Input Toy of X, which was initially designed + for Chinese users, and used XIM protocol. Now it has already evolved + into a highly modularized, feature rich input method framework for + Unix-like platforms supporting a considerable amount of frontends, + backends and modules. + . + It is an ideal choice for the vast majority. Many of its features make + users of Unix-like platforms have a fully modern input experience for + the first time. It has also greatly lower the threshold for developers, + making the development of extended funtions much easier than ever before. + . + This metapackage pulls in the following modules: + * autoeng: automatically change to English mode while inputing specific string + * chttrans: convert Simplified Chinese text to Traditional (libopencc backend) + * fullwidthchar: full-width character input support + * punc: punctuation conversion support + * quickphrase: conveniently input English or from user-defined simple table + * remote: change Fcitx state from terminal (used by fcitx-remote command) + +Package: fcitx-module-dbus +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends}, fcitx-modules +Description: Free Chinese Input Toy of X - D-Bus module and IPC frontend + Fcitx is the Free Chinese Input Toy of X, which was initially designed + for Chinese users, and used XIM protocol. Now it has already evolved + into a highly modularized, feature rich input method framework for + Unix-like platforms supporting a considerable amount of frontends, + backends and modules. + . + It is an ideal choice for the vast majority. Many of its features make + users of Unix-like platforms have a fully modern input experience for + the first time. It has also greatly lower the threshold for developers, + making the development of extended funtions much easier than ever before. . - This package contains Ziranma table and config for fcitx. + This package provides the D-Bus module and IPC frontend which are directly + used by various IM Modules and UIs like KIMPanel support for instance. + +Package: fcitx-module-x11 +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends}, fcitx-modules +Description: Free Chinese Input Toy of X - X11 module and XIM frontend + Fcitx is the Free Chinese Input Toy of X, which was initially designed + for Chinese users, and used XIM protocol. Now it has already evolved + into a highly modularized, feature rich input method framework for + Unix-like platforms supporting a considerable amount of frontends, + backends and modules. + . + It is an ideal choice for the vast majority. Many of its features make + users of Unix-like platforms have a fully modern input experience for + the first time. It has also greatly lower the threshold for developers, + making the development of extended funtions becomes much easier than + ever before. + . + This package provides the X11 module, X11 utilities used by other addons + such as fcitx-ui-classic, and is required for all desktop users. An Xlibs + based virtual keyboard module has been also included in this package for + it's an obvious feature needed by many desktop users. + . + XIM frontend (client) is placed in this package too because of its nature + of being the basic input protocol supported by X. Package: fcitx-tools Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} -Recommends: fcitx +Suggests: fcitx (>= 1:4.1.1) Replaces: fcitx (<< 1:4.0.0) Breaks: fcitx (<< 1:4.0.0) -Description: Tools for Free Chinese Input Toy for X (XIM) - fcitx is a small and fast input server initially designed for Chinese, - which is also useful for some other languages (especially CJK) now. - . - This package contains following tools for fcitx: - * createPYMB - * mb2org - * mb2txt - * readPYBase - * readPYMB - * scel2org - * txt2mb - +Description: Free Chinese Input Toy of X - various tools + Fcitx is the Free Chinese Input Toy of X, which was initially designed + for Chinese users, and used XIM protocol. Now it has already evolved + into a highly modularized, feature rich input method framework for + Unix-like platforms supporting a considerable amount of frontends, + backends and modules. + . + It is an ideal choice for the vast majority. Many of its features make + users of Unix-like platforms have a fully modern input experience for + the first time. It has also greatly lower the threshold for developers, + making the development of extended funtions much easier than ever before. + . + This package provides the following tools: + * createPYMB: create a Pinyin data file (.mb) + * mb2org: convert a .mb data file to .org file + * mb2txt: convert a .mb data file to text file + * readPYBase: read Pinyin base file + * readPYMB: read Pinyin data file (.mb) + * scel2org: convert scel data file (Sougou) to .org file + * txt2mb: convert text file to .mb data file diff -Nru fcitx-4.0.1/debian/copyright fcitx-4.1.1/debian/copyright --- fcitx-4.0.1/debian/copyright 2010-12-17 14:32:59.000000000 +0000 +++ fcitx-4.1.1/debian/copyright 2011-09-21 13:47:13.000000000 +0000 @@ -1,40 +1,40 @@ -Format-Specification: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?op=file&rev=135 -Name: fcitx +Format: http://dep.debian.net/deps/dep5 +Upstream-Name: fcitx Source: http://code.google.com/p/fcitx -Copyright: 2010, CSSlayer - 2002-2005, Yuking +Copyright: 2010, 2011, CSSlayer + 2002-2005, 2010, Yuking License: GPL-2+ This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. - + . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + . You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. - + . On Debian systems, the full text of GPL-2 could be found at /usr/share/common-licenses/GPL-2 . -Files: debian/* -Copyright: 2010, Aron Xu - 2010, LI Daobing -License: GPL-2+ - Files: data/pinyin.tar.gz Copyright: The Open-Phrase Project (http://code.google.com/p/open-phrase) License: GPL-2+ -Files: lib/FrameMgr.* +Files: debian/* +Copyright: 2010, 2011, Aron Xu + 2010, LI Daobing +License: GPL-2+ + +Files: src/frontend/xim/lib/FrameMgr.* Copyright: 1993, 1994, Digital Equipment Corporation, Maynard, Massachusetts -License: BSD +License: Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and that @@ -42,7 +42,7 @@ supporting documentation, and that the names of Digital or MIT not be used in advertising or publicity pertaining to distribution of the software without specific, written prior permission. - + . DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR @@ -51,10 +51,12 @@ ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -Files: lib/i18n*.c,lib/IM*.c, lib/Xi18n*.h, lib/XimFunc.h, src/core/IC.* +Files: src/frontend/xim/lib/i18n*.c src/frontend/xim/lib/IM*.c + src/frontend/xim/lib/Xi18n*.h src/frontend/xim/lib/XimFunc.h + src/frontend/xim/IC.* Copyright: 1994, 1995, Sun Microsystems, Inc. 1993, 1994, Hewlett-Packard Company -License: BSD +License: 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 @@ -65,7 +67,7 @@ Sun Microsystems, Inc. and Hewlett-Packard make no representations about the suitability of this software for any purpose. It is provided "as is" without express or implied warranty. - + . SUN MICROSYSTEMS INC. AND HEWLETT-PACKARD COMPANY DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL @@ -75,15 +77,69 @@ CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -Files: src/fcitx-config/uthash.h, src/tools/utarray.h, +License: LGPL-2+ + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2 of the License, or (at your option) any later version. + . + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Lesser General Public License for more details. + . + You should have received a copy of the GNU Lesser General Public + License along with this program; if not, write to the + Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, + MA 02110-1301, USA. + . + On Debian systems, the full text of LGPL-2 could be found at + /usr/share/common-licenses/LGPL-2 . + +Files: src/frontend/qt/fcitx-compose-data.h +Copyright: 2007, 2008, Huang Peng +License: LGPL-2+ + +Files: src/frontend/qt/fcitxkeyuni.cpp +Copyright: 1997-2000, the GTK+ team and others + 1995-1997, Peter Mattis, Spencer Kimball and Josh MacDonald +License: LGPL-2+ + +Files: src/frontend/qt/keyserver_x11.h +Copyright: 2001, Ellis Whitehead +License: LGPL-2+ + +Files: src/lib/fcitx-utils/qsort_r.c +Copyright: 2007-2010, Massachusetts Institute of Technology +License: + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + "Software"), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + . + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + . + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS 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. + +Files: src/lib/fcitx-utils/uthash.h src/lib/fcitx-utils/utarray.h Copyright: 2003-2009, Troy D. Hanson http://uthash.sourceforge.net -License: MIT +License: BSD-1-Clause Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - + . * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - + . THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A @@ -96,22 +152,18 @@ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -Files: src/im/extra/extra.* -Copyright: 2010, dgod -License: GPL-2+ - -Files: src/interface/DBus.* -Copyright: 2008-2010, Zealot.Hoi -License: GPL-2+ - -Files: src/interface/ImeRemote.c, tools/fcitx-remote.c +Files: src/module/remote/remote.c tools/fcitx-remote.c Copyright: 2008-2010, wind (xihe) License: GPL-2+ -Files: src/ui/AboutWindow.* +Files: src/ui/classic/AboutWindow.* Copyright: 2005, Yunfan License: GPL-2+ -Files: src/ui/MenuWindow.*, src/ui/skin.*, src/ui/skinconfig.c +Files: src/ui/classic/MenuWindow.* src/ui/skin.* src/ui/skinconfig.c Copyright: 2009-2010, t3swing License: GPL-2+ + +Files: src/ui/kimpanel/kimpanel.c +Copyright: 2008-2010, Zealot.Hoi +License: GPL-2+ diff -Nru fcitx-4.0.1/debian/fcitx-bin.install fcitx-4.1.1/debian/fcitx-bin.install --- fcitx-4.0.1/debian/fcitx-bin.install 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/debian/fcitx-bin.install 2011-09-21 13:47:13.000000000 +0000 @@ -0,0 +1,5 @@ +usr/bin/fcitx +usr/bin/fcitx-configtool +usr/bin/fcitx-remote +usr/share/man/man1/fcitx.1 +usr/share/man/man1/fcitx-remote.1 diff -Nru fcitx-4.0.1/debian/fcitx-bin.lintian-overrides fcitx-4.1.1/debian/fcitx-bin.lintian-overrides --- fcitx-4.0.1/debian/fcitx-bin.lintian-overrides 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/debian/fcitx-bin.lintian-overrides 2011-09-21 13:47:13.000000000 +0000 @@ -0,0 +1 @@ +fcitx-bin: binary-without-manpage diff -Nru fcitx-4.0.1/debian/fcitx-data.install fcitx-4.1.1/debian/fcitx-data.install --- fcitx-4.0.1/debian/fcitx-data.install 2010-12-17 14:32:59.000000000 +0000 +++ fcitx-4.1.1/debian/fcitx-data.install 2011-09-21 13:47:13.000000000 +0000 @@ -1,4 +1,8 @@ -usr/share/pixmaps/ -usr/share/fcitx/skin/ -usr/share/fcitx/data/*.* -usr/share/fcitx/data/table/disable-table.conf.template +usr/share/icons/* +usr/share/locale/* +usr/share/fcitx/configdesc/addon.desc +usr/share/fcitx/configdesc/config.desc +usr/share/fcitx/configdesc/profile.desc +usr/share/fcitx/configdesc/skin.desc +usr/share/applications/fcitx.desktop +usr/share/applications/fcitx-configtool.desktop diff -Nru fcitx-4.0.1/debian/fcitx-data.lintian-overrides fcitx-4.1.1/debian/fcitx-data.lintian-overrides --- fcitx-4.0.1/debian/fcitx-data.lintian-overrides 2011-03-09 17:01:40.000000000 +0000 +++ fcitx-4.1.1/debian/fcitx-data.lintian-overrides 2011-09-21 13:47:13.000000000 +0000 @@ -1 +1 @@ -fcitx-data: arch-dep-package-has-big-usr-share +fcitx-data: desktop-command-not-in-package diff -Nru fcitx-4.0.1/debian/fcitx.doc-base fcitx-4.1.1/debian/fcitx.doc-base --- fcitx-4.0.1/debian/fcitx.doc-base 2010-12-17 14:32:59.000000000 +0000 +++ fcitx-4.1.1/debian/fcitx.doc-base 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -Document: fcitx -Title: fcitx documentation -Author: The fcitx authors and contributors -Abstract: This manual describes what fcitx is - and how it can be used. -Section: Help/Books - -Format: text -Files: /usr/share/doc/fcitx/Develop_Readme /usr/share/doc/fcitx/API.txt.gz /usr/share/doc/fcitx/pinyin.txt diff -Nru fcitx-4.0.1/debian/fcitx-frontend-gtk2.install.in fcitx-4.1.1/debian/fcitx-frontend-gtk2.install.in --- fcitx-4.0.1/debian/fcitx-frontend-gtk2.install.in 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/debian/fcitx-frontend-gtk2.install.in 2011-09-21 13:47:13.000000000 +0000 @@ -0,0 +1 @@ +GTK2_LIBDIR/gtk-2.0/*/immodules/im-fcitx.so diff -Nru fcitx-4.0.1/debian/fcitx-frontend-gtk3.install.in fcitx-4.1.1/debian/fcitx-frontend-gtk3.install.in --- fcitx-4.0.1/debian/fcitx-frontend-gtk3.install.in 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/debian/fcitx-frontend-gtk3.install.in 2011-09-21 13:47:13.000000000 +0000 @@ -0,0 +1 @@ +GTK3_LIBDIR/gtk-3.0/*/immodules/im-fcitx.so diff -Nru fcitx-4.0.1/debian/fcitx-frontend-qt4.install.in fcitx-4.1.1/debian/fcitx-frontend-qt4.install.in --- fcitx-4.0.1/debian/fcitx-frontend-qt4.install.in 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/debian/fcitx-frontend-qt4.install.in 2011-09-21 13:47:13.000000000 +0000 @@ -0,0 +1 @@ +QT4_LIBDIR/qt4/plugins/inputmethods/qtim-fcitx.so diff -Nru fcitx-4.0.1/debian/fcitx.install fcitx-4.1.1/debian/fcitx.install --- fcitx-4.0.1/debian/fcitx.install 2011-04-09 06:58:37.000000000 +0000 +++ fcitx-4.1.1/debian/fcitx.install 2011-09-21 13:47:13.000000000 +0000 @@ -1,11 +1 @@ debian/im-switch/fcitx etc/X11/xinit/xinput.d/ -usr/bin/fcitx* -usr/include/ -/usr/lib/pkgconfig/ -/usr/lib/libfcitx-config.so* -/usr/lib/libfcitx-config.a -usr/share/doc/fcitx/pinyin.txt -usr/share/doc/fcitx/API.txt -usr/share/doc/fcitx/Develop_Readme -usr/share/man/ -usr/share/locale/ diff -Nru fcitx-4.0.1/debian/fcitx-libs-dev.doc-base fcitx-4.1.1/debian/fcitx-libs-dev.doc-base --- fcitx-4.0.1/debian/fcitx-libs-dev.doc-base 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/debian/fcitx-libs-dev.doc-base 2011-09-21 13:47:13.000000000 +0000 @@ -0,0 +1,8 @@ +Document: fcitx-dev-docs +Title: Fcitx developer documentation +Author: The Fcitx authors and contributors +Abstract: This manual describes what Fcitx is and how it can be used. +Section: Help/Books + +Format: text +Files: /usr/share/doc/fcitx/Develop_Readme /usr/share/doc/fcitx/API.txt.gz diff -Nru fcitx-4.0.1/debian/fcitx-libs-dev.install fcitx-4.1.1/debian/fcitx-libs-dev.install --- fcitx-4.0.1/debian/fcitx-libs-dev.install 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/debian/fcitx-libs-dev.install 2011-09-21 13:47:13.000000000 +0000 @@ -0,0 +1,8 @@ +usr/bin/fcitx4-config +usr/lib/libfcitx*.a +usr/lib/libfcitx*.so +usr/lib/pkgconfig/*.pc +usr/include/* +usr/share/cmake/fcitx/*.cmake +usr/share/doc/fcitx/API.txt +usr/share/doc/fcitx/Develop_Readme diff -Nru fcitx-4.0.1/debian/fcitx-libs-dev.lintian-overrides fcitx-4.1.1/debian/fcitx-libs-dev.lintian-overrides --- fcitx-4.0.1/debian/fcitx-libs-dev.lintian-overrides 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/debian/fcitx-libs-dev.lintian-overrides 2011-09-21 13:47:13.000000000 +0000 @@ -0,0 +1 @@ +fcitx-libs-dev: binary-without-manpage diff -Nru fcitx-4.0.1/debian/fcitx-libs.install fcitx-4.1.1/debian/fcitx-libs.install --- fcitx-4.0.1/debian/fcitx-libs.install 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/debian/fcitx-libs.install 2011-09-21 13:47:13.000000000 +0000 @@ -0,0 +1 @@ +usr/lib/libfcitx*.so.* diff -Nru fcitx-4.0.1/debian/fcitx-libs.lintian-overrides fcitx-4.1.1/debian/fcitx-libs.lintian-overrides --- fcitx-4.0.1/debian/fcitx-libs.lintian-overrides 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/debian/fcitx-libs.lintian-overrides 2011-09-21 13:47:13.000000000 +0000 @@ -0,0 +1,2 @@ +fcitx-libs: no-symbols-control-file +fcitx-libs: package-name-doesnt-match-sonames diff -Nru fcitx-4.0.1/debian/fcitx.lintian-overrides fcitx-4.1.1/debian/fcitx.lintian-overrides --- fcitx-4.0.1/debian/fcitx.lintian-overrides 2010-12-17 15:19:14.000000000 +0000 +++ fcitx-4.1.1/debian/fcitx.lintian-overrides 1970-01-01 00:00:00.000000000 +0000 @@ -1,4 +0,0 @@ -fcitx: non-dev-pkg-with-shlib-symlink -fcitx: no-symbols-control-file -fcitx: package-name-doesnt-match-sonames -fcitx: binary-without-manpage diff -Nru fcitx-4.0.1/debian/fcitx-module-dbus.install fcitx-4.1.1/debian/fcitx-module-dbus.install --- fcitx-4.0.1/debian/fcitx-module-dbus.install 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/debian/fcitx-module-dbus.install 2011-09-21 13:47:13.000000000 +0000 @@ -0,0 +1,4 @@ +usr/lib/fcitx/fcitx-dbus.so +usr/share/fcitx/addon/fcitx-dbus.conf +usr/lib/fcitx/fcitx-ipc.so +usr/share/fcitx/addon/fcitx-ipc.conf diff -Nru fcitx-4.0.1/debian/fcitx-modules.install fcitx-4.1.1/debian/fcitx-modules.install --- fcitx-4.0.1/debian/fcitx-modules.install 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/debian/fcitx-modules.install 2011-09-21 13:47:13.000000000 +0000 @@ -0,0 +1,15 @@ +usr/lib/fcitx/fcitx-autoeng.so +usr/lib/fcitx/fcitx-chttrans.so +usr/lib/fcitx/fcitx-fullwidth-char.so +usr/lib/fcitx/fcitx-punc.so +usr/lib/fcitx/fcitx-quickphrase.so +usr/lib/fcitx/fcitx-remote-module.so +usr/share/fcitx/addon/fcitx-autoeng.conf +usr/share/fcitx/addon/fcitx-chttrans.conf +usr/share/fcitx/addon/fcitx-fullwidth-char.conf +usr/share/fcitx/addon/fcitx-punc.conf +usr/share/fcitx/addon/fcitx-quickphrase.conf +usr/share/fcitx/addon/fcitx-remote-module.conf +usr/share/fcitx/data/AutoEng.dat +usr/share/fcitx/data/gbks2t.tab +usr/share/fcitx/data/punc.mb diff -Nru fcitx-4.0.1/debian/fcitx-module-x11.install fcitx-4.1.1/debian/fcitx-module-x11.install --- fcitx-4.0.1/debian/fcitx-module-x11.install 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/debian/fcitx-module-x11.install 2011-09-21 13:47:13.000000000 +0000 @@ -0,0 +1,7 @@ +usr/lib/fcitx/fcitx-x11.so +usr/share/fcitx/addon/fcitx-x11.conf +usr/lib/fcitx/fcitx-xim.so +usr/share/fcitx/addon/fcitx-xim.conf +usr/lib/fcitx/fcitx-vk.so +usr/share/fcitx/addon/fcitx-vk.conf +usr/share/fcitx/data/vk.conf diff -Nru fcitx-4.0.1/debian/fcitx-pinyin.doc-base fcitx-4.1.1/debian/fcitx-pinyin.doc-base --- fcitx-4.0.1/debian/fcitx-pinyin.doc-base 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/debian/fcitx-pinyin.doc-base 2011-09-21 13:47:13.000000000 +0000 @@ -0,0 +1,8 @@ +Document: fcitx-pinyin +Title: Fcitx Pinyin documentation +Author: The Fcitx authors and contributors +Abstract: This manual describes what Fcitx Pinyin is and how it can be used. +Section: Help/Books + +Format: text +Files: /usr/share/doc/fcitx/pinyin.txt diff -Nru fcitx-4.0.1/debian/fcitx-pinyin.install fcitx-4.1.1/debian/fcitx-pinyin.install --- fcitx-4.0.1/debian/fcitx-pinyin.install 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/debian/fcitx-pinyin.install 2011-09-21 13:47:13.000000000 +0000 @@ -0,0 +1,5 @@ +usr/lib/fcitx/fcitx-pinyin.so +usr/share/fcitx/addon/fcitx-pinyin.conf +usr/share/fcitx/configdesc/fcitx-pinyin.desc +usr/share/fcitx/pinyin/* +usr/share/doc/fcitx/pinyin.txt diff -Nru fcitx-4.0.1/debian/fcitx-pinyin.lintian-overrides fcitx-4.1.1/debian/fcitx-pinyin.lintian-overrides --- fcitx-4.0.1/debian/fcitx-pinyin.lintian-overrides 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/debian/fcitx-pinyin.lintian-overrides 2011-09-21 13:47:13.000000000 +0000 @@ -0,0 +1 @@ +fcitx-pinyin: arch-dep-package-has-big-usr-share diff -Nru fcitx-4.0.1/debian/fcitx-qw.install fcitx-4.1.1/debian/fcitx-qw.install --- fcitx-4.0.1/debian/fcitx-qw.install 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/debian/fcitx-qw.install 2011-09-21 13:47:13.000000000 +0000 @@ -0,0 +1,2 @@ +usr/lib/fcitx/fcitx-qw.so +usr/share/fcitx/addon/fcitx-qw.conf diff -Nru fcitx-4.0.1/debian/fcitx-table-bingchan.install fcitx-4.1.1/debian/fcitx-table-bingchan.install --- fcitx-4.0.1/debian/fcitx-table-bingchan.install 2010-12-17 14:32:59.000000000 +0000 +++ fcitx-4.1.1/debian/fcitx-table-bingchan.install 2011-09-21 13:47:13.000000000 +0000 @@ -1 +1,2 @@ -usr/share/fcitx/data/table/qxm.* +usr/share/fcitx/table/qxm.mb +usr/share/fcitx/table/qxm.conf diff -Nru fcitx-4.0.1/debian/fcitx-table-cangjie.install fcitx-4.1.1/debian/fcitx-table-cangjie.install --- fcitx-4.0.1/debian/fcitx-table-cangjie.install 2010-12-17 14:32:59.000000000 +0000 +++ fcitx-4.1.1/debian/fcitx-table-cangjie.install 2011-09-21 13:47:13.000000000 +0000 @@ -1,2 +1,2 @@ -usr/share/fcitx/data/table/cangjie.conf -usr/share/fcitx/data/table/cj.mb +usr/share/fcitx/table/cj.mb +usr/share/fcitx/table/cangjie.conf diff -Nru fcitx-4.0.1/debian/fcitx-table-dianbaoma.install fcitx-4.1.1/debian/fcitx-table-dianbaoma.install --- fcitx-4.0.1/debian/fcitx-table-dianbaoma.install 2010-12-17 14:32:59.000000000 +0000 +++ fcitx-4.1.1/debian/fcitx-table-dianbaoma.install 2011-09-21 13:47:13.000000000 +0000 @@ -1 +1,2 @@ -usr/share/fcitx/data/table/db.* +usr/share/fcitx/table/db.mb +usr/share/fcitx/table/db.conf diff -Nru fcitx-4.0.1/debian/fcitx-table-erbi.install fcitx-4.1.1/debian/fcitx-table-erbi.install --- fcitx-4.0.1/debian/fcitx-table-erbi.install 2010-12-17 14:32:59.000000000 +0000 +++ fcitx-4.1.1/debian/fcitx-table-erbi.install 2011-09-21 13:47:13.000000000 +0000 @@ -1 +1,2 @@ -usr/share/fcitx/data/table/erbi.* +usr/share/fcitx/table/erbi.mb +usr/share/fcitx/table/erbi.conf diff -Nru fcitx-4.0.1/debian/fcitx-table.install fcitx-4.1.1/debian/fcitx-table.install --- fcitx-4.0.1/debian/fcitx-table.install 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/debian/fcitx-table.install 2011-09-21 13:47:13.000000000 +0000 @@ -0,0 +1,4 @@ +usr/lib/fcitx/fcitx-table.so +usr/share/fcitx/addon/fcitx-table.conf +usr/share/fcitx/configdesc/table.desc +usr/share/doc/fcitx/disable-table.conf.template usr/share/doc/fcitx/examples/ diff -Nru fcitx-4.0.1/debian/fcitx-table-wanfeng.install fcitx-4.1.1/debian/fcitx-table-wanfeng.install --- fcitx-4.0.1/debian/fcitx-table-wanfeng.install 2010-12-17 14:32:59.000000000 +0000 +++ fcitx-4.1.1/debian/fcitx-table-wanfeng.install 2011-09-21 13:47:13.000000000 +0000 @@ -1 +1,2 @@ -usr/share/fcitx/data/table/wanfeng.* +usr/share/fcitx/table/wanfeng.mb +usr/share/fcitx/table/wanfeng.conf diff -Nru fcitx-4.0.1/debian/fcitx-table-wanfeng.lintian-overrides fcitx-4.1.1/debian/fcitx-table-wanfeng.lintian-overrides --- fcitx-4.0.1/debian/fcitx-table-wanfeng.lintian-overrides 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/debian/fcitx-table-wanfeng.lintian-overrides 2011-09-21 13:47:13.000000000 +0000 @@ -0,0 +1 @@ +fcitx-table-wanfeng: arch-dep-package-has-big-usr-share diff -Nru fcitx-4.0.1/debian/fcitx-table-wbpy.install fcitx-4.1.1/debian/fcitx-table-wbpy.install --- fcitx-4.0.1/debian/fcitx-table-wbpy.install 2010-12-17 14:32:59.000000000 +0000 +++ fcitx-4.1.1/debian/fcitx-table-wbpy.install 2011-09-21 13:47:13.000000000 +0000 @@ -1 +1,2 @@ -usr/share/fcitx/data/table/wbpy.* +usr/share/fcitx/table/wbpy.mb +usr/share/fcitx/table/wbpy.conf diff -Nru fcitx-4.0.1/debian/fcitx-table-wbpy.lintian-overrides fcitx-4.1.1/debian/fcitx-table-wbpy.lintian-overrides --- fcitx-4.0.1/debian/fcitx-table-wbpy.lintian-overrides 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/debian/fcitx-table-wbpy.lintian-overrides 2011-09-21 13:47:13.000000000 +0000 @@ -0,0 +1 @@ +fcitx-table-wbpy: arch-dep-package-has-big-usr-share diff -Nru fcitx-4.0.1/debian/fcitx-table-wubi.install fcitx-4.1.1/debian/fcitx-table-wubi.install --- fcitx-4.0.1/debian/fcitx-table-wubi.install 2010-12-17 14:32:59.000000000 +0000 +++ fcitx-4.1.1/debian/fcitx-table-wubi.install 2011-09-21 13:47:13.000000000 +0000 @@ -1,3 +1,4 @@ -usr/share/fcitx/data/table/wbx.* +usr/share/fcitx/table/wbx.mb +usr/share/fcitx/table/wbx.conf usr/share/doc/fcitx/cjkvinput.txt usr/share/doc/fcitx/wb_fh.htm diff -Nru fcitx-4.0.1/debian/fcitx-table-wubi.lintian-overrides fcitx-4.1.1/debian/fcitx-table-wubi.lintian-overrides --- fcitx-4.0.1/debian/fcitx-table-wubi.lintian-overrides 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/debian/fcitx-table-wubi.lintian-overrides 2011-09-21 13:47:13.000000000 +0000 @@ -0,0 +1 @@ +fcitx-table-wubi: arch-dep-package-has-big-usr-share diff -Nru fcitx-4.0.1/debian/fcitx-table-ziranma.install fcitx-4.1.1/debian/fcitx-table-ziranma.install --- fcitx-4.0.1/debian/fcitx-table-ziranma.install 2010-12-17 14:32:59.000000000 +0000 +++ fcitx-4.1.1/debian/fcitx-table-ziranma.install 2011-09-21 13:47:13.000000000 +0000 @@ -1 +1,2 @@ -usr/share/fcitx/data/table/zrm.* +usr/share/fcitx/table/zrm.mb +usr/share/fcitx/table/zrm.conf diff -Nru fcitx-4.0.1/debian/fcitx-tools.install fcitx-4.1.1/debian/fcitx-tools.install --- fcitx-4.0.1/debian/fcitx-tools.install 2010-12-17 14:32:59.000000000 +0000 +++ fcitx-4.1.1/debian/fcitx-tools.install 2011-09-21 13:47:13.000000000 +0000 @@ -1,2 +1,14 @@ -usr/bin/*PY* -usr/bin/*2* +usr/bin/createPYMB +usr/bin/mb2org +usr/bin/mb2txt +usr/bin/readPYBase +usr/bin/readPYMB +usr/bin/scel2org +usr/bin/txt2mb +usr/share/man/man1/createPYMB.1 +usr/share/man/man1/mb2org.1 +usr/share/man/man1/mb2txt.1 +usr/share/man/man1/readPYBase.1 +usr/share/man/man1/readPYMB.1 +usr/share/man/man1/scel2org.1 +usr/share/man/man1/txt2mb.1 diff -Nru fcitx-4.0.1/debian/fcitx-tools.lintian-overrides fcitx-4.1.1/debian/fcitx-tools.lintian-overrides --- fcitx-4.0.1/debian/fcitx-tools.lintian-overrides 2010-12-17 14:32:59.000000000 +0000 +++ fcitx-4.1.1/debian/fcitx-tools.lintian-overrides 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -fcitx-tools: binary-without-manpage diff -Nru fcitx-4.0.1/debian/fcitx-ui-classic.install fcitx-4.1.1/debian/fcitx-ui-classic.install --- fcitx-4.0.1/debian/fcitx-ui-classic.install 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/debian/fcitx-ui-classic.install 2011-09-21 13:47:13.000000000 +0000 @@ -0,0 +1,4 @@ +usr/lib/fcitx/fcitx-classic-ui.so +usr/share/fcitx/addon/fcitx-classic-ui.conf +usr/share/fcitx/configdesc/fcitx-classic-ui.desc +usr/share/fcitx/skin/* diff -Nru fcitx-4.0.1/debian/fcitx-ui-kimpanel.install fcitx-4.1.1/debian/fcitx-ui-kimpanel.install --- fcitx-4.0.1/debian/fcitx-ui-kimpanel.install 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/debian/fcitx-ui-kimpanel.install 2011-09-21 13:47:13.000000000 +0000 @@ -0,0 +1,3 @@ +usr/lib/fcitx/fcitx-kimpanel-ui.so +usr/share/fcitx/addon/fcitx-kimpanel-ui.conf +usr/share/applications/fcitx-kimpanel.desktop diff -Nru fcitx-4.0.1/debian/fcitx-ui-kimpanel.lintian-overrides fcitx-4.1.1/debian/fcitx-ui-kimpanel.lintian-overrides --- fcitx-4.0.1/debian/fcitx-ui-kimpanel.lintian-overrides 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/debian/fcitx-ui-kimpanel.lintian-overrides 2011-09-21 13:47:13.000000000 +0000 @@ -0,0 +1 @@ +fcitx-ui-kimpanel: desktop-command-not-in-package diff -Nru fcitx-4.0.1/debian/im-switch/fcitx fcitx-4.1.1/debian/im-switch/fcitx --- fcitx-4.0.1/debian/im-switch/fcitx 2010-12-17 14:32:59.000000000 +0000 +++ fcitx-4.1.1/debian/im-switch/fcitx 2011-09-21 13:47:13.000000000 +0000 @@ -1,6 +1,6 @@ XIM=fcitx XIM_PROGRAM=/usr/bin/fcitx XIM_ARGS="" -GTK_IM_MODULE=xim -QT_IM_MODULE=xim +GTK_IM_MODULE=fcitx +QT_IM_MODULE=fcitx DEPENDS="fcitx" diff -Nru fcitx-4.0.1/debian/patches/correct_spellings.patch fcitx-4.1.1/debian/patches/correct_spellings.patch --- fcitx-4.0.1/debian/patches/correct_spellings.patch 2010-12-18 14:19:48.000000000 +0000 +++ fcitx-4.1.1/debian/patches/correct_spellings.patch 1970-01-01 00:00:00.000000000 +0000 @@ -1,18 +0,0 @@ -Description: Fix a spelling error in manpage -Author: Aron Xu -Last-Update: 2010-12-18 ---- a/doc/man/createPYMB.1 -+++ b/doc/man/createPYMB.1 -@@ -27,10 +27,10 @@ - display help and exit - .TP - \fBPinyin File\fR --Pinyin File is a file with pinyin and one character per line, seperated with space. One available file is in the source of fcitx, named \fIgbkpy.org\fR. -+Pinyin File is a file with pinyin and one character per line, separated with space. One available file is in the source of fcitx, named \fIgbkpy.org\fR. - .TP - \fBPhrase File\fR --Phrase File is a file with full pinyin seperated with ' and the corresponding phrase. The default phrase file of fcitx can be downloaded at http://fcitx.googlecode.com/files/pinyin.tar.gz. -+Phrase File is a file with full pinyin separated with ' and the corresponding phrase. The default phrase file of fcitx can be downloaded at http://fcitx.googlecode.com/files/pinyin.tar.gz. - .TP - \fBPinyin MB File\fR - Pinyin MB File is the binary format of Pinyin File. diff -Nru fcitx-4.0.1/debian/patches/debian-ftbfs-609776.patch fcitx-4.1.1/debian/patches/debian-ftbfs-609776.patch --- fcitx-4.0.1/debian/patches/debian-ftbfs-609776.patch 2011-02-12 11:16:19.000000000 +0000 +++ fcitx-4.1.1/debian/patches/debian-ftbfs-609776.patch 1970-01-01 00:00:00.000000000 +0000 @@ -1,56 +0,0 @@ -Description: Fix FTBFS on kfreebsd and hurd. - Upstream hard coded *freebsd* to use gmd5sum, which should be - md5sum on Debian kfreebsd. Also, upstream didn't check for - hurd, now added. -Author: Aron Xu -Bug-Debian: 609776 -Forwarded: http://code.google.com/p/fcitx/issues/detail?id=377 -Last-Update: 2011-01-14 ---- a/configure -+++ b/configure -@@ -12661,6 +12661,10 @@ - $as_echo_n "checking host platform characteristics... " >&6; } - - case "$host" in -+ *-*-*kfreebsd*) -+ HOST_LIBS="-ldl -lpthread" -+ md5prog=md5sum -+ ;; - *-*-*freebsd*) - HOST_LIBS="-lexecinfo -pthread" - md5prog=gmd5sum -@@ -12669,6 +12673,10 @@ - HOST_LIBS="-ldl -lpthread" - md5prog=md5sum - ;; -+ *-*-*gnu*) -+ HOST_LIBS="-ldl -lpthread" -+ md5prog=md5sum -+ ;; - esac - - ---- a/configure.in -+++ b/configure.in -@@ -29,6 +29,10 @@ - AC_MSG_CHECKING([host platform characteristics]) - - case "$host" in -+ *-*-*kfreebsd*) -+ HOST_LIBS="-ldl -lpthread" -+ md5prog=md5sum -+ ;; - *-*-*freebsd*) - HOST_LIBS="-lexecinfo -pthread" - md5prog=gmd5sum -@@ -37,6 +41,10 @@ - HOST_LIBS="-ldl -lpthread" - md5prog=md5sum - ;; -+ *-*-*gnu*) -+ HOST_LIBS="-ldl -lpthread" -+ md5prog=md5sum -+ ;; - esac - - AC_SUBST(HOST_LIBS) diff -Nru fcitx-4.0.1/debian/patches/gtk-mulitarch.patch fcitx-4.1.1/debian/patches/gtk-mulitarch.patch --- fcitx-4.0.1/debian/patches/gtk-mulitarch.patch 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/debian/patches/gtk-mulitarch.patch 2011-09-21 13:47:13.000000000 +0000 @@ -0,0 +1,29 @@ +diff -r 2793d9cf16bb src/frontend/gtk2/CMakeLists.txt +--- a/src/frontend/gtk2/CMakeLists.txt Wed Sep 21 11:41:25 2011 +0800 ++++ b/src/frontend/gtk2/CMakeLists.txt Wed Sep 21 11:52:32 2011 +0800 +@@ -3,8 +3,9 @@ + PKG_CHECK_MODULES(GTK2 REQUIRED "gtk+-2.0" ) + + _pkgconfig_invoke("gtk+-2.0" GTK2 BINARY_VERSION "" "--variable=gtk_binary_version") ++_pkgconfig_invoke("gtk+-2.0" GTK2 LIBDIR "" "--variable=libdir") + set(GTK2_IM_MODULEDIR +- "${libdir}/gtk-2.0/${GTK2_BINARY_VERSION}/immodules" ++ "${GTK2_LIBDIR}/gtk-2.0/${GTK2_BINARY_VERSION}/immodules" + ) + + include_directories(${GTK2_INCLUDE_DIRS}) +diff -r 2793d9cf16bb src/frontend/gtk3/CMakeLists.txt +--- a/src/frontend/gtk3/CMakeLists.txt Wed Sep 21 11:41:25 2011 +0800 ++++ b/src/frontend/gtk3/CMakeLists.txt Wed Sep 21 11:52:32 2011 +0800 +@@ -3,9 +3,9 @@ + PKG_CHECK_MODULES(GTK3 REQUIRED "gtk+-3.0" ) + + _pkgconfig_invoke("gtk+-3.0" GTK3 BINARY_VERSION "" "--variable=gtk_binary_version") +- ++_pkgconfig_invoke("gtk+-3.0" GTK3 LIBDIR "" "--variable=libdir") + set(GTK3_IM_MODULEDIR +- "${libdir}/gtk-3.0/${GTK3_BINARY_VERSION}/immodules" ++ "${GTK3_LIBDIR}/gtk-3.0/${GTK3_BINARY_VERSION}/immodules" + ) + + include_directories(${GTK3_INCLUDE_DIRS}) diff -Nru fcitx-4.0.1/debian/patches/series fcitx-4.1.1/debian/patches/series --- fcitx-4.0.1/debian/patches/series 2011-03-09 17:03:07.000000000 +0000 +++ fcitx-4.1.1/debian/patches/series 2011-09-21 13:47:13.000000000 +0000 @@ -1,2 +1 @@ -correct_spellings.patch -debian-ftbfs-609776.patch +gtk-mulitarch.patch diff -Nru fcitx-4.0.1/debian/README.source fcitx-4.1.1/debian/README.source --- fcitx-4.0.1/debian/README.source 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/debian/README.source 2011-09-21 13:47:13.000000000 +0000 @@ -0,0 +1,12 @@ +fcitx for Debian +---------------- + +All .mb files are placed into arch-dependent packages because by generating +those binary data files on every architecture, we can avoid endianness problems. +Lintian overrides have been added for packages that lintian says they have +large /usr/share. + +Libraries are placed in a single package because they are going to be used at +the same time by design, so an override for package name does not match soname +has been added. Symbols exportation are controled with upstream, another override +is present for this. diff -Nru fcitx-4.0.1/debian/rules fcitx-4.1.1/debian/rules --- fcitx-4.0.1/debian/rules 2011-03-09 16:56:55.000000000 +0000 +++ fcitx-4.1.1/debian/rules 2011-09-21 13:47:13.000000000 +0000 @@ -1,9 +1,46 @@ #!/usr/bin/make -f +%: + dh $@ -LDFLAGS=-Wl,--as-needed +DEB_BUILD_MULTIARCH=$(shell dpkg-architecture -qDEB_BUILD_MULTIARCH) +GTK2_LIBDIR=$(shell if [ -f /usr/lib/pkgconfig/gtk+-2.0.pc ]; then \ + echo "usr\/lib"; \ + else \ + echo "usr\/lib\/$(DEB_BUILD_MULTIARCH)"; \ + fi) -%: - dh --with autoreconf $@ +GTK3_LIBDIR=$(shell if [ -f /usr/lib/pkgconfig/gtk+-3.0.pc ]; then \ + echo "usr\/lib"; \ + else \ + echo "usr\/lib\/$(DEB_BUILD_MULTIARCH)"; \ + fi) + +QT4_LIBDIR=$(shell if [ -f /usr/lib/pkgconfig/QtCore.pc ]; then \ + echo "usr\/lib"; \ + else \ + echo "usr\/lib\/$(DEB_BUILD_MULTIARCH)"; \ + fi) override_dh_auto_configure: - dh_auto_configure -- --enable-recording + dh_auto_configure -- \ + -DENABLE_CAIRO=ON \ + -DENABLE_DBUS=ON \ + -DENABLE_PANGO=ON \ + -DENABLE_DEBUG=ON \ + -DENABLE_TABLE=ON \ + -DENABLE_STATIC=ON \ + -DENABLE_GTK2_IM_MODULE=ON \ + -DENABLE_GTK3_IM_MODULE=ON \ + -DENABLE_QT_IM_MODULE=ON \ + -DENABLE_OPENCC=ON \ + -DENABLE_TEST=ON +override_dh_makeshlibs: + dh_makeshlibs -pfcitx-libs +override_dh_strip: + dh_strip --dbg-package=fcitx-libs-dbg + +override_dh_install: + sed "s/GTK2_LIBDIR/$(GTK2_LIBDIR)/g" debian/fcitx-frontend-gtk2.install.in >debian/fcitx-frontend-gtk2.install + sed "s/GTK3_LIBDIR/$(GTK3_LIBDIR)/g" debian/fcitx-frontend-gtk3.install.in >debian/fcitx-frontend-gtk3.install + sed "s/QT4_LIBDIR/$(QT4_LIBDIR)/g" debian/fcitx-frontend-qt4.install.in >debian/fcitx-frontend-qt4.install + dh_install diff -Nru fcitx-4.0.1/debian/watch fcitx-4.1.1/debian/watch --- fcitx-4.0.1/debian/watch 2011-04-13 04:05:26.000000000 +0000 +++ fcitx-4.1.1/debian/watch 2011-09-21 13:47:13.000000000 +0000 @@ -1,3 +1,2 @@ version=3 http://googlecode.debian.net/p/fcitx/fcitx-(\d+\.\d+\.\d+).tar\.gz -#http://googlecode.debian.net/p/fcitx/fcitx-(\d+.*)\.tar\.gz diff -Nru fcitx-4.0.1/depcomp fcitx-4.1.1/depcomp --- fcitx-4.0.1/depcomp 2010-11-28 11:54:51.000000000 +0000 +++ fcitx-4.1.1/depcomp 1970-01-01 00:00:00.000000000 +0000 @@ -1,479 +0,0 @@ -#! /bin/sh - -# depcomp - compile a program generating dependencies as side-effects -# Copyright 1999, 2000, 2003 Free Software Foundation, Inc. - -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2, or (at your option) -# any later version. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. - -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA -# 02111-1307, USA. - -# As a special exception to the GNU General Public License, if you -# distribute this file as part of a program that contains a -# configuration script generated by Autoconf, you may include it under -# the same distribution terms that you use for the rest of that program. - -# Originally written by Alexandre Oliva . - -if test -z "$depmode" || test -z "$source" || test -z "$object"; then - echo "depcomp: Variables source, object and depmode must be set" 1>&2 - exit 1 -fi -# `libtool' can also be set to `yes' or `no'. - -if test -z "$depfile"; then - base=`echo "$object" | sed -e 's,^.*/,,' -e 's,\.\([^.]*\)$,.P\1,'` - dir=`echo "$object" | sed 's,/.*$,/,'` - if test "$dir" = "$object"; then - dir= - fi - # FIXME: should be _deps on DOS. - depfile="$dir.deps/$base" -fi - -tmpdepfile=${tmpdepfile-`echo "$depfile" | sed 's/\.\([^.]*\)$/.T\1/'`} - -rm -f "$tmpdepfile" - -# Some modes work just like other modes, but use different flags. We -# parameterize here, but still list the modes in the big case below, -# to make depend.m4 easier to write. Note that we *cannot* use a case -# here, because this file can only contain one case statement. -if test "$depmode" = hp; then - # HP compiler uses -M and no extra arg. - gccflag=-M - depmode=gcc -fi - -if test "$depmode" = dashXmstdout; then - # This is just like dashmstdout with a different argument. - dashmflag=-xM - depmode=dashmstdout -fi - -case "$depmode" in -gcc3) -## gcc 3 implements dependency tracking that does exactly what -## we want. Yay! Note: for some reason libtool 1.4 doesn't like -## it if -MD -MP comes after the -MF stuff. Hmm. - "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" - stat=$? - if test $stat -eq 0; then : - else - rm -f "$tmpdepfile" - exit $stat - fi - mv "$tmpdepfile" "$depfile" - ;; - -gcc) -## There are various ways to get dependency output from gcc. Here's -## why we pick this rather obscure method: -## - Don't want to use -MD because we'd like the dependencies to end -## up in a subdir. Having to rename by hand is ugly. -## (We might end up doing this anyway to support other compilers.) -## - The DEPENDENCIES_OUTPUT environment variable makes gcc act like -## -MM, not -M (despite what the docs say). -## - Using -M directly means running the compiler twice (even worse -## than renaming). - if test -z "$gccflag"; then - gccflag=-MD, - fi - "$@" -Wp,"$gccflag$tmpdepfile" - stat=$? - if test $stat -eq 0; then : - else - rm -f "$tmpdepfile" - exit $stat - fi - rm -f "$depfile" - echo "$object : \\" > "$depfile" - alpha=ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz -## The second -e expression handles DOS-style file names with drive letters. - sed -e 's/^[^:]*: / /' \ - -e 's/^['$alpha']:\/[^:]*: / /' < "$tmpdepfile" >> "$depfile" -## This next piece of magic avoids the `deleted header file' problem. -## The problem is that when a header file which appears in a .P file -## is deleted, the dependency causes make to die (because there is -## typically no way to rebuild the header). We avoid this by adding -## dummy dependencies for each header file. Too bad gcc doesn't do -## this for us directly. - tr ' ' ' -' < "$tmpdepfile" | -## Some versions of gcc put a space before the `:'. On the theory -## that the space means something, we add a space to the output as -## well. -## Some versions of the HPUX 10.20 sed can't process this invocation -## correctly. Breaking it into two sed invocations is a workaround. - sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile" - rm -f "$tmpdepfile" - ;; - -hp) - # This case exists only to let depend.m4 do its work. It works by - # looking at the text of this script. This case will never be run, - # since it is checked for above. - exit 1 - ;; - -sgi) - if test "$libtool" = yes; then - "$@" "-Wp,-MDupdate,$tmpdepfile" - else - "$@" -MDupdate "$tmpdepfile" - fi - stat=$? - if test $stat -eq 0; then : - else - rm -f "$tmpdepfile" - exit $stat - fi - rm -f "$depfile" - - if test -f "$tmpdepfile"; then # yes, the sourcefile depend on other files - echo "$object : \\" > "$depfile" - - # Clip off the initial element (the dependent). Don't try to be - # clever and replace this with sed code, as IRIX sed won't handle - # lines with more than a fixed number of characters (4096 in - # IRIX 6.2 sed, 8192 in IRIX 6.5). We also remove comment lines; - # the IRIX cc adds comments like `#:fec' to the end of the - # dependency line. - tr ' ' ' -' < "$tmpdepfile" \ - | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' | \ - tr ' -' ' ' >> $depfile - echo >> $depfile - - # The second pass generates a dummy entry for each header file. - tr ' ' ' -' < "$tmpdepfile" \ - | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' -e 's/$/:/' \ - >> $depfile - else - # The sourcefile does not contain any dependencies, so just - # store a dummy comment line, to avoid errors with the Makefile - # "include basename.Plo" scheme. - echo "#dummy" > "$depfile" - fi - rm -f "$tmpdepfile" - ;; - -aix) - # The C for AIX Compiler uses -M and outputs the dependencies - # in a .u file. In older versions, this file always lives in the - # current directory. Also, the AIX compiler puts `$object:' at the - # start of each line; $object doesn't have directory information. - # Version 6 uses the directory in both cases. - stripped=`echo "$object" | sed 's/\(.*\)\..*$/\1/'` - tmpdepfile="$stripped.u" - if test "$libtool" = yes; then - "$@" -Wc,-M - else - "$@" -M - fi - stat=$? - - if test -f "$tmpdepfile"; then : - else - stripped=`echo "$stripped" | sed 's,^.*/,,'` - tmpdepfile="$stripped.u" - fi - - if test $stat -eq 0; then : - else - rm -f "$tmpdepfile" - exit $stat - fi - - if test -f "$tmpdepfile"; then - outname="$stripped.o" - # Each line is of the form `foo.o: dependent.h'. - # Do two passes, one to just change these to - # `$object: dependent.h' and one to simply `dependent.h:'. - sed -e "s,^$outname:,$object :," < "$tmpdepfile" > "$depfile" - sed -e "s,^$outname: \(.*\)$,\1:," < "$tmpdepfile" >> "$depfile" - else - # The sourcefile does not contain any dependencies, so just - # store a dummy comment line, to avoid errors with the Makefile - # "include basename.Plo" scheme. - echo "#dummy" > "$depfile" - fi - rm -f "$tmpdepfile" - ;; - -icc) - # Intel's C compiler understands `-MD -MF file'. However on - # icc -MD -MF foo.d -c -o sub/foo.o sub/foo.c - # ICC 7.0 will fill foo.d with something like - # foo.o: sub/foo.c - # foo.o: sub/foo.h - # which is wrong. We want: - # sub/foo.o: sub/foo.c - # sub/foo.o: sub/foo.h - # sub/foo.c: - # sub/foo.h: - # ICC 7.1 will output - # foo.o: sub/foo.c sub/foo.h - # and will wrap long lines using \ : - # foo.o: sub/foo.c ... \ - # sub/foo.h ... \ - # ... - - "$@" -MD -MF "$tmpdepfile" - stat=$? - if test $stat -eq 0; then : - else - rm -f "$tmpdepfile" - exit $stat - fi - rm -f "$depfile" - # Each line is of the form `foo.o: dependent.h', - # or `foo.o: dep1.h dep2.h \', or ` dep3.h dep4.h \'. - # Do two passes, one to just change these to - # `$object: dependent.h' and one to simply `dependent.h:'. - sed "s,^[^:]*:,$object :," < "$tmpdepfile" > "$depfile" - # Some versions of the HPUX 10.20 sed can't process this invocation - # correctly. Breaking it into two sed invocations is a workaround. - sed 's,^[^:]*: \(.*\)$,\1,;s/^\\$//;/^$/d;/:$/d' < "$tmpdepfile" | - sed -e 's/$/ :/' >> "$depfile" - rm -f "$tmpdepfile" - ;; - -tru64) - # The Tru64 compiler uses -MD to generate dependencies as a side - # effect. `cc -MD -o foo.o ...' puts the dependencies into `foo.o.d'. - # At least on Alpha/Redhat 6.1, Compaq CCC V6.2-504 seems to put - # dependencies in `foo.d' instead, so we check for that too. - # Subdirectories are respected. - dir=`echo "$object" | sed -e 's|/[^/]*$|/|'` - test "x$dir" = "x$object" && dir= - base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'` - - if test "$libtool" = yes; then - tmpdepfile1="$dir.libs/$base.lo.d" - tmpdepfile2="$dir.libs/$base.d" - "$@" -Wc,-MD - else - tmpdepfile1="$dir$base.o.d" - tmpdepfile2="$dir$base.d" - "$@" -MD - fi - - stat=$? - if test $stat -eq 0; then : - else - rm -f "$tmpdepfile1" "$tmpdepfile2" - exit $stat - fi - - if test -f "$tmpdepfile1"; then - tmpdepfile="$tmpdepfile1" - else - tmpdepfile="$tmpdepfile2" - fi - if test -f "$tmpdepfile"; then - sed -e "s,^.*\.[a-z]*:,$object:," < "$tmpdepfile" > "$depfile" - # That's a tab and a space in the []. - sed -e 's,^.*\.[a-z]*:[ ]*,,' -e 's,$,:,' < "$tmpdepfile" >> "$depfile" - else - echo "#dummy" > "$depfile" - fi - rm -f "$tmpdepfile" - ;; - -#nosideeffect) - # This comment above is used by automake to tell side-effect - # dependency tracking mechanisms from slower ones. - -dashmstdout) - # Important note: in order to support this mode, a compiler *must* - # always write the preprocessed file to stdout, regardless of -o. - "$@" || exit $? - - # Remove the call to Libtool. - if test "$libtool" = yes; then - while test $1 != '--mode=compile'; do - shift - done - shift - fi - - # Remove `-o $object'. - IFS=" " - for arg - do - case $arg in - -o) - shift - ;; - $object) - shift - ;; - *) - set fnord "$@" "$arg" - shift # fnord - shift # $arg - ;; - esac - done - - test -z "$dashmflag" && dashmflag=-M - # Require at least two characters before searching for `:' - # in the target name. This is to cope with DOS-style filenames: - # a dependency such as `c:/foo/bar' could be seen as target `c' otherwise. - "$@" $dashmflag | - sed 's:^[ ]*[^: ][^:][^:]*\:[ ]*:'"$object"'\: :' > "$tmpdepfile" - rm -f "$depfile" - cat < "$tmpdepfile" > "$depfile" - tr ' ' ' -' < "$tmpdepfile" | \ -## Some versions of the HPUX 10.20 sed can't process this invocation -## correctly. Breaking it into two sed invocations is a workaround. - sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile" - rm -f "$tmpdepfile" - ;; - -dashXmstdout) - # This case only exists to satisfy depend.m4. It is never actually - # run, as this mode is specially recognized in the preamble. - exit 1 - ;; - -makedepend) - "$@" || exit $? - # Remove any Libtool call - if test "$libtool" = yes; then - while test $1 != '--mode=compile'; do - shift - done - shift - fi - # X makedepend - shift - cleared=no - for arg in "$@"; do - case $cleared in - no) - set ""; shift - cleared=yes ;; - esac - case "$arg" in - -D*|-I*) - set fnord "$@" "$arg"; shift ;; - # Strip any option that makedepend may not understand. Remove - # the object too, otherwise makedepend will parse it as a source file. - -*|$object) - ;; - *) - set fnord "$@" "$arg"; shift ;; - esac - done - obj_suffix="`echo $object | sed 's/^.*\././'`" - touch "$tmpdepfile" - ${MAKEDEPEND-makedepend} -o"$obj_suffix" -f"$tmpdepfile" "$@" - rm -f "$depfile" - cat < "$tmpdepfile" > "$depfile" - sed '1,2d' "$tmpdepfile" | tr ' ' ' -' | \ -## Some versions of the HPUX 10.20 sed can't process this invocation -## correctly. Breaking it into two sed invocations is a workaround. - sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile" - rm -f "$tmpdepfile" "$tmpdepfile".bak - ;; - -cpp) - # Important note: in order to support this mode, a compiler *must* - # always write the preprocessed file to stdout. - "$@" || exit $? - - # Remove the call to Libtool. - if test "$libtool" = yes; then - while test $1 != '--mode=compile'; do - shift - done - shift - fi - - # Remove `-o $object'. - IFS=" " - for arg - do - case $arg in - -o) - shift - ;; - $object) - shift - ;; - *) - set fnord "$@" "$arg" - shift # fnord - shift # $arg - ;; - esac - done - - "$@" -E | - sed -n '/^# [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' | - sed '$ s: \\$::' > "$tmpdepfile" - rm -f "$depfile" - echo "$object : \\" > "$depfile" - cat < "$tmpdepfile" >> "$depfile" - sed < "$tmpdepfile" '/^$/d;s/^ //;s/ \\$//;s/$/ :/' >> "$depfile" - rm -f "$tmpdepfile" - ;; - -msvisualcpp) - # Important note: in order to support this mode, a compiler *must* - # always write the preprocessed file to stdout, regardless of -o, - # because we must use -o when running libtool. - "$@" || exit $? - IFS=" " - for arg - do - case "$arg" in - "-Gm"|"/Gm"|"-Gi"|"/Gi"|"-ZI"|"/ZI") - set fnord "$@" - shift - shift - ;; - *) - set fnord "$@" "$arg" - shift - shift - ;; - esac - done - "$@" -E | - sed -n '/^#line [0-9][0-9]* "\([^"]*\)"/ s::echo "`cygpath -u \\"\1\\"`":p' | sort | uniq > "$tmpdepfile" - rm -f "$depfile" - echo "$object : \\" > "$depfile" - . "$tmpdepfile" | sed 's% %\\ %g' | sed -n '/^\(.*\)$/ s:: \1 \\:p' >> "$depfile" - echo " " >> "$depfile" - . "$tmpdepfile" | sed 's% %\\ %g' | sed -n '/^\(.*\)$/ s::\1\::p' >> "$depfile" - rm -f "$tmpdepfile" - ;; - -none) - exec "$@" - ;; - -*) - echo "Unknown depmode $depmode" 1>&2 - exit 1 - ;; -esac - -exit 0 diff -Nru fcitx-4.0.1/doc/CMakeLists.txt fcitx-4.1.1/doc/CMakeLists.txt --- fcitx-4.0.1/doc/CMakeLists.txt 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/doc/CMakeLists.txt 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,9 @@ +add_subdirectory(man) +add_subdirectory(examples) + +set(FCITX_DOC_FILES + cjkvinput.txt wb_fh.htm pinyin.txt + Develop_Readme API.txt +) + +install(FILES ${FCITX_DOC_FILES} DESTINATION share/doc/${package} ) \ No newline at end of file diff -Nru fcitx-4.0.1/doc/examples/CMakeLists.txt fcitx-4.1.1/doc/examples/CMakeLists.txt --- fcitx-4.0.1/doc/examples/CMakeLists.txt 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/doc/examples/CMakeLists.txt 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1 @@ +install(FILES disable-table.conf.template DESTINATION share/doc/${package}) diff -Nru fcitx-4.0.1/doc/examples/disable-table.conf.template fcitx-4.1.1/doc/examples/disable-table.conf.template --- fcitx-4.0.1/doc/examples/disable-table.conf.template 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/doc/examples/disable-table.conf.template 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,2 @@ +[CodeTable] +Enabled=False diff -Nru fcitx-4.0.1/doc/fcitx_trunk.doxyfile fcitx-4.1.1/doc/fcitx_trunk.doxyfile --- fcitx-4.0.1/doc/fcitx_trunk.doxyfile 2010-11-28 11:54:59.000000000 +0000 +++ fcitx-4.1.1/doc/fcitx_trunk.doxyfile 1970-01-01 00:00:00.000000000 +0000 @@ -1,239 +0,0 @@ -# Doxyfile 1.5.5 - -#--------------------------------------------------------------------------- -# Project related configuration options -#--------------------------------------------------------------------------- -DOXYFILE_ENCODING = UTF-8 -PROJECT_NAME = fcitx -PROJECT_NUMBER = 3.6.4rc -OUTPUT_DIRECTORY = ./ -CREATE_SUBDIRS = NO -OUTPUT_LANGUAGE = Chinese -BRIEF_MEMBER_DESC = YES -REPEAT_BRIEF = YES -ABBREVIATE_BRIEF = -ALWAYS_DETAILED_SEC = NO -INLINE_INHERITED_MEMB = NO -FULL_PATH_NAMES = YES -STRIP_FROM_PATH = -STRIP_FROM_INC_PATH = -SHORT_NAMES = NO -JAVADOC_AUTOBRIEF = NO -QT_AUTOBRIEF = NO -MULTILINE_CPP_IS_BRIEF = NO -DETAILS_AT_TOP = NO -INHERIT_DOCS = YES -SEPARATE_MEMBER_PAGES = NO -TAB_SIZE = 8 -ALIASES = -OPTIMIZE_OUTPUT_FOR_C = YES -OPTIMIZE_OUTPUT_JAVA = NO -OPTIMIZE_FOR_FORTRAN = NO -OPTIMIZE_OUTPUT_VHDL = NO -BUILTIN_STL_SUPPORT = NO -CPP_CLI_SUPPORT = NO -SIP_SUPPORT = NO -DISTRIBUTE_GROUP_DOC = NO -SUBGROUPING = YES -TYPEDEF_HIDES_STRUCT = NO -#--------------------------------------------------------------------------- -# Build related configuration options -#--------------------------------------------------------------------------- -EXTRACT_ALL = YES -EXTRACT_PRIVATE = YES -EXTRACT_STATIC = YES -EXTRACT_LOCAL_CLASSES = YES -EXTRACT_LOCAL_METHODS = NO -EXTRACT_ANON_NSPACES = NO -HIDE_UNDOC_MEMBERS = NO -HIDE_UNDOC_CLASSES = NO -HIDE_FRIEND_COMPOUNDS = NO -HIDE_IN_BODY_DOCS = NO -INTERNAL_DOCS = NO -CASE_SENSE_NAMES = YES -HIDE_SCOPE_NAMES = NO -SHOW_INCLUDE_FILES = YES -INLINE_INFO = YES -SORT_MEMBER_DOCS = YES -SORT_BRIEF_DOCS = NO -SORT_GROUP_NAMES = NO -SORT_BY_SCOPE_NAME = NO -GENERATE_TODOLIST = YES -GENERATE_TESTLIST = YES -GENERATE_BUGLIST = YES -GENERATE_DEPRECATEDLIST= YES -ENABLED_SECTIONS = -MAX_INITIALIZER_LINES = 30 -SHOW_USED_FILES = YES -SHOW_DIRECTORIES = NO -FILE_VERSION_FILTER = -#--------------------------------------------------------------------------- -# configuration options related to warning and progress messages -#--------------------------------------------------------------------------- -QUIET = NO -WARNINGS = YES -WARN_IF_UNDOCUMENTED = YES -WARN_IF_DOC_ERROR = YES -WARN_NO_PARAMDOC = NO -WARN_FORMAT = "$file:$line: $text" -WARN_LOGFILE = -#--------------------------------------------------------------------------- -# configuration options related to the input files -#--------------------------------------------------------------------------- -INPUT = ../src -INPUT_ENCODING = UTF-8 -FILE_PATTERNS = -RECURSIVE = YES -EXCLUDE = -EXCLUDE_SYMLINKS = NO -EXCLUDE_PATTERNS = -EXCLUDE_SYMBOLS = -EXAMPLE_PATH = -EXAMPLE_PATTERNS = -EXAMPLE_RECURSIVE = NO -IMAGE_PATH = -INPUT_FILTER = -FILTER_PATTERNS = -FILTER_SOURCE_FILES = NO -#--------------------------------------------------------------------------- -# configuration options related to source browsing -#--------------------------------------------------------------------------- -SOURCE_BROWSER = YES -INLINE_SOURCES = NO -STRIP_CODE_COMMENTS = YES -REFERENCED_BY_RELATION = YES -REFERENCES_RELATION = YES -REFERENCES_LINK_SOURCE = YES -USE_HTAGS = NO -VERBATIM_HEADERS = YES -#--------------------------------------------------------------------------- -# configuration options related to the alphabetical class index -#--------------------------------------------------------------------------- -ALPHABETICAL_INDEX = NO -COLS_IN_ALPHA_INDEX = 5 -IGNORE_PREFIX = -#--------------------------------------------------------------------------- -# configuration options related to the HTML output -#--------------------------------------------------------------------------- -GENERATE_HTML = YES -HTML_OUTPUT = html -HTML_FILE_EXTENSION = .html -HTML_HEADER = -HTML_FOOTER = -HTML_STYLESHEET = -HTML_ALIGN_MEMBERS = YES -GENERATE_HTMLHELP = NO -GENERATE_DOCSET = NO -DOCSET_FEEDNAME = "Doxygen generated docs" -DOCSET_BUNDLE_ID = org.doxygen.Project -HTML_DYNAMIC_SECTIONS = NO -CHM_FILE = -HHC_LOCATION = -GENERATE_CHI = NO -BINARY_TOC = NO -TOC_EXPAND = NO -DISABLE_INDEX = NO -ENUM_VALUES_PER_LINE = 4 -GENERATE_TREEVIEW = NO -TREEVIEW_WIDTH = 250 -#--------------------------------------------------------------------------- -# configuration options related to the LaTeX output -#--------------------------------------------------------------------------- -GENERATE_LATEX = NO -LATEX_OUTPUT = latex -LATEX_CMD_NAME = latex -MAKEINDEX_CMD_NAME = makeindex -COMPACT_LATEX = NO -PAPER_TYPE = a4wide -EXTRA_PACKAGES = -LATEX_HEADER = -PDF_HYPERLINKS = NO -USE_PDFLATEX = NO -LATEX_BATCHMODE = NO -LATEX_HIDE_INDICES = NO -#--------------------------------------------------------------------------- -# configuration options related to the RTF output -#--------------------------------------------------------------------------- -GENERATE_RTF = NO -RTF_OUTPUT = rtf -COMPACT_RTF = NO -RTF_HYPERLINKS = NO -RTF_STYLESHEET_FILE = -RTF_EXTENSIONS_FILE = -#--------------------------------------------------------------------------- -# configuration options related to the man page output -#--------------------------------------------------------------------------- -GENERATE_MAN = NO -MAN_OUTPUT = man -MAN_EXTENSION = .3 -MAN_LINKS = NO -#--------------------------------------------------------------------------- -# configuration options related to the XML output -#--------------------------------------------------------------------------- -GENERATE_XML = NO -XML_OUTPUT = xml -XML_SCHEMA = -XML_DTD = -XML_PROGRAMLISTING = YES -#--------------------------------------------------------------------------- -# configuration options for the AutoGen Definitions output -#--------------------------------------------------------------------------- -GENERATE_AUTOGEN_DEF = NO -#--------------------------------------------------------------------------- -# configuration options related to the Perl module output -#--------------------------------------------------------------------------- -GENERATE_PERLMOD = NO -PERLMOD_LATEX = NO -PERLMOD_PRETTY = YES -PERLMOD_MAKEVAR_PREFIX = -#--------------------------------------------------------------------------- -# Configuration options related to the preprocessor -#--------------------------------------------------------------------------- -ENABLE_PREPROCESSING = YES -MACRO_EXPANSION = NO -EXPAND_ONLY_PREDEF = NO -SEARCH_INCLUDES = YES -INCLUDE_PATH = -INCLUDE_FILE_PATTERNS = -PREDEFINED = -EXPAND_AS_DEFINED = -SKIP_FUNCTION_MACROS = YES -#--------------------------------------------------------------------------- -# Configuration::additions related to external references -#--------------------------------------------------------------------------- -TAGFILES = -GENERATE_TAGFILE = -ALLEXTERNALS = NO -EXTERNAL_GROUPS = YES -PERL_PATH = /usr/bin/perl -#--------------------------------------------------------------------------- -# Configuration options related to the dot tool -#--------------------------------------------------------------------------- -CLASS_DIAGRAMS = NO -MSCGEN_PATH = -HIDE_UNDOC_RELATIONS = YES -HAVE_DOT = YES -CLASS_GRAPH = YES -COLLABORATION_GRAPH = YES -GROUP_GRAPHS = YES -UML_LOOK = NO -TEMPLATE_RELATIONS = NO -INCLUDE_GRAPH = YES -INCLUDED_BY_GRAPH = YES -CALL_GRAPH = YES -CALLER_GRAPH = NO -GRAPHICAL_HIERARCHY = YES -DIRECTORY_GRAPH = YES -DOT_IMAGE_FORMAT = png -DOT_PATH = -DOTFILE_DIRS = -DOT_GRAPH_MAX_NODES = 50 -MAX_DOT_GRAPH_DEPTH = 0 -DOT_TRANSPARENT = YES -DOT_MULTI_TARGETS = NO -GENERATE_LEGEND = YES -DOT_CLEANUP = YES -#--------------------------------------------------------------------------- -# Configuration::additions related to the search engine -#--------------------------------------------------------------------------- -SEARCHENGINE = NO diff -Nru fcitx-4.0.1/doc/Makefile.am fcitx-4.1.1/doc/Makefile.am --- fcitx-4.0.1/doc/Makefile.am 2010-12-15 16:30:32.000000000 +0000 +++ fcitx-4.1.1/doc/Makefile.am 1970-01-01 00:00:00.000000000 +0000 @@ -1,6 +0,0 @@ -doc_DATA = \ - cjkvinput.txt wb_fh.htm pinyin.txt \ - Develop_Readme API.txt -EXTRA_DIST = $(doc_DATA) fcitx_trunk.doxyfile - -SUBDIRS = man diff -Nru fcitx-4.0.1/doc/Makefile.in fcitx-4.1.1/doc/Makefile.in --- fcitx-4.0.1/doc/Makefile.in 2010-12-17 04:26:30.000000000 +0000 +++ fcitx-4.1.1/doc/Makefile.in 1970-01-01 00:00:00.000000000 +0000 @@ -1,656 +0,0 @@ -# Makefile.in generated by automake 1.11.1 from Makefile.am. -# @configure_input@ - -# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, -# Inc. -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - -@SET_MAKE@ - -VPATH = @srcdir@ -pkgdatadir = $(datadir)/@PACKAGE@ -pkgincludedir = $(includedir)/@PACKAGE@ -pkglibdir = $(libdir)/@PACKAGE@ -pkglibexecdir = $(libexecdir)/@PACKAGE@ -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = @build@ -host_triplet = @host@ -subdir = doc -DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/configure.in -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -mkinstalldirs = $(install_sh) -d -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -CONFIG_CLEAN_VPATH_FILES = -AM_V_GEN = $(am__v_GEN_$(V)) -am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) -am__v_GEN_0 = @echo " GEN " $@; -AM_V_at = $(am__v_at_$(V)) -am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) -am__v_at_0 = @ -SOURCES = -DIST_SOURCES = -RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ - html-recursive info-recursive install-data-recursive \ - install-dvi-recursive install-exec-recursive \ - install-html-recursive install-info-recursive \ - install-pdf-recursive install-ps-recursive install-recursive \ - installcheck-recursive installdirs-recursive pdf-recursive \ - ps-recursive uninstall-recursive -am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; -am__vpath_adj = case $$p in \ - $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ - *) f=$$p;; \ - esac; -am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; -am__install_max = 40 -am__nobase_strip_setup = \ - srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` -am__nobase_strip = \ - for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" -am__nobase_list = $(am__nobase_strip_setup); \ - for p in $$list; do echo "$$p $$p"; done | \ - sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ - $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ - if (++n[$$2] == $(am__install_max)) \ - { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ - END { for (dir in files) print dir, files[dir] }' -am__base_list = \ - sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ - sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' -am__installdirs = "$(DESTDIR)$(docdir)" -DATA = $(doc_DATA) -RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ - distclean-recursive maintainer-clean-recursive -AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \ - $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \ - distdir -ETAGS = etags -CTAGS = ctags -DIST_SUBDIRS = $(SUBDIRS) -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -am__relativize = \ - dir0=`pwd`; \ - sed_first='s,^\([^/]*\)/.*$$,\1,'; \ - sed_rest='s,^[^/]*/*,,'; \ - sed_last='s,^.*/\([^/]*\)$$,\1,'; \ - sed_butlast='s,/*[^/]*$$,,'; \ - while test -n "$$dir1"; do \ - first=`echo "$$dir1" | sed -e "$$sed_first"`; \ - if test "$$first" != "."; then \ - if test "$$first" = ".."; then \ - dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ - dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ - else \ - first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ - if test "$$first2" = "$$first"; then \ - dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ - else \ - dir2="../$$dir2"; \ - fi; \ - dir0="$$dir0"/"$$first"; \ - fi; \ - fi; \ - dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ - done; \ - reldir="$$dir2" -ACLOCAL = @ACLOCAL@ -ALL_LINGUAS = @ALL_LINGUAS@ -AMTAR = @AMTAR@ -AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ -AR = @AR@ -AUTOCONF = @AUTOCONF@ -AUTOHEADER = @AUTOHEADER@ -AUTOMAKE = @AUTOMAKE@ -AWK = @AWK@ -CAIRO_XLIB_CFLAGS = @CAIRO_XLIB_CFLAGS@ -CAIRO_XLIB_LIBS = @CAIRO_XLIB_LIBS@ -CC = @CC@ -CCDEPMODE = @CCDEPMODE@ -CFLAGS = @CFLAGS@ -CPP = @CPP@ -CPPFLAGS = @CPPFLAGS@ -CYGPATH_W = @CYGPATH_W@ -DATADIRNAME = @DATADIRNAME@ -DBUS_CFLAGS = @DBUS_CFLAGS@ -DBUS_LIBS = @DBUS_LIBS@ -DEFS = @DEFS@ -DEPDIR = @DEPDIR@ -DLLTOOL = @DLLTOOL@ -DSYMUTIL = @DSYMUTIL@ -DUMPBIN = @DUMPBIN@ -ECHO_C = @ECHO_C@ -ECHO_N = @ECHO_N@ -ECHO_T = @ECHO_T@ -EGREP = @EGREP@ -EXEEXT = @EXEEXT@ -FGREP = @FGREP@ -FONTCONFIG_CFLAGS = @FONTCONFIG_CFLAGS@ -FONTCONFIG_LIBS = @FONTCONFIG_LIBS@ -GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ -GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ -GMSGFMT = @GMSGFMT@ -GMSGFMT_015 = @GMSGFMT_015@ -GREP = @GREP@ -HOST_LIBS = @HOST_LIBS@ -INCINTL = @INCINTL@ -INSTALL = @INSTALL@ -INSTALL_DATA = @INSTALL_DATA@ -INSTALL_PROGRAM = @INSTALL_PROGRAM@ -INSTALL_SCRIPT = @INSTALL_SCRIPT@ -INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ -INTLLIBS = @INTLLIBS@ -INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ -INTLTOOL_MERGE = @INTLTOOL_MERGE@ -INTLTOOL_PERL = @INTLTOOL_PERL@ -INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ -INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ -LD = @LD@ -LDFLAGS = @LDFLAGS@ -LIBICONV = @LIBICONV@ -LIBINTL = @LIBINTL@ -LIBOBJS = @LIBOBJS@ -LIBS = @LIBS@ -LIBTOOL = @LIBTOOL@ -LIPO = @LIPO@ -LN_S = @LN_S@ -LTLIBICONV = @LTLIBICONV@ -LTLIBINTL = @LTLIBINTL@ -LTLIBOBJS = @LTLIBOBJS@ -MAKEINFO = @MAKEINFO@ -MANIFEST_TOOL = @MANIFEST_TOOL@ -MD5SUM = @MD5SUM@ -MKDIR_P = @MKDIR_P@ -MSGFMT = @MSGFMT@ -MSGFMT_015 = @MSGFMT_015@ -MSGMERGE = @MSGMERGE@ -NM = @NM@ -NMEDIT = @NMEDIT@ -OBJDUMP = @OBJDUMP@ -OBJEXT = @OBJEXT@ -OTOOL = @OTOOL@ -OTOOL64 = @OTOOL64@ -PACKAGE = @PACKAGE@ -PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ -PACKAGE_NAME = @PACKAGE_NAME@ -PACKAGE_STRING = @PACKAGE_STRING@ -PACKAGE_TARNAME = @PACKAGE_TARNAME@ -PACKAGE_URL = @PACKAGE_URL@ -PACKAGE_VERSION = @PACKAGE_VERSION@ -PANGOCAIRO_CFLAGS = @PANGOCAIRO_CFLAGS@ -PANGOCAIRO_LIBS = @PANGOCAIRO_LIBS@ -PATH_SEPARATOR = @PATH_SEPARATOR@ -PKG_CONFIG = @PKG_CONFIG@ -PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ -PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ -POSUB = @POSUB@ -RANLIB = @RANLIB@ -SED = @SED@ -SET_MAKE = @SET_MAKE@ -SHELL = @SHELL@ -STRIP = @STRIP@ -TAR = @TAR@ -USE_NLS = @USE_NLS@ -VERSION = @VERSION@ -WGET = @WGET@ -XGETTEXT = @XGETTEXT@ -XGETTEXT_015 = @XGETTEXT_015@ -XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ -XMKMF = @XMKMF@ -XRENDER_CFLAGS = @XRENDER_CFLAGS@ -XRENDER_LIBS = @XRENDER_LIBS@ -X_CFLAGS = @X_CFLAGS@ -X_LIBS = @X_LIBS@ -abs_builddir = @abs_builddir@ -abs_srcdir = @abs_srcdir@ -abs_top_builddir = @abs_top_builddir@ -abs_top_srcdir = @abs_top_srcdir@ -ac_ct_AR = @ac_ct_AR@ -ac_ct_CC = @ac_ct_CC@ -ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ -am__include = @am__include@ -am__leading_dot = @am__leading_dot@ -am__quote = @am__quote@ -am__tar = @am__tar@ -am__untar = @am__untar@ -bindir = @bindir@ -build = @build@ -build_alias = @build_alias@ -build_cpu = @build_cpu@ -build_os = @build_os@ -build_vendor = @build_vendor@ -builddir = @builddir@ -datadir = @datadir@ -datarootdir = @datarootdir@ -docdir = @docdir@ -dvidir = @dvidir@ -exec_prefix = @exec_prefix@ -host = @host@ -host_alias = @host_alias@ -host_cpu = @host_cpu@ -host_os = @host_os@ -host_vendor = @host_vendor@ -htmldir = @htmldir@ -includedir = @includedir@ -infodir = @infodir@ -install_sh = @install_sh@ -libdir = @libdir@ -libexecdir = @libexecdir@ -localedir = @localedir@ -localstatedir = @localstatedir@ -mandir = @mandir@ -mkdir_p = @mkdir_p@ -oldincludedir = @oldincludedir@ -pdfdir = @pdfdir@ -prefix = @prefix@ -program_transform_name = @program_transform_name@ -psdir = @psdir@ -sbindir = @sbindir@ -sharedstatedir = @sharedstatedir@ -srcdir = @srcdir@ -sysconfdir = @sysconfdir@ -target_alias = @target_alias@ -top_build_prefix = @top_build_prefix@ -top_builddir = @top_builddir@ -top_srcdir = @top_srcdir@ -doc_DATA = \ - cjkvinput.txt wb_fh.htm pinyin.txt \ - Develop_Readme API.txt - -EXTRA_DIST = $(doc_DATA) fcitx_trunk.doxyfile -SUBDIRS = man -all: all-recursive - -.SUFFIXES: -$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ - && { if test -f $@; then exit 0; else break; fi; }; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign doc/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign doc/Makefile -.PRECIOUS: Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(am__aclocal_m4_deps): - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs -install-docDATA: $(doc_DATA) - @$(NORMAL_INSTALL) - test -z "$(docdir)" || $(MKDIR_P) "$(DESTDIR)$(docdir)" - @list='$(doc_DATA)'; test -n "$(docdir)" || list=; \ - for p in $$list; do \ - if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ - echo "$$d$$p"; \ - done | $(am__base_list) | \ - while read files; do \ - echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(docdir)'"; \ - $(INSTALL_DATA) $$files "$(DESTDIR)$(docdir)" || exit $$?; \ - done - -uninstall-docDATA: - @$(NORMAL_UNINSTALL) - @list='$(doc_DATA)'; test -n "$(docdir)" || list=; \ - files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ - test -n "$$files" || exit 0; \ - echo " ( cd '$(DESTDIR)$(docdir)' && rm -f" $$files ")"; \ - cd "$(DESTDIR)$(docdir)" && rm -f $$files - -# This directory's subdirectories are mostly independent; you can cd -# into them and run `make' without going through this Makefile. -# To change the values of `make' variables: instead of editing Makefiles, -# (1) if the variable is set in `config.status', edit `config.status' -# (which will cause the Makefiles to be regenerated when you run `make'); -# (2) otherwise, pass the desired values on the `make' command line. -$(RECURSIVE_TARGETS): - @fail= failcom='exit 1'; \ - for f in x $$MAKEFLAGS; do \ - case $$f in \ - *=* | --[!k]*);; \ - *k*) failcom='fail=yes';; \ - esac; \ - done; \ - dot_seen=no; \ - target=`echo $@ | sed s/-recursive//`; \ - list='$(SUBDIRS)'; for subdir in $$list; do \ - echo "Making $$target in $$subdir"; \ - if test "$$subdir" = "."; then \ - dot_seen=yes; \ - local_target="$$target-am"; \ - else \ - local_target="$$target"; \ - fi; \ - ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ - || eval $$failcom; \ - done; \ - if test "$$dot_seen" = "no"; then \ - $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ - fi; test -z "$$fail" - -$(RECURSIVE_CLEAN_TARGETS): - @fail= failcom='exit 1'; \ - for f in x $$MAKEFLAGS; do \ - case $$f in \ - *=* | --[!k]*);; \ - *k*) failcom='fail=yes';; \ - esac; \ - done; \ - dot_seen=no; \ - case "$@" in \ - distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ - *) list='$(SUBDIRS)' ;; \ - esac; \ - rev=''; for subdir in $$list; do \ - if test "$$subdir" = "."; then :; else \ - rev="$$subdir $$rev"; \ - fi; \ - done; \ - rev="$$rev ."; \ - target=`echo $@ | sed s/-recursive//`; \ - for subdir in $$rev; do \ - echo "Making $$target in $$subdir"; \ - if test "$$subdir" = "."; then \ - local_target="$$target-am"; \ - else \ - local_target="$$target"; \ - fi; \ - ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ - || eval $$failcom; \ - done && test -z "$$fail" -tags-recursive: - list='$(SUBDIRS)'; for subdir in $$list; do \ - test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ - done -ctags-recursive: - list='$(SUBDIRS)'; for subdir in $$list; do \ - test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ - done - -ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - mkid -fID $$unique -tags: TAGS - -TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - set x; \ - here=`pwd`; \ - if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ - include_option=--etags-include; \ - empty_fix=.; \ - else \ - include_option=--include; \ - empty_fix=; \ - fi; \ - list='$(SUBDIRS)'; for subdir in $$list; do \ - if test "$$subdir" = .; then :; else \ - test ! -f $$subdir/TAGS || \ - set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ - fi; \ - done; \ - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: CTAGS -CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d "$(distdir)/$$file"; then \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ - else \ - test -f "$(distdir)/$$file" \ - || cp -p $$d/$$file "$(distdir)/$$file" \ - || exit 1; \ - fi; \ - done - @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ - if test "$$subdir" = .; then :; else \ - test -d "$(distdir)/$$subdir" \ - || $(MKDIR_P) "$(distdir)/$$subdir" \ - || exit 1; \ - fi; \ - done - @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ - if test "$$subdir" = .; then :; else \ - dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ - $(am__relativize); \ - new_distdir=$$reldir; \ - dir1=$$subdir; dir2="$(top_distdir)"; \ - $(am__relativize); \ - new_top_distdir=$$reldir; \ - echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ - echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ - ($(am__cd) $$subdir && \ - $(MAKE) $(AM_MAKEFLAGS) \ - top_distdir="$$new_top_distdir" \ - distdir="$$new_distdir" \ - am__remove_distdir=: \ - am__skip_length_check=: \ - am__skip_mode_fix=: \ - distdir) \ - || exit 1; \ - fi; \ - done -check-am: all-am -check: check-recursive -all-am: Makefile $(DATA) -installdirs: installdirs-recursive -installdirs-am: - for dir in "$(DESTDIR)$(docdir)"; do \ - test -z "$$dir" || $(MKDIR_P) "$$dir"; \ - done -install: install-recursive -install-exec: install-exec-recursive -install-data: install-data-recursive -uninstall: uninstall-recursive - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-recursive -install-strip: - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - `test -z '$(STRIP)' || \ - echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install -mostlyclean-generic: - -clean-generic: - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-recursive - -clean-am: clean-generic clean-libtool mostlyclean-am - -distclean: distclean-recursive - -rm -f Makefile -distclean-am: clean-am distclean-generic distclean-tags - -dvi: dvi-recursive - -dvi-am: - -html: html-recursive - -html-am: - -info: info-recursive - -info-am: - -install-data-am: install-docDATA - -install-dvi: install-dvi-recursive - -install-dvi-am: - -install-exec-am: - -install-html: install-html-recursive - -install-html-am: - -install-info: install-info-recursive - -install-info-am: - -install-man: - -install-pdf: install-pdf-recursive - -install-pdf-am: - -install-ps: install-ps-recursive - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-recursive - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-recursive - -mostlyclean-am: mostlyclean-generic mostlyclean-libtool - -pdf: pdf-recursive - -pdf-am: - -ps: ps-recursive - -ps-am: - -uninstall-am: uninstall-docDATA - -.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) ctags-recursive \ - install-am install-strip tags-recursive - -.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \ - all all-am check check-am clean clean-generic clean-libtool \ - ctags ctags-recursive distclean distclean-generic \ - distclean-libtool distclean-tags distdir dvi dvi-am html \ - html-am info info-am install install-am install-data \ - install-data-am install-docDATA install-dvi install-dvi-am \ - install-exec install-exec-am install-html install-html-am \ - install-info install-info-am install-man install-pdf \ - install-pdf-am install-ps install-ps-am install-strip \ - installcheck installcheck-am installdirs installdirs-am \ - maintainer-clean maintainer-clean-generic mostlyclean \ - mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ - tags tags-recursive uninstall uninstall-am uninstall-docDATA - - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff -Nru fcitx-4.0.1/doc/man/CMakeLists.txt fcitx-4.1.1/doc/man/CMakeLists.txt --- fcitx-4.0.1/doc/man/CMakeLists.txt 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/doc/man/CMakeLists.txt 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,5 @@ +set(FCITX_MANS +fcitx.1 createPYMB.1 readPYBase.1 readPYMB.1 mb2org.1 scel2org.1 mb2txt.1 txt2mb.1 fcitx-remote.1 +) + +install(FILES ${FCITX_MANS} DESTINATION share/man/man1) \ No newline at end of file diff -Nru fcitx-4.0.1/doc/man/createPYMB.1 fcitx-4.1.1/doc/man/createPYMB.1 --- fcitx-4.0.1/doc/man/createPYMB.1 2010-12-15 17:47:44.000000000 +0000 +++ fcitx-4.1.1/doc/man/createPYMB.1 2011-09-08 16:00:05.000000000 +0000 @@ -27,10 +27,10 @@ display help and exit .TP \fBPinyin File\fR -Pinyin File is a file with pinyin and one character per line, seperated with space. One available file is in the source of fcitx, named \fIgbkpy.org\fR. +Pinyin File is a file with pinyin and one character per line, separated with space. One available file is in the source of fcitx, named \fIgbkpy.org\fR. .TP \fBPhrase File\fR -Phrase File is a file with full pinyin seperated with ' and the corresponding phrase. The default phrase file of fcitx can be downloaded at http://fcitx.googlecode.com/files/pinyin.tar.gz. +Phrase File is a file with full pinyin separated with ' and the corresponding phrase. The default phrase file of fcitx can be downloaded at http://fcitx.googlecode.com/files/pinyin.tar.gz. .TP \fBPinyin MB File\fR Pinyin MB File is the binary format of Pinyin File. diff -Nru fcitx-4.0.1/doc/man/Makefile.am fcitx-4.1.1/doc/man/Makefile.am --- fcitx-4.0.1/doc/man/Makefile.am 2010-12-15 17:09:42.000000000 +0000 +++ fcitx-4.1.1/doc/man/Makefile.am 1970-01-01 00:00:00.000000000 +0000 @@ -1,2 +0,0 @@ -man1_MANS = fcitx.1 createPYMB.1 readPYBase.1 readPYMB.1 mb2org.1 scel2org.1 mb2txt.1 txt2mb.1 fcitx-remote.1 -EXTRA_DIST = $(man1_MANS) diff -Nru fcitx-4.0.1/doc/man/Makefile.in fcitx-4.1.1/doc/man/Makefile.in --- fcitx-4.0.1/doc/man/Makefile.in 2010-12-17 04:26:30.000000000 +0000 +++ fcitx-4.1.1/doc/man/Makefile.in 1970-01-01 00:00:00.000000000 +0000 @@ -1,481 +0,0 @@ -# Makefile.in generated by automake 1.11.1 from Makefile.am. -# @configure_input@ - -# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, -# Inc. -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - -@SET_MAKE@ -VPATH = @srcdir@ -pkgdatadir = $(datadir)/@PACKAGE@ -pkgincludedir = $(includedir)/@PACKAGE@ -pkglibdir = $(libdir)/@PACKAGE@ -pkglibexecdir = $(libexecdir)/@PACKAGE@ -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = @build@ -host_triplet = @host@ -subdir = doc/man -DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/configure.in -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -mkinstalldirs = $(install_sh) -d -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -CONFIG_CLEAN_VPATH_FILES = -AM_V_GEN = $(am__v_GEN_$(V)) -am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) -am__v_GEN_0 = @echo " GEN " $@; -AM_V_at = $(am__v_at_$(V)) -am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) -am__v_at_0 = @ -SOURCES = -DIST_SOURCES = -am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; -am__vpath_adj = case $$p in \ - $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ - *) f=$$p;; \ - esac; -am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; -am__install_max = 40 -am__nobase_strip_setup = \ - srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` -am__nobase_strip = \ - for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" -am__nobase_list = $(am__nobase_strip_setup); \ - for p in $$list; do echo "$$p $$p"; done | \ - sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ - $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ - if (++n[$$2] == $(am__install_max)) \ - { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ - END { for (dir in files) print dir, files[dir] }' -am__base_list = \ - sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ - sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' -man1dir = $(mandir)/man1 -am__installdirs = "$(DESTDIR)$(man1dir)" -NROFF = nroff -MANS = $(man1_MANS) -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -ACLOCAL = @ACLOCAL@ -ALL_LINGUAS = @ALL_LINGUAS@ -AMTAR = @AMTAR@ -AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ -AR = @AR@ -AUTOCONF = @AUTOCONF@ -AUTOHEADER = @AUTOHEADER@ -AUTOMAKE = @AUTOMAKE@ -AWK = @AWK@ -CAIRO_XLIB_CFLAGS = @CAIRO_XLIB_CFLAGS@ -CAIRO_XLIB_LIBS = @CAIRO_XLIB_LIBS@ -CC = @CC@ -CCDEPMODE = @CCDEPMODE@ -CFLAGS = @CFLAGS@ -CPP = @CPP@ -CPPFLAGS = @CPPFLAGS@ -CYGPATH_W = @CYGPATH_W@ -DATADIRNAME = @DATADIRNAME@ -DBUS_CFLAGS = @DBUS_CFLAGS@ -DBUS_LIBS = @DBUS_LIBS@ -DEFS = @DEFS@ -DEPDIR = @DEPDIR@ -DLLTOOL = @DLLTOOL@ -DSYMUTIL = @DSYMUTIL@ -DUMPBIN = @DUMPBIN@ -ECHO_C = @ECHO_C@ -ECHO_N = @ECHO_N@ -ECHO_T = @ECHO_T@ -EGREP = @EGREP@ -EXEEXT = @EXEEXT@ -FGREP = @FGREP@ -FONTCONFIG_CFLAGS = @FONTCONFIG_CFLAGS@ -FONTCONFIG_LIBS = @FONTCONFIG_LIBS@ -GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ -GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ -GMSGFMT = @GMSGFMT@ -GMSGFMT_015 = @GMSGFMT_015@ -GREP = @GREP@ -HOST_LIBS = @HOST_LIBS@ -INCINTL = @INCINTL@ -INSTALL = @INSTALL@ -INSTALL_DATA = @INSTALL_DATA@ -INSTALL_PROGRAM = @INSTALL_PROGRAM@ -INSTALL_SCRIPT = @INSTALL_SCRIPT@ -INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ -INTLLIBS = @INTLLIBS@ -INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ -INTLTOOL_MERGE = @INTLTOOL_MERGE@ -INTLTOOL_PERL = @INTLTOOL_PERL@ -INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ -INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ -LD = @LD@ -LDFLAGS = @LDFLAGS@ -LIBICONV = @LIBICONV@ -LIBINTL = @LIBINTL@ -LIBOBJS = @LIBOBJS@ -LIBS = @LIBS@ -LIBTOOL = @LIBTOOL@ -LIPO = @LIPO@ -LN_S = @LN_S@ -LTLIBICONV = @LTLIBICONV@ -LTLIBINTL = @LTLIBINTL@ -LTLIBOBJS = @LTLIBOBJS@ -MAKEINFO = @MAKEINFO@ -MANIFEST_TOOL = @MANIFEST_TOOL@ -MD5SUM = @MD5SUM@ -MKDIR_P = @MKDIR_P@ -MSGFMT = @MSGFMT@ -MSGFMT_015 = @MSGFMT_015@ -MSGMERGE = @MSGMERGE@ -NM = @NM@ -NMEDIT = @NMEDIT@ -OBJDUMP = @OBJDUMP@ -OBJEXT = @OBJEXT@ -OTOOL = @OTOOL@ -OTOOL64 = @OTOOL64@ -PACKAGE = @PACKAGE@ -PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ -PACKAGE_NAME = @PACKAGE_NAME@ -PACKAGE_STRING = @PACKAGE_STRING@ -PACKAGE_TARNAME = @PACKAGE_TARNAME@ -PACKAGE_URL = @PACKAGE_URL@ -PACKAGE_VERSION = @PACKAGE_VERSION@ -PANGOCAIRO_CFLAGS = @PANGOCAIRO_CFLAGS@ -PANGOCAIRO_LIBS = @PANGOCAIRO_LIBS@ -PATH_SEPARATOR = @PATH_SEPARATOR@ -PKG_CONFIG = @PKG_CONFIG@ -PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ -PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ -POSUB = @POSUB@ -RANLIB = @RANLIB@ -SED = @SED@ -SET_MAKE = @SET_MAKE@ -SHELL = @SHELL@ -STRIP = @STRIP@ -TAR = @TAR@ -USE_NLS = @USE_NLS@ -VERSION = @VERSION@ -WGET = @WGET@ -XGETTEXT = @XGETTEXT@ -XGETTEXT_015 = @XGETTEXT_015@ -XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ -XMKMF = @XMKMF@ -XRENDER_CFLAGS = @XRENDER_CFLAGS@ -XRENDER_LIBS = @XRENDER_LIBS@ -X_CFLAGS = @X_CFLAGS@ -X_LIBS = @X_LIBS@ -abs_builddir = @abs_builddir@ -abs_srcdir = @abs_srcdir@ -abs_top_builddir = @abs_top_builddir@ -abs_top_srcdir = @abs_top_srcdir@ -ac_ct_AR = @ac_ct_AR@ -ac_ct_CC = @ac_ct_CC@ -ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ -am__include = @am__include@ -am__leading_dot = @am__leading_dot@ -am__quote = @am__quote@ -am__tar = @am__tar@ -am__untar = @am__untar@ -bindir = @bindir@ -build = @build@ -build_alias = @build_alias@ -build_cpu = @build_cpu@ -build_os = @build_os@ -build_vendor = @build_vendor@ -builddir = @builddir@ -datadir = @datadir@ -datarootdir = @datarootdir@ -docdir = @docdir@ -dvidir = @dvidir@ -exec_prefix = @exec_prefix@ -host = @host@ -host_alias = @host_alias@ -host_cpu = @host_cpu@ -host_os = @host_os@ -host_vendor = @host_vendor@ -htmldir = @htmldir@ -includedir = @includedir@ -infodir = @infodir@ -install_sh = @install_sh@ -libdir = @libdir@ -libexecdir = @libexecdir@ -localedir = @localedir@ -localstatedir = @localstatedir@ -mandir = @mandir@ -mkdir_p = @mkdir_p@ -oldincludedir = @oldincludedir@ -pdfdir = @pdfdir@ -prefix = @prefix@ -program_transform_name = @program_transform_name@ -psdir = @psdir@ -sbindir = @sbindir@ -sharedstatedir = @sharedstatedir@ -srcdir = @srcdir@ -sysconfdir = @sysconfdir@ -target_alias = @target_alias@ -top_build_prefix = @top_build_prefix@ -top_builddir = @top_builddir@ -top_srcdir = @top_srcdir@ -man1_MANS = fcitx.1 createPYMB.1 readPYBase.1 readPYMB.1 mb2org.1 scel2org.1 mb2txt.1 txt2mb.1 fcitx-remote.1 -EXTRA_DIST = $(man1_MANS) -all: all-am - -.SUFFIXES: -$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ - && { if test -f $@; then exit 0; else break; fi; }; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign doc/man/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign doc/man/Makefile -.PRECIOUS: Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(am__aclocal_m4_deps): - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs -install-man1: $(man1_MANS) - @$(NORMAL_INSTALL) - test -z "$(man1dir)" || $(MKDIR_P) "$(DESTDIR)$(man1dir)" - @list='$(man1_MANS)'; test -n "$(man1dir)" || exit 0; \ - { for i in $$list; do echo "$$i"; done; \ - } | while read p; do \ - if test -f $$p; then d=; else d="$(srcdir)/"; fi; \ - echo "$$d$$p"; echo "$$p"; \ - done | \ - sed -e 'n;s,.*/,,;p;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \ - -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,' | \ - sed 'N;N;s,\n, ,g' | { \ - list=; while read file base inst; do \ - if test "$$base" = "$$inst"; then list="$$list $$file"; else \ - echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man1dir)/$$inst'"; \ - $(INSTALL_DATA) "$$file" "$(DESTDIR)$(man1dir)/$$inst" || exit $$?; \ - fi; \ - done; \ - for i in $$list; do echo "$$i"; done | $(am__base_list) | \ - while read files; do \ - test -z "$$files" || { \ - echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(man1dir)'"; \ - $(INSTALL_DATA) $$files "$(DESTDIR)$(man1dir)" || exit $$?; }; \ - done; } - -uninstall-man1: - @$(NORMAL_UNINSTALL) - @list='$(man1_MANS)'; test -n "$(man1dir)" || exit 0; \ - files=`{ for i in $$list; do echo "$$i"; done; \ - } | sed -e 's,.*/,,;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \ - -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,'`; \ - test -z "$$files" || { \ - echo " ( cd '$(DESTDIR)$(man1dir)' && rm -f" $$files ")"; \ - cd "$(DESTDIR)$(man1dir)" && rm -f $$files; } -tags: TAGS -TAGS: - -ctags: CTAGS -CTAGS: - - -distdir: $(DISTFILES) - @list='$(MANS)'; if test -n "$$list"; then \ - list=`for p in $$list; do \ - if test -f $$p; then d=; else d="$(srcdir)/"; fi; \ - if test -f "$$d$$p"; then echo "$$d$$p"; else :; fi; done`; \ - if test -n "$$list" && \ - grep 'ab help2man is required to generate this page' $$list >/dev/null; then \ - echo "error: found man pages containing the \`missing help2man' replacement text:" >&2; \ - grep -l 'ab help2man is required to generate this page' $$list | sed 's/^/ /' >&2; \ - echo " to fix them, install help2man, remove and regenerate the man pages;" >&2; \ - echo " typically \`make maintainer-clean' will remove them" >&2; \ - exit 1; \ - else :; fi; \ - else :; fi - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d "$(distdir)/$$file"; then \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ - else \ - test -f "$(distdir)/$$file" \ - || cp -p $$d/$$file "$(distdir)/$$file" \ - || exit 1; \ - fi; \ - done -check-am: all-am -check: check-am -all-am: Makefile $(MANS) -installdirs: - for dir in "$(DESTDIR)$(man1dir)"; do \ - test -z "$$dir" || $(MKDIR_P) "$$dir"; \ - done -install: install-am -install-exec: install-exec-am -install-data: install-data-am -uninstall: uninstall-am - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-am -install-strip: - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - `test -z '$(STRIP)' || \ - echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install -mostlyclean-generic: - -clean-generic: - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-am - -clean-am: clean-generic clean-libtool mostlyclean-am - -distclean: distclean-am - -rm -f Makefile -distclean-am: clean-am distclean-generic - -dvi: dvi-am - -dvi-am: - -html: html-am - -html-am: - -info: info-am - -info-am: - -install-data-am: install-man - -install-dvi: install-dvi-am - -install-dvi-am: - -install-exec-am: - -install-html: install-html-am - -install-html-am: - -install-info: install-info-am - -install-info-am: - -install-man: install-man1 - -install-pdf: install-pdf-am - -install-pdf-am: - -install-ps: install-ps-am - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-am - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-am - -mostlyclean-am: mostlyclean-generic mostlyclean-libtool - -pdf: pdf-am - -pdf-am: - -ps: ps-am - -ps-am: - -uninstall-am: uninstall-man - -uninstall-man: uninstall-man1 - -.MAKE: install-am install-strip - -.PHONY: all all-am check check-am clean clean-generic clean-libtool \ - distclean distclean-generic distclean-libtool distdir dvi \ - dvi-am html html-am info info-am install install-am \ - install-data install-data-am install-dvi install-dvi-am \ - install-exec install-exec-am install-html install-html-am \ - install-info install-info-am install-man install-man1 \ - install-pdf install-pdf-am install-ps install-ps-am \ - install-strip installcheck installcheck-am installdirs \ - maintainer-clean maintainer-clean-generic mostlyclean \ - mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ - uninstall uninstall-am uninstall-man uninstall-man1 - - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff -Nru fcitx-4.0.1/Doxyfile.in fcitx-4.1.1/Doxyfile.in --- fcitx-4.0.1/Doxyfile.in 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/Doxyfile.in 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,1510 @@ +# Doxyfile 1.5.8 + +# This file describes the settings to be used by the documentation system +# doxygen (www.doxygen.org) for a project +# +# All text after a hash (#) is considered a comment and will be ignored +# The format is: +# TAG = value [value, ...] +# For lists items can also be appended using: +# TAG += value [value, ...] +# Values that contain spaces should be placed between quotes (" ") + +#--------------------------------------------------------------------------- +# Project related configuration options +#--------------------------------------------------------------------------- + +# This tag specifies the encoding used for all characters in the config file +# that follow. The default is UTF-8 which is also the encoding used for all +# text before the first occurrence of this tag. Doxygen uses libiconv (or the +# iconv built into libc) for the transcoding. See +# http://www.gnu.org/software/libiconv for the list of possible encodings. + +DOXYFILE_ENCODING = UTF-8 + +# The PROJECT_NAME tag is a single word (or a sequence of words surrounded +# by quotes) that should identify the project. + +PROJECT_NAME = "@PROJECT_NAME@" + +# The PROJECT_NUMBER tag can be used to enter a project or revision number. +# This could be handy for archiving the generated documentation or +# if some version control system is used. + +PROJECT_NUMBER = "@version@" + +# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) +# base path where the generated documentation will be put. +# If a relative path is entered, it will be relative to the location +# where doxygen was started. If left blank the current directory will be used. + +OUTPUT_DIRECTORY = "@DOXYFILE_OUTPUT_DIR@" + +# If the CREATE_SUBDIRS tag is set to YES, then doxygen will create +# 4096 sub-directories (in 2 levels) under the output directory of each output +# format and will distribute the generated files over these directories. +# Enabling this option can be useful when feeding doxygen a huge amount of +# source files, where putting all generated files in the same directory would +# otherwise cause performance problems for the file system. + +CREATE_SUBDIRS = NO + +# The OUTPUT_LANGUAGE tag is used to specify the language in which all +# documentation generated by doxygen is written. Doxygen will use this +# information to generate all constant output in the proper language. +# The default language is English, other supported languages are: +# Afrikaans, Arabic, Brazilian, Catalan, Chinese, Chinese-Traditional, +# Croatian, Czech, Danish, Dutch, Farsi, Finnish, French, German, Greek, +# Hungarian, Italian, Japanese, Japanese-en (Japanese with English messages), +# Korean, Korean-en, Lithuanian, Norwegian, Macedonian, Persian, Polish, +# Portuguese, Romanian, Russian, Serbian, Serbian-Cyrilic, Slovak, Slovene, +# Spanish, Swedish, and Ukrainian. + +OUTPUT_LANGUAGE = English + +# If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will +# include brief member descriptions after the members that are listed in +# the file and class documentation (similar to JavaDoc). +# Set to NO to disable this. + +BRIEF_MEMBER_DESC = YES + +# If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend +# the brief description of a member or function before the detailed description. +# Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the +# brief descriptions will be completely suppressed. + +REPEAT_BRIEF = YES + +# This tag implements a quasi-intelligent brief description abbreviator +# that is used to form the text in various listings. Each string +# in this list, if found as the leading text of the brief description, will be +# stripped from the text and the result after processing the whole list, is +# used as the annotated text. Otherwise, the brief description is used as-is. +# If left blank, the following values are used ("$name" is automatically +# replaced with the name of the entity): "The $name class" "The $name widget" +# "The $name file" "is" "provides" "specifies" "contains" +# "represents" "a" "an" "the" + +ABBREVIATE_BRIEF = + +# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then +# Doxygen will generate a detailed section even if there is only a brief +# description. + +ALWAYS_DETAILED_SEC = NO + +# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all +# inherited members of a class in the documentation of that class as if those +# members were ordinary class members. Constructors, destructors and assignment +# operators of the base classes will not be shown. + +INLINE_INHERITED_MEMB = NO + +# If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full +# path before files name in the file list and in the header files. If set +# to NO the shortest path that makes the file name unique will be used. + +FULL_PATH_NAMES = NO + +# If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag +# can be used to strip a user-defined part of the path. Stripping is +# only done if one of the specified strings matches the left-hand part of +# the path. The tag can be used to show relative paths in the file list. +# If left blank the directory from which doxygen is run is used as the +# path to strip. + +STRIP_FROM_PATH = + +# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of +# the path mentioned in the documentation of a class, which tells +# the reader which header file to include in order to use a class. +# If left blank only the name of the header file containing the class +# definition is used. Otherwise one should specify the include paths that +# are normally passed to the compiler using the -I flag. + +STRIP_FROM_INC_PATH = + +# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter +# (but less readable) file names. This can be useful is your file systems +# doesn't support long names like on DOS, Mac, or CD-ROM. + +SHORT_NAMES = NO + +# If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen +# will interpret the first line (until the first dot) of a JavaDoc-style +# comment as the brief description. If set to NO, the JavaDoc +# comments will behave just like regular Qt-style comments +# (thus requiring an explicit @brief command for a brief description.) + +JAVADOC_AUTOBRIEF = NO + +# If the QT_AUTOBRIEF tag is set to YES then Doxygen will +# interpret the first line (until the first dot) of a Qt-style +# comment as the brief description. If set to NO, the comments +# will behave just like regular Qt-style comments (thus requiring +# an explicit \brief command for a brief description.) + +QT_AUTOBRIEF = NO + +# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen +# treat a multi-line C++ special comment block (i.e. a block of //! or /// +# comments) as a brief description. This used to be the default behaviour. +# The new default is to treat a multi-line C++ comment block as a detailed +# description. Set this tag to YES if you prefer the old behaviour instead. + +MULTILINE_CPP_IS_BRIEF = NO + +# If the INHERIT_DOCS tag is set to YES (the default) then an undocumented +# member inherits the documentation from any documented member that it +# re-implements. + +INHERIT_DOCS = YES + +# If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce +# a new page for each member. If set to NO, the documentation of a member will +# be part of the file/class/namespace that contains it. + +SEPARATE_MEMBER_PAGES = NO + +# The TAB_SIZE tag can be used to set the number of spaces in a tab. +# Doxygen uses this value to replace tabs by spaces in code fragments. + +TAB_SIZE = 8 + +# This tag can be used to specify a number of aliases that acts +# as commands in the documentation. An alias has the form "name=value". +# For example adding "sideeffect=\par Side Effects:\n" will allow you to +# put the command \sideeffect (or @sideeffect) in the documentation, which +# will result in a user-defined paragraph with heading "Side Effects:". +# You can put \n's in the value part of an alias to insert newlines. + +ALIASES = + +# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C +# sources only. Doxygen will then generate output that is more tailored for C. +# For instance, some of the names that are used will be different. The list +# of all members will be omitted, etc. + +OPTIMIZE_OUTPUT_FOR_C = NO + +# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java +# sources only. Doxygen will then generate output that is more tailored for +# Java. For instance, namespaces will be presented as packages, qualified +# scopes will look different, etc. + +OPTIMIZE_OUTPUT_JAVA = NO + +# Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran +# sources only. Doxygen will then generate output that is more tailored for +# Fortran. + +OPTIMIZE_FOR_FORTRAN = NO + +# Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL +# sources. Doxygen will then generate output that is tailored for +# VHDL. + +OPTIMIZE_OUTPUT_VHDL = NO + +# Doxygen selects the parser to use depending on the extension of the files it parses. +# With this tag you can assign which parser to use for a given extension. +# Doxygen has a built-in mapping, but you can override or extend it using this tag. +# The format is ext=language, where ext is a file extension, and language is one of +# the parsers supported by doxygen: IDL, Java, Javascript, C#, C, C++, D, PHP, +# Objective-C, Python, Fortran, VHDL, C, C++. For instance to make doxygen treat +# .inc files as Fortran files (default is PHP), and .f files as C (default is Fortran), +# use: inc=Fortran f=C + +EXTENSION_MAPPING = + +# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want +# to include (a tag file for) the STL sources as input, then you should +# set this tag to YES in order to let doxygen match functions declarations and +# definitions whose arguments contain STL classes (e.g. func(std::string); v.s. +# func(std::string) {}). This also make the inheritance and collaboration +# diagrams that involve STL classes more complete and accurate. + +BUILTIN_STL_SUPPORT = NO + +# If you use Microsoft's C++/CLI language, you should set this option to YES to +# enable parsing support. + +CPP_CLI_SUPPORT = NO + +# Set the SIP_SUPPORT tag to YES if your project consists of sip sources only. +# Doxygen will parse them like normal C++ but will assume all classes use public +# instead of private inheritance when no explicit protection keyword is present. + +SIP_SUPPORT = NO + +# For Microsoft's IDL there are propget and propput attributes to indicate getter +# and setter methods for a property. Setting this option to YES (the default) +# will make doxygen to replace the get and set methods by a property in the +# documentation. This will only work if the methods are indeed getting or +# setting a simple type. If this is not the case, or you want to show the +# methods anyway, you should set this option to NO. + +IDL_PROPERTY_SUPPORT = YES + +# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC +# tag is set to YES, then doxygen will reuse the documentation of the first +# member in the group (if any) for the other members of the group. By default +# all members of a group must be documented explicitly. + +DISTRIBUTE_GROUP_DOC = NO + +# Set the SUBGROUPING tag to YES (the default) to allow class member groups of +# the same type (for instance a group of public functions) to be put as a +# subgroup of that type (e.g. under the Public Functions section). Set it to +# NO to prevent subgrouping. Alternatively, this can be done per class using +# the \nosubgrouping command. + +SUBGROUPING = YES + +# When TYPEDEF_HIDES_STRUCT is enabled, a typedef of a struct, union, or enum +# is documented as struct, union, or enum with the name of the typedef. So +# typedef struct TypeS {} TypeT, will appear in the documentation as a struct +# with name TypeT. When disabled the typedef will appear as a member of a file, +# namespace, or class. And the struct will be named TypeS. This can typically +# be useful for C code in case the coding convention dictates that all compound +# types are typedef'ed and only the typedef is referenced, never the tag name. + +TYPEDEF_HIDES_STRUCT = NO + +# The SYMBOL_CACHE_SIZE determines the size of the internal cache use to +# determine which symbols to keep in memory and which to flush to disk. +# When the cache is full, less often used symbols will be written to disk. +# For small to medium size projects (<1000 input files) the default value is +# probably good enough. For larger projects a too small cache size can cause +# doxygen to be busy swapping symbols to and from disk most of the time +# causing a significant performance penality. +# If the system has enough physical memory increasing the cache will improve the +# performance by keeping more symbols in memory. Note that the value works on +# a logarithmic scale so increasing the size by one will rougly double the +# memory usage. The cache size is given by this formula: +# 2^(16+SYMBOL_CACHE_SIZE). The valid range is 0..9, the default is 0, +# corresponding to a cache size of 2^16 = 65536 symbols + +SYMBOL_CACHE_SIZE = 0 + +#--------------------------------------------------------------------------- +# Build related configuration options +#--------------------------------------------------------------------------- + +# If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in +# documentation are documented, even if no documentation was available. +# Private class members and static file members will be hidden unless +# the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES + +EXTRACT_ALL = NO + +# If the EXTRACT_PRIVATE tag is set to YES all private members of a class +# will be included in the documentation. + +EXTRACT_PRIVATE = NO + +# If the EXTRACT_STATIC tag is set to YES all static members of a file +# will be included in the documentation. + +EXTRACT_STATIC = NO + +# If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) +# defined locally in source files will be included in the documentation. +# If set to NO only classes defined in header files are included. + +EXTRACT_LOCAL_CLASSES = YES + +# This flag is only useful for Objective-C code. When set to YES local +# methods, which are defined in the implementation section but not in +# the interface are included in the documentation. +# If set to NO (the default) only methods in the interface are included. + +EXTRACT_LOCAL_METHODS = NO + +# If this flag is set to YES, the members of anonymous namespaces will be +# extracted and appear in the documentation as a namespace called +# 'anonymous_namespace{file}', where file will be replaced with the base +# name of the file that contains the anonymous namespace. By default +# anonymous namespace are hidden. + +EXTRACT_ANON_NSPACES = NO + +# If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all +# undocumented members of documented classes, files or namespaces. +# If set to NO (the default) these members will be included in the +# various overviews, but no documentation section is generated. +# This option has no effect if EXTRACT_ALL is enabled. + +HIDE_UNDOC_MEMBERS = NO + +# If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all +# undocumented classes that are normally visible in the class hierarchy. +# If set to NO (the default) these classes will be included in the various +# overviews. This option has no effect if EXTRACT_ALL is enabled. + +HIDE_UNDOC_CLASSES = NO + +# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all +# friend (class|struct|union) declarations. +# If set to NO (the default) these declarations will be included in the +# documentation. + +HIDE_FRIEND_COMPOUNDS = NO + +# If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any +# documentation blocks found inside the body of a function. +# If set to NO (the default) these blocks will be appended to the +# function's detailed documentation block. + +HIDE_IN_BODY_DOCS = NO + +# The INTERNAL_DOCS tag determines if documentation +# that is typed after a \internal command is included. If the tag is set +# to NO (the default) then the documentation will be excluded. +# Set it to YES to include the internal documentation. + +INTERNAL_DOCS = NO + +# If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate +# file names in lower-case letters. If set to YES upper-case letters are also +# allowed. This is useful if you have classes or files whose names only differ +# in case and if your file system supports case sensitive file names. Windows +# and Mac users are advised to set this option to NO. + +CASE_SENSE_NAMES = YES + +# If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen +# will show members with their full class and namespace scopes in the +# documentation. If set to YES the scope will be hidden. + +HIDE_SCOPE_NAMES = NO + +# If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen +# will put a list of the files that are included by a file in the documentation +# of that file. + +SHOW_INCLUDE_FILES = YES + +# If the INLINE_INFO tag is set to YES (the default) then a tag [inline] +# is inserted in the documentation for inline members. + +INLINE_INFO = YES + +# If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen +# will sort the (detailed) documentation of file and class members +# alphabetically by member name. If set to NO the members will appear in +# declaration order. + +SORT_MEMBER_DOCS = YES + +# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the +# brief documentation of file, namespace and class members alphabetically +# by member name. If set to NO (the default) the members will appear in +# declaration order. + +SORT_BRIEF_DOCS = NO + +# If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the +# hierarchy of group names into alphabetical order. If set to NO (the default) +# the group names will appear in their defined order. + +SORT_GROUP_NAMES = NO + +# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be +# sorted by fully-qualified names, including namespaces. If set to +# NO (the default), the class list will be sorted only by class name, +# not including the namespace part. +# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. +# Note: This option applies only to the class list, not to the +# alphabetical list. + +SORT_BY_SCOPE_NAME = NO + +# The GENERATE_TODOLIST tag can be used to enable (YES) or +# disable (NO) the todo list. This list is created by putting \todo +# commands in the documentation. + +GENERATE_TODOLIST = YES + +# The GENERATE_TESTLIST tag can be used to enable (YES) or +# disable (NO) the test list. This list is created by putting \test +# commands in the documentation. + +GENERATE_TESTLIST = YES + +# The GENERATE_BUGLIST tag can be used to enable (YES) or +# disable (NO) the bug list. This list is created by putting \bug +# commands in the documentation. + +GENERATE_BUGLIST = YES + +# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or +# disable (NO) the deprecated list. This list is created by putting +# \deprecated commands in the documentation. + +GENERATE_DEPRECATEDLIST= YES + +# The ENABLED_SECTIONS tag can be used to enable conditional +# documentation sections, marked by \if sectionname ... \endif. + +ENABLED_SECTIONS = + +# The MAX_INITIALIZER_LINES tag determines the maximum number of lines +# the initial value of a variable or define consists of for it to appear in +# the documentation. If the initializer consists of more lines than specified +# here it will be hidden. Use a value of 0 to hide initializers completely. +# The appearance of the initializer of individual variables and defines in the +# documentation can be controlled using \showinitializer or \hideinitializer +# command in the documentation regardless of this setting. + +MAX_INITIALIZER_LINES = 30 + +# Set the SHOW_USED_FILES tag to NO to disable the list of files generated +# at the bottom of the documentation of classes and structs. If set to YES the +# list will mention the files that were used to generate the documentation. + +SHOW_USED_FILES = YES + +# If the sources in your project are distributed over multiple directories +# then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy +# in the documentation. The default is NO. + +SHOW_DIRECTORIES = NO + +# Set the SHOW_FILES tag to NO to disable the generation of the Files page. +# This will remove the Files entry from the Quick Index and from the +# Folder Tree View (if specified). The default is YES. + +SHOW_FILES = YES + +# Set the SHOW_NAMESPACES tag to NO to disable the generation of the +# Namespaces page. +# This will remove the Namespaces entry from the Quick Index +# and from the Folder Tree View (if specified). The default is YES. + +SHOW_NAMESPACES = YES + +# The FILE_VERSION_FILTER tag can be used to specify a program or script that +# doxygen should invoke to get the current version for each file (typically from +# the version control system). Doxygen will invoke the program by executing (via +# popen()) the command , where is the value of +# the FILE_VERSION_FILTER tag, and is the name of an input file +# provided by doxygen. Whatever the program writes to standard output +# is used as the file version. See the manual for examples. + +FILE_VERSION_FILTER = + +# The LAYOUT_FILE tag can be used to specify a layout file which will be parsed by +# doxygen. The layout file controls the global structure of the generated output files +# in an output format independent way. The create the layout file that represents +# doxygen's defaults, run doxygen with the -l option. You can optionally specify a +# file name after the option, if omitted DoxygenLayout.xml will be used as the name +# of the layout file. + +LAYOUT_FILE = + +#--------------------------------------------------------------------------- +# configuration options related to warning and progress messages +#--------------------------------------------------------------------------- + +# The QUIET tag can be used to turn on/off the messages that are generated +# by doxygen. Possible values are YES and NO. If left blank NO is used. + +QUIET = YES + +# The WARNINGS tag can be used to turn on/off the warning messages that are +# generated by doxygen. Possible values are YES and NO. If left blank +# NO is used. + +WARNINGS = YES + +# If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings +# for undocumented members. If EXTRACT_ALL is set to YES then this flag will +# automatically be disabled. + +WARN_IF_UNDOCUMENTED = YES + +# If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings for +# potential errors in the documentation, such as not documenting some +# parameters in a documented function, or documenting parameters that +# don't exist or using markup commands wrongly. + +WARN_IF_DOC_ERROR = YES + +# This WARN_NO_PARAMDOC option can be abled to get warnings for +# functions that are documented, but have no documentation for their parameters +# or return value. If set to NO (the default) doxygen will only warn about +# wrong or incomplete parameter documentation, but not about the absence of +# documentation. + +WARN_NO_PARAMDOC = NO + +# The WARN_FORMAT tag determines the format of the warning messages that +# doxygen can produce. The string should contain the $file, $line, and $text +# tags, which will be replaced by the file and line number from which the +# warning originated and the warning text. Optionally the format may contain +# $version, which will be replaced by the version of the file (if it could +# be obtained via FILE_VERSION_FILTER) + +WARN_FORMAT = "$file:$line: $text" + +# The WARN_LOGFILE tag can be used to specify a file to which warning +# and error messages should be written. If left blank the output is written +# to stderr. + +WARN_LOGFILE = + +#--------------------------------------------------------------------------- +# configuration options related to the input files +#--------------------------------------------------------------------------- + +# The INPUT tag can be used to specify the files and/or directories that contain +# documented source files. You may enter file names like "myfile.cpp" or +# directories like "/usr/src/myproject". Separate the files or directories +# with spaces. + +INPUT = src/lib/ + +# This tag can be used to specify the character encoding of the source files +# that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is +# also the default input encoding. Doxygen uses libiconv (or the iconv built +# into libc) for the transcoding. See http://www.gnu.org/software/libiconv for +# the list of possible encodings. + +INPUT_ENCODING = UTF-8 + +# If the value of the INPUT tag contains directories, you can use the +# FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp +# and *.h) to filter out the source-files in the directories. If left +# blank the following patterns are tested: +# *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx +# *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.py *.f90 + +FILE_PATTERNS = + +# The RECURSIVE tag can be used to turn specify whether or not subdirectories +# should be searched for input files as well. Possible values are YES and NO. +# If left blank NO is used. + +RECURSIVE = YES + +# The EXCLUDE tag can be used to specify files and/or directories that should +# excluded from the INPUT source files. This way you can easily exclude a +# subdirectory from a directory tree whose root is specified with the INPUT tag. + +EXCLUDE = "src/lib/fcitx-utils/utarray.h" "src/lib/fcitx-utils/uthash.h" + +# The EXCLUDE_SYMLINKS tag can be used select whether or not files or +# directories that are symbolic links (a Unix filesystem feature) are excluded +# from the input. + +EXCLUDE_SYMLINKS = NO + +# If the value of the INPUT tag contains directories, you can use the +# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude +# certain files from those directories. Note that the wildcards are matched +# against the file with absolute path, so to exclude all test directories +# for example use the pattern */test/* + +EXCLUDE_PATTERNS = "*/.*" "*/.*/*" + +# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names +# (namespaces, classes, functions, etc.) that should be excluded from the +# output. The symbol name can be a fully qualified name, a word, or if the +# wildcard * is used, a substring. Examples: ANamespace, AClass, +# AClass::ANamespace, ANamespace::*Test + +EXCLUDE_SYMBOLS = + +# The EXAMPLE_PATH tag can be used to specify one or more files or +# directories that contain example code fragments that are included (see +# the \include command). + +EXAMPLE_PATH = + +# If the value of the EXAMPLE_PATH tag contains directories, you can use the +# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp +# and *.h) to filter out the source-files in the directories. If left +# blank all files are included. + +EXAMPLE_PATTERNS = + +# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be +# searched for input files to be used with the \include or \dontinclude +# commands irrespective of the value of the RECURSIVE tag. +# Possible values are YES and NO. If left blank NO is used. + +EXAMPLE_RECURSIVE = NO + +# The IMAGE_PATH tag can be used to specify one or more files or +# directories that contain image that are included in the documentation (see +# the \image command). + +IMAGE_PATH = "@CMAKE_CURRENT_SOURCE_DIR@" + +# The INPUT_FILTER tag can be used to specify a program that doxygen should +# invoke to filter for each input file. Doxygen will invoke the filter program +# by executing (via popen()) the command , where +# is the value of the INPUT_FILTER tag, and is the name of an +# input file. Doxygen will then use the output that the filter program writes +# to standard output. +# If FILTER_PATTERNS is specified, this tag will be +# ignored. + +INPUT_FILTER = + +# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern +# basis. +# Doxygen will compare the file name with each pattern and apply the +# filter if there is a match. +# The filters are a list of the form: +# pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further +# info on how filters are used. If FILTER_PATTERNS is empty, INPUT_FILTER +# is applied to all files. + +FILTER_PATTERNS = + +# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using +# INPUT_FILTER) will be used to filter the input files when producing source +# files to browse (i.e. when SOURCE_BROWSER is set to YES). + +FILTER_SOURCE_FILES = NO + +#--------------------------------------------------------------------------- +# configuration options related to source browsing +#--------------------------------------------------------------------------- + +# If the SOURCE_BROWSER tag is set to YES then a list of source files will +# be generated. Documented entities will be cross-referenced with these sources. +# Note: To get rid of all source code in the generated output, make sure also +# VERBATIM_HEADERS is set to NO. + +SOURCE_BROWSER = NO + +# Setting the INLINE_SOURCES tag to YES will include the body +# of functions and classes directly in the documentation. + +INLINE_SOURCES = NO + +# Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct +# doxygen to hide any special comment blocks from generated source code +# fragments. Normal C and C++ comments will always remain visible. + +STRIP_CODE_COMMENTS = YES + +# If the REFERENCED_BY_RELATION tag is set to YES +# then for each documented function all documented +# functions referencing it will be listed. + +REFERENCED_BY_RELATION = NO + +# If the REFERENCES_RELATION tag is set to YES +# then for each documented function all documented entities +# called/used by that function will be listed. + +REFERENCES_RELATION = NO + +# If the REFERENCES_LINK_SOURCE tag is set to YES (the default) +# and SOURCE_BROWSER tag is set to YES, then the hyperlinks from +# functions in REFERENCES_RELATION and REFERENCED_BY_RELATION lists will +# link to the source code. +# Otherwise they will link to the documentation. + +REFERENCES_LINK_SOURCE = YES + +# If the USE_HTAGS tag is set to YES then the references to source code +# will point to the HTML generated by the htags(1) tool instead of doxygen +# built-in source browser. The htags tool is part of GNU's global source +# tagging system (see http://www.gnu.org/software/global/global.html). You +# will need version 4.8.6 or higher. + +USE_HTAGS = NO + +# If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen +# will generate a verbatim copy of the header file for each class for +# which an include is specified. Set to NO to disable this. + +VERBATIM_HEADERS = YES + +#--------------------------------------------------------------------------- +# configuration options related to the alphabetical class index +#--------------------------------------------------------------------------- + +# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index +# of all compounds will be generated. Enable this if the project +# contains a lot of classes, structs, unions or interfaces. + +ALPHABETICAL_INDEX = NO + +# If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then +# the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns +# in which this list will be split (can be a number in the range [1..20]) + +COLS_IN_ALPHA_INDEX = 5 + +# In case all classes in a project start with a common prefix, all +# classes will be put under the same header in the alphabetical index. +# The IGNORE_PREFIX tag can be used to specify one or more prefixes that +# should be ignored while generating the index headers. + +IGNORE_PREFIX = + +#--------------------------------------------------------------------------- +# configuration options related to the HTML output +#--------------------------------------------------------------------------- + +# If the GENERATE_HTML tag is set to YES (the default) Doxygen will +# generate HTML output. + +GENERATE_HTML = YES + +# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `html' will be used as the default path. + +HTML_OUTPUT = "@DOXYFILE_HTML_DIR@" + +# The HTML_FILE_EXTENSION tag can be used to specify the file extension for +# each generated HTML page (for example: .htm,.php,.asp). If it is left blank +# doxygen will generate files with .html extension. + +HTML_FILE_EXTENSION = .html + +# The HTML_HEADER tag can be used to specify a personal HTML header for +# each generated HTML page. If it is left blank doxygen will generate a +# standard header. + +HTML_HEADER = + +# The HTML_FOOTER tag can be used to specify a personal HTML footer for +# each generated HTML page. If it is left blank doxygen will generate a +# standard footer. + +HTML_FOOTER = + +# The HTML_STYLESHEET tag can be used to specify a user-defined cascading +# style sheet that is used by each HTML page. It can be used to +# fine-tune the look of the HTML output. If the tag is left blank doxygen +# will generate a default style sheet. Note that doxygen will try to copy +# the style sheet file to the HTML output directory, so don't put your own +# stylesheet in the HTML output directory as well, or it will be erased! + +HTML_STYLESHEET = + +# If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes, +# files or namespaces will be aligned in HTML using tables. If set to +# NO a bullet list will be used. + +HTML_ALIGN_MEMBERS = YES + +# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML +# documentation will contain sections that can be hidden and shown after the +# page has loaded. For this to work a browser that supports +# JavaScript and DHTML is required (for instance Mozilla 1.0+, Firefox +# Netscape 6.0+, Internet explorer 5.0+, Konqueror, or Safari). + +HTML_DYNAMIC_SECTIONS = NO + +# If the GENERATE_DOCSET tag is set to YES, additional index files +# will be generated that can be used as input for Apple's Xcode 3 +# integrated development environment, introduced with OSX 10.5 (Leopard). +# To create a documentation set, doxygen will generate a Makefile in the +# HTML output directory. Running make will produce the docset in that +# directory and running "make install" will install the docset in +# ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find +# it at startup. +# See http://developer.apple.com/tools/creatingdocsetswithdoxygen.html for more information. + +GENERATE_DOCSET = NO + +# When GENERATE_DOCSET tag is set to YES, this tag determines the name of the +# feed. A documentation feed provides an umbrella under which multiple +# documentation sets from a single provider (such as a company or product suite) +# can be grouped. + +DOCSET_FEEDNAME = "Doxygen generated docs" + +# When GENERATE_DOCSET tag is set to YES, this tag specifies a string that +# should uniquely identify the documentation set bundle. This should be a +# reverse domain-name style string, e.g. com.mycompany.MyDocSet. Doxygen +# will append .docset to the name. + +DOCSET_BUNDLE_ID = org.doxygen.Project + +# If the GENERATE_HTMLHELP tag is set to YES, additional index files +# will be generated that can be used as input for tools like the +# Microsoft HTML help workshop to generate a compiled HTML help file (.chm) +# of the generated HTML documentation. + +GENERATE_HTMLHELP = NO + +# If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can +# be used to specify the file name of the resulting .chm file. You +# can add a path in front of the file if the result should not be +# written to the html output directory. + +CHM_FILE = + +# If the GENERATE_HTMLHELP tag is set to YES, the HHC_LOCATION tag can +# be used to specify the location (absolute path including file name) of +# the HTML help compiler (hhc.exe). If non-empty doxygen will try to run +# the HTML help compiler on the generated index.hhp. + +HHC_LOCATION = + +# If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag +# controls if a separate .chi index file is generated (YES) or that +# it should be included in the master .chm file (NO). + +GENERATE_CHI = NO + +# If the GENERATE_HTMLHELP tag is set to YES, the CHM_INDEX_ENCODING +# is used to encode HtmlHelp index (hhk), content (hhc) and project file +# content. + +CHM_INDEX_ENCODING = + +# If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag +# controls whether a binary table of contents is generated (YES) or a +# normal table of contents (NO) in the .chm file. + +BINARY_TOC = NO + +# The TOC_EXPAND flag can be set to YES to add extra items for group members +# to the contents of the HTML help documentation and to the tree view. + +TOC_EXPAND = NO + +# If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and QHP_VIRTUAL_FOLDER +# are set, an additional index file will be generated that can be used as input for +# Qt's qhelpgenerator to generate a Qt Compressed Help (.qch) of the generated +# HTML documentation. + +GENERATE_QHP = NO + +# If the QHG_LOCATION tag is specified, the QCH_FILE tag can +# be used to specify the file name of the resulting .qch file. +# The path specified is relative to the HTML output folder. + +QCH_FILE = + +# The QHP_NAMESPACE tag specifies the namespace to use when generating +# Qt Help Project output. For more information please see +# http://doc.trolltech.com/qthelpproject.html#namespace + +QHP_NAMESPACE = + +# The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating +# Qt Help Project output. For more information please see +# http://doc.trolltech.com/qthelpproject.html#virtual-folders + +QHP_VIRTUAL_FOLDER = doc + +# If QHP_CUST_FILTER_NAME is set, it specifies the name of a custom filter to add. +# For more information please see +# http://doc.trolltech.com/qthelpproject.html#custom-filters + +QHP_CUST_FILTER_NAME = + +# The QHP_CUST_FILT_ATTRS tag specifies the list of the attributes of the custom filter to add.For more information please see +# Qt Help Project / Custom Filters. + +QHP_CUST_FILTER_ATTRS = + +# The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this project's +# filter section matches. +# Qt Help Project / Filter Attributes. + +QHP_SECT_FILTER_ATTRS = + +# If the GENERATE_QHP tag is set to YES, the QHG_LOCATION tag can +# be used to specify the location of Qt's qhelpgenerator. +# If non-empty doxygen will try to run qhelpgenerator on the generated +# .qhp file. + +QHG_LOCATION = + +# The DISABLE_INDEX tag can be used to turn on/off the condensed index at +# top of each HTML page. The value NO (the default) enables the index and +# the value YES disables it. + +DISABLE_INDEX = NO + +# This tag can be used to set the number of enum values (range [1..20]) +# that doxygen will group on one line in the generated HTML documentation. + +ENUM_VALUES_PER_LINE = 4 + +# The GENERATE_TREEVIEW tag is used to specify whether a tree-like index +# structure should be generated to display hierarchical information. +# If the tag value is set to FRAME, a side panel will be generated +# containing a tree-like index structure (just like the one that +# is generated for HTML Help). For this to work a browser that supports +# JavaScript, DHTML, CSS and frames is required (for instance Mozilla 1.0+, +# Netscape 6.0+, Internet explorer 5.0+, or Konqueror). Windows users are +# probably better off using the HTML help feature. Other possible values +# for this tag are: HIERARCHIES, which will generate the Groups, Directories, +# and Class Hierarchy pages using a tree view instead of an ordered list; +# ALL, which combines the behavior of FRAME and HIERARCHIES; and NONE, which +# disables this behavior completely. For backwards compatibility with previous +# releases of Doxygen, the values YES and NO are equivalent to FRAME and NONE +# respectively. + +GENERATE_TREEVIEW = NONE + +# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be +# used to set the initial width (in pixels) of the frame in which the tree +# is shown. + +TREEVIEW_WIDTH = 250 + +# Use this tag to change the font size of Latex formulas included +# as images in the HTML documentation. The default is 10. Note that +# when you change the font size after a successful doxygen run you need +# to manually remove any form_*.png images from the HTML output directory +# to force them to be regenerated. + +FORMULA_FONTSIZE = 10 + +#--------------------------------------------------------------------------- +# configuration options related to the LaTeX output +#--------------------------------------------------------------------------- + +# If the GENERATE_LATEX tag is set to YES (the default) Doxygen will +# generate Latex output. + +GENERATE_LATEX = @DOXYFILE_GENERATE_LATEX@ + +# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `latex' will be used as the default path. + +LATEX_OUTPUT = "@DOXYFILE_LATEX_DIR@" + +# The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be +# invoked. If left blank `latex' will be used as the default command name. + +LATEX_CMD_NAME = "@LATEX_COMPILER@" + +# The MAKEINDEX_CMD_NAME tag can be used to specify the command name to +# generate index for LaTeX. If left blank `makeindex' will be used as the +# default command name. + +MAKEINDEX_CMD_NAME = "@MAKEINDEX_COMPILER@" + +# If the COMPACT_LATEX tag is set to YES Doxygen generates more compact +# LaTeX documents. This may be useful for small projects and may help to +# save some trees in general. + +COMPACT_LATEX = NO + +# The PAPER_TYPE tag can be used to set the paper type that is used +# by the printer. Possible values are: a4, a4wide, letter, legal and +# executive. If left blank a4wide will be used. + +PAPER_TYPE = a4wide + +# The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX +# packages that should be included in the LaTeX output. + +EXTRA_PACKAGES = + +# The LATEX_HEADER tag can be used to specify a personal LaTeX header for +# the generated latex document. The header should contain everything until +# the first chapter. If it is left blank doxygen will generate a +# standard header. Notice: only use this tag if you know what you are doing! + +LATEX_HEADER = + +# If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated +# is prepared for conversion to pdf (using ps2pdf). The pdf file will +# contain links (just like the HTML output) instead of page references +# This makes the output suitable for online browsing using a pdf viewer. + +PDF_HYPERLINKS = YES + +# If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of +# plain latex in the generated Makefile. Set this option to YES to get a +# higher quality PDF documentation. + +USE_PDFLATEX = @DOXYFILE_PDFLATEX@ + +# If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode. +# command to the generated LaTeX files. This will instruct LaTeX to keep +# running if errors occur, instead of asking the user for help. +# This option is also used when generating formulas in HTML. + +LATEX_BATCHMODE = YES + +# If LATEX_HIDE_INDICES is set to YES then doxygen will not +# include the index chapters (such as File Index, Compound Index, etc.) +# in the output. + +LATEX_HIDE_INDICES = NO + +#--------------------------------------------------------------------------- +# configuration options related to the RTF output +#--------------------------------------------------------------------------- + +# If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output +# The RTF output is optimized for Word 97 and may not look very pretty with +# other RTF readers or editors. + +GENERATE_RTF = NO + +# The RTF_OUTPUT tag is used to specify where the RTF docs will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `rtf' will be used as the default path. + +RTF_OUTPUT = rtf + +# If the COMPACT_RTF tag is set to YES Doxygen generates more compact +# RTF documents. This may be useful for small projects and may help to +# save some trees in general. + +COMPACT_RTF = NO + +# If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated +# will contain hyperlink fields. The RTF file will +# contain links (just like the HTML output) instead of page references. +# This makes the output suitable for online browsing using WORD or other +# programs which support those fields. +# Note: wordpad (write) and others do not support links. + +RTF_HYPERLINKS = NO + +# Load stylesheet definitions from file. Syntax is similar to doxygen's +# config file, i.e. a series of assignments. You only have to provide +# replacements, missing definitions are set to their default value. + +RTF_STYLESHEET_FILE = + +# Set optional variables used in the generation of an rtf document. +# Syntax is similar to doxygen's config file. + +RTF_EXTENSIONS_FILE = + +#--------------------------------------------------------------------------- +# configuration options related to the man page output +#--------------------------------------------------------------------------- + +# If the GENERATE_MAN tag is set to YES (the default) Doxygen will +# generate man pages + +GENERATE_MAN = NO + +# The MAN_OUTPUT tag is used to specify where the man pages will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `man' will be used as the default path. + +MAN_OUTPUT = man + +# The MAN_EXTENSION tag determines the extension that is added to +# the generated man pages (default is the subroutine's section .3) + +MAN_EXTENSION = .3 + +# If the MAN_LINKS tag is set to YES and Doxygen generates man output, +# then it will generate one additional man file for each entity +# documented in the real man page(s). These additional files +# only source the real man page, but without them the man command +# would be unable to find the correct page. The default is NO. + +MAN_LINKS = NO + +#--------------------------------------------------------------------------- +# configuration options related to the XML output +#--------------------------------------------------------------------------- + +# If the GENERATE_XML tag is set to YES Doxygen will +# generate an XML file that captures the structure of +# the code including all documentation. + +GENERATE_XML = NO + +# The XML_OUTPUT tag is used to specify where the XML pages will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `xml' will be used as the default path. + +XML_OUTPUT = xml + +# The XML_SCHEMA tag can be used to specify an XML schema, +# which can be used by a validating XML parser to check the +# syntax of the XML files. + +XML_SCHEMA = + +# The XML_DTD tag can be used to specify an XML DTD, +# which can be used by a validating XML parser to check the +# syntax of the XML files. + +XML_DTD = + +# If the XML_PROGRAMLISTING tag is set to YES Doxygen will +# dump the program listings (including syntax highlighting +# and cross-referencing information) to the XML output. Note that +# enabling this will significantly increase the size of the XML output. + +XML_PROGRAMLISTING = YES + +#--------------------------------------------------------------------------- +# configuration options for the AutoGen Definitions output +#--------------------------------------------------------------------------- + +# If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will +# generate an AutoGen Definitions (see autogen.sf.net) file +# that captures the structure of the code including all +# documentation. Note that this feature is still experimental +# and incomplete at the moment. + +GENERATE_AUTOGEN_DEF = NO + +#--------------------------------------------------------------------------- +# configuration options related to the Perl module output +#--------------------------------------------------------------------------- + +# If the GENERATE_PERLMOD tag is set to YES Doxygen will +# generate a Perl module file that captures the structure of +# the code including all documentation. Note that this +# feature is still experimental and incomplete at the +# moment. + +GENERATE_PERLMOD = NO + +# If the PERLMOD_LATEX tag is set to YES Doxygen will generate +# the necessary Makefile rules, Perl scripts and LaTeX code to be able +# to generate PDF and DVI output from the Perl module output. + +PERLMOD_LATEX = NO + +# If the PERLMOD_PRETTY tag is set to YES the Perl module output will be +# nicely formatted so it can be parsed by a human reader. +# This is useful +# if you want to understand what is going on. +# On the other hand, if this +# tag is set to NO the size of the Perl module output will be much smaller +# and Perl will parse it just the same. + +PERLMOD_PRETTY = YES + +# The names of the make variables in the generated doxyrules.make file +# are prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. +# This is useful so different doxyrules.make files included by the same +# Makefile don't overwrite each other's variables. + +PERLMOD_MAKEVAR_PREFIX = + +#--------------------------------------------------------------------------- +# Configuration options related to the preprocessor +#--------------------------------------------------------------------------- + +# If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will +# evaluate all C-preprocessor directives found in the sources and include +# files. + +ENABLE_PREPROCESSING = YES + +# If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro +# names in the source code. If set to NO (the default) only conditional +# compilation will be performed. Macro expansion can be done in a controlled +# way by setting EXPAND_ONLY_PREDEF to YES. + +MACRO_EXPANSION = NO + +# If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES +# then the macro expansion is limited to the macros specified with the +# PREDEFINED and EXPAND_AS_DEFINED tags. + +EXPAND_ONLY_PREDEF = NO + +# If the SEARCH_INCLUDES tag is set to YES (the default) the includes files +# in the INCLUDE_PATH (see below) will be search if a #include is found. + +SEARCH_INCLUDES = YES + +# The INCLUDE_PATH tag can be used to specify one or more directories that +# contain include files that are not input files but should be processed by +# the preprocessor. + +INCLUDE_PATH = + +# You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard +# patterns (like *.h and *.hpp) to filter out the header-files in the +# directories. If left blank, the patterns specified with FILE_PATTERNS will +# be used. + +INCLUDE_FILE_PATTERNS = + +# The PREDEFINED tag can be used to specify one or more macro names that +# are defined before the preprocessor is started (similar to the -D option of +# gcc). The argument of the tag is a list of macros of the form: name +# or name=definition (no spaces). If the definition and the = are +# omitted =1 is assumed. To prevent a macro definition from being +# undefined via #undef or recursively expanded use the := operator +# instead of the = operator. + +PREDEFINED = + +# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then +# this tag can be used to specify a list of macro names that should be expanded. +# The macro definition that is found in the sources will be used. +# Use the PREDEFINED tag if you want to use a different macro definition. + +EXPAND_AS_DEFINED = + +# If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then +# doxygen's preprocessor will remove all function-like macros that are alone +# on a line, have an all uppercase name, and do not end with a semicolon. Such +# function macros are typically used for boiler-plate code, and will confuse +# the parser if not removed. + +SKIP_FUNCTION_MACROS = YES + +#--------------------------------------------------------------------------- +# Configuration::additions related to external references +#--------------------------------------------------------------------------- + +# The TAGFILES option can be used to specify one or more tagfiles. +# Optionally an initial location of the external documentation +# can be added for each tagfile. The format of a tag file without +# this location is as follows: +# +# TAGFILES = file1 file2 ... +# Adding location for the tag files is done as follows: +# +# TAGFILES = file1=loc1 "file2 = loc2" ... +# where "loc1" and "loc2" can be relative or absolute paths or +# URLs. If a location is present for each tag, the installdox tool +# does not have to be run to correct the links. +# Note that each tag file must have a unique name +# (where the name does NOT include the path) +# If a tag file is not located in the directory in which doxygen +# is run, you must also specify the path to the tagfile here. + +TAGFILES = + +# When a file name is specified after GENERATE_TAGFILE, doxygen will create +# a tag file that is based on the input files it reads. + +GENERATE_TAGFILE = + +# If the ALLEXTERNALS tag is set to YES all external classes will be listed +# in the class index. If set to NO only the inherited external classes +# will be listed. + +ALLEXTERNALS = NO + +# If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed +# in the modules index. If set to NO, only the current project's groups will +# be listed. + +EXTERNAL_GROUPS = YES + +# The PERL_PATH should be the absolute path and name of the perl script +# interpreter (i.e. the result of `which perl'). + +PERL_PATH = /usr/bin/perl + +#--------------------------------------------------------------------------- +# Configuration options related to the dot tool +#--------------------------------------------------------------------------- + +# If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will +# generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base +# or super classes. Setting the tag to NO turns the diagrams off. Note that +# this option is superseded by the HAVE_DOT option below. This is only a +# fallback. It is recommended to install and use dot, since it yields more +# powerful graphs. + +CLASS_DIAGRAMS = YES + +# You can define message sequence charts within doxygen comments using the \msc +# command. Doxygen will then run the mscgen tool (see +# http://www.mcternan.me.uk/mscgen/) to produce the chart and insert it in the +# documentation. The MSCGEN_PATH tag allows you to specify the directory where +# the mscgen tool resides. If left empty the tool is assumed to be found in the +# default search path. + +MSCGEN_PATH = + +# If set to YES, the inheritance and collaboration graphs will hide +# inheritance and usage relations if the target is undocumented +# or is not a class. + +HIDE_UNDOC_RELATIONS = YES + +# If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is +# available from the path. This tool is part of Graphviz, a graph visualization +# toolkit from AT&T and Lucent Bell Labs. The other options in this section +# have no effect if this option is set to NO (the default) + +HAVE_DOT = @DOXYFILE_DOT@ + +# By default doxygen will write a font called FreeSans.ttf to the output +# directory and reference it in all dot files that doxygen generates. This +# font does not include all possible unicode characters however, so when you need +# these (or just want a differently looking font) you can specify the font name +# using DOT_FONTNAME. You need need to make sure dot is able to find the font, +# which can be done by putting it in a standard location or by setting the +# DOTFONTPATH environment variable or by setting DOT_FONTPATH to the directory +# containing the font. + +DOT_FONTNAME = FreeSans + +# The DOT_FONTSIZE tag can be used to set the size of the font of dot graphs. +# The default size is 10pt. + +DOT_FONTSIZE = 10 + +# By default doxygen will tell dot to use the output directory to look for the +# FreeSans.ttf font (which doxygen will put there itself). If you specify a +# different font using DOT_FONTNAME you can set the path where dot +# can find it using this tag. + +DOT_FONTPATH = + +# If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen +# will generate a graph for each documented class showing the direct and +# indirect inheritance relations. Setting this tag to YES will force the +# the CLASS_DIAGRAMS tag to NO. + +CLASS_GRAPH = YES + +# If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen +# will generate a graph for each documented class showing the direct and +# indirect implementation dependencies (inheritance, containment, and +# class references variables) of the class with other documented classes. + +COLLABORATION_GRAPH = YES + +# If the GROUP_GRAPHS and HAVE_DOT tags are set to YES then doxygen +# will generate a graph for groups, showing the direct groups dependencies + +GROUP_GRAPHS = YES + +# If the UML_LOOK tag is set to YES doxygen will generate inheritance and +# collaboration diagrams in a style similar to the OMG's Unified Modeling +# Language. + +UML_LOOK = NO + +# If set to YES, the inheritance and collaboration graphs will show the +# relations between templates and their instances. + +TEMPLATE_RELATIONS = NO + +# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT +# tags are set to YES then doxygen will generate a graph for each documented +# file showing the direct and indirect include dependencies of the file with +# other documented files. + +INCLUDE_GRAPH = YES + +# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and +# HAVE_DOT tags are set to YES then doxygen will generate a graph for each +# documented header file showing the documented files that directly or +# indirectly include this file. + +INCLUDED_BY_GRAPH = YES + +# If the CALL_GRAPH and HAVE_DOT options are set to YES then +# doxygen will generate a call dependency graph for every global function +# or class method. Note that enabling this option will significantly increase +# the time of a run. So in most cases it will be better to enable call graphs +# for selected functions only using the \callgraph command. + +CALL_GRAPH = NO + +# If the CALLER_GRAPH and HAVE_DOT tags are set to YES then +# doxygen will generate a caller dependency graph for every global function +# or class method. Note that enabling this option will significantly increase +# the time of a run. So in most cases it will be better to enable caller +# graphs for selected functions only using the \callergraph command. + +CALLER_GRAPH = NO + +# If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen +# will graphical hierarchy of all classes instead of a textual one. + +GRAPHICAL_HIERARCHY = YES + +# If the DIRECTORY_GRAPH, SHOW_DIRECTORIES and HAVE_DOT tags are set to YES +# then doxygen will show the dependencies a directory has on other directories +# in a graphical way. The dependency relations are determined by the #include +# relations between the files in the directories. + +DIRECTORY_GRAPH = YES + +# The DOT_IMAGE_FORMAT tag can be used to set the image format of the images +# generated by dot. Possible values are png, jpg, or gif +# If left blank png will be used. + +DOT_IMAGE_FORMAT = png + +# The tag DOT_PATH can be used to specify the path where the dot tool can be +# found. If left blank, it is assumed the dot tool can be found in the path. + +DOT_PATH = "@DOXYGEN_DOT_PATH@" + +# The DOTFILE_DIRS tag can be used to specify one or more directories that +# contain dot files that are included in the documentation (see the +# \dotfile command). + +DOTFILE_DIRS = + +# The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of +# nodes that will be shown in the graph. If the number of nodes in a graph +# becomes larger than this value, doxygen will truncate the graph, which is +# visualized by representing a node as a red box. Note that doxygen if the +# number of direct children of the root node in a graph is already larger than +# DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note +# that the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH. + +DOT_GRAPH_MAX_NODES = 50 + +# The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the +# graphs generated by dot. A depth value of 3 means that only nodes reachable +# from the root by following a path via at most 3 edges will be shown. Nodes +# that lay further from the root node will be omitted. Note that setting this +# option to 1 or 2 may greatly reduce the computation time needed for large +# code bases. Also note that the size of a graph can be further restricted by +# DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction. + +MAX_DOT_GRAPH_DEPTH = 0 + +# Set the DOT_TRANSPARENT tag to YES to generate images with a transparent +# background. This is disabled by default, because dot on Windows does not +# seem to support this out of the box. Warning: Depending on the platform used, +# enabling this option may lead to badly anti-aliased labels on the edges of +# a graph (i.e. they become hard to read). + +DOT_TRANSPARENT = YES + +# Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output +# files in one run (i.e. multiple -o and -T options on the command line). This +# makes dot run faster, but since only newer versions of dot (>1.8.10) +# support this, this feature is disabled by default. + +DOT_MULTI_TARGETS = NO + +# If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will +# generate a legend page explaining the meaning of the various boxes and +# arrows in the dot generated graphs. + +GENERATE_LEGEND = YES + +# If the DOT_CLEANUP tag is set to YES (the default) Doxygen will +# remove the intermediate dot files that are used to generate +# the various graphs. + +DOT_CLEANUP = YES + +#--------------------------------------------------------------------------- +# Options related to the search engine +#--------------------------------------------------------------------------- + +# The SEARCHENGINE tag specifies whether or not a search engine should be +# used. If set to NO the values of all tags below this one will be ignored. + +SEARCHENGINE = NO diff -Nru fcitx-4.0.1/fcitx.spec fcitx-4.1.1/fcitx.spec --- fcitx-4.0.1/fcitx.spec 2010-12-17 04:26:37.000000000 +0000 +++ fcitx-4.1.1/fcitx.spec 1970-01-01 00:00:00.000000000 +0000 @@ -1,102 +0,0 @@ -%define name fcitx -%define version 4.0.1 -%define release 1 - -%define prefix /usr -%define fcitxbindir /usr/bin - -Name: %{name} -Version: %{version} -Release: %{release} -Summary: Free Chinese Input Toy for X (XIM) -Packager: Xie Yanbo -URL: http://www.fcitx.org/ -Group: System Environment/Libraries -Group(zh_CN): 用户界面/桌面 -License: GPL -Source: %{name}-%{version}.tar.gz -BuildRequires: cairo-devel -BuildRequires: pango-devel -%if 0%{?suse_version} -BuildRequires: dbus-1-devel -%else -BuildRequires: dbus-devel -%endif -BuildRequires: intltool -BuildRequires: libtool -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release} - -%description -FCITX is a simplified Chinese input server. It supports Tables, -Pinyin and QuWei input method. It's small and fast. - -%description -l zh_CN -Fcitx──小企鹅输入法即Free Chinese Input Toy for X,它是一个以GPL方式 -发布的、基于XIM的简体中文输入法(即原来的G五笔),包括码表、全拼拼音、双拼 -拼音输入法,并可运行在Linux及其它类UNIX平台上。 -Designed by Yuking - -%package devel -Summary: Development files for %{name} -Group: Development/Libraries -%if 0%{?suse_version} -Requires: xorg-x11-libX11-devel -%else -Requires: libX11-devel -%endif - -%description devel -The %{name}-devel package includes the header files for the FCITX package. - -%prep -%setup -q - -%build -%configure \ - --enable-dbus \ - --enable-tray -make - -%install -rm -rf $RPM_BUILD_ROOT - -make DESTDIR=$RPM_BUILD_ROOT install-strip - -rm -f $RPM_BUILD_ROOT%{_libdir}/libfcitx-config.la - -%find_lang %{name} - -%clean -[ ${RPM_BUILD_ROOT} != "/" ] && rm -rf ${RPM_BUILD_ROOT} - -%files -f %{name}.lang -%defattr(-,root,root,-) -%doc AUTHORS ChangeLog COPYING INSTALL README -%doc doc/*.txt doc/*.htm -%{_bindir}/* -%{_datadir}/fcitx/ -%{_datadir}/fcitx/* -%{_datadir}/pixmaps/* -%{_libdir}/libfcitx* - -%post -p /sbin/ldconfig - -%postun -p /sbin/ldconfig - -%files devel -%defattr(-,root,root,-) -%{_libdir}/pkgconfig/*.pc -%{_includedir}/* - -%changelog -* Sat Sep 18 2010 CSSlayer -- Make it works with newest - -* Fri Jun 11 2004 xyb -- Add data/tables.conf - -* Mon Feb 2 2004 xyb -- Fix spec bug(patch by hamigua ). - -* Thu Jan 15 2004 xyb -- skeleton RPM diff -Nru fcitx-4.0.1/fcitx.spec.in fcitx-4.1.1/fcitx.spec.in --- fcitx-4.0.1/fcitx.spec.in 2010-11-28 11:54:51.000000000 +0000 +++ fcitx-4.1.1/fcitx.spec.in 1970-01-01 00:00:00.000000000 +0000 @@ -1,102 +0,0 @@ -%define name fcitx -%define version @VERSION@ -%define release 1 - -%define prefix /usr -%define fcitxbindir /usr/bin - -Name: %{name} -Version: %{version} -Release: %{release} -Summary: Free Chinese Input Toy for X (XIM) -Packager: Xie Yanbo -URL: http://www.fcitx.org/ -Group: System Environment/Libraries -Group(zh_CN): 用户界面/桌面 -License: GPL -Source: %{name}-%{version}.tar.gz -BuildRequires: cairo-devel -BuildRequires: pango-devel -%if 0%{?suse_version} -BuildRequires: dbus-1-devel -%else -BuildRequires: dbus-devel -%endif -BuildRequires: intltool -BuildRequires: libtool -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release} - -%description -FCITX is a simplified Chinese input server. It supports Tables, -Pinyin and QuWei input method. It's small and fast. - -%description -l zh_CN -Fcitx──小企鹅输入法即Free Chinese Input Toy for X,它是一个以GPL方式 -发布的、基于XIM的简体中文输入法(即原来的G五笔),包括码表、全拼拼音、双拼 -拼音输入法,并可运行在Linux及其它类UNIX平台上。 -Designed by Yuking - -%package devel -Summary: Development files for %{name} -Group: Development/Libraries -%if 0%{?suse_version} -Requires: xorg-x11-libX11-devel -%else -Requires: libX11-devel -%endif - -%description devel -The %{name}-devel package includes the header files for the FCITX package. - -%prep -%setup -q - -%build -%configure \ - --enable-dbus \ - --enable-tray -make - -%install -rm -rf $RPM_BUILD_ROOT - -make DESTDIR=$RPM_BUILD_ROOT install-strip - -rm -f $RPM_BUILD_ROOT%{_libdir}/libfcitx-config.la - -%find_lang %{name} - -%clean -[ ${RPM_BUILD_ROOT} != "/" ] && rm -rf ${RPM_BUILD_ROOT} - -%files -f %{name}.lang -%defattr(-,root,root,-) -%doc AUTHORS ChangeLog COPYING INSTALL README -%doc doc/*.txt doc/*.htm -%{_bindir}/* -%{_datadir}/fcitx/ -%{_datadir}/fcitx/* -%{_datadir}/pixmaps/* -%{_libdir}/libfcitx* - -%post -p /sbin/ldconfig - -%postun -p /sbin/ldconfig - -%files devel -%defattr(-,root,root,-) -%{_libdir}/pkgconfig/*.pc -%{_includedir}/* - -%changelog -* Sat Sep 18 2010 CSSlayer -- Make it works with newest - -* Fri Jun 11 2004 xyb -- Add data/tables.conf - -* Mon Feb 2 2004 xyb -- Fix spec bug(patch by hamigua ). - -* Thu Jan 15 2004 xyb -- skeleton RPM diff -Nru fcitx-4.0.1/.hg_archival.txt fcitx-4.1.1/.hg_archival.txt --- fcitx-4.0.1/.hg_archival.txt 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/.hg_archival.txt 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,4 @@ +repo: aded4416362186ba576416c35f158c14b318a217 +node: ead908a882e9902019f8685017b6a4676070fd85 +branch: default +tag: 4.1.1 diff -Nru fcitx-4.0.1/.hgignore fcitx-4.1.1/.hgignore --- fcitx-4.0.1/.hgignore 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/.hgignore 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,17 @@ +# use glob syntax. +syntax: glob +*~ +build/* +data/pinyin.tar.gz +data/pinyin.tar.gz.md5 +data/table/table.tar.gz +data/table/table.tar.gz.md5 +fcitx.kdev4 +tools/pybase.mb +tools/pyphrase.mb +data/desc.po +.kdev_include_paths +.directory +*.kate-swp +*.orig +tags diff -Nru fcitx-4.0.1/.hgtags fcitx-4.1.1/.hgtags --- fcitx-4.0.1/.hgtags 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/.hgtags 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,26 @@ +1c0cbcb5fb218ca664cc5d0ff366c0213c69ed0a fcitx-3.1.1 +20cc8a8b9e1bb4b5d857afabb86aadcb767c025e fcitx-3.4.2 +27cf7d5a0ca437d6d2eb18f0e91b5ff95fb8b00e fcitx-3.0.2 +2e9eebc9eb05a327a7436f0695aa0b15a391e666 fcitx-3.1 +33dd58523d0dbd5fc4131aea40ea5e65f566ca17 fcitx-3.6.0-rc +3d55e4ad41d82722e9423cae6878532f00c954d1 fcitx-3.0.1 +3ee20be39479751da64093222e6b54a655796752 fcitx-3.6.1 +519a3c92a861196f0e8cdcf110a4d477a8d89201 fcitx-3.5 +52342ba5b78198e40d6ba2e0e20b32eac6627bbd fcitx-3.2.1 +536a9ea8818461b1b10233c30c9f8ea982e2853a fcitx-3.3 +545bb4c4c7b4ef5256d4e5d45bd528ad127b8b58 fcitx-4.0.0 +585c4def2c712e5ff8c19bc78897a76af1212ae8 fcitx-4.0-rc1 +5ab9b47e86d20272ee27b40d2c3d4dcb19c94c46 fcitx-3.0.0 +62e670e8980e51c7c17f376c6a85ed367f4cc974 fcitx-3.6.4 +7445be62d7c4686f6422af6d37dcbbe7c20298f1 fcitx-3.2 +7616b910f1ebcc54fe7113e2d2ef1f5586836931 fcitx-2.0.2 +87a0d49cba0dd0e292bdfc1da3da4b63dd53ef96 fcitx-3.6.3 +89ebf3aba9390eb7fe9e7c2a06d2b9189e3e81b6 fcitx-3.0.3 +b367c39315363a577cb98a092dc05a02cc3e68b1 fcitx-3.6.2 +b75cc6c86a42cb339238712261238e4b381396b2 fcitx-3.4 +b906515b63b1418e86e4b736108f335a583e7ba1 fcitx-3.0.4 +c2c2e41c5c9f00f91c144ee568384f7a37efc49e fcitx-3.4.1 +c85d666ecec5e892b51c4b10a1d2d0225435ef2a fcitx-3.3.1 +f36e84efa6baadc1d0141a2f6096d1be279d177e fcitx-3.6 +e9b9346cfabf20c7b61efd380fa2068afb407340 4.0.1 +de370942e09fecb2ce5363a300736c0a33c30dcd 4.1.0 diff -Nru fcitx-4.0.1/INSTALL fcitx-4.1.1/INSTALL --- fcitx-4.0.1/INSTALL 2010-11-28 11:54:59.000000000 +0000 +++ fcitx-4.1.1/INSTALL 2011-09-08 16:00:05.000000000 +0000 @@ -1,229 +1,20 @@ -Copyright 1994, 1995, 1996, 1999, 2000, 2001, 2002 Free Software -Foundation, Inc. +Basic Install +==================== +mkdir build +cd build +cmake .. -DCMAKE_INSTALL_PREFIX= +make +make install - This file is free documentation; the Free Software Foundation gives -unlimited permission to copy, distribute and modify it. - -Basic Installation -================== - - These are generic installation instructions. - - The `configure' shell script attempts to guess correct values for -various system-dependent variables used during compilation. It uses -those values to create a `Makefile' in each directory of the package. -It may also create one or more `.h' files containing system-dependent -definitions. Finally, it creates a shell script `config.status' that -you can run in the future to recreate the current configuration, and a -file `config.log' containing compiler output (useful mainly for -debugging `configure'). - - It can also use an optional file (typically called `config.cache' -and enabled with `--cache-file=config.cache' or simply `-C') that saves -the results of its tests to speed up reconfiguring. (Caching is -disabled by default to prevent problems with accidental use of stale -cache files.) - - If you need to do unusual things to compile the package, please try -to figure out how `configure' could check whether to do them, and mail -diffs or instructions to the address given in the `README' so they can -be considered for the next release. If you are using the cache, and at -some point `config.cache' contains results you don't want to keep, you -may remove or edit it. - - The file `configure.ac' (or `configure.in') is used to create -`configure' by a program called `autoconf'. You only need -`configure.ac' if you want to change it or regenerate `configure' using -a newer version of `autoconf'. - -The simplest way to compile this package is: - - 1. `cd' to the directory containing the package's source code and type - `./configure' to configure the package for your system. If you're - using `csh' on an old version of System V, you might need to type - `sh ./configure' instead to prevent `csh' from trying to execute - `configure' itself. - - Running `configure' takes awhile. While running, it prints some - messages telling which features it is checking for. - - 2. Type `make' to compile the package. - - 3. Optionally, type `make check' to run any self-tests that come with - the package. - - 4. Type `make install' to install the programs and any data files and - documentation. - - 5. You can remove the program binaries and object files from the - source code directory by typing `make clean'. To also remove the - files that `configure' created (so you can compile the package for - a different kind of computer), type `make distclean'. There is - also a `make maintainer-clean' target, but that is intended mainly - for the package's developers. If you use it, you may have to get - all sorts of other programs in order to regenerate files that came - with the distribution. - -Compilers and Options +Dependency ===================== +LibX11, Cairo-Xlib for GUI +Wget for download data file (if it a full tarball, no need for this) +Intltool for internationalize - Some systems require unusual options for compilation or linking that -the `configure' script does not know about. Run `./configure --help' -for details on some of the pertinent environment variables. - - You can give `configure' initial values for configuration parameters -by setting variables in the command line or in the environment. Here -is an example: - - ./configure CC=c89 CFLAGS=-O2 LIBS=-lposix - - *Note Defining Variables::, for more details. - -Compiling For Multiple Architectures -==================================== - - You can compile the package for more than one kind of computer at the -same time, by placing the object files for each architecture in their -own directory. To do this, you must use a version of `make' that -supports the `VPATH' variable, such as GNU `make'. `cd' to the -directory where you want the object files and executables to go and run -the `configure' script. `configure' automatically checks for the -source code in the directory that `configure' is in and in `..'. - - If you have to use a `make' that does not support the `VPATH' -variable, you have to compile the package for one architecture at a -time in the source code directory. After you have installed the -package for one architecture, use `make distclean' before reconfiguring -for another architecture. - -Installation Names -================== - - By default, `make install' will install the package's files in -`/usr/local/bin', `/usr/local/man', etc. You can specify an -installation prefix other than `/usr/local' by giving `configure' the -option `--prefix=PATH'. - - You can specify separate installation prefixes for -architecture-specific files and architecture-independent files. If you -give `configure' the option `--exec-prefix=PATH', the package will use -PATH as the prefix for installing programs and libraries. -Documentation and other data files will still use the regular prefix. - - In addition, if you use an unusual directory layout you can give -options like `--bindir=PATH' to specify different values for particular -kinds of files. Run `configure --help' for a list of the directories -you can set and what kinds of files go in them. - - If the package supports it, you can cause programs to be installed -with an extra prefix or suffix on their names by giving `configure' the -option `--program-prefix=PREFIX' or `--program-suffix=SUFFIX'. - -Optional Features -================= - - Some packages pay attention to `--enable-FEATURE' options to -`configure', where FEATURE indicates an optional part of the package. -They may also pay attention to `--with-PACKAGE' options, where PACKAGE -is something like `gnu-as' or `x' (for the X Window System). The -`README' should mention any `--enable-' and `--with-' options that the -package recognizes. - - For packages that use the X Window System, `configure' can usually -find the X include and library files automatically, but if it doesn't, -you can use the `configure' options `--x-includes=DIR' and -`--x-libraries=DIR' to specify their locations. - -Specifying the System Type -========================== - - There may be some features `configure' cannot figure out -automatically, but needs to determine by the type of machine the package -will run on. Usually, assuming the package is built to be run on the -_same_ architectures, `configure' can figure that out, but if it prints -a message saying it cannot guess the machine type, give it the -`--build=TYPE' option. TYPE can either be a short name for the system -type, such as `sun4', or a canonical name which has the form: - - CPU-COMPANY-SYSTEM - -where SYSTEM can have one of these forms: - - OS KERNEL-OS - - See the file `config.sub' for the possible values of each field. If -`config.sub' isn't included in this package, then this package doesn't -need to know the machine type. - - If you are _building_ compiler tools for cross-compiling, you should -use the `--target=TYPE' option to select the type of system they will -produce code for. - - If you want to _use_ a cross compiler, that generates code for a -platform different from the build platform, you should specify the -"host" platform (i.e., that on which the generated programs will -eventually be run) with `--host=TYPE'. - -Sharing Defaults -================ - - If you want to set default values for `configure' scripts to share, -you can create a site shell script called `config.site' that gives -default values for variables like `CC', `cache_file', and `prefix'. -`configure' looks for `PREFIX/share/config.site' if it exists, then -`PREFIX/etc/config.site' if it exists. Or, you can set the -`CONFIG_SITE' environment variable to the location of the site script. -A warning: not all `configure' scripts look for a site script. - -Defining Variables -================== - - Variables not defined in a site shell script can be set in the -environment passed to `configure'. However, some packages may run -configure again during the build, and the customized values of these -variables may be lost. In order to avoid this problem, you should set -them in the `configure' command line, using `VAR=value'. For example: - - ./configure CC=/usr/local2/bin/gcc - -will cause the specified gcc to be used as the C compiler (unless it is -overridden in the site shell script). - -`configure' Invocation -====================== - - `configure' recognizes the following options to control how it -operates. - -`--help' -`-h' - Print a summary of the options to `configure', and exit. - -`--version' -`-V' - Print the version of Autoconf used to generate the `configure' - script, and exit. - -`--cache-file=FILE' - Enable the cache: use and save the results of the tests in FILE, - traditionally `config.cache'. FILE defaults to `/dev/null' to - disable caching. - -`--config-cache' -`-C' - Alias for `--cache-file=config.cache'. - -`--quiet' -`--silent' -`-q' - Do not print messages saying which checks are being made. To - suppress all normal output, redirect it to `/dev/null' (any error - messages will still be shown). - -`--srcdir=DIR' - Look for the package's source code in directory DIR. Usually - `configure' can determine that directory automatically. - -`configure' also accepts some other, not widely useful, options. Run -`configure --help' for more details. - +Optional Dependency +===================== +pango-cairo for better font rendering (recommended) +opencc for new Simplified Chinese to Traditional Chinese engine +dbus for kimpanel support +doxygen for build doc diff -Nru fcitx-4.0.1/install-sh fcitx-4.1.1/install-sh --- fcitx-4.0.1/install-sh 2010-11-28 11:54:51.000000000 +0000 +++ fcitx-4.1.1/install-sh 1970-01-01 00:00:00.000000000 +0000 @@ -1,520 +0,0 @@ -#!/bin/sh -# install - install a program, script, or datafile - -scriptversion=2009-04-28.21; # UTC - -# This originates from X11R5 (mit/util/scripts/install.sh), which was -# later released in X11R6 (xc/config/util/install.sh) with the -# following copyright and license. -# -# Copyright (C) 1994 X Consortium -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to -# deal in the Software without restriction, including without limitation the -# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or -# sell copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN -# AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC- -# TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -# -# Except as contained in this notice, the name of the X Consortium shall not -# be used in advertising or otherwise to promote the sale, use or other deal- -# ings in this Software without prior written authorization from the X Consor- -# tium. -# -# -# FSF changes to this file are in the public domain. -# -# Calling this script install-sh is preferred over install.sh, to prevent -# `make' implicit rules from creating a file called install from it -# when there is no Makefile. -# -# This script is compatible with the BSD install script, but was written -# from scratch. - -nl=' -' -IFS=" "" $nl" - -# set DOITPROG to echo to test this script - -# Don't use :- since 4.3BSD and earlier shells don't like it. -doit=${DOITPROG-} -if test -z "$doit"; then - doit_exec=exec -else - doit_exec=$doit -fi - -# Put in absolute file names if you don't have them in your path; -# or use environment vars. - -chgrpprog=${CHGRPPROG-chgrp} -chmodprog=${CHMODPROG-chmod} -chownprog=${CHOWNPROG-chown} -cmpprog=${CMPPROG-cmp} -cpprog=${CPPROG-cp} -mkdirprog=${MKDIRPROG-mkdir} -mvprog=${MVPROG-mv} -rmprog=${RMPROG-rm} -stripprog=${STRIPPROG-strip} - -posix_glob='?' -initialize_posix_glob=' - test "$posix_glob" != "?" || { - if (set -f) 2>/dev/null; then - posix_glob= - else - posix_glob=: - fi - } -' - -posix_mkdir= - -# Desired mode of installed file. -mode=0755 - -chgrpcmd= -chmodcmd=$chmodprog -chowncmd= -mvcmd=$mvprog -rmcmd="$rmprog -f" -stripcmd= - -src= -dst= -dir_arg= -dst_arg= - -copy_on_change=false -no_target_directory= - -usage="\ -Usage: $0 [OPTION]... [-T] SRCFILE DSTFILE - or: $0 [OPTION]... SRCFILES... DIRECTORY - or: $0 [OPTION]... -t DIRECTORY SRCFILES... - or: $0 [OPTION]... -d DIRECTORIES... - -In the 1st form, copy SRCFILE to DSTFILE. -In the 2nd and 3rd, copy all SRCFILES to DIRECTORY. -In the 4th, create DIRECTORIES. - -Options: - --help display this help and exit. - --version display version info and exit. - - -c (ignored) - -C install only if different (preserve the last data modification time) - -d create directories instead of installing files. - -g GROUP $chgrpprog installed files to GROUP. - -m MODE $chmodprog installed files to MODE. - -o USER $chownprog installed files to USER. - -s $stripprog installed files. - -t DIRECTORY install into DIRECTORY. - -T report an error if DSTFILE is a directory. - -Environment variables override the default commands: - CHGRPPROG CHMODPROG CHOWNPROG CMPPROG CPPROG MKDIRPROG MVPROG - RMPROG STRIPPROG -" - -while test $# -ne 0; do - case $1 in - -c) ;; - - -C) copy_on_change=true;; - - -d) dir_arg=true;; - - -g) chgrpcmd="$chgrpprog $2" - shift;; - - --help) echo "$usage"; exit $?;; - - -m) mode=$2 - case $mode in - *' '* | *' '* | *' -'* | *'*'* | *'?'* | *'['*) - echo "$0: invalid mode: $mode" >&2 - exit 1;; - esac - shift;; - - -o) chowncmd="$chownprog $2" - shift;; - - -s) stripcmd=$stripprog;; - - -t) dst_arg=$2 - shift;; - - -T) no_target_directory=true;; - - --version) echo "$0 $scriptversion"; exit $?;; - - --) shift - break;; - - -*) echo "$0: invalid option: $1" >&2 - exit 1;; - - *) break;; - esac - shift -done - -if test $# -ne 0 && test -z "$dir_arg$dst_arg"; then - # When -d is used, all remaining arguments are directories to create. - # When -t is used, the destination is already specified. - # Otherwise, the last argument is the destination. Remove it from $@. - for arg - do - if test -n "$dst_arg"; then - # $@ is not empty: it contains at least $arg. - set fnord "$@" "$dst_arg" - shift # fnord - fi - shift # arg - dst_arg=$arg - done -fi - -if test $# -eq 0; then - if test -z "$dir_arg"; then - echo "$0: no input file specified." >&2 - exit 1 - fi - # It's OK to call `install-sh -d' without argument. - # This can happen when creating conditional directories. - exit 0 -fi - -if test -z "$dir_arg"; then - trap '(exit $?); exit' 1 2 13 15 - - # Set umask so as not to create temps with too-generous modes. - # However, 'strip' requires both read and write access to temps. - case $mode in - # Optimize common cases. - *644) cp_umask=133;; - *755) cp_umask=22;; - - *[0-7]) - if test -z "$stripcmd"; then - u_plus_rw= - else - u_plus_rw='% 200' - fi - cp_umask=`expr '(' 777 - $mode % 1000 ')' $u_plus_rw`;; - *) - if test -z "$stripcmd"; then - u_plus_rw= - else - u_plus_rw=,u+rw - fi - cp_umask=$mode$u_plus_rw;; - esac -fi - -for src -do - # Protect names starting with `-'. - case $src in - -*) src=./$src;; - esac - - if test -n "$dir_arg"; then - dst=$src - dstdir=$dst - test -d "$dstdir" - dstdir_status=$? - else - - # Waiting for this to be detected by the "$cpprog $src $dsttmp" command - # might cause directories to be created, which would be especially bad - # if $src (and thus $dsttmp) contains '*'. - if test ! -f "$src" && test ! -d "$src"; then - echo "$0: $src does not exist." >&2 - exit 1 - fi - - if test -z "$dst_arg"; then - echo "$0: no destination specified." >&2 - exit 1 - fi - - dst=$dst_arg - # Protect names starting with `-'. - case $dst in - -*) dst=./$dst;; - esac - - # If destination is a directory, append the input filename; won't work - # if double slashes aren't ignored. - if test -d "$dst"; then - if test -n "$no_target_directory"; then - echo "$0: $dst_arg: Is a directory" >&2 - exit 1 - fi - dstdir=$dst - dst=$dstdir/`basename "$src"` - dstdir_status=0 - else - # Prefer dirname, but fall back on a substitute if dirname fails. - dstdir=` - (dirname "$dst") 2>/dev/null || - expr X"$dst" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$dst" : 'X\(//\)[^/]' \| \ - X"$dst" : 'X\(//\)$' \| \ - X"$dst" : 'X\(/\)' \| . 2>/dev/null || - echo X"$dst" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ - s//\1/ - q - } - /^X\(\/\/\)[^/].*/{ - s//\1/ - q - } - /^X\(\/\/\)$/{ - s//\1/ - q - } - /^X\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q' - ` - - test -d "$dstdir" - dstdir_status=$? - fi - fi - - obsolete_mkdir_used=false - - if test $dstdir_status != 0; then - case $posix_mkdir in - '') - # Create intermediate dirs using mode 755 as modified by the umask. - # This is like FreeBSD 'install' as of 1997-10-28. - umask=`umask` - case $stripcmd.$umask in - # Optimize common cases. - *[2367][2367]) mkdir_umask=$umask;; - .*0[02][02] | .[02][02] | .[02]) mkdir_umask=22;; - - *[0-7]) - mkdir_umask=`expr $umask + 22 \ - - $umask % 100 % 40 + $umask % 20 \ - - $umask % 10 % 4 + $umask % 2 - `;; - *) mkdir_umask=$umask,go-w;; - esac - - # With -d, create the new directory with the user-specified mode. - # Otherwise, rely on $mkdir_umask. - if test -n "$dir_arg"; then - mkdir_mode=-m$mode - else - mkdir_mode= - fi - - posix_mkdir=false - case $umask in - *[123567][0-7][0-7]) - # POSIX mkdir -p sets u+wx bits regardless of umask, which - # is incompatible with FreeBSD 'install' when (umask & 300) != 0. - ;; - *) - tmpdir=${TMPDIR-/tmp}/ins$RANDOM-$$ - trap 'ret=$?; rmdir "$tmpdir/d" "$tmpdir" 2>/dev/null; exit $ret' 0 - - if (umask $mkdir_umask && - exec $mkdirprog $mkdir_mode -p -- "$tmpdir/d") >/dev/null 2>&1 - then - if test -z "$dir_arg" || { - # Check for POSIX incompatibilities with -m. - # HP-UX 11.23 and IRIX 6.5 mkdir -m -p sets group- or - # other-writeable bit of parent directory when it shouldn't. - # FreeBSD 6.1 mkdir -m -p sets mode of existing directory. - ls_ld_tmpdir=`ls -ld "$tmpdir"` - case $ls_ld_tmpdir in - d????-?r-*) different_mode=700;; - d????-?--*) different_mode=755;; - *) false;; - esac && - $mkdirprog -m$different_mode -p -- "$tmpdir" && { - ls_ld_tmpdir_1=`ls -ld "$tmpdir"` - test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1" - } - } - then posix_mkdir=: - fi - rmdir "$tmpdir/d" "$tmpdir" - else - # Remove any dirs left behind by ancient mkdir implementations. - rmdir ./$mkdir_mode ./-p ./-- 2>/dev/null - fi - trap '' 0;; - esac;; - esac - - if - $posix_mkdir && ( - umask $mkdir_umask && - $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir" - ) - then : - else - - # The umask is ridiculous, or mkdir does not conform to POSIX, - # or it failed possibly due to a race condition. Create the - # directory the slow way, step by step, checking for races as we go. - - case $dstdir in - /*) prefix='/';; - -*) prefix='./';; - *) prefix='';; - esac - - eval "$initialize_posix_glob" - - oIFS=$IFS - IFS=/ - $posix_glob set -f - set fnord $dstdir - shift - $posix_glob set +f - IFS=$oIFS - - prefixes= - - for d - do - test -z "$d" && continue - - prefix=$prefix$d - if test -d "$prefix"; then - prefixes= - else - if $posix_mkdir; then - (umask=$mkdir_umask && - $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir") && break - # Don't fail if two instances are running concurrently. - test -d "$prefix" || exit 1 - else - case $prefix in - *\'*) qprefix=`echo "$prefix" | sed "s/'/'\\\\\\\\''/g"`;; - *) qprefix=$prefix;; - esac - prefixes="$prefixes '$qprefix'" - fi - fi - prefix=$prefix/ - done - - if test -n "$prefixes"; then - # Don't fail if two instances are running concurrently. - (umask $mkdir_umask && - eval "\$doit_exec \$mkdirprog $prefixes") || - test -d "$dstdir" || exit 1 - obsolete_mkdir_used=true - fi - fi - fi - - if test -n "$dir_arg"; then - { test -z "$chowncmd" || $doit $chowncmd "$dst"; } && - { test -z "$chgrpcmd" || $doit $chgrpcmd "$dst"; } && - { test "$obsolete_mkdir_used$chowncmd$chgrpcmd" = false || - test -z "$chmodcmd" || $doit $chmodcmd $mode "$dst"; } || exit 1 - else - - # Make a couple of temp file names in the proper directory. - dsttmp=$dstdir/_inst.$$_ - rmtmp=$dstdir/_rm.$$_ - - # Trap to clean up those temp files at exit. - trap 'ret=$?; rm -f "$dsttmp" "$rmtmp" && exit $ret' 0 - - # Copy the file name to the temp name. - (umask $cp_umask && $doit_exec $cpprog "$src" "$dsttmp") && - - # and set any options; do chmod last to preserve setuid bits. - # - # If any of these fail, we abort the whole thing. If we want to - # ignore errors from any of these, just make sure not to ignore - # errors from the above "$doit $cpprog $src $dsttmp" command. - # - { test -z "$chowncmd" || $doit $chowncmd "$dsttmp"; } && - { test -z "$chgrpcmd" || $doit $chgrpcmd "$dsttmp"; } && - { test -z "$stripcmd" || $doit $stripcmd "$dsttmp"; } && - { test -z "$chmodcmd" || $doit $chmodcmd $mode "$dsttmp"; } && - - # If -C, don't bother to copy if it wouldn't change the file. - if $copy_on_change && - old=`LC_ALL=C ls -dlL "$dst" 2>/dev/null` && - new=`LC_ALL=C ls -dlL "$dsttmp" 2>/dev/null` && - - eval "$initialize_posix_glob" && - $posix_glob set -f && - set X $old && old=:$2:$4:$5:$6 && - set X $new && new=:$2:$4:$5:$6 && - $posix_glob set +f && - - test "$old" = "$new" && - $cmpprog "$dst" "$dsttmp" >/dev/null 2>&1 - then - rm -f "$dsttmp" - else - # Rename the file to the real destination. - $doit $mvcmd -f "$dsttmp" "$dst" 2>/dev/null || - - # The rename failed, perhaps because mv can't rename something else - # to itself, or perhaps because mv is so ancient that it does not - # support -f. - { - # Now remove or move aside any old file at destination location. - # We try this two ways since rm can't unlink itself on some - # systems and the destination file might be busy for other - # reasons. In this case, the final cleanup might fail but the new - # file should still install successfully. - { - test ! -f "$dst" || - $doit $rmcmd -f "$dst" 2>/dev/null || - { $doit $mvcmd -f "$dst" "$rmtmp" 2>/dev/null && - { $doit $rmcmd -f "$rmtmp" 2>/dev/null; :; } - } || - { echo "$0: cannot unlink or rename $dst" >&2 - (exit 1); exit 1 - } - } && - - # Now rename the file to the real destination. - $doit $mvcmd "$dsttmp" "$dst" - } - fi || exit 1 - - trap '' 0 - fi -done - -# Local variables: -# eval: (add-hook 'write-file-hooks 'time-stamp) -# time-stamp-start: "scriptversion=" -# time-stamp-format: "%:y-%02m-%02d.%02H" -# time-stamp-time-zone: "UTC" -# time-stamp-end: "; # UTC" -# End: diff -Nru fcitx-4.0.1/lib/FrameMgr.c fcitx-4.1.1/lib/FrameMgr.c --- fcitx-4.0.1/lib/FrameMgr.c 2010-11-28 11:54:51.000000000 +0000 +++ fcitx-4.1.1/lib/FrameMgr.c 1970-01-01 00:00:00.000000000 +0000 @@ -1,2453 +0,0 @@ -/****************************************************************** -Copyright 1993, 1994 by Digital Equipment Corporation, Maynard, Massachusetts, - - All Rights Reserved - -Permission to use, copy, modify, and distribute this software and its -documentation for any purpose and without fee is hereby granted, -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 Digital or MIT not be -used in advertising or publicity pertaining to distribution of the -software without specific, written prior permission. - -DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING -ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL -DIGITAL 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. - - Author: Hiroyuki Miyamoto Digital Equipment Corporation - miyamoto@jrd.dec.com - - This version tidied and debugged by Steve Underwood May 1999 - -******************************************************************/ - -#include -#include -#include "FrameMgr.h" - -/* Convenient macro */ - -#define _UNIT(n) ((int)(n) & 0xFF) -#define _NUMBER(n) (((int)(n) >> 8) & 0xFF) - -/* For byte swapping */ - -#define Swap16(p, n) ((p)->byte_swap ? \ -(((n) << 8 & 0xFF00) | \ - ((n) >> 8 & 0xFF) \ -) : n) -#define Swap32(p, n) ((p)->byte_swap ? \ - (((n) << 24 & 0xFF000000) | \ - ((n) << 8 & 0xFF0000) | \ - ((n) >> 8 & 0xFF00) | \ - ((n) >> 24 & 0xFF) \ - ) : n) -#define Swap64(p, n) ((p)->byte_swap ? \ - (((n) << 56 & 0xFF00000000000000) | \ - ((n) << 40 & 0xFF000000000000) | \ - ((n) << 24 & 0xFF0000000000) | \ - ((n) << 8 & 0xFF00000000) | \ - ((n) >> 8 & 0xFF000000) | \ - ((n) >> 24 & 0xFF0000) | \ - ((n) >> 40 & 0xFF00) | \ - ((n) >> 56 & 0xFF) \ - ) : n) - -/* Type definition */ - -typedef struct _Iter *Iter; - -typedef struct _FrameInst *FrameInst; - -typedef union -{ - int num; /* For BARRAY */ - FrameInst fi; /* For POINTER */ - Iter iter; /* For ITER */ -} ExtraDataRec, *ExtraData; - -typedef struct _Chain -{ - ExtraDataRec d; - int frame_no; - struct _Chain *next; -} ChainRec, *Chain; - -typedef struct _ChainMgr -{ - Chain top; - Chain tail; -} ChainMgrRec, *ChainMgr; - -typedef struct _ChainIter -{ - Chain cur; -} ChainIterRec, *ChainIter; - -typedef struct _FrameIter -{ - Iter iter; - Bool counting; - unsigned int counter; - int end; - struct _FrameIter* next; -} FrameIterRec, *FrameIter; - -typedef struct _FrameInst -{ - XimFrame _template; - ChainMgrRec cm; - int cur_no; -} FrameInstRec; - -typedef void (*IterStartWatchProc) (Iter it, void *client_data); - -typedef struct _Iter -{ - XimFrame _template; - int max_count; - Bool allow_expansion; - ChainMgrRec cm; - int cur_no; - IterStartWatchProc start_watch_proc; - void *client_data; - Bool start_counter; -} IterRec; - -typedef struct _FrameMgr -{ - XimFrame frame; - FrameInst fi; - char *area; - int idx; - Bool byte_swap; - int total_size; - FrameIter iters; -} FrameMgrRec; - -typedef union -{ - int num; /* For BARRAY and PAD */ - struct - { /* For COUNTER_* */ - Iter iter; - Bool is_byte_len; - } counter; -} XimFrameTypeInfoRec, *XimFrameTypeInfo; - -/* Special values */ -#define NO_VALUE -1 -#define NO_VALID_FIELD -2 - -static FrameInst FrameInstInit(XimFrame frame); -static void FrameInstFree(FrameInst fi); -static XimFrameType FrameInstGetNextType(FrameInst fi, XimFrameTypeInfo info); -static XimFrameType FrameInstPeekNextType(FrameInst fi, XimFrameTypeInfo info); -static FmStatus FrameInstSetSize(FrameInst fi, int num); -static FmStatus FrameInstSetIterCount(FrameInst fi, int num); -static int FrameInstGetTotalSize(FrameInst fi); -static void FrameInstReset(FrameInst fi); - -static Iter IterInit(XimFrame frame, int count); -static void IterFree(Iter it); -static int FrameInstGetSize(FrameInst fi); -static int IterGetSize(Iter it); -static XimFrameType IterGetNextType(Iter it, XimFrameTypeInfo info); -static XimFrameType IterPeekNextType(Iter it, XimFrameTypeInfo info); -static FmStatus IterSetSize(Iter it, int num); -static FmStatus IterSetIterCount(Iter it, int num); -static int IterGetTotalSize(Iter it); -static void IterReset(Iter it); -static Bool IterIsLoopEnd(Iter it, Bool* myself); -static void IterSetStartWatch(Iter it, IterStartWatchProc proc, void* client_data); -static void _IterStartWatch(Iter it, void* client_data); - -static ExtraData ChainMgrGetExtraData(ChainMgr cm, int frame_no); -static ExtraData ChainMgrSetData(ChainMgr cm, int frame_no, - ExtraDataRec data); -static Bool ChainIterGetNext(ChainIter ci, int* frame_no, ExtraData d); -static int _FrameInstIncrement(XimFrame frame, int count); -static int _FrameInstDecrement(XimFrame frame, int count); -static int _FrameInstGetItemSize(FrameInst fi, int cur_no); -static Bool FrameInstIsIterLoopEnd(FrameInst fi); - -static FrameIter _FrameMgrAppendIter(FrameMgr fm, Iter it, int end); -static FrameIter _FrameIterCounterIncr(FrameIter fitr, int i); -static void _FrameMgrRemoveIter(FrameMgr fm, FrameIter it); -static Bool _FrameMgrIsIterLoopEnd(FrameMgr fm); -static Bool _FrameMgrProcessPadding(FrameMgr fm, FmStatus* status); - -#define IterGetIterCount(it) ((it)->allow_expansion ? \ -NO_VALUE : (it)->max_count) - -#define IterFixIteration(it) ((it)->allow_expansion = False) - -#define IterSetStarter(it) ((it)->start_counter = True) - -#define ChainMgrInit(cm) (cm)->top = (cm)->tail = NULL -#define ChainMgrFree(cm) \ -{ \ - Chain tmp; \ - Chain cur = (cm)->top; \ - \ - while (cur) \ - { \ - tmp = cur->next; \ - Xfree (cur); \ - cur = tmp; \ - } \ -} - -#define ChainIterInit(ci, cm) \ -{ \ - (ci)->cur = (cm)->top; \ -} - -/* ChainIterFree has nothing to do. */ -#define ChainIterFree(ci) - -#define FrameInstIsEnd(fi) ((fi)->_template[(fi)->cur_no].type == EOL) - -FrameMgr FrameMgrInit (XimFrame frame, char* area, Bool byte_swap) -{ - FrameMgr fm; - - fm = (FrameMgr) Xmalloc (sizeof (FrameMgrRec)); - - fm->frame = frame; - fm->fi = FrameInstInit (frame); - fm->area = (char *) area; - fm->idx = 0; - fm->byte_swap = byte_swap; - fm->total_size = NO_VALUE; - fm->iters = NULL; - - return fm; -} - -void FrameMgrInitWithData (FrameMgr fm, - XimFrame frame, - void * area, - Bool byte_swap) -{ - fm->frame = frame; - fm->fi = FrameInstInit (frame); - fm->area = (char *) area; - fm->idx = 0; - fm->byte_swap = byte_swap; - fm->total_size = NO_VALUE; -} - -void FrameMgrFree (FrameMgr fm) -{ - FrameInstFree (fm->fi); - Xfree (fm); -} - -FmStatus FrameMgrSetBuffer (FrameMgr fm, void* area) -{ - if (fm->area) - return FmBufExist; - fm->area = (char *) area; - return FmSuccess; -} - -FmStatus _FrameMgrPutToken (FrameMgr fm, void *data, int data_size) -{ - XimFrameType type; - XimFrameTypeInfoRec info; - - if (fm->total_size != NO_VALUE && fm->idx >= fm->total_size) - return FmNoMoreData; - /*endif*/ - - type = FrameInstGetNextType(fm->fi, &info); - - if (type & COUNTER_MASK) - { - unsigned long input_length; - - if (info.counter.is_byte_len) - { - if ((input_length = IterGetTotalSize (info.counter.iter)) - == NO_VALUE) - { - return FmCannotCalc; - } - /*endif*/ - } - else - { - if ((input_length = IterGetIterCount (info.counter.iter)) - == NO_VALUE) - { - return FmCannotCalc; - } - /*endif*/ - } - /*endif*/ - switch (type) - { - case COUNTER_BIT8: - *(CARD8 *) (fm->area + fm->idx) = input_length; - fm->idx++; - break; - - case COUNTER_BIT16: - *(CARD16 *) (fm->area + fm->idx) = Swap16 (fm, input_length); - fm->idx += 2; - break; - - case COUNTER_BIT32: - *(CARD32 *) (fm->area + fm->idx) = Swap32 (fm, input_length); - fm->idx += 4; - break; - -#if defined(_NEED64BIT) - case COUNTER_BIT64: - *(CARD64 *) (fm->area + fm->idx) = Swap64 (fm, input_length); - fm->idx += 8; - break; -#endif - default: - break; - } - /*endswitch*/ - _FrameMgrPutToken(fm, data, data_size); - return FmSuccess; - } - /*endif*/ - - switch (type) - { - case BIT8: - if (data_size == sizeof (unsigned char)) - { - unsigned long num = *(unsigned char *) data; - *(CARD8 *) (fm->area + fm->idx) = num; - } - else if (data_size == sizeof (unsigned short)) - { - unsigned long num = *(unsigned short *) data; - *(CARD8 *) (fm->area + fm->idx) = num; - } - else if (data_size == sizeof (unsigned int)) - { - unsigned long num = *(unsigned int *) data; - *(CARD8 *) (fm->area + fm->idx) = num; - } - else if (data_size == sizeof (unsigned long)) - { - unsigned long num = *(unsigned long *) data; - *(CARD8 *) (fm->area + fm->idx) = num; - } - else - { - ; /* Should never be reached */ - } - /*endif*/ - fm->idx++; - return FmSuccess; - - case BIT16: - if (data_size == sizeof (unsigned char)) - { - unsigned long num = *(unsigned char *) data; - *(CARD16*)(fm->area + fm->idx) = Swap16 (fm, num); - } - else if (data_size == sizeof (unsigned short)) - { - unsigned long num = *(unsigned short *) data; - *(CARD16 *) (fm->area + fm->idx) = Swap16 (fm, num); - } - else if (data_size == sizeof (unsigned int)) - { - unsigned long num = *(unsigned int *) data; - *(CARD16 *) (fm->area + fm->idx) = Swap16 (fm, num); - } - else if (data_size == sizeof (unsigned long)) - { - unsigned long num = *(unsigned long *) data; - *(CARD16 *) (fm->area + fm->idx) = Swap16 (fm, num); - } - else - { - ; /* Should never reached */ - } - /*endif*/ - fm->idx += 2; - return FmSuccess; - - case BIT32: - if (data_size == sizeof (unsigned char)) - { - unsigned long num = *(unsigned char *) data; - *(CARD32 *) (fm->area + fm->idx) = Swap32 (fm, num); - } - else if (data_size == sizeof (unsigned short)) - { - unsigned long num = *(unsigned short *) data; - *(CARD32 *) (fm->area + fm->idx) = Swap32 (fm, num); - } - else if (data_size == sizeof (unsigned int)) - { - unsigned long num = *(unsigned int *) data; - *(CARD32 *) (fm->area + fm->idx) = Swap32 (fm, num); - } - else if (data_size == sizeof (unsigned long)) - { - unsigned long num = *(unsigned long *) data; - *(CARD32 *) (fm->area + fm->idx) = Swap32 (fm, num); - } - else - { - ; /* Should never reached */ - } - /*endif*/ - fm->idx += 4; - return FmSuccess; - -#if defined(_NEED64BIT) - case BIT64: - if (data_size == sizeof (unsigned char)) - { - unsigned long num = *(unsigned char *) data; - *(CARD64 *) (fm->area + fm->idx) = Swap64 (fm, num); - } - else if (data_size == sizeof (unsigned short)) - { - unsigned long num = *(unsigned short *) data; - *(CARD64 *) (fm->area + fm->idx) = Swap64 (fm, num); - } - else if (data_size == sizeof (unsigned int)) - { - unsigned long num = *(unsigned int *) data; - *(CARD64 *) (fm->area + fm->idx) = Swap64 (fm, num); - } - else if (data_size == sizeof (unsigned long)) - { - unsigned long num = *(unsigned long *) data; - *(CARD64 *) (fm->area + fm->idx) = Swap64 (fm, num); - } - else - { - ; /* Should never reached */ - } - /*endif*/ - fm->idx += 4; - return FmSuccess; -#endif - - case BARRAY: - if (info.num == NO_VALUE) - return FmInvalidCall; - /*endif*/ - if (info.num > 0) - { - memcpy (fm->area + fm->idx, *(char **) data, info.num); - fm->idx += info.num; - } - /*endif*/ - return FmSuccess; - - case PADDING: - if (info.num == NO_VALUE) - return FmInvalidCall; - /*endif*/ - fm->idx += info.num; - return _FrameMgrPutToken(fm, data, data_size); - - case ITER: - return FmInvalidCall; - - case EOL: - return FmEOD; - default: - break; - } - /*endswitch*/ - return (FmStatus) NULL; /* Should never be reached */ -} - -FmStatus _FrameMgrGetToken (FrameMgr fm , void* data, int data_size) -{ - XimFrameType type; - static XimFrameTypeInfoRec info; /* memory */ - FrameIter fitr; - - if (fm->total_size != NO_VALUE && fm->idx >= fm->total_size) - return FmNoMoreData; - /*endif*/ - - type = FrameInstGetNextType(fm->fi, &info); - - if (type & COUNTER_MASK) - { - int end=0; - FrameIter client_data; - - type &= ~COUNTER_MASK; - switch (type) - { - case BIT8: - end = *(CARD8 *) (fm->area + fm->idx); - break; - - case BIT16: - end = Swap16 (fm, *(CARD16 *) (fm->area + fm->idx)); - break; - - case BIT32: - end = Swap32 (fm, *(CARD32 *) (fm->area + fm->idx)); - break; - -#if defined(_NEED64BIT) - case BIT64: - end = Swap64 (fm, *(CARD64 *) (fm->area + fm->idx)); - break; -#endif - default: - break; - } - /*endswitch*/ - - if ((client_data = _FrameMgrAppendIter (fm, info.counter.iter, end))) - { - IterSetStarter (info.counter.iter); - IterSetStartWatch (info.counter.iter, - _IterStartWatch, - (void *) client_data); - } - /*endif*/ - } - /*endif*/ - - type &= ~COUNTER_MASK; - switch (type) - { - case BIT8: - if (data_size == sizeof (unsigned char)) - { - *(unsigned char*) data = *(CARD8 *) (fm->area + fm->idx); - } - else if (data_size == sizeof (unsigned short)) - { - *(unsigned short *) data = *(CARD8 *) (fm->area + fm->idx); - } - else if (data_size == sizeof (unsigned int)) - { - *(unsigned int *) data = *(CARD8 *) (fm->area + fm->idx); - } - else if (data_size == sizeof (unsigned long)) - { - *(unsigned long *) data = *(CARD8 *) (fm->area + fm->idx); - } - else - { - ; /* Should never reached */ - } - /*endif*/ - fm->idx++; - if ((fitr = _FrameIterCounterIncr (fm->iters, 1/*BIT8*/))) - _FrameMgrRemoveIter (fm, fitr); - /*endif*/ - return FmSuccess; - - case BIT16: - if (data_size == sizeof (unsigned char)) - { - *(unsigned char *) data = - Swap16 (fm, *(CARD16 *) (fm->area + fm->idx)); - } - else if (data_size == sizeof (unsigned short)) - { - *(unsigned short *) data = - Swap16 (fm, *(CARD16 *) (fm->area + fm->idx)); - } - else if (data_size == sizeof (unsigned int)) - { - *(unsigned int *) data = - Swap16 (fm, *(CARD16 *) (fm->area + fm->idx)); - } - else if (data_size == sizeof (unsigned long)) - { - *(unsigned long *) data = - Swap16 (fm, *(CARD16 *) (fm->area + fm->idx)); - } - else - { - ; /* Should never reached */ - } - /*endif*/ - fm->idx += 2; - if ((fitr = _FrameIterCounterIncr (fm->iters, 2/*BIT16*/))) - _FrameMgrRemoveIter(fm, fitr); - /*endif*/ - return FmSuccess; - - case BIT32: - if (data_size == sizeof (unsigned char)) - { - *(unsigned char *) data = - Swap32 (fm, *(CARD32 *) (fm->area + fm->idx)); - } - else if (data_size == sizeof (unsigned short)) - { - *(unsigned short *) data = - Swap32 (fm, *(CARD32 *) (fm->area + fm->idx)); - } - else if (data_size == sizeof (unsigned int)) - { - *(unsigned int *) data = - Swap32 (fm, *(CARD32 *) (fm->area + fm->idx)); - } - else if (data_size == sizeof (unsigned long)) - { - *(unsigned long *) data = - Swap32 (fm, *(CARD32 *) (fm->area + fm->idx)); - } - else - { - ; /* Should never reached */ - } - /*endif*/ - fm->idx += 4; - if ((fitr = _FrameIterCounterIncr (fm->iters, 4/*BIT32*/))) - _FrameMgrRemoveIter (fm, fitr); - /*endif*/ - return FmSuccess; - -#if defined(_NEED64BIT) - case BIT64: - if (data_size == sizeof (unsigned char)) - { - *(unsigned char *) data = - Swap64 (fm, *(CARD64 *) (fm->area + fm->idx)); - } - else if (data_size == sizeof (unsigned short)) - { - *(unsigned short *) data = - Swap64 (fm, *(CARD64 *) (fm->area + fm->idx)); - } - else if (data_size == sizeof (unsigned int)) - { - *(unsigned int *) data = - Swap64 (fm, *(CARD64 *) (fm->area + fm->idx)); - } - else if (data_size == sizeof (unsigned long)) - { - *(unsigned long *) data = - Swap64 (fm, *(CARD64 *) (fm->area + fm->idx)); - } - else - { - ; /* Should never reached */ - } - /*endif*/ - fm->idx += 8; - if ((fitr = _FrameIterCounterIncr (fm->iters, 8/*BIT64*/))) - _FrameMgrRemoveIter (fm, fitr); - /*endif*/ - return FmSuccess; -#endif - - case BARRAY: - if (info.num == NO_VALUE) - return FmInvalidCall; - /*endif*/ - if (info.num > 0) - { - *(char **) data = fm->area + fm->idx; - - fm->idx += info.num; - if ((fitr = _FrameIterCounterIncr (fm->iters, info.num))) - _FrameMgrRemoveIter (fm, fitr); - /*endif*/ - } - else - { - *(char **) data = NULL; - } - /*endif*/ - return FmSuccess; - - case PADDING: - if (info.num == NO_VALUE) - return FmInvalidCall; - /*endif*/ - fm->idx += info.num; - if ((fitr = _FrameIterCounterIncr (fm->iters, info.num))) - _FrameMgrRemoveIter (fm, fitr); - /*endif*/ - return _FrameMgrGetToken (fm, data, data_size); - - case ITER: - return FmInvalidCall; /* if comes here, it's a bug! */ - - case EOL: - return FmEOD; - default: - break; - } - /*endswitch*/ - return (FmStatus) NULL; /* Should never be reached */ -} - -FmStatus FrameMgrSetSize (FrameMgr fm, int barray_size) -{ - if (FrameInstSetSize (fm->fi, barray_size) == FmSuccess) - return FmSuccess; - /*endif*/ - return FmNoMoreData; -} - -FmStatus FrameMgrSetIterCount (FrameMgr fm, int count) -{ - if (FrameInstSetIterCount (fm->fi, count) == FmSuccess) - return FmSuccess; - /*endif*/ - return FmNoMoreData; -} - -FmStatus FrameMgrSetTotalSize (FrameMgr fm, int total_size) -{ - fm->total_size = total_size; - return FmSuccess; -} - -int FrameMgrGetTotalSize (FrameMgr fm) -{ - return FrameInstGetTotalSize (fm->fi); -} - -int FrameMgrGetSize (FrameMgr fm) -{ - register int ret_size; - - ret_size = FrameInstGetSize (fm->fi); - if (ret_size == NO_VALID_FIELD) - return NO_VALUE; - /*endif*/ - return ret_size; -} - -FmStatus FrameMgrSkipToken (FrameMgr fm, int skip_count) -{ - XimFrameType type; - XimFrameTypeInfoRec info; - register int i; - - if (fm->total_size != NO_VALUE && fm->idx >= fm->total_size) - return FmNoMoreData; - /*endif*/ - for (i = 0; i < skip_count; i++) - { - type = FrameInstGetNextType (fm->fi, &info); - type &= ~COUNTER_MASK; - - switch (type) - { - case BIT8: - fm->idx++; - break; - - case BIT16: - fm->idx += 2; - break; - - case BIT32: - fm->idx += 4; - break; - - case BIT64: - fm->idx += 8; - break; - - case BARRAY: - if (info.num == NO_VALUE) - return FmInvalidCall; - /*endif*/ - fm->idx += info.num; - break; - - case PADDING: - if (info.num == NO_VALUE) - return FmInvalidCall; - /*endif*/ - fm->idx += info.num; - return FrameMgrSkipToken (fm, skip_count); - - case ITER: - return FmInvalidCall; - - case EOL: - return FmEOD; - default: - break; - } - /*endswitch*/ - } - /*endfor*/ - return FmSuccess; -} - -void FrameMgrReset (FrameMgr fm) -{ - fm->idx = 0; - FrameInstReset (fm->fi); -} - -Bool FrameMgrIsIterLoopEnd (FrameMgr fm, FmStatus* status) -{ - do - { - if (_FrameMgrIsIterLoopEnd (fm)) - return True; - /*endif*/ - } - while (_FrameMgrProcessPadding (fm, status)); - - return False; -} - - -/* Internal routines */ - -static Bool _FrameMgrIsIterLoopEnd (FrameMgr fm) -{ - return FrameInstIsIterLoopEnd (fm->fi); -} - -static Bool _FrameMgrProcessPadding (FrameMgr fm, FmStatus* status) -{ - XimFrameTypeInfoRec info; - XimFrameType next_type = FrameInstPeekNextType (fm->fi, &info); - FrameIter fitr; - - if (next_type == PADDING) - { - if (info.num == NO_VALUE) - { - *status = FmInvalidCall; - return True; - } - /*endif*/ - next_type = FrameInstGetNextType (fm->fi, &info); - fm->idx += info.num; - if ((fitr = _FrameIterCounterIncr (fm->iters, info.num))) - _FrameMgrRemoveIter (fm, fitr); - /*endif*/ - *status = FmSuccess; - return True; - } - /*endif*/ - *status = FmSuccess; - return False; -} - -static FrameInst FrameInstInit (XimFrame frame) -{ - FrameInst fi; - - fi = (FrameInst) Xmalloc (sizeof (FrameInstRec)); - - fi->_template = frame; - fi->cur_no = 0; - ChainMgrInit (&fi->cm); - return fi; -} - -static void FrameInstFree (FrameInst fi) -{ - ChainIterRec ci; - int frame_no; - ExtraDataRec d; - - ChainIterInit (&ci, &fi->cm); - - while (ChainIterGetNext (&ci, &frame_no, &d)) - { - register XimFrameType type; - type = fi->_template[frame_no].type; - if (type == ITER) - { - if (d.iter) - IterFree (d.iter); - /*endif*/ - } - else if (type == POINTER) - { - if (d.fi) - FrameInstFree (d.fi); - /*endif*/ - } - /*endif*/ - } - /*endwhile*/ - ChainIterFree (&ci); - ChainMgrFree (&fi->cm); - Xfree (fi); -} - -static XimFrameType FrameInstGetNextType(FrameInst fi, XimFrameTypeInfo info) -{ - XimFrameType ret_type; - - ret_type = fi->_template[fi->cur_no].type; - - switch (ret_type) - { - case BIT8: - case BIT16: - case BIT32: - case BIT64: - case EOL: - fi->cur_no = _FrameInstIncrement(fi->_template, fi->cur_no); - break; - - case COUNTER_BIT8: - case COUNTER_BIT16: - case COUNTER_BIT32: - case COUNTER_BIT64: - if (info) - { - register int offset, iter_idx; - - info->counter.is_byte_len = - (((long) fi->_template[fi->cur_no].data & 0xFF)) == FmCounterByte; - offset = ((long) fi->_template[fi->cur_no].data) >> 8; - iter_idx = fi->cur_no + offset; - if (fi->_template[iter_idx].type == ITER) - { - ExtraData d; - ExtraDataRec dr; - - if ((d = ChainMgrGetExtraData (&fi->cm, iter_idx)) == NULL) - { - dr.iter = IterInit (&fi->_template[iter_idx + 1], NO_VALUE); - d = ChainMgrSetData (&fi->cm, iter_idx, dr); - } - /*endif*/ - info->counter.iter = d->iter; - } - else - { - /* Should never reach here */ - } - /*endif*/ - } - /*endif*/ - fi->cur_no = _FrameInstIncrement (fi->_template, fi->cur_no); - break; - - case BARRAY: - if (info) - { - ExtraData d; - - if ((d = ChainMgrGetExtraData (&fi->cm, fi->cur_no)) == NULL) - info->num = NO_VALUE; - else - info->num = d->num; - /*endif*/ - } - /*endif*/ - fi->cur_no = _FrameInstIncrement (fi->_template, fi->cur_no); - break; - - case PADDING: - if (info) - { - register int unit; - register int number; - register int size; - register int i; - - unit = _UNIT ((long) fi->_template[fi->cur_no].data); - number = _NUMBER ((long) fi->_template[fi->cur_no].data); - - i = fi->cur_no; - size = 0; - while (number > 0) - { - i = _FrameInstDecrement (fi->_template, i); - size += _FrameInstGetItemSize (fi, i); - number--; - } - /*endwhile*/ - info->num = (unit - (size%unit))%unit; - } - /*endif*/ - fi->cur_no = _FrameInstIncrement (fi->_template, fi->cur_no); - break; - - case ITER: - { - ExtraData d; - ExtraDataRec dr; - XimFrameType sub_type; - - - if ((d = ChainMgrGetExtraData (&fi->cm, fi->cur_no)) == NULL) - { - dr.iter = IterInit (&fi->_template[fi->cur_no + 1], NO_VALUE); - d = ChainMgrSetData (&fi->cm, fi->cur_no, dr); - } - /*endif*/ - sub_type = IterGetNextType (d->iter, info); - if (sub_type == EOL) - { - fi->cur_no = _FrameInstIncrement (fi->_template, fi->cur_no); - ret_type = FrameInstGetNextType (fi, info); - } - else - { - ret_type = sub_type; - } - /*endif*/ - } - break; - - case POINTER: - { - ExtraData d; - ExtraDataRec dr; - XimFrameType sub_type; - - if ((d = ChainMgrGetExtraData (&fi->cm, fi->cur_no)) == NULL) - { - dr.fi = FrameInstInit (fi->_template[fi->cur_no + 1].data); - d = ChainMgrSetData (&fi->cm, fi->cur_no, dr); - } - /*endif*/ - sub_type = FrameInstGetNextType (d->fi, info); - if (sub_type == EOL) - { - fi->cur_no = _FrameInstIncrement (fi->_template, fi->cur_no); - ret_type = FrameInstGetNextType (fi, info); - } - else - { - ret_type = sub_type; - } - /*endif*/ - } - break; - default: - break; - } - /*endswitch*/ - return ret_type; -} - -static XimFrameType FrameInstPeekNextType (FrameInst fi, XimFrameTypeInfo info) -{ - XimFrameType ret_type; - - ret_type = fi->_template[fi->cur_no].type; - - switch (ret_type) - { - case BIT8: - case BIT16: - case BIT32: - case BIT64: - case EOL: - break; - - case COUNTER_BIT8: - case COUNTER_BIT16: - case COUNTER_BIT32: - case COUNTER_BIT64: - if (info) - { - register int offset; - register int iter_idx; - - info->counter.is_byte_len = - (((long) fi->_template[fi->cur_no].data) & 0xFF) == FmCounterByte; - offset = ((long)fi->_template[fi->cur_no].data) >> 8; - iter_idx = fi->cur_no + offset; - if (fi->_template[iter_idx].type == ITER) - { - ExtraData d; - ExtraDataRec dr; - - if ((d = ChainMgrGetExtraData (&fi->cm, iter_idx)) == NULL) - { - dr.iter = IterInit (&fi->_template[iter_idx + 1], NO_VALUE); - d = ChainMgrSetData (&fi->cm, iter_idx, dr); - } - /*endif*/ - info->counter.iter = d->iter; - } - else - { - /* Should not be reached here */ - } - /*endif*/ - } - /*endif*/ - break; - - case BARRAY: - if (info) - { - ExtraData d; - - if ((d = ChainMgrGetExtraData (&fi->cm, fi->cur_no)) == NULL) - info->num = NO_VALUE; - else - info->num = d->num; - /*endif*/ - } - /*endif*/ - break; - - case PADDING: - if (info) - { - register int unit; - register int number; - register int size; - register int i; - - unit = _UNIT ((long) fi->_template[fi->cur_no].data); - number = _NUMBER ((long) fi->_template[fi->cur_no].data); - - i = fi->cur_no; - size = 0; - while (number > 0) - { - i = _FrameInstDecrement (fi->_template, i); - size += _FrameInstGetItemSize (fi, i); - number--; - } - /*endwhile*/ - info->num = (unit - (size%unit))%unit; - } - /*endif*/ - break; - - case ITER: - { - ExtraData d; - ExtraDataRec dr; - XimFrameType sub_type; - - if ((d = ChainMgrGetExtraData (&fi->cm, fi->cur_no)) == NULL) - { - dr.iter = IterInit (&fi->_template[fi->cur_no + 1], NO_VALUE); - d = ChainMgrSetData (&fi->cm, fi->cur_no, dr); - } - /*endif*/ - sub_type = IterPeekNextType (d->iter, info); - if (sub_type == EOL) - ret_type = FrameInstPeekNextType (fi, info); - else - ret_type = sub_type; - /*endif*/ - } - break; - - case POINTER: - { - ExtraData d; - ExtraDataRec dr; - XimFrameType sub_type; - - if ((d = ChainMgrGetExtraData (&fi->cm, fi->cur_no)) == NULL) - { - dr.fi = FrameInstInit (fi->_template[fi->cur_no + 1].data); - d = ChainMgrSetData (&fi->cm, fi->cur_no, dr); - } - /*endif*/ - sub_type = FrameInstPeekNextType (d->fi, info); - if (sub_type == EOL) - ret_type = FrameInstPeekNextType (fi, info); - else - ret_type = sub_type; - /*endif*/ - default: - break; - } - break; - } - /*endswitch*/ - return ret_type; -} - -static Bool FrameInstIsIterLoopEnd (FrameInst fi) -{ - Bool ret = False; - - if (fi->_template[fi->cur_no].type == ITER) - { - ExtraData d = ChainMgrGetExtraData (&fi->cm, fi->cur_no); - Bool yourself; - - if (d) - { - ret = IterIsLoopEnd (d->iter, &yourself); - if (ret && yourself) - fi->cur_no = _FrameInstIncrement (fi->_template, fi->cur_no); - /*endif*/ - } - /*endif*/ - } - /*endif*/ - return (ret); -} - -static FrameIter _FrameMgrAppendIter (FrameMgr fm, Iter it, int end) -{ - FrameIter p = fm->iters; - - while (p && p->next) - p = p->next; - /*endwhile*/ - - if (!p) - { - fm->iters = - p = (FrameIter) Xmalloc (sizeof (FrameIterRec)); - } - else - { - p->next = (FrameIter) Xmalloc (sizeof (FrameIterRec)); - p = p->next; - } - /*endif*/ - if (p) - { - p->iter = it; - p->counting = False; - p->counter = 0; - p->end = end; - p->next = NULL; - } - /*endif*/ - return (p); -} - -static void _FrameMgrRemoveIter (FrameMgr fm, FrameIter it) -{ - FrameIter prev; - FrameIter p; - - prev = NULL; - p = fm->iters; - while (p) - { - if (p == it) - { - if (prev) - prev->next = p->next; - else - fm->iters = p->next; - /*endif*/ - Xfree (p); - break; - } - /*endif*/ - prev = p; - p = p->next; - } - /*endwhile*/ -} - -static FrameIter _FrameIterCounterIncr (FrameIter fitr, int i) -{ - FrameIter p = fitr; - - while (p) - { - if (p->counting) - { - p->counter += i; - if (p->counter >= p->end) - { - IterFixIteration (p->iter); - return (p); - } - /*endif*/ - } - /*endif*/ - p = p->next; - } - /*endwhile*/ - return (NULL); -} - -static void _IterStartWatch (Iter it, void *client_data) -{ - FrameIter p = (FrameIter) client_data; - p->counting = True; -} - -static FmStatus FrameInstSetSize (FrameInst fi, int num) -{ - ExtraData d; - ExtraDataRec dr; - XimFrameType type; - register int i; - - i = 0; - while ((type = fi->_template[i].type) != EOL) - { - switch (type) - { - case BARRAY: - if ((d = ChainMgrGetExtraData (&fi->cm, i)) == NULL) - { - dr.num = -1; - d = ChainMgrSetData (&fi->cm, i, dr); - } - /*endif*/ - if (d->num == NO_VALUE) - { - d->num = num; - return FmSuccess; - } - /*endif*/ - break; - case ITER: - if ((d = ChainMgrGetExtraData (&fi->cm, i)) == NULL) - { - dr.iter = IterInit (&fi->_template[i + 1], NO_VALUE); - d = ChainMgrSetData (&fi->cm, i, dr); - } - /*endif*/ - if (IterSetSize (d->iter, num) == FmSuccess) - return FmSuccess; - /*endif*/ - break; - - case POINTER: - if ((d = ChainMgrGetExtraData(&fi->cm, i)) == NULL) - { - dr.fi = FrameInstInit(fi->_template[i + 1].data); - d = ChainMgrSetData(&fi->cm, i, dr); - } - /*endif*/ - if (FrameInstSetSize(d->fi, num) == FmSuccess) - return FmSuccess; - /*endif*/ - break; - default: - break; - } - /*endswitch*/ - i = _FrameInstIncrement(fi->_template, i); - } - /*endwhile*/ - return FmNoMoreData; -} - -static int FrameInstGetSize (FrameInst fi) -{ - XimFrameType type; - register int i; - ExtraData d; - ExtraDataRec dr; - int ret_size; - - i = fi->cur_no; - while ((type = fi->_template[i].type) != EOL) - { - switch (type) - { - case BARRAY: - if ((d = ChainMgrGetExtraData (&fi->cm, i)) == NULL) - return NO_VALUE; - /*endif*/ - return d->num; - - case ITER: - if ((d = ChainMgrGetExtraData (&fi->cm, i)) == NULL) - { - dr.iter = IterInit (&fi->_template[i + 1], NO_VALUE); - d = ChainMgrSetData (&fi->cm, i, dr); - } - /*endif*/ - ret_size = IterGetSize(d->iter); - if (ret_size != NO_VALID_FIELD) - return ret_size; - /*endif*/ - break; - - case POINTER: - if ((d = ChainMgrGetExtraData (&fi->cm, i)) == NULL) - { - dr.fi = FrameInstInit (fi->_template[i + 1].data); - d = ChainMgrSetData (&fi->cm, i, dr); - } - /*endif*/ - ret_size = FrameInstGetSize (d->fi); - if (ret_size != NO_VALID_FIELD) - return ret_size; - /*endif*/ - break; - default: - break; - } - /*endswitch*/ - i = _FrameInstIncrement (fi->_template, i); - } - /*endwhile*/ - return NO_VALID_FIELD; -} - -static FmStatus FrameInstSetIterCount (FrameInst fi, int num) -{ - ExtraData d; - ExtraDataRec dr; - register int i; - XimFrameType type; - - i = 0; - while ((type = fi->_template[i].type) != EOL) - { - switch (type) - { - case ITER: - if ((d = ChainMgrGetExtraData (&fi->cm, i)) == NULL) - { - dr.iter = IterInit (&fi->_template[i + 1], num); - (void)ChainMgrSetData (&fi->cm, i, dr); - return FmSuccess; - } - /*endif*/ - if (IterSetIterCount (d->iter, num) == FmSuccess) - return FmSuccess; - /*endif*/ - break; - - case POINTER: - if ((d = ChainMgrGetExtraData (&fi->cm, i)) == NULL) - { - dr.fi = FrameInstInit (fi->_template[i + 1].data); - d = ChainMgrSetData (&fi->cm, i, dr); - } - /*endif*/ - if (FrameInstSetIterCount (d->fi, num) == FmSuccess) - return FmSuccess; - /*endif*/ - break; - - default: - break; - } - /*endswitch*/ - i = _FrameInstIncrement (fi->_template, i); - } - /*endwhile*/ - return FmNoMoreData; -} - -static int FrameInstGetTotalSize (FrameInst fi) -{ - register int size; - register int i; - - size = 0; - i = 0; - - while (fi->_template[i].type != EOL) - { - size += _FrameInstGetItemSize (fi, i); - i = _FrameInstIncrement (fi->_template, i); - } - /*endwhile*/ - return size; -} - -static void FrameInstReset (FrameInst fi) -{ - ChainIterRec ci; - int frame_no; - ExtraDataRec d; - - ChainIterInit (&ci, &fi->cm); - - while (ChainIterGetNext (&ci, &frame_no, &d)) - { - register XimFrameType type; - type = fi->_template[frame_no].type; - if (type == ITER) - { - if (d.iter) - IterReset (d.iter); - /*endif*/ - } - else if (type == POINTER) - { - if (d.fi) - FrameInstReset (d.fi); - /*endif*/ - } - /*endif*/ - } - /*endwhile*/ - ChainIterFree (&ci); - - fi->cur_no = 0; -} - -static Iter IterInit (XimFrame frame, int count) -{ - Iter it; - register XimFrameType type; - - it = (Iter) Xmalloc (sizeof (IterRec)); - it->_template = frame; - it->max_count = (count == NO_VALUE) ? 0 : count; - it->allow_expansion = (count == NO_VALUE); - it->cur_no = 0; - it->start_watch_proc = NULL; - it->client_data = NULL; - it->start_counter = False; - - type = frame->type; - if (type & COUNTER_MASK) - { - /* COUNTER_XXX cannot be an item of a ITER */ - Xfree (it); - return NULL; - } - /*endif*/ - - switch (type) - { - case BIT8: - case BIT16: - case BIT32: - case BIT64: - /* Do nothing */ - break; - - case BARRAY: - case ITER: - case POINTER: - ChainMgrInit (&it->cm); - break; - - default: - Xfree (it); - return NULL; /* This should never occur */ - } - /*endswitch*/ - return it; -} - -static void IterFree (Iter it) -{ - switch (it->_template->type) - { - case BARRAY: - ChainMgrFree (&it->cm); - break; - - case ITER: - { - ChainIterRec ci; - int count; - ExtraDataRec d; - - ChainIterInit (&ci, &it->cm); - while (ChainIterGetNext (&ci, &count, &d)) - IterFree (d.iter); - /*endwhile*/ - ChainIterFree (&ci); - ChainMgrFree (&it->cm); - } - break; - - case POINTER: - { - ChainIterRec ci; - int count; - ExtraDataRec dr; - - ChainIterInit (&ci, &it->cm); - while (ChainIterGetNext (&ci, &count, &dr)) - FrameInstFree (dr.fi); - /*endwhile*/ - ChainIterFree (&ci); - ChainMgrFree (&it->cm); - } - break; - - default: - break; - } - /*endswitch*/ - Xfree (it); -} - -static Bool IterIsLoopEnd (Iter it, Bool *myself) -{ - Bool ret = False; - *myself = False; - - if (!it->allow_expansion && (it->cur_no == it->max_count)) - { - *myself = True; - return True; - } - /*endif*/ - - if (it->_template->type == POINTER) - { - ExtraData d = ChainMgrGetExtraData (&it->cm, it->cur_no); - if (d) - { - if (FrameInstIsIterLoopEnd (d->fi)) - { - ret = True; - } - else - { - if (FrameInstIsEnd (d->fi)) - { - it->cur_no++; - if (!it->allow_expansion && it->cur_no == it->max_count) - { - *myself = True; - ret = True; - } - /*endif*/ - } - /*endif*/ - } - /*endif*/ - } - /*endif*/ - } - else if (it->_template->type == ITER) - { - ExtraData d = ChainMgrGetExtraData (&it->cm, it->cur_no); - if (d) - { - Bool yourself; - - if (IterIsLoopEnd (d->iter, &yourself)) - ret = True; - /*endif*/ - } - /*endif*/ - } - /*endif*/ - - return ret; -} - -static XimFrameType IterGetNextType (Iter it, XimFrameTypeInfo info) -{ - XimFrameType type = it->_template->type; - - if (it->start_counter) - { - (*it->start_watch_proc) (it, it->client_data); - it->start_counter = False; - } - /*endif*/ - if (it->cur_no >= it->max_count) - { - if (it->allow_expansion) - it->max_count = it->cur_no + 1; - else - return EOL; - /*endif*/ - } - /*endif*/ - - switch (type) - { - case BIT8: - case BIT16: - case BIT32: - case BIT64: - it->cur_no++; - return type; - - case BARRAY: - if (info) - { - ExtraData d; - - if ((d = ChainMgrGetExtraData (&it->cm, it->cur_no)) == NULL) - info->num = NO_VALUE; - else - info->num = d->num; - /*endif*/ - } - /*endif*/ - it->cur_no++; - return BARRAY; - - case ITER: - { - XimFrameType ret_type; - ExtraData d; - ExtraDataRec dr; - - if ((d = ChainMgrGetExtraData (&it->cm, it->cur_no)) == NULL) - { - dr.iter = IterInit (it->_template + 1, NO_VALUE); - d = ChainMgrSetData (&it->cm, it->cur_no, dr); - } - /*endif*/ - - ret_type = IterGetNextType (d->iter, info); - if (ret_type == EOL) - { - it->cur_no++; - ret_type = IterGetNextType (it, info); - } - /*endif*/ - return ret_type; - } - - case POINTER: - { - XimFrameType ret_type; - ExtraData d; - ExtraDataRec dr; - - if ((d = ChainMgrGetExtraData (&it->cm, it->cur_no)) == NULL) - { - dr.fi = FrameInstInit (it->_template[1].data); - d = ChainMgrSetData (&it->cm, it->cur_no, dr); - } - /*endif*/ - - ret_type = FrameInstGetNextType (d->fi, info); - if (ret_type == EOL) - { - it->cur_no++; - ret_type = IterGetNextType (it, info); - } - /*endif*/ - return ret_type; - } - - default: - return (XimFrameType) NULL; - } - /*endswitch*/ - return (XimFrameType) NULL; /* This should never occur */ -} - -static XimFrameType IterPeekNextType (Iter it, XimFrameTypeInfo info) -{ - XimFrameType type = it->_template->type; - - if (!it->allow_expansion && it->cur_no >= it->max_count) - return (EOL); - /*endif*/ - - switch (type) - { - case BIT8: - case BIT16: - case BIT32: - case BIT64: - return type; - - case BARRAY: - if (info) - { - ExtraData d; - - if ((d = ChainMgrGetExtraData (&it->cm, it->cur_no)) == NULL) - info->num = NO_VALUE; - else - info->num = d->num; - /*endif*/ - } - /*endif*/ - return BARRAY; - - case ITER: - { - XimFrameType ret_type; - ExtraData d; - ExtraDataRec dr; - - if ((d = ChainMgrGetExtraData (&it->cm, it->cur_no)) == NULL) - { - dr.iter = IterInit (it->_template + 1, NO_VALUE); - d = ChainMgrSetData (&it->cm, it->cur_no, dr); - } - /*endif*/ - - ret_type = IterPeekNextType (d->iter, info); - if (ret_type == EOL) - ret_type = IterPeekNextType (it, info); - /*endif*/ - return ret_type; - } - - case POINTER: - { - XimFrameType ret_type; - ExtraData d; - ExtraDataRec dr; - - if ((d = ChainMgrGetExtraData (&it->cm, it->cur_no)) == NULL) - { - dr.fi = FrameInstInit (it->_template[1].data); - d = ChainMgrSetData (&it->cm, it->cur_no, dr); - } - /*endif*/ - - ret_type = FrameInstPeekNextType (d->fi, info); - if (ret_type == EOL) - ret_type = IterPeekNextType (it, info); - /*endif*/ - return (ret_type); - } - - default: - break; - } - /*endswitch*/ - /* Reaching here is a bug! */ - return (XimFrameType) NULL; -} - -static FmStatus IterSetSize (Iter it, int num) -{ - XimFrameType type; - register int i; - - if (!it->allow_expansion && it->max_count == 0) - return FmNoMoreData; - /*endif*/ - - type = it->_template->type; - switch (type) - { - case BARRAY: - { - ExtraData d; - ExtraDataRec dr; - - for (i = 0; i < it->max_count; i++) - { - if ((d = ChainMgrGetExtraData (&it->cm, i)) == NULL) - { - dr.num = NO_VALUE; - d = ChainMgrSetData (&it->cm, i, dr); - } - /*endif*/ - if (d->num == NO_VALUE) - { - d->num = num; - return FmSuccess; - } - /*endif*/ - } - /*endfor*/ - if (it->allow_expansion) - { - ExtraDataRec dr; - - dr.num = num; - ChainMgrSetData (&it->cm, it->max_count, dr); - it->max_count++; - - return FmSuccess; - } - /*endif*/ - } - return FmNoMoreData; - - case ITER: - { - ExtraData d; - ExtraDataRec dr; - - for (i = 0; i < it->max_count; i++) - { - if ((d = ChainMgrGetExtraData (&it->cm, i)) == NULL) - { - dr.iter = IterInit (it->_template + 1, NO_VALUE); - d = ChainMgrSetData (&it->cm, i, dr); - } - /*endif*/ - if (IterSetSize (d->iter, num) == FmSuccess) - return FmSuccess; - /*endif*/ - } - /*endfor*/ - if (it->allow_expansion) - { - ExtraDataRec dr; - - dr.iter = IterInit (it->_template + 1, NO_VALUE); - ChainMgrSetData (&it->cm, it->max_count, dr); - it->max_count++; - - if (IterSetSize(dr.iter, num) == FmSuccess) - return FmSuccess; - /*endif*/ - } - /*endif*/ - } - return FmNoMoreData; - - case POINTER: - { - ExtraData d; - ExtraDataRec dr; - - for (i = 0; i < it->max_count; i++) - { - if ((d = ChainMgrGetExtraData (&it->cm, i)) == NULL) - { - dr.fi = FrameInstInit (it->_template[1].data); - d = ChainMgrSetData (&it->cm, i, dr); - } - /*endif*/ - if (FrameInstSetSize (d->fi, num) == FmSuccess) - return FmSuccess; - /*endif*/ - } - /*endfor*/ - if (it->allow_expansion) - { - ExtraDataRec dr; - - dr.fi = FrameInstInit (it->_template[1].data); - ChainMgrSetData (&it->cm, it->max_count, dr); - it->max_count++; - - if (FrameInstSetSize (dr.fi, num) == FmSuccess) - return FmSuccess; - /*endif*/ - } - /*endif*/ - } - return FmNoMoreData; - - default: - break; - } - /*endswitch*/ - return FmNoMoreData; -} - -static int IterGetSize (Iter it) -{ - register int i; - ExtraData d; - ExtraDataRec dr; - - if (it->cur_no >= it->max_count) - return NO_VALID_FIELD; - /*endif*/ - - switch (it->_template->type) - { - case BARRAY: - if ((d = ChainMgrGetExtraData (&it->cm, it->cur_no)) == NULL) - return NO_VALUE; - /*endif*/ - return d->num; - - case ITER: - for (i = it->cur_no; i < it->max_count; i++) - { - int ret_size; - - if ((d = ChainMgrGetExtraData (&it->cm, i)) == NULL) - { - dr.iter = IterInit (it->_template + 1, NO_VALUE); - d = ChainMgrSetData (&it->cm, i, dr); - } - /*endif*/ - ret_size = IterGetSize (d->iter); - if (ret_size != NO_VALID_FIELD) - return ret_size; - /*endif*/ - } - /*endfor*/ - return NO_VALID_FIELD; - - case POINTER: - for (i = it->cur_no; i < it->max_count; i++) - { - int ret_size; - - if ((d = ChainMgrGetExtraData (&it->cm, i)) == NULL) - { - dr.fi = FrameInstInit (it->_template[1].data); - d = ChainMgrSetData (&it->cm, i, dr); - } - /*endif*/ - ret_size = FrameInstGetSize (d->fi); - if (ret_size != NO_VALID_FIELD) - return ret_size; - /*endif*/ - } - /*endfor*/ - return NO_VALID_FIELD; - - default: - break; - } - /*endswitch*/ - return NO_VALID_FIELD; -} - -static FmStatus IterSetIterCount (Iter it, int num) -{ - register int i; - - if (it->allow_expansion) - { - it->max_count = num; - it->allow_expansion = False; - return FmSuccess; - } - /*endif*/ - - if (it->max_count == 0) - return FmNoMoreData; - /*endif*/ - - switch (it->_template->type) - { - case ITER: - for (i = 0; i < it->max_count; i++) - { - ExtraData d; - ExtraDataRec dr; - - if ((d = ChainMgrGetExtraData(&it->cm, i)) == NULL) - { - dr.iter = IterInit(it->_template + 1, num); - (void)ChainMgrSetData(&it->cm, i, dr); - return FmSuccess; - } - /*endif*/ - if (IterSetIterCount(d->iter, num) == FmSuccess) - return FmSuccess; - /*endif*/ - } - /*endfor*/ - if (it->allow_expansion) - { - ExtraDataRec dr; - - dr.iter = IterInit (it->_template + 1, num); - ChainMgrSetData (&it->cm, it->max_count, dr); - it->max_count++; - - return FmSuccess; - } - /*endif*/ - break; - - case POINTER: - for (i = 0; i < it->max_count; i++) - { - ExtraData d; - ExtraDataRec dr; - - if ((d = ChainMgrGetExtraData (&it->cm, i)) == NULL) - { - dr.fi = FrameInstInit (it->_template[1].data); - d = ChainMgrSetData (&it->cm, i, dr); - } - /*endif*/ - if (FrameInstSetIterCount (d->fi, num) == FmSuccess) - return FmSuccess; - /*endif*/ - } - /*endfor*/ - if (it->allow_expansion) - { - ExtraDataRec dr; - - dr.fi = FrameInstInit (it->_template[1].data); - ChainMgrSetData (&it->cm, it->max_count, dr); - it->max_count++; - - if (FrameInstSetIterCount (dr.fi, num) == FmSuccess) - return FmSuccess; - /*endif*/ - } - /*endif*/ - break; - - default: - break; - } - /*endswitch*/ - return FmNoMoreData; -} - -static int IterGetTotalSize (Iter it) -{ - register int size, i; - XimFrameType type; - - if (it->allow_expansion) - return NO_VALUE; - /*endif*/ - if (it->max_count == 0) - return 0; - /*endif*/ - - size = 0; - type = it->_template->type; - - switch (type) - { - case BIT8: - size = it->max_count; - break; - - case BIT16: - size = it->max_count*2; - break; - - case BIT32: - size = it->max_count*4; - break; - - case BIT64: - size = it->max_count*8; - break; - - case BARRAY: - for (i = 0; i < it->max_count; i++) - { - register int num; - ExtraData d; - - if ((d = ChainMgrGetExtraData (&it->cm, i)) == NULL) - return NO_VALUE; - /*endif*/ - if ((num = d->num) == NO_VALUE) - return NO_VALUE; - /*endif*/ - size += num; - } - /*endfor*/ - break; - - case ITER: - for (i = 0; i < it->max_count; i++) - { - register int num; - ExtraData d; - - if ((d = ChainMgrGetExtraData (&it->cm, i)) == NULL) - return NO_VALUE; - /*endif*/ - if ((num = IterGetTotalSize (d->iter)) == NO_VALUE) - return NO_VALUE; - /*endif*/ - size += num; - } - /*endfor*/ - break; - - case POINTER: - for (i = 0; i < it->max_count; i++) - { - register int num; - ExtraData d; - ExtraDataRec dr; - - if ((d = ChainMgrGetExtraData (&it->cm, i)) == NULL) - { - dr.fi = FrameInstInit (it->_template[1].data); - d = ChainMgrSetData (&it->cm, i, dr); - } - /*endif*/ - if ((num = FrameInstGetTotalSize (d->fi)) == NO_VALUE) - return NO_VALUE; - /*endif*/ - size += num; - } - /*endfor*/ - break; - - default: - break; - } - /*endswitch*/ - return size; -} - -static void IterReset (Iter it) -{ - ChainIterRec ci; - int count; - ExtraDataRec d; - - switch (it->_template->type) - { - case ITER: - ChainIterInit (&ci, &it->cm); - while (ChainIterGetNext (&ci, &count, &d)) - IterReset (d.iter); - /*endwhile*/ - ChainIterFree (&ci); - break; - - case POINTER: - ChainIterInit (&ci, &it->cm); - while (ChainIterGetNext (&ci, &count, &d)) - FrameInstReset (d.fi); - /*endwhile*/ - ChainIterFree (&ci); - break; - - default: - break; - } - /*endswitch*/ - it->cur_no = 0; -} - -static void IterSetStartWatch (Iter it, - IterStartWatchProc proc, - void *client_data) -{ - it->start_watch_proc = proc; - it->client_data = client_data; -} - -static ExtraData ChainMgrSetData (ChainMgr cm, - int frame_no, - ExtraDataRec data) -{ - Chain cur = (Chain) Xmalloc (sizeof (ChainRec)); - - cur->frame_no = frame_no; - cur->d = data; - cur->next = NULL; - - if (cm->top == NULL) - { - cm->top = cm->tail = cur; - } - else - { - cm->tail->next = cur; - cm->tail = cur; - } - /*endif*/ - return &cur->d; -} - -static ExtraData ChainMgrGetExtraData (ChainMgr cm, int frame_no) -{ - Chain cur; - - cur = cm->top; - - while (cur) - { - if (cur->frame_no == frame_no) - return &cur->d; - /*endif*/ - cur = cur->next; - } - /*endwhile*/ - return NULL; -} - -static Bool ChainIterGetNext (ChainIter ci, int *frame_no, ExtraData d) -{ - if (ci->cur == NULL) - return False; - /*endif*/ - - *frame_no = ci->cur->frame_no; - *d = ci->cur->d; - - ci->cur = ci->cur->next; - - return True; -} - -static int _FrameInstIncrement (XimFrame frame, int count) -{ - XimFrameType type; - - type = frame[count].type; - type &= ~COUNTER_MASK; - - switch (type) - { - case BIT8: - case BIT16: - case BIT32: - case BIT64: - case BARRAY: - case PADDING: - return count + 1; - - case POINTER: - return count + 2; - - case ITER: - return _FrameInstIncrement (frame, count + 1); - default: - break; - } - /*endswitch*/ - return - 1; /* Error */ -} - -static int _FrameInstDecrement (XimFrame frame, int count) -{ - register int i; - XimFrameType type; - - if (count == 0) - return - 1; /* cannot decrement */ - /*endif*/ - - if (count == 1) - return 0; /* BOGUS - It should check the contents of data */ - /*endif*/ - - type = frame[count - 2].type; - type &= ~COUNTER_MASK; - - switch (type) - { - case BIT8: - case BIT16: - case BIT32: - case BIT64: - case BARRAY: - case PADDING: - case PTR_ITEM: - return count - 1; - - case POINTER: - case ITER: - i = count - 3; - while (i >= 0) - { - if (frame[i].type != ITER) - return i + 1; - /*endif*/ - i--; - } - /*endwhile*/ - return 0; - default: - break; - } - /*enswitch*/ - return - 1; /* Error */ -} - -static int _FrameInstGetItemSize (FrameInst fi, int cur_no) -{ - XimFrameType type; - - type = fi->_template[cur_no].type; - type &= ~COUNTER_MASK; - - switch (type) - { - case BIT8: - return 1; - - case BIT16: - return 2; - - case BIT32: - return 4; - - case BIT64: - return 8; - - case BARRAY: - { - ExtraData d; - - if ((d = ChainMgrGetExtraData (&fi->cm, cur_no)) == NULL) - return NO_VALUE; - /*endif*/ - if (d->num == NO_VALUE) - return NO_VALUE; - /*endif*/ - return d->num; - } - - case PADDING: - { - register int unit; - register int number; - register int size; - register int i; - - unit = _UNIT ((long) fi->_template[cur_no].data); - number = _NUMBER ((long) fi->_template[cur_no].data); - - i = cur_no; - size = 0; - while (number > 0) - { - i = _FrameInstDecrement (fi->_template, i); - size += _FrameInstGetItemSize (fi, i); - number--; - } - /*endwhile*/ - size = (unit - (size%unit))%unit; - return size; - } - - case ITER: - { - ExtraData d; - int sub_size; - - if ((d = ChainMgrGetExtraData (&fi->cm, cur_no)) == NULL) - return NO_VALUE; - /*endif*/ - sub_size = IterGetTotalSize (d->iter); - if (sub_size == NO_VALUE) - return NO_VALUE; - /*endif*/ - return sub_size; - } - - case POINTER: - { - ExtraData d; - int sub_size; - - if ((d = ChainMgrGetExtraData (&fi->cm, cur_no)) == NULL) - return NO_VALUE; - /*endif*/ - sub_size = FrameInstGetTotalSize (d->fi); - if (sub_size == NO_VALUE) - return NO_VALUE; - /*endif*/ - return sub_size; - } - - default: - break; - } - /*endswitch*/ - return NO_VALUE; -} diff -Nru fcitx-4.0.1/lib/FrameMgr.h fcitx-4.1.1/lib/FrameMgr.h --- fcitx-4.0.1/lib/FrameMgr.h 2010-11-28 11:54:51.000000000 +0000 +++ fcitx-4.1.1/lib/FrameMgr.h 1970-01-01 00:00:00.000000000 +0000 @@ -1,131 +0,0 @@ -/****************************************************************** -Copyright 1993, 1994 by Digital Equipment Corporation, Maynard, Massachusetts, - - All Rights Reserved - -Permission to use, copy, modify, and distribute this software and its -documentation for any purpose and without fee is hereby granted, -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 Digital or MIT not be -used in advertising or publicity pertaining to distribution of the -software without specific, written prior permission. - -DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING -ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL -DIGITAL 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. - - Author: Hiroyuki Miyamoto Digital Equipment Corporation - miyamoto@jrd.dec.com - - This version tidied and debugged by Steve Underwood May 1999 - -******************************************************************/ - -#ifndef FRAMEMGR_H -#define FRAMEMGR_H - -#include -#include -#include - -#if defined(VAXC) && !defined(__DECC) -#define xim_externalref globalref -#define xim_externaldef globaldef -#else -#define xim_externalref extern -#define xim_externaldef -#endif - -/* Definitions for FrameMgr */ - -#define COUNTER_MASK 0x10 - -typedef enum -{ - BIT8 = 0x1, /* {CARD8* | INT8*} */ - BIT16 = 0x2, /* {CARD16* | INT16*} */ - BIT32 = 0x3, /* {CARD32* | INT32*} */ - BIT64 = 0x4, /* {CARD64* | INT64*} */ - BARRAY = 0x5, /* int*, void* */ - ITER = 0x6, /* int* */ - POINTER = 0x7, /* specifies next item is a PTR_ITEM */ - PTR_ITEM = 0x8, /* specifies the item has a pointer */ - /* BOGUS - POINTER and PTR_ITEM - * In the current implementation, PTR_ITEM should be lead by - * POINTER. But actually, it's just redundant logically. Someone - * may remove this redundancy and POINTER from the enum member but he - * should also modify the logic in FrameMgr program. - */ - PADDING = 0x9, /* specifies that a padding is needed. - * This requires extra data in data field. - */ - EOL = 0xA, /* specifies the end of list */ - - COUNTER_BIT8 = COUNTER_MASK | 0x1, - COUNTER_BIT16 = COUNTER_MASK | 0x2, - COUNTER_BIT32 = COUNTER_MASK | 0x3, - COUNTER_BIT64 = COUNTER_MASK | 0x4 -} XimFrameType; - -/* Convenient macro */ -#define _FRAME(a) {a, NULL} -#define _PTR(p) {PTR_ITEM, (void *)p} -/* PADDING's usage of data field - * B15-B8 : Shows the number of effective items. - * B7-B0 : Shows padding unit. ex) 04 shows 4 unit padding. - */ -#define _PAD2(n) {PADDING, (void*)((n)<<8|2)} -#define _PAD4(n) {PADDING, (void*)((n)<<8|4)} - -#define FmCounterByte 0 -#define FmCounterNumber 1 - -#define _BYTE_COUNTER(type, offset) \ - {(COUNTER_MASK|type), (void*)((offset)<<8|FmCounterByte)} - -#define _NUMBER_COUNTER(type, offset) \ - {(COUNTER_MASK|type), (void*)((offset)<<8|FmCounterNumber)} - -typedef struct _XimFrame -{ - XimFrameType type; - void* data; /* For PTR_ITEM and PADDING */ -} XimFrameRec, *XimFrame; - -typedef enum -{ - FmSuccess, - FmEOD, - FmInvalidCall, - FmBufExist, - FmCannotCalc, - FmNoMoreData -} FmStatus; - -typedef struct _FrameMgr *FrameMgr; - -FrameMgr FrameMgrInit(XimFrame frame, char* area, Bool byte_swap); -void FrameMgrInitWithData(FrameMgr fm, XimFrame frame, void* area, - Bool byte_swap); -void FrameMgrFree(FrameMgr fm); -FmStatus FrameMgrSetBuffer(FrameMgr, void*); -FmStatus _FrameMgrPutToken(FrameMgr, void*, int); -FmStatus _FrameMgrGetToken(FrameMgr, void*, int); -FmStatus FrameMgrSetSize(FrameMgr, int); -FmStatus FrameMgrSetIterCount(FrameMgr, int); -FmStatus FrameMgrSetTotalSize(FrameMgr, int); -int FrameMgrGetTotalSize(FrameMgr); -int FrameMgrGetSize(FrameMgr); -FmStatus FrameMgrSkipToken(FrameMgr, int); -void FrameMgrReset(FrameMgr); -Bool FrameMgrIsIterLoopEnd(FrameMgr, FmStatus*); - -#define FrameMgrPutToken(fm, obj) _FrameMgrPutToken((fm), &(obj), sizeof(obj)) -#define FrameMgrGetToken(fm, obj) _FrameMgrGetToken((fm), &(obj), sizeof(obj)) - -#endif /* FRAMEMGR_H */ diff -Nru fcitx-4.0.1/lib/i18nAttr.c fcitx-4.1.1/lib/i18nAttr.c --- fcitx-4.0.1/lib/i18nAttr.c 2010-11-28 11:54:51.000000000 +0000 +++ fcitx-4.1.1/lib/i18nAttr.c 1970-01-01 00:00:00.000000000 +0000 @@ -1,175 +0,0 @@ -/****************************************************************** - - Copyright 1994, 1995 by Sun Microsystems, Inc. - Copyright 1993, 1994 by Hewlett-Packard Company - -Permission to use, copy, modify, distribute, and sell this software -and its documentation for any purpose is hereby granted without fee, -provided that the above copyright notice appear in all copies and -that both that copyright notice and this permission notice appear -in supporting documentation, and that the name of Sun Microsystems, Inc. -and Hewlett-Packard not be used in advertising or publicity pertaining to -distribution of the software without specific, written prior permission. -Sun Microsystems, Inc. and Hewlett-Packard make no representations about -the suitability of this software for any purpose. It is provided "as is" -without express or implied warranty. - -SUN MICROSYSTEMS INC. AND HEWLETT-PACKARD COMPANY DISCLAIMS ALL -WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL -SUN MICROSYSTEMS, INC. AND HEWLETT-PACKARD COMPANY 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. - - Author: Hidetoshi Tajima(tajima@Eng.Sun.COM) Sun Microsystems, Inc. - - This version tidied and debugged by Steve Underwood May 1999 - -******************************************************************/ - -#include -#include -#include "IMdkit.h" -#include "Xi18n.h" -#include "XimFunc.h" - -typedef struct -{ - char *name; - CARD16 type; -} IMListOfAttr; - -typedef struct -{ - char *name; - CARD8 major_opcode; - CARD8 minor_opcode; -} IMExtList; - -IMListOfAttr Default_IMattr[] = -{ - {XNQueryInputStyle, XimType_XIMStyles}, -/* {XNQueryIMValuesList, XimType_XIMValuesList}, */ - {(char *) NULL, (CARD16) 0} -}; - -IMListOfAttr Default_ICattr[] = -{ - {XNInputStyle, XimType_CARD32}, - {XNClientWindow, XimType_Window}, - {XNFocusWindow, XimType_Window}, - {XNFilterEvents, XimType_CARD32}, - {XNPreeditAttributes, XimType_NEST}, - {XNStatusAttributes, XimType_NEST}, - {XNFontSet, XimType_XFontSet}, - {XNArea, XimType_XRectangle}, - {XNAreaNeeded, XimType_XRectangle}, - {XNColormap, XimType_CARD32}, - {XNStdColormap, XimType_CARD32}, - {XNForeground, XimType_CARD32}, - {XNBackground, XimType_CARD32}, - {XNBackgroundPixmap, XimType_CARD32}, - {XNSpotLocation, XimType_XPoint}, - {XNLineSpace, XimType_CARD32}, - {XNPreeditState, XimType_CARD32}, - {XNSeparatorofNestedList, XimType_SeparatorOfNestedList}, - {(char *)NULL, (CARD16) 0} -}; - -IMExtList Default_Extension[] = -{ - {"XIM_EXT_MOVE", XIM_EXTENSION, XIM_EXT_MOVE}, - {"XIM_EXT_SET_EVENT_MASK", XIM_EXTENSION, XIM_EXT_SET_EVENT_MASK}, - {"XIM_EXT_FORWARD_KEYEVENT", XIM_EXTENSION, XIM_EXT_FORWARD_KEYEVENT}, - {(char *) NULL, (CARD8) 0, (CARD8) 0} -}; - -static void CountAttrList(IMListOfAttr *attr, int *total_count) -{ - *total_count = 0; - - while (attr->name != NULL) - { - attr++; - ++(*total_count); - } -} - -static XIMAttr *CreateAttrList (Xi18n i18n_core, - IMListOfAttr *attr, - int *total_count) -{ - XIMAttr *args, *p; - unsigned int buf_size; - - CountAttrList(attr, total_count); - - buf_size = (unsigned) (*total_count + 1)*sizeof (XIMAttr); - args = (XIMAttr *) malloc (buf_size); - if (!args) - return (XIMAttr *) NULL; - /*endif*/ - memset (args, 0, buf_size); - - for (p = args; attr->name != NULL; attr++, p++) - { - p->name = attr->name; - p->length = strlen (attr->name); - p->type = (CARD16) attr->type; - p->attribute_id = XrmStringToQuark (p->name); - if (strcmp (p->name, XNPreeditAttributes) == 0) - i18n_core->address.preeditAttr_id = p->attribute_id; - else if (strcmp (p->name, XNStatusAttributes) == 0) - i18n_core->address.statusAttr_id = p->attribute_id; - else if (strcmp (p->name, XNSeparatorofNestedList) == 0) - i18n_core->address.separatorAttr_id = p->attribute_id; - /*endif*/ - } - /*endfor*/ - p->name = (char *) NULL; - - return args; -} - -void _Xi18nInitAttrList (Xi18n i18n_core) -{ - XIMAttr *args; - int total_count; - - /* init IMAttr list */ - if (i18n_core->address.xim_attr) - XFree ((char *)i18n_core->address.xim_attr); - /*endif*/ - args = CreateAttrList (i18n_core, Default_IMattr, &total_count); - - i18n_core->address.im_attr_num = total_count; - i18n_core->address.xim_attr = (XIMAttr *)args; - - /* init ICAttr list */ - if (i18n_core->address.xic_attr) - XFree ((char *) i18n_core->address.xic_attr); - /*endif*/ - args = CreateAttrList (i18n_core, Default_ICattr, &total_count); - - i18n_core->address.ic_attr_num = total_count; - i18n_core->address.xic_attr = (XICAttr *) args; -} - -void _Xi18nInitExtension(Xi18n i18n_core) -{ - register int i; - IMExtList *extensions = (IMExtList *) Default_Extension; - XIMExt *ext_list = (XIMExt *) i18n_core->address.extension; - - for (i = 0; extensions->name; i++, ext_list++, extensions++) - { - ext_list->major_opcode = extensions->major_opcode; - ext_list->minor_opcode = extensions->minor_opcode; - ext_list->name = extensions->name; - ext_list->length = strlen(ext_list->name); - } - /*endfor*/ - i18n_core->address.ext_num = i; -} diff -Nru fcitx-4.0.1/lib/i18nClbk.c fcitx-4.1.1/lib/i18nClbk.c --- fcitx-4.0.1/lib/i18nClbk.c 2010-11-28 11:54:51.000000000 +0000 +++ fcitx-4.1.1/lib/i18nClbk.c 1970-01-01 00:00:00.000000000 +0000 @@ -1,518 +0,0 @@ -/****************************************************************** - - Copyright 1994, 1995 by Sun Microsystems, Inc. - Copyright 1993, 1994 by Hewlett-Packard Company - -Permission to use, copy, modify, distribute, and sell this software -and its documentation for any purpose is hereby granted without fee, -provided that the above copyright notice appear in all copies and -that both that copyright notice and this permission notice appear -in supporting documentation, and that the name of Sun Microsystems, Inc. -and Hewlett-Packard not be used in advertising or publicity pertaining to -distribution of the software without specific, written prior permission. -Sun Microsystems, Inc. and Hewlett-Packard make no representations about -the suitability of this software for any purpose. It is provided "as is" -without express or implied warranty. - -SUN MICROSYSTEMS INC. AND HEWLETT-PACKARD COMPANY DISCLAIMS ALL -WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL -SUN MICROSYSTEMS, INC. AND HEWLETT-PACKARD COMPANY 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. - - Author: Hidetoshi Tajima(tajima@Eng.Sun.COM) Sun Microsystems, Inc. - - This version tidied and debugged by Steve Underwood May 1999 - -******************************************************************/ - -#include -#include "IMdkit.h" -#include "Xi18n.h" -#include "FrameMgr.h" -#include "XimFunc.h" - -int _Xi18nGeometryCallback (XIMS ims, IMProtocol *call_data) -{ - Xi18n i18n_core = ims->protocol; - FrameMgr fm; - extern XimFrameRec geometry_fr[]; - register int total_size; - unsigned char *reply = NULL; - IMGeometryCBStruct *geometry_CB = - (IMGeometryCBStruct *) &call_data->geometry_callback; - CARD16 connect_id = call_data->any.connect_id; - - fm = FrameMgrInit (geometry_fr, - NULL, - _Xi18nNeedSwap (i18n_core, connect_id)); - - total_size = FrameMgrGetTotalSize (fm); - reply = (unsigned char *) malloc (total_size); - if (!reply) - { - _Xi18nSendMessage (ims, connect_id, XIM_ERROR, 0, 0, 0); - return False; - } - /*endif*/ - memset (reply, 0, total_size); - FrameMgrSetBuffer (fm, reply); - - FrameMgrPutToken (fm, connect_id); - FrameMgrPutToken (fm, geometry_CB->icid); - - _Xi18nSendMessage (ims, - connect_id, - XIM_GEOMETRY, - 0, - reply, - total_size); - FrameMgrFree (fm); - XFree (reply); - - /* XIM_GEOMETRY is an asyncronous protocol, - so return immediately. */ - return True; -} - -int _Xi18nPreeditStartCallback (XIMS ims, IMProtocol *call_data) -{ - Xi18n i18n_core = ims->protocol; - FrameMgr fm; - extern XimFrameRec preedit_start_fr[]; - register int total_size; - unsigned char *reply = NULL; - IMPreeditCBStruct *preedit_CB = - (IMPreeditCBStruct*) &call_data->preedit_callback; - CARD16 connect_id = call_data->any.connect_id; - - fm = FrameMgrInit (preedit_start_fr, - NULL, - _Xi18nNeedSwap (i18n_core, connect_id)); - total_size = FrameMgrGetTotalSize (fm); - reply = (unsigned char *) malloc (total_size); - if (!reply) - { - _Xi18nSendMessage(ims, connect_id, XIM_ERROR, 0, 0, 0); - return False; - } - /*endif*/ - memset (reply, 0, total_size); - FrameMgrSetBuffer (fm, reply); - - FrameMgrPutToken (fm, connect_id); - FrameMgrPutToken (fm, preedit_CB->icid); - - _Xi18nSendMessage (ims, - connect_id, - XIM_PREEDIT_START, - 0, - reply, - total_size); - FrameMgrFree (fm); - XFree (reply); - - return True; -} - -int _Xi18nPreeditDrawCallback (XIMS ims, IMProtocol *call_data) -{ - Xi18n i18n_core = ims->protocol; - FrameMgr fm; - extern XimFrameRec preedit_draw_fr[]; - register int total_size; - unsigned char *reply = NULL; - IMPreeditCBStruct *preedit_CB = - (IMPreeditCBStruct *) &call_data->preedit_callback; - XIMPreeditDrawCallbackStruct *draw = - (XIMPreeditDrawCallbackStruct *) &preedit_CB->todo.draw; - CARD16 connect_id = call_data->any.connect_id; - register int feedback_count; - register int i; - BITMASK32 status = 0x0; - - if (draw->text->length == 0) - status = 0x00000001; - else if (draw->text->feedback[0] == 0) - status = 0x00000002; - /*endif*/ - - fm = FrameMgrInit (preedit_draw_fr, - NULL, - _Xi18nNeedSwap (i18n_core, connect_id)); - - /* set length of preedit string */ - FrameMgrSetSize (fm, draw->text->length); - - /* set iteration count for list of feedback */ - for (i = 0; draw->text->feedback[i] != 0; i++) - ; - /*endfor*/ - feedback_count = i; - FrameMgrSetIterCount (fm, feedback_count); - - total_size = FrameMgrGetTotalSize (fm); - reply = (unsigned char *) malloc (total_size); - if (!reply) - { - _Xi18nSendMessage (ims, connect_id, XIM_ERROR, 0, 0, 0); - return False; - } - /*endif*/ - memset (reply, 0, total_size); - FrameMgrSetBuffer (fm, reply); - - FrameMgrPutToken (fm, connect_id); - FrameMgrPutToken (fm, preedit_CB->icid); - FrameMgrPutToken (fm, draw->caret); - FrameMgrPutToken (fm, draw->chg_first); - FrameMgrPutToken (fm, draw->chg_length); - FrameMgrPutToken (fm, status); - FrameMgrPutToken (fm, draw->text->length); - FrameMgrPutToken (fm, draw->text->string); - for (i = 0; i < feedback_count; i++) - FrameMgrPutToken (fm, draw->text->feedback[i]); - /*endfor*/ - - _Xi18nSendMessage (ims, - connect_id, - XIM_PREEDIT_DRAW, - 0, - reply, - total_size); - FrameMgrFree (fm); - XFree (reply); - - /* XIM_PREEDIT_DRAW is an asyncronous protocol, so return immediately. */ - return True; -} - -int _Xi18nPreeditCaretCallback (XIMS ims, IMProtocol *call_data) -{ - Xi18n i18n_core = ims->protocol; - FrameMgr fm; - extern XimFrameRec preedit_caret_fr[]; - register int total_size; - unsigned char *reply = NULL; - IMPreeditCBStruct *preedit_CB = - (IMPreeditCBStruct*) &call_data->preedit_callback; - XIMPreeditCaretCallbackStruct *caret = - (XIMPreeditCaretCallbackStruct *) &preedit_CB->todo.caret; - CARD16 connect_id = call_data->any.connect_id; - - fm = FrameMgrInit (preedit_caret_fr, - NULL, - _Xi18nNeedSwap (i18n_core, connect_id)); - - total_size = FrameMgrGetTotalSize (fm); - reply = (unsigned char *) malloc (total_size); - if (!reply) - { - _Xi18nSendMessage (ims, connect_id, XIM_ERROR, 0, 0, 0); - return False; - } - /*endif*/ - memset (reply, 0, total_size); - FrameMgrSetBuffer (fm, reply); - - FrameMgrPutToken (fm, connect_id); - FrameMgrPutToken (fm, preedit_CB->icid); - FrameMgrPutToken (fm, caret->position); - FrameMgrPutToken (fm, caret->direction); - FrameMgrPutToken (fm, caret->style); - - _Xi18nSendMessage (ims, - connect_id, - XIM_PREEDIT_CARET, - 0, - reply, - total_size); - FrameMgrFree (fm); - XFree (reply); - - return True; -} - -int _Xi18nPreeditDoneCallback (XIMS ims, IMProtocol *call_data) -{ - Xi18n i18n_core = ims->protocol; - FrameMgr fm; - extern XimFrameRec preedit_done_fr[]; - register int total_size; - unsigned char *reply = NULL; - IMPreeditCBStruct *preedit_CB = - (IMPreeditCBStruct *) &call_data->preedit_callback; - CARD16 connect_id = call_data->any.connect_id; - - fm = FrameMgrInit (preedit_done_fr, - NULL, - _Xi18nNeedSwap (i18n_core, connect_id)); - - total_size = FrameMgrGetTotalSize (fm); - reply = (unsigned char *) malloc (total_size); - if (!reply) - { - _Xi18nSendMessage (ims, connect_id, XIM_ERROR, 0, 0, 0); - return False; - } - /*endif*/ - memset (reply, 0, total_size); - FrameMgrSetBuffer (fm, reply); - - FrameMgrPutToken (fm, connect_id); - FrameMgrPutToken (fm, preedit_CB->icid); - - _Xi18nSendMessage (ims, - connect_id, - XIM_PREEDIT_DONE, - 0, - reply, - total_size); - FrameMgrFree (fm); - XFree (reply); - - /* XIM_PREEDIT_DONE is an asyncronous protocol, so return immediately. */ - return True; -} - -int _Xi18nStatusStartCallback (XIMS ims, IMProtocol *call_data) -{ - Xi18n i18n_core = ims->protocol; - FrameMgr fm; - extern XimFrameRec status_start_fr[]; - register int total_size; - unsigned char *reply = NULL; - IMStatusCBStruct *status_CB = - (IMStatusCBStruct*) &call_data->status_callback; - CARD16 connect_id = call_data->any.connect_id; - - fm = FrameMgrInit (status_start_fr, - NULL, - _Xi18nNeedSwap (i18n_core, connect_id)); - total_size = FrameMgrGetTotalSize (fm); - reply = (unsigned char *) malloc (total_size); - if (!reply) - { - _Xi18nSendMessage (ims, connect_id, XIM_ERROR, 0, 0, 0); - return False; - } - /*endif*/ - memset (reply, 0, total_size); - FrameMgrSetBuffer (fm, reply); - - FrameMgrPutToken (fm, connect_id); - FrameMgrPutToken (fm, status_CB->icid); - - _Xi18nSendMessage (ims, - connect_id, - XIM_STATUS_START, - 0, - reply, - total_size); - FrameMgrFree (fm); - XFree (reply); - - /* XIM_STATUS_START is an asyncronous protocol, so return immediately. */ - return True; -} - -int _Xi18nStatusDrawCallback (XIMS ims, IMProtocol *call_data) -{ - Xi18n i18n_core = ims->protocol; - FrameMgr fm = (FrameMgr)0; - extern XimFrameRec status_draw_text_fr[]; - extern XimFrameRec status_draw_bitmap_fr[]; - register int total_size = 0; - unsigned char *reply = NULL; - IMStatusCBStruct *status_CB = - (IMStatusCBStruct *) &call_data->status_callback; - XIMStatusDrawCallbackStruct *draw = - (XIMStatusDrawCallbackStruct *) &status_CB->todo.draw; - CARD16 connect_id = call_data->any.connect_id; - register int feedback_count; - register int i; - BITMASK32 status = 0x0; - - switch (draw->type) - { - case XIMTextType: - fm = FrameMgrInit (status_draw_text_fr, - NULL, - _Xi18nNeedSwap (i18n_core, connect_id)); - - if (draw->data.text->length == 0) - status = 0x00000001; - else if (draw->data.text->feedback[0] == 0) - status = 0x00000002; - /*endif*/ - - /* set length of status string */ - FrameMgrSetSize(fm, draw->data.text->length); - /* set iteration count for list of feedback */ - for (i = 0; draw->data.text->feedback[i] != 0; i++) - ; - /*endfor*/ - feedback_count = i; - FrameMgrSetIterCount (fm, feedback_count); - - total_size = FrameMgrGetTotalSize (fm); - reply = (unsigned char *) malloc (total_size); - if (!reply) - { - _Xi18nSendMessage (ims, connect_id, XIM_ERROR, 0, 0, 0); - return False; - } - /*endif*/ - memset (reply, 0, total_size); - FrameMgrSetBuffer (fm, reply); - - FrameMgrPutToken (fm, connect_id); - FrameMgrPutToken (fm, status_CB->icid); - FrameMgrPutToken (fm, draw->type); - FrameMgrPutToken (fm, status); - FrameMgrPutToken (fm, draw->data.text->length); - FrameMgrPutToken (fm, draw->data.text->string); - for (i = 0; i < feedback_count; i++) - FrameMgrPutToken (fm, draw->data.text->feedback[i]); - /*endfor*/ - break; - - case XIMBitmapType: - fm = FrameMgrInit (status_draw_bitmap_fr, - NULL, - _Xi18nNeedSwap (i18n_core, connect_id)); - - total_size = FrameMgrGetTotalSize (fm); - reply = (unsigned char *) malloc (total_size); - if (!reply) - { - _Xi18nSendMessage (ims, connect_id, XIM_ERROR, 0, 0, 0); - return False; - } - /*endif*/ - memset (reply, 0, total_size); - FrameMgrSetBuffer (fm, reply); - - FrameMgrPutToken (fm, connect_id); - FrameMgrPutToken (fm, status_CB->icid); - FrameMgrPutToken (fm, draw->data.bitmap); - break; - } - /*endswitch*/ - _Xi18nSendMessage (ims, - connect_id, - XIM_STATUS_DRAW, - 0, - reply, - total_size); - FrameMgrFree (fm); - XFree (reply); - - /* XIM_STATUS_DRAW is an asyncronous protocol, so return immediately. */ - return True; -} - -int _Xi18nStatusDoneCallback (XIMS ims, IMProtocol *call_data) -{ - Xi18n i18n_core = ims->protocol; - FrameMgr fm; - extern XimFrameRec status_done_fr[]; - register int total_size; - unsigned char *reply = NULL; - IMStatusCBStruct *status_CB = - (IMStatusCBStruct *) &call_data->status_callback; - CARD16 connect_id = call_data->any.connect_id; - - fm = FrameMgrInit (status_done_fr, - NULL, - _Xi18nNeedSwap (i18n_core, connect_id)); - - total_size = FrameMgrGetTotalSize (fm); - reply = (unsigned char *) malloc (total_size); - if (!reply) - { - _Xi18nSendMessage (ims, connect_id, XIM_ERROR, 0, 0, 0); - return False; - } - /*endif*/ - memset (reply, 0, total_size); - FrameMgrSetBuffer (fm, reply); - - FrameMgrPutToken (fm, connect_id); - FrameMgrPutToken (fm, status_CB->icid); - - _Xi18nSendMessage (ims, - connect_id, - XIM_STATUS_DONE, - 0, - reply, - total_size); - FrameMgrFree (fm); - XFree (reply); - - /* XIM_STATUS_DONE is an asyncronous protocol, so return immediately. */ - return True; -} - -int _Xi18nStringConversionCallback (XIMS ims, IMProtocol *call_data) -{ - Xi18n i18n_core = ims->protocol; - FrameMgr fm; - extern XimFrameRec str_conversion_fr[]; - register int total_size; - unsigned char *reply = NULL; - IMStrConvCBStruct *call_back = - (IMStrConvCBStruct *) &call_data->strconv_callback; - XIMStringConversionCallbackStruct *strconv = - (XIMStringConversionCallbackStruct *) &call_back->strconv; - CARD16 connect_id = call_data->any.connect_id; - - fm = FrameMgrInit (str_conversion_fr, - NULL, - _Xi18nNeedSwap (i18n_core, connect_id)); -#if 0 - /* set length of preedit string */ - FrameMgrSetSize (fm, strconv->text->length); -#endif - total_size = FrameMgrGetTotalSize (fm); - reply = (unsigned char *) malloc (total_size); - if (!reply) - { - _Xi18nSendMessage (ims, connect_id, XIM_ERROR, 0, 0, 0); - return False; - } - /*endif*/ - memset (reply, 0, total_size); - FrameMgrSetBuffer (fm, reply); - - FrameMgrPutToken (fm, connect_id); - FrameMgrPutToken (fm, call_back->icid); - FrameMgrPutToken (fm, strconv->position); - FrameMgrPutToken (fm, strconv->direction); - FrameMgrPutToken (fm, strconv->operation); -#if 0 - FrameMgrPutToken (fm, strconv->text->string); -#endif - _Xi18nSendMessage (ims, connect_id, - XIM_STR_CONVERSION, - 0, - reply, - total_size); - FrameMgrFree (fm); - XFree (reply); - - /* XIM_STR_CONVERSION is a syncronous protocol, - so should wait here for XIM_STR_CONVERSION_REPLY. */ - if (i18n_core->methods.wait (ims, - connect_id, - XIM_STR_CONVERSION_REPLY, - 0) == False) - { - return False; - } - /*endif*/ - return True; -} diff -Nru fcitx-4.0.1/lib/i18nIc.c fcitx-4.1.1/lib/i18nIc.c --- fcitx-4.0.1/lib/i18nIc.c 2010-11-28 11:54:51.000000000 +0000 +++ fcitx-4.1.1/lib/i18nIc.c 1970-01-01 00:00:00.000000000 +0000 @@ -1,1052 +0,0 @@ -/****************************************************************** - - Copyright 1994, 1995 by Sun Microsystems, Inc. - Copyright 1993, 1994 by Hewlett-Packard Company - -Permission to use, copy, modify, distribute, and sell this software -and its documentation for any purpose is hereby granted without fee, -provided that the above copyright notice appear in all copies and -that both that copyright notice and this permission notice appear -in supporting documentation, and that the name of Sun Microsystems, Inc. -and Hewlett-Packard not be used in advertising or publicity pertaining to -distribution of the software without specific, written prior permission. -Sun Microsystems, Inc. and Hewlett-Packard make no representations about -the suitability of this software for any purpose. It is provided "as is" -without express or implied warranty. - -SUN MICROSYSTEMS INC. AND HEWLETT-PACKARD COMPANY DISCLAIMS ALL -WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL -SUN MICROSYSTEMS, INC. AND HEWLETT-PACKARD COMPANY 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. - - Author: Hidetoshi Tajima(tajima@Eng.Sun.COM) Sun Microsystems, Inc. - - This version tidied and debugged by Steve Underwood May 1999 - -******************************************************************/ - -#include -#include "IMdkit.h" -#include "Xi18n.h" -#include "FrameMgr.h" -#include "XimFunc.h" - -#define IC_SIZE 64 - -/* Set IC values */ -static void SetCardAttribute (XICAttribute *value_ret, - char *p, - XICAttr *ic_attr, - int value_length, - int need_swap) -{ - char *buf; - FrameMgr fm; - - if ((buf = (char *) malloc (value_length)) == NULL) - return; - /*endif*/ - if (value_length == sizeof (CARD8)) - { - memmove (buf, p, value_length); - } - else if (value_length == sizeof (CARD16)) - { - INT16 value; - extern XimFrameRec short_fr[]; - - fm = FrameMgrInit (short_fr, (char *) p, need_swap); - /* get data */ - FrameMgrGetToken (fm, value); - FrameMgrFree (fm); - memmove (buf, &value, value_length); - } - else if (value_length == sizeof(CARD32)) - { - INT32 value; - extern XimFrameRec long_fr[]; - - fm = FrameMgrInit (long_fr, (char *) p, need_swap); - /* get data */ - FrameMgrGetToken (fm, value); - FrameMgrFree (fm); - memmove (buf, &value, value_length); - } - /*endif*/ - value_ret->attribute_id = ic_attr->attribute_id; - value_ret->name = ic_attr->name; - value_ret->name_length = ic_attr->length; - value_ret->type = ic_attr->type; - value_ret->value_length = value_length; - value_ret->value = buf; -} - -static void SetFontAttribute (XICAttribute *value_ret, - char *p, - XICAttr *ic_attr, - int value_length, - int need_swap) -{ - char *buf; - char *base_name; - CARD16 base_length; - FrameMgr fm; - extern XimFrameRec fontset_fr[]; - - fm = FrameMgrInit (fontset_fr, (char *) p, need_swap); - /* get data */ - FrameMgrGetToken (fm, base_length); - FrameMgrSetSize (fm, base_length); - if ((buf = (char *) malloc (base_length + 1)) == NULL) - return; - /*endif*/ - FrameMgrGetToken (fm, base_name); - FrameMgrFree(fm); - strncpy (buf, base_name, base_length); - buf[base_length] = (char) 0; - - value_ret->attribute_id = ic_attr->attribute_id; - value_ret->name = ic_attr->name; - value_ret->name_length = ic_attr->length; - value_ret->type = ic_attr->type; - value_ret->value_length = value_length; - value_ret->value = buf; -} - -static void SetPointAttribute (XICAttribute *value_ret, - char *p, - XICAttr *ic_attr, - int value_length, - int need_swap) -{ - XPoint *buf; - FrameMgr fm; - extern XimFrameRec xpoint_fr[]; - - if ((buf = (XPoint *) malloc (sizeof (XPoint))) == NULL) - return; - /*endif*/ - - fm = FrameMgrInit (xpoint_fr, (char *) p, need_swap); - /* get data */ - FrameMgrGetToken (fm, buf->x); - FrameMgrGetToken (fm, buf->y); - FrameMgrFree (fm); - - memmove (&(buf->x), p, sizeof (INT16)); - p += sizeof (INT16); - memmove (&(buf->y), p, sizeof (INT16)); - - value_ret->attribute_id = ic_attr->attribute_id; - value_ret->name = ic_attr->name; - value_ret->name_length = ic_attr->length; - value_ret->type = ic_attr->type; - value_ret->value_length = value_length; - value_ret->value = (char *) buf; -} - -static void SetRectAttribute (XICAttribute *value_ret, - char *p, - XICAttr *ic_attr, - int value_length, - int need_swap) -{ - XRectangle *buf; - FrameMgr fm; - extern XimFrameRec xrectangle_fr[]; - - if ((buf = (XRectangle *) malloc (sizeof (XRectangle))) == NULL) - return; - /*endif*/ - - fm = FrameMgrInit (xrectangle_fr, (char *) p, need_swap); - /* get data */ - FrameMgrGetToken (fm, buf->x); - FrameMgrGetToken (fm, buf->y); - FrameMgrGetToken (fm, buf->width); - FrameMgrGetToken (fm, buf->height); - FrameMgrFree (fm); - - value_ret->attribute_id = ic_attr->attribute_id; - value_ret->name = ic_attr->name; - value_ret->name_length = ic_attr->length; - value_ret->type = ic_attr->type; - value_ret->value_length = value_length; - value_ret->value = (char *) buf; - - return; -} - -#if 0 -static void SetHotKeyAttribute (XICAttribute *value_ret, - char *p, - XICAttr *ic_attr, - int value_length, - int need_swap) -{ - INT32 list_number; - XIMTriggerKey *hotkeys; - - memmove (&list_number, p, sizeof(INT32)); p += sizeof(INT32); - - hotkeys = (XIMTriggerKey *) malloc (list_number*sizeof (XIMTriggerKey)); - if (hotkeys == NULL) - return; - /*endif*/ - - memmove (hotkeys, p, list_number*sizeof (XIMTriggerKey)); - - value_ret->attribute_id = ic_attr->attribute_id; - value_ret->name = ic_attr->name; - value_ret->name_length = ic_attr->length; - value_ret->type = ic_attr->type; - value_ret->value_length = value_length; - value_ret->value = (char *) hotkeys; -} -#endif - -/* get IC values */ -static void GetAttrHeader (unsigned char *rec, - XICAttribute *list, - int need_swap) -{ - FrameMgr fm; - extern XimFrameRec attr_head_fr[]; - - fm = FrameMgrInit (attr_head_fr, (char *) rec, need_swap); - /* put data */ - FrameMgrPutToken (fm, list->attribute_id); - FrameMgrPutToken (fm, list->value_length); - FrameMgrFree (fm); -} - -static void GetCardAttribute (char *rec, XICAttribute *list, int need_swap) -{ - FrameMgr fm; - unsigned char *recp = (unsigned char *) rec; - - GetAttrHeader (recp, list, need_swap); - recp += sizeof (CARD16)*2; - - if (list->value_length == sizeof (CARD8)) - { - memmove (recp, list->value, list->value_length); - } - else if (list->value_length == sizeof (CARD16)) - { - INT16 *value = (INT16 *) list->value; - extern XimFrameRec short_fr[]; - - fm = FrameMgrInit (short_fr, (char *) recp, need_swap); - /* put data */ - FrameMgrPutToken (fm, *value); - FrameMgrFree (fm); - } - else if (list->value_length == sizeof (CARD32)) - { - INT32 *value = (INT32 *) list->value; - extern XimFrameRec long_fr[]; - - fm = FrameMgrInit (long_fr, (char *) recp, need_swap); - /* put data */ - FrameMgrPutToken (fm, *value); - FrameMgrFree (fm); - } - /*endif*/ -} - -static void GetFontAttribute(char *rec, XICAttribute *list, int need_swap) -{ - FrameMgr fm; - extern XimFrameRec fontset_fr[]; - char *base_name = (char *) list->value; - unsigned char *recp = (unsigned char *) rec; - - GetAttrHeader (recp, list, need_swap); - recp += sizeof (CARD16)*2; - - fm = FrameMgrInit (fontset_fr, (char *)recp, need_swap); - /* put data */ - FrameMgrSetSize (fm, list->value_length); - FrameMgrPutToken (fm, list->value_length); - FrameMgrPutToken (fm, base_name); - FrameMgrFree (fm); -} - -static void GetRectAttribute (char *rec, XICAttribute *list, int need_swap) -{ - FrameMgr fm; - extern XimFrameRec xrectangle_fr[]; - XRectangle *rect = (XRectangle *) list->value; - unsigned char *recp = (unsigned char *) rec; - - GetAttrHeader (recp, list, need_swap); - recp += sizeof(CARD16)*2; - - fm = FrameMgrInit (xrectangle_fr, (char *) recp, need_swap); - /* put data */ - FrameMgrPutToken (fm, rect->x); - FrameMgrPutToken (fm, rect->y); - FrameMgrPutToken (fm, rect->width); - FrameMgrPutToken (fm, rect->height); - FrameMgrFree (fm); -} - -static void GetPointAttribute (char *rec, XICAttribute *list, int need_swap) -{ - FrameMgr fm; - extern XimFrameRec xpoint_fr[]; - XPoint *rect = (XPoint *) list->value; - unsigned char *recp = (unsigned char *) rec; - - GetAttrHeader (recp, list, need_swap); - recp += sizeof(CARD16)*2; - - fm = FrameMgrInit (xpoint_fr, (char *) recp, need_swap); - /* put data */ - FrameMgrPutToken (fm, rect->x); - FrameMgrPutToken (fm, rect->y); - FrameMgrFree (fm); -} - -static int ReadICValue (Xi18n i18n_core, - CARD16 icvalue_id, - int value_length, - void *p, - XICAttribute *value_ret, - CARD16 *number_ret, - int need_swap) -{ - XICAttr *ic_attr = i18n_core->address.xic_attr; - int i; - - *number_ret = (CARD16) 0; - - for (i = 0; i < i18n_core->address.ic_attr_num; i++, ic_attr++) - { - if (ic_attr->attribute_id == icvalue_id) - break; - /*endif*/ - } - /*endfor*/ - switch (ic_attr->type) - { - case XimType_NEST: - { - int total_length = 0; - CARD16 attribute_ID; - INT16 attribute_length; - unsigned char *p1 = (unsigned char *) p; - CARD16 ic_len = 0; - CARD16 number; - FrameMgr fm; - extern XimFrameRec attr_head_fr[]; - - while (total_length < value_length) - { - fm = FrameMgrInit (attr_head_fr, (char *) p1, need_swap); - /* get data */ - FrameMgrGetToken (fm, attribute_ID); - FrameMgrGetToken (fm, attribute_length); - FrameMgrFree (fm); - p1 += sizeof (CARD16)*2; - ReadICValue (i18n_core, - attribute_ID, - attribute_length, - p1, - (value_ret + ic_len), - &number, - need_swap); - ic_len++; - *number_ret += number; - p1 += attribute_length; - p1 += IMPAD (attribute_length); - total_length += (CARD16) sizeof(CARD16)*2 - + (INT16) attribute_length - + IMPAD (attribute_length); - } - /*endwhile*/ - return ic_len; - } - - case XimType_CARD8: - case XimType_CARD16: - case XimType_CARD32: - case XimType_Window: - SetCardAttribute (value_ret, p, ic_attr, value_length, need_swap); - *number_ret = (CARD16) 1; - return *number_ret; - - case XimType_XFontSet: - SetFontAttribute (value_ret, p, ic_attr, value_length, need_swap); - *number_ret = (CARD16) 1; - return *number_ret; - - case XimType_XRectangle: - SetRectAttribute (value_ret, p, ic_attr, value_length, need_swap); - *number_ret = (CARD16) 1; - return *number_ret; - - case XimType_XPoint: - SetPointAttribute(value_ret, p, ic_attr, value_length, need_swap); - *number_ret = (CARD16) 1; - return *number_ret; - -#if 0 - case XimType_XIMHotKeyTriggers: - SetHotKeyAttribute (value_ret, p, ic_attr, value_length, need_swap); - *number_ret = (CARD16) 1; - return *number_ret; -#endif - } - /*endswitch*/ - return 0; -} - -static XICAttribute *CreateNestedList (CARD16 attr_id, - XICAttribute *list, - int number, - int need_swap) -{ - XICAttribute *nest_list = NULL; - register int i; - char *values = NULL; - char *valuesp; - int value_length = 0; - - if (number == 0) - return NULL; - /*endif*/ - for (i = 0; i < number; i++) - { - value_length += sizeof (CARD16)*2; - value_length += list[i].value_length; - value_length += IMPAD (list[i].value_length); - } - /*endfor*/ - if ((values = (char *) malloc (value_length)) == NULL) - return NULL; - /*endif*/ - memset (values, 0, value_length); - - valuesp = values; - for (i = 0; i < number; i++) - { - switch (list[i].type) - { - case XimType_CARD8: - case XimType_CARD16: - case XimType_CARD32: - case XimType_Window: - GetCardAttribute (valuesp, &list[i], need_swap); - break; - - case XimType_XFontSet: - GetFontAttribute (valuesp, &list[i], need_swap); - break; - - case XimType_XRectangle: - GetRectAttribute (valuesp, &list[i], need_swap); - break; - - case XimType_XPoint: - GetPointAttribute (valuesp, &list[i], need_swap); - break; - -#if 0 - case XimType_XIMHotKeyTriggers: - GetHotKeyAttribute (valuesp, &list[i], need_swap); - break; -#endif - } - /*endswitch*/ - valuesp += sizeof (CARD16)*2; - valuesp += list[i].value_length; - valuesp += IMPAD(list[i].value_length); - } - /*endfor*/ - - nest_list = (XICAttribute *) malloc (sizeof (XICAttribute)); - if (nest_list == NULL) - return NULL; - /*endif*/ - memset (nest_list, 0, sizeof (XICAttribute)); - nest_list->value = (void *) malloc (value_length); - if (nest_list->value == NULL) - return NULL; - /*endif*/ - memset (nest_list->value, 0, sizeof (value_length)); - - nest_list->attribute_id = attr_id; - nest_list->value_length = value_length; - memmove (nest_list->value, values, value_length); - - XFree (values); - return nest_list; -} - -static Bool IsNestedList (Xi18n i18n_core, CARD16 icvalue_id) -{ - XICAttr *ic_attr = i18n_core->address.xic_attr; - int i; - - for (i = 0; i < i18n_core->address.ic_attr_num; i++, ic_attr++) - { - if (ic_attr->attribute_id == icvalue_id) - { - if (ic_attr->type == XimType_NEST) - return True; - /*endif*/ - return False; - } - /*endif*/ - } - /*endfor*/ - return False; -} - -static Bool IsSeparator (Xi18n i18n_core, CARD16 icvalue_id) -{ - return (i18n_core->address.separatorAttr_id == icvalue_id); -} - -static int GetICValue (Xi18n i18n_core, - XICAttribute *attr_ret, - CARD16 *id_list, - int list_num) -{ - XICAttr *xic_attr = i18n_core->address.xic_attr; - register int i; - register int j; - register int n; - - i = - n = 0; - if (IsNestedList (i18n_core, id_list[i])) - { - i++; - while (i < list_num && !IsSeparator (i18n_core, id_list[i])) - { - for (j = 0; j < i18n_core->address.ic_attr_num; j++) - { - if (xic_attr[j].attribute_id == id_list[i]) - { - attr_ret[n].attribute_id = xic_attr[j].attribute_id; - attr_ret[n].name_length = xic_attr[j].length; - attr_ret[n].name = malloc (xic_attr[j].length + 1); - strcpy(attr_ret[n].name, xic_attr[j].name); - attr_ret[n].type = xic_attr[j].type; - n++; - i++; - break; - } - /*endif*/ - } - /*endfor*/ - } - /*endwhile*/ - } - else - { - for (j = 0; j < i18n_core->address.ic_attr_num; j++) - { - if (xic_attr[j].attribute_id == id_list[i]) - { - attr_ret[n].attribute_id = xic_attr[j].attribute_id; - attr_ret[n].name_length = xic_attr[j].length; - attr_ret[n].name = malloc (xic_attr[j].length + 1); - strcpy(attr_ret[n].name, xic_attr[j].name); - attr_ret[n].type = xic_attr[j].type; - n++; - break; - } - /*endif*/ - } - /*endfor*/ - } - /*endif*/ - return n; -} - -/* called from CreateICMessageProc and SetICValueMessageProc */ -void _Xi18nChangeIC (XIMS ims, - IMProtocol *call_data, - unsigned char *p, - int create_flag) -{ - Xi18n i18n_core = ims->protocol; - FrameMgr fm; - FmStatus status; - CARD16 byte_length; - register int total_size; - unsigned char *reply = NULL; - register int i; - register int attrib_num; - XICAttribute *attrib_list; - XICAttribute pre_attr[IC_SIZE]; - XICAttribute sts_attr[IC_SIZE]; - XICAttribute ic_attr[IC_SIZE]; - CARD16 preedit_ic_num = 0; - CARD16 status_ic_num = 0; - CARD16 ic_num = 0; - CARD16 connect_id = call_data->any.connect_id; - IMChangeICStruct *changeic = (IMChangeICStruct *) &call_data->changeic; - extern XimFrameRec create_ic_fr[]; - extern XimFrameRec create_ic_reply_fr[]; - extern XimFrameRec set_ic_values_fr[]; - extern XimFrameRec set_ic_values_reply_fr[]; - CARD16 input_method_ID; - - memset (pre_attr, 0, sizeof (XICAttribute)*IC_SIZE); - memset (sts_attr, 0, sizeof (XICAttribute)*IC_SIZE); - memset (ic_attr, 0, sizeof (XICAttribute)*IC_SIZE); - - if (create_flag == True) - { - fm = FrameMgrInit (create_ic_fr, - (char *) p, - _Xi18nNeedSwap (i18n_core, connect_id)); - /* get data */ - FrameMgrGetToken (fm, input_method_ID); - FrameMgrGetToken (fm, byte_length); - } - else - { - fm = FrameMgrInit (set_ic_values_fr, - (char *) p, - _Xi18nNeedSwap (i18n_core, connect_id)); - /* get data */ - FrameMgrGetToken (fm, input_method_ID); - FrameMgrGetToken (fm, changeic->icid); - FrameMgrGetToken (fm, byte_length); - } - /*endif*/ - attrib_list = (XICAttribute *) malloc (sizeof (XICAttribute)*IC_SIZE); - if (!attrib_list) - { - _Xi18nSendMessage (ims, connect_id, XIM_ERROR, 0, 0, 0); - return; - } - /*endif*/ - memset (attrib_list, 0, sizeof(XICAttribute)*IC_SIZE); - - attrib_num = 0; - while (FrameMgrIsIterLoopEnd (fm, &status) == False) - { - void *value; - int value_length; - - FrameMgrGetToken (fm, attrib_list[attrib_num].attribute_id); - FrameMgrGetToken (fm, value_length); - FrameMgrSetSize (fm, value_length); - attrib_list[attrib_num].value_length = value_length; - FrameMgrGetToken (fm, value); - attrib_list[attrib_num].value = (void *) malloc (value_length + 1); - memmove (attrib_list[attrib_num].value, value, value_length); - ((char *)attrib_list[attrib_num].value)[value_length] = '\0'; - attrib_num++; - } - /*endwhile*/ - - for (i = 0; i < attrib_num; i++) - { - CARD16 number; - - if (IsNestedList (i18n_core, attrib_list[i].attribute_id)) - { - if (attrib_list[i].attribute_id - == i18n_core->address.preeditAttr_id) - { - ReadICValue (i18n_core, - attrib_list[i].attribute_id, - attrib_list[i].value_length, - attrib_list[i].value, - &pre_attr[preedit_ic_num], - &number, - _Xi18nNeedSwap(i18n_core, connect_id)); - preedit_ic_num += number; - } - else if (attrib_list[i].attribute_id == i18n_core->address.statusAttr_id) - { - ReadICValue (i18n_core, - attrib_list[i].attribute_id, - attrib_list[i].value_length, - attrib_list[i].value, - &sts_attr[status_ic_num], - &number, - _Xi18nNeedSwap (i18n_core, connect_id)); - status_ic_num += number; - } - else - { - /* another nested list.. possible? */ - } - /*endif*/ - } - else - { - ReadICValue (i18n_core, - attrib_list[i].attribute_id, - attrib_list[i].value_length, - attrib_list[i].value, - &ic_attr[ic_num], - &number, - _Xi18nNeedSwap (i18n_core, connect_id)); - ic_num += number; - } - /*endif*/ - } - /*endfor*/ - for (i = 0; i < attrib_num; i++) - XFree (attrib_list[i].value); - /*endfor*/ - XFree (attrib_list); - - FrameMgrFree (fm); - - changeic->preedit_attr_num = preedit_ic_num; - changeic->status_attr_num = status_ic_num; - changeic->ic_attr_num = ic_num; - changeic->preedit_attr = pre_attr; - changeic->status_attr = sts_attr; - changeic->ic_attr = ic_attr; - - if (i18n_core->address.improto) - { - if (!(i18n_core->address.improto(ims, call_data))) - return; - /*endif*/ - } - /*endif*/ - if (create_flag == True) - { - fm = FrameMgrInit (create_ic_reply_fr, - NULL, - _Xi18nNeedSwap (i18n_core, connect_id)); - } - else - { - fm = FrameMgrInit (set_ic_values_reply_fr, - NULL, - _Xi18nNeedSwap (i18n_core, connect_id)); - } - /*endif*/ - total_size = FrameMgrGetTotalSize (fm); - reply = (unsigned char *) malloc (total_size); - if (!reply) - { - _Xi18nSendMessage (ims, connect_id, XIM_ERROR, 0, 0, 0); - return; - } - /*endif*/ - memset (reply, 0, total_size); - FrameMgrSetBuffer (fm, reply); - - FrameMgrPutToken (fm, input_method_ID); - FrameMgrPutToken (fm, changeic->icid); - - if (create_flag == True) - { - _Xi18nSendMessage (ims, - connect_id, - XIM_CREATE_IC_REPLY, - 0, - reply, - total_size); - } - else - { - _Xi18nSendMessage (ims, - connect_id, - XIM_SET_IC_VALUES_REPLY, - 0, - reply, - total_size); - } - /*endif*/ - if (create_flag == True) - { - int on_key_num = i18n_core->address.on_keys.count_keys; - int off_key_num = i18n_core->address.off_keys.count_keys; - - if (on_key_num == 0 && off_key_num == 0) - { - long mask; - - if (i18n_core->address.imvalue_mask & I18N_FILTERMASK) - mask = i18n_core->address.filterevent_mask; - else - mask = DEFAULT_FILTER_MASK; - /*endif*/ - /* static event flow is default */ - _Xi18nSetEventMask (ims, - connect_id, - input_method_ID, - changeic->icid, - mask, - ~mask); - } - /*endif*/ - } - /*endif*/ - FrameMgrFree (fm); - XFree(reply); - - /* add by hurrica...@126.com */ - for (i = 0; i < (int) changeic->ic_attr_num; i++) - { - if (changeic->ic_attr[i].value) - XFree (changeic->ic_attr[i].value); - /*endif*/ - } - /*endfor*/ - for (i = 0; i < (int) changeic->preedit_attr_num; i++) - { - if (changeic->preedit_attr[i].value) - XFree (changeic->preedit_attr[i].value); - /*endif*/ - } - /*endfor*/ - for (i = 0; i < (int) changeic->status_attr_num; i++) - { - if (changeic->status_attr[i].value) - XFree (changeic->status_attr[i].value); - /*endif*/ - } - /*endfor*/ - /* *************************************** */ -} - -/* called from GetICValueMessageProc */ -void _Xi18nGetIC (XIMS ims, IMProtocol *call_data, unsigned char *p) -{ - Xi18n i18n_core = ims->protocol; - FrameMgr fm; - FmStatus status; - extern XimFrameRec get_ic_values_fr[]; - extern XimFrameRec get_ic_values_reply_fr[]; - CARD16 byte_length; - register int total_size; - unsigned char *reply = NULL; - XICAttribute *preedit_ret = NULL; - XICAttribute *status_ret = NULL; - register int i; - register int number; - int iter_count; - CARD16 *attrID_list; - XICAttribute pre_attr[IC_SIZE]; - XICAttribute sts_attr[IC_SIZE]; - XICAttribute ic_attr[IC_SIZE]; - CARD16 pre_count = 0; - CARD16 sts_count = 0; - CARD16 ic_count = 0; - IMChangeICStruct *getic = (IMChangeICStruct *) &call_data->changeic; - CARD16 connect_id = call_data->any.connect_id; - CARD16 input_method_ID; - - memset (pre_attr, 0, sizeof (XICAttribute)*IC_SIZE); - memset (sts_attr, 0, sizeof (XICAttribute)*IC_SIZE); - memset (ic_attr, 0, sizeof (XICAttribute)*IC_SIZE); - - fm = FrameMgrInit (get_ic_values_fr, - (char *) p, - _Xi18nNeedSwap (i18n_core, connect_id)); - - /* get data */ - FrameMgrGetToken (fm, input_method_ID); - FrameMgrGetToken (fm, getic->icid); - FrameMgrGetToken (fm, byte_length); - - attrID_list = (CARD16 *) malloc (sizeof (CARD16)*IC_SIZE); /* bogus */ - memset (attrID_list, 0, sizeof (CARD16)*IC_SIZE); - - number = 0; - while (FrameMgrIsIterLoopEnd (fm, &status) == False) - FrameMgrGetToken (fm, attrID_list[number++]); - /*endwhile*/ - FrameMgrFree (fm); - - i = 0; - while (i < number) - { - int read_number; - - if (IsNestedList (i18n_core, attrID_list[i])) - { - if (attrID_list[i] == i18n_core->address.preeditAttr_id) - { - read_number = GetICValue (i18n_core, - &pre_attr[pre_count], - &attrID_list[i], - number); - i += read_number + 1; - pre_count += read_number; - } - else if (attrID_list[i] == i18n_core->address.statusAttr_id) - { - read_number = GetICValue (i18n_core, - &sts_attr[sts_count], - &attrID_list[i], - number); - i += read_number + 1; - sts_count += read_number; - } - else - { - /* another nested list.. possible? */ - } - /*endif*/ - } - else - { - read_number = GetICValue (i18n_core, - &ic_attr[ic_count], - &attrID_list[i], - number); - i += read_number; - ic_count += read_number; - } - /*endif*/ - } - /*endwhile*/ - getic->preedit_attr_num = pre_count; - getic->status_attr_num = sts_count; - getic->ic_attr_num = ic_count; - getic->preedit_attr = pre_attr; - getic->status_attr = sts_attr; - getic->ic_attr = ic_attr; - if (i18n_core->address.improto) - { - if (!(i18n_core->address.improto (ims, call_data))) - return; - /*endif*/ - } - /*endif*/ - iter_count = getic->ic_attr_num; - - preedit_ret = CreateNestedList (i18n_core->address.preeditAttr_id, - getic->preedit_attr, - getic->preedit_attr_num, - _Xi18nNeedSwap (i18n_core, connect_id)); - if (preedit_ret) - iter_count++; - /*endif*/ - status_ret = CreateNestedList (i18n_core->address.statusAttr_id, - getic->status_attr, - getic->status_attr_num, - _Xi18nNeedSwap (i18n_core, connect_id)); - if (status_ret) - iter_count++; - /*endif*/ - - fm = FrameMgrInit (get_ic_values_reply_fr, - NULL, - _Xi18nNeedSwap (i18n_core, connect_id)); - - /* set iteration count for list of ic_attribute */ - FrameMgrSetIterCount (fm, iter_count); - - /* set length of BARRAY item in xicattribute_fr */ - for (i = 0; i < (int) getic->ic_attr_num; i++) - FrameMgrSetSize (fm, ic_attr[i].value_length); - /*endfor*/ - - if (preedit_ret) - FrameMgrSetSize (fm, preedit_ret->value_length); - /*endif*/ - if (status_ret) - FrameMgrSetSize (fm, status_ret->value_length); - /*endif*/ - total_size = FrameMgrGetTotalSize (fm); - reply = (unsigned char *) malloc (total_size); - if (reply == NULL) - { - _Xi18nSendMessage (ims, connect_id, XIM_ERROR, 0, 0, 0); - return; - } - /*endif*/ - memset (reply, 0, total_size); - FrameMgrSetBuffer (fm, reply); - - FrameMgrPutToken (fm, input_method_ID); - FrameMgrPutToken (fm, getic->icid); - - for (i = 0; i < (int) getic->ic_attr_num; i++) - { - FrameMgrPutToken (fm, ic_attr[i].attribute_id); - FrameMgrPutToken (fm, ic_attr[i].value_length); - FrameMgrPutToken (fm, ic_attr[i].value); - } - /*endfor*/ - if (preedit_ret) - { - FrameMgrPutToken (fm, preedit_ret->attribute_id); - FrameMgrPutToken (fm, preedit_ret->value_length); - FrameMgrPutToken (fm, preedit_ret->value); - } - /*endif*/ - if (status_ret) - { - FrameMgrPutToken (fm, status_ret->attribute_id); - FrameMgrPutToken (fm, status_ret->value_length); - FrameMgrPutToken (fm, status_ret->value); - } - /*endif*/ - _Xi18nSendMessage (ims, - connect_id, - XIM_GET_IC_VALUES_REPLY, - 0, - reply, - total_size); - XFree (reply); - XFree (attrID_list); - - for (i = 0; i < (int) getic->ic_attr_num; i++) - { - if (getic->ic_attr[i].name) - XFree (getic->ic_attr[i].name); - /*endif*/ - if (getic->ic_attr[i].value) - XFree (getic->ic_attr[i].value); - /*endif*/ - } - /*endfor*/ - for (i = 0; i < (int) getic->preedit_attr_num; i++) - { - if (getic->preedit_attr[i].name) - XFree (getic->preedit_attr[i].name); - /*endif*/ - if (getic->preedit_attr[i].value) - XFree (getic->preedit_attr[i].value); - /*endif*/ - } - /*endfor*/ - for (i = 0; i < (int) getic->status_attr_num; i++) - { - if (getic->status_attr[i].name) - XFree (getic->status_attr[i].name); - /*endif*/ - if (getic->status_attr[i].value) - XFree (getic->status_attr[i].value); - /*endif*/ - } - /*endfor*/ - - if (preedit_ret) - { - XFree (preedit_ret->value); - XFree (preedit_ret); - } - /*endif*/ - if (status_ret) - { - XFree (status_ret->value); - XFree (status_ret); - } - /*endif*/ - FrameMgrFree (fm); -} diff -Nru fcitx-4.0.1/lib/i18nIMProto.c fcitx-4.1.1/lib/i18nIMProto.c --- fcitx-4.0.1/lib/i18nIMProto.c 2010-11-28 11:54:51.000000000 +0000 +++ fcitx-4.1.1/lib/i18nIMProto.c 1970-01-01 00:00:00.000000000 +0000 @@ -1,756 +0,0 @@ -/****************************************************************** -Copyright 1993, 1994 by Digital Equipment Corporation, Maynard, Massachusetts, -Copyright 1993, 1994 by Hewlett-Packard Company - -Copyright 1994, 1995 by Sun Microsystems, Inc. - - All Rights Reserved - -Permission to use, copy, modify, and distribute this software and its -documentation for any purpose and without fee is hereby granted, -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 Digital or MIT not be -used in advertising or publicity pertaining to distribution of the -software without specific, written prior permission. - -DIGITAL AND HEWLETT-PACKARD COMPANY DISCLAIMS ALL WARRANTIES WITH REGARD -TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS, IN NO EVENT SHALL DIGITAL AND HEWLETT-PACKARD COMPANY 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. - - Author: Hiroyuki Miyamoto Digital Equipment Corporation - miyamoto@jrd.dec.com - Hidetoshi Tajima(tajima@Eng.Sun.COM) Sun Microsystems, Inc. - - This version tidied and debugged by Steve Underwood May 1999 - -******************************************************************/ - -/* Protocol Packet frames */ - -#include "FrameMgr.h" - -/* Data type definitions */ - -static XimFrameRec ximattr_fr[] = -{ - _FRAME(BIT16), /* attribute ID */ - _FRAME(BIT16), /* type of the value */ - _FRAME(BIT16), /* length of im-attribute */ - _FRAME(BARRAY), /* im-attribute */ - _PAD4(2), - _FRAME(EOL), -}; - -static XimFrameRec xicattr_fr[] = -{ - _FRAME(BIT16), /* attribute ID */ - _FRAME(BIT16), /* type of the value */ - _FRAME(BIT16), /* length of ic-attribute */ - _FRAME(BARRAY), /* ic-attribute */ - _PAD4(2), - _FRAME(EOL), -}; - -static XimFrameRec ximattribute_fr[] = -{ - _FRAME(BIT16), /* attribute ID */ - _FRAME(BIT16), /* value length */ - _FRAME(BARRAY), /* value */ - _PAD4(1), - _FRAME(EOL), -}; - -static XimFrameRec xicattribute_fr[] = -{ - _FRAME(BIT16), /* attribute ID */ - _FRAME(BIT16), /* value length */ - _FRAME(BARRAY), /* value */ - _PAD4(1), - _FRAME(EOL), -}; - -static XimFrameRec ximtriggerkey_fr[] = -{ - _FRAME(BIT32), /* keysym */ - _FRAME(BIT32), /* modifier */ - _FRAME(BIT32), /* modifier mask */ - _FRAME(EOL), -}; - -static XimFrameRec encodinginfo_fr[] = -{ - _FRAME(BIT16), /* length of encoding info */ - _FRAME(BARRAY), /* encoding info */ - _PAD4(2), - _FRAME(EOL), -}; - -static XimFrameRec str_fr[] = -{ - _FRAME(BIT8), /* number of byte */ - _FRAME(BARRAY), /* string */ - _FRAME(EOL), -}; - -static XimFrameRec xpcs_fr[] = -{ - _FRAME(BIT16), /* length of string in bytes */ - _FRAME(BARRAY), /* string */ - _PAD4(2), -}; - -static XimFrameRec ext_fr[] = -{ - _FRAME(BIT16), /* extension major-opcode */ - _FRAME(BIT16), /* extension minor-opcode */ - _FRAME(BIT16), /* length of extension name */ - _FRAME(BARRAY), /* extension name */ - _PAD4(2), - _FRAME(EOL), -}; - -static XimFrameRec inputstyle_fr[] = -{ - _FRAME(BIT32), /* inputstyle */ - _FRAME(EOL), -}; -/* Protocol definitions */ - -xim_externaldef XimFrameRec attr_head_fr[] = -{ - _FRAME(BIT16), /* attribute id */ - _FRAME(BIT16), /* attribute length */ - _FRAME(EOL), -}; - -xim_externaldef XimFrameRec short_fr[] = -{ - _FRAME(BIT16), /* value */ - _FRAME(EOL), -}; - -xim_externaldef XimFrameRec long_fr[] = -{ - _FRAME(BIT32), /* value */ - _FRAME(EOL), -}; - -xim_externaldef XimFrameRec xrectangle_fr[] = -{ - _FRAME(BIT16), /* x */ - _FRAME(BIT16), /* y */ - _FRAME(BIT16), /* width */ - _FRAME(BIT16), /* height */ - _FRAME(EOL), -}; - -xim_externaldef XimFrameRec xpoint_fr[] = -{ - _FRAME(BIT16), /* x */ - _FRAME(BIT16), /* y */ - _FRAME(EOL), -}; - -xim_externaldef XimFrameRec fontset_fr[] = -{ - _FRAME(BIT16), /* length of base font name */ - _FRAME(BARRAY), /* base font name list */ - _PAD4(2), /* unused */ - _FRAME(EOL), -}; - -xim_externaldef XimFrameRec input_styles_fr[] = -{ - _FRAME(BIT16), /* number of list */ - _PAD4(1), /* unused */ - _FRAME(ITER), /* XIMStyle list */ - _FRAME(POINTER), - _PTR(inputstyle_fr), - _FRAME(EOL), -}; - -xim_externaldef XimFrameRec packet_header_fr[] = -{ - _FRAME(BIT8), /* major-opcode */ - _FRAME(BIT8), /* minor-opcode */ - _FRAME(BIT16), /* length */ - _FRAME(EOL), -}; - -xim_externaldef XimFrameRec error_fr[] = -{ - _FRAME(BIT16), /* input-method-ID */ - _FRAME(BIT16), /* input-context-ID */ - _FRAME(BIT16), /* flag */ - _FRAME(BIT16), /* Error Code */ - _FRAME(BIT16), /* length of error detail */ - _FRAME(BIT16), /* type of error detail */ - _FRAME(BARRAY), /* error detail */ - _PAD4(1), - _FRAME(EOL), -}; - -xim_externaldef XimFrameRec connect_fr[] = -{ - _FRAME(BIT8), /* byte order */ - _PAD2(1), /* unused */ - _FRAME(BIT16), /* client-major-protocol-version */ - _FRAME(BIT16), /* client-minor-protocol-version */ - _BYTE_COUNTER(BIT16, 1), /* length of client-auth-protocol-names */ - _FRAME(ITER), /* client-auth-protocol-names */ - _FRAME(POINTER), - _PTR(xpcs_fr), - _FRAME(EOL), -}; - -xim_externaldef XimFrameRec connect_reply_fr[] = -{ - _FRAME(BIT16), /* server-major-protocol-version */ - _FRAME(BIT16), /* server-minor-protocol-version */ - _FRAME(EOL), -}; - -xim_externaldef XimFrameRec auth_required_fr[] = -{ - _FRAME(BIT8), /* auth-protocol-index */ - _FRAME(BIT8), /* auth-data1 */ - _FRAME(BARRAY), /* auth-data2 */ - _PAD4(3), - _FRAME(EOL), -}; - - -xim_externaldef XimFrameRec auth_reply_fr[] = -{ - _FRAME(BIT8), - _FRAME(BARRAY), - _PAD4(2), - _FRAME(EOL), -}; - -xim_externaldef XimFrameRec auth_next_fr[] = -{ - _FRAME(BIT8), /* auth-data1 */ - _FRAME(BARRAY), /* auth-data2 */ - _PAD4(2), - _FRAME(EOL), -}; - -xim_externaldef XimFrameRec auth_setup_fr[] = -{ - _BYTE_COUNTER(BIT16, 2), /* number of client-auth-protocol-names */ - _PAD4(1), /* unused */ - _FRAME(ITER), /* server-auth-protocol-names */ - _FRAME(POINTER), - _PTR(xpcs_fr), - _FRAME(EOL), -}; - -xim_externaldef XimFrameRec auth_ng_fr[] = -{ - _FRAME(EOL), -}; - -xim_externaldef XimFrameRec disconnect_fr[] = -{ - _FRAME(EOL), -}; - -xim_externaldef XimFrameRec disconnect_reply_fr[] = -{ - _FRAME(EOL), -}; - -xim_externaldef XimFrameRec open_fr[] = -{ - _FRAME(POINTER), /* locale name */ - _PTR(str_fr), - _PAD4(1), - _FRAME(EOL), -}; - -xim_externaldef XimFrameRec open_reply_fr[] = -{ - _FRAME(BIT16), /* input-method-ID */ - _BYTE_COUNTER(BIT16, 1), /* byte length of IM attributes supported */ - _FRAME(ITER), /* IM attribute supported */ - _FRAME(POINTER), - _PTR(ximattr_fr), - _BYTE_COUNTER(BIT16, 2), /* number of IC attribute supported */ - _PAD4(1), /* unused */ - _FRAME(ITER), /* IC attribute supported */ - _FRAME(POINTER), - _PTR(xicattr_fr), - _FRAME(EOL), -}; - -xim_externaldef XimFrameRec close_fr[] = -{ - _FRAME(BIT16), /* input-method-ID */ - _PAD4(1), /* unused */ - _FRAME(EOL), -}; - -xim_externaldef XimFrameRec close_reply_fr[] = -{ - _FRAME(BIT16), /* input-method-ID */ - _PAD4(1), /* unused */ - _FRAME(EOL), -}; - -xim_externaldef XimFrameRec register_triggerkeys_fr[] = -{ - _FRAME(BIT16), /* input-method-ID */ - _PAD4(1), /* unused */ - _BYTE_COUNTER(BIT32, 1), /* byte length of on-keys */ - _FRAME(ITER), /* on-keys list */ - _FRAME(POINTER), - _PTR(ximtriggerkey_fr), - _BYTE_COUNTER(BIT32, 1), /* byte length of off-keys */ - _FRAME(ITER), /* off-keys list */ - _FRAME(POINTER), - _PTR(ximtriggerkey_fr), - _FRAME(EOL), -}; - -xim_externaldef XimFrameRec trigger_notify_fr[] = -{ - _FRAME(BIT16), /* input-mehotd-ID */ - _FRAME(BIT16), /* input-context-ID */ - _FRAME(BIT32), /* flag */ - _FRAME(BIT32), /* index of keys list */ - _FRAME(BIT32), /* client-select-event-mask */ - _FRAME(EOL), -}; - -xim_externaldef XimFrameRec trigger_notify_reply_fr[] = -{ - _FRAME(BIT16), /* input-method-ID */ - _FRAME(BIT16), /* input-context-ID */ - _FRAME(EOL), -}; - -xim_externaldef XimFrameRec set_event_mask_fr[] = -{ - _FRAME(BIT16), /* input-method-ID */ - _FRAME(BIT16), /* input-context-ID */ - _FRAME(BIT32), /* forward-event-mask */ - _FRAME(BIT32), /* synchronous-event-mask */ - _FRAME(EOL), -}; - -xim_externaldef XimFrameRec encoding_negotiation_fr[] = -{ - _FRAME(BIT16), /* input-method-ID */ - _BYTE_COUNTER(BIT16, 1), /* byte length of encodings listed by name */ - _FRAME(ITER), /* supported list of encoding in IM library */ - _FRAME(POINTER), - _PTR(str_fr), - _PAD4(1), - _BYTE_COUNTER(BIT16, 2), /* byte length of encodings listed by - detailed data */ - _PAD4(1), - _FRAME(ITER), /* list of encodings supported in the - IM library */ - _FRAME(POINTER), - _PTR(encodinginfo_fr), - _FRAME(EOL), -}; - -xim_externaldef XimFrameRec encoding_negotiation_reply_fr[] = -{ - _FRAME(BIT16), /* input-method-ID */ - _FRAME(BIT16), /* category of the encoding determined */ - _FRAME(BIT16), /* index of the encoding dterminated */ - _PAD4(1), - _FRAME(EOL), -}; - -xim_externaldef XimFrameRec query_extension_fr[] = -{ - _FRAME(BIT16), /* input-method-ID */ - _BYTE_COUNTER(BIT16, 1), /* byte length of extensions supported - by the IM library */ - _FRAME(ITER), /* extensions supported by the IM library */ - _FRAME(POINTER), - _PTR(str_fr), - _PAD4(1), - _FRAME(EOL), -}; - -xim_externaldef XimFrameRec query_extension_reply_fr[] = -{ - _FRAME(BIT16), /* input-method-ID */ - _BYTE_COUNTER(BIT16, 1), /* byte length of extensions supported - by the IM server */ - _FRAME(ITER), /* list of extensions supported by the - IM server */ - _FRAME(POINTER), - _PTR(ext_fr), - _FRAME(EOL), -}; - -xim_externaldef XimFrameRec get_im_values_fr[] = -{ - _FRAME(BIT16), /* input-method-ID */ - _BYTE_COUNTER(BIT16, 1), /* byte length of im-attribute-id */ - _FRAME(ITER), /* im-attribute-id */ - _FRAME(BIT16), - _PAD4(1), - _FRAME(EOL), -}; - -xim_externaldef XimFrameRec get_im_values_reply_fr[] = -{ - _FRAME(BIT16), /* input-method-ID */ - _BYTE_COUNTER(BIT16, 1), /* byte length of im-attribute returned */ - _FRAME(ITER), /* im-attribute returned */ - _FRAME(POINTER), - _PTR(ximattribute_fr), - _FRAME(EOL), -}; - -xim_externaldef XimFrameRec create_ic_fr[] = -{ - _FRAME(BIT16), /* input-method-ID */ - _BYTE_COUNTER(BIT16, 1), /* byte length of ic-attributes */ - _FRAME(ITER), /* ic-attributes */ - _FRAME(POINTER), - _PTR(xicattribute_fr), - _FRAME(EOL), -}; - -xim_externaldef XimFrameRec create_ic_reply_fr[] = -{ - _FRAME(BIT16), /* input-method-ID */ - _FRAME(BIT16), /* input-context-ID */ - _FRAME(EOL), -}; - -xim_externaldef XimFrameRec destroy_ic_fr[] = -{ - _FRAME(BIT16), /* input-method-ID */ - _FRAME(BIT16), /* input-context-ID */ - _FRAME(EOL), -}; - -xim_externaldef XimFrameRec destroy_ic_reply_fr[] = -{ - _FRAME(BIT16), /* input-method-ID */ - _FRAME(BIT16), /* input-context-ID */ - _FRAME(EOL), -}; - -xim_externaldef XimFrameRec set_ic_values_fr[] = -{ - _FRAME(BIT16), /* input-method-ID */ - _FRAME(BIT16), /* input-context-ID */ - _BYTE_COUNTER(BIT16, 2), /* byte length of ic-attributes */ - _PAD4(1), - _FRAME(ITER), /* ic-attribute */ - _FRAME(POINTER), - _PTR(xicattribute_fr), - _FRAME(EOL), -}; - -xim_externaldef XimFrameRec set_ic_values_reply_fr[] = -{ - _FRAME(BIT16), /* input-method-ID */ - _FRAME(BIT16), /* input-context-ID */ - _FRAME(EOL), -}; - -xim_externaldef XimFrameRec get_ic_values_fr[] = -{ - _FRAME(BIT16), /* input-method-ID */ - _FRAME(BIT16), /* input-context-ID */ - _BYTE_COUNTER(BIT16, 1), /* byte length of ic-attribute-id */ - _FRAME(ITER), /* ic-attribute */ - _FRAME(BIT16), - _PAD4(2), - _FRAME(EOL), -}; - -xim_externaldef XimFrameRec get_ic_values_reply_fr[] = -{ - _FRAME(BIT16), /* input-method-ID */ - _FRAME(BIT16), /* input-context-ID */ - _BYTE_COUNTER(BIT16, 2), /* byte length of ic-attribute */ - _PAD4(1), - _FRAME(ITER), /* ic-attribute */ - _FRAME(POINTER), - _PTR(xicattribute_fr), - _FRAME(EOL), -}; - -xim_externaldef XimFrameRec set_ic_focus_fr[] = -{ - _FRAME(BIT16), /* input-method-ID */ - _FRAME(BIT16), /* input-context-ID */ - _FRAME(EOL), -}; - -xim_externaldef XimFrameRec unset_ic_focus_fr[] = -{ - _FRAME(BIT16), /* input-method-ID */ - _FRAME(BIT16), /* input-context-ID */ - _FRAME(EOL), -}; - -xim_externaldef XimFrameRec forward_event_fr[] = -{ - _FRAME(BIT16), /* input-method-ID */ - _FRAME(BIT16), /* input-context-ID */ - _FRAME(BIT16), /* flag */ - _FRAME(BIT16), /* sequence number */ - _FRAME(EOL), -}; - -xim_externaldef XimFrameRec sync_fr[] = -{ - _FRAME(BIT16), /* input-method-ID */ - _FRAME(BIT16), /* input-context-ID */ - _FRAME(EOL), -}; - -xim_externaldef XimFrameRec sync_reply_fr[] = -{ - _FRAME(BIT16), /* input-method-ID */ - _FRAME(BIT16), /* input-context-ID */ - _FRAME(EOL), -}; - -#if 0 -xim_externaldef XimFrameRec commit_fr[] = -{ - _FRAME(BIT16), /* input-method-ID */ - _FRAME(BIT16), /* input-context-ID */ - _FRAME(BIT16), /* flag */ - _FRAME(BIT16), /* byte length of committed string */ - _FRAME(BARRAY), /* committed string */ - _PAD4(1), - _BYTE_COUNTER(BIT16, 1), /* byte length of keysym */ - _FRAME(ITER), /* keysym */ - _FRAME(BIT32), - _PAD4(1), - _FRAME(EOL), -}; -#endif - -xim_externaldef XimFrameRec commit_chars_fr[] = -{ - _FRAME(BIT16), /* input-method-ID */ - _FRAME(BIT16), /* input-context-ID */ - _FRAME(BIT16), /* flag */ - _FRAME(BIT16), /* byte length of committed string */ - _FRAME(BARRAY), /* committed string */ - _PAD4(1), - _FRAME(EOL), -}; - -xim_externaldef XimFrameRec commit_both_fr[] = -{ - _FRAME(BIT16), /* input-method-ID */ - _FRAME(BIT16), /* input-context-ID */ - _FRAME(BIT16), /* flag */ - _PAD4(1), /* unused */ - _FRAME(BIT32), /* keysym */ - _FRAME(BIT16), /* byte length of committed string */ - _FRAME(BARRAY), /* committed string */ - _PAD4(2), - _FRAME(EOL), -}; - -xim_externaldef XimFrameRec reset_ic_fr[] = -{ - _FRAME(BIT16), /* input-method-ID */ - _FRAME(BIT16), /* input-context-ID */ - _FRAME(EOL), -}; - -xim_externaldef XimFrameRec reset_ic_reply_fr[] = -{ - _FRAME(BIT16), /* input-method-ID */ - _FRAME(BIT16), /* input-context-ID */ - _FRAME(BIT16), /* byte length of committed string */ - _FRAME(BARRAY), /* committed string */ - _PAD4(2), - _FRAME(EOL), -}; - -xim_externaldef XimFrameRec geometry_fr[] = -{ - _FRAME(BIT16), /* input-method-ID */ - _FRAME(BIT16), /* input-context-ID */ - _FRAME(EOL), -}; - -xim_externaldef XimFrameRec str_conversion_fr[] = -{ - _FRAME(BIT16), /* input-method-ID */ - _FRAME(BIT16), /* input-context-ID */ - _FRAME(BIT32), /* XIMStringConversionPosition */ - _FRAME(BIT32), /* XIMStringConversionType */ - _FRAME(BIT32), /* XIMStringConversionOperation */ - _FRAME(BIT16), /* length to multiply the - XIMStringConversionType */ - _FRAME(BIT16), /* length of the string to be - substituted */ -#if 0 - _FRAME(BARRAY), /* string */ - _PAD4(1), -#endif - _FRAME(EOL), -}; - -xim_externaldef XimFrameRec str_conversion_reply_fr[] = -{ - _FRAME(BIT16), /* input-method-ID */ - _FRAME(BIT16), /* input-context-ID */ - _FRAME(BIT32), /* XIMStringConversionFeedback */ - _FRAME(BIT16), /* length of the retrieved string */ - _FRAME(BARRAY), /* retrieved string */ - _PAD4(2), - _BYTE_COUNTER(BIT16, 2), /* number of feedback array */ - _PAD4(1), - _FRAME(ITER), /* feedback array */ - _FRAME(BIT32), - _FRAME(EOL), -}; - -xim_externaldef XimFrameRec preedit_start_fr[] = -{ - _FRAME(BIT16), /* input-method-ID */ - _FRAME(BIT16), /* input-context-ID */ - _FRAME(EOL), -}; - -xim_externaldef XimFrameRec preedit_start_reply_fr[] = -{ - _FRAME(BIT16), /* input-method-ID */ - _FRAME(BIT16), /* input-context-ID */ - _FRAME(BIT32), /* return value */ - _FRAME(EOL), -}; - -xim_externaldef XimFrameRec preedit_draw_fr[] = -{ - _FRAME(BIT16), /* input-method-ID */ - _FRAME(BIT16), /* input-context-ID */ - _FRAME(BIT32), /* caret */ - _FRAME(BIT32), /* chg_first */ - _FRAME(BIT32), /* chg_length */ - _FRAME(BIT32), /* status */ - _FRAME(BIT16), /* length of preedit string */ - _FRAME(BARRAY), /* preedit string */ - _PAD4(2), - _BYTE_COUNTER(BIT16, 2), /* number of feedback array */ - _PAD4(1), - _FRAME(ITER), /* feedback array */ - _FRAME(BIT32), - _FRAME(EOL), -}; - -xim_externaldef XimFrameRec preedit_caret_fr[] = -{ - _FRAME(BIT16), /* input-method-ID */ - _FRAME(BIT16), /* input-context-ID */ - _FRAME(BIT32), /* position */ - _FRAME(BIT32), /* direction */ - _FRAME(BIT32), /* style */ - _FRAME(EOL), -}; - -xim_externaldef XimFrameRec preedit_caret_reply_fr[] = -{ - _FRAME(BIT16), /* input-method-ID */ - _FRAME(BIT16), /* input-context-ID */ - _FRAME(BIT32), /* position */ - _FRAME(EOL), -}; - -xim_externaldef XimFrameRec preedit_done_fr[] = -{ - _FRAME(BIT16), /* input-method-ID */ - _FRAME(BIT16), /* input-context-ID */ - _FRAME(EOL), -}; - -xim_externaldef XimFrameRec status_start_fr[] = -{ - _FRAME(BIT16), /* input-method-ID */ - _FRAME(BIT16), /* input-context-ID */ - _FRAME(EOL), -}; - -xim_externaldef XimFrameRec status_draw_text_fr[] = -{ - _FRAME(BIT16), /* input-method-ID */ - _FRAME(BIT16), /* input-context-ID */ - _FRAME(BIT32), /* type */ - _FRAME(BIT32), /* status */ - _FRAME(BIT16), /* length of status string */ - _FRAME(BARRAY), /* status string */ - _PAD4(2), - _BYTE_COUNTER(BIT16, 2), /* number of feedback array */ - _PAD4(1), - _FRAME(ITER), /* feedback array */ - _FRAME(BIT32), - _FRAME(EOL), -}; - -xim_externaldef XimFrameRec status_draw_bitmap_fr[] = -{ - _FRAME(BIT16), /* input-method-ID */ - _FRAME(BIT16), /* input-context-ID */ - _FRAME(BIT32), /* type */ - _FRAME(BIT32), /* pixmap data */ - _FRAME(EOL), -}; - -xim_externaldef XimFrameRec status_done_fr[] = -{ - _FRAME(BIT16), /* input-method-ID */ - _FRAME(BIT16), /* input-context-ID */ - _FRAME(EOL), -}; - -xim_externaldef XimFrameRec ext_set_event_mask_fr[] = -{ - _FRAME(BIT16), /* input-method-ID */ - _FRAME(BIT16), /* input-context-ID */ - _FRAME(BIT32), /* filter-event-mask */ - _FRAME(BIT32), /* intercept-event-mask */ - _FRAME(BIT32), /* select-event-mask */ - _FRAME(BIT32), /* forward-event-mask */ - _FRAME(BIT32), /* synchronous-event-mask */ - _FRAME(EOL), -}; - -xim_externaldef XimFrameRec ext_forward_keyevent_fr[] = -{ - _FRAME(BIT16), /* input-method-ID */ - _FRAME(BIT16), /* input-context-ID */ - _FRAME(BIT16), /* flag */ - _FRAME(BIT16), /* sequence number */ - _FRAME(BIT8), /* xEvent.u.u.type */ - _FRAME(BIT8), /* keycode */ - _FRAME(BIT16), /* state */ - _FRAME(BIT32), /* time */ - _FRAME(BIT32), /* window */ - _FRAME(EOL), -}; - -xim_externaldef XimFrameRec ext_move_fr[] = -{ - _FRAME(BIT16), /* input-method-ID */ - _FRAME(BIT16), /* input-context-ID */ - _FRAME(BIT16), /* X */ - _FRAME(BIT16), /* Y */ - _FRAME(EOL), -}; diff -Nru fcitx-4.0.1/lib/i18nMethod.c fcitx-4.1.1/lib/i18nMethod.c --- fcitx-4.0.1/lib/i18nMethod.c 2010-11-28 11:54:51.000000000 +0000 +++ fcitx-4.1.1/lib/i18nMethod.c 1970-01-01 00:00:00.000000000 +0000 @@ -1,1129 +0,0 @@ -/****************************************************************** - - Copyright 1994, 1995 by Sun Microsystems, Inc. - Copyright 1993, 1994 by Hewlett-Packard Company - -Permission to use, copy, modify, distribute, and sell this software -and its documentation for any purpose is hereby granted without fee, -provided that the above copyright notice appear in all copies and -that both that copyright notice and this permission notice appear -in supporting documentation, and that the name of Sun Microsystems, Inc. -and Hewlett-Packard not be used in advertising or publicity pertaining to -distribution of the software without specific, written prior permission. -Sun Microsystems, Inc. and Hewlett-Packard make no representations about -the suitability of this software for any purpose. It is provided "as is" -without express or implied warranty. - -SUN MICROSYSTEMS INC. AND HEWLETT-PACKARD COMPANY DISCLAIMS ALL -WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL -SUN MICROSYSTEMS, INC. AND HEWLETT-PACKARD COMPANY 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. - - Author: Hidetoshi Tajima(tajima@Eng.Sun.COM) Sun Microsystems, Inc. - - This version tidied and debugged by Steve Underwood May 1999 - -******************************************************************/ - -#include -#include -#ifndef NEED_EVENTS -#define NEED_EVENTS -#endif -#include -#undef NEED_EVENTS -#include "FrameMgr.h" -#include "IMdkit.h" -#include "Xi18n.h" -#include "XimFunc.h" - -extern Xi18nClient *_Xi18nFindClient (Xi18n, CARD16); - -static void *xi18n_setup (Display *, XIMArg *); -static Status xi18n_openIM (XIMS); -static Status xi18n_closeIM (XIMS); -static char *xi18n_setIMValues (XIMS, XIMArg *); -static char *xi18n_getIMValues (XIMS, XIMArg *); -static Status xi18n_forwardEvent (XIMS, XPointer); -static Status xi18n_commit (XIMS, XPointer); -static int xi18n_callCallback (XIMS, XPointer); -static int xi18n_preeditStart (XIMS, XPointer); -static int xi18n_preeditEnd (XIMS, XPointer); -static int xi18n_syncXlib (XIMS, XPointer); - -#ifndef XIM_SERVERS -#define XIM_SERVERS "XIM_SERVERS" -#endif -static Atom XIM_Servers = None; - - -IMMethodsRec Xi18n_im_methods = -{ - xi18n_setup, - xi18n_openIM, - xi18n_closeIM, - xi18n_setIMValues, - xi18n_getIMValues, - xi18n_forwardEvent, - xi18n_commit, - xi18n_callCallback, - xi18n_preeditStart, - xi18n_preeditEnd, - xi18n_syncXlib, -}; - -extern Bool _Xi18nCheckXAddress (Xi18n, TransportSW *, char *); -extern Bool _Xi18nCheckTransAddress (Xi18n, TransportSW *, char *); - -TransportSW _TransR[] = -{ - {"X", 1, _Xi18nCheckXAddress}, -#ifdef TCPCONN - {"tcp", 3, _Xi18nCheckTransAddress}, - {"local", 5, _Xi18nCheckTransAddress}, -#endif -#ifdef DNETCONN - {"decnet", 6, _Xi18nCheckTransAddress}, -#endif - {(char *) NULL, 0, (Bool (*) ()) NULL} -}; - -static Bool GetInputStyles (Xi18n i18n_core, XIMStyles **p_style) -{ - Xi18nAddressRec *address = (Xi18nAddressRec *) &i18n_core->address; - XIMStyles *p; - int i; - - p = &address->input_styles; - if ((*p_style = (XIMStyles *) malloc (sizeof (XIMStyles) - + p->count_styles*sizeof (XIMStyle))) - == NULL) - { - return False; - } - /*endif*/ - (*p_style)->count_styles = p->count_styles; - (*p_style)->supported_styles = (XIMStyle *) ((XPointer) *p_style + sizeof (XIMStyles)); - for (i = 0; i < (int) p->count_styles; i++) - (*p_style)->supported_styles[i] = p->supported_styles[i]; - /*endfor*/ - return True; -} - -static Bool GetOnOffKeys (Xi18n i18n_core, long mask, XIMTriggerKeys **p_key) -{ - Xi18nAddressRec *address = (Xi18nAddressRec *) &i18n_core->address; - XIMTriggerKeys *p; - int i; - - if (mask & I18N_ON_KEYS) - p = &address->on_keys; - else - p = &address->off_keys; - /*endif*/ - if ((*p_key = (XIMTriggerKeys *) malloc (sizeof(XIMTriggerKeys) - + p->count_keys*sizeof(XIMTriggerKey))) - == NULL) - { - return False; - } - /*endif*/ - (*p_key)->count_keys = p->count_keys; - (*p_key)->keylist = - (XIMTriggerKey *) ((XPointer) *p_key + sizeof(XIMTriggerKeys)); - for (i = 0; i < (int) p->count_keys; i++) - { - (*p_key)->keylist[i].keysym = p->keylist[i].keysym; - (*p_key)->keylist[i].modifier = p->keylist[i].modifier; - (*p_key)->keylist[i].modifier_mask = p->keylist[i].modifier_mask; - } - /*endfor*/ - return True; -} - -static Bool GetEncodings(Xi18n i18n_core, XIMEncodings **p_encoding) -{ - Xi18nAddressRec *address = (Xi18nAddressRec *) &i18n_core->address; - XIMEncodings *p; - int i; - - p = &address->encoding_list; - - if ((*p_encoding = (XIMEncodings *) malloc (sizeof (XIMEncodings) - + p->count_encodings*sizeof(XIMEncoding))) == NULL) - { - return False; - } - /*endif*/ - (*p_encoding)->count_encodings = p->count_encodings; - (*p_encoding)->supported_encodings = - (XIMEncoding *) ((XPointer)*p_encoding + sizeof (XIMEncodings)); - for (i = 0; i < (int) p->count_encodings; i++) - { - (*p_encoding)->supported_encodings[i] - = (char *) malloc (strlen (p->supported_encodings[i]) + 1); - strcpy ((*p_encoding)->supported_encodings[i], - p->supported_encodings[i]); - } - /*endif*/ - return True; -} - -static char *ParseArgs (Xi18n i18n_core, int mode, XIMArg *args) -{ - Xi18nAddressRec *address = (Xi18nAddressRec *) &i18n_core->address; - XIMArg *p; - - if (mode == I18N_OPEN || mode == I18N_SET) - { - for (p = args; p->name != NULL; p++) - { - if (strcmp (p->name, IMLocale) == 0) - { - if (address->imvalue_mask & I18N_IM_LOCALE) - return IMLocale; - /*endif*/ - address->im_locale = (char *) malloc (strlen (p->value) + 1); - if (!address->im_locale) - return IMLocale; - /*endif*/ - strcpy (address->im_locale, p->value); - address->imvalue_mask |= I18N_IM_LOCALE; - } - else if (strcmp (p->name, IMServerTransport) == 0) - { - if (address->imvalue_mask & I18N_IM_ADDRESS) - return IMServerTransport; - /*endif*/ - address->im_addr = (char *) malloc (strlen (p->value) + 1); - if (!address->im_addr) - return IMServerTransport; - /*endif*/ - strcpy(address->im_addr, p->value); - address->imvalue_mask |= I18N_IM_ADDRESS; - } - else if (strcmp (p->name, IMServerName) == 0) - { - if (address->imvalue_mask & I18N_IM_NAME) - return IMServerName; - /*endif*/ - address->im_name = (char *) malloc (strlen (p->value) + 1); - if (!address->im_name) - return IMServerName; - /*endif*/ - strcpy (address->im_name, p->value); - address->imvalue_mask |= I18N_IM_NAME; - } - else if (strcmp (p->name, IMServerWindow) == 0) - { - if (address->imvalue_mask & I18N_IMSERVER_WIN) - return IMServerWindow; - /*endif*/ - address->im_window = (Window) p->value; - address->imvalue_mask |= I18N_IMSERVER_WIN; - } - else if (strcmp (p->name, IMInputStyles) == 0) - { - if (address->imvalue_mask & I18N_INPUT_STYLES) - return IMInputStyles; - /*endif*/ - address->input_styles.count_styles = - ((XIMStyles*)p->value)->count_styles; - address->input_styles.supported_styles = - (XIMStyle *) malloc (sizeof (XIMStyle)*address->input_styles.count_styles); - if (address->input_styles.supported_styles == (XIMStyle *) NULL) - return IMInputStyles; - /*endif*/ - memmove (address->input_styles.supported_styles, - ((XIMStyles *) p->value)->supported_styles, - sizeof (XIMStyle)*address->input_styles.count_styles); - address->imvalue_mask |= I18N_INPUT_STYLES; - } - else if (strcmp (p->name, IMProtocolHandler) == 0) - { - address->improto = (IMProtoHandler) p->value; - address->imvalue_mask |= I18N_IM_HANDLER; - } - else if (strcmp (p->name, IMOnKeysList) == 0) - { - if (address->imvalue_mask & I18N_ON_KEYS) - return IMOnKeysList; - /*endif*/ - address->on_keys.count_keys = - ((XIMTriggerKeys *) p->value)->count_keys; - address->on_keys.keylist = - (XIMTriggerKey *) malloc (sizeof (XIMTriggerKey)*address->on_keys.count_keys); - if (address->on_keys.keylist == (XIMTriggerKey *) NULL) - return IMOnKeysList; - /*endif*/ - memmove (address->on_keys.keylist, - ((XIMTriggerKeys *) p->value)->keylist, - sizeof (XIMTriggerKey)*address->on_keys.count_keys); - address->imvalue_mask |= I18N_ON_KEYS; - } - else if (strcmp (p->name, IMOffKeysList) == 0) - { - if (address->imvalue_mask & I18N_OFF_KEYS) - return IMOffKeysList; - /*endif*/ - address->off_keys.count_keys = - ((XIMTriggerKeys *) p->value)->count_keys; - address->off_keys.keylist = - (XIMTriggerKey *) malloc (sizeof (XIMTriggerKey)*address->off_keys.count_keys); - if (address->off_keys.keylist == (XIMTriggerKey *) NULL) - return IMOffKeysList; - /*endif*/ - memmove (address->off_keys.keylist, - ((XIMTriggerKeys *) p->value)->keylist, - sizeof (XIMTriggerKey)*address->off_keys.count_keys); - address->imvalue_mask |= I18N_OFF_KEYS; - } - else if (strcmp (p->name, IMEncodingList) == 0) - { - if (address->imvalue_mask & I18N_ENCODINGS) - return IMEncodingList; - /*endif*/ - address->encoding_list.count_encodings = - ((XIMEncodings *) p->value)->count_encodings; - address->encoding_list.supported_encodings = - (XIMEncoding *) malloc (sizeof (XIMEncoding)*address->encoding_list.count_encodings); - if (address->encoding_list.supported_encodings - == (XIMEncoding *) NULL) - { - return IMEncodingList; - } - /*endif*/ - memmove (address->encoding_list.supported_encodings, - ((XIMEncodings *) p->value)->supported_encodings, - sizeof (XIMEncoding)*address->encoding_list.count_encodings); - address->imvalue_mask |= I18N_ENCODINGS; - } - else if (strcmp (p->name, IMFilterEventMask) == 0) - { - if (address->imvalue_mask & I18N_FILTERMASK) - return IMFilterEventMask; - /*endif*/ - address->filterevent_mask = (long) p->value; - address->imvalue_mask |= I18N_FILTERMASK; - } - /*endif*/ - } - /*endfor*/ - if (mode == I18N_OPEN) - { - /* check mandatory IM values */ - if (!(address->imvalue_mask & I18N_IM_LOCALE)) - { - /* locales must be set in IMOpenIM */ - return IMLocale; - } - /*endif*/ - if (!(address->imvalue_mask & I18N_IM_ADDRESS)) - { - /* address must be set in IMOpenIM */ - return IMServerTransport; - } - /*endif*/ - } - /*endif*/ - } - else if (mode == I18N_GET) - { - for (p = args; p->name != NULL; p++) - { - if (strcmp (p->name, IMLocale) == 0) - { - p->value = (char *) malloc (strlen (address->im_locale) + 1); - if (!p->value) - return IMLocale; - /*endif*/ - strcpy (p->value, address->im_locale); - } - else if (strcmp (p->name, IMServerTransport) == 0) - { - p->value = (char *) malloc (strlen (address->im_addr) + 1); - if (!p->value) - return IMServerTransport; - /*endif*/ - strcpy (p->value, address->im_addr); - } - else if (strcmp (p->name, IMServerName) == 0) - { - if (address->imvalue_mask & I18N_IM_NAME) - { - p->value = (char *) malloc (strlen (address->im_name) + 1); - if (!p->value) - return IMServerName; - /*endif*/ - strcpy (p->value, address->im_name); - } - else - { - return IMServerName; - } - /*endif*/ - } - else if (strcmp (p->name, IMServerWindow) == 0) - { - if (address->imvalue_mask & I18N_IMSERVER_WIN) - *((Window *) (p->value)) = address->im_window; - else - return IMServerWindow; - /*endif*/ - } - else if (strcmp (p->name, IMInputStyles) == 0) - { - if (GetInputStyles (i18n_core, - (XIMStyles **) p->value) == False) - { - return IMInputStyles; - } - /*endif*/ - } - else if (strcmp (p->name, IMProtocolHandler) == 0) - { - if (address->imvalue_mask & I18N_IM_HANDLER) - *((IMProtoHandler *) (p->value)) = address->improto; - else - return IMProtocolHandler; - /*endif*/ - } - else if (strcmp (p->name, IMOnKeysList) == 0) - { - if (address->imvalue_mask & I18N_ON_KEYS) - { - if (GetOnOffKeys (i18n_core, - I18N_ON_KEYS, - (XIMTriggerKeys **) p->value) == False) - { - return IMOnKeysList; - } - /*endif*/ - } - else - { - return IMOnKeysList; - } - /*endif*/ - } - else if (strcmp (p->name, IMOffKeysList) == 0) - { - if (address->imvalue_mask & I18N_OFF_KEYS) - { - if (GetOnOffKeys (i18n_core, - I18N_OFF_KEYS, - (XIMTriggerKeys **) p->value) == False) - { - return IMOffKeysList; - } - /*endif*/ - } - else - { - return IMOffKeysList; - } - /*endif*/ - } - else if (strcmp (p->name, IMEncodingList) == 0) - { - if (address->imvalue_mask & I18N_ENCODINGS) - { - if (GetEncodings (i18n_core, - (XIMEncodings **) p->value) == False) - { - return IMEncodingList; - } - /*endif*/ - } - else - { - return IMEncodingList; - } - /*endif*/ - } - else if (strcmp (p->name, IMFilterEventMask) == 0) - { - if (address->imvalue_mask & I18N_FILTERMASK) - *((long *) (p->value)) = address->filterevent_mask; - else - return IMFilterEventMask; - /*endif*/ - } - /*endif*/ - } - /*endfor*/ - } - /*endif*/ - return NULL; -} - -static int CheckIMName (Xi18n i18n_core) -{ - char *address = i18n_core->address.im_addr; - int i; - - for (i = 0; _TransR[i].transportname; i++) - { - while (*address == ' ' || *address == '\t') - address++; - /*endwhile*/ - if (strncmp (address, - _TransR[i].transportname, - _TransR[i].namelen) == 0 - && - address[_TransR[i].namelen] == '/') - { - if (_TransR[i].checkAddr (i18n_core, - &_TransR[i], - address + _TransR[i].namelen + 1) == True) - { - return True; - } - /*endif*/ - return False; - } - /*endif*/ - } - /*endfor*/ - return False; -} - -static int SetXi18nSelectionOwner(Xi18n i18n_core) -{ - Display *dpy = i18n_core->address.dpy; - Window ims_win = i18n_core->address.im_window; - Window root = RootWindow (dpy, DefaultScreen (dpy)); - Atom realtype; - int realformat; - unsigned long bytesafter; - long *data=NULL; - unsigned long length; - Atom atom; - int i; - int found; - int forse = False; - char buf[256]; - - (void)sprintf(buf, "@server=%s", i18n_core->address.im_name); - if ((atom = XInternAtom(dpy, buf, False)) == 0) - return False; - i18n_core->address.selection = atom; - - if (XIM_Servers == None) - XIM_Servers = XInternAtom (dpy, XIM_SERVERS, False); - /*endif*/ - XGetWindowProperty (dpy, - root, - XIM_Servers, - 0L, - 1000000L, - False, - XA_ATOM, - &realtype, - &realformat, - &length, - &bytesafter, - (unsigned char **) (&data)); - if (realtype != None && (realtype != XA_ATOM || realformat != 32)) { - if (data != NULL) - XFree ((char *) data); - return False; - } - - found = False; - for (i = 0; i < length; i++) { - if (data[i] == atom) { - Window owner; - found = True; - if ((owner = XGetSelectionOwner (dpy, atom)) != ims_win) { - if (owner == None || forse == True) - XSetSelectionOwner (dpy, atom, ims_win, CurrentTime); - else - return False; - } - break; - } - } - - if (found == False) { - XSetSelectionOwner (dpy, atom, ims_win, CurrentTime); - XChangeProperty (dpy, - root, - XIM_Servers, - XA_ATOM, - 32, - PropModePrepend, - (unsigned char *) &atom, - 1); - } - else { - /* - * We always need to generate the PropertyNotify to the Root Window - */ - XChangeProperty (dpy, - root, - XIM_Servers, - XA_ATOM, - 32, - PropModePrepend, - (unsigned char *) data, - 0); - } - if (data != NULL) - XFree ((char *) data); - - /* Intern "LOCALES" and "TRANSOPORT" Target Atoms */ - i18n_core->address.Localename = XInternAtom (dpy, LOCALES, False); - i18n_core->address.Transportname = XInternAtom (dpy, TRANSPORT, False); - return (XGetSelectionOwner (dpy, atom) == ims_win); -} - -static int DeleteXi18nAtom(Xi18n i18n_core) -{ - Display *dpy = i18n_core->address.dpy; - Window root = RootWindow (dpy, DefaultScreen (dpy)); - Atom realtype; - int realformat; - unsigned long bytesafter; - long *data=NULL; - unsigned long length; - Atom atom; - int i, ret; - int found; - char buf[256]; - - (void)sprintf(buf, "@server=%s", i18n_core->address.im_name); - if ((atom = XInternAtom(dpy, buf, False)) == 0) - return False; - i18n_core->address.selection = atom; - - if (XIM_Servers == None) - XIM_Servers = XInternAtom (dpy, XIM_SERVERS, False); - XGetWindowProperty (dpy, - root, - XIM_Servers, - 0L, - 1000000L, - False, - XA_ATOM, - &realtype, - &realformat, - &length, - &bytesafter, - (unsigned char **) (&data)); - if (realtype != XA_ATOM || realformat != 32) { - if (data != NULL) - XFree ((char *) data); - return False; - } - - found = False; - for (i = 0; i < length; i++) { - if (data[i] == atom) { - found = True; - break; - } - } - - if (found == True) { - for (i=i+1; iaddress.dpy = dpy; - - if (ParseArgs (i18n_core, I18N_OPEN, args) != NULL) - { - XFree (i18n_core); - return NULL; - } - /*endif*/ - if (*(char *) &endian) - i18n_core->address.im_byteOrder = 'l'; - else - i18n_core->address.im_byteOrder = 'B'; - /*endif*/ - - /* install IMAttr and ICAttr list in i18n_core */ - _Xi18nInitAttrList (i18n_core); - - /* install IMExtension list in i18n_core */ - _Xi18nInitExtension (i18n_core); - - return i18n_core; -} - -static void ReturnSelectionNotify (Xi18n i18n_core, XSelectionRequestEvent *ev) -{ - XEvent event; - Display *dpy = i18n_core->address.dpy; - char buf[256]; - - event.type = SelectionNotify; - event.xselection.requestor = ev->requestor; - event.xselection.selection = ev->selection; - event.xselection.target = ev->target; - event.xselection.time = ev->time; - event.xselection.property = ev->property; - if (ev->target == i18n_core->address.Localename) - { - sprintf (buf, "@locale=%s", i18n_core->address.im_locale); - } - else if (ev->target == i18n_core->address.Transportname) - { - sprintf (buf, "@transport=%s", i18n_core->address.im_addr); - } - /*endif*/ - XChangeProperty (dpy, - event.xselection.requestor, - ev->target, - ev->target, - 8, - PropModeReplace, - (unsigned char *) buf, - strlen (buf)); - XSendEvent (dpy, event.xselection.requestor, False, NoEventMask, &event); - XFlush (i18n_core->address.dpy); -} - -static Bool WaitXSelectionRequest (Display *dpy, - Window win, - XEvent *ev, - XPointer client_data) -{ - XIMS ims = (XIMS) client_data; - Xi18n i18n_core = ims->protocol; - - if (((XSelectionRequestEvent *) ev)->selection - == i18n_core->address.selection) - { - ReturnSelectionNotify (i18n_core, (XSelectionRequestEvent *) ev); - return True; - } - /*endif*/ - return False; -} - -static Status xi18n_openIM(XIMS ims) -{ - Xi18n i18n_core = ims->protocol; - Display *dpy = i18n_core->address.dpy; - - if (!CheckIMName (i18n_core) - || - !SetXi18nSelectionOwner (i18n_core) - || - !i18n_core->methods.begin (ims)) - { - XFree (i18n_core->address.im_name); - XFree (i18n_core->address.im_locale); - XFree (i18n_core->address.im_addr); - XFree (i18n_core); - return False; - } - /*endif*/ - - _XRegisterFilterByType (dpy, - i18n_core->address.im_window, - SelectionRequest, - SelectionRequest, - WaitXSelectionRequest, - (XPointer)ims); - XFlush(dpy); - return True; -} - -static Status xi18n_closeIM(XIMS ims) -{ - Xi18n i18n_core = ims->protocol; - Display *dpy = i18n_core->address.dpy; - - DeleteXi18nAtom(i18n_core); - if (!i18n_core->methods.end (ims)) - return False; - - _XUnregisterFilter (dpy, - i18n_core->address.im_window, - WaitXSelectionRequest, - (XPointer)ims); - XFree (i18n_core->address.im_name); - XFree (i18n_core->address.im_locale); - XFree (i18n_core->address.im_addr); - XFree (i18n_core); - return True; -} - -static char *xi18n_setIMValues (XIMS ims, XIMArg *args) -{ - Xi18n i18n_core = ims->protocol; - char *ret; - - if ((ret = ParseArgs (i18n_core, I18N_SET, args)) != NULL) - return ret; - /*endif*/ - return NULL; -} - -static char *xi18n_getIMValues (XIMS ims, XIMArg *args) -{ - Xi18n i18n_core = ims->protocol; - char *ret; - - if ((ret = ParseArgs (i18n_core, I18N_GET, args)) != NULL) - return ret; - /*endif*/ - return NULL; -} - -static void EventToWireEvent (XEvent *ev, xEvent *event, CARD16 *serial) -{ - *serial = (CARD16) (ev->xany.serial >> 16); - event->u.u.sequenceNumber = - (CARD16) (ev->xany.serial & (unsigned long) 0xFFFF); - - switch (ev->type) - { - case KeyPress: - case KeyRelease: - { - XKeyEvent *kev = (XKeyEvent *) ev; - - event->u.u.type = ev->type; - event->u.keyButtonPointer.root = kev->root; - event->u.keyButtonPointer.state = kev->state; - event->u.keyButtonPointer.time = kev->time; - event->u.keyButtonPointer.event = kev->window; - event->u.keyButtonPointer.child = kev->subwindow; - event->u.keyButtonPointer.eventX = kev->x; - event->u.keyButtonPointer.eventY = kev->y; - event->u.keyButtonPointer.rootX = kev->x_root; - event->u.keyButtonPointer.rootY = kev->y_root; - event->u.keyButtonPointer.sameScreen = kev->same_screen; - event->u.u.detail = kev->keycode; - } - } - /*endswitch*/ -} - -static Status xi18n_forwardEvent (XIMS ims, XPointer xp) -{ - Xi18n i18n_core = ims->protocol; - IMForwardEventStruct *call_data = (IMForwardEventStruct *)xp; - FrameMgr fm; - extern XimFrameRec forward_event_fr[]; - register int total_size; - unsigned char *reply = NULL; - unsigned char *replyp; - CARD16 serial; - int event_size; - Xi18nClient *client; - - client = (Xi18nClient *) _Xi18nFindClient (i18n_core, call_data->connect_id); - - /* create FrameMgr */ - fm = FrameMgrInit (forward_event_fr, - NULL, - _Xi18nNeedSwap (i18n_core, call_data->connect_id)); - - total_size = FrameMgrGetTotalSize (fm); - event_size = sizeof (xEvent); - reply = (unsigned char *) malloc (total_size + event_size); - if (!reply) - { - _Xi18nSendMessage (ims, - call_data->connect_id, - XIM_ERROR, - 0, - 0, - 0); - return False; - } - /*endif*/ - memset (reply, 0, total_size + event_size); - FrameMgrSetBuffer (fm, reply); - replyp = reply; - - call_data->sync_bit = 1; /* always sync */ - client->sync = True; - - FrameMgrPutToken (fm, call_data->connect_id); - FrameMgrPutToken (fm, call_data->icid); - FrameMgrPutToken (fm, call_data->sync_bit); - - replyp += total_size; - EventToWireEvent (&(call_data->event), (xEvent *) replyp, &serial); - - FrameMgrPutToken (fm, serial); - - _Xi18nSendMessage (ims, - call_data->connect_id, - XIM_FORWARD_EVENT, - 0, - reply, - total_size + event_size); - - XFree (reply); - FrameMgrFree (fm); - - return True; -} - -static Status xi18n_commit (XIMS ims, XPointer xp) -{ - Xi18n i18n_core = ims->protocol; - IMCommitStruct *call_data = (IMCommitStruct *)xp; - FrameMgr fm; - extern XimFrameRec commit_chars_fr[]; - extern XimFrameRec commit_both_fr[]; - register int total_size; - unsigned char *reply = NULL; - CARD16 str_length; - - call_data->flag |= XimSYNCHRONUS; /* always sync */ - - if (!(call_data->flag & XimLookupKeySym) - && - (call_data->flag & XimLookupChars)) - { - fm = FrameMgrInit (commit_chars_fr, - NULL, - _Xi18nNeedSwap (i18n_core, call_data->connect_id)); - - /* set length of STRING8 */ - str_length = strlen (call_data->commit_string); - FrameMgrSetSize (fm, str_length); - total_size = FrameMgrGetTotalSize (fm); - reply = (unsigned char *) malloc (total_size); - if (!reply) - { - _Xi18nSendMessage (ims, - call_data->connect_id, - XIM_ERROR, - 0, - 0, - 0); - return False; - } - /*endif*/ - memset (reply, 0, total_size); - FrameMgrSetBuffer (fm, reply); - - str_length = FrameMgrGetSize (fm); - FrameMgrPutToken (fm, call_data->connect_id); - FrameMgrPutToken (fm, call_data->icid); - FrameMgrPutToken (fm, call_data->flag); - FrameMgrPutToken (fm, str_length); - FrameMgrPutToken (fm, call_data->commit_string); - } - else - { - fm = FrameMgrInit (commit_both_fr, - NULL, - _Xi18nNeedSwap (i18n_core, call_data->connect_id)); - /* set length of STRING8 */ - str_length = strlen (call_data->commit_string); - if (str_length > 0) - FrameMgrSetSize (fm, str_length); - /*endif*/ - total_size = FrameMgrGetTotalSize (fm); - reply = (unsigned char *) malloc (total_size); - if (!reply) - { - _Xi18nSendMessage (ims, - call_data->connect_id, - XIM_ERROR, - 0, - 0, - 0); - return False; - } - /*endif*/ - FrameMgrSetBuffer (fm, reply); - FrameMgrPutToken (fm, call_data->connect_id); - FrameMgrPutToken (fm, call_data->icid); - FrameMgrPutToken (fm, call_data->flag); - FrameMgrPutToken (fm, call_data->keysym); - if (str_length > 0) - { - str_length = FrameMgrGetSize (fm); - FrameMgrPutToken (fm, str_length); - FrameMgrPutToken (fm, call_data->commit_string); - } - /*endif*/ - } - /*endif*/ - _Xi18nSendMessage (ims, - call_data->connect_id, - XIM_COMMIT, - 0, - reply, - total_size); - FrameMgrFree (fm); - XFree (reply); - - return True; -} - -static int xi18n_callCallback (XIMS ims, XPointer xp) -{ - IMProtocol *call_data = (IMProtocol *)xp; - switch (call_data->major_code) - { - case XIM_GEOMETRY: - return _Xi18nGeometryCallback (ims, call_data); - - case XIM_PREEDIT_START: - return _Xi18nPreeditStartCallback (ims, call_data); - - case XIM_PREEDIT_DRAW: - return _Xi18nPreeditDrawCallback (ims, call_data); - - case XIM_PREEDIT_CARET: - return _Xi18nPreeditCaretCallback (ims, call_data); - - case XIM_PREEDIT_DONE: - return _Xi18nPreeditDoneCallback (ims, call_data); - - case XIM_STATUS_START: - return _Xi18nStatusStartCallback (ims, call_data); - - case XIM_STATUS_DRAW: - return _Xi18nStatusDrawCallback (ims, call_data); - - case XIM_STATUS_DONE: - return _Xi18nStatusDoneCallback (ims, call_data); - - case XIM_STR_CONVERSION: - return _Xi18nStringConversionCallback (ims, call_data); - } - /*endswitch*/ - return False; -} - -/* preeditStart and preeditEnd are used only for Dynamic Event Flow. */ -static int xi18n_preeditStart (XIMS ims, XPointer xp) -{ - IMProtocol *call_data = (IMProtocol *)xp; - Xi18n i18n_core = ims->protocol; - IMPreeditStateStruct *preedit_state = - (IMPreeditStateStruct *) &call_data->preedit_state; - long mask; - int on_key_num = i18n_core->address.on_keys.count_keys; - int off_key_num = i18n_core->address.off_keys.count_keys; - - if (on_key_num == 0 && off_key_num == 0) - return False; - /*endif*/ - if (i18n_core->address.imvalue_mask & I18N_FILTERMASK) - mask = i18n_core->address.filterevent_mask; - else - mask = DEFAULT_FILTER_MASK; - /*endif*/ - _Xi18nSetEventMask (ims, - preedit_state->connect_id, - preedit_state->connect_id, - preedit_state->icid, - mask, - ~mask); - return True; -} - -static int xi18n_preeditEnd (XIMS ims, XPointer xp) -{ - IMProtocol *call_data = (IMProtocol *)xp; - Xi18n i18n_core = ims->protocol; - int on_key_num = i18n_core->address.on_keys.count_keys; - int off_key_num = i18n_core->address.off_keys.count_keys; - IMPreeditStateStruct *preedit_state; - - preedit_state = (IMPreeditStateStruct *) &call_data->preedit_state; - - if (on_key_num == 0 && off_key_num == 0) - return False; - /*endif*/ - - _Xi18nSetEventMask (ims, - preedit_state->connect_id, - preedit_state->connect_id, - preedit_state->icid, - 0, - 0); - return True; -} - -static int xi18n_syncXlib (XIMS ims, XPointer xp) -{ - IMProtocol *call_data = (IMProtocol *)xp; - Xi18n i18n_core = ims->protocol; - IMSyncXlibStruct *sync_xlib; - - extern XimFrameRec sync_fr[]; - FrameMgr fm; - CARD16 connect_id = call_data->any.connect_id; - int total_size; - unsigned char *reply; - - sync_xlib = (IMSyncXlibStruct *) &call_data->sync_xlib; - fm = FrameMgrInit (sync_fr, NULL, - _Xi18nNeedSwap (i18n_core, connect_id)); - total_size = FrameMgrGetTotalSize(fm); - reply = (unsigned char *) malloc (total_size); - if (!reply) { - _Xi18nSendMessage (ims, connect_id, XIM_ERROR, 0, 0, 0); - return False; - } - memset (reply, 0, total_size); - FrameMgrSetBuffer (fm, reply); - - /* input input-method ID */ - FrameMgrPutToken (fm, connect_id); - /* input input-context ID */ - FrameMgrPutToken (fm, sync_xlib->icid); - _Xi18nSendMessage (ims, connect_id, XIM_SYNC, 0, reply, total_size); - - FrameMgrFree (fm); - XFree(reply); - return True; -} - diff -Nru fcitx-4.0.1/lib/i18nPtHdr.c fcitx-4.1.1/lib/i18nPtHdr.c --- fcitx-4.0.1/lib/i18nPtHdr.c 2010-11-28 11:54:51.000000000 +0000 +++ fcitx-4.1.1/lib/i18nPtHdr.c 1970-01-01 00:00:00.000000000 +0000 @@ -1,1815 +0,0 @@ -/****************************************************************** - - Copyright 1994, 1995 by Sun Microsystems, Inc. - Copyright 1993, 1994 by Hewlett-Packard Company - -Permission to use, copy, modify, distribute, and sell this software -and its documentation for any purpose is hereby granted without fee, -provided that the above copyright notice appear in all copies and -that both that copyright notice and this permission notice appear -in supporting documentation, and that the name of Sun Microsystems, Inc. -and Hewlett-Packard not be used in advertising or publicity pertaining to -distribution of the software without specific, written prior permission. -Sun Microsystems, Inc. and Hewlett-Packard make no representations about -the suitability of this software for any purpose. It is provided "as is" -without express or implied warranty. - -SUN MICROSYSTEMS INC. AND HEWLETT-PACKARD COMPANY DISCLAIMS ALL -WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL -SUN MICROSYSTEMS, INC. AND HEWLETT-PACKARD COMPANY 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. - - Author: Hidetoshi Tajima(tajima@Eng.Sun.COM) Sun Microsystems, Inc. - - This version tidied and debugged by Steve Underwood May 1999 - -******************************************************************/ - -#include -#include -#include -#ifndef NEED_EVENTS -#define NEED_EVENTS -#endif -#include -#undef NEED_EVENTS -#include "FrameMgr.h" -#include "IMdkit.h" -#include "Xi18n.h" -#include "XimFunc.h" - -#ifdef XIM_DEBUG -#include - -static void DebugLog(char * msg) -{ - fprintf(stderr, msg); -} -#endif - -extern Xi18nClient *_Xi18nFindClient (Xi18n, CARD16); - -static void GetProtocolVersion (CARD16 client_major, - CARD16 client_minor, - CARD16 *server_major, - CARD16 *server_minor) -{ - *server_major = client_major; - *server_minor = client_minor; -} - -static void ConnectMessageProc (XIMS ims, - IMProtocol *call_data, - unsigned char *p) -{ - Xi18n i18n_core = ims->protocol; - FrameMgr fm; - extern XimFrameRec connect_fr[], connect_reply_fr[]; - register int total_size; - CARD16 server_major_version, server_minor_version; - unsigned char *reply = NULL; - IMConnectStruct *imconnect = - (IMConnectStruct*) &call_data->imconnect; - CARD16 connect_id = call_data->any.connect_id; - - fm = FrameMgrInit (connect_fr, - (char *) p, - _Xi18nNeedSwap (i18n_core, connect_id)); - - /* get data */ - FrameMgrGetToken (fm, imconnect->byte_order); - FrameMgrGetToken (fm, imconnect->major_version); - FrameMgrGetToken (fm, imconnect->minor_version); - - FrameMgrFree (fm); - - GetProtocolVersion (imconnect->major_version, - imconnect->minor_version, - &server_major_version, - &server_minor_version); -#ifdef PROTOCOL_RICH - if (i18n_core->address.improto) - { - if (!(i18n_core->address.improto(ims, call_data))) - return; - /*endif*/ - } - /*endif*/ -#endif /* PROTOCOL_RICH */ - - fm = FrameMgrInit (connect_reply_fr, - NULL, - _Xi18nNeedSwap (i18n_core, connect_id)); - - total_size = FrameMgrGetTotalSize (fm); - reply = (unsigned char *) malloc (total_size); - if (!reply) - { - _Xi18nSendMessage (ims, connect_id, XIM_ERROR, 0, 0, 0); - return; - } - /*endif*/ - memset (reply, 0, total_size); - FrameMgrSetBuffer (fm, reply); - - FrameMgrPutToken (fm, server_major_version); - FrameMgrPutToken (fm, server_minor_version); - - _Xi18nSendMessage (ims, - connect_id, - XIM_CONNECT_REPLY, - 0, - reply, - total_size); - - FrameMgrFree (fm); - XFree (reply); -} - -static void DisConnectMessageProc (XIMS ims, IMProtocol *call_data) -{ - Xi18n i18n_core = ims->protocol; - unsigned char *reply = NULL; - CARD16 connect_id = call_data->any.connect_id; - -#ifdef PROTOCOL_RICH - if (i18n_core->address.improto) - { - if (!(i18n_core->address.improto (ims, call_data))) - return; - /*endif*/ - } - /*endif*/ -#endif /* PROTOCOL_RICH */ - - _Xi18nSendMessage (ims, - connect_id, - XIM_DISCONNECT_REPLY, - 0, - reply, - 0); - - i18n_core->methods.disconnect (ims, connect_id); -} - -static void OpenMessageProc(XIMS ims, IMProtocol *call_data, unsigned char *p) -{ - Xi18n i18n_core = ims->protocol; - FrameMgr fm; - extern XimFrameRec open_fr[]; - extern XimFrameRec open_reply_fr[]; - unsigned char *reply = NULL; - int str_size; - register int i, total_size; - CARD16 connect_id = call_data->any.connect_id; - int str_length; - char *name; - IMOpenStruct *imopen = (IMOpenStruct *) &call_data->imopen; - - fm = FrameMgrInit (open_fr, - (char *) p, - _Xi18nNeedSwap (i18n_core, connect_id)); - - /* get data */ - FrameMgrGetToken (fm, str_length); - FrameMgrSetSize (fm, str_length); - FrameMgrGetToken (fm, name); - imopen->lang.length = str_length; - imopen->lang.name = malloc (str_length + 1); - strncpy (imopen->lang.name, name, str_length); - imopen->lang.name[str_length] = (char) 0; - - FrameMgrFree (fm); - - if (i18n_core->address.improto) - { - if (!(i18n_core->address.improto(ims, call_data))) - return; - /*endif*/ - } - /*endif*/ - if ((i18n_core->address.imvalue_mask & I18N_ON_KEYS) - || - (i18n_core->address.imvalue_mask & I18N_OFF_KEYS)) - { - _Xi18nSendTriggerKey (ims, connect_id); - } - /*endif*/ - XFree (imopen->lang.name); - - fm = FrameMgrInit (open_reply_fr, - NULL, - _Xi18nNeedSwap (i18n_core, connect_id)); - - /* set iteration count for list of imattr */ - FrameMgrSetIterCount (fm, i18n_core->address.im_attr_num); - - /* set length of BARRAY item in ximattr_fr */ - for (i = 0; i < i18n_core->address.im_attr_num; i++) - { - str_size = strlen (i18n_core->address.xim_attr[i].name); - FrameMgrSetSize (fm, str_size); - } - /*endfor*/ - /* set iteration count for list of icattr */ - FrameMgrSetIterCount (fm, i18n_core->address.ic_attr_num); - /* set length of BARRAY item in xicattr_fr */ - for (i = 0; i < i18n_core->address.ic_attr_num; i++) - { - str_size = strlen (i18n_core->address.xic_attr[i].name); - FrameMgrSetSize (fm, str_size); - } - /*endfor*/ - - total_size = FrameMgrGetTotalSize (fm); - reply = (unsigned char *) malloc (total_size); - if (!reply) - { - _Xi18nSendMessage (ims, connect_id, XIM_ERROR, 0, 0, 0); - return; - } - /*endif*/ - memset (reply, 0, total_size); - FrameMgrSetBuffer (fm, reply); - - /* input input-method ID */ - FrameMgrPutToken (fm, connect_id); - - for (i = 0; i < i18n_core->address.im_attr_num; i++) - { - str_size = FrameMgrGetSize (fm); - FrameMgrPutToken (fm, i18n_core->address.xim_attr[i].attribute_id); - FrameMgrPutToken (fm, i18n_core->address.xim_attr[i].type); - FrameMgrPutToken (fm, str_size); - FrameMgrPutToken (fm, i18n_core->address.xim_attr[i].name); - } - /*endfor*/ - for (i = 0; i < i18n_core->address.ic_attr_num; i++) - { - str_size = FrameMgrGetSize (fm); - FrameMgrPutToken (fm, i18n_core->address.xic_attr[i].attribute_id); - FrameMgrPutToken (fm, i18n_core->address.xic_attr[i].type); - FrameMgrPutToken (fm, str_size); - FrameMgrPutToken (fm, i18n_core->address.xic_attr[i].name); - } - /*endfor*/ - - _Xi18nSendMessage (ims, - connect_id, - XIM_OPEN_REPLY, - 0, - reply, - total_size); - - FrameMgrFree (fm); - XFree (reply); -} - -static void CloseMessageProc (XIMS ims, - IMProtocol *call_data, - unsigned char *p) -{ - Xi18n i18n_core = ims->protocol; - FrameMgr fm; - extern XimFrameRec close_fr[]; - extern XimFrameRec close_reply_fr[]; - unsigned char *reply = NULL; - register int total_size; - CARD16 connect_id = call_data->any.connect_id; - CARD16 input_method_ID; - - fm = FrameMgrInit (close_fr, - (char *) p, - _Xi18nNeedSwap (i18n_core, connect_id)); - - FrameMgrGetToken (fm, input_method_ID); - - FrameMgrFree (fm); - - if (i18n_core->address.improto) - { - if (!(i18n_core->address.improto (ims, call_data))) - return; - /*endif*/ - } - /*endif*/ - - fm = FrameMgrInit (close_reply_fr, - NULL, - _Xi18nNeedSwap (i18n_core, connect_id)); - - total_size = FrameMgrGetTotalSize (fm); - reply = (unsigned char *) malloc (total_size); - if (!reply) - { - _Xi18nSendMessage (ims, - connect_id, - XIM_ERROR, - 0, - 0, - 0); - return; - } - /*endif*/ - memset (reply, 0, total_size); - FrameMgrSetBuffer (fm, reply); - - FrameMgrPutToken (fm, input_method_ID); - - _Xi18nSendMessage (ims, - connect_id, - XIM_CLOSE_REPLY, - 0, - reply, - total_size); - - FrameMgrFree (fm); - XFree (reply); -} - -static XIMExt *MakeExtensionList (Xi18n i18n_core, - XIMStr *lib_extension, - int number, - int *reply_number) -{ - XIMExt *ext_list; - XIMExt *im_ext = (XIMExt *) i18n_core->address.extension; - int im_ext_len = i18n_core->address.ext_num; - int i; - int j; - - *reply_number = 0; - - if (number == 0) - { - /* query all extensions */ - *reply_number = im_ext_len; - } - else - { - for (i = 0; i < im_ext_len; i++) - { - for (j = 0; j < (int) number; j++) - { - if (strcmp (lib_extension[j].name, im_ext[i].name) == 0) - { - (*reply_number)++; - break; - } - /*endif*/ - } - /*endfor*/ - } - /*endfor*/ - } - /*endif*/ - - if (!(*reply_number)) - return NULL; - /*endif*/ - ext_list = (XIMExt *) malloc (sizeof (XIMExt)*(*reply_number)); - if (!ext_list) - return NULL; - /*endif*/ - memset (ext_list, 0, sizeof (XIMExt)*(*reply_number)); - - if (number == 0) - { - /* query all extensions */ - for (i = 0; i < im_ext_len; i++) - { - ext_list[i].major_opcode = im_ext[i].major_opcode; - ext_list[i].minor_opcode = im_ext[i].minor_opcode; - ext_list[i].length = im_ext[i].length; - ext_list[i].name = malloc (im_ext[i].length + 1); - strcpy (ext_list[i].name, im_ext[i].name); - } - /*endfor*/ - } - else - { - int n = 0; - - for (i = 0; i < im_ext_len; i++) - { - for (j = 0; j < (int)number; j++) - { - if (strcmp (lib_extension[j].name, im_ext[i].name) == 0) - { - ext_list[n].major_opcode = im_ext[i].major_opcode; - ext_list[n].minor_opcode = im_ext[i].minor_opcode; - ext_list[n].length = im_ext[i].length; - ext_list[n].name = malloc (im_ext[i].length + 1); - strcpy (ext_list[n].name, im_ext[i].name); - n++; - break; - } - /*endif*/ - } - /*endfor*/ - } - /*endfor*/ - } - /*endif*/ - return ext_list; -} - -static void QueryExtensionMessageProc (XIMS ims, - IMProtocol *call_data, - unsigned char *p) -{ - Xi18n i18n_core = ims->protocol; - FrameMgr fm; - FmStatus status; - extern XimFrameRec query_extension_fr[]; - extern XimFrameRec query_extension_reply_fr[]; - unsigned char *reply = NULL; - int str_size; - register int i; - register int number; - register int total_size; - int byte_length; - int reply_number = 0; - XIMExt *ext_list; - IMQueryExtensionStruct *query_ext = - (IMQueryExtensionStruct *) &call_data->queryext; - CARD16 connect_id = call_data->any.connect_id; - CARD16 input_method_ID; - - fm = FrameMgrInit (query_extension_fr, - (char *) p, - _Xi18nNeedSwap (i18n_core, connect_id)); - - FrameMgrGetToken (fm, input_method_ID); - FrameMgrGetToken (fm, byte_length); - query_ext->extension = (XIMStr *) malloc (sizeof (XIMStr)*10); - memset (query_ext->extension, 0, sizeof (XIMStr)*10); - number = 0; - while (FrameMgrIsIterLoopEnd (fm, &status) == False) - { - char *name; - int str_length; - - FrameMgrGetToken (fm, str_length); - FrameMgrSetSize (fm, str_length); - query_ext->extension[number].length = str_length; - FrameMgrGetToken (fm, name); - query_ext->extension[number].name = malloc (str_length + 1); - strncpy (query_ext->extension[number].name, name, str_length); - query_ext->extension[number].name[str_length] = (char) 0; - number++; - } - /*endwhile*/ - query_ext->number = number; - -#ifdef PROTOCOL_RICH - if (i18n_core->address.improto) - { - if (!(i18n_core->address.improto(ims, call_data))) - return; - /*endif*/ - } - /*endif*/ -#endif /* PROTOCOL_RICH */ - - FrameMgrFree (fm); - - ext_list = MakeExtensionList (i18n_core, - query_ext->extension, - number, - &reply_number); - - for (i = 0; i < number; i++) - XFree (query_ext->extension[i].name); - /*endfor*/ - XFree (query_ext->extension); - - fm = FrameMgrInit (query_extension_reply_fr, - NULL, - _Xi18nNeedSwap (i18n_core, connect_id)); - - /* set iteration count for list of extensions */ - FrameMgrSetIterCount (fm, reply_number); - - /* set length of BARRAY item in ext_fr */ - for (i = 0; i < reply_number; i++) - { - str_size = strlen (ext_list[i].name); - FrameMgrSetSize (fm, str_size); - } - /*endfor*/ - - total_size = FrameMgrGetTotalSize (fm); - reply = (unsigned char *) malloc (total_size); - if (!reply) - { - _Xi18nSendMessage (ims, - connect_id, - XIM_ERROR, - 0, - 0, - 0); - return; - } - /*endif*/ - memset (reply, 0, total_size); - FrameMgrSetBuffer (fm, reply); - - FrameMgrPutToken (fm, input_method_ID); - - for (i = 0; i < reply_number; i++) - { - str_size = FrameMgrGetSize (fm); - FrameMgrPutToken (fm, ext_list[i].major_opcode); - FrameMgrPutToken (fm, ext_list[i].minor_opcode); - FrameMgrPutToken (fm, str_size); - FrameMgrPutToken (fm, ext_list[i].name); - } - /*endfor*/ - _Xi18nSendMessage (ims, - connect_id, - XIM_QUERY_EXTENSION_REPLY, - 0, - reply, - total_size); - FrameMgrFree (fm); - XFree (reply); - - for (i = 0; i < reply_number; i++) - XFree (ext_list[i].name); - /*endfor*/ - XFree ((char *) ext_list); -} - -static void SyncReplyMessageProc (XIMS ims, - IMProtocol *call_data, - unsigned char *p) -{ - Xi18n i18n_core = ims->protocol; - FrameMgr fm; - extern XimFrameRec sync_reply_fr[]; - CARD16 connect_id = call_data->any.connect_id; - Xi18nClient *client; - CARD16 input_method_ID; - CARD16 input_context_ID; - - client = (Xi18nClient *)_Xi18nFindClient (i18n_core, connect_id); - fm = FrameMgrInit (sync_reply_fr, - (char *) p, - _Xi18nNeedSwap (i18n_core, connect_id)); - FrameMgrGetToken (fm, input_method_ID); - FrameMgrGetToken (fm, input_context_ID); - FrameMgrFree (fm); - - client->sync = False; - - if (ims->sync == True) { - ims->sync = False; - if (i18n_core->address.improto) { - call_data->sync_xlib.major_code = XIM_SYNC_REPLY; - call_data->sync_xlib.minor_code = 0; - call_data->sync_xlib.connect_id = input_method_ID; - call_data->sync_xlib.icid = input_context_ID; - i18n_core->address.improto(ims, call_data); - } - } -} - -static void GetIMValueFromName (Xi18n i18n_core, - CARD16 connect_id, - char *buf, - char *name, - int *length) -{ - register int i; - - if (strcmp (name, XNQueryInputStyle) == 0) - { - XIMStyles *styles = (XIMStyles *) &i18n_core->address.input_styles; - - *length = sizeof (CARD16)*2; /* count_styles, unused */ - *length += styles->count_styles*sizeof (CARD32); - - if (buf != NULL) - { - FrameMgr fm; - extern XimFrameRec input_styles_fr[]; - unsigned char *data = NULL; - int total_size; - - fm = FrameMgrInit (input_styles_fr, - NULL, - _Xi18nNeedSwap (i18n_core, connect_id)); - - /* set iteration count for list of input_style */ - FrameMgrSetIterCount (fm, styles->count_styles); - - total_size = FrameMgrGetTotalSize (fm); - data = (unsigned char *) malloc (total_size); - if (!data) - return; - /*endif*/ - memset (data, 0, total_size); - FrameMgrSetBuffer (fm, data); - - FrameMgrPutToken (fm, styles->count_styles); - for (i = 0; i < (int) styles->count_styles; i++) - FrameMgrPutToken (fm, styles->supported_styles[i]); - /*endfor*/ - memmove (buf, data, total_size); - FrameMgrFree (fm); - - /* add by hurrica...@126.com */ - free (data); - /* ************************* */ - } - /*endif*/ - } - /*endif*/ - - else if (strcmp (name, XNQueryIMValuesList) == 0) { - } -} - -static XIMAttribute *MakeIMAttributeList (Xi18n i18n_core, - CARD16 connect_id, - CARD16 *list, - int *number, - int *length) -{ - XIMAttribute *attrib_list; - int list_num; - XIMAttr *attr = i18n_core->address.xim_attr; - int list_len = i18n_core->address.im_attr_num; - register int i; - register int j; - int value_length; - int number_ret = 0; - - *length = 0; - list_num = 0; - for (i = 0; i < *number; i++) - { - for (j = 0; j < list_len; j++) - { - if (attr[j].attribute_id == list[i]) - { - list_num++; - break; - } - /*endif*/ - } - /*endfor*/ - } - /*endfor*/ - attrib_list = (XIMAttribute *) malloc (sizeof (XIMAttribute)*list_num); - if (!attrib_list) - return NULL; - /*endif*/ - memset (attrib_list, 0, sizeof (XIMAttribute)*list_num); - number_ret = list_num; - list_num = 0; - for (i = 0; i < *number; i++) - { - for (j = 0; j < list_len; j++) - { - if (attr[j].attribute_id == list[i]) - { - attrib_list[list_num].attribute_id = attr[j].attribute_id; - attrib_list[list_num].name_length = attr[j].length; - attrib_list[list_num].name = attr[j].name; - attrib_list[list_num].type = attr[j].type; - GetIMValueFromName (i18n_core, - connect_id, - NULL, - attr[j].name, - &value_length); - attrib_list[list_num].value_length = value_length; - attrib_list[list_num].value = (void *) malloc (value_length); - memset(attrib_list[list_num].value, 0, value_length); - GetIMValueFromName (i18n_core, - connect_id, - attrib_list[list_num].value, - attr[j].name, - &value_length); - *length += sizeof (CARD16)*2; - *length += value_length; - *length += IMPAD (value_length); - list_num++; - break; - } - /*endif*/ - } - /*endfor*/ - } - /*endfor*/ - *number = number_ret; - return attrib_list; -} - -static void GetIMValuesMessageProc (XIMS ims, - IMProtocol *call_data, - unsigned char *p) -{ - Xi18n i18n_core = ims->protocol; - FrameMgr fm; - FmStatus status; - extern XimFrameRec get_im_values_fr[]; - extern XimFrameRec get_im_values_reply_fr[]; - CARD16 byte_length; - int list_len, total_size; - unsigned char *reply = NULL; - int iter_count; - register int i; - register int j; - int number; - CARD16 *im_attrID_list; - char **name_list; - CARD16 name_number; - XIMAttribute *im_attribute_list; - IMGetIMValuesStruct *getim = (IMGetIMValuesStruct *)&call_data->getim; - CARD16 connect_id = call_data->any.connect_id; - CARD16 input_method_ID; - - /* create FrameMgr */ - fm = FrameMgrInit (get_im_values_fr, - (char *) p, - _Xi18nNeedSwap (i18n_core, connect_id)); - - FrameMgrGetToken (fm, input_method_ID); - FrameMgrGetToken (fm, byte_length); - im_attrID_list = (CARD16 *) malloc (sizeof (CARD16)*20); - memset (im_attrID_list, 0, sizeof (CARD16)*20); - name_list = (char **)malloc(sizeof(char *) * 20); - memset(name_list, 0, sizeof(char *) * 20); - number = 0; - while (FrameMgrIsIterLoopEnd (fm, &status) == False) - { - FrameMgrGetToken (fm, im_attrID_list[number]); - number++; - } - FrameMgrFree (fm); - - name_number = 0; - for (i = 0; i < number; i++) { - for (j = 0; j < i18n_core->address.im_attr_num; j++) { - if (i18n_core->address.xim_attr[j].attribute_id == - im_attrID_list[i]) { - name_list[name_number++] = - i18n_core->address.xim_attr[j].name; - break; - } - } - } - getim->number = name_number; - getim->im_attr_list = name_list; - XFree (name_list); - - -#ifdef PROTOCOL_RICH - if (i18n_core->address.improto) { - if (!(i18n_core->address.improto (ims, call_data))) - return; - } -#endif /* PROTOCOL_RICH */ - - im_attribute_list = MakeIMAttributeList (i18n_core, - connect_id, - im_attrID_list, - &number, - &list_len); - if (im_attrID_list) - XFree (im_attrID_list); - /*endif*/ - - fm = FrameMgrInit (get_im_values_reply_fr, - NULL, - _Xi18nNeedSwap (i18n_core, connect_id)); - - iter_count = number; - - /* set iteration count for list of im_attribute */ - FrameMgrSetIterCount (fm, iter_count); - - /* set length of BARRAY item in ximattribute_fr */ - for (i = 0; i < iter_count; i++) - FrameMgrSetSize (fm, im_attribute_list[i].value_length); - /*endfor*/ - - total_size = FrameMgrGetTotalSize (fm); - reply = (unsigned char *) malloc (total_size); - if (!reply) - { - _Xi18nSendMessage (ims, connect_id, XIM_ERROR, 0, 0, 0); - return; - } - /*endif*/ - memset (reply, 0, total_size); - FrameMgrSetBuffer (fm, reply); - - FrameMgrPutToken (fm, input_method_ID); - - for (i = 0; i < iter_count; i++) - { - FrameMgrPutToken (fm, im_attribute_list[i].attribute_id); - FrameMgrPutToken (fm, im_attribute_list[i].value_length); - FrameMgrPutToken (fm, im_attribute_list[i].value); - } - /*endfor*/ - _Xi18nSendMessage (ims, - connect_id, - XIM_GET_IM_VALUES_REPLY, - 0, - reply, - total_size); - FrameMgrFree (fm); - XFree (reply); - - for (i = 0; i < iter_count; i++) - XFree(im_attribute_list[i].value); - XFree (im_attribute_list); -} - -static void CreateICMessageProc (XIMS ims, - IMProtocol *call_data, - unsigned char *p) -{ - _Xi18nChangeIC (ims, call_data, p, True); -} - -static void SetICValuesMessageProc (XIMS ims, - IMProtocol *call_data, - unsigned char *p) -{ - _Xi18nChangeIC (ims, call_data, p, False); -} - -static void GetICValuesMessageProc (XIMS ims, - IMProtocol *call_data, - unsigned char *p) -{ - _Xi18nGetIC (ims, call_data, p); -} - -static void SetICFocusMessageProc (XIMS ims, - IMProtocol *call_data, - unsigned char *p) -{ - Xi18n i18n_core = ims->protocol; - FrameMgr fm; - extern XimFrameRec set_ic_focus_fr[]; - IMChangeFocusStruct *setfocus; - CARD16 connect_id = call_data->any.connect_id; - CARD16 input_method_ID; - - setfocus = (IMChangeFocusStruct *) &call_data->changefocus; - - fm = FrameMgrInit (set_ic_focus_fr, - (char *) p, - _Xi18nNeedSwap (i18n_core, connect_id)); - - /* get data */ - FrameMgrGetToken (fm, input_method_ID); - FrameMgrGetToken (fm, setfocus->icid); - - FrameMgrFree (fm); - - if (i18n_core->address.improto) - { - if (!(i18n_core->address.improto (ims, call_data))) - return; - /*endif*/ - } - /*endif*/ -} - -static void UnsetICFocusMessageProc (XIMS ims, - IMProtocol *call_data, - unsigned char *p) -{ - Xi18n i18n_core = ims->protocol; - FrameMgr fm; - extern XimFrameRec unset_ic_focus_fr[]; - IMChangeFocusStruct *unsetfocus; - CARD16 connect_id = call_data->any.connect_id; - CARD16 input_method_ID; - - unsetfocus = (IMChangeFocusStruct *) &call_data->changefocus; - - fm = FrameMgrInit (unset_ic_focus_fr, - (char *) p, - _Xi18nNeedSwap (i18n_core, connect_id)); - - /* get data */ - FrameMgrGetToken (fm, input_method_ID); - FrameMgrGetToken (fm, unsetfocus->icid); - - FrameMgrFree (fm); - - if (i18n_core->address.improto) - { - if (!(i18n_core->address.improto (ims, call_data))) - return; - /*endif*/ - } - /*endif*/ -} - -static void DestroyICMessageProc (XIMS ims, - IMProtocol *call_data, - unsigned char *p) -{ - Xi18n i18n_core = ims->protocol; - FrameMgr fm; - extern XimFrameRec destroy_ic_fr[]; - extern XimFrameRec destroy_ic_reply_fr[]; - register int total_size; - unsigned char *reply = NULL; - IMDestroyICStruct *destroy = - (IMDestroyICStruct *) &call_data->destroyic; - CARD16 connect_id = call_data->any.connect_id; - CARD16 input_method_ID; - - fm = FrameMgrInit (destroy_ic_fr, - (char *) p, - _Xi18nNeedSwap (i18n_core, connect_id)); - - /* get data */ - FrameMgrGetToken (fm, input_method_ID); - FrameMgrGetToken (fm, destroy->icid); - - FrameMgrFree (fm); - - if (i18n_core->address.improto) - { - if (!(i18n_core->address.improto (ims, call_data))) - return; - /*endif*/ - } - /*endif*/ - - fm = FrameMgrInit (destroy_ic_reply_fr, - NULL, - _Xi18nNeedSwap (i18n_core, connect_id)); - - total_size = FrameMgrGetTotalSize (fm); - reply = (unsigned char *) malloc (total_size); - if (!reply) - { - _Xi18nSendMessage (ims, connect_id, XIM_ERROR, 0, 0, 0); - return; - } - /*endif*/ - memset (reply, 0, total_size); - FrameMgrSetBuffer (fm, reply); - - FrameMgrPutToken (fm, input_method_ID); - FrameMgrPutToken (fm, destroy->icid); - - _Xi18nSendMessage (ims, - connect_id, - XIM_DESTROY_IC_REPLY, - 0, - reply, - total_size); - XFree(reply); - FrameMgrFree (fm); -} - -static void ResetICMessageProc (XIMS ims, - IMProtocol *call_data, - unsigned char *p) -{ - Xi18n i18n_core = ims->protocol; - FrameMgr fm; - extern XimFrameRec reset_ic_fr[]; - extern XimFrameRec reset_ic_reply_fr[]; - register int total_size; - unsigned char *reply = NULL; - IMResetICStruct *resetic = - (IMResetICStruct *) &call_data->resetic; - CARD16 connect_id = call_data->any.connect_id; - CARD16 input_method_ID; - - fm = FrameMgrInit (reset_ic_fr, - (char *) p, - _Xi18nNeedSwap (i18n_core, connect_id)); - - /* get data */ - FrameMgrGetToken (fm, input_method_ID); - FrameMgrGetToken (fm, resetic->icid); - - FrameMgrFree (fm); - - if (i18n_core->address.improto) - { - if (!(i18n_core->address.improto(ims, call_data))) - return; - /*endif*/ - } - /*endif*/ - - /* create FrameMgr */ - fm = FrameMgrInit (reset_ic_reply_fr, - NULL, - _Xi18nNeedSwap (i18n_core, connect_id)); - - /* set length of STRING8 */ - FrameMgrSetSize (fm, resetic->length); - - total_size = FrameMgrGetTotalSize (fm); - reply = (unsigned char *) malloc (total_size); - if (!reply) - { - _Xi18nSendMessage (ims, connect_id, XIM_ERROR, 0, 0, 0); - return; - } - /*endif*/ - memset (reply, 0, total_size); - FrameMgrSetBuffer (fm, reply); - - FrameMgrPutToken (fm, input_method_ID); - FrameMgrPutToken (fm, resetic->icid); - FrameMgrPutToken(fm, resetic->length); - FrameMgrPutToken (fm, resetic->commit_string); - - _Xi18nSendMessage (ims, - connect_id, - XIM_RESET_IC_REPLY, - 0, - reply, - total_size); - FrameMgrFree (fm); - XFree(reply); -} - -static int WireEventToEvent (Xi18n i18n_core, - xEvent *event, - CARD16 serial, - XEvent *ev) -{ - ev->xany.serial = event->u.u.sequenceNumber & ((unsigned long) 0xFFFF); - ev->xany.serial |= serial << 16; - ev->xany.send_event = False; - ev->xany.display = i18n_core->address.dpy; - switch (ev->type = event->u.u.type & 0x7F) - { - case KeyPress: - case KeyRelease: - ((XKeyEvent *) ev)->keycode = event->u.u.detail; - ((XKeyEvent *) ev)->window = event->u.keyButtonPointer.event; - ((XKeyEvent *) ev)->state = event->u.keyButtonPointer.state; - ((XKeyEvent *) ev)->time = event->u.keyButtonPointer.time; - ((XKeyEvent *) ev)->root = event->u.keyButtonPointer.root; - ((XKeyEvent *) ev)->x = event->u.keyButtonPointer.eventX; - ((XKeyEvent *) ev)->y = event->u.keyButtonPointer.eventY; - ((XKeyEvent *) ev)->x_root = 0; - ((XKeyEvent *) ev)->y_root = 0; - return True; - } - return False; -} - -static void ForwardEventMessageProc (XIMS ims, - IMProtocol *call_data, - unsigned char *p) -{ - Xi18n i18n_core = ims->protocol; - FrameMgr fm; - extern XimFrameRec forward_event_fr[]; - xEvent wire_event; - IMForwardEventStruct *forward = - (IMForwardEventStruct*) &call_data->forwardevent; - CARD16 connect_id = call_data->any.connect_id; - CARD16 input_method_ID; - - fm = FrameMgrInit (forward_event_fr, - (char *) p, - _Xi18nNeedSwap (i18n_core, connect_id)); - /* get data */ - FrameMgrGetToken (fm, input_method_ID); - FrameMgrGetToken (fm, forward->icid); - FrameMgrGetToken (fm, forward->sync_bit); - FrameMgrGetToken (fm, forward->serial_number); - p += sizeof (CARD16)*4; - memmove (&wire_event, p, sizeof (xEvent)); - - FrameMgrFree (fm); - - if (WireEventToEvent (i18n_core, - &wire_event, - forward->serial_number, - &forward->event) == True) - { - if (i18n_core->address.improto) - { - if (!(i18n_core->address.improto(ims, call_data))) - return; - /*endif*/ - } - /*endif*/ - } - /*endif*/ -} - -static void ExtForwardKeyEventMessageProc (XIMS ims, - IMProtocol *call_data, - unsigned char *p) -{ - Xi18n i18n_core = ims->protocol; - FrameMgr fm; - extern XimFrameRec ext_forward_keyevent_fr[]; - CARD8 type, keycode; - CARD16 state; - CARD32 ev_time, window; - IMForwardEventStruct *forward = - (IMForwardEventStruct *) &call_data->forwardevent; - XEvent *ev = (XEvent *) &forward->event; - CARD16 connect_id = call_data->any.connect_id; - CARD16 input_method_ID; - - fm = FrameMgrInit (ext_forward_keyevent_fr, - (char *) p, - _Xi18nNeedSwap (i18n_core, connect_id)); - /* get data */ - FrameMgrGetToken (fm, input_method_ID); - FrameMgrGetToken (fm, forward->icid); - FrameMgrGetToken (fm, forward->sync_bit); - FrameMgrGetToken (fm, forward->serial_number); - FrameMgrGetToken (fm, type); - FrameMgrGetToken (fm, keycode); - FrameMgrGetToken (fm, state); - FrameMgrGetToken (fm, ev_time); - FrameMgrGetToken (fm, window); - - FrameMgrFree (fm); - - if (type != KeyPress) - { - _Xi18nSendMessage (ims, connect_id, XIM_ERROR, 0, 0, 0); - return; - } - /*endif*/ - - /* make a faked keypress event */ - ev->type = (int)type; - ev->xany.send_event = True; - ev->xany.display = i18n_core->address.dpy; - ev->xany.serial = (unsigned long) forward->serial_number; - ((XKeyEvent *) ev)->keycode = (unsigned int) keycode; - ((XKeyEvent *) ev)->state = (unsigned int) state; - ((XKeyEvent *) ev)->time = (Time) ev_time; - ((XKeyEvent *) ev)->window = (Window) window; - ((XKeyEvent *) ev)->root = DefaultRootWindow (ev->xany.display); - ((XKeyEvent *) ev)->x = 0; - ((XKeyEvent *) ev)->y = 0; - ((XKeyEvent *) ev)->x_root = 0; - ((XKeyEvent *) ev)->y_root = 0; - - if (i18n_core->address.improto) - { - if (!(i18n_core->address.improto (ims, call_data))) - return; - /*endif*/ - } - /*endif*/ -} - -static void ExtMoveMessageProc (XIMS ims, - IMProtocol *call_data, - unsigned char *p) -{ - Xi18n i18n_core = ims->protocol; - FrameMgr fm; - extern XimFrameRec ext_move_fr[]; - IMMoveStruct *extmove = - (IMMoveStruct*) & call_data->extmove; - CARD16 connect_id = call_data->any.connect_id; - CARD16 input_method_ID; - - fm = FrameMgrInit (ext_move_fr, - (char *) p, - _Xi18nNeedSwap (i18n_core, connect_id)); - /* get data */ - FrameMgrGetToken (fm, input_method_ID); - FrameMgrGetToken (fm, extmove->icid); - FrameMgrGetToken (fm, extmove->x); - FrameMgrGetToken (fm, extmove->y); - - FrameMgrFree (fm); - - if (i18n_core->address.improto) - { - if (!(i18n_core->address.improto (ims, call_data))) - return; - /*endif*/ - } - /*endif*/ -} - -static void ExtensionMessageProc (XIMS ims, - IMProtocol *call_data, - unsigned char *p) -{ - switch (call_data->any.minor_code) - { - case XIM_EXT_FORWARD_KEYEVENT: - ExtForwardKeyEventMessageProc (ims, call_data, p); - break; - - case XIM_EXT_MOVE: - ExtMoveMessageProc (ims, call_data, p); - break; - } - /*endswitch*/ -} - -static void TriggerNotifyMessageProc (XIMS ims, - IMProtocol *call_data, - unsigned char *p) -{ - Xi18n i18n_core = ims->protocol; - FrameMgr fm; - extern XimFrameRec trigger_notify_fr[], trigger_notify_reply_fr[]; - register int total_size; - unsigned char *reply = NULL; - IMTriggerNotifyStruct *trigger = - (IMTriggerNotifyStruct *) &call_data->triggernotify; - CARD16 connect_id = call_data->any.connect_id; - CARD16 input_method_ID; - CARD32 flag; - - fm = FrameMgrInit (trigger_notify_fr, - (char *) p, - _Xi18nNeedSwap (i18n_core, connect_id)); - /* get data */ - FrameMgrGetToken (fm, input_method_ID); - FrameMgrGetToken (fm, trigger->icid); - FrameMgrGetToken (fm, trigger->flag); - FrameMgrGetToken (fm, trigger->key_index); - FrameMgrGetToken (fm, trigger->event_mask); - /* - In order to support Front End Method, this event_mask must be saved - per clients so that it should be restored by an XIM_EXT_SET_EVENT_MASK - call when preediting mode is reset to off. - */ - - flag = trigger->flag; - - FrameMgrFree (fm); - - fm = FrameMgrInit (trigger_notify_reply_fr, - NULL, - _Xi18nNeedSwap (i18n_core, connect_id)); - - total_size = FrameMgrGetTotalSize (fm); - reply = (unsigned char *) malloc (total_size); - if (!reply) - { - _Xi18nSendMessage (ims, connect_id, XIM_ERROR, 0, 0, 0); - return; - } - /*endif*/ - memset (reply, 0, total_size); - FrameMgrSetBuffer (fm, reply); - - FrameMgrPutToken (fm, input_method_ID); - FrameMgrPutToken (fm, trigger->icid); - - /* NOTE: - XIM_TRIGGER_NOTIFY_REPLY should be sent before XIM_SET_EVENT_MASK - in case of XIM_TRIGGER_NOTIFY(flag == ON), while it should be - sent after XIM_SET_EVENT_MASK in case of - XIM_TRIGGER_NOTIFY(flag == OFF). - */ - if (flag == 0) - { - /* on key */ - _Xi18nSendMessage (ims, - connect_id, - XIM_TRIGGER_NOTIFY_REPLY, - 0, - reply, - total_size); - IMPreeditStart (ims, (XPointer)call_data); - } - /*endif*/ - if (i18n_core->address.improto) - { - if (!(i18n_core->address.improto(ims, call_data))) - { - FrameMgrFree(fm); - XFree (reply); - return; - } - /*endif*/ - } - /*endif*/ - - if (flag == 1) - { - /* off key */ - IMPreeditEnd (ims, (XPointer) call_data); - _Xi18nSendMessage (ims, - connect_id, - XIM_TRIGGER_NOTIFY_REPLY, - 0, - reply, - total_size); - } - /*endif*/ - FrameMgrFree (fm); - XFree (reply); -} - -static INT16 ChooseEncoding (Xi18n i18n_core, - IMEncodingNegotiationStruct *enc_nego) -{ - Xi18nAddressRec *address = (Xi18nAddressRec *) & i18n_core->address; - XIMEncodings *p; - int i, j; - int enc_index=0; - - p = (XIMEncodings *) &address->encoding_list; - for (i = 0; i < (int) p->count_encodings; i++) - { - for (j = 0; j < (int) enc_nego->encoding_number; j++) - { - if (strcmp (p->supported_encodings[i], - enc_nego->encoding[j].name) == 0) - { - enc_index = j; - break; - } - /*endif*/ - } - /*endfor*/ - } - /*endfor*/ - - return (INT16) enc_index; -#if 0 - return (INT16) XIM_Default_Encoding_IDX; -#endif -} - -static void EncodingNegotiatonMessageProc (XIMS ims, - IMProtocol *call_data, - unsigned char *p) -{ - Xi18n i18n_core = ims->protocol; - FrameMgr fm; - FmStatus status; - CARD16 byte_length; - extern XimFrameRec encoding_negotiation_fr[]; - extern XimFrameRec encoding_negotiation_reply_fr[]; - register int i, total_size; - unsigned char *reply = NULL; - IMEncodingNegotiationStruct *enc_nego = - (IMEncodingNegotiationStruct *) &call_data->encodingnego; - CARD16 connect_id = call_data->any.connect_id; - CARD16 input_method_ID; - - fm = FrameMgrInit (encoding_negotiation_fr, - (char *) p, - _Xi18nNeedSwap (i18n_core, connect_id)); - - FrameMgrGetToken (fm, input_method_ID); - - /* get ENCODING STR field */ - FrameMgrGetToken (fm, byte_length); - if (byte_length > 0) - { - enc_nego->encoding = (XIMStr *) malloc (sizeof (XIMStr)*10); - memset (enc_nego->encoding, 0, sizeof (XIMStr)*10); - i = 0; - while (FrameMgrIsIterLoopEnd (fm, &status) == False) - { - char *name; - int str_length; - - FrameMgrGetToken (fm, str_length); - FrameMgrSetSize (fm, str_length); - enc_nego->encoding[i].length = str_length; - FrameMgrGetToken (fm, name); - enc_nego->encoding[i].name = malloc (str_length + 1); - strncpy (enc_nego->encoding[i].name, name, str_length); - enc_nego->encoding[i].name[str_length] = '\0'; - i++; - } - /*endwhile*/ - enc_nego->encoding_number = i; - } - /*endif*/ - /* get ENCODING INFO field */ - FrameMgrGetToken (fm, byte_length); - if (byte_length > 0) - { - enc_nego->encodinginfo = (XIMStr *) malloc (sizeof (XIMStr)*10); - memset (enc_nego->encoding, 0, sizeof (XIMStr)*10); - i = 0; - while (FrameMgrIsIterLoopEnd (fm, &status) == False) - { - char *name; - int str_length; - - FrameMgrGetToken (fm, str_length); - FrameMgrSetSize (fm, str_length); - enc_nego->encodinginfo[i].length = str_length; - FrameMgrGetToken (fm, name); - enc_nego->encodinginfo[i].name = malloc (str_length + 1); - strncpy (enc_nego->encodinginfo[i].name, name, str_length); - enc_nego->encodinginfo[i].name[str_length] = '\0'; - i++; - } - /*endwhile*/ - enc_nego->encoding_info_number = i; - } - /*endif*/ - - enc_nego->enc_index = ChooseEncoding (i18n_core, enc_nego); - enc_nego->category = 0; - -#ifdef PROTOCOL_RICH - if (i18n_core->address.improto) - { - if (!(i18n_core->address.improto(ims, call_data))) - return; - /*endif*/ - } - /*endif*/ -#endif /* PROTOCOL_RICH */ - - FrameMgrFree (fm); - - fm = FrameMgrInit (encoding_negotiation_reply_fr, - NULL, - _Xi18nNeedSwap (i18n_core, connect_id)); - - total_size = FrameMgrGetTotalSize (fm); - reply = (unsigned char *) malloc (total_size); - if (!reply) - { - _Xi18nSendMessage (ims, connect_id, XIM_ERROR, 0, 0, 0); - return; - } - /*endif*/ - memset (reply, 0, total_size); - FrameMgrSetBuffer (fm, reply); - - FrameMgrPutToken (fm, input_method_ID); - FrameMgrPutToken (fm, enc_nego->category); - FrameMgrPutToken (fm, enc_nego->enc_index); - - _Xi18nSendMessage (ims, - connect_id, - XIM_ENCODING_NEGOTIATION_REPLY, - 0, - reply, - total_size); - XFree (reply); - - /* free data for encoding list */ - if (enc_nego->encoding) - { - for (i = 0; i < (int) enc_nego->encoding_number; i++) - XFree (enc_nego->encoding[i].name); - /*endfor*/ - XFree (enc_nego->encoding); - } - /*endif*/ - if (enc_nego->encodinginfo) - { - for (i = 0; i < (int) enc_nego->encoding_info_number; i++) - XFree (enc_nego->encodinginfo[i].name); - /*endfor*/ - XFree (enc_nego->encodinginfo); - } - /*endif*/ - FrameMgrFree (fm); -} - -void PreeditStartReplyMessageProc (XIMS ims, - IMProtocol *call_data, - unsigned char *p) -{ - Xi18n i18n_core = ims->protocol; - FrameMgr fm; - extern XimFrameRec preedit_start_reply_fr[]; - IMPreeditCBStruct *preedit_CB = - (IMPreeditCBStruct *) &call_data->preedit_callback; - CARD16 connect_id = call_data->any.connect_id; - CARD16 input_method_ID; - - fm = FrameMgrInit (preedit_start_reply_fr, - (char *) p, - _Xi18nNeedSwap (i18n_core, connect_id)); - /* get data */ - FrameMgrGetToken (fm, input_method_ID); - FrameMgrGetToken (fm, preedit_CB->icid); - FrameMgrGetToken (fm, preedit_CB->todo.return_value); - - FrameMgrFree (fm); - - if (i18n_core->address.improto) - { - if (!(i18n_core->address.improto (ims, call_data))) - return; - /*endif*/ - } - /*endif*/ -} - -void PreeditCaretReplyMessageProc (XIMS ims, - IMProtocol *call_data, - unsigned char *p) -{ - Xi18n i18n_core = ims->protocol; - FrameMgr fm; - extern XimFrameRec preedit_caret_reply_fr[]; - IMPreeditCBStruct *preedit_CB = - (IMPreeditCBStruct *) &call_data->preedit_callback; - XIMPreeditCaretCallbackStruct *caret = - (XIMPreeditCaretCallbackStruct *) & preedit_CB->todo.caret; - CARD16 connect_id = call_data->any.connect_id; - CARD16 input_method_ID; - - fm = FrameMgrInit (preedit_caret_reply_fr, - (char *) p, - _Xi18nNeedSwap (i18n_core, connect_id)); - /* get data */ - FrameMgrGetToken (fm, input_method_ID); - FrameMgrGetToken (fm, preedit_CB->icid); - FrameMgrGetToken (fm, caret->position); - - FrameMgrFree (fm); - - if (i18n_core->address.improto) - { - if (!(i18n_core->address.improto(ims, call_data))) - return; - /*endif*/ - } - /*endif*/ -} - -void StrConvReplyMessageProc (XIMS ims, - IMProtocol *call_data, - unsigned char *p) -{ - return; -} - -static void AddQueue (Xi18nClient *client, unsigned char *p) -{ - XIMPending *new; - XIMPending *last; - - if ((new = (XIMPending *) malloc (sizeof (XIMPending))) == NULL) - return; - /*endif*/ - new->p = p; - new->next = (XIMPending *) NULL; - if (!client->pending) - { - client->pending = new; - } - else - { - for (last = client->pending; last->next; last = last->next) - ; - /*endfor*/ - last->next = new; - } - /*endif*/ - return; -} - -static void ProcessQueue (XIMS ims, CARD16 connect_id) -{ - Xi18n i18n_core = ims->protocol; - Xi18nClient *client = (Xi18nClient *) _Xi18nFindClient (i18n_core, - connect_id); - - while (client->sync == False && client->pending) - { - XimProtoHdr *hdr = (XimProtoHdr *) client->pending->p; - unsigned char *p1 = (unsigned char *) (hdr + 1); - IMProtocol call_data; - - call_data.major_code = hdr->major_opcode; - call_data.any.minor_code = hdr->minor_opcode; - call_data.any.connect_id = connect_id; - - switch (hdr->major_opcode) - { - case XIM_FORWARD_EVENT: - ForwardEventMessageProc(ims, &call_data, p1); - break; - } - /*endswitch*/ - XFree (hdr); - { - XIMPending *old = client->pending; - - client->pending = old->next; - XFree (old); - } - } - /*endwhile*/ - return; -} - - -void _Xi18nMessageHandler (XIMS ims, - CARD16 connect_id, - unsigned char *p, - Bool *delete) -{ - XimProtoHdr *hdr = (XimProtoHdr *)p; - unsigned char *p1 = (unsigned char *)(hdr + 1); - IMProtocol call_data; - Xi18n i18n_core = ims->protocol; - Xi18nClient *client; - - client = (Xi18nClient *) _Xi18nFindClient (i18n_core, connect_id); - if (hdr == (XimProtoHdr *) NULL) - return; - /*endif*/ - - memset (&call_data, 0, sizeof(IMProtocol)); - - call_data.major_code = hdr->major_opcode; - call_data.any.minor_code = hdr->minor_opcode; - call_data.any.connect_id = connect_id; - - switch (call_data.major_code) - { - case XIM_CONNECT: -#ifdef XIM_DEBUG - DebugLog("-- XIM_CONNECT\n"); -#endif - ConnectMessageProc (ims, &call_data, p1); - break; - - case XIM_DISCONNECT: -#ifdef XIM_DEBUG - DebugLog("-- XIM_DISCONNECT\n"); -#endif - DisConnectMessageProc (ims, &call_data); - break; - - case XIM_OPEN: -#ifdef XIM_DEBUG - DebugLog("-- XIM_OPEN\n"); -#endif - OpenMessageProc (ims, &call_data, p1); - break; - - case XIM_CLOSE: -#ifdef XIM_DEBUG - DebugLog("-- XIM_CLOSE\n"); -#endif - CloseMessageProc (ims, &call_data, p1); - break; - - case XIM_QUERY_EXTENSION: -#ifdef XIM_DEBUG - DebugLog("-- XIM_QUERY_EXTENSION\n"); -#endif - QueryExtensionMessageProc (ims, &call_data, p1); - break; - - case XIM_GET_IM_VALUES: -#ifdef XIM_DEBUG - DebugLog("-- XIM_GET_IM_VALUES\n"); -#endif - GetIMValuesMessageProc (ims, &call_data, p1); - break; - - case XIM_CREATE_IC: -#ifdef XIM_DEBUG - DebugLog("-- XIM_CREATE_IC\n"); -#endif - CreateICMessageProc (ims, &call_data, p1); - break; - - case XIM_SET_IC_VALUES: -#ifdef XIM_DEBUG - DebugLog("-- XIM_SET_IC_VALUES\n"); -#endif - SetICValuesMessageProc (ims, &call_data, p1); - break; - - case XIM_GET_IC_VALUES: -#ifdef XIM_DEBUG - DebugLog("-- XIM_GET_IC_VALUES\n"); -#endif - GetICValuesMessageProc (ims, &call_data, p1); - break; - - case XIM_SET_IC_FOCUS: -#ifdef XIM_DEBUG - DebugLog("-- XIM_SET_IC_FOCUS\n"); -#endif - SetICFocusMessageProc (ims, &call_data, p1); - break; - - case XIM_UNSET_IC_FOCUS: -#ifdef XIM_DEBUG - DebugLog("-- XIM_UNSET_IC_FOCUS\n"); -#endif - UnsetICFocusMessageProc (ims, &call_data, p1); - break; - - case XIM_DESTROY_IC: -#ifdef XIM_DEBUG - DebugLog("-- XIM_DESTROY_IC\n"); -#endif - DestroyICMessageProc (ims, &call_data, p1); - break; - - case XIM_RESET_IC: -#ifdef XIM_DEBUG - DebugLog("-- XIM_RESET_IC\n"); -#endif - ResetICMessageProc (ims, &call_data, p1); - break; - - case XIM_FORWARD_EVENT: -#ifdef XIM_DEBUG - DebugLog("-- XIM_FORWARD_EVENT\n"); -#endif - if (client->sync == True) - { - AddQueue (client, p); - *delete = False; - } - else - { - ForwardEventMessageProc (ims, &call_data, p1); - } - break; - - case XIM_EXTENSION: -#ifdef XIM_DEBUG - DebugLog("-- XIM_EXTENSION\n"); -#endif - ExtensionMessageProc (ims, &call_data, p1); - break; - - case XIM_SYNC: -#ifdef XIM_DEBUG - DebugLog("-- XIM_SYNC\n"); -#endif - break; - - case XIM_SYNC_REPLY: -#ifdef XIM_DEBUG - DebugLog("-- XIM_SYNC_REPLY\n"); -#endif - SyncReplyMessageProc (ims, &call_data, p1); - ProcessQueue (ims, connect_id); - break; - - case XIM_TRIGGER_NOTIFY: -#ifdef XIM_DEBUG - DebugLog("-- XIM_TRIGGER_NOTIFY\n"); -#endif - TriggerNotifyMessageProc (ims, &call_data, p1); - break; - - case XIM_ENCODING_NEGOTIATION: -#ifdef XIM_DEBUG - DebugLog("-- XIM_ENCODING_NEGOTIATION\n"); -#endif - EncodingNegotiatonMessageProc (ims, &call_data, p1); - break; - - case XIM_PREEDIT_START_REPLY: -#ifdef XIM_DEBUG - DebugLog("-- XIM_PREEDIT_START_REPLY\n"); -#endif - PreeditStartReplyMessageProc (ims, &call_data, p1); - break; - - case XIM_PREEDIT_CARET_REPLY: -#ifdef XIM_DEBUG - DebugLog("-- XIM_PREEDIT_CARET_REPLY\n"); -#endif - PreeditCaretReplyMessageProc (ims, &call_data, p1); - break; - - case XIM_STR_CONVERSION_REPLY: -#ifdef XIM_DEBUG - DebugLog("-- XIM_STR_CONVERSION_REPLY\n"); -#endif - StrConvReplyMessageProc (ims, &call_data, p1); - break; - } - /*endswitch*/ -} diff -Nru fcitx-4.0.1/lib/i18nUtil.c fcitx-4.1.1/lib/i18nUtil.c --- fcitx-4.0.1/lib/i18nUtil.c 2010-11-28 11:54:51.000000000 +0000 +++ fcitx-4.1.1/lib/i18nUtil.c 1970-01-01 00:00:00.000000000 +0000 @@ -1,276 +0,0 @@ -/****************************************************************** - - Copyright 1994, 1995 by Sun Microsystems, Inc. - Copyright 1993, 1994 by Hewlett-Packard Company - -Permission to use, copy, modify, distribute, and sell this software -and its documentation for any purpose is hereby granted without fee, -provided that the above copyright notice appear in all copies and -that both that copyright notice and this permission notice appear -in supporting documentation, and that the name of Sun Microsystems, Inc. -and Hewlett-Packard not be used in advertising or publicity pertaining to -distribution of the software without specific, written prior permission. -Sun Microsystems, Inc. and Hewlett-Packard make no representations about -the suitability of this software for any purpose. It is provided "as is" -without express or implied warranty. - -SUN MICROSYSTEMS INC. AND HEWLETT-PACKARD COMPANY DISCLAIMS ALL -WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL -SUN MICROSYSTEMS, INC. AND HEWLETT-PACKARD COMPANY 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. - - Author: Hidetoshi Tajima(tajima@Eng.Sun.COM) Sun Microsystems, Inc. - - This version tidied and debugged by Steve Underwood May 1999 - -******************************************************************/ - -#include -#include "IMdkit.h" -#include "Xi18n.h" -#include "FrameMgr.h" -#include "XimFunc.h" - -Xi18nClient *_Xi18nFindClient (Xi18n, CARD16); - -int -_Xi18nNeedSwap (Xi18n i18n_core, CARD16 connect_id) -{ - CARD8 im_byteOrder = i18n_core->address.im_byteOrder; - Xi18nClient *client = _Xi18nFindClient (i18n_core, connect_id); - - return (client->byte_order != im_byteOrder); -} - -Xi18nClient *_Xi18nNewClient(Xi18n i18n_core) -{ - static CARD16 connect_id = 0; - int new_connect_id; - Xi18nClient *client; - - if (i18n_core->address.free_clients) - { - client = i18n_core->address.free_clients; - i18n_core->address.free_clients = client->next; - new_connect_id = client->connect_id; - } - else - { - client = (Xi18nClient *) malloc (sizeof (Xi18nClient)); - new_connect_id = ++connect_id; - } - /*endif*/ - memset (client, 0, sizeof (Xi18nClient)); - client->connect_id = new_connect_id; - client->pending = (XIMPending *) NULL; - client->sync = False; - client->byte_order = '?'; /* initial value */ - memset (&client->pending, 0, sizeof (XIMPending *)); - client->next = i18n_core->address.clients; - i18n_core->address.clients = client; - - return (Xi18nClient *) client; -} - -Xi18nClient *_Xi18nFindClient (Xi18n i18n_core, CARD16 connect_id) -{ - Xi18nClient *client = i18n_core->address.clients; - - while (client) - { - if (client->connect_id == connect_id) - return client; - /*endif*/ - client = client->next; - } - /*endwhile*/ - return NULL; -} - -void _Xi18nDeleteClient (Xi18n i18n_core, CARD16 connect_id) -{ - Xi18nClient *target = _Xi18nFindClient (i18n_core, connect_id); - Xi18nClient *ccp; - Xi18nClient *ccp0; - - for (ccp = i18n_core->address.clients, ccp0 = NULL; - ccp != NULL; - ccp0 = ccp, ccp = ccp->next) - { - if (ccp == target) - { - if (ccp0 == NULL) - i18n_core->address.clients = ccp->next; - else - ccp0->next = ccp->next; - /*endif*/ - /* put it back to free list */ - target->next = i18n_core->address.free_clients; - i18n_core->address.free_clients = target; - return; - } - /*endif*/ - } - /*endfor*/ -} - -void _Xi18nSendMessage (XIMS ims, - CARD16 connect_id, - CARD8 major_opcode, - CARD8 minor_opcode, - unsigned char *data, - long length) -{ - Xi18n i18n_core = ims->protocol; - FrameMgr fm; - extern XimFrameRec packet_header_fr[]; - unsigned char *reply_hdr = NULL; - int header_size; - unsigned char *reply = NULL; - unsigned char *replyp; - int reply_length; - long p_len = length/4; - - fm = FrameMgrInit (packet_header_fr, - NULL, - _Xi18nNeedSwap (i18n_core, connect_id)); - - header_size = FrameMgrGetTotalSize (fm); - reply_hdr = (unsigned char *) malloc (header_size); - if (reply_hdr == NULL) - { - _Xi18nSendMessage (ims, connect_id, XIM_ERROR, 0, 0, 0); - return; - } - /*endif*/ - FrameMgrSetBuffer (fm, reply_hdr); - - /* put data */ - FrameMgrPutToken (fm, major_opcode); - FrameMgrPutToken (fm, minor_opcode); - FrameMgrPutToken (fm, p_len); - - reply_length = header_size + length; - reply = (unsigned char *) malloc (reply_length); - replyp = reply; - memmove (reply, reply_hdr, header_size); - replyp += header_size; - memmove (replyp, data, length); - - i18n_core->methods.send (ims, connect_id, reply, reply_length); - - XFree (reply); - XFree (reply_hdr); - FrameMgrFree (fm); -} - -void _Xi18nSendTriggerKey (XIMS ims, CARD16 connect_id) -{ - Xi18n i18n_core = ims->protocol; - FrameMgr fm; - extern XimFrameRec register_triggerkeys_fr[]; - XIMTriggerKey *on_keys = i18n_core->address.on_keys.keylist; - XIMTriggerKey *off_keys = i18n_core->address.off_keys.keylist; - int on_key_num = i18n_core->address.on_keys.count_keys; - int off_key_num = i18n_core->address.off_keys.count_keys; - unsigned char *reply = NULL; - register int i, total_size; - CARD16 im_id; - - if (on_key_num == 0 && off_key_num == 0) - return; - /*endif*/ - - fm = FrameMgrInit (register_triggerkeys_fr, - NULL, - _Xi18nNeedSwap (i18n_core, connect_id)); - - /* set iteration count for on-keys list */ - FrameMgrSetIterCount (fm, on_key_num); - /* set iteration count for off-keys list */ - FrameMgrSetIterCount (fm, off_key_num); - - /* get total_size */ - total_size = FrameMgrGetTotalSize (fm); - - reply = (unsigned char *) malloc (total_size); - if (!reply) - return; - /*endif*/ - memset (reply, 0, total_size); - FrameMgrSetBuffer (fm, reply); - - /* Right now XIM_OPEN_REPLY hasn't been sent to this new client, so - the input-method-id is still invalid, and should be set to zero... - Reter to $(XC)/lib/X11/imDefLkup.c:_XimRegisterTriggerKeysCallback - */ - im_id = 0; - FrameMgrPutToken (fm, im_id); /* input-method-id */ - for (i = 0; i < on_key_num; i++) - { - FrameMgrPutToken (fm, on_keys[i].keysym); - FrameMgrPutToken (fm, on_keys[i].modifier); - FrameMgrPutToken (fm, on_keys[i].modifier_mask); - } - /*endfor*/ - for (i = 0; i < off_key_num; i++) - { - FrameMgrPutToken (fm, off_keys[i].keysym); - FrameMgrPutToken (fm, off_keys[i].modifier); - FrameMgrPutToken (fm, off_keys[i].modifier_mask); - } - /*endfor*/ - _Xi18nSendMessage (ims, - connect_id, - XIM_REGISTER_TRIGGERKEYS, - 0, - reply, - total_size); - FrameMgrFree (fm); - XFree(reply); -} - -void _Xi18nSetEventMask (XIMS ims, - CARD16 connect_id, - CARD16 im_id, - CARD16 ic_id, - CARD32 forward_mask, - CARD32 sync_mask) -{ - Xi18n i18n_core = ims->protocol; - FrameMgr fm; - extern XimFrameRec set_event_mask_fr[]; - unsigned char *reply = NULL; - register int total_size; - - fm = FrameMgrInit (set_event_mask_fr, - NULL, - _Xi18nNeedSwap (i18n_core, connect_id)); - - total_size = FrameMgrGetTotalSize (fm); - reply = (unsigned char *) malloc (total_size); - if (!reply) - return; - /*endif*/ - memset (reply, 0, total_size); - FrameMgrSetBuffer (fm, reply); - - FrameMgrPutToken (fm, im_id); /* input-method-id */ - FrameMgrPutToken (fm, ic_id); /* input-context-id */ - FrameMgrPutToken (fm, forward_mask); - FrameMgrPutToken (fm, sync_mask); - - _Xi18nSendMessage (ims, - connect_id, - XIM_SET_EVENT_MASK, - 0, - reply, - total_size); - - FrameMgrFree (fm); - XFree(reply); -} diff -Nru fcitx-4.0.1/lib/i18nX.c fcitx-4.1.1/lib/i18nX.c --- fcitx-4.0.1/lib/i18nX.c 2010-11-28 11:54:51.000000000 +0000 +++ fcitx-4.1.1/lib/i18nX.c 1970-01-01 00:00:00.000000000 +0000 @@ -1,497 +0,0 @@ -/****************************************************************** - - Copyright 1994, 1995 by Sun Microsystems, Inc. - Copyright 1993, 1994 by Hewlett-Packard Company - -Permission to use, copy, modify, distribute, and sell this software -and its documentation for any purpose is hereby granted without fee, -provided that the above copyright notice appear in all copies and -that both that copyright notice and this permission notice appear -in supporting documentation, and that the name of Sun Microsystems, Inc. -and Hewlett-Packard not be used in advertising or publicity pertaining to -distribution of the software without specific, written prior permission. -Sun Microsystems, Inc. and Hewlett-Packard make no representations about -the suitability of this software for any purpose. It is provided "as is" -without express or implied warranty. - -SUN MICROSYSTEMS INC. AND HEWLETT-PACKARD COMPANY DISCLAIMS ALL -WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL -SUN MICROSYSTEMS, INC. AND HEWLETT-PACKARD COMPANY 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. - - Author: Hidetoshi Tajima(tajima@Eng.Sun.COM) Sun Microsystems, Inc. - - This version tidied and debugged by Steve Underwood May 1999 - -******************************************************************/ - -#include -#include -#include "FrameMgr.h" -#include "IMdkit.h" -#include "Xi18n.h" -#include "Xi18nX.h" -#include "XimFunc.h" - -extern Xi18nClient *_Xi18nFindClient(Xi18n, CARD16); -extern Xi18nClient *_Xi18nNewClient(Xi18n); -extern void _Xi18nDeleteClient(Xi18n, CARD16); -static Bool WaitXConnectMessage(Display*, Window, - XEvent*, XPointer); -static Bool WaitXIMProtocol(Display*, Window, XEvent*, XPointer); - -static XClient *NewXClient (Xi18n i18n_core, Window new_client) -{ - Display *dpy = i18n_core->address.dpy; - Xi18nClient *client = _Xi18nNewClient (i18n_core); - XClient *x_client; - - x_client = (XClient *) malloc (sizeof (XClient)); - x_client->client_win = new_client; - x_client->accept_win = XCreateSimpleWindow (dpy, - DefaultRootWindow(dpy), - 0, - 0, - 1, - 1, - 1, - 0, - 0); - client->trans_rec = x_client; - return ((XClient *) x_client); -} - -static unsigned char *ReadXIMMessage (XIMS ims, - XClientMessageEvent *ev, - int *connect_id) -{ - Xi18n i18n_core = ims->protocol; - Xi18nClient *client = i18n_core->address.clients; - XClient *x_client = NULL; - FrameMgr fm; - extern XimFrameRec packet_header_fr[]; - unsigned char *p = NULL; - unsigned char *p1; - - while (client != NULL) { - x_client = (XClient *) client->trans_rec; - if (x_client->accept_win == ev->window) { - *connect_id = client->connect_id; - break; - } - client = client->next; - } - - if (ev->format == 8) { - /* ClientMessage only */ - XimProtoHdr *hdr = (XimProtoHdr *) ev->data.b; - unsigned char *rec = (unsigned char *) (hdr + 1); - register int total_size; - CARD8 major_opcode; - CARD8 minor_opcode; - CARD16 length; - extern int _Xi18nNeedSwap (Xi18n, CARD16); - - if (client->byte_order == '?') - { - if (hdr->major_opcode != XIM_CONNECT) - return (unsigned char *) NULL; /* can do nothing */ - client->byte_order = (CARD8) rec[0]; - } - - fm = FrameMgrInit (packet_header_fr, - (char *) hdr, - _Xi18nNeedSwap (i18n_core, *connect_id)); - total_size = FrameMgrGetTotalSize (fm); - /* get data */ - FrameMgrGetToken (fm, major_opcode); - FrameMgrGetToken (fm, minor_opcode); - FrameMgrGetToken (fm, length); - FrameMgrFree (fm); - - if ((p = (unsigned char *) malloc (total_size + length * 4)) == NULL) - return (unsigned char *) NULL; - - p1 = p; - memmove (p1, &major_opcode, sizeof (CARD8)); - p1 += sizeof (CARD8); - memmove (p1, &minor_opcode, sizeof (CARD8)); - p1 += sizeof (CARD8); - memmove (p1, &length, sizeof (CARD16)); - p1 += sizeof (CARD16); - memmove (p1, rec, length * 4); - } - else if (ev->format == 32) { - /* ClientMessage and WindowProperty */ - unsigned long length = (unsigned long) ev->data.l[0]; - Atom atom = (Atom) ev->data.l[1]; - int return_code; - Atom actual_type_ret; - int actual_format_ret; - unsigned long bytes_after_ret; - unsigned char *prop; - unsigned long nitems; - - return_code = XGetWindowProperty (i18n_core->address.dpy, - x_client->accept_win, - atom, - 0L, - length, - True, - AnyPropertyType, - &actual_type_ret, - &actual_format_ret, - &nitems, - &bytes_after_ret, - &prop); - if (return_code != Success || actual_format_ret == 0 || nitems == 0) { - if (return_code == Success) - XFree (prop); - return (unsigned char *) NULL; - } - if (length != nitems) - length = nitems; - if (actual_format_ret == 16) - length *= 2; - else if (actual_format_ret == 32) - length *= 4; - - /* if hit, it might be an error */ - if ((p = (unsigned char *) malloc (length)) == NULL) - return (unsigned char *) NULL; - - memmove (p, prop, length); - XFree (prop); - } - return (unsigned char *) p; -} - -static void ReadXConnectMessage (XIMS ims, XClientMessageEvent *ev) -{ - Xi18n i18n_core = ims->protocol; - XSpecRec *spec = (XSpecRec *) i18n_core->address.connect_addr; - XEvent event; - Display *dpy = i18n_core->address.dpy; - Window new_client = ev->data.l[0]; - CARD32 major_version = ev->data.l[1]; - CARD32 minor_version = ev->data.l[2]; - XClient *x_client = NewXClient (i18n_core, new_client); - - if (ev->window != i18n_core->address.im_window) - return; /* incorrect connection request */ - /*endif*/ - if (major_version != 0 || minor_version != 0) - { - major_version = - minor_version = 0; - /* Only supporting only-CM & Property-with-CM method */ - } - /*endif*/ - _XRegisterFilterByType (dpy, - x_client->accept_win, - ClientMessage, - ClientMessage, - WaitXIMProtocol, - (XPointer)ims); - event.xclient.type = ClientMessage; - event.xclient.display = dpy; - event.xclient.window = new_client; - event.xclient.message_type = spec->connect_request; - event.xclient.format = 32; - event.xclient.data.l[0] = x_client->accept_win; - event.xclient.data.l[1] = major_version; - event.xclient.data.l[2] = minor_version; - event.xclient.data.l[3] = XCM_DATA_LIMIT; - - XSendEvent (dpy, - new_client, - False, - NoEventMask, - &event); - XFlush (dpy); -} - -static Bool Xi18nXBegin (XIMS ims) -{ - Xi18n i18n_core = ims->protocol; - Display *dpy = i18n_core->address.dpy; - XSpecRec *spec = (XSpecRec *) i18n_core->address.connect_addr; - - spec->xim_request = XInternAtom (i18n_core->address.dpy, - _XIM_PROTOCOL, - False); - spec->connect_request = XInternAtom (i18n_core->address.dpy, - _XIM_XCONNECT, - False); - - _XRegisterFilterByType (dpy, - i18n_core->address.im_window, - ClientMessage, - ClientMessage, - WaitXConnectMessage, - (XPointer)ims); - return True; -} - -static Bool Xi18nXEnd(XIMS ims) -{ - Xi18n i18n_core = ims->protocol; - Display *dpy = i18n_core->address.dpy; - - _XUnregisterFilter (dpy, - i18n_core->address.im_window, - WaitXConnectMessage, - (XPointer)ims); - return True; -} - -static char *MakeNewAtom (CARD16 connect_id, char *atomName) -{ - static int sequence = 0; - - sprintf (atomName, - "_server%d_%d", - connect_id, - ((sequence > 20) ? (sequence = 0) : sequence++)); - return atomName; -} - -static Bool Xi18nXSend (XIMS ims, - CARD16 connect_id, - unsigned char *reply, - long length) -{ - Xi18n i18n_core = ims->protocol; - Xi18nClient *client = _Xi18nFindClient (i18n_core, connect_id); - XSpecRec *spec = (XSpecRec *) i18n_core->address.connect_addr; - XClient *x_client = (XClient *) client->trans_rec; - XEvent event; - - event.type = ClientMessage; - event.xclient.window = x_client->client_win; - event.xclient.message_type = spec->xim_request; - - if (length > XCM_DATA_LIMIT) - { - Atom atom; - char atomName[16]; - Atom actual_type_ret; - int actual_format_ret; - int return_code; - unsigned long nitems_ret; - unsigned long bytes_after_ret; - unsigned char *win_data; - - event.xclient.format = 32; - atom = XInternAtom (i18n_core->address.dpy, - MakeNewAtom (connect_id, atomName), - False); - return_code = XGetWindowProperty (i18n_core->address.dpy, - x_client->client_win, - atom, - 0L, - 10000L, - False, - XA_STRING, - &actual_type_ret, - &actual_format_ret, - &nitems_ret, - &bytes_after_ret, - &win_data); - if (return_code != Success) - return False; - /*endif*/ - if (win_data) - XFree ((char *) win_data); - /*endif*/ - XChangeProperty (i18n_core->address.dpy, - x_client->client_win, - atom, - XA_STRING, - 8, - PropModeAppend, - (unsigned char *) reply, - length); - event.xclient.data.l[0] = length; - event.xclient.data.l[1] = atom; - } - else - { - unsigned char buffer[XCM_DATA_LIMIT]; - int i; - - event.xclient.format = 8; - - /* Clear unused field with NULL */ - memmove(buffer, reply, length); - for (i = length; i < XCM_DATA_LIMIT; i++) - buffer[i] = (char) 0; - /*endfor*/ - length = XCM_DATA_LIMIT; - memmove (event.xclient.data.b, buffer, length); - } - XSendEvent (i18n_core->address.dpy, - x_client->client_win, - False, - NoEventMask, - &event); - XFlush (i18n_core->address.dpy); - return True; -} - -static Bool CheckCMEvent (Display *display, XEvent *event, XPointer xi18n_core) -{ - Xi18n i18n_core = (Xi18n) ((void *) xi18n_core); - XSpecRec *spec = (XSpecRec *) i18n_core->address.connect_addr; - - if ((event->type == ClientMessage) - && - (event->xclient.message_type == spec->xim_request)) - { - return True; - } - /*endif*/ - return False; -} - -static Bool Xi18nXWait (XIMS ims, - CARD16 connect_id, - CARD8 major_opcode, - CARD8 minor_opcode) -{ - Xi18n i18n_core = ims->protocol; - XEvent event; - Xi18nClient *client = _Xi18nFindClient (i18n_core, connect_id); - XClient *x_client = (XClient *) client->trans_rec; - - for (;;) - { - unsigned char *packet; - XimProtoHdr *hdr; - int connect_id_ret; - - XIfEvent (i18n_core->address.dpy, - &event, - CheckCMEvent, - (XPointer) i18n_core); - if (event.xclient.window == x_client->accept_win) - { - if ((packet = ReadXIMMessage (ims, - (XClientMessageEvent *) & event, - &connect_id_ret)) - == (unsigned char*) NULL) - { - return False; - } - /*endif*/ - hdr = (XimProtoHdr *)packet; - - if ((hdr->major_opcode == major_opcode) - && - (hdr->minor_opcode == minor_opcode)) - { - return True; - } - else if (hdr->major_opcode == XIM_ERROR) - { - return False; - } - /*endif*/ - } - /*endif*/ - } - /*endfor*/ -} - -static Bool Xi18nXDisconnect (XIMS ims, CARD16 connect_id) -{ - Xi18n i18n_core = ims->protocol; - Display *dpy = i18n_core->address.dpy; - Xi18nClient *client = _Xi18nFindClient (i18n_core, connect_id); - XClient *x_client = (XClient *) client->trans_rec; - - XDestroyWindow (dpy, x_client->accept_win); - _XUnregisterFilter (dpy, - x_client->accept_win, - WaitXIMProtocol, - (XPointer)ims); - XFree (x_client); - _Xi18nDeleteClient (i18n_core, connect_id); - return True; -} - -Bool _Xi18nCheckXAddress (Xi18n i18n_core, - TransportSW *transSW, - char *address) -{ - XSpecRec *spec; - - if (!(spec = (XSpecRec *) malloc (sizeof (XSpecRec)))) - return False; - /*endif*/ - - i18n_core->address.connect_addr = (XSpecRec *) spec; - i18n_core->methods.begin = Xi18nXBegin; - i18n_core->methods.end = Xi18nXEnd; - i18n_core->methods.send = Xi18nXSend; - i18n_core->methods.wait = Xi18nXWait; - i18n_core->methods.disconnect = Xi18nXDisconnect; - return True; -} - -static Bool WaitXConnectMessage (Display *dpy, - Window win, - XEvent *ev, - XPointer client_data) -{ - XIMS ims = (XIMS)client_data; - Xi18n i18n_core = ims->protocol; - XSpecRec *spec = (XSpecRec *) i18n_core->address.connect_addr; - - if (((XClientMessageEvent *) ev)->message_type - == spec->connect_request) - { - ReadXConnectMessage (ims, (XClientMessageEvent *) ev); - return True; - } - /*endif*/ - return False; -} - -static Bool WaitXIMProtocol (Display *dpy, - Window win, - XEvent *ev, - XPointer client_data) -{ - extern void _Xi18nMessageHandler (XIMS, CARD16, unsigned char *, Bool *); - XIMS ims = (XIMS) client_data; - Xi18n i18n_core = ims->protocol; - XSpecRec *spec = (XSpecRec *) i18n_core->address.connect_addr; - Bool delete = True; - unsigned char *packet; - int connect_id; - - if (((XClientMessageEvent *) ev)->message_type - == spec->xim_request) - { - if ((packet = ReadXIMMessage (ims, - (XClientMessageEvent *) ev, - &connect_id)) - == (unsigned char *) NULL) - { - return False; - } - /*endif*/ - _Xi18nMessageHandler (ims, connect_id, packet, &delete); - if (delete == True) - XFree (packet); - /*endif*/ - return True; - } - /*endif*/ - return False; -} diff -Nru fcitx-4.0.1/lib/IMConn.c fcitx-4.1.1/lib/IMConn.c --- fcitx-4.0.1/lib/IMConn.c 2010-11-28 11:54:51.000000000 +0000 +++ fcitx-4.1.1/lib/IMConn.c 1970-01-01 00:00:00.000000000 +0000 @@ -1,187 +0,0 @@ -/****************************************************************** - - Copyright 1994, 1995 by Sun Microsystems, Inc. - Copyright 1993, 1994 by Hewlett-Packard Company - -Permission to use, copy, modify, distribute, and sell this software -and its documentation for any purpose is hereby granted without fee, -provided that the above copyright notice appear in all copies and -that both that copyright notice and this permission notice appear -in supporting documentation, and that the name of Sun Microsystems, Inc. -and Hewlett-Packard not be used in advertising or publicity pertaining to -distribution of the software without specific, written prior permission. -Sun Microsystems, Inc. and Hewlett-Packard make no representations about -the suitability of this software for any purpose. It is provided "as is" -without express or implied warranty. - -SUN MICROSYSTEMS INC. AND HEWLETT-PACKARD COMPANY DISCLAIMS ALL -WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL -SUN MICROSYSTEMS, INC. AND HEWLETT-PACKARD COMPANY 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. - - Author: Hidetoshi Tajima(tajima@Eng.Sun.COM) Sun Microsystems, Inc. - - This version tidied and debugged by Steve Underwood May 1999 - -******************************************************************/ - -#ifdef HAVE_CONFIG_H -#include -#endif - -#include -#ifdef HAVE_MALLOC_H -#include -#endif - -#ifdef HAVE_STDLIB_H -#include -#endif - -#include -#include "IMdkit.h" -#include - -#define Va_start(a,b) va_start(a,b) - -static void _IMCountVaList(va_list var, int *total_count) -{ - char *attr; - - *total_count = 0; - - for (attr = va_arg (var, char*); attr; attr = va_arg (var, char*)) - { - (void)va_arg (var, XIMArg *); - ++(*total_count); - } - /*endfor*/ -} - -static void _IMVaToNestedList(va_list var, int max_count, XIMArg **args_return) -{ - XIMArg *args; - char *attr; - - if (max_count <= 0) - { - *args_return = (XIMArg *) NULL; - return; - } - /*endif*/ - - args = (XIMArg *) malloc ((unsigned) (max_count + 1)*sizeof (XIMArg)); - *args_return = args; - if (!args) - return; - /*endif*/ - - for (attr = va_arg (var, char*); attr; attr = va_arg (var, char *)) - { - args->name = attr; - args->value = va_arg (var, XPointer); - args++; - } - /*endfor*/ - args->name = (char*)NULL; -} - -static char *_FindModifiers (XIMArg *args) -{ - char *modifiers; - - while (args->name) - { - if (strcmp (args->name, IMModifiers) == 0) - { - modifiers = args->value; - return modifiers; - } - else - { - args++; - } - /*endif*/ - } - /*endwhile*/ - return NULL; -} - -XIMS _GetIMS (char *modifiers) -{ - XIMS ims; - extern IMMethodsRec Xi18n_im_methods; - - if ((ims = (XIMS) malloc (sizeof (XIMProtocolRec))) == (XIMS) NULL) - return ((XIMS) NULL); - /*endif*/ - memset ((void *) ims, 0, sizeof (XIMProtocolRec)); - - if (modifiers == NULL - || - modifiers[0] == '\0' - || - strcmp (modifiers, "Xi18n") == 0) - { - ims->methods = &Xi18n_im_methods; - return ims; - } - /*endif*/ - XFree (ims); - return (XIMS) NULL; -} - -XIMS IMOpenIM (Display *display, ...) -{ - va_list var; - int total_count; - XIMArg *args; - XIMS ims; - char *modifiers; - Status ret; - - Va_start (var, display); - _IMCountVaList (var, &total_count); - va_end (var); - - Va_start (var, display); - _IMVaToNestedList (var, total_count, &args); - va_end (var); - - modifiers = _FindModifiers (args); - - ims = _GetIMS (modifiers); - if (ims == (XIMS) NULL) - return (XIMS) NULL; - /*endif*/ - - ims->core.display = display; - - ims->protocol = (*ims->methods->setup) (display, args); - XFree (args); - if (ims->protocol == (void *) NULL) - { - XFree (ims); - return (XIMS) NULL; - } - /*endif*/ - ret = (ims->methods->openIM) (ims); - if (ret == False) - { - XFree (ims); - return (XIMS) NULL; - } - /*endif*/ - return (XIMS) ims; -} - -Status IMCloseIM (XIMS ims) -{ - (ims->methods->closeIM) (ims); - XFree (ims); - return True; -} diff -Nru fcitx-4.0.1/lib/IMdkit.h fcitx-4.1.1/lib/IMdkit.h --- fcitx-4.0.1/lib/IMdkit.h 2010-11-28 11:54:51.000000000 +0000 +++ fcitx-4.1.1/lib/IMdkit.h 1970-01-01 00:00:00.000000000 +0000 @@ -1,144 +0,0 @@ -/****************************************************************** - - Copyright 1994, 1995 by Sun Microsystems, Inc. - Copyright 1993, 1994 by Hewlett-Packard Company - -Permission to use, copy, modify, distribute, and sell this software -and its documentation for any purpose is hereby granted without fee, -provided that the above copyright notice appear in all copies and -that both that copyright notice and this permission notice appear -in supporting documentation, and that the name of Sun Microsystems, Inc. -and Hewlett-Packard not be used in advertising or publicity pertaining to -distribution of the software without specific, written prior permission. -Sun Microsystems, Inc. and Hewlett-Packard make no representations about -the suitability of this software for any purpose. It is provided "as is" -without express or implied warranty. - -SUN MICROSYSTEMS INC. AND HEWLETT-PACKARD COMPANY DISCLAIMS ALL -WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL -SUN MICROSYSTEMS, INC. AND HEWLETT-PACKARD COMPANY 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. - - Author: Hidetoshi Tajima(tajima@Eng.Sun.COM) Sun Microsystems, Inc. - - This version tidied and debugged by Steve Underwood May 1999 - -******************************************************************/ - -#ifndef _IMdkit_h -#define _IMdkit_h - -#include - -#ifdef __cplusplus -extern "C" { -#endif - -/* IM Attributes Name */ -#define IMModifiers "modifiers" -#define IMServerWindow "serverWindow" -#define IMServerName "serverName" -#define IMServerTransport "serverTransport" -#define IMLocale "locale" -#define IMInputStyles "inputStyles" -#define IMProtocolHandler "protocolHandler" -#define IMOnKeysList "onKeysList" -#define IMOffKeysList "offKeysList" -#define IMEncodingList "encodingList" -#define IMFilterEventMask "filterEventMask" -#define IMProtocolDepend "protocolDepend" - -/* Masks for IM Attributes Name */ -#define I18N_IMSERVER_WIN 0x0001 /* IMServerWindow */ -#define I18N_IM_NAME 0x0002 /* IMServerName */ -#define I18N_IM_LOCALE 0x0004 /* IMLocale */ -#define I18N_IM_ADDRESS 0x0008 /* IMServerTransport */ -#define I18N_INPUT_STYLES 0x0010 /* IMInputStyles */ -#define I18N_ON_KEYS 0x0020 /* IMOnKeysList */ -#define I18N_OFF_KEYS 0x0040 /* IMOffKeysList */ -#define I18N_IM_HANDLER 0x0080 /* IMProtocolHander */ -#define I18N_ENCODINGS 0x0100 /* IMEncodingList */ -#define I18N_FILTERMASK 0x0200 /* IMFilterEventMask */ -#define I18N_PROTO_DEPEND 0x0400 /* IMProtoDepend */ - -typedef struct -{ - char *name; - XPointer value; -} XIMArg; - -typedef struct -{ - CARD32 keysym; - CARD32 modifier; - CARD32 modifier_mask; -} XIMTriggerKey; - -typedef struct -{ - unsigned short count_keys; - XIMTriggerKey *keylist; -} XIMTriggerKeys; - -typedef char *XIMEncoding; - -typedef struct -{ - unsigned short count_encodings; - XIMEncoding *supported_encodings; -} XIMEncodings; - -typedef struct _XIMS *XIMS; - -typedef struct -{ - void* (*setup) (Display *, XIMArg *); - Status (*openIM) (XIMS); - Status (*closeIM) (XIMS); - char* (*setIMValues) (XIMS, XIMArg *); - char* (*getIMValues) (XIMS, XIMArg *); - Status (*forwardEvent) (XIMS, XPointer); - Status (*commitString) (XIMS, XPointer); - int (*callCallback) (XIMS, XPointer); - int (*preeditStart) (XIMS, XPointer); - int (*preeditEnd) (XIMS, XPointer); - int (*syncXlib) (XIMS, XPointer); -} IMMethodsRec, *IMMethods; - -typedef struct -{ - Display *display; - int screen; -} IMCoreRec, *IMCore; - -typedef struct _XIMS -{ - IMMethods methods; - IMCoreRec core; - Bool sync; - void *protocol; -} XIMProtocolRec; - -/* - * X function declarations. - */ -extern XIMS IMOpenIM (Display *, ...); -extern Status IMCloseIM (XIMS); -extern char *IMSetIMValues (XIMS, ...); -extern char *IMGetIMValues (XIMS, ...); -void IMForwardEvent (XIMS, XPointer); -void IMCommitString (XIMS, XPointer); -int IMCallCallback (XIMS, XPointer); -int IMPreeditStart (XIMS, XPointer); -int IMPreeditEnd (XIMS, XPointer); -int IMSyncXlib (XIMS, XPointer); - -#ifdef __cplusplus -} -#endif - -#endif /* IMdkit_h */ diff -Nru fcitx-4.0.1/lib/IMMethod.c fcitx-4.1.1/lib/IMMethod.c --- fcitx-4.0.1/lib/IMMethod.c 2010-11-28 11:54:51.000000000 +0000 +++ fcitx-4.1.1/lib/IMMethod.c 1970-01-01 00:00:00.000000000 +0000 @@ -1,65 +0,0 @@ -/****************************************************************** - - Copyright 1994, 1995 by Sun Microsystems, Inc. - Copyright 1993, 1994 by Hewlett-Packard Company - -Permission to use, copy, modify, distribute, and sell this software -and its documentation for any purpose is hereby granted without fee, -provided that the above copyright notice appear in all copies and -that both that copyright notice and this permission notice appear -in supporting documentation, and that the name of Sun Microsystems, Inc. -and Hewlett-Packard not be used in advertising or publicity pertaining to -distribution of the software without specific, written prior permission. -Sun Microsystems, Inc. and Hewlett-Packard make no representations about -the suitability of this software for any purpose. It is provided "as is" -without express or implied warranty. - -SUN MICROSYSTEMS INC. AND HEWLETT-PACKARD COMPANY DISCLAIMS ALL -WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL -SUN MICROSYSTEMS, INC. AND HEWLETT-PACKARD COMPANY 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. - - Author: Hidetoshi Tajima(tajima@Eng.Sun.COM) Sun Microsystems, Inc. - - This version tidied and debugged by Steve Underwood May 1999 - -******************************************************************/ - -#include -#include "IMdkit.h" - -/* Public Function */ -void IMForwardEvent (XIMS ims, XPointer call_data) -{ - (ims->methods->forwardEvent) (ims, call_data); -} - -void IMCommitString (XIMS ims, XPointer call_data) -{ - (ims->methods->commitString) (ims, call_data); -} - -int IMCallCallback (XIMS ims, XPointer call_data) -{ - return (ims->methods->callCallback) (ims, call_data); -} - -int IMPreeditStart (XIMS ims, XPointer call_data) -{ - return (ims->methods->preeditStart) (ims, call_data); -} - -int IMPreeditEnd (XIMS ims, XPointer call_data) -{ - return (ims->methods->preeditEnd) (ims, call_data); -} - -int IMSyncXlib(XIMS ims, XPointer call_data) -{ - ims->sync = True; - return (ims->methods->syncXlib) (ims, call_data); -} diff -Nru fcitx-4.0.1/lib/IMValues.c fcitx-4.1.1/lib/IMValues.c --- fcitx-4.0.1/lib/IMValues.c 2010-11-28 11:54:51.000000000 +0000 +++ fcitx-4.1.1/lib/IMValues.c 1970-01-01 00:00:00.000000000 +0000 @@ -1,124 +0,0 @@ -/****************************************************************** - - Copyright 1994, 1995 by Sun Microsystems, Inc. - Copyright 1993, 1994 by Hewlett-Packard Company - -Permission to use, copy, modify, distribute, and sell this software -and its documentation for any purpose is hereby granted without fee, -provided that the above copyright notice appear in all copies and -that both that copyright notice and this permission notice appear -in supporting documentation, and that the name of Sun Microsystems, Inc. -and Hewlett-Packard not be used in advertising or publicity pertaining to -distribution of the software without specific, written prior permission. -Sun Microsystems, Inc. and Hewlett-Packard make no representations about -the suitability of this software for any purpose. It is provided "as is" -without express or implied warranty. - -SUN MICROSYSTEMS INC. AND HEWLETT-PACKARD COMPANY DISCLAIMS ALL -WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL -SUN MICROSYSTEMS, INC. AND HEWLETT-PACKARD COMPANY 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. - - Author: Hidetoshi Tajima(tajima@Eng.Sun.COM) Sun Microsystems, Inc. - - This version tidied and debugged by Steve Underwood May 1999 - -******************************************************************/ - -#include -#include -#include "IMdkit.h" -#include - -#define Va_start(a,b) va_start(a,b) - -static void _IMCountVaList (va_list var, int *total_count) -{ - char *attr; - - *total_count = 0; - - for (attr = va_arg (var, char *); attr; attr = va_arg (var, char *)) - { - (void)va_arg (var, XIMArg *); - ++(*total_count); - } - /*endfor*/ -} - -static void _IMVaToNestedList (va_list var, int max_count, XIMArg **args_return) -{ - XIMArg *args; - char *attr; - - if (max_count <= 0) - { - *args_return = (XIMArg *) NULL; - return; - } - /*endif*/ - - args = (XIMArg *) malloc ((unsigned) (max_count + 1)*sizeof (XIMArg)); - *args_return = args; - if (!args) - return; - /*endif*/ - for (attr = va_arg (var, char *); attr; attr = va_arg (var, char *)) - { - args->name = attr; - args->value = va_arg (var, XPointer); - args++; - } - /*endfor*/ - args->name = (char *) NULL; -} - -char *IMGetIMValues (XIMS ims, ...) -{ - va_list var; - int total_count; - XIMArg *args; - char *ret; - - Va_start (var, ims); - _IMCountVaList (var, &total_count); - va_end (var); - - Va_start (var, ims); - _IMVaToNestedList (var, total_count, &args); - va_end (var); - - ret = (*ims->methods->getIMValues) (ims, args); - - if (args) - XFree ((char *) args); - /*endif*/ - return ret; -} - -char *IMSetIMValues (XIMS ims, ...) -{ - va_list var; - int total_count; - XIMArg *args; - char *ret; - - Va_start (var, ims); - _IMCountVaList (var, &total_count); - va_end (var); - - Va_start (var, ims); - _IMVaToNestedList (var, total_count, &args); - va_end (var); - - ret = (*ims->methods->setIMValues) (ims, args); - - if (args) - XFree ((char *) args); - /*endif*/ - return ret; -} diff -Nru fcitx-4.0.1/lib/Makefile.am fcitx-4.1.1/lib/Makefile.am --- fcitx-4.0.1/lib/Makefile.am 2010-11-28 11:54:51.000000000 +0000 +++ fcitx-4.1.1/lib/Makefile.am 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ -INCLUDES= \ - $(X_CFLAGS) \ - $(NULL) - -noinst_LIBRARIES = libXimd.a -AM_CFLAGS = -c -O2 -fno-strength-reduce -fno-strict-aliasing -libXimd_a_SOURCES = \ - FrameMgr.c FrameMgr.h i18nAttr.c i18nClbk.c i18nIc.c \ - i18nIMProto.c i18nMethod.c i18nPtHdr.c i18nUtil.c i18nX.c \ - IMConn.c IMdkit.h IMMethod.c IMValues.c Xi18n.h \ - Xi18nTr.h Xi18nX.h XimFunc.h XimProto.h diff -Nru fcitx-4.0.1/lib/Makefile.in fcitx-4.1.1/lib/Makefile.in --- fcitx-4.0.1/lib/Makefile.in 2010-12-17 04:26:30.000000000 +0000 +++ fcitx-4.1.1/lib/Makefile.in 1970-01-01 00:00:00.000000000 +0000 @@ -1,556 +0,0 @@ -# Makefile.in generated by automake 1.11.1 from Makefile.am. -# @configure_input@ - -# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, -# Inc. -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - -@SET_MAKE@ - -VPATH = @srcdir@ -pkgdatadir = $(datadir)/@PACKAGE@ -pkgincludedir = $(includedir)/@PACKAGE@ -pkglibdir = $(libdir)/@PACKAGE@ -pkglibexecdir = $(libexecdir)/@PACKAGE@ -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = @build@ -host_triplet = @host@ -subdir = lib -DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/configure.in -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -mkinstalldirs = $(install_sh) -d -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -CONFIG_CLEAN_VPATH_FILES = -LIBRARIES = $(noinst_LIBRARIES) -ARFLAGS = cru -AM_V_AR = $(am__v_AR_$(V)) -am__v_AR_ = $(am__v_AR_$(AM_DEFAULT_VERBOSITY)) -am__v_AR_0 = @echo " AR " $@; -AM_V_at = $(am__v_at_$(V)) -am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) -am__v_at_0 = @ -libXimd_a_AR = $(AR) $(ARFLAGS) -libXimd_a_LIBADD = -am_libXimd_a_OBJECTS = FrameMgr.$(OBJEXT) i18nAttr.$(OBJEXT) \ - i18nClbk.$(OBJEXT) i18nIc.$(OBJEXT) i18nIMProto.$(OBJEXT) \ - i18nMethod.$(OBJEXT) i18nPtHdr.$(OBJEXT) i18nUtil.$(OBJEXT) \ - i18nX.$(OBJEXT) IMConn.$(OBJEXT) IMMethod.$(OBJEXT) \ - IMValues.$(OBJEXT) -libXimd_a_OBJECTS = $(am_libXimd_a_OBJECTS) -DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles -am__mv = mv -f -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -AM_V_lt = $(am__v_lt_$(V)) -am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) -am__v_lt_0 = --silent -LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ - $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ - $(AM_CFLAGS) $(CFLAGS) -AM_V_CC = $(am__v_CC_$(V)) -am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) -am__v_CC_0 = @echo " CC " $@; -CCLD = $(CC) -LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -AM_V_CCLD = $(am__v_CCLD_$(V)) -am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) -am__v_CCLD_0 = @echo " CCLD " $@; -AM_V_GEN = $(am__v_GEN_$(V)) -am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) -am__v_GEN_0 = @echo " GEN " $@; -SOURCES = $(libXimd_a_SOURCES) -DIST_SOURCES = $(libXimd_a_SOURCES) -ETAGS = etags -CTAGS = ctags -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -ACLOCAL = @ACLOCAL@ -ALL_LINGUAS = @ALL_LINGUAS@ -AMTAR = @AMTAR@ -AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ -AR = @AR@ -AUTOCONF = @AUTOCONF@ -AUTOHEADER = @AUTOHEADER@ -AUTOMAKE = @AUTOMAKE@ -AWK = @AWK@ -CAIRO_XLIB_CFLAGS = @CAIRO_XLIB_CFLAGS@ -CAIRO_XLIB_LIBS = @CAIRO_XLIB_LIBS@ -CC = @CC@ -CCDEPMODE = @CCDEPMODE@ -CFLAGS = @CFLAGS@ -CPP = @CPP@ -CPPFLAGS = @CPPFLAGS@ -CYGPATH_W = @CYGPATH_W@ -DATADIRNAME = @DATADIRNAME@ -DBUS_CFLAGS = @DBUS_CFLAGS@ -DBUS_LIBS = @DBUS_LIBS@ -DEFS = @DEFS@ -DEPDIR = @DEPDIR@ -DLLTOOL = @DLLTOOL@ -DSYMUTIL = @DSYMUTIL@ -DUMPBIN = @DUMPBIN@ -ECHO_C = @ECHO_C@ -ECHO_N = @ECHO_N@ -ECHO_T = @ECHO_T@ -EGREP = @EGREP@ -EXEEXT = @EXEEXT@ -FGREP = @FGREP@ -FONTCONFIG_CFLAGS = @FONTCONFIG_CFLAGS@ -FONTCONFIG_LIBS = @FONTCONFIG_LIBS@ -GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ -GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ -GMSGFMT = @GMSGFMT@ -GMSGFMT_015 = @GMSGFMT_015@ -GREP = @GREP@ -HOST_LIBS = @HOST_LIBS@ -INCINTL = @INCINTL@ -INSTALL = @INSTALL@ -INSTALL_DATA = @INSTALL_DATA@ -INSTALL_PROGRAM = @INSTALL_PROGRAM@ -INSTALL_SCRIPT = @INSTALL_SCRIPT@ -INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ -INTLLIBS = @INTLLIBS@ -INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ -INTLTOOL_MERGE = @INTLTOOL_MERGE@ -INTLTOOL_PERL = @INTLTOOL_PERL@ -INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ -INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ -LD = @LD@ -LDFLAGS = @LDFLAGS@ -LIBICONV = @LIBICONV@ -LIBINTL = @LIBINTL@ -LIBOBJS = @LIBOBJS@ -LIBS = @LIBS@ -LIBTOOL = @LIBTOOL@ -LIPO = @LIPO@ -LN_S = @LN_S@ -LTLIBICONV = @LTLIBICONV@ -LTLIBINTL = @LTLIBINTL@ -LTLIBOBJS = @LTLIBOBJS@ -MAKEINFO = @MAKEINFO@ -MANIFEST_TOOL = @MANIFEST_TOOL@ -MD5SUM = @MD5SUM@ -MKDIR_P = @MKDIR_P@ -MSGFMT = @MSGFMT@ -MSGFMT_015 = @MSGFMT_015@ -MSGMERGE = @MSGMERGE@ -NM = @NM@ -NMEDIT = @NMEDIT@ -OBJDUMP = @OBJDUMP@ -OBJEXT = @OBJEXT@ -OTOOL = @OTOOL@ -OTOOL64 = @OTOOL64@ -PACKAGE = @PACKAGE@ -PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ -PACKAGE_NAME = @PACKAGE_NAME@ -PACKAGE_STRING = @PACKAGE_STRING@ -PACKAGE_TARNAME = @PACKAGE_TARNAME@ -PACKAGE_URL = @PACKAGE_URL@ -PACKAGE_VERSION = @PACKAGE_VERSION@ -PANGOCAIRO_CFLAGS = @PANGOCAIRO_CFLAGS@ -PANGOCAIRO_LIBS = @PANGOCAIRO_LIBS@ -PATH_SEPARATOR = @PATH_SEPARATOR@ -PKG_CONFIG = @PKG_CONFIG@ -PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ -PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ -POSUB = @POSUB@ -RANLIB = @RANLIB@ -SED = @SED@ -SET_MAKE = @SET_MAKE@ -SHELL = @SHELL@ -STRIP = @STRIP@ -TAR = @TAR@ -USE_NLS = @USE_NLS@ -VERSION = @VERSION@ -WGET = @WGET@ -XGETTEXT = @XGETTEXT@ -XGETTEXT_015 = @XGETTEXT_015@ -XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ -XMKMF = @XMKMF@ -XRENDER_CFLAGS = @XRENDER_CFLAGS@ -XRENDER_LIBS = @XRENDER_LIBS@ -X_CFLAGS = @X_CFLAGS@ -X_LIBS = @X_LIBS@ -abs_builddir = @abs_builddir@ -abs_srcdir = @abs_srcdir@ -abs_top_builddir = @abs_top_builddir@ -abs_top_srcdir = @abs_top_srcdir@ -ac_ct_AR = @ac_ct_AR@ -ac_ct_CC = @ac_ct_CC@ -ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ -am__include = @am__include@ -am__leading_dot = @am__leading_dot@ -am__quote = @am__quote@ -am__tar = @am__tar@ -am__untar = @am__untar@ -bindir = @bindir@ -build = @build@ -build_alias = @build_alias@ -build_cpu = @build_cpu@ -build_os = @build_os@ -build_vendor = @build_vendor@ -builddir = @builddir@ -datadir = @datadir@ -datarootdir = @datarootdir@ -docdir = @docdir@ -dvidir = @dvidir@ -exec_prefix = @exec_prefix@ -host = @host@ -host_alias = @host_alias@ -host_cpu = @host_cpu@ -host_os = @host_os@ -host_vendor = @host_vendor@ -htmldir = @htmldir@ -includedir = @includedir@ -infodir = @infodir@ -install_sh = @install_sh@ -libdir = @libdir@ -libexecdir = @libexecdir@ -localedir = @localedir@ -localstatedir = @localstatedir@ -mandir = @mandir@ -mkdir_p = @mkdir_p@ -oldincludedir = @oldincludedir@ -pdfdir = @pdfdir@ -prefix = @prefix@ -program_transform_name = @program_transform_name@ -psdir = @psdir@ -sbindir = @sbindir@ -sharedstatedir = @sharedstatedir@ -srcdir = @srcdir@ -sysconfdir = @sysconfdir@ -target_alias = @target_alias@ -top_build_prefix = @top_build_prefix@ -top_builddir = @top_builddir@ -top_srcdir = @top_srcdir@ -INCLUDES = \ - $(X_CFLAGS) \ - $(NULL) - -noinst_LIBRARIES = libXimd.a -AM_CFLAGS = -c -O2 -fno-strength-reduce -fno-strict-aliasing -libXimd_a_SOURCES = \ - FrameMgr.c FrameMgr.h i18nAttr.c i18nClbk.c i18nIc.c \ - i18nIMProto.c i18nMethod.c i18nPtHdr.c i18nUtil.c i18nX.c \ - IMConn.c IMdkit.h IMMethod.c IMValues.c Xi18n.h \ - Xi18nTr.h Xi18nX.h XimFunc.h XimProto.h - -all: all-am - -.SUFFIXES: -.SUFFIXES: .c .lo .o .obj -$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ - && { if test -f $@; then exit 0; else break; fi; }; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign lib/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign lib/Makefile -.PRECIOUS: Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(am__aclocal_m4_deps): - -clean-noinstLIBRARIES: - -test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES) -libXimd.a: $(libXimd_a_OBJECTS) $(libXimd_a_DEPENDENCIES) - $(AM_V_at)-rm -f libXimd.a - $(AM_V_AR)$(libXimd_a_AR) libXimd.a $(libXimd_a_OBJECTS) $(libXimd_a_LIBADD) - $(AM_V_at)$(RANLIB) libXimd.a - -mostlyclean-compile: - -rm -f *.$(OBJEXT) - -distclean-compile: - -rm -f *.tab.c - -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/FrameMgr.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/IMConn.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/IMMethod.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/IMValues.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/i18nAttr.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/i18nClbk.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/i18nIMProto.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/i18nIc.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/i18nMethod.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/i18nPtHdr.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/i18nUtil.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/i18nX.Po@am__quote@ - -.c.o: -@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c $< - -.c.obj: -@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` - -.c.lo: -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs - -ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - mkid -fID $$unique -tags: TAGS - -TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - set x; \ - here=`pwd`; \ - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: CTAGS -CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d "$(distdir)/$$file"; then \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ - else \ - test -f "$(distdir)/$$file" \ - || cp -p $$d/$$file "$(distdir)/$$file" \ - || exit 1; \ - fi; \ - done -check-am: all-am -check: check-am -all-am: Makefile $(LIBRARIES) -installdirs: -install: install-am -install-exec: install-exec-am -install-data: install-data-am -uninstall: uninstall-am - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-am -install-strip: - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - `test -z '$(STRIP)' || \ - echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install -mostlyclean-generic: - -clean-generic: - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-am - -clean-am: clean-generic clean-libtool clean-noinstLIBRARIES \ - mostlyclean-am - -distclean: distclean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -distclean-am: clean-am distclean-compile distclean-generic \ - distclean-tags - -dvi: dvi-am - -dvi-am: - -html: html-am - -html-am: - -info: info-am - -info-am: - -install-data-am: - -install-dvi: install-dvi-am - -install-dvi-am: - -install-exec-am: - -install-html: install-html-am - -install-html-am: - -install-info: install-info-am - -install-info-am: - -install-man: - -install-pdf: install-pdf-am - -install-pdf-am: - -install-ps: install-ps-am - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-am - -mostlyclean-am: mostlyclean-compile mostlyclean-generic \ - mostlyclean-libtool - -pdf: pdf-am - -pdf-am: - -ps: ps-am - -ps-am: - -uninstall-am: - -.MAKE: install-am install-strip - -.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ - clean-libtool clean-noinstLIBRARIES ctags distclean \ - distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am html html-am info info-am \ - install install-am install-data install-data-am install-dvi \ - install-dvi-am install-exec install-exec-am install-html \ - install-html-am install-info install-info-am install-man \ - install-pdf install-pdf-am install-ps install-ps-am \ - install-strip installcheck installcheck-am installdirs \ - maintainer-clean maintainer-clean-generic mostlyclean \ - mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ - pdf pdf-am ps ps-am tags uninstall uninstall-am - - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff -Nru fcitx-4.0.1/lib/Xi18n.h fcitx-4.1.1/lib/Xi18n.h --- fcitx-4.0.1/lib/Xi18n.h 2010-11-28 11:54:51.000000000 +0000 +++ fcitx-4.1.1/lib/Xi18n.h 1970-01-01 00:00:00.000000000 +0000 @@ -1,505 +0,0 @@ -/****************************************************************** - - Copyright 1994, 1995 by Sun Microsystems, Inc. - Copyright 1993, 1994 by Hewlett-Packard Company - -Permission to use, copy, modify, distribute, and sell this software -and its documentation for any purpose is hereby granted without fee, -provided that the above copyright notice appear in all copies and -that both that copyright notice and this permission notice appear -in supporting documentation, and that the name of Sun Microsystems, Inc. -and Hewlett-Packard not be used in advertising or publicity pertaining to -distribution of the software without specific, written prior permission. -Sun Microsystems, Inc. and Hewlett-Packard make no representations about -the suitability of this software for any purpose. It is provided "as is" -without express or implied warranty. - -SUN MICROSYSTEMS INC. AND HEWLETT-PACKARD COMPANY DISCLAIMS ALL -WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL -SUN MICROSYSTEMS, INC. AND HEWLETT-PACKARD COMPANY 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. - - Author: Hidetoshi Tajima(tajima@Eng.Sun.COM) Sun Microsystems, Inc. - - This version tidied and debugged by Steve Underwood May 1999 - -******************************************************************/ - -#ifndef _Xi18n_h -#define _Xi18n_h -#include -#include -#include -#include "XimProto.h" - -/* - * Minor Protocol Number for Extension Protocol - */ -#define XIM_EXTENSION 128 -#define XIM_EXT_SET_EVENT_MASK (0x30) -#define XIM_EXT_FORWARD_KEYEVENT (0x32) -#define XIM_EXT_MOVE (0x33) -#define COMMON_EXTENSIONS_NUM 3 - -#include -#include "IMdkit.h" - -/* XI18N Valid Attribute Name Definition */ -#define ExtForwardKeyEvent "extForwardKeyEvent" -#define ExtMove "extMove" -#define ExtSetEventMask "extSetEventMask" - -/* - * Padding macro - */ -#define IMPAD(length) ((4 - ((length)%4))%4) - -/* - * Target Atom for Transport Connection - */ -#define LOCALES "LOCALES" -#define TRANSPORT "TRANSPORT" - -#define I18N_OPEN 0 -#define I18N_SET 1 -#define I18N_GET 2 - -typedef struct -{ - char *transportname; - int namelen; - Bool (*checkAddr) (); -} TransportSW; - -typedef struct _XIMPending -{ - unsigned char *p; - struct _XIMPending *next; -} XIMPending; - -typedef struct _XimProtoHdr -{ - CARD8 major_opcode; - CARD8 minor_opcode; - CARD16 length; -} XimProtoHdr; - -typedef struct -{ - CARD16 attribute_id; - CARD16 type; - CARD16 length; - char *name; -} XIMAttr; - -typedef struct -{ - CARD16 attribute_id; - CARD16 type; - CARD16 length; - char *name; -} XICAttr; - -typedef struct -{ - int attribute_id; - CARD16 name_length; - char *name; - int value_length; - void *value; - int type; -} XIMAttribute; - -typedef struct -{ - int attribute_id; - CARD16 name_length; - char *name; - int value_length; - void *value; - int type; -} XICAttribute; - -typedef struct -{ - int length; - char *name; -} XIMStr; - -typedef struct -{ - CARD16 major_opcode; - CARD16 minor_opcode; - CARD16 length; - char *name; -} XIMExt; - -typedef struct _Xi18nClient -{ - int connect_id; - CARD8 byte_order; - /* - '?': initial value - 'B': for Big-Endian - 'l': for little-endian - */ - int sync; - XIMPending *pending; - void *trans_rec; /* contains transport specific data */ - struct _Xi18nClient *next; -} Xi18nClient; - -typedef struct _Xi18nCore *Xi18n; - -/* - * Callback Struct for XIM Protocol - */ -typedef struct -{ - int major_code; - int minor_code; - CARD16 connect_id; -} IMAnyStruct; - -typedef struct -{ - int major_code; - int minor_code; - CARD16 connect_id; - CARD8 byte_order; - CARD16 major_version; - CARD16 minor_version; -} IMConnectStruct; - -typedef struct -{ - int major_code; - int minor_code; - CARD16 connect_id; -} IMDisConnectStruct; - -typedef struct -{ - int major_code; - int minor_code; - CARD16 connect_id; - XIMStr lang; -} IMOpenStruct; - -typedef struct -{ - int major_code; - int minor_code; - CARD16 connect_id; -} IMCloseStruct; - -typedef struct -{ - int major_code; - int minor_code; - CARD16 connect_id; - CARD16 number; - XIMStr *extension; -} IMQueryExtensionStruct; - -typedef struct -{ - int major_code; - int minor_code; - CARD16 connect_id; - CARD16 number; - char **im_attr_list; -} IMGetIMValuesStruct; - -typedef struct -{ - int major_code; - int minor_code; - CARD16 connect_id; - CARD16 icid; - CARD16 preedit_attr_num; - CARD16 status_attr_num; - CARD16 ic_attr_num; - XICAttribute *preedit_attr; - XICAttribute *status_attr; - XICAttribute *ic_attr; -} IMChangeICStruct; - -typedef struct -{ - int major_code; - int minor_code; - CARD16 connect_id; - CARD16 icid; -} IMDestroyICStruct; - -typedef struct -{ - int major_code; - int minor_code; - CARD16 connect_id; - CARD16 icid; - CARD16 length; - char *commit_string; -} IMResetICStruct; - -typedef struct -{ - int major_code; - int minor_code; - CARD16 connect_id; - CARD16 icid; -} IMChangeFocusStruct; - -typedef struct -{ - int major_code; - int minor_code; - CARD16 connect_id; - CARD16 icid; - BITMASK16 sync_bit; - CARD16 serial_number; - XEvent event; -} IMForwardEventStruct; - -typedef struct -{ - int major_code; - int minor_code; - CARD16 connect_id; - CARD16 icid; - CARD16 flag; - KeySym keysym; - char *commit_string; -} IMCommitStruct; - -typedef struct -{ - int major_code; - int minor_code; - CARD16 connect_id; - CARD16 icid; - CARD32 flag; - CARD32 key_index; - CARD32 event_mask; -} IMTriggerNotifyStruct; - -typedef struct -{ - int major_code; - int minor_code; - CARD16 connect_id; - CARD16 encoding_number; - XIMStr *encoding; /* name information */ - CARD16 encoding_info_number; - XIMStr *encodinginfo; /* detailed information */ - CARD16 category; /* #0 for name, #1 for detail */ - INT16 enc_index; /* index of the encoding determined */ -} IMEncodingNegotiationStruct; - -typedef struct -{ - int major_code; - int minor_code; - CARD16 connect_id; - CARD16 icid; - CARD32 flag; - CARD32 forward_event_mask; - CARD32 sync_event_mask; -} IMSetEventMaskStruct; - -typedef struct -{ - int major_code; - int minor_code; - CARD16 connect_id; - CARD16 icid; - CARD32 filter_event_mask; - CARD32 intercept_event_mask; - CARD32 select_event_mask; - CARD32 forward_event_mask; - CARD32 sync_event_mask; -} IMExtSetEventMaskStruct; - -typedef struct -{ - int major_code; - int minor_code; - CARD16 connect_id; - CARD16 icid; - CARD16 x; - CARD16 y; -} IMMoveStruct; - -typedef struct -{ - int major_code; - int minor_code; - CARD16 connect_id; - CARD16 icid; - BITMASK16 flag; - CARD16 error_code; - CARD16 str_length; - CARD16 error_type; - char *error_detail; -} IMErrorStruct; - -typedef struct -{ - int major_code; - int minor_code; - CARD16 connect_id; - CARD16 icid; -} IMPreeditStateStruct; - -/* Callbacks */ -typedef struct -{ - int major_code; - int minor_code; - CARD16 connect_id; - CARD16 icid; -} IMGeometryCBStruct; - -typedef struct -{ - int major_code; - int minor_code; - CARD16 connect_id; - CARD16 icid; - union - { - int return_value; /* PreeditStart */ - XIMPreeditDrawCallbackStruct draw; /* PreeditDraw */ - XIMPreeditCaretCallbackStruct caret; /* PreeditCaret */ - } todo; -} IMPreeditCBStruct; - -typedef struct -{ - int major_code; - int minor_code; - CARD16 connect_id; - CARD16 icid; - union - { - XIMStatusDrawCallbackStruct draw; /* StatusDraw */ - } todo; -} IMStatusCBStruct; - -typedef struct -{ - int major_code; - int minor_code; - CARD16 connect_id; - CARD16 icid; - XIMStringConversionCallbackStruct strconv; -} IMStrConvCBStruct; - -typedef struct -{ - int major_code; - int minor_code; - CARD16 connect_id; - CARD16 icid; -} IMSyncXlibStruct; - -typedef union _IMProtocol -{ - int major_code; - IMAnyStruct any; - IMConnectStruct imconnect; - IMDisConnectStruct imdisconnect; - IMOpenStruct imopen; - IMCloseStruct imclose; - IMQueryExtensionStruct queryext; - IMGetIMValuesStruct getim; - IMEncodingNegotiationStruct encodingnego; - IMExtSetEventMaskStruct extsetevent; - IMMoveStruct extmove; - IMSetEventMaskStruct setevent; - IMChangeICStruct changeic; - IMDestroyICStruct destroyic; - IMResetICStruct resetic; - IMChangeFocusStruct changefocus; - IMCommitStruct commitstring; - IMForwardEventStruct forwardevent; - IMTriggerNotifyStruct triggernotify; - IMPreeditStateStruct preedit_state; - IMErrorStruct imerror; - IMGeometryCBStruct geometry_callback; - IMPreeditCBStruct preedit_callback; - IMStatusCBStruct status_callback; - IMStrConvCBStruct strconv_callback; - IMSyncXlibStruct sync_xlib; - long pad[32]; -} IMProtocol; - -typedef int (*IMProtoHandler) (XIMS, IMProtocol*); - -#define DEFAULT_FILTER_MASK (KeyPressMask) - -/* Xi18nAddressRec structure */ -typedef struct _Xi18nAddressRec -{ - Display *dpy; - CARD8 im_byteOrder; /* byte order 'B' or 'l' */ - /* IM Values */ - long imvalue_mask; - Window im_window; /* IMServerWindow */ - char *im_name; /* IMServerName */ - char *im_locale; /* IMLocale */ - char *im_addr; /* IMServerTransport */ - XIMStyles input_styles; /* IMInputStyles */ - XIMTriggerKeys on_keys; /* IMOnKeysList */ - XIMTriggerKeys off_keys; /* IMOffKeysList */ - XIMEncodings encoding_list; /* IMEncodingList */ - IMProtoHandler improto; /* IMProtocolHander */ - long filterevent_mask; /* IMFilterEventMask */ - /* XIM_SERVERS target Atoms */ - Atom selection; - Atom Localename; - Atom Transportname; - /* XIM/XIC Attr */ - int im_attr_num; - XIMAttr *xim_attr; - int ic_attr_num; - XICAttr *xic_attr; - CARD16 preeditAttr_id; - CARD16 statusAttr_id; - CARD16 separatorAttr_id; - /* XIMExtension List */ - int ext_num; - XIMExt extension[COMMON_EXTENSIONS_NUM]; - /* transport specific connection address */ - void *connect_addr; - /* actual data is defined: - XSpecRec in Xi18nX.h for X-based connection. - TransSpecRec in Xi18nTr.h for Socket-based connection. - */ - /* clients table */ - Xi18nClient *clients; - Xi18nClient *free_clients; -} Xi18nAddressRec; - -typedef struct _Xi18nMethodsRec -{ - Bool (*begin) (XIMS); - Bool (*end) (XIMS); - Bool (*send) (XIMS, CARD16, unsigned char*, long); - Bool (*wait) (XIMS, CARD16, CARD8, CARD8); - Bool (*disconnect) (XIMS, CARD16); -} Xi18nMethodsRec; - -typedef struct _Xi18nCore -{ - Xi18nAddressRec address; - Xi18nMethodsRec methods; -} Xi18nCore; - -#endif - diff -Nru fcitx-4.0.1/lib/Xi18nTr.h fcitx-4.1.1/lib/Xi18nTr.h --- fcitx-4.0.1/lib/Xi18nTr.h 2010-11-28 11:54:51.000000000 +0000 +++ fcitx-4.1.1/lib/Xi18nTr.h 1970-01-01 00:00:00.000000000 +0000 @@ -1,47 +0,0 @@ -/****************************************************************** - - Copyright 1994, 1995 by Sun Microsystems, Inc. - Copyright 1993, 1994 by Hewlett-Packard Company - -Permission to use, copy, modify, distribute, and sell this software -and its documentation for any purpose is hereby granted without fee, -provided that the above copyright notice appear in all copies and -that both that copyright notice and this permission notice appear -in supporting documentation, and that the name of Sun Microsystems, Inc. -and Hewlett-Packard not be used in advertising or publicity pertaining to -distribution of the software without specific, written prior permission. -Sun Microsystems, Inc. and Hewlett-Packard make no representations about -the suitability of this software for any purpose. It is provided "as is" -without express or implied warranty. - -SUN MICROSYSTEMS INC. AND HEWLETT-PACKARD COMPANY DISCLAIMS ALL -WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL -SUN MICROSYSTEMS, INC. AND HEWLETT-PACKARD COMPANY 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. - - Author: Hidetoshi Tajima(tajima@Eng.Sun.COM) Sun Microsystems, Inc. - - This version tidied and debugged by Steve Underwood May 1999 - -******************************************************************/ - -#ifndef _Xi18nTrTrans_h -#define _Xi18nTrTrans_h - -typedef struct _TransClient -{ - int accept_fd; - struct _XtransConnInfo *accept_conn; -} TransClient; - -typedef struct -{ - struct _XtransConnInfo *trans_conn; /* transport connection object */ - char *port; -} TransSpecRec; - -#endif diff -Nru fcitx-4.0.1/lib/Xi18nX.h fcitx-4.1.1/lib/Xi18nX.h --- fcitx-4.0.1/lib/Xi18nX.h 2010-11-28 11:54:51.000000000 +0000 +++ fcitx-4.1.1/lib/Xi18nX.h 1970-01-01 00:00:00.000000000 +0000 @@ -1,52 +0,0 @@ -/****************************************************************** - - Copyright 1994, 1995 by Sun Microsystems, Inc. - Copyright 1993, 1994 by Hewlett-Packard Company - -Permission to use, copy, modify, distribute, and sell this software -and its documentation for any purpose is hereby granted without fee, -provided that the above copyright notice appear in all copies and -that both that copyright notice and this permission notice appear -in supporting documentation, and that the name of Sun Microsystems, Inc. -and Hewlett-Packard not be used in advertising or publicity pertaining to -distribution of the software without specific, written prior permission. -Sun Microsystems, Inc. and Hewlett-Packard make no representations about -the suitability of this software for any purpose. It is provided "as is" -without express or implied warranty. - -SUN MICROSYSTEMS INC. AND HEWLETT-PACKARD COMPANY DISCLAIMS ALL -WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL -SUN MICROSYSTEMS, INC. AND HEWLETT-PACKARD COMPANY 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. - - Author: Hidetoshi Tajima(tajima@Eng.Sun.COM) Sun Microsystems, Inc. - - This version tidied and debugged by Steve Underwood May 1999 - -******************************************************************/ - -#ifndef _Xi18nTrX_h -#define _Xi18nTrX_h - -#define _XIM_PROTOCOL "_XIM_PROTOCOL" -#define _XIM_XCONNECT "_XIM_XCONNECT" - -#define XCM_DATA_LIMIT 20 - -typedef struct _XClient -{ - Window client_win; /* client window */ - Window accept_win; /* accept window */ -} XClient; - -typedef struct -{ - Atom xim_request; - Atom connect_request; -} XSpecRec; - -#endif diff -Nru fcitx-4.0.1/lib/XimFunc.h fcitx-4.1.1/lib/XimFunc.h --- fcitx-4.0.1/lib/XimFunc.h 2010-11-28 11:54:51.000000000 +0000 +++ fcitx-4.1.1/lib/XimFunc.h 1970-01-01 00:00:00.000000000 +0000 @@ -1,72 +0,0 @@ -/****************************************************************** - - Copyright 1994, 1995 by Sun Microsystems, Inc. - Copyright 1993, 1994 by Hewlett-Packard Company - -Permission to use, copy, modify, distribute, and sell this software -and its documentation for any purpose is hereby granted without fee, -provided that the above copyright notice appear in all copies and -that both that copyright notice and this permission notice appear -in supporting documentation, and that the name of Sun Microsystems, Inc. -and Hewlett-Packard not be used in advertising or publicity pertaining to -distribution of the software without specific, written prior permission. -Sun Microsystems, Inc. and Hewlett-Packard make no representations about -the suitability of this software for any purpose. It is provided "as is" -without express or implied warranty. - -SUN MICROSYSTEMS INC. AND HEWLETT-PACKARD COMPANY DISCLAIMS ALL -WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL -SUN MICROSYSTEMS, INC. AND HEWLETT-PACKARD COMPANY 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. - - Author: Hidetoshi Tajima(tajima@Eng.Sun.COM) Sun Microsystems, Inc. - - This version tidied and debugged by Steve Underwood May 1999 - -******************************************************************/ - -#ifndef _XimFunc_h -#define _XimFunc_h - -/* i18nAttr.c */ -void _Xi18nInitAttrList (Xi18n i18n_core); -void _Xi18nInitExtension(Xi18n i18n_core); - -/* i18nClbk.c */ -int _Xi18nGeometryCallback (XIMS ims, IMProtocol *call_data); -int _Xi18nPreeditStartCallback (XIMS ims, IMProtocol *call_data); -int _Xi18nPreeditDrawCallback (XIMS ims, IMProtocol *call_data); -int _Xi18nPreeditCaretCallback (XIMS ims, IMProtocol *call_data); -int _Xi18nPreeditDoneCallback (XIMS ims, IMProtocol *call_data); -int _Xi18nStatusStartCallback (XIMS ims, IMProtocol *call_data); -int _Xi18nStatusDrawCallback (XIMS ims, IMProtocol *call_data); -int _Xi18nStatusDoneCallback (XIMS ims, IMProtocol *call_data); -int _Xi18nStringConversionCallback (XIMS ims, IMProtocol *call_data); - -/* i18nIc.c */ -void _Xi18nChangeIC (XIMS ims, IMProtocol *call_data, unsigned char *p, - int create_flag); -void _Xi18nGetIC (XIMS ims, IMProtocol *call_data, unsigned char *p); - -/* i18nUtil.c */ -int _Xi18nNeedSwap (Xi18n i18n_core, CARD16 connect_id); -Xi18nClient *_Xi18nNewClient(Xi18n i18n_core); -Xi18nClient *_Xi18nFindClient (Xi18n i18n_core, CARD16 connect_id); -void _Xi18nDeleteClient (Xi18n i18n_core, CARD16 connect_id); -void _Xi18nSendMessage (XIMS ims, CARD16 connect_id, CARD8 major_opcode, - CARD8 minor_opcode, unsigned char *data, long length); -void _Xi18nSendTriggerKey (XIMS ims, CARD16 connect_id); -void _Xi18nSetEventMask (XIMS ims, CARD16 connect_id, CARD16 im_id, - CARD16 ic_id, CARD32 forward_mask, CARD32 sync_mask); - -/* Xlib internal */ -void _XRegisterFilterByType(Display*, Window, int, int, - Bool (*filter)(Display*, Window, XEvent*, XPointer), XPointer); -void _XUnregisterFilter(Display*, Window, - Bool (*filter)(Display*, Window, XEvent*, XPointer), XPointer); - -#endif diff -Nru fcitx-4.0.1/lib/XimProto.h fcitx-4.1.1/lib/XimProto.h --- fcitx-4.0.1/lib/XimProto.h 2010-11-28 11:54:51.000000000 +0000 +++ fcitx-4.1.1/lib/XimProto.h 1970-01-01 00:00:00.000000000 +0000 @@ -1,230 +0,0 @@ -/* $XConsortium: XimProto.h,v 1.2 94/01/20 18:02:24 rws Exp $ */ -/****************************************************************** - - Copyright 1992, 1993, 1994 by FUJITSU LIMITED - -Permission to use, copy, modify, distribute, and sell this software -and its documentation for any purpose is hereby granted without fee, -provided that the above copyright notice appear in all copies and -that both that copyright notice and this permission notice appear -in supporting documentation, and that the name of FUJITSU LIMITED -not be used in advertising or publicity pertaining to distribution -of the software without specific, written prior permission. -FUJITSU LIMITED makes no representations about the suitability of -this software for any purpose. -It is provided "as is" without express or implied warranty. - -FUJITSU LIMITED DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, -INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO -EVENT SHALL FUJITSU LIMITED 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. - - Author: Takashi Fujiwara FUJITSU LIMITED - fujiwara@a80.tech.yk.fujitsu.co.jp - - This version tidied and debugged by Steve Underwood May 1999 - -******************************************************************/ - -#ifndef _XIMPROTO_H -#define _XIMPROTO_H - -/* - * Default Preconnection selection target - */ -#define XIM_SERVERS "XIM_SERVERS" -#define XIM_LOCALES "LOCALES" -#define XIM_TRANSPORT "TRANSPORT" - -/* - * categories in XIM_SERVERS - */ -#define XIM_SERVER_CATEGORY "@server=" -#define XIM_LOCAL_CATEGORY "@locale=" -#define XIM_TRANSPORT_CATEGORY "@transport=" - -/* - * Xim implementation revision - */ -#define PROTOCOLMAJORVERSION 0 -#define PROTOCOLMINORVERSION 0 - -/* - * Major Protocol number - */ -#define XIM_CONNECT 1 -#define XIM_CONNECT_REPLY 2 -#define XIM_DISCONNECT 3 -#define XIM_DISCONNECT_REPLY 4 - -#define XIM_AUTH_REQUIRED 10 -#define XIM_AUTH_REPLY 11 -#define XIM_AUTH_NEXT 12 -#define XIM_AUTH_SETUP 13 -#define XIM_AUTH_NG 14 - -#define XIM_ERROR 20 - -#define XIM_OPEN 30 -#define XIM_OPEN_REPLY 31 -#define XIM_CLOSE 32 -#define XIM_CLOSE_REPLY 33 -#define XIM_REGISTER_TRIGGERKEYS 34 -#define XIM_TRIGGER_NOTIFY 35 -#define XIM_TRIGGER_NOTIFY_REPLY 36 -#define XIM_SET_EVENT_MASK 37 -#define XIM_ENCODING_NEGOTIATION 38 -#define XIM_ENCODING_NEGOTIATION_REPLY 39 -#define XIM_QUERY_EXTENSION 40 -#define XIM_QUERY_EXTENSION_REPLY 41 -#define XIM_SET_IM_VALUES 42 -#define XIM_SET_IM_VALUES_REPLY 43 -#define XIM_GET_IM_VALUES 44 -#define XIM_GET_IM_VALUES_REPLY 45 - -#define XIM_CREATE_IC 50 -#define XIM_CREATE_IC_REPLY 51 -#define XIM_DESTROY_IC 52 -#define XIM_DESTROY_IC_REPLY 53 -#define XIM_SET_IC_VALUES 54 -#define XIM_SET_IC_VALUES_REPLY 55 -#define XIM_GET_IC_VALUES 56 -#define XIM_GET_IC_VALUES_REPLY 57 -#define XIM_SET_IC_FOCUS 58 -#define XIM_UNSET_IC_FOCUS 59 -#define XIM_FORWARD_EVENT 60 -#define XIM_SYNC 61 -#define XIM_SYNC_REPLY 62 -#define XIM_COMMIT 63 -#define XIM_RESET_IC 64 -#define XIM_RESET_IC_REPLY 65 - -#define XIM_GEOMETRY 70 -#define XIM_STR_CONVERSION 71 -#define XIM_STR_CONVERSION_REPLY 72 -#define XIM_PREEDIT_START 73 -#define XIM_PREEDIT_START_REPLY 74 -#define XIM_PREEDIT_DRAW 75 -#define XIM_PREEDIT_CARET 76 -#define XIM_PREEDIT_CARET_REPLY 77 -#define XIM_PREEDIT_DONE 78 -#define XIM_STATUS_START 79 -#define XIM_STATUS_DRAW 80 -#define XIM_STATUS_DONE 81 - -/* - * values for the flag of XIM_ERROR - */ -#define XIM_IMID_VALID 0x0001 -#define XIM_ICID_VALID 0x0002 - -/* - * XIM Error Code - */ -#define XIM_BadAlloc 1 -#define XIM_BadStyle 2 -#define XIM_BadClientWindow 3 -#define XIM_BadFocusWindow 4 -#define XIM_BadArea 5 -#define XIM_BadSpotLocation 6 -#define XIM_BadColormap 7 -#define XIM_BadAtom 8 -#define XIM_BadPixel 9 -#define XIM_BadPixmap 10 -#define XIM_BadName 11 -#define XIM_BadCursor 12 -#define XIM_BadProtocol 13 -#define XIM_BadForeground 14 -#define XIM_BadBackground 15 -#define XIM_LocaleNotSupported 16 -#define XIM_BadSomething 999 - -/* - * byte order - */ -#define BIGENDIAN (CARD8) 0x42 /* MSB first */ -#define LITTLEENDIAN (CARD8) 0x6c /* LSB first */ - -/* - * values for the type of XIMATTR & XICATTR - */ -#define XimType_SeparatorOfNestedList 0 -#define XimType_CARD8 1 -#define XimType_CARD16 2 -#define XimType_CARD32 3 -#define XimType_STRING8 4 -#define XimType_Window 5 -#define XimType_XIMStyles 10 -#define XimType_XRectangle 11 -#define XimType_XPoint 12 -#define XimType_XFontSet 13 -#define XimType_XIMOptions 14 -#define XimType_XIMHotKeyTriggers 15 -#define XimType_XIMHotKeyState 16 -#define XimType_XIMStringConversion 17 -#define XimType_XIMValuesList 18 -#define XimType_NEST 0x7FFF - -/* - * values for the category of XIM_ENCODING_NEGOTIATON_REPLY - */ -#define XIM_Encoding_NameCategory 0 -#define XIM_Encoding_DetailCategory 1 - -/* - * value for the index of XIM_ENCODING_NEGOTIATON_REPLY - */ -#define XIM_Default_Encoding_IDX -1 - -/* - * value for the flag of XIM_FORWARD_EVENT, XIM_COMMIT - */ -#define XimSYNCHRONUS 0x0001 -#define XimLookupChars 0x0002 -#define XimLookupKeySym 0x0004 -#define XimLookupBoth 0x0006 - -/* - * request packet header size - */ -#define XIM_HEADER_SIZE \ - sizeof(CARD8) /* sizeof mejor-opcode */ \ - + sizeof(CARD8) /* sizeof minor-opcode */ \ - + sizeof(INT16) /* sizeof length */ - -/* - * Client Message data size - */ -#define XIM_CM_DATA_SIZE 20 - -/* - * XIM data structure - */ -typedef CARD16 BITMASK16; -typedef CARD32 BITMASK32; -typedef CARD32 EVENTMASK; - -typedef CARD16 XIMID; /* Input Method ID */ -typedef CARD16 XICID; /* Input Context ID */ - -/* - * Padding macro - */ -#define XIM_PAD(length) ((4 - ((length) % 4)) % 4) - -#define XIM_SET_PAD(ptr, length) \ - { \ - register int Counter = XIM_PAD((int)length); \ - if (Counter) { \ - register char *Ptr = (char *)(ptr) + (length); \ - length += Counter; \ - for (; Counter; --Counter, ++Ptr) \ - *Ptr = '\0'; \ - } \ - } - -#endif - diff -Nru fcitx-4.0.1/ltmain.sh fcitx-4.1.1/ltmain.sh --- fcitx-4.0.1/ltmain.sh 2010-11-28 11:55:33.000000000 +0000 +++ fcitx-4.1.1/ltmain.sh 1970-01-01 00:00:00.000000000 +0000 @@ -1,9636 +0,0 @@ - -# libtool (GNU libtool) 2.4 -# Written by Gordon Matzigkeit , 1996 - -# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006, -# 2007, 2008, 2009, 2010 Free Software Foundation, Inc. -# This is free software; see the source for copying conditions. There is NO -# warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. - -# GNU Libtool is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2 of the License, or -# (at your option) any later version. -# -# As a special exception to the GNU General Public License, -# if you distribute this file as part of a program or library that -# is built using GNU Libtool, you may include this file under the -# same distribution terms that you use for the rest of that program. -# -# GNU Libtool is distributed in the hope that it will be useful, but -# WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with GNU Libtool; see the file COPYING. If not, a copy -# can be downloaded from http://www.gnu.org/licenses/gpl.html, -# or obtained by writing to the Free Software Foundation, Inc., -# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - -# Usage: $progname [OPTION]... [MODE-ARG]... -# -# Provide generalized library-building support services. -# -# --config show all configuration variables -# --debug enable verbose shell tracing -# -n, --dry-run display commands without modifying any files -# --features display basic configuration information and exit -# --mode=MODE use operation mode MODE -# --preserve-dup-deps don't remove duplicate dependency libraries -# --quiet, --silent don't print informational messages -# --no-quiet, --no-silent -# print informational messages (default) -# --tag=TAG use configuration variables from tag TAG -# -v, --verbose print more informational messages than default -# --no-verbose don't print the extra informational messages -# --version print version information -# -h, --help, --help-all print short, long, or detailed help message -# -# MODE must be one of the following: -# -# clean remove files from the build directory -# compile compile a source file into a libtool object -# execute automatically set library path, then run a program -# finish complete the installation of libtool libraries -# install install libraries or executables -# link create a library or an executable -# uninstall remove libraries from an installed directory -# -# MODE-ARGS vary depending on the MODE. When passed as first option, -# `--mode=MODE' may be abbreviated as `MODE' or a unique abbreviation of that. -# Try `$progname --help --mode=MODE' for a more detailed description of MODE. -# -# When reporting a bug, please describe a test case to reproduce it and -# include the following information: -# -# host-triplet: $host -# shell: $SHELL -# compiler: $LTCC -# compiler flags: $LTCFLAGS -# linker: $LD (gnu? $with_gnu_ld) -# $progname: (GNU libtool) 2.4 -# automake: $automake_version -# autoconf: $autoconf_version -# -# Report bugs to . -# GNU libtool home page: . -# General help using GNU software: . - -PROGRAM=libtool -PACKAGE=libtool -VERSION=2.4 -TIMESTAMP="" -package_revision=1.3293 - -# Be Bourne compatible -if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then - emulate sh - NULLCMD=: - # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which - # is contrary to our usage. Disable this feature. - alias -g '${1+"$@"}'='"$@"' - setopt NO_GLOB_SUBST -else - case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac -fi -BIN_SH=xpg4; export BIN_SH # for Tru64 -DUALCASE=1; export DUALCASE # for MKS sh - -# A function that is used when there is no print builtin or printf. -func_fallback_echo () -{ - eval 'cat <<_LTECHO_EOF -$1 -_LTECHO_EOF' -} - -# NLS nuisances: We save the old values to restore during execute mode. -lt_user_locale= -lt_safe_locale= -for lt_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES -do - eval "if test \"\${$lt_var+set}\" = set; then - save_$lt_var=\$$lt_var - $lt_var=C - export $lt_var - lt_user_locale=\"$lt_var=\\\$save_\$lt_var; \$lt_user_locale\" - lt_safe_locale=\"$lt_var=C; \$lt_safe_locale\" - fi" -done -LC_ALL=C -LANGUAGE=C -export LANGUAGE LC_ALL - -$lt_unset CDPATH - - -# Work around backward compatibility issue on IRIX 6.5. On IRIX 6.4+, sh -# is ksh but when the shell is invoked as "sh" and the current value of -# the _XPG environment variable is not equal to 1 (one), the special -# positional parameter $0, within a function call, is the name of the -# function. -progpath="$0" - - - -: ${CP="cp -f"} -test "${ECHO+set}" = set || ECHO=${as_echo-'printf %s\n'} -: ${EGREP="grep -E"} -: ${FGREP="grep -F"} -: ${GREP="grep"} -: ${LN_S="ln -s"} -: ${MAKE="make"} -: ${MKDIR="mkdir"} -: ${MV="mv -f"} -: ${RM="rm -f"} -: ${SED="sed"} -: ${SHELL="${CONFIG_SHELL-/bin/sh}"} -: ${Xsed="$SED -e 1s/^X//"} - -# Global variables: -EXIT_SUCCESS=0 -EXIT_FAILURE=1 -EXIT_MISMATCH=63 # $? = 63 is used to indicate version mismatch to missing. -EXIT_SKIP=77 # $? = 77 is used to indicate a skipped test to automake. - -exit_status=$EXIT_SUCCESS - -# Make sure IFS has a sensible default -lt_nl=' -' -IFS=" $lt_nl" - -dirname="s,/[^/]*$,," -basename="s,^.*/,," - -# func_dirname file append nondir_replacement -# Compute the dirname of FILE. If nonempty, add APPEND to the result, -# otherwise set result to NONDIR_REPLACEMENT. -func_dirname () -{ - func_dirname_result=`$ECHO "${1}" | $SED "$dirname"` - if test "X$func_dirname_result" = "X${1}"; then - func_dirname_result="${3}" - else - func_dirname_result="$func_dirname_result${2}" - fi -} # func_dirname may be replaced by extended shell implementation - - -# func_basename file -func_basename () -{ - func_basename_result=`$ECHO "${1}" | $SED "$basename"` -} # func_basename may be replaced by extended shell implementation - - -# func_dirname_and_basename file append nondir_replacement -# perform func_basename and func_dirname in a single function -# call: -# dirname: Compute the dirname of FILE. If nonempty, -# add APPEND to the result, otherwise set result -# to NONDIR_REPLACEMENT. -# value returned in "$func_dirname_result" -# basename: Compute filename of FILE. -# value retuned in "$func_basename_result" -# Implementation must be kept synchronized with func_dirname -# and func_basename. For efficiency, we do not delegate to -# those functions but instead duplicate the functionality here. -func_dirname_and_basename () -{ - # Extract subdirectory from the argument. - func_dirname_result=`$ECHO "${1}" | $SED -e "$dirname"` - if test "X$func_dirname_result" = "X${1}"; then - func_dirname_result="${3}" - else - func_dirname_result="$func_dirname_result${2}" - fi - func_basename_result=`$ECHO "${1}" | $SED -e "$basename"` -} # func_dirname_and_basename may be replaced by extended shell implementation - - -# func_stripname prefix suffix name -# strip PREFIX and SUFFIX off of NAME. -# PREFIX and SUFFIX must not contain globbing or regex special -# characters, hashes, percent signs, but SUFFIX may contain a leading -# dot (in which case that matches only a dot). -# func_strip_suffix prefix name -func_stripname () -{ - case ${2} in - .*) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%\\\\${2}\$%%"`;; - *) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%${2}\$%%"`;; - esac -} # func_stripname may be replaced by extended shell implementation - - -# These SED scripts presuppose an absolute path with a trailing slash. -pathcar='s,^/\([^/]*\).*$,\1,' -pathcdr='s,^/[^/]*,,' -removedotparts=':dotsl - s@/\./@/@g - t dotsl - s,/\.$,/,' -collapseslashes='s@/\{1,\}@/@g' -finalslash='s,/*$,/,' - -# func_normal_abspath PATH -# Remove doubled-up and trailing slashes, "." path components, -# and cancel out any ".." path components in PATH after making -# it an absolute path. -# value returned in "$func_normal_abspath_result" -func_normal_abspath () -{ - # Start from root dir and reassemble the path. - func_normal_abspath_result= - func_normal_abspath_tpath=$1 - func_normal_abspath_altnamespace= - case $func_normal_abspath_tpath in - "") - # Empty path, that just means $cwd. - func_stripname '' '/' "`pwd`" - func_normal_abspath_result=$func_stripname_result - return - ;; - # The next three entries are used to spot a run of precisely - # two leading slashes without using negated character classes; - # we take advantage of case's first-match behaviour. - ///*) - # Unusual form of absolute path, do nothing. - ;; - //*) - # Not necessarily an ordinary path; POSIX reserves leading '//' - # and for example Cygwin uses it to access remote file shares - # over CIFS/SMB, so we conserve a leading double slash if found. - func_normal_abspath_altnamespace=/ - ;; - /*) - # Absolute path, do nothing. - ;; - *) - # Relative path, prepend $cwd. - func_normal_abspath_tpath=`pwd`/$func_normal_abspath_tpath - ;; - esac - # Cancel out all the simple stuff to save iterations. We also want - # the path to end with a slash for ease of parsing, so make sure - # there is one (and only one) here. - func_normal_abspath_tpath=`$ECHO "$func_normal_abspath_tpath" | $SED \ - -e "$removedotparts" -e "$collapseslashes" -e "$finalslash"` - while :; do - # Processed it all yet? - if test "$func_normal_abspath_tpath" = / ; then - # If we ascended to the root using ".." the result may be empty now. - if test -z "$func_normal_abspath_result" ; then - func_normal_abspath_result=/ - fi - break - fi - func_normal_abspath_tcomponent=`$ECHO "$func_normal_abspath_tpath" | $SED \ - -e "$pathcar"` - func_normal_abspath_tpath=`$ECHO "$func_normal_abspath_tpath" | $SED \ - -e "$pathcdr"` - # Figure out what to do with it - case $func_normal_abspath_tcomponent in - "") - # Trailing empty path component, ignore it. - ;; - ..) - # Parent dir; strip last assembled component from result. - func_dirname "$func_normal_abspath_result" - func_normal_abspath_result=$func_dirname_result - ;; - *) - # Actual path component, append it. - func_normal_abspath_result=$func_normal_abspath_result/$func_normal_abspath_tcomponent - ;; - esac - done - # Restore leading double-slash if one was found on entry. - func_normal_abspath_result=$func_normal_abspath_altnamespace$func_normal_abspath_result -} - -# func_relative_path SRCDIR DSTDIR -# generates a relative path from SRCDIR to DSTDIR, with a trailing -# slash if non-empty, suitable for immediately appending a filename -# without needing to append a separator. -# value returned in "$func_relative_path_result" -func_relative_path () -{ - func_relative_path_result= - func_normal_abspath "$1" - func_relative_path_tlibdir=$func_normal_abspath_result - func_normal_abspath "$2" - func_relative_path_tbindir=$func_normal_abspath_result - - # Ascend the tree starting from libdir - while :; do - # check if we have found a prefix of bindir - case $func_relative_path_tbindir in - $func_relative_path_tlibdir) - # found an exact match - func_relative_path_tcancelled= - break - ;; - $func_relative_path_tlibdir*) - # found a matching prefix - func_stripname "$func_relative_path_tlibdir" '' "$func_relative_path_tbindir" - func_relative_path_tcancelled=$func_stripname_result - if test -z "$func_relative_path_result"; then - func_relative_path_result=. - fi - break - ;; - *) - func_dirname $func_relative_path_tlibdir - func_relative_path_tlibdir=${func_dirname_result} - if test "x$func_relative_path_tlibdir" = x ; then - # Have to descend all the way to the root! - func_relative_path_result=../$func_relative_path_result - func_relative_path_tcancelled=$func_relative_path_tbindir - break - fi - func_relative_path_result=../$func_relative_path_result - ;; - esac - done - - # Now calculate path; take care to avoid doubling-up slashes. - func_stripname '' '/' "$func_relative_path_result" - func_relative_path_result=$func_stripname_result - func_stripname '/' '/' "$func_relative_path_tcancelled" - if test "x$func_stripname_result" != x ; then - func_relative_path_result=${func_relative_path_result}/${func_stripname_result} - fi - - # Normalisation. If bindir is libdir, return empty string, - # else relative path ending with a slash; either way, target - # file name can be directly appended. - if test ! -z "$func_relative_path_result"; then - func_stripname './' '' "$func_relative_path_result/" - func_relative_path_result=$func_stripname_result - fi -} - -# The name of this program: -func_dirname_and_basename "$progpath" -progname=$func_basename_result - -# Make sure we have an absolute path for reexecution: -case $progpath in - [\\/]*|[A-Za-z]:\\*) ;; - *[\\/]*) - progdir=$func_dirname_result - progdir=`cd "$progdir" && pwd` - progpath="$progdir/$progname" - ;; - *) - save_IFS="$IFS" - IFS=: - for progdir in $PATH; do - IFS="$save_IFS" - test -x "$progdir/$progname" && break - done - IFS="$save_IFS" - test -n "$progdir" || progdir=`pwd` - progpath="$progdir/$progname" - ;; -esac - -# Sed substitution that helps us do robust quoting. It backslashifies -# metacharacters that are still active within double-quoted strings. -Xsed="${SED}"' -e 1s/^X//' -sed_quote_subst='s/\([`"$\\]\)/\\\1/g' - -# Same as above, but do not quote variable references. -double_quote_subst='s/\(["`\\]\)/\\\1/g' - -# Sed substitution that turns a string into a regex matching for the -# string literally. -sed_make_literal_regex='s,[].[^$\\*\/],\\&,g' - -# Sed substitution that converts a w32 file name or path -# which contains forward slashes, into one that contains -# (escaped) backslashes. A very naive implementation. -lt_sed_naive_backslashify='s|\\\\*|\\|g;s|/|\\|g;s|\\|\\\\|g' - -# Re-`\' parameter expansions in output of double_quote_subst that were -# `\'-ed in input to the same. If an odd number of `\' preceded a '$' -# in input to double_quote_subst, that '$' was protected from expansion. -# Since each input `\' is now two `\'s, look for any number of runs of -# four `\'s followed by two `\'s and then a '$'. `\' that '$'. -bs='\\' -bs2='\\\\' -bs4='\\\\\\\\' -dollar='\$' -sed_double_backslash="\ - s/$bs4/&\\ -/g - s/^$bs2$dollar/$bs&/ - s/\\([^$bs]\\)$bs2$dollar/\\1$bs2$bs$dollar/g - s/\n//g" - -# Standard options: -opt_dry_run=false -opt_help=false -opt_quiet=false -opt_verbose=false -opt_warning=: - -# func_echo arg... -# Echo program name prefixed message, along with the current mode -# name if it has been set yet. -func_echo () -{ - $ECHO "$progname: ${opt_mode+$opt_mode: }$*" -} - -# func_verbose arg... -# Echo program name prefixed message in verbose mode only. -func_verbose () -{ - $opt_verbose && func_echo ${1+"$@"} - - # A bug in bash halts the script if the last line of a function - # fails when set -e is in force, so we need another command to - # work around that: - : -} - -# func_echo_all arg... -# Invoke $ECHO with all args, space-separated. -func_echo_all () -{ - $ECHO "$*" -} - -# func_error arg... -# Echo program name prefixed message to standard error. -func_error () -{ - $ECHO "$progname: ${opt_mode+$opt_mode: }"${1+"$@"} 1>&2 -} - -# func_warning arg... -# Echo program name prefixed warning message to standard error. -func_warning () -{ - $opt_warning && $ECHO "$progname: ${opt_mode+$opt_mode: }warning: "${1+"$@"} 1>&2 - - # bash bug again: - : -} - -# func_fatal_error arg... -# Echo program name prefixed message to standard error, and exit. -func_fatal_error () -{ - func_error ${1+"$@"} - exit $EXIT_FAILURE -} - -# func_fatal_help arg... -# Echo program name prefixed message to standard error, followed by -# a help hint, and exit. -func_fatal_help () -{ - func_error ${1+"$@"} - func_fatal_error "$help" -} -help="Try \`$progname --help' for more information." ## default - - -# func_grep expression filename -# Check whether EXPRESSION matches any line of FILENAME, without output. -func_grep () -{ - $GREP "$1" "$2" >/dev/null 2>&1 -} - - -# func_mkdir_p directory-path -# Make sure the entire path to DIRECTORY-PATH is available. -func_mkdir_p () -{ - my_directory_path="$1" - my_dir_list= - - if test -n "$my_directory_path" && test "$opt_dry_run" != ":"; then - - # Protect directory names starting with `-' - case $my_directory_path in - -*) my_directory_path="./$my_directory_path" ;; - esac - - # While some portion of DIR does not yet exist... - while test ! -d "$my_directory_path"; do - # ...make a list in topmost first order. Use a colon delimited - # list incase some portion of path contains whitespace. - my_dir_list="$my_directory_path:$my_dir_list" - - # If the last portion added has no slash in it, the list is done - case $my_directory_path in */*) ;; *) break ;; esac - - # ...otherwise throw away the child directory and loop - my_directory_path=`$ECHO "$my_directory_path" | $SED -e "$dirname"` - done - my_dir_list=`$ECHO "$my_dir_list" | $SED 's,:*$,,'` - - save_mkdir_p_IFS="$IFS"; IFS=':' - for my_dir in $my_dir_list; do - IFS="$save_mkdir_p_IFS" - # mkdir can fail with a `File exist' error if two processes - # try to create one of the directories concurrently. Don't - # stop in that case! - $MKDIR "$my_dir" 2>/dev/null || : - done - IFS="$save_mkdir_p_IFS" - - # Bail out if we (or some other process) failed to create a directory. - test -d "$my_directory_path" || \ - func_fatal_error "Failed to create \`$1'" - fi -} - - -# func_mktempdir [string] -# Make a temporary directory that won't clash with other running -# libtool processes, and avoids race conditions if possible. If -# given, STRING is the basename for that directory. -func_mktempdir () -{ - my_template="${TMPDIR-/tmp}/${1-$progname}" - - if test "$opt_dry_run" = ":"; then - # Return a directory name, but don't create it in dry-run mode - my_tmpdir="${my_template}-$$" - else - - # If mktemp works, use that first and foremost - my_tmpdir=`mktemp -d "${my_template}-XXXXXXXX" 2>/dev/null` - - if test ! -d "$my_tmpdir"; then - # Failing that, at least try and use $RANDOM to avoid a race - my_tmpdir="${my_template}-${RANDOM-0}$$" - - save_mktempdir_umask=`umask` - umask 0077 - $MKDIR "$my_tmpdir" - umask $save_mktempdir_umask - fi - - # If we're not in dry-run mode, bomb out on failure - test -d "$my_tmpdir" || \ - func_fatal_error "cannot create temporary directory \`$my_tmpdir'" - fi - - $ECHO "$my_tmpdir" -} - - -# func_quote_for_eval arg -# Aesthetically quote ARG to be evaled later. -# This function returns two values: FUNC_QUOTE_FOR_EVAL_RESULT -# is double-quoted, suitable for a subsequent eval, whereas -# FUNC_QUOTE_FOR_EVAL_UNQUOTED_RESULT has merely all characters -# which are still active within double quotes backslashified. -func_quote_for_eval () -{ - case $1 in - *[\\\`\"\$]*) - func_quote_for_eval_unquoted_result=`$ECHO "$1" | $SED "$sed_quote_subst"` ;; - *) - func_quote_for_eval_unquoted_result="$1" ;; - esac - - case $func_quote_for_eval_unquoted_result in - # Double-quote args containing shell metacharacters to delay - # word splitting, command substitution and and variable - # expansion for a subsequent eval. - # Many Bourne shells cannot handle close brackets correctly - # in scan sets, so we specify it separately. - *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") - func_quote_for_eval_result="\"$func_quote_for_eval_unquoted_result\"" - ;; - *) - func_quote_for_eval_result="$func_quote_for_eval_unquoted_result" - esac -} - - -# func_quote_for_expand arg -# Aesthetically quote ARG to be evaled later; same as above, -# but do not quote variable references. -func_quote_for_expand () -{ - case $1 in - *[\\\`\"]*) - my_arg=`$ECHO "$1" | $SED \ - -e "$double_quote_subst" -e "$sed_double_backslash"` ;; - *) - my_arg="$1" ;; - esac - - case $my_arg in - # Double-quote args containing shell metacharacters to delay - # word splitting and command substitution for a subsequent eval. - # Many Bourne shells cannot handle close brackets correctly - # in scan sets, so we specify it separately. - *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") - my_arg="\"$my_arg\"" - ;; - esac - - func_quote_for_expand_result="$my_arg" -} - - -# func_show_eval cmd [fail_exp] -# Unless opt_silent is true, then output CMD. Then, if opt_dryrun is -# not true, evaluate CMD. If the evaluation of CMD fails, and FAIL_EXP -# is given, then evaluate it. -func_show_eval () -{ - my_cmd="$1" - my_fail_exp="${2-:}" - - ${opt_silent-false} || { - func_quote_for_expand "$my_cmd" - eval "func_echo $func_quote_for_expand_result" - } - - if ${opt_dry_run-false}; then :; else - eval "$my_cmd" - my_status=$? - if test "$my_status" -eq 0; then :; else - eval "(exit $my_status); $my_fail_exp" - fi - fi -} - - -# func_show_eval_locale cmd [fail_exp] -# Unless opt_silent is true, then output CMD. Then, if opt_dryrun is -# not true, evaluate CMD. If the evaluation of CMD fails, and FAIL_EXP -# is given, then evaluate it. Use the saved locale for evaluation. -func_show_eval_locale () -{ - my_cmd="$1" - my_fail_exp="${2-:}" - - ${opt_silent-false} || { - func_quote_for_expand "$my_cmd" - eval "func_echo $func_quote_for_expand_result" - } - - if ${opt_dry_run-false}; then :; else - eval "$lt_user_locale - $my_cmd" - my_status=$? - eval "$lt_safe_locale" - if test "$my_status" -eq 0; then :; else - eval "(exit $my_status); $my_fail_exp" - fi - fi -} - -# func_tr_sh -# Turn $1 into a string suitable for a shell variable name. -# Result is stored in $func_tr_sh_result. All characters -# not in the set a-zA-Z0-9_ are replaced with '_'. Further, -# if $1 begins with a digit, a '_' is prepended as well. -func_tr_sh () -{ - case $1 in - [0-9]* | *[!a-zA-Z0-9_]*) - func_tr_sh_result=`$ECHO "$1" | $SED 's/^\([0-9]\)/_\1/; s/[^a-zA-Z0-9_]/_/g'` - ;; - * ) - func_tr_sh_result=$1 - ;; - esac -} - - -# func_version -# Echo version message to standard output and exit. -func_version () -{ - $opt_debug - - $SED -n '/(C)/!b go - :more - /\./!{ - N - s/\n# / / - b more - } - :go - /^# '$PROGRAM' (GNU /,/# warranty; / { - s/^# // - s/^# *$// - s/\((C)\)[ 0-9,-]*\( [1-9][0-9]*\)/\1\2/ - p - }' < "$progpath" - exit $? -} - -# func_usage -# Echo short help message to standard output and exit. -func_usage () -{ - $opt_debug - - $SED -n '/^# Usage:/,/^# *.*--help/ { - s/^# // - s/^# *$// - s/\$progname/'$progname'/ - p - }' < "$progpath" - echo - $ECHO "run \`$progname --help | more' for full usage" - exit $? -} - -# func_help [NOEXIT] -# Echo long help message to standard output and exit, -# unless 'noexit' is passed as argument. -func_help () -{ - $opt_debug - - $SED -n '/^# Usage:/,/# Report bugs to/ { - :print - s/^# // - s/^# *$// - s*\$progname*'$progname'* - s*\$host*'"$host"'* - s*\$SHELL*'"$SHELL"'* - s*\$LTCC*'"$LTCC"'* - s*\$LTCFLAGS*'"$LTCFLAGS"'* - s*\$LD*'"$LD"'* - s/\$with_gnu_ld/'"$with_gnu_ld"'/ - s/\$automake_version/'"`(automake --version) 2>/dev/null |$SED 1q`"'/ - s/\$autoconf_version/'"`(autoconf --version) 2>/dev/null |$SED 1q`"'/ - p - d - } - /^# .* home page:/b print - /^# General help using/b print - ' < "$progpath" - ret=$? - if test -z "$1"; then - exit $ret - fi -} - -# func_missing_arg argname -# Echo program name prefixed message to standard error and set global -# exit_cmd. -func_missing_arg () -{ - $opt_debug - - func_error "missing argument for $1." - exit_cmd=exit -} - - -# func_split_short_opt shortopt -# Set func_split_short_opt_name and func_split_short_opt_arg shell -# variables after splitting SHORTOPT after the 2nd character. -func_split_short_opt () -{ - my_sed_short_opt='1s/^\(..\).*$/\1/;q' - my_sed_short_rest='1s/^..\(.*\)$/\1/;q' - - func_split_short_opt_name=`$ECHO "$1" | $SED "$my_sed_short_opt"` - func_split_short_opt_arg=`$ECHO "$1" | $SED "$my_sed_short_rest"` -} # func_split_short_opt may be replaced by extended shell implementation - - -# func_split_long_opt longopt -# Set func_split_long_opt_name and func_split_long_opt_arg shell -# variables after splitting LONGOPT at the `=' sign. -func_split_long_opt () -{ - my_sed_long_opt='1s/^\(--[^=]*\)=.*/\1/;q' - my_sed_long_arg='1s/^--[^=]*=//' - - func_split_long_opt_name=`$ECHO "$1" | $SED "$my_sed_long_opt"` - func_split_long_opt_arg=`$ECHO "$1" | $SED "$my_sed_long_arg"` -} # func_split_long_opt may be replaced by extended shell implementation - -exit_cmd=: - - - - - -magic="%%%MAGIC variable%%%" -magic_exe="%%%MAGIC EXE variable%%%" - -# Global variables. -nonopt= -preserve_args= -lo2o="s/\\.lo\$/.${objext}/" -o2lo="s/\\.${objext}\$/.lo/" -extracted_archives= -extracted_serial=0 - -# If this variable is set in any of the actions, the command in it -# will be execed at the end. This prevents here-documents from being -# left over by shells. -exec_cmd= - -# func_append var value -# Append VALUE to the end of shell variable VAR. -func_append () -{ - eval "${1}=\$${1}\${2}" -} # func_append may be replaced by extended shell implementation - -# func_append_quoted var value -# Quote VALUE and append to the end of shell variable VAR, separated -# by a space. -func_append_quoted () -{ - func_quote_for_eval "${2}" - eval "${1}=\$${1}\\ \$func_quote_for_eval_result" -} # func_append_quoted may be replaced by extended shell implementation - - -# func_arith arithmetic-term... -func_arith () -{ - func_arith_result=`expr "${@}"` -} # func_arith may be replaced by extended shell implementation - - -# func_len string -# STRING may not start with a hyphen. -func_len () -{ - func_len_result=`expr "${1}" : ".*" 2>/dev/null || echo $max_cmd_len` -} # func_len may be replaced by extended shell implementation - - -# func_lo2o object -func_lo2o () -{ - func_lo2o_result=`$ECHO "${1}" | $SED "$lo2o"` -} # func_lo2o may be replaced by extended shell implementation - - -# func_xform libobj-or-source -func_xform () -{ - func_xform_result=`$ECHO "${1}" | $SED 's/\.[^.]*$/.lo/'` -} # func_xform may be replaced by extended shell implementation - - -# func_fatal_configuration arg... -# Echo program name prefixed message to standard error, followed by -# a configuration failure hint, and exit. -func_fatal_configuration () -{ - func_error ${1+"$@"} - func_error "See the $PACKAGE documentation for more information." - func_fatal_error "Fatal configuration error." -} - - -# func_config -# Display the configuration for all the tags in this script. -func_config () -{ - re_begincf='^# ### BEGIN LIBTOOL' - re_endcf='^# ### END LIBTOOL' - - # Default configuration. - $SED "1,/$re_begincf CONFIG/d;/$re_endcf CONFIG/,\$d" < "$progpath" - - # Now print the configurations for the tags. - for tagname in $taglist; do - $SED -n "/$re_begincf TAG CONFIG: $tagname\$/,/$re_endcf TAG CONFIG: $tagname\$/p" < "$progpath" - done - - exit $? -} - -# func_features -# Display the features supported by this script. -func_features () -{ - echo "host: $host" - if test "$build_libtool_libs" = yes; then - echo "enable shared libraries" - else - echo "disable shared libraries" - fi - if test "$build_old_libs" = yes; then - echo "enable static libraries" - else - echo "disable static libraries" - fi - - exit $? -} - -# func_enable_tag tagname -# Verify that TAGNAME is valid, and either flag an error and exit, or -# enable the TAGNAME tag. We also add TAGNAME to the global $taglist -# variable here. -func_enable_tag () -{ - # Global variable: - tagname="$1" - - re_begincf="^# ### BEGIN LIBTOOL TAG CONFIG: $tagname\$" - re_endcf="^# ### END LIBTOOL TAG CONFIG: $tagname\$" - sed_extractcf="/$re_begincf/,/$re_endcf/p" - - # Validate tagname. - case $tagname in - *[!-_A-Za-z0-9,/]*) - func_fatal_error "invalid tag name: $tagname" - ;; - esac - - # Don't test for the "default" C tag, as we know it's - # there but not specially marked. - case $tagname in - CC) ;; - *) - if $GREP "$re_begincf" "$progpath" >/dev/null 2>&1; then - taglist="$taglist $tagname" - - # Evaluate the configuration. Be careful to quote the path - # and the sed script, to avoid splitting on whitespace, but - # also don't use non-portable quotes within backquotes within - # quotes we have to do it in 2 steps: - extractedcf=`$SED -n -e "$sed_extractcf" < "$progpath"` - eval "$extractedcf" - else - func_error "ignoring unknown tag $tagname" - fi - ;; - esac -} - -# func_check_version_match -# Ensure that we are using m4 macros, and libtool script from the same -# release of libtool. -func_check_version_match () -{ - if test "$package_revision" != "$macro_revision"; then - if test "$VERSION" != "$macro_version"; then - if test -z "$macro_version"; then - cat >&2 <<_LT_EOF -$progname: Version mismatch error. This is $PACKAGE $VERSION, but the -$progname: definition of this LT_INIT comes from an older release. -$progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION -$progname: and run autoconf again. -_LT_EOF - else - cat >&2 <<_LT_EOF -$progname: Version mismatch error. This is $PACKAGE $VERSION, but the -$progname: definition of this LT_INIT comes from $PACKAGE $macro_version. -$progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION -$progname: and run autoconf again. -_LT_EOF - fi - else - cat >&2 <<_LT_EOF -$progname: Version mismatch error. This is $PACKAGE $VERSION, revision $package_revision, -$progname: but the definition of this LT_INIT comes from revision $macro_revision. -$progname: You should recreate aclocal.m4 with macros from revision $package_revision -$progname: of $PACKAGE $VERSION and run autoconf again. -_LT_EOF - fi - - exit $EXIT_MISMATCH - fi -} - - -# Shorthand for --mode=foo, only valid as the first argument -case $1 in -clean|clea|cle|cl) - shift; set dummy --mode clean ${1+"$@"}; shift - ;; -compile|compil|compi|comp|com|co|c) - shift; set dummy --mode compile ${1+"$@"}; shift - ;; -execute|execut|execu|exec|exe|ex|e) - shift; set dummy --mode execute ${1+"$@"}; shift - ;; -finish|finis|fini|fin|fi|f) - shift; set dummy --mode finish ${1+"$@"}; shift - ;; -install|instal|insta|inst|ins|in|i) - shift; set dummy --mode install ${1+"$@"}; shift - ;; -link|lin|li|l) - shift; set dummy --mode link ${1+"$@"}; shift - ;; -uninstall|uninstal|uninsta|uninst|unins|unin|uni|un|u) - shift; set dummy --mode uninstall ${1+"$@"}; shift - ;; -esac - - - -# Option defaults: -opt_debug=: -opt_dry_run=false -opt_config=false -opt_preserve_dup_deps=false -opt_features=false -opt_finish=false -opt_help=false -opt_help_all=false -opt_silent=: -opt_verbose=: -opt_silent=false -opt_verbose=false - - -# Parse options once, thoroughly. This comes as soon as possible in the -# script to make things like `--version' happen as quickly as we can. -{ - # this just eases exit handling - while test $# -gt 0; do - opt="$1" - shift - case $opt in - --debug|-x) opt_debug='set -x' - func_echo "enabling shell trace mode" - $opt_debug - ;; - --dry-run|--dryrun|-n) - opt_dry_run=: - ;; - --config) - opt_config=: -func_config - ;; - --dlopen|-dlopen) - optarg="$1" - opt_dlopen="${opt_dlopen+$opt_dlopen -}$optarg" - shift - ;; - --preserve-dup-deps) - opt_preserve_dup_deps=: - ;; - --features) - opt_features=: -func_features - ;; - --finish) - opt_finish=: -set dummy --mode finish ${1+"$@"}; shift - ;; - --help) - opt_help=: - ;; - --help-all) - opt_help_all=: -opt_help=': help-all' - ;; - --mode) - test $# = 0 && func_missing_arg $opt && break - optarg="$1" - opt_mode="$optarg" -case $optarg in - # Valid mode arguments: - clean|compile|execute|finish|install|link|relink|uninstall) ;; - - # Catch anything else as an error - *) func_error "invalid argument for $opt" - exit_cmd=exit - break - ;; -esac - shift - ;; - --no-silent|--no-quiet) - opt_silent=false -func_append preserve_args " $opt" - ;; - --no-verbose) - opt_verbose=false -func_append preserve_args " $opt" - ;; - --silent|--quiet) - opt_silent=: -func_append preserve_args " $opt" - opt_verbose=false - ;; - --verbose|-v) - opt_verbose=: -func_append preserve_args " $opt" -opt_silent=false - ;; - --tag) - test $# = 0 && func_missing_arg $opt && break - optarg="$1" - opt_tag="$optarg" -func_append preserve_args " $opt $optarg" -func_enable_tag "$optarg" - shift - ;; - - -\?|-h) func_usage ;; - --help) func_help ;; - --version) func_version ;; - - # Separate optargs to long options: - --*=*) - func_split_long_opt "$opt" - set dummy "$func_split_long_opt_name" "$func_split_long_opt_arg" ${1+"$@"} - shift - ;; - - # Separate non-argument short options: - -\?*|-h*|-n*|-v*) - func_split_short_opt "$opt" - set dummy "$func_split_short_opt_name" "-$func_split_short_opt_arg" ${1+"$@"} - shift - ;; - - --) break ;; - -*) func_fatal_help "unrecognized option \`$opt'" ;; - *) set dummy "$opt" ${1+"$@"}; shift; break ;; - esac - done - - # Validate options: - - # save first non-option argument - if test "$#" -gt 0; then - nonopt="$opt" - shift - fi - - # preserve --debug - test "$opt_debug" = : || func_append preserve_args " --debug" - - case $host in - *cygwin* | *mingw* | *pw32* | *cegcc*) - # don't eliminate duplications in $postdeps and $predeps - opt_duplicate_compiler_generated_deps=: - ;; - *) - opt_duplicate_compiler_generated_deps=$opt_preserve_dup_deps - ;; - esac - - $opt_help || { - # Sanity checks first: - func_check_version_match - - if test "$build_libtool_libs" != yes && test "$build_old_libs" != yes; then - func_fatal_configuration "not configured to build any kind of library" - fi - - # Darwin sucks - eval std_shrext=\"$shrext_cmds\" - - # Only execute mode is allowed to have -dlopen flags. - if test -n "$opt_dlopen" && test "$opt_mode" != execute; then - func_error "unrecognized option \`-dlopen'" - $ECHO "$help" 1>&2 - exit $EXIT_FAILURE - fi - - # Change the help message to a mode-specific one. - generic_help="$help" - help="Try \`$progname --help --mode=$opt_mode' for more information." - } - - - # Bail if the options were screwed - $exit_cmd $EXIT_FAILURE -} - - - - -## ----------- ## -## Main. ## -## ----------- ## - -# func_lalib_p file -# True iff FILE is a libtool `.la' library or `.lo' object file. -# This function is only a basic sanity check; it will hardly flush out -# determined imposters. -func_lalib_p () -{ - test -f "$1" && - $SED -e 4q "$1" 2>/dev/null \ - | $GREP "^# Generated by .*$PACKAGE" > /dev/null 2>&1 -} - -# func_lalib_unsafe_p file -# True iff FILE is a libtool `.la' library or `.lo' object file. -# This function implements the same check as func_lalib_p without -# resorting to external programs. To this end, it redirects stdin and -# closes it afterwards, without saving the original file descriptor. -# As a safety measure, use it only where a negative result would be -# fatal anyway. Works if `file' does not exist. -func_lalib_unsafe_p () -{ - lalib_p=no - if test -f "$1" && test -r "$1" && exec 5<&0 <"$1"; then - for lalib_p_l in 1 2 3 4 - do - read lalib_p_line - case "$lalib_p_line" in - \#\ Generated\ by\ *$PACKAGE* ) lalib_p=yes; break;; - esac - done - exec 0<&5 5<&- - fi - test "$lalib_p" = yes -} - -# func_ltwrapper_script_p file -# True iff FILE is a libtool wrapper script -# This function is only a basic sanity check; it will hardly flush out -# determined imposters. -func_ltwrapper_script_p () -{ - func_lalib_p "$1" -} - -# func_ltwrapper_executable_p file -# True iff FILE is a libtool wrapper executable -# This function is only a basic sanity check; it will hardly flush out -# determined imposters. -func_ltwrapper_executable_p () -{ - func_ltwrapper_exec_suffix= - case $1 in - *.exe) ;; - *) func_ltwrapper_exec_suffix=.exe ;; - esac - $GREP "$magic_exe" "$1$func_ltwrapper_exec_suffix" >/dev/null 2>&1 -} - -# func_ltwrapper_scriptname file -# Assumes file is an ltwrapper_executable -# uses $file to determine the appropriate filename for a -# temporary ltwrapper_script. -func_ltwrapper_scriptname () -{ - func_dirname_and_basename "$1" "" "." - func_stripname '' '.exe' "$func_basename_result" - func_ltwrapper_scriptname_result="$func_dirname_result/$objdir/${func_stripname_result}_ltshwrapper" -} - -# func_ltwrapper_p file -# True iff FILE is a libtool wrapper script or wrapper executable -# This function is only a basic sanity check; it will hardly flush out -# determined imposters. -func_ltwrapper_p () -{ - func_ltwrapper_script_p "$1" || func_ltwrapper_executable_p "$1" -} - - -# func_execute_cmds commands fail_cmd -# Execute tilde-delimited COMMANDS. -# If FAIL_CMD is given, eval that upon failure. -# FAIL_CMD may read-access the current command in variable CMD! -func_execute_cmds () -{ - $opt_debug - save_ifs=$IFS; IFS='~' - for cmd in $1; do - IFS=$save_ifs - eval cmd=\"$cmd\" - func_show_eval "$cmd" "${2-:}" - done - IFS=$save_ifs -} - - -# func_source file -# Source FILE, adding directory component if necessary. -# Note that it is not necessary on cygwin/mingw to append a dot to -# FILE even if both FILE and FILE.exe exist: automatic-append-.exe -# behavior happens only for exec(3), not for open(2)! Also, sourcing -# `FILE.' does not work on cygwin managed mounts. -func_source () -{ - $opt_debug - case $1 in - */* | *\\*) . "$1" ;; - *) . "./$1" ;; - esac -} - - -# func_resolve_sysroot PATH -# Replace a leading = in PATH with a sysroot. Store the result into -# func_resolve_sysroot_result -func_resolve_sysroot () -{ - func_resolve_sysroot_result=$1 - case $func_resolve_sysroot_result in - =*) - func_stripname '=' '' "$func_resolve_sysroot_result" - func_resolve_sysroot_result=$lt_sysroot$func_stripname_result - ;; - esac -} - -# func_replace_sysroot PATH -# If PATH begins with the sysroot, replace it with = and -# store the result into func_replace_sysroot_result. -func_replace_sysroot () -{ - case "$lt_sysroot:$1" in - ?*:"$lt_sysroot"*) - func_stripname "$lt_sysroot" '' "$1" - func_replace_sysroot_result="=$func_stripname_result" - ;; - *) - # Including no sysroot. - func_replace_sysroot_result=$1 - ;; - esac -} - -# func_infer_tag arg -# Infer tagged configuration to use if any are available and -# if one wasn't chosen via the "--tag" command line option. -# Only attempt this if the compiler in the base compile -# command doesn't match the default compiler. -# arg is usually of the form 'gcc ...' -func_infer_tag () -{ - $opt_debug - if test -n "$available_tags" && test -z "$tagname"; then - CC_quoted= - for arg in $CC; do - func_append_quoted CC_quoted "$arg" - done - CC_expanded=`func_echo_all $CC` - CC_quoted_expanded=`func_echo_all $CC_quoted` - case $@ in - # Blanks in the command may have been stripped by the calling shell, - # but not from the CC environment variable when configure was run. - " $CC "* | "$CC "* | " $CC_expanded "* | "$CC_expanded "* | \ - " $CC_quoted"* | "$CC_quoted "* | " $CC_quoted_expanded "* | "$CC_quoted_expanded "*) ;; - # Blanks at the start of $base_compile will cause this to fail - # if we don't check for them as well. - *) - for z in $available_tags; do - if $GREP "^# ### BEGIN LIBTOOL TAG CONFIG: $z$" < "$progpath" > /dev/null; then - # Evaluate the configuration. - eval "`${SED} -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$z'$/,/^# ### END LIBTOOL TAG CONFIG: '$z'$/p' < $progpath`" - CC_quoted= - for arg in $CC; do - # Double-quote args containing other shell metacharacters. - func_append_quoted CC_quoted "$arg" - done - CC_expanded=`func_echo_all $CC` - CC_quoted_expanded=`func_echo_all $CC_quoted` - case "$@ " in - " $CC "* | "$CC "* | " $CC_expanded "* | "$CC_expanded "* | \ - " $CC_quoted"* | "$CC_quoted "* | " $CC_quoted_expanded "* | "$CC_quoted_expanded "*) - # The compiler in the base compile command matches - # the one in the tagged configuration. - # Assume this is the tagged configuration we want. - tagname=$z - break - ;; - esac - fi - done - # If $tagname still isn't set, then no tagged configuration - # was found and let the user know that the "--tag" command - # line option must be used. - if test -z "$tagname"; then - func_echo "unable to infer tagged configuration" - func_fatal_error "specify a tag with \`--tag'" -# else -# func_verbose "using $tagname tagged configuration" - fi - ;; - esac - fi -} - - - -# func_write_libtool_object output_name pic_name nonpic_name -# Create a libtool object file (analogous to a ".la" file), -# but don't create it if we're doing a dry run. -func_write_libtool_object () -{ - write_libobj=${1} - if test "$build_libtool_libs" = yes; then - write_lobj=\'${2}\' - else - write_lobj=none - fi - - if test "$build_old_libs" = yes; then - write_oldobj=\'${3}\' - else - write_oldobj=none - fi - - $opt_dry_run || { - cat >${write_libobj}T </dev/null` - if test "$?" -eq 0 && test -n "${func_convert_core_file_wine_to_w32_tmp}"; then - func_convert_core_file_wine_to_w32_result=`$ECHO "$func_convert_core_file_wine_to_w32_tmp" | - $SED -e "$lt_sed_naive_backslashify"` - else - func_convert_core_file_wine_to_w32_result= - fi - fi -} -# end: func_convert_core_file_wine_to_w32 - - -# func_convert_core_path_wine_to_w32 ARG -# Helper function used by path conversion functions when $build is *nix, and -# $host is mingw, cygwin, or some other w32 environment. Relies on a correctly -# configured wine environment available, with the winepath program in $build's -# $PATH. Assumes ARG has no leading or trailing path separator characters. -# -# ARG is path to be converted from $build format to win32. -# Result is available in $func_convert_core_path_wine_to_w32_result. -# Unconvertible file (directory) names in ARG are skipped; if no directory names -# are convertible, then the result may be empty. -func_convert_core_path_wine_to_w32 () -{ - $opt_debug - # unfortunately, winepath doesn't convert paths, only file names - func_convert_core_path_wine_to_w32_result="" - if test -n "$1"; then - oldIFS=$IFS - IFS=: - for func_convert_core_path_wine_to_w32_f in $1; do - IFS=$oldIFS - func_convert_core_file_wine_to_w32 "$func_convert_core_path_wine_to_w32_f" - if test -n "$func_convert_core_file_wine_to_w32_result" ; then - if test -z "$func_convert_core_path_wine_to_w32_result"; then - func_convert_core_path_wine_to_w32_result="$func_convert_core_file_wine_to_w32_result" - else - func_append func_convert_core_path_wine_to_w32_result ";$func_convert_core_file_wine_to_w32_result" - fi - fi - done - IFS=$oldIFS - fi -} -# end: func_convert_core_path_wine_to_w32 - - -# func_cygpath ARGS... -# Wrapper around calling the cygpath program via LT_CYGPATH. This is used when -# when (1) $build is *nix and Cygwin is hosted via a wine environment; or (2) -# $build is MSYS and $host is Cygwin, or (3) $build is Cygwin. In case (1) or -# (2), returns the Cygwin file name or path in func_cygpath_result (input -# file name or path is assumed to be in w32 format, as previously converted -# from $build's *nix or MSYS format). In case (3), returns the w32 file name -# or path in func_cygpath_result (input file name or path is assumed to be in -# Cygwin format). Returns an empty string on error. -# -# ARGS are passed to cygpath, with the last one being the file name or path to -# be converted. -# -# Specify the absolute *nix (or w32) name to cygpath in the LT_CYGPATH -# environment variable; do not put it in $PATH. -func_cygpath () -{ - $opt_debug - if test -n "$LT_CYGPATH" && test -f "$LT_CYGPATH"; then - func_cygpath_result=`$LT_CYGPATH "$@" 2>/dev/null` - if test "$?" -ne 0; then - # on failure, ensure result is empty - func_cygpath_result= - fi - else - func_cygpath_result= - func_error "LT_CYGPATH is empty or specifies non-existent file: \`$LT_CYGPATH'" - fi -} -#end: func_cygpath - - -# func_convert_core_msys_to_w32 ARG -# Convert file name or path ARG from MSYS format to w32 format. Return -# result in func_convert_core_msys_to_w32_result. -func_convert_core_msys_to_w32 () -{ - $opt_debug - # awkward: cmd appends spaces to result - func_convert_core_msys_to_w32_result=`( cmd //c echo "$1" ) 2>/dev/null | - $SED -e 's/[ ]*$//' -e "$lt_sed_naive_backslashify"` -} -#end: func_convert_core_msys_to_w32 - - -# func_convert_file_check ARG1 ARG2 -# Verify that ARG1 (a file name in $build format) was converted to $host -# format in ARG2. Otherwise, emit an error message, but continue (resetting -# func_to_host_file_result to ARG1). -func_convert_file_check () -{ - $opt_debug - if test -z "$2" && test -n "$1" ; then - func_error "Could not determine host file name corresponding to" - func_error " \`$1'" - func_error "Continuing, but uninstalled executables may not work." - # Fallback: - func_to_host_file_result="$1" - fi -} -# end func_convert_file_check - - -# func_convert_path_check FROM_PATHSEP TO_PATHSEP FROM_PATH TO_PATH -# Verify that FROM_PATH (a path in $build format) was converted to $host -# format in TO_PATH. Otherwise, emit an error message, but continue, resetting -# func_to_host_file_result to a simplistic fallback value (see below). -func_convert_path_check () -{ - $opt_debug - if test -z "$4" && test -n "$3"; then - func_error "Could not determine the host path corresponding to" - func_error " \`$3'" - func_error "Continuing, but uninstalled executables may not work." - # Fallback. This is a deliberately simplistic "conversion" and - # should not be "improved". See libtool.info. - if test "x$1" != "x$2"; then - lt_replace_pathsep_chars="s|$1|$2|g" - func_to_host_path_result=`echo "$3" | - $SED -e "$lt_replace_pathsep_chars"` - else - func_to_host_path_result="$3" - fi - fi -} -# end func_convert_path_check - - -# func_convert_path_front_back_pathsep FRONTPAT BACKPAT REPL ORIG -# Modifies func_to_host_path_result by prepending REPL if ORIG matches FRONTPAT -# and appending REPL if ORIG matches BACKPAT. -func_convert_path_front_back_pathsep () -{ - $opt_debug - case $4 in - $1 ) func_to_host_path_result="$3$func_to_host_path_result" - ;; - esac - case $4 in - $2 ) func_append func_to_host_path_result "$3" - ;; - esac -} -# end func_convert_path_front_back_pathsep - - -################################################## -# $build to $host FILE NAME CONVERSION FUNCTIONS # -################################################## -# invoked via `$to_host_file_cmd ARG' -# -# In each case, ARG is the path to be converted from $build to $host format. -# Result will be available in $func_to_host_file_result. - - -# func_to_host_file ARG -# Converts the file name ARG from $build format to $host format. Return result -# in func_to_host_file_result. -func_to_host_file () -{ - $opt_debug - $to_host_file_cmd "$1" -} -# end func_to_host_file - - -# func_to_tool_file ARG LAZY -# converts the file name ARG from $build format to toolchain format. Return -# result in func_to_tool_file_result. If the conversion in use is listed -# in (the comma separated) LAZY, no conversion takes place. -func_to_tool_file () -{ - $opt_debug - case ,$2, in - *,"$to_tool_file_cmd",*) - func_to_tool_file_result=$1 - ;; - *) - $to_tool_file_cmd "$1" - func_to_tool_file_result=$func_to_host_file_result - ;; - esac -} -# end func_to_tool_file - - -# func_convert_file_noop ARG -# Copy ARG to func_to_host_file_result. -func_convert_file_noop () -{ - func_to_host_file_result="$1" -} -# end func_convert_file_noop - - -# func_convert_file_msys_to_w32 ARG -# Convert file name ARG from (mingw) MSYS to (mingw) w32 format; automatic -# conversion to w32 is not available inside the cwrapper. Returns result in -# func_to_host_file_result. -func_convert_file_msys_to_w32 () -{ - $opt_debug - func_to_host_file_result="$1" - if test -n "$1"; then - func_convert_core_msys_to_w32 "$1" - func_to_host_file_result="$func_convert_core_msys_to_w32_result" - fi - func_convert_file_check "$1" "$func_to_host_file_result" -} -# end func_convert_file_msys_to_w32 - - -# func_convert_file_cygwin_to_w32 ARG -# Convert file name ARG from Cygwin to w32 format. Returns result in -# func_to_host_file_result. -func_convert_file_cygwin_to_w32 () -{ - $opt_debug - func_to_host_file_result="$1" - if test -n "$1"; then - # because $build is cygwin, we call "the" cygpath in $PATH; no need to use - # LT_CYGPATH in this case. - func_to_host_file_result=`cygpath -m "$1"` - fi - func_convert_file_check "$1" "$func_to_host_file_result" -} -# end func_convert_file_cygwin_to_w32 - - -# func_convert_file_nix_to_w32 ARG -# Convert file name ARG from *nix to w32 format. Requires a wine environment -# and a working winepath. Returns result in func_to_host_file_result. -func_convert_file_nix_to_w32 () -{ - $opt_debug - func_to_host_file_result="$1" - if test -n "$1"; then - func_convert_core_file_wine_to_w32 "$1" - func_to_host_file_result="$func_convert_core_file_wine_to_w32_result" - fi - func_convert_file_check "$1" "$func_to_host_file_result" -} -# end func_convert_file_nix_to_w32 - - -# func_convert_file_msys_to_cygwin ARG -# Convert file name ARG from MSYS to Cygwin format. Requires LT_CYGPATH set. -# Returns result in func_to_host_file_result. -func_convert_file_msys_to_cygwin () -{ - $opt_debug - func_to_host_file_result="$1" - if test -n "$1"; then - func_convert_core_msys_to_w32 "$1" - func_cygpath -u "$func_convert_core_msys_to_w32_result" - func_to_host_file_result="$func_cygpath_result" - fi - func_convert_file_check "$1" "$func_to_host_file_result" -} -# end func_convert_file_msys_to_cygwin - - -# func_convert_file_nix_to_cygwin ARG -# Convert file name ARG from *nix to Cygwin format. Requires Cygwin installed -# in a wine environment, working winepath, and LT_CYGPATH set. Returns result -# in func_to_host_file_result. -func_convert_file_nix_to_cygwin () -{ - $opt_debug - func_to_host_file_result="$1" - if test -n "$1"; then - # convert from *nix to w32, then use cygpath to convert from w32 to cygwin. - func_convert_core_file_wine_to_w32 "$1" - func_cygpath -u "$func_convert_core_file_wine_to_w32_result" - func_to_host_file_result="$func_cygpath_result" - fi - func_convert_file_check "$1" "$func_to_host_file_result" -} -# end func_convert_file_nix_to_cygwin - - -############################################# -# $build to $host PATH CONVERSION FUNCTIONS # -############################################# -# invoked via `$to_host_path_cmd ARG' -# -# In each case, ARG is the path to be converted from $build to $host format. -# The result will be available in $func_to_host_path_result. -# -# Path separators are also converted from $build format to $host format. If -# ARG begins or ends with a path separator character, it is preserved (but -# converted to $host format) on output. -# -# All path conversion functions are named using the following convention: -# file name conversion function : func_convert_file_X_to_Y () -# path conversion function : func_convert_path_X_to_Y () -# where, for any given $build/$host combination the 'X_to_Y' value is the -# same. If conversion functions are added for new $build/$host combinations, -# the two new functions must follow this pattern, or func_init_to_host_path_cmd -# will break. - - -# func_init_to_host_path_cmd -# Ensures that function "pointer" variable $to_host_path_cmd is set to the -# appropriate value, based on the value of $to_host_file_cmd. -to_host_path_cmd= -func_init_to_host_path_cmd () -{ - $opt_debug - if test -z "$to_host_path_cmd"; then - func_stripname 'func_convert_file_' '' "$to_host_file_cmd" - to_host_path_cmd="func_convert_path_${func_stripname_result}" - fi -} - - -# func_to_host_path ARG -# Converts the path ARG from $build format to $host format. Return result -# in func_to_host_path_result. -func_to_host_path () -{ - $opt_debug - func_init_to_host_path_cmd - $to_host_path_cmd "$1" -} -# end func_to_host_path - - -# func_convert_path_noop ARG -# Copy ARG to func_to_host_path_result. -func_convert_path_noop () -{ - func_to_host_path_result="$1" -} -# end func_convert_path_noop - - -# func_convert_path_msys_to_w32 ARG -# Convert path ARG from (mingw) MSYS to (mingw) w32 format; automatic -# conversion to w32 is not available inside the cwrapper. Returns result in -# func_to_host_path_result. -func_convert_path_msys_to_w32 () -{ - $opt_debug - func_to_host_path_result="$1" - if test -n "$1"; then - # Remove leading and trailing path separator characters from ARG. MSYS - # behavior is inconsistent here; cygpath turns them into '.;' and ';.'; - # and winepath ignores them completely. - func_stripname : : "$1" - func_to_host_path_tmp1=$func_stripname_result - func_convert_core_msys_to_w32 "$func_to_host_path_tmp1" - func_to_host_path_result="$func_convert_core_msys_to_w32_result" - func_convert_path_check : ";" \ - "$func_to_host_path_tmp1" "$func_to_host_path_result" - func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" - fi -} -# end func_convert_path_msys_to_w32 - - -# func_convert_path_cygwin_to_w32 ARG -# Convert path ARG from Cygwin to w32 format. Returns result in -# func_to_host_file_result. -func_convert_path_cygwin_to_w32 () -{ - $opt_debug - func_to_host_path_result="$1" - if test -n "$1"; then - # See func_convert_path_msys_to_w32: - func_stripname : : "$1" - func_to_host_path_tmp1=$func_stripname_result - func_to_host_path_result=`cygpath -m -p "$func_to_host_path_tmp1"` - func_convert_path_check : ";" \ - "$func_to_host_path_tmp1" "$func_to_host_path_result" - func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" - fi -} -# end func_convert_path_cygwin_to_w32 - - -# func_convert_path_nix_to_w32 ARG -# Convert path ARG from *nix to w32 format. Requires a wine environment and -# a working winepath. Returns result in func_to_host_file_result. -func_convert_path_nix_to_w32 () -{ - $opt_debug - func_to_host_path_result="$1" - if test -n "$1"; then - # See func_convert_path_msys_to_w32: - func_stripname : : "$1" - func_to_host_path_tmp1=$func_stripname_result - func_convert_core_path_wine_to_w32 "$func_to_host_path_tmp1" - func_to_host_path_result="$func_convert_core_path_wine_to_w32_result" - func_convert_path_check : ";" \ - "$func_to_host_path_tmp1" "$func_to_host_path_result" - func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" - fi -} -# end func_convert_path_nix_to_w32 - - -# func_convert_path_msys_to_cygwin ARG -# Convert path ARG from MSYS to Cygwin format. Requires LT_CYGPATH set. -# Returns result in func_to_host_file_result. -func_convert_path_msys_to_cygwin () -{ - $opt_debug - func_to_host_path_result="$1" - if test -n "$1"; then - # See func_convert_path_msys_to_w32: - func_stripname : : "$1" - func_to_host_path_tmp1=$func_stripname_result - func_convert_core_msys_to_w32 "$func_to_host_path_tmp1" - func_cygpath -u -p "$func_convert_core_msys_to_w32_result" - func_to_host_path_result="$func_cygpath_result" - func_convert_path_check : : \ - "$func_to_host_path_tmp1" "$func_to_host_path_result" - func_convert_path_front_back_pathsep ":*" "*:" : "$1" - fi -} -# end func_convert_path_msys_to_cygwin - - -# func_convert_path_nix_to_cygwin ARG -# Convert path ARG from *nix to Cygwin format. Requires Cygwin installed in a -# a wine environment, working winepath, and LT_CYGPATH set. Returns result in -# func_to_host_file_result. -func_convert_path_nix_to_cygwin () -{ - $opt_debug - func_to_host_path_result="$1" - if test -n "$1"; then - # Remove leading and trailing path separator characters from - # ARG. msys behavior is inconsistent here, cygpath turns them - # into '.;' and ';.', and winepath ignores them completely. - func_stripname : : "$1" - func_to_host_path_tmp1=$func_stripname_result - func_convert_core_path_wine_to_w32 "$func_to_host_path_tmp1" - func_cygpath -u -p "$func_convert_core_path_wine_to_w32_result" - func_to_host_path_result="$func_cygpath_result" - func_convert_path_check : : \ - "$func_to_host_path_tmp1" "$func_to_host_path_result" - func_convert_path_front_back_pathsep ":*" "*:" : "$1" - fi -} -# end func_convert_path_nix_to_cygwin - - -# func_mode_compile arg... -func_mode_compile () -{ - $opt_debug - # Get the compilation command and the source file. - base_compile= - srcfile="$nonopt" # always keep a non-empty value in "srcfile" - suppress_opt=yes - suppress_output= - arg_mode=normal - libobj= - later= - pie_flag= - - for arg - do - case $arg_mode in - arg ) - # do not "continue". Instead, add this to base_compile - lastarg="$arg" - arg_mode=normal - ;; - - target ) - libobj="$arg" - arg_mode=normal - continue - ;; - - normal ) - # Accept any command-line options. - case $arg in - -o) - test -n "$libobj" && \ - func_fatal_error "you cannot specify \`-o' more than once" - arg_mode=target - continue - ;; - - -pie | -fpie | -fPIE) - func_append pie_flag " $arg" - continue - ;; - - -shared | -static | -prefer-pic | -prefer-non-pic) - func_append later " $arg" - continue - ;; - - -no-suppress) - suppress_opt=no - continue - ;; - - -Xcompiler) - arg_mode=arg # the next one goes into the "base_compile" arg list - continue # The current "srcfile" will either be retained or - ;; # replaced later. I would guess that would be a bug. - - -Wc,*) - func_stripname '-Wc,' '' "$arg" - args=$func_stripname_result - lastarg= - save_ifs="$IFS"; IFS=',' - for arg in $args; do - IFS="$save_ifs" - func_append_quoted lastarg "$arg" - done - IFS="$save_ifs" - func_stripname ' ' '' "$lastarg" - lastarg=$func_stripname_result - - # Add the arguments to base_compile. - func_append base_compile " $lastarg" - continue - ;; - - *) - # Accept the current argument as the source file. - # The previous "srcfile" becomes the current argument. - # - lastarg="$srcfile" - srcfile="$arg" - ;; - esac # case $arg - ;; - esac # case $arg_mode - - # Aesthetically quote the previous argument. - func_append_quoted base_compile "$lastarg" - done # for arg - - case $arg_mode in - arg) - func_fatal_error "you must specify an argument for -Xcompile" - ;; - target) - func_fatal_error "you must specify a target with \`-o'" - ;; - *) - # Get the name of the library object. - test -z "$libobj" && { - func_basename "$srcfile" - libobj="$func_basename_result" - } - ;; - esac - - # Recognize several different file suffixes. - # If the user specifies -o file.o, it is replaced with file.lo - case $libobj in - *.[cCFSifmso] | \ - *.ada | *.adb | *.ads | *.asm | \ - *.c++ | *.cc | *.ii | *.class | *.cpp | *.cxx | \ - *.[fF][09]? | *.for | *.java | *.obj | *.sx | *.cu | *.cup) - func_xform "$libobj" - libobj=$func_xform_result - ;; - esac - - case $libobj in - *.lo) func_lo2o "$libobj"; obj=$func_lo2o_result ;; - *) - func_fatal_error "cannot determine name of library object from \`$libobj'" - ;; - esac - - func_infer_tag $base_compile - - for arg in $later; do - case $arg in - -shared) - test "$build_libtool_libs" != yes && \ - func_fatal_configuration "can not build a shared library" - build_old_libs=no - continue - ;; - - -static) - build_libtool_libs=no - build_old_libs=yes - continue - ;; - - -prefer-pic) - pic_mode=yes - continue - ;; - - -prefer-non-pic) - pic_mode=no - continue - ;; - esac - done - - func_quote_for_eval "$libobj" - test "X$libobj" != "X$func_quote_for_eval_result" \ - && $ECHO "X$libobj" | $GREP '[]~#^*{};<>?"'"'"' &()|`$[]' \ - && func_warning "libobj name \`$libobj' may not contain shell special characters." - func_dirname_and_basename "$obj" "/" "" - objname="$func_basename_result" - xdir="$func_dirname_result" - lobj=${xdir}$objdir/$objname - - test -z "$base_compile" && \ - func_fatal_help "you must specify a compilation command" - - # Delete any leftover library objects. - if test "$build_old_libs" = yes; then - removelist="$obj $lobj $libobj ${libobj}T" - else - removelist="$lobj $libobj ${libobj}T" - fi - - # On Cygwin there's no "real" PIC flag so we must build both object types - case $host_os in - cygwin* | mingw* | pw32* | os2* | cegcc*) - pic_mode=default - ;; - esac - if test "$pic_mode" = no && test "$deplibs_check_method" != pass_all; then - # non-PIC code in shared libraries is not supported - pic_mode=default - fi - - # Calculate the filename of the output object if compiler does - # not support -o with -c - if test "$compiler_c_o" = no; then - output_obj=`$ECHO "$srcfile" | $SED 's%^.*/%%; s%\.[^.]*$%%'`.${objext} - lockfile="$output_obj.lock" - else - output_obj= - need_locks=no - lockfile= - fi - - # Lock this critical section if it is needed - # We use this script file to make the link, it avoids creating a new file - if test "$need_locks" = yes; then - until $opt_dry_run || ln "$progpath" "$lockfile" 2>/dev/null; do - func_echo "Waiting for $lockfile to be removed" - sleep 2 - done - elif test "$need_locks" = warn; then - if test -f "$lockfile"; then - $ECHO "\ -*** ERROR, $lockfile exists and contains: -`cat $lockfile 2>/dev/null` - -This indicates that another process is trying to use the same -temporary object file, and libtool could not work around it because -your compiler does not support \`-c' and \`-o' together. If you -repeat this compilation, it may succeed, by chance, but you had better -avoid parallel builds (make -j) in this platform, or get a better -compiler." - - $opt_dry_run || $RM $removelist - exit $EXIT_FAILURE - fi - func_append removelist " $output_obj" - $ECHO "$srcfile" > "$lockfile" - fi - - $opt_dry_run || $RM $removelist - func_append removelist " $lockfile" - trap '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE' 1 2 15 - - func_to_tool_file "$srcfile" func_convert_file_msys_to_w32 - srcfile=$func_to_tool_file_result - func_quote_for_eval "$srcfile" - qsrcfile=$func_quote_for_eval_result - - # Only build a PIC object if we are building libtool libraries. - if test "$build_libtool_libs" = yes; then - # Without this assignment, base_compile gets emptied. - fbsd_hideous_sh_bug=$base_compile - - if test "$pic_mode" != no; then - command="$base_compile $qsrcfile $pic_flag" - else - # Don't build PIC code - command="$base_compile $qsrcfile" - fi - - func_mkdir_p "$xdir$objdir" - - if test -z "$output_obj"; then - # Place PIC objects in $objdir - func_append command " -o $lobj" - fi - - func_show_eval_locale "$command" \ - 'test -n "$output_obj" && $RM $removelist; exit $EXIT_FAILURE' - - if test "$need_locks" = warn && - test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then - $ECHO "\ -*** ERROR, $lockfile contains: -`cat $lockfile 2>/dev/null` - -but it should contain: -$srcfile - -This indicates that another process is trying to use the same -temporary object file, and libtool could not work around it because -your compiler does not support \`-c' and \`-o' together. If you -repeat this compilation, it may succeed, by chance, but you had better -avoid parallel builds (make -j) in this platform, or get a better -compiler." - - $opt_dry_run || $RM $removelist - exit $EXIT_FAILURE - fi - - # Just move the object if needed, then go on to compile the next one - if test -n "$output_obj" && test "X$output_obj" != "X$lobj"; then - func_show_eval '$MV "$output_obj" "$lobj"' \ - 'error=$?; $opt_dry_run || $RM $removelist; exit $error' - fi - - # Allow error messages only from the first compilation. - if test "$suppress_opt" = yes; then - suppress_output=' >/dev/null 2>&1' - fi - fi - - # Only build a position-dependent object if we build old libraries. - if test "$build_old_libs" = yes; then - if test "$pic_mode" != yes; then - # Don't build PIC code - command="$base_compile $qsrcfile$pie_flag" - else - command="$base_compile $qsrcfile $pic_flag" - fi - if test "$compiler_c_o" = yes; then - func_append command " -o $obj" - fi - - # Suppress compiler output if we already did a PIC compilation. - func_append command "$suppress_output" - func_show_eval_locale "$command" \ - '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE' - - if test "$need_locks" = warn && - test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then - $ECHO "\ -*** ERROR, $lockfile contains: -`cat $lockfile 2>/dev/null` - -but it should contain: -$srcfile - -This indicates that another process is trying to use the same -temporary object file, and libtool could not work around it because -your compiler does not support \`-c' and \`-o' together. If you -repeat this compilation, it may succeed, by chance, but you had better -avoid parallel builds (make -j) in this platform, or get a better -compiler." - - $opt_dry_run || $RM $removelist - exit $EXIT_FAILURE - fi - - # Just move the object if needed - if test -n "$output_obj" && test "X$output_obj" != "X$obj"; then - func_show_eval '$MV "$output_obj" "$obj"' \ - 'error=$?; $opt_dry_run || $RM $removelist; exit $error' - fi - fi - - $opt_dry_run || { - func_write_libtool_object "$libobj" "$objdir/$objname" "$objname" - - # Unlock the critical section if it was locked - if test "$need_locks" != no; then - removelist=$lockfile - $RM "$lockfile" - fi - } - - exit $EXIT_SUCCESS -} - -$opt_help || { - test "$opt_mode" = compile && func_mode_compile ${1+"$@"} -} - -func_mode_help () -{ - # We need to display help for each of the modes. - case $opt_mode in - "") - # Generic help is extracted from the usage comments - # at the start of this file. - func_help - ;; - - clean) - $ECHO \ -"Usage: $progname [OPTION]... --mode=clean RM [RM-OPTION]... FILE... - -Remove files from the build directory. - -RM is the name of the program to use to delete files associated with each FILE -(typically \`/bin/rm'). RM-OPTIONS are options (such as \`-f') to be passed -to RM. - -If FILE is a libtool library, object or program, all the files associated -with it are deleted. Otherwise, only FILE itself is deleted using RM." - ;; - - compile) - $ECHO \ -"Usage: $progname [OPTION]... --mode=compile COMPILE-COMMAND... SOURCEFILE - -Compile a source file into a libtool library object. - -This mode accepts the following additional options: - - -o OUTPUT-FILE set the output file name to OUTPUT-FILE - -no-suppress do not suppress compiler output for multiple passes - -prefer-pic try to build PIC objects only - -prefer-non-pic try to build non-PIC objects only - -shared do not build a \`.o' file suitable for static linking - -static only build a \`.o' file suitable for static linking - -Wc,FLAG pass FLAG directly to the compiler - -COMPILE-COMMAND is a command to be used in creating a \`standard' object file -from the given SOURCEFILE. - -The output file name is determined by removing the directory component from -SOURCEFILE, then substituting the C source code suffix \`.c' with the -library object suffix, \`.lo'." - ;; - - execute) - $ECHO \ -"Usage: $progname [OPTION]... --mode=execute COMMAND [ARGS]... - -Automatically set library path, then run a program. - -This mode accepts the following additional options: - - -dlopen FILE add the directory containing FILE to the library path - -This mode sets the library path environment variable according to \`-dlopen' -flags. - -If any of the ARGS are libtool executable wrappers, then they are translated -into their corresponding uninstalled binary, and any of their required library -directories are added to the library path. - -Then, COMMAND is executed, with ARGS as arguments." - ;; - - finish) - $ECHO \ -"Usage: $progname [OPTION]... --mode=finish [LIBDIR]... - -Complete the installation of libtool libraries. - -Each LIBDIR is a directory that contains libtool libraries. - -The commands that this mode executes may require superuser privileges. Use -the \`--dry-run' option if you just want to see what would be executed." - ;; - - install) - $ECHO \ -"Usage: $progname [OPTION]... --mode=install INSTALL-COMMAND... - -Install executables or libraries. - -INSTALL-COMMAND is the installation command. The first component should be -either the \`install' or \`cp' program. - -The following components of INSTALL-COMMAND are treated specially: - - -inst-prefix-dir PREFIX-DIR Use PREFIX-DIR as a staging area for installation - -The rest of the components are interpreted as arguments to that command (only -BSD-compatible install options are recognized)." - ;; - - link) - $ECHO \ -"Usage: $progname [OPTION]... --mode=link LINK-COMMAND... - -Link object files or libraries together to form another library, or to -create an executable program. - -LINK-COMMAND is a command using the C compiler that you would use to create -a program from several object files. - -The following components of LINK-COMMAND are treated specially: - - -all-static do not do any dynamic linking at all - -avoid-version do not add a version suffix if possible - -bindir BINDIR specify path to binaries directory (for systems where - libraries must be found in the PATH setting at runtime) - -dlopen FILE \`-dlpreopen' FILE if it cannot be dlopened at runtime - -dlpreopen FILE link in FILE and add its symbols to lt_preloaded_symbols - -export-dynamic allow symbols from OUTPUT-FILE to be resolved with dlsym(3) - -export-symbols SYMFILE - try to export only the symbols listed in SYMFILE - -export-symbols-regex REGEX - try to export only the symbols matching REGEX - -LLIBDIR search LIBDIR for required installed libraries - -lNAME OUTPUT-FILE requires the installed library libNAME - -module build a library that can dlopened - -no-fast-install disable the fast-install mode - -no-install link a not-installable executable - -no-undefined declare that a library does not refer to external symbols - -o OUTPUT-FILE create OUTPUT-FILE from the specified objects - -objectlist FILE Use a list of object files found in FILE to specify objects - -precious-files-regex REGEX - don't remove output files matching REGEX - -release RELEASE specify package release information - -rpath LIBDIR the created library will eventually be installed in LIBDIR - -R[ ]LIBDIR add LIBDIR to the runtime path of programs and libraries - -shared only do dynamic linking of libtool libraries - -shrext SUFFIX override the standard shared library file extension - -static do not do any dynamic linking of uninstalled libtool libraries - -static-libtool-libs - do not do any dynamic linking of libtool libraries - -version-info CURRENT[:REVISION[:AGE]] - specify library version info [each variable defaults to 0] - -weak LIBNAME declare that the target provides the LIBNAME interface - -Wc,FLAG - -Xcompiler FLAG pass linker-specific FLAG directly to the compiler - -Wl,FLAG - -Xlinker FLAG pass linker-specific FLAG directly to the linker - -XCClinker FLAG pass link-specific FLAG to the compiler driver (CC) - -All other options (arguments beginning with \`-') are ignored. - -Every other argument is treated as a filename. Files ending in \`.la' are -treated as uninstalled libtool libraries, other files are standard or library -object files. - -If the OUTPUT-FILE ends in \`.la', then a libtool library is created, -only library objects (\`.lo' files) may be specified, and \`-rpath' is -required, except when creating a convenience library. - -If OUTPUT-FILE ends in \`.a' or \`.lib', then a standard library is created -using \`ar' and \`ranlib', or on Windows using \`lib'. - -If OUTPUT-FILE ends in \`.lo' or \`.${objext}', then a reloadable object file -is created, otherwise an executable program is created." - ;; - - uninstall) - $ECHO \ -"Usage: $progname [OPTION]... --mode=uninstall RM [RM-OPTION]... FILE... - -Remove libraries from an installation directory. - -RM is the name of the program to use to delete files associated with each FILE -(typically \`/bin/rm'). RM-OPTIONS are options (such as \`-f') to be passed -to RM. - -If FILE is a libtool library, all the files associated with it are deleted. -Otherwise, only FILE itself is deleted using RM." - ;; - - *) - func_fatal_help "invalid operation mode \`$opt_mode'" - ;; - esac - - echo - $ECHO "Try \`$progname --help' for more information about other modes." -} - -# Now that we've collected a possible --mode arg, show help if necessary -if $opt_help; then - if test "$opt_help" = :; then - func_mode_help - else - { - func_help noexit - for opt_mode in compile link execute install finish uninstall clean; do - func_mode_help - done - } | sed -n '1p; 2,$s/^Usage:/ or: /p' - { - func_help noexit - for opt_mode in compile link execute install finish uninstall clean; do - echo - func_mode_help - done - } | - sed '1d - /^When reporting/,/^Report/{ - H - d - } - $x - /information about other modes/d - /more detailed .*MODE/d - s/^Usage:.*--mode=\([^ ]*\) .*/Description of \1 mode:/' - fi - exit $? -fi - - -# func_mode_execute arg... -func_mode_execute () -{ - $opt_debug - # The first argument is the command name. - cmd="$nonopt" - test -z "$cmd" && \ - func_fatal_help "you must specify a COMMAND" - - # Handle -dlopen flags immediately. - for file in $opt_dlopen; do - test -f "$file" \ - || func_fatal_help "\`$file' is not a file" - - dir= - case $file in - *.la) - func_resolve_sysroot "$file" - file=$func_resolve_sysroot_result - - # Check to see that this really is a libtool archive. - func_lalib_unsafe_p "$file" \ - || func_fatal_help "\`$lib' is not a valid libtool archive" - - # Read the libtool library. - dlname= - library_names= - func_source "$file" - - # Skip this library if it cannot be dlopened. - if test -z "$dlname"; then - # Warn if it was a shared library. - test -n "$library_names" && \ - func_warning "\`$file' was not linked with \`-export-dynamic'" - continue - fi - - func_dirname "$file" "" "." - dir="$func_dirname_result" - - if test -f "$dir/$objdir/$dlname"; then - func_append dir "/$objdir" - else - if test ! -f "$dir/$dlname"; then - func_fatal_error "cannot find \`$dlname' in \`$dir' or \`$dir/$objdir'" - fi - fi - ;; - - *.lo) - # Just add the directory containing the .lo file. - func_dirname "$file" "" "." - dir="$func_dirname_result" - ;; - - *) - func_warning "\`-dlopen' is ignored for non-libtool libraries and objects" - continue - ;; - esac - - # Get the absolute pathname. - absdir=`cd "$dir" && pwd` - test -n "$absdir" && dir="$absdir" - - # Now add the directory to shlibpath_var. - if eval "test -z \"\$$shlibpath_var\""; then - eval "$shlibpath_var=\"\$dir\"" - else - eval "$shlibpath_var=\"\$dir:\$$shlibpath_var\"" - fi - done - - # This variable tells wrapper scripts just to set shlibpath_var - # rather than running their programs. - libtool_execute_magic="$magic" - - # Check if any of the arguments is a wrapper script. - args= - for file - do - case $file in - -* | *.la | *.lo ) ;; - *) - # Do a test to see if this is really a libtool program. - if func_ltwrapper_script_p "$file"; then - func_source "$file" - # Transform arg to wrapped name. - file="$progdir/$program" - elif func_ltwrapper_executable_p "$file"; then - func_ltwrapper_scriptname "$file" - func_source "$func_ltwrapper_scriptname_result" - # Transform arg to wrapped name. - file="$progdir/$program" - fi - ;; - esac - # Quote arguments (to preserve shell metacharacters). - func_append_quoted args "$file" - done - - if test "X$opt_dry_run" = Xfalse; then - if test -n "$shlibpath_var"; then - # Export the shlibpath_var. - eval "export $shlibpath_var" - fi - - # Restore saved environment variables - for lt_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES - do - eval "if test \"\${save_$lt_var+set}\" = set; then - $lt_var=\$save_$lt_var; export $lt_var - else - $lt_unset $lt_var - fi" - done - - # Now prepare to actually exec the command. - exec_cmd="\$cmd$args" - else - # Display what would be done. - if test -n "$shlibpath_var"; then - eval "\$ECHO \"\$shlibpath_var=\$$shlibpath_var\"" - echo "export $shlibpath_var" - fi - $ECHO "$cmd$args" - exit $EXIT_SUCCESS - fi -} - -test "$opt_mode" = execute && func_mode_execute ${1+"$@"} - - -# func_mode_finish arg... -func_mode_finish () -{ - $opt_debug - libs= - libdirs= - admincmds= - - for opt in "$nonopt" ${1+"$@"} - do - if test -d "$opt"; then - func_append libdirs " $opt" - - elif test -f "$opt"; then - if func_lalib_unsafe_p "$opt"; then - func_append libs " $opt" - else - func_warning "\`$opt' is not a valid libtool archive" - fi - - else - func_fatal_error "invalid argument \`$opt'" - fi - done - - if test -n "$libs"; then - if test -n "$lt_sysroot"; then - sysroot_regex=`$ECHO "$lt_sysroot" | $SED "$sed_make_literal_regex"` - sysroot_cmd="s/\([ ']\)$sysroot_regex/\1/g;" - else - sysroot_cmd= - fi - - # Remove sysroot references - if $opt_dry_run; then - for lib in $libs; do - echo "removing references to $lt_sysroot and \`=' prefixes from $lib" - done - else - tmpdir=`func_mktempdir` - for lib in $libs; do - sed -e "${sysroot_cmd} s/\([ ']-[LR]\)=/\1/g; s/\([ ']\)=/\1/g" $lib \ - > $tmpdir/tmp-la - mv -f $tmpdir/tmp-la $lib - done - ${RM}r "$tmpdir" - fi - fi - - if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then - for libdir in $libdirs; do - if test -n "$finish_cmds"; then - # Do each command in the finish commands. - func_execute_cmds "$finish_cmds" 'admincmds="$admincmds -'"$cmd"'"' - fi - if test -n "$finish_eval"; then - # Do the single finish_eval. - eval cmds=\"$finish_eval\" - $opt_dry_run || eval "$cmds" || func_append admincmds " - $cmds" - fi - done - fi - - # Exit here if they wanted silent mode. - $opt_silent && exit $EXIT_SUCCESS - - if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then - echo "----------------------------------------------------------------------" - echo "Libraries have been installed in:" - for libdir in $libdirs; do - $ECHO " $libdir" - done - echo - echo "If you ever happen to want to link against installed libraries" - echo "in a given directory, LIBDIR, you must either use libtool, and" - echo "specify the full pathname of the library, or use the \`-LLIBDIR'" - echo "flag during linking and do at least one of the following:" - if test -n "$shlibpath_var"; then - echo " - add LIBDIR to the \`$shlibpath_var' environment variable" - echo " during execution" - fi - if test -n "$runpath_var"; then - echo " - add LIBDIR to the \`$runpath_var' environment variable" - echo " during linking" - fi - if test -n "$hardcode_libdir_flag_spec"; then - libdir=LIBDIR - eval flag=\"$hardcode_libdir_flag_spec\" - - $ECHO " - use the \`$flag' linker flag" - fi - if test -n "$admincmds"; then - $ECHO " - have your system administrator run these commands:$admincmds" - fi - if test -f /etc/ld.so.conf; then - echo " - have your system administrator add LIBDIR to \`/etc/ld.so.conf'" - fi - echo - - echo "See any operating system documentation about shared libraries for" - case $host in - solaris2.[6789]|solaris2.1[0-9]) - echo "more information, such as the ld(1), crle(1) and ld.so(8) manual" - echo "pages." - ;; - *) - echo "more information, such as the ld(1) and ld.so(8) manual pages." - ;; - esac - echo "----------------------------------------------------------------------" - fi - exit $EXIT_SUCCESS -} - -test "$opt_mode" = finish && func_mode_finish ${1+"$@"} - - -# func_mode_install arg... -func_mode_install () -{ - $opt_debug - # There may be an optional sh(1) argument at the beginning of - # install_prog (especially on Windows NT). - if test "$nonopt" = "$SHELL" || test "$nonopt" = /bin/sh || - # Allow the use of GNU shtool's install command. - case $nonopt in *shtool*) :;; *) false;; esac; then - # Aesthetically quote it. - func_quote_for_eval "$nonopt" - install_prog="$func_quote_for_eval_result " - arg=$1 - shift - else - install_prog= - arg=$nonopt - fi - - # The real first argument should be the name of the installation program. - # Aesthetically quote it. - func_quote_for_eval "$arg" - func_append install_prog "$func_quote_for_eval_result" - install_shared_prog=$install_prog - case " $install_prog " in - *[\\\ /]cp\ *) install_cp=: ;; - *) install_cp=false ;; - esac - - # We need to accept at least all the BSD install flags. - dest= - files= - opts= - prev= - install_type= - isdir=no - stripme= - no_mode=: - for arg - do - arg2= - if test -n "$dest"; then - func_append files " $dest" - dest=$arg - continue - fi - - case $arg in - -d) isdir=yes ;; - -f) - if $install_cp; then :; else - prev=$arg - fi - ;; - -g | -m | -o) - prev=$arg - ;; - -s) - stripme=" -s" - continue - ;; - -*) - ;; - *) - # If the previous option needed an argument, then skip it. - if test -n "$prev"; then - if test "x$prev" = x-m && test -n "$install_override_mode"; then - arg2=$install_override_mode - no_mode=false - fi - prev= - else - dest=$arg - continue - fi - ;; - esac - - # Aesthetically quote the argument. - func_quote_for_eval "$arg" - func_append install_prog " $func_quote_for_eval_result" - if test -n "$arg2"; then - func_quote_for_eval "$arg2" - fi - func_append install_shared_prog " $func_quote_for_eval_result" - done - - test -z "$install_prog" && \ - func_fatal_help "you must specify an install program" - - test -n "$prev" && \ - func_fatal_help "the \`$prev' option requires an argument" - - if test -n "$install_override_mode" && $no_mode; then - if $install_cp; then :; else - func_quote_for_eval "$install_override_mode" - func_append install_shared_prog " -m $func_quote_for_eval_result" - fi - fi - - if test -z "$files"; then - if test -z "$dest"; then - func_fatal_help "no file or destination specified" - else - func_fatal_help "you must specify a destination" - fi - fi - - # Strip any trailing slash from the destination. - func_stripname '' '/' "$dest" - dest=$func_stripname_result - - # Check to see that the destination is a directory. - test -d "$dest" && isdir=yes - if test "$isdir" = yes; then - destdir="$dest" - destname= - else - func_dirname_and_basename "$dest" "" "." - destdir="$func_dirname_result" - destname="$func_basename_result" - - # Not a directory, so check to see that there is only one file specified. - set dummy $files; shift - test "$#" -gt 1 && \ - func_fatal_help "\`$dest' is not a directory" - fi - case $destdir in - [\\/]* | [A-Za-z]:[\\/]*) ;; - *) - for file in $files; do - case $file in - *.lo) ;; - *) - func_fatal_help "\`$destdir' must be an absolute directory name" - ;; - esac - done - ;; - esac - - # This variable tells wrapper scripts just to set variables rather - # than running their programs. - libtool_install_magic="$magic" - - staticlibs= - future_libdirs= - current_libdirs= - for file in $files; do - - # Do each installation. - case $file in - *.$libext) - # Do the static libraries later. - func_append staticlibs " $file" - ;; - - *.la) - func_resolve_sysroot "$file" - file=$func_resolve_sysroot_result - - # Check to see that this really is a libtool archive. - func_lalib_unsafe_p "$file" \ - || func_fatal_help "\`$file' is not a valid libtool archive" - - library_names= - old_library= - relink_command= - func_source "$file" - - # Add the libdir to current_libdirs if it is the destination. - if test "X$destdir" = "X$libdir"; then - case "$current_libdirs " in - *" $libdir "*) ;; - *) func_append current_libdirs " $libdir" ;; - esac - else - # Note the libdir as a future libdir. - case "$future_libdirs " in - *" $libdir "*) ;; - *) func_append future_libdirs " $libdir" ;; - esac - fi - - func_dirname "$file" "/" "" - dir="$func_dirname_result" - func_append dir "$objdir" - - if test -n "$relink_command"; then - # Determine the prefix the user has applied to our future dir. - inst_prefix_dir=`$ECHO "$destdir" | $SED -e "s%$libdir\$%%"` - - # Don't allow the user to place us outside of our expected - # location b/c this prevents finding dependent libraries that - # are installed to the same prefix. - # At present, this check doesn't affect windows .dll's that - # are installed into $libdir/../bin (currently, that works fine) - # but it's something to keep an eye on. - test "$inst_prefix_dir" = "$destdir" && \ - func_fatal_error "error: cannot install \`$file' to a directory not ending in $libdir" - - if test -n "$inst_prefix_dir"; then - # Stick the inst_prefix_dir data into the link command. - relink_command=`$ECHO "$relink_command" | $SED "s%@inst_prefix_dir@%-inst-prefix-dir $inst_prefix_dir%"` - else - relink_command=`$ECHO "$relink_command" | $SED "s%@inst_prefix_dir@%%"` - fi - - func_warning "relinking \`$file'" - func_show_eval "$relink_command" \ - 'func_fatal_error "error: relink \`$file'\'' with the above command before installing it"' - fi - - # See the names of the shared library. - set dummy $library_names; shift - if test -n "$1"; then - realname="$1" - shift - - srcname="$realname" - test -n "$relink_command" && srcname="$realname"T - - # Install the shared library and build the symlinks. - func_show_eval "$install_shared_prog $dir/$srcname $destdir/$realname" \ - 'exit $?' - tstripme="$stripme" - case $host_os in - cygwin* | mingw* | pw32* | cegcc*) - case $realname in - *.dll.a) - tstripme="" - ;; - esac - ;; - esac - if test -n "$tstripme" && test -n "$striplib"; then - func_show_eval "$striplib $destdir/$realname" 'exit $?' - fi - - if test "$#" -gt 0; then - # Delete the old symlinks, and create new ones. - # Try `ln -sf' first, because the `ln' binary might depend on - # the symlink we replace! Solaris /bin/ln does not understand -f, - # so we also need to try rm && ln -s. - for linkname - do - test "$linkname" != "$realname" \ - && func_show_eval "(cd $destdir && { $LN_S -f $realname $linkname || { $RM $linkname && $LN_S $realname $linkname; }; })" - done - fi - - # Do each command in the postinstall commands. - lib="$destdir/$realname" - func_execute_cmds "$postinstall_cmds" 'exit $?' - fi - - # Install the pseudo-library for information purposes. - func_basename "$file" - name="$func_basename_result" - instname="$dir/$name"i - func_show_eval "$install_prog $instname $destdir/$name" 'exit $?' - - # Maybe install the static library, too. - test -n "$old_library" && func_append staticlibs " $dir/$old_library" - ;; - - *.lo) - # Install (i.e. copy) a libtool object. - - # Figure out destination file name, if it wasn't already specified. - if test -n "$destname"; then - destfile="$destdir/$destname" - else - func_basename "$file" - destfile="$func_basename_result" - destfile="$destdir/$destfile" - fi - - # Deduce the name of the destination old-style object file. - case $destfile in - *.lo) - func_lo2o "$destfile" - staticdest=$func_lo2o_result - ;; - *.$objext) - staticdest="$destfile" - destfile= - ;; - *) - func_fatal_help "cannot copy a libtool object to \`$destfile'" - ;; - esac - - # Install the libtool object if requested. - test -n "$destfile" && \ - func_show_eval "$install_prog $file $destfile" 'exit $?' - - # Install the old object if enabled. - if test "$build_old_libs" = yes; then - # Deduce the name of the old-style object file. - func_lo2o "$file" - staticobj=$func_lo2o_result - func_show_eval "$install_prog \$staticobj \$staticdest" 'exit $?' - fi - exit $EXIT_SUCCESS - ;; - - *) - # Figure out destination file name, if it wasn't already specified. - if test -n "$destname"; then - destfile="$destdir/$destname" - else - func_basename "$file" - destfile="$func_basename_result" - destfile="$destdir/$destfile" - fi - - # If the file is missing, and there is a .exe on the end, strip it - # because it is most likely a libtool script we actually want to - # install - stripped_ext="" - case $file in - *.exe) - if test ! -f "$file"; then - func_stripname '' '.exe' "$file" - file=$func_stripname_result - stripped_ext=".exe" - fi - ;; - esac - - # Do a test to see if this is really a libtool program. - case $host in - *cygwin* | *mingw*) - if func_ltwrapper_executable_p "$file"; then - func_ltwrapper_scriptname "$file" - wrapper=$func_ltwrapper_scriptname_result - else - func_stripname '' '.exe' "$file" - wrapper=$func_stripname_result - fi - ;; - *) - wrapper=$file - ;; - esac - if func_ltwrapper_script_p "$wrapper"; then - notinst_deplibs= - relink_command= - - func_source "$wrapper" - - # Check the variables that should have been set. - test -z "$generated_by_libtool_version" && \ - func_fatal_error "invalid libtool wrapper script \`$wrapper'" - - finalize=yes - for lib in $notinst_deplibs; do - # Check to see that each library is installed. - libdir= - if test -f "$lib"; then - func_source "$lib" - fi - libfile="$libdir/"`$ECHO "$lib" | $SED 's%^.*/%%g'` ### testsuite: skip nested quoting test - if test -n "$libdir" && test ! -f "$libfile"; then - func_warning "\`$lib' has not been installed in \`$libdir'" - finalize=no - fi - done - - relink_command= - func_source "$wrapper" - - outputname= - if test "$fast_install" = no && test -n "$relink_command"; then - $opt_dry_run || { - if test "$finalize" = yes; then - tmpdir=`func_mktempdir` - func_basename "$file$stripped_ext" - file="$func_basename_result" - outputname="$tmpdir/$file" - # Replace the output file specification. - relink_command=`$ECHO "$relink_command" | $SED 's%@OUTPUT@%'"$outputname"'%g'` - - $opt_silent || { - func_quote_for_expand "$relink_command" - eval "func_echo $func_quote_for_expand_result" - } - if eval "$relink_command"; then : - else - func_error "error: relink \`$file' with the above command before installing it" - $opt_dry_run || ${RM}r "$tmpdir" - continue - fi - file="$outputname" - else - func_warning "cannot relink \`$file'" - fi - } - else - # Install the binary that we compiled earlier. - file=`$ECHO "$file$stripped_ext" | $SED "s%\([^/]*\)$%$objdir/\1%"` - fi - fi - - # remove .exe since cygwin /usr/bin/install will append another - # one anyway - case $install_prog,$host in - */usr/bin/install*,*cygwin*) - case $file:$destfile in - *.exe:*.exe) - # this is ok - ;; - *.exe:*) - destfile=$destfile.exe - ;; - *:*.exe) - func_stripname '' '.exe' "$destfile" - destfile=$func_stripname_result - ;; - esac - ;; - esac - func_show_eval "$install_prog\$stripme \$file \$destfile" 'exit $?' - $opt_dry_run || if test -n "$outputname"; then - ${RM}r "$tmpdir" - fi - ;; - esac - done - - for file in $staticlibs; do - func_basename "$file" - name="$func_basename_result" - - # Set up the ranlib parameters. - oldlib="$destdir/$name" - - func_show_eval "$install_prog \$file \$oldlib" 'exit $?' - - if test -n "$stripme" && test -n "$old_striplib"; then - func_show_eval "$old_striplib $oldlib" 'exit $?' - fi - - # Do each command in the postinstall commands. - func_execute_cmds "$old_postinstall_cmds" 'exit $?' - done - - test -n "$future_libdirs" && \ - func_warning "remember to run \`$progname --finish$future_libdirs'" - - if test -n "$current_libdirs"; then - # Maybe just do a dry run. - $opt_dry_run && current_libdirs=" -n$current_libdirs" - exec_cmd='$SHELL $progpath $preserve_args --finish$current_libdirs' - else - exit $EXIT_SUCCESS - fi -} - -test "$opt_mode" = install && func_mode_install ${1+"$@"} - - -# func_generate_dlsyms outputname originator pic_p -# Extract symbols from dlprefiles and create ${outputname}S.o with -# a dlpreopen symbol table. -func_generate_dlsyms () -{ - $opt_debug - my_outputname="$1" - my_originator="$2" - my_pic_p="${3-no}" - my_prefix=`$ECHO "$my_originator" | sed 's%[^a-zA-Z0-9]%_%g'` - my_dlsyms= - - if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then - if test -n "$NM" && test -n "$global_symbol_pipe"; then - my_dlsyms="${my_outputname}S.c" - else - func_error "not configured to extract global symbols from dlpreopened files" - fi - fi - - if test -n "$my_dlsyms"; then - case $my_dlsyms in - "") ;; - *.c) - # Discover the nlist of each of the dlfiles. - nlist="$output_objdir/${my_outputname}.nm" - - func_show_eval "$RM $nlist ${nlist}S ${nlist}T" - - # Parse the name list into a source file. - func_verbose "creating $output_objdir/$my_dlsyms" - - $opt_dry_run || $ECHO > "$output_objdir/$my_dlsyms" "\ -/* $my_dlsyms - symbol resolution table for \`$my_outputname' dlsym emulation. */ -/* Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION */ - -#ifdef __cplusplus -extern \"C\" { -#endif - -#if defined(__GNUC__) && (((__GNUC__ == 4) && (__GNUC_MINOR__ >= 4)) || (__GNUC__ > 4)) -#pragma GCC diagnostic ignored \"-Wstrict-prototypes\" -#endif - -/* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */ -#if defined(_WIN32) || defined(__CYGWIN__) || defined(_WIN32_WCE) -/* DATA imports from DLLs on WIN32 con't be const, because runtime - relocations are performed -- see ld's documentation on pseudo-relocs. */ -# define LT_DLSYM_CONST -#elif defined(__osf__) -/* This system does not cope well with relocations in const data. */ -# define LT_DLSYM_CONST -#else -# define LT_DLSYM_CONST const -#endif - -/* External symbol declarations for the compiler. */\ -" - - if test "$dlself" = yes; then - func_verbose "generating symbol list for \`$output'" - - $opt_dry_run || echo ': @PROGRAM@ ' > "$nlist" - - # Add our own program objects to the symbol list. - progfiles=`$ECHO "$objs$old_deplibs" | $SP2NL | $SED "$lo2o" | $NL2SP` - for progfile in $progfiles; do - func_to_tool_file "$progfile" func_convert_file_msys_to_w32 - func_verbose "extracting global C symbols from \`$func_to_tool_file_result'" - $opt_dry_run || eval "$NM $func_to_tool_file_result | $global_symbol_pipe >> '$nlist'" - done - - if test -n "$exclude_expsyms"; then - $opt_dry_run || { - eval '$EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T' - eval '$MV "$nlist"T "$nlist"' - } - fi - - if test -n "$export_symbols_regex"; then - $opt_dry_run || { - eval '$EGREP -e "$export_symbols_regex" "$nlist" > "$nlist"T' - eval '$MV "$nlist"T "$nlist"' - } - fi - - # Prepare the list of exported symbols - if test -z "$export_symbols"; then - export_symbols="$output_objdir/$outputname.exp" - $opt_dry_run || { - $RM $export_symbols - eval "${SED} -n -e '/^: @PROGRAM@ $/d' -e 's/^.* \(.*\)$/\1/p' "'< "$nlist" > "$export_symbols"' - case $host in - *cygwin* | *mingw* | *cegcc* ) - eval "echo EXPORTS "'> "$output_objdir/$outputname.def"' - eval 'cat "$export_symbols" >> "$output_objdir/$outputname.def"' - ;; - esac - } - else - $opt_dry_run || { - eval "${SED} -e 's/\([].[*^$]\)/\\\\\1/g' -e 's/^/ /' -e 's/$/$/'"' < "$export_symbols" > "$output_objdir/$outputname.exp"' - eval '$GREP -f "$output_objdir/$outputname.exp" < "$nlist" > "$nlist"T' - eval '$MV "$nlist"T "$nlist"' - case $host in - *cygwin* | *mingw* | *cegcc* ) - eval "echo EXPORTS "'> "$output_objdir/$outputname.def"' - eval 'cat "$nlist" >> "$output_objdir/$outputname.def"' - ;; - esac - } - fi - fi - - for dlprefile in $dlprefiles; do - func_verbose "extracting global C symbols from \`$dlprefile'" - func_basename "$dlprefile" - name="$func_basename_result" - case $host in - *cygwin* | *mingw* | *cegcc* ) - # if an import library, we need to obtain dlname - if func_win32_import_lib_p "$dlprefile"; then - func_tr_sh "$dlprefile" - eval "curr_lafile=\$libfile_$func_tr_sh_result" - dlprefile_dlbasename="" - if test -n "$curr_lafile" && func_lalib_p "$curr_lafile"; then - # Use subshell, to avoid clobbering current variable values - dlprefile_dlname=`source "$curr_lafile" && echo "$dlname"` - if test -n "$dlprefile_dlname" ; then - func_basename "$dlprefile_dlname" - dlprefile_dlbasename="$func_basename_result" - else - # no lafile. user explicitly requested -dlpreopen . - $sharedlib_from_linklib_cmd "$dlprefile" - dlprefile_dlbasename=$sharedlib_from_linklib_result - fi - fi - $opt_dry_run || { - if test -n "$dlprefile_dlbasename" ; then - eval '$ECHO ": $dlprefile_dlbasename" >> "$nlist"' - else - func_warning "Could not compute DLL name from $name" - eval '$ECHO ": $name " >> "$nlist"' - fi - func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32 - eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe | - $SED -e '/I __imp/d' -e 's/I __nm_/D /;s/_nm__//' >> '$nlist'" - } - else # not an import lib - $opt_dry_run || { - eval '$ECHO ": $name " >> "$nlist"' - func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32 - eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe >> '$nlist'" - } - fi - ;; - *) - $opt_dry_run || { - eval '$ECHO ": $name " >> "$nlist"' - func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32 - eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe >> '$nlist'" - } - ;; - esac - done - - $opt_dry_run || { - # Make sure we have at least an empty file. - test -f "$nlist" || : > "$nlist" - - if test -n "$exclude_expsyms"; then - $EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T - $MV "$nlist"T "$nlist" - fi - - # Try sorting and uniquifying the output. - if $GREP -v "^: " < "$nlist" | - if sort -k 3 /dev/null 2>&1; then - sort -k 3 - else - sort +2 - fi | - uniq > "$nlist"S; then - : - else - $GREP -v "^: " < "$nlist" > "$nlist"S - fi - - if test -f "$nlist"S; then - eval "$global_symbol_to_cdecl"' < "$nlist"S >> "$output_objdir/$my_dlsyms"' - else - echo '/* NONE */' >> "$output_objdir/$my_dlsyms" - fi - - echo >> "$output_objdir/$my_dlsyms" "\ - -/* The mapping between symbol names and symbols. */ -typedef struct { - const char *name; - void *address; -} lt_dlsymlist; -extern LT_DLSYM_CONST lt_dlsymlist -lt_${my_prefix}_LTX_preloaded_symbols[]; -LT_DLSYM_CONST lt_dlsymlist -lt_${my_prefix}_LTX_preloaded_symbols[] = -{\ - { \"$my_originator\", (void *) 0 }," - - case $need_lib_prefix in - no) - eval "$global_symbol_to_c_name_address" < "$nlist" >> "$output_objdir/$my_dlsyms" - ;; - *) - eval "$global_symbol_to_c_name_address_lib_prefix" < "$nlist" >> "$output_objdir/$my_dlsyms" - ;; - esac - echo >> "$output_objdir/$my_dlsyms" "\ - {0, (void *) 0} -}; - -/* This works around a problem in FreeBSD linker */ -#ifdef FREEBSD_WORKAROUND -static const void *lt_preloaded_setup() { - return lt_${my_prefix}_LTX_preloaded_symbols; -} -#endif - -#ifdef __cplusplus -} -#endif\ -" - } # !$opt_dry_run - - pic_flag_for_symtable= - case "$compile_command " in - *" -static "*) ;; - *) - case $host in - # compiling the symbol table file with pic_flag works around - # a FreeBSD bug that causes programs to crash when -lm is - # linked before any other PIC object. But we must not use - # pic_flag when linking with -static. The problem exists in - # FreeBSD 2.2.6 and is fixed in FreeBSD 3.1. - *-*-freebsd2*|*-*-freebsd3.0*|*-*-freebsdelf3.0*) - pic_flag_for_symtable=" $pic_flag -DFREEBSD_WORKAROUND" ;; - *-*-hpux*) - pic_flag_for_symtable=" $pic_flag" ;; - *) - if test "X$my_pic_p" != Xno; then - pic_flag_for_symtable=" $pic_flag" - fi - ;; - esac - ;; - esac - symtab_cflags= - for arg in $LTCFLAGS; do - case $arg in - -pie | -fpie | -fPIE) ;; - *) func_append symtab_cflags " $arg" ;; - esac - done - - # Now compile the dynamic symbol file. - func_show_eval '(cd $output_objdir && $LTCC$symtab_cflags -c$no_builtin_flag$pic_flag_for_symtable "$my_dlsyms")' 'exit $?' - - # Clean up the generated files. - func_show_eval '$RM "$output_objdir/$my_dlsyms" "$nlist" "${nlist}S" "${nlist}T"' - - # Transform the symbol file into the correct name. - symfileobj="$output_objdir/${my_outputname}S.$objext" - case $host in - *cygwin* | *mingw* | *cegcc* ) - if test -f "$output_objdir/$my_outputname.def"; then - compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%"` - finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%"` - else - compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$symfileobj%"` - finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$symfileobj%"` - fi - ;; - *) - compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$symfileobj%"` - finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$symfileobj%"` - ;; - esac - ;; - *) - func_fatal_error "unknown suffix for \`$my_dlsyms'" - ;; - esac - else - # We keep going just in case the user didn't refer to - # lt_preloaded_symbols. The linker will fail if global_symbol_pipe - # really was required. - - # Nullify the symbol file. - compile_command=`$ECHO "$compile_command" | $SED "s% @SYMFILE@%%"` - finalize_command=`$ECHO "$finalize_command" | $SED "s% @SYMFILE@%%"` - fi -} - -# func_win32_libid arg -# return the library type of file 'arg' -# -# Need a lot of goo to handle *both* DLLs and import libs -# Has to be a shell function in order to 'eat' the argument -# that is supplied when $file_magic_command is called. -# Despite the name, also deal with 64 bit binaries. -func_win32_libid () -{ - $opt_debug - win32_libid_type="unknown" - win32_fileres=`file -L $1 2>/dev/null` - case $win32_fileres in - *ar\ archive\ import\ library*) # definitely import - win32_libid_type="x86 archive import" - ;; - *ar\ archive*) # could be an import, or static - # Keep the egrep pattern in sync with the one in _LT_CHECK_MAGIC_METHOD. - if eval $OBJDUMP -f $1 | $SED -e '10q' 2>/dev/null | - $EGREP 'file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)' >/dev/null; then - func_to_tool_file "$1" func_convert_file_msys_to_w32 - win32_nmres=`eval $NM -f posix -A \"$func_to_tool_file_result\" | - $SED -n -e ' - 1,100{ - / I /{ - s,.*,import, - p - q - } - }'` - case $win32_nmres in - import*) win32_libid_type="x86 archive import";; - *) win32_libid_type="x86 archive static";; - esac - fi - ;; - *DLL*) - win32_libid_type="x86 DLL" - ;; - *executable*) # but shell scripts are "executable" too... - case $win32_fileres in - *MS\ Windows\ PE\ Intel*) - win32_libid_type="x86 DLL" - ;; - esac - ;; - esac - $ECHO "$win32_libid_type" -} - -# func_cygming_dll_for_implib ARG -# -# Platform-specific function to extract the -# name of the DLL associated with the specified -# import library ARG. -# Invoked by eval'ing the libtool variable -# $sharedlib_from_linklib_cmd -# Result is available in the variable -# $sharedlib_from_linklib_result -func_cygming_dll_for_implib () -{ - $opt_debug - sharedlib_from_linklib_result=`$DLLTOOL --identify-strict --identify "$1"` -} - -# func_cygming_dll_for_implib_fallback_core SECTION_NAME LIBNAMEs -# -# The is the core of a fallback implementation of a -# platform-specific function to extract the name of the -# DLL associated with the specified import library LIBNAME. -# -# SECTION_NAME is either .idata$6 or .idata$7, depending -# on the platform and compiler that created the implib. -# -# Echos the name of the DLL associated with the -# specified import library. -func_cygming_dll_for_implib_fallback_core () -{ - $opt_debug - match_literal=`$ECHO "$1" | $SED "$sed_make_literal_regex"` - $OBJDUMP -s --section "$1" "$2" 2>/dev/null | - $SED '/^Contents of section '"$match_literal"':/{ - # Place marker at beginning of archive member dllname section - s/.*/====MARK====/ - p - d - } - # These lines can sometimes be longer than 43 characters, but - # are always uninteresting - /:[ ]*file format pe[i]\{,1\}-/d - /^In archive [^:]*:/d - # Ensure marker is printed - /^====MARK====/p - # Remove all lines with less than 43 characters - /^.\{43\}/!d - # From remaining lines, remove first 43 characters - s/^.\{43\}//' | - $SED -n ' - # Join marker and all lines until next marker into a single line - /^====MARK====/ b para - H - $ b para - b - :para - x - s/\n//g - # Remove the marker - s/^====MARK====// - # Remove trailing dots and whitespace - s/[\. \t]*$// - # Print - /./p' | - # we now have a list, one entry per line, of the stringified - # contents of the appropriate section of all members of the - # archive which possess that section. Heuristic: eliminate - # all those which have a first or second character that is - # a '.' (that is, objdump's representation of an unprintable - # character.) This should work for all archives with less than - # 0x302f exports -- but will fail for DLLs whose name actually - # begins with a literal '.' or a single character followed by - # a '.'. - # - # Of those that remain, print the first one. - $SED -e '/^\./d;/^.\./d;q' -} - -# func_cygming_gnu_implib_p ARG -# This predicate returns with zero status (TRUE) if -# ARG is a GNU/binutils-style import library. Returns -# with nonzero status (FALSE) otherwise. -func_cygming_gnu_implib_p () -{ - $opt_debug - func_to_tool_file "$1" func_convert_file_msys_to_w32 - func_cygming_gnu_implib_tmp=`$NM "$func_to_tool_file_result" | eval "$global_symbol_pipe" | $EGREP ' (_head_[A-Za-z0-9_]+_[ad]l*|[A-Za-z0-9_]+_[ad]l*_iname)$'` - test -n "$func_cygming_gnu_implib_tmp" -} - -# func_cygming_ms_implib_p ARG -# This predicate returns with zero status (TRUE) if -# ARG is an MS-style import library. Returns -# with nonzero status (FALSE) otherwise. -func_cygming_ms_implib_p () -{ - $opt_debug - func_to_tool_file "$1" func_convert_file_msys_to_w32 - func_cygming_ms_implib_tmp=`$NM "$func_to_tool_file_result" | eval "$global_symbol_pipe" | $GREP '_NULL_IMPORT_DESCRIPTOR'` - test -n "$func_cygming_ms_implib_tmp" -} - -# func_cygming_dll_for_implib_fallback ARG -# Platform-specific function to extract the -# name of the DLL associated with the specified -# import library ARG. -# -# This fallback implementation is for use when $DLLTOOL -# does not support the --identify-strict option. -# Invoked by eval'ing the libtool variable -# $sharedlib_from_linklib_cmd -# Result is available in the variable -# $sharedlib_from_linklib_result -func_cygming_dll_for_implib_fallback () -{ - $opt_debug - if func_cygming_gnu_implib_p "$1" ; then - # binutils import library - sharedlib_from_linklib_result=`func_cygming_dll_for_implib_fallback_core '.idata$7' "$1"` - elif func_cygming_ms_implib_p "$1" ; then - # ms-generated import library - sharedlib_from_linklib_result=`func_cygming_dll_for_implib_fallback_core '.idata$6' "$1"` - else - # unknown - sharedlib_from_linklib_result="" - fi -} - - -# func_extract_an_archive dir oldlib -func_extract_an_archive () -{ - $opt_debug - f_ex_an_ar_dir="$1"; shift - f_ex_an_ar_oldlib="$1" - if test "$lock_old_archive_extraction" = yes; then - lockfile=$f_ex_an_ar_oldlib.lock - until $opt_dry_run || ln "$progpath" "$lockfile" 2>/dev/null; do - func_echo "Waiting for $lockfile to be removed" - sleep 2 - done - fi - func_show_eval "(cd \$f_ex_an_ar_dir && $AR x \"\$f_ex_an_ar_oldlib\")" \ - 'stat=$?; rm -f "$lockfile"; exit $stat' - if test "$lock_old_archive_extraction" = yes; then - $opt_dry_run || rm -f "$lockfile" - fi - if ($AR t "$f_ex_an_ar_oldlib" | sort | sort -uc >/dev/null 2>&1); then - : - else - func_fatal_error "object name conflicts in archive: $f_ex_an_ar_dir/$f_ex_an_ar_oldlib" - fi -} - - -# func_extract_archives gentop oldlib ... -func_extract_archives () -{ - $opt_debug - my_gentop="$1"; shift - my_oldlibs=${1+"$@"} - my_oldobjs="" - my_xlib="" - my_xabs="" - my_xdir="" - - for my_xlib in $my_oldlibs; do - # Extract the objects. - case $my_xlib in - [\\/]* | [A-Za-z]:[\\/]*) my_xabs="$my_xlib" ;; - *) my_xabs=`pwd`"/$my_xlib" ;; - esac - func_basename "$my_xlib" - my_xlib="$func_basename_result" - my_xlib_u=$my_xlib - while :; do - case " $extracted_archives " in - *" $my_xlib_u "*) - func_arith $extracted_serial + 1 - extracted_serial=$func_arith_result - my_xlib_u=lt$extracted_serial-$my_xlib ;; - *) break ;; - esac - done - extracted_archives="$extracted_archives $my_xlib_u" - my_xdir="$my_gentop/$my_xlib_u" - - func_mkdir_p "$my_xdir" - - case $host in - *-darwin*) - func_verbose "Extracting $my_xabs" - # Do not bother doing anything if just a dry run - $opt_dry_run || { - darwin_orig_dir=`pwd` - cd $my_xdir || exit $? - darwin_archive=$my_xabs - darwin_curdir=`pwd` - darwin_base_archive=`basename "$darwin_archive"` - darwin_arches=`$LIPO -info "$darwin_archive" 2>/dev/null | $GREP Architectures 2>/dev/null || true` - if test -n "$darwin_arches"; then - darwin_arches=`$ECHO "$darwin_arches" | $SED -e 's/.*are://'` - darwin_arch= - func_verbose "$darwin_base_archive has multiple architectures $darwin_arches" - for darwin_arch in $darwin_arches ; do - func_mkdir_p "unfat-$$/${darwin_base_archive}-${darwin_arch}" - $LIPO -thin $darwin_arch -output "unfat-$$/${darwin_base_archive}-${darwin_arch}/${darwin_base_archive}" "${darwin_archive}" - cd "unfat-$$/${darwin_base_archive}-${darwin_arch}" - func_extract_an_archive "`pwd`" "${darwin_base_archive}" - cd "$darwin_curdir" - $RM "unfat-$$/${darwin_base_archive}-${darwin_arch}/${darwin_base_archive}" - done # $darwin_arches - ## Okay now we've a bunch of thin objects, gotta fatten them up :) - darwin_filelist=`find unfat-$$ -type f -name \*.o -print -o -name \*.lo -print | $SED -e "$basename" | sort -u` - darwin_file= - darwin_files= - for darwin_file in $darwin_filelist; do - darwin_files=`find unfat-$$ -name $darwin_file -print | sort | $NL2SP` - $LIPO -create -output "$darwin_file" $darwin_files - done # $darwin_filelist - $RM -rf unfat-$$ - cd "$darwin_orig_dir" - else - cd $darwin_orig_dir - func_extract_an_archive "$my_xdir" "$my_xabs" - fi # $darwin_arches - } # !$opt_dry_run - ;; - *) - func_extract_an_archive "$my_xdir" "$my_xabs" - ;; - esac - my_oldobjs="$my_oldobjs "`find $my_xdir -name \*.$objext -print -o -name \*.lo -print | sort | $NL2SP` - done - - func_extract_archives_result="$my_oldobjs" -} - - -# func_emit_wrapper [arg=no] -# -# Emit a libtool wrapper script on stdout. -# Don't directly open a file because we may want to -# incorporate the script contents within a cygwin/mingw -# wrapper executable. Must ONLY be called from within -# func_mode_link because it depends on a number of variables -# set therein. -# -# ARG is the value that the WRAPPER_SCRIPT_BELONGS_IN_OBJDIR -# variable will take. If 'yes', then the emitted script -# will assume that the directory in which it is stored is -# the $objdir directory. This is a cygwin/mingw-specific -# behavior. -func_emit_wrapper () -{ - func_emit_wrapper_arg1=${1-no} - - $ECHO "\ -#! $SHELL - -# $output - temporary wrapper script for $objdir/$outputname -# Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION -# -# The $output program cannot be directly executed until all the libtool -# libraries that it depends on are installed. -# -# This wrapper script should never be moved out of the build directory. -# If it is, it will not operate correctly. - -# Sed substitution that helps us do robust quoting. It backslashifies -# metacharacters that are still active within double-quoted strings. -sed_quote_subst='$sed_quote_subst' - -# Be Bourne compatible -if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then - emulate sh - NULLCMD=: - # Zsh 3.x and 4.x performs word splitting on \${1+\"\$@\"}, which - # is contrary to our usage. Disable this feature. - alias -g '\${1+\"\$@\"}'='\"\$@\"' - setopt NO_GLOB_SUBST -else - case \`(set -o) 2>/dev/null\` in *posix*) set -o posix;; esac -fi -BIN_SH=xpg4; export BIN_SH # for Tru64 -DUALCASE=1; export DUALCASE # for MKS sh - -# The HP-UX ksh and POSIX shell print the target directory to stdout -# if CDPATH is set. -(unset CDPATH) >/dev/null 2>&1 && unset CDPATH - -relink_command=\"$relink_command\" - -# This environment variable determines our operation mode. -if test \"\$libtool_install_magic\" = \"$magic\"; then - # install mode needs the following variables: - generated_by_libtool_version='$macro_version' - notinst_deplibs='$notinst_deplibs' -else - # When we are sourced in execute mode, \$file and \$ECHO are already set. - if test \"\$libtool_execute_magic\" != \"$magic\"; then - file=\"\$0\"" - - qECHO=`$ECHO "$ECHO" | $SED "$sed_quote_subst"` - $ECHO "\ - -# A function that is used when there is no print builtin or printf. -func_fallback_echo () -{ - eval 'cat <<_LTECHO_EOF -\$1 -_LTECHO_EOF' -} - ECHO=\"$qECHO\" - fi - -# Very basic option parsing. These options are (a) specific to -# the libtool wrapper, (b) are identical between the wrapper -# /script/ and the wrapper /executable/ which is used only on -# windows platforms, and (c) all begin with the string "--lt-" -# (application programs are unlikely to have options which match -# this pattern). -# -# There are only two supported options: --lt-debug and -# --lt-dump-script. There is, deliberately, no --lt-help. -# -# The first argument to this parsing function should be the -# script's $0 value, followed by "$@". -lt_option_debug= -func_parse_lt_options () -{ - lt_script_arg0=\$0 - shift - for lt_opt - do - case \"\$lt_opt\" in - --lt-debug) lt_option_debug=1 ;; - --lt-dump-script) - lt_dump_D=\`\$ECHO \"X\$lt_script_arg0\" | $SED -e 's/^X//' -e 's%/[^/]*$%%'\` - test \"X\$lt_dump_D\" = \"X\$lt_script_arg0\" && lt_dump_D=. - lt_dump_F=\`\$ECHO \"X\$lt_script_arg0\" | $SED -e 's/^X//' -e 's%^.*/%%'\` - cat \"\$lt_dump_D/\$lt_dump_F\" - exit 0 - ;; - --lt-*) - \$ECHO \"Unrecognized --lt- option: '\$lt_opt'\" 1>&2 - exit 1 - ;; - esac - done - - # Print the debug banner immediately: - if test -n \"\$lt_option_debug\"; then - echo \"${outputname}:${output}:\${LINENO}: libtool wrapper (GNU $PACKAGE$TIMESTAMP) $VERSION\" 1>&2 - fi -} - -# Used when --lt-debug. Prints its arguments to stdout -# (redirection is the responsibility of the caller) -func_lt_dump_args () -{ - lt_dump_args_N=1; - for lt_arg - do - \$ECHO \"${outputname}:${output}:\${LINENO}: newargv[\$lt_dump_args_N]: \$lt_arg\" - lt_dump_args_N=\`expr \$lt_dump_args_N + 1\` - done -} - -# Core function for launching the target application -func_exec_program_core () -{ -" - case $host in - # Backslashes separate directories on plain windows - *-*-mingw | *-*-os2* | *-cegcc*) - $ECHO "\ - if test -n \"\$lt_option_debug\"; then - \$ECHO \"${outputname}:${output}:\${LINENO}: newargv[0]: \$progdir\\\\\$program\" 1>&2 - func_lt_dump_args \${1+\"\$@\"} 1>&2 - fi - exec \"\$progdir\\\\\$program\" \${1+\"\$@\"} -" - ;; - - *) - $ECHO "\ - if test -n \"\$lt_option_debug\"; then - \$ECHO \"${outputname}:${output}:\${LINENO}: newargv[0]: \$progdir/\$program\" 1>&2 - func_lt_dump_args \${1+\"\$@\"} 1>&2 - fi - exec \"\$progdir/\$program\" \${1+\"\$@\"} -" - ;; - esac - $ECHO "\ - \$ECHO \"\$0: cannot exec \$program \$*\" 1>&2 - exit 1 -} - -# A function to encapsulate launching the target application -# Strips options in the --lt-* namespace from \$@ and -# launches target application with the remaining arguments. -func_exec_program () -{ - for lt_wr_arg - do - case \$lt_wr_arg in - --lt-*) ;; - *) set x \"\$@\" \"\$lt_wr_arg\"; shift;; - esac - shift - done - func_exec_program_core \${1+\"\$@\"} -} - - # Parse options - func_parse_lt_options \"\$0\" \${1+\"\$@\"} - - # Find the directory that this script lives in. - thisdir=\`\$ECHO \"\$file\" | $SED 's%/[^/]*$%%'\` - test \"x\$thisdir\" = \"x\$file\" && thisdir=. - - # Follow symbolic links until we get to the real thisdir. - file=\`ls -ld \"\$file\" | $SED -n 's/.*-> //p'\` - while test -n \"\$file\"; do - destdir=\`\$ECHO \"\$file\" | $SED 's%/[^/]*\$%%'\` - - # If there was a directory component, then change thisdir. - if test \"x\$destdir\" != \"x\$file\"; then - case \"\$destdir\" in - [\\\\/]* | [A-Za-z]:[\\\\/]*) thisdir=\"\$destdir\" ;; - *) thisdir=\"\$thisdir/\$destdir\" ;; - esac - fi - - file=\`\$ECHO \"\$file\" | $SED 's%^.*/%%'\` - file=\`ls -ld \"\$thisdir/\$file\" | $SED -n 's/.*-> //p'\` - done - - # Usually 'no', except on cygwin/mingw when embedded into - # the cwrapper. - WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=$func_emit_wrapper_arg1 - if test \"\$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR\" = \"yes\"; then - # special case for '.' - if test \"\$thisdir\" = \".\"; then - thisdir=\`pwd\` - fi - # remove .libs from thisdir - case \"\$thisdir\" in - *[\\\\/]$objdir ) thisdir=\`\$ECHO \"\$thisdir\" | $SED 's%[\\\\/][^\\\\/]*$%%'\` ;; - $objdir ) thisdir=. ;; - esac - fi - - # Try to get the absolute directory name. - absdir=\`cd \"\$thisdir\" && pwd\` - test -n \"\$absdir\" && thisdir=\"\$absdir\" -" - - if test "$fast_install" = yes; then - $ECHO "\ - program=lt-'$outputname'$exeext - progdir=\"\$thisdir/$objdir\" - - if test ! -f \"\$progdir/\$program\" || - { file=\`ls -1dt \"\$progdir/\$program\" \"\$progdir/../\$program\" 2>/dev/null | ${SED} 1q\`; \\ - test \"X\$file\" != \"X\$progdir/\$program\"; }; then - - file=\"\$\$-\$program\" - - if test ! -d \"\$progdir\"; then - $MKDIR \"\$progdir\" - else - $RM \"\$progdir/\$file\" - fi" - - $ECHO "\ - - # relink executable if necessary - if test -n \"\$relink_command\"; then - if relink_command_output=\`eval \$relink_command 2>&1\`; then : - else - $ECHO \"\$relink_command_output\" >&2 - $RM \"\$progdir/\$file\" - exit 1 - fi - fi - - $MV \"\$progdir/\$file\" \"\$progdir/\$program\" 2>/dev/null || - { $RM \"\$progdir/\$program\"; - $MV \"\$progdir/\$file\" \"\$progdir/\$program\"; } - $RM \"\$progdir/\$file\" - fi" - else - $ECHO "\ - program='$outputname' - progdir=\"\$thisdir/$objdir\" -" - fi - - $ECHO "\ - - if test -f \"\$progdir/\$program\"; then" - - # fixup the dll searchpath if we need to. - # - # Fix the DLL searchpath if we need to. Do this before prepending - # to shlibpath, because on Windows, both are PATH and uninstalled - # libraries must come first. - if test -n "$dllsearchpath"; then - $ECHO "\ - # Add the dll search path components to the executable PATH - PATH=$dllsearchpath:\$PATH -" - fi - - # Export our shlibpath_var if we have one. - if test "$shlibpath_overrides_runpath" = yes && test -n "$shlibpath_var" && test -n "$temp_rpath"; then - $ECHO "\ - # Add our own library path to $shlibpath_var - $shlibpath_var=\"$temp_rpath\$$shlibpath_var\" - - # Some systems cannot cope with colon-terminated $shlibpath_var - # The second colon is a workaround for a bug in BeOS R4 sed - $shlibpath_var=\`\$ECHO \"\$$shlibpath_var\" | $SED 's/::*\$//'\` - - export $shlibpath_var -" - fi - - $ECHO "\ - if test \"\$libtool_execute_magic\" != \"$magic\"; then - # Run the actual program with our arguments. - func_exec_program \${1+\"\$@\"} - fi - else - # The program doesn't exist. - \$ECHO \"\$0: error: \\\`\$progdir/\$program' does not exist\" 1>&2 - \$ECHO \"This script is just a wrapper for \$program.\" 1>&2 - \$ECHO \"See the $PACKAGE documentation for more information.\" 1>&2 - exit 1 - fi -fi\ -" -} - - -# func_emit_cwrapperexe_src -# emit the source code for a wrapper executable on stdout -# Must ONLY be called from within func_mode_link because -# it depends on a number of variable set therein. -func_emit_cwrapperexe_src () -{ - cat < -#include -#ifdef _MSC_VER -# include -# include -# include -#else -# include -# include -# ifdef __CYGWIN__ -# include -# endif -#endif -#include -#include -#include -#include -#include -#include -#include -#include - -/* declarations of non-ANSI functions */ -#if defined(__MINGW32__) -# ifdef __STRICT_ANSI__ -int _putenv (const char *); -# endif -#elif defined(__CYGWIN__) -# ifdef __STRICT_ANSI__ -char *realpath (const char *, char *); -int putenv (char *); -int setenv (const char *, const char *, int); -# endif -/* #elif defined (other platforms) ... */ -#endif - -/* portability defines, excluding path handling macros */ -#if defined(_MSC_VER) -# define setmode _setmode -# define stat _stat -# define chmod _chmod -# define getcwd _getcwd -# define putenv _putenv -# define S_IXUSR _S_IEXEC -# ifndef _INTPTR_T_DEFINED -# define _INTPTR_T_DEFINED -# define intptr_t int -# endif -#elif defined(__MINGW32__) -# define setmode _setmode -# define stat _stat -# define chmod _chmod -# define getcwd _getcwd -# define putenv _putenv -#elif defined(__CYGWIN__) -# define HAVE_SETENV -# define FOPEN_WB "wb" -/* #elif defined (other platforms) ... */ -#endif - -#if defined(PATH_MAX) -# define LT_PATHMAX PATH_MAX -#elif defined(MAXPATHLEN) -# define LT_PATHMAX MAXPATHLEN -#else -# define LT_PATHMAX 1024 -#endif - -#ifndef S_IXOTH -# define S_IXOTH 0 -#endif -#ifndef S_IXGRP -# define S_IXGRP 0 -#endif - -/* path handling portability macros */ -#ifndef DIR_SEPARATOR -# define DIR_SEPARATOR '/' -# define PATH_SEPARATOR ':' -#endif - -#if defined (_WIN32) || defined (__MSDOS__) || defined (__DJGPP__) || \ - defined (__OS2__) -# define HAVE_DOS_BASED_FILE_SYSTEM -# define FOPEN_WB "wb" -# ifndef DIR_SEPARATOR_2 -# define DIR_SEPARATOR_2 '\\' -# endif -# ifndef PATH_SEPARATOR_2 -# define PATH_SEPARATOR_2 ';' -# endif -#endif - -#ifndef DIR_SEPARATOR_2 -# define IS_DIR_SEPARATOR(ch) ((ch) == DIR_SEPARATOR) -#else /* DIR_SEPARATOR_2 */ -# define IS_DIR_SEPARATOR(ch) \ - (((ch) == DIR_SEPARATOR) || ((ch) == DIR_SEPARATOR_2)) -#endif /* DIR_SEPARATOR_2 */ - -#ifndef PATH_SEPARATOR_2 -# define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR) -#else /* PATH_SEPARATOR_2 */ -# define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR_2) -#endif /* PATH_SEPARATOR_2 */ - -#ifndef FOPEN_WB -# define FOPEN_WB "w" -#endif -#ifndef _O_BINARY -# define _O_BINARY 0 -#endif - -#define XMALLOC(type, num) ((type *) xmalloc ((num) * sizeof(type))) -#define XFREE(stale) do { \ - if (stale) { free ((void *) stale); stale = 0; } \ -} while (0) - -#if defined(LT_DEBUGWRAPPER) -static int lt_debug = 1; -#else -static int lt_debug = 0; -#endif - -const char *program_name = "libtool-wrapper"; /* in case xstrdup fails */ - -void *xmalloc (size_t num); -char *xstrdup (const char *string); -const char *base_name (const char *name); -char *find_executable (const char *wrapper); -char *chase_symlinks (const char *pathspec); -int make_executable (const char *path); -int check_executable (const char *path); -char *strendzap (char *str, const char *pat); -void lt_debugprintf (const char *file, int line, const char *fmt, ...); -void lt_fatal (const char *file, int line, const char *message, ...); -static const char *nonnull (const char *s); -static const char *nonempty (const char *s); -void lt_setenv (const char *name, const char *value); -char *lt_extend_str (const char *orig_value, const char *add, int to_end); -void lt_update_exe_path (const char *name, const char *value); -void lt_update_lib_path (const char *name, const char *value); -char **prepare_spawn (char **argv); -void lt_dump_script (FILE *f); -EOF - - cat <= 0) - && (st.st_mode & (S_IXUSR | S_IXGRP | S_IXOTH))) - return 1; - else - return 0; -} - -int -make_executable (const char *path) -{ - int rval = 0; - struct stat st; - - lt_debugprintf (__FILE__, __LINE__, "(make_executable): %s\n", - nonempty (path)); - if ((!path) || (!*path)) - return 0; - - if (stat (path, &st) >= 0) - { - rval = chmod (path, st.st_mode | S_IXOTH | S_IXGRP | S_IXUSR); - } - return rval; -} - -/* Searches for the full path of the wrapper. Returns - newly allocated full path name if found, NULL otherwise - Does not chase symlinks, even on platforms that support them. -*/ -char * -find_executable (const char *wrapper) -{ - int has_slash = 0; - const char *p; - const char *p_next; - /* static buffer for getcwd */ - char tmp[LT_PATHMAX + 1]; - int tmp_len; - char *concat_name; - - lt_debugprintf (__FILE__, __LINE__, "(find_executable): %s\n", - nonempty (wrapper)); - - if ((wrapper == NULL) || (*wrapper == '\0')) - return NULL; - - /* Absolute path? */ -#if defined (HAVE_DOS_BASED_FILE_SYSTEM) - if (isalpha ((unsigned char) wrapper[0]) && wrapper[1] == ':') - { - concat_name = xstrdup (wrapper); - if (check_executable (concat_name)) - return concat_name; - XFREE (concat_name); - } - else - { -#endif - if (IS_DIR_SEPARATOR (wrapper[0])) - { - concat_name = xstrdup (wrapper); - if (check_executable (concat_name)) - return concat_name; - XFREE (concat_name); - } -#if defined (HAVE_DOS_BASED_FILE_SYSTEM) - } -#endif - - for (p = wrapper; *p; p++) - if (*p == '/') - { - has_slash = 1; - break; - } - if (!has_slash) - { - /* no slashes; search PATH */ - const char *path = getenv ("PATH"); - if (path != NULL) - { - for (p = path; *p; p = p_next) - { - const char *q; - size_t p_len; - for (q = p; *q; q++) - if (IS_PATH_SEPARATOR (*q)) - break; - p_len = q - p; - p_next = (*q == '\0' ? q : q + 1); - if (p_len == 0) - { - /* empty path: current directory */ - if (getcwd (tmp, LT_PATHMAX) == NULL) - lt_fatal (__FILE__, __LINE__, "getcwd failed: %s", - nonnull (strerror (errno))); - tmp_len = strlen (tmp); - concat_name = - XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1); - memcpy (concat_name, tmp, tmp_len); - concat_name[tmp_len] = '/'; - strcpy (concat_name + tmp_len + 1, wrapper); - } - else - { - concat_name = - XMALLOC (char, p_len + 1 + strlen (wrapper) + 1); - memcpy (concat_name, p, p_len); - concat_name[p_len] = '/'; - strcpy (concat_name + p_len + 1, wrapper); - } - if (check_executable (concat_name)) - return concat_name; - XFREE (concat_name); - } - } - /* not found in PATH; assume curdir */ - } - /* Relative path | not found in path: prepend cwd */ - if (getcwd (tmp, LT_PATHMAX) == NULL) - lt_fatal (__FILE__, __LINE__, "getcwd failed: %s", - nonnull (strerror (errno))); - tmp_len = strlen (tmp); - concat_name = XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1); - memcpy (concat_name, tmp, tmp_len); - concat_name[tmp_len] = '/'; - strcpy (concat_name + tmp_len + 1, wrapper); - - if (check_executable (concat_name)) - return concat_name; - XFREE (concat_name); - return NULL; -} - -char * -chase_symlinks (const char *pathspec) -{ -#ifndef S_ISLNK - return xstrdup (pathspec); -#else - char buf[LT_PATHMAX]; - struct stat s; - char *tmp_pathspec = xstrdup (pathspec); - char *p; - int has_symlinks = 0; - while (strlen (tmp_pathspec) && !has_symlinks) - { - lt_debugprintf (__FILE__, __LINE__, - "checking path component for symlinks: %s\n", - tmp_pathspec); - if (lstat (tmp_pathspec, &s) == 0) - { - if (S_ISLNK (s.st_mode) != 0) - { - has_symlinks = 1; - break; - } - - /* search backwards for last DIR_SEPARATOR */ - p = tmp_pathspec + strlen (tmp_pathspec) - 1; - while ((p > tmp_pathspec) && (!IS_DIR_SEPARATOR (*p))) - p--; - if ((p == tmp_pathspec) && (!IS_DIR_SEPARATOR (*p))) - { - /* no more DIR_SEPARATORS left */ - break; - } - *p = '\0'; - } - else - { - lt_fatal (__FILE__, __LINE__, - "error accessing file \"%s\": %s", - tmp_pathspec, nonnull (strerror (errno))); - } - } - XFREE (tmp_pathspec); - - if (!has_symlinks) - { - return xstrdup (pathspec); - } - - tmp_pathspec = realpath (pathspec, buf); - if (tmp_pathspec == 0) - { - lt_fatal (__FILE__, __LINE__, - "could not follow symlinks for %s", pathspec); - } - return xstrdup (tmp_pathspec); -#endif -} - -char * -strendzap (char *str, const char *pat) -{ - size_t len, patlen; - - assert (str != NULL); - assert (pat != NULL); - - len = strlen (str); - patlen = strlen (pat); - - if (patlen <= len) - { - str += len - patlen; - if (strcmp (str, pat) == 0) - *str = '\0'; - } - return str; -} - -void -lt_debugprintf (const char *file, int line, const char *fmt, ...) -{ - va_list args; - if (lt_debug) - { - (void) fprintf (stderr, "%s:%s:%d: ", program_name, file, line); - va_start (args, fmt); - (void) vfprintf (stderr, fmt, args); - va_end (args); - } -} - -static void -lt_error_core (int exit_status, const char *file, - int line, const char *mode, - const char *message, va_list ap) -{ - fprintf (stderr, "%s:%s:%d: %s: ", program_name, file, line, mode); - vfprintf (stderr, message, ap); - fprintf (stderr, ".\n"); - - if (exit_status >= 0) - exit (exit_status); -} - -void -lt_fatal (const char *file, int line, const char *message, ...) -{ - va_list ap; - va_start (ap, message); - lt_error_core (EXIT_FAILURE, file, line, "FATAL", message, ap); - va_end (ap); -} - -static const char * -nonnull (const char *s) -{ - return s ? s : "(null)"; -} - -static const char * -nonempty (const char *s) -{ - return (s && !*s) ? "(empty)" : nonnull (s); -} - -void -lt_setenv (const char *name, const char *value) -{ - lt_debugprintf (__FILE__, __LINE__, - "(lt_setenv) setting '%s' to '%s'\n", - nonnull (name), nonnull (value)); - { -#ifdef HAVE_SETENV - /* always make a copy, for consistency with !HAVE_SETENV */ - char *str = xstrdup (value); - setenv (name, str, 1); -#else - int len = strlen (name) + 1 + strlen (value) + 1; - char *str = XMALLOC (char, len); - sprintf (str, "%s=%s", name, value); - if (putenv (str) != EXIT_SUCCESS) - { - XFREE (str); - } -#endif - } -} - -char * -lt_extend_str (const char *orig_value, const char *add, int to_end) -{ - char *new_value; - if (orig_value && *orig_value) - { - int orig_value_len = strlen (orig_value); - int add_len = strlen (add); - new_value = XMALLOC (char, add_len + orig_value_len + 1); - if (to_end) - { - strcpy (new_value, orig_value); - strcpy (new_value + orig_value_len, add); - } - else - { - strcpy (new_value, add); - strcpy (new_value + add_len, orig_value); - } - } - else - { - new_value = xstrdup (add); - } - return new_value; -} - -void -lt_update_exe_path (const char *name, const char *value) -{ - lt_debugprintf (__FILE__, __LINE__, - "(lt_update_exe_path) modifying '%s' by prepending '%s'\n", - nonnull (name), nonnull (value)); - - if (name && *name && value && *value) - { - char *new_value = lt_extend_str (getenv (name), value, 0); - /* some systems can't cope with a ':'-terminated path #' */ - int len = strlen (new_value); - while (((len = strlen (new_value)) > 0) && IS_PATH_SEPARATOR (new_value[len-1])) - { - new_value[len-1] = '\0'; - } - lt_setenv (name, new_value); - XFREE (new_value); - } -} - -void -lt_update_lib_path (const char *name, const char *value) -{ - lt_debugprintf (__FILE__, __LINE__, - "(lt_update_lib_path) modifying '%s' by prepending '%s'\n", - nonnull (name), nonnull (value)); - - if (name && *name && value && *value) - { - char *new_value = lt_extend_str (getenv (name), value, 0); - lt_setenv (name, new_value); - XFREE (new_value); - } -} - -EOF - case $host_os in - mingw*) - cat <<"EOF" - -/* Prepares an argument vector before calling spawn(). - Note that spawn() does not by itself call the command interpreter - (getenv ("COMSPEC") != NULL ? getenv ("COMSPEC") : - ({ OSVERSIONINFO v; v.dwOSVersionInfoSize = sizeof(OSVERSIONINFO); - GetVersionEx(&v); - v.dwPlatformId == VER_PLATFORM_WIN32_NT; - }) ? "cmd.exe" : "command.com"). - Instead it simply concatenates the arguments, separated by ' ', and calls - CreateProcess(). We must quote the arguments since Win32 CreateProcess() - interprets characters like ' ', '\t', '\\', '"' (but not '<' and '>') in a - special way: - - Space and tab are interpreted as delimiters. They are not treated as - delimiters if they are surrounded by double quotes: "...". - - Unescaped double quotes are removed from the input. Their only effect is - that within double quotes, space and tab are treated like normal - characters. - - Backslashes not followed by double quotes are not special. - - But 2*n+1 backslashes followed by a double quote become - n backslashes followed by a double quote (n >= 0): - \" -> " - \\\" -> \" - \\\\\" -> \\" - */ -#define SHELL_SPECIAL_CHARS "\"\\ \001\002\003\004\005\006\007\010\011\012\013\014\015\016\017\020\021\022\023\024\025\026\027\030\031\032\033\034\035\036\037" -#define SHELL_SPACE_CHARS " \001\002\003\004\005\006\007\010\011\012\013\014\015\016\017\020\021\022\023\024\025\026\027\030\031\032\033\034\035\036\037" -char ** -prepare_spawn (char **argv) -{ - size_t argc; - char **new_argv; - size_t i; - - /* Count number of arguments. */ - for (argc = 0; argv[argc] != NULL; argc++) - ; - - /* Allocate new argument vector. */ - new_argv = XMALLOC (char *, argc + 1); - - /* Put quoted arguments into the new argument vector. */ - for (i = 0; i < argc; i++) - { - const char *string = argv[i]; - - if (string[0] == '\0') - new_argv[i] = xstrdup ("\"\""); - else if (strpbrk (string, SHELL_SPECIAL_CHARS) != NULL) - { - int quote_around = (strpbrk (string, SHELL_SPACE_CHARS) != NULL); - size_t length; - unsigned int backslashes; - const char *s; - char *quoted_string; - char *p; - - length = 0; - backslashes = 0; - if (quote_around) - length++; - for (s = string; *s != '\0'; s++) - { - char c = *s; - if (c == '"') - length += backslashes + 1; - length++; - if (c == '\\') - backslashes++; - else - backslashes = 0; - } - if (quote_around) - length += backslashes + 1; - - quoted_string = XMALLOC (char, length + 1); - - p = quoted_string; - backslashes = 0; - if (quote_around) - *p++ = '"'; - for (s = string; *s != '\0'; s++) - { - char c = *s; - if (c == '"') - { - unsigned int j; - for (j = backslashes + 1; j > 0; j--) - *p++ = '\\'; - } - *p++ = c; - if (c == '\\') - backslashes++; - else - backslashes = 0; - } - if (quote_around) - { - unsigned int j; - for (j = backslashes; j > 0; j--) - *p++ = '\\'; - *p++ = '"'; - } - *p = '\0'; - - new_argv[i] = quoted_string; - } - else - new_argv[i] = (char *) string; - } - new_argv[argc] = NULL; - - return new_argv; -} -EOF - ;; - esac - - cat <<"EOF" -void lt_dump_script (FILE* f) -{ -EOF - func_emit_wrapper yes | - $SED -e 's/\([\\"]\)/\\\1/g' \ - -e 's/^/ fputs ("/' -e 's/$/\\n", f);/' - - cat <<"EOF" -} -EOF -} -# end: func_emit_cwrapperexe_src - -# func_win32_import_lib_p ARG -# True if ARG is an import lib, as indicated by $file_magic_cmd -func_win32_import_lib_p () -{ - $opt_debug - case `eval $file_magic_cmd \"\$1\" 2>/dev/null | $SED -e 10q` in - *import*) : ;; - *) false ;; - esac -} - -# func_mode_link arg... -func_mode_link () -{ - $opt_debug - case $host in - *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) - # It is impossible to link a dll without this setting, and - # we shouldn't force the makefile maintainer to figure out - # which system we are compiling for in order to pass an extra - # flag for every libtool invocation. - # allow_undefined=no - - # FIXME: Unfortunately, there are problems with the above when trying - # to make a dll which has undefined symbols, in which case not - # even a static library is built. For now, we need to specify - # -no-undefined on the libtool link line when we can be certain - # that all symbols are satisfied, otherwise we get a static library. - allow_undefined=yes - ;; - *) - allow_undefined=yes - ;; - esac - libtool_args=$nonopt - base_compile="$nonopt $@" - compile_command=$nonopt - finalize_command=$nonopt - - compile_rpath= - finalize_rpath= - compile_shlibpath= - finalize_shlibpath= - convenience= - old_convenience= - deplibs= - old_deplibs= - compiler_flags= - linker_flags= - dllsearchpath= - lib_search_path=`pwd` - inst_prefix_dir= - new_inherited_linker_flags= - - avoid_version=no - bindir= - dlfiles= - dlprefiles= - dlself=no - export_dynamic=no - export_symbols= - export_symbols_regex= - generated= - libobjs= - ltlibs= - module=no - no_install=no - objs= - non_pic_objects= - precious_files_regex= - prefer_static_libs=no - preload=no - prev= - prevarg= - release= - rpath= - xrpath= - perm_rpath= - temp_rpath= - thread_safe=no - vinfo= - vinfo_number=no - weak_libs= - single_module="${wl}-single_module" - func_infer_tag $base_compile - - # We need to know -static, to get the right output filenames. - for arg - do - case $arg in - -shared) - test "$build_libtool_libs" != yes && \ - func_fatal_configuration "can not build a shared library" - build_old_libs=no - break - ;; - -all-static | -static | -static-libtool-libs) - case $arg in - -all-static) - if test "$build_libtool_libs" = yes && test -z "$link_static_flag"; then - func_warning "complete static linking is impossible in this configuration" - fi - if test -n "$link_static_flag"; then - dlopen_self=$dlopen_self_static - fi - prefer_static_libs=yes - ;; - -static) - if test -z "$pic_flag" && test -n "$link_static_flag"; then - dlopen_self=$dlopen_self_static - fi - prefer_static_libs=built - ;; - -static-libtool-libs) - if test -z "$pic_flag" && test -n "$link_static_flag"; then - dlopen_self=$dlopen_self_static - fi - prefer_static_libs=yes - ;; - esac - build_libtool_libs=no - build_old_libs=yes - break - ;; - esac - done - - # See if our shared archives depend on static archives. - test -n "$old_archive_from_new_cmds" && build_old_libs=yes - - # Go through the arguments, transforming them on the way. - while test "$#" -gt 0; do - arg="$1" - shift - func_quote_for_eval "$arg" - qarg=$func_quote_for_eval_unquoted_result - func_append libtool_args " $func_quote_for_eval_result" - - # If the previous option needs an argument, assign it. - if test -n "$prev"; then - case $prev in - output) - func_append compile_command " @OUTPUT@" - func_append finalize_command " @OUTPUT@" - ;; - esac - - case $prev in - bindir) - bindir="$arg" - prev= - continue - ;; - dlfiles|dlprefiles) - if test "$preload" = no; then - # Add the symbol object into the linking commands. - func_append compile_command " @SYMFILE@" - func_append finalize_command " @SYMFILE@" - preload=yes - fi - case $arg in - *.la | *.lo) ;; # We handle these cases below. - force) - if test "$dlself" = no; then - dlself=needless - export_dynamic=yes - fi - prev= - continue - ;; - self) - if test "$prev" = dlprefiles; then - dlself=yes - elif test "$prev" = dlfiles && test "$dlopen_self" != yes; then - dlself=yes - else - dlself=needless - export_dynamic=yes - fi - prev= - continue - ;; - *) - if test "$prev" = dlfiles; then - func_append dlfiles " $arg" - else - func_append dlprefiles " $arg" - fi - prev= - continue - ;; - esac - ;; - expsyms) - export_symbols="$arg" - test -f "$arg" \ - || func_fatal_error "symbol file \`$arg' does not exist" - prev= - continue - ;; - expsyms_regex) - export_symbols_regex="$arg" - prev= - continue - ;; - framework) - case $host in - *-*-darwin*) - case "$deplibs " in - *" $qarg.ltframework "*) ;; - *) func_append deplibs " $qarg.ltframework" # this is fixed later - ;; - esac - ;; - esac - prev= - continue - ;; - inst_prefix) - inst_prefix_dir="$arg" - prev= - continue - ;; - objectlist) - if test -f "$arg"; then - save_arg=$arg - moreargs= - for fil in `cat "$save_arg"` - do -# func_append moreargs " $fil" - arg=$fil - # A libtool-controlled object. - - # Check to see that this really is a libtool object. - if func_lalib_unsafe_p "$arg"; then - pic_object= - non_pic_object= - - # Read the .lo file - func_source "$arg" - - if test -z "$pic_object" || - test -z "$non_pic_object" || - test "$pic_object" = none && - test "$non_pic_object" = none; then - func_fatal_error "cannot find name of object for \`$arg'" - fi - - # Extract subdirectory from the argument. - func_dirname "$arg" "/" "" - xdir="$func_dirname_result" - - if test "$pic_object" != none; then - # Prepend the subdirectory the object is found in. - pic_object="$xdir$pic_object" - - if test "$prev" = dlfiles; then - if test "$build_libtool_libs" = yes && test "$dlopen_support" = yes; then - func_append dlfiles " $pic_object" - prev= - continue - else - # If libtool objects are unsupported, then we need to preload. - prev=dlprefiles - fi - fi - - # CHECK ME: I think I busted this. -Ossama - if test "$prev" = dlprefiles; then - # Preload the old-style object. - func_append dlprefiles " $pic_object" - prev= - fi - - # A PIC object. - func_append libobjs " $pic_object" - arg="$pic_object" - fi - - # Non-PIC object. - if test "$non_pic_object" != none; then - # Prepend the subdirectory the object is found in. - non_pic_object="$xdir$non_pic_object" - - # A standard non-PIC object - func_append non_pic_objects " $non_pic_object" - if test -z "$pic_object" || test "$pic_object" = none ; then - arg="$non_pic_object" - fi - else - # If the PIC object exists, use it instead. - # $xdir was prepended to $pic_object above. - non_pic_object="$pic_object" - func_append non_pic_objects " $non_pic_object" - fi - else - # Only an error if not doing a dry-run. - if $opt_dry_run; then - # Extract subdirectory from the argument. - func_dirname "$arg" "/" "" - xdir="$func_dirname_result" - - func_lo2o "$arg" - pic_object=$xdir$objdir/$func_lo2o_result - non_pic_object=$xdir$func_lo2o_result - func_append libobjs " $pic_object" - func_append non_pic_objects " $non_pic_object" - else - func_fatal_error "\`$arg' is not a valid libtool object" - fi - fi - done - else - func_fatal_error "link input file \`$arg' does not exist" - fi - arg=$save_arg - prev= - continue - ;; - precious_regex) - precious_files_regex="$arg" - prev= - continue - ;; - release) - release="-$arg" - prev= - continue - ;; - rpath | xrpath) - # We need an absolute path. - case $arg in - [\\/]* | [A-Za-z]:[\\/]*) ;; - *) - func_fatal_error "only absolute run-paths are allowed" - ;; - esac - if test "$prev" = rpath; then - case "$rpath " in - *" $arg "*) ;; - *) func_append rpath " $arg" ;; - esac - else - case "$xrpath " in - *" $arg "*) ;; - *) func_append xrpath " $arg" ;; - esac - fi - prev= - continue - ;; - shrext) - shrext_cmds="$arg" - prev= - continue - ;; - weak) - func_append weak_libs " $arg" - prev= - continue - ;; - xcclinker) - func_append linker_flags " $qarg" - func_append compiler_flags " $qarg" - prev= - func_append compile_command " $qarg" - func_append finalize_command " $qarg" - continue - ;; - xcompiler) - func_append compiler_flags " $qarg" - prev= - func_append compile_command " $qarg" - func_append finalize_command " $qarg" - continue - ;; - xlinker) - func_append linker_flags " $qarg" - func_append compiler_flags " $wl$qarg" - prev= - func_append compile_command " $wl$qarg" - func_append finalize_command " $wl$qarg" - continue - ;; - *) - eval "$prev=\"\$arg\"" - prev= - continue - ;; - esac - fi # test -n "$prev" - - prevarg="$arg" - - case $arg in - -all-static) - if test -n "$link_static_flag"; then - # See comment for -static flag below, for more details. - func_append compile_command " $link_static_flag" - func_append finalize_command " $link_static_flag" - fi - continue - ;; - - -allow-undefined) - # FIXME: remove this flag sometime in the future. - func_fatal_error "\`-allow-undefined' must not be used because it is the default" - ;; - - -avoid-version) - avoid_version=yes - continue - ;; - - -bindir) - prev=bindir - continue - ;; - - -dlopen) - prev=dlfiles - continue - ;; - - -dlpreopen) - prev=dlprefiles - continue - ;; - - -export-dynamic) - export_dynamic=yes - continue - ;; - - -export-symbols | -export-symbols-regex) - if test -n "$export_symbols" || test -n "$export_symbols_regex"; then - func_fatal_error "more than one -exported-symbols argument is not allowed" - fi - if test "X$arg" = "X-export-symbols"; then - prev=expsyms - else - prev=expsyms_regex - fi - continue - ;; - - -framework) - prev=framework - continue - ;; - - -inst-prefix-dir) - prev=inst_prefix - continue - ;; - - # The native IRIX linker understands -LANG:*, -LIST:* and -LNO:* - # so, if we see these flags be careful not to treat them like -L - -L[A-Z][A-Z]*:*) - case $with_gcc/$host in - no/*-*-irix* | /*-*-irix*) - func_append compile_command " $arg" - func_append finalize_command " $arg" - ;; - esac - continue - ;; - - -L*) - func_stripname "-L" '' "$arg" - if test -z "$func_stripname_result"; then - if test "$#" -gt 0; then - func_fatal_error "require no space between \`-L' and \`$1'" - else - func_fatal_error "need path for \`-L' option" - fi - fi - func_resolve_sysroot "$func_stripname_result" - dir=$func_resolve_sysroot_result - # We need an absolute path. - case $dir in - [\\/]* | [A-Za-z]:[\\/]*) ;; - *) - absdir=`cd "$dir" && pwd` - test -z "$absdir" && \ - func_fatal_error "cannot determine absolute directory name of \`$dir'" - dir="$absdir" - ;; - esac - case "$deplibs " in - *" -L$dir "* | *" $arg "*) - # Will only happen for absolute or sysroot arguments - ;; - *) - # Preserve sysroot, but never include relative directories - case $dir in - [\\/]* | [A-Za-z]:[\\/]* | =*) func_append deplibs " $arg" ;; - *) func_append deplibs " -L$dir" ;; - esac - func_append lib_search_path " $dir" - ;; - esac - case $host in - *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) - testbindir=`$ECHO "$dir" | $SED 's*/lib$*/bin*'` - case :$dllsearchpath: in - *":$dir:"*) ;; - ::) dllsearchpath=$dir;; - *) func_append dllsearchpath ":$dir";; - esac - case :$dllsearchpath: in - *":$testbindir:"*) ;; - ::) dllsearchpath=$testbindir;; - *) func_append dllsearchpath ":$testbindir";; - esac - ;; - esac - continue - ;; - - -l*) - if test "X$arg" = "X-lc" || test "X$arg" = "X-lm"; then - case $host in - *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-beos* | *-cegcc* | *-*-haiku*) - # These systems don't actually have a C or math library (as such) - continue - ;; - *-*-os2*) - # These systems don't actually have a C library (as such) - test "X$arg" = "X-lc" && continue - ;; - *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*) - # Do not include libc due to us having libc/libc_r. - test "X$arg" = "X-lc" && continue - ;; - *-*-rhapsody* | *-*-darwin1.[012]) - # Rhapsody C and math libraries are in the System framework - func_append deplibs " System.ltframework" - continue - ;; - *-*-sco3.2v5* | *-*-sco5v6*) - # Causes problems with __ctype - test "X$arg" = "X-lc" && continue - ;; - *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*) - # Compiler inserts libc in the correct place for threads to work - test "X$arg" = "X-lc" && continue - ;; - esac - elif test "X$arg" = "X-lc_r"; then - case $host in - *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*) - # Do not include libc_r directly, use -pthread flag. - continue - ;; - esac - fi - func_append deplibs " $arg" - continue - ;; - - -module) - module=yes - continue - ;; - - # Tru64 UNIX uses -model [arg] to determine the layout of C++ - # classes, name mangling, and exception handling. - # Darwin uses the -arch flag to determine output architecture. - -model|-arch|-isysroot|--sysroot) - func_append compiler_flags " $arg" - func_append compile_command " $arg" - func_append finalize_command " $arg" - prev=xcompiler - continue - ;; - - -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe|-threads) - func_append compiler_flags " $arg" - func_append compile_command " $arg" - func_append finalize_command " $arg" - case "$new_inherited_linker_flags " in - *" $arg "*) ;; - * ) func_append new_inherited_linker_flags " $arg" ;; - esac - continue - ;; - - -multi_module) - single_module="${wl}-multi_module" - continue - ;; - - -no-fast-install) - fast_install=no - continue - ;; - - -no-install) - case $host in - *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-darwin* | *-cegcc*) - # The PATH hackery in wrapper scripts is required on Windows - # and Darwin in order for the loader to find any dlls it needs. - func_warning "\`-no-install' is ignored for $host" - func_warning "assuming \`-no-fast-install' instead" - fast_install=no - ;; - *) no_install=yes ;; - esac - continue - ;; - - -no-undefined) - allow_undefined=no - continue - ;; - - -objectlist) - prev=objectlist - continue - ;; - - -o) prev=output ;; - - -precious-files-regex) - prev=precious_regex - continue - ;; - - -release) - prev=release - continue - ;; - - -rpath) - prev=rpath - continue - ;; - - -R) - prev=xrpath - continue - ;; - - -R*) - func_stripname '-R' '' "$arg" - dir=$func_stripname_result - # We need an absolute path. - case $dir in - [\\/]* | [A-Za-z]:[\\/]*) ;; - =*) - func_stripname '=' '' "$dir" - dir=$lt_sysroot$func_stripname_result - ;; - *) - func_fatal_error "only absolute run-paths are allowed" - ;; - esac - case "$xrpath " in - *" $dir "*) ;; - *) func_append xrpath " $dir" ;; - esac - continue - ;; - - -shared) - # The effects of -shared are defined in a previous loop. - continue - ;; - - -shrext) - prev=shrext - continue - ;; - - -static | -static-libtool-libs) - # The effects of -static are defined in a previous loop. - # We used to do the same as -all-static on platforms that - # didn't have a PIC flag, but the assumption that the effects - # would be equivalent was wrong. It would break on at least - # Digital Unix and AIX. - continue - ;; - - -thread-safe) - thread_safe=yes - continue - ;; - - -version-info) - prev=vinfo - continue - ;; - - -version-number) - prev=vinfo - vinfo_number=yes - continue - ;; - - -weak) - prev=weak - continue - ;; - - -Wc,*) - func_stripname '-Wc,' '' "$arg" - args=$func_stripname_result - arg= - save_ifs="$IFS"; IFS=',' - for flag in $args; do - IFS="$save_ifs" - func_quote_for_eval "$flag" - func_append arg " $func_quote_for_eval_result" - func_append compiler_flags " $func_quote_for_eval_result" - done - IFS="$save_ifs" - func_stripname ' ' '' "$arg" - arg=$func_stripname_result - ;; - - -Wl,*) - func_stripname '-Wl,' '' "$arg" - args=$func_stripname_result - arg= - save_ifs="$IFS"; IFS=',' - for flag in $args; do - IFS="$save_ifs" - func_quote_for_eval "$flag" - func_append arg " $wl$func_quote_for_eval_result" - func_append compiler_flags " $wl$func_quote_for_eval_result" - func_append linker_flags " $func_quote_for_eval_result" - done - IFS="$save_ifs" - func_stripname ' ' '' "$arg" - arg=$func_stripname_result - ;; - - -Xcompiler) - prev=xcompiler - continue - ;; - - -Xlinker) - prev=xlinker - continue - ;; - - -XCClinker) - prev=xcclinker - continue - ;; - - # -msg_* for osf cc - -msg_*) - func_quote_for_eval "$arg" - arg="$func_quote_for_eval_result" - ;; - - # Flags to be passed through unchanged, with rationale: - # -64, -mips[0-9] enable 64-bit mode for the SGI compiler - # -r[0-9][0-9]* specify processor for the SGI compiler - # -xarch=*, -xtarget=* enable 64-bit mode for the Sun compiler - # +DA*, +DD* enable 64-bit mode for the HP compiler - # -q* compiler args for the IBM compiler - # -m*, -t[45]*, -txscale* architecture-specific flags for GCC - # -F/path path to uninstalled frameworks, gcc on darwin - # -p, -pg, --coverage, -fprofile-* profiling flags for GCC - # @file GCC response files - # -tp=* Portland pgcc target processor selection - # --sysroot=* for sysroot support - # -O*, -flto*, -fwhopr*, -fuse-linker-plugin GCC link-time optimization - -64|-mips[0-9]|-r[0-9][0-9]*|-xarch=*|-xtarget=*|+DA*|+DD*|-q*|-m*| \ - -t[45]*|-txscale*|-p|-pg|--coverage|-fprofile-*|-F*|@*|-tp=*|--sysroot=*| \ - -O*|-flto*|-fwhopr*|-fuse-linker-plugin) - func_quote_for_eval "$arg" - arg="$func_quote_for_eval_result" - func_append compile_command " $arg" - func_append finalize_command " $arg" - func_append compiler_flags " $arg" - continue - ;; - - # Some other compiler flag. - -* | +*) - func_quote_for_eval "$arg" - arg="$func_quote_for_eval_result" - ;; - - *.$objext) - # A standard object. - func_append objs " $arg" - ;; - - *.lo) - # A libtool-controlled object. - - # Check to see that this really is a libtool object. - if func_lalib_unsafe_p "$arg"; then - pic_object= - non_pic_object= - - # Read the .lo file - func_source "$arg" - - if test -z "$pic_object" || - test -z "$non_pic_object" || - test "$pic_object" = none && - test "$non_pic_object" = none; then - func_fatal_error "cannot find name of object for \`$arg'" - fi - - # Extract subdirectory from the argument. - func_dirname "$arg" "/" "" - xdir="$func_dirname_result" - - if test "$pic_object" != none; then - # Prepend the subdirectory the object is found in. - pic_object="$xdir$pic_object" - - if test "$prev" = dlfiles; then - if test "$build_libtool_libs" = yes && test "$dlopen_support" = yes; then - func_append dlfiles " $pic_object" - prev= - continue - else - # If libtool objects are unsupported, then we need to preload. - prev=dlprefiles - fi - fi - - # CHECK ME: I think I busted this. -Ossama - if test "$prev" = dlprefiles; then - # Preload the old-style object. - func_append dlprefiles " $pic_object" - prev= - fi - - # A PIC object. - func_append libobjs " $pic_object" - arg="$pic_object" - fi - - # Non-PIC object. - if test "$non_pic_object" != none; then - # Prepend the subdirectory the object is found in. - non_pic_object="$xdir$non_pic_object" - - # A standard non-PIC object - func_append non_pic_objects " $non_pic_object" - if test -z "$pic_object" || test "$pic_object" = none ; then - arg="$non_pic_object" - fi - else - # If the PIC object exists, use it instead. - # $xdir was prepended to $pic_object above. - non_pic_object="$pic_object" - func_append non_pic_objects " $non_pic_object" - fi - else - # Only an error if not doing a dry-run. - if $opt_dry_run; then - # Extract subdirectory from the argument. - func_dirname "$arg" "/" "" - xdir="$func_dirname_result" - - func_lo2o "$arg" - pic_object=$xdir$objdir/$func_lo2o_result - non_pic_object=$xdir$func_lo2o_result - func_append libobjs " $pic_object" - func_append non_pic_objects " $non_pic_object" - else - func_fatal_error "\`$arg' is not a valid libtool object" - fi - fi - ;; - - *.$libext) - # An archive. - func_append deplibs " $arg" - func_append old_deplibs " $arg" - continue - ;; - - *.la) - # A libtool-controlled library. - - func_resolve_sysroot "$arg" - if test "$prev" = dlfiles; then - # This library was specified with -dlopen. - func_append dlfiles " $func_resolve_sysroot_result" - prev= - elif test "$prev" = dlprefiles; then - # The library was specified with -dlpreopen. - func_append dlprefiles " $func_resolve_sysroot_result" - prev= - else - func_append deplibs " $func_resolve_sysroot_result" - fi - continue - ;; - - # Some other compiler argument. - *) - # Unknown arguments in both finalize_command and compile_command need - # to be aesthetically quoted because they are evaled later. - func_quote_for_eval "$arg" - arg="$func_quote_for_eval_result" - ;; - esac # arg - - # Now actually substitute the argument into the commands. - if test -n "$arg"; then - func_append compile_command " $arg" - func_append finalize_command " $arg" - fi - done # argument parsing loop - - test -n "$prev" && \ - func_fatal_help "the \`$prevarg' option requires an argument" - - if test "$export_dynamic" = yes && test -n "$export_dynamic_flag_spec"; then - eval arg=\"$export_dynamic_flag_spec\" - func_append compile_command " $arg" - func_append finalize_command " $arg" - fi - - oldlibs= - # calculate the name of the file, without its directory - func_basename "$output" - outputname="$func_basename_result" - libobjs_save="$libobjs" - - if test -n "$shlibpath_var"; then - # get the directories listed in $shlibpath_var - eval shlib_search_path=\`\$ECHO \"\${$shlibpath_var}\" \| \$SED \'s/:/ /g\'\` - else - shlib_search_path= - fi - eval sys_lib_search_path=\"$sys_lib_search_path_spec\" - eval sys_lib_dlsearch_path=\"$sys_lib_dlsearch_path_spec\" - - func_dirname "$output" "/" "" - output_objdir="$func_dirname_result$objdir" - func_to_tool_file "$output_objdir/" - tool_output_objdir=$func_to_tool_file_result - # Create the object directory. - func_mkdir_p "$output_objdir" - - # Determine the type of output - case $output in - "") - func_fatal_help "you must specify an output file" - ;; - *.$libext) linkmode=oldlib ;; - *.lo | *.$objext) linkmode=obj ;; - *.la) linkmode=lib ;; - *) linkmode=prog ;; # Anything else should be a program. - esac - - specialdeplibs= - - libs= - # Find all interdependent deplibs by searching for libraries - # that are linked more than once (e.g. -la -lb -la) - for deplib in $deplibs; do - if $opt_preserve_dup_deps ; then - case "$libs " in - *" $deplib "*) func_append specialdeplibs " $deplib" ;; - esac - fi - func_append libs " $deplib" - done - - if test "$linkmode" = lib; then - libs="$predeps $libs $compiler_lib_search_path $postdeps" - - # Compute libraries that are listed more than once in $predeps - # $postdeps and mark them as special (i.e., whose duplicates are - # not to be eliminated). - pre_post_deps= - if $opt_duplicate_compiler_generated_deps; then - for pre_post_dep in $predeps $postdeps; do - case "$pre_post_deps " in - *" $pre_post_dep "*) func_append specialdeplibs " $pre_post_deps" ;; - esac - func_append pre_post_deps " $pre_post_dep" - done - fi - pre_post_deps= - fi - - deplibs= - newdependency_libs= - newlib_search_path= - need_relink=no # whether we're linking any uninstalled libtool libraries - notinst_deplibs= # not-installed libtool libraries - notinst_path= # paths that contain not-installed libtool libraries - - case $linkmode in - lib) - passes="conv dlpreopen link" - for file in $dlfiles $dlprefiles; do - case $file in - *.la) ;; - *) - func_fatal_help "libraries can \`-dlopen' only libtool libraries: $file" - ;; - esac - done - ;; - prog) - compile_deplibs= - finalize_deplibs= - alldeplibs=no - newdlfiles= - newdlprefiles= - passes="conv scan dlopen dlpreopen link" - ;; - *) passes="conv" - ;; - esac - - for pass in $passes; do - # The preopen pass in lib mode reverses $deplibs; put it back here - # so that -L comes before libs that need it for instance... - if test "$linkmode,$pass" = "lib,link"; then - ## FIXME: Find the place where the list is rebuilt in the wrong - ## order, and fix it there properly - tmp_deplibs= - for deplib in $deplibs; do - tmp_deplibs="$deplib $tmp_deplibs" - done - deplibs="$tmp_deplibs" - fi - - if test "$linkmode,$pass" = "lib,link" || - test "$linkmode,$pass" = "prog,scan"; then - libs="$deplibs" - deplibs= - fi - if test "$linkmode" = prog; then - case $pass in - dlopen) libs="$dlfiles" ;; - dlpreopen) libs="$dlprefiles" ;; - link) libs="$deplibs %DEPLIBS% $dependency_libs" ;; - esac - fi - if test "$linkmode,$pass" = "lib,dlpreopen"; then - # Collect and forward deplibs of preopened libtool libs - for lib in $dlprefiles; do - # Ignore non-libtool-libs - dependency_libs= - func_resolve_sysroot "$lib" - case $lib in - *.la) func_source "$func_resolve_sysroot_result" ;; - esac - - # Collect preopened libtool deplibs, except any this library - # has declared as weak libs - for deplib in $dependency_libs; do - func_basename "$deplib" - deplib_base=$func_basename_result - case " $weak_libs " in - *" $deplib_base "*) ;; - *) func_append deplibs " $deplib" ;; - esac - done - done - libs="$dlprefiles" - fi - if test "$pass" = dlopen; then - # Collect dlpreopened libraries - save_deplibs="$deplibs" - deplibs= - fi - - for deplib in $libs; do - lib= - found=no - case $deplib in - -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe|-threads) - if test "$linkmode,$pass" = "prog,link"; then - compile_deplibs="$deplib $compile_deplibs" - finalize_deplibs="$deplib $finalize_deplibs" - else - func_append compiler_flags " $deplib" - if test "$linkmode" = lib ; then - case "$new_inherited_linker_flags " in - *" $deplib "*) ;; - * ) func_append new_inherited_linker_flags " $deplib" ;; - esac - fi - fi - continue - ;; - -l*) - if test "$linkmode" != lib && test "$linkmode" != prog; then - func_warning "\`-l' is ignored for archives/objects" - continue - fi - func_stripname '-l' '' "$deplib" - name=$func_stripname_result - if test "$linkmode" = lib; then - searchdirs="$newlib_search_path $lib_search_path $compiler_lib_search_dirs $sys_lib_search_path $shlib_search_path" - else - searchdirs="$newlib_search_path $lib_search_path $sys_lib_search_path $shlib_search_path" - fi - for searchdir in $searchdirs; do - for search_ext in .la $std_shrext .so .a; do - # Search the libtool library - lib="$searchdir/lib${name}${search_ext}" - if test -f "$lib"; then - if test "$search_ext" = ".la"; then - found=yes - else - found=no - fi - break 2 - fi - done - done - if test "$found" != yes; then - # deplib doesn't seem to be a libtool library - if test "$linkmode,$pass" = "prog,link"; then - compile_deplibs="$deplib $compile_deplibs" - finalize_deplibs="$deplib $finalize_deplibs" - else - deplibs="$deplib $deplibs" - test "$linkmode" = lib && newdependency_libs="$deplib $newdependency_libs" - fi - continue - else # deplib is a libtool library - # If $allow_libtool_libs_with_static_runtimes && $deplib is a stdlib, - # We need to do some special things here, and not later. - if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then - case " $predeps $postdeps " in - *" $deplib "*) - if func_lalib_p "$lib"; then - library_names= - old_library= - func_source "$lib" - for l in $old_library $library_names; do - ll="$l" - done - if test "X$ll" = "X$old_library" ; then # only static version available - found=no - func_dirname "$lib" "" "." - ladir="$func_dirname_result" - lib=$ladir/$old_library - if test "$linkmode,$pass" = "prog,link"; then - compile_deplibs="$deplib $compile_deplibs" - finalize_deplibs="$deplib $finalize_deplibs" - else - deplibs="$deplib $deplibs" - test "$linkmode" = lib && newdependency_libs="$deplib $newdependency_libs" - fi - continue - fi - fi - ;; - *) ;; - esac - fi - fi - ;; # -l - *.ltframework) - if test "$linkmode,$pass" = "prog,link"; then - compile_deplibs="$deplib $compile_deplibs" - finalize_deplibs="$deplib $finalize_deplibs" - else - deplibs="$deplib $deplibs" - if test "$linkmode" = lib ; then - case "$new_inherited_linker_flags " in - *" $deplib "*) ;; - * ) func_append new_inherited_linker_flags " $deplib" ;; - esac - fi - fi - continue - ;; - -L*) - case $linkmode in - lib) - deplibs="$deplib $deplibs" - test "$pass" = conv && continue - newdependency_libs="$deplib $newdependency_libs" - func_stripname '-L' '' "$deplib" - func_resolve_sysroot "$func_stripname_result" - func_append newlib_search_path " $func_resolve_sysroot_result" - ;; - prog) - if test "$pass" = conv; then - deplibs="$deplib $deplibs" - continue - fi - if test "$pass" = scan; then - deplibs="$deplib $deplibs" - else - compile_deplibs="$deplib $compile_deplibs" - finalize_deplibs="$deplib $finalize_deplibs" - fi - func_stripname '-L' '' "$deplib" - func_resolve_sysroot "$func_stripname_result" - func_append newlib_search_path " $func_resolve_sysroot_result" - ;; - *) - func_warning "\`-L' is ignored for archives/objects" - ;; - esac # linkmode - continue - ;; # -L - -R*) - if test "$pass" = link; then - func_stripname '-R' '' "$deplib" - func_resolve_sysroot "$func_stripname_result" - dir=$func_resolve_sysroot_result - # Make sure the xrpath contains only unique directories. - case "$xrpath " in - *" $dir "*) ;; - *) func_append xrpath " $dir" ;; - esac - fi - deplibs="$deplib $deplibs" - continue - ;; - *.la) - func_resolve_sysroot "$deplib" - lib=$func_resolve_sysroot_result - ;; - *.$libext) - if test "$pass" = conv; then - deplibs="$deplib $deplibs" - continue - fi - case $linkmode in - lib) - # Linking convenience modules into shared libraries is allowed, - # but linking other static libraries is non-portable. - case " $dlpreconveniencelibs " in - *" $deplib "*) ;; - *) - valid_a_lib=no - case $deplibs_check_method in - match_pattern*) - set dummy $deplibs_check_method; shift - match_pattern_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"` - if eval "\$ECHO \"$deplib\"" 2>/dev/null | $SED 10q \ - | $EGREP "$match_pattern_regex" > /dev/null; then - valid_a_lib=yes - fi - ;; - pass_all) - valid_a_lib=yes - ;; - esac - if test "$valid_a_lib" != yes; then - echo - $ECHO "*** Warning: Trying to link with static lib archive $deplib." - echo "*** I have the capability to make that library automatically link in when" - echo "*** you link to this library. But I can only do this if you have a" - echo "*** shared version of the library, which you do not appear to have" - echo "*** because the file extensions .$libext of this argument makes me believe" - echo "*** that it is just a static archive that I should not use here." - else - echo - $ECHO "*** Warning: Linking the shared library $output against the" - $ECHO "*** static library $deplib is not portable!" - deplibs="$deplib $deplibs" - fi - ;; - esac - continue - ;; - prog) - if test "$pass" != link; then - deplibs="$deplib $deplibs" - else - compile_deplibs="$deplib $compile_deplibs" - finalize_deplibs="$deplib $finalize_deplibs" - fi - continue - ;; - esac # linkmode - ;; # *.$libext - *.lo | *.$objext) - if test "$pass" = conv; then - deplibs="$deplib $deplibs" - elif test "$linkmode" = prog; then - if test "$pass" = dlpreopen || test "$dlopen_support" != yes || test "$build_libtool_libs" = no; then - # If there is no dlopen support or we're linking statically, - # we need to preload. - func_append newdlprefiles " $deplib" - compile_deplibs="$deplib $compile_deplibs" - finalize_deplibs="$deplib $finalize_deplibs" - else - func_append newdlfiles " $deplib" - fi - fi - continue - ;; - %DEPLIBS%) - alldeplibs=yes - continue - ;; - esac # case $deplib - - if test "$found" = yes || test -f "$lib"; then : - else - func_fatal_error "cannot find the library \`$lib' or unhandled argument \`$deplib'" - fi - - # Check to see that this really is a libtool archive. - func_lalib_unsafe_p "$lib" \ - || func_fatal_error "\`$lib' is not a valid libtool archive" - - func_dirname "$lib" "" "." - ladir="$func_dirname_result" - - dlname= - dlopen= - dlpreopen= - libdir= - library_names= - old_library= - inherited_linker_flags= - # If the library was installed with an old release of libtool, - # it will not redefine variables installed, or shouldnotlink - installed=yes - shouldnotlink=no - avoidtemprpath= - - - # Read the .la file - func_source "$lib" - - # Convert "-framework foo" to "foo.ltframework" - if test -n "$inherited_linker_flags"; then - tmp_inherited_linker_flags=`$ECHO "$inherited_linker_flags" | $SED 's/-framework \([^ $]*\)/\1.ltframework/g'` - for tmp_inherited_linker_flag in $tmp_inherited_linker_flags; do - case " $new_inherited_linker_flags " in - *" $tmp_inherited_linker_flag "*) ;; - *) func_append new_inherited_linker_flags " $tmp_inherited_linker_flag";; - esac - done - fi - dependency_libs=`$ECHO " $dependency_libs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` - if test "$linkmode,$pass" = "lib,link" || - test "$linkmode,$pass" = "prog,scan" || - { test "$linkmode" != prog && test "$linkmode" != lib; }; then - test -n "$dlopen" && func_append dlfiles " $dlopen" - test -n "$dlpreopen" && func_append dlprefiles " $dlpreopen" - fi - - if test "$pass" = conv; then - # Only check for convenience libraries - deplibs="$lib $deplibs" - if test -z "$libdir"; then - if test -z "$old_library"; then - func_fatal_error "cannot find name of link library for \`$lib'" - fi - # It is a libtool convenience library, so add in its objects. - func_append convenience " $ladir/$objdir/$old_library" - func_append old_convenience " $ladir/$objdir/$old_library" - elif test "$linkmode" != prog && test "$linkmode" != lib; then - func_fatal_error "\`$lib' is not a convenience library" - fi - tmp_libs= - for deplib in $dependency_libs; do - deplibs="$deplib $deplibs" - if $opt_preserve_dup_deps ; then - case "$tmp_libs " in - *" $deplib "*) func_append specialdeplibs " $deplib" ;; - esac - fi - func_append tmp_libs " $deplib" - done - continue - fi # $pass = conv - - - # Get the name of the library we link against. - linklib= - if test -n "$old_library" && - { test "$prefer_static_libs" = yes || - test "$prefer_static_libs,$installed" = "built,no"; }; then - linklib=$old_library - else - for l in $old_library $library_names; do - linklib="$l" - done - fi - if test -z "$linklib"; then - func_fatal_error "cannot find name of link library for \`$lib'" - fi - - # This library was specified with -dlopen. - if test "$pass" = dlopen; then - if test -z "$libdir"; then - func_fatal_error "cannot -dlopen a convenience library: \`$lib'" - fi - if test -z "$dlname" || - test "$dlopen_support" != yes || - test "$build_libtool_libs" = no; then - # If there is no dlname, no dlopen support or we're linking - # statically, we need to preload. We also need to preload any - # dependent libraries so libltdl's deplib preloader doesn't - # bomb out in the load deplibs phase. - func_append dlprefiles " $lib $dependency_libs" - else - func_append newdlfiles " $lib" - fi - continue - fi # $pass = dlopen - - # We need an absolute path. - case $ladir in - [\\/]* | [A-Za-z]:[\\/]*) abs_ladir="$ladir" ;; - *) - abs_ladir=`cd "$ladir" && pwd` - if test -z "$abs_ladir"; then - func_warning "cannot determine absolute directory name of \`$ladir'" - func_warning "passing it literally to the linker, although it might fail" - abs_ladir="$ladir" - fi - ;; - esac - func_basename "$lib" - laname="$func_basename_result" - - # Find the relevant object directory and library name. - if test "X$installed" = Xyes; then - if test ! -f "$lt_sysroot$libdir/$linklib" && test -f "$abs_ladir/$linklib"; then - func_warning "library \`$lib' was moved." - dir="$ladir" - absdir="$abs_ladir" - libdir="$abs_ladir" - else - dir="$lt_sysroot$libdir" - absdir="$lt_sysroot$libdir" - fi - test "X$hardcode_automatic" = Xyes && avoidtemprpath=yes - else - if test ! -f "$ladir/$objdir/$linklib" && test -f "$abs_ladir/$linklib"; then - dir="$ladir" - absdir="$abs_ladir" - # Remove this search path later - func_append notinst_path " $abs_ladir" - else - dir="$ladir/$objdir" - absdir="$abs_ladir/$objdir" - # Remove this search path later - func_append notinst_path " $abs_ladir" - fi - fi # $installed = yes - func_stripname 'lib' '.la' "$laname" - name=$func_stripname_result - - # This library was specified with -dlpreopen. - if test "$pass" = dlpreopen; then - if test -z "$libdir" && test "$linkmode" = prog; then - func_fatal_error "only libraries may -dlpreopen a convenience library: \`$lib'" - fi - case "$host" in - # special handling for platforms with PE-DLLs. - *cygwin* | *mingw* | *cegcc* ) - # Linker will automatically link against shared library if both - # static and shared are present. Therefore, ensure we extract - # symbols from the import library if a shared library is present - # (otherwise, the dlopen module name will be incorrect). We do - # this by putting the import library name into $newdlprefiles. - # We recover the dlopen module name by 'saving' the la file - # name in a special purpose variable, and (later) extracting the - # dlname from the la file. - if test -n "$dlname"; then - func_tr_sh "$dir/$linklib" - eval "libfile_$func_tr_sh_result=\$abs_ladir/\$laname" - func_append newdlprefiles " $dir/$linklib" - else - func_append newdlprefiles " $dir/$old_library" - # Keep a list of preopened convenience libraries to check - # that they are being used correctly in the link pass. - test -z "$libdir" && \ - func_append dlpreconveniencelibs " $dir/$old_library" - fi - ;; - * ) - # Prefer using a static library (so that no silly _DYNAMIC symbols - # are required to link). - if test -n "$old_library"; then - func_append newdlprefiles " $dir/$old_library" - # Keep a list of preopened convenience libraries to check - # that they are being used correctly in the link pass. - test -z "$libdir" && \ - func_append dlpreconveniencelibs " $dir/$old_library" - # Otherwise, use the dlname, so that lt_dlopen finds it. - elif test -n "$dlname"; then - func_append newdlprefiles " $dir/$dlname" - else - func_append newdlprefiles " $dir/$linklib" - fi - ;; - esac - fi # $pass = dlpreopen - - if test -z "$libdir"; then - # Link the convenience library - if test "$linkmode" = lib; then - deplibs="$dir/$old_library $deplibs" - elif test "$linkmode,$pass" = "prog,link"; then - compile_deplibs="$dir/$old_library $compile_deplibs" - finalize_deplibs="$dir/$old_library $finalize_deplibs" - else - deplibs="$lib $deplibs" # used for prog,scan pass - fi - continue - fi - - - if test "$linkmode" = prog && test "$pass" != link; then - func_append newlib_search_path " $ladir" - deplibs="$lib $deplibs" - - linkalldeplibs=no - if test "$link_all_deplibs" != no || test -z "$library_names" || - test "$build_libtool_libs" = no; then - linkalldeplibs=yes - fi - - tmp_libs= - for deplib in $dependency_libs; do - case $deplib in - -L*) func_stripname '-L' '' "$deplib" - func_resolve_sysroot "$func_stripname_result" - func_append newlib_search_path " $func_resolve_sysroot_result" - ;; - esac - # Need to link against all dependency_libs? - if test "$linkalldeplibs" = yes; then - deplibs="$deplib $deplibs" - else - # Need to hardcode shared library paths - # or/and link against static libraries - newdependency_libs="$deplib $newdependency_libs" - fi - if $opt_preserve_dup_deps ; then - case "$tmp_libs " in - *" $deplib "*) func_append specialdeplibs " $deplib" ;; - esac - fi - func_append tmp_libs " $deplib" - done # for deplib - continue - fi # $linkmode = prog... - - if test "$linkmode,$pass" = "prog,link"; then - if test -n "$library_names" && - { { test "$prefer_static_libs" = no || - test "$prefer_static_libs,$installed" = "built,yes"; } || - test -z "$old_library"; }; then - # We need to hardcode the library path - if test -n "$shlibpath_var" && test -z "$avoidtemprpath" ; then - # Make sure the rpath contains only unique directories. - case "$temp_rpath:" in - *"$absdir:"*) ;; - *) func_append temp_rpath "$absdir:" ;; - esac - fi - - # Hardcode the library path. - # Skip directories that are in the system default run-time - # search path. - case " $sys_lib_dlsearch_path " in - *" $absdir "*) ;; - *) - case "$compile_rpath " in - *" $absdir "*) ;; - *) func_append compile_rpath " $absdir" ;; - esac - ;; - esac - case " $sys_lib_dlsearch_path " in - *" $libdir "*) ;; - *) - case "$finalize_rpath " in - *" $libdir "*) ;; - *) func_append finalize_rpath " $libdir" ;; - esac - ;; - esac - fi # $linkmode,$pass = prog,link... - - if test "$alldeplibs" = yes && - { test "$deplibs_check_method" = pass_all || - { test "$build_libtool_libs" = yes && - test -n "$library_names"; }; }; then - # We only need to search for static libraries - continue - fi - fi - - link_static=no # Whether the deplib will be linked statically - use_static_libs=$prefer_static_libs - if test "$use_static_libs" = built && test "$installed" = yes; then - use_static_libs=no - fi - if test -n "$library_names" && - { test "$use_static_libs" = no || test -z "$old_library"; }; then - case $host in - *cygwin* | *mingw* | *cegcc*) - # No point in relinking DLLs because paths are not encoded - func_append notinst_deplibs " $lib" - need_relink=no - ;; - *) - if test "$installed" = no; then - func_append notinst_deplibs " $lib" - need_relink=yes - fi - ;; - esac - # This is a shared library - - # Warn about portability, can't link against -module's on some - # systems (darwin). Don't bleat about dlopened modules though! - dlopenmodule="" - for dlpremoduletest in $dlprefiles; do - if test "X$dlpremoduletest" = "X$lib"; then - dlopenmodule="$dlpremoduletest" - break - fi - done - if test -z "$dlopenmodule" && test "$shouldnotlink" = yes && test "$pass" = link; then - echo - if test "$linkmode" = prog; then - $ECHO "*** Warning: Linking the executable $output against the loadable module" - else - $ECHO "*** Warning: Linking the shared library $output against the loadable module" - fi - $ECHO "*** $linklib is not portable!" - fi - if test "$linkmode" = lib && - test "$hardcode_into_libs" = yes; then - # Hardcode the library path. - # Skip directories that are in the system default run-time - # search path. - case " $sys_lib_dlsearch_path " in - *" $absdir "*) ;; - *) - case "$compile_rpath " in - *" $absdir "*) ;; - *) func_append compile_rpath " $absdir" ;; - esac - ;; - esac - case " $sys_lib_dlsearch_path " in - *" $libdir "*) ;; - *) - case "$finalize_rpath " in - *" $libdir "*) ;; - *) func_append finalize_rpath " $libdir" ;; - esac - ;; - esac - fi - - if test -n "$old_archive_from_expsyms_cmds"; then - # figure out the soname - set dummy $library_names - shift - realname="$1" - shift - libname=`eval "\\$ECHO \"$libname_spec\""` - # use dlname if we got it. it's perfectly good, no? - if test -n "$dlname"; then - soname="$dlname" - elif test -n "$soname_spec"; then - # bleh windows - case $host in - *cygwin* | mingw* | *cegcc*) - func_arith $current - $age - major=$func_arith_result - versuffix="-$major" - ;; - esac - eval soname=\"$soname_spec\" - else - soname="$realname" - fi - - # Make a new name for the extract_expsyms_cmds to use - soroot="$soname" - func_basename "$soroot" - soname="$func_basename_result" - func_stripname 'lib' '.dll' "$soname" - newlib=libimp-$func_stripname_result.a - - # If the library has no export list, then create one now - if test -f "$output_objdir/$soname-def"; then : - else - func_verbose "extracting exported symbol list from \`$soname'" - func_execute_cmds "$extract_expsyms_cmds" 'exit $?' - fi - - # Create $newlib - if test -f "$output_objdir/$newlib"; then :; else - func_verbose "generating import library for \`$soname'" - func_execute_cmds "$old_archive_from_expsyms_cmds" 'exit $?' - fi - # make sure the library variables are pointing to the new library - dir=$output_objdir - linklib=$newlib - fi # test -n "$old_archive_from_expsyms_cmds" - - if test "$linkmode" = prog || test "$opt_mode" != relink; then - add_shlibpath= - add_dir= - add= - lib_linked=yes - case $hardcode_action in - immediate | unsupported) - if test "$hardcode_direct" = no; then - add="$dir/$linklib" - case $host in - *-*-sco3.2v5.0.[024]*) add_dir="-L$dir" ;; - *-*-sysv4*uw2*) add_dir="-L$dir" ;; - *-*-sysv5OpenUNIX* | *-*-sysv5UnixWare7.[01].[10]* | \ - *-*-unixware7*) add_dir="-L$dir" ;; - *-*-darwin* ) - # if the lib is a (non-dlopened) module then we can not - # link against it, someone is ignoring the earlier warnings - if /usr/bin/file -L $add 2> /dev/null | - $GREP ": [^:]* bundle" >/dev/null ; then - if test "X$dlopenmodule" != "X$lib"; then - $ECHO "*** Warning: lib $linklib is a module, not a shared library" - if test -z "$old_library" ; then - echo - echo "*** And there doesn't seem to be a static archive available" - echo "*** The link will probably fail, sorry" - else - add="$dir/$old_library" - fi - elif test -n "$old_library"; then - add="$dir/$old_library" - fi - fi - esac - elif test "$hardcode_minus_L" = no; then - case $host in - *-*-sunos*) add_shlibpath="$dir" ;; - esac - add_dir="-L$dir" - add="-l$name" - elif test "$hardcode_shlibpath_var" = no; then - add_shlibpath="$dir" - add="-l$name" - else - lib_linked=no - fi - ;; - relink) - if test "$hardcode_direct" = yes && - test "$hardcode_direct_absolute" = no; then - add="$dir/$linklib" - elif test "$hardcode_minus_L" = yes; then - add_dir="-L$dir" - # Try looking first in the location we're being installed to. - if test -n "$inst_prefix_dir"; then - case $libdir in - [\\/]*) - func_append add_dir " -L$inst_prefix_dir$libdir" - ;; - esac - fi - add="-l$name" - elif test "$hardcode_shlibpath_var" = yes; then - add_shlibpath="$dir" - add="-l$name" - else - lib_linked=no - fi - ;; - *) lib_linked=no ;; - esac - - if test "$lib_linked" != yes; then - func_fatal_configuration "unsupported hardcode properties" - fi - - if test -n "$add_shlibpath"; then - case :$compile_shlibpath: in - *":$add_shlibpath:"*) ;; - *) func_append compile_shlibpath "$add_shlibpath:" ;; - esac - fi - if test "$linkmode" = prog; then - test -n "$add_dir" && compile_deplibs="$add_dir $compile_deplibs" - test -n "$add" && compile_deplibs="$add $compile_deplibs" - else - test -n "$add_dir" && deplibs="$add_dir $deplibs" - test -n "$add" && deplibs="$add $deplibs" - if test "$hardcode_direct" != yes && - test "$hardcode_minus_L" != yes && - test "$hardcode_shlibpath_var" = yes; then - case :$finalize_shlibpath: in - *":$libdir:"*) ;; - *) func_append finalize_shlibpath "$libdir:" ;; - esac - fi - fi - fi - - if test "$linkmode" = prog || test "$opt_mode" = relink; then - add_shlibpath= - add_dir= - add= - # Finalize command for both is simple: just hardcode it. - if test "$hardcode_direct" = yes && - test "$hardcode_direct_absolute" = no; then - add="$libdir/$linklib" - elif test "$hardcode_minus_L" = yes; then - add_dir="-L$libdir" - add="-l$name" - elif test "$hardcode_shlibpath_var" = yes; then - case :$finalize_shlibpath: in - *":$libdir:"*) ;; - *) func_append finalize_shlibpath "$libdir:" ;; - esac - add="-l$name" - elif test "$hardcode_automatic" = yes; then - if test -n "$inst_prefix_dir" && - test -f "$inst_prefix_dir$libdir/$linklib" ; then - add="$inst_prefix_dir$libdir/$linklib" - else - add="$libdir/$linklib" - fi - else - # We cannot seem to hardcode it, guess we'll fake it. - add_dir="-L$libdir" - # Try looking first in the location we're being installed to. - if test -n "$inst_prefix_dir"; then - case $libdir in - [\\/]*) - func_append add_dir " -L$inst_prefix_dir$libdir" - ;; - esac - fi - add="-l$name" - fi - - if test "$linkmode" = prog; then - test -n "$add_dir" && finalize_deplibs="$add_dir $finalize_deplibs" - test -n "$add" && finalize_deplibs="$add $finalize_deplibs" - else - test -n "$add_dir" && deplibs="$add_dir $deplibs" - test -n "$add" && deplibs="$add $deplibs" - fi - fi - elif test "$linkmode" = prog; then - # Here we assume that one of hardcode_direct or hardcode_minus_L - # is not unsupported. This is valid on all known static and - # shared platforms. - if test "$hardcode_direct" != unsupported; then - test -n "$old_library" && linklib="$old_library" - compile_deplibs="$dir/$linklib $compile_deplibs" - finalize_deplibs="$dir/$linklib $finalize_deplibs" - else - compile_deplibs="-l$name -L$dir $compile_deplibs" - finalize_deplibs="-l$name -L$dir $finalize_deplibs" - fi - elif test "$build_libtool_libs" = yes; then - # Not a shared library - if test "$deplibs_check_method" != pass_all; then - # We're trying link a shared library against a static one - # but the system doesn't support it. - - # Just print a warning and add the library to dependency_libs so - # that the program can be linked against the static library. - echo - $ECHO "*** Warning: This system can not link to static lib archive $lib." - echo "*** I have the capability to make that library automatically link in when" - echo "*** you link to this library. But I can only do this if you have a" - echo "*** shared version of the library, which you do not appear to have." - if test "$module" = yes; then - echo "*** But as you try to build a module library, libtool will still create " - echo "*** a static module, that should work as long as the dlopening application" - echo "*** is linked with the -dlopen flag to resolve symbols at runtime." - if test -z "$global_symbol_pipe"; then - echo - echo "*** However, this would only work if libtool was able to extract symbol" - echo "*** lists from a program, using \`nm' or equivalent, but libtool could" - echo "*** not find such a program. So, this module is probably useless." - echo "*** \`nm' from GNU binutils and a full rebuild may help." - fi - if test "$build_old_libs" = no; then - build_libtool_libs=module - build_old_libs=yes - else - build_libtool_libs=no - fi - fi - else - deplibs="$dir/$old_library $deplibs" - link_static=yes - fi - fi # link shared/static library? - - if test "$linkmode" = lib; then - if test -n "$dependency_libs" && - { test "$hardcode_into_libs" != yes || - test "$build_old_libs" = yes || - test "$link_static" = yes; }; then - # Extract -R from dependency_libs - temp_deplibs= - for libdir in $dependency_libs; do - case $libdir in - -R*) func_stripname '-R' '' "$libdir" - temp_xrpath=$func_stripname_result - case " $xrpath " in - *" $temp_xrpath "*) ;; - *) func_append xrpath " $temp_xrpath";; - esac;; - *) func_append temp_deplibs " $libdir";; - esac - done - dependency_libs="$temp_deplibs" - fi - - func_append newlib_search_path " $absdir" - # Link against this library - test "$link_static" = no && newdependency_libs="$abs_ladir/$laname $newdependency_libs" - # ... and its dependency_libs - tmp_libs= - for deplib in $dependency_libs; do - newdependency_libs="$deplib $newdependency_libs" - case $deplib in - -L*) func_stripname '-L' '' "$deplib" - func_resolve_sysroot "$func_stripname_result";; - *) func_resolve_sysroot "$deplib" ;; - esac - if $opt_preserve_dup_deps ; then - case "$tmp_libs " in - *" $func_resolve_sysroot_result "*) - func_append specialdeplibs " $func_resolve_sysroot_result" ;; - esac - fi - func_append tmp_libs " $func_resolve_sysroot_result" - done - - if test "$link_all_deplibs" != no; then - # Add the search paths of all dependency libraries - for deplib in $dependency_libs; do - path= - case $deplib in - -L*) path="$deplib" ;; - *.la) - func_resolve_sysroot "$deplib" - deplib=$func_resolve_sysroot_result - func_dirname "$deplib" "" "." - dir=$func_dirname_result - # We need an absolute path. - case $dir in - [\\/]* | [A-Za-z]:[\\/]*) absdir="$dir" ;; - *) - absdir=`cd "$dir" && pwd` - if test -z "$absdir"; then - func_warning "cannot determine absolute directory name of \`$dir'" - absdir="$dir" - fi - ;; - esac - if $GREP "^installed=no" $deplib > /dev/null; then - case $host in - *-*-darwin*) - depdepl= - eval deplibrary_names=`${SED} -n -e 's/^library_names=\(.*\)$/\1/p' $deplib` - if test -n "$deplibrary_names" ; then - for tmp in $deplibrary_names ; do - depdepl=$tmp - done - if test -f "$absdir/$objdir/$depdepl" ; then - depdepl="$absdir/$objdir/$depdepl" - darwin_install_name=`${OTOOL} -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'` - if test -z "$darwin_install_name"; then - darwin_install_name=`${OTOOL64} -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'` - fi - func_append compiler_flags " ${wl}-dylib_file ${wl}${darwin_install_name}:${depdepl}" - func_append linker_flags " -dylib_file ${darwin_install_name}:${depdepl}" - path= - fi - fi - ;; - *) - path="-L$absdir/$objdir" - ;; - esac - else - eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $deplib` - test -z "$libdir" && \ - func_fatal_error "\`$deplib' is not a valid libtool archive" - test "$absdir" != "$libdir" && \ - func_warning "\`$deplib' seems to be moved" - - path="-L$absdir" - fi - ;; - esac - case " $deplibs " in - *" $path "*) ;; - *) deplibs="$path $deplibs" ;; - esac - done - fi # link_all_deplibs != no - fi # linkmode = lib - done # for deplib in $libs - if test "$pass" = link; then - if test "$linkmode" = "prog"; then - compile_deplibs="$new_inherited_linker_flags $compile_deplibs" - finalize_deplibs="$new_inherited_linker_flags $finalize_deplibs" - else - compiler_flags="$compiler_flags "`$ECHO " $new_inherited_linker_flags" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` - fi - fi - dependency_libs="$newdependency_libs" - if test "$pass" = dlpreopen; then - # Link the dlpreopened libraries before other libraries - for deplib in $save_deplibs; do - deplibs="$deplib $deplibs" - done - fi - if test "$pass" != dlopen; then - if test "$pass" != conv; then - # Make sure lib_search_path contains only unique directories. - lib_search_path= - for dir in $newlib_search_path; do - case "$lib_search_path " in - *" $dir "*) ;; - *) func_append lib_search_path " $dir" ;; - esac - done - newlib_search_path= - fi - - if test "$linkmode,$pass" != "prog,link"; then - vars="deplibs" - else - vars="compile_deplibs finalize_deplibs" - fi - for var in $vars dependency_libs; do - # Add libraries to $var in reverse order - eval tmp_libs=\"\$$var\" - new_libs= - for deplib in $tmp_libs; do - # FIXME: Pedantically, this is the right thing to do, so - # that some nasty dependency loop isn't accidentally - # broken: - #new_libs="$deplib $new_libs" - # Pragmatically, this seems to cause very few problems in - # practice: - case $deplib in - -L*) new_libs="$deplib $new_libs" ;; - -R*) ;; - *) - # And here is the reason: when a library appears more - # than once as an explicit dependence of a library, or - # is implicitly linked in more than once by the - # compiler, it is considered special, and multiple - # occurrences thereof are not removed. Compare this - # with having the same library being listed as a - # dependency of multiple other libraries: in this case, - # we know (pedantically, we assume) the library does not - # need to be listed more than once, so we keep only the - # last copy. This is not always right, but it is rare - # enough that we require users that really mean to play - # such unportable linking tricks to link the library - # using -Wl,-lname, so that libtool does not consider it - # for duplicate removal. - case " $specialdeplibs " in - *" $deplib "*) new_libs="$deplib $new_libs" ;; - *) - case " $new_libs " in - *" $deplib "*) ;; - *) new_libs="$deplib $new_libs" ;; - esac - ;; - esac - ;; - esac - done - tmp_libs= - for deplib in $new_libs; do - case $deplib in - -L*) - case " $tmp_libs " in - *" $deplib "*) ;; - *) func_append tmp_libs " $deplib" ;; - esac - ;; - *) func_append tmp_libs " $deplib" ;; - esac - done - eval $var=\"$tmp_libs\" - done # for var - fi - # Last step: remove runtime libs from dependency_libs - # (they stay in deplibs) - tmp_libs= - for i in $dependency_libs ; do - case " $predeps $postdeps $compiler_lib_search_path " in - *" $i "*) - i="" - ;; - esac - if test -n "$i" ; then - func_append tmp_libs " $i" - fi - done - dependency_libs=$tmp_libs - done # for pass - if test "$linkmode" = prog; then - dlfiles="$newdlfiles" - fi - if test "$linkmode" = prog || test "$linkmode" = lib; then - dlprefiles="$newdlprefiles" - fi - - case $linkmode in - oldlib) - if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then - func_warning "\`-dlopen' is ignored for archives" - fi - - case " $deplibs" in - *\ -l* | *\ -L*) - func_warning "\`-l' and \`-L' are ignored for archives" ;; - esac - - test -n "$rpath" && \ - func_warning "\`-rpath' is ignored for archives" - - test -n "$xrpath" && \ - func_warning "\`-R' is ignored for archives" - - test -n "$vinfo" && \ - func_warning "\`-version-info/-version-number' is ignored for archives" - - test -n "$release" && \ - func_warning "\`-release' is ignored for archives" - - test -n "$export_symbols$export_symbols_regex" && \ - func_warning "\`-export-symbols' is ignored for archives" - - # Now set the variables for building old libraries. - build_libtool_libs=no - oldlibs="$output" - func_append objs "$old_deplibs" - ;; - - lib) - # Make sure we only generate libraries of the form `libNAME.la'. - case $outputname in - lib*) - func_stripname 'lib' '.la' "$outputname" - name=$func_stripname_result - eval shared_ext=\"$shrext_cmds\" - eval libname=\"$libname_spec\" - ;; - *) - test "$module" = no && \ - func_fatal_help "libtool library \`$output' must begin with \`lib'" - - if test "$need_lib_prefix" != no; then - # Add the "lib" prefix for modules if required - func_stripname '' '.la' "$outputname" - name=$func_stripname_result - eval shared_ext=\"$shrext_cmds\" - eval libname=\"$libname_spec\" - else - func_stripname '' '.la' "$outputname" - libname=$func_stripname_result - fi - ;; - esac - - if test -n "$objs"; then - if test "$deplibs_check_method" != pass_all; then - func_fatal_error "cannot build libtool library \`$output' from non-libtool objects on this host:$objs" - else - echo - $ECHO "*** Warning: Linking the shared library $output against the non-libtool" - $ECHO "*** objects $objs is not portable!" - func_append libobjs " $objs" - fi - fi - - test "$dlself" != no && \ - func_warning "\`-dlopen self' is ignored for libtool libraries" - - set dummy $rpath - shift - test "$#" -gt 1 && \ - func_warning "ignoring multiple \`-rpath's for a libtool library" - - install_libdir="$1" - - oldlibs= - if test -z "$rpath"; then - if test "$build_libtool_libs" = yes; then - # Building a libtool convenience library. - # Some compilers have problems with a `.al' extension so - # convenience libraries should have the same extension an - # archive normally would. - oldlibs="$output_objdir/$libname.$libext $oldlibs" - build_libtool_libs=convenience - build_old_libs=yes - fi - - test -n "$vinfo" && \ - func_warning "\`-version-info/-version-number' is ignored for convenience libraries" - - test -n "$release" && \ - func_warning "\`-release' is ignored for convenience libraries" - else - - # Parse the version information argument. - save_ifs="$IFS"; IFS=':' - set dummy $vinfo 0 0 0 - shift - IFS="$save_ifs" - - test -n "$7" && \ - func_fatal_help "too many parameters to \`-version-info'" - - # convert absolute version numbers to libtool ages - # this retains compatibility with .la files and attempts - # to make the code below a bit more comprehensible - - case $vinfo_number in - yes) - number_major="$1" - number_minor="$2" - number_revision="$3" - # - # There are really only two kinds -- those that - # use the current revision as the major version - # and those that subtract age and use age as - # a minor version. But, then there is irix - # which has an extra 1 added just for fun - # - case $version_type in - darwin|linux|osf|windows|none) - func_arith $number_major + $number_minor - current=$func_arith_result - age="$number_minor" - revision="$number_revision" - ;; - freebsd-aout|freebsd-elf|qnx|sunos) - current="$number_major" - revision="$number_minor" - age="0" - ;; - irix|nonstopux) - func_arith $number_major + $number_minor - current=$func_arith_result - age="$number_minor" - revision="$number_minor" - lt_irix_increment=no - ;; - esac - ;; - no) - current="$1" - revision="$2" - age="$3" - ;; - esac - - # Check that each of the things are valid numbers. - case $current in - 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; - *) - func_error "CURRENT \`$current' must be a nonnegative integer" - func_fatal_error "\`$vinfo' is not valid version information" - ;; - esac - - case $revision in - 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; - *) - func_error "REVISION \`$revision' must be a nonnegative integer" - func_fatal_error "\`$vinfo' is not valid version information" - ;; - esac - - case $age in - 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; - *) - func_error "AGE \`$age' must be a nonnegative integer" - func_fatal_error "\`$vinfo' is not valid version information" - ;; - esac - - if test "$age" -gt "$current"; then - func_error "AGE \`$age' is greater than the current interface number \`$current'" - func_fatal_error "\`$vinfo' is not valid version information" - fi - - # Calculate the version variables. - major= - versuffix= - verstring= - case $version_type in - none) ;; - - darwin) - # Like Linux, but with the current version available in - # verstring for coding it into the library header - func_arith $current - $age - major=.$func_arith_result - versuffix="$major.$age.$revision" - # Darwin ld doesn't like 0 for these options... - func_arith $current + 1 - minor_current=$func_arith_result - xlcverstring="${wl}-compatibility_version ${wl}$minor_current ${wl}-current_version ${wl}$minor_current.$revision" - verstring="-compatibility_version $minor_current -current_version $minor_current.$revision" - ;; - - freebsd-aout) - major=".$current" - versuffix=".$current.$revision"; - ;; - - freebsd-elf) - major=".$current" - versuffix=".$current" - ;; - - irix | nonstopux) - if test "X$lt_irix_increment" = "Xno"; then - func_arith $current - $age - else - func_arith $current - $age + 1 - fi - major=$func_arith_result - - case $version_type in - nonstopux) verstring_prefix=nonstopux ;; - *) verstring_prefix=sgi ;; - esac - verstring="$verstring_prefix$major.$revision" - - # Add in all the interfaces that we are compatible with. - loop=$revision - while test "$loop" -ne 0; do - func_arith $revision - $loop - iface=$func_arith_result - func_arith $loop - 1 - loop=$func_arith_result - verstring="$verstring_prefix$major.$iface:$verstring" - done - - # Before this point, $major must not contain `.'. - major=.$major - versuffix="$major.$revision" - ;; - - linux) - func_arith $current - $age - major=.$func_arith_result - versuffix="$major.$age.$revision" - ;; - - osf) - func_arith $current - $age - major=.$func_arith_result - versuffix=".$current.$age.$revision" - verstring="$current.$age.$revision" - - # Add in all the interfaces that we are compatible with. - loop=$age - while test "$loop" -ne 0; do - func_arith $current - $loop - iface=$func_arith_result - func_arith $loop - 1 - loop=$func_arith_result - verstring="$verstring:${iface}.0" - done - - # Make executables depend on our current version. - func_append verstring ":${current}.0" - ;; - - qnx) - major=".$current" - versuffix=".$current" - ;; - - sunos) - major=".$current" - versuffix=".$current.$revision" - ;; - - windows) - # Use '-' rather than '.', since we only want one - # extension on DOS 8.3 filesystems. - func_arith $current - $age - major=$func_arith_result - versuffix="-$major" - ;; - - *) - func_fatal_configuration "unknown library version type \`$version_type'" - ;; - esac - - # Clear the version info if we defaulted, and they specified a release. - if test -z "$vinfo" && test -n "$release"; then - major= - case $version_type in - darwin) - # we can't check for "0.0" in archive_cmds due to quoting - # problems, so we reset it completely - verstring= - ;; - *) - verstring="0.0" - ;; - esac - if test "$need_version" = no; then - versuffix= - else - versuffix=".0.0" - fi - fi - - # Remove version info from name if versioning should be avoided - if test "$avoid_version" = yes && test "$need_version" = no; then - major= - versuffix= - verstring="" - fi - - # Check to see if the archive will have undefined symbols. - if test "$allow_undefined" = yes; then - if test "$allow_undefined_flag" = unsupported; then - func_warning "undefined symbols not allowed in $host shared libraries" - build_libtool_libs=no - build_old_libs=yes - fi - else - # Don't allow undefined symbols. - allow_undefined_flag="$no_undefined_flag" - fi - - fi - - func_generate_dlsyms "$libname" "$libname" "yes" - func_append libobjs " $symfileobj" - test "X$libobjs" = "X " && libobjs= - - if test "$opt_mode" != relink; then - # Remove our outputs, but don't remove object files since they - # may have been created when compiling PIC objects. - removelist= - tempremovelist=`$ECHO "$output_objdir/*"` - for p in $tempremovelist; do - case $p in - *.$objext | *.gcno) - ;; - $output_objdir/$outputname | $output_objdir/$libname.* | $output_objdir/${libname}${release}.*) - if test "X$precious_files_regex" != "X"; then - if $ECHO "$p" | $EGREP -e "$precious_files_regex" >/dev/null 2>&1 - then - continue - fi - fi - func_append removelist " $p" - ;; - *) ;; - esac - done - test -n "$removelist" && \ - func_show_eval "${RM}r \$removelist" - fi - - # Now set the variables for building old libraries. - if test "$build_old_libs" = yes && test "$build_libtool_libs" != convenience ; then - func_append oldlibs " $output_objdir/$libname.$libext" - - # Transform .lo files to .o files. - oldobjs="$objs "`$ECHO "$libobjs" | $SP2NL | $SED "/\.${libext}$/d; $lo2o" | $NL2SP` - fi - - # Eliminate all temporary directories. - #for path in $notinst_path; do - # lib_search_path=`$ECHO "$lib_search_path " | $SED "s% $path % %g"` - # deplibs=`$ECHO "$deplibs " | $SED "s% -L$path % %g"` - # dependency_libs=`$ECHO "$dependency_libs " | $SED "s% -L$path % %g"` - #done - - if test -n "$xrpath"; then - # If the user specified any rpath flags, then add them. - temp_xrpath= - for libdir in $xrpath; do - func_replace_sysroot "$libdir" - func_append temp_xrpath " -R$func_replace_sysroot_result" - case "$finalize_rpath " in - *" $libdir "*) ;; - *) func_append finalize_rpath " $libdir" ;; - esac - done - if test "$hardcode_into_libs" != yes || test "$build_old_libs" = yes; then - dependency_libs="$temp_xrpath $dependency_libs" - fi - fi - - # Make sure dlfiles contains only unique files that won't be dlpreopened - old_dlfiles="$dlfiles" - dlfiles= - for lib in $old_dlfiles; do - case " $dlprefiles $dlfiles " in - *" $lib "*) ;; - *) func_append dlfiles " $lib" ;; - esac - done - - # Make sure dlprefiles contains only unique files - old_dlprefiles="$dlprefiles" - dlprefiles= - for lib in $old_dlprefiles; do - case "$dlprefiles " in - *" $lib "*) ;; - *) func_append dlprefiles " $lib" ;; - esac - done - - if test "$build_libtool_libs" = yes; then - if test -n "$rpath"; then - case $host in - *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-beos* | *-cegcc* | *-*-haiku*) - # these systems don't actually have a c library (as such)! - ;; - *-*-rhapsody* | *-*-darwin1.[012]) - # Rhapsody C library is in the System framework - func_append deplibs " System.ltframework" - ;; - *-*-netbsd*) - # Don't link with libc until the a.out ld.so is fixed. - ;; - *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*) - # Do not include libc due to us having libc/libc_r. - ;; - *-*-sco3.2v5* | *-*-sco5v6*) - # Causes problems with __ctype - ;; - *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*) - # Compiler inserts libc in the correct place for threads to work - ;; - *) - # Add libc to deplibs on all other systems if necessary. - if test "$build_libtool_need_lc" = "yes"; then - func_append deplibs " -lc" - fi - ;; - esac - fi - - # Transform deplibs into only deplibs that can be linked in shared. - name_save=$name - libname_save=$libname - release_save=$release - versuffix_save=$versuffix - major_save=$major - # I'm not sure if I'm treating the release correctly. I think - # release should show up in the -l (ie -lgmp5) so we don't want to - # add it in twice. Is that correct? - release="" - versuffix="" - major="" - newdeplibs= - droppeddeps=no - case $deplibs_check_method in - pass_all) - # Don't check for shared/static. Everything works. - # This might be a little naive. We might want to check - # whether the library exists or not. But this is on - # osf3 & osf4 and I'm not really sure... Just - # implementing what was already the behavior. - newdeplibs=$deplibs - ;; - test_compile) - # This code stresses the "libraries are programs" paradigm to its - # limits. Maybe even breaks it. We compile a program, linking it - # against the deplibs as a proxy for the library. Then we can check - # whether they linked in statically or dynamically with ldd. - $opt_dry_run || $RM conftest.c - cat > conftest.c </dev/null` - $nocaseglob - else - potential_libs=`ls $i/$libnameglob[.-]* 2>/dev/null` - fi - for potent_lib in $potential_libs; do - # Follow soft links. - if ls -lLd "$potent_lib" 2>/dev/null | - $GREP " -> " >/dev/null; then - continue - fi - # The statement above tries to avoid entering an - # endless loop below, in case of cyclic links. - # We might still enter an endless loop, since a link - # loop can be closed while we follow links, - # but so what? - potlib="$potent_lib" - while test -h "$potlib" 2>/dev/null; do - potliblink=`ls -ld $potlib | ${SED} 's/.* -> //'` - case $potliblink in - [\\/]* | [A-Za-z]:[\\/]*) potlib="$potliblink";; - *) potlib=`$ECHO "$potlib" | $SED 's,[^/]*$,,'`"$potliblink";; - esac - done - if eval $file_magic_cmd \"\$potlib\" 2>/dev/null | - $SED -e 10q | - $EGREP "$file_magic_regex" > /dev/null; then - func_append newdeplibs " $a_deplib" - a_deplib="" - break 2 - fi - done - done - fi - if test -n "$a_deplib" ; then - droppeddeps=yes - echo - $ECHO "*** Warning: linker path does not have real file for library $a_deplib." - echo "*** I have the capability to make that library automatically link in when" - echo "*** you link to this library. But I can only do this if you have a" - echo "*** shared version of the library, which you do not appear to have" - echo "*** because I did check the linker path looking for a file starting" - if test -z "$potlib" ; then - $ECHO "*** with $libname but no candidates were found. (...for file magic test)" - else - $ECHO "*** with $libname and none of the candidates passed a file format test" - $ECHO "*** using a file magic. Last file checked: $potlib" - fi - fi - ;; - *) - # Add a -L argument. - func_append newdeplibs " $a_deplib" - ;; - esac - done # Gone through all deplibs. - ;; - match_pattern*) - set dummy $deplibs_check_method; shift - match_pattern_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"` - for a_deplib in $deplibs; do - case $a_deplib in - -l*) - func_stripname -l '' "$a_deplib" - name=$func_stripname_result - if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then - case " $predeps $postdeps " in - *" $a_deplib "*) - func_append newdeplibs " $a_deplib" - a_deplib="" - ;; - esac - fi - if test -n "$a_deplib" ; then - libname=`eval "\\$ECHO \"$libname_spec\""` - for i in $lib_search_path $sys_lib_search_path $shlib_search_path; do - potential_libs=`ls $i/$libname[.-]* 2>/dev/null` - for potent_lib in $potential_libs; do - potlib="$potent_lib" # see symlink-check above in file_magic test - if eval "\$ECHO \"$potent_lib\"" 2>/dev/null | $SED 10q | \ - $EGREP "$match_pattern_regex" > /dev/null; then - func_append newdeplibs " $a_deplib" - a_deplib="" - break 2 - fi - done - done - fi - if test -n "$a_deplib" ; then - droppeddeps=yes - echo - $ECHO "*** Warning: linker path does not have real file for library $a_deplib." - echo "*** I have the capability to make that library automatically link in when" - echo "*** you link to this library. But I can only do this if you have a" - echo "*** shared version of the library, which you do not appear to have" - echo "*** because I did check the linker path looking for a file starting" - if test -z "$potlib" ; then - $ECHO "*** with $libname but no candidates were found. (...for regex pattern test)" - else - $ECHO "*** with $libname and none of the candidates passed a file format test" - $ECHO "*** using a regex pattern. Last file checked: $potlib" - fi - fi - ;; - *) - # Add a -L argument. - func_append newdeplibs " $a_deplib" - ;; - esac - done # Gone through all deplibs. - ;; - none | unknown | *) - newdeplibs="" - tmp_deplibs=`$ECHO " $deplibs" | $SED 's/ -lc$//; s/ -[LR][^ ]*//g'` - if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then - for i in $predeps $postdeps ; do - # can't use Xsed below, because $i might contain '/' - tmp_deplibs=`$ECHO " $tmp_deplibs" | $SED "s,$i,,"` - done - fi - case $tmp_deplibs in - *[!\ \ ]*) - echo - if test "X$deplibs_check_method" = "Xnone"; then - echo "*** Warning: inter-library dependencies are not supported in this platform." - else - echo "*** Warning: inter-library dependencies are not known to be supported." - fi - echo "*** All declared inter-library dependencies are being dropped." - droppeddeps=yes - ;; - esac - ;; - esac - versuffix=$versuffix_save - major=$major_save - release=$release_save - libname=$libname_save - name=$name_save - - case $host in - *-*-rhapsody* | *-*-darwin1.[012]) - # On Rhapsody replace the C library with the System framework - newdeplibs=`$ECHO " $newdeplibs" | $SED 's/ -lc / System.ltframework /'` - ;; - esac - - if test "$droppeddeps" = yes; then - if test "$module" = yes; then - echo - echo "*** Warning: libtool could not satisfy all declared inter-library" - $ECHO "*** dependencies of module $libname. Therefore, libtool will create" - echo "*** a static module, that should work as long as the dlopening" - echo "*** application is linked with the -dlopen flag." - if test -z "$global_symbol_pipe"; then - echo - echo "*** However, this would only work if libtool was able to extract symbol" - echo "*** lists from a program, using \`nm' or equivalent, but libtool could" - echo "*** not find such a program. So, this module is probably useless." - echo "*** \`nm' from GNU binutils and a full rebuild may help." - fi - if test "$build_old_libs" = no; then - oldlibs="$output_objdir/$libname.$libext" - build_libtool_libs=module - build_old_libs=yes - else - build_libtool_libs=no - fi - else - echo "*** The inter-library dependencies that have been dropped here will be" - echo "*** automatically added whenever a program is linked with this library" - echo "*** or is declared to -dlopen it." - - if test "$allow_undefined" = no; then - echo - echo "*** Since this library must not contain undefined symbols," - echo "*** because either the platform does not support them or" - echo "*** it was explicitly requested with -no-undefined," - echo "*** libtool will only create a static version of it." - if test "$build_old_libs" = no; then - oldlibs="$output_objdir/$libname.$libext" - build_libtool_libs=module - build_old_libs=yes - else - build_libtool_libs=no - fi - fi - fi - fi - # Done checking deplibs! - deplibs=$newdeplibs - fi - # Time to change all our "foo.ltframework" stuff back to "-framework foo" - case $host in - *-*-darwin*) - newdeplibs=`$ECHO " $newdeplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` - new_inherited_linker_flags=`$ECHO " $new_inherited_linker_flags" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` - deplibs=`$ECHO " $deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` - ;; - esac - - # move library search paths that coincide with paths to not yet - # installed libraries to the beginning of the library search list - new_libs= - for path in $notinst_path; do - case " $new_libs " in - *" -L$path/$objdir "*) ;; - *) - case " $deplibs " in - *" -L$path/$objdir "*) - func_append new_libs " -L$path/$objdir" ;; - esac - ;; - esac - done - for deplib in $deplibs; do - case $deplib in - -L*) - case " $new_libs " in - *" $deplib "*) ;; - *) func_append new_libs " $deplib" ;; - esac - ;; - *) func_append new_libs " $deplib" ;; - esac - done - deplibs="$new_libs" - - # All the library-specific variables (install_libdir is set above). - library_names= - old_library= - dlname= - - # Test again, we may have decided not to build it any more - if test "$build_libtool_libs" = yes; then - if test "$hardcode_into_libs" = yes; then - # Hardcode the library paths - hardcode_libdirs= - dep_rpath= - rpath="$finalize_rpath" - test "$opt_mode" != relink && rpath="$compile_rpath$rpath" - for libdir in $rpath; do - if test -n "$hardcode_libdir_flag_spec"; then - if test -n "$hardcode_libdir_separator"; then - func_replace_sysroot "$libdir" - libdir=$func_replace_sysroot_result - if test -z "$hardcode_libdirs"; then - hardcode_libdirs="$libdir" - else - # Just accumulate the unique libdirs. - case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in - *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) - ;; - *) - func_append hardcode_libdirs "$hardcode_libdir_separator$libdir" - ;; - esac - fi - else - eval flag=\"$hardcode_libdir_flag_spec\" - func_append dep_rpath " $flag" - fi - elif test -n "$runpath_var"; then - case "$perm_rpath " in - *" $libdir "*) ;; - *) func_apped perm_rpath " $libdir" ;; - esac - fi - done - # Substitute the hardcoded libdirs into the rpath. - if test -n "$hardcode_libdir_separator" && - test -n "$hardcode_libdirs"; then - libdir="$hardcode_libdirs" - if test -n "$hardcode_libdir_flag_spec_ld"; then - eval dep_rpath=\"$hardcode_libdir_flag_spec_ld\" - else - eval dep_rpath=\"$hardcode_libdir_flag_spec\" - fi - fi - if test -n "$runpath_var" && test -n "$perm_rpath"; then - # We should set the runpath_var. - rpath= - for dir in $perm_rpath; do - func_append rpath "$dir:" - done - eval "$runpath_var='$rpath\$$runpath_var'; export $runpath_var" - fi - test -n "$dep_rpath" && deplibs="$dep_rpath $deplibs" - fi - - shlibpath="$finalize_shlibpath" - test "$opt_mode" != relink && shlibpath="$compile_shlibpath$shlibpath" - if test -n "$shlibpath"; then - eval "$shlibpath_var='$shlibpath\$$shlibpath_var'; export $shlibpath_var" - fi - - # Get the real and link names of the library. - eval shared_ext=\"$shrext_cmds\" - eval library_names=\"$library_names_spec\" - set dummy $library_names - shift - realname="$1" - shift - - if test -n "$soname_spec"; then - eval soname=\"$soname_spec\" - else - soname="$realname" - fi - if test -z "$dlname"; then - dlname=$soname - fi - - lib="$output_objdir/$realname" - linknames= - for link - do - func_append linknames " $link" - done - - # Use standard objects if they are pic - test -z "$pic_flag" && libobjs=`$ECHO "$libobjs" | $SP2NL | $SED "$lo2o" | $NL2SP` - test "X$libobjs" = "X " && libobjs= - - delfiles= - if test -n "$export_symbols" && test -n "$include_expsyms"; then - $opt_dry_run || cp "$export_symbols" "$output_objdir/$libname.uexp" - export_symbols="$output_objdir/$libname.uexp" - func_append delfiles " $export_symbols" - fi - - orig_export_symbols= - case $host_os in - cygwin* | mingw* | cegcc*) - if test -n "$export_symbols" && test -z "$export_symbols_regex"; then - # exporting using user supplied symfile - if test "x`$SED 1q $export_symbols`" != xEXPORTS; then - # and it's NOT already a .def file. Must figure out - # which of the given symbols are data symbols and tag - # them as such. So, trigger use of export_symbols_cmds. - # export_symbols gets reassigned inside the "prepare - # the list of exported symbols" if statement, so the - # include_expsyms logic still works. - orig_export_symbols="$export_symbols" - export_symbols= - always_export_symbols=yes - fi - fi - ;; - esac - - # Prepare the list of exported symbols - if test -z "$export_symbols"; then - if test "$always_export_symbols" = yes || test -n "$export_symbols_regex"; then - func_verbose "generating symbol list for \`$libname.la'" - export_symbols="$output_objdir/$libname.exp" - $opt_dry_run || $RM $export_symbols - cmds=$export_symbols_cmds - save_ifs="$IFS"; IFS='~' - for cmd1 in $cmds; do - IFS="$save_ifs" - # Take the normal branch if the nm_file_list_spec branch - # doesn't work or if tool conversion is not needed. - case $nm_file_list_spec~$to_tool_file_cmd in - *~func_convert_file_noop | *~func_convert_file_msys_to_w32 | ~*) - try_normal_branch=yes - eval cmd=\"$cmd1\" - func_len " $cmd" - len=$func_len_result - ;; - *) - try_normal_branch=no - ;; - esac - if test "$try_normal_branch" = yes \ - && { test "$len" -lt "$max_cmd_len" \ - || test "$max_cmd_len" -le -1; } - then - func_show_eval "$cmd" 'exit $?' - skipped_export=false - elif test -n "$nm_file_list_spec"; then - func_basename "$output" - output_la=$func_basename_result - save_libobjs=$libobjs - save_output=$output - output=${output_objdir}/${output_la}.nm - func_to_tool_file "$output" - libobjs=$nm_file_list_spec$func_to_tool_file_result - func_append delfiles " $output" - func_verbose "creating $NM input file list: $output" - for obj in $save_libobjs; do - func_to_tool_file "$obj" - $ECHO "$func_to_tool_file_result" - done > "$output" - eval cmd=\"$cmd1\" - func_show_eval "$cmd" 'exit $?' - output=$save_output - libobjs=$save_libobjs - skipped_export=false - else - # The command line is too long to execute in one step. - func_verbose "using reloadable object file for export list..." - skipped_export=: - # Break out early, otherwise skipped_export may be - # set to false by a later but shorter cmd. - break - fi - done - IFS="$save_ifs" - if test -n "$export_symbols_regex" && test "X$skipped_export" != "X:"; then - func_show_eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"' - func_show_eval '$MV "${export_symbols}T" "$export_symbols"' - fi - fi - fi - - if test -n "$export_symbols" && test -n "$include_expsyms"; then - tmp_export_symbols="$export_symbols" - test -n "$orig_export_symbols" && tmp_export_symbols="$orig_export_symbols" - $opt_dry_run || eval '$ECHO "$include_expsyms" | $SP2NL >> "$tmp_export_symbols"' - fi - - if test "X$skipped_export" != "X:" && test -n "$orig_export_symbols"; then - # The given exports_symbols file has to be filtered, so filter it. - func_verbose "filter symbol list for \`$libname.la' to tag DATA exports" - # FIXME: $output_objdir/$libname.filter potentially contains lots of - # 's' commands which not all seds can handle. GNU sed should be fine - # though. Also, the filter scales superlinearly with the number of - # global variables. join(1) would be nice here, but unfortunately - # isn't a blessed tool. - $opt_dry_run || $SED -e '/[ ,]DATA/!d;s,\(.*\)\([ \,].*\),s|^\1$|\1\2|,' < $export_symbols > $output_objdir/$libname.filter - func_append delfiles " $export_symbols $output_objdir/$libname.filter" - export_symbols=$output_objdir/$libname.def - $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols - fi - - tmp_deplibs= - for test_deplib in $deplibs; do - case " $convenience " in - *" $test_deplib "*) ;; - *) - func_append tmp_deplibs " $test_deplib" - ;; - esac - done - deplibs="$tmp_deplibs" - - if test -n "$convenience"; then - if test -n "$whole_archive_flag_spec" && - test "$compiler_needs_object" = yes && - test -z "$libobjs"; then - # extract the archives, so we have objects to list. - # TODO: could optimize this to just extract one archive. - whole_archive_flag_spec= - fi - if test -n "$whole_archive_flag_spec"; then - save_libobjs=$libobjs - eval libobjs=\"\$libobjs $whole_archive_flag_spec\" - test "X$libobjs" = "X " && libobjs= - else - gentop="$output_objdir/${outputname}x" - func_append generated " $gentop" - - func_extract_archives $gentop $convenience - func_append libobjs " $func_extract_archives_result" - test "X$libobjs" = "X " && libobjs= - fi - fi - - if test "$thread_safe" = yes && test -n "$thread_safe_flag_spec"; then - eval flag=\"$thread_safe_flag_spec\" - func_append linker_flags " $flag" - fi - - # Make a backup of the uninstalled library when relinking - if test "$opt_mode" = relink; then - $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}U && $MV $realname ${realname}U)' || exit $? - fi - - # Do each of the archive commands. - if test "$module" = yes && test -n "$module_cmds" ; then - if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then - eval test_cmds=\"$module_expsym_cmds\" - cmds=$module_expsym_cmds - else - eval test_cmds=\"$module_cmds\" - cmds=$module_cmds - fi - else - if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then - eval test_cmds=\"$archive_expsym_cmds\" - cmds=$archive_expsym_cmds - else - eval test_cmds=\"$archive_cmds\" - cmds=$archive_cmds - fi - fi - - if test "X$skipped_export" != "X:" && - func_len " $test_cmds" && - len=$func_len_result && - test "$len" -lt "$max_cmd_len" || test "$max_cmd_len" -le -1; then - : - else - # The command line is too long to link in one step, link piecewise - # or, if using GNU ld and skipped_export is not :, use a linker - # script. - - # Save the value of $output and $libobjs because we want to - # use them later. If we have whole_archive_flag_spec, we - # want to use save_libobjs as it was before - # whole_archive_flag_spec was expanded, because we can't - # assume the linker understands whole_archive_flag_spec. - # This may have to be revisited, in case too many - # convenience libraries get linked in and end up exceeding - # the spec. - if test -z "$convenience" || test -z "$whole_archive_flag_spec"; then - save_libobjs=$libobjs - fi - save_output=$output - func_basename "$output" - output_la=$func_basename_result - - # Clear the reloadable object creation command queue and - # initialize k to one. - test_cmds= - concat_cmds= - objlist= - last_robj= - k=1 - - if test -n "$save_libobjs" && test "X$skipped_export" != "X:" && test "$with_gnu_ld" = yes; then - output=${output_objdir}/${output_la}.lnkscript - func_verbose "creating GNU ld script: $output" - echo 'INPUT (' > $output - for obj in $save_libobjs - do - func_to_tool_file "$obj" - $ECHO "$func_to_tool_file_result" >> $output - done - echo ')' >> $output - func_append delfiles " $output" - func_to_tool_file "$output" - output=$func_to_tool_file_result - elif test -n "$save_libobjs" && test "X$skipped_export" != "X:" && test "X$file_list_spec" != X; then - output=${output_objdir}/${output_la}.lnk - func_verbose "creating linker input file list: $output" - : > $output - set x $save_libobjs - shift - firstobj= - if test "$compiler_needs_object" = yes; then - firstobj="$1 " - shift - fi - for obj - do - func_to_tool_file "$obj" - $ECHO "$func_to_tool_file_result" >> $output - done - func_append delfiles " $output" - func_to_tool_file "$output" - output=$firstobj\"$file_list_spec$func_to_tool_file_result\" - else - if test -n "$save_libobjs"; then - func_verbose "creating reloadable object files..." - output=$output_objdir/$output_la-${k}.$objext - eval test_cmds=\"$reload_cmds\" - func_len " $test_cmds" - len0=$func_len_result - len=$len0 - - # Loop over the list of objects to be linked. - for obj in $save_libobjs - do - func_len " $obj" - func_arith $len + $func_len_result - len=$func_arith_result - if test "X$objlist" = X || - test "$len" -lt "$max_cmd_len"; then - func_append objlist " $obj" - else - # The command $test_cmds is almost too long, add a - # command to the queue. - if test "$k" -eq 1 ; then - # The first file doesn't have a previous command to add. - reload_objs=$objlist - eval concat_cmds=\"$reload_cmds\" - else - # All subsequent reloadable object files will link in - # the last one created. - reload_objs="$objlist $last_robj" - eval concat_cmds=\"\$concat_cmds~$reload_cmds~\$RM $last_robj\" - fi - last_robj=$output_objdir/$output_la-${k}.$objext - func_arith $k + 1 - k=$func_arith_result - output=$output_objdir/$output_la-${k}.$objext - objlist=" $obj" - func_len " $last_robj" - func_arith $len0 + $func_len_result - len=$func_arith_result - fi - done - # Handle the remaining objects by creating one last - # reloadable object file. All subsequent reloadable object - # files will link in the last one created. - test -z "$concat_cmds" || concat_cmds=$concat_cmds~ - reload_objs="$objlist $last_robj" - eval concat_cmds=\"\${concat_cmds}$reload_cmds\" - if test -n "$last_robj"; then - eval concat_cmds=\"\${concat_cmds}~\$RM $last_robj\" - fi - func_append delfiles " $output" - - else - output= - fi - - if ${skipped_export-false}; then - func_verbose "generating symbol list for \`$libname.la'" - export_symbols="$output_objdir/$libname.exp" - $opt_dry_run || $RM $export_symbols - libobjs=$output - # Append the command to create the export file. - test -z "$concat_cmds" || concat_cmds=$concat_cmds~ - eval concat_cmds=\"\$concat_cmds$export_symbols_cmds\" - if test -n "$last_robj"; then - eval concat_cmds=\"\$concat_cmds~\$RM $last_robj\" - fi - fi - - test -n "$save_libobjs" && - func_verbose "creating a temporary reloadable object file: $output" - - # Loop through the commands generated above and execute them. - save_ifs="$IFS"; IFS='~' - for cmd in $concat_cmds; do - IFS="$save_ifs" - $opt_silent || { - func_quote_for_expand "$cmd" - eval "func_echo $func_quote_for_expand_result" - } - $opt_dry_run || eval "$cmd" || { - lt_exit=$? - - # Restore the uninstalled library and exit - if test "$opt_mode" = relink; then - ( cd "$output_objdir" && \ - $RM "${realname}T" && \ - $MV "${realname}U" "$realname" ) - fi - - exit $lt_exit - } - done - IFS="$save_ifs" - - if test -n "$export_symbols_regex" && ${skipped_export-false}; then - func_show_eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"' - func_show_eval '$MV "${export_symbols}T" "$export_symbols"' - fi - fi - - if ${skipped_export-false}; then - if test -n "$export_symbols" && test -n "$include_expsyms"; then - tmp_export_symbols="$export_symbols" - test -n "$orig_export_symbols" && tmp_export_symbols="$orig_export_symbols" - $opt_dry_run || eval '$ECHO "$include_expsyms" | $SP2NL >> "$tmp_export_symbols"' - fi - - if test -n "$orig_export_symbols"; then - # The given exports_symbols file has to be filtered, so filter it. - func_verbose "filter symbol list for \`$libname.la' to tag DATA exports" - # FIXME: $output_objdir/$libname.filter potentially contains lots of - # 's' commands which not all seds can handle. GNU sed should be fine - # though. Also, the filter scales superlinearly with the number of - # global variables. join(1) would be nice here, but unfortunately - # isn't a blessed tool. - $opt_dry_run || $SED -e '/[ ,]DATA/!d;s,\(.*\)\([ \,].*\),s|^\1$|\1\2|,' < $export_symbols > $output_objdir/$libname.filter - func_append delfiles " $export_symbols $output_objdir/$libname.filter" - export_symbols=$output_objdir/$libname.def - $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols - fi - fi - - libobjs=$output - # Restore the value of output. - output=$save_output - - if test -n "$convenience" && test -n "$whole_archive_flag_spec"; then - eval libobjs=\"\$libobjs $whole_archive_flag_spec\" - test "X$libobjs" = "X " && libobjs= - fi - # Expand the library linking commands again to reset the - # value of $libobjs for piecewise linking. - - # Do each of the archive commands. - if test "$module" = yes && test -n "$module_cmds" ; then - if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then - cmds=$module_expsym_cmds - else - cmds=$module_cmds - fi - else - if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then - cmds=$archive_expsym_cmds - else - cmds=$archive_cmds - fi - fi - fi - - if test -n "$delfiles"; then - # Append the command to remove temporary files to $cmds. - eval cmds=\"\$cmds~\$RM $delfiles\" - fi - - # Add any objects from preloaded convenience libraries - if test -n "$dlprefiles"; then - gentop="$output_objdir/${outputname}x" - func_append generated " $gentop" - - func_extract_archives $gentop $dlprefiles - func_append libobjs " $func_extract_archives_result" - test "X$libobjs" = "X " && libobjs= - fi - - save_ifs="$IFS"; IFS='~' - for cmd in $cmds; do - IFS="$save_ifs" - eval cmd=\"$cmd\" - $opt_silent || { - func_quote_for_expand "$cmd" - eval "func_echo $func_quote_for_expand_result" - } - $opt_dry_run || eval "$cmd" || { - lt_exit=$? - - # Restore the uninstalled library and exit - if test "$opt_mode" = relink; then - ( cd "$output_objdir" && \ - $RM "${realname}T" && \ - $MV "${realname}U" "$realname" ) - fi - - exit $lt_exit - } - done - IFS="$save_ifs" - - # Restore the uninstalled library and exit - if test "$opt_mode" = relink; then - $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}T && $MV $realname ${realname}T && $MV ${realname}U $realname)' || exit $? - - if test -n "$convenience"; then - if test -z "$whole_archive_flag_spec"; then - func_show_eval '${RM}r "$gentop"' - fi - fi - - exit $EXIT_SUCCESS - fi - - # Create links to the real library. - for linkname in $linknames; do - if test "$realname" != "$linkname"; then - func_show_eval '(cd "$output_objdir" && $RM "$linkname" && $LN_S "$realname" "$linkname")' 'exit $?' - fi - done - - # If -module or -export-dynamic was specified, set the dlname. - if test "$module" = yes || test "$export_dynamic" = yes; then - # On all known operating systems, these are identical. - dlname="$soname" - fi - fi - ;; - - obj) - if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then - func_warning "\`-dlopen' is ignored for objects" - fi - - case " $deplibs" in - *\ -l* | *\ -L*) - func_warning "\`-l' and \`-L' are ignored for objects" ;; - esac - - test -n "$rpath" && \ - func_warning "\`-rpath' is ignored for objects" - - test -n "$xrpath" && \ - func_warning "\`-R' is ignored for objects" - - test -n "$vinfo" && \ - func_warning "\`-version-info' is ignored for objects" - - test -n "$release" && \ - func_warning "\`-release' is ignored for objects" - - case $output in - *.lo) - test -n "$objs$old_deplibs" && \ - func_fatal_error "cannot build library object \`$output' from non-libtool objects" - - libobj=$output - func_lo2o "$libobj" - obj=$func_lo2o_result - ;; - *) - libobj= - obj="$output" - ;; - esac - - # Delete the old objects. - $opt_dry_run || $RM $obj $libobj - - # Objects from convenience libraries. This assumes - # single-version convenience libraries. Whenever we create - # different ones for PIC/non-PIC, this we'll have to duplicate - # the extraction. - reload_conv_objs= - gentop= - # reload_cmds runs $LD directly, so let us get rid of - # -Wl from whole_archive_flag_spec and hope we can get by with - # turning comma into space.. - wl= - - if test -n "$convenience"; then - if test -n "$whole_archive_flag_spec"; then - eval tmp_whole_archive_flags=\"$whole_archive_flag_spec\" - reload_conv_objs=$reload_objs\ `$ECHO "$tmp_whole_archive_flags" | $SED 's|,| |g'` - else - gentop="$output_objdir/${obj}x" - func_append generated " $gentop" - - func_extract_archives $gentop $convenience - reload_conv_objs="$reload_objs $func_extract_archives_result" - fi - fi - - # If we're not building shared, we need to use non_pic_objs - test "$build_libtool_libs" != yes && libobjs="$non_pic_objects" - - # Create the old-style object. - reload_objs="$objs$old_deplibs "`$ECHO "$libobjs" | $SP2NL | $SED "/\.${libext}$/d; /\.lib$/d; $lo2o" | $NL2SP`" $reload_conv_objs" ### testsuite: skip nested quoting test - - output="$obj" - func_execute_cmds "$reload_cmds" 'exit $?' - - # Exit if we aren't doing a library object file. - if test -z "$libobj"; then - if test -n "$gentop"; then - func_show_eval '${RM}r "$gentop"' - fi - - exit $EXIT_SUCCESS - fi - - if test "$build_libtool_libs" != yes; then - if test -n "$gentop"; then - func_show_eval '${RM}r "$gentop"' - fi - - # Create an invalid libtool object if no PIC, so that we don't - # accidentally link it into a program. - # $show "echo timestamp > $libobj" - # $opt_dry_run || eval "echo timestamp > $libobj" || exit $? - exit $EXIT_SUCCESS - fi - - if test -n "$pic_flag" || test "$pic_mode" != default; then - # Only do commands if we really have different PIC objects. - reload_objs="$libobjs $reload_conv_objs" - output="$libobj" - func_execute_cmds "$reload_cmds" 'exit $?' - fi - - if test -n "$gentop"; then - func_show_eval '${RM}r "$gentop"' - fi - - exit $EXIT_SUCCESS - ;; - - prog) - case $host in - *cygwin*) func_stripname '' '.exe' "$output" - output=$func_stripname_result.exe;; - esac - test -n "$vinfo" && \ - func_warning "\`-version-info' is ignored for programs" - - test -n "$release" && \ - func_warning "\`-release' is ignored for programs" - - test "$preload" = yes \ - && test "$dlopen_support" = unknown \ - && test "$dlopen_self" = unknown \ - && test "$dlopen_self_static" = unknown && \ - func_warning "\`LT_INIT([dlopen])' not used. Assuming no dlopen support." - - case $host in - *-*-rhapsody* | *-*-darwin1.[012]) - # On Rhapsody replace the C library is the System framework - compile_deplibs=`$ECHO " $compile_deplibs" | $SED 's/ -lc / System.ltframework /'` - finalize_deplibs=`$ECHO " $finalize_deplibs" | $SED 's/ -lc / System.ltframework /'` - ;; - esac - - case $host in - *-*-darwin*) - # Don't allow lazy linking, it breaks C++ global constructors - # But is supposedly fixed on 10.4 or later (yay!). - if test "$tagname" = CXX ; then - case ${MACOSX_DEPLOYMENT_TARGET-10.0} in - 10.[0123]) - func_append compile_command " ${wl}-bind_at_load" - func_append finalize_command " ${wl}-bind_at_load" - ;; - esac - fi - # Time to change all our "foo.ltframework" stuff back to "-framework foo" - compile_deplibs=`$ECHO " $compile_deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` - finalize_deplibs=`$ECHO " $finalize_deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` - ;; - esac - - - # move library search paths that coincide with paths to not yet - # installed libraries to the beginning of the library search list - new_libs= - for path in $notinst_path; do - case " $new_libs " in - *" -L$path/$objdir "*) ;; - *) - case " $compile_deplibs " in - *" -L$path/$objdir "*) - func_append new_libs " -L$path/$objdir" ;; - esac - ;; - esac - done - for deplib in $compile_deplibs; do - case $deplib in - -L*) - case " $new_libs " in - *" $deplib "*) ;; - *) func_append new_libs " $deplib" ;; - esac - ;; - *) func_append new_libs " $deplib" ;; - esac - done - compile_deplibs="$new_libs" - - - func_append compile_command " $compile_deplibs" - func_append finalize_command " $finalize_deplibs" - - if test -n "$rpath$xrpath"; then - # If the user specified any rpath flags, then add them. - for libdir in $rpath $xrpath; do - # This is the magic to use -rpath. - case "$finalize_rpath " in - *" $libdir "*) ;; - *) func_append finalize_rpath " $libdir" ;; - esac - done - fi - - # Now hardcode the library paths - rpath= - hardcode_libdirs= - for libdir in $compile_rpath $finalize_rpath; do - if test -n "$hardcode_libdir_flag_spec"; then - if test -n "$hardcode_libdir_separator"; then - if test -z "$hardcode_libdirs"; then - hardcode_libdirs="$libdir" - else - # Just accumulate the unique libdirs. - case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in - *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) - ;; - *) - func_append hardcode_libdirs "$hardcode_libdir_separator$libdir" - ;; - esac - fi - else - eval flag=\"$hardcode_libdir_flag_spec\" - func_append rpath " $flag" - fi - elif test -n "$runpath_var"; then - case "$perm_rpath " in - *" $libdir "*) ;; - *) func_append perm_rpath " $libdir" ;; - esac - fi - case $host in - *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) - testbindir=`${ECHO} "$libdir" | ${SED} -e 's*/lib$*/bin*'` - case :$dllsearchpath: in - *":$libdir:"*) ;; - ::) dllsearchpath=$libdir;; - *) func_append dllsearchpath ":$libdir";; - esac - case :$dllsearchpath: in - *":$testbindir:"*) ;; - ::) dllsearchpath=$testbindir;; - *) func_append dllsearchpath ":$testbindir";; - esac - ;; - esac - done - # Substitute the hardcoded libdirs into the rpath. - if test -n "$hardcode_libdir_separator" && - test -n "$hardcode_libdirs"; then - libdir="$hardcode_libdirs" - eval rpath=\" $hardcode_libdir_flag_spec\" - fi - compile_rpath="$rpath" - - rpath= - hardcode_libdirs= - for libdir in $finalize_rpath; do - if test -n "$hardcode_libdir_flag_spec"; then - if test -n "$hardcode_libdir_separator"; then - if test -z "$hardcode_libdirs"; then - hardcode_libdirs="$libdir" - else - # Just accumulate the unique libdirs. - case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in - *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) - ;; - *) - func_append hardcode_libdirs "$hardcode_libdir_separator$libdir" - ;; - esac - fi - else - eval flag=\"$hardcode_libdir_flag_spec\" - func_append rpath " $flag" - fi - elif test -n "$runpath_var"; then - case "$finalize_perm_rpath " in - *" $libdir "*) ;; - *) func_append finalize_perm_rpath " $libdir" ;; - esac - fi - done - # Substitute the hardcoded libdirs into the rpath. - if test -n "$hardcode_libdir_separator" && - test -n "$hardcode_libdirs"; then - libdir="$hardcode_libdirs" - eval rpath=\" $hardcode_libdir_flag_spec\" - fi - finalize_rpath="$rpath" - - if test -n "$libobjs" && test "$build_old_libs" = yes; then - # Transform all the library objects into standard objects. - compile_command=`$ECHO "$compile_command" | $SP2NL | $SED "$lo2o" | $NL2SP` - finalize_command=`$ECHO "$finalize_command" | $SP2NL | $SED "$lo2o" | $NL2SP` - fi - - func_generate_dlsyms "$outputname" "@PROGRAM@" "no" - - # template prelinking step - if test -n "$prelink_cmds"; then - func_execute_cmds "$prelink_cmds" 'exit $?' - fi - - wrappers_required=yes - case $host in - *cegcc* | *mingw32ce*) - # Disable wrappers for cegcc and mingw32ce hosts, we are cross compiling anyway. - wrappers_required=no - ;; - *cygwin* | *mingw* ) - if test "$build_libtool_libs" != yes; then - wrappers_required=no - fi - ;; - *) - if test "$need_relink" = no || test "$build_libtool_libs" != yes; then - wrappers_required=no - fi - ;; - esac - if test "$wrappers_required" = no; then - # Replace the output file specification. - compile_command=`$ECHO "$compile_command" | $SED 's%@OUTPUT@%'"$output"'%g'` - link_command="$compile_command$compile_rpath" - - # We have no uninstalled library dependencies, so finalize right now. - exit_status=0 - func_show_eval "$link_command" 'exit_status=$?' - - if test -n "$postlink_cmds"; then - func_to_tool_file "$output" - postlink_cmds=`func_echo_all "$postlink_cmds" | $SED -e 's%@OUTPUT@%'"$output"'%g' -e 's%@TOOL_OUTPUT@%'"$func_to_tool_file_result"'%g'` - func_execute_cmds "$postlink_cmds" 'exit $?' - fi - - # Delete the generated files. - if test -f "$output_objdir/${outputname}S.${objext}"; then - func_show_eval '$RM "$output_objdir/${outputname}S.${objext}"' - fi - - exit $exit_status - fi - - if test -n "$compile_shlibpath$finalize_shlibpath"; then - compile_command="$shlibpath_var=\"$compile_shlibpath$finalize_shlibpath\$$shlibpath_var\" $compile_command" - fi - if test -n "$finalize_shlibpath"; then - finalize_command="$shlibpath_var=\"$finalize_shlibpath\$$shlibpath_var\" $finalize_command" - fi - - compile_var= - finalize_var= - if test -n "$runpath_var"; then - if test -n "$perm_rpath"; then - # We should set the runpath_var. - rpath= - for dir in $perm_rpath; do - func_append rpath "$dir:" - done - compile_var="$runpath_var=\"$rpath\$$runpath_var\" " - fi - if test -n "$finalize_perm_rpath"; then - # We should set the runpath_var. - rpath= - for dir in $finalize_perm_rpath; do - func_append rpath "$dir:" - done - finalize_var="$runpath_var=\"$rpath\$$runpath_var\" " - fi - fi - - if test "$no_install" = yes; then - # We don't need to create a wrapper script. - link_command="$compile_var$compile_command$compile_rpath" - # Replace the output file specification. - link_command=`$ECHO "$link_command" | $SED 's%@OUTPUT@%'"$output"'%g'` - # Delete the old output file. - $opt_dry_run || $RM $output - # Link the executable and exit - func_show_eval "$link_command" 'exit $?' - - if test -n "$postlink_cmds"; then - func_to_tool_file "$output" - postlink_cmds=`func_echo_all "$postlink_cmds" | $SED -e 's%@OUTPUT@%'"$output"'%g' -e 's%@TOOL_OUTPUT@%'"$func_to_tool_file_result"'%g'` - func_execute_cmds "$postlink_cmds" 'exit $?' - fi - - exit $EXIT_SUCCESS - fi - - if test "$hardcode_action" = relink; then - # Fast installation is not supported - link_command="$compile_var$compile_command$compile_rpath" - relink_command="$finalize_var$finalize_command$finalize_rpath" - - func_warning "this platform does not like uninstalled shared libraries" - func_warning "\`$output' will be relinked during installation" - else - if test "$fast_install" != no; then - link_command="$finalize_var$compile_command$finalize_rpath" - if test "$fast_install" = yes; then - relink_command=`$ECHO "$compile_var$compile_command$compile_rpath" | $SED 's%@OUTPUT@%\$progdir/\$file%g'` - else - # fast_install is set to needless - relink_command= - fi - else - link_command="$compile_var$compile_command$compile_rpath" - relink_command="$finalize_var$finalize_command$finalize_rpath" - fi - fi - - # Replace the output file specification. - link_command=`$ECHO "$link_command" | $SED 's%@OUTPUT@%'"$output_objdir/$outputname"'%g'` - - # Delete the old output files. - $opt_dry_run || $RM $output $output_objdir/$outputname $output_objdir/lt-$outputname - - func_show_eval "$link_command" 'exit $?' - - if test -n "$postlink_cmds"; then - func_to_tool_file "$output_objdir/$outputname" - postlink_cmds=`func_echo_all "$postlink_cmds" | $SED -e 's%@OUTPUT@%'"$output_objdir/$outputname"'%g' -e 's%@TOOL_OUTPUT@%'"$func_to_tool_file_result"'%g'` - func_execute_cmds "$postlink_cmds" 'exit $?' - fi - - # Now create the wrapper script. - func_verbose "creating $output" - - # Quote the relink command for shipping. - if test -n "$relink_command"; then - # Preserve any variables that may affect compiler behavior - for var in $variables_saved_for_relink; do - if eval test -z \"\${$var+set}\"; then - relink_command="{ test -z \"\${$var+set}\" || $lt_unset $var || { $var=; export $var; }; }; $relink_command" - elif eval var_value=\$$var; test -z "$var_value"; then - relink_command="$var=; export $var; $relink_command" - else - func_quote_for_eval "$var_value" - relink_command="$var=$func_quote_for_eval_result; export $var; $relink_command" - fi - done - relink_command="(cd `pwd`; $relink_command)" - relink_command=`$ECHO "$relink_command" | $SED "$sed_quote_subst"` - fi - - # Only actually do things if not in dry run mode. - $opt_dry_run || { - # win32 will think the script is a binary if it has - # a .exe suffix, so we strip it off here. - case $output in - *.exe) func_stripname '' '.exe' "$output" - output=$func_stripname_result ;; - esac - # test for cygwin because mv fails w/o .exe extensions - case $host in - *cygwin*) - exeext=.exe - func_stripname '' '.exe' "$outputname" - outputname=$func_stripname_result ;; - *) exeext= ;; - esac - case $host in - *cygwin* | *mingw* ) - func_dirname_and_basename "$output" "" "." - output_name=$func_basename_result - output_path=$func_dirname_result - cwrappersource="$output_path/$objdir/lt-$output_name.c" - cwrapper="$output_path/$output_name.exe" - $RM $cwrappersource $cwrapper - trap "$RM $cwrappersource $cwrapper; exit $EXIT_FAILURE" 1 2 15 - - func_emit_cwrapperexe_src > $cwrappersource - - # The wrapper executable is built using the $host compiler, - # because it contains $host paths and files. If cross- - # compiling, it, like the target executable, must be - # executed on the $host or under an emulation environment. - $opt_dry_run || { - $LTCC $LTCFLAGS -o $cwrapper $cwrappersource - $STRIP $cwrapper - } - - # Now, create the wrapper script for func_source use: - func_ltwrapper_scriptname $cwrapper - $RM $func_ltwrapper_scriptname_result - trap "$RM $func_ltwrapper_scriptname_result; exit $EXIT_FAILURE" 1 2 15 - $opt_dry_run || { - # note: this script will not be executed, so do not chmod. - if test "x$build" = "x$host" ; then - $cwrapper --lt-dump-script > $func_ltwrapper_scriptname_result - else - func_emit_wrapper no > $func_ltwrapper_scriptname_result - fi - } - ;; - * ) - $RM $output - trap "$RM $output; exit $EXIT_FAILURE" 1 2 15 - - func_emit_wrapper no > $output - chmod +x $output - ;; - esac - } - exit $EXIT_SUCCESS - ;; - esac - - # See if we need to build an old-fashioned archive. - for oldlib in $oldlibs; do - - if test "$build_libtool_libs" = convenience; then - oldobjs="$libobjs_save $symfileobj" - addlibs="$convenience" - build_libtool_libs=no - else - if test "$build_libtool_libs" = module; then - oldobjs="$libobjs_save" - build_libtool_libs=no - else - oldobjs="$old_deplibs $non_pic_objects" - if test "$preload" = yes && test -f "$symfileobj"; then - func_append oldobjs " $symfileobj" - fi - fi - addlibs="$old_convenience" - fi - - if test -n "$addlibs"; then - gentop="$output_objdir/${outputname}x" - func_append generated " $gentop" - - func_extract_archives $gentop $addlibs - func_append oldobjs " $func_extract_archives_result" - fi - - # Do each command in the archive commands. - if test -n "$old_archive_from_new_cmds" && test "$build_libtool_libs" = yes; then - cmds=$old_archive_from_new_cmds - else - - # Add any objects from preloaded convenience libraries - if test -n "$dlprefiles"; then - gentop="$output_objdir/${outputname}x" - func_append generated " $gentop" - - func_extract_archives $gentop $dlprefiles - func_append oldobjs " $func_extract_archives_result" - fi - - # POSIX demands no paths to be encoded in archives. We have - # to avoid creating archives with duplicate basenames if we - # might have to extract them afterwards, e.g., when creating a - # static archive out of a convenience library, or when linking - # the entirety of a libtool archive into another (currently - # not supported by libtool). - if (for obj in $oldobjs - do - func_basename "$obj" - $ECHO "$func_basename_result" - done | sort | sort -uc >/dev/null 2>&1); then - : - else - echo "copying selected object files to avoid basename conflicts..." - gentop="$output_objdir/${outputname}x" - func_append generated " $gentop" - func_mkdir_p "$gentop" - save_oldobjs=$oldobjs - oldobjs= - counter=1 - for obj in $save_oldobjs - do - func_basename "$obj" - objbase="$func_basename_result" - case " $oldobjs " in - " ") oldobjs=$obj ;; - *[\ /]"$objbase "*) - while :; do - # Make sure we don't pick an alternate name that also - # overlaps. - newobj=lt$counter-$objbase - func_arith $counter + 1 - counter=$func_arith_result - case " $oldobjs " in - *[\ /]"$newobj "*) ;; - *) if test ! -f "$gentop/$newobj"; then break; fi ;; - esac - done - func_show_eval "ln $obj $gentop/$newobj || cp $obj $gentop/$newobj" - func_append oldobjs " $gentop/$newobj" - ;; - *) func_append oldobjs " $obj" ;; - esac - done - fi - eval cmds=\"$old_archive_cmds\" - - func_len " $cmds" - len=$func_len_result - if test "$len" -lt "$max_cmd_len" || test "$max_cmd_len" -le -1; then - cmds=$old_archive_cmds - elif test -n "$archiver_list_spec"; then - func_verbose "using command file archive linking..." - for obj in $oldobjs - do - func_to_tool_file "$obj" - $ECHO "$func_to_tool_file_result" - done > $output_objdir/$libname.libcmd - func_to_tool_file "$output_objdir/$libname.libcmd" - oldobjs=" $archiver_list_spec$func_to_tool_file_result" - cmds=$old_archive_cmds - else - # the command line is too long to link in one step, link in parts - func_verbose "using piecewise archive linking..." - save_RANLIB=$RANLIB - RANLIB=: - objlist= - concat_cmds= - save_oldobjs=$oldobjs - oldobjs= - # Is there a better way of finding the last object in the list? - for obj in $save_oldobjs - do - last_oldobj=$obj - done - eval test_cmds=\"$old_archive_cmds\" - func_len " $test_cmds" - len0=$func_len_result - len=$len0 - for obj in $save_oldobjs - do - func_len " $obj" - func_arith $len + $func_len_result - len=$func_arith_result - func_append objlist " $obj" - if test "$len" -lt "$max_cmd_len"; then - : - else - # the above command should be used before it gets too long - oldobjs=$objlist - if test "$obj" = "$last_oldobj" ; then - RANLIB=$save_RANLIB - fi - test -z "$concat_cmds" || concat_cmds=$concat_cmds~ - eval concat_cmds=\"\${concat_cmds}$old_archive_cmds\" - objlist= - len=$len0 - fi - done - RANLIB=$save_RANLIB - oldobjs=$objlist - if test "X$oldobjs" = "X" ; then - eval cmds=\"\$concat_cmds\" - else - eval cmds=\"\$concat_cmds~\$old_archive_cmds\" - fi - fi - fi - func_execute_cmds "$cmds" 'exit $?' - done - - test -n "$generated" && \ - func_show_eval "${RM}r$generated" - - # Now create the libtool archive. - case $output in - *.la) - old_library= - test "$build_old_libs" = yes && old_library="$libname.$libext" - func_verbose "creating $output" - - # Preserve any variables that may affect compiler behavior - for var in $variables_saved_for_relink; do - if eval test -z \"\${$var+set}\"; then - relink_command="{ test -z \"\${$var+set}\" || $lt_unset $var || { $var=; export $var; }; }; $relink_command" - elif eval var_value=\$$var; test -z "$var_value"; then - relink_command="$var=; export $var; $relink_command" - else - func_quote_for_eval "$var_value" - relink_command="$var=$func_quote_for_eval_result; export $var; $relink_command" - fi - done - # Quote the link command for shipping. - relink_command="(cd `pwd`; $SHELL $progpath $preserve_args --mode=relink $libtool_args @inst_prefix_dir@)" - relink_command=`$ECHO "$relink_command" | $SED "$sed_quote_subst"` - if test "$hardcode_automatic" = yes ; then - relink_command= - fi - - # Only create the output if not a dry run. - $opt_dry_run || { - for installed in no yes; do - if test "$installed" = yes; then - if test -z "$install_libdir"; then - break - fi - output="$output_objdir/$outputname"i - # Replace all uninstalled libtool libraries with the installed ones - newdependency_libs= - for deplib in $dependency_libs; do - case $deplib in - *.la) - func_basename "$deplib" - name="$func_basename_result" - eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $deplib` - test -z "$libdir" && \ - func_fatal_error "\`$deplib' is not a valid libtool archive" - func_append newdependency_libs " ${lt_sysroot:+=}$libdir/$name" - ;; - -L*) - func_stripname -L '' "$deplib" - func_replace_sysroot "$func_stripname_result" - func_append newdependency_libs " -L$func_replace_sysroot_result" - ;; - -R*) - func_stripname -R '' "$deplib" - func_replace_sysroot "$func_stripname_result" - func_append newdependency_libs " -R$func_replace_sysroot_result" - ;; - *) func_append newdependency_libs " $deplib" ;; - esac - done - dependency_libs="$newdependency_libs" - newdlfiles= - - for lib in $dlfiles; do - case $lib in - *.la) - func_basename "$lib" - name="$func_basename_result" - eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $lib` - test -z "$libdir" && \ - func_fatal_error "\`$lib' is not a valid libtool archive" - func_append newdlfiles " ${lt_sysroot:+=}$libdir/$name" - ;; - *) func_append newdlfiles " $lib" ;; - esac - done - dlfiles="$newdlfiles" - newdlprefiles= - for lib in $dlprefiles; do - case $lib in - *.la) - # Only pass preopened files to the pseudo-archive (for - # eventual linking with the app. that links it) if we - # didn't already link the preopened objects directly into - # the library: - func_basename "$lib" - name="$func_basename_result" - eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $lib` - test -z "$libdir" && \ - func_fatal_error "\`$lib' is not a valid libtool archive" - func_append newdlprefiles " ${lt_sysroot:+=}$libdir/$name" - ;; - esac - done - dlprefiles="$newdlprefiles" - else - newdlfiles= - for lib in $dlfiles; do - case $lib in - [\\/]* | [A-Za-z]:[\\/]*) abs="$lib" ;; - *) abs=`pwd`"/$lib" ;; - esac - func_append newdlfiles " $abs" - done - dlfiles="$newdlfiles" - newdlprefiles= - for lib in $dlprefiles; do - case $lib in - [\\/]* | [A-Za-z]:[\\/]*) abs="$lib" ;; - *) abs=`pwd`"/$lib" ;; - esac - func_append newdlprefiles " $abs" - done - dlprefiles="$newdlprefiles" - fi - $RM $output - # place dlname in correct position for cygwin - # In fact, it would be nice if we could use this code for all target - # systems that can't hard-code library paths into their executables - # and that have no shared library path variable independent of PATH, - # but it turns out we can't easily determine that from inspecting - # libtool variables, so we have to hard-code the OSs to which it - # applies here; at the moment, that means platforms that use the PE - # object format with DLL files. See the long comment at the top of - # tests/bindir.at for full details. - tdlname=$dlname - case $host,$output,$installed,$module,$dlname in - *cygwin*,*lai,yes,no,*.dll | *mingw*,*lai,yes,no,*.dll | *cegcc*,*lai,yes,no,*.dll) - # If a -bindir argument was supplied, place the dll there. - if test "x$bindir" != x ; - then - func_relative_path "$install_libdir" "$bindir" - tdlname=$func_relative_path_result$dlname - else - # Otherwise fall back on heuristic. - tdlname=../bin/$dlname - fi - ;; - esac - $ECHO > $output "\ -# $outputname - a libtool library file -# Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# The name that we can dlopen(3). -dlname='$tdlname' - -# Names of this library. -library_names='$library_names' - -# The name of the static archive. -old_library='$old_library' - -# Linker flags that can not go in dependency_libs. -inherited_linker_flags='$new_inherited_linker_flags' - -# Libraries that this one depends upon. -dependency_libs='$dependency_libs' - -# Names of additional weak libraries provided by this library -weak_library_names='$weak_libs' - -# Version information for $libname. -current=$current -age=$age -revision=$revision - -# Is this an already installed library? -installed=$installed - -# Should we warn about portability when linking against -modules? -shouldnotlink=$module - -# Files to dlopen/dlpreopen -dlopen='$dlfiles' -dlpreopen='$dlprefiles' - -# Directory that this library needs to be installed in: -libdir='$install_libdir'" - if test "$installed" = no && test "$need_relink" = yes; then - $ECHO >> $output "\ -relink_command=\"$relink_command\"" - fi - done - } - - # Do a symbolic link so that the libtool archive can be found in - # LD_LIBRARY_PATH before the program is installed. - func_show_eval '( cd "$output_objdir" && $RM "$outputname" && $LN_S "../$outputname" "$outputname" )' 'exit $?' - ;; - esac - exit $EXIT_SUCCESS -} - -{ test "$opt_mode" = link || test "$opt_mode" = relink; } && - func_mode_link ${1+"$@"} - - -# func_mode_uninstall arg... -func_mode_uninstall () -{ - $opt_debug - RM="$nonopt" - files= - rmforce= - exit_status=0 - - # This variable tells wrapper scripts just to set variables rather - # than running their programs. - libtool_install_magic="$magic" - - for arg - do - case $arg in - -f) func_append RM " $arg"; rmforce=yes ;; - -*) func_append RM " $arg" ;; - *) func_append files " $arg" ;; - esac - done - - test -z "$RM" && \ - func_fatal_help "you must specify an RM program" - - rmdirs= - - for file in $files; do - func_dirname "$file" "" "." - dir="$func_dirname_result" - if test "X$dir" = X.; then - odir="$objdir" - else - odir="$dir/$objdir" - fi - func_basename "$file" - name="$func_basename_result" - test "$opt_mode" = uninstall && odir="$dir" - - # Remember odir for removal later, being careful to avoid duplicates - if test "$opt_mode" = clean; then - case " $rmdirs " in - *" $odir "*) ;; - *) func_append rmdirs " $odir" ;; - esac - fi - - # Don't error if the file doesn't exist and rm -f was used. - if { test -L "$file"; } >/dev/null 2>&1 || - { test -h "$file"; } >/dev/null 2>&1 || - test -f "$file"; then - : - elif test -d "$file"; then - exit_status=1 - continue - elif test "$rmforce" = yes; then - continue - fi - - rmfiles="$file" - - case $name in - *.la) - # Possibly a libtool archive, so verify it. - if func_lalib_p "$file"; then - func_source $dir/$name - - # Delete the libtool libraries and symlinks. - for n in $library_names; do - func_append rmfiles " $odir/$n" - done - test -n "$old_library" && func_append rmfiles " $odir/$old_library" - - case "$opt_mode" in - clean) - case " $library_names " in - *" $dlname "*) ;; - *) test -n "$dlname" && func_append rmfiles " $odir/$dlname" ;; - esac - test -n "$libdir" && func_append rmfiles " $odir/$name $odir/${name}i" - ;; - uninstall) - if test -n "$library_names"; then - # Do each command in the postuninstall commands. - func_execute_cmds "$postuninstall_cmds" 'test "$rmforce" = yes || exit_status=1' - fi - - if test -n "$old_library"; then - # Do each command in the old_postuninstall commands. - func_execute_cmds "$old_postuninstall_cmds" 'test "$rmforce" = yes || exit_status=1' - fi - # FIXME: should reinstall the best remaining shared library. - ;; - esac - fi - ;; - - *.lo) - # Possibly a libtool object, so verify it. - if func_lalib_p "$file"; then - - # Read the .lo file - func_source $dir/$name - - # Add PIC object to the list of files to remove. - if test -n "$pic_object" && - test "$pic_object" != none; then - func_append rmfiles " $dir/$pic_object" - fi - - # Add non-PIC object to the list of files to remove. - if test -n "$non_pic_object" && - test "$non_pic_object" != none; then - func_append rmfiles " $dir/$non_pic_object" - fi - fi - ;; - - *) - if test "$opt_mode" = clean ; then - noexename=$name - case $file in - *.exe) - func_stripname '' '.exe' "$file" - file=$func_stripname_result - func_stripname '' '.exe' "$name" - noexename=$func_stripname_result - # $file with .exe has already been added to rmfiles, - # add $file without .exe - func_append rmfiles " $file" - ;; - esac - # Do a test to see if this is a libtool program. - if func_ltwrapper_p "$file"; then - if func_ltwrapper_executable_p "$file"; then - func_ltwrapper_scriptname "$file" - relink_command= - func_source $func_ltwrapper_scriptname_result - func_append rmfiles " $func_ltwrapper_scriptname_result" - else - relink_command= - func_source $dir/$noexename - fi - - # note $name still contains .exe if it was in $file originally - # as does the version of $file that was added into $rmfiles - func_append rmfiles " $odir/$name $odir/${name}S.${objext}" - if test "$fast_install" = yes && test -n "$relink_command"; then - func_append rmfiles " $odir/lt-$name" - fi - if test "X$noexename" != "X$name" ; then - func_append rmfiles " $odir/lt-${noexename}.c" - fi - fi - fi - ;; - esac - func_show_eval "$RM $rmfiles" 'exit_status=1' - done - - # Try to remove the ${objdir}s in the directories where we deleted files - for dir in $rmdirs; do - if test -d "$dir"; then - func_show_eval "rmdir $dir >/dev/null 2>&1" - fi - done - - exit $exit_status -} - -{ test "$opt_mode" = uninstall || test "$opt_mode" = clean; } && - func_mode_uninstall ${1+"$@"} - -test -z "$opt_mode" && { - help="$generic_help" - func_fatal_help "you must specify a MODE" -} - -test -z "$exec_cmd" && \ - func_fatal_help "invalid operation mode \`$opt_mode'" - -if test -n "$exec_cmd"; then - eval exec "$exec_cmd" - exit $EXIT_FAILURE -fi - -exit $exit_status - - -# The TAGs below are defined such that we never get into a situation -# in which we disable both kinds of libraries. Given conflicting -# choices, we go for a static library, that is the most portable, -# since we can't tell whether shared libraries were disabled because -# the user asked for that or because the platform doesn't support -# them. This is particularly important on AIX, because we don't -# support having both static and shared libraries enabled at the same -# time on that platform, so we default to a shared-only configuration. -# If a disable-shared tag is given, we'll fallback to a static-only -# configuration. But we'll never go from static-only to shared-only. - -# ### BEGIN LIBTOOL TAG CONFIG: disable-shared -build_libtool_libs=no -build_old_libs=yes -# ### END LIBTOOL TAG CONFIG: disable-shared - -# ### BEGIN LIBTOOL TAG CONFIG: disable-static -build_old_libs=`case $build_libtool_libs in yes) echo no;; *) echo yes;; esac` -# ### END LIBTOOL TAG CONFIG: disable-static - -# Local Variables: -# mode:shell-script -# sh-indentation:2 -# End: -# vi:sw=2 - diff -Nru fcitx-4.0.1/Makefile.am fcitx-4.1.1/Makefile.am --- fcitx-4.0.1/Makefile.am 2010-11-28 11:54:51.000000000 +0000 +++ fcitx-4.1.1/Makefile.am 1970-01-01 00:00:00.000000000 +0000 @@ -1,19 +0,0 @@ -AUTOMAKE_OPTIONS = foreign -SUBDIRS = doc skin lib src tools test data png po -EXTRA_DIST = autogen.sh fcitx.spec - -MAINTAINERCLEANFILES = \ - aclocal.m4 \ - config.guess \ - config.sub \ - configure \ - INSTALL \ - missing \ - mkinstalldirs \ - Makefile.in - -install-exec-local: - @echo - @echo Fcitx Install Finished. - @echo You may need to run ldconfig to make shared library work. - @echo diff -Nru fcitx-4.0.1/Makefile.in fcitx-4.1.1/Makefile.in --- fcitx-4.0.1/Makefile.in 2010-12-17 04:26:31.000000000 +0000 +++ fcitx-4.1.1/Makefile.in 1970-01-01 00:00:00.000000000 +0000 @@ -1,790 +0,0 @@ -# Makefile.in generated by automake 1.11.1 from Makefile.am. -# @configure_input@ - -# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, -# Inc. -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - -@SET_MAKE@ -VPATH = @srcdir@ -pkgdatadir = $(datadir)/@PACKAGE@ -pkgincludedir = $(includedir)/@PACKAGE@ -pkglibdir = $(libdir)/@PACKAGE@ -pkglibexecdir = $(libexecdir)/@PACKAGE@ -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = @build@ -host_triplet = @host@ -subdir = . -DIST_COMMON = README $(am__configure_deps) $(srcdir)/Makefile.am \ - $(srcdir)/Makefile.in $(srcdir)/config.h.in \ - $(srcdir)/fcitx.spec.in $(top_srcdir)/configure AUTHORS \ - COPYING ChangeLog INSTALL THANKS TODO config.guess \ - config.rpath config.sub depcomp install-sh ltmain.sh missing -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/configure.in -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \ - configure.lineno config.status.lineno -mkinstalldirs = $(install_sh) -d -CONFIG_HEADER = config.h -CONFIG_CLEAN_FILES = fcitx.spec -CONFIG_CLEAN_VPATH_FILES = -AM_V_GEN = $(am__v_GEN_$(V)) -am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) -am__v_GEN_0 = @echo " GEN " $@; -AM_V_at = $(am__v_at_$(V)) -am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) -am__v_at_0 = @ -SOURCES = -DIST_SOURCES = -RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ - html-recursive info-recursive install-data-recursive \ - install-dvi-recursive install-exec-recursive \ - install-html-recursive install-info-recursive \ - install-pdf-recursive install-ps-recursive install-recursive \ - installcheck-recursive installdirs-recursive pdf-recursive \ - ps-recursive uninstall-recursive -RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ - distclean-recursive maintainer-clean-recursive -AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \ - $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \ - distdir dist dist-all distcheck -ETAGS = etags -CTAGS = ctags -DIST_SUBDIRS = $(SUBDIRS) -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -distdir = $(PACKAGE)-$(VERSION) -top_distdir = $(distdir) -am__remove_distdir = \ - { test ! -d "$(distdir)" \ - || { find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \ - && rm -fr "$(distdir)"; }; } -am__relativize = \ - dir0=`pwd`; \ - sed_first='s,^\([^/]*\)/.*$$,\1,'; \ - sed_rest='s,^[^/]*/*,,'; \ - sed_last='s,^.*/\([^/]*\)$$,\1,'; \ - sed_butlast='s,/*[^/]*$$,,'; \ - while test -n "$$dir1"; do \ - first=`echo "$$dir1" | sed -e "$$sed_first"`; \ - if test "$$first" != "."; then \ - if test "$$first" = ".."; then \ - dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ - dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ - else \ - first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ - if test "$$first2" = "$$first"; then \ - dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ - else \ - dir2="../$$dir2"; \ - fi; \ - dir0="$$dir0"/"$$first"; \ - fi; \ - fi; \ - dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ - done; \ - reldir="$$dir2" -DIST_ARCHIVES = $(distdir).tar.gz -GZIP_ENV = --best -distuninstallcheck_listfiles = find . -type f -print -distcleancheck_listfiles = find . -type f -print -ACLOCAL = @ACLOCAL@ -ALL_LINGUAS = @ALL_LINGUAS@ -AMTAR = @AMTAR@ -AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ -AR = @AR@ -AUTOCONF = @AUTOCONF@ -AUTOHEADER = @AUTOHEADER@ -AUTOMAKE = @AUTOMAKE@ -AWK = @AWK@ -CAIRO_XLIB_CFLAGS = @CAIRO_XLIB_CFLAGS@ -CAIRO_XLIB_LIBS = @CAIRO_XLIB_LIBS@ -CC = @CC@ -CCDEPMODE = @CCDEPMODE@ -CFLAGS = @CFLAGS@ -CPP = @CPP@ -CPPFLAGS = @CPPFLAGS@ -CYGPATH_W = @CYGPATH_W@ -DATADIRNAME = @DATADIRNAME@ -DBUS_CFLAGS = @DBUS_CFLAGS@ -DBUS_LIBS = @DBUS_LIBS@ -DEFS = @DEFS@ -DEPDIR = @DEPDIR@ -DLLTOOL = @DLLTOOL@ -DSYMUTIL = @DSYMUTIL@ -DUMPBIN = @DUMPBIN@ -ECHO_C = @ECHO_C@ -ECHO_N = @ECHO_N@ -ECHO_T = @ECHO_T@ -EGREP = @EGREP@ -EXEEXT = @EXEEXT@ -FGREP = @FGREP@ -FONTCONFIG_CFLAGS = @FONTCONFIG_CFLAGS@ -FONTCONFIG_LIBS = @FONTCONFIG_LIBS@ -GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ -GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ -GMSGFMT = @GMSGFMT@ -GMSGFMT_015 = @GMSGFMT_015@ -GREP = @GREP@ -HOST_LIBS = @HOST_LIBS@ -INCINTL = @INCINTL@ -INSTALL = @INSTALL@ -INSTALL_DATA = @INSTALL_DATA@ -INSTALL_PROGRAM = @INSTALL_PROGRAM@ -INSTALL_SCRIPT = @INSTALL_SCRIPT@ -INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ -INTLLIBS = @INTLLIBS@ -INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ -INTLTOOL_MERGE = @INTLTOOL_MERGE@ -INTLTOOL_PERL = @INTLTOOL_PERL@ -INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ -INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ -LD = @LD@ -LDFLAGS = @LDFLAGS@ -LIBICONV = @LIBICONV@ -LIBINTL = @LIBINTL@ -LIBOBJS = @LIBOBJS@ -LIBS = @LIBS@ -LIBTOOL = @LIBTOOL@ -LIPO = @LIPO@ -LN_S = @LN_S@ -LTLIBICONV = @LTLIBICONV@ -LTLIBINTL = @LTLIBINTL@ -LTLIBOBJS = @LTLIBOBJS@ -MAKEINFO = @MAKEINFO@ -MANIFEST_TOOL = @MANIFEST_TOOL@ -MD5SUM = @MD5SUM@ -MKDIR_P = @MKDIR_P@ -MSGFMT = @MSGFMT@ -MSGFMT_015 = @MSGFMT_015@ -MSGMERGE = @MSGMERGE@ -NM = @NM@ -NMEDIT = @NMEDIT@ -OBJDUMP = @OBJDUMP@ -OBJEXT = @OBJEXT@ -OTOOL = @OTOOL@ -OTOOL64 = @OTOOL64@ -PACKAGE = @PACKAGE@ -PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ -PACKAGE_NAME = @PACKAGE_NAME@ -PACKAGE_STRING = @PACKAGE_STRING@ -PACKAGE_TARNAME = @PACKAGE_TARNAME@ -PACKAGE_URL = @PACKAGE_URL@ -PACKAGE_VERSION = @PACKAGE_VERSION@ -PANGOCAIRO_CFLAGS = @PANGOCAIRO_CFLAGS@ -PANGOCAIRO_LIBS = @PANGOCAIRO_LIBS@ -PATH_SEPARATOR = @PATH_SEPARATOR@ -PKG_CONFIG = @PKG_CONFIG@ -PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ -PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ -POSUB = @POSUB@ -RANLIB = @RANLIB@ -SED = @SED@ -SET_MAKE = @SET_MAKE@ -SHELL = @SHELL@ -STRIP = @STRIP@ -TAR = @TAR@ -USE_NLS = @USE_NLS@ -VERSION = @VERSION@ -WGET = @WGET@ -XGETTEXT = @XGETTEXT@ -XGETTEXT_015 = @XGETTEXT_015@ -XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ -XMKMF = @XMKMF@ -XRENDER_CFLAGS = @XRENDER_CFLAGS@ -XRENDER_LIBS = @XRENDER_LIBS@ -X_CFLAGS = @X_CFLAGS@ -X_LIBS = @X_LIBS@ -abs_builddir = @abs_builddir@ -abs_srcdir = @abs_srcdir@ -abs_top_builddir = @abs_top_builddir@ -abs_top_srcdir = @abs_top_srcdir@ -ac_ct_AR = @ac_ct_AR@ -ac_ct_CC = @ac_ct_CC@ -ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ -am__include = @am__include@ -am__leading_dot = @am__leading_dot@ -am__quote = @am__quote@ -am__tar = @am__tar@ -am__untar = @am__untar@ -bindir = @bindir@ -build = @build@ -build_alias = @build_alias@ -build_cpu = @build_cpu@ -build_os = @build_os@ -build_vendor = @build_vendor@ -builddir = @builddir@ -datadir = @datadir@ -datarootdir = @datarootdir@ -docdir = @docdir@ -dvidir = @dvidir@ -exec_prefix = @exec_prefix@ -host = @host@ -host_alias = @host_alias@ -host_cpu = @host_cpu@ -host_os = @host_os@ -host_vendor = @host_vendor@ -htmldir = @htmldir@ -includedir = @includedir@ -infodir = @infodir@ -install_sh = @install_sh@ -libdir = @libdir@ -libexecdir = @libexecdir@ -localedir = @localedir@ -localstatedir = @localstatedir@ -mandir = @mandir@ -mkdir_p = @mkdir_p@ -oldincludedir = @oldincludedir@ -pdfdir = @pdfdir@ -prefix = @prefix@ -program_transform_name = @program_transform_name@ -psdir = @psdir@ -sbindir = @sbindir@ -sharedstatedir = @sharedstatedir@ -srcdir = @srcdir@ -sysconfdir = @sysconfdir@ -target_alias = @target_alias@ -top_build_prefix = @top_build_prefix@ -top_builddir = @top_builddir@ -top_srcdir = @top_srcdir@ -AUTOMAKE_OPTIONS = foreign -SUBDIRS = doc skin lib src tools test data png po -EXTRA_DIST = autogen.sh fcitx.spec -MAINTAINERCLEANFILES = \ - aclocal.m4 \ - config.guess \ - config.sub \ - configure \ - INSTALL \ - missing \ - mkinstalldirs \ - Makefile.in - -all: config.h - $(MAKE) $(AM_MAKEFLAGS) all-recursive - -.SUFFIXES: -am--refresh: - @: -$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - echo ' cd $(srcdir) && $(AUTOMAKE) --foreign'; \ - $(am__cd) $(srcdir) && $(AUTOMAKE) --foreign \ - && exit 0; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign Makefile -.PRECIOUS: Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - echo ' $(SHELL) ./config.status'; \ - $(SHELL) ./config.status;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \ - esac; - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - $(SHELL) ./config.status --recheck - -$(top_srcdir)/configure: $(am__configure_deps) - $(am__cd) $(srcdir) && $(AUTOCONF) -$(ACLOCAL_M4): $(am__aclocal_m4_deps) - $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) -$(am__aclocal_m4_deps): - -config.h: stamp-h1 - @if test ! -f $@; then \ - rm -f stamp-h1; \ - $(MAKE) $(AM_MAKEFLAGS) stamp-h1; \ - else :; fi - -stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status - @rm -f stamp-h1 - cd $(top_builddir) && $(SHELL) ./config.status config.h -$(srcdir)/config.h.in: $(am__configure_deps) - ($(am__cd) $(top_srcdir) && $(AUTOHEADER)) - rm -f stamp-h1 - touch $@ - -distclean-hdr: - -rm -f config.h stamp-h1 -fcitx.spec: $(top_builddir)/config.status $(srcdir)/fcitx.spec.in - cd $(top_builddir) && $(SHELL) ./config.status $@ - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs - -distclean-libtool: - -rm -f libtool config.lt - -# This directory's subdirectories are mostly independent; you can cd -# into them and run `make' without going through this Makefile. -# To change the values of `make' variables: instead of editing Makefiles, -# (1) if the variable is set in `config.status', edit `config.status' -# (which will cause the Makefiles to be regenerated when you run `make'); -# (2) otherwise, pass the desired values on the `make' command line. -$(RECURSIVE_TARGETS): - @fail= failcom='exit 1'; \ - for f in x $$MAKEFLAGS; do \ - case $$f in \ - *=* | --[!k]*);; \ - *k*) failcom='fail=yes';; \ - esac; \ - done; \ - dot_seen=no; \ - target=`echo $@ | sed s/-recursive//`; \ - list='$(SUBDIRS)'; for subdir in $$list; do \ - echo "Making $$target in $$subdir"; \ - if test "$$subdir" = "."; then \ - dot_seen=yes; \ - local_target="$$target-am"; \ - else \ - local_target="$$target"; \ - fi; \ - ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ - || eval $$failcom; \ - done; \ - if test "$$dot_seen" = "no"; then \ - $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ - fi; test -z "$$fail" - -$(RECURSIVE_CLEAN_TARGETS): - @fail= failcom='exit 1'; \ - for f in x $$MAKEFLAGS; do \ - case $$f in \ - *=* | --[!k]*);; \ - *k*) failcom='fail=yes';; \ - esac; \ - done; \ - dot_seen=no; \ - case "$@" in \ - distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ - *) list='$(SUBDIRS)' ;; \ - esac; \ - rev=''; for subdir in $$list; do \ - if test "$$subdir" = "."; then :; else \ - rev="$$subdir $$rev"; \ - fi; \ - done; \ - rev="$$rev ."; \ - target=`echo $@ | sed s/-recursive//`; \ - for subdir in $$rev; do \ - echo "Making $$target in $$subdir"; \ - if test "$$subdir" = "."; then \ - local_target="$$target-am"; \ - else \ - local_target="$$target"; \ - fi; \ - ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ - || eval $$failcom; \ - done && test -z "$$fail" -tags-recursive: - list='$(SUBDIRS)'; for subdir in $$list; do \ - test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ - done -ctags-recursive: - list='$(SUBDIRS)'; for subdir in $$list; do \ - test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ - done - -ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - mkid -fID $$unique -tags: TAGS - -TAGS: tags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - set x; \ - here=`pwd`; \ - if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ - include_option=--etags-include; \ - empty_fix=.; \ - else \ - include_option=--include; \ - empty_fix=; \ - fi; \ - list='$(SUBDIRS)'; for subdir in $$list; do \ - if test "$$subdir" = .; then :; else \ - test ! -f $$subdir/TAGS || \ - set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ - fi; \ - done; \ - list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: CTAGS -CTAGS: ctags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -distdir: $(DISTFILES) - $(am__remove_distdir) - test -d "$(distdir)" || mkdir "$(distdir)" - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d "$(distdir)/$$file"; then \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ - else \ - test -f "$(distdir)/$$file" \ - || cp -p $$d/$$file "$(distdir)/$$file" \ - || exit 1; \ - fi; \ - done - @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ - if test "$$subdir" = .; then :; else \ - test -d "$(distdir)/$$subdir" \ - || $(MKDIR_P) "$(distdir)/$$subdir" \ - || exit 1; \ - fi; \ - done - @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ - if test "$$subdir" = .; then :; else \ - dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ - $(am__relativize); \ - new_distdir=$$reldir; \ - dir1=$$subdir; dir2="$(top_distdir)"; \ - $(am__relativize); \ - new_top_distdir=$$reldir; \ - echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ - echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ - ($(am__cd) $$subdir && \ - $(MAKE) $(AM_MAKEFLAGS) \ - top_distdir="$$new_top_distdir" \ - distdir="$$new_distdir" \ - am__remove_distdir=: \ - am__skip_length_check=: \ - am__skip_mode_fix=: \ - distdir) \ - || exit 1; \ - fi; \ - done - -test -n "$(am__skip_mode_fix)" \ - || find "$(distdir)" -type d ! -perm -755 \ - -exec chmod u+rwx,go+rx {} \; -o \ - ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \ - ! -type d ! -perm -400 -exec chmod a+r {} \; -o \ - ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \ - || chmod -R a+r "$(distdir)" -dist-gzip: distdir - tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz - $(am__remove_distdir) - -dist-bzip2: distdir - tardir=$(distdir) && $(am__tar) | bzip2 -9 -c >$(distdir).tar.bz2 - $(am__remove_distdir) - -dist-lzma: distdir - tardir=$(distdir) && $(am__tar) | lzma -9 -c >$(distdir).tar.lzma - $(am__remove_distdir) - -dist-xz: distdir - tardir=$(distdir) && $(am__tar) | xz -c >$(distdir).tar.xz - $(am__remove_distdir) - -dist-tarZ: distdir - tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z - $(am__remove_distdir) - -dist-shar: distdir - shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz - $(am__remove_distdir) - -dist-zip: distdir - -rm -f $(distdir).zip - zip -rq $(distdir).zip $(distdir) - $(am__remove_distdir) - -dist dist-all: distdir - tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz - $(am__remove_distdir) - -# This target untars the dist file and tries a VPATH configuration. Then -# it guarantees that the distribution is self-contained by making another -# tarfile. -distcheck: dist - case '$(DIST_ARCHIVES)' in \ - *.tar.gz*) \ - GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\ - *.tar.bz2*) \ - bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\ - *.tar.lzma*) \ - lzma -dc $(distdir).tar.lzma | $(am__untar) ;;\ - *.tar.xz*) \ - xz -dc $(distdir).tar.xz | $(am__untar) ;;\ - *.tar.Z*) \ - uncompress -c $(distdir).tar.Z | $(am__untar) ;;\ - *.shar.gz*) \ - GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\ - *.zip*) \ - unzip $(distdir).zip ;;\ - esac - chmod -R a-w $(distdir); chmod a+w $(distdir) - mkdir $(distdir)/_build - mkdir $(distdir)/_inst - chmod a-w $(distdir) - test -d $(distdir)/_build || exit 0; \ - dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \ - && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \ - && am__cwd=`pwd` \ - && $(am__cd) $(distdir)/_build \ - && ../configure --srcdir=.. --prefix="$$dc_install_base" \ - $(DISTCHECK_CONFIGURE_FLAGS) \ - && $(MAKE) $(AM_MAKEFLAGS) \ - && $(MAKE) $(AM_MAKEFLAGS) dvi \ - && $(MAKE) $(AM_MAKEFLAGS) check \ - && $(MAKE) $(AM_MAKEFLAGS) install \ - && $(MAKE) $(AM_MAKEFLAGS) installcheck \ - && $(MAKE) $(AM_MAKEFLAGS) uninstall \ - && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \ - distuninstallcheck \ - && chmod -R a-w "$$dc_install_base" \ - && ({ \ - (cd ../.. && umask 077 && mkdir "$$dc_destdir") \ - && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \ - && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \ - && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \ - distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \ - } || { rm -rf "$$dc_destdir"; exit 1; }) \ - && rm -rf "$$dc_destdir" \ - && $(MAKE) $(AM_MAKEFLAGS) dist \ - && rm -rf $(DIST_ARCHIVES) \ - && $(MAKE) $(AM_MAKEFLAGS) distcleancheck \ - && cd "$$am__cwd" \ - || exit 1 - $(am__remove_distdir) - @(echo "$(distdir) archives ready for distribution: "; \ - list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \ - sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x' -distuninstallcheck: - @$(am__cd) '$(distuninstallcheck_dir)' \ - && test `$(distuninstallcheck_listfiles) | wc -l` -le 1 \ - || { echo "ERROR: files left after uninstall:" ; \ - if test -n "$(DESTDIR)"; then \ - echo " (check DESTDIR support)"; \ - fi ; \ - $(distuninstallcheck_listfiles) ; \ - exit 1; } >&2 -distcleancheck: distclean - @if test '$(srcdir)' = . ; then \ - echo "ERROR: distcleancheck can only run from a VPATH build" ; \ - exit 1 ; \ - fi - @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \ - || { echo "ERROR: files left in build directory after distclean:" ; \ - $(distcleancheck_listfiles) ; \ - exit 1; } >&2 -check-am: all-am -check: check-recursive -all-am: Makefile config.h -installdirs: installdirs-recursive -installdirs-am: -install: install-recursive -install-exec: install-exec-recursive -install-data: install-data-recursive -uninstall: uninstall-recursive - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-recursive -install-strip: - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - `test -z '$(STRIP)' || \ - echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install -mostlyclean-generic: - -clean-generic: - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." - -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) -clean: clean-recursive - -clean-am: clean-generic clean-libtool mostlyclean-am - -distclean: distclean-recursive - -rm -f $(am__CONFIG_DISTCLEAN_FILES) - -rm -f Makefile -distclean-am: clean-am distclean-generic distclean-hdr \ - distclean-libtool distclean-tags - -dvi: dvi-recursive - -dvi-am: - -html: html-recursive - -html-am: - -info: info-recursive - -info-am: - -install-data-am: - -install-dvi: install-dvi-recursive - -install-dvi-am: - -install-exec-am: install-exec-local - -install-html: install-html-recursive - -install-html-am: - -install-info: install-info-recursive - -install-info-am: - -install-man: - -install-pdf: install-pdf-recursive - -install-pdf-am: - -install-ps: install-ps-recursive - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-recursive - -rm -f $(am__CONFIG_DISTCLEAN_FILES) - -rm -rf $(top_srcdir)/autom4te.cache - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-recursive - -mostlyclean-am: mostlyclean-generic mostlyclean-libtool - -pdf: pdf-recursive - -pdf-am: - -ps: ps-recursive - -ps-am: - -uninstall-am: - -.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) all \ - ctags-recursive install-am install-strip tags-recursive - -.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \ - all all-am am--refresh check check-am clean clean-generic \ - clean-libtool ctags ctags-recursive dist dist-all dist-bzip2 \ - dist-gzip dist-lzma dist-shar dist-tarZ dist-xz dist-zip \ - distcheck distclean distclean-generic distclean-hdr \ - distclean-libtool distclean-tags distcleancheck distdir \ - distuninstallcheck dvi dvi-am html html-am info info-am \ - install install-am install-data install-data-am install-dvi \ - install-dvi-am install-exec install-exec-am install-exec-local \ - install-html install-html-am install-info install-info-am \ - install-man install-pdf install-pdf-am install-ps \ - install-ps-am install-strip installcheck installcheck-am \ - installdirs installdirs-am maintainer-clean \ - maintainer-clean-generic mostlyclean mostlyclean-generic \ - mostlyclean-libtool pdf pdf-am ps ps-am tags tags-recursive \ - uninstall uninstall-am - - -install-exec-local: - @echo - @echo Fcitx Install Finished. - @echo You may need to run ldconfig to make shared library work. - @echo - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff -Nru fcitx-4.0.1/missing fcitx-4.1.1/missing --- fcitx-4.0.1/missing 2010-11-28 11:55:34.000000000 +0000 +++ fcitx-4.1.1/missing 1970-01-01 00:00:00.000000000 +0000 @@ -1,376 +0,0 @@ -#! /bin/sh -# Common stub for a few missing GNU programs while installing. - -scriptversion=2009-04-28.21; # UTC - -# Copyright (C) 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005, 2006, -# 2008, 2009 Free Software Foundation, Inc. -# Originally by Fran,cois Pinard , 1996. - -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2, or (at your option) -# any later version. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. - -# You should have received a copy of the GNU General Public License -# along with this program. If not, see . - -# As a special exception to the GNU General Public License, if you -# distribute this file as part of a program that contains a -# configuration script generated by Autoconf, you may include it under -# the same distribution terms that you use for the rest of that program. - -if test $# -eq 0; then - echo 1>&2 "Try \`$0 --help' for more information" - exit 1 -fi - -run=: -sed_output='s/.* --output[ =]\([^ ]*\).*/\1/p' -sed_minuso='s/.* -o \([^ ]*\).*/\1/p' - -# In the cases where this matters, `missing' is being run in the -# srcdir already. -if test -f configure.ac; then - configure_ac=configure.ac -else - configure_ac=configure.in -fi - -msg="missing on your system" - -case $1 in ---run) - # Try to run requested program, and just exit if it succeeds. - run= - shift - "$@" && exit 0 - # Exit code 63 means version mismatch. This often happens - # when the user try to use an ancient version of a tool on - # a file that requires a minimum version. In this case we - # we should proceed has if the program had been absent, or - # if --run hadn't been passed. - if test $? = 63; then - run=: - msg="probably too old" - fi - ;; - - -h|--h|--he|--hel|--help) - echo "\ -$0 [OPTION]... PROGRAM [ARGUMENT]... - -Handle \`PROGRAM [ARGUMENT]...' for when PROGRAM is missing, or return an -error status if there is no known handling for PROGRAM. - -Options: - -h, --help display this help and exit - -v, --version output version information and exit - --run try to run the given command, and emulate it if it fails - -Supported PROGRAM values: - aclocal touch file \`aclocal.m4' - autoconf touch file \`configure' - autoheader touch file \`config.h.in' - autom4te touch the output file, or create a stub one - automake touch all \`Makefile.in' files - bison create \`y.tab.[ch]', if possible, from existing .[ch] - flex create \`lex.yy.c', if possible, from existing .c - help2man touch the output file - lex create \`lex.yy.c', if possible, from existing .c - makeinfo touch the output file - tar try tar, gnutar, gtar, then tar without non-portable flags - yacc create \`y.tab.[ch]', if possible, from existing .[ch] - -Version suffixes to PROGRAM as well as the prefixes \`gnu-', \`gnu', and -\`g' are ignored when checking the name. - -Send bug reports to ." - exit $? - ;; - - -v|--v|--ve|--ver|--vers|--versi|--versio|--version) - echo "missing $scriptversion (GNU Automake)" - exit $? - ;; - - -*) - echo 1>&2 "$0: Unknown \`$1' option" - echo 1>&2 "Try \`$0 --help' for more information" - exit 1 - ;; - -esac - -# normalize program name to check for. -program=`echo "$1" | sed ' - s/^gnu-//; t - s/^gnu//; t - s/^g//; t'` - -# Now exit if we have it, but it failed. Also exit now if we -# don't have it and --version was passed (most likely to detect -# the program). This is about non-GNU programs, so use $1 not -# $program. -case $1 in - lex*|yacc*) - # Not GNU programs, they don't have --version. - ;; - - tar*) - if test -n "$run"; then - echo 1>&2 "ERROR: \`tar' requires --run" - exit 1 - elif test "x$2" = "x--version" || test "x$2" = "x--help"; then - exit 1 - fi - ;; - - *) - if test -z "$run" && ($1 --version) > /dev/null 2>&1; then - # We have it, but it failed. - exit 1 - elif test "x$2" = "x--version" || test "x$2" = "x--help"; then - # Could not run --version or --help. This is probably someone - # running `$TOOL --version' or `$TOOL --help' to check whether - # $TOOL exists and not knowing $TOOL uses missing. - exit 1 - fi - ;; -esac - -# If it does not exist, or fails to run (possibly an outdated version), -# try to emulate it. -case $program in - aclocal*) - echo 1>&2 "\ -WARNING: \`$1' is $msg. You should only need it if - you modified \`acinclude.m4' or \`${configure_ac}'. You might want - to install the \`Automake' and \`Perl' packages. Grab them from - any GNU archive site." - touch aclocal.m4 - ;; - - autoconf*) - echo 1>&2 "\ -WARNING: \`$1' is $msg. You should only need it if - you modified \`${configure_ac}'. You might want to install the - \`Autoconf' and \`GNU m4' packages. Grab them from any GNU - archive site." - touch configure - ;; - - autoheader*) - echo 1>&2 "\ -WARNING: \`$1' is $msg. You should only need it if - you modified \`acconfig.h' or \`${configure_ac}'. You might want - to install the \`Autoconf' and \`GNU m4' packages. Grab them - from any GNU archive site." - files=`sed -n 's/^[ ]*A[CM]_CONFIG_HEADER(\([^)]*\)).*/\1/p' ${configure_ac}` - test -z "$files" && files="config.h" - touch_files= - for f in $files; do - case $f in - *:*) touch_files="$touch_files "`echo "$f" | - sed -e 's/^[^:]*://' -e 's/:.*//'`;; - *) touch_files="$touch_files $f.in";; - esac - done - touch $touch_files - ;; - - automake*) - echo 1>&2 "\ -WARNING: \`$1' is $msg. You should only need it if - you modified \`Makefile.am', \`acinclude.m4' or \`${configure_ac}'. - You might want to install the \`Automake' and \`Perl' packages. - Grab them from any GNU archive site." - find . -type f -name Makefile.am -print | - sed 's/\.am$/.in/' | - while read f; do touch "$f"; done - ;; - - autom4te*) - echo 1>&2 "\ -WARNING: \`$1' is needed, but is $msg. - You might have modified some files without having the - proper tools for further handling them. - You can get \`$1' as part of \`Autoconf' from any GNU - archive site." - - file=`echo "$*" | sed -n "$sed_output"` - test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"` - if test -f "$file"; then - touch $file - else - test -z "$file" || exec >$file - echo "#! /bin/sh" - echo "# Created by GNU Automake missing as a replacement of" - echo "# $ $@" - echo "exit 0" - chmod +x $file - exit 1 - fi - ;; - - bison*|yacc*) - echo 1>&2 "\ -WARNING: \`$1' $msg. You should only need it if - you modified a \`.y' file. You may need the \`Bison' package - in order for those modifications to take effect. You can get - \`Bison' from any GNU archive site." - rm -f y.tab.c y.tab.h - if test $# -ne 1; then - eval LASTARG="\${$#}" - case $LASTARG in - *.y) - SRCFILE=`echo "$LASTARG" | sed 's/y$/c/'` - if test -f "$SRCFILE"; then - cp "$SRCFILE" y.tab.c - fi - SRCFILE=`echo "$LASTARG" | sed 's/y$/h/'` - if test -f "$SRCFILE"; then - cp "$SRCFILE" y.tab.h - fi - ;; - esac - fi - if test ! -f y.tab.h; then - echo >y.tab.h - fi - if test ! -f y.tab.c; then - echo 'main() { return 0; }' >y.tab.c - fi - ;; - - lex*|flex*) - echo 1>&2 "\ -WARNING: \`$1' is $msg. You should only need it if - you modified a \`.l' file. You may need the \`Flex' package - in order for those modifications to take effect. You can get - \`Flex' from any GNU archive site." - rm -f lex.yy.c - if test $# -ne 1; then - eval LASTARG="\${$#}" - case $LASTARG in - *.l) - SRCFILE=`echo "$LASTARG" | sed 's/l$/c/'` - if test -f "$SRCFILE"; then - cp "$SRCFILE" lex.yy.c - fi - ;; - esac - fi - if test ! -f lex.yy.c; then - echo 'main() { return 0; }' >lex.yy.c - fi - ;; - - help2man*) - echo 1>&2 "\ -WARNING: \`$1' is $msg. You should only need it if - you modified a dependency of a manual page. You may need the - \`Help2man' package in order for those modifications to take - effect. You can get \`Help2man' from any GNU archive site." - - file=`echo "$*" | sed -n "$sed_output"` - test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"` - if test -f "$file"; then - touch $file - else - test -z "$file" || exec >$file - echo ".ab help2man is required to generate this page" - exit $? - fi - ;; - - makeinfo*) - echo 1>&2 "\ -WARNING: \`$1' is $msg. You should only need it if - you modified a \`.texi' or \`.texinfo' file, or any other file - indirectly affecting the aspect of the manual. The spurious - call might also be the consequence of using a buggy \`make' (AIX, - DU, IRIX). You might want to install the \`Texinfo' package or - the \`GNU make' package. Grab either from any GNU archive site." - # The file to touch is that specified with -o ... - file=`echo "$*" | sed -n "$sed_output"` - test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"` - if test -z "$file"; then - # ... or it is the one specified with @setfilename ... - infile=`echo "$*" | sed 's/.* \([^ ]*\) *$/\1/'` - file=`sed -n ' - /^@setfilename/{ - s/.* \([^ ]*\) *$/\1/ - p - q - }' $infile` - # ... or it is derived from the source name (dir/f.texi becomes f.info) - test -z "$file" && file=`echo "$infile" | sed 's,.*/,,;s,.[^.]*$,,'`.info - fi - # If the file does not exist, the user really needs makeinfo; - # let's fail without touching anything. - test -f $file || exit 1 - touch $file - ;; - - tar*) - shift - - # We have already tried tar in the generic part. - # Look for gnutar/gtar before invocation to avoid ugly error - # messages. - if (gnutar --version > /dev/null 2>&1); then - gnutar "$@" && exit 0 - fi - if (gtar --version > /dev/null 2>&1); then - gtar "$@" && exit 0 - fi - firstarg="$1" - if shift; then - case $firstarg in - *o*) - firstarg=`echo "$firstarg" | sed s/o//` - tar "$firstarg" "$@" && exit 0 - ;; - esac - case $firstarg in - *h*) - firstarg=`echo "$firstarg" | sed s/h//` - tar "$firstarg" "$@" && exit 0 - ;; - esac - fi - - echo 1>&2 "\ -WARNING: I can't seem to be able to run \`tar' with the given arguments. - You may want to install GNU tar or Free paxutils, or check the - command line arguments." - exit 1 - ;; - - *) - echo 1>&2 "\ -WARNING: \`$1' is needed, and is $msg. - You might have modified some files without having the - proper tools for further handling them. Check the \`README' file, - it often tells you about the needed prerequisites for installing - this package. You may also peek at any GNU archive site, in case - some other package would contain this missing \`$1' program." - exit 1 - ;; -esac - -exit 0 - -# Local variables: -# eval: (add-hook 'write-file-hooks 'time-stamp) -# time-stamp-start: "scriptversion=" -# time-stamp-format: "%:y-%02m-%02d.%02H" -# time-stamp-time-zone: "UTC" -# time-stamp-end: "; # UTC" -# End: Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/png/fcitx-cangjie.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/png/fcitx-cangjie.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/png/fcitx-chn.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/png/fcitx-chn.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/png/fcitx-eng.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/png/fcitx-eng.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/png/fcitx-erbi.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/png/fcitx-erbi.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/png/fcitx-full-letter.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/png/fcitx-full-letter.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/png/fcitx-full-punct.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/png/fcitx-full-punct.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/png/fcitx-half-letter.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/png/fcitx-half-letter.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/png/fcitx-half-punct.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/png/fcitx-half-punct.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/png/fcitx-legend.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/png/fcitx-legend.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/png/fcitx-nolegend.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/png/fcitx-nolegend.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/png/fcitx-pinyin.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/png/fcitx-pinyin.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/png/fcitx.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/png/fcitx.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/png/fcitx-simp.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/png/fcitx-simp.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/png/fcitx-trad.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/png/fcitx-trad.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/png/fcitx-vkoff.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/png/fcitx-vkoff.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/png/fcitx-vkon.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/png/fcitx-vkon.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/png/fcitx-wubi.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/png/fcitx-wubi.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/png/fcitx-ziranma.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/png/fcitx-ziranma.png differ diff -Nru fcitx-4.0.1/png/Makefile.am fcitx-4.1.1/png/Makefile.am --- fcitx-4.0.1/png/Makefile.am 2010-11-28 11:54:59.000000000 +0000 +++ fcitx-4.1.1/png/Makefile.am 1970-01-01 00:00:00.000000000 +0000 @@ -1,22 +0,0 @@ -pngdir = $(datadir)/pixmaps -png_DATA = \ - fcitx.png \ - fcitx-cangjie.png \ - fcitx-chn.png \ - fcitx-eng.png \ - fcitx-erbi.png \ - fcitx-full-letter.png \ - fcitx-full-punct.png \ - fcitx-vkon.png \ - fcitx-vkoff.png \ - fcitx-half-letter.png \ - fcitx-half-punct.png \ - fcitx-legend.png \ - fcitx-nolegend.png \ - fcitx-pinyin.png \ - fcitx-simp.png \ - fcitx-trad.png \ - fcitx-wubi.png \ - fcitx-ziranma.png - -EXTRA_DIST = $(png_DATA) diff -Nru fcitx-4.0.1/png/Makefile.in fcitx-4.1.1/png/Makefile.in --- fcitx-4.0.1/png/Makefile.in 2010-12-17 04:26:30.000000000 +0000 +++ fcitx-4.1.1/png/Makefile.in 1970-01-01 00:00:00.000000000 +0000 @@ -1,471 +0,0 @@ -# Makefile.in generated by automake 1.11.1 from Makefile.am. -# @configure_input@ - -# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, -# Inc. -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - -@SET_MAKE@ - -VPATH = @srcdir@ -pkgdatadir = $(datadir)/@PACKAGE@ -pkgincludedir = $(includedir)/@PACKAGE@ -pkglibdir = $(libdir)/@PACKAGE@ -pkglibexecdir = $(libexecdir)/@PACKAGE@ -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = @build@ -host_triplet = @host@ -subdir = png -DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/configure.in -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -mkinstalldirs = $(install_sh) -d -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -CONFIG_CLEAN_VPATH_FILES = -AM_V_GEN = $(am__v_GEN_$(V)) -am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) -am__v_GEN_0 = @echo " GEN " $@; -AM_V_at = $(am__v_at_$(V)) -am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) -am__v_at_0 = @ -SOURCES = -DIST_SOURCES = -am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; -am__vpath_adj = case $$p in \ - $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ - *) f=$$p;; \ - esac; -am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; -am__install_max = 40 -am__nobase_strip_setup = \ - srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` -am__nobase_strip = \ - for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" -am__nobase_list = $(am__nobase_strip_setup); \ - for p in $$list; do echo "$$p $$p"; done | \ - sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ - $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ - if (++n[$$2] == $(am__install_max)) \ - { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ - END { for (dir in files) print dir, files[dir] }' -am__base_list = \ - sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ - sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' -am__installdirs = "$(DESTDIR)$(pngdir)" -DATA = $(png_DATA) -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -ACLOCAL = @ACLOCAL@ -ALL_LINGUAS = @ALL_LINGUAS@ -AMTAR = @AMTAR@ -AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ -AR = @AR@ -AUTOCONF = @AUTOCONF@ -AUTOHEADER = @AUTOHEADER@ -AUTOMAKE = @AUTOMAKE@ -AWK = @AWK@ -CAIRO_XLIB_CFLAGS = @CAIRO_XLIB_CFLAGS@ -CAIRO_XLIB_LIBS = @CAIRO_XLIB_LIBS@ -CC = @CC@ -CCDEPMODE = @CCDEPMODE@ -CFLAGS = @CFLAGS@ -CPP = @CPP@ -CPPFLAGS = @CPPFLAGS@ -CYGPATH_W = @CYGPATH_W@ -DATADIRNAME = @DATADIRNAME@ -DBUS_CFLAGS = @DBUS_CFLAGS@ -DBUS_LIBS = @DBUS_LIBS@ -DEFS = @DEFS@ -DEPDIR = @DEPDIR@ -DLLTOOL = @DLLTOOL@ -DSYMUTIL = @DSYMUTIL@ -DUMPBIN = @DUMPBIN@ -ECHO_C = @ECHO_C@ -ECHO_N = @ECHO_N@ -ECHO_T = @ECHO_T@ -EGREP = @EGREP@ -EXEEXT = @EXEEXT@ -FGREP = @FGREP@ -FONTCONFIG_CFLAGS = @FONTCONFIG_CFLAGS@ -FONTCONFIG_LIBS = @FONTCONFIG_LIBS@ -GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ -GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ -GMSGFMT = @GMSGFMT@ -GMSGFMT_015 = @GMSGFMT_015@ -GREP = @GREP@ -HOST_LIBS = @HOST_LIBS@ -INCINTL = @INCINTL@ -INSTALL = @INSTALL@ -INSTALL_DATA = @INSTALL_DATA@ -INSTALL_PROGRAM = @INSTALL_PROGRAM@ -INSTALL_SCRIPT = @INSTALL_SCRIPT@ -INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ -INTLLIBS = @INTLLIBS@ -INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ -INTLTOOL_MERGE = @INTLTOOL_MERGE@ -INTLTOOL_PERL = @INTLTOOL_PERL@ -INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ -INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ -LD = @LD@ -LDFLAGS = @LDFLAGS@ -LIBICONV = @LIBICONV@ -LIBINTL = @LIBINTL@ -LIBOBJS = @LIBOBJS@ -LIBS = @LIBS@ -LIBTOOL = @LIBTOOL@ -LIPO = @LIPO@ -LN_S = @LN_S@ -LTLIBICONV = @LTLIBICONV@ -LTLIBINTL = @LTLIBINTL@ -LTLIBOBJS = @LTLIBOBJS@ -MAKEINFO = @MAKEINFO@ -MANIFEST_TOOL = @MANIFEST_TOOL@ -MD5SUM = @MD5SUM@ -MKDIR_P = @MKDIR_P@ -MSGFMT = @MSGFMT@ -MSGFMT_015 = @MSGFMT_015@ -MSGMERGE = @MSGMERGE@ -NM = @NM@ -NMEDIT = @NMEDIT@ -OBJDUMP = @OBJDUMP@ -OBJEXT = @OBJEXT@ -OTOOL = @OTOOL@ -OTOOL64 = @OTOOL64@ -PACKAGE = @PACKAGE@ -PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ -PACKAGE_NAME = @PACKAGE_NAME@ -PACKAGE_STRING = @PACKAGE_STRING@ -PACKAGE_TARNAME = @PACKAGE_TARNAME@ -PACKAGE_URL = @PACKAGE_URL@ -PACKAGE_VERSION = @PACKAGE_VERSION@ -PANGOCAIRO_CFLAGS = @PANGOCAIRO_CFLAGS@ -PANGOCAIRO_LIBS = @PANGOCAIRO_LIBS@ -PATH_SEPARATOR = @PATH_SEPARATOR@ -PKG_CONFIG = @PKG_CONFIG@ -PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ -PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ -POSUB = @POSUB@ -RANLIB = @RANLIB@ -SED = @SED@ -SET_MAKE = @SET_MAKE@ -SHELL = @SHELL@ -STRIP = @STRIP@ -TAR = @TAR@ -USE_NLS = @USE_NLS@ -VERSION = @VERSION@ -WGET = @WGET@ -XGETTEXT = @XGETTEXT@ -XGETTEXT_015 = @XGETTEXT_015@ -XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ -XMKMF = @XMKMF@ -XRENDER_CFLAGS = @XRENDER_CFLAGS@ -XRENDER_LIBS = @XRENDER_LIBS@ -X_CFLAGS = @X_CFLAGS@ -X_LIBS = @X_LIBS@ -abs_builddir = @abs_builddir@ -abs_srcdir = @abs_srcdir@ -abs_top_builddir = @abs_top_builddir@ -abs_top_srcdir = @abs_top_srcdir@ -ac_ct_AR = @ac_ct_AR@ -ac_ct_CC = @ac_ct_CC@ -ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ -am__include = @am__include@ -am__leading_dot = @am__leading_dot@ -am__quote = @am__quote@ -am__tar = @am__tar@ -am__untar = @am__untar@ -bindir = @bindir@ -build = @build@ -build_alias = @build_alias@ -build_cpu = @build_cpu@ -build_os = @build_os@ -build_vendor = @build_vendor@ -builddir = @builddir@ -datadir = @datadir@ -datarootdir = @datarootdir@ -docdir = @docdir@ -dvidir = @dvidir@ -exec_prefix = @exec_prefix@ -host = @host@ -host_alias = @host_alias@ -host_cpu = @host_cpu@ -host_os = @host_os@ -host_vendor = @host_vendor@ -htmldir = @htmldir@ -includedir = @includedir@ -infodir = @infodir@ -install_sh = @install_sh@ -libdir = @libdir@ -libexecdir = @libexecdir@ -localedir = @localedir@ -localstatedir = @localstatedir@ -mandir = @mandir@ -mkdir_p = @mkdir_p@ -oldincludedir = @oldincludedir@ -pdfdir = @pdfdir@ -prefix = @prefix@ -program_transform_name = @program_transform_name@ -psdir = @psdir@ -sbindir = @sbindir@ -sharedstatedir = @sharedstatedir@ -srcdir = @srcdir@ -sysconfdir = @sysconfdir@ -target_alias = @target_alias@ -top_build_prefix = @top_build_prefix@ -top_builddir = @top_builddir@ -top_srcdir = @top_srcdir@ -pngdir = $(datadir)/pixmaps -png_DATA = \ - fcitx.png \ - fcitx-cangjie.png \ - fcitx-chn.png \ - fcitx-eng.png \ - fcitx-erbi.png \ - fcitx-full-letter.png \ - fcitx-full-punct.png \ - fcitx-vkon.png \ - fcitx-vkoff.png \ - fcitx-half-letter.png \ - fcitx-half-punct.png \ - fcitx-legend.png \ - fcitx-nolegend.png \ - fcitx-pinyin.png \ - fcitx-simp.png \ - fcitx-trad.png \ - fcitx-wubi.png \ - fcitx-ziranma.png - -EXTRA_DIST = $(png_DATA) -all: all-am - -.SUFFIXES: -$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ - && { if test -f $@; then exit 0; else break; fi; }; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign png/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign png/Makefile -.PRECIOUS: Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(am__aclocal_m4_deps): - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs -install-pngDATA: $(png_DATA) - @$(NORMAL_INSTALL) - test -z "$(pngdir)" || $(MKDIR_P) "$(DESTDIR)$(pngdir)" - @list='$(png_DATA)'; test -n "$(pngdir)" || list=; \ - for p in $$list; do \ - if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ - echo "$$d$$p"; \ - done | $(am__base_list) | \ - while read files; do \ - echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(pngdir)'"; \ - $(INSTALL_DATA) $$files "$(DESTDIR)$(pngdir)" || exit $$?; \ - done - -uninstall-pngDATA: - @$(NORMAL_UNINSTALL) - @list='$(png_DATA)'; test -n "$(pngdir)" || list=; \ - files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ - test -n "$$files" || exit 0; \ - echo " ( cd '$(DESTDIR)$(pngdir)' && rm -f" $$files ")"; \ - cd "$(DESTDIR)$(pngdir)" && rm -f $$files -tags: TAGS -TAGS: - -ctags: CTAGS -CTAGS: - - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d "$(distdir)/$$file"; then \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ - else \ - test -f "$(distdir)/$$file" \ - || cp -p $$d/$$file "$(distdir)/$$file" \ - || exit 1; \ - fi; \ - done -check-am: all-am -check: check-am -all-am: Makefile $(DATA) -installdirs: - for dir in "$(DESTDIR)$(pngdir)"; do \ - test -z "$$dir" || $(MKDIR_P) "$$dir"; \ - done -install: install-am -install-exec: install-exec-am -install-data: install-data-am -uninstall: uninstall-am - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-am -install-strip: - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - `test -z '$(STRIP)' || \ - echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install -mostlyclean-generic: - -clean-generic: - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-am - -clean-am: clean-generic clean-libtool mostlyclean-am - -distclean: distclean-am - -rm -f Makefile -distclean-am: clean-am distclean-generic - -dvi: dvi-am - -dvi-am: - -html: html-am - -html-am: - -info: info-am - -info-am: - -install-data-am: install-pngDATA - -install-dvi: install-dvi-am - -install-dvi-am: - -install-exec-am: - -install-html: install-html-am - -install-html-am: - -install-info: install-info-am - -install-info-am: - -install-man: - -install-pdf: install-pdf-am - -install-pdf-am: - -install-ps: install-ps-am - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-am - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-am - -mostlyclean-am: mostlyclean-generic mostlyclean-libtool - -pdf: pdf-am - -pdf-am: - -ps: ps-am - -ps-am: - -uninstall-am: uninstall-pngDATA - -.MAKE: install-am install-strip - -.PHONY: all all-am check check-am clean clean-generic clean-libtool \ - distclean distclean-generic distclean-libtool distdir dvi \ - dvi-am html html-am info info-am install install-am \ - install-data install-data-am install-dvi install-dvi-am \ - install-exec install-exec-am install-html install-html-am \ - install-info install-info-am install-man install-pdf \ - install-pdf-am install-pngDATA install-ps install-ps-am \ - install-strip installcheck installcheck-am installdirs \ - maintainer-clean maintainer-clean-generic mostlyclean \ - mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ - uninstall uninstall-am uninstall-pngDATA - - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff -Nru fcitx-4.0.1/po/ChangeLog fcitx-4.1.1/po/ChangeLog --- fcitx-4.0.1/po/ChangeLog 2010-11-28 11:54:59.000000000 +0000 +++ fcitx-4.1.1/po/ChangeLog 1970-01-01 00:00:00.000000000 +0000 @@ -1,12 +0,0 @@ -2010-05-05 gettextize - - * Makefile.in.in: New file, from gettext-0.17. - * boldquot.sed: New file, from gettext-0.17. - * en@boldquot.header: New file, from gettext-0.17. - * en@quot.header: New file, from gettext-0.17. - * insert-header.sin: New file, from gettext-0.17. - * quot.sed: New file, from gettext-0.17. - * remove-potcdate.sin: New file, from gettext-0.17. - * Rules-quot: New file, from gettext-0.17. - * POTFILES.in: New file. - diff -Nru fcitx-4.0.1/po/CMakeLists.txt fcitx-4.1.1/po/CMakeLists.txt --- fcitx-4.0.1/po/CMakeLists.txt 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/po/CMakeLists.txt 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,25 @@ +set(PO_FILES zh_CN.po) +file(RELATIVE_PATH REL_SOURCE_ROOT ${PROJECT_BINARY_DIR} ${PROJECT_SOURCE_DIR}) +if ("${REL_SOURCE_ROOT}" STREQUAL "") + set(REL_SOURCE_ROOT ".") +endif("${REL_SOURCE_ROOT}" STREQUAL "") + +set(POT_FILE fcitx.pot) + +configure_file(POTFILES.in.in ${CMAKE_CURRENT_BINARY_DIR}/POTFILES.in) + +extract_fcitx_addon_conf_postring() + +add_custom_command(OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/desc.po + COMMAND ${CMAKE_CURRENT_SOURCE_DIR}/getdescpo ${PROJECT_SOURCE_DIR} ${CMAKE_CURRENT_BINARY_DIR} + DEPENDS getdescpo) + +add_custom_target( + pot + COMMAND INTLTOOL_EXTRACT=${INTLTOOL_EXTRACT} srcdir=${CMAKE_CURRENT_BINARY_DIR} ${INTLTOOL_UPDATE} --gettext-package fcitx --pot + WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} + DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/conf.po ${CMAKE_CURRENT_BINARY_DIR}/desc.po + ) + +# Update .po files and compile them to binary .gmo files +gettext_create_translations(${POT_FILE} ALL ${PO_FILES}) diff -Nru fcitx-4.0.1/po/fcitx.pot fcitx-4.1.1/po/fcitx.pot --- fcitx-4.0.1/po/fcitx.pot 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/po/fcitx.pot 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,1390 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-09-07 23:45+0800\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: /home/saber/Develop/fcitx/data/config.desc:4 +msgid "Seconds sleep before fcitx really start" +msgstr "" + +#: /home/saber/Develop/fcitx/data/config.desc:9 +msgid "It's the first time Fcitx Start." +msgstr "" + +#: /home/saber/Develop/fcitx/data/config.desc:14 +msgid "Use English Punc After a Number" +msgstr "" + +#: /home/saber/Develop/fcitx/data/config.desc:23 +msgid "Action after press enter" +msgstr "" + +#: /home/saber/Develop/fcitx/data/config.desc:28 +msgid "Disable Paging in Remind Mode" +msgstr "" + +#: /home/saber/Develop/fcitx/data/config.desc:33 +msgid "Send inputed Text if Switch to English Mode" +msgstr "" + +#: /home/saber/Develop/fcitx/data/config.desc:38 +msgid "Candidate Word Number" +msgstr "" + +#: /home/saber/Develop/fcitx/data/config.desc:43 +msgid "Give the tips of Phrase" +msgstr "" + +#: /home/saber/Develop/fcitx/data/config.desc:48 +msgid "Show Input Window After Trigger Input Mode" +msgstr "" + +#: /home/saber/Develop/fcitx/data/config.desc:53 +msgid "Show Point After Index" +msgstr "" + +#: /home/saber/Develop/fcitx/data/config.desc:58 +msgid "Show Input Speed" +msgstr "" + +#: /home/saber/Develop/fcitx/data/config.desc:63 +msgid "Show Version" +msgstr "" + +#: /home/saber/Develop/fcitx/data/config.desc:68 +msgid "Do not show input window if there is only preedit string" +msgstr "" + +#: /home/saber/Develop/fcitx/data/config.desc:73 +msgid "" +"Do not show input window if there is one one candidate (Hide when only " +"preedit string must be selected)" +msgstr "" + +#: /home/saber/Develop/fcitx/data/config.desc:78 +msgid "Hot key of Triggering Input Method" +msgstr "" + +#: /home/saber/Develop/fcitx/data/config.desc:88 +msgid "Hotkey of Switching Chinese and English Mode" +msgstr "" + +#: /home/saber/Develop/fcitx/data/config.desc:93 +msgid "Double click Switch Key to Change Mode" +msgstr "" + +#: /home/saber/Develop/fcitx/data/config.desc:98 +msgid "Interval of Two Key Input" +msgstr "" + +#: /home/saber/Develop/fcitx/data/config.desc:103 +msgid "Hotkey of Switching Virtual Keyboard" +msgstr "" + +#: /home/saber/Develop/fcitx/data/config.desc:108 +msgid "Hotkey of Switching Remind Mode" +msgstr "" + +#: /home/saber/Develop/fcitx/data/config.desc:113 +msgid "Hotkey of Switching Full Width Character Mode" +msgstr "" + +#: /home/saber/Develop/fcitx/data/config.desc:118 +msgid "Hotkey of Switch Full Width Punc Mode" +msgstr "" + +#: /home/saber/Develop/fcitx/data/config.desc:123 +msgid "Hotkey of Going Prev Page" +msgstr "" + +#: /home/saber/Develop/fcitx/data/config.desc:128 +msgid "Hotkey of Going Next Page" +msgstr "" + +#: /home/saber/Develop/fcitx/data/config.desc:133 +msgid "Hotkey to Choose Second and Third Candidate Word" +msgstr "" + +#: /home/saber/Develop/fcitx/data/config.desc:138 +msgid "Hotkey of Saving All Config and Input History" +msgstr "" + +#: /home/saber/Develop/fcitx/data/config.desc:143 +msgid "Hotkey of Switch Embeded Preedit" +msgstr "" + +#: /home/saber/Develop/fcitx/data/profile.desc:2 +msgid "Use Full Width Character" +msgstr "" + +#: /home/saber/Develop/fcitx/data/profile.desc:7 +msgid "Use Wide Punctuation" +msgstr "" + +#: /home/saber/Develop/fcitx/data/profile.desc:12 +msgid "Prompt the phrases after input" +msgstr "" + +#: /home/saber/Develop/fcitx/data/profile.desc:17 +msgid "Current Input Method Index" +msgstr "" + +#: /home/saber/Develop/fcitx/data/profile.desc:24 +msgid "Show Preedit String in Client Window" +msgstr "" + +#: /home/saber/Develop/fcitx/data/addon.desc:3 +msgid "Name" +msgstr "" + +#: /home/saber/Develop/fcitx/data/addon.desc:7 +msgid "Name that can be display in UI" +msgstr "" + +#: /home/saber/Develop/fcitx/data/addon.desc:12 +msgid "Comment" +msgstr "" + +#: /home/saber/Develop/fcitx/data/addon.desc:22 +msgid "Category" +msgstr "" + +#: /home/saber/Develop/fcitx/data/addon.desc:27 +msgid "Enabled" +msgstr "" + +#: /home/saber/Develop/fcitx/data/addon.desc:31 +msgid "Library" +msgstr "" + +#: /home/saber/Develop/fcitx/data/addon.desc:37 +msgid "Type" +msgstr "" + +#: /home/saber/Develop/fcitx/data/addon.desc:42 +msgid "Dependency" +msgstr "" + +#: /home/saber/Develop/fcitx/data/addon.desc:47 +msgid "Priority of addon" +msgstr "" + +#: /home/saber/Develop/fcitx/data/addon.desc:52 +msgid "Sub Configuration for Module" +msgstr "" + +#: /home/saber/Develop/fcitx/src/module/chttrans/fcitx-chttrans.desc:6 +msgid "Traditional Chinese Translate Engine" +msgstr "" + +#: /home/saber/Develop/fcitx/src/module/chttrans/fcitx-chttrans.desc:12 +msgid "Enabled in input" +msgstr "" + +#: /home/saber/Develop/fcitx/src/module/chttrans/fcitx-chttrans.desc:17 +msgid "Toggle for enable or disable" +msgstr "" + +#: /home/saber/Develop/fcitx/src/ui/classic/fcitx-classic-ui.desc:2 +msgid "Main Window Position X" +msgstr "" + +#: /home/saber/Develop/fcitx/src/ui/classic/fcitx-classic-ui.desc:7 +msgid "Main Window Position Y" +msgstr "" + +#: /home/saber/Develop/fcitx/src/ui/classic/fcitx-classic-ui.desc:14 +msgid "Font" +msgstr "" + +#: /home/saber/Develop/fcitx/src/ui/classic/fcitx-classic-ui.desc:19 +msgid "Menu Font" +msgstr "" + +#: /home/saber/Develop/fcitx/src/ui/classic/fcitx-classic-ui.desc:24 +msgid "Font Locale to display" +msgstr "" + +#: /home/saber/Develop/fcitx/src/ui/classic/fcitx-classic-ui.desc:29 +msgid "Use System Tray Icon" +msgstr "" + +#: /home/saber/Develop/fcitx/src/ui/classic/fcitx-classic-ui.desc:38 +msgid "Main Window Hide Mode" +msgstr "" + +#: /home/saber/Develop/fcitx/src/ui/classic/fcitx-classic-ui.desc:43 +msgid "Vertical Candidate Word List" +msgstr "" + +#: /home/saber/Develop/fcitx/src/ui/classic/fcitx-classic-ui.desc:48 +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:3 +msgid "Skin Name" +msgstr "" + +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:7 +msgid "Skin Version" +msgstr "" + +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:11 +msgid "Skin Author" +msgstr "" + +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:15 +msgid "Description of Skin" +msgstr "" + +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:19 +msgid "Input Font Size" +msgstr "" + +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:23 +msgid "Menu Font Size" +msgstr "" + +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:28 +msgid "Tip Message Color" +msgstr "" + +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:32 +msgid "Input Message Color" +msgstr "" + +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:36 +msgid "Candidate Index Color" +msgstr "" + +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:40 +msgid "First Candidate Color" +msgstr "" + +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:44 +msgid "User Phrase Color" +msgstr "" + +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:48 +msgid "Table Code Color" +msgstr "" + +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:52 +msgid "Other Color" +msgstr "" + +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:56 +msgid "Active Menu Item Character Color" +msgstr "" + +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:60 +msgid "Inactive Menu Item Character Color" +msgstr "" + +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:64 +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:117 +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:197 +msgid "Background Image" +msgstr "" + +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:68 +msgid "Logo Icon" +msgstr "" + +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:72 +msgid "English Mode Icon" +msgstr "" + +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:76 +msgid "Chinese Mode Icon" +msgstr "" + +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:80 +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:121 +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:209 +msgid "Resize Margin Left" +msgstr "" + +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:84 +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:125 +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:213 +msgid "Resize Margin Right" +msgstr "" + +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:88 +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:129 +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:201 +msgid "Resize Margin Top" +msgstr "" + +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:92 +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:133 +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:205 +msgid "Resize Margin Bottom" +msgstr "" + +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:96 +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:173 +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:225 +msgid "Fill Background Vertical rule" +msgstr "" + +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:104 +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:181 +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:233 +msgid "Fill Background Horizontal rule" +msgstr "" + +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:112 +msgid "Special Icon position" +msgstr "" + +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:137 +msgid "Color of Cursor" +msgstr "" + +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:141 +msgid "Left-down position of Input" +msgstr "" + +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:145 +msgid "Left-down position of Output" +msgstr "" + +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:149 +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:157 +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:165 +msgid "Prev Page Icon" +msgstr "" + +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:153 +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:161 +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:169 +msgid "Next Page Icon" +msgstr "" + +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:189 +msgid "Active Tray Icon" +msgstr "" + +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:193 +msgid "Inctive Tray Icon" +msgstr "" + +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:217 +msgid "Active Menu Color" +msgstr "" + +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:221 +msgid "Space Line Color" +msgstr "" + +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:241 +msgid "Virtual Keyboard Image" +msgstr "" + +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:246 +msgid "Key Color On Virutal Keyboard" +msgstr "" + +#: /home/saber/Develop/fcitx/src/im/pinyin/fcitx-pinyin.desc:4 +msgid "Pinyin Priority Order, 0 to disable" +msgstr "" + +#: /home/saber/Develop/fcitx/src/im/pinyin/fcitx-pinyin.desc:9 +msgid "Shuangpin Priority Order, 0 to disable" +msgstr "" + +#: /home/saber/Develop/fcitx/src/im/pinyin/fcitx-pinyin.desc:14 +msgid "Default Shuangpin Schema" +msgstr "" + +#: /home/saber/Develop/fcitx/src/im/pinyin/fcitx-pinyin.desc:19 +msgid "Use Complete Pinyin" +msgstr "" + +#: /home/saber/Develop/fcitx/src/im/pinyin/fcitx-pinyin.desc:24 +msgid "Auto Create Phrase" +msgstr "" + +#: /home/saber/Develop/fcitx/src/im/pinyin/fcitx-pinyin.desc:29 +msgid "Save Auto Created Phrase" +msgstr "" + +#: /home/saber/Develop/fcitx/src/im/pinyin/fcitx-pinyin.desc:34 +msgid "Hotkey of Adding Frequent Word" +msgstr "" + +#: /home/saber/Develop/fcitx/src/im/pinyin/fcitx-pinyin.desc:39 +msgid "Hotkey of Deleting Frequent Word" +msgstr "" + +#: /home/saber/Develop/fcitx/src/im/pinyin/fcitx-pinyin.desc:44 +msgid "Hotkey of Delete User Phrase" +msgstr "" + +#: /home/saber/Develop/fcitx/src/im/pinyin/fcitx-pinyin.desc:49 +msgid "Hotkey of Inputing Word From Phrase" +msgstr "" + +#: /home/saber/Develop/fcitx/src/im/pinyin/fcitx-pinyin.desc:58 +msgid "Rule of Candidate Word Order" +msgstr "" + +#: /home/saber/Develop/fcitx/src/im/pinyin/fcitx-pinyin.desc:67 +msgid "Rule of Candidate Phrase Order" +msgstr "" + +#: /home/saber/Develop/fcitx/src/im/pinyin/fcitx-pinyin.desc:76 +msgid "Rule of Frequent Word Order" +msgstr "" + +#: /home/saber/Develop/fcitx/src/im/pinyin/fcitx-pinyin.desc:81 +msgid "Fuzzy an and ang" +msgstr "" + +#: /home/saber/Develop/fcitx/src/im/pinyin/fcitx-pinyin.desc:86 +msgid "Fuzzy en and eng" +msgstr "" + +#: /home/saber/Develop/fcitx/src/im/pinyin/fcitx-pinyin.desc:91 +msgid "Fuzzy ian and iang" +msgstr "" + +#: /home/saber/Develop/fcitx/src/im/pinyin/fcitx-pinyin.desc:96 +msgid "Fuzzy in and ing" +msgstr "" + +#: /home/saber/Develop/fcitx/src/im/pinyin/fcitx-pinyin.desc:101 +msgid "Fuzzy ou and u" +msgstr "" + +#: /home/saber/Develop/fcitx/src/im/pinyin/fcitx-pinyin.desc:106 +msgid "Fuzzy uan and uang" +msgstr "" + +#: /home/saber/Develop/fcitx/src/im/pinyin/fcitx-pinyin.desc:111 +msgid "Fuzzy c and ch" +msgstr "" + +#: /home/saber/Develop/fcitx/src/im/pinyin/fcitx-pinyin.desc:116 +msgid "Fuzzy f and h" +msgstr "" + +#: /home/saber/Develop/fcitx/src/im/pinyin/fcitx-pinyin.desc:121 +msgid "Fuzzy l and n" +msgstr "" + +#: /home/saber/Develop/fcitx/src/im/pinyin/fcitx-pinyin.desc:126 +msgid "Fuzzy s and sh" +msgstr "" + +#: /home/saber/Develop/fcitx/src/im/pinyin/fcitx-pinyin.desc:131 +msgid "Fuzzy z and zh" +msgstr "" + +#: /home/saber/Develop/fcitx/src/im/pinyin/fcitx-pinyin.desc:136 +msgid "Fix misstype gn/ng" +msgstr "" + +#: /home/saber/Develop/fcitx/src/im/table/table.desc:2 +msgid "Code Table Name" +msgstr "" + +#: /home/saber/Develop/fcitx/src/im/table/table.desc:6 +msgid "Icon Name" +msgstr "" + +#: /home/saber/Develop/fcitx/src/im/table/table.desc:10 +msgid "Code Table File" +msgstr "" + +#: /home/saber/Develop/fcitx/src/im/table/table.desc:14 +msgid "Adjust Order" +msgstr "" + +#: /home/saber/Develop/fcitx/src/im/table/table.desc:23 +msgid "Order of Code Table" +msgstr "" + +#: /home/saber/Develop/fcitx/src/im/table/table.desc:28 +msgid "Use Pinyin" +msgstr "" + +#: /home/saber/Develop/fcitx/src/im/table/table.desc:33 +msgid "Pinyin Key" +msgstr "" + +#: /home/saber/Develop/fcitx/src/im/table/table.desc:38 +msgid "Auto Send Candidate Word to Client" +msgstr "" + +#: /home/saber/Develop/fcitx/src/im/table/table.desc:43 +msgid "Auto Send Candidate Word if no match in Code Table" +msgstr "" + +#: /home/saber/Develop/fcitx/src/im/table/table.desc:48 +msgid "End Key" +msgstr "" + +#: /home/saber/Develop/fcitx/src/im/table/table.desc:53 +msgid "Use Matching Key" +msgstr "" + +#: /home/saber/Develop/fcitx/src/im/table/table.desc:58 +msgid "Matching Key" +msgstr "" + +#: /home/saber/Develop/fcitx/src/im/table/table.desc:63 +msgid "Exact Match" +msgstr "" + +#: /home/saber/Develop/fcitx/src/im/table/table.desc:67 +msgid "Auto Phrase" +msgstr "" + +#: /home/saber/Develop/fcitx/src/im/table/table.desc:72 +msgid "Auto Phrase Length" +msgstr "" + +#: /home/saber/Develop/fcitx/src/im/table/table.desc:77 +msgid "Auto Phrase Phrase" +msgstr "" + +#: /home/saber/Develop/fcitx/src/im/table/table.desc:82 +msgid "Save Auto Phrase" +msgstr "" + +#: /home/saber/Develop/fcitx/src/im/table/table.desc:87 +msgid "Prompt Table Code" +msgstr "" + +#: /home/saber/Develop/fcitx/src/im/table/table.desc:91 unknown +msgid "Symbol" +msgstr "" + +#: /home/saber/Develop/fcitx/src/im/table/table.desc:96 +msgid "Symbol File" +msgstr "" + +#: /home/saber/Develop/fcitx/src/im/table/table.desc:101 +msgid "Choose" +msgstr "" + +#: /home/saber/Develop/fcitx/src/im/table/table.desc:106 +msgid "Enable This Table or Not" +msgstr "" + +#: /home/saber/Develop/fcitx/src/frontend/xim/fcitx-xim.desc:4 +msgid "Use On The Spot Style for XIM (Can not change during running)" +msgstr "" + +# unknown +msgid "Addon" +msgstr "" + +# unknown +msgid "Appearance" +msgstr "" + +# unknown +msgid "ClassicUI" +msgstr "" + +# unknown +msgid "CodeTable" +msgstr "" + +# unknown +msgid "Hotkey" +msgstr "" + +# unknown +msgid "Output" +msgstr "" + +# unknown +#: /home/saber/Develop/fcitx/build/po/tmp/fcitx-pinyin.conf.in.h:1 +#: /home/saber/Develop/fcitx/build/po/../..//src/im/pinyin/py.c:107 +msgid "Pinyin" +msgstr "" + +# unknown +msgid "Profile" +msgstr "" + +# unknown +msgid "Program" +msgstr "" + +# unknown +msgid "SkinFont" +msgstr "" + +# unknown +msgid "SkinInfo" +msgstr "" + +# unknown +msgid "SkinInputBar" +msgstr "" + +# unknown +msgid "SkinKeyboard" +msgstr "" + +# unknown +msgid "SkinMainBar" +msgstr "" + +# unknown +msgid "SkinMenu" +msgstr "" + +# unknown +msgid "SkinTrayIcon" +msgstr "" + +# unknown +msgid "TraditionalChinese" +msgstr "" + +# unknown +msgid "Xim" +msgstr "" + +#: unknown +msgid "AdjustFast" +msgstr "" + +#: unknown +msgid "AdjustFreq" +msgstr "" + +#: unknown +msgid "AdjustNo" +msgstr "" + +#: unknown +msgid "Auto" +msgstr "" + +#: unknown +msgid "Clean" +msgstr "" + +#: unknown +msgid "Commit" +msgstr "" + +#: unknown +msgid "Copy" +msgstr "" + +#: unknown +msgid "Frontend" +msgstr "" + +#: unknown +msgid "Hide" +msgstr "" + +#: unknown +msgid "InputMethod" +msgstr "" + +#: unknown +msgid "L_CTRL" +msgstr "" + +#: unknown +msgid "L_SHIFT" +msgstr "" + +#: unknown +msgid "Module" +msgstr "" + +#: unknown +msgid "Native" +msgstr "" + +#: unknown +msgid "Nothing" +msgstr "" + +#: unknown +msgid "OpenCC" +msgstr "" + +#: unknown +msgid "R_CTRL" +msgstr "" + +#: unknown +msgid "Resize" +msgstr "" + +#: unknown +msgid "R_SHIFT" +msgstr "" + +#: unknown +msgid "SharedLibrary" +msgstr "" + +#: unknown +msgid "Show" +msgstr "" + +#: unknown +msgid "UI" +msgstr "" + +#: unknown /home/saber/Develop/fcitx/build/po/tmp/fcitx-vk.conf.in.h:1 +msgid "Virtual Key Board" +msgstr "" + +#: unknown +msgid "Quick Phrase List" +msgstr "" + +#: unknown +msgid "Auto English Trigger Word" +msgstr "" + +#: unknown /home/saber/Develop/fcitx/build/po/../..//src/ui/classic/skin.c:892 +msgid "Skin" +msgstr "" + +#: unknown +msgid "Shuang Pin Schema" +msgstr "" + +#: unknown /home/saber/Develop/fcitx/build/po/tmp/fcitx-table.conf.in.h:1 +msgid "Table" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/tmp/cangjie.conf.in.h:1 +msgid "Cangjie" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/tmp/db.conf.in.h:1 +msgid "Dianbaoma" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/tmp/erbi.conf.in.h:1 +msgid "Erbi" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/tmp/qxm.conf.in.h:1 +msgid "Bingchan" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/tmp/wanfeng.conf.in.h:1 +msgid "Wanfeng" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/tmp/wbpy.conf.in.h:1 +msgid "WubiPinyin" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/tmp/wbx.conf.in.h:1 +msgid "Wubi" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/tmp/zrm.conf.in.h:1 +msgid "Ziranma" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/tmp/fcitx-pinyin.conf.in.h:2 +msgid "Simple Pinyin support for Fcitx" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/tmp/fcitx-qw.conf.in.h:1 +#: /home/saber/Develop/fcitx/build/po/../..//src/im/qw/qw.c:61 +msgid "Quwei" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/tmp/fcitx-qw.conf.in.h:2 +msgid "Quwei Input Method for Fcitx" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/tmp/fcitx-table.conf.in.h:2 +msgid "Table Input Method for Fcitx" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/tmp/fcitx-chttrans.conf.in.h:1 +msgid "Convert Simplified Chinese To Traditional Chinese" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/tmp/fcitx-chttrans.conf.in.h:2 +msgid "Simplified Chinese To Traditional Chinese" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/tmp/fcitx-punc.conf.in.h:1 +msgid "Punctation Conversion Support" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/tmp/fcitx-punc.conf.in.h:2 +msgid "Punctuation Support" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/tmp/fcitx-quickphrase.conf.in.h:1 +msgid "Conveniently Input English or User-Defined Simple Table" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/tmp/fcitx-quickphrase.conf.in.h:2 +msgid "Quickphrase" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/tmp/fcitx-vk.conf.in.h:2 +msgid "Virtual Key Board in order to input special character" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/tmp/fcitx-x11.conf.in.h:1 +msgid "X11 Support" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/tmp/fcitx-x11.conf.in.h:2 +msgid "X11 Utilitiy used by other Addon" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/tmp/fcitx-autoeng.conf.in.h:1 +msgid "Auto Change to English Mode while Input Specific String" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/tmp/fcitx-autoeng.conf.in.h:2 +msgid "Auto English Mode" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/tmp/fcitx-dbus.conf.in.h:1 +msgid "DBus Support" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/tmp/fcitx-dbus.conf.in.h:2 +msgid "Provides DBus Support (Used by other Addon)" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/tmp/fcitx-fullwidth-char.conf.in.h:1 +msgid "Fullwidth Character" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/tmp/fcitx-fullwidth-char.conf.in.h:2 +msgid "Provides Fullwidth Character Input Support" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/tmp/fcitx-remote-module.conf.in.h:1 +msgid "Remote" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/tmp/fcitx-remote-module.conf.in.h:2 +msgid "Used by fcitx-remote to change Fcitx state from console" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/tmp/fcitx-classic-ui.conf.in.h:1 +msgid "Classic" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/tmp/fcitx-classic-ui.conf.in.h:2 +msgid "Classic User Interface with Skin support" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/tmp/fcitx-kimpanel-ui.conf.in.h:1 +msgid "Kimpanel" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/tmp/fcitx-kimpanel-ui.conf.in.h:2 +msgid "Kimpanel Support for Fcitx" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/tmp/fcitx-ipc.conf.in.h:1 +msgid "Fcitx DBus Frontend " +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/tmp/fcitx-ipc.conf.in.h:2 +msgid "Frontend Used by IM Modules" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/tmp/fcitx-xim.conf.in.h:1 +msgid "Fcitx XIM Frontend" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/tmp/fcitx-xim.conf.in.h:2 +msgid "Provides XIM support" +msgstr "" + +#: ../..//data/fcitx-configtool.desktop.in.h:1 +msgid "Fcitx Config Tool" +msgstr "" + +#: ../..//data/fcitx-configtool.desktop.in.h:2 +msgid "Fcitx GUI Config Tool" +msgstr "" + +#: ../..//data/fcitx.desktop.in.h:1 +msgid "Chinese Input Method" +msgstr "" + +#: ../..//data/fcitx.desktop.in.h:2 +#: /home/saber/Develop/fcitx/build/po/../..//src/ui/kimpanel/kimpanel.c:226 +msgid "Fcitx" +msgstr "" + +#: ../..//data/fcitx-kimpanel.desktop.in.h:1 +msgid "Chinese Input Method (Use Kimpanel)" +msgstr "" + +#: ../..//data/fcitx-kimpanel.desktop.in.h:2 +msgid "Fcitx Kimpanel" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/../..//src/core/errorhandler.c:59 +#, c-format +msgid "FCITX -- Get Signal No.: %d" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/../..//src/im/pinyin/py.c:121 +msgid "Shuangpin" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/../..//src/im/pinyin/py.c:407 +msgid "Can not find System Database of Pinyin!" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/../..//src/im/pinyin/py.c:419 +#, c-format +msgid "Load extra dict: %s" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/../..//src/im/pinyin/py.c:796 +msgid "Press index to delete user phrase (ESC for cancel)" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/../..//src/im/pinyin/py.c:808 +msgid "Press number to make word in frequent list" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/../..//src/im/pinyin/py.c:838 +#, c-format +msgid "Press 1 to delete %s in frequent list (ESC for cancel)" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/../..//src/im/pinyin/py.c:840 +#, c-format +msgid "Press 1-%d to delete %s in frequent list (ESC for cancel)" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/../..//src/im/pinyin/py.c:1773 +#, c-format +msgid "Cannot Save User Pinyin Database: %s" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/../..//src/im/pinyin/py.c:1828 +#, c-format +msgid "Cannot Save Frequent word: %s" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/../..//src/im/pinyin/py.c:1892 +#, c-format +msgid "Cannot Save Pinyin Index: %s" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/../..//src/im/pinyin/py.c:2149 +msgid "Remind: " +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/../..//src/im/pinyin/py.c:2289 +msgid "Migrate the old file path to the new one" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/../..//src/im/table/table.c:205 +#, c-format +msgid "Load Table Config File:%s" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/../..//src/im/table/table.c:215 +#, c-format +msgid "Table Config %s is %s" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/../..//src/im/table/table.c:475 +msgid "" +"Left/Right to choose selected character, Press Enter to confirm, Press " +"Escape to Cancel" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/../..//src/im/table/table.c:503 +msgid "Pinyin: " +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/../..//src/im/table/table.c:505 +msgid "Cannot found Pinyin" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/../..//src/im/table/table.c:556 +msgid "Choose the phrase to be put in the front, Press Escape to Cancel" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/../..//src/im/table/table.c:565 +msgid "Choose the phrase to be deleted, Press Escape to Cancel" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/../..//src/im/table/table.c:1062 +msgid "Remind:" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/../..//src/im/table/table.c:1162 +msgid "Phrase is already in Dict " +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/../..//src/im/table/table.c:1165 +msgid "Code is " +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/../..//src/im/table/table.c:1167 +msgid " Ctrl+Delete To Delete" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/../..//src/module/chttrans/chttrans.c:170 +msgid "OpenCC initialization error" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/../..//src/module/chttrans/chttrans.c:179 +msgid "OpenCC error" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/../..//src/module/chttrans/chttrans.c:268 +#: /home/saber/Develop/fcitx/build/po/../..//src/ui/classic/classicui.c:306 +#, c-format +msgid "Load Config File %s" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/../..//src/module/punc/punc.c:249 +msgid "Can't open Chinese punc file." +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/../..//src/module/quickphrase/QuickPhrase.c:217 +#: /home/saber/Develop/fcitx/build/po/../..//src/module/quickphrase/QuickPhrase.c:321 +msgid "Quick Phrase: " +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/../..//src/module/quickphrase/QuickPhrase.c:253 +#: /home/saber/Develop/fcitx/build/po/../..//src/module/autoeng/AutoEng.c:291 +msgid "Press Enter to input text" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/../..//src/module/quickphrase/QuickPhrase.c:323 +msgid "Spcae for ; Enter for;" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/../..//src/module/vk/vk.c:166 +msgid "Virtual Keyboard" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/../..//src/module/autoeng/AutoEng.c:244 +msgid "Too long item for AutoEng" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/../..//src/module/dbus/dbusstuff.c:80 +#, c-format +msgid "Connection Error (%s)" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/../..//src/module/dbus/dbusstuff.c:101 +msgid "Add Watch Function Error" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/../..//src/module/dbus/dbusstuff.c:120 +#, c-format +msgid "Name Error (%s)" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/../..//src/module/dbus/dbusstuff.c:126 +msgid "Name Error" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/../..//src/module/remote/remote.c:69 +#, c-format +msgid "Can't open socket %s: %s" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/../..//src/ui/classic/InputWindow.c:169 +msgid "DISPLAY InputWindow" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/../..//src/ui/classic/MainWindow.c:145 +msgid "DISPLAY MainWindow" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/../..//src/ui/classic/MainWindow.c:160 +msgid "DRAW MainWindow" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/../..//src/ui/classic/classicui.c:133 +msgid "About Fcitx" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/../..//src/ui/classic/classicui.c:134 +msgid "Online Help" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/../..//src/ui/classic/classicui.c:148 +msgid "Configure" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/../..//src/ui/classic/classicui.c:149 +msgid "Exit" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/../..//src/ui/classic/classicui.c:395 +#: /home/saber/Develop/fcitx/build/po/../..//src/ui/classic/classicui.c:402 +#: /home/saber/Develop/fcitx/build/po/../..//src/ui/classic/classicui.c:425 +#: /home/saber/Develop/fcitx/build/po/../..//src/ui/classic/classicui.c:432 +msgid "Unable to create process" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/../..//src/ui/classic/skin.c:153 +msgid "Can not load default skin, is installion correct?" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/../..//src/ui/classic/skin.c:159 +#, c-format +msgid "Can not load skin %s, return to default" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/../..//src/ui/classic/tray.c:167 +#, c-format +msgid "X error %i on opcode send" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/../..//src/ui/kimpanel/kimpanel.c:227 +#: /home/saber/Develop/fcitx/build/po/../..//src/ui/kimpanel/kimpanel.c:260 +msgid "Disabled" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/../..//src/ui/kimpanel/kimpanel.c:227 +#: /home/saber/Develop/fcitx/build/po/../..//src/ui/kimpanel/kimpanel.c:261 +msgid "Input Method Disabled" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/../..//src/ui/cairostuff/font.c:50 +msgid "Error: Load fontconfig failed" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/../..//src/ui/cairostuff/font.c:94 +#, c-format +msgid "your current font is: %s" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/../..//src/ui/cairostuff/font.c:111 +msgid "no valid font." +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/../..//src/lib/fcitx-config/fcitx-config.c:364 +msgid "Enum option duplicated." +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/../..//src/lib/fcitx-config/fcitx-config.c:381 +msgid "Enum option number must larger than 0" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/../..//src/lib/fcitx-config/fcitx-config.c:396 +msgid "Enum Option is invalid, take it as string" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/../..//src/lib/fcitx-config/fcitx-config.c:404 +#, c-format +msgid "Unknown type, take it as string: %s" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/../..//src/lib/fcitx-config/fcitx-config.c:410 +msgid "Missing type, take it as string" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/../..//src/lib/fcitx-config/fcitx-config.c:911 +#, c-format +msgid "Configure group name error: line %d" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/../..//src/lib/fcitx-config/fcitx-config.c:924 +#, c-format +msgid "Duplicate group name, merge with the previous: %s :line %d" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/../..//src/lib/fcitx-config/fcitx-config.c:945 +#, c-format +msgid "Invalid Entry: line %d missing '='" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/../..//src/lib/fcitx-config/fcitx-config.c:1000 +#, c-format +msgid "Duplicate option, overwrite: line %d" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/../..//src/lib/fcitx-config/fcitx-config.c:1155 +#, c-format +msgid "Option %s is Invalid, Use Default Value %s" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/../..//src/lib/fcitx-config/fcitx-config.c:1167 +#, c-format +msgid "Option %s is Invalid." +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/../..//src/lib/fcitx-config/fcitx-config.c:1215 +#, c-format +msgid "no default option for %s/%s" +msgstr "" + +#. * +#. * @brief define a singleton function to load config file description +#. * +#: /home/saber/Develop/fcitx/build/po/../..//src/lib/fcitx-config/fcitx-config.h:336 +#, c-format +msgid "Load Config Description File %s Erorr, Please Check your install." +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/../..//src/lib/fcitx/addon.c:141 +#, c-format +msgid "Load Addon Config File:%s" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/../..//src/lib/fcitx/addon.c:152 +#, c-format +msgid "Addon Config %s is %s" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/../..//src/lib/fcitx/addon.c:235 +#, c-format +msgid "Disable addon %s, dependency %s can not be satisfied." +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/../..//src/lib/fcitx/ime.c:211 +#, c-format +msgid "IM: open %s fail %s" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/../..//src/lib/fcitx/ime.c:217 +#, c-format +msgid "IM: bad im %s" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/../..//src/lib/fcitx/ime.c:241 +msgid "No available Input Method" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/../..//src/lib/fcitx/ime.c:735 +msgid "Input Method" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/../..//src/lib/fcitx/ime.c:787 +msgid "Input Speed: " +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/../..//src/lib/fcitx/ime.c:789 +msgid "/min Time Used: " +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/../..//src/lib/fcitx/ime.c:791 +msgid "min Num of Characters: " +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/../..//src/lib/fcitx/instance.c:149 +msgid "Please check your environment varibles." +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/../..//src/lib/fcitx/instance.c:150 +msgid "You can use tools provided by your distribution." +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/../..//src/lib/fcitx/instance.c:151 +msgid "" +"Or You may need to set environment varibles below to make fcitx work " +"correctly." +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/../..//src/lib/fcitx/instance.c:155 +msgid "Or (Depends on you install im module or not)" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/../..//src/lib/fcitx/instance.c:159 +msgid "" +"If you use login manager like gdm or kdm, put those lines in your ~/." +"xprofile." +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/../..//src/lib/fcitx/instance.c:160 +msgid "If you use ~/.xinitrc and startx, put those lines in ~/.xinitrc." +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/../..//src/lib/fcitx/instance.c:162 +msgid "Setting Hint" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/../..//src/lib/fcitx/instance.c:271 +msgid "pthread mutex init failed" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/../..//src/lib/fcitx/module.c:67 +#, c-format +msgid "Module: open %s fail %s" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/../..//src/lib/fcitx/module.c:73 +msgid "Module: bad module" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/../..//src/lib/fcitx/ui.c:160 +#, c-format +msgid "UI: open %s fail %s" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/../..//src/lib/fcitx/ui.c:168 +msgid "UI: bad ui" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/../..//src/lib/fcitx/frontend.c:323 +#, c-format +msgid "Frontend: open %s fail %s" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/../..//src/lib/fcitx/frontend.c:329 +msgid "Frontend: bad frontend" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/../..//src/lib/fcitx/frontend.c:352 +msgid "No available frontend" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/../..//src/frontend/xim/xim.c:144 +msgid "X11 not initialized" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/../..//src/frontend/xim/xim.c:155 +msgid "Can't Create imWindow" +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/../..//src/frontend/xim/xim.c:166 +msgid "XMODIFIERS Error." +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/../..//src/frontend/xim/xim.c:170 +msgid "Please set XMODIFIERS." +msgstr "" + +#: /home/saber/Develop/fcitx/build/po/../..//src/frontend/xim/xim.c:269 +#, c-format +msgid "Start XIM error. Another XIM daemon named %s is running?" +msgstr "" diff -Nru fcitx-4.0.1/po/getdescpo fcitx-4.1.1/po/getdescpo --- fcitx-4.0.1/po/getdescpo 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/po/getdescpo 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,61 @@ +#!/bin/sh +filename=desc.po +indir=$1 +outdir=$2 + +cd "$outdir" + +rm -f "$outdir/$filename"; touch "$outdir/$filename" + +cat > "$outdir/$filename" <, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: fcitx-dev@googlegroups.com\n" +"POT-Creation-Date: 2010-11-17 11:48+0800\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +EOF + +cd $indir + +descfiles=`find "$indir" -name ".hg" -prune -or -name "test" -prune -or -iname "*.desc" | grep desc` + +# Extract Description +for f in $descfiles +do + awk '/^[\t ]*Description=/ { print "\n#: '$f':" NR"\n" "msgid \"" substr($0, 13)"\"\n" "msgstr \"\""}' "$f" >> "$outdir/$filename" +done + +# Extract Group Name +grep -nH '^\[' $descfiles | grep -v 'DescriptionFile' | awk ' "^[" { split($0, a, ":"); split(a[3], b, "/"); print substr(b[1], 2); }' | sort | uniq | awk '{ print "# unknown\nmsgid \""$0"\"\nmsgstr \"\"\n"; }' >> "$outdir/$filename" + +# Extract Enum Name +grep -h 'Enum[0-9]' $descfiles | sed -e 's/Enum[0-9]=//g' | sort | uniq | awk '{ print "#: unknown\nmsgid \""$0"\"\nmsgstr \"\"\n"; }' >> "$outdir/$filename" + +confinfiles=`find "$indir" -iname "*.conf.in"` +for f in $confinfiles +do + awk '/SubConfig=.*/ { + value=substr($0,11); + split(value,a,","); + for (item in a) { + i = index(a[item],":"); + if (substr(a[item], i + 1) != "domain") + { + print "#: unknown\nmsgid \""substr(a[item],0, index(a[item],":") -1)"\"\nmsgstr \"\"\n" + } + } + }' $f >> "$outdir/$filename" +done \ No newline at end of file diff -Nru fcitx-4.0.1/po/Makefile.in.in fcitx-4.1.1/po/Makefile.in.in --- fcitx-4.0.1/po/Makefile.in.in 2010-11-28 11:55:33.000000000 +0000 +++ fcitx-4.1.1/po/Makefile.in.in 1970-01-01 00:00:00.000000000 +0000 @@ -1,217 +0,0 @@ -# Makefile for program source directory in GNU NLS utilities package. -# Copyright (C) 1995, 1996, 1997 by Ulrich Drepper -# Copyright (C) 2004-2008 Rodney Dawes -# -# This file may be copied and used freely without restrictions. It may -# be used in projects which are not available under a GNU Public License, -# but which still want to provide support for the GNU gettext functionality. -# -# - Modified by Owen Taylor to use GETTEXT_PACKAGE -# instead of PACKAGE and to look for po2tbl in ./ not in intl/ -# -# - Modified by jacob berkman to install -# Makefile.in.in and po2tbl.sed.in for use with glib-gettextize -# -# - Modified by Rodney Dawes for use with intltool -# -# We have the following line for use by intltoolize: -# INTLTOOL_MAKEFILE - -GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ -PACKAGE = @PACKAGE@ -VERSION = @VERSION@ - -SHELL = @SHELL@ - -srcdir = @srcdir@ -top_srcdir = @top_srcdir@ -top_builddir = @top_builddir@ -VPATH = @srcdir@ - -prefix = @prefix@ -exec_prefix = @exec_prefix@ -datadir = @datadir@ -datarootdir = @datarootdir@ -libdir = @libdir@ -DATADIRNAME = @DATADIRNAME@ -itlocaledir = $(prefix)/$(DATADIRNAME)/locale -subdir = po -install_sh = @install_sh@ -# Automake >= 1.8 provides @mkdir_p@. -# Until it can be supposed, use the safe fallback: -mkdir_p = $(install_sh) -d - -INSTALL = @INSTALL@ -INSTALL_DATA = @INSTALL_DATA@ - -GMSGFMT = @GMSGFMT@ -MSGFMT = @MSGFMT@ -XGETTEXT = @XGETTEXT@ -INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ -INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ -MSGMERGE = INTLTOOL_EXTRACT=$(INTLTOOL_EXTRACT) srcdir=$(srcdir) $(INTLTOOL_UPDATE) --gettext-package $(GETTEXT_PACKAGE) --dist -GENPOT = INTLTOOL_EXTRACT=$(INTLTOOL_EXTRACT) srcdir=$(srcdir) $(INTLTOOL_UPDATE) --gettext-package $(GETTEXT_PACKAGE) --pot - -ALL_LINGUAS = @ALL_LINGUAS@ - -PO_LINGUAS=$(shell if test -r $(srcdir)/LINGUAS; then grep -v "^\#" $(srcdir)/LINGUAS; else echo "$(ALL_LINGUAS)"; fi) - -USER_LINGUAS=$(shell if test -n "$(LINGUAS)"; then LLINGUAS="$(LINGUAS)"; ALINGUAS="$(ALL_LINGUAS)"; for lang in $$LLINGUAS; do if test -n "`grep \^$$lang$$ $(srcdir)/LINGUAS 2>/dev/null`" -o -n "`echo $$ALINGUAS|tr ' ' '\n'|grep \^$$lang$$`"; then printf "$$lang "; fi; done; fi) - -USE_LINGUAS=$(shell if test -n "$(USER_LINGUAS)" -o -n "$(LINGUAS)"; then LLINGUAS="$(USER_LINGUAS)"; else if test -n "$(PO_LINGUAS)"; then LLINGUAS="$(PO_LINGUAS)"; else LLINGUAS="$(ALL_LINGUAS)"; fi; fi; for lang in $$LLINGUAS; do printf "$$lang "; done) - -POFILES=$(shell LINGUAS="$(PO_LINGUAS)"; for lang in $$LINGUAS; do printf "$$lang.po "; done) - -DISTFILES = Makefile.in.in POTFILES.in $(POFILES) -EXTRA_DISTFILES = ChangeLog POTFILES.skip Makevars LINGUAS - -POTFILES = \ -# This comment gets stripped out - -CATALOGS=$(shell LINGUAS="$(USE_LINGUAS)"; for lang in $$LINGUAS; do printf "$$lang.gmo "; done) - -.SUFFIXES: -.SUFFIXES: .po .pox .gmo .mo .msg .cat - -.po.pox: - $(MAKE) $(GETTEXT_PACKAGE).pot - $(MSGMERGE) $< $(GETTEXT_PACKAGE).pot -o $*.pox - -.po.mo: - $(MSGFMT) -o $@ $< - -.po.gmo: - file=`echo $* | sed 's,.*/,,'`.gmo \ - && rm -f $$file && $(GMSGFMT) -o $$file $< - -.po.cat: - sed -f ../intl/po2msg.sed < $< > $*.msg \ - && rm -f $@ && gencat $@ $*.msg - - -all: all-@USE_NLS@ - -all-yes: $(CATALOGS) -all-no: - -$(GETTEXT_PACKAGE).pot: $(POTFILES) - $(GENPOT) - -install: install-data -install-data: install-data-@USE_NLS@ -install-data-no: all -install-data-yes: all - linguas="$(USE_LINGUAS)"; \ - for lang in $$linguas; do \ - dir=$(DESTDIR)$(itlocaledir)/$$lang/LC_MESSAGES; \ - $(mkdir_p) $$dir; \ - if test -r $$lang.gmo; then \ - $(INSTALL_DATA) $$lang.gmo $$dir/$(GETTEXT_PACKAGE).mo; \ - echo "installing $$lang.gmo as $$dir/$(GETTEXT_PACKAGE).mo"; \ - else \ - $(INSTALL_DATA) $(srcdir)/$$lang.gmo $$dir/$(GETTEXT_PACKAGE).mo; \ - echo "installing $(srcdir)/$$lang.gmo as" \ - "$$dir/$(GETTEXT_PACKAGE).mo"; \ - fi; \ - if test -r $$lang.gmo.m; then \ - $(INSTALL_DATA) $$lang.gmo.m $$dir/$(GETTEXT_PACKAGE).mo.m; \ - echo "installing $$lang.gmo.m as $$dir/$(GETTEXT_PACKAGE).mo.m"; \ - else \ - if test -r $(srcdir)/$$lang.gmo.m ; then \ - $(INSTALL_DATA) $(srcdir)/$$lang.gmo.m \ - $$dir/$(GETTEXT_PACKAGE).mo.m; \ - echo "installing $(srcdir)/$$lang.gmo.m as" \ - "$$dir/$(GETTEXT_PACKAGE).mo.m"; \ - else \ - true; \ - fi; \ - fi; \ - done - -# Empty stubs to satisfy archaic automake needs -dvi info ctags tags CTAGS TAGS ID: - -# Define this as empty until I found a useful application. -install-exec installcheck: - -uninstall: - linguas="$(USE_LINGUAS)"; \ - for lang in $$linguas; do \ - rm -f $(DESTDIR)$(itlocaledir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE).mo; \ - rm -f $(DESTDIR)$(itlocaledir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE).mo.m; \ - done - -check: all $(GETTEXT_PACKAGE).pot - rm -f missing notexist - srcdir=$(srcdir) $(INTLTOOL_UPDATE) -m - if [ -r missing -o -r notexist ]; then \ - exit 1; \ - fi - -mostlyclean: - rm -f *.pox $(GETTEXT_PACKAGE).pot *.old.po cat-id-tbl.tmp - rm -f .intltool-merge-cache - -clean: mostlyclean - -distclean: clean - rm -f Makefile Makefile.in POTFILES stamp-it - rm -f *.mo *.msg *.cat *.cat.m *.gmo - -maintainer-clean: distclean - @echo "This command is intended for maintainers to use;" - @echo "it deletes files that may require special tools to rebuild." - rm -f Makefile.in.in - -distdir = ../$(PACKAGE)-$(VERSION)/$(subdir) -dist distdir: $(DISTFILES) - dists="$(DISTFILES)"; \ - extra_dists="$(EXTRA_DISTFILES)"; \ - for file in $$extra_dists; do \ - test -f $(srcdir)/$$file && dists="$$dists $(srcdir)/$$file"; \ - done; \ - for file in $$dists; do \ - test -f $$file || file="$(srcdir)/$$file"; \ - ln $$file $(distdir) 2> /dev/null \ - || cp -p $$file $(distdir); \ - done - -update-po: Makefile - $(MAKE) $(GETTEXT_PACKAGE).pot - tmpdir=`pwd`; \ - linguas="$(USE_LINGUAS)"; \ - for lang in $$linguas; do \ - echo "$$lang:"; \ - result="`$(MSGMERGE) -o $$tmpdir/$$lang.new.po $$lang`"; \ - if $$result; then \ - if cmp $(srcdir)/$$lang.po $$tmpdir/$$lang.new.po >/dev/null 2>&1; then \ - rm -f $$tmpdir/$$lang.new.po; \ - else \ - if mv -f $$tmpdir/$$lang.new.po $$lang.po; then \ - :; \ - else \ - echo "msgmerge for $$lang.po failed: cannot move $$tmpdir/$$lang.new.po to $$lang.po" 1>&2; \ - rm -f $$tmpdir/$$lang.new.po; \ - exit 1; \ - fi; \ - fi; \ - else \ - echo "msgmerge for $$lang.gmo failed!"; \ - rm -f $$tmpdir/$$lang.new.po; \ - fi; \ - done - -Makefile POTFILES: stamp-it - @if test ! -f $@; then \ - rm -f stamp-it; \ - $(MAKE) stamp-it; \ - fi - -stamp-it: Makefile.in.in $(top_builddir)/config.status POTFILES.in - cd $(top_builddir) \ - && CONFIG_FILES=$(subdir)/Makefile.in CONFIG_HEADERS= CONFIG_LINKS= \ - $(SHELL) ./config.status - -# Tell versions [3.59,3.63) of GNU make not to export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff -Nru fcitx-4.0.1/po/Makevars fcitx-4.1.1/po/Makevars --- fcitx-4.0.1/po/Makevars 2010-11-28 11:54:59.000000000 +0000 +++ fcitx-4.1.1/po/Makevars 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ -# Makefile variables for PO directory in any package using GNU gettext. - -# Usually the message domain is the same as the package name. -DOMAIN = $(PACKAGE) - -# These two variables depend on the location of this directory. -subdir = po -top_builddir = .. - -# These options get passed to xgettext. -XGETTEXT_OPTIONS = --keyword=_ --keyword=N_ --keyword=__ - -# This is the copyright holder that gets inserted into the header of the -# $(DOMAIN).pot file. Set this to the copyright holder of the surrounding -# package. (Note that the msgstr strings, extracted from the package's -# sources, belong to the copyright holder of the package.) Translators are -# expected to transfer the copyright for their translations to this person -# or entity, or to disclaim their copyright. The empty string stands for -# the public domain; in this case the translators are expected to disclaim -# their copyright. -COPYRIGHT_HOLDER = Copyright (c) 2002-2010 Yuking - -# This is the email address or URL to which the translators shall report -# bugs in the untranslated strings: -# - Strings which are not entire sentences, see the maintainer guidelines -# in the GNU gettext documentation, section 'Preparing Strings'. -# - Strings which use unclear terms or require additional context to be -# understood. -# - Strings which make invalid assumptions about notation of date, time or -# money. -# - Pluralisation problems. -# - Incorrect English spelling. -# - Incorrect formatting. -# It can be your email address, or a mailing list address where translators -# can write to without being subscribed, or the URL of a web page through -# which the translators can contact you. -MSGID_BUGS_ADDRESS = fcitx-dev@googlegroups.com - -# This is the list of locale categories, beyond LC_MESSAGES, for which the -# message catalogs shall be used. It is usually empty. -EXTRA_LOCALE_CATEGORIES = diff -Nru fcitx-4.0.1/po/POTFILES.in fcitx-4.1.1/po/POTFILES.in --- fcitx-4.0.1/po/POTFILES.in 2010-12-17 06:05:13.000000000 +0000 +++ fcitx-4.1.1/po/POTFILES.in 1970-01-01 00:00:00.000000000 +0000 @@ -1,85 +0,0 @@ -# List of source files which contain translatable strings. -./data/desc.po -data/fcitx.desktop.in -data/fcitx-configtool.desktop.in -src/interface/ImeRemote.c -src/interface/DBus.h -src/interface/DBus.c -src/ui/tray.h -src/ui/AboutWindow.c -src/ui/TrayWindow.h -src/ui/tray.c -src/ui/AboutWindow.h -src/ui/ui.c -src/ui/MenuWindow.c -src/ui/InputWindow.c -src/ui/MainWindow.h -src/ui/MessageWindow.h -src/ui/MainWindow.c -src/ui/skin.h -src/ui/font.h -src/ui/MessageWindow.c -src/ui/MenuWindow.h -src/ui/ui.h -src/ui/skin.c -src/ui/font.c -src/ui/TrayWindow.c -src/ui/skinconfig.c -src/ui/InputWindow.h -src/fcitx-config/uthash.h -src/tools/profile.h -src/fcitx-config/hotkey.h -src/fcitx-config/fcitx-config.c -src/fcitx-config/fcitx-config.h -src/fcitx-config/sprintf.c -src/tools/configfile.h -src/fcitx-config/sprintf.h -src/fcitx-config/hotkey.c -src/im/special/punc.h -src/im/special/punc.c -src/im/special/vk.h -src/im/special/QuickPhrase.c -src/im/special/AutoEng.c -src/im/special/vk.c -src/im/special/AutoEng.h -src/im/special/QuickPhrase.h -src/im/qw/qw.h -src/im/qw/qw.c -src/im/pinyin/py.c -src/im/pinyin/PYFA.c -src/im/pinyin/sp.c -src/im/pinyin/sp.h -src/im/pinyin/pyParser.h -src/im/pinyin/pyMapTable.h -src/im/pinyin/pyMapTable.c -src/im/pinyin/py.h -src/im/pinyin/PYFA.h -src/im/pinyin/pyParser.c -src/im/table/table.h -src/im/table/table.c -src/im/table/tableconfig.c -src/im/extra/extra.h -src/im/extra/extra.c -src/tools/utf8_in_gb18030.h -src/fcitx-config/xdg.h -src/fcitx-config/xdg.c -src/tools/configfile.c -src/tools/utarray.h -src/tools/utf8.h -src/tools/profile.c -src/tools/tools.c -src/tools/tools.h -src/tools/utf8.c -src/core/addon.h -src/core/addon.c -src/core/xim.h -src/core/main.c -src/core/IC.h -src/core/xim.c -src/core/MyErrorsHandlers.c -src/core/ime.h -src/core/internalVersion.c -src/core/fcitx.h -src/core/IC.c -src/core/MyErrorsHandlers.h -src/core/ime.c diff -Nru fcitx-4.0.1/po/POTFILES.in.in fcitx-4.1.1/po/POTFILES.in.in --- fcitx-4.0.1/po/POTFILES.in.in 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/po/POTFILES.in.in 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,177 @@ +# List of source files which contain translatable strings. +[encoding: UTF-8] +./po/desc.po +./po/conf.po +@REL_SOURCE_ROOT@/data/table/cangjie.conf.in +@REL_SOURCE_ROOT@/data/table/db.conf.in +@REL_SOURCE_ROOT@/data/table/erbi.conf.in +@REL_SOURCE_ROOT@/data/table/qxm.conf.in +@REL_SOURCE_ROOT@/data/table/wanfeng.conf.in +@REL_SOURCE_ROOT@/data/table/wbpy.conf.in +@REL_SOURCE_ROOT@/data/table/wbx.conf.in +@REL_SOURCE_ROOT@/data/table/zrm.conf.in +@REL_SOURCE_ROOT@/data/fcitx-configtool.desktop.in +@REL_SOURCE_ROOT@/data/fcitx.desktop.in +@REL_SOURCE_ROOT@/data/fcitx-kimpanel.desktop.in +@REL_SOURCE_ROOT@/src/core/errorhandler.c +@REL_SOURCE_ROOT@/src/core/fcitx.c +@REL_SOURCE_ROOT@/src/core/errorhandler.h +@REL_SOURCE_ROOT@/src/im/pinyin/PYFA.c +@REL_SOURCE_ROOT@/src/im/pinyin/py.c +@REL_SOURCE_ROOT@/src/im/pinyin/pyMapTable.c +@REL_SOURCE_ROOT@/src/im/pinyin/pyParser.c +@REL_SOURCE_ROOT@/src/im/pinyin/pyconfig.c +@REL_SOURCE_ROOT@/src/im/pinyin/sp.c +@REL_SOURCE_ROOT@/src/im/pinyin/pyconfig.h +@REL_SOURCE_ROOT@/src/im/pinyin/pydef.h +@REL_SOURCE_ROOT@/src/im/pinyin/PYFA.h +@REL_SOURCE_ROOT@/src/im/pinyin/py.h +@REL_SOURCE_ROOT@/src/im/pinyin/pyMapTable.h +@REL_SOURCE_ROOT@/src/im/pinyin/pyParser.h +@REL_SOURCE_ROOT@/src/im/pinyin/sp.h +@REL_SOURCE_ROOT@/src/im/pinyin/fcitx-pinyin.conf.in +@REL_SOURCE_ROOT@/src/im/qw/qw.c +@REL_SOURCE_ROOT@/src/im/qw/fcitx-qw.conf.in +@REL_SOURCE_ROOT@/src/im/table/table.c +@REL_SOURCE_ROOT@/src/im/table/tableconfig.c +@REL_SOURCE_ROOT@/src/im/table/table.h +@REL_SOURCE_ROOT@/src/im/table/fcitx-table.conf.in +@REL_SOURCE_ROOT@/src/module/chttrans/chttrans.c +@REL_SOURCE_ROOT@/src/module/chttrans/fcitx-chttrans.conf.in +@REL_SOURCE_ROOT@/src/module/punc/punc.c +@REL_SOURCE_ROOT@/src/module/punc/punc.h +@REL_SOURCE_ROOT@/src/module/punc/fcitx-punc.conf.in +@REL_SOURCE_ROOT@/src/module/quickphrase/QuickPhrase.c +@REL_SOURCE_ROOT@/src/module/quickphrase/QuickPhrase.h +@REL_SOURCE_ROOT@/src/module/quickphrase/fcitx-quickphrase.conf.in +@REL_SOURCE_ROOT@/src/module/vk/vk.c +@REL_SOURCE_ROOT@/src/module/vk/fcitx-vk.conf.in +@REL_SOURCE_ROOT@/src/module/x11/x11stuff.c +@REL_SOURCE_ROOT@/src/module/x11/xerrorhandler.c +@REL_SOURCE_ROOT@/src/module/x11/x11stuff.h +@REL_SOURCE_ROOT@/src/module/x11/xerrorhandler.h +@REL_SOURCE_ROOT@/src/module/x11/fcitx-x11.conf.in +@REL_SOURCE_ROOT@/src/module/autoeng/AutoEng.c +@REL_SOURCE_ROOT@/src/module/autoeng/AutoEng.h +@REL_SOURCE_ROOT@/src/module/autoeng/fcitx-autoeng.conf.in +@REL_SOURCE_ROOT@/src/module/dbus/dbusstuff.c +@REL_SOURCE_ROOT@/src/module/dbus/dbusstuff.h +@REL_SOURCE_ROOT@/src/module/dbus/fcitx-dbus.conf.in +@REL_SOURCE_ROOT@/src/module/fullwidthchar/fullwidthchar.c +@REL_SOURCE_ROOT@/src/module/fullwidthchar/fcitx-fullwidth-char.conf.in +@REL_SOURCE_ROOT@/src/module/remote/remote.c +@REL_SOURCE_ROOT@/src/module/remote/fcitx-remote-module.conf.in +@REL_SOURCE_ROOT@/src/ui/classic/AboutWindow.c +@REL_SOURCE_ROOT@/src/ui/classic/InputWindow.c +@REL_SOURCE_ROOT@/src/ui/classic/MainWindow.c +@REL_SOURCE_ROOT@/src/ui/classic/MenuWindow.c +@REL_SOURCE_ROOT@/src/ui/classic/MessageWindow.c +@REL_SOURCE_ROOT@/src/ui/classic/TrayWindow.c +@REL_SOURCE_ROOT@/src/ui/classic/classicui.c +@REL_SOURCE_ROOT@/src/ui/classic/classicuiconfig.c +@REL_SOURCE_ROOT@/src/ui/classic/skin.c +@REL_SOURCE_ROOT@/src/ui/classic/skinconfig.c +@REL_SOURCE_ROOT@/src/ui/classic/tray.c +@REL_SOURCE_ROOT@/src/ui/classic/AboutWindow.h +@REL_SOURCE_ROOT@/src/ui/classic/InputWindow.h +@REL_SOURCE_ROOT@/src/ui/classic/MainWindow.h +@REL_SOURCE_ROOT@/src/ui/classic/MenuWindow.h +@REL_SOURCE_ROOT@/src/ui/classic/MessageWindow.h +@REL_SOURCE_ROOT@/src/ui/classic/TrayWindow.h +@REL_SOURCE_ROOT@/src/ui/classic/classicui.h +@REL_SOURCE_ROOT@/src/ui/classic/classicuiinterface.h +@REL_SOURCE_ROOT@/src/ui/classic/skin.h +@REL_SOURCE_ROOT@/src/ui/classic/tray.h +@REL_SOURCE_ROOT@/src/ui/classic/fcitx-classic-ui.conf.in +@REL_SOURCE_ROOT@/src/ui/kimpanel/kimpanel.c +@REL_SOURCE_ROOT@/src/ui/kimpanel/fcitx-kimpanel-ui.conf.in +@REL_SOURCE_ROOT@/src/ui/cairostuff/cairostuff.c +@REL_SOURCE_ROOT@/src/ui/cairostuff/font.c +@REL_SOURCE_ROOT@/src/ui/cairostuff/cairostuff.h +@REL_SOURCE_ROOT@/src/ui/cairostuff/font.h +@REL_SOURCE_ROOT@/src/lib/fcitx-utils/utf8.c +@REL_SOURCE_ROOT@/src/lib/fcitx-utils/utils.c +@REL_SOURCE_ROOT@/src/lib/fcitx-utils/utarray.h +@REL_SOURCE_ROOT@/src/lib/fcitx-utils/utf8.h +@REL_SOURCE_ROOT@/src/lib/fcitx-utils/utils.h +@REL_SOURCE_ROOT@/src/lib/fcitx-utils/log.c +@REL_SOURCE_ROOT@/src/lib/fcitx-utils/log.h +@REL_SOURCE_ROOT@/src/lib/fcitx-utils/uthash.h +@REL_SOURCE_ROOT@/src/lib/fcitx-config/fcitx-config.c +@REL_SOURCE_ROOT@/src/lib/fcitx-config/hotkey.c +@REL_SOURCE_ROOT@/src/lib/fcitx-config/sprintf.c +@REL_SOURCE_ROOT@/src/lib/fcitx-config/xdg.c +@REL_SOURCE_ROOT@/src/lib/fcitx-config/fcitx-config.h +@REL_SOURCE_ROOT@/src/lib/fcitx-config/hotkey.h +@REL_SOURCE_ROOT@/src/lib/fcitx-config/sprintf.h +@REL_SOURCE_ROOT@/src/lib/fcitx-config/xdg.h +@REL_SOURCE_ROOT@/src/lib/fcitx/addon.c +@REL_SOURCE_ROOT@/src/lib/fcitx/hook.c +@REL_SOURCE_ROOT@/src/lib/fcitx/ime.c +@REL_SOURCE_ROOT@/src/lib/fcitx/instance.c +@REL_SOURCE_ROOT@/src/lib/fcitx/module.c +@REL_SOURCE_ROOT@/src/lib/fcitx/ui.c +@REL_SOURCE_ROOT@/src/lib/fcitx/addon.h +@REL_SOURCE_ROOT@/src/lib/fcitx/fcitx.h +@REL_SOURCE_ROOT@/src/lib/fcitx/hook-internal.h +@REL_SOURCE_ROOT@/src/lib/fcitx/hook.h +@REL_SOURCE_ROOT@/src/lib/fcitx/ime-internal.h +@REL_SOURCE_ROOT@/src/lib/fcitx/ime.h +@REL_SOURCE_ROOT@/src/lib/fcitx/module.h +@REL_SOURCE_ROOT@/src/lib/fcitx/ui.h +@REL_SOURCE_ROOT@/src/lib/fcitx/keys.c +@REL_SOURCE_ROOT@/src/lib/fcitx/keys.h +@REL_SOURCE_ROOT@/src/lib/fcitx/configfile.c +@REL_SOURCE_ROOT@/src/lib/fcitx/configfile.h +@REL_SOURCE_ROOT@/src/lib/fcitx/instance.h +@REL_SOURCE_ROOT@/src/lib/fcitx/profile.c +@REL_SOURCE_ROOT@/src/lib/fcitx/profile.h +@REL_SOURCE_ROOT@/src/lib/fcitx/frontend.c +@REL_SOURCE_ROOT@/src/lib/fcitx/frontend.h +@REL_SOURCE_ROOT@/src/frontend/gtk2/client.c +@REL_SOURCE_ROOT@/src/frontend/gtk2/client.h +@REL_SOURCE_ROOT@/src/frontend/gtk2/fcitxim.c +@REL_SOURCE_ROOT@/src/frontend/gtk2/fcitximcontext.c +@REL_SOURCE_ROOT@/src/frontend/gtk2/fcitximcontext.h +@REL_SOURCE_ROOT@/src/frontend/ipc/ipc.c +@REL_SOURCE_ROOT@/src/frontend/ipc/ipc.h +@REL_SOURCE_ROOT@/src/frontend/ipc/fcitx-ipc.conf.in +@REL_SOURCE_ROOT@/src/frontend/qt/fcitx-input-context.cpp +@REL_SOURCE_ROOT@/src/frontend/qt/fcitx-input-context.h +@REL_SOURCE_ROOT@/src/frontend/qt/fcitx-plugin.cpp +@REL_SOURCE_ROOT@/src/frontend/xim/IC.c +@REL_SOURCE_ROOT@/src/frontend/xim/IC.h +@REL_SOURCE_ROOT@/src/frontend/xim/lib/FrameMgr.c +@REL_SOURCE_ROOT@/src/frontend/xim/lib/FrameMgr.h +@REL_SOURCE_ROOT@/src/frontend/xim/lib/IMConn.c +@REL_SOURCE_ROOT@/src/frontend/xim/lib/IMMethod.c +@REL_SOURCE_ROOT@/src/frontend/xim/lib/IMValues.c +@REL_SOURCE_ROOT@/src/frontend/xim/lib/IMdkit.h +@REL_SOURCE_ROOT@/src/frontend/xim/lib/Xi18n.h +@REL_SOURCE_ROOT@/src/frontend/xim/lib/Xi18nTr.h +@REL_SOURCE_ROOT@/src/frontend/xim/lib/Xi18nX.h +@REL_SOURCE_ROOT@/src/frontend/xim/lib/XimFunc.h +@REL_SOURCE_ROOT@/src/frontend/xim/lib/XimProto.h +@REL_SOURCE_ROOT@/src/frontend/xim/lib/i18nAttr.c +@REL_SOURCE_ROOT@/src/frontend/xim/lib/i18nClbk.c +@REL_SOURCE_ROOT@/src/frontend/xim/lib/i18nIMProto.c +@REL_SOURCE_ROOT@/src/frontend/xim/lib/i18nIc.c +@REL_SOURCE_ROOT@/src/frontend/xim/lib/i18nMethod.c +@REL_SOURCE_ROOT@/src/frontend/xim/lib/i18nPtHdr.c +@REL_SOURCE_ROOT@/src/frontend/xim/lib/i18nUtil.c +@REL_SOURCE_ROOT@/src/frontend/xim/lib/i18nX.c +@REL_SOURCE_ROOT@/src/frontend/xim/xim.c +@REL_SOURCE_ROOT@/src/frontend/xim/xim.h +@REL_SOURCE_ROOT@/src/frontend/xim/ximhandler.c +@REL_SOURCE_ROOT@/src/frontend/xim/ximhandler.h +@REL_SOURCE_ROOT@/src/frontend/xim/fcitx-xim.conf.in +@REL_SOURCE_ROOT@/tools/createPYMB.c +@REL_SOURCE_ROOT@/tools/fcitx-remote.c +@REL_SOURCE_ROOT@/tools/mb2org.c +@REL_SOURCE_ROOT@/tools/mb2txt.c +@REL_SOURCE_ROOT@/tools/pyTools.c +@REL_SOURCE_ROOT@/tools/readPYBase.c +@REL_SOURCE_ROOT@/tools/readPYMB.c +@REL_SOURCE_ROOT@/tools/scel2org.c +@REL_SOURCE_ROOT@/tools/txt2mb.c +@REL_SOURCE_ROOT@/tools/pyTools.h diff -Nru fcitx-4.0.1/po/zh_CN.po fcitx-4.1.1/po/zh_CN.po --- fcitx-4.0.1/po/zh_CN.po 2010-12-17 06:05:57.000000000 +0000 +++ fcitx-4.1.1/po/zh_CN.po 2011-09-08 16:00:05.000000000 +0000 @@ -1,15 +1,15 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # -# Weng Xuetian , 2010. +# Weng Xuetian , 2010, 2011. msgid "" msgstr "" "Project-Id-Version: fcitx 20100424\n" -"Report-Msgid-Bugs-To: fcitx-dev@googlegroups.com\n" -"POT-Creation-Date: 2010-12-17 14:05+0800\n" -"PO-Revision-Date: 2010-12-08 12:34+0800\n" -"Last-Translator: Weng Xuetian \n" -"Language-Team: Chinese Simplified \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-09-07 23:45+0800\n" +"PO-Revision-Date: 2011-09-07 23:46+0800\n" +"Last-Translator: \n" +"Language-Team: Chinese Simplified \n" "Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,731 +18,1151 @@ "X-Poedit-Country: CHINA\n" "X-Poedit-Basepath: ../\n" "Plural-Forms: \n" -"X-Generator: Lokalize 1.1\n" +"X-Generator: Lokalize 1.2\n" -#: data/config.desc:4 -msgid "Font" -msgstr "字体" +#: /home/saber/Develop/fcitx/build/po/../..//src/im/table/table.c:1167 +msgid " Ctrl+Delete To Delete" +msgstr " Ctrl+Delete 删除" -#: data/config.desc:9 -msgid "Menu Font" -msgstr "菜单字体" +#: /home/saber/Develop/fcitx/build/po/../..//src/lib/fcitx/ime.c:789 +msgid "/min Time Used: " +msgstr "/分 经过时间: " -#: data/config.desc:14 -msgid "Font Locale to display" -msgstr "字体区域" +#: /home/saber/Develop/fcitx/build/po/../..//src/ui/classic/classicui.c:133 +msgid "About Fcitx" +msgstr "关于Fcitx" -#: data/config.desc:19 -msgid "Record File of Input" -msgstr "记录文件" +#: /home/saber/Develop/fcitx/data/config.desc:23 +msgid "Action after press enter" +msgstr "回车键操作" -#: data/config.desc:24 -msgid "Use System Tray Icon" -msgstr "使用系统托盘" +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:217 +msgid "Active Menu Color" +msgstr "活动菜单项颜色" -#: data/config.desc:29 -msgid "Use DBus to display UI (Require KIMPanel)" -msgstr "使用DBus来显示界面(需要KIMPanel)" - -#: data/config.desc:34 -msgid "Enable Addons to Fcitx" -msgstr "在Fcitx启用附加组件" +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:56 +msgid "Active Menu Item Character Color" +msgstr "活动菜单项颜色" -#: data/config.desc:39 -msgid "Seconds sleep before fcitx really start" -msgstr "Fcitx真正启动前延迟的秒数" +# unknown +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:189 +msgid "Active Tray Icon" +msgstr "活动输入法图标" -#: data/config.desc:44 -msgid "Use English Punc After a Number" -msgstr "数字后跟半角符号" +#: /home/saber/Develop/fcitx/build/po/../..//src/module/dbus/dbusstuff.c:101 +msgid "Add Watch Function Error" +msgstr "增加监听函数错误" -#: data/config.desc:53 -msgid "Action after press enter" -msgstr "回车键操作" +# unknown +msgid "Addon" +msgstr "附加组件" -#: data/config.desc:62 -msgid "Action after press SemiColon" -msgstr "分号键操作" - -#: data/config.desc:67 -msgid "Input English Character if you input upper case" -msgstr "大写时输入英文" - -#: data/config.desc:72 -msgid "Convert Punc to Chinese Punc" -msgstr "转换中文标点" +#: /home/saber/Develop/fcitx/build/po/../..//src/lib/fcitx/addon.c:152 +#, c-format +msgid "Addon Config %s is %s" +msgstr "Addon Config %s is %s" -#: data/config.desc:77 -msgid "Disable Paging in Legend Mode" -msgstr "联想模式禁用翻页" +#: /home/saber/Develop/fcitx/src/im/table/table.desc:14 +msgid "Adjust Order" +msgstr "输入顺序" -#: data/config.desc:82 -msgid "Send inputed Text if Switch to English Mode" -msgstr "快速切换英文模式时上屏" +# unknown +#: unknown +msgid "AdjustFast" +msgstr "快速" + +#: unknown +msgid "AdjustFreq" +msgstr "按频率" + +#: unknown +msgid "AdjustNo" +msgstr "不调整" + +# unknown +msgid "Appearance" +msgstr "外观" + +#: unknown +msgid "Auto" +msgstr "自动" + +#: /home/saber/Develop/fcitx/build/po/tmp/fcitx-autoeng.conf.in.h:1 +msgid "Auto Change to English Mode while Input Specific String" +msgstr "在输入特定字符串时切换到英文模式" + +#: /home/saber/Develop/fcitx/src/im/pinyin/fcitx-pinyin.desc:24 +msgid "Auto Create Phrase" +msgstr "自动组词" + +#: /home/saber/Develop/fcitx/build/po/tmp/fcitx-autoeng.conf.in.h:2 +msgid "Auto English Mode" +msgstr "自动英文模式" + +#: unknown +msgid "Auto English Trigger Word" +msgstr "自动英文模式触发词" + +#: /home/saber/Develop/fcitx/src/im/table/table.desc:67 +msgid "Auto Phrase" +msgstr "自动词组" + +#: /home/saber/Develop/fcitx/src/im/table/table.desc:72 +msgid "Auto Phrase Length" +msgstr "自动词组长度" + +#: /home/saber/Develop/fcitx/src/im/table/table.desc:77 +msgid "Auto Phrase Phrase" +msgstr "词组参与自动造词" + +#: /home/saber/Develop/fcitx/src/im/table/table.desc:43 +msgid "Auto Send Candidate Word if no match in Code Table" +msgstr "空码自动上屏" + +#: /home/saber/Develop/fcitx/src/im/table/table.desc:38 +msgid "Auto Send Candidate Word to Client" +msgstr "自动上屏" + +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:64 +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:117 +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:197 +msgid "Background Image" +msgstr "背景图片" + +#: /home/saber/Develop/fcitx/build/po/tmp/qxm.conf.in.h:1 +msgid "Bingchan" +msgstr "冰蟾全息" + +#: /home/saber/Develop/fcitx/build/po/../..//src/im/pinyin/py.c:407 +msgid "Can not find System Database of Pinyin!" +msgstr "无法找到系统的拼音词库" + +#: /home/saber/Develop/fcitx/build/po/../..//src/ui/classic/skin.c:153 +msgid "Can not load default skin, is installion correct?" +msgstr "无法加载默认皮肤,安装是否正确?" + +#: /home/saber/Develop/fcitx/build/po/../..//src/ui/classic/skin.c:159 +#, c-format +msgid "Can not load skin %s, return to default" +msgstr "无法加载皮肤%s,回到默认皮肤" + +#: /home/saber/Develop/fcitx/build/po/../..//src/frontend/xim/xim.c:155 +msgid "Can't Create imWindow" +msgstr "无法创建输入法窗口" + +#: /home/saber/Develop/fcitx/build/po/../..//src/module/punc/punc.c:249 +msgid "Can't open Chinese punc file." +msgstr "无法打开中文标点文件。" + +#: /home/saber/Develop/fcitx/build/po/../..//src/module/remote/remote.c:69 +#, c-format +msgid "Can't open socket %s: %s" +msgstr "无法打开Socket %s: %s" -#: data/config.desc:87 +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:36 +msgid "Candidate Index Color" +msgstr "候选词索引颜色" + +#: /home/saber/Develop/fcitx/data/config.desc:38 msgid "Candidate Word Number" msgstr "候选词个数" -#: data/config.desc:96 -msgid "Main Window Hide Mode" -msgstr "主窗口隐藏模式" +#: /home/saber/Develop/fcitx/build/po/tmp/cangjie.conf.in.h:1 +msgid "Cangjie" +msgstr "仓颉" -#: data/config.desc:101 -msgid "Show Input Window In the center of screen" -msgstr "输入窗口显示在正中" +#: /home/saber/Develop/fcitx/build/po/../..//src/im/pinyin/py.c:1828 +#, c-format +msgid "Cannot Save Frequent word: %s" +msgstr "无法保存词频: %s" -#: data/config.desc:106 -msgid "Show Input Window After Trigger Input Mode" -msgstr "切换输入时显示输入条" +#: /home/saber/Develop/fcitx/build/po/../..//src/im/pinyin/py.c:1892 +#, c-format +msgid "Cannot Save Pinyin Index: %s" +msgstr "无法保存拼音索引: %s" -#: data/config.desc:111 -msgid "Show Point After Index" -msgstr "序号后加点" +#: /home/saber/Develop/fcitx/build/po/../..//src/im/pinyin/py.c:1773 +#, c-format +msgid "Cannot Save User Pinyin Database: %s" +msgstr "无法保存用户拼音词库: %s" -#: data/config.desc:116 -msgid "Show Input Speed" -msgstr "显示输入速度" +#: /home/saber/Develop/fcitx/build/po/../..//src/im/table/table.c:505 +msgid "Cannot found Pinyin" +msgstr "无法找到拼音" -#: data/config.desc:121 -msgid "Show Version" -msgstr "显示版本" +#: /home/saber/Develop/fcitx/data/addon.desc:22 +msgid "Category" +msgstr "种类" -#: data/config.desc:126 -msgid "Show Hint Window while ENV is not correctly configured." -msgstr "环境未配置正确时显示提示窗口" +# unknown +#: ../..//data/fcitx.desktop.in.h:1 +msgid "Chinese Input Method" +msgstr "中文输入法" -#: data/config.desc:131 -msgid "Skin Name in use" -msgstr "皮肤名称" +# unknown +#: ../..//data/fcitx-kimpanel.desktop.in.h:1 +msgid "Chinese Input Method (Use Kimpanel)" +msgstr "中文输入法 (使用 Kimpanel)" -#: data/config.desc:136 -msgid "Hot key of Triggering Input Method" -msgstr "快捷键: 切换输入法" +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:76 +msgid "Chinese Mode Icon" +msgstr "中文模式图标" -#: data/config.desc:148 -msgid "Hotkey of Switching Chinese and English Mode" -msgstr "快捷键: 切换中英文输入" +#: /home/saber/Develop/fcitx/src/im/table/table.desc:101 +msgid "Choose" +msgstr "选择键" + +#: /home/saber/Develop/fcitx/build/po/../..//src/im/table/table.c:565 +msgid "Choose the phrase to be deleted, Press Escape to Cancel" +msgstr "选择要删除的词组,按Escape 取消" + +#: /home/saber/Develop/fcitx/build/po/../..//src/im/table/table.c:556 +msgid "Choose the phrase to be put in the front, Press Escape to Cancel" +msgstr "选择放在前面的词组,按Escape 取消" + +# unknown +#: /home/saber/Develop/fcitx/build/po/tmp/fcitx-classic-ui.conf.in.h:1 +msgid "Classic" +msgstr "经典界面" + +#: /home/saber/Develop/fcitx/build/po/tmp/fcitx-classic-ui.conf.in.h:2 +msgid "Classic User Interface with Skin support" +msgstr "带皮肤支持的经典界面" + +# unknown +msgid "ClassicUI" +msgstr "经典界面" + +# unknown +#: unknown +msgid "Clean" +msgstr "清除" + +#: /home/saber/Develop/fcitx/src/im/table/table.desc:10 +msgid "Code Table File" +msgstr "码表文件" + +#: /home/saber/Develop/fcitx/src/im/table/table.desc:2 +msgid "Code Table Name" +msgstr "码表名称" -#: data/config.desc:153 +#: /home/saber/Develop/fcitx/build/po/../..//src/im/table/table.c:1165 +msgid "Code is " +msgstr "编码为 " + +# unknown +msgid "CodeTable" +msgstr "码表" + +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:137 +msgid "Color of Cursor" +msgstr "光标颜色" + +# unknown +#: /home/saber/Develop/fcitx/data/addon.desc:12 +msgid "Comment" +msgstr "描述" + +# unknown +#: unknown +msgid "Commit" +msgstr "提交输入" + +#: /home/saber/Develop/fcitx/build/po/../..//src/ui/classic/classicui.c:148 +msgid "Configure" +msgstr "配置" + +#: /home/saber/Develop/fcitx/build/po/../..//src/lib/fcitx-config/fcitx-config.c:911 +#, c-format +msgid "Configure group name error: line %d" +msgstr "配置组名错误: 行%d" + +#: /home/saber/Develop/fcitx/build/po/../..//src/module/dbus/dbusstuff.c:80 +#, c-format +msgid "Connection Error (%s)" +msgstr "连接错误 (%s)" + +#: /home/saber/Develop/fcitx/build/po/tmp/fcitx-quickphrase.conf.in.h:1 +msgid "Conveniently Input English or User-Defined Simple Table" +msgstr "方便地输入英文或用户定义的码表" + +#: /home/saber/Develop/fcitx/build/po/tmp/fcitx-chttrans.conf.in.h:1 +msgid "Convert Simplified Chinese To Traditional Chinese" +msgstr "简体中文转换为繁体中文" + +# unknown +#: unknown +msgid "Copy" +msgstr "复制" + +#: /home/saber/Develop/fcitx/data/profile.desc:17 +msgid "Current Input Method Index" +msgstr "当前输入法" + +#: /home/saber/Develop/fcitx/build/po/tmp/fcitx-dbus.conf.in.h:1 +msgid "DBus Support" +msgstr "DBus 支持" + +#: /home/saber/Develop/fcitx/build/po/../..//src/ui/classic/InputWindow.c:169 +msgid "DISPLAY InputWindow" +msgstr "DISPLAY InputWindow" + +#: /home/saber/Develop/fcitx/build/po/../..//src/ui/classic/MainWindow.c:145 +msgid "DISPLAY MainWindow" +msgstr "DISPLAY MainWindow" + +#: /home/saber/Develop/fcitx/build/po/../..//src/ui/classic/MainWindow.c:160 +msgid "DRAW MainWindow" +msgstr "DRAW MainWindow" + +#: /home/saber/Develop/fcitx/src/im/pinyin/fcitx-pinyin.desc:14 +msgid "Default Shuangpin Schema" +msgstr "默认双拼方案" + +#: /home/saber/Develop/fcitx/data/addon.desc:42 +msgid "Dependency" +msgstr "依赖" + +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:15 +msgid "Description of Skin" +msgstr "描述" + +#: /home/saber/Develop/fcitx/build/po/tmp/db.conf.in.h:1 +msgid "Dianbaoma" +msgstr "电报码" + +#: /home/saber/Develop/fcitx/data/config.desc:28 +msgid "Disable Paging in Remind Mode" +msgstr "联想模式禁用翻页" + +#: /home/saber/Develop/fcitx/build/po/../..//src/lib/fcitx/addon.c:235 +#, c-format +msgid "Disable addon %s, dependency %s can not be satisfied." +msgstr "禁用插件 %s,依赖 %s 无法满足。" + +#: /home/saber/Develop/fcitx/build/po/../..//src/ui/kimpanel/kimpanel.c:227 +#: /home/saber/Develop/fcitx/build/po/../..//src/ui/kimpanel/kimpanel.c:260 +msgid "Disabled" +msgstr "禁用" + +#: /home/saber/Develop/fcitx/data/config.desc:73 +msgid "" +"Do not show input window if there is one one candidate (Hide when only " +"preedit string must be selected)" +msgstr "只有一个候选词时不显示输入窗口(只有预编辑字符串时不显示窗口必须选中)" + +#: /home/saber/Develop/fcitx/data/config.desc:68 +msgid "Do not show input window if there is only preedit string" +msgstr "只有预编辑字符串时不显示输入窗口" + +#: /home/saber/Develop/fcitx/data/config.desc:93 msgid "Double click Switch Key to Change Mode" msgstr "双击中英文切换键时切换" -#: data/config.desc:158 -msgid "Interval of Two Key Input" -msgstr "输入间隔" +#: /home/saber/Develop/fcitx/build/po/../..//src/lib/fcitx-config/fcitx-config.c:924 +#, c-format +msgid "Duplicate group name, merge with the previous: %s :line %d" +msgstr "组名重复,和之前的组合并: %s :行 %d" + +#: /home/saber/Develop/fcitx/build/po/../..//src/lib/fcitx-config/fcitx-config.c:1000 +#, c-format +msgid "Duplicate option, overwrite: line %d" +msgstr "重复的配置项,覆盖: 行%d" -#: data/config.desc:163 -msgid "Hotkey of Switching Follow Cursor Mode" -msgstr "快捷键: 切换光标跟随" - -#: data/config.desc:168 -msgid "Hotkey of Hiding Main Window" -msgstr "快捷键: 隐藏主窗口" +#: /home/saber/Develop/fcitx/src/im/table/table.desc:106 +msgid "Enable This Table or Not" +msgstr "是否启用此码表" -#: data/config.desc:173 -msgid "Hotkey of Switching Virtual Keyboard" -msgstr "快捷键: 切换软键盘" +#: /home/saber/Develop/fcitx/data/addon.desc:27 +msgid "Enabled" +msgstr "启用" -#: data/config.desc:178 -msgid "Hotkey of Switching Traditional Chinese Input Mode On." -msgstr "快捷键: 切换简繁体中文输入" +#: /home/saber/Develop/fcitx/src/module/chttrans/fcitx-chttrans.desc:12 +msgid "Enabled in input" +msgstr "输入中启用" -#: data/config.desc:183 -msgid "Hotkey of Switching Legend Mode" -msgstr "快捷键: 切换联想模式" +#: /home/saber/Develop/fcitx/src/im/table/table.desc:48 +msgid "End Key" +msgstr "中止键" -#: data/config.desc:188 -msgid "Hotkey of Looking up the Corresponding pinyin of Word." -msgstr "快捷键: 反查拼音" +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:72 +msgid "English Mode Icon" +msgstr "英文模式图标" -#: data/config.desc:193 -msgid "Hotkey of Switching Full Width Character Mode" -msgstr "快捷键: 切换全角" +#: /home/saber/Develop/fcitx/build/po/../..//src/lib/fcitx-config/fcitx-config.c:396 +msgid "Enum Option is invalid, take it as string" +msgstr "枚举选项不合法,将类型作为字符串处理" + +#: /home/saber/Develop/fcitx/build/po/../..//src/lib/fcitx-config/fcitx-config.c:364 +msgid "Enum option duplicated." +msgstr "枚举选项重复" + +#: /home/saber/Develop/fcitx/build/po/../..//src/lib/fcitx-config/fcitx-config.c:381 +msgid "Enum option number must larger than 0" +msgstr "枚举选项个数需要大于0" + +#: /home/saber/Develop/fcitx/build/po/tmp/erbi.conf.in.h:1 +msgid "Erbi" +msgstr "二笔" + +#: /home/saber/Develop/fcitx/build/po/../..//src/ui/cairostuff/font.c:50 +msgid "Error: Load fontconfig failed" +msgstr "错误: fontconfig加载失败" + +#: /home/saber/Develop/fcitx/src/im/table/table.desc:63 +msgid "Exact Match" +msgstr "精确匹配" -#: data/config.desc:198 -msgid "Hotkey of Switch Chinese Punc Mode" -msgstr "快捷键: 切换中英文标点" +#: /home/saber/Develop/fcitx/build/po/../..//src/ui/classic/classicui.c:149 +msgid "Exit" +msgstr "退出" + +#: /home/saber/Develop/fcitx/build/po/../..//src/core/errorhandler.c:59 +#, c-format +msgid "FCITX -- Get Signal No.: %d" +msgstr "Fcitx接收到信号: %d" -#: data/config.desc:203 +#: ../..//data/fcitx.desktop.in.h:2 +#: /home/saber/Develop/fcitx/build/po/../..//src/ui/kimpanel/kimpanel.c:226 +msgid "Fcitx" +msgstr "Fcitx" + +#: ../..//data/fcitx-configtool.desktop.in.h:1 +msgid "Fcitx Config Tool" +msgstr "Fcitx配置工具" + +#: /home/saber/Develop/fcitx/build/po/tmp/fcitx-ipc.conf.in.h:1 +msgid "Fcitx DBus Frontend " +msgstr "Fcitx DBus 前端" + +#: ../..//data/fcitx-configtool.desktop.in.h:2 +msgid "Fcitx GUI Config Tool" +msgstr "Fcitx图形化配置工具" + +#: ../..//data/fcitx-kimpanel.desktop.in.h:2 +msgid "Fcitx Kimpanel" +msgstr "Fcitx (使用Kimpanel)" + +#: /home/saber/Develop/fcitx/build/po/tmp/fcitx-xim.conf.in.h:1 +msgid "Fcitx XIM Frontend" +msgstr "Fcitx XIM 前端" + +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:104 +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:181 +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:233 +msgid "Fill Background Horizontal rule" +msgstr "横向填充规则" + +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:96 +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:173 +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:225 +msgid "Fill Background Vertical rule" +msgstr "纵向填充规则" + +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:40 +msgid "First Candidate Color" +msgstr "第一候选词颜色" + +#: /home/saber/Develop/fcitx/src/im/pinyin/fcitx-pinyin.desc:136 +msgid "Fix misstype gn/ng" +msgstr "修复拼音中ng和gn的输入错误" + +#: /home/saber/Develop/fcitx/src/ui/classic/fcitx-classic-ui.desc:14 +msgid "Font" +msgstr "字体" + +#: /home/saber/Develop/fcitx/src/ui/classic/fcitx-classic-ui.desc:24 +msgid "Font Locale to display" +msgstr "字体区域" + +#: unknown +msgid "Frontend" +msgstr "前端" + +#: /home/saber/Develop/fcitx/build/po/tmp/fcitx-ipc.conf.in.h:2 +msgid "Frontend Used by IM Modules" +msgstr "输入法模块使用的前端" + +#: /home/saber/Develop/fcitx/build/po/../..//src/lib/fcitx/frontend.c:329 +msgid "Frontend: bad frontend" +msgstr "前端: 有问题的前端" + +#: /home/saber/Develop/fcitx/build/po/../..//src/lib/fcitx/frontend.c:323 +#, c-format +msgid "Frontend: open %s fail %s" +msgstr "前端: 打开 %s 失败 %s" + +#: /home/saber/Develop/fcitx/build/po/tmp/fcitx-fullwidth-char.conf.in.h:1 +msgid "Fullwidth Character" +msgstr "全角字符" + +#: /home/saber/Develop/fcitx/src/im/pinyin/fcitx-pinyin.desc:81 +msgid "Fuzzy an and ang" +msgstr "模糊an和ang" + +#: /home/saber/Develop/fcitx/src/im/pinyin/fcitx-pinyin.desc:111 +msgid "Fuzzy c and ch" +msgstr "模糊c和ch" + +#: /home/saber/Develop/fcitx/src/im/pinyin/fcitx-pinyin.desc:86 +msgid "Fuzzy en and eng" +msgstr "模糊en和eng" + +#: /home/saber/Develop/fcitx/src/im/pinyin/fcitx-pinyin.desc:116 +msgid "Fuzzy f and h" +msgstr "模糊f和h" + +#: /home/saber/Develop/fcitx/src/im/pinyin/fcitx-pinyin.desc:91 +msgid "Fuzzy ian and iang" +msgstr "模糊ian和iang" + +#: /home/saber/Develop/fcitx/src/im/pinyin/fcitx-pinyin.desc:96 +msgid "Fuzzy in and ing" +msgstr "模糊in和ing" + +#: /home/saber/Develop/fcitx/src/im/pinyin/fcitx-pinyin.desc:121 +msgid "Fuzzy l and n" +msgstr "模糊l和n" + +#: /home/saber/Develop/fcitx/src/im/pinyin/fcitx-pinyin.desc:101 +msgid "Fuzzy ou and u" +msgstr "模糊ou和u" + +#: /home/saber/Develop/fcitx/src/im/pinyin/fcitx-pinyin.desc:126 +msgid "Fuzzy s and sh" +msgstr "模糊s和sh" + +#: /home/saber/Develop/fcitx/src/im/pinyin/fcitx-pinyin.desc:106 +msgid "Fuzzy uan and uang" +msgstr "模糊uan和uang" + +#: /home/saber/Develop/fcitx/src/im/pinyin/fcitx-pinyin.desc:131 +msgid "Fuzzy z and zh" +msgstr "模糊z和zh" + +#: /home/saber/Develop/fcitx/data/config.desc:43 +msgid "Give the tips of Phrase" +msgstr "提示词库中词组" + +# unknown +#: unknown +msgid "Hide" +msgstr "隐藏" + +#: /home/saber/Develop/fcitx/data/config.desc:78 +msgid "Hot key of Triggering Input Method" +msgstr "快捷键: 切换输入法" + +# unknown +msgid "Hotkey" +msgstr "快捷键" + +#: /home/saber/Develop/fcitx/src/im/pinyin/fcitx-pinyin.desc:34 +msgid "Hotkey of Adding Frequent Word" +msgstr "快捷键: 添加常用字" + +#: /home/saber/Develop/fcitx/src/im/pinyin/fcitx-pinyin.desc:44 +msgid "Hotkey of Delete User Phrase" +msgstr "快捷键: 删除用户词组" + +#: /home/saber/Develop/fcitx/src/im/pinyin/fcitx-pinyin.desc:39 +msgid "Hotkey of Deleting Frequent Word" +msgstr "快捷键: 删除常用字" + +#: /home/saber/Develop/fcitx/data/config.desc:128 +msgid "Hotkey of Going Next Page" +msgstr "快捷键: 后一页" + +#: /home/saber/Develop/fcitx/data/config.desc:123 msgid "Hotkey of Going Prev Page" msgstr "快捷键: 前一页" -#: data/config.desc:208 -msgid "Hotkey of Going Next Page" -msgstr "快捷键: 后一页" +#: /home/saber/Develop/fcitx/src/im/pinyin/fcitx-pinyin.desc:49 +msgid "Hotkey of Inputing Word From Phrase" +msgstr "快捷键: 以词定字" + +#: /home/saber/Develop/fcitx/data/config.desc:138 +msgid "Hotkey of Saving All Config and Input History" +msgstr "快捷键: 保存配置及输入历史" + +#: /home/saber/Develop/fcitx/data/config.desc:143 +msgid "Hotkey of Switch Embeded Preedit" +msgstr "快捷键: 切换嵌入预编辑字符串" + +#: /home/saber/Develop/fcitx/data/config.desc:118 +msgid "Hotkey of Switch Full Width Punc Mode" +msgstr "切换全角标点的快捷键" + +#: /home/saber/Develop/fcitx/data/config.desc:88 +msgid "Hotkey of Switching Chinese and English Mode" +msgstr "快捷键: 切换中英文输入" + +#: /home/saber/Develop/fcitx/data/config.desc:113 +msgid "Hotkey of Switching Full Width Character Mode" +msgstr "快捷键: 切换全角" + +#: /home/saber/Develop/fcitx/data/config.desc:108 +msgid "Hotkey of Switching Remind Mode" +msgstr "快捷键: 切换联想模式" + +#: /home/saber/Develop/fcitx/data/config.desc:103 +msgid "Hotkey of Switching Virtual Keyboard" +msgstr "快捷键: 切换虚拟键盘" -#: data/config.desc:213 +#: /home/saber/Develop/fcitx/data/config.desc:133 msgid "Hotkey to Choose Second and Third Candidate Word" msgstr "快捷键: 选择第二第三候选词" -#: data/config.desc:218 -msgid "Hotkey of Saving All Config and Input History" -msgstr "快捷键: 保存配置及输入历史" - -#: data/config.desc:223 -msgid "Hotkey of Switching Recording Mode" -msgstr "快捷键: 切换记录模式" - -#: data/config.desc:228 -msgid "Hotkey of Reseting Recording Mode" -msgstr "快捷键: 重置记录模式" +#: /home/saber/Develop/fcitx/build/po/../..//src/lib/fcitx/ime.c:217 +#, c-format +msgid "IM: bad im %s" +msgstr "输入法: 有问题的输入法 %s" -#: data/config.desc:233 -msgid "Pinyin Priority Order, Zero to Disable" -msgstr "拼音输入法优先级,0为禁用" +#: /home/saber/Develop/fcitx/build/po/../..//src/lib/fcitx/ime.c:211 +#, c-format +msgid "IM: open %s fail %s" +msgstr "输入法: 打开%s 失败 %s" -#: data/config.desc:238 -msgid "Shuangpin Priority Order, Zero to Disable" -msgstr "双拼输入法优先级,0为禁用" +#: /home/saber/Develop/fcitx/src/im/table/table.desc:6 +msgid "Icon Name" +msgstr "图标名称" -#: data/config.desc:243 -msgid "Default Shuangpin Schema" -msgstr "默认双拼方案" +#: /home/saber/Develop/fcitx/build/po/../..//src/lib/fcitx/instance.c:159 +msgid "" +"If you use login manager like gdm or kdm, put those lines in your ~/." +"xprofile." +msgstr "如果您使用登录管理器,比如 gdm 或 kdm,请将这些行加入到 ~/.xprofile 中。" + +#: /home/saber/Develop/fcitx/build/po/../..//src/lib/fcitx/instance.c:160 +msgid "If you use ~/.xinitrc and startx, put those lines in ~/.xinitrc." +msgstr "如果您使用 ~/.xinitrc 和 startx,请将这些行加入到 ~/.xinitrc 中。" -#: data/config.desc:248 -msgid "Quwei Priority Order, Zero to Disable" -msgstr "区位输入法优先级,0为禁用" - -#: data/config.desc:253 -msgid "Table Priority Order, Zero to Disable" -msgstr "码表输入法优先级,0为禁用" +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:60 +msgid "Inactive Menu Item Character Color" +msgstr "非活动菜单项颜色" -#: data/config.desc:258 -msgid "Give the tips of Phrase" -msgstr "提示词库中词组" +# unknown +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:193 +msgid "Inctive Tray Icon" +msgstr "非活动输入法图标" -#: data/config.desc:263 -msgid "Use Complete Pinyin" -msgstr "使用完整拼音" +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:19 +msgid "Input Font Size" +msgstr "输入字体大小" -#: data/config.desc:268 -msgid "Auto Create Phrase" -msgstr "自动组词" +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:32 +msgid "Input Message Color" +msgstr "输入信息颜色" -#: data/config.desc:273 -msgid "Save Auto Created Phrase" -msgstr "保存自动词组" +# unknown +#: /home/saber/Develop/fcitx/build/po/../..//src/lib/fcitx/ime.c:735 +msgid "Input Method" +msgstr "输入法" -#: data/config.desc:278 -msgid "Hotkey of Adding Frequent Word" -msgstr "快捷键: 添加常用字" +# unknown +#: /home/saber/Develop/fcitx/build/po/../..//src/ui/kimpanel/kimpanel.c:227 +#: /home/saber/Develop/fcitx/build/po/../..//src/ui/kimpanel/kimpanel.c:261 +msgid "Input Method Disabled" +msgstr "输入法被禁用" + +#: /home/saber/Develop/fcitx/build/po/../..//src/lib/fcitx/ime.c:787 +msgid "Input Speed: " +msgstr "输入速度: " -#: data/config.desc:283 -msgid "Hotkey of Deleting Frequent Word" -msgstr "快捷键: 删除常用字" +# unknown +#: unknown +msgid "InputMethod" +msgstr "输入法" -#: data/config.desc:288 -msgid "Hotkey of Delete User Phrase" -msgstr "快捷键: 删除用户词组" +#: /home/saber/Develop/fcitx/data/config.desc:98 +msgid "Interval of Two Key Input" +msgstr "输入间隔" -#: data/config.desc:293 -msgid "Hotkey of Inputing Word From Phrase" -msgstr "快捷键: 以词定字" +#: /home/saber/Develop/fcitx/build/po/../..//src/lib/fcitx-config/fcitx-config.c:945 +#, c-format +msgid "Invalid Entry: line %d missing '='" +msgstr "配置项不合法: 行%d 缺少'='" -#: data/config.desc:302 -msgid "Rule of Candidate Word Order" -msgstr "候选字顺序" +#: /home/saber/Develop/fcitx/data/config.desc:9 +msgid "It's the first time Fcitx Start." +msgstr "这是 Fcitx 首次启动" -#: data/config.desc:311 -msgid "Rule of Candidate Phrase Order" -msgstr "候选词顺序" +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:246 +msgid "Key Color On Virutal Keyboard" +msgstr "软键盘按键文字颜色" -#: data/config.desc:320 -msgid "Rule of Frequent Word Order" -msgstr "常用字顺序" +#: /home/saber/Develop/fcitx/build/po/tmp/fcitx-kimpanel-ui.conf.in.h:1 +msgid "Kimpanel" +msgstr "Kimpanel" + +#: /home/saber/Develop/fcitx/build/po/tmp/fcitx-kimpanel-ui.conf.in.h:2 +msgid "Kimpanel Support for Fcitx" +msgstr "Fcitx 的 Kimpanel 支持" -#: data/config.desc:325 -msgid "Fuzzy an and ang" -msgstr "模糊an和ang" +# unknown +#: unknown +msgid "L_CTRL" +msgstr "左Ctrl" -#: data/config.desc:330 -msgid "Fuzzy en and eng" -msgstr "模糊en和eng" +# unknown +#: unknown +msgid "L_SHIFT" +msgstr "左Shift" -#: data/config.desc:335 -msgid "Fuzzy ian and iang" -msgstr "模糊ian和iang" +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:141 +msgid "Left-down position of Input" +msgstr "输入文字左下角" -#: data/config.desc:340 -msgid "Fuzzy in and ing" -msgstr "模糊in和ing" +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:145 +msgid "Left-down position of Output" +msgstr "输出文字左下角" -#: data/config.desc:345 -msgid "Fuzzy ou and u" -msgstr "模糊ou和u" +#: /home/saber/Develop/fcitx/build/po/../..//src/im/table/table.c:475 +msgid "" +"Left/Right to choose selected character, Press Enter to confirm, Press " +"Escape to Cancel" +msgstr "按左/右选择单字,按回车确认,按Escape 取消" + +#: /home/saber/Develop/fcitx/data/addon.desc:31 +msgid "Library" +msgstr "库" -#: data/config.desc:350 -msgid "Fuzzy uan and uang" -msgstr "模糊uan和uang" +#: /home/saber/Develop/fcitx/build/po/../..//src/lib/fcitx/addon.c:141 +#, c-format +msgid "Load Addon Config File:%s" +msgstr "加载附加组件配置文件: %s" -#: data/config.desc:355 -msgid "Fuzzy c and ch" -msgstr "模糊c和ch" +#. * +#. * @brief define a singleton function to load config file description +#. * +#: /home/saber/Develop/fcitx/build/po/../..//src/lib/fcitx-config/fcitx-config.h:336 +#, c-format +msgid "Load Config Description File %s Erorr, Please Check your install." +msgstr "加载配置描述文件 %s 错误,请检查您的安装。" -#: data/config.desc:360 -msgid "Fuzzy f and h" -msgstr "模糊f和h" +#: /home/saber/Develop/fcitx/build/po/../..//src/module/chttrans/chttrans.c:268 +#: /home/saber/Develop/fcitx/build/po/../..//src/ui/classic/classicui.c:306 +#, c-format +msgid "Load Config File %s" +msgstr "加载配置文件: %s" -#: data/config.desc:365 -msgid "Fuzzy l and n" -msgstr "模糊l和n" +#: /home/saber/Develop/fcitx/build/po/../..//src/im/table/table.c:205 +#, c-format +msgid "Load Table Config File:%s" +msgstr "加载码表文件: %s" -#: data/config.desc:370 -msgid "Fuzzy s and sh" -msgstr "模糊s和sh" +#: /home/saber/Develop/fcitx/build/po/../..//src/im/pinyin/py.c:419 +#, c-format +msgid "Load extra dict: %s" +msgstr "加载额外码表:%s" -#: data/config.desc:375 -msgid "Fuzzy z and zh" -msgstr "模糊z和zh" +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:68 +msgid "Logo Icon" +msgstr "Logo图标" -#: data/config.desc:380 -msgid "Fix misstype gn/ng" -msgstr "修复拼音中ng和gn的输入错误" +#: /home/saber/Develop/fcitx/src/ui/classic/fcitx-classic-ui.desc:38 +msgid "Main Window Hide Mode" +msgstr "主窗口隐藏模式" -#: data/table.desc:2 -msgid "Code Table Name" -msgstr "码表名称" +#: /home/saber/Develop/fcitx/src/ui/classic/fcitx-classic-ui.desc:2 +msgid "Main Window Position X" +msgstr "主窗口X位置" -#: data/table.desc:6 -msgid "Icon Name" -msgstr "图标名称" +#: /home/saber/Develop/fcitx/src/ui/classic/fcitx-classic-ui.desc:7 +msgid "Main Window Position Y" +msgstr "主窗口Y位置" -#: data/table.desc:10 -msgid "Code Table File" -msgstr "码表文件" +#: /home/saber/Develop/fcitx/src/im/table/table.desc:58 +msgid "Matching Key" +msgstr "模糊键" -#: data/table.desc:14 -msgid "Adjust Order" -msgstr "输入顺序" +#: /home/saber/Develop/fcitx/src/ui/classic/fcitx-classic-ui.desc:19 +msgid "Menu Font" +msgstr "菜单字体" -#: data/table.desc:23 -msgid "Order of Code Table" -msgstr "码表顺序" +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:23 +msgid "Menu Font Size" +msgstr "菜单字体大小" -#: data/table.desc:28 -msgid "Use Pinyin" -msgstr "使用拼音" +#: /home/saber/Develop/fcitx/build/po/../..//src/im/pinyin/py.c:2289 +msgid "Migrate the old file path to the new one" +msgstr "迁移老文件路径到新文件路径" -#: data/table.desc:33 -msgid "Pinyin Key" -msgstr "拼音键" +#: /home/saber/Develop/fcitx/build/po/../..//src/lib/fcitx-config/fcitx-config.c:410 +msgid "Missing type, take it as string" +msgstr "类型缺失,作为字符串处理" -#: data/table.desc:38 -msgid "Auto Send Candidate Word to Client" -msgstr "自动上屏" +# unknown +#: unknown +msgid "Module" +msgstr "模块" -#: data/table.desc:43 -msgid "Auto Send Candidate Word if no match in Code Table" -msgstr "空码自动上屏" +#: /home/saber/Develop/fcitx/build/po/../..//src/lib/fcitx/module.c:73 +msgid "Module: bad module" +msgstr "模块: 有问题的模块" -#: data/table.desc:48 -msgid "End Key" -msgstr "中止键" +#: /home/saber/Develop/fcitx/build/po/../..//src/lib/fcitx/module.c:67 +#, c-format +msgid "Module: open %s fail %s" +msgstr "模块: 打开%s 失败 %s" -#: data/table.desc:53 -msgid "Use Matching Key" -msgstr "使用模糊键" +#: /home/saber/Develop/fcitx/data/addon.desc:3 +msgid "Name" +msgstr "名称" -#: data/table.desc:58 -msgid "Matching Key" -msgstr "模糊键" +#: /home/saber/Develop/fcitx/build/po/../..//src/module/dbus/dbusstuff.c:126 +msgid "Name Error" +msgstr "名称错误" -#: data/table.desc:63 -msgid "Exact Match" -msgstr "精确匹配" +#: /home/saber/Develop/fcitx/build/po/../..//src/module/dbus/dbusstuff.c:120 +#, c-format +msgid "Name Error (%s)" +msgstr "名称错误 (%s)" -#: data/table.desc:67 -msgid "Auto Phrase" -msgstr "自动词组" +#: /home/saber/Develop/fcitx/data/addon.desc:7 +msgid "Name that can be display in UI" +msgstr "显示于用户界面中的名称" -#: data/table.desc:72 -msgid "Auto Phrase Length" -msgstr "自动词组长度" +#: unknown +msgid "Native" +msgstr "原生" -#: data/table.desc:77 -msgid "Auto Phrase Phrase" -msgstr "词组参与自动造词" +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:153 +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:161 +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:169 +msgid "Next Page Icon" +msgstr "下一页图标" -#: data/table.desc:82 -msgid "Save Auto Phrase" -msgstr "保存自动词组" +# unknown +#: /home/saber/Develop/fcitx/build/po/../..//src/lib/fcitx/ime.c:241 +msgid "No available Input Method" +msgstr "无用输入法" -#: data/table.desc:87 -msgid "Prompt Table Code" -msgstr "提示码表编码" +# unknown +#: /home/saber/Develop/fcitx/build/po/../..//src/lib/fcitx/frontend.c:352 +msgid "No available frontend" +msgstr "无可用前端" -#: data/table.desc:91 -msgid "Symbol" -msgstr "符号" +# unknown +#: unknown +msgid "Nothing" +msgstr "无操作" -#: data/table.desc:96 -msgid "Symbol File" -msgstr "符号文件" +#: /home/saber/Develop/fcitx/build/po/../..//src/ui/classic/classicui.c:134 +msgid "Online Help" +msgstr "在线帮助" -#: data/table.desc:101 -msgid "Choose" -msgstr "选择键" +#: unknown +msgid "OpenCC" +msgstr "OpenCC" -#: data/table.desc:106 -msgid "Enable This Table or Not" -msgstr "是否启用此码表" +#: /home/saber/Develop/fcitx/build/po/../..//src/module/chttrans/chttrans.c:179 +msgid "OpenCC error" +msgstr "OpenCC 错误" -#: data/profile.desc:2 -msgid "Main Window Position X" -msgstr "主窗口X位置" +#: /home/saber/Develop/fcitx/build/po/../..//src/module/chttrans/chttrans.c:170 +msgid "OpenCC initialization error" +msgstr "OpenCC 初始化失败" -#: data/profile.desc:7 -msgid "Main Window Position Y" -msgstr "主窗口Y位置" +#: /home/saber/Develop/fcitx/build/po/../..//src/lib/fcitx-config/fcitx-config.c:1155 +#, c-format +msgid "Option %s is Invalid, Use Default Value %s" +msgstr "配置项%s不合法,使用默认值%s" -#: data/profile.desc:12 -msgid "Input Window Position X" -msgstr "输入框X位置" - -#: data/profile.desc:17 -msgid "Input Window Position Y" -msgstr "输入框Y位置" +#: /home/saber/Develop/fcitx/build/po/../..//src/lib/fcitx-config/fcitx-config.c:1167 +#, c-format +msgid "Option %s is Invalid." +msgstr "配置项%s不合法" -#: data/profile.desc:22 -msgid "Use Full Width Character" -msgstr "使用全角字符" +#: /home/saber/Develop/fcitx/build/po/../..//src/lib/fcitx/instance.c:155 +msgid "Or (Depends on you install im module or not)" +msgstr "或者(取决于您是否安装了im module)" -#: data/profile.desc:27 -msgid "Use Chinese Punctuation" -msgstr "使用中文标点" - -#: data/profile.desc:32 -msgid "Input Window Shows at the position of cursor" -msgstr "光标跟随" +#: /home/saber/Develop/fcitx/build/po/../..//src/lib/fcitx/instance.c:151 +msgid "" +"Or You may need to set environment varibles below to make fcitx work " +"correctly." +msgstr "或者你需要设置以下环境变量从而让Fcitx正常工作。" -#: data/profile.desc:37 -msgid "Prompt the phrases after input" -msgstr "输入后联想词组" +#: /home/saber/Develop/fcitx/src/im/table/table.desc:23 +msgid "Order of Code Table" +msgstr "码表顺序" -#: data/profile.desc:42 -msgid "Current Input Method Index" -msgstr "当前输入法" +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:52 +msgid "Other Color" +msgstr "其他颜色" -#: data/profile.desc:47 -msgid "Locked" -msgstr "锁定" - -#: data/profile.desc:52 -msgid "Show Main Window in a compact way" -msgstr "用紧凑的方式显示主窗口" - -#: data/profile.desc:57 -msgid "Use Traditional Chinese in Input" -msgstr "使用繁体中文输入" - -#: data/profile.desc:62 -msgid "Use recording mode" -msgstr "使用记录模式" +# unknown +msgid "Output" +msgstr "输出" -#: data/skin.desc:3 -msgid "Skin Name" -msgstr "皮肤名称" +#: /home/saber/Develop/fcitx/build/po/../..//src/im/table/table.c:1162 +msgid "Phrase is already in Dict " +msgstr "词组已在码表中" -#: data/skin.desc:7 -msgid "Skin Version" -msgstr "皮肤版本" +#: /home/saber/Develop/fcitx/build/po/tmp/fcitx-pinyin.conf.in.h:1 +#: /home/saber/Develop/fcitx/build/po/../..//src/im/pinyin/py.c:107 +msgid "Pinyin" +msgstr "拼音" -#: data/skin.desc:11 -msgid "Skin Author" -msgstr "皮肤作者" +#: /home/saber/Develop/fcitx/src/im/table/table.desc:33 +msgid "Pinyin Key" +msgstr "拼音键" -#: data/skin.desc:15 -msgid "Description of Skin" -msgstr "描述" +#: /home/saber/Develop/fcitx/src/im/pinyin/fcitx-pinyin.desc:4 +msgid "Pinyin Priority Order, 0 to disable" +msgstr "拼音输入法优先级,0为禁用" -#: data/skin.desc:19 -msgid "Input Font Size" -msgstr "输入字体大小" +#: /home/saber/Develop/fcitx/build/po/../..//src/im/table/table.c:503 +msgid "Pinyin: " +msgstr "拼音:" -#: data/skin.desc:23 -msgid "Menu Font Size" -msgstr "菜单字体大小" +#: /home/saber/Develop/fcitx/build/po/../..//src/lib/fcitx/instance.c:149 +msgid "Please check your environment varibles." +msgstr "请检查你的环境变量的设置" -#: data/skin.desc:28 -msgid "Tip Message Color" -msgstr "提示信息颜色" +#: /home/saber/Develop/fcitx/build/po/../..//src/frontend/xim/xim.c:170 +msgid "Please set XMODIFIERS." +msgstr "请设置环境变量XMOIFIERS" -#: data/skin.desc:32 -msgid "Input Message Color" -msgstr "输入信息颜色" +#: /home/saber/Develop/fcitx/build/po/../..//src/im/pinyin/py.c:838 +#, c-format +msgid "Press 1 to delete %s in frequent list (ESC for cancel)" +msgstr "按下 1 删除常用字表中的 %s (ESC 取消)" -#: data/skin.desc:36 -msgid "Candidate Index Color" -msgstr "候选词索引颜色" +#: /home/saber/Develop/fcitx/build/po/../..//src/im/pinyin/py.c:840 +#, c-format +msgid "Press 1-%d to delete %s in frequent list (ESC for cancel)" +msgstr "按下 1-%d 来删除常用字表中的 %s (ESC 取消)" -#: data/skin.desc:40 -msgid "First Candidate Color" -msgstr "第一候选词颜色" +#: /home/saber/Develop/fcitx/build/po/../..//src/module/quickphrase/QuickPhrase.c:253 +#: /home/saber/Develop/fcitx/build/po/../..//src/module/autoeng/AutoEng.c:291 +msgid "Press Enter to input text" +msgstr "按下回车输入文本" -#: data/skin.desc:44 -msgid "User Phrase Color" -msgstr "用户词组颜色" +#: /home/saber/Develop/fcitx/build/po/../..//src/im/pinyin/py.c:796 +msgid "Press index to delete user phrase (ESC for cancel)" +msgstr "按下索引来删除用户词组 (ESC 取消)" -#: data/skin.desc:48 -msgid "Table Code Color" -msgstr "码表提示颜色" +#: /home/saber/Develop/fcitx/build/po/../..//src/im/pinyin/py.c:808 +msgid "Press number to make word in frequent list" +msgstr "按下数字加入常用字表" -#: data/skin.desc:52 -msgid "Other Color" -msgstr "其他颜色" +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:149 +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:157 +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:165 +msgid "Prev Page Icon" +msgstr "上一页图标" -#: data/skin.desc:56 -msgid "Active Menu Item Character Color" -msgstr "活动菜单项颜色" +#: /home/saber/Develop/fcitx/data/addon.desc:47 +msgid "Priority of addon" +msgstr "插件的优先级" -#: data/skin.desc:60 -msgid "Inactive Menu Item Character Color" -msgstr "非活动菜单项颜色" +# unknown +msgid "Profile" +msgstr "预置文件" -#: data/skin.desc:64 data/skin.desc:128 data/skin.desc:184 -msgid "Background Image" -msgstr "背景图片" +# unknown +msgid "Program" +msgstr "程序" -#: data/skin.desc:68 -msgid "Logo Icon" -msgstr "Logo图标" +#: /home/saber/Develop/fcitx/src/im/table/table.desc:87 +msgid "Prompt Table Code" +msgstr "提示码表编码" -#: data/skin.desc:72 -msgid "Chinese Punc Icon" -msgstr "中文标点图标" - -#: data/skin.desc:76 -msgid "English Punc Icon" -msgstr "英文标点图标" - -#: data/skin.desc:80 -msgid "Simplified Chinese Icon" -msgstr "简体中文图标" - -#: data/skin.desc:84 -msgid "Traditional Chinese Icon" -msgstr "繁体中文图标" - -#: data/skin.desc:88 -msgid "Half Width Character Icon" -msgstr "半角图标" - -#: data/skin.desc:92 -msgid "Full Width Character Icon" -msgstr "全角图标" - -#: data/skin.desc:96 -msgid "UnLock Icon" -msgstr "未锁定图标" - -#: data/skin.desc:100 -msgid "Lock Icon" -msgstr "锁定图标" - -#: data/skin.desc:104 -msgid "Legend mode Icon" -msgstr "联想激活图标" - -#: data/skin.desc:108 -msgid "Legend disabled Icon" -msgstr "禁用联想图标" - -#: data/skin.desc:112 -msgid "Virtual Keyboard enabled Icon" -msgstr "启用软键盘图标" - -#: data/skin.desc:116 -msgid "Virtual Keyboard disabled Icon" -msgstr "禁用软键盘图标" +#: /home/saber/Develop/fcitx/data/profile.desc:12 +msgid "Prompt the phrases after input" +msgstr "输入后联想词组" -#: data/skin.desc:120 -msgid "English Mode Icon" -msgstr "英文模式图标" +#: /home/saber/Develop/fcitx/build/po/tmp/fcitx-dbus.conf.in.h:2 +msgid "Provides DBus Support (Used by other Addon)" +msgstr "提供 DBus 支持 (由其他插件使用)" -#: data/skin.desc:124 -msgid "Chinese Mode Icon" -msgstr "中文模式图标" +#: /home/saber/Develop/fcitx/build/po/tmp/fcitx-fullwidth-char.conf.in.h:2 +msgid "Provides Fullwidth Character Input Support" +msgstr "提供全角符号输入支持" -#: data/skin.desc:136 -msgid "Background Resize Rule" -msgstr "变形规则" +#: /home/saber/Develop/fcitx/build/po/tmp/fcitx-xim.conf.in.h:2 +msgid "Provides XIM support" +msgstr "提供 XIM 支持" -#: data/skin.desc:140 -msgid "The Resize Position to Left" -msgstr "变形区域距左侧距离" - -#: data/skin.desc:144 -msgid "Width of Resize Part " -msgstr "变形区域宽度" +#: /home/saber/Develop/fcitx/build/po/tmp/fcitx-punc.conf.in.h:1 +msgid "Punctation Conversion Support" +msgstr "标点转换支持" -#: data/skin.desc:148 -msgid "Left-down position of Input" -msgstr "输入文字左下角" +#: /home/saber/Develop/fcitx/build/po/tmp/fcitx-punc.conf.in.h:2 +msgid "Punctuation Support" +msgstr "标点支持" -#: data/skin.desc:152 -msgid "Left-down position of Output" -msgstr "输出文字左下角" +#: unknown +msgid "Quick Phrase List" +msgstr "快速输入列表" -#: data/skin.desc:156 -msgid "Space to the left" -msgstr "左侧空白宽度" - -#: data/skin.desc:160 -msgid "Space to the right" -msgstr "右侧空白宽度" +#: /home/saber/Develop/fcitx/build/po/../..//src/module/quickphrase/QuickPhrase.c:217 +#: /home/saber/Develop/fcitx/build/po/../..//src/module/quickphrase/QuickPhrase.c:321 +msgid "Quick Phrase: " +msgstr "快速输入: " -#: data/skin.desc:164 -msgid "Color of Cursor" -msgstr "光标颜色" +#: /home/saber/Develop/fcitx/build/po/tmp/fcitx-quickphrase.conf.in.h:2 +msgid "Quickphrase" +msgstr "快速输入" -#: data/skin.desc:168 -msgid "Prev Page Icon" -msgstr "上一页图标" +#: /home/saber/Develop/fcitx/build/po/tmp/fcitx-qw.conf.in.h:1 +#: /home/saber/Develop/fcitx/build/po/../..//src/im/qw/qw.c:61 +msgid "Quwei" +msgstr "区位" -#: data/skin.desc:172 -msgid "Next Page Icon" -msgstr "下一页图标" +#: /home/saber/Develop/fcitx/build/po/tmp/fcitx-qw.conf.in.h:2 +msgid "Quwei Input Method for Fcitx" +msgstr "Fcitx 的区位输入法" # unknown -#: data/skin.desc:176 -msgid "Active Tray Icon" -msgstr "活动输入法图标" +#: unknown +msgid "R_CTRL" +msgstr "右Ctrl" # unknown -#: data/skin.desc:180 -msgid "Inctive Tray Icon" -msgstr "非活动输入法图标" +#: unknown +msgid "R_SHIFT" +msgstr "右Shift" -#: data/skin.desc:191 -msgid "Background Resize Rule on Horizontal Direction" -msgstr "横向变形规则" - -#: data/skin.desc:199 -msgid "Background Resize Rule on Vertical Direction" -msgstr "纵向变形规则" +#: /home/saber/Develop/fcitx/build/po/../..//src/im/table/table.c:1062 +msgid "Remind:" +msgstr "联想:" + +#: /home/saber/Develop/fcitx/build/po/../..//src/im/pinyin/py.c:2149 +msgid "Remind: " +msgstr "联想:" + +#: /home/saber/Develop/fcitx/build/po/tmp/fcitx-remote-module.conf.in.h:1 +msgid "Remote" +msgstr "远程调用" -#: data/skin.desc:204 -msgid "Margin to top" -msgstr "上边距" +#: unknown +msgid "Resize" +msgstr "变形规则" -#: data/skin.desc:208 -msgid "Margin to bottom" +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:92 +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:133 +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:205 +msgid "Resize Margin Bottom" msgstr "下边距" -#: data/skin.desc:212 -msgid "Margin to left" +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:80 +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:121 +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:209 +msgid "Resize Margin Left" msgstr "左边距" -#: data/skin.desc:216 -msgid "Margin to right" +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:84 +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:125 +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:213 +msgid "Resize Margin Right" msgstr "右边距" -#: data/skin.desc:220 -msgid "Active Menu Color" -msgstr "活动菜单项颜色" - -#: data/skin.desc:224 -msgid "Space Line Color" -msgstr "分隔线颜色" +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:88 +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:129 +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:201 +msgid "Resize Margin Top" +msgstr "上边距" -#: data/skin.desc:228 -msgid "Virtual Keyboard Image" -msgstr "软键盘图片" +#: /home/saber/Develop/fcitx/src/im/pinyin/fcitx-pinyin.desc:67 +msgid "Rule of Candidate Phrase Order" +msgstr "候选词顺序" -#: data/skin.desc:233 -msgid "Key Color On Virutal Keyboard" -msgstr "软键盘按键文字颜色" +#: /home/saber/Develop/fcitx/src/im/pinyin/fcitx-pinyin.desc:58 +msgid "Rule of Candidate Word Order" +msgstr "候选字顺序" -#: data/addon.desc:3 -msgid "Name" -msgstr "名称" +#: /home/saber/Develop/fcitx/src/im/pinyin/fcitx-pinyin.desc:76 +msgid "Rule of Frequent Word Order" +msgstr "常用字顺序" -#: data/addon.desc:9 -msgid "Category" -msgstr "种类" +#: /home/saber/Develop/fcitx/src/im/pinyin/fcitx-pinyin.desc:29 +msgid "Save Auto Created Phrase" +msgstr "保存自动词组" -#: data/addon.desc:14 -msgid "Enabled" -msgstr "启用" +#: /home/saber/Develop/fcitx/src/im/table/table.desc:82 +msgid "Save Auto Phrase" +msgstr "保存自动词组" -# unknown -#: data/addon.desc:18 -msgid "Module" -msgstr "模块" +#: /home/saber/Develop/fcitx/data/config.desc:4 +msgid "Seconds sleep before fcitx really start" +msgstr "Fcitx真正启动前延迟的秒数" -#: data/addon.desc:24 -msgid "Type" -msgstr "类型" +#: /home/saber/Develop/fcitx/data/config.desc:33 +msgid "Send inputed Text if Switch to English Mode" +msgstr "快速切换英文模式时上屏" -#: data/table/erbi.conf:2 -msgid "Erbi" -msgstr "二笔" +#: /home/saber/Develop/fcitx/build/po/../..//src/lib/fcitx/instance.c:162 +msgid "Setting Hint" +msgstr "设置提示" -#: data/table/wanfeng.conf:2 -msgid "Wanfeng" -msgstr "晚风" +#: unknown +msgid "SharedLibrary" +msgstr "共享库" -#: data/table/zrm.conf:2 -msgid "Ziranma" -msgstr "自然码" +#: unknown +msgid "Show" +msgstr "显示" -#: data/table/wbx.conf:2 -msgid "Wubi" -msgstr "五笔字型" +#: /home/saber/Develop/fcitx/data/config.desc:58 +msgid "Show Input Speed" +msgstr "显示输入速度" -#: data/table/db.conf:2 -msgid "Dianbaoma" -msgstr "电报码" +#: /home/saber/Develop/fcitx/data/config.desc:48 +msgid "Show Input Window After Trigger Input Mode" +msgstr "切换输入时显示输入条" -#: data/table/cangjie.conf:2 -msgid "Cangjie" -msgstr "仓颉" +#: /home/saber/Develop/fcitx/data/config.desc:53 +msgid "Show Point After Index" +msgstr "序号后加点" -#: data/table/wbpy.conf:2 -msgid "WubiPinyin" -msgstr "五笔拼音" +#: /home/saber/Develop/fcitx/data/profile.desc:24 +msgid "Show Preedit String in Client Window" +msgstr "在客户端窗口中显示预编辑字符串" -#: data/table/qxm.conf:2 -msgid "Bingchan" -msgstr "冰蟾全息" +#: /home/saber/Develop/fcitx/data/config.desc:63 +msgid "Show Version" +msgstr "显示版本" -# unknown -msgid "Addon" -msgstr "附加组件" +#: unknown +msgid "Shuang Pin Schema" +msgstr "默认双拼方案" -# unknown -msgid "Appearance" -msgstr "外观" +#: /home/saber/Develop/fcitx/build/po/../..//src/im/pinyin/py.c:121 +msgid "Shuangpin" +msgstr "双拼" -# unknown -msgid "CodeTable" -msgstr "码表" +#: /home/saber/Develop/fcitx/src/im/pinyin/fcitx-pinyin.desc:9 +msgid "Shuangpin Priority Order, 0 to disable" +msgstr "双拼输入法优先级,0为禁用" -# unknown -msgid "Hotkey" -msgstr "快捷键" +#: /home/saber/Develop/fcitx/build/po/tmp/fcitx-pinyin.conf.in.h:2 +msgid "Simple Pinyin support for Fcitx" +msgstr "Fcitx 简单的拼音支持" -# unknown -#: unknown -msgid "InputMethod" -msgstr "输入法" +#: /home/saber/Develop/fcitx/build/po/tmp/fcitx-chttrans.conf.in.h:2 +msgid "Simplified Chinese To Traditional Chinese" +msgstr "简繁转换" # unknown -msgid "Output" -msgstr "输出" +#: unknown /home/saber/Develop/fcitx/build/po/../..//src/ui/classic/skin.c:892 +msgid "Skin" +msgstr "皮肤" -#: ../src/im/pinyin/py.h:40 -msgid "Pinyin" -msgstr "拼音" +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:11 +msgid "Skin Author" +msgstr "皮肤作者" -# unknown -msgid "Profile" -msgstr "预置文件" +#: /home/saber/Develop/fcitx/src/ui/classic/fcitx-classic-ui.desc:48 +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:3 +msgid "Skin Name" +msgstr "皮肤名称" -# unknown -msgid "Program" -msgstr "程序" +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:7 +msgid "Skin Version" +msgstr "皮肤版本" # unknown msgid "SkinFont" @@ -772,1009 +1192,962 @@ msgid "SkinTrayIcon" msgstr "皮肤托盘图标设置" -# unknown -#: unknown -msgid "AdjustFast" -msgstr "快速" +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:221 +msgid "Space Line Color" +msgstr "分隔线颜色" -#: unknown -msgid "AdjustFreq" -msgstr "按频率" +#: /home/saber/Develop/fcitx/build/po/../..//src/module/quickphrase/QuickPhrase.c:323 +msgid "Spcae for ; Enter for;" +msgstr "空格输入 ; 回车输入;" -#: unknown -msgid "AdjustNo" -msgstr "不调整" +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:112 +msgid "Special Icon position" +msgstr "特殊图标位置" -#: unknown -msgid "Auto" -msgstr "自动" +#: /home/saber/Develop/fcitx/build/po/../..//src/frontend/xim/xim.c:269 +#, c-format +msgid "Start XIM error. Another XIM daemon named %s is running?" +msgstr "XIM启动错误。是否有另一个名为%s的XIM守护程序正在运行?" -# unknown -#: unknown -msgid "Clean" -msgstr "清除" +#: /home/saber/Develop/fcitx/data/addon.desc:52 +msgid "Sub Configuration for Module" +msgstr "子配置" -# unknown -#: unknown -msgid "Commit" -msgstr "提交输入" +#: /home/saber/Develop/fcitx/src/im/table/table.desc:91 unknown +msgid "Symbol" +msgstr "符号" -# unknown -#: unknown -msgid "Copy" -msgstr "复制" +#: /home/saber/Develop/fcitx/src/im/table/table.desc:96 +msgid "Symbol File" +msgstr "符号文件" -#: unknown -msgid "Eng" -msgstr "英文" +#: unknown /home/saber/Develop/fcitx/build/po/tmp/fcitx-table.conf.in.h:1 +msgid "Table" +msgstr "码表" -# unknown -#: unknown -msgid "Fix" -msgstr "固定长度" +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:48 +msgid "Table Code Color" +msgstr "码表提示颜色" -# unknown -#: unknown -msgid "Hide" -msgstr "隐藏" +#: /home/saber/Develop/fcitx/build/po/../..//src/im/table/table.c:215 +#, c-format +msgid "Table Config %s is %s" +msgstr "Table Config %s is %s" # unknown -#: unknown -msgid "L_CTRL" -msgstr "左Ctrl" +#: /home/saber/Develop/fcitx/build/po/tmp/fcitx-table.conf.in.h:2 +msgid "Table Input Method for Fcitx" +msgstr "Fcitx 的码表输入法" -# unknown -#: unknown -msgid "L_SHIFT" -msgstr "左Shift" +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:28 +msgid "Tip Message Color" +msgstr "提示信息颜色" -# unknown -#: unknown -msgid "L_SUPER" -msgstr "左Super" +#: /home/saber/Develop/fcitx/src/module/chttrans/fcitx-chttrans.desc:17 +msgid "Toggle for enable or disable" +msgstr "切换来禁用或启用" + +#: /home/saber/Develop/fcitx/build/po/../..//src/module/autoeng/AutoEng.c:244 +msgid "Too long item for AutoEng" +msgstr "自动英文条目过长" + +#: /home/saber/Develop/fcitx/src/module/chttrans/fcitx-chttrans.desc:6 +msgid "Traditional Chinese Translate Engine" +msgstr "简繁转换引擎" -# unknown -#: unknown -msgid "NoChange" -msgstr "原始操作" +msgid "TraditionalChinese" +msgstr "繁体中文" + +#: /home/saber/Develop/fcitx/data/addon.desc:37 +msgid "Type" +msgstr "类型" -# unknown #: unknown -msgid "Nothing" -msgstr "无操作" +msgid "UI" +msgstr "界面" + +#: /home/saber/Develop/fcitx/build/po/../..//src/lib/fcitx/ui.c:168 +msgid "UI: bad ui" +msgstr "界面: 有问题的界面" + +#: /home/saber/Develop/fcitx/build/po/../..//src/lib/fcitx/ui.c:160 +#, c-format +msgid "UI: open %s fail %s" +msgstr "界面: 打开 %s 失败 %s" + +#: /home/saber/Develop/fcitx/build/po/../..//src/ui/classic/classicui.c:395 +#: /home/saber/Develop/fcitx/build/po/../..//src/ui/classic/classicui.c:402 +#: /home/saber/Develop/fcitx/build/po/../..//src/ui/classic/classicui.c:425 +#: /home/saber/Develop/fcitx/build/po/../..//src/ui/classic/classicui.c:432 +msgid "Unable to create process" +msgstr "无法创建进程" + +#: /home/saber/Develop/fcitx/build/po/../..//src/lib/fcitx-config/fcitx-config.c:404 +#, c-format +msgid "Unknown type, take it as string: %s" +msgstr "未知类型,作为字符串处理: %s" + +#: /home/saber/Develop/fcitx/src/im/pinyin/fcitx-pinyin.desc:19 +msgid "Use Complete Pinyin" +msgstr "使用完整拼音" + +#: /home/saber/Develop/fcitx/data/config.desc:14 +msgid "Use English Punc After a Number" +msgstr "数字后跟半角符号" + +#: /home/saber/Develop/fcitx/data/profile.desc:2 +msgid "Use Full Width Character" +msgstr "使用全角字符" + +#: /home/saber/Develop/fcitx/src/im/table/table.desc:53 +msgid "Use Matching Key" +msgstr "使用模糊键" + +#: /home/saber/Develop/fcitx/src/frontend/xim/fcitx-xim.desc:4 +msgid "Use On The Spot Style for XIM (Can not change during running)" +msgstr "对XIM使用On The Spot风格(无法在运行时切换)" + +#: /home/saber/Develop/fcitx/src/im/table/table.desc:28 +msgid "Use Pinyin" +msgstr "使用拼音" + +#: /home/saber/Develop/fcitx/src/ui/classic/fcitx-classic-ui.desc:29 +msgid "Use System Tray Icon" +msgstr "使用系统托盘" + +#: /home/saber/Develop/fcitx/data/profile.desc:7 +msgid "Use Wide Punctuation" +msgstr "使用全角标点" + +#: /home/saber/Develop/fcitx/build/po/tmp/fcitx-remote-module.conf.in.h:2 +msgid "Used by fcitx-remote to change Fcitx state from console" +msgstr "fcitx-remote 通过它来从命令行改变 Fcitx 的状态" + +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:44 +msgid "User Phrase Color" +msgstr "用户词组颜色" + +#: /home/saber/Develop/fcitx/src/ui/classic/fcitx-classic-ui.desc:43 +msgid "Vertical Candidate Word List" +msgstr "竖排候选词列表" + +#: unknown /home/saber/Develop/fcitx/build/po/tmp/fcitx-vk.conf.in.h:1 +msgid "Virtual Key Board" +msgstr "虚拟键盘" + +#: /home/saber/Develop/fcitx/build/po/tmp/fcitx-vk.conf.in.h:2 +msgid "Virtual Key Board in order to input special character" +msgstr "用于输入特殊字符的虚拟键盘" + +#: /home/saber/Develop/fcitx/build/po/../..//src/module/vk/vk.c:166 +msgid "Virtual Keyboard" +msgstr "虚拟键盘" + +#: /home/saber/Develop/fcitx/src/ui/classic/skin.desc:241 +msgid "Virtual Keyboard Image" +msgstr "虚拟键盘图片" + +#: /home/saber/Develop/fcitx/build/po/tmp/wanfeng.conf.in.h:1 +msgid "Wanfeng" +msgstr "晚风" + +#: /home/saber/Develop/fcitx/build/po/tmp/wbx.conf.in.h:1 +msgid "Wubi" +msgstr "五笔字型" + +#: /home/saber/Develop/fcitx/build/po/tmp/wbpy.conf.in.h:1 +msgid "WubiPinyin" +msgstr "五笔拼音" -#: unknown -msgid "QuickPhrase" -msgstr "快速输入" +#: /home/saber/Develop/fcitx/build/po/../..//src/ui/classic/tray.c:167 +#, c-format +msgid "X error %i on opcode send" +msgstr "X error %i on opcode send" -# unknown -#: unknown -msgid "R_CTRL" -msgstr "右Ctrl" +#: /home/saber/Develop/fcitx/build/po/tmp/fcitx-x11.conf.in.h:1 +msgid "X11 Support" +msgstr "X11 支持" + +#: /home/saber/Develop/fcitx/build/po/tmp/fcitx-x11.conf.in.h:2 +msgid "X11 Utilitiy used by other Addon" +msgstr "由其他插件使用的 X11 工具函数" + +#: /home/saber/Develop/fcitx/build/po/../..//src/frontend/xim/xim.c:144 +msgid "X11 not initialized" +msgstr "X11 未初始化" -#: unknown -msgid "Resize" -msgstr "变形规则" +#: /home/saber/Develop/fcitx/build/po/../..//src/frontend/xim/xim.c:166 +msgid "XMODIFIERS Error." +msgstr "XMODIFIERS Error." # unknown -#: unknown -msgid "R_SHIFT" -msgstr "右Shift" +msgid "Xim" +msgstr "Xim" -# unknown -#: unknown -msgid "R_SUPER" -msgstr "右Super" +#: /home/saber/Develop/fcitx/build/po/../..//src/lib/fcitx/instance.c:150 +msgid "You can use tools provided by your distribution." +msgstr "您可以使用您发行版提供的工具。" -#: unknown -msgid "SharedLibrary" -msgstr "共享库" +#: /home/saber/Develop/fcitx/build/po/tmp/zrm.conf.in.h:1 +msgid "Ziranma" +msgstr "自然码" -#: unknown -msgid "Show" -msgstr "显示" +#: /home/saber/Develop/fcitx/build/po/../..//src/lib/fcitx/ime.c:791 +msgid "min Num of Characters: " +msgstr "分 字符数: " -# unknown -#: ../data/fcitx.desktop.in.h:1 -msgid "Chinese Input Method" -msgstr "中文输入法" +#: /home/saber/Develop/fcitx/build/po/../..//src/lib/fcitx-config/fcitx-config.c:1215 +#, c-format +msgid "no default option for %s/%s" +msgstr "选项%s/%s没有默认选项" -#: ../data/fcitx.desktop.in.h:2 -msgid "Fcitx" -msgstr "Fcitx" +#: /home/saber/Develop/fcitx/build/po/../..//src/ui/cairostuff/font.c:111 +msgid "no valid font." +msgstr "无可用字体" -#: ../data/fcitx.desktop.in.h:3 -msgid "Free Chinese Input Toy of X" -msgstr "Free Chinese Input Toy of X" +#: /home/saber/Develop/fcitx/build/po/../..//src/lib/fcitx/instance.c:271 +msgid "pthread mutex init failed" +msgstr "pthread mutex init failed" -#: ../data/fcitx-configtool.desktop.in.h:1 -msgid "Fcitx Config Tool" -msgstr "Fcitx配置工具" +#: /home/saber/Develop/fcitx/build/po/../..//src/ui/cairostuff/font.c:94 +#, c-format +msgid "your current font is: %s" +msgstr "当前字体为: %s" -#: ../data/fcitx-configtool.desktop.in.h:2 -msgid "Fcitx Configuration Tool" -msgstr "Fcitx配置工具" +#~ msgid "%d:%s" +#~ msgstr "%d:%s" -#: ../data/fcitx-configtool.desktop.in.h:3 -msgid "Fcitx GUI Config Tool" -msgstr "Fcitx图形化配置工具" +#~ msgid "%s" +#~ msgstr "%s" -#: ../src/interface/ImeRemote.c:164 -#, c-format -msgid "Can't open socket %s: %s" -msgstr "无法打开Socket %s: %s" +#~ msgid "Action after press SemiColon" +#~ msgstr "分号键操作" -#: ../src/interface/DBus.c:101 -#, c-format -msgid "Connection Error (%s)" -msgstr "连接错误 (%s)" +#~ msgid "Active" +#~ msgstr "激活" -#: ../src/interface/DBus.c:113 -#, c-format -msgid "Name Error (%s)" -msgstr "名称错误 (%s)" +#~ msgid "ActiveColor" +#~ msgstr "活动项背景颜色" -#: ../src/interface/DBus.c:127 -#, c-format -msgid "Match Error (%s)" -msgstr "匹配错误 (%s)" +#~ msgid "ActiveMenuColor" +#~ msgstr "活动菜单项颜色" -#: ../src/interface/DBus.c:162 -msgid "MovePreeditCaret" -msgstr "MovePreeditCaret" +#~ msgid "AddFreqWordKey" +#~ msgstr "快捷键: 增加常用字" -#: ../src/interface/DBus.c:165 ../src/interface/DBus.c:177 -#: ../src/interface/DBus.c:221 -msgid "Message has no arguments!" -msgstr "Message has no arguments!" +#~ msgid "AdjustOrder" +#~ msgstr "候选词顺序调整" -#: ../src/interface/DBus.c:167 ../src/interface/DBus.c:179 -msgid "Argument is not INT32!" -msgstr "Argument is not INT32!" +#~ msgid "Argument is not INT32!" +#~ msgstr "Argument is not INT32!" -#: ../src/interface/DBus.c:170 -#, c-format -msgid "Got Signal with value %d" -msgstr "Got Signal with value %d" +#~ msgid "Argument is not STRING!" +#~ msgstr "Argument is not STRING!" -#: ../src/interface/DBus.c:174 -msgid "SelectCandidate: " -msgstr "SelectCandidate: " +#~ msgid "Author" +#~ msgstr "作者" -#: ../src/interface/DBus.c:204 -#, c-format -msgid "%d:%s" -msgstr "%d:%s" +#~ msgid "AutoCreatePhrase" +#~ msgstr "自动组词" -#: ../src/interface/DBus.c:208 -msgid "LookupTablePageUp" -msgstr "LookupTablePageUp" +#~ msgid "AutoPhrase" +#~ msgstr "自动组词" -#: ../src/interface/DBus.c:213 -msgid "LookupTablePageDown" -msgstr "LookupTablePageDown" +#~ msgid "AutoPhraseLength" +#~ msgstr "自动组词长度" -#: ../src/interface/DBus.c:218 -msgid "TriggerProperty: " -msgstr "TriggerProperty: " +#~ msgid "AutoPhrasePhrase" +#~ msgstr "词组参与自动造词" -#: ../src/interface/DBus.c:223 -msgid "Argument is not STRING!" -msgstr "Argument is not STRING!" +#~ msgid "AutoSend" +#~ msgstr "自动上屏" -#: ../src/interface/DBus.c:226 -#, c-format -msgid "%s" -msgstr "%s" +#~ msgid "BackArrow" +#~ msgstr "向后翻页" -#: ../src/interface/DBus.c:232 -msgid "PanelCreated" -msgstr "PanelCreated" +#~ msgid "BackImg" +#~ msgstr "背景图片" -#: ../src/interface/DBus.c:236 -msgid "Exit" -msgstr "Exit" +#~ msgid "Backend" +#~ msgstr "后端" -#: ../src/interface/DBus.c:239 -msgid "ReloadConfig" -msgstr "ReloadConfig" - -#: ../src/interface/DBus.c:261 ../src/interface/DBus.c:295 -#: ../src/interface/DBus.c:342 ../src/interface/DBus.c:389 -#: ../src/interface/DBus.c:423 ../src/interface/DBus.c:457 -#: ../src/interface/DBus.c:491 ../src/interface/DBus.c:525 -#: ../src/interface/DBus.c:559 ../src/interface/DBus.c:593 -#: ../src/interface/DBus.c:655 ../src/interface/DBus.c:689 -#: ../src/interface/DBus.c:727 ../src/interface/DBus.c:766 -#: ../src/interface/DBus.c:803 -msgid "Message Null" -msgstr "Message Null" - -#: ../src/interface/DBus.c:268 ../src/interface/DBus.c:273 -#: ../src/interface/DBus.c:313 ../src/interface/DBus.c:320 -#: ../src/interface/DBus.c:360 ../src/interface/DBus.c:367 -#: ../src/interface/DBus.c:396 ../src/interface/DBus.c:401 -#: ../src/interface/DBus.c:430 ../src/interface/DBus.c:435 -#: ../src/interface/DBus.c:464 ../src/interface/DBus.c:469 -#: ../src/interface/DBus.c:498 ../src/interface/DBus.c:503 -#: ../src/interface/DBus.c:532 ../src/interface/DBus.c:537 -#: ../src/interface/DBus.c:566 ../src/interface/DBus.c:571 -#: ../src/interface/DBus.c:606 ../src/interface/DBus.c:614 -#: ../src/interface/DBus.c:623 ../src/interface/DBus.c:633 -#: ../src/interface/DBus.c:662 ../src/interface/DBus.c:667 -#: ../src/interface/DBus.c:697 ../src/interface/DBus.c:700 -#: ../src/interface/DBus.c:705 ../src/interface/DBus.c:736 -#: ../src/interface/DBus.c:739 ../src/interface/DBus.c:744 -#: ../src/interface/DBus.c:773 ../src/interface/DBus.c:776 -#: ../src/interface/DBus.c:781 ../src/interface/DBus.c:810 -#: ../src/interface/DBus.c:815 -msgid "Out Of Memory!" -msgstr "Out Of Memory!" - -#: ../src/interface/DBus.c:838 -#, c-format -msgid "Type: %d Text: %s" -msgstr "Type: %d Text: %s" - -#: ../src/interface/DBus.c:864 -#, c-format -msgid "Labels %d, Texts %d, CMB:%s" -msgstr "Labels %d, Texts %d, CMB:%s" +#~ msgid "Backend: bad backend" +#~ msgstr "后端: 有问题的后端" -#: ../src/interface/DBus.c:900 -#, c-format -msgid "updateMesssages Up:%s" -msgstr "updateMesssages Up:%s" +#~ msgid "Background Resize Rule on Horizontal Direction" +#~ msgstr "横向变形规则" -#: ../src/ui/tray.c:172 -#, c-format -msgid "X error %i on opcode send" -msgstr "X error %i on opcode send" +#~ msgid "Background Resize Rule on Vertical Direction" +#~ msgstr "纵向变形规则" -#: ../src/ui/ui.c:85 -msgid "FCITX can only run under X" -msgstr "Fcitx只能在X下运行" - -#: ../src/ui/ui.c:135 -msgid "XEvent--Expose" -msgstr "XEvent--Expose" +#~ msgid "BaseOrder" +#~ msgstr "单字重码顺序调整" -#: ../src/ui/ui.c:351 ../src/ui/ui.c:358 -msgid "Unable to create process" -msgstr "无法创建进程" +#~ msgid "CAL InputWindow" +#~ msgstr "CAL InputWindow" -#: ../src/ui/MenuWindow.c:395 -msgid "About Fcitx" -msgstr "关于Fcitx" +#~ msgid "CandidateWordNumber" +#~ msgstr "候选词个数" -#: ../src/ui/MenuWindow.c:397 -msgid "Switch Skin" -msgstr "切换皮肤" - -#: ../src/ui/MenuWindow.c:398 -msgid "Switch IM" -msgstr "选择输入法" - -#: ../src/ui/MenuWindow.c:399 -msgid "Switch VK" -msgstr "选择软键盘" - -#: ../src/ui/MenuWindow.c:401 -msgid "Fcitx Config ..." -msgstr "配置Fcitx..." - -#: ../src/ui/MenuWindow.c:402 -msgid "Exit Fcitx" -msgstr "退出Fcitx" +#~ msgid "Cannot create table file: %s" +#~ msgstr "无法创建码表文件: %s" -#: ../src/ui/InputWindow.c:151 -msgid "DISPLAY InputWindow" -msgstr "DISPLAY InputWindow" +#~ msgid "Cannot load table file: %s" +#~ msgstr "无法加载码表文件: %s" -#: ../src/ui/InputWindow.c:176 -msgid "CAL InputWindow" -msgstr "CAL InputWindow" +#~ msgid "CenterInputWindow" +#~ msgstr "输入窗口居中" -#: ../src/ui/MainWindow.c:135 -msgid "DISPLAY MainWindow" -msgstr "DISPLAY MainWindow" +#~ msgid "Chinese Punc Icon" +#~ msgstr "中文标点图标" -#: ../src/ui/MainWindow.c:156 -msgid "DRAW MainWindow" -msgstr "DRAW MainWindow" +#~ msgid "Chn" +#~ msgstr "中文" -#: ../src/ui/skin.c:170 -msgid "Can not load default skin, is installion correct?" -msgstr "无法加载默认皮肤,安装是否正确?" +#~ msgid "ChnPunc" +#~ msgstr "中文标点" -#: ../src/ui/skin.c:175 -#, c-format -msgid "Can not load skin %s, return to default" -msgstr "无法加载皮肤%s,回到默认皮肤" +#~ msgid "ChnPuncSwitchKey" +#~ msgstr "快捷键: 切换中英文标点" -#: ../src/ui/font.c:38 -msgid "Error: Load fontconfig failed" -msgstr "错误:fontconfig加载失败" +#~ msgid "Chs" +#~ msgstr "简体图标" -#: ../src/ui/font.c:90 -#, c-format -msgid "your current font is: %s" -msgstr "当前字体为:%s" +#~ msgid "Cht" +#~ msgstr "繁体图标" -#: ../src/ui/font.c:107 -msgid "no valid font." -msgstr "无可用字体" +#~ msgid "CodeColor" +#~ msgstr "码表提升颜色" -#: ../src/fcitx-config/fcitx-config.c:282 -msgid "Enum option duplicated." -msgstr "枚举选项重复" +#~ msgid "CompactMainWindow" +#~ msgstr "压缩主窗口" -#: ../src/fcitx-config/fcitx-config.c:295 -msgid "Enum option number must larger than 0" -msgstr "枚举选项个数需要大于0" +#~ msgid "Convert Punc to Chinese Punc" +#~ msgstr "转换中文标点" -#: ../src/fcitx-config/fcitx-config.c:305 -msgid "Enum Option is invalid, take it as string" -msgstr "枚举选项不合法,将类型作为字符串处理" +#~ msgid "ConvertPunc" +#~ msgstr "转换中文标点" -#: ../src/fcitx-config/fcitx-config.c:312 -#, c-format -msgid "Unknown type, take it as string: %s" -msgstr "未知类型,作为字符串处理: %s" +#~ msgid "Corner" +#~ msgstr "全角" -#: ../src/fcitx-config/fcitx-config.c:318 -msgid "Missing type, take it as string" -msgstr "类型缺失,作为字符串处理" +#~ msgid "CursorColor" +#~ msgstr "光标颜色" -#: ../src/fcitx-config/fcitx-config.c:699 -#, c-format -msgid "Configure group name error: line %d" -msgstr "配置组名错误: 行%d" +#~ msgid "DefaultShuangpinSchema" +#~ msgstr "默认双拼方案" -#: ../src/fcitx-config/fcitx-config.c:709 -#, c-format -msgid "Duplicate group name, merge with the previous: %s :line %d" -msgstr "组名重复,和之前的组合并: %s :行 %d" +#~ msgid "DelayStart" +#~ msgstr "延迟启动" -#: ../src/fcitx-config/fcitx-config.c:726 -#, c-format -msgid "Invalid Entry: line %d missing '='" -msgstr "配置项不合法: 行%d 缺少'='" +#~ msgid "DeleteFreqWordKey" +#~ msgstr "快捷键: 删除常用字" -#: ../src/fcitx-config/fcitx-config.c:736 -#, c-format -msgid "Duplicate option, overwrite: line %d" -msgstr "重复的配置项,覆盖: 行%d" +#~ msgid "DeleteUserPhraseKey" +#~ msgstr "快捷键: 删除用户词组" -#: ../src/fcitx-config/fcitx-config.c:853 -#, c-format -msgid "Option %s is Invalid, Use Default Value %s" -msgstr "配置项%s不合法,使用默认值%s" +#~ msgid "Desc" +#~ msgstr "描述" -#: ../src/fcitx-config/fcitx-config.c:862 -#, c-format -msgid "Option %s is Invalid." -msgstr "配置项%s不合法" +#, fuzzy +#~ msgid "DescriptionFile]" +#~ msgstr "描述" -#: ../src/fcitx-config/fcitx-config.c:902 -#, c-format -msgid "no default option for %s/%s" -msgstr "选项%s/%s没有默认选项" +#~ msgid "DoubleSwitchKey" +#~ msgstr "双击中英文切换" -#: ../src/im/special/punc.c:55 -msgid "Can't open Chinese punc file." -msgstr "无法打开中文标点文件。" +#~ msgid "EnPunc" +#~ msgstr "英文标点图标" -#: ../src/im/qw/qw.h:25 -msgid "Quwei" -msgstr "区位" +#~ msgid "Enable Addons to Fcitx" +#~ msgstr "在Fcitx启用附加组件" -#: ../src/im/pinyin/py.c:360 -msgid "Can not find System Database of Pinyin!" -msgstr "无法找到系统的拼音词库" +#~ msgid "EnableAddons" +#~ msgstr "启用附加组件" -#: ../src/im/pinyin/py.c:2440 -#, c-format -msgid "Cannot Save User Pinyin Database: %s" -msgstr "无法保存用户拼音词库: %s" +#~ msgid "EndKey" +#~ msgstr "中止键" -#: ../src/im/pinyin/py.c:2502 -#, c-format -msgid "Cannot Save Frequent word: %s" -msgstr "无法保存词频: %s" +#~ msgid "Eng" +#~ msgstr "英文" -#: ../src/im/pinyin/py.c:2572 -#, c-format -msgid "Cannot Save Pinyin Index: %s" -msgstr "无法保存拼音索引: %s" +#~ msgid "English Punc Icon" +#~ msgstr "英文标点图标" -#: ../src/im/pinyin/sp.h:23 -msgid "Shuangpin" -msgstr "双拼" +#~ msgid "EnterAction" +#~ msgstr "回车键行为" -#: ../src/im/table/table.c:186 -#, c-format -msgid "Load Table Config File:%s" -msgstr "加载码表文件: %s" +#~ msgid "ExactMatch" +#~ msgstr "精确匹配" -#: ../src/im/table/table.c:196 -#, c-format -msgid "Table Config %s is %s" -msgstr "Table Config %s is %s" +#~ msgid "Exit Fcitx" +#~ msgstr "退出Fcitx" -#: ../src/im/table/table.c:264 -msgid "Loading Table Dict" -msgstr "加载码表词典" +#~ msgid "Extra" +#~ msgstr "额外输入法" -#: ../src/im/table/table.c:274 -#, c-format -msgid "Load Table Dict from %s" -msgstr "加载码表%s" +#~ msgid "ExtraIM" +#~ msgstr "额外输入法" -#: ../src/im/table/table.c:280 -#, c-format -msgid "Cannot load table file: %s" -msgstr "无法加载码表文件: %s" +#~ msgid "ExtraIM: bad im" +#~ msgstr "额外输入法: 不正确的输入法" -#: ../src/im/table/table.c:402 -msgid "Load Table Dict OK" -msgstr "加载码表文件成功" +#~ msgid "ExtraIM: init fail" +#~ msgstr "额外输入法: 初始化失败" -#: ../src/im/table/table.c:432 -msgid "Loading Autophrase." -msgstr "加载自动组词信息中" +#~ msgid "ExtraIM: open %s fail %s" +#~ msgstr "额外输入法: 打开%s失败 %s" -#: ../src/im/table/table.c:473 -msgid "Load Autophrase OK" -msgstr "加载自动组词信息完成" +#~ msgid "FCITX can only run under X" +#~ msgstr "Fcitx只能在X下运行" -#: ../src/im/table/table.c:613 -#, c-format -msgid "Cannot create table file: %s" -msgstr "无法创建码表文件: %s" +#~ msgid "Fcitx Config ..." +#~ msgstr "配置Fcitx..." -#: ../src/im/table/table.c:672 -msgid "Rename OK" -msgstr "重命名成功" +#~ msgid "File" +#~ msgstr "文件" -#: ../src/im/extra/extra.c:253 -msgid "ExtraIM: init fail" -msgstr "额外输入法: 初始化失败" +#~ msgid "FirstCandColor" +#~ msgstr "第一候选词颜色" -#: ../src/im/extra/extra.c:283 -#, c-format -msgid "ExtraIM: open %s fail %s" -msgstr "额外输入法: 打开%s失败 %s" +# unknown +#~ msgid "Fix" +#~ msgstr "固定长度" -#: ../src/im/extra/extra.c:289 -msgid "ExtraIM: bad im" -msgstr "额外输入法: 不正确的输入法" +#~ msgid "FollowCursorKey" +#~ msgstr "快捷键: 切换光标跟随" -#: ../src/tools/configfile.c:297 -#, c-format -msgid "Load Config File %s" -msgstr "加载配置文件: %s" +#~ msgid "FontLocale" +#~ msgstr "字体区域" -#: ../src/tools/tools.c:253 -msgid "pthread mutex init failed" -msgstr "pthread mutex init failed" +#~ msgid "FontSize" +#~ msgstr "字体大小" -#: ../src/core/addon.c:133 -#, c-format -msgid "Load Addon Config File:%s" -msgstr "加载附加组件配置文件: %s" +#~ msgid "FontZh" +#~ msgstr "中文字体" -#: ../src/core/addon.c:143 -#, c-format -msgid "Addon Config %s is %s" -msgstr "Addon Config %s is %s" +#~ msgid "ForwardArrow" +#~ msgstr "向前翻页" -#: ../src/core/xim.c:446 -msgid "Recording file must be an absolute path." -msgstr "记录文件必须是绝对路径" +#~ msgid "Free Chinese Input Toy of X" +#~ msgstr "Free Chinese Input Toy of X" -#: ../src/core/xim.c:479 -#, c-format -msgid "Sending %s icid=%d connectid=%d\n" -msgstr "Sending %s icid=%d connectid=%d\n" +#, fuzzy +#~ msgid "Free Chinese Input Toy of X (Use Kimpanel)" +#~ msgstr "Free Chinese Input Toy of X" + +#~ msgid "FreqOrder" +#~ msgstr "常用词重码顺序调整" -#: ../src/core/xim.c:540 -msgid "Can't Create imWindow" -msgstr "无法创建输入法窗口" +#~ msgid "FullCorner" +#~ msgstr "全角图标" -#: ../src/core/xim.c:550 -msgid "XMODIFIERS Error." -msgstr "XMODIFIERS Error." +#~ msgid "FullWidthSwitchKey" +#~ msgstr "快捷键: 切换全半角" -#: ../src/core/xim.c:554 -msgid "Please set XMODIFIERS." -msgstr "请设置环境变量XMOIFIERS" +#~ msgid "FuzzyAnAng" +#~ msgstr "FuzzyAnAng" -#: ../src/core/xim.c:566 -msgid "Please check your environment varibles." -msgstr "请检查你的环境变量的设置" +#~ msgid "FuzzyCCh" +#~ msgstr "FuzzyCCh" -#: ../src/core/xim.c:567 -msgid "" -"You need to set environment varibles below to make fcitx work correctly." -msgstr "你需要设置以下环境变量从而让Fcitx正常工作。" +#~ msgid "FuzzyEnEng" +#~ msgstr "FuzzyEnEng" -#: ../src/core/xim.c:571 -msgid "You can set those variables in ~/.bashrc or ~/.xprofile ." -msgstr "这些环境变量可以设置在~/.bashrc或者~/.xprofile当中。" +#~ msgid "FuzzyFH" +#~ msgstr "FuzzyFH" -#: ../src/core/xim.c:572 -msgid "Setting Hint" -msgstr "设置提示" +#~ msgid "FuzzyIanIang" +#~ msgstr "模糊ian和iang" -#: ../src/core/xim.c:623 -#, c-format -msgid "Start FCITX error. Another XIM daemon named %s is running?" -msgstr "Fcitx启动错误。是否有另一个名为%s的XIM守护程序正在运行?" +#~ msgid "FuzzyInIng" +#~ msgstr "FuzzyInIng" -#: ../src/core/MyErrorsHandlers.c:73 -#, c-format -msgid "FCITX -- Get Signal No.: %d" -msgstr "Fcitx接收到信号: %d" +#~ msgid "FuzzyLN" +#~ msgstr "FuzzyLN" -#~ msgid "MenuFont" -#~ msgstr "菜单字体" +#~ msgid "FuzzyOuU" +#~ msgstr "FuzzyOuU" -#~ msgid "FontLocale" -#~ msgstr "字体区域" +#~ msgid "FuzzySSH" +#~ msgstr "FuzzySSH" -#~ msgid "RecordFile" -#~ msgstr "记录文件" +#~ msgid "FuzzyUanUang" +#~ msgstr "模糊uan和uang" -#~ msgid "UseTray" -#~ msgstr "启用托盘" +#~ msgid "FuzzyZZH" +#~ msgstr "FuzzyZZH" -#~ msgid "UseDBus" -#~ msgstr "启用DBus" +#~ msgid "Got Signal with value %d" +#~ msgstr "Got Signal with value %d" -#~ msgid "EnableAddons" -#~ msgstr "启用附加组件" +#~ msgid "Half Width Character Icon" +#~ msgstr "半角图标" -#~ msgid "DelayStart" -#~ msgstr "延迟启动" +#~ msgid "HalfCorner" +#~ msgstr "半角图标" #~ msgid "HalfPuncAfterNumber" #~ msgstr "数字后跟半角符号" -#~ msgid "EnterAction" -#~ msgstr "回车键行为" +#~ msgid "Help" +#~ msgstr "在线帮助" -#~ msgid "SemiColonAction" -#~ msgstr "分号键行为" +#~ msgid "HideMainWindowKey" +#~ msgstr "快捷键: 隐藏主窗口" -#~ msgid "InputEngByCapitalChar" -#~ msgstr "大写字母输入英文" +#~ msgid "Hotkey of Hiding Main Window" +#~ msgstr "快捷键: 隐藏主窗口" -#~ msgid "ConvertPunc" -#~ msgstr "转换中文标点" +#~ msgid "Hotkey of Looking up the Corresponding pinyin of Word." +#~ msgstr "快捷键: 反查拼音" -#~ msgid "LegendModeDisablePaging" -#~ msgstr "联想模式禁止翻页" +#~ msgid "Hotkey of Reseting Recording Mode" +#~ msgstr "快捷键: 重置记录模式" -#~ msgid "SendTextWhenSwitchEng" -#~ msgstr "快速切换中英文时将已有英文上屏" +#~ msgid "Hotkey of Switching Follow Cursor Mode" +#~ msgstr "快捷键: 切换光标跟随" -#~ msgid "CandidateWordNumber" -#~ msgstr "候选词个数" +#~ msgid "Hotkey of Switching Recording Mode" +#~ msgstr "快捷键: 切换记录模式" -#~ msgid "MainWindowHideMode" -#~ msgstr "主窗口隐藏模式" +#~ msgid "Hotkey of Switching Traditional Chinese Input Mode On." +#~ msgstr "快捷键: 切换简繁体中文输入" -#~ msgid "CenterInputWindow" -#~ msgstr "输入窗口居中" +#~ msgid "IMIndex" +#~ msgstr "当前输入法编号" -#~ msgid "ShowInputWindowAfterTriggering" -#~ msgstr "首次显示输入条" +#~ msgid "IconName" +#~ msgstr "图标名称" -#~ msgid "ShowPointAfterIndex" -#~ msgstr "候选序号后加点" +#~ msgid "InactiveMenuColor" +#~ msgstr "非活动菜单项颜色" -#~ msgid "ShowInputSpeed" -#~ msgstr "显示输入速度" +#~ msgid "IndexColor" +#~ msgstr "索引标记颜色" -#~ msgid "ShowVersion" -#~ msgstr "显示版本" +#~ msgid "Input English Character if you input upper case" +#~ msgstr "大写时输入英文" -#~ msgid "ShowHintWindow" -#~ msgstr "显示配置提示窗口" +#~ msgid "Input Window Position X" +#~ msgstr "输入框X位置" -#~ msgid "SkinType" -#~ msgstr "皮肤名称" +#~ msgid "Input Window Position Y" +#~ msgstr "输入框Y位置" -#~ msgid "TriggerKey" -#~ msgstr "输入法切换键" +#~ msgid "Input Window Shows at the position of cursor" +#~ msgstr "光标跟随" -#~ msgid "ChnEngSwitchKey" -#~ msgstr "中英文快速切换键" +#~ msgid "InputColor" +#~ msgstr "输入颜色" -#~ msgid "DoubleSwitchKey" -#~ msgstr "双击中英文切换" +#~ msgid "InputEngByCapitalChar" +#~ msgstr "大写字母输入英文" -#~ msgid "TimeInterval" -#~ msgstr "击键时间间隔" +#~ msgid "InputPos" +#~ msgstr "上排文字位置" -#~ msgid "FollowCursorKey" -#~ msgstr "快捷键: 切换光标跟随" +#~ msgid "InputWindowOffsetX" +#~ msgstr "输入窗口X位置" -#~ msgid "HideMainWindowKey" -#~ msgstr "快捷键: 隐藏主窗口" +#~ msgid "InputWindowOffsetY" +#~ msgstr "输入窗口Y位置" -#~ msgid "VKSwitchKey" -#~ msgstr "快捷键: 切换软键盘" +#~ msgid "InputWordFromPhraseKey" +#~ msgstr "以词定字键" -#~ msgid "TraditionalChnSwitchKey" -#~ msgstr "快捷键: 切换简体繁体" +# unknown +#~ msgid "L_SUPER" +#~ msgstr "左Super" -#~ msgid "LegendSwitchKey" -#~ msgstr "快捷键: 切换联想模式" +#~ msgid "Labels %d, Texts %d, CMB:%s" +#~ msgstr "Labels %d, Texts %d, CMB:%s" -#~ msgid "LookupPinyinKey" -#~ msgstr "快捷键: 反查拼音" +#~ msgid "LayoutLeft" +#~ msgstr "左边距" -#~ msgid "FullWidthSwitchKey" -#~ msgstr "快捷键: 切换全半角" +#~ msgid "LayoutRight" +#~ msgstr "右边距" -#~ msgid "ChnPuncSwitchKey" -#~ msgstr "快捷键: 切换中英文标点" +#, fuzzy +#~ msgid "Legend: " +#~ msgstr "联想: " -#~ msgid "PrevPageKey" -#~ msgstr "快捷键: 上一页" +#~ msgid "LineColor" +#~ msgstr "分隔线颜色" -#~ msgid "NextPageKey" -#~ msgstr "快捷键: 下一页" +#~ msgid "Load Autophrase OK" +#~ msgstr "加载自动组词信息完成" -#~ msgid "SecondThirdCandWordKey" -#~ msgstr "第二三候选词选择键" +#~ msgid "Load Table Dict OK" +#~ msgstr "加载码表文件成功" -#~ msgid "SaveAllKey" -#~ msgstr "快捷键: 保存" +#~ msgid "Load Table Dict from %s" +#~ msgstr "加载码表%s" -#~ msgid "SetRecordingKey" -#~ msgstr "快捷键: 切换记录模式" +#~ msgid "Loading Autophrase." +#~ msgstr "加载自动组词信息中" -#~ msgid "ResetRecordingKey" -#~ msgstr "快捷键: 重置记录模式" +#~ msgid "Loading Table Dict" +#~ msgstr "加载码表词典" -#~ msgid "PinyinOrder" -#~ msgstr "拼音顺序" +#~ msgid "Lock" +#~ msgstr "锁定图标" -#~ msgid "ShuangpinOrder" -#~ msgstr "双拼顺序" +#~ msgid "Lock Icon" +#~ msgstr "锁定图标" -#~ msgid "DefaultShuangpinSchema" -#~ msgstr "默认双拼方案" +#~ msgid "Locked" +#~ msgstr "锁定" -#~ msgid "QuweiOrder" -#~ msgstr "区位顺序" +#~ msgid "Logo" +#~ msgstr "Logo图标" -#~ msgid "TableOrder" -#~ msgstr "码表顺序" +#~ msgid "LookupPinyinKey" +#~ msgstr "快捷键: 反查拼音" -#~ msgid "PhraseTips" -#~ msgstr "提示词库中的词组" +#~ msgid "LookupTablePageDown" +#~ msgstr "LookupTablePageDown" -#~ msgid "UseCompletePinyin" -#~ msgstr "使用全拼" +#~ msgid "LookupTablePageUp" +#~ msgstr "LookupTablePageUp" -#~ msgid "AutoCreatePhrase" -#~ msgstr "自动组词" +#~ msgid "MainWindowHideMode" +#~ msgstr "主窗口隐藏模式" -#~ msgid "SaveAutoPhrase" -#~ msgstr "自动保存词组" +#~ msgid "MainWindowOffsetX" +#~ msgstr "主窗口X位置" -#~ msgid "AddFreqWordKey" -#~ msgstr "快捷键: 增加常用字" +#~ msgid "MainWindowOffsetY" +#~ msgstr "主窗口Y位置" -#~ msgid "DeleteFreqWordKey" -#~ msgstr "快捷键: 删除常用字" +#~ msgid "Margin to bottom" +#~ msgstr "下边距" -#~ msgid "DeleteUserPhraseKey" -#~ msgstr "快捷键: 删除用户词组" +#~ msgid "Margin to left" +#~ msgstr "左边距" -#~ msgid "InputWordFromPhraseKey" -#~ msgstr "以词定字键" +#~ msgid "Margin to right" +#~ msgstr "右边距" -#~ msgid "BaseOrder" -#~ msgstr "单字重码顺序调整" +#~ msgid "Margin to top" +#~ msgstr "上边距" -#~ msgid "PhraseOrder" -#~ msgstr "词组重码顺序调整" +#~ msgid "Match Error (%s)" +#~ msgstr "匹配错误 (%s)" -#~ msgid "FreqOrder" -#~ msgstr "常用词重码顺序调整" +#~ msgid "MatchingKey" +#~ msgstr "模糊键" -#~ msgid "FuzzyAnAng" -#~ msgstr "FuzzyAnAng" +#~ msgid "MenuFont" +#~ msgstr "菜单字体" -#~ msgid "FuzzyEnEng" -#~ msgstr "FuzzyEnEng" +#~ msgid "MenuFontSize" +#~ msgstr "菜单字体大小" -#~ msgid "FuzzyIanIang" -#~ msgstr "模糊ian和iang" +#~ msgid "Message Null" +#~ msgstr "Message Null" -#~ msgid "FuzzyInIng" -#~ msgstr "FuzzyInIng" +#~ msgid "Message has no arguments!" +#~ msgstr "Message has no arguments!" -#~ msgid "FuzzyOuU" -#~ msgstr "FuzzyOuU" +#~ msgid "Misstype" +#~ msgstr "gn/ng输入错误" -#~ msgid "FuzzyUanUang" -#~ msgstr "模糊uan和uang" +#~ msgid "MovePreeditCaret" +#~ msgstr "MovePreeditCaret" -#~ msgid "FuzzyCCh" -#~ msgstr "FuzzyCCh" +#~ msgid "NextPageKey" +#~ msgstr "快捷键: 下一页" -#~ msgid "FuzzyFH" -#~ msgstr "FuzzyFH" +# unknown +#~ msgid "NoChange" +#~ msgstr "原始操作" -#~ msgid "FuzzyLN" -#~ msgstr "FuzzyLN" +#~ msgid "NoVK" +#~ msgstr "软键盘未激活图标" -#~ msgid "FuzzySSH" -#~ msgstr "FuzzySSH" +#~ msgid "NoneMatchAutoSend" +#~ msgstr "空码自动上屏" -#~ msgid "FuzzyZZH" -#~ msgstr "FuzzyZZH" +#~ msgid "OtherColor" +#~ msgstr "其他颜色" -#~ msgid "Misstype" -#~ msgstr "gn/ng输入错误" +#~ msgid "Out Of Memory!" +#~ msgstr "Out Of Memory!" -#~ msgid "MainWindowOffsetX" -#~ msgstr "主窗口X位置" +#~ msgid "OutputPos" +#~ msgstr "下排文字位置" -#~ msgid "MainWindowOffsetY" -#~ msgstr "主窗口Y位置" +#~ msgid "PYKey" +#~ msgstr "拼音键" + +#~ msgid "PanelCreated" +#~ msgstr "PanelCreated" + +#~ msgid "PhraseOrder" +#~ msgstr "词组重码顺序调整" -#~ msgid "InputWindowOffsetX" -#~ msgstr "输入窗口X位置" +#~ msgid "PhraseTips" +#~ msgstr "提示词库中的词组" -#~ msgid "InputWindowOffsetY" -#~ msgstr "输入窗口Y位置" +#~ msgid "PinyinOrder" +#~ msgstr "拼音顺序" -#~ msgid "Corner" -#~ msgstr "全角" +#~ msgid "PrevPageKey" +#~ msgstr "快捷键: 上一页" -#~ msgid "ChnPunc" -#~ msgstr "中文标点" +#~ msgid "PromptTableCode" +#~ msgstr "提示编码" -#~ msgid "TrackCursor" -#~ msgstr "光标跟随" +#~ msgid "Quwei Priority Order, Zero to Disable" +#~ msgstr "区位输入法优先级,0为禁用" -#~ msgid "UseLegend" -#~ msgstr "联想模式" +#~ msgid "QuweiOrder" +#~ msgstr "区位顺序" -#~ msgid "IMIndex" -#~ msgstr "当前输入法编号" +# unknown +#~ msgid "R_SUPER" +#~ msgstr "右Super" -#~ msgid "CompactMainWindow" -#~ msgstr "压缩主窗口" +#~ msgid "Record File of Input" +#~ msgstr "记录文件" -#~ msgid "UseGBKT" -#~ msgstr "使用繁体" +#~ msgid "RecordFile" +#~ msgstr "记录文件" #~ msgid "Recording" #~ msgstr "记录模式" -#~ msgid "Version" -#~ msgstr "版本" +#~ msgid "Recording file must be an absolute path." +#~ msgstr "记录文件必须是绝对路径" -#~ msgid "Author" -#~ msgstr "作者" +#~ msgid "ReloadConfig" +#~ msgstr "ReloadConfig" -#~ msgid "Desc" -#~ msgstr "描述" +#~ msgid "Remind disabled Icon" +#~ msgstr "禁用联想图标" -#~ msgid "FontSize" -#~ msgstr "字体大小" +#~ msgid "Remind mode Icon" +#~ msgstr "联想激活图标" -#~ msgid "MenuFontSize" -#~ msgstr "菜单字体大小" +#~ msgid "RemindModeDisablePaging" +#~ msgstr "联想模式禁止翻页" -#~ msgid "TipColor" -#~ msgstr "提升颜色" +#~ msgid "RemindSwitchKey" +#~ msgstr "快捷键: 切换联想模式" -#~ msgid "InputColor" -#~ msgstr "输入颜色" +#~ msgid "Rename OK" +#~ msgstr "重命名成功" -#~ msgid "IndexColor" -#~ msgstr "索引标记颜色" +#~ msgid "ResetRecordingKey" +#~ msgstr "快捷键: 重置记录模式" -#~ msgid "FirstCandColor" -#~ msgstr "第一候选词颜色" +#~ msgid "ResizeHorizontal" +#~ msgstr "横向变形规则" -#~ msgid "UserPhraseColor" -#~ msgstr "用户词组颜色" +#~ msgid "ResizePos" +#~ msgstr "变形区域位置" -#~ msgid "CodeColor" -#~ msgstr "码表提升颜色" +#~ msgid "ResizeVertical" +#~ msgstr "纵向变形规则" -#~ msgid "OtherColor" -#~ msgstr "其他颜色" +#~ msgid "ResizeWidth" +#~ msgstr "变形区域宽度" -#~ msgid "ActiveMenuColor" -#~ msgstr "活动菜单项颜色" +#~ msgid "SaveAllKey" +#~ msgstr "快捷键: 保存" -#~ msgid "InactiveMenuColor" -#~ msgstr "非活动菜单项颜色" +#~ msgid "SaveAutoPhrase" +#~ msgstr "自动保存词组" -#~ msgid "BackImg" -#~ msgstr "背景图片" +#~ msgid "Saving TABLE Dict." +#~ msgstr "保存码表词典" -#~ msgid "Logo" -#~ msgstr "Logo图标" +#~ msgid "SecondThirdCandWordKey" +#~ msgstr "第二三候选词选择键" -#~ msgid "ZhPunc" -#~ msgstr "中文标点图标" +#~ msgid "SelectCandidate: " +#~ msgstr "SelectCandidate: " -#~ msgid "EnPunc" -#~ msgstr "英文标点图标" +#~ msgid "SemiColonAction" +#~ msgstr "分号键行为" -#~ msgid "Chs" -#~ msgstr "简体图标" +#~ msgid "SendTextWhenSwitchEng" +#~ msgstr "快速切换中英文时将已有英文上屏" -#~ msgid "Cht" -#~ msgstr "繁体图标" +#~ msgid "Sending %s icid=%d connectid=%d\n" +#~ msgstr "Sending %s icid=%d connectid=%d\n" -#~ msgid "HalfCorner" -#~ msgstr "半角图标" +#~ msgid "Set icid=%d(connect_id=%d) to %d" +#~ msgstr "Set icid=%d(connect_id=%d) to %d" -#~ msgid "FullCorner" -#~ msgstr "全角图标" +#~ msgid "SetRecordingKey" +#~ msgstr "快捷键: 切换记录模式" -#~ msgid "Unlock" -#~ msgstr "未锁定图标" +#~ msgid "Show Hint Window while ENV is not correctly configured." +#~ msgstr "环境未配置正确时显示提示窗口" -#~ msgid "Lock" -#~ msgstr "锁定图标" +#~ msgid "Show Input Window In the center of screen" +#~ msgstr "输入窗口显示在正中" -#~ msgid "Legend" -#~ msgstr "联想激活图标" +#~ msgid "Show Main Window in a compact way" +#~ msgstr "用紧凑的方式显示主窗口" -#~ msgid "NoLegend" -#~ msgstr "联想未激活图标" +#~ msgid "Show Point After Index of Candidate Word " +#~ msgstr "候选序号后加点" -#~ msgid "VK" -#~ msgstr "软键盘激活图标" +#~ msgid "ShowHintWindow" +#~ msgstr "显示配置提示窗口" -#~ msgid "NoVK" -#~ msgstr "软键盘未激活图标" +#~ msgid "ShowInputSpeed" +#~ msgstr "显示输入速度" -#~ msgid "Chn" -#~ msgstr "中文" +#~ msgid "ShowInputWindowAfterTriggering" +#~ msgstr "首次显示输入条" -#~ msgid "ResizePos" -#~ msgstr "变形区域位置" +#~ msgid "ShowPointAfterIndex" +#~ msgstr "候选序号后加点" -#~ msgid "ResizeWidth" -#~ msgstr "变形区域宽度" +#~ msgid "ShowVersion" +#~ msgstr "显示版本" -#~ msgid "InputPos" -#~ msgstr "上排文字位置" +#~ msgid "ShuangpinOrder" +#~ msgstr "双拼顺序" -#~ msgid "OutputPos" -#~ msgstr "下排文字位置" +#~ msgid "Skin Name in use" +#~ msgstr "皮肤名称" -#~ msgid "LayoutLeft" -#~ msgstr "左边距" +#~ msgid "SkinType" +#~ msgstr "皮肤名称" -#~ msgid "LayoutRight" -#~ msgstr "右边距" +#~ msgid "Space to the left" +#~ msgstr "左侧空白宽度" -#~ msgid "CursorColor" -#~ msgstr "光标颜色" +#~ msgid "Space to the right" +#~ msgstr "右侧空白宽度" -#~ msgid "BackArrow" -#~ msgstr "向后翻页" +#~ msgid "Switch IM" +#~ msgstr "选择输入法" -#~ msgid "ForwardArrow" -#~ msgstr "向前翻页" +#~ msgid "Switch Skin" +#~ msgstr "切换皮肤" -#~ msgid "Active" -#~ msgstr "激活" +#~ msgid "Switch VK" +#~ msgstr "选择软键盘" -#~ msgid "Inactive" -#~ msgstr "未激活" +#~ msgid "SwitchKey" +#~ msgstr "中英文快速切换键" -#~ msgid "ResizeHorizontal" -#~ msgstr "横向变形规则" +#~ msgid "SymbolFile" +#~ msgstr "符号文件" -#~ msgid "ResizeVertical" -#~ msgstr "纵向变形规则" +#~ msgid "Table Priority Order, Zero to Disable" +#~ msgstr "码表输入法优先级,0为禁用" -#~ msgid "MarginTop" -#~ msgstr "上边距" +#~ msgid "TableOrder" +#~ msgstr "码表顺序" -#~ msgid "MarginBottom" -#~ msgstr "下边距" +#, fuzzy +#~ msgid "Test Name" +#~ msgstr "名称" -#~ msgid "MarginLeft" -#~ msgstr "左边距" +#~ msgid "The Resize Position to Left" +#~ msgstr "变形区域距左侧距离" -#~ msgid "MarginRight" -#~ msgstr "右边距" +#~ msgid "TimeInterval" +#~ msgstr "击键时间间隔" -#~ msgid "ActiveColor" -#~ msgstr "活动项背景颜色" +#~ msgid "TipColor" +#~ msgstr "提升颜色" -#~ msgid "LineColor" -#~ msgstr "分隔线颜色" +#~ msgid "TrackCursor" +#~ msgstr "光标跟随" -#~ msgid "IconName" -#~ msgstr "图标名称" +#~ msgid "TraditionalChnSwitchKey" +#~ msgstr "快捷键: 切换简体繁体" -#~ msgid "File" -#~ msgstr "文件" +#~ msgid "TriggerKey" +#~ msgstr "输入法切换键" -#~ msgid "AdjustOrder" -#~ msgstr "候选词顺序调整" +#~ msgid "TriggerProperty: " +#~ msgstr "TriggerProperty: " -#~ msgid "Priority" -#~ msgstr "优先级" +#~ msgid "Type: %d Text: %s" +#~ msgstr "Type: %d Text: %s" -#~ msgid "UsePY" -#~ msgstr "使用拼音" +#~ msgid "UnLock Icon" +#~ msgstr "未锁定图标" -#~ msgid "PYKey" -#~ msgstr "拼音键" +#~ msgid "Unlock" +#~ msgstr "未锁定图标" -#~ msgid "AutoSend" -#~ msgstr "自动上屏" +#~ msgid "Use DBus to display UI (Require KIMPanel)" +#~ msgstr "使用DBus来显示界面(需要KIMPanel)" -#~ msgid "NoneMatchAutoSend" -#~ msgstr "空码自动上屏" +#~ msgid "Use Traditional Chinese in Input" +#~ msgstr "使用繁体中文输入" -#~ msgid "EndKey" -#~ msgstr "中止键" +#~ msgid "Use recording mode" +#~ msgstr "使用记录模式" + +#~ msgid "UseCompletePinyin" +#~ msgstr "使用全拼" + +#~ msgid "UseDBus" +#~ msgstr "启用DBus" + +#~ msgid "UseGBKT" +#~ msgstr "使用繁体" #~ msgid "UseMatchingKey" #~ msgstr "使用模糊键" -#~ msgid "MatchingKey" -#~ msgstr "模糊键" +#~ msgid "UsePY" +#~ msgstr "使用拼音" -#~ msgid "ExactMatch" -#~ msgstr "精确匹配" +#~ msgid "UseRemind" +#~ msgstr "联想模式" -#~ msgid "AutoPhrase" -#~ msgstr "自动组词" +#~ msgid "UseTray" +#~ msgstr "启用托盘" -#~ msgid "AutoPhraseLength" -#~ msgstr "自动组词长度" +#~ msgid "UserPhraseColor" +#~ msgstr "用户词组颜色" -#~ msgid "AutoPhrasePhrase" -#~ msgstr "词组参与自动造词" +#~ msgid "VK" +#~ msgstr "软键盘激活图标" -#~ msgid "PromptTableCode" -#~ msgstr "提示编码" +#~ msgid "VKSwitchKey" +#~ msgstr "快捷键: 切换软键盘" -#~ msgid "SymbolFile" -#~ msgstr "符号文件" +#~ msgid "Version" +#~ msgstr "版本" -#~ msgid "ExtraIM" -#~ msgstr "额外输入法" +#~ msgid "Virtual Keyboard disabled Icon" +#~ msgstr "禁用软键盘图标" -#~ msgid "FontZh" -#~ msgstr "中文字体" +#~ msgid "Virtual Keyboard enabled Icon" +#~ msgstr "启用软键盘图标" -#~ msgid "Saving TABLE Dict." -#~ msgstr "保存码表词典" +#~ msgid "Width of Resize Part " +#~ msgstr "变形区域宽度" -#~ msgid "Show Point After Index of Candidate Word " -#~ msgstr "候选序号后加点" +#~ msgid "XEvent--Expose" +#~ msgstr "XEvent--Expose" -#~ msgid "pthread mutexattr init failed" -#~ msgstr "pthread mutexattr init failed" +#~ msgid "You can set those variables in ~/.bashrc or ~/.xprofile ." +#~ msgstr "这些环境变量可以设置在~/.bashrc或者~/.xprofile当中。" -#~ msgid "Set icid=%d(connect_id=%d) to %d" -#~ msgstr "Set icid=%d(connect_id=%d) to %d" +#~ msgid "ZhPunc" +#~ msgstr "中文标点图标" -#~ msgid "Enable" -#~ msgstr "启用" +#, fuzzy +#~ msgid "fcitx" +#~ msgstr "Fcitx" -#~ msgid "Extra" -#~ msgstr "额外输入法" +#~ msgid "pthread mutexattr init failed" +#~ msgstr "pthread mutexattr init failed" + +#~ msgid "updateMesssages Up:%s" +#~ msgstr "updateMesssages Up:%s" diff -Nru fcitx-4.0.1/README fcitx-4.1.1/README --- fcitx-4.0.1/README 2010-11-28 11:54:59.000000000 +0000 +++ fcitx-4.1.1/README 2011-09-08 16:00:05.000000000 +0000 @@ -1,2 +1,2 @@ -Please read doc/fcitx4.pdf (in S. Chinese). +Please read http://fcitx.github.com/handbook/ Developer may want to read doc/Develop_Readme to get an overview of source code. Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/skin/classic/chnpunc.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/skin/classic/chnpunc.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/skin/classic/chttrans_active.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/skin/classic/chttrans_active.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/skin/classic/chttrans_inactive.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/skin/classic/chttrans_inactive.png differ diff -Nru fcitx-4.0.1/skin/classic/CMakeLists.txt fcitx-4.1.1/skin/classic/CMakeLists.txt --- fcitx-4.0.1/skin/classic/CMakeLists.txt 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/skin/classic/CMakeLists.txt 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,11 @@ +set(FCITX_CLASSIC_SKIN_FILES +chttrans_active.png chttrans_inactive.png +fullwidth_active.png fullwidth_inactive.png +punc_active.png punc_inactive.png + active.png bingchan.png erbi.png fcitx_skin.conf + input.png remind_active.png remind_inactive.png quwei.png vk_active.png vk_inactive.png wubi.png wbpy.png ziranma.png + bar.png cangjie.png cn.png en.png inactive.png logo.png + dianbaoma.png shuangpin.png wanfeng.png pinyin.png prev.png next.png menu.png +) + +install(FILES ${FCITX_CLASSIC_SKIN_FILES} DESTINATION ${pkgdatadir}/skin/classic) \ No newline at end of file Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/skin/classic/engpunc.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/skin/classic/engpunc.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/skin/classic/fan.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/skin/classic/fan.png differ diff -Nru fcitx-4.0.1/skin/classic/fcitx_skin.conf fcitx-4.1.1/skin/classic/fcitx_skin.conf --- fcitx-4.0.1/skin/classic/fcitx_skin.conf 2010-11-28 11:55:00.000000000 +0000 +++ fcitx-4.1.1/skin/classic/fcitx_skin.conf 2011-09-08 16:00:05.000000000 +0000 @@ -1,8 +1,8 @@ [SkinInfo] -Name=fcitx +Name=Classic Version=0.2 Author=CSSlayer -Desc=传统界面 +Desc=Classic Skin [SkinFont] FontSize=15 @@ -17,52 +17,30 @@ InactiveMenuColor=0 99 200 [SkinMainBar] -#主窗口背景图和掩图 -BackImg=bar.png -#logo图标 -Logo=logo.png 1 2 -#中英标点图标 -ZhPunc=chnpunc.png 69 2 -EnPunc=engpunc.png 69 2 -#简体繁体图标 -Chs=jian.png 35 2 -Cht=fan.png 35 2 -#半角全角图标 -HalfCorner=half.png 52 2 -FullCorner=full.png 52 2 -#不锁和锁定图标 -Unlock= -Lock= -#联想不使用和使用图标 -NoLegend=nolegend.png 103 2 -Legend=legend.png 103 2 -#虚拟键盘图标 -NoVK=novk.png 86 2 -VK=vk.png 86 2 -#中文输入法图标 -Eng=en.png 18 2 -Chn=cn.png 18 2 +BackImg=bar.png +Logo=logo.png +Eng=en.png +Active=cn.png +MarginTop=1 +MarginBottom=1 +MarginLeft=1 +MarginRight=1 [SkinInputBar] -#输入窗口背景图和掩图 BackImg=input.png -#输入窗口只能加长有3选项:1通过图片中的某一段重复增加(默认选择) 0对某一段进行延长 resize=3则不启用缩放(固定输入条) -Resize=Copy -#需要重复出现图标在主背景图的位置 -ResizePos=5 -#需要重复出现图标在主背景图的宽度 -ResizeWidth=1 -#由于输入位置和字体大小有关,以字的左下端到窗口顶部计算 -InputPos=16 -OutputPos=40 -#输入和输出显示的字离输入条左右边框的距离 -LayoutLeft=10 -LayoutRight=80 -#光标颜色 +MarginLeft=5 +MarginRight=30 +MarginTop=3 +MarginBottom=3 +InputPos=19 +OutputPos=39 CursorColor=40 40 240 -#翻页箭头图标 -ForwardArrow=next.png 55 7 -BackArrow=prev.png 45 7 +BackArrow=prev.png +ForwardArrow=next.png +BackArrowX=20 +BackArrowY=3 +ForwardArrowX=10 +ForwardArrowY=3 [SkinTrayIcon] Active=active.png @@ -70,8 +48,6 @@ [SkinMenu] BackImg=menu.png -ResizeHorizontal=Copy -ResizeVertical=Copy MarginTop=5 MarginBottom=5 MarginLeft=5 Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/skin/classic/full.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/skin/classic/full.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/skin/classic/fullwidth_active.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/skin/classic/fullwidth_active.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/skin/classic/fullwidth_inactive.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/skin/classic/fullwidth_inactive.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/skin/classic/half.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/skin/classic/half.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/skin/classic/input.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/skin/classic/input.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/skin/classic/jian.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/skin/classic/jian.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/skin/classic/keyboard.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/skin/classic/keyboard.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/skin/classic/legend.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/skin/classic/legend.png differ diff -Nru fcitx-4.0.1/skin/classic/Makefile.am fcitx-4.1.1/skin/classic/Makefile.am --- fcitx-4.0.1/skin/classic/Makefile.am 2010-12-06 12:06:36.000000000 +0000 +++ fcitx-4.1.1/skin/classic/Makefile.am 1970-01-01 00:00:00.000000000 +0000 @@ -1,6 +0,0 @@ -classicdir = $(pkgdatadir)/skin/classic -classic_DATA = active.png bingchan.png chnpunc.png engpunc.png erbi.png fcitx_skin.conf half.png \ - input.png legend.png nolegend.png quwei.png vk.png wubi.png wbpy.png ziranma.png \ - bar.png cangjie.png cn.png en.png fan.png full.png inactive.png jian.png logo.png \ - dianbaoma.png novk.png shuangpin.png wanfeng.png pinyin.png prev.png next.png menu.png keyboard.png -EXTRA_DIST = $(classic_DATA) diff -Nru fcitx-4.0.1/skin/classic/Makefile.in fcitx-4.1.1/skin/classic/Makefile.in --- fcitx-4.0.1/skin/classic/Makefile.in 2010-12-17 04:26:30.000000000 +0000 +++ fcitx-4.1.1/skin/classic/Makefile.in 1970-01-01 00:00:00.000000000 +0000 @@ -1,456 +0,0 @@ -# Makefile.in generated by automake 1.11.1 from Makefile.am. -# @configure_input@ - -# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, -# Inc. -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - -@SET_MAKE@ - -VPATH = @srcdir@ -pkgdatadir = $(datadir)/@PACKAGE@ -pkgincludedir = $(includedir)/@PACKAGE@ -pkglibdir = $(libdir)/@PACKAGE@ -pkglibexecdir = $(libexecdir)/@PACKAGE@ -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = @build@ -host_triplet = @host@ -subdir = skin/classic -DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/configure.in -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -mkinstalldirs = $(install_sh) -d -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -CONFIG_CLEAN_VPATH_FILES = -AM_V_GEN = $(am__v_GEN_$(V)) -am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) -am__v_GEN_0 = @echo " GEN " $@; -AM_V_at = $(am__v_at_$(V)) -am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) -am__v_at_0 = @ -SOURCES = -DIST_SOURCES = -am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; -am__vpath_adj = case $$p in \ - $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ - *) f=$$p;; \ - esac; -am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; -am__install_max = 40 -am__nobase_strip_setup = \ - srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` -am__nobase_strip = \ - for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" -am__nobase_list = $(am__nobase_strip_setup); \ - for p in $$list; do echo "$$p $$p"; done | \ - sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ - $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ - if (++n[$$2] == $(am__install_max)) \ - { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ - END { for (dir in files) print dir, files[dir] }' -am__base_list = \ - sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ - sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' -am__installdirs = "$(DESTDIR)$(classicdir)" -DATA = $(classic_DATA) -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -ACLOCAL = @ACLOCAL@ -ALL_LINGUAS = @ALL_LINGUAS@ -AMTAR = @AMTAR@ -AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ -AR = @AR@ -AUTOCONF = @AUTOCONF@ -AUTOHEADER = @AUTOHEADER@ -AUTOMAKE = @AUTOMAKE@ -AWK = @AWK@ -CAIRO_XLIB_CFLAGS = @CAIRO_XLIB_CFLAGS@ -CAIRO_XLIB_LIBS = @CAIRO_XLIB_LIBS@ -CC = @CC@ -CCDEPMODE = @CCDEPMODE@ -CFLAGS = @CFLAGS@ -CPP = @CPP@ -CPPFLAGS = @CPPFLAGS@ -CYGPATH_W = @CYGPATH_W@ -DATADIRNAME = @DATADIRNAME@ -DBUS_CFLAGS = @DBUS_CFLAGS@ -DBUS_LIBS = @DBUS_LIBS@ -DEFS = @DEFS@ -DEPDIR = @DEPDIR@ -DLLTOOL = @DLLTOOL@ -DSYMUTIL = @DSYMUTIL@ -DUMPBIN = @DUMPBIN@ -ECHO_C = @ECHO_C@ -ECHO_N = @ECHO_N@ -ECHO_T = @ECHO_T@ -EGREP = @EGREP@ -EXEEXT = @EXEEXT@ -FGREP = @FGREP@ -FONTCONFIG_CFLAGS = @FONTCONFIG_CFLAGS@ -FONTCONFIG_LIBS = @FONTCONFIG_LIBS@ -GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ -GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ -GMSGFMT = @GMSGFMT@ -GMSGFMT_015 = @GMSGFMT_015@ -GREP = @GREP@ -HOST_LIBS = @HOST_LIBS@ -INCINTL = @INCINTL@ -INSTALL = @INSTALL@ -INSTALL_DATA = @INSTALL_DATA@ -INSTALL_PROGRAM = @INSTALL_PROGRAM@ -INSTALL_SCRIPT = @INSTALL_SCRIPT@ -INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ -INTLLIBS = @INTLLIBS@ -INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ -INTLTOOL_MERGE = @INTLTOOL_MERGE@ -INTLTOOL_PERL = @INTLTOOL_PERL@ -INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ -INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ -LD = @LD@ -LDFLAGS = @LDFLAGS@ -LIBICONV = @LIBICONV@ -LIBINTL = @LIBINTL@ -LIBOBJS = @LIBOBJS@ -LIBS = @LIBS@ -LIBTOOL = @LIBTOOL@ -LIPO = @LIPO@ -LN_S = @LN_S@ -LTLIBICONV = @LTLIBICONV@ -LTLIBINTL = @LTLIBINTL@ -LTLIBOBJS = @LTLIBOBJS@ -MAKEINFO = @MAKEINFO@ -MANIFEST_TOOL = @MANIFEST_TOOL@ -MD5SUM = @MD5SUM@ -MKDIR_P = @MKDIR_P@ -MSGFMT = @MSGFMT@ -MSGFMT_015 = @MSGFMT_015@ -MSGMERGE = @MSGMERGE@ -NM = @NM@ -NMEDIT = @NMEDIT@ -OBJDUMP = @OBJDUMP@ -OBJEXT = @OBJEXT@ -OTOOL = @OTOOL@ -OTOOL64 = @OTOOL64@ -PACKAGE = @PACKAGE@ -PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ -PACKAGE_NAME = @PACKAGE_NAME@ -PACKAGE_STRING = @PACKAGE_STRING@ -PACKAGE_TARNAME = @PACKAGE_TARNAME@ -PACKAGE_URL = @PACKAGE_URL@ -PACKAGE_VERSION = @PACKAGE_VERSION@ -PANGOCAIRO_CFLAGS = @PANGOCAIRO_CFLAGS@ -PANGOCAIRO_LIBS = @PANGOCAIRO_LIBS@ -PATH_SEPARATOR = @PATH_SEPARATOR@ -PKG_CONFIG = @PKG_CONFIG@ -PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ -PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ -POSUB = @POSUB@ -RANLIB = @RANLIB@ -SED = @SED@ -SET_MAKE = @SET_MAKE@ -SHELL = @SHELL@ -STRIP = @STRIP@ -TAR = @TAR@ -USE_NLS = @USE_NLS@ -VERSION = @VERSION@ -WGET = @WGET@ -XGETTEXT = @XGETTEXT@ -XGETTEXT_015 = @XGETTEXT_015@ -XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ -XMKMF = @XMKMF@ -XRENDER_CFLAGS = @XRENDER_CFLAGS@ -XRENDER_LIBS = @XRENDER_LIBS@ -X_CFLAGS = @X_CFLAGS@ -X_LIBS = @X_LIBS@ -abs_builddir = @abs_builddir@ -abs_srcdir = @abs_srcdir@ -abs_top_builddir = @abs_top_builddir@ -abs_top_srcdir = @abs_top_srcdir@ -ac_ct_AR = @ac_ct_AR@ -ac_ct_CC = @ac_ct_CC@ -ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ -am__include = @am__include@ -am__leading_dot = @am__leading_dot@ -am__quote = @am__quote@ -am__tar = @am__tar@ -am__untar = @am__untar@ -bindir = @bindir@ -build = @build@ -build_alias = @build_alias@ -build_cpu = @build_cpu@ -build_os = @build_os@ -build_vendor = @build_vendor@ -builddir = @builddir@ -datadir = @datadir@ -datarootdir = @datarootdir@ -docdir = @docdir@ -dvidir = @dvidir@ -exec_prefix = @exec_prefix@ -host = @host@ -host_alias = @host_alias@ -host_cpu = @host_cpu@ -host_os = @host_os@ -host_vendor = @host_vendor@ -htmldir = @htmldir@ -includedir = @includedir@ -infodir = @infodir@ -install_sh = @install_sh@ -libdir = @libdir@ -libexecdir = @libexecdir@ -localedir = @localedir@ -localstatedir = @localstatedir@ -mandir = @mandir@ -mkdir_p = @mkdir_p@ -oldincludedir = @oldincludedir@ -pdfdir = @pdfdir@ -prefix = @prefix@ -program_transform_name = @program_transform_name@ -psdir = @psdir@ -sbindir = @sbindir@ -sharedstatedir = @sharedstatedir@ -srcdir = @srcdir@ -sysconfdir = @sysconfdir@ -target_alias = @target_alias@ -top_build_prefix = @top_build_prefix@ -top_builddir = @top_builddir@ -top_srcdir = @top_srcdir@ -classicdir = $(pkgdatadir)/skin/classic -classic_DATA = active.png bingchan.png chnpunc.png engpunc.png erbi.png fcitx_skin.conf half.png \ - input.png legend.png nolegend.png quwei.png vk.png wubi.png wbpy.png ziranma.png \ - bar.png cangjie.png cn.png en.png fan.png full.png inactive.png jian.png logo.png \ - dianbaoma.png novk.png shuangpin.png wanfeng.png pinyin.png prev.png next.png menu.png keyboard.png - -EXTRA_DIST = $(classic_DATA) -all: all-am - -.SUFFIXES: -$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ - && { if test -f $@; then exit 0; else break; fi; }; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign skin/classic/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign skin/classic/Makefile -.PRECIOUS: Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(am__aclocal_m4_deps): - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs -install-classicDATA: $(classic_DATA) - @$(NORMAL_INSTALL) - test -z "$(classicdir)" || $(MKDIR_P) "$(DESTDIR)$(classicdir)" - @list='$(classic_DATA)'; test -n "$(classicdir)" || list=; \ - for p in $$list; do \ - if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ - echo "$$d$$p"; \ - done | $(am__base_list) | \ - while read files; do \ - echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(classicdir)'"; \ - $(INSTALL_DATA) $$files "$(DESTDIR)$(classicdir)" || exit $$?; \ - done - -uninstall-classicDATA: - @$(NORMAL_UNINSTALL) - @list='$(classic_DATA)'; test -n "$(classicdir)" || list=; \ - files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ - test -n "$$files" || exit 0; \ - echo " ( cd '$(DESTDIR)$(classicdir)' && rm -f" $$files ")"; \ - cd "$(DESTDIR)$(classicdir)" && rm -f $$files -tags: TAGS -TAGS: - -ctags: CTAGS -CTAGS: - - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d "$(distdir)/$$file"; then \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ - else \ - test -f "$(distdir)/$$file" \ - || cp -p $$d/$$file "$(distdir)/$$file" \ - || exit 1; \ - fi; \ - done -check-am: all-am -check: check-am -all-am: Makefile $(DATA) -installdirs: - for dir in "$(DESTDIR)$(classicdir)"; do \ - test -z "$$dir" || $(MKDIR_P) "$$dir"; \ - done -install: install-am -install-exec: install-exec-am -install-data: install-data-am -uninstall: uninstall-am - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-am -install-strip: - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - `test -z '$(STRIP)' || \ - echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install -mostlyclean-generic: - -clean-generic: - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-am - -clean-am: clean-generic clean-libtool mostlyclean-am - -distclean: distclean-am - -rm -f Makefile -distclean-am: clean-am distclean-generic - -dvi: dvi-am - -dvi-am: - -html: html-am - -html-am: - -info: info-am - -info-am: - -install-data-am: install-classicDATA - -install-dvi: install-dvi-am - -install-dvi-am: - -install-exec-am: - -install-html: install-html-am - -install-html-am: - -install-info: install-info-am - -install-info-am: - -install-man: - -install-pdf: install-pdf-am - -install-pdf-am: - -install-ps: install-ps-am - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-am - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-am - -mostlyclean-am: mostlyclean-generic mostlyclean-libtool - -pdf: pdf-am - -pdf-am: - -ps: ps-am - -ps-am: - -uninstall-am: uninstall-classicDATA - -.MAKE: install-am install-strip - -.PHONY: all all-am check check-am clean clean-generic clean-libtool \ - distclean distclean-generic distclean-libtool distdir dvi \ - dvi-am html html-am info info-am install install-am \ - install-classicDATA install-data install-data-am install-dvi \ - install-dvi-am install-exec install-exec-am install-html \ - install-html-am install-info install-info-am install-man \ - install-pdf install-pdf-am install-ps install-ps-am \ - install-strip installcheck installcheck-am installdirs \ - maintainer-clean maintainer-clean-generic mostlyclean \ - mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ - uninstall uninstall-am uninstall-classicDATA - - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/skin/classic/nolegend.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/skin/classic/nolegend.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/skin/classic/novk.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/skin/classic/novk.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/skin/classic/punc_active.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/skin/classic/punc_active.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/skin/classic/punc_inactive.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/skin/classic/punc_inactive.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/skin/classic/remind_active.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/skin/classic/remind_active.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/skin/classic/remind_inactive.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/skin/classic/remind_inactive.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/skin/classic/vk_active.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/skin/classic/vk_active.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/skin/classic/vk_inactive.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/skin/classic/vk_inactive.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/skin/classic/vk.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/skin/classic/vk.png differ diff -Nru fcitx-4.0.1/skin/CMakeLists.txt fcitx-4.1.1/skin/CMakeLists.txt --- fcitx-4.0.1/skin/CMakeLists.txt 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/skin/CMakeLists.txt 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,3 @@ +add_subdirectory(default) +add_subdirectory(classic) +add_subdirectory(dark) \ No newline at end of file Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/skin/dark/chnpunc.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/skin/dark/chnpunc.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/skin/dark/chttrans_active.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/skin/dark/chttrans_active.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/skin/dark/chttrans_inactive.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/skin/dark/chttrans_inactive.png differ diff -Nru fcitx-4.0.1/skin/dark/CMakeLists.txt fcitx-4.1.1/skin/dark/CMakeLists.txt --- fcitx-4.0.1/skin/dark/CMakeLists.txt 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/skin/dark/CMakeLists.txt 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,11 @@ +set(FCITX_DARK_SKIN_FILES +active.png bingchan.png erbi.png fcitx_skin.conf +input.png quwei.png wubi.png wbpy.png ziranma.png +bar.png cangjie.png cn.png en.png inactive.png logo.png +dianbaoma.png shuangpin.png wanfeng.png pinyin.png prev.png next.png menu.png keyboard.png +remind_active.png remind_inactive.png vk_active.png vk_inactive.png +punc_active.png punc_inactive.png fullwidth_active.png fullwidth_inactive.png +chttrans_active.png chttrans_inactive.png +) + +install(FILES ${FCITX_DARK_SKIN_FILES} DESTINATION ${pkgdatadir}/skin/dark) \ No newline at end of file Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/skin/dark/engpunc.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/skin/dark/engpunc.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/skin/dark/fan.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/skin/dark/fan.png differ diff -Nru fcitx-4.0.1/skin/dark/fcitx_skin.conf fcitx-4.1.1/skin/dark/fcitx_skin.conf --- fcitx-4.0.1/skin/dark/fcitx_skin.conf 2010-12-07 07:24:09.000000000 +0000 +++ fcitx-4.1.1/skin/dark/fcitx_skin.conf 2011-09-08 16:00:05.000000000 +0000 @@ -2,7 +2,8 @@ Name=Dark Version=0.8 Author=jarryson -Desc=暗色系界面 +Desc=Dark + [SkinFont] FontSize=15 MenuFontSize=12 @@ -15,42 +16,39 @@ OtherColor=220 220 220 ActiveMenuColor=255 255 255 InactiveMenuColor=0 0 0 + [SkinMainBar] BackImg=bar.png -Logo=logo.png 3 0 -ZhPunc=chnpunc.png 91 0 -EnPunc=engpunc.png 91 0 -Chs=jian.png 47 0 -Cht=fan.png 47 0 -HalfCorner=half.png 69 0 -FullCorner=full.png 69 0 -Unlock= -Lock= -Legend= -NoLegend= -VK=vk.png 113 0 -NoVK=novk.png 113 0 -Eng=en.png 25 0 -Chn=cn.png 25 0 +Logo=logo.png +Eng=en.png +Active=cn.png +MarginTop=1 +MarginBottom=5 +MarginLeft=5 +MarginRight=5 + [SkinInputBar] BackImg=input.png -Resize=Copy -ResizePos=20 -ResizeWidth=20 -InputPos=22 -OutputPos=44 -LayoutLeft=14 -LayoutRight=40 +MarginLeft=7 +MarginRight=10 +MarginTop=8 +MarginBottom=6 +InputPos=15 +OutputPos=35 CursorColor=99 99 99 -ForwardArrow=next.png 85 7 -BackArrow=prev.png 75 7 +BackArrow=prev.png +ForwardArrow=next.png +BackArrowX=25 +BackArrowY=6 +ForwardArrowX=15 +ForwardArrowY=6 + [SkinTrayIcon] Active=active.png Inactive=inactive.png + [SkinMenu] BackImg=menu.png -ResizeHorizontal=Resize -ResizeVertical=Resize MarginTop=8 MarginBottom=10 MarginLeft=3 @@ -62,4 +60,4 @@ # Virtual Keyboard Image BackImg=keyboard.png # Key Color On Virutal Keyboard -KeyColor=255 255 255 \ No newline at end of file +KeyColor=255 255 255 Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/skin/dark/full.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/skin/dark/full.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/skin/dark/fullwidth_active.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/skin/dark/fullwidth_active.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/skin/dark/fullwidth_inactive.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/skin/dark/fullwidth_inactive.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/skin/dark/half.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/skin/dark/half.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/skin/dark/jian.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/skin/dark/jian.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/skin/dark/legend.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/skin/dark/legend.png differ diff -Nru fcitx-4.0.1/skin/dark/Makefile.am fcitx-4.1.1/skin/dark/Makefile.am --- fcitx-4.0.1/skin/dark/Makefile.am 2010-12-06 12:06:25.000000000 +0000 +++ fcitx-4.1.1/skin/dark/Makefile.am 1970-01-01 00:00:00.000000000 +0000 @@ -1,6 +0,0 @@ -darkdir = $(pkgdatadir)/skin/dark -dark_DATA = active.png bingchan.png chnpunc.png engpunc.png erbi.png fcitx_skin.conf half.png \ - input.png legend.png nolegend.png quwei.png vk.png wubi.png wbpy.png ziranma.png \ - bar.png cangjie.png cn.png en.png fan.png full.png inactive.png jian.png logo.png \ - dianbaoma.png novk.png shuangpin.png wanfeng.png pinyin.png prev.png next.png menu.png keyboard.png -EXTRA_DIST = $(dark_DATA) diff -Nru fcitx-4.0.1/skin/dark/Makefile.in fcitx-4.1.1/skin/dark/Makefile.in --- fcitx-4.0.1/skin/dark/Makefile.in 2010-12-17 04:26:30.000000000 +0000 +++ fcitx-4.1.1/skin/dark/Makefile.in 1970-01-01 00:00:00.000000000 +0000 @@ -1,456 +0,0 @@ -# Makefile.in generated by automake 1.11.1 from Makefile.am. -# @configure_input@ - -# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, -# Inc. -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - -@SET_MAKE@ - -VPATH = @srcdir@ -pkgdatadir = $(datadir)/@PACKAGE@ -pkgincludedir = $(includedir)/@PACKAGE@ -pkglibdir = $(libdir)/@PACKAGE@ -pkglibexecdir = $(libexecdir)/@PACKAGE@ -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = @build@ -host_triplet = @host@ -subdir = skin/dark -DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/configure.in -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -mkinstalldirs = $(install_sh) -d -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -CONFIG_CLEAN_VPATH_FILES = -AM_V_GEN = $(am__v_GEN_$(V)) -am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) -am__v_GEN_0 = @echo " GEN " $@; -AM_V_at = $(am__v_at_$(V)) -am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) -am__v_at_0 = @ -SOURCES = -DIST_SOURCES = -am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; -am__vpath_adj = case $$p in \ - $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ - *) f=$$p;; \ - esac; -am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; -am__install_max = 40 -am__nobase_strip_setup = \ - srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` -am__nobase_strip = \ - for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" -am__nobase_list = $(am__nobase_strip_setup); \ - for p in $$list; do echo "$$p $$p"; done | \ - sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ - $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ - if (++n[$$2] == $(am__install_max)) \ - { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ - END { for (dir in files) print dir, files[dir] }' -am__base_list = \ - sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ - sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' -am__installdirs = "$(DESTDIR)$(darkdir)" -DATA = $(dark_DATA) -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -ACLOCAL = @ACLOCAL@ -ALL_LINGUAS = @ALL_LINGUAS@ -AMTAR = @AMTAR@ -AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ -AR = @AR@ -AUTOCONF = @AUTOCONF@ -AUTOHEADER = @AUTOHEADER@ -AUTOMAKE = @AUTOMAKE@ -AWK = @AWK@ -CAIRO_XLIB_CFLAGS = @CAIRO_XLIB_CFLAGS@ -CAIRO_XLIB_LIBS = @CAIRO_XLIB_LIBS@ -CC = @CC@ -CCDEPMODE = @CCDEPMODE@ -CFLAGS = @CFLAGS@ -CPP = @CPP@ -CPPFLAGS = @CPPFLAGS@ -CYGPATH_W = @CYGPATH_W@ -DATADIRNAME = @DATADIRNAME@ -DBUS_CFLAGS = @DBUS_CFLAGS@ -DBUS_LIBS = @DBUS_LIBS@ -DEFS = @DEFS@ -DEPDIR = @DEPDIR@ -DLLTOOL = @DLLTOOL@ -DSYMUTIL = @DSYMUTIL@ -DUMPBIN = @DUMPBIN@ -ECHO_C = @ECHO_C@ -ECHO_N = @ECHO_N@ -ECHO_T = @ECHO_T@ -EGREP = @EGREP@ -EXEEXT = @EXEEXT@ -FGREP = @FGREP@ -FONTCONFIG_CFLAGS = @FONTCONFIG_CFLAGS@ -FONTCONFIG_LIBS = @FONTCONFIG_LIBS@ -GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ -GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ -GMSGFMT = @GMSGFMT@ -GMSGFMT_015 = @GMSGFMT_015@ -GREP = @GREP@ -HOST_LIBS = @HOST_LIBS@ -INCINTL = @INCINTL@ -INSTALL = @INSTALL@ -INSTALL_DATA = @INSTALL_DATA@ -INSTALL_PROGRAM = @INSTALL_PROGRAM@ -INSTALL_SCRIPT = @INSTALL_SCRIPT@ -INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ -INTLLIBS = @INTLLIBS@ -INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ -INTLTOOL_MERGE = @INTLTOOL_MERGE@ -INTLTOOL_PERL = @INTLTOOL_PERL@ -INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ -INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ -LD = @LD@ -LDFLAGS = @LDFLAGS@ -LIBICONV = @LIBICONV@ -LIBINTL = @LIBINTL@ -LIBOBJS = @LIBOBJS@ -LIBS = @LIBS@ -LIBTOOL = @LIBTOOL@ -LIPO = @LIPO@ -LN_S = @LN_S@ -LTLIBICONV = @LTLIBICONV@ -LTLIBINTL = @LTLIBINTL@ -LTLIBOBJS = @LTLIBOBJS@ -MAKEINFO = @MAKEINFO@ -MANIFEST_TOOL = @MANIFEST_TOOL@ -MD5SUM = @MD5SUM@ -MKDIR_P = @MKDIR_P@ -MSGFMT = @MSGFMT@ -MSGFMT_015 = @MSGFMT_015@ -MSGMERGE = @MSGMERGE@ -NM = @NM@ -NMEDIT = @NMEDIT@ -OBJDUMP = @OBJDUMP@ -OBJEXT = @OBJEXT@ -OTOOL = @OTOOL@ -OTOOL64 = @OTOOL64@ -PACKAGE = @PACKAGE@ -PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ -PACKAGE_NAME = @PACKAGE_NAME@ -PACKAGE_STRING = @PACKAGE_STRING@ -PACKAGE_TARNAME = @PACKAGE_TARNAME@ -PACKAGE_URL = @PACKAGE_URL@ -PACKAGE_VERSION = @PACKAGE_VERSION@ -PANGOCAIRO_CFLAGS = @PANGOCAIRO_CFLAGS@ -PANGOCAIRO_LIBS = @PANGOCAIRO_LIBS@ -PATH_SEPARATOR = @PATH_SEPARATOR@ -PKG_CONFIG = @PKG_CONFIG@ -PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ -PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ -POSUB = @POSUB@ -RANLIB = @RANLIB@ -SED = @SED@ -SET_MAKE = @SET_MAKE@ -SHELL = @SHELL@ -STRIP = @STRIP@ -TAR = @TAR@ -USE_NLS = @USE_NLS@ -VERSION = @VERSION@ -WGET = @WGET@ -XGETTEXT = @XGETTEXT@ -XGETTEXT_015 = @XGETTEXT_015@ -XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ -XMKMF = @XMKMF@ -XRENDER_CFLAGS = @XRENDER_CFLAGS@ -XRENDER_LIBS = @XRENDER_LIBS@ -X_CFLAGS = @X_CFLAGS@ -X_LIBS = @X_LIBS@ -abs_builddir = @abs_builddir@ -abs_srcdir = @abs_srcdir@ -abs_top_builddir = @abs_top_builddir@ -abs_top_srcdir = @abs_top_srcdir@ -ac_ct_AR = @ac_ct_AR@ -ac_ct_CC = @ac_ct_CC@ -ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ -am__include = @am__include@ -am__leading_dot = @am__leading_dot@ -am__quote = @am__quote@ -am__tar = @am__tar@ -am__untar = @am__untar@ -bindir = @bindir@ -build = @build@ -build_alias = @build_alias@ -build_cpu = @build_cpu@ -build_os = @build_os@ -build_vendor = @build_vendor@ -builddir = @builddir@ -datadir = @datadir@ -datarootdir = @datarootdir@ -docdir = @docdir@ -dvidir = @dvidir@ -exec_prefix = @exec_prefix@ -host = @host@ -host_alias = @host_alias@ -host_cpu = @host_cpu@ -host_os = @host_os@ -host_vendor = @host_vendor@ -htmldir = @htmldir@ -includedir = @includedir@ -infodir = @infodir@ -install_sh = @install_sh@ -libdir = @libdir@ -libexecdir = @libexecdir@ -localedir = @localedir@ -localstatedir = @localstatedir@ -mandir = @mandir@ -mkdir_p = @mkdir_p@ -oldincludedir = @oldincludedir@ -pdfdir = @pdfdir@ -prefix = @prefix@ -program_transform_name = @program_transform_name@ -psdir = @psdir@ -sbindir = @sbindir@ -sharedstatedir = @sharedstatedir@ -srcdir = @srcdir@ -sysconfdir = @sysconfdir@ -target_alias = @target_alias@ -top_build_prefix = @top_build_prefix@ -top_builddir = @top_builddir@ -top_srcdir = @top_srcdir@ -darkdir = $(pkgdatadir)/skin/dark -dark_DATA = active.png bingchan.png chnpunc.png engpunc.png erbi.png fcitx_skin.conf half.png \ - input.png legend.png nolegend.png quwei.png vk.png wubi.png wbpy.png ziranma.png \ - bar.png cangjie.png cn.png en.png fan.png full.png inactive.png jian.png logo.png \ - dianbaoma.png novk.png shuangpin.png wanfeng.png pinyin.png prev.png next.png menu.png keyboard.png - -EXTRA_DIST = $(dark_DATA) -all: all-am - -.SUFFIXES: -$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ - && { if test -f $@; then exit 0; else break; fi; }; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign skin/dark/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign skin/dark/Makefile -.PRECIOUS: Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(am__aclocal_m4_deps): - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs -install-darkDATA: $(dark_DATA) - @$(NORMAL_INSTALL) - test -z "$(darkdir)" || $(MKDIR_P) "$(DESTDIR)$(darkdir)" - @list='$(dark_DATA)'; test -n "$(darkdir)" || list=; \ - for p in $$list; do \ - if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ - echo "$$d$$p"; \ - done | $(am__base_list) | \ - while read files; do \ - echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(darkdir)'"; \ - $(INSTALL_DATA) $$files "$(DESTDIR)$(darkdir)" || exit $$?; \ - done - -uninstall-darkDATA: - @$(NORMAL_UNINSTALL) - @list='$(dark_DATA)'; test -n "$(darkdir)" || list=; \ - files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ - test -n "$$files" || exit 0; \ - echo " ( cd '$(DESTDIR)$(darkdir)' && rm -f" $$files ")"; \ - cd "$(DESTDIR)$(darkdir)" && rm -f $$files -tags: TAGS -TAGS: - -ctags: CTAGS -CTAGS: - - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d "$(distdir)/$$file"; then \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ - else \ - test -f "$(distdir)/$$file" \ - || cp -p $$d/$$file "$(distdir)/$$file" \ - || exit 1; \ - fi; \ - done -check-am: all-am -check: check-am -all-am: Makefile $(DATA) -installdirs: - for dir in "$(DESTDIR)$(darkdir)"; do \ - test -z "$$dir" || $(MKDIR_P) "$$dir"; \ - done -install: install-am -install-exec: install-exec-am -install-data: install-data-am -uninstall: uninstall-am - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-am -install-strip: - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - `test -z '$(STRIP)' || \ - echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install -mostlyclean-generic: - -clean-generic: - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-am - -clean-am: clean-generic clean-libtool mostlyclean-am - -distclean: distclean-am - -rm -f Makefile -distclean-am: clean-am distclean-generic - -dvi: dvi-am - -dvi-am: - -html: html-am - -html-am: - -info: info-am - -info-am: - -install-data-am: install-darkDATA - -install-dvi: install-dvi-am - -install-dvi-am: - -install-exec-am: - -install-html: install-html-am - -install-html-am: - -install-info: install-info-am - -install-info-am: - -install-man: - -install-pdf: install-pdf-am - -install-pdf-am: - -install-ps: install-ps-am - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-am - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-am - -mostlyclean-am: mostlyclean-generic mostlyclean-libtool - -pdf: pdf-am - -pdf-am: - -ps: ps-am - -ps-am: - -uninstall-am: uninstall-darkDATA - -.MAKE: install-am install-strip - -.PHONY: all all-am check check-am clean clean-generic clean-libtool \ - distclean distclean-generic distclean-libtool distdir dvi \ - dvi-am html html-am info info-am install install-am \ - install-darkDATA install-data install-data-am install-dvi \ - install-dvi-am install-exec install-exec-am install-html \ - install-html-am install-info install-info-am install-man \ - install-pdf install-pdf-am install-ps install-ps-am \ - install-strip installcheck installcheck-am installdirs \ - maintainer-clean maintainer-clean-generic mostlyclean \ - mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ - uninstall uninstall-am uninstall-darkDATA - - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/skin/dark/nolegend.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/skin/dark/nolegend.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/skin/dark/novk.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/skin/dark/novk.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/skin/dark/punc_active.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/skin/dark/punc_active.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/skin/dark/punc_inactive.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/skin/dark/punc_inactive.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/skin/dark/remind_active.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/skin/dark/remind_active.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/skin/dark/remind_inactive.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/skin/dark/remind_inactive.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/skin/dark/vk_active.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/skin/dark/vk_active.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/skin/dark/vk_inactive.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/skin/dark/vk_inactive.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/skin/dark/vk.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/skin/dark/vk.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/skin/default/bar.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/skin/default/bar.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/skin/default/bingchan.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/skin/default/bingchan.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/skin/default/cangjie.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/skin/default/cangjie.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/skin/default/chnpunc.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/skin/default/chnpunc.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/skin/default/chttrans_active.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/skin/default/chttrans_active.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/skin/default/chttrans_inactive.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/skin/default/chttrans_inactive.png differ diff -Nru fcitx-4.0.1/skin/default/CMakeLists.txt fcitx-4.1.1/skin/default/CMakeLists.txt --- fcitx-4.0.1/skin/default/CMakeLists.txt 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/skin/default/CMakeLists.txt 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,12 @@ +set(FCITX_DEFAULT_SKIN_FILES +chttrans_active.png chttrans_inactive.png +fullwidth_active.png fullwidth_inactive.png +punc_active.png punc_inactive.png +active.png bingchan.png erbi.png fcitx_skin.conf +input.png remind_active.png remind_inactive.png quwei.png vk_active.png vk_inactive.png +wubi.png wbpy.png ziranma.png +bar.png cangjie.png cn.png en.png inactive.png logo.png +dianbaoma.png shuangpin.png wanfeng.png pinyin.png prev.png next.png keyboard.png menu.png +) + +install(FILES ${FCITX_DEFAULT_SKIN_FILES} DESTINATION ${pkgdatadir}/skin/default) \ No newline at end of file Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/skin/default/cn.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/skin/default/cn.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/skin/default/dianbaoma.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/skin/default/dianbaoma.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/skin/default/engpunc.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/skin/default/engpunc.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/skin/default/en.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/skin/default/en.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/skin/default/erbi.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/skin/default/erbi.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/skin/default/fan.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/skin/default/fan.png differ diff -Nru fcitx-4.0.1/skin/default/fcitx_skin.conf fcitx-4.1.1/skin/default/fcitx_skin.conf --- fcitx-4.0.1/skin/default/fcitx_skin.conf 2010-11-28 11:55:00.000000000 +0000 +++ fcitx-4.1.1/skin/default/fcitx_skin.conf 2011-09-08 16:00:05.000000000 +0000 @@ -1,58 +1,107 @@ [SkinInfo] -Name=fcitx +Name=Default Version=0.1 Author=Ukyoi -Desc=传统界面 +Desc=Default Grey Skin + [SkinFont] -FontSize=15 -TipColor=56 128 179 -InputColor=120 157 176 -IndexColor=60 137 191 -FirstCandColor=255 142 51 -UserPhraseColor=255 142 51 -CodeColor=120 157 176 -OtherColor=60 137 191 +# Input Font Size +FontSize=16 +# Menu Font Size +MenuFontSize=16 +# Tip Message Color +TipColor=0 47 129 +# Input Message Color +InputColor=0 67 181 +# Candidate Index Color +IndexColor=67 135 217 +# First Candidate Color +FirstCandColor=25 25 25 +# User Phrase Color +UserPhraseColor=50 50 50 +# Table Code Color +CodeColor=0 67 181 +# Other Color +OtherColor=0 0 0 +# Active Menu Item Character Color ActiveMenuColor=255 255 255 -InactiveMenuColor=109 143 160 +# Inactive Menu Item Character Color +InactiveMenuColor=120 120 120 + [SkinMainBar] +# Background Image BackImg=bar.png -Logo=logo.png 1 2 -ZhPunc=chnpunc.png 69 2 -EnPunc=engpunc.png 69 2 -Chs=jian.png 35 2 -Cht=fan.png 35 2 -HalfCorner=half.png 52 2 -FullCorner=full.png 52 2 -Unlock= -Lock= -Legend=legend.png 103 2 -NoLegend=nolegend.png 103 2 -VK=vk.png 86 2 -NoVK=novk.png 86 2 -Eng=en.png 18 2 -Chn=cn.png 18 2 +# Logo Icon +Logo=logo.png +# English Mode Icon +Eng=en.png +# Chinese Mode Icon +Active=cn.png +# Resize Margin Left +MarginLeft=1 +# Resize Margin Right +MarginRight=1 +# Resize Margin Top +MarginTop=1 +# Resize Margin Bottom +MarginBottom=1 +# Special Icon position +Placement= + [SkinInputBar] +# Background Image BackImg=input.png -Resize=Resize -ResizePos=2 -ResizeWidth=20 -InputPos=18 -OutputPos=38 -LayoutLeft=10 -LayoutRight=100 -CursorColor=40 40 240 -BackArrow=prev.png 25 7 -ForwardArrow=next.png 35 7 +# Resize Margin Left +MarginLeft=5 +# Resize Margin Right +MarginRight=30 +# Resize Margin Top +MarginTop=3 +# Resize Margin Bottom +MarginBottom=3 +# Color of Cursor +CursorColor=100 100 100 +# Left-down position of Input +InputPos=19 +# Left-down position of Output +OutputPos=39 +# Prev Page Icon +BackArrow=prev.png +# Next Page Icon +ForwardArrow=next.png +# Prev Page Icon +BackArrowX=20 +# Next Page Icon +BackArrowY=3 +# Prev Page Icon +ForwardArrowX=10 +# Next Page Icon +ForwardArrowY=3 + [SkinTrayIcon] +# Active Tray Icon Active=active.png +# Inctive Tray Icon Inactive=inactive.png + [SkinMenu] +# Background Image BackImg=menu.png -ResizeHorizontal=Resize -ResizeVertical=Resize +# Resize Margin Top MarginTop=5 +# Resize Margin Bottom MarginBottom=5 +# Resize Margin Left MarginLeft=5 +# Resize Margin Right MarginRight=5 -ActiveColor=143 187 210 -LineColor=143 187 210 +# Active Menu Color +ActiveColor=187 187 187 +# Space Line Color +LineColor=187 187 187 + +[SkinKeyboard] +# Virtual Keyboard Image +BackImg=keyboard.png +# Key Color On Virutal Keyboard +KeyColor=0 0 0 Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/skin/default/full.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/skin/default/full.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/skin/default/fullwidth_active.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/skin/default/fullwidth_active.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/skin/default/fullwidth_inactive.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/skin/default/fullwidth_inactive.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/skin/default/half.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/skin/default/half.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/skin/default/input.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/skin/default/input.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/skin/default/jian.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/skin/default/jian.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/skin/default/keyboard.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/skin/default/keyboard.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/skin/default/legend.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/skin/default/legend.png differ diff -Nru fcitx-4.0.1/skin/default/Makefile.am fcitx-4.1.1/skin/default/Makefile.am --- fcitx-4.0.1/skin/default/Makefile.am 2010-11-28 11:55:00.000000000 +0000 +++ fcitx-4.1.1/skin/default/Makefile.am 1970-01-01 00:00:00.000000000 +0000 @@ -1,6 +0,0 @@ -defaultdir = $(pkgdatadir)/skin/default -default_DATA = active.png bingchan.png chnpunc.png engpunc.png erbi.png fcitx_skin.conf half.png \ - input.png legend.png nolegend.png quwei.png vk.png wubi.png wbpy.png ziranma.png \ - bar.png cangjie.png cn.png en.png fan.png full.png inactive.png jian.png logo.png \ - dianbaoma.png novk.png shuangpin.png wanfeng.png pinyin.png prev.png next.png keyboard.png menu.png -EXTRA_DIST = $(default_DATA) diff -Nru fcitx-4.0.1/skin/default/Makefile.in fcitx-4.1.1/skin/default/Makefile.in --- fcitx-4.0.1/skin/default/Makefile.in 2010-12-17 04:26:30.000000000 +0000 +++ fcitx-4.1.1/skin/default/Makefile.in 1970-01-01 00:00:00.000000000 +0000 @@ -1,456 +0,0 @@ -# Makefile.in generated by automake 1.11.1 from Makefile.am. -# @configure_input@ - -# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, -# Inc. -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - -@SET_MAKE@ - -VPATH = @srcdir@ -pkgdatadir = $(datadir)/@PACKAGE@ -pkgincludedir = $(includedir)/@PACKAGE@ -pkglibdir = $(libdir)/@PACKAGE@ -pkglibexecdir = $(libexecdir)/@PACKAGE@ -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = @build@ -host_triplet = @host@ -subdir = skin/default -DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/configure.in -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -mkinstalldirs = $(install_sh) -d -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -CONFIG_CLEAN_VPATH_FILES = -AM_V_GEN = $(am__v_GEN_$(V)) -am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) -am__v_GEN_0 = @echo " GEN " $@; -AM_V_at = $(am__v_at_$(V)) -am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) -am__v_at_0 = @ -SOURCES = -DIST_SOURCES = -am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; -am__vpath_adj = case $$p in \ - $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ - *) f=$$p;; \ - esac; -am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; -am__install_max = 40 -am__nobase_strip_setup = \ - srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` -am__nobase_strip = \ - for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" -am__nobase_list = $(am__nobase_strip_setup); \ - for p in $$list; do echo "$$p $$p"; done | \ - sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ - $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ - if (++n[$$2] == $(am__install_max)) \ - { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ - END { for (dir in files) print dir, files[dir] }' -am__base_list = \ - sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ - sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' -am__installdirs = "$(DESTDIR)$(defaultdir)" -DATA = $(default_DATA) -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -ACLOCAL = @ACLOCAL@ -ALL_LINGUAS = @ALL_LINGUAS@ -AMTAR = @AMTAR@ -AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ -AR = @AR@ -AUTOCONF = @AUTOCONF@ -AUTOHEADER = @AUTOHEADER@ -AUTOMAKE = @AUTOMAKE@ -AWK = @AWK@ -CAIRO_XLIB_CFLAGS = @CAIRO_XLIB_CFLAGS@ -CAIRO_XLIB_LIBS = @CAIRO_XLIB_LIBS@ -CC = @CC@ -CCDEPMODE = @CCDEPMODE@ -CFLAGS = @CFLAGS@ -CPP = @CPP@ -CPPFLAGS = @CPPFLAGS@ -CYGPATH_W = @CYGPATH_W@ -DATADIRNAME = @DATADIRNAME@ -DBUS_CFLAGS = @DBUS_CFLAGS@ -DBUS_LIBS = @DBUS_LIBS@ -DEFS = @DEFS@ -DEPDIR = @DEPDIR@ -DLLTOOL = @DLLTOOL@ -DSYMUTIL = @DSYMUTIL@ -DUMPBIN = @DUMPBIN@ -ECHO_C = @ECHO_C@ -ECHO_N = @ECHO_N@ -ECHO_T = @ECHO_T@ -EGREP = @EGREP@ -EXEEXT = @EXEEXT@ -FGREP = @FGREP@ -FONTCONFIG_CFLAGS = @FONTCONFIG_CFLAGS@ -FONTCONFIG_LIBS = @FONTCONFIG_LIBS@ -GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ -GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ -GMSGFMT = @GMSGFMT@ -GMSGFMT_015 = @GMSGFMT_015@ -GREP = @GREP@ -HOST_LIBS = @HOST_LIBS@ -INCINTL = @INCINTL@ -INSTALL = @INSTALL@ -INSTALL_DATA = @INSTALL_DATA@ -INSTALL_PROGRAM = @INSTALL_PROGRAM@ -INSTALL_SCRIPT = @INSTALL_SCRIPT@ -INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ -INTLLIBS = @INTLLIBS@ -INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ -INTLTOOL_MERGE = @INTLTOOL_MERGE@ -INTLTOOL_PERL = @INTLTOOL_PERL@ -INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ -INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ -LD = @LD@ -LDFLAGS = @LDFLAGS@ -LIBICONV = @LIBICONV@ -LIBINTL = @LIBINTL@ -LIBOBJS = @LIBOBJS@ -LIBS = @LIBS@ -LIBTOOL = @LIBTOOL@ -LIPO = @LIPO@ -LN_S = @LN_S@ -LTLIBICONV = @LTLIBICONV@ -LTLIBINTL = @LTLIBINTL@ -LTLIBOBJS = @LTLIBOBJS@ -MAKEINFO = @MAKEINFO@ -MANIFEST_TOOL = @MANIFEST_TOOL@ -MD5SUM = @MD5SUM@ -MKDIR_P = @MKDIR_P@ -MSGFMT = @MSGFMT@ -MSGFMT_015 = @MSGFMT_015@ -MSGMERGE = @MSGMERGE@ -NM = @NM@ -NMEDIT = @NMEDIT@ -OBJDUMP = @OBJDUMP@ -OBJEXT = @OBJEXT@ -OTOOL = @OTOOL@ -OTOOL64 = @OTOOL64@ -PACKAGE = @PACKAGE@ -PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ -PACKAGE_NAME = @PACKAGE_NAME@ -PACKAGE_STRING = @PACKAGE_STRING@ -PACKAGE_TARNAME = @PACKAGE_TARNAME@ -PACKAGE_URL = @PACKAGE_URL@ -PACKAGE_VERSION = @PACKAGE_VERSION@ -PANGOCAIRO_CFLAGS = @PANGOCAIRO_CFLAGS@ -PANGOCAIRO_LIBS = @PANGOCAIRO_LIBS@ -PATH_SEPARATOR = @PATH_SEPARATOR@ -PKG_CONFIG = @PKG_CONFIG@ -PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ -PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ -POSUB = @POSUB@ -RANLIB = @RANLIB@ -SED = @SED@ -SET_MAKE = @SET_MAKE@ -SHELL = @SHELL@ -STRIP = @STRIP@ -TAR = @TAR@ -USE_NLS = @USE_NLS@ -VERSION = @VERSION@ -WGET = @WGET@ -XGETTEXT = @XGETTEXT@ -XGETTEXT_015 = @XGETTEXT_015@ -XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ -XMKMF = @XMKMF@ -XRENDER_CFLAGS = @XRENDER_CFLAGS@ -XRENDER_LIBS = @XRENDER_LIBS@ -X_CFLAGS = @X_CFLAGS@ -X_LIBS = @X_LIBS@ -abs_builddir = @abs_builddir@ -abs_srcdir = @abs_srcdir@ -abs_top_builddir = @abs_top_builddir@ -abs_top_srcdir = @abs_top_srcdir@ -ac_ct_AR = @ac_ct_AR@ -ac_ct_CC = @ac_ct_CC@ -ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ -am__include = @am__include@ -am__leading_dot = @am__leading_dot@ -am__quote = @am__quote@ -am__tar = @am__tar@ -am__untar = @am__untar@ -bindir = @bindir@ -build = @build@ -build_alias = @build_alias@ -build_cpu = @build_cpu@ -build_os = @build_os@ -build_vendor = @build_vendor@ -builddir = @builddir@ -datadir = @datadir@ -datarootdir = @datarootdir@ -docdir = @docdir@ -dvidir = @dvidir@ -exec_prefix = @exec_prefix@ -host = @host@ -host_alias = @host_alias@ -host_cpu = @host_cpu@ -host_os = @host_os@ -host_vendor = @host_vendor@ -htmldir = @htmldir@ -includedir = @includedir@ -infodir = @infodir@ -install_sh = @install_sh@ -libdir = @libdir@ -libexecdir = @libexecdir@ -localedir = @localedir@ -localstatedir = @localstatedir@ -mandir = @mandir@ -mkdir_p = @mkdir_p@ -oldincludedir = @oldincludedir@ -pdfdir = @pdfdir@ -prefix = @prefix@ -program_transform_name = @program_transform_name@ -psdir = @psdir@ -sbindir = @sbindir@ -sharedstatedir = @sharedstatedir@ -srcdir = @srcdir@ -sysconfdir = @sysconfdir@ -target_alias = @target_alias@ -top_build_prefix = @top_build_prefix@ -top_builddir = @top_builddir@ -top_srcdir = @top_srcdir@ -defaultdir = $(pkgdatadir)/skin/default -default_DATA = active.png bingchan.png chnpunc.png engpunc.png erbi.png fcitx_skin.conf half.png \ - input.png legend.png nolegend.png quwei.png vk.png wubi.png wbpy.png ziranma.png \ - bar.png cangjie.png cn.png en.png fan.png full.png inactive.png jian.png logo.png \ - dianbaoma.png novk.png shuangpin.png wanfeng.png pinyin.png prev.png next.png keyboard.png menu.png - -EXTRA_DIST = $(default_DATA) -all: all-am - -.SUFFIXES: -$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ - && { if test -f $@; then exit 0; else break; fi; }; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign skin/default/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign skin/default/Makefile -.PRECIOUS: Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(am__aclocal_m4_deps): - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs -install-defaultDATA: $(default_DATA) - @$(NORMAL_INSTALL) - test -z "$(defaultdir)" || $(MKDIR_P) "$(DESTDIR)$(defaultdir)" - @list='$(default_DATA)'; test -n "$(defaultdir)" || list=; \ - for p in $$list; do \ - if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ - echo "$$d$$p"; \ - done | $(am__base_list) | \ - while read files; do \ - echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(defaultdir)'"; \ - $(INSTALL_DATA) $$files "$(DESTDIR)$(defaultdir)" || exit $$?; \ - done - -uninstall-defaultDATA: - @$(NORMAL_UNINSTALL) - @list='$(default_DATA)'; test -n "$(defaultdir)" || list=; \ - files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ - test -n "$$files" || exit 0; \ - echo " ( cd '$(DESTDIR)$(defaultdir)' && rm -f" $$files ")"; \ - cd "$(DESTDIR)$(defaultdir)" && rm -f $$files -tags: TAGS -TAGS: - -ctags: CTAGS -CTAGS: - - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d "$(distdir)/$$file"; then \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ - else \ - test -f "$(distdir)/$$file" \ - || cp -p $$d/$$file "$(distdir)/$$file" \ - || exit 1; \ - fi; \ - done -check-am: all-am -check: check-am -all-am: Makefile $(DATA) -installdirs: - for dir in "$(DESTDIR)$(defaultdir)"; do \ - test -z "$$dir" || $(MKDIR_P) "$$dir"; \ - done -install: install-am -install-exec: install-exec-am -install-data: install-data-am -uninstall: uninstall-am - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-am -install-strip: - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - `test -z '$(STRIP)' || \ - echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install -mostlyclean-generic: - -clean-generic: - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-am - -clean-am: clean-generic clean-libtool mostlyclean-am - -distclean: distclean-am - -rm -f Makefile -distclean-am: clean-am distclean-generic - -dvi: dvi-am - -dvi-am: - -html: html-am - -html-am: - -info: info-am - -info-am: - -install-data-am: install-defaultDATA - -install-dvi: install-dvi-am - -install-dvi-am: - -install-exec-am: - -install-html: install-html-am - -install-html-am: - -install-info: install-info-am - -install-info-am: - -install-man: - -install-pdf: install-pdf-am - -install-pdf-am: - -install-ps: install-ps-am - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-am - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-am - -mostlyclean-am: mostlyclean-generic mostlyclean-libtool - -pdf: pdf-am - -pdf-am: - -ps: ps-am - -ps-am: - -uninstall-am: uninstall-defaultDATA - -.MAKE: install-am install-strip - -.PHONY: all all-am check check-am clean clean-generic clean-libtool \ - distclean distclean-generic distclean-libtool distdir dvi \ - dvi-am html html-am info info-am install install-am \ - install-data install-data-am install-defaultDATA install-dvi \ - install-dvi-am install-exec install-exec-am install-html \ - install-html-am install-info install-info-am install-man \ - install-pdf install-pdf-am install-ps install-ps-am \ - install-strip installcheck installcheck-am installdirs \ - maintainer-clean maintainer-clean-generic mostlyclean \ - mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ - uninstall uninstall-am uninstall-defaultDATA - - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/skin/default/menu.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/skin/default/menu.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/skin/default/next.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/skin/default/next.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/skin/default/nolegend.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/skin/default/nolegend.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/skin/default/novk.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/skin/default/novk.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/skin/default/pinyin.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/skin/default/pinyin.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/skin/default/prev.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/skin/default/prev.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/skin/default/punc_active.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/skin/default/punc_active.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/skin/default/punc_inactive.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/skin/default/punc_inactive.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/skin/default/quwei.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/skin/default/quwei.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/skin/default/remind_active.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/skin/default/remind_active.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/skin/default/remind_inactive.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/skin/default/remind_inactive.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/skin/default/shuangpin.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/skin/default/shuangpin.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/skin/default/vk_active.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/skin/default/vk_active.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/skin/default/vk_inactive.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/skin/default/vk_inactive.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/skin/default/vk.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/skin/default/vk.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/skin/default/wanfeng.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/skin/default/wanfeng.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/skin/default/wbpy.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/skin/default/wbpy.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/skin/default/wubi.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/skin/default/wubi.png differ Binary files /tmp/dZvKdZgdM4/fcitx-4.0.1/skin/default/ziranma.png and /tmp/8JAWVaCfZs/fcitx-4.1.1/skin/default/ziranma.png differ diff -Nru fcitx-4.0.1/skin/Makefile.am fcitx-4.1.1/skin/Makefile.am --- fcitx-4.0.1/skin/Makefile.am 2010-11-28 11:55:00.000000000 +0000 +++ fcitx-4.1.1/skin/Makefile.am 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -SUBDIRS = default classic dark diff -Nru fcitx-4.0.1/skin/Makefile.in fcitx-4.1.1/skin/Makefile.in --- fcitx-4.0.1/skin/Makefile.in 2010-12-17 04:26:30.000000000 +0000 +++ fcitx-4.1.1/skin/Makefile.in 1970-01-01 00:00:00.000000000 +0000 @@ -1,604 +0,0 @@ -# Makefile.in generated by automake 1.11.1 from Makefile.am. -# @configure_input@ - -# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, -# Inc. -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - -@SET_MAKE@ -VPATH = @srcdir@ -pkgdatadir = $(datadir)/@PACKAGE@ -pkgincludedir = $(includedir)/@PACKAGE@ -pkglibdir = $(libdir)/@PACKAGE@ -pkglibexecdir = $(libexecdir)/@PACKAGE@ -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = @build@ -host_triplet = @host@ -subdir = skin -DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/configure.in -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -mkinstalldirs = $(install_sh) -d -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -CONFIG_CLEAN_VPATH_FILES = -AM_V_GEN = $(am__v_GEN_$(V)) -am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) -am__v_GEN_0 = @echo " GEN " $@; -AM_V_at = $(am__v_at_$(V)) -am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) -am__v_at_0 = @ -SOURCES = -DIST_SOURCES = -RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ - html-recursive info-recursive install-data-recursive \ - install-dvi-recursive install-exec-recursive \ - install-html-recursive install-info-recursive \ - install-pdf-recursive install-ps-recursive install-recursive \ - installcheck-recursive installdirs-recursive pdf-recursive \ - ps-recursive uninstall-recursive -RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ - distclean-recursive maintainer-clean-recursive -AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \ - $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \ - distdir -ETAGS = etags -CTAGS = ctags -DIST_SUBDIRS = $(SUBDIRS) -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -am__relativize = \ - dir0=`pwd`; \ - sed_first='s,^\([^/]*\)/.*$$,\1,'; \ - sed_rest='s,^[^/]*/*,,'; \ - sed_last='s,^.*/\([^/]*\)$$,\1,'; \ - sed_butlast='s,/*[^/]*$$,,'; \ - while test -n "$$dir1"; do \ - first=`echo "$$dir1" | sed -e "$$sed_first"`; \ - if test "$$first" != "."; then \ - if test "$$first" = ".."; then \ - dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ - dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ - else \ - first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ - if test "$$first2" = "$$first"; then \ - dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ - else \ - dir2="../$$dir2"; \ - fi; \ - dir0="$$dir0"/"$$first"; \ - fi; \ - fi; \ - dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ - done; \ - reldir="$$dir2" -ACLOCAL = @ACLOCAL@ -ALL_LINGUAS = @ALL_LINGUAS@ -AMTAR = @AMTAR@ -AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ -AR = @AR@ -AUTOCONF = @AUTOCONF@ -AUTOHEADER = @AUTOHEADER@ -AUTOMAKE = @AUTOMAKE@ -AWK = @AWK@ -CAIRO_XLIB_CFLAGS = @CAIRO_XLIB_CFLAGS@ -CAIRO_XLIB_LIBS = @CAIRO_XLIB_LIBS@ -CC = @CC@ -CCDEPMODE = @CCDEPMODE@ -CFLAGS = @CFLAGS@ -CPP = @CPP@ -CPPFLAGS = @CPPFLAGS@ -CYGPATH_W = @CYGPATH_W@ -DATADIRNAME = @DATADIRNAME@ -DBUS_CFLAGS = @DBUS_CFLAGS@ -DBUS_LIBS = @DBUS_LIBS@ -DEFS = @DEFS@ -DEPDIR = @DEPDIR@ -DLLTOOL = @DLLTOOL@ -DSYMUTIL = @DSYMUTIL@ -DUMPBIN = @DUMPBIN@ -ECHO_C = @ECHO_C@ -ECHO_N = @ECHO_N@ -ECHO_T = @ECHO_T@ -EGREP = @EGREP@ -EXEEXT = @EXEEXT@ -FGREP = @FGREP@ -FONTCONFIG_CFLAGS = @FONTCONFIG_CFLAGS@ -FONTCONFIG_LIBS = @FONTCONFIG_LIBS@ -GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ -GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ -GMSGFMT = @GMSGFMT@ -GMSGFMT_015 = @GMSGFMT_015@ -GREP = @GREP@ -HOST_LIBS = @HOST_LIBS@ -INCINTL = @INCINTL@ -INSTALL = @INSTALL@ -INSTALL_DATA = @INSTALL_DATA@ -INSTALL_PROGRAM = @INSTALL_PROGRAM@ -INSTALL_SCRIPT = @INSTALL_SCRIPT@ -INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ -INTLLIBS = @INTLLIBS@ -INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ -INTLTOOL_MERGE = @INTLTOOL_MERGE@ -INTLTOOL_PERL = @INTLTOOL_PERL@ -INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ -INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ -LD = @LD@ -LDFLAGS = @LDFLAGS@ -LIBICONV = @LIBICONV@ -LIBINTL = @LIBINTL@ -LIBOBJS = @LIBOBJS@ -LIBS = @LIBS@ -LIBTOOL = @LIBTOOL@ -LIPO = @LIPO@ -LN_S = @LN_S@ -LTLIBICONV = @LTLIBICONV@ -LTLIBINTL = @LTLIBINTL@ -LTLIBOBJS = @LTLIBOBJS@ -MAKEINFO = @MAKEINFO@ -MANIFEST_TOOL = @MANIFEST_TOOL@ -MD5SUM = @MD5SUM@ -MKDIR_P = @MKDIR_P@ -MSGFMT = @MSGFMT@ -MSGFMT_015 = @MSGFMT_015@ -MSGMERGE = @MSGMERGE@ -NM = @NM@ -NMEDIT = @NMEDIT@ -OBJDUMP = @OBJDUMP@ -OBJEXT = @OBJEXT@ -OTOOL = @OTOOL@ -OTOOL64 = @OTOOL64@ -PACKAGE = @PACKAGE@ -PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ -PACKAGE_NAME = @PACKAGE_NAME@ -PACKAGE_STRING = @PACKAGE_STRING@ -PACKAGE_TARNAME = @PACKAGE_TARNAME@ -PACKAGE_URL = @PACKAGE_URL@ -PACKAGE_VERSION = @PACKAGE_VERSION@ -PANGOCAIRO_CFLAGS = @PANGOCAIRO_CFLAGS@ -PANGOCAIRO_LIBS = @PANGOCAIRO_LIBS@ -PATH_SEPARATOR = @PATH_SEPARATOR@ -PKG_CONFIG = @PKG_CONFIG@ -PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ -PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ -POSUB = @POSUB@ -RANLIB = @RANLIB@ -SED = @SED@ -SET_MAKE = @SET_MAKE@ -SHELL = @SHELL@ -STRIP = @STRIP@ -TAR = @TAR@ -USE_NLS = @USE_NLS@ -VERSION = @VERSION@ -WGET = @WGET@ -XGETTEXT = @XGETTEXT@ -XGETTEXT_015 = @XGETTEXT_015@ -XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ -XMKMF = @XMKMF@ -XRENDER_CFLAGS = @XRENDER_CFLAGS@ -XRENDER_LIBS = @XRENDER_LIBS@ -X_CFLAGS = @X_CFLAGS@ -X_LIBS = @X_LIBS@ -abs_builddir = @abs_builddir@ -abs_srcdir = @abs_srcdir@ -abs_top_builddir = @abs_top_builddir@ -abs_top_srcdir = @abs_top_srcdir@ -ac_ct_AR = @ac_ct_AR@ -ac_ct_CC = @ac_ct_CC@ -ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ -am__include = @am__include@ -am__leading_dot = @am__leading_dot@ -am__quote = @am__quote@ -am__tar = @am__tar@ -am__untar = @am__untar@ -bindir = @bindir@ -build = @build@ -build_alias = @build_alias@ -build_cpu = @build_cpu@ -build_os = @build_os@ -build_vendor = @build_vendor@ -builddir = @builddir@ -datadir = @datadir@ -datarootdir = @datarootdir@ -docdir = @docdir@ -dvidir = @dvidir@ -exec_prefix = @exec_prefix@ -host = @host@ -host_alias = @host_alias@ -host_cpu = @host_cpu@ -host_os = @host_os@ -host_vendor = @host_vendor@ -htmldir = @htmldir@ -includedir = @includedir@ -infodir = @infodir@ -install_sh = @install_sh@ -libdir = @libdir@ -libexecdir = @libexecdir@ -localedir = @localedir@ -localstatedir = @localstatedir@ -mandir = @mandir@ -mkdir_p = @mkdir_p@ -oldincludedir = @oldincludedir@ -pdfdir = @pdfdir@ -prefix = @prefix@ -program_transform_name = @program_transform_name@ -psdir = @psdir@ -sbindir = @sbindir@ -sharedstatedir = @sharedstatedir@ -srcdir = @srcdir@ -sysconfdir = @sysconfdir@ -target_alias = @target_alias@ -top_build_prefix = @top_build_prefix@ -top_builddir = @top_builddir@ -top_srcdir = @top_srcdir@ -SUBDIRS = default classic dark -all: all-recursive - -.SUFFIXES: -$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ - && { if test -f $@; then exit 0; else break; fi; }; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign skin/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign skin/Makefile -.PRECIOUS: Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(am__aclocal_m4_deps): - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs - -# This directory's subdirectories are mostly independent; you can cd -# into them and run `make' without going through this Makefile. -# To change the values of `make' variables: instead of editing Makefiles, -# (1) if the variable is set in `config.status', edit `config.status' -# (which will cause the Makefiles to be regenerated when you run `make'); -# (2) otherwise, pass the desired values on the `make' command line. -$(RECURSIVE_TARGETS): - @fail= failcom='exit 1'; \ - for f in x $$MAKEFLAGS; do \ - case $$f in \ - *=* | --[!k]*);; \ - *k*) failcom='fail=yes';; \ - esac; \ - done; \ - dot_seen=no; \ - target=`echo $@ | sed s/-recursive//`; \ - list='$(SUBDIRS)'; for subdir in $$list; do \ - echo "Making $$target in $$subdir"; \ - if test "$$subdir" = "."; then \ - dot_seen=yes; \ - local_target="$$target-am"; \ - else \ - local_target="$$target"; \ - fi; \ - ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ - || eval $$failcom; \ - done; \ - if test "$$dot_seen" = "no"; then \ - $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ - fi; test -z "$$fail" - -$(RECURSIVE_CLEAN_TARGETS): - @fail= failcom='exit 1'; \ - for f in x $$MAKEFLAGS; do \ - case $$f in \ - *=* | --[!k]*);; \ - *k*) failcom='fail=yes';; \ - esac; \ - done; \ - dot_seen=no; \ - case "$@" in \ - distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ - *) list='$(SUBDIRS)' ;; \ - esac; \ - rev=''; for subdir in $$list; do \ - if test "$$subdir" = "."; then :; else \ - rev="$$subdir $$rev"; \ - fi; \ - done; \ - rev="$$rev ."; \ - target=`echo $@ | sed s/-recursive//`; \ - for subdir in $$rev; do \ - echo "Making $$target in $$subdir"; \ - if test "$$subdir" = "."; then \ - local_target="$$target-am"; \ - else \ - local_target="$$target"; \ - fi; \ - ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ - || eval $$failcom; \ - done && test -z "$$fail" -tags-recursive: - list='$(SUBDIRS)'; for subdir in $$list; do \ - test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ - done -ctags-recursive: - list='$(SUBDIRS)'; for subdir in $$list; do \ - test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ - done - -ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - mkid -fID $$unique -tags: TAGS - -TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - set x; \ - here=`pwd`; \ - if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ - include_option=--etags-include; \ - empty_fix=.; \ - else \ - include_option=--include; \ - empty_fix=; \ - fi; \ - list='$(SUBDIRS)'; for subdir in $$list; do \ - if test "$$subdir" = .; then :; else \ - test ! -f $$subdir/TAGS || \ - set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ - fi; \ - done; \ - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: CTAGS -CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d "$(distdir)/$$file"; then \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ - else \ - test -f "$(distdir)/$$file" \ - || cp -p $$d/$$file "$(distdir)/$$file" \ - || exit 1; \ - fi; \ - done - @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ - if test "$$subdir" = .; then :; else \ - test -d "$(distdir)/$$subdir" \ - || $(MKDIR_P) "$(distdir)/$$subdir" \ - || exit 1; \ - fi; \ - done - @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ - if test "$$subdir" = .; then :; else \ - dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ - $(am__relativize); \ - new_distdir=$$reldir; \ - dir1=$$subdir; dir2="$(top_distdir)"; \ - $(am__relativize); \ - new_top_distdir=$$reldir; \ - echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ - echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ - ($(am__cd) $$subdir && \ - $(MAKE) $(AM_MAKEFLAGS) \ - top_distdir="$$new_top_distdir" \ - distdir="$$new_distdir" \ - am__remove_distdir=: \ - am__skip_length_check=: \ - am__skip_mode_fix=: \ - distdir) \ - || exit 1; \ - fi; \ - done -check-am: all-am -check: check-recursive -all-am: Makefile -installdirs: installdirs-recursive -installdirs-am: -install: install-recursive -install-exec: install-exec-recursive -install-data: install-data-recursive -uninstall: uninstall-recursive - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-recursive -install-strip: - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - `test -z '$(STRIP)' || \ - echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install -mostlyclean-generic: - -clean-generic: - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-recursive - -clean-am: clean-generic clean-libtool mostlyclean-am - -distclean: distclean-recursive - -rm -f Makefile -distclean-am: clean-am distclean-generic distclean-tags - -dvi: dvi-recursive - -dvi-am: - -html: html-recursive - -html-am: - -info: info-recursive - -info-am: - -install-data-am: - -install-dvi: install-dvi-recursive - -install-dvi-am: - -install-exec-am: - -install-html: install-html-recursive - -install-html-am: - -install-info: install-info-recursive - -install-info-am: - -install-man: - -install-pdf: install-pdf-recursive - -install-pdf-am: - -install-ps: install-ps-recursive - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-recursive - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-recursive - -mostlyclean-am: mostlyclean-generic mostlyclean-libtool - -pdf: pdf-recursive - -pdf-am: - -ps: ps-recursive - -ps-am: - -uninstall-am: - -.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) ctags-recursive \ - install-am install-strip tags-recursive - -.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \ - all all-am check check-am clean clean-generic clean-libtool \ - ctags ctags-recursive distclean distclean-generic \ - distclean-libtool distclean-tags distdir dvi dvi-am html \ - html-am info info-am install install-am install-data \ - install-data-am install-dvi install-dvi-am install-exec \ - install-exec-am install-html install-html-am install-info \ - install-info-am install-man install-pdf install-pdf-am \ - install-ps install-ps-am install-strip installcheck \ - installcheck-am installdirs installdirs-am maintainer-clean \ - maintainer-clean-generic mostlyclean mostlyclean-generic \ - mostlyclean-libtool pdf pdf-am ps ps-am tags tags-recursive \ - uninstall uninstall-am - - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff -Nru fcitx-4.0.1/src/CMakeLists.txt fcitx-4.1.1/src/CMakeLists.txt --- fcitx-4.0.1/src/CMakeLists.txt 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/CMakeLists.txt 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,14 @@ +include_directories(${PROJECT_SOURCE_DIR}/src) +include_directories(${PROJECT_SOURCE_DIR}/src/lib) +include_directories(${LIBINTL_INCLUDE_DIR}) +include_directories(${LIBICONV_INCLUDE_DIR}) +include_directories(${LIBEXECINFO_INCLUDE_DIR}) +include_directories(${DL_INCLUDE_DIR}) +include_directories(${PTHREAD_INCLUDE_DIR}) + +add_subdirectory(lib) +add_subdirectory(core) +add_subdirectory(module) +add_subdirectory(im) +add_subdirectory(frontend) +add_subdirectory(ui) diff -Nru fcitx-4.0.1/src/core/addon.c fcitx-4.1.1/src/core/addon.c --- fcitx-4.0.1/src/core/addon.c 2010-12-17 04:21:26.000000000 +0000 +++ fcitx-4.1.1/src/core/addon.c 1970-01-01 00:00:00.000000000 +0000 @@ -1,196 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2010~2010 by CSSlayer * - * wengxt@gmail.com * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * - ***************************************************************************/ - -#include -#include -#include - -#include "core/fcitx.h" -#include "fcitx-config/uthash.h" -#include "fcitx-config/fcitx-config.h" -#include "tools/configfile.h" -#include "fcitx-config/cutils.h" -#include "fcitx-config/xdg.h" -#include "tools/utarray.h" -#include "core/addon.h" -#include "tools/tools.h" - -CONFIG_BINDING_BEGIN(FcitxAddon); -CONFIG_BINDING_REGISTER("Addon", "Name", name); -CONFIG_BINDING_REGISTER("Addon", "Category", category); -CONFIG_BINDING_REGISTER("Addon", "Enabled", bEnabled); -CONFIG_BINDING_REGISTER("Addon", "Module", module); -CONFIG_BINDING_REGISTER("Addon", "Type", type); -CONFIG_BINDING_END() - -UT_icd addon_icd = {sizeof(FcitxAddon), NULL ,NULL, FreeAddon}; -UT_array *addons; -static ConfigFileDesc *addonConfigDesc = NULL; -static ConfigFileDesc* GetAddonConfigDesc(); - -/** - * @brief Load Addon Info - */ -void LoadAddonInfo(void) -{ - if (!fc.bEnableAddons) - return; - - char **addonPath; - size_t len; - char pathBuf[PATH_MAX]; - int i = 0; - DIR *dir; - struct dirent *drt; - struct stat fileStat; - - StringHashSet* sset = NULL; - - if (addons) - { - utarray_free(addons); - addons = NULL; - } - - addons = malloc(sizeof(UT_array)); - utarray_init(addons, &addon_icd); - - addonPath = GetXDGPath(&len, "XDG_CONFIG_HOME", ".config", "fcitx/addon" , DATADIR, "fcitx/data/addon" ); - - for(i = 0; i< len; i++) - { - snprintf(pathBuf, sizeof(pathBuf), "%s", addonPath[i]); - pathBuf[sizeof(pathBuf) - 1] = '\0'; - - dir = opendir(pathBuf); - if (dir == NULL) - continue; - - /* collect all *.conf files */ - while((drt = readdir(dir)) != NULL) - { - size_t nameLen = strlen(drt->d_name); - if (nameLen <= strlen(".conf") ) - continue; - memset(pathBuf,0,sizeof(pathBuf)); - - if (strcmp(drt->d_name + nameLen -strlen(".conf"), ".conf") != 0) - continue; - snprintf(pathBuf, sizeof(pathBuf), "%s/%s", addonPath[i], drt->d_name ); - - if (stat(pathBuf, &fileStat) == -1) - continue; - - if (fileStat.st_mode & S_IFREG) - { - StringHashSet *string; - HASH_FIND_STR(sset, drt->d_name, string); - if (!string) - { - char *bStr = strdup(drt->d_name); - string = malloc(sizeof(StringHashSet)); - memset(string, 0, sizeof(StringHashSet)); - string->name = bStr; - HASH_ADD_KEYPTR(hh, sset, string->name, strlen(string->name), string); - } - } - } - - closedir(dir); - } - - char **paths = malloc(sizeof(char*) *len); - for (i = 0;i < len ;i ++) - paths[i] = malloc(sizeof(char) *PATH_MAX); - StringHashSet* string; - for (string = sset; - string != NULL; - string = (StringHashSet*)string->hh.next) - { - int i = 0; - for (i = len -1; i >= 0; i--) - { - snprintf(paths[i], PATH_MAX, "%s/%s", addonPath[len - i - 1], string->name); - FcitxLog(DEBUG, "Load Addon Config File:%s", paths[i]); - } - FcitxLog(INFO, _("Load Addon Config File:%s"), string->name); - ConfigFile* cfile = ParseMultiConfigFile(paths, len, GetAddonConfigDesc()); - if (cfile) - { - FcitxAddon addon; - memset(&addon, 0, sizeof(FcitxAddon)); - utarray_push_back(addons, &addon); - FcitxAddon *a = (FcitxAddon*) utarray_back(addons); - FcitxAddonConfigBind(a, cfile, GetAddonConfigDesc()); - ConfigBindSync((GenericConfig*)a); - FcitxLog(DEBUG, _("Addon Config %s is %s"),string->name, (a->bEnabled)?"Enabled":"Disabled"); - if (!a->bEnabled) - utarray_pop_back(addons); - } - } - - for (i = 0;i < len ;i ++) - free(paths[i]); - free(paths); - - FreeXDGPath(addonPath); - - StringHashSet *curStr; - while(sset) - { - curStr = sset; - HASH_DEL(sset, curStr); - free(curStr->name); - free(curStr); - } -} - -/** - * @brief Load addon.desc file - * - * @return the description of addon configure. - */ -ConfigFileDesc* GetAddonConfigDesc() -{ - if (!addonConfigDesc) - { - FILE *tmpfp; - tmpfp = GetXDGFileData("addon.desc", "r", NULL); - addonConfigDesc = ParseConfigFileDescFp(tmpfp); - fclose(tmpfp); - } - - return addonConfigDesc; -} - -/** - * @brief Free one addon info - * - * @param v addon info - */ -void FreeAddon(void *v) -{ - FcitxAddon *addon = (FcitxAddon*) v; - if (!addon) - return ; - FreeConfigFile(addon->config.configFile); - free(addon->name); - free(addon->module); -} diff -Nru fcitx-4.0.1/src/core/addon.h fcitx-4.1.1/src/core/addon.h --- fcitx-4.0.1/src/core/addon.h 2010-11-28 11:55:00.000000000 +0000 +++ fcitx-4.1.1/src/core/addon.h 1970-01-01 00:00:00.000000000 +0000 @@ -1,64 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2010~2010 by CSSlayer * - * wengxt@gmail.com * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * - ***************************************************************************/ - -#ifndef ADDON_H -#define ADDON_H - -#include "core/fcitx.h" -#include "X11/Xmd.h" -#include "fcitx-config/fcitx-config.h" -#include "tools/utarray.h" - -typedef enum AddonCategory -{ - AC_INPUTMETHOD = 0 -} AddonCategory; - -typedef enum AddonType -{ - AT_SHAREDLIBRARY = 0 -} AddonType; - -typedef struct FcitxAddonLibIM -{ - INT8 index; - void *handle; - EXTRA_IM *eim; -} FcitxAddonLibIM; - -typedef struct FcitxAddon -{ - GenericConfig config; - char *name; - Bool bEnabled; - AddonCategory category; - AddonType type; - char *module; - union { - FcitxAddonLibIM im; - }; -} FcitxAddon; - -void FreeAddon(void *v); -void LoadAddonInfo(void); - -extern UT_array *addons; - -#endif diff -Nru fcitx-4.0.1/src/core/CMakeLists.txt fcitx-4.1.1/src/core/CMakeLists.txt --- fcitx-4.0.1/src/core/CMakeLists.txt 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/core/CMakeLists.txt 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,8 @@ +set(FCITX_SOURCES + fcitx.c + errorhandler.c +) + +add_executable(fcitx ${FCITX_SOURCES}) +install(TARGETS fcitx RUNTIME DESTINATION ${bindir}) +target_link_libraries(fcitx fcitx-core ${LIBEXECINFO_LIBRARIES}) \ No newline at end of file diff -Nru fcitx-4.0.1/src/core/errorhandler.c fcitx-4.1.1/src/core/errorhandler.c --- fcitx-4.0.1/src/core/errorhandler.c 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/core/errorhandler.c 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,126 @@ +/*************************************************************************** + * Copyright (C) 2002~2005 by Yuking * + * yuking_net@sohu.com * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +#include +#include +#include +#include +#include + +#include "fcitx/fcitx.h" +#include "fcitx/ime-internal.h" +#include "fcitx/configfile.h" +#include "fcitx/instance.h" +#include "fcitx-utils/log.h" +#include "fcitx-config/xdg.h" +#include "errorhandler.h" + +#ifndef SIGUNUSED +#define SIGUNUSED 32 +#endif + +extern FcitxInstance* instance; + +void SetMyExceptionHandler(void) +{ + int signo; + + for (signo = SIGHUP; signo < SIGUNUSED; signo++) + { + if (signo != SIGALRM && signo != SIGPIPE) + signal(signo, OnException); + else + signal(signo, SIG_IGN); + } +} + +void OnException(int signo) +{ + if (signo == SIGCHLD) + return; + + FcitxLog(INFO, _("FCITX -- Get Signal No.: %d"), signo); + + if (signo != SIGSEGV && signo != SIGCONT) + { + FcitxLock(instance); + SaveAllIM(instance); + FcitxUnlock(instance); + } + + void *array[10]; + + size_t size; + char **strings = NULL; + size_t i; + + size = backtrace(array, 10); + strings = backtrace_symbols(array, size); + + if (strings) + { + FILE *fp = NULL; + + if (signo == SIGSEGV || signo == SIGABRT || signo == SIGKILL) + fp = GetXDGFileWithPrefix("log", "crash.log", "wt", NULL); + + printf("Obtained %zd stack frames.\n", size); + + if (fp) + { + fprintf(fp, "FCITX -- Get Signal No.: %d\n", signo); + fprintf(fp, "Obtained %zd stack frames.\n", size); + } + + for (i = 0; i < size; i++) + { + printf("%s\n", strings[i]); + + if (fp) + fprintf(fp, "%s\n", strings[i]); + } + + if (fp) + fclose(fp); + + free(strings); + } + + switch (signo) + { + + case SIGHUP: + break; + + case SIGINT: + + case SIGTERM: + + case SIGPIPE: + + case SIGSEGV: + exit(0); + + default: + break; + } +} + +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/core/errorhandler.h fcitx-4.1.1/src/core/errorhandler.h --- fcitx-4.0.1/src/core/errorhandler.h 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/core/errorhandler.h 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,55 @@ +/*************************************************************************** + * Copyright (C) 2002~2005 by Yuking * + * yuking_net@sohu.com * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ +#ifndef _ERRORHANDLER_H +#define _ERRORHANDLER_H + +/* *********************************************************** + * Consts + * *********************************************************** */ +#ifndef SIGUNUSED +#define SIGUNUSED 29 +#endif +/* *********************************************************** + * Data structures + * *********************************************************** */ + +/* *********************************************************** + * Functions + * *********************************************************** */ + +/** + * @brief Set Posix Signal Handler + * + * @param ... + * @return void + **/ +void SetMyExceptionHandler(void); + +/** + * @brief Process Posix signal + * + * @param signo + * @return void + **/ +void OnException(int signo); + +#endif + +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/core/fcitx.c fcitx-4.1.1/src/core/fcitx.c --- fcitx-4.0.1/src/core/fcitx.c 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/core/fcitx.c 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,90 @@ +/*************************************************************************** + * Copyright (C) 2010~2010 by CSSlayer * + * wengxt@gmail.com * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +/** + * @file fcitx.c + * @brief Main Function for fcitx + */ +#ifdef FCITX_HAVE_CONFIG_H +#include "config.h" +#endif + +#include +#include +#include +#include + +#ifdef HAVE_UNISTD_H +#include +#endif // HAVE_UNISTD_H + +#ifdef HAVE_MALLOC_H +#include +#endif // HAVE_MALLOC_H + +#include "fcitx/configfile.h" +#include "fcitx/addon.h" +#include "fcitx/module.h" +#include "fcitx/ime-internal.h" +#include "fcitx/frontend.h" +#include "fcitx/profile.h" +#include "fcitx/instance.h" +#include "fcitx-utils/utils.h" +#include "errorhandler.h" + +FcitxInstance* instance; + +static void WaitForEnd(sem_t *sem, int count) +{ + while (count) + { + sem_wait(sem); + count --; + } +} + +int main(int argc, char* argv[]) +{ +#ifdef M_TRIM_THRESHOLD +#ifdef HAVE_UNISTD_H + int pagesize = sysconf(_SC_PAGESIZE); +#else + int pagesize = 4 * 1024; +#endif // HAVE_UNISTD_H + mallopt(M_TRIM_THRESHOLD, 5*pagesize); +#endif // M_TRIM_THRESHOLD + + setlocale(LC_ALL, ""); + bindtextdomain("fcitx", LOCALEDIR); + bind_textdomain_codeset("fcitx", "UTF-8"); + textdomain("fcitx"); + SetMyExceptionHandler(); + + int instanceCount = 1; + + sem_t sem; + sem_init(&sem, 0, 0); + + instance = CreateFcitxInstance(&sem, argc, argv); + + WaitForEnd(&sem, instanceCount); + return 0; +} +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/core/fcitx.h fcitx-4.1.1/src/core/fcitx.h --- fcitx-4.0.1/src/core/fcitx.h 2010-12-06 04:54:22.000000000 +0000 +++ fcitx-4.1.1/src/core/fcitx.h 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2002~2005 by Yuking * - * yuking_net@sohu.com * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * - ***************************************************************************/ -#ifndef _FCITX_H_ -#define _FCITX_H_ - -#define _GNU_SOURCE - -#include - -#define _(msgid) gettext(msgid) -#define __(msgid) (msgid) - -#include "config.h" -#include "tools/utf8.h" -#include "core/im.h" - -#define EIM_MAX 4 - -#define FCITX_EXPORT_API __attribute__ ((visibility("default"))) - -#define MAX_CODE_LEN 63 - -#endif/*_FCITX_H_*/ diff -Nru fcitx-4.0.1/src/core/fcitx.pc.in fcitx-4.1.1/src/core/fcitx.pc.in --- fcitx-4.0.1/src/core/fcitx.pc.in 2010-11-28 11:55:00.000000000 +0000 +++ fcitx-4.1.1/src/core/fcitx.pc.in 1970-01-01 00:00:00.000000000 +0000 @@ -1,12 +0,0 @@ -prefix=@prefix@ -exec_prefix=@exec_prefix@ -libdir=@libdir@ -includedir=@includedir@ - -Name: fcitx -Description: Fcitx -Version: 0.95 -Requires: x11 -Requires.private: x11 -Cflags: -I${includedir} -Libs: diff -Nru fcitx-4.0.1/src/core/IC.c fcitx-4.1.1/src/core/IC.c --- fcitx-4.0.1/src/core/IC.c 2010-11-28 11:55:00.000000000 +0000 +++ fcitx-4.1.1/src/core/IC.c 1970-01-01 00:00:00.000000000 +0000 @@ -1,364 +0,0 @@ -/****************************************************************** - - Copyright 1994, 1995 by Sun Microsystems, Inc. - Copyright 1993, 1994 by Hewlett-Packard Company - -Permission to use, copy, modify, distribute, and sell this software -and its documentation for any purpose is hereby granted without fee, -provided that the above copyright notice appear in all copies and -that both that copyright notice and this permission notice appear -in supporting documentation, and that the name of Sun Microsystems, Inc. -and Hewlett-Packard not be used in advertising or publicity pertaining to -distribution of the software without specific, written prior permission. -Sun Microsystems, Inc. and Hewlett-Packard make no representations about -the suitability of this software for any purpose. It is provided "as is" -without express or implied warranty. - -SUN MICROSYSTEMS INC. AND HEWLETT-PACKARD COMPANY DISCLAIMS ALL -WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL -SUN MICROSYSTEMS, INC. AND HEWLETT-PACKARD COMPANY 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. - - Author: Hidetoshi Tajima(tajima@Eng.Sun.COM) Sun Microsystems, Inc. - -******************************************************************/ -#include "core/fcitx.h" -#include -#include "IMdkit.h" -#include "Xi18n.h" -#include "core/IC.h" -#include - -IC *ic_list = (IC *) NULL; -static IC *free_list = (IC *) NULL; - -static IC *NewIC () -{ - static CARD16 icid = 0; - IC *rec; - - if (free_list != NULL) { - rec = free_list; - free_list = free_list->next; - } - else { - rec = (IC *) malloc (sizeof (IC)); - } - memset (rec, 0, sizeof (IC)); - rec->id = ++icid; - rec->offset_x = -1; - rec->offset_y = -1; - - rec->next = ic_list; - ic_list = rec; - return rec; -} - -IC *FindIC (CARD16 icid) -{ - IC *rec = ic_list; - - while (rec != NULL) { - if (rec->id == icid) - return rec; - rec = rec->next; - } - - return NULL; -} - -static void DeleteIC (CARD16 icid) -{ - IC *rec, *last; - - last = NULL; - - for (rec = ic_list; rec != NULL; last = rec, rec = rec->next) { - if (rec->id == icid) { - if (last != NULL) - last->next = rec->next; - else - ic_list = rec->next; - - rec->next = free_list; - free_list = rec; - - //free resource - if (rec->resource_name) - free (rec->resource_name); - if (rec->resource_class) - free (rec->resource_class); - - return; - } - } - - return; -} - -static int Is (char *attr, XICAttribute * attr_list) -{ - return !strcmp (attr, attr_list->name); -} - -static void StoreIC (IC * rec, IMChangeICStruct * call_data) -{ - XICAttribute *ic_attr = call_data->ic_attr; - XICAttribute *pre_attr = call_data->preedit_attr; - XICAttribute *sts_attr = call_data->status_attr; - register int i; - - for (i = 0; i < (int) call_data->ic_attr_num; i++, ic_attr++) { - if (Is (XNInputStyle, ic_attr)) - rec->input_style = *(INT32 *) ic_attr->value; - - else if (Is (XNClientWindow, ic_attr)) { - CARD32 value = *(CARD32*) ic_attr->value; - rec->client_win = (Window) value; - } - else if (Is (XNFocusWindow, ic_attr)) { - CARD32 value = *(CARD32*) ic_attr->value; - rec->focus_win = (Window) value; - } - } - - for (i = 0; i < (int) call_data->preedit_attr_num; i++, pre_attr++) { - if (Is (XNArea, pre_attr)) { - rec->pre_attr.area = *(XRectangle *) pre_attr->value; - } - else if (Is (XNAreaNeeded, pre_attr)) { - rec->pre_attr.area_needed = *(XRectangle *) pre_attr->value; - } - else if (Is (XNSpotLocation, pre_attr)) { - rec->pre_attr.spot_location = *(XPoint *) pre_attr->value; - } - - else if (Is (XNColormap, pre_attr)) - rec->pre_attr.cmap = *(Colormap *) pre_attr->value; - - else if (Is (XNStdColormap, pre_attr)) - rec->pre_attr.cmap = *(Colormap *) pre_attr->value; - - else if (Is (XNForeground, pre_attr)) { - rec->pre_attr.foreground = *(CARD32 *) pre_attr->value; - } - else if (Is (XNBackground, pre_attr)) { - rec->pre_attr.background = *(CARD32 *) pre_attr->value; - } - else if (Is (XNBackgroundPixmap, pre_attr)) - rec->pre_attr.bg_pixmap = *(Pixmap *) pre_attr->value; - - else if (Is (XNFontSet, pre_attr)) { - int str_length = strlen ((char *) pre_attr->value); - - if (rec->pre_attr.base_font != NULL) { - if (Is (rec->pre_attr.base_font, pre_attr)) - continue; - XFree (rec->pre_attr.base_font); - } - rec->pre_attr.base_font = (char *) malloc (str_length + 1); - strcpy (rec->pre_attr.base_font, (char *) pre_attr->value); - } - else if (Is (XNLineSpace, pre_attr)) - rec->pre_attr.line_space = *(CARD32 *) pre_attr->value; - - else if (Is (XNCursor, pre_attr)) - rec->pre_attr.cursor = *(Cursor *) pre_attr->value; - } - - for (i = 0; i < (int) call_data->status_attr_num; i++, sts_attr++) { - if (Is (XNArea, sts_attr)) { - rec->sts_attr.area = *(XRectangle *) sts_attr->value; - } - else if (Is (XNAreaNeeded, sts_attr)) { - rec->sts_attr.area_needed = *(XRectangle *) sts_attr->value; - } - else if (Is (XNColormap, sts_attr)) { - rec->sts_attr.cmap = *(Colormap *) sts_attr->value; - } - else if (Is (XNStdColormap, sts_attr)) - rec->sts_attr.cmap = *(Colormap *) sts_attr->value; - - else if (Is (XNForeground, sts_attr)) { - rec->sts_attr.foreground = *(CARD32 *) sts_attr->value; - } - else if (Is (XNBackground, sts_attr)) { - rec->sts_attr.background = *(CARD32 *) sts_attr->value; - } - - else if (Is (XNBackgroundPixmap, sts_attr)) - rec->sts_attr.bg_pixmap = *(Pixmap *) sts_attr->value; - - else if (Is (XNFontSet, sts_attr)) { - int str_length = strlen ((char *) sts_attr->value); - - if (rec->sts_attr.base_font != NULL) { - if (Is (rec->sts_attr.base_font, sts_attr)) - continue; - XFree (rec->sts_attr.base_font); - } - rec->sts_attr.base_font = (char *) malloc (str_length + 1); - strcpy (rec->sts_attr.base_font, (char *) sts_attr->value); - } - else if (Is (XNLineSpace, sts_attr)) - rec->sts_attr.line_space = *(CARD32 *) sts_attr->value; - - else if (Is (XNCursor, sts_attr)) - - rec->sts_attr.cursor = *(Cursor *) sts_attr->value; - } -} - -void CreateIC (IMChangeICStruct * call_data) -{ - IC *rec; - - rec = NewIC (); - if (rec == NULL) - return; - - rec->state = IS_CLOSED; - rec->connect_id = call_data->connect_id; - StoreIC (rec, call_data); - call_data->icid = rec->id; - - return; -} - -void DestroyIC (IMChangeICStruct * call_data) -{ - DeleteIC (call_data->icid); - return; -} - -void SetIC (IMChangeICStruct * call_data) -{ - IC *rec = FindIC (call_data->icid); - - if (rec == NULL) - return; - StoreIC (rec, call_data); - - return; -} - -void GetIC (IMChangeICStruct * call_data) -{ - XICAttribute *ic_attr = call_data->ic_attr; - XICAttribute *pre_attr = call_data->preedit_attr; - XICAttribute *sts_attr = call_data->status_attr; - register int i; - IC *rec = FindIC (call_data->icid); - - if (rec == NULL) - return; - for (i = 0; i < (int) call_data->ic_attr_num; i++, ic_attr++) { - if (Is (XNFilterEvents, ic_attr)) { - ic_attr->value = (void *) malloc (sizeof (CARD32)); - *(CARD32 *) ic_attr->value = KeyPressMask | KeyReleaseMask; - ic_attr->value_length = sizeof (CARD32); - } - } - - /* preedit attributes */ - for (i = 0; i < (int) call_data->preedit_attr_num; i++, pre_attr++) { - if (Is (XNArea, pre_attr)) { - pre_attr->value = (void *) malloc (sizeof (XRectangle)); - *(XRectangle *) pre_attr->value = rec->pre_attr.area; - pre_attr->value_length = sizeof (XRectangle); - - } - else if (Is (XNAreaNeeded, pre_attr)) { - pre_attr->value = (void *) malloc (sizeof (XRectangle)); - *(XRectangle *) pre_attr->value = rec->pre_attr.area_needed; - pre_attr->value_length = sizeof (XRectangle); - - } - else if (Is (XNSpotLocation, pre_attr)) { - pre_attr->value = (void *) malloc (sizeof (XPoint)); - *(XPoint *) pre_attr->value = rec->pre_attr.spot_location; - pre_attr->value_length = sizeof (XPoint); - - } - else if (Is (XNFontSet, pre_attr)) { - CARD16 base_len = (CARD16) strlen (rec->pre_attr.base_font); - int total_len = sizeof (CARD16) + (CARD16) base_len; - char *p; - - pre_attr->value = (void *) malloc (total_len); - p = (char *) pre_attr->value; - memmove (p, &base_len, sizeof (CARD16)); - p += sizeof (CARD16); - strncpy (p, rec->pre_attr.base_font, base_len); - pre_attr->value_length = total_len; - - } - else if (Is (XNForeground, pre_attr)) { - pre_attr->value = (void *) malloc (sizeof (long)); - *(long *) pre_attr->value = rec->pre_attr.foreground; - pre_attr->value_length = sizeof (long); - - } - else if (Is (XNBackground, pre_attr)) { - pre_attr->value = (void *) malloc (sizeof (long)); - *(long *) pre_attr->value = rec->pre_attr.background; - pre_attr->value_length = sizeof (long); - - } - else if (Is (XNLineSpace, pre_attr)) { - pre_attr->value = (void *) malloc (sizeof (long)); - *(long *) pre_attr->value = 18; - pre_attr->value_length = sizeof (long); - } - } - - /* status attributes */ - for (i = 0; i < (int) call_data->status_attr_num; i++, sts_attr++) { - if (Is (XNArea, sts_attr)) { - sts_attr->value = (void *) malloc (sizeof (XRectangle)); - *(XRectangle *) sts_attr->value = rec->sts_attr.area; - sts_attr->value_length = sizeof (XRectangle); - - } - else if (Is (XNAreaNeeded, sts_attr)) { - sts_attr->value = (void *) malloc (sizeof (XRectangle)); - *(XRectangle *) sts_attr->value = rec->sts_attr.area_needed; - sts_attr->value_length = sizeof (XRectangle); - - } - else if (Is (XNFontSet, sts_attr)) { - CARD16 base_len = (CARD16) strlen (rec->sts_attr.base_font); - int total_len = sizeof (CARD16) + (CARD16) base_len; - char *p; - - sts_attr->value = (void *) malloc (total_len); - p = (char *) sts_attr->value; - memmove (p, &base_len, sizeof (CARD16)); - p += sizeof (CARD16); - strncpy (p, rec->sts_attr.base_font, base_len); - sts_attr->value_length = total_len; - - } - else if (Is (XNForeground, sts_attr)) { - sts_attr->value = (void *) malloc (sizeof (long)); - *(long *) sts_attr->value = rec->sts_attr.foreground; - sts_attr->value_length = sizeof (long); - - } - else if (Is (XNBackground, sts_attr)) { - sts_attr->value = (void *) malloc (sizeof (long)); - *(long *) sts_attr->value = rec->sts_attr.background; - sts_attr->value_length = sizeof (long); - - } - else if (Is (XNLineSpace, sts_attr)) { - sts_attr->value = (void *) malloc (sizeof (long)); - *(long *) sts_attr->value = 18; - sts_attr->value_length = sizeof (long); - } - } -} diff -Nru fcitx-4.0.1/src/core/IC.h fcitx-4.1.1/src/core/IC.h --- fcitx-4.0.1/src/core/IC.h 2010-11-28 11:55:00.000000000 +0000 +++ fcitx-4.1.1/src/core/IC.h 1970-01-01 00:00:00.000000000 +0000 @@ -1,87 +0,0 @@ -/****************************************************************** - - Copyright 1994, 1995 by Sun Microsystems, Inc. - Copyright 1993, 1994 by Hewlett-Packard Company - -Permission to use, copy, modify, distribute, and sell this software -and its documentation for any purpose is hereby granted without fee, -provided that the above copyright notice appear in all copies and -that both that copyright notice and this permission notice appear -in supporting documentation, and that the name of Sun Microsystems, Inc. -and Hewlett-Packard not be used in advertising or publicity pertaining to -distribution of the software without specific, written prior permission. -Sun Microsystems, Inc. and Hewlett-Packard make no representations about -the suitability of this software for any purpose. It is provided "as is" -without express or implied warranty. - -SUN MICROSYSTEMS INC. AND HEWLETT-PACKARD COMPANY DISCLAIMS ALL -WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL -SUN MICROSYSTEMS, INC. AND HEWLETT-PACKARD COMPANY 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. - - Author: Hidetoshi Tajima(tajima@Eng.Sun.COM) Sun Microsystems, Inc. - -******************************************************************/ -#ifndef _IC_H -#define _IC_H - -#include -#include - -#include "IMdkit.h" -#include "Xi18n.h" -#include "xim.h" -typedef struct { - XRectangle area; /* area */ - XRectangle area_needed; /* area needed */ - XPoint spot_location; /* spot location */ - Colormap cmap; /* colormap */ - CARD32 foreground; /* foreground */ - CARD32 background; /* background */ - Pixmap bg_pixmap; /* background pixmap */ - char *base_font; /* base font of fontset */ - CARD32 line_space; /* line spacing */ - Cursor cursor; /* cursor */ -} PreeditAttributes; - -typedef struct { - XRectangle area; /* area */ - XRectangle area_needed; /* area needed */ - Colormap cmap; /* colormap */ - CARD32 foreground; /* foreground */ - CARD32 background; /* background */ - Pixmap bg_pixmap; /* background pixmap */ - char *base_font; /* base font of fontset */ - CARD32 line_space; /* line spacing */ - Cursor cursor; /* cursor */ -} StatusAttributes; - -typedef struct _IC { - CARD16 id; /* ic id */ - INT32 input_style; /* input style */ - Window client_win; /* client window */ - Window focus_win; /* focus window */ - char *resource_name; /* resource name */ - char *resource_class; /* resource class */ - PreeditAttributes pre_attr; /* preedit attributes */ - StatusAttributes sts_attr; /* status attributes */ - - IME_STATE state; /* im state */ - CARD16 connect_id; - - int offset_x, offset_y; - - struct _IC *next; -} IC; - -extern IC *FindIC (CARD16); -extern void CreateIC (IMChangeICStruct *); -extern void DestroyIC (IMChangeICStruct *); -extern void SetIC (IMChangeICStruct *); -extern void GetIC (IMChangeICStruct *); - -#endif diff -Nru fcitx-4.0.1/src/core/ime.c fcitx-4.1.1/src/core/ime.c --- fcitx-4.0.1/src/core/ime.c 2010-12-17 04:21:11.000000000 +0000 +++ fcitx-4.1.1/src/core/ime.c 1970-01-01 00:00:00.000000000 +0000 @@ -1,1390 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2002~2005 by Yuking * - * yuking_net@sohu.com * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * - ***************************************************************************/ -/* - * @file ime.c - * @author Yuking yuking_net@sohu.com - * @date 2008-1-16 - * - * @brief 按键和输入法通用功能处理 - * - * - */ -#include "core/fcitx.h" - -#include -#include - -#include "tools/tools.h" -#include "core/xim.h" -#include "core/ime.h" -#include "core/keys.h" -#include "core/IC.h" -#include "ui/AboutWindow.h" -#include "ui/InputWindow.h" -#include "ui/MainWindow.h" -#include "ui/TrayWindow.h" -#include "ui/font.h" -#include "ui/skin.h" -#include "ui/ui.h" -#include "im/special/punc.h" -#include "im/pinyin/py.h" -#include "im/pinyin/sp.h" -#include "im/qw/qw.h" -#include "im/table/table.h" -#include "im/special/vk.h" -#include "im/special/QuickPhrase.h" -#include "im/special/AutoEng.h" -#include "im/extra/extra.h" -#include "ui/skin.h" -#include "interface/DBus.h" -#include "tools/configfile.h" -#include "tools/profile.h" -#include "fcitx-config/cutils.h" - -FcitxState gs; /* global state */ - -IM *im = NULL; -INT8 iIMCount = 0; -INT8 iState = 0; - -int iCandPageCount; -int iCurrentCandPage; -int iCandWordCount; - -int iLegendCandWordCount; -int iLegendCandPageCount; -int iCurrentLegendCandPage; - -int iCodeInputCount; - -// ************************************************************* -char strCodeInput[MAX_USER_INPUT + 1]; -char strStringGet[MAX_USER_INPUT + 1]; //保存输入法返回的需要送到客户程序中的字串 - -// ************************************************************* - -Bool bIsDoInputOnly = False; //表明是否只由输入法来处理键盘 -Bool bLastIsNumber = False; //上一次输入是不是阿拉伯数字 -char cLastIsAutoConvert = 0; //上一次输入是不是符合数字后自动转换的符号,如'.'/',',0表示不是这样的符号 -INT8 iInCap = 0; //是不是处于大写后的英文状态,0--不,1--按下大写键,2--按下分号键 - -/* -Bool bAutoHideInputWindow = False; //是否自动隐藏输入条 -*/ -INT8 lastIsSingleHZ = 0; - -Bool bVK = False; - -Time lastKeyPressedTime; - -KEY_RELEASED keyReleased = KR_OTHER; - -Bool bIsInLegend = False; - -/* 计算打字速度 */ -time_t timeStart; -Bool bStartRecordType; -uint iHZInputed = 0; - -Bool bCursorAuto = False; - -extern XIMS ims; -extern Display *dpy; -extern ChnPunc *chnPunc; - -extern XIMTriggerKey *Trigger_Keys; - -extern VKWindow vkWindow; -extern VKS vks[]; -extern unsigned char iCurrentVK; -extern Bool bVK; - -extern INT8 iTableChanged; -extern INT8 iNewPYPhraseCount; -extern INT8 iOrderCount; -extern INT8 iNewFreqCount; - -extern INT8 iTableCount; - -extern Bool bTrigger; - -extern int iInputWindowX; -extern int iInputWindowY; - -extern Bool bMainWindow_Hiden; - -extern int iFirstQuickPhrase; - -#ifdef _ENABLE_DBUS -extern Property logo_prop; -extern Property state_prop; -extern Property punc_prop; -extern Property corner_prop; -extern Property gbkt_prop; -extern Property legend_prop; -#endif - - -#ifdef _ENABLE_RECORDING -extern FILE *fpRecord; -extern Bool bWrittenRecord; -#endif - -char *sCornerTrans[] = { - " ", "!", """, "#", "¥", "%", "&", "'", "(", ")", - "*", - "+", ",", "-", ".", "/", - "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", - ":", - ";", "<", "=", ">", "?", - "@", "A", "B", "C", "D", "E", "F", "G", "H", "I", - "J", - "K", "L", "M", "N", "O", - "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", - "Z", - "[", "\", "]", "^", "_", - "`", "a", "b", "c", "d", "e", "f", "g", "h", "i", - "j", - "k", "l", "m", "n", "o", - "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", - "z", - "{", "|", "}", " ̄", -}; - -static void DoForwardEvent(IMForwardEventStruct * call_data); - -/** - * @brief 重置输入状态 - */ -void ResetInput(void) -{ - iCandPageCount = 0; - iCurrentCandPage = 0; - iCandWordCount = 0; - iLegendCandWordCount = 0; - iCurrentLegendCandPage = 0; - iLegendCandPageCount = 0; - iCursorPos = 0; - - strCodeInput[0] = '\0'; - iCodeInputCount = 0; - - bIsDoInputOnly = False; - - inputWindow.bShowPrev = False; - inputWindow.bShowNext = False; - - bIsInLegend = False; - iInCap = 0; - - if (!IsIM(strNameOfPinyin)) - inputWindow.bShowCursor = False; - - if (im[gs.iIMIndex].ResetIM) - im[gs.iIMIndex].ResetIM(); - - iFirstQuickPhrase = -1; -} - -/** - * @brief 关闭输入法 - * - * @param call_data - */ -void CloseIM(IMForwardEventStruct * call_data) -{ - if (CurrentIC == NULL) - return; - - CloseInputWindow(); - - XUnmapWindow(dpy, vkWindow.window); - - IMPreeditEnd(ims, (XPointer) call_data); - CurrentIC->state = IS_CLOSED; - bVK = False; - SwitchIM(-2); - - if (!fc.bUseDBus) { - DrawMainWindow(); - -#ifdef _ENABLE_TRAY - DrawTrayWindow(INACTIVE_ICON, 0, 0, tray.size, tray.size); -#endif - } -#ifdef _ENABLE_DBUS - else - updateProperty(&state_prop); -#endif -} - -/** - * @brief 更改输入法状态 - * - * @param _connect_id - */ -void ChangeIMState() -{ - if (!CurrentIC) - return; - if (GetCurrentState() == IS_ENG) { - CurrentIC->state = IS_CHN; - iState = IS_CHN; - - if (bVK) { - DisplayVKWindow(); - } else - DisplayInputWindow(); - } else { - CurrentIC->state = IS_ENG; - iState = IS_ENG; - ResetInput(); - ResetInputWindow(); - - CloseInputWindow(); - } - XUnmapWindow(dpy, vkWindow.window); - - if (!fc.bUseDBus) { - if (fc.hideMainWindow != HM_HIDE) - DrawMainWindow(); - } -#ifdef _ENABLE_DBUS - if (fc.bUseDBus) { - updateProperty(&state_prop); - } -#endif -} - -/** - * @brief 转换strStringGet中的标点为中文标点 - */ -void ConvertPunc(void) -{ - char strTemp[MAX_USER_INPUT + 1] = "\0"; - char *s1, *s2, *pPunc; - - s1 = strTemp; - s2 = strStringGet; - - while (*s2) { - pPunc = GetPunc(*s2); - if (pPunc) { - strcat(s1, pPunc); - s1 += strlen(pPunc); - } else - *s1++ = *s2; - s2++; - } - *s2 = '\0'; - - strcpy(strStringGet, strTemp); -} - -void DoForwardEvent(IMForwardEventStruct * call_data) -{ - IMForwardEventStruct fe; - memset(&fe, 0, sizeof(fe)); - - fe.major_code = XIM_FORWARD_EVENT; - fe.icid = call_data->icid; - fe.connect_id = call_data->connect_id; - fe.sync_bit = 0; - fe.serial_number = 0L; - fe.event = call_data->event; - - IMForwardEvent(ims, (XPointer) & fe); -} - -/** - * @brief 处理按键 - * - * @param call_data - */ -void ProcessKey(IMForwardEventStruct * call_data) -{ - KeySym sym; - XKeyEvent *kev; - int keyCount; - INPUT_RETURN_VALUE retVal; - unsigned int state; - char strbuf[STRBUFLEN]; - char *pstr; - int iLen; - - if (!CurrentIC) { - CurrentIC = FindIC(call_data->icid); - if (CurrentIC) - return; - } - - if (CurrentIC->id != call_data->icid) { - CurrentIC = FindIC(call_data->icid); - } - - kev = (XKeyEvent *) & call_data->event; - memset(strbuf, 0, STRBUFLEN); - keyCount = XLookupString(kev, strbuf, STRBUFLEN, &sym, NULL); - - state = kev->state - (kev->state & KEY_NUMLOCK) - (kev->state & KEY_CAPSLOCK) - (kev->state & KEY_SCROLLLOCK); - GetKey(sym, state, keyCount, &sym, &state); - -#ifdef _DEBUG - FcitxLog(INFO, - "KeyRelease=%d state=%d KEYCODE=%d KEYSYM=%d keyCount=%d", - (call_data->event.type == KeyRelease), state, kev->keycode, (int) sym, keyCount); -#endif - - if (!sym) { - DoForwardEvent(call_data); - return; - } - - retVal = IRV_TO_PROCESS; - - /* - * for following reason, we cannot just process switch key, 2nd, 3rd key as other simple hotkey - * because ctrl, shift, alt are compose key, so hotkey like ctrl+a will also produce a key - * release event for ctrl key, so we must make sure the key release right now is the key just - * pressed. - */ - - /* process keyrelease event for switch key and 2nd, 3rd key */ - if (call_data->event.type == KeyRelease) { - if (CurrentIC->state != IS_CLOSED) { - if ((kev->time - lastKeyPressedTime) < 500 && (!bIsDoInputOnly)) { - if (IsHotKey(sym, state, FCITX_LCTRL_LSHIFT)) { - if (!fcitxProfile.bLocked) { - if (CurrentIC->state == IS_CHN) - SwitchIM(-1); - else if (IsHotKey(sym, state, fc.hkTrigger)) - CloseIM(call_data); - } else if (bVK) - ChangVK(); - } else if (kev->keycode == fc.switchKey && keyReleased == KR_CTRL && !fc.bDoubleSwitchKey) { - retVal = IRV_DONOT_PROCESS; - if (fc.bSendTextWhenSwitchEng) { - if (iCodeInputCount) { - strcpy(strStringGet, strCodeInput); - retVal = IRV_ENG; - } - } - keyReleased = KR_OTHER; - ChangeIMState(call_data->connect_id); - } else if (IsHotKey(sym, state, fc.i2ndSelectKey) && keyReleased == KR_2ND_SELECTKEY) { - if (!bIsInLegend) { - pstr = im[gs.iIMIndex].GetCandWord(1); - if (pstr) { - strcpy(strStringGet, pstr); - if (bIsInLegend) - retVal = IRV_GET_LEGEND; - else - retVal = IRV_GET_CANDWORDS; - } else if (iCandWordCount) - retVal = IRV_DISPLAY_CANDWORDS; - else - retVal = IRV_TO_PROCESS; - } else { - strcpy(strStringGet, " "); - SetMessageCount(&messageDown, 0); - retVal = IRV_GET_CANDWORDS; - } - keyReleased = KR_OTHER; - } else if (IsHotKey(sym, state, fc.i3rdSelectKey) && keyReleased == KR_3RD_SELECTKEY) { - if (!bIsInLegend) { - pstr = im[gs.iIMIndex].GetCandWord(2); - if (pstr) { - strcpy(strStringGet, pstr); - if (bIsInLegend) - retVal = IRV_GET_LEGEND; - else - retVal = IRV_GET_CANDWORDS; - } else if (iCandWordCount) - retVal = IRV_DISPLAY_CANDWORDS; - } else { - strcpy(strStringGet, " "); - SetMessageCount(&messageDown, 0); - retVal = IRV_GET_CANDWORDS; - } - - keyReleased = KR_OTHER; - } - } - } - } - - /* Added by hubert_star AT forum.ubuntu.com.cn */ - if ((call_data->event.type == KeyRelease) - && IsHotKeySimple(sym, state) - && retVal == IRV_TO_PROCESS) - return; - - if (retVal == IRV_TO_PROCESS) { - /* process key event for switch key */ - if (call_data->event.type == KeyPress) { - if (kev->keycode != fc.switchKey) - keyReleased = KR_OTHER; - else { - if ((keyReleased == KR_CTRL) - && (kev->time - lastKeyPressedTime < fc.iTimeInterval) - && fc.bDoubleSwitchKey) { - SendHZtoClient(call_data, strCodeInput); - ChangeIMState(call_data->connect_id); - } - } - - lastKeyPressedTime = kev->time; - if (kev->keycode == fc.switchKey) { - keyReleased = KR_CTRL; - retVal = IRV_DO_NOTHING; - } else if (IsHotKey(sym, state, fc.hkTrigger)) { - /* trigger key has the highest priority, so we check it first */ - if (CurrentIC->state == IS_ENG) { - CurrentIC->state = IS_CHN; - - EnterChineseMode(False); - if (!fc.bUseDBus) - DrawMainWindow(); - - if (fc.bShowInputWindowTriggering && !fcitxProfile.bCorner) { - DisplayInputWindow(); - } - } else - CloseIM(call_data); - - retVal = IRV_DO_NOTHING; - } - } - } - - if (retVal == IRV_TO_PROCESS && call_data->event.type != KeyPress) - retVal = IRV_DONOT_PROCESS; - - if (retVal == IRV_TO_PROCESS) { - if (CurrentIC->state == IS_CHN) { - if (bVK) - retVal = DoVKInput(sym, state, keyCount); - else { - if (IsHotKey(sym, state, fc.i2ndSelectKey)) { - if (iCandWordCount >= 2) - { - keyReleased = KR_2ND_SELECTKEY; - return; - } - } else if (IsHotKey(sym, state, fc.i3rdSelectKey)) { - if (iCandWordCount >= 3) - { - keyReleased = KR_3RD_SELECTKEY; - return; - } - } - - if (IsHotKey(sym, state, FCITX_LCTRL_LSHIFT)) { - if (fcitxProfile.bLocked) - retVal = IRV_TO_PROCESS; - } else { - //调用输入法模块 - if (fcitxProfile.bCorner && (IsHotKeySimple(sym, state))) { - //有人报 空格 的全角不对,正确的是0xa1 0xa1 - //但查资料却说全角符号总是以0xa3开始。 - //由于0xa3 0xa0可能会显示乱码,因此采用0xa1 0xa1的方式 - sprintf(strStringGet, "%s", sCornerTrans[sym - 32]); - retVal = IRV_GET_CANDWORDS; - } else { - if (!iInCap) { - char strTemp[MAX_USER_INPUT]; - - retVal = im[gs.iIMIndex].DoInput(sym, state, keyCount); - if (!bCursorAuto && !IsIM(strNameOfPinyin) - && !IsIM(strNameOfShuangpin)) - iCursorPos = iCodeInputCount; - - //为了实现自动英文转换 - strcpy(strTemp, strCodeInput); - if (retVal == IRV_TO_PROCESS) { - strTemp[strlen(strTemp) + 1] = '\0'; - strTemp[strlen(strTemp)] = sym; - } - - if (SwitchToEng(strTemp)) { - iInCap = 3; - if (retVal != IRV_TO_PROCESS) { - iCodeInputCount--; - retVal = IRV_TO_PROCESS; - } - } - - if (!IsHotKey(sym, state, FCITX_BACKSPACE)) - cLastIsAutoConvert = 0; - } else if (iInCap == 2 - && fc.semicolonToDo == K_SEMICOLON_QUICKPHRASE && !iLegendCandWordCount) - retVal = QuickPhraseDoInput(sym, state, keyCount); - - if (!bIsDoInputOnly && retVal == IRV_TO_PROCESS) { - if (!iInCap && IsHotKeyUAZ(sym,state) && fc.bEngAfterCap && !(kev->state & KEY_CAPSLOCK)) { - iInCap = 1; - if (!bIsInLegend && iCandWordCount) { - pstr = im[gs.iIMIndex].GetCandWord(0); - iCandWordCount = 0; - if (pstr) { - SendHZtoClient(call_data, pstr); - strcpy(strStringGet, pstr); - //粗略统计字数 - iHZInputed += (int) (utf8_strlen(strStringGet)); - iCodeInputCount = 0; - } - } - } else if (IsHotKey(sym, state, FCITX_SEMICOLON) - && fc.semicolonToDo != K_SEMICOLON_NOCHANGE && !iCodeInputCount) { - if (iInCap != 2) - iInCap = 2; - else - sym = XK_space; //使用第2个分号输入中文分号 - } else if (!iInCap) { - if (IsHotKey(sym, state, fc.hkPrevPage)) - retVal = im[gs.iIMIndex].GetCandWords(SM_PREV); - else if (IsHotKey(sym, state, fc.hkNextPage)) - retVal = im[gs.iIMIndex].GetCandWords(SM_NEXT); - } - - if (retVal == IRV_TO_PROCESS) { - if (iInCap) { - if (IsHotKey(sym, state, FCITX_SPACE) - && (iCodeInputCount == 0)) { - strcpy(strStringGet, ";"); - retVal = IRV_ENG; - SetMessageCount(&messageDown, 0); - SetMessageCount(&messageUp, 0); - iInCap = 0; - } else { - if (IsHotKeySimple(sym, state)) { - if (iCodeInputCount == MAX_USER_INPUT) - retVal = IRV_DO_NOTHING; - else { - if (!(iInCap == 2 && !iCodeInputCount && IsHotKey(sym, state, FCITX_SEMICOLON))) { - strCodeInput[iCodeInputCount++] - = sym; - strCodeInput[iCodeInputCount] - = '\0'; - inputWindow.bShowCursor = True; - iCursorPos = iCodeInputCount; - if (fc.semicolonToDo - == K_SEMICOLON_QUICKPHRASE && iInCap == 2) { - if (iFirstQuickPhrase == -1) - retVal = QuickPhraseGetCandWords(SM_FIRST); - else { - if (IsHotKey(sym, state, fc.hkPrevPage) - || IsHotKey(sym, state, fc.hkNextPage)) { - if (iCodeInputCount) - iCodeInputCount--; - strCodeInput[iCodeInputCount] - = '\0'; - iCursorPos = iCodeInputCount; - } - - if (IsHotKey(sym, state, fc.hkPrevPage)) - retVal = QuickPhraseGetCandWords(SM_PREV); - else if (IsHotKey(sym, state, fc.hkNextPage)) - retVal = QuickPhraseGetCandWords(SM_NEXT); - else - retVal = QuickPhraseGetCandWords(SM_FIRST); - } - } else - retVal = IRV_DISPLAY_MESSAGE; - } else - retVal = IRV_DISPLAY_MESSAGE; - } - } else if (IsHotKey(sym, state, FCITX_BACKSPACE) || IsHotKey(sym, state, FCITX_CTRL_H)) { - if (iCodeInputCount) - iCodeInputCount--; - strCodeInput[iCodeInputCount] = '\0'; - iCursorPos = iCodeInputCount; - if (!iCodeInputCount) - retVal = IRV_CLEAN; - else if (fc.semicolonToDo == K_SEMICOLON_QUICKPHRASE && iInCap == 2) { - if (iFirstQuickPhrase == -1) - retVal = QuickPhraseGetCandWords(SM_FIRST); - else if (IsHotKey(sym, state, fc.hkPrevPage)) - retVal = QuickPhraseGetCandWords(SM_PREV); - else if (IsHotKey(sym, state, fc.hkNextPage)) - retVal = QuickPhraseGetCandWords(SM_NEXT); - else - retVal = QuickPhraseGetCandWords(SM_FIRST); - } else - retVal = IRV_DISPLAY_MESSAGE; - } - - SetMessageCount(&messageUp, 0); - if (iInCap == 2) { - if (fc.semicolonToDo == K_SEMICOLON_ENG) { - AddMessageAtLast(&messageUp, MSG_TIPS, "英文输入 "); - iCursorPos += strlen("英文输入 "); - } else { - AddMessageAtLast(&messageUp, MSG_TIPS, "自定义输入 "); - iCursorPos += strlen("自定义输入 "); - } - - if (iCodeInputCount) { - AddMessageAtLast(&messageUp, MSG_INPUT, "%s", strCodeInput); - } - - if (retVal != IRV_DISPLAY_CANDWORDS) { - SetMessageCount(&messageDown, 0); - if (iCodeInputCount) - AddMessageAtLast - (&messageDown, MSG_TIPS, "按 Enter 输入英文"); - else - AddMessageAtLast - (&messageDown, MSG_TIPS, "空格输入;Enter输入;"); - } - } else { - SetMessageCount(&messageDown, 0); - AddMessageAtLast(&messageDown, MSG_TIPS, "按 Enter 输入英文"); - AddMessageAtLast(&messageUp, MSG_INPUT, strCodeInput); - } - } - } else if ((bLastIsNumber && fc.bEngPuncAfterNumber) - && (IsHotKey(sym, state, FCITX_PERIOD) - || IsHotKey(sym, state, FCITX_SEMICOLON) - || IsHotKey(sym, state, FCITX_COMMA)) - && !iCandWordCount) { - cLastIsAutoConvert = sym; - bLastIsNumber = False; - retVal = IRV_TO_PROCESS; - } else { - if (fcitxProfile.bChnPunc) { - char *pPunc = NULL; - - pstr = NULL; - if (state == KEY_NONE) - pPunc = GetPunc(sym); - - if (pPunc) { - strStringGet[0] = '\0'; - if (!bIsInLegend) - pstr = im[gs.iIMIndex].GetCandWord(0); - if (pstr) - strcpy(strStringGet, pstr); - strcat(strStringGet, pPunc); - SetMessageCount(&messageDown, 0); - SetMessageCount(&messageUp, 0); - - retVal = IRV_PUNC; - } else if ((IsHotKey(sym, state, FCITX_BACKSPACE) || IsHotKey(sym, state, FCITX_CTRL_H)) - && cLastIsAutoConvert) { - char *pPunc; - - DoForwardEvent(call_data); - pPunc = GetPunc(cLastIsAutoConvert); - if (pPunc) - SendHZtoClient(call_data, pPunc); - - retVal = IRV_DO_NOTHING; - } else if (IsHotKeySimple(sym, state)) { - if (IsHotKeyDigit(sym, state)) - bLastIsNumber = True; - else { - bLastIsNumber = False; - if (IsHotKey(sym, state, FCITX_SPACE)) - retVal = IRV_DONOT_PROCESS_CLEAN; //为了与mozilla兼容 - else { - strStringGet[0] - = '\0'; - if (!bIsInLegend) - pstr = im[gs.iIMIndex].GetCandWord(0); - if (pstr) - strcpy(strStringGet, pstr); - iLen = strlen(strStringGet); - SetMessageCount(&messageDown, 0); - SetMessageCount(&messageUp, 0); - strStringGet[iLen] = sym; - strStringGet[iLen + 1] = '\0'; - retVal = IRV_ENG; - } - } - } - } - cLastIsAutoConvert = 0; - } - } - } - - if (retVal == IRV_TO_PROCESS) { - if (IsHotKey(sym, state, FCITX_ESCAPE)) { - if (iCodeInputCount || iInCap || bIsInLegend) - retVal = IRV_CLEAN; - else - retVal = IRV_DONOT_PROCESS; - } else if (IsHotKey(sym, state, FCITX_CTRL_5)) { - ReloadConfig(); - retVal = IRV_DO_NOTHING; - } else if (IsHotKey(sym, state, FCITX_ENTER)) { - if (iInCap) { - if (!iCodeInputCount) - strcpy(strStringGet, ";"); - else - strcpy(strStringGet, strCodeInput); - retVal = IRV_PUNC; - SetMessageCount(&messageDown, 0); - SetMessageCount(&messageUp, 0); - iInCap = 0; - } else if (!iCodeInputCount) - retVal = IRV_DONOT_PROCESS; - else { - switch (fc.enterToDo) { - case K_ENTER_NOTHING: - retVal = IRV_DO_NOTHING; - break; - case K_ENTER_CLEAN: - retVal = IRV_CLEAN; - break; - case K_ENTER_SEND: - SetMessageCount(&messageDown, 0); - SetMessageCount(&messageUp, 0); - strcpy(strStringGet, strCodeInput); - retVal = IRV_ENG; - break; - } - } - } else if (IsHotKeySimple(sym, state)) - retVal = IRV_DONOT_PROCESS_CLEAN; - else - retVal = IRV_DONOT_PROCESS; - } - } - } - } - } - - if (retVal == IRV_TO_PROCESS || retVal == IRV_DONOT_PROCESS) { - if (IsHotKey(sym, state, fc.hkCorner)) - retVal = ChangeCorner(); - else if (IsHotKey(sym, state, fc.hkPunc)) - retVal = ChangePunc(); - else if (IsHotKey(sym, state, fc.hkLegend)) - retVal = ChangeLegend(); - else if (IsHotKey(sym, state, fc.hkTrack)) - retVal = ChangeTrack(); - else if (IsHotKey(sym, state, fc.hkGBT)) - retVal = ChangeGBKT(); - else if (IsHotKey(sym, state, fc.hkHideMainWindow)) { - if (bMainWindow_Hiden) { - bMainWindow_Hiden = False; - if (!fc.bUseDBus) { - DisplayMainWindow(); - DrawMainWindow(); - } - } else { - bMainWindow_Hiden = True; - if (!fc.bUseDBus) - XUnmapWindow(dpy, mainWindow.window); - } - retVal = IRV_DO_NOTHING; - } else if (IsHotKey(sym, state, fc.hkSaveAll)) { - SaveIM(); - SetMessageCount(&messageDown, 0); - AddMessageAtLast(&messageDown, MSG_TIPS, "词库已保存"); - retVal = IRV_DISPLAY_MESSAGE; - } else if (IsHotKey(sym, state, fc.hkVK)) - SwitchVK(); -#ifdef _ENABLE_RECORDING - else if (IsHotKey(sym, state, fc.hkRecording)) - ChangeRecording(); - else if (IsHotKey(sym, state, fc.hkResetRecording)) - ResetRecording(); -#endif - } - } - - switch (retVal) { - case IRV_DO_NOTHING: - break; - case IRV_TO_PROCESS: - case IRV_DONOT_PROCESS: - case IRV_DONOT_PROCESS_CLEAN: - DoForwardEvent(call_data); - - if (retVal != IRV_DONOT_PROCESS_CLEAN) - return; - case IRV_CLEAN: - ResetInput(); - ResetInputWindow(); - CloseInputWindow(); - - return; - case IRV_DISPLAY_CANDWORDS: - inputWindow.bShowNext = inputWindow.bShowPrev = False; - if (bIsInLegend) { - if (iCurrentLegendCandPage > 0) - inputWindow.bShowPrev = True; - if (iCurrentLegendCandPage < iLegendCandPageCount) - inputWindow.bShowNext = True; - } else { - if (iCurrentCandPage > 0) - inputWindow.bShowPrev = True; - if (iCurrentCandPage < iCandPageCount) - inputWindow.bShowNext = True; - } - - DisplayInputWindow(); - if (!fc.bUseDBus) { - DrawInputWindow(); - } - - break; - case IRV_DISPLAY_LAST: - inputWindow.bShowNext = inputWindow.bShowPrev = False; - SetMessageCount(&messageUp, 0); - AddMessageAtLast(&messageUp, MSG_INPUT, "%c", strCodeInput[0]); - SetMessageCount(&messageDown, 0); - AddMessageAtLast(&messageDown, MSG_TIPS, "%s", strStringGet); - DisplayInputWindow(); - if (!fc.bUseDBus) { - DrawInputWindow(); - } - - break; - case IRV_DISPLAY_MESSAGE: - inputWindow.bShowNext = False; - inputWindow.bShowPrev = False; - - DisplayInputWindow(); - if (!fc.bUseDBus) { - DrawInputWindow(); - } - - break; - case IRV_GET_LEGEND: - SendHZtoClient(call_data, strStringGet); - iHZInputed += (int) (utf8_strlen(strStringGet)); //粗略统计字数 - if (iLegendCandWordCount) { - inputWindow.bShowNext = inputWindow.bShowPrev = False; - if (iCurrentLegendCandPage > 0) - inputWindow.bShowPrev = True; - if (iCurrentLegendCandPage < iLegendCandPageCount) - inputWindow.bShowNext = True; - bLastIsNumber = False; - iCodeInputCount = 0; - DisplayInputWindow(); - if (!fc.bUseDBus) { - DrawInputWindow(); - } - } else { - ResetInput(); - CloseInputWindow(); - } - - break; - case IRV_GET_CANDWORDS: - SendHZtoClient(call_data, strStringGet); - bLastIsNumber = False; - if (fc.bPhraseTips && im[gs.iIMIndex].PhraseTips && !bVK) - DoPhraseTips(); - iHZInputed += (int) (utf8_strlen(strStringGet)); - - if (bVK || (!messageDown.msgCount && (!fc.bPhraseTips || (fc.bPhraseTips && !lastIsSingleHZ)))) - CloseInputWindow(); - else { - DisplayInputWindow(); - if (!fc.bUseDBus) { - DrawInputWindow(); - } - } - - ResetInput(); - lastIsSingleHZ = 0; - break; - case IRV_ENG: - //如果处于中文标点模式,应该将其中的标点转换为全角 - if (fcitxProfile.bChnPunc && fc.bConvertPunc) - ConvertPunc(); - case IRV_PUNC: - iHZInputed += (int) (utf8_strlen(strStringGet)); //粗略统计字数 - ResetInput(); - if (!messageDown.msgCount) - CloseInputWindow(); - case IRV_GET_CANDWORDS_NEXT: - SendHZtoClient(call_data, strStringGet); - bLastIsNumber = False; - lastIsSingleHZ = 0; - - if (retVal == IRV_GET_CANDWORDS_NEXT || lastIsSingleHZ == -1) { - iHZInputed += (int) (utf8_strlen(strStringGet)); //粗略统计字数 - DisplayInputWindow(); - DrawInputWindow(); - } - - break; - default: - ; - } - - //计算打字速度的功能 - if (retVal == IRV_DISPLAY_MESSAGE || retVal == IRV_DISPLAY_CANDWORDS || retVal == IRV_PUNC) { - if (!bStartRecordType) { - bStartRecordType = True; - timeStart = time(NULL); - } - } -} - -Bool IsHotKey(KeySym sym, int state, HOTKEYS * hotkey) -{ - state &= KEY_CTRL_ALT_SHIFT_COMP; - if (sym == hotkey[0].sym && (hotkey[0].state == state) ) - return True; - if (sym == hotkey[1].sym && (hotkey[1].state == state) ) - return True; - return False; -} - -INPUT_RETURN_VALUE ChangeCorner(void) -{ - ResetInput(); - ResetInputWindow(); - - fcitxProfile.bCorner = !fcitxProfile.bCorner; - - SwitchIM(gs.iIMIndex); - - if (!fc.bUseDBus) { - DrawMainWindow(); - CloseInputWindow(); - } -#ifdef _ENABLE_DBUS - else - updateProperty(&corner_prop); -#endif - - SaveProfile(); - - return IRV_DO_NOTHING; -} - -INPUT_RETURN_VALUE ChangePunc(void) -{ - ResetInput(); - ResetInputWindow(); - - fcitxProfile.bChnPunc = !fcitxProfile.bChnPunc; - - SwitchIM(gs.iIMIndex); - - if (!fc.bUseDBus) { - DrawMainWindow(); - CloseInputWindow(); - } -#ifdef _ENABLE_DBUS - else - updateProperty(&punc_prop); -#endif - return IRV_DO_NOTHING; -} - -INPUT_RETURN_VALUE ChangeGBKT(void) -{ - fcitxProfile.bUseGBKT = !fcitxProfile.bUseGBKT; - ResetInput(); - ResetInputWindow(); - - if (!fc.bUseDBus) { - DrawMainWindow(); - CloseInputWindow(); - } - - SaveProfile(); - -#ifdef _ENABLE_DBUS - if (fc.bUseDBus) - updateProperty(&gbkt_prop); -#endif - - return IRV_CLEAN; -} - -INPUT_RETURN_VALUE ChangeLegend(void) -{ - fcitxProfile.bUseLegend = !fcitxProfile.bUseLegend; - ResetInput(); - - if (!fc.bUseDBus) { - ResetInputWindow(); - - DrawMainWindow(); - CloseInputWindow(); - } - - SaveProfile(); - -#ifdef _ENABLE_DBUS - if (fc.bUseDBus) - updateProperty(&legend_prop); -#endif - return IRV_CLEAN; -} - -INPUT_RETURN_VALUE ChangeTrack(void) -{ - fcitxProfile.bTrackCursor = !fcitxProfile.bTrackCursor; - SaveProfile(); - - return IRV_DO_NOTHING;; -} - -void ChangeLock(void) -{ - fcitxProfile.bLocked = !fcitxProfile.bLocked; - - if (!fc.bUseDBus) - DrawMainWindow(); - - SaveProfile(); -} - -#ifdef _ENABLE_RECORDING -void ChangeRecording(void) -{ - fcitxProfile.bRecording = !fcitxProfile.bRecording; - ResetInput(); - ResetInputWindow(); - CloseInputWindow(); - - CloseRecording(); - if (fcitxProfile.bRecording) - OpenRecording(True); - - SaveProfile(); -} - -void ResetRecording(void) -{ - if (fpRecord) { - fclose(fpRecord); - fpRecord = NULL; - bWrittenRecord = False; - } - - if (fcitxProfile.bRecording) - OpenRecording(False); -} -#endif - -void SwitchIM(INT8 index) -{ - INT8 iLastIM; - - if (index != (INT8) - 2 && bVK) - return; - - iLastIM = (gs.iIMIndex >= iIMCount) ? (iIMCount - 1) : gs.iIMIndex; - if (index == (INT8) - 1) { - if (gs.iIMIndex == (iIMCount - 1)) - gs.iIMIndex = 0; - else - gs.iIMIndex++; - } else if (index != (INT8) - 2) { - if (index >= iIMCount) - gs.iIMIndex = iIMCount - 1; - else { - gs.iIMIndex = index; - } - } - - if (!fc.bUseDBus) { - XResizeWindow(dpy, mainWindow.window, sc.skinMainBar.backImg.width, sc.skinMainBar.backImg.height); - DrawMainWindow(); - } - - if (index != (INT8) - 2) { - if (im[iLastIM].Save) - im[iLastIM].Save(); - if (im[gs.iIMIndex].Init) - im[gs.iIMIndex].Init(); - } - - ResetInput(); - CloseInputWindow(); - - SaveProfile(); - -#ifdef _ENABLE_DBUS - if (fc.bUseDBus) { - - if ((index == (INT8) - 2) || (index == (INT8) - 2)) { - strcpy(logo_prop.label, "Fcitx"); - iState = IS_ENG; - } else { - int iIndex = GetCurrentState(); - - if (iIndex == IS_CHN) { - strcpy(logo_prop.label, im[gs.iIMIndex].strName); - iState = IS_CHN; - } - } - - updateProperty(&logo_prop); - updateProperty(&state_prop); - } -#endif -} - -void SelectIM(int imidx) -{ - INT8 iLastIM; - gs.iIMIndex = imidx; - - iLastIM = (gs.iIMIndex >= iIMCount) ? (iIMCount - 1) : gs.iIMIndex; - - if (im[iLastIM].Save) - im[iLastIM].Save(); - if (im[gs.iIMIndex].Init) - im[gs.iIMIndex].Init(); - ResetInput(); - DrawMainWindow(); -} - -void DoPhraseTips(void) -{ - if (!fc.bPhraseTips) - return; - - if (im[gs.iIMIndex].PhraseTips()) - lastIsSingleHZ = -1; - else - lastIsSingleHZ = 0; -} - -void -RegisterNewIM(char *strName, - char *strIconName, - void (*ResetIM) (void), - INPUT_RETURN_VALUE(*DoInput) (unsigned int, unsigned int, int), - INPUT_RETURN_VALUE(*GetCandWords) (SEARCH_MODE), - char *(*GetCandWord) (int), - char *(*GetLegendCandWord) (int), - Bool(*PhraseTips) (void), - void (*Init) (void), - void (*Save) (void), - void (*Destroy) (INT8), - FcitxAddon* addon) -{ -#ifdef _DEBUG - FcitxLog(DEBUG, "REGISTER %s\n", strName); -#endif - strcpy(im[iIMCount].strName, strName); - strcpy(im[iIMCount].strIconName, strIconName); - im[iIMCount].ResetIM = ResetIM; - im[iIMCount].DoInput = DoInput; - im[iIMCount].GetCandWords = GetCandWords; - im[iIMCount].GetCandWord = GetCandWord; - im[iIMCount].GetLegendCandWord = GetLegendCandWord; - im[iIMCount].PhraseTips = PhraseTips; - im[iIMCount].Init = Init; - im[iIMCount].Save = Save; - im[iIMCount].Destroy = Destroy; - memset(&im[iIMCount].image, 0, sizeof(FcitxImage)); - strcpy(im[iIMCount].image.img_name, strIconName); - strcat(im[iIMCount].image.img_name, ".png"); - im[iIMCount].icon = NULL; - im[iIMCount].addonInfo = addon; - - - iIMCount++; -} - -Bool IsIM(char *strName) -{ - if (strstr(im[gs.iIMIndex].strName, strName)) - return True; - - return False; -} - -void SaveIM(void) -{ - int i = 0; - for (i = 0; i < iIMCount; i++) { - if (im[i].Save) - im[i].Save(); - } -} - -void UnloadIM() -{ - INT8 i; - if (im) { - for (i = 0; i < iIMCount; i++) { - DestroyImage(&im[i].icon); - if (im[i].Destroy) - im[i].Destroy(i); - } - free(im); - im = NULL; - } -} - -void SetIM(void) -{ - INT8 i, j, k = 0, l; - Bool bFlag[INPUT_METHODS]; - if (fc.inputMethods[IM_TABLE]) - LoadTableInfo(); - - iIMCount = tbl.iTableCount; - if (fc.inputMethods[IM_PY]) - iIMCount++; - if (fc.inputMethods[IM_SP]) - iIMCount++; - if (fc.inputMethods[IM_QW]) - iIMCount++; - - iIMCount += EIM_MAX; - if (!iIMCount) - iIMCount = 1; - - im = (IM *) malloc(sizeof(IM) * iIMCount); - iIMCount = 0; - - /* 对输入法的次序进行添加 */ - for (i = 0; i < INPUT_METHODS; i++) - bFlag[i] = False; - - for (i = 0; i < INPUT_METHODS; i++) { - l = 0; - for (j = 0; j < INPUT_METHODS; j++) { - if (!bFlag[j]) { - k = j; - l = 1; - } - } - - l = 0; - for (j = (INPUT_METHODS - 1); j >= 0; j--) { - if ((fc.inputMethods[k] >= fc.inputMethods[j]) && !bFlag[j]) { - k = j; - l = 1; - } - } - - if (!l) - break; - - bFlag[k] = True; - if (fc.inputMethods[k] > 0) { - switch (k) { - case IM_PY: - RegisterNewIM(strNameOfPinyin, strIconNameOfPinyin, - ResetPYStatus, DoPYInput, PYGetCandWords, - PYGetCandWord, PYGetLegendCandWord, NULL, PYInit, SavePY, NULL, NULL); - break; - case IM_SP: - RegisterNewIM(strNameOfShuangpin, strIconNameOfShuangpin, - ResetPYStatus, DoPYInput, PYGetCandWords, - PYGetCandWord, PYGetLegendCandWord, NULL, SPInit, SavePY, NULL, NULL); - break; - case IM_QW: - RegisterNewIM(strNameOfQuwei, strIconNameOfQuwei, NULL, - DoQWInput, QWGetCandWords, QWGetCandWord, NULL, NULL, NULL, NULL, NULL, NULL); - break; - case IM_TABLE: - for (l = 0; l < tbl.iTableCount; l++) { - TABLE *table = (TABLE *) utarray_eltptr(tbl.table, l); - RegisterNewIM(table->strName, table->strIconName, - TableResetStatus, DoTableInput, - TableGetCandWords, TableGetCandWord, - TableGetLegendCandWord, TablePhraseTips, TableInit, SaveTableIM, FreeTableIM, NULL); - table->iIMIndex = iIMCount - 1; - } - default: - break; - } - } - } - - if (fc.bEnableAddons) - LoadExtraIM(); - - if ((!fc.inputMethods[IM_SP] && (!fc.inputMethods[IM_TABLE] || !tbl.iTableCount)) && !iIMCount) //至少应该有一种输入法 - RegisterNewIM(strNameOfPinyin, strIconNameOfPinyin, ResetPYStatus, - DoPYInput, PYGetCandWords, PYGetCandWord, PYGetLegendCandWord, NULL, PYInit, NULL, NULL, NULL); - - SwitchIM(gs.iIMIndex); -} - -void ReloadConfig() -{ - LoadConfig(); - if (fc.inputMethods[IM_SP]) - LoadSPData(); - - if (!fc.bUseDBus) { - if (!mainWindow.window) - CreateMainWindow(); - if (fc.hideMainWindow != HM_HIDE) { - DisplayMainWindow(); - DrawMainWindow(); - } -#ifdef _ENABLE_TRAY - if (!tray.window) { - CreateTrayWindow(); - DrawTrayWindow(INACTIVE_ICON, 0, 0, tray.size, tray.size); - } -#endif - if (!aboutWindow.window) - CreateAboutWindow(); - - DisplaySkin(fc.skinType); - } else { - XUnmapWindow(dpy, mainWindow.window); -#ifdef _ENABLE_TRAY - XDestroyWindow(dpy, tray.window); - tray.window = (Window) NULL; - tray.bTrayMapped = False; -#endif - } - - SaveIM(); - - UnloadIM(); - - LoadAddonInfo(); - - SetIM(); - if (!fc.bUseDBus) { -#ifndef _ENABLE_PANGO - CreateFont(); -#endif - CalculateInputWindowHeight(); - } - - FreeQuickPhrase(); - LoadQuickPhrase(); - - FreeAutoEng(); - LoadAutoEng(); - - FreePunc(); - LoadPuncDict(); - SwitchIM(-2); - if (!fc.bUseDBus) { - DrawMainWindow(); - DisplaySkin(fc.skinType); - } -} diff -Nru fcitx-4.0.1/src/core/ime.h fcitx-4.1.1/src/core/ime.h --- fcitx-4.0.1/src/core/ime.h 2010-12-08 03:39:04.000000000 +0000 +++ fcitx-4.1.1/src/core/ime.h 1970-01-01 00:00:00.000000000 +0000 @@ -1,130 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2002~2005 by Yuking * - * yuking_net@sohu.com * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * - ***************************************************************************/ -/** - * @file ime.h - * @author Yuking yuking_net@sohu.com - * @date 2008-1-16 - * - * @brief 按键和输入法通用功能处理 - * - * - */ - -#ifndef _IME_H -#define _IME_H - -#include -#include -#include "core/xim.h" -#include "fcitx-config/hotkey.h" -#include "core/fcitx.h" -#include "tools/utf8.h" -#include "fcitx-config/fcitx-config.h" -#include "core/addon.h" - -#define HOT_KEY_COUNT 2 -#define TEMP_FILE "FCITX_DICT_TEMP" - -typedef enum _INPUT_METHOD { - IM_PY = 0, - IM_SP, - IM_QW, - IM_TABLE, - IM_EXTRA -} INPUT_METHOD; - -typedef struct _SINGLE_HZ { - char strHZ[UTF8_MAX_LENGTH + 1]; -} SINGLE_HZ; - -typedef enum _KEY_RELEASED { - KR_OTHER = 0, - KR_CTRL, - KR_2ND_SELECTKEY, - KR_3RD_SELECTKEY, -} KEY_RELEASED; - -typedef struct IM{ - char strName[MAX_IM_NAME + 1]; - char strIconName[MAX_IM_NAME + 1]; - void (*ResetIM) (void); - INPUT_RETURN_VALUE (*DoInput) (unsigned int, unsigned int, int); - INPUT_RETURN_VALUE (*GetCandWords) (SEARCH_MODE); - char *(*GetCandWord) (int); - char *(*GetLegendCandWord) (int); - Bool (*PhraseTips) (void); - void (*Init) (void); - void (*Save) (void); - void (*Destroy) (INT8 im); - FcitxImage image; - cairo_surface_t *icon; - FcitxAddon *addonInfo; -} IM; - -typedef struct FcitxState { - char *font; - char *menuFont; - INT8 iIMIndex; - Bool bMutexInited; -} FcitxState; - -void ProcessKey (IMForwardEventStruct * call_data); -void ResetInput (void); -void CloseIM (IMForwardEventStruct * call_data); -void ChangeIMState (); -Bool IsHotKey(KeySym sym, int state, HOTKEYS * hotkey); -INPUT_RETURN_VALUE ChangeCorner (void); -INPUT_RETURN_VALUE ChangePunc (void); -INPUT_RETURN_VALUE ChangeLegend (void); -INPUT_RETURN_VALUE ChangeTrack (void); -INPUT_RETURN_VALUE ChangeGBKT (void); -void ChangeLock (void); - -#ifdef _ENABLE_RECORDING -void ChangeRecording (void); -void ResetRecording (void); -#endif - -void RegisterNewIM (char *strName, - char *strIconName, - void (*ResetIM) (void), - INPUT_RETURN_VALUE (*DoInput) (unsigned int, unsigned int, int), - INPUT_RETURN_VALUE (*GetCandWords) (SEARCH_MODE), - char *(*GetCandWord) (int), - char *(*GetLegendCandWord) (int), - Bool (*PhraseTips) (void), - void (*Init) (void), - void (*Save) (void), - void (*Destroy) (INT8), - FcitxAddon* addon); -void SwitchIM (INT8 index); -void DoPhraseTips (); -Bool IsIM (char *strName); -void SaveIM (void); -void UnloadIM(); -void SetIM (void); -void ConvertPunc (void); -void ReloadConfig(); -void SelectIM(int imidx); -void SelectVK(int vkidx); - -extern FcitxState gs; - -#endif diff -Nru fcitx-4.0.1/src/core/im.h fcitx-4.1.1/src/core/im.h --- fcitx-4.0.1/src/core/im.h 2010-12-15 17:50:48.000000000 +0000 +++ fcitx-4.1.1/src/core/im.h 1970-01-01 00:00:00.000000000 +0000 @@ -1,82 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2010~2010 by CSSlayer * - * wengxt@gmail.com * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * - ***************************************************************************/ -#ifndef _IM_H_ -#define _IM_H_ - -#define MAX_IM_NAME (8 * 6) - -#define MAX_CAND_LEN 127 -#define MAX_TIPS_LEN 9 - -#define MAX_CAND_WORD 10 -#define MAX_USER_INPUT 300 - -typedef enum _SEARCH_MODE { - SM_FIRST, - SM_NEXT, - SM_PREV -} SEARCH_MODE; - -typedef enum _INPUT_RETURN_VALUE { - //IRV_UNKNOWN = -1, - IRV_DO_NOTHING = 0, /* do nothing */ - IRV_DONOT_PROCESS, /* key will be forward */ - IRV_DONOT_PROCESS_CLEAN, /* key will be forward and process as IRV_CLEAN */ - IRV_CLEAN, /* reset input */ - IRV_TO_PROCESS, /* key will passed to next flow*/ - IRV_DISPLAY_MESSAGE, /* it's a message, so next and prev will not be shown */ - IRV_DISPLAY_CANDWORDS, /* the only different with message it it will show next and prev button */ - IRV_DISPLAY_LAST, /* display the last input word */ - IRV_PUNC, - IRV_ENG, - IRV_GET_LEGEND, /* legend word */ - IRV_GET_CANDWORDS, /* send the input to client, close input window */ - IRV_GET_CANDWORDS_NEXT /* send the input to client, dont close input window */ -} INPUT_RETURN_VALUE; - -typedef struct { - char Name[MAX_IM_NAME + 1]; - char IconName[MAX_IM_NAME + 1]; - - void (*Reset) (void); - INPUT_RETURN_VALUE (*DoInput) (unsigned int, unsigned int, int); - INPUT_RETURN_VALUE (*GetCandWords)(SEARCH_MODE); - char *(*GetCandWord) (int); - int (*Init) (char *arg); - int (*Destroy) (void); - void *Bihua; - - char *CodeInput; - char *StringGet; - char (*CandTable)[MAX_CAND_LEN+1]; - char (*CodeTips)[MAX_TIPS_LEN+1]; - int CandWordMax; - - int CodeLen; - int CurCandPage; - int CandWordCount; - int CandPageCount; - int SelectIndex; - int CaretPos; - void *fc; - void *profile; -}EXTRA_IM; - -#endif diff -Nru fcitx-4.0.1/src/core/internalVersion.c fcitx-4.1.1/src/core/internalVersion.c --- fcitx-4.0.1/src/core/internalVersion.c 2010-11-28 11:55:00.000000000 +0000 +++ fcitx-4.1.1/src/core/internalVersion.c 1970-01-01 00:00:00.000000000 +0000 @@ -1,27 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2002~2005 by Yuking * - * yuking_net@sohu.com * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * - ***************************************************************************/ - -#ifndef INT8 -#define INT8 char -#endif - -#include "core/fcitx.h" - -INT8 iInternalVersion = 0x03; diff -Nru fcitx-4.0.1/src/core/keys.c fcitx-4.1.1/src/core/keys.c --- fcitx-4.0.1/src/core/keys.c 2010-12-15 17:50:48.000000000 +0000 +++ fcitx-4.1.1/src/core/keys.c 1970-01-01 00:00:00.000000000 +0000 @@ -1,138 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2010~2010 by CSSlayer * - * wengxt@gmail.com * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * - ***************************************************************************/ - -/* - * Define const keys that will be used in code - */ - -#include "core/keys.h" - -HOTKEYS FCITX_DELETE[2] = -{ - {NULL, XK_Delete, 0}, - {NULL, 0, 0}, -}; - -HOTKEYS FCITX_CTRL_DELETE[2] = -{ - {NULL, XK_Delete, KEY_CTRL_COMP}, - {NULL, 0, 0}, -}; - -HOTKEYS FCITX_BACKSPACE[2] = -{ - {NULL, XK_BackSpace, 0}, - {NULL, 0, 0}, -}; - -HOTKEYS FCITX_CTRL_H[2] = -{ - {NULL, XK_H, KEY_CTRL_COMP}, - {NULL, 0, 0}, -}; - -HOTKEYS FCITX_HOME[2] = -{ - {NULL, XK_Home, 0}, - {NULL, 0, 0}, -}; - -HOTKEYS FCITX_END[2] = -{ - {NULL, XK_End, 0}, - {NULL, 0, 0}, -}; - -HOTKEYS FCITX_RIGHT[2] = -{ - {NULL, XK_Right, 0}, - {NULL, 0, 0}, -}; - -HOTKEYS FCITX_LEFT[2] = -{ - {NULL, XK_Left, 0}, - {NULL, 0, 0}, -}; - -HOTKEYS FCITX_ESCAPE[2] = -{ - {NULL, XK_Escape, 0}, - {NULL, 0, 0}, -}; - -HOTKEYS FCITX_ENTER[2] = -{ - {NULL, XK_Return, 0}, - {NULL, 0, 0}, -}; - -HOTKEYS FCITX_LCTRL_LSHIFT[2] = -{ - {NULL, XK_Shift_L, KEY_CTRL_SHIFT_COMP}, - {NULL, XK_Control_L, KEY_CTRL_SHIFT_COMP}, -}; - -HOTKEYS FCITX_SEMICOLON[2] = -{ - {NULL, XK_semicolon, KEY_NONE}, - {NULL, 0, 0}, -}; - -HOTKEYS FCITX_SEPARATOR[2] = -{ - {NULL, XK_apostrophe, KEY_NONE}, - {NULL, 0, 0}, -}; - -HOTKEYS FCITX_COMMA[2] = -{ - {NULL, XK_comma, KEY_NONE}, - {NULL, 0, 0}, -}; - -HOTKEYS FCITX_PERIOD[2] = -{ - {NULL, XK_period, KEY_NONE}, - {NULL, 0, 0}, -}; - -HOTKEYS FCITX_SPACE[2] = -{ - {NULL, XK_space, KEY_NONE}, - {NULL, 0, 0}, -}; - -HOTKEYS FCITX_CTRL_5[2] = -{ - {NULL, XK_5, KEY_CTRL_COMP}, - {NULL, 0, 0}, -}; - -Bool IsHotKeyModifierCombine(KeySym sym, int state) -{ - if (sym == XK_Control_L - || sym == XK_Control_R - || sym == XK_Shift_L - || sym == XK_Shift_R ) - return True; - - return False; -} diff -Nru fcitx-4.0.1/src/core/keys.h fcitx-4.1.1/src/core/keys.h --- fcitx-4.0.1/src/core/keys.h 2010-12-08 04:24:36.000000000 +0000 +++ fcitx-4.1.1/src/core/keys.h 1970-01-01 00:00:00.000000000 +0000 @@ -1,46 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2010~2010 by CSSlayer * - * wengxt@gmail.com * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * - ***************************************************************************/ - -/* - * Define const keys that will be used in code - */ -#include - -#include "fcitx-config/hotkey.h" - -Bool IsHotKeyModifierCombine(KeySym sym, int state); - -extern HOTKEYS FCITX_DELETE[2]; -extern HOTKEYS FCITX_CTRL_DELETE[2]; -extern HOTKEYS FCITX_BACKSPACE[2]; -extern HOTKEYS FCITX_CTRL_H[2]; -extern HOTKEYS FCITX_HOME[2]; -extern HOTKEYS FCITX_END[2]; -extern HOTKEYS FCITX_RIGHT[2]; -extern HOTKEYS FCITX_LEFT[2]; -extern HOTKEYS FCITX_ESCAPE[2]; -extern HOTKEYS FCITX_ENTER[2]; -extern HOTKEYS FCITX_LCTRL_LSHIFT[2]; -extern HOTKEYS FCITX_SEMICOLON[2]; -extern HOTKEYS FCITX_SPACE[2]; -extern HOTKEYS FCITX_COMMA[2]; -extern HOTKEYS FCITX_PERIOD[2]; -extern HOTKEYS FCITX_CTRL_5[2]; -extern HOTKEYS FCITX_SEPARATOR[2]; diff -Nru fcitx-4.0.1/src/core/main.c fcitx-4.1.1/src/core/main.c --- fcitx-4.0.1/src/core/main.c 2010-12-17 04:21:31.000000000 +0000 +++ fcitx-4.1.1/src/core/main.c 1970-01-01 00:00:00.000000000 +0000 @@ -1,318 +0,0 @@ -/*************************************************************************** - * 小企鹅中文输入法(Free Chinese Input Toys for X, FCITX) * - * 由Yuking(yuking_net@sohu.com)编写 * - * 协议: GPL * - * FCITX( A Chinese XIM Input Method) by Yuking (yuking_net@sohu.com) * - * * - * Copyright (C) 2002~2005 by Yuking * - * yuking_net@sohu.com * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * - ***************************************************************************/ -/** - * @file main.c - * @author Yuking yuking_net@sohu.com - * @date 2008-1-16 - * - * @brief 程序主入口 - * - * - */ - -#include -#include - -#include "core/fcitx.h" - -#include "tools/tools.h" - -#include "core/MyErrorsHandlers.h" -#include "core/ime.h" -#include "core/addon.h" -#include "ui/ui.h" -#include "ui/MainWindow.h" -#include "ui/InputWindow.h" -#include "ui/skin.h" -#include "ui/MenuWindow.h" -#include "ui/font.h" - -#ifdef _ENABLE_TRAY -#include "ui/TrayWindow.h" -#include "ui/tray.h" -#endif - -#include "interface/DBus.h" - -#include "im/special/vk.h" -#include "core/ime.h" -#include "im/table/table.h" -#include "im/special/punc.h" -#include "im/pinyin/py.h" -#include "im/pinyin/sp.h" -#include "ui/AboutWindow.h" -#include "ui/MessageWindow.h" -#include "im/special/QuickPhrase.h" -#include "im/special/AutoEng.h" - -#include "tools/profile.h" - -#ifndef CODESET -#define CODESET 14 -#endif -#include - -extern Display *dpy; -extern Window ximWindow; -extern int iClientCursorX; -extern int iClientCursorY; - -extern void* remoteThread(void*); - -static void Usage(); -static void Version(); -static void InitGlobal(); - -/** - * @brief 初始化全局状态 - */ -void InitGlobal() -{ - memset(&gs, 0, sizeof(FcitxState)); -} - -/** - * @brief 主程序入口 - * - * @param argc 命令行参数个数 - * @param argv[] 命令行参数 - * - * @return - */ -int main (int argc, char *argv[]) -{ - setlocale(LC_ALL, ""); - bindtextdomain(PACKAGE, LOCALEDIR); - bind_textdomain_codeset(PACKAGE, "UTF-8"); - textdomain(PACKAGE); - - XEvent event; - int c; /* 用于保存用户输入的参数 */ - Bool bBackground = True; - char *imname=(char *)NULL; - pthread_t pid; - int overrideDelay = -1; - - InitGlobal(); - - SetMyExceptionHandler(); /* 处理信号 */ - - /* - * 先初始化 X 再加载配置文件,因为设置快捷键从 keysym 转换到 - * keycode 的时候需要 Display - */ - if (!InitX ()) - exit (1); - - /* - * 加载用户配置文件 - */ - LoadConfig (); - - while ((c = getopt(argc, argv, "dDn:s:vh")) != -1) { - switch (c) { - case 'd': - /* nothing to do */ - break; - case 'D': - bBackground = False; - break; - case 'n': - imname=optarg; - break; - case 'v': /* 输出版本号 */ - Version(); - return 0; - case 's': - overrideDelay = atoi(optarg); - break; - case 'h': /* h或者其他任何不合法的参数均,输出参数帮助信息 */ - case '?': - Usage(); - return 0; - } - } - - /* 以后台方式运行 */ - if (bBackground) - InitAsDaemon(); - - if (overrideDelay < 0) - overrideDelay = fc.iDelayStart; - - if (overrideDelay > 0) - sleep(overrideDelay); - -#ifdef _ENABLE_DBUS - /* - * 启用DBus时初始化DBus - */ - if (fc.bUseDBus && !InitDBus ()) - exit (5); -#endif - - /* - * 加载皮肤配置文件,一般在share/fcixt/skin/skinname dir/fcitx_skin.conf中,制作皮肤的时候配置好 - */ - LoadSkinConfig(); - -#ifndef _ENABLE_PANGO - InitFont(); - - /* 加载皮肤和配置之后才有字体 */ - CreateFont(); -#endif - - /* 根据字体计算输入窗口的高度 */ - CalculateInputWindowHeight (); - - /* - * 加载配置文件,这个配置文件不是用户配置的,而是用于记录fctix的运行状态的 - * 比如是全角还是半角等等。 - */ - LoadProfile (); - - LoadAddonInfo(); - - iClientCursorX = fcitxProfile.iInputWindowOffsetX; - iClientCursorY = fcitxProfile.iInputWindowOffsetY; - - /* 加载标点字典文件 */ - LoadPuncDict (); - /* 加载快速词组 */ - LoadQuickPhrase (); - /* - * 从用户配置目录中读取AutoEng.dat - * 如果不存在,则从 DATADIR/fcitx/data/AutoEng.dat) - * 读取需要自动转换到英文输入状态的情况的数据 - */ - LoadAutoEng (); - - /* 以下是界面的处理 */ - /* 创建主窗口,即输入法状态窗口 */ - if (!fc.bUseDBus) - CreateMainWindow (); -#ifdef _ENABLE_DBUS - else - registerProperties(); -#endif - - /* 创建输入窗口 */ - CreateInputWindow (); - - /* 创建虚拟键盘窗口 */ - CreateVKWindow (); - - /* 创建菜单窗口 */ - CreateMenuWindow( ); - - /* 创建信息提示窗口 */ - CreateMessageWindow(); - - /* 创建关于窗口 */ - if (!fc.bUseDBus) - CreateAboutWindow (); - - /* 将本程序加入到输入法组,告诉系统,使用我输入字符 */ - SetIM (); - - if (!fc.bUseDBus) { - /* 处理主窗口的显示 */ - if (fc.hideMainWindow != HM_HIDE) { - DisplayMainWindow (); - DrawMainWindow (); - } - } - - /* 初始化XIM */ - if (!InitXIM (imname)) - exit (4); - -#ifdef _ENABLE_RECORDING - OpenRecording(True); -#endif - -#ifdef _ENABLE_DBUS - dbus_threads_init_default(); -#endif - - FcitxInitThread(); - - pthread_create(&pid, NULL, remoteThread, NULL); - -#ifdef _ENABLE_DBUS - if (fc.bUseDBus) - pthread_create(&pid, NULL, (void *)DBusLoop, NULL); -#endif - -#ifdef _ENABLE_TRAY - tray.window = (Window) NULL; - - /* 创建系统托盘窗口 */ - if (!fc.bUseDBus) { - CreateTrayWindow (); - TrayFindDock(dpy, &tray); - DrawTrayWindow (INACTIVE_ICON, 0, 0, tray.size, tray.size); - } -#endif - - DisplaySkin(fc.skinType); - - /* 主循环,即XWindow的消息循环 */ - for (;;) { - XNextEvent (dpy, &event); //等待一个事件发生 - - FcitxLock(); - - /* 处理X事件 */ - if (XFilterEvent (&event, None) == False) - MyXEventHandler (&event); - - FcitxUnlock(); - } - return 0; -} - -/** - * @brief 显示命令行参数 - */ -void Usage () -{ - printf("Usage: fcitx [OPTION]\n" - "\t-d\t\trun as daemon(default)\n" - "\t-D\t\tdon't run as daemon\n" - "\t-n[im name]\trun as specified name\n" - "\t-s[sleep time]\toverride delay start time in config file, 0 for immediate start\n" - "\t-v\t\tdisplay the version information and exit\n" - "\t-h\t\tdisplay this help and exit\n"); -} - -/** - * @brief 显示版本 - */ -void Version () -{ - printf ("fcitx version: %s\n", VERSION); -} diff -Nru fcitx-4.0.1/src/core/Makefile.am fcitx-4.1.1/src/core/Makefile.am --- fcitx-4.0.1/src/core/Makefile.am 2010-12-06 05:25:05.000000000 +0000 +++ fcitx-4.1.1/src/core/Makefile.am 1970-01-01 00:00:00.000000000 +0000 @@ -1,51 +0,0 @@ -INCLUDES = \ - -I$(top_srcdir)/lib \ - -I$(top_srcdir)/src \ - @CAIRO_XLIB_CFLAGS@ \ - @DBUS_CFLAGS@ \ - @PANGOCAIRO_CFLAGS@ \ - $(NULL) -DEFS = -DPKGDATADIR=\"$(pkgdatadir)\" -DDATADIR=\"$(datadir)\" -DLOCALEDIR=\"$(localedir)\" - -bin_PROGRAMS=fcitx -fcitx_SOURCES= IC.c IC.h\ - MyErrorsHandlers.c MyErrorsHandlers.h\ - ime.c ime.h \ - internalVersion.c \ - xim.c xim.h \ - addon.c addon.h \ - keys.c keys.h \ - main.c \ - fcitx.h im.h \ - $(NULL) - -fcitxincludedir= $(includedir)/fcitx -fcitxinclude_HEADERS= \ - im.h - -pkgconfigdir = $(libdir)/pkgconfig -pkgconfig_DATA = fcitx.pc -EXTRA_DIST = \ - fcitx.pc.in - -fcitx_LDADD=../../lib/libXimd.a \ - ../im/pinyin/libimpinyin.a \ - ../im/table/libimtable.a \ - ../im/qw/libimqw.a \ - ../im/extra/libimextra.a \ - ../im/special/libimspecial.a \ - ../tools/libtools.a \ - ../ui/libui.a \ - ../interface/libinterface.a \ - ../fcitx-config/libfcitx-config.la \ - @CAIRO_XLIB_LIBS@ \ - @DBUS_LIBS@ \ - @FONTCONFIG_LIBS@ \ - @XRENDER_LIBS@ \ - @INTLLIBS@ \ - @PANGOCAIRO_LIBS@ \ - @HOST_LIBS@ \ - $(NULL) - -fcitx_LDFLAGS = \ - $(NULL) diff -Nru fcitx-4.0.1/src/core/Makefile.in fcitx-4.1.1/src/core/Makefile.in --- fcitx-4.0.1/src/core/Makefile.in 2010-12-17 04:26:30.000000000 +0000 +++ fcitx-4.1.1/src/core/Makefile.in 1970-01-01 00:00:00.000000000 +0000 @@ -1,706 +0,0 @@ -# Makefile.in generated by automake 1.11.1 from Makefile.am. -# @configure_input@ - -# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, -# Inc. -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - -@SET_MAKE@ - - - -VPATH = @srcdir@ -pkgdatadir = $(datadir)/@PACKAGE@ -pkgincludedir = $(includedir)/@PACKAGE@ -pkglibdir = $(libdir)/@PACKAGE@ -pkglibexecdir = $(libexecdir)/@PACKAGE@ -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = @build@ -host_triplet = @host@ -bin_PROGRAMS = fcitx$(EXEEXT) -subdir = src/core -DIST_COMMON = $(fcitxinclude_HEADERS) $(srcdir)/Makefile.am \ - $(srcdir)/Makefile.in $(srcdir)/fcitx.pc.in -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/configure.in -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -mkinstalldirs = $(install_sh) -d -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = fcitx.pc -CONFIG_CLEAN_VPATH_FILES = -am__installdirs = "$(DESTDIR)$(bindir)" "$(DESTDIR)$(pkgconfigdir)" \ - "$(DESTDIR)$(fcitxincludedir)" -PROGRAMS = $(bin_PROGRAMS) -am_fcitx_OBJECTS = IC.$(OBJEXT) MyErrorsHandlers.$(OBJEXT) \ - ime.$(OBJEXT) internalVersion.$(OBJEXT) xim.$(OBJEXT) \ - addon.$(OBJEXT) keys.$(OBJEXT) main.$(OBJEXT) -fcitx_OBJECTS = $(am_fcitx_OBJECTS) -fcitx_DEPENDENCIES = ../../lib/libXimd.a ../im/pinyin/libimpinyin.a \ - ../im/table/libimtable.a ../im/qw/libimqw.a \ - ../im/extra/libimextra.a ../im/special/libimspecial.a \ - ../tools/libtools.a ../ui/libui.a ../interface/libinterface.a \ - ../fcitx-config/libfcitx-config.la -AM_V_lt = $(am__v_lt_$(V)) -am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) -am__v_lt_0 = --silent -fcitx_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(fcitx_LDFLAGS) $(LDFLAGS) -o $@ -DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles -am__mv = mv -f -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ - $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ - $(AM_CFLAGS) $(CFLAGS) -AM_V_CC = $(am__v_CC_$(V)) -am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) -am__v_CC_0 = @echo " CC " $@; -AM_V_at = $(am__v_at_$(V)) -am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) -am__v_at_0 = @ -CCLD = $(CC) -LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -AM_V_CCLD = $(am__v_CCLD_$(V)) -am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) -am__v_CCLD_0 = @echo " CCLD " $@; -AM_V_GEN = $(am__v_GEN_$(V)) -am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) -am__v_GEN_0 = @echo " GEN " $@; -SOURCES = $(fcitx_SOURCES) -DIST_SOURCES = $(fcitx_SOURCES) -am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; -am__vpath_adj = case $$p in \ - $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ - *) f=$$p;; \ - esac; -am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; -am__install_max = 40 -am__nobase_strip_setup = \ - srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` -am__nobase_strip = \ - for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" -am__nobase_list = $(am__nobase_strip_setup); \ - for p in $$list; do echo "$$p $$p"; done | \ - sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ - $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ - if (++n[$$2] == $(am__install_max)) \ - { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ - END { for (dir in files) print dir, files[dir] }' -am__base_list = \ - sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ - sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' -DATA = $(pkgconfig_DATA) -HEADERS = $(fcitxinclude_HEADERS) -ETAGS = etags -CTAGS = ctags -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -ACLOCAL = @ACLOCAL@ -ALL_LINGUAS = @ALL_LINGUAS@ -AMTAR = @AMTAR@ -AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ -AR = @AR@ -AUTOCONF = @AUTOCONF@ -AUTOHEADER = @AUTOHEADER@ -AUTOMAKE = @AUTOMAKE@ -AWK = @AWK@ -CAIRO_XLIB_CFLAGS = @CAIRO_XLIB_CFLAGS@ -CAIRO_XLIB_LIBS = @CAIRO_XLIB_LIBS@ -CC = @CC@ -CCDEPMODE = @CCDEPMODE@ -CFLAGS = @CFLAGS@ -CPP = @CPP@ -CPPFLAGS = @CPPFLAGS@ -CYGPATH_W = @CYGPATH_W@ -DATADIRNAME = @DATADIRNAME@ -DBUS_CFLAGS = @DBUS_CFLAGS@ -DBUS_LIBS = @DBUS_LIBS@ -DEFS = -DPKGDATADIR=\"$(pkgdatadir)\" -DDATADIR=\"$(datadir)\" -DLOCALEDIR=\"$(localedir)\" -DEPDIR = @DEPDIR@ -DLLTOOL = @DLLTOOL@ -DSYMUTIL = @DSYMUTIL@ -DUMPBIN = @DUMPBIN@ -ECHO_C = @ECHO_C@ -ECHO_N = @ECHO_N@ -ECHO_T = @ECHO_T@ -EGREP = @EGREP@ -EXEEXT = @EXEEXT@ -FGREP = @FGREP@ -FONTCONFIG_CFLAGS = @FONTCONFIG_CFLAGS@ -FONTCONFIG_LIBS = @FONTCONFIG_LIBS@ -GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ -GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ -GMSGFMT = @GMSGFMT@ -GMSGFMT_015 = @GMSGFMT_015@ -GREP = @GREP@ -HOST_LIBS = @HOST_LIBS@ -INCINTL = @INCINTL@ -INSTALL = @INSTALL@ -INSTALL_DATA = @INSTALL_DATA@ -INSTALL_PROGRAM = @INSTALL_PROGRAM@ -INSTALL_SCRIPT = @INSTALL_SCRIPT@ -INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ -INTLLIBS = @INTLLIBS@ -INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ -INTLTOOL_MERGE = @INTLTOOL_MERGE@ -INTLTOOL_PERL = @INTLTOOL_PERL@ -INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ -INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ -LD = @LD@ -LDFLAGS = @LDFLAGS@ -LIBICONV = @LIBICONV@ -LIBINTL = @LIBINTL@ -LIBOBJS = @LIBOBJS@ -LIBS = @LIBS@ -LIBTOOL = @LIBTOOL@ -LIPO = @LIPO@ -LN_S = @LN_S@ -LTLIBICONV = @LTLIBICONV@ -LTLIBINTL = @LTLIBINTL@ -LTLIBOBJS = @LTLIBOBJS@ -MAKEINFO = @MAKEINFO@ -MANIFEST_TOOL = @MANIFEST_TOOL@ -MD5SUM = @MD5SUM@ -MKDIR_P = @MKDIR_P@ -MSGFMT = @MSGFMT@ -MSGFMT_015 = @MSGFMT_015@ -MSGMERGE = @MSGMERGE@ -NM = @NM@ -NMEDIT = @NMEDIT@ -OBJDUMP = @OBJDUMP@ -OBJEXT = @OBJEXT@ -OTOOL = @OTOOL@ -OTOOL64 = @OTOOL64@ -PACKAGE = @PACKAGE@ -PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ -PACKAGE_NAME = @PACKAGE_NAME@ -PACKAGE_STRING = @PACKAGE_STRING@ -PACKAGE_TARNAME = @PACKAGE_TARNAME@ -PACKAGE_URL = @PACKAGE_URL@ -PACKAGE_VERSION = @PACKAGE_VERSION@ -PANGOCAIRO_CFLAGS = @PANGOCAIRO_CFLAGS@ -PANGOCAIRO_LIBS = @PANGOCAIRO_LIBS@ -PATH_SEPARATOR = @PATH_SEPARATOR@ -PKG_CONFIG = @PKG_CONFIG@ -PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ -PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ -POSUB = @POSUB@ -RANLIB = @RANLIB@ -SED = @SED@ -SET_MAKE = @SET_MAKE@ -SHELL = @SHELL@ -STRIP = @STRIP@ -TAR = @TAR@ -USE_NLS = @USE_NLS@ -VERSION = @VERSION@ -WGET = @WGET@ -XGETTEXT = @XGETTEXT@ -XGETTEXT_015 = @XGETTEXT_015@ -XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ -XMKMF = @XMKMF@ -XRENDER_CFLAGS = @XRENDER_CFLAGS@ -XRENDER_LIBS = @XRENDER_LIBS@ -X_CFLAGS = @X_CFLAGS@ -X_LIBS = @X_LIBS@ -abs_builddir = @abs_builddir@ -abs_srcdir = @abs_srcdir@ -abs_top_builddir = @abs_top_builddir@ -abs_top_srcdir = @abs_top_srcdir@ -ac_ct_AR = @ac_ct_AR@ -ac_ct_CC = @ac_ct_CC@ -ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ -am__include = @am__include@ -am__leading_dot = @am__leading_dot@ -am__quote = @am__quote@ -am__tar = @am__tar@ -am__untar = @am__untar@ -bindir = @bindir@ -build = @build@ -build_alias = @build_alias@ -build_cpu = @build_cpu@ -build_os = @build_os@ -build_vendor = @build_vendor@ -builddir = @builddir@ -datadir = @datadir@ -datarootdir = @datarootdir@ -docdir = @docdir@ -dvidir = @dvidir@ -exec_prefix = @exec_prefix@ -host = @host@ -host_alias = @host_alias@ -host_cpu = @host_cpu@ -host_os = @host_os@ -host_vendor = @host_vendor@ -htmldir = @htmldir@ -includedir = @includedir@ -infodir = @infodir@ -install_sh = @install_sh@ -libdir = @libdir@ -libexecdir = @libexecdir@ -localedir = @localedir@ -localstatedir = @localstatedir@ -mandir = @mandir@ -mkdir_p = @mkdir_p@ -oldincludedir = @oldincludedir@ -pdfdir = @pdfdir@ -prefix = @prefix@ -program_transform_name = @program_transform_name@ -psdir = @psdir@ -sbindir = @sbindir@ -sharedstatedir = @sharedstatedir@ -srcdir = @srcdir@ -sysconfdir = @sysconfdir@ -target_alias = @target_alias@ -top_build_prefix = @top_build_prefix@ -top_builddir = @top_builddir@ -top_srcdir = @top_srcdir@ -INCLUDES = \ - -I$(top_srcdir)/lib \ - -I$(top_srcdir)/src \ - @CAIRO_XLIB_CFLAGS@ \ - @DBUS_CFLAGS@ \ - @PANGOCAIRO_CFLAGS@ \ - $(NULL) - -fcitx_SOURCES = IC.c IC.h\ - MyErrorsHandlers.c MyErrorsHandlers.h\ - ime.c ime.h \ - internalVersion.c \ - xim.c xim.h \ - addon.c addon.h \ - keys.c keys.h \ - main.c \ - fcitx.h im.h \ - $(NULL) - -fcitxincludedir = $(includedir)/fcitx -fcitxinclude_HEADERS = \ - im.h - -pkgconfigdir = $(libdir)/pkgconfig -pkgconfig_DATA = fcitx.pc -EXTRA_DIST = \ - fcitx.pc.in - -fcitx_LDADD = ../../lib/libXimd.a \ - ../im/pinyin/libimpinyin.a \ - ../im/table/libimtable.a \ - ../im/qw/libimqw.a \ - ../im/extra/libimextra.a \ - ../im/special/libimspecial.a \ - ../tools/libtools.a \ - ../ui/libui.a \ - ../interface/libinterface.a \ - ../fcitx-config/libfcitx-config.la \ - @CAIRO_XLIB_LIBS@ \ - @DBUS_LIBS@ \ - @FONTCONFIG_LIBS@ \ - @XRENDER_LIBS@ \ - @INTLLIBS@ \ - @PANGOCAIRO_LIBS@ \ - @HOST_LIBS@ \ - $(NULL) - -fcitx_LDFLAGS = \ - $(NULL) - -all: all-am - -.SUFFIXES: -.SUFFIXES: .c .lo .o .obj -$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ - && { if test -f $@; then exit 0; else break; fi; }; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/core/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign src/core/Makefile -.PRECIOUS: Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(am__aclocal_m4_deps): -fcitx.pc: $(top_builddir)/config.status $(srcdir)/fcitx.pc.in - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ -install-binPROGRAMS: $(bin_PROGRAMS) - @$(NORMAL_INSTALL) - test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)" - @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ - for p in $$list; do echo "$$p $$p"; done | \ - sed 's/$(EXEEXT)$$//' | \ - while read p p1; do if test -f $$p || test -f $$p1; \ - then echo "$$p"; echo "$$p"; else :; fi; \ - done | \ - sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \ - -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ - sed 'N;N;N;s,\n, ,g' | \ - $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ - { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ - if ($$2 == $$4) files[d] = files[d] " " $$1; \ - else { print "f", $$3 "/" $$4, $$1; } } \ - END { for (d in files) print "f", d, files[d] }' | \ - while read type dir files; do \ - if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ - test -z "$$files" || { \ - echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ - $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ - } \ - ; done - -uninstall-binPROGRAMS: - @$(NORMAL_UNINSTALL) - @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ - files=`for p in $$list; do echo "$$p"; done | \ - sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ - -e 's/$$/$(EXEEXT)/' `; \ - test -n "$$list" || exit 0; \ - echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ - cd "$(DESTDIR)$(bindir)" && rm -f $$files - -clean-binPROGRAMS: - @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ - echo " rm -f" $$list; \ - rm -f $$list || exit $$?; \ - test -n "$(EXEEXT)" || exit 0; \ - list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ - echo " rm -f" $$list; \ - rm -f $$list -fcitx$(EXEEXT): $(fcitx_OBJECTS) $(fcitx_DEPENDENCIES) - @rm -f fcitx$(EXEEXT) - $(AM_V_CCLD)$(fcitx_LINK) $(fcitx_OBJECTS) $(fcitx_LDADD) $(LIBS) - -mostlyclean-compile: - -rm -f *.$(OBJEXT) - -distclean-compile: - -rm -f *.tab.c - -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/IC.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/MyErrorsHandlers.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/addon.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ime.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/internalVersion.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/keys.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/main.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/xim.Po@am__quote@ - -.c.o: -@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c $< - -.c.obj: -@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` - -.c.lo: -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs -install-pkgconfigDATA: $(pkgconfig_DATA) - @$(NORMAL_INSTALL) - test -z "$(pkgconfigdir)" || $(MKDIR_P) "$(DESTDIR)$(pkgconfigdir)" - @list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \ - for p in $$list; do \ - if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ - echo "$$d$$p"; \ - done | $(am__base_list) | \ - while read files; do \ - echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(pkgconfigdir)'"; \ - $(INSTALL_DATA) $$files "$(DESTDIR)$(pkgconfigdir)" || exit $$?; \ - done - -uninstall-pkgconfigDATA: - @$(NORMAL_UNINSTALL) - @list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \ - files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ - test -n "$$files" || exit 0; \ - echo " ( cd '$(DESTDIR)$(pkgconfigdir)' && rm -f" $$files ")"; \ - cd "$(DESTDIR)$(pkgconfigdir)" && rm -f $$files -install-fcitxincludeHEADERS: $(fcitxinclude_HEADERS) - @$(NORMAL_INSTALL) - test -z "$(fcitxincludedir)" || $(MKDIR_P) "$(DESTDIR)$(fcitxincludedir)" - @list='$(fcitxinclude_HEADERS)'; test -n "$(fcitxincludedir)" || list=; \ - for p in $$list; do \ - if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ - echo "$$d$$p"; \ - done | $(am__base_list) | \ - while read files; do \ - echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(fcitxincludedir)'"; \ - $(INSTALL_HEADER) $$files "$(DESTDIR)$(fcitxincludedir)" || exit $$?; \ - done - -uninstall-fcitxincludeHEADERS: - @$(NORMAL_UNINSTALL) - @list='$(fcitxinclude_HEADERS)'; test -n "$(fcitxincludedir)" || list=; \ - files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ - test -n "$$files" || exit 0; \ - echo " ( cd '$(DESTDIR)$(fcitxincludedir)' && rm -f" $$files ")"; \ - cd "$(DESTDIR)$(fcitxincludedir)" && rm -f $$files - -ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - mkid -fID $$unique -tags: TAGS - -TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - set x; \ - here=`pwd`; \ - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: CTAGS -CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d "$(distdir)/$$file"; then \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ - else \ - test -f "$(distdir)/$$file" \ - || cp -p $$d/$$file "$(distdir)/$$file" \ - || exit 1; \ - fi; \ - done -check-am: all-am -check: check-am -all-am: Makefile $(PROGRAMS) $(DATA) $(HEADERS) -installdirs: - for dir in "$(DESTDIR)$(bindir)" "$(DESTDIR)$(pkgconfigdir)" "$(DESTDIR)$(fcitxincludedir)"; do \ - test -z "$$dir" || $(MKDIR_P) "$$dir"; \ - done -install: install-am -install-exec: install-exec-am -install-data: install-data-am -uninstall: uninstall-am - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-am -install-strip: - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - `test -z '$(STRIP)' || \ - echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install -mostlyclean-generic: - -clean-generic: - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-am - -clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am - -distclean: distclean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -distclean-am: clean-am distclean-compile distclean-generic \ - distclean-tags - -dvi: dvi-am - -dvi-am: - -html: html-am - -html-am: - -info: info-am - -info-am: - -install-data-am: install-fcitxincludeHEADERS install-pkgconfigDATA - -install-dvi: install-dvi-am - -install-dvi-am: - -install-exec-am: install-binPROGRAMS - -install-html: install-html-am - -install-html-am: - -install-info: install-info-am - -install-info-am: - -install-man: - -install-pdf: install-pdf-am - -install-pdf-am: - -install-ps: install-ps-am - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-am - -mostlyclean-am: mostlyclean-compile mostlyclean-generic \ - mostlyclean-libtool - -pdf: pdf-am - -pdf-am: - -ps: ps-am - -ps-am: - -uninstall-am: uninstall-binPROGRAMS uninstall-fcitxincludeHEADERS \ - uninstall-pkgconfigDATA - -.MAKE: install-am install-strip - -.PHONY: CTAGS GTAGS all all-am check check-am clean clean-binPROGRAMS \ - clean-generic clean-libtool ctags distclean distclean-compile \ - distclean-generic distclean-libtool distclean-tags distdir dvi \ - dvi-am html html-am info info-am install install-am \ - install-binPROGRAMS install-data install-data-am install-dvi \ - install-dvi-am install-exec install-exec-am \ - install-fcitxincludeHEADERS install-html install-html-am \ - install-info install-info-am install-man install-pdf \ - install-pdf-am install-pkgconfigDATA install-ps install-ps-am \ - install-strip installcheck installcheck-am installdirs \ - maintainer-clean maintainer-clean-generic mostlyclean \ - mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ - pdf pdf-am ps ps-am tags uninstall uninstall-am \ - uninstall-binPROGRAMS uninstall-fcitxincludeHEADERS \ - uninstall-pkgconfigDATA - - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff -Nru fcitx-4.0.1/src/core/MyErrorsHandlers.c fcitx-4.1.1/src/core/MyErrorsHandlers.c --- fcitx-4.0.1/src/core/MyErrorsHandlers.c 2010-12-17 04:20:52.000000000 +0000 +++ fcitx-4.1.1/src/core/MyErrorsHandlers.c 1970-01-01 00:00:00.000000000 +0000 @@ -1,173 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2002~2005 by Yuking * - * yuking_net@sohu.com * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * - ***************************************************************************/ -#include "core/fcitx.h" -#ifdef HAVE_CONFIG_H -#include -#endif - -#include -#include -#include - -#ifdef HAVE_STDLIB_H -#include -#endif - -#ifdef HAVE_WAIT_H -#include -#else -#include -#endif - -#include - -#include "core/ime.h" -#include "core/MyErrorsHandlers.h" -#include "fcitx-config/xdg.h" -#include "tools/configfile.h" -#include "fcitx-config/cutils.h" - -#ifndef SIGUNUSED -#define SIGUNUSED 32 -#endif - - -static XErrorHandler oldXErrorHandler; -static XIOErrorHandler oldXIOErrorHandler; - -static int MyXErrorHandler (Display * dpy, XErrorEvent * event); -static int MyXIOErrorHandler (Display *d); - -void SetMyExceptionHandler (void) -{ - int signo; - - for (signo = SIGHUP; signo < SIGUNUSED; signo++) - { - signal (signo, OnException); - } -} - -void OnException (int signo) -{ - if (signo == SIGCHLD) - return; - - FcitxLog(INFO, _("FCITX -- Get Signal No.: %d"), signo); - - if ( signo!=SIGSEGV && signo!=SIGCONT) - SaveIM(); - - void *array[10]; - size_t size; - char **strings = NULL; - size_t i; - - size = backtrace (array, 10); - strings = backtrace_symbols (array, size); - - if (strings) - { - FILE *fp = NULL; - if ( signo == SIGSEGV || signo == SIGABRT || signo == SIGKILL || signo == SIGTERM ) - fp = GetXDGFileUser("crash.log","wt", NULL); - - printf ("Obtained %zd stack frames.\n", size); - if (fp) - { - fprintf (fp, "FCITX -- Get Signal No.: %d\n", signo); - fprintf (fp, "Obtained %zd stack frames.\n", size); - } - - for (i = 0; i < size; i++) - { - printf ("%s\n", strings[i]); - if (fp) - fprintf (fp, "%s\n", strings[i]); - } - - if (fp) - fclose(fp); - free (strings); - } - - switch (signo) { - case SIGHUP: - LoadConfig (); - UnloadIM(); - SetIM (); - break; - case SIGINT: - case SIGTERM: - case SIGPIPE: - case SIGSEGV: -#ifdef _ENABLE_RECORDING - CloseRecording(); -#endif - - exit (0); - default: - break; - } -} - -void SetMyXErrorHandler (void) -{ - oldXErrorHandler = XSetErrorHandler (MyXErrorHandler); - oldXIOErrorHandler = XSetIOErrorHandler (MyXIOErrorHandler); -} - -int MyXIOErrorHandler (Display *d) -{ - FILE *fp; - fp = GetXDGFileUser("crash.log","wt" , NULL); - if ( fp ) { - fprintf(fp, "%s: X IO error.\n", DisplayString(d)); - fclose(fp); - } - - if (oldXIOErrorHandler) - oldXIOErrorHandler(d); - return 0; - -} - -int MyXErrorHandler (Display * dpy, XErrorEvent * event) -{ - char str[256]; - FILE* fp = NULL; - - fp = GetXDGFileUser("crash.log","wt" , NULL); - if ( fp ) { - XGetErrorText (dpy, event->error_code, str, 255); - fprintf (fp, "fcitx: %s\n", str); - } - - SaveIM(); - - if ( fp ) - fclose(fp); - if (event->error_code != 3 && event->error_code != BadMatch) { // xterm will generate 3 - if (oldXErrorHandler) - oldXErrorHandler (dpy, event); - } - - return 0; -} diff -Nru fcitx-4.0.1/src/core/MyErrorsHandlers.h fcitx-4.1.1/src/core/MyErrorsHandlers.h --- fcitx-4.0.1/src/core/MyErrorsHandlers.h 2010-11-28 11:55:00.000000000 +0000 +++ fcitx-4.1.1/src/core/MyErrorsHandlers.h 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2002~2005 by Yuking * - * yuking_net@sohu.com * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * - ***************************************************************************/ -#ifndef _MY_ERRORS_HANDLERS_H -#define _MY_ERRORS_HANDLERS_ - -#include -/* *********************************************************** - * Consts - * *********************************************************** */ -#ifndef SIGUNUSED -#define SIGUNUSED 29 -#endif -/* *********************************************************** - * Data structures - * *********************************************************** */ - -/* *********************************************************** - * Functions - * *********************************************************** */ -void SetMyExceptionHandler (void); -void OnException (int signo); -void SetMyXErrorHandler (void); - -#endif diff -Nru fcitx-4.0.1/src/core/xim.c fcitx-4.1.1/src/core/xim.c --- fcitx-4.0.1/src/core/xim.c 2010-12-17 04:21:21.000000000 +0000 +++ fcitx-4.1.1/src/core/xim.c 1970-01-01 00:00:00.000000000 +0000 @@ -1,673 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2002~2005 by Yuking * - * yuking_net@sohu.com * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * - ***************************************************************************/ -#include "core/fcitx.h" -#ifdef HAVE_CONFIG_H -#include -#endif - -#include -#include -#include -#include - -#include "core/xim.h" -#include "core/IC.h" -#include "tools/tools.h" -#include "ui/MainWindow.h" -#include "ui/MessageWindow.h" -#include "ui/InputWindow.h" -#ifdef _ENABLE_TRAY -#include "ui/TrayWindow.h" -#endif -#include "im/special/vk.h" -#include "ui/ui.h" - -#include "interface/DBus.h" -#include "tools/profile.h" -#include "tools/configfile.h" -#include "fcitx-config/cutils.h" -#include "fcitx-config/xdg.h" - -#define CHECK_ENV(env, value, icase) (!getenv(env) \ - || (icase ? \ - (0 != strcmp(getenv(env), (value))) \ - : (0 != strcasecmp(getenv(env), (value))))) - -XIMS ims; -Window ximWindow; - -IC *CurrentIC = NULL; -char strLocale[201] = "zh_CN.GB18030,zh_CN.GB2312,zh_CN,zh_CN.GBK,zh_CN.UTF-8,zh_CN.UTF8,en_US.UTF-8,en_US.UTF8"; - -int iClientCursorX = 0; -int iClientCursorY = 0; - -#ifdef _ENABLE_RECORDING -FILE *fpRecord = NULL; -Bool bWrittenRecord = False; //是否写入过记录 -#endif - -extern IM *im; - -extern Display *dpy; -extern int iScreen; -extern VKWindow vkWindow; -extern IC *ic_list; - -extern uint iInputWindowHeight; -extern uint iInputWindowWidth; -extern int iCodeInputCount; -extern uint uMessageDown; -extern uint uMessageUp; -extern Bool bVK; - -//计算打字速度 -extern Bool bStartRecordType; -extern uint iHZInputed; - -#ifdef _ENABLE_DBUS -extern Property logo_prop; -extern Property state_prop; -extern Property punc_prop; -extern Property corner_prop; -extern Property gbk_prop; -extern Property gbkt_prop; -extern Property legend_prop; -#endif - -#ifdef _DEBUG -char strXModifiers[100]; -#endif - -static XIMStyle Styles[] = { - XIMPreeditPosition | XIMStatusArea, //OverTheSpot - XIMPreeditPosition | XIMStatusNothing, //OverTheSpot - XIMPreeditPosition | XIMStatusNone, //OverTheSpot - XIMPreeditNothing | XIMStatusNothing, //Root - XIMPreeditNothing | XIMStatusNone, //Root -/* XIMPreeditCallbacks | XIMStatusCallbacks, //OnTheSpot - XIMPreeditCallbacks | XIMStatusArea, //OnTheSpot - XIMPreeditCallbacks | XIMStatusNothing, //OnTheSpot - XIMPreeditArea | XIMStatusArea, //OffTheSpot - XIMPreeditArea | XIMStatusNothing, //OffTheSpot - XIMPreeditArea | XIMStatusNone, //OffTheSpot */ - 0 -}; - -XIMTriggerKey *Trigger_Keys = (XIMTriggerKey *) NULL; -INT8 iTriggerKeyCount; - -/* Supported Chinese Encodings */ -static XIMEncoding zhEncodings[] = { - "COMPOUND_TEXT", - NULL -}; - -Bool MyOpenHandler(IMOpenStruct * call_data) -{ - return True; -} - -void SetTrackPos(IMChangeICStruct * call_data) -{ - Bool flag = False; - if (CurrentIC == NULL) - return; - if (CurrentIC != (IC *) FindIC(call_data->icid)) - return; - - if (fcitxProfile.bTrackCursor) { - int i; - XICAttribute *pre_attr = ((IMChangeICStruct *) call_data)->preedit_attr; - - for (i = 0; i < (int) ((IMChangeICStruct *) call_data)->preedit_attr_num; i++, pre_attr++) { - if (!strcmp(XNSpotLocation, pre_attr->name)) { - flag = True; - - CurrentIC->offset_x = (*(XPoint *) pre_attr->value).x; - CurrentIC->offset_y = (*(XPoint *) pre_attr->value).y; - } - } - } - - MoveInputWindow(); -} - -Bool MyGetICValuesHandler(IMChangeICStruct * call_data) -{ - GetIC(call_data); - - return True; -} - -Bool MySetICValuesHandler(IMChangeICStruct * call_data) -{ - SetIC(call_data); - SetTrackPos(call_data); - - return True; -} - -Bool MySetFocusHandler(IMChangeFocusStruct * call_data) -{ - CurrentIC = (IC *) FindIC(call_data->icid); - - if (CurrentIC && CurrentIC->state != IS_CLOSED) { - EnterChineseMode(True); - - if (!fc.bUseDBus) - DrawMainWindow(); - - if (CurrentIC->state == IS_CHN) { - if (bVK) - DisplayVKWindow(); - } else { - CloseInputWindow(); - XUnmapWindow(dpy, vkWindow.window); - } - } else { - CloseInputWindow(); - XUnmapWindow(dpy, vkWindow.window); - - if (!fc.bUseDBus) { -#ifdef _ENABLE_TRAY - DrawTrayWindow(INACTIVE_ICON, 0, 0, tray.size, tray.size); -#endif - if (fc.hideMainWindow == HM_SHOW) { - DisplayMainWindow(); - DrawMainWindow(); - } else - XUnmapWindow(dpy, mainWindow.window); - } -#ifdef _ENABLE_DBUS - if (fc.bUseDBus) - updatePropertyByState(); -#endif - - //When application gets the focus, re-record the time. - bStartRecordType = False; - iHZInputed = 0; - - if (fcitxProfile.bTrackCursor) { - MoveInputWindow(); - } -#ifdef _ENABLE_DBUS - if (fc.bUseDBus) - registerProperties(); -#endif - } - - return True; -} - -Bool MyUnsetFocusHandler(IMChangeICStruct * call_data) -{ - if (CurrentIC && CurrentIC->id == call_data->icid) - { - CloseInputWindow(); - XUnmapWindow(dpy, vkWindow.window); - } - - return True; -} - -Bool MyCloseHandler(IMOpenStruct * call_data) -{ - CloseInputWindow(); - - XUnmapWindow(dpy, vkWindow.window); - - SaveIM(); - -#ifdef _ENABLE_RECORDING - CloseRecording(); - if (fcitxProfile.bRecording) - OpenRecording(True); -#endif - - return True; -} - -Bool MyCreateICHandler(IMChangeICStruct * call_data) -{ - CreateIC(call_data); - - if (!CurrentIC) { - CurrentIC = (IC *) FindIC(call_data->icid); - } -#ifdef _ENABLE_DBUS - if (fc.bUseDBus) - updatePropertyByState(); -#endif - return True; -} - -Bool MyDestroyICHandler(IMChangeICStruct * call_data) -{ - if (CurrentIC == (IC *) FindIC(call_data->icid)) { - CloseInputWindow(); - XUnmapWindow(dpy, vkWindow.window); - } - - DestroyIC(call_data); - -#ifdef _ENABLE_DBUS - if (fc.bUseDBus) { - strcpy(logo_prop.label, "Fcitx"); - updateProperty(&logo_prop); - } -#endif - - return True; -} - -void EnterChineseMode(Bool bState) -{ - if (!bState) { - ResetInput(); - ResetInputWindow(); - - if (im[gs.iIMIndex].ResetIM) - im[gs.iIMIndex].ResetIM(); - } - - if (!fc.bUseDBus) { - DisplayMainWindow(); -#ifdef _ENABLE_TRAY - DrawTrayWindow(ACTIVE_ICON, 0, 0, tray.size, tray.size); -#endif - } -#ifdef _ENABLE_DBUS - if (fc.bUseDBus) - updatePropertyByState(); -#endif -} - -Bool MyTriggerNotifyHandler(IMTriggerNotifyStruct * call_data) -{ - IC* ic = (IC *) FindIC(call_data->icid); - if (ic == NULL) - return True; - - CurrentIC = ic; - ic->state = IS_CHN; - - EnterChineseMode(False); - if (!fc.bUseDBus) - DrawMainWindow(); - - SetTrackPos((IMChangeICStruct *) call_data); - if (fc.bShowInputWindowTriggering && !fcitxProfile.bCorner) { - DisplayInputWindow(); - } - -#ifdef _ENABLE_TRAY - if (!fc.bUseDBus) - DrawTrayWindow(ACTIVE_ICON, 0, 0, tray.size, tray.size); -#endif - return True; -} - -Bool MyProtoHandler(XIMS _ims, IMProtocol * call_data) -{ -#ifdef _DEBUG - switch (call_data->major_code) { - case XIM_OPEN: - FcitxLog(DEBUG, "XIM_OPEN:\t\ticid=%d\tconnect_id=%d\n", ((IMForwardEventStruct *) call_data)->icid, - ((IMForwardEventStruct *) call_data)->connect_id); - case XIM_CLOSE: - FcitxLog(DEBUG, "XIM_CLOSE:\t\ticid=%d\tconnect_id=%d\n", ((IMForwardEventStruct *) call_data)->icid, - ((IMForwardEventStruct *) call_data)->connect_id); - case XIM_CREATE_IC: - FcitxLog(DEBUG, "XIM_CREATE_IC:\t\ticid=%d\tconnect_id=%d\n", ((IMForwardEventStruct *) call_data)->icid, - ((IMForwardEventStruct *) call_data)->connect_id); - case XIM_DESTROY_IC: - FcitxLog(DEBUG, "XIM_DESTROY_IC:\t\ticid=%d\tconnect_id=%d\n", ((IMForwardEventStruct *) call_data)->icid, - ((IMForwardEventStruct *) call_data)->connect_id); - case XIM_SET_IC_VALUES: - FcitxLog(DEBUG, "XIM_SET_IC_VALUES:\t\ticid=%d\tconnect_id=%d\n", ((IMForwardEventStruct *) call_data)->icid, - ((IMForwardEventStruct *) call_data)->connect_id); - case XIM_GET_IC_VALUES: - FcitxLog(DEBUG, "XIM_GET_IC_VALUES:\ticid=%d\tconnect_id=%d\n", ((IMForwardEventStruct *) call_data)->icid, - ((IMForwardEventStruct *) call_data)->connect_id); - case XIM_FORWARD_EVENT: - FcitxLog(DEBUG, "XIM_FORWARD_EVENT:\ticid=%d\tconnect_id=%d\n", ((IMForwardEventStruct *) call_data)->icid, - ((IMForwardEventStruct *) call_data)->connect_id); - case XIM_SET_IC_FOCUS: - FcitxLog(DEBUG, "XIM_SET_IC_FOCUS:\ticid=%d\tconnect_id=%d\n", ((IMForwardEventStruct *) call_data)->icid, - ((IMForwardEventStruct *) call_data)->connect_id); - case XIM_UNSET_IC_FOCUS: - FcitxLog(DEBUG, "XIM_UNSET_IC_FOCUS:\ticid=%d\tconnect_id=%d\n", ((IMForwardEventStruct *) call_data)->icid, - ((IMForwardEventStruct *) call_data)->connect_id); - case XIM_RESET_IC: - FcitxLog(DEBUG, "XIM_RESET_IC:\t\ticid=%d\tconnect_id=%d\n", ((IMForwardEventStruct *) call_data)->icid, - ((IMForwardEventStruct *) call_data)->connect_id); - case XIM_TRIGGER_NOTIFY: - FcitxLog(DEBUG, "XIM_TRIGGER_NOTIFY:\t\ticid=%d\tconnect_id=%d\n", ((IMForwardEventStruct *) call_data)->icid, - ((IMForwardEventStruct *) call_data)->connect_id); - default: - FcitxLog(DEBUG, "XIM_DEFAULT:\t\ticid=%d\tconnect_id=%d\n", ((IMForwardEventStruct *) call_data)->icid, - ((IMForwardEventStruct *) call_data)->connect_id); - } -#endif - - switch (call_data->major_code) { - case XIM_OPEN: - return MyOpenHandler((IMOpenStruct *) call_data); - case XIM_CLOSE: - return MyCloseHandler((IMOpenStruct *) call_data); - case XIM_CREATE_IC: - return MyCreateICHandler((IMChangeICStruct *) call_data); - case XIM_DESTROY_IC: - return MyDestroyICHandler((IMChangeICStruct *) call_data); - case XIM_SET_IC_VALUES: - return MySetICValuesHandler((IMChangeICStruct *) call_data); - case XIM_GET_IC_VALUES: - return MyGetICValuesHandler((IMChangeICStruct *) call_data); - case XIM_FORWARD_EVENT: - ProcessKey((IMForwardEventStruct *) call_data); - return True; - case XIM_SET_IC_FOCUS: - return MySetFocusHandler((IMChangeFocusStruct *) call_data); - case XIM_UNSET_IC_FOCUS: - return MyUnsetFocusHandler((IMChangeICStruct *) call_data);; - case XIM_RESET_IC: - return True; - case XIM_TRIGGER_NOTIFY: - return MyTriggerNotifyHandler((IMTriggerNotifyStruct *) call_data); - default: - return True; - } -} - -void MyIMForwardEvent(CARD16 connectId, CARD16 icId, int keycode) -{ - IMForwardEventStruct forwardEvent; - XEvent xEvent; - - memset(&forwardEvent, 0, sizeof(IMForwardEventStruct)); - forwardEvent.connect_id = connectId; - forwardEvent.icid = icId; - forwardEvent.major_code = XIM_FORWARD_EVENT; - forwardEvent.sync_bit = 0; - forwardEvent.serial_number = 0L; - - xEvent.xkey.type = KeyPress; - xEvent.xkey.display = dpy; - xEvent.xkey.serial = 0L; - xEvent.xkey.send_event = False; - xEvent.xkey.x = xEvent.xkey.y = xEvent.xkey.x_root = xEvent.xkey.y_root = 0; - xEvent.xkey.same_screen = False; - xEvent.xkey.subwindow = None; - xEvent.xkey.window = None; - xEvent.xkey.root = DefaultRootWindow(dpy); - xEvent.xkey.state = 0; - if (CurrentIC->focus_win) - xEvent.xkey.window = CurrentIC->focus_win; - else if (CurrentIC->client_win) - xEvent.xkey.window = CurrentIC->client_win; - - xEvent.xkey.keycode = keycode; - memcpy(&(forwardEvent.event), &xEvent, sizeof(forwardEvent.event)); - IMForwardEvent(ims, (XPointer) (&forwardEvent)); -} - -#ifdef _ENABLE_RECORDING -Bool OpenRecording(Bool bMode) -{ - if (!fpRecord) { - if (fc.strRecordingPath[0] == '\0') { - char *pbuf; - - GetXDGFileData("record.dat", NULL, &pbuf); - if (fc.strRecordingPath) - free(fc.strRecordingPath); - fc.strRecordingPath = strdup(pbuf); - free(pbuf); - } else if (fc.strRecordingPath[0] != '/') { //应该是个绝对路径 -#ifdef _DEBUG - FcitxLog(DEBUG, _("Recording file must be an absolute path.")); -#endif - fc.strRecordingPath[0] = '\0'; - } - - if (fc.strRecordingPath[0] != '\0') - fpRecord = fopen(fc.strRecordingPath, (bMode) ? "a+" : "wt"); - } - - return (fpRecord ? True : False); -} - -void CloseRecording(void) -{ - if (fpRecord) { - if (bWrittenRecord) { - fprintf(fpRecord, "\n\n"); - bWrittenRecord = False; - } - fclose(fpRecord); - fpRecord = NULL; - } -} -#endif - -void SendHZtoClient(IMForwardEventStruct * call_data, char *strHZ) -{ - XTextProperty tp; - IMCommitStruct cms; - char *ps; - char *pS2T = (char *) NULL; - -#ifdef _DEBUG - FcitxLog(DEBUG, _("Sending %s icid=%d connectid=%d\n"), strHZ, CurrentIC->id, CurrentIC->connect_id); -#endif - - /* avoid Seg fault */ - if (!call_data && !CurrentIC) - return; - -#ifdef _ENABLE_RECORDING - if (fcitxProfile.bRecording) { - if (OpenRecording(True)) { - if (!bWrittenRecord) { - char buf[20]; - struct tm *ts; - time_t now; - - now = time(NULL); - ts = localtime(&now); - strftime(buf, sizeof(buf), "%Y-%m-%d %H:%M:%S", ts); - - fprintf(fpRecord, "%s\n", buf); - } - fprintf(fpRecord, "%s", strHZ); - bWrittenRecord = True; - } - } -#endif - - if (fcitxProfile.bUseGBKT) - pS2T = strHZ = ConvertGBKSimple2Tradition(strHZ); - - ps = strHZ; - - Xutf8TextListToTextProperty(dpy, (char **) &ps, 1, XCompoundTextStyle, &tp); - - memset(&cms, 0, sizeof(cms)); - cms.major_code = XIM_COMMIT; - if (call_data) { - cms.icid = call_data->icid; - cms.connect_id = call_data->connect_id; - } else { - cms.icid = CurrentIC->id; - cms.connect_id = CurrentIC->connect_id; - } - cms.flag = XimLookupChars; - cms.commit_string = (char *) tp.value; - IMCommitString(ims, (XPointer) & cms); - XFree(tp.value); - - if (fcitxProfile.bUseGBKT) - free(pS2T); -} - -Bool InitXIM(char *imname) -{ - XIMStyles *input_styles; - XIMTriggerKeys *on_keys; - XIMEncodings *encodings; - char *p; - - ximWindow = XCreateSimpleWindow(dpy, DefaultRootWindow(dpy), 0, 0, 1, 1, 1, 0, 0); - if (ximWindow == (Window) NULL) { - FcitxLog(FATAL, _("Can't Create imWindow")); - exit(1); - } - - if (!imname) { - imname = getenv("XMODIFIERS"); - if (imname) { - if (strstr(imname, "@im=")) - imname += 4; - else { - FcitxLog(WARNING, _("XMODIFIERS Error.")); - imname = DEFAULT_IMNAME; - } - } else { - FcitxLog(WARNING, _("Please set XMODIFIERS.")); - imname = DEFAULT_IMNAME; - } - } - - if (fc.bHintWindow) { - char strTemp[PATH_MAX]; - snprintf(strTemp, PATH_MAX, "@im=%s", imname); - strTemp[PATH_MAX - 1] = '\0'; - if ((getenv("XMODIFIERS") != NULL && CHECK_ENV("XMODIFIERS", strTemp, True)) || - CHECK_ENV("GTK_IM_MODULE", "xim", False) || CHECK_ENV("QT_IM_MODULE", "xim", False)) { - char *msg[6]; - msg[0] = _("Please check your environment varibles."); - msg[1] = _("You need to set environment varibles below to make fcitx work correctly."); - msg[2] = "export XMODIFIERS=\"@im=fcitx\""; - msg[3] = "export QT_IM_MODULE=xim"; - msg[4] = "export GTK_IM_MODULE=xim"; - msg[5] = _("You can set those variables in ~/.bashrc or ~/.xprofile ."); - DrawMessageWindow(_("Setting Hint"), msg, 6); - DisplayMessageWindow(); - } - fc.bHintWindow = False; - SaveConfig(); - } -#ifdef _DEBUG - strcpy(strXModifiers, imname); -#endif - - input_styles = (XIMStyles *) malloc(sizeof(XIMStyles)); - input_styles->count_styles = sizeof(Styles) / sizeof(XIMStyle) - 1; - input_styles->supported_styles = Styles; - - on_keys = (XIMTriggerKeys *) malloc(sizeof(XIMTriggerKeys)); - on_keys->count_keys = iTriggerKeyCount + 1; - on_keys->keylist = Trigger_Keys; - - encodings = (XIMEncodings *) malloc(sizeof(XIMEncodings)); - encodings->count_encodings = sizeof(zhEncodings) / sizeof(XIMEncoding) - 1; - encodings->supported_encodings = zhEncodings; - - p = getenv("LC_CTYPE"); - if (!p) { - p = getenv("LC_ALL"); - if (!p) - p = getenv("LANG"); - } - if (p) { - if (!strcasestr(strLocale, p)) { - strcat(strLocale, ","); - strcat(strLocale, p); - } - } - - ims = IMOpenIM(dpy, - IMModifiers, "Xi18n", - IMServerWindow, ximWindow, - IMServerName, imname, - IMLocale, strLocale, - IMServerTransport, "X/", - IMInputStyles, input_styles, - IMEncodingList, encodings, - IMProtocolHandler, MyProtoHandler, - IMFilterEventMask, KeyPressMask | KeyReleaseMask, IMOnKeysList, on_keys, NULL); - - free(input_styles); - free(on_keys); - free(encodings); - - if (ims == (XIMS) NULL) { - FcitxLog(ERROR, _("Start FCITX error. Another XIM daemon named %s is running?"), imname); - return False; - } - - return True; -} - -void SetIMState(Bool bState) -{ - IMChangeFocusStruct call_data; - - if (!CurrentIC) - return; - - if (CurrentIC->id) { - call_data.connect_id = CurrentIC->connect_id; - call_data.icid = CurrentIC->id; - - if (bState) { - IMPreeditStart(ims, (XPointer) & call_data); - CurrentIC->state = IS_CHN; - } else { - IMPreeditEnd(ims, (XPointer) & call_data); - CurrentIC->state = IS_CLOSED; - bVK = False; - - SwitchIM(-2); - } - - } -} - -void CloseAllIM() -{ - IC *rec; - IMChangeFocusStruct call_data; - - for (rec = ic_list; rec != NULL; rec = rec->next) - { - call_data.connect_id = rec->connect_id; - call_data.icid = rec->id; - - IMPreeditEnd(ims, (XPointer) & call_data); - rec->state = IS_CLOSED; - } - - IMCloseIM(ims); - -} - -// vim: sw=4 sts=4 et tw=100 diff -Nru fcitx-4.0.1/src/core/xim.h fcitx-4.1.1/src/core/xim.h --- fcitx-4.0.1/src/core/xim.h 2010-12-15 17:50:48.000000000 +0000 +++ fcitx-4.1.1/src/core/xim.h 1970-01-01 00:00:00.000000000 +0000 @@ -1,74 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2002~2005 by Yuking * - * yuking_net@sohu.com * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * - ***************************************************************************/ -#ifndef _xim_h -#define _xim_h - -#include -#include -#include -#include -#include - -#include "IMdkit.h" -#include "Xi18n.h" - -#define DEFAULT_IMNAME "fcitx" -#define STRBUFLEN 64 - -#ifndef ICONV_CONST -#define ICONV_CONST -#endif - -#ifndef FALSE -#define FALSE 0 -#endif - -typedef enum _IME_STATE { - IS_CLOSED = 0, - IS_ENG, - IS_CHN -} IME_STATE; - -Bool InitXIM (char *); -void SendHZtoClient(IMForwardEventStruct * call_data, char *strHZ); -void EnterChineseMode (Bool bState); - -void SetIMState (Bool bState); -void SetTrackPos(IMChangeICStruct * call_data); -void MyIMForwardEvent (CARD16 connectId, CARD16 icId, int keycode); - -#define GetCurrentState() (CurrentIC?(CurrentIC->state):(IS_CLOSED)) -#define GetCurrentPos() (CurrentIC?(&CurrentIC->pos):(NULL)) - -struct _IC; - -extern struct _IC* CurrentIC; -void CloseAllIM(); - -#ifndef __USE_GNU -extern char *strcasestr (__const char *__haystack, __const char *__needle); -#endif - -#ifdef _ENABLE_RECORDING -Bool OpenRecording(Bool); -void CloseRecording(void); -#endif - -#endif diff -Nru fcitx-4.0.1/src/fcitx-config/cutils.c fcitx-4.1.1/src/fcitx-config/cutils.c --- fcitx-4.0.1/src/fcitx-config/cutils.c 2010-12-06 05:01:33.000000000 +0000 +++ fcitx-4.1.1/src/fcitx-config/cutils.c 1970-01-01 00:00:00.000000000 +0000 @@ -1,142 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2010~2010 by CSSlayer * - * wengxt@gmail.com * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * - ***************************************************************************/ - -#include "core/fcitx.h" - -#include "tools/tools.h" -#include "fcitx-config/cutils.h" -#include "fcitx-config/sprintf.h" -#include -#include -#include -#include -#include - -static iconv_t iconvW = NULL; - -/** - * @brief 返回申请后的内存,并清零 - * - * @param 申请的内存长度 - * - * @return 申请的内存指针 - */ -void *malloc0(size_t bytes) -{ - void *p = malloc(bytes); - if (!p) - return NULL; - - memset(p, 0, bytes); - return p; -} - -/** - * @brief 去除字符串首末尾空白字符 - * - * @param s - * - * @return malloc的字符串,需要free - */ -FCITX_EXPORT_API -char *trim(char *s) -{ - register char *end; - register char csave; - - while (isspace(*s)) /* skip leading space */ - ++s; - end = strchr(s,'\0') - 1; - while (end >= s && isspace(*end)) /* skip trailing space */ - --end; - - csave = end[1]; - end[1] = '\0'; - s = strdup(s); - end[1] = csave; - return (s); -} - -/** - * @brief Fcitx记录Log的函数 - * - * @param ErrorLevel - * @param fmt - * @param ... - */ -FCITX_EXPORT_API -void FcitxLogFunc(ErrorLevel e, const char* filename, const int line, const char* fmt, ...) -{ -#ifndef _DEBUG - if (e == DEBUG) - return; -#endif - switch (e) - { - case INFO: - fprintf(stderr, "Info:"); - break; - case ERROR: - fprintf(stderr, "Error:"); - break; - case DEBUG: - fprintf(stderr, "Debug:"); - break; - case WARNING: - fprintf(stderr, "Warning:"); - break; - case FATAL: - fprintf(stderr, "Fatal:"); - break; - } - - char *buffer; - va_list ap; - fprintf(stderr, "%s:%u-", filename, line); - va_start(ap, fmt); - vasprintf(&buffer, fmt, ap); - va_end(ap); - - if (iconvW == NULL) - iconvW = iconv_open("WCHAR_T", "utf-8"); - - if (iconvW == (iconv_t) -1) - { - fprintf(stderr, "%s\n", buffer); - } - else - { - size_t len = strlen(buffer); - wchar_t *wmessage; - size_t wlen = (len + 1) * sizeof (wchar_t); - wmessage = (wchar_t *) malloc0 ((len + 1) * sizeof (wchar_t)); - - char *inp = buffer; - char *outp = (char*) wmessage; - - iconv(iconvW, &inp, &len, &outp, &wlen); - - fprintf(stderr, "%ls\n", wmessage); - - free(wmessage); - } - - free(buffer); -} diff -Nru fcitx-4.0.1/src/fcitx-config/cutils.h fcitx-4.1.1/src/fcitx-config/cutils.h --- fcitx-4.0.1/src/fcitx-config/cutils.h 2010-11-28 11:55:00.000000000 +0000 +++ fcitx-4.1.1/src/fcitx-config/cutils.h 1970-01-01 00:00:00.000000000 +0000 @@ -1,36 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2010~2010 by CSSlayer * - * wengxt@gmail.com * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * - ***************************************************************************/ - -#include - -typedef enum ErrorLevel -{ - DEBUG, - ERROR, - INFO, - FATAL, - WARNING -} ErrorLevel; - -char *trim(char *s); -void *malloc0(size_t bytes); - -#define FcitxLog(e, fmt, arg...) FcitxLogFunc(e, __FILE__, __LINE__, fmt, ##arg) -void FcitxLogFunc(ErrorLevel, const char* filename, const int line, const char* fmt, ...); diff -Nru fcitx-4.0.1/src/fcitx-config/fcitx-config.c fcitx-4.1.1/src/fcitx-config/fcitx-config.c --- fcitx-4.0.1/src/fcitx-config/fcitx-config.c 2010-12-17 04:33:04.000000000 +0000 +++ fcitx-4.1.1/src/fcitx-config/fcitx-config.c 1970-01-01 00:00:00.000000000 +0000 @@ -1,986 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2010~2010 by CSSlayer * - * wengxt@gmail.com * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * - ***************************************************************************/ - -/** - * @file conf.c - * @author CSSlayer wengxt@gmail.com - * @date 2010-04-30 - * - * @brief 新配置文件读写 - */ - -#include "core/fcitx.h" - -#include -#include -#include -#include "fcitx-config/uthash.h" -#include "fcitx-config/sprintf.h" -#include "fcitx-config/cutils.h" -#include "fcitx-config/fcitx-config.h" -#include "tools/tools.h" - -static ConfigSyncResult ConfigOptionInteger(ConfigOption *option, ConfigSync sync); -static ConfigSyncResult ConfigOptionImage(ConfigOption *option, ConfigSync sync); -static ConfigSyncResult ConfigOptionBoolean(ConfigOption *option, ConfigSync sync); -static ConfigSyncResult ConfigOptionEnum(ConfigOption *option, ConfigSync sync); -static ConfigSyncResult ConfigOptionColor(ConfigOption *option, ConfigSync sync); -static ConfigSyncResult ConfigOptionString(ConfigOption *option, ConfigSync sync); -static ConfigSyncResult ConfigOptionHotkey(ConfigOption *option, ConfigSync sync); -#define ConfigOptionFile ConfigOptionString -#define ConfigOptionFont ConfigOptionString - -FCITX_EXPORT_API -ConfigFile *ParseConfigFile(char *filename, ConfigFileDesc* fileDesc) -{ - FILE* fp = fopen(filename, "r"); - if (!fp) - return NULL; - ConfigFile *cf = ParseConfigFileFp(fp, fileDesc); - fclose(fp); - return cf; -} - -FCITX_EXPORT_API -ConfigFile *ParseMultiConfigFile(char **filename, int len, ConfigFileDesc*fileDesc) -{ - FILE **fp = malloc(sizeof(FILE*) * len); - int i = 0; - for (i = 0 ;i < len ; i++) - { - fp[i] = NULL; - fp[i] = fopen(filename[i], "r"); - } - - ConfigFile *cf = ParseMultiConfigFileFp(fp, len, fileDesc); - - for (i = 0 ;i < len ; i++) - if (fp[i]) - fclose(fp[i]); - - free(fp); - - return cf; -} - -FCITX_EXPORT_API -ConfigFile *ParseMultiConfigFileFp(FILE **fp, int len, ConfigFileDesc* fileDesc) -{ - ConfigFile* cfile = NULL; - int i = 0; - for (i = 0 ; i< len ;i ++) - cfile = ParseIniFp(fp[i], cfile); - if (CheckConfig(cfile, fileDesc)) - { - return cfile; - } - FreeConfigFile(cfile); - return NULL; - -} - -FCITX_EXPORT_API -ConfigFile *ParseConfigFileFp(FILE *fp, ConfigFileDesc* fileDesc) -{ - ConfigFile *cfile = ParseIniFp(fp, NULL); - if (CheckConfig(cfile, fileDesc)) - { - return cfile; - } - FreeConfigFile(cfile); - return NULL; -} - -FCITX_EXPORT_API -Bool CheckConfig(ConfigFile *cfile, ConfigFileDesc* cfdesc) -{ - if (!cfile) - return False; - ConfigGroupDesc *cgdesc = NULL; - for(cgdesc = cfdesc->groupsDesc; - cgdesc != NULL; - cgdesc = (ConfigGroupDesc*)cgdesc->hh.next) - { - ConfigOptionDesc *codesc = NULL; - ConfigGroup* group; - HASH_FIND_STR(cfile->groups, cgdesc->groupName, group); - if (!group) - { - group = malloc0(sizeof(ConfigGroup)); - group->groupName = strdup(cgdesc->groupName); - group->groupDesc = cgdesc; - group->options = NULL; - HASH_ADD_KEYPTR(hh, cfile->groups, group->groupName, strlen(group->groupName), group); - } - for(codesc = cgdesc->optionsDesc; - codesc != NULL; - codesc = (ConfigOptionDesc*)codesc->hh.next) - { - ConfigOption *option; - HASH_FIND_STR(group->options, codesc->optionName, option); - if (!option) - { - if (!codesc->rawDefaultValue) - { - FcitxLog(WARNING, "missing value: %s", codesc->optionName); - return False; - } - option = malloc0(sizeof(ConfigOption)); - option->optionName = strdup(codesc->optionName); - option->rawValue = strdup(codesc->rawDefaultValue); - HASH_ADD_KEYPTR(hh, group->options, option->optionName, strlen(option->optionName), option); - } - option->optionDesc = codesc; - } - } - cfile->fileDesc = cfdesc; - return True; -} - -/** - * @brief - * - * @param filename - * - * @return - */ -FCITX_EXPORT_API -ConfigFileDesc *ParseConfigFileDesc(char* filename) -{ - FILE* fp = fopen(filename, "r"); - if (!fp) - return NULL; - - ConfigFileDesc *cfdesc = ParseConfigFileDescFp(fp); - - fclose(fp); - - return cfdesc; -} - -/** - * @brief - * - * @param fp - * - * @return - */ -FCITX_EXPORT_API -ConfigFileDesc *ParseConfigFileDescFp(FILE *fp) -{ - ConfigFile *cfile = ParseIniFp(fp, NULL); - if (!cfile) - return NULL; - ConfigFileDesc *cfdesc = malloc0(sizeof(ConfigFileDesc)); - ConfigGroup* group; - for(group = cfile->groups; - group != NULL; - group = (ConfigGroup*)group->hh.next) - { - ConfigGroupDesc *cgdesc = NULL; - ConfigOption *options = group->options, *option = NULL; - - char * p = strchr(group->groupName, '/'); - if (p == NULL) - continue; - int groupNameLen = p - group->groupName; - int optionNameLen = strlen(p + 1); - if (groupNameLen == 0 || optionNameLen == 0) - continue; - - char *groupName = malloc(sizeof(char) * (groupNameLen + 1)); - strncpy(groupName, group->groupName, groupNameLen); - groupName[groupNameLen] = '\0'; - char *optionName = strdup(p + 1); - - HASH_FIND_STR(cfdesc->groupsDesc, groupName, cgdesc); - if (!cgdesc) - { - cgdesc = malloc0(sizeof(ConfigGroupDesc)); - cgdesc->groupName = groupName; - cgdesc->optionsDesc = NULL; - HASH_ADD_KEYPTR(hh, cfdesc->groupsDesc, cgdesc->groupName, groupNameLen, cgdesc); - } - else - free(groupName); - - ConfigOptionDesc *codesc = malloc0(sizeof(ConfigOptionDesc)); - codesc->optionName = optionName; - codesc->rawDefaultValue = NULL; - HASH_ADD_KEYPTR(hh, cgdesc->optionsDesc, codesc->optionName, optionNameLen, codesc); - HASH_FIND_STR(options, "Description", option); - if (option) - codesc->desc= strdup(option->rawValue); - else - codesc->desc = strdup(""); - /* Processing Type */ - HASH_FIND_STR(options, "Type", option); - if (option) - { - if (!strcmp(option->rawValue, "Integer")) - codesc->type = T_Integer; - else if (!strcmp(option->rawValue, "Color")) - codesc->type = T_Color; - else if (!strcmp(option->rawValue, "Char")) - codesc->type = T_Char; - else if (!strcmp(option->rawValue, "String")) - codesc->type = T_String; - else if (!strcmp(option->rawValue, "Boolean")) - codesc->type = T_Boolean; - else if (!strcmp(option->rawValue, "File")) - codesc->type = T_File; - else if (!strcmp(option->rawValue, "Font")) - codesc->type = T_Font; - else if (!strcmp(option->rawValue, "Image")) - codesc->type = T_Image; - else if (!strcmp(option->rawValue, "Hotkey")) - codesc->type = T_Hotkey; - else if (!strcmp(option->rawValue, "Enum")) - { - ConfigOption *eoption; - codesc->type = T_Enum; - HASH_FIND_STR(options, "EnumCount", eoption); - Bool enumError = False; - int i = 0; - if (eoption) - { - int ecount = atoi(eoption->rawValue); - if (ecount > 0) - { - /* 10个选项基本足够了,以后有需求再添加 */ - if (ecount > 10) - ecount = 10; - char *enumname = strdup("Enum0"); - codesc->configEnum.enumDesc = malloc(sizeof(char*) * ecount); - codesc->configEnum.enumCount = ecount; - size_t nel = 0; - for (i=0; i < ecount; i++) { - enumname[4] = '0' + i; - HASH_FIND_STR(options, enumname, eoption); - if (eoption) - { - void* entry = lfind(eoption->rawValue, codesc->configEnum.enumDesc, &nel, sizeof(char*), (int (*)(const void *, const void *)) strcmp); - if (entry) - { - FcitxLog(WARNING, _("Enum option duplicated.")); - } - codesc->configEnum.enumDesc[i] = strdup(eoption->rawValue); - } - else { - enumError = True; - free(enumname); - goto config_enum_final; - } - } - free(enumname); - } - else { - FcitxLog(WARNING, _("Enum option number must larger than 0")); - enumError = True; - goto config_enum_final; - } - } -config_enum_final: - if (enumError) { - int j =0; - for (;j < i;i++) - free(codesc->configEnum.enumDesc[j]); - FcitxLog(WARNING, _("Enum Option is invalid, take it as string")); - codesc->type = T_String; - } - - } - else - { - FcitxLog(WARNING, _("Unknown type, take it as string: %s"), option->rawValue); - codesc->type = T_String; - } - } - else - { - FcitxLog(WARNING, _("Missing type, take it as string")); - codesc->type = T_String; - } - - /* processing default value */ - HASH_FIND_STR(options, "DefaultValue", option); - if (option) - codesc->rawDefaultValue = strdup(option->rawValue); - } - FreeConfigFile(cfile); - return cfdesc; -} - -ConfigSyncResult ConfigOptionInteger(ConfigOption *option, ConfigSync sync) -{ - if (!option->value.integer) - return SyncNoBinding; - switch(sync) - { - case Raw2Value: - *option->value.integer = atoi(option->rawValue); - return SyncSuccess; - case Value2Raw: - if (option->rawValue) - free(option->rawValue); - asprintf(&option->rawValue, "%d", *option->value.integer); - return SyncSuccess; - } - - return SyncInvalid; -} - -ConfigSyncResult ConfigOptionBoolean(ConfigOption *option, ConfigSync sync) -{ - if (!option->value.boolean) - return SyncNoBinding; - switch(sync) - { - case Raw2Value: - if (strcmp(option->rawValue, "True") == 0) - *option->value.boolean = True; - else - *option->value.boolean = False; - return SyncSuccess; - case Value2Raw: - if (option->rawValue) - free(option->rawValue); - if (*option->value.boolean) - option->rawValue = strdup("True"); - else - option->rawValue = strdup("False"); - return SyncSuccess; - } - - return SyncInvalid; -} - -ConfigSyncResult ConfigOptionEnum(ConfigOption *option, ConfigSync sync) -{ - if (!option->value.enumerate || !option->optionDesc) - return SyncNoBinding; - - ConfigOptionDesc *codesc = option->optionDesc; - ConfigEnum* cenum = &codesc->configEnum; - int i = 0; - - switch(sync) - { - case Raw2Value: - for (i = 0; i< cenum->enumCount; i++) - { - if ( strcmp(cenum->enumDesc[i], option->rawValue) == 0) - { - *option->value.enumerate = i; - return SyncSuccess; - } - } - return SyncInvalid; - case Value2Raw: - if (*option->value.enumerate < 0 || *option->value.enumerate >= cenum->enumCount) - return SyncInvalid; - if (option->rawValue) - free(option->rawValue); - option->rawValue = strdup(cenum->enumDesc[*option->value.enumerate]); - return SyncSuccess; - } - - return SyncInvalid; -} - -ConfigSyncResult ConfigOptionColor(ConfigOption *option, ConfigSync sync) -{ - if (!option->value.color) - return SyncNoBinding; - - ConfigColor *color = option->value.color; - int r = 0,g = 0,b = 0; - - switch(sync) - { - case Raw2Value: - if(sscanf(option->rawValue, "%d %d %d",&r,&g,&b) !=3) - return SyncInvalid; - if (IsColorValid(r) && IsColorValid(g) && IsColorValid(b)) - { - color->r=r/255.0; - color->g=g/255.0; - color->b=b/255.0; - return SyncSuccess; - } - return SyncInvalid; - case Value2Raw: - r = (int)(color->r * 255); - g = (int)(color->g * 255); - b = (int)(color->b * 255); - r = RoundColor(r); - g = RoundColor(g); - b = RoundColor(b); - if (option->rawValue) - free(option->rawValue); - option->rawValue = NULL; - asprintf(&option->rawValue, "%d %d %d", r, g ,b); - return SyncSuccess; - } - - return SyncInvalid; - -} - -ConfigSyncResult ConfigOptionString(ConfigOption *option, ConfigSync sync) -{ - if (!option->value.string) - return SyncNoBinding; - switch(sync) - { - case Raw2Value: - if (*option->value.string) - free(*option->value.string); - *option->value.string = strdup(option->rawValue); - return SyncSuccess; - case Value2Raw: - if (option->rawValue) - free(option->rawValue); - option->rawValue =strdup(*option->value.string); - return SyncSuccess; - } - return SyncInvalid; -} - -ConfigSyncResult ConfigOptionChar(ConfigOption *option, ConfigSync sync) -{ - if (!option->value.chr) - return SyncNoBinding; - switch(sync) - { - case Raw2Value: - if (strlen(option->rawValue) == 0) - *option->value.chr = '\0'; - else - *option->value.chr = option->rawValue[0]; - return SyncSuccess; - case Value2Raw: - if (option->rawValue) - free(option->rawValue); - asprintf(&option->rawValue, "%c", *option->value.chr); - return SyncSuccess; - } - return SyncInvalid; -} - -ConfigSyncResult ConfigOptionImage(ConfigOption *option, ConfigSync sync) -{ - if (!option->value.image) - return SyncNoBinding; - - FcitxImage *img = option->value.image; - - switch(sync) - { - case Raw2Value: - memset(img, 0 , sizeof(FcitxImage)); - if(sscanf(option->rawValue, "%s %d %d %d %d %d %d %d %d", img->img_name,&img->position_x,\ - &img->position_y,&img->width,&img->height,&img->response_x,&img->response_y,\ - &img->response_w,&img->response_h) <= 0 ) - { - strcpy(img->img_name, ""); - } - else - { - if( img->response_x ==0 && img->response_y ==0) - { - img->response_x=img->position_x; - img->response_y=img->position_y; - } - } - return SyncSuccess; - case Value2Raw: - break; - } - - return SyncInvalid; -} - -ConfigSyncResult ConfigOptionHotkey(ConfigOption *option, ConfigSync sync) -{ - /* we assume all hotkey can have 2 candiate key */ - if (!option->value.hotkey) - return SyncNoBinding; - - switch(sync) - { - case Raw2Value: - if (option->value.hotkey[0].desc) - { - free(option->value.hotkey[0].desc); - option->value.hotkey[0].desc = NULL; - } - if (option->value.hotkey[1].desc) - { - free(option->value.hotkey[1].desc); - option->value.hotkey[0].desc = NULL; - } - SetHotKey(option->rawValue, option->value.hotkey); - return SyncSuccess; - case Value2Raw: - if (option->rawValue) - free(option->rawValue); - if (option->value.hotkey[1].desc) - asprintf(&option->rawValue, "%s %s", option->value.hotkey[0].desc, option->value.hotkey[1].desc); - else if (option->value.hotkey[0].desc) - { - option->rawValue = strdup(option->value.hotkey[0].desc); - } - else - option->rawValue = strdup(""); - return SyncSuccess; - } - - return SyncInvalid; -} - -FCITX_EXPORT_API -void FreeConfigFile(ConfigFile* cfile) -{ - if (!cfile) - return; - ConfigGroup *groups = cfile->groups, *curGroup; - while(groups) - { - curGroup = groups; - HASH_DEL(groups, curGroup); - FreeConfigGroup(curGroup); - } - free(cfile); -} - -FCITX_EXPORT_API -void FreeConfigFileDesc(ConfigFileDesc* cfdesc) -{ - if (!cfdesc) - return; - ConfigGroupDesc *cgdesc = cfdesc->groupsDesc, *curGroup; - while(cgdesc) - { - curGroup = cgdesc; - HASH_DEL(cgdesc, curGroup); - FreeConfigGroupDesc(curGroup); - } - free(cfdesc); -} - -FCITX_EXPORT_API -void FreeConfigGroup(ConfigGroup *group) -{ - ConfigOption *option = group->options, *curOption; - while(option) - { - curOption = option; - HASH_DEL(option, curOption); - FreeConfigOption(curOption); - } - free(group->groupName); - free(group); -} - -FCITX_EXPORT_API -void FreeConfigGroupDesc(ConfigGroupDesc *cgdesc) -{ - ConfigOptionDesc *codesc = cgdesc->optionsDesc, *curOption; - while(codesc) - { - curOption = codesc; - HASH_DEL(codesc, curOption); - FreeConfigOptionDesc(curOption); - } - free(cgdesc->groupName); - free(cgdesc); -} - -FCITX_EXPORT_API -void FreeConfigOption(ConfigOption *option) -{ - free(option->optionName); - if (option->rawValue) - free(option->rawValue); - free(option); -} - -FCITX_EXPORT_API -void FreeConfigOptionDesc(ConfigOptionDesc *codesc) -{ - free(codesc->optionName); - if (codesc->configEnum.enumCount > 0) - { - int i = 0; - for (i =0 ;i< codesc->configEnum.enumCount; i ++) - { - free(codesc->configEnum.enumDesc[i]); - } - free(codesc->configEnum.enumDesc); - } - if (codesc->rawDefaultValue) - free(codesc->rawDefaultValue); - free(codesc->desc); - free(codesc); -} - -/** - * @brief - * - * @param filename - * - * @return - */ -FCITX_EXPORT_API -ConfigFile* ParseIni(char* filename, ConfigFile* reuse) -{ - FILE* fp = fopen(filename, "r"); - if (!fp) - return NULL; - ConfigFile *cf = ParseIniFp(fp, reuse); - fclose(fp); - return cf; -} - -FCITX_EXPORT_API -ConfigFile* ParseIniFp(FILE *fp, ConfigFile* reuse) -{ - char *line = NULL, *buf = NULL; - size_t len = 0; - int lineLen = 0; - ConfigFile* cfile; - - if (!fp) - { - if (reuse) - return reuse; - else - return NULL; - } - if (reuse) - cfile = reuse; - else - cfile = malloc0(sizeof(ConfigFile)); - ConfigGroup* curGroup = NULL; - int lineNo = 0; - while(getline(&buf, &len, fp) != -1) - { - lineNo ++; - if (line) - free(line); - line = trim(buf); - lineLen = strlen(line); - - if (lineLen == 0 || line[0] == '#') - continue; - - if (line[0] == '[') - { - if (!(line[lineLen - 1] == ']' && lineLen != 2)) - { - FcitxLog(ERROR, _("Configure group name error: line %d"), lineNo); - return NULL; - } - char *groupName; - groupName = malloc(sizeof(char) * (lineLen - 2 + 1) ); - strncpy(groupName, line + 1, lineLen - 2); - groupName[lineLen - 2] = '\0'; - HASH_FIND_STR(cfile->groups, groupName, curGroup); - if (curGroup) - { - FcitxLog(DEBUG, _("Duplicate group name, merge with the previous: %s :line %d"),groupName, lineNo); - free(groupName); - continue; - } - curGroup = malloc0(sizeof(ConfigGroup)); - curGroup->groupName = groupName; - curGroup->options = NULL; - curGroup->groupDesc = NULL; - HASH_ADD_KEYPTR(hh, cfile->groups, curGroup->groupName, strlen(curGroup->groupName), curGroup); - } - else - { - if (curGroup == NULL) - continue; - char *value = strchr(line, '='); - if (!value) - { - FcitxLog(WARNING, _("Invalid Entry: line %d missing '='"), lineNo); - goto next_line; - } - *value = '\0'; - value ++; - char *name = line; - ConfigOption *option; - HASH_FIND_STR(curGroup->options, name, option); - if (option) - { - FcitxLog(DEBUG, _("Duplicate option, overwrite: line %d"), lineNo); - free(option->rawValue); - option->rawValue = strdup(value); - } - else - { - option = malloc0(sizeof(ConfigOption)); - option->optionName = strdup(name); - option->rawValue = strdup(value); - HASH_ADD_KEYPTR(hh, curGroup->options, option->optionName, strlen(option->optionName), option); - } - } - -next_line: - continue; - } - if (line) - free(line); - if (buf) - free(buf); - return cfile; -} - -FCITX_EXPORT_API -Bool SaveConfigFile(char *filename, ConfigFile *cfile, ConfigFileDesc* cdesc) -{ - FILE* fp = fopen(filename, "w"); - if (!fp) - return False; - Bool result = SaveConfigFileFp(fp, cfile, cdesc); - fclose(fp); - return result; -} - -FCITX_EXPORT_API -void ConfigBindSync(GenericConfig* config) -{ - ConfigFile *cfile = config->configFile; - ConfigFileDesc *cdesc = NULL; - ConfigGroupDesc* groupdesc = NULL; - if (!cfile) - return; - cdesc = cfile->fileDesc; - for(groupdesc = cdesc->groupsDesc; - groupdesc != NULL; - groupdesc = (ConfigGroupDesc*)groupdesc->hh.next) - { - ConfigOptionDesc *optiondesc; - ConfigGroup *group = NULL; - HASH_FIND_STR(cfile->groups, groupdesc->groupName, group); - for(optiondesc = groupdesc->optionsDesc; - optiondesc != NULL; - optiondesc = (ConfigOptionDesc*)optiondesc->hh.next) - { - ConfigOption *option = NULL; - if (group) - HASH_FIND_STR(group->options, optiondesc->optionName, option); - - ConfigSyncValue(group, option, Raw2Value); - } - } -} - -FCITX_EXPORT_API -void ConfigSyncValue(ConfigGroup* group, ConfigOption *option, ConfigSync sync) -{ - ConfigOptionDesc *codesc = option->optionDesc; - - ConfigOptionFunc f = NULL; - - if (codesc == NULL) - return; - - if (sync == Value2Raw) - if (option->filter) - option->filter(group, option, option->value.untype, sync, option->filterArg); - - switch (codesc->type) - { - case T_Integer: - f = ConfigOptionInteger; - break; - case T_Color: - f = ConfigOptionColor; - break; - case T_Boolean: - f = ConfigOptionBoolean; - break; - case T_Enum: - f = ConfigOptionEnum; - break; - case T_String: - f = ConfigOptionString; - break; - case T_Hotkey: - f = ConfigOptionHotkey; - break; - case T_Image: - f = ConfigOptionImage; - break; - case T_File: - f = ConfigOptionFile; - break; - case T_Font: - f = ConfigOptionFont; - break; - case T_Char: - f = ConfigOptionChar; - break; - } - ConfigSyncResult r = SyncNoBinding; - if (f) - r = f(option, sync); - if (r == SyncInvalid) - { - if (codesc->rawDefaultValue) - { - FcitxLog(WARNING, _("Option %s is Invalid, Use Default Value %s"), option->optionName, codesc->rawDefaultValue); - if (option->rawValue) - free(option->rawValue); - option->rawValue = strdup(codesc->rawDefaultValue); - if (sync == Raw2Value) - f(option, sync); - } - else - { - FcitxLog(ERROR, _("Option %s is Invalid."), option->optionName); - } - } - - if (sync == Raw2Value) - if (option->filter) - option->filter(group, option, option->value.untype, sync, option->filterArg); -} - -FCITX_EXPORT_API -Bool SaveConfigFileFp(FILE* fp, ConfigFile *cfile, ConfigFileDesc* cdesc) -{ - ConfigGroupDesc* groupdesc = NULL; - for(groupdesc = cdesc->groupsDesc; - groupdesc != NULL; - groupdesc = (ConfigGroupDesc*)groupdesc->hh.next) - { - ConfigOptionDesc *optiondesc; - fprintf(fp, "[%s]\n", groupdesc->groupName); - - ConfigGroup *group = NULL; - if (cfile) - HASH_FIND_STR(cfile->groups, groupdesc->groupName, group); - for(optiondesc = groupdesc->optionsDesc; - optiondesc != NULL; - optiondesc = (ConfigOptionDesc*)optiondesc->hh.next) - { - ConfigOption *option = NULL; - if (group) - HASH_FIND_STR(group->options, optiondesc->optionName, option); - - if (optiondesc->desc && strlen(optiondesc->desc) != 0) - fprintf(fp, "# %s\n", _(optiondesc->desc)); - - - if (!option) - { - if (optiondesc->rawDefaultValue) - fprintf(fp, "%s=%s\n", optiondesc->optionName, optiondesc->rawDefaultValue); - else - FcitxLog(FATAL, _("no default option for %s/%s"), groupdesc->groupName, optiondesc->optionName); - } - else - { - ConfigSyncValue(group, option, Value2Raw); - fprintf(fp, "%s=%s\n", option->optionName, option->rawValue); - } - } - fprintf(fp, "\n"); - } - return True; -} - -FCITX_EXPORT_API -void ConfigBindValue(ConfigFile* cfile, const char *groupName, const char *optionName, void* var, SyncFilter filter, void *arg) -{ - ConfigGroup *group = NULL; - HASH_FIND_STR(cfile->groups, groupName, group); - if (group) - { - ConfigOption *option = NULL; - HASH_FIND_STR(group->options, optionName, option); - if (option) - { - ConfigOptionDesc* codesc = option->optionDesc; - option->filter = filter; - option->filterArg = arg; - if (!codesc) - { - FcitxLog(WARNING, "Unknown Option: %s/%s", groupName, optionName); - return; - } - switch(codesc->type) - { - case T_Image: - option->value.image = (FcitxImage*)var; - break; - case T_Char: - option->value.chr = (char*) var; - break; - case T_Integer: - option->value.integer = (int*) var; - break; - case T_Color: - option->value.color = (ConfigColor*) var; - break; - case T_Boolean: - option->value.boolean = (Bool*) var; - break; - case T_Hotkey: - option->value.hotkey = (HOTKEYS*) var; - break; - case T_Enum: - option->value.enumerate = (int*) var; - break; - case T_String: - case T_File: - case T_Font: - option->value.string = (char**) var; - break; - } - } - } -} - -FCITX_EXPORT_API -ConfigValueType ConfigGetBindValue(GenericConfig *config, const char *groupName, const char* optionName) -{ - ConfigFile* cfile = config->configFile; - ConfigGroup *group = NULL; - ConfigValueType null; - memset(&null, 0, sizeof(ConfigValueType)); - HASH_FIND_STR(cfile->groups, groupName, group); - if (group) - { - ConfigOption *option = NULL; - HASH_FIND_STR(group->options, optionName, option); - if (option) - { - return option->value; - } - } - return null; - -} diff -Nru fcitx-4.0.1/src/fcitx-config/fcitx-config.h fcitx-4.1.1/src/fcitx-config/fcitx-config.h --- fcitx-4.0.1/src/fcitx-config/fcitx-config.h 2010-12-17 04:55:44.000000000 +0000 +++ fcitx-4.1.1/src/fcitx-config/fcitx-config.h 1970-01-01 00:00:00.000000000 +0000 @@ -1,263 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2010~2010 by CSSlayer * - * wengxt@gmail.com * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * - ***************************************************************************/ - -/** - * @file config.h - * @author CSSlayer wengxt@gmail.com - * @date 2010-04-30 - * - * @brief 新配置文件读写 - */ - -#ifndef FCITX_CONFIG_H -#define FCITX_CONFIG_H - -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif - -#ifndef UTHASH_H - -typedef struct UT_hash_handle { - struct UT_hash_table *tbl; - void *prev; /* prev element in app order */ - void *next; /* next element in app order */ - struct UT_hash_handle *hh_prev; /* previous hh in bucket order */ - struct UT_hash_handle *hh_next; /* next hh in bucket order */ - void *key; /* ptr to enclosing struct's key */ - unsigned keylen; /* enclosing struct's key len */ - unsigned hashv; /* result of hash-fcn(key) */ -} UT_hash_handle; - -#endif - -typedef struct ConfigColor -{ - double r; - double g; - double b; -} ConfigColor; - -typedef enum -{ - RELEASE,//鼠标释放状态 - PRESS,//鼠标按下 - MOTION//鼠标停留 -} MouseE; - -typedef struct FcitxImage -{ - char img_name[32]; - //图片绘画区域 - int position_x; - int position_y; - int width; - int height; - //按键响应区域 - int response_x; - int response_y; - int response_w; - int response_h; - //鼠标不同状态mainnMenuwindow不同的显示状态. - MouseE mouse; -} FcitxImage; - -typedef enum ConfigType -{ - T_Integer, - T_Color, - T_String, - T_Char, - T_Boolean, - T_Enum, - T_File, - T_Hotkey, - T_Font, - T_Image -} ConfigType; - -typedef enum ConfigSync -{ - Raw2Value, - Value2Raw -} ConfigSync; - -typedef enum ConfigSyncResult -{ - SyncSuccess, - SyncNoBinding, - SyncInvalid -} ConfigSyncResult; - -typedef union ConfigValueType{ - void *untype; - int *integer; - Bool *boolean; - HOTKEYS *hotkey; - ConfigColor *color; - int *enumerate; - char **string; - char *chr; - FcitxImage* image; -} ConfigValueType; - -typedef struct ConfigGroup ConfigGroup; -typedef struct ConfigOption ConfigOption; - -typedef void (*SyncFilter)(ConfigGroup *, ConfigOption *, void* , ConfigSync, void* ); - -typedef struct ConfigEnum -{ - char **enumDesc; - int enumCount; -} ConfigEnum; - -typedef struct ConfigOptionDesc -{ - char *optionName; - char *desc; - ConfigType type; - char *rawDefaultValue; - ConfigEnum configEnum; - - UT_hash_handle hh; -} ConfigOptionDesc; - -typedef struct ConfigGroupDesc -{ - char *groupName; - ConfigOptionDesc *optionsDesc; - UT_hash_handle hh; -} ConfigGroupDesc; - -typedef struct ConfigFileDesc -{ - ConfigGroupDesc *groupsDesc; -} ConfigFileDesc; - -struct ConfigOption -{ - char *optionName; - char *rawValue; - ConfigValueType value; - SyncFilter filter; - void *filterArg; - ConfigOptionDesc *optionDesc; - UT_hash_handle hh; -} ; - -struct ConfigGroup -{ - char *groupName; - ConfigGroupDesc *groupDesc; - ConfigOption* options; - UT_hash_handle hh; -} ; - -typedef struct ConfigFile -{ - ConfigFileDesc *fileDesc; - ConfigGroup* groups; -} ConfigFile; - -struct GenericConfig; - -typedef void(*ConfigBindingFunc)(struct GenericConfig*); - -typedef struct GenericConfig -{ - ConfigFile *configFile; -} GenericConfig; - -#define CONFIG_BINDING_DECLARE(config_type) \ - void config_type##ConfigBind(config_type* config, ConfigFile* cfile, ConfigFileDesc* cfdesc); -#define CONFIG_BINDING_BEGIN(config_type) \ - void config_type##ConfigBind(config_type* config, ConfigFile* cfile, ConfigFileDesc* cfdesc) { \ - GenericConfig *gconfig = (GenericConfig*) config; \ - if (gconfig->configFile) { \ - FreeConfigFile(gconfig->configFile); \ - } \ - gconfig->configFile = cfile -#define CONFIG_BINDING_REGISTER(g, o, var) \ - do { \ - ConfigBindValue(cfile, g, o, &config->var, NULL, NULL); \ - } while(0) - -#define CONFIG_BINDING_REGISTER_WITH_FILTER(g, o, var, filter_func) \ - do { \ - ConfigBindValue(cfile, g, o, &config->var, filter_func, NULL); \ - } while(0) -#define CONFIG_BINDING_REGISTER_WITH_FILTER_ARG(g, o, var, filter_func, arg) \ - do { \ - ConfigBindValue(cfile, g, o, &config->var, filter_func, arg); \ - } while(0) -#define CONFIG_BINDING_END() } - -#define IsColorValid(c) ((c) >=0 && (c) <= 255) -#define RoundColor(c) ((c)>=0?((c)<=255?c:255):0) - -#define FilterNextTimeEffectBool(name, var) \ - static Bool firstRunOn##name = True; \ - void FilterCopy##name(ConfigGroup *group, ConfigOption *option, void *value, ConfigSync sync, void *filterArg) { \ - Bool *b = (Bool*)value; \ - if (sync == Raw2Value && b) \ - { \ - if (firstRunOn##name) \ - var = *b; \ - firstRunOn##name = False; \ - } \ - } - - - -ConfigFile *ParseConfigFile(char *filename, ConfigFileDesc*); -ConfigFile *ParseMultiConfigFile(char **filename, int len, ConfigFileDesc*); -ConfigFile *ParseConfigFileFp(FILE* fp, ConfigFileDesc* fileDesc); -ConfigFile *ParseMultiConfigFileFp(FILE **fp, int len, ConfigFileDesc* fileDesc); -Bool CheckConfig(ConfigFile *configFile, ConfigFileDesc* fileDesc); -ConfigFileDesc *ParseConfigFileDesc(char* filename); -ConfigFileDesc *ParseConfigFileDescFp(FILE* filename); -ConfigFile* ParseIni(char* filename, ConfigFile* reuse); -ConfigFile* ParseIniFp(FILE* filename, ConfigFile* reuse); -void FreeConfigFile(ConfigFile* cfile); -void FreeConfigFileDesc(ConfigFileDesc* cfdesc); -void FreeConfigGroup(ConfigGroup *group); -void FreeConfigGroupDesc(ConfigGroupDesc *cgdesc); -void FreeConfigOption(ConfigOption *option); -void FreeConfigOptionDesc(ConfigOptionDesc *codesc); -Bool SaveConfigFile(char *filename, ConfigFile *cfile, ConfigFileDesc* cdesc); -Bool SaveConfigFileFp(FILE* fp, ConfigFile *cfile, ConfigFileDesc* cdesc); -void ConfigSyncValue(ConfigGroup* group, ConfigOption *option, ConfigSync sync); -ConfigValueType ConfigGetBindValue(GenericConfig *config, const char *group, const char* option); -void ConfigBindSync(GenericConfig* config); - -typedef ConfigSyncResult (*ConfigOptionFunc)(ConfigOption *, ConfigSync); - -void ConfigBindValue(ConfigFile* cfile, const char *groupName, const char *optionName, void* var, SyncFilter filter, void *arg); - -#ifdef __cplusplus -} -#endif - -#endif diff -Nru fcitx-4.0.1/src/fcitx-config/fcitx-config.pc.in fcitx-4.1.1/src/fcitx-config/fcitx-config.pc.in --- fcitx-4.0.1/src/fcitx-config/fcitx-config.pc.in 2010-12-07 06:34:02.000000000 +0000 +++ fcitx-4.1.1/src/fcitx-config/fcitx-config.pc.in 1970-01-01 00:00:00.000000000 +0000 @@ -1,12 +0,0 @@ -prefix=@prefix@ -exec_prefix=@exec_prefix@ -libdir=@libdir@ -includedir=@includedir@ - -Name: fcitx-config -Description: Fcitx Config Library -Version: 1.0 -Requires: x11 -Requires.private: x11 -Cflags: -I${includedir} -Libs: -L${libdir} -lfcitx-config diff -Nru fcitx-4.0.1/src/fcitx-config/hotkey.c fcitx-4.1.1/src/fcitx-config/hotkey.c --- fcitx-4.0.1/src/fcitx-config/hotkey.c 2010-12-16 00:35:24.000000000 +0000 +++ fcitx-4.1.1/src/fcitx-config/hotkey.c 1970-01-01 00:00:00.000000000 +0000 @@ -1,274 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2002~2005 by Yuking * - * yuking_net@sohu.com * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * - ***************************************************************************/ - -#include "core/fcitx.h" - -#include "fcitx-config/cutils.h" -#include "tools/tools.h" -#include "fcitx-config/hotkey.h" -#include -#include - -/* fcitx key name translist */ -KEY_LIST keyList[] = { - {"TAB", XK_Tab}, - {"ENTER", XK_Return}, - {"LCTRL", XK_Control_L}, - {"LSHIFT", XK_Shift_L}, - {"LALT", XK_Alt_L}, - {"RCTRL", XK_Control_R}, - {"RSHIFT", XK_Shift_R}, - {"RALT", XK_Alt_R}, - {"INSERT", XK_Insert}, - {"HOME", XK_Home}, - {"PGUP", XK_Page_Up}, - {"END", XK_End}, - {"PGDN", XK_Page_Down}, - {"ESCAPE", XK_Escape}, - {"SPACE", XK_space}, - {"DELETE", XK_Delete}, - {"\0", 0} -}; - -static char *GetKeyListString(int key); - -FCITX_EXPORT_API -Bool IsHotKeyDigit(KeySym sym, int state) -{ - if (state) - return False; - - if (sym >= XK_0 && sym <= XK_9) - return True; - - return False; -} - -FCITX_EXPORT_API -Bool IsHotKeyUAZ(KeySym sym, int state) -{ - if (state) - return False; - - if (sym >= XK_A && sym <= XK_Z) - return True; - - return False; -} - -FCITX_EXPORT_API -Bool IsHotKeySimple(KeySym sym, int state) -{ - if (state) - return False; - - if (sym >= XK_space && sym <= XK_asciitilde) - return True; - - return False; -} - -FCITX_EXPORT_API -Bool IsHotKeyLAZ(KeySym sym, int state) -{ - if (state) - return False; - - if (sym >= XK_a && sym <= XK_z) - return True; - - return False; -} - -/* - * Do some custom process - */ -FCITX_EXPORT_API -void GetKey (KeySym keysym, int iKeyState, int iCount, KeySym* outk, unsigned int* outs) -{ - if (iKeyState) - { - if (IsHotKeyLAZ(keysym, 0)) - keysym = keysym + XK_A - XK_a; - - if (iKeyState == KEY_SHIFT_COMP) - if (IsHotKeySimple(keysym, 0) && keysym != XK_space) - iKeyState = KEY_NONE; - } - *outk = keysym; - *outs = iKeyState; -} - - -FCITX_EXPORT_API -char* GetKeyString(KeySym sym, unsigned int state) -{ - char *str; - size_t len = 0; - if (state & KEY_CTRL_COMP) - len += strlen("CTRL_"); - if (state & KEY_ALT_COMP) - len += strlen("ALT_"); - if (state & KEY_SHIFT_COMP) - len += strlen("SHIFT_"); - - char *key = GetKeyListString(sym); - - if (!key) - return NULL; - - len += strlen(key); - - str = malloc0(sizeof(char) * (len + 1)); - if (state & KEY_CTRL_COMP) - strcat(str, "CTRL_"); - if (state & KEY_ALT_COMP) - strcat(str, "ALT_"); - if (state & KEY_SHIFT_COMP) - strcat(str, "SHIFT_"); - strcat(str, key); - free(key); - return str; -} - -/* - * 根据字串来判断键 - * 主要用于从设置文件中读取热键设定 - * 返回-1表示用户设置的热键不支持,一般是因为拼写错误或该热键不在列表中 - */ -FCITX_EXPORT_API -Bool ParseKey (char *strKey, KeySym* sym, int* state) -{ - char *p; - int iKey; - int iKeyState = 0; - - p = strKey; - if (strstr(p, "CTRL_")) - { - iKeyState |= KEY_CTRL_COMP; - p += strlen("CTRL_"); - } - - if (strstr(p, "ALT_")) - { - iKeyState |= KEY_ALT_COMP; - p += strlen("ALT_"); - } - - if (strstr(strKey, "SHIFT_")) - { - iKeyState |= KEY_SHIFT_COMP; - p += strlen("SHIFT_"); - } - - iKey = GetKeyList (p); - if (iKey == -1) - return False; - *sym = iKey; - *state = iKeyState; - return True; -} - -FCITX_EXPORT_API -int GetKeyList (char *strKey) -{ - int i; - - i = 0; - for (;;) { - if (!keyList[i].code) - break; - if (!strcmp (strKey, keyList[i].strKey)) - return keyList[i].code; - i++; - } - - if (strlen(strKey) == 1) - return strKey[0]; - - return -1; -} - -char *GetKeyListString(int key) -{ - if (key > XK_space && key <= XK_asciitilde) - { - char *p; - p = malloc(sizeof(char) * 2); - p[0] = key; - p[1] = '\0'; - return p; - } - int i; - - i = 0; - for (;;) { - if (!keyList[i].code) - break; - if (keyList[i].code == key) - return strdup(keyList[i].strKey); - i++; - } - - return NULL; - -} - -FCITX_EXPORT_API -void SetHotKey (char *strKeys, HOTKEYS * hotkey) -{ - char *p; - char *strKey; - int i = 0, j = 0, k; - - strKeys = trim(strKeys); - p = strKeys; - - for (k = 0; k < 2; k++) - { - KeySym sym; - int state; - i = 0; - while (p[i] != ' ' && p[i] != '\0') - i++; - strKey = strndup (p, i); - strKey[i] = '\0'; - if (ParseKey (strKey, &sym, &state)) - { - hotkey[j].sym = sym; - hotkey[j].state = state; - hotkey[j].desc = trim(strKey); - j ++; - } - free(strKey); - if (p[i] == '\0') - break; - p = &p[i + 1]; - } - for (; j < 2; j++) - { - hotkey[j].sym = 0; - hotkey[j].state = 0; - hotkey[j].desc= NULL; - } - free(strKeys); -} - diff -Nru fcitx-4.0.1/src/fcitx-config/hotkey.h fcitx-4.1.1/src/fcitx-config/hotkey.h --- fcitx-4.0.1/src/fcitx-config/hotkey.h 2010-12-06 11:57:21.000000000 +0000 +++ fcitx-4.1.1/src/fcitx-config/hotkey.h 1970-01-01 00:00:00.000000000 +0000 @@ -1,83 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2002~2005 by Yuking * - * yuking_net@sohu.com * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * - ***************************************************************************/ -/** - * @file hotkey.h - * @author Yuking yuking_net@sohu.com - * @date 2008-1-16 - * - * @brief 键盘扫描码列表 - * - * - */ - -#ifndef _HOTKEY_H -#define _HOTKEY_H - -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif - -typedef struct HOTKEYS -{ - char *desc; - int sym; - int state; -} HOTKEYS; - -typedef struct _KEY_LIST { - char *strKey; - int code; -} KEY_LIST; - -typedef enum _KEY_STATE { - KEY_NONE = 0, - KEY_SHIFT_COMP = 1 << 0, - KEY_CAPSLOCK = 1 << 1, - KEY_CTRL_COMP = 1 << 2, - KEY_ALT_COMP = 1 << 3, - KEY_ALT_SHIFT_COMP = KEY_ALT_COMP | KEY_SHIFT_COMP, - KEY_CTRL_SHIFT_COMP = KEY_CTRL_COMP | KEY_SHIFT_COMP, - KEY_CTRL_ALT_COMP = KEY_CTRL_COMP | KEY_ALT_COMP, - KEY_CTRL_ALT_SHIFT_COMP = KEY_CTRL_COMP | KEY_ALT_COMP | KEY_SHIFT_COMP, - KEY_NUMLOCK = 1 << 4, - KEY_SUPER_COMP = 1 << 6, - KEY_SCROLLLOCK = 1 << 7, - KEY_MOUSE_PRESSED = 1 << 8 -} KEY_STATE; - -void SetHotKey (char *strKey, HOTKEYS * hotkey); -void GetKey (KeySym keysym, int iKeyState, int iCount, KeySym* outk, unsigned int* outs); -Bool ParseKey (char *strKey, KeySym* sym, int* state); -int GetKeyList (char *strKey); -char* GetKeyString(KeySym sym, unsigned int state); - -Bool IsHotKeyDigit(KeySym sym, int state); -Bool IsHotKeyUAZ(KeySym sym, int state); -Bool IsHotKeyLAZ(KeySym sym, int state); -Bool IsHotKeySimple(KeySym sym, int state); - -#ifdef __cplusplus -} -#endif - -#endif diff -Nru fcitx-4.0.1/src/fcitx-config/Makefile.am fcitx-4.1.1/src/fcitx-config/Makefile.am --- fcitx-4.0.1/src/fcitx-config/Makefile.am 2010-12-17 04:15:31.000000000 +0000 +++ fcitx-4.1.1/src/fcitx-config/Makefile.am 1970-01-01 00:00:00.000000000 +0000 @@ -1,23 +0,0 @@ -INCLUDES = -I$(top_srcdir)/lib -I$(top_srcdir)/src -DEFS = -DPKGDATADIR=\"$(pkgdatadir)\" -DDATADIR=\"$(datadir)\" -DLIBDIR=\"$(libdir)\" - -lib_LTLIBRARIES=libfcitx-config.la -libfcitx_config_la_SOURCES= \ - cutils.c cutils.h \ - sprintf.c sprintf.h \ - fcitx-config.c fcitx-config.h \ - hotkey.c hotkey.h \ - uthash.h \ - xdg.c xdg.h -libfcitx_config_la_LDFLAGS= -version-number 4:0:0 -no-undefined -libfcitx_config_la_CFLAGS= -fvisibility=hidden -libfcitx_configincludedir= $(includedir)/fcitx-config -libfcitx_configinclude_HEADERS= \ - fcitx-config.h \ - hotkey.h \ - xdg.h - -pkgconfigdir = $(libdir)/pkgconfig -pkgconfig_DATA = fcitx-config.pc -EXTRA_DIST = \ - fcitx-config.pc.in diff -Nru fcitx-4.0.1/src/fcitx-config/Makefile.in fcitx-4.1.1/src/fcitx-config/Makefile.in --- fcitx-4.0.1/src/fcitx-config/Makefile.in 2010-12-17 04:26:30.000000000 +0000 +++ fcitx-4.1.1/src/fcitx-config/Makefile.in 1970-01-01 00:00:00.000000000 +0000 @@ -1,704 +0,0 @@ -# Makefile.in generated by automake 1.11.1 from Makefile.am. -# @configure_input@ - -# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, -# Inc. -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - -@SET_MAKE@ - - - -VPATH = @srcdir@ -pkgdatadir = $(datadir)/@PACKAGE@ -pkgincludedir = $(includedir)/@PACKAGE@ -pkglibdir = $(libdir)/@PACKAGE@ -pkglibexecdir = $(libexecdir)/@PACKAGE@ -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = @build@ -host_triplet = @host@ -subdir = src/fcitx-config -DIST_COMMON = $(libfcitx_configinclude_HEADERS) $(srcdir)/Makefile.am \ - $(srcdir)/Makefile.in $(srcdir)/fcitx-config.pc.in -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/configure.in -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -mkinstalldirs = $(install_sh) -d -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = fcitx-config.pc -CONFIG_CLEAN_VPATH_FILES = -am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; -am__vpath_adj = case $$p in \ - $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ - *) f=$$p;; \ - esac; -am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; -am__install_max = 40 -am__nobase_strip_setup = \ - srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` -am__nobase_strip = \ - for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" -am__nobase_list = $(am__nobase_strip_setup); \ - for p in $$list; do echo "$$p $$p"; done | \ - sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ - $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ - if (++n[$$2] == $(am__install_max)) \ - { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ - END { for (dir in files) print dir, files[dir] }' -am__base_list = \ - sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ - sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' -am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(pkgconfigdir)" \ - "$(DESTDIR)$(libfcitx_configincludedir)" -LTLIBRARIES = $(lib_LTLIBRARIES) -libfcitx_config_la_LIBADD = -am_libfcitx_config_la_OBJECTS = libfcitx_config_la-cutils.lo \ - libfcitx_config_la-sprintf.lo \ - libfcitx_config_la-fcitx-config.lo \ - libfcitx_config_la-hotkey.lo libfcitx_config_la-xdg.lo -libfcitx_config_la_OBJECTS = $(am_libfcitx_config_la_OBJECTS) -AM_V_lt = $(am__v_lt_$(V)) -am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) -am__v_lt_0 = --silent -libfcitx_config_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ - $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ - $(libfcitx_config_la_CFLAGS) $(CFLAGS) \ - $(libfcitx_config_la_LDFLAGS) $(LDFLAGS) -o $@ -DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles -am__mv = mv -f -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ - $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ - $(AM_CFLAGS) $(CFLAGS) -AM_V_CC = $(am__v_CC_$(V)) -am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) -am__v_CC_0 = @echo " CC " $@; -AM_V_at = $(am__v_at_$(V)) -am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) -am__v_at_0 = @ -CCLD = $(CC) -LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -AM_V_CCLD = $(am__v_CCLD_$(V)) -am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) -am__v_CCLD_0 = @echo " CCLD " $@; -AM_V_GEN = $(am__v_GEN_$(V)) -am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) -am__v_GEN_0 = @echo " GEN " $@; -SOURCES = $(libfcitx_config_la_SOURCES) -DIST_SOURCES = $(libfcitx_config_la_SOURCES) -DATA = $(pkgconfig_DATA) -HEADERS = $(libfcitx_configinclude_HEADERS) -ETAGS = etags -CTAGS = ctags -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -ACLOCAL = @ACLOCAL@ -ALL_LINGUAS = @ALL_LINGUAS@ -AMTAR = @AMTAR@ -AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ -AR = @AR@ -AUTOCONF = @AUTOCONF@ -AUTOHEADER = @AUTOHEADER@ -AUTOMAKE = @AUTOMAKE@ -AWK = @AWK@ -CAIRO_XLIB_CFLAGS = @CAIRO_XLIB_CFLAGS@ -CAIRO_XLIB_LIBS = @CAIRO_XLIB_LIBS@ -CC = @CC@ -CCDEPMODE = @CCDEPMODE@ -CFLAGS = @CFLAGS@ -CPP = @CPP@ -CPPFLAGS = @CPPFLAGS@ -CYGPATH_W = @CYGPATH_W@ -DATADIRNAME = @DATADIRNAME@ -DBUS_CFLAGS = @DBUS_CFLAGS@ -DBUS_LIBS = @DBUS_LIBS@ -DEFS = -DPKGDATADIR=\"$(pkgdatadir)\" -DDATADIR=\"$(datadir)\" -DLIBDIR=\"$(libdir)\" -DEPDIR = @DEPDIR@ -DLLTOOL = @DLLTOOL@ -DSYMUTIL = @DSYMUTIL@ -DUMPBIN = @DUMPBIN@ -ECHO_C = @ECHO_C@ -ECHO_N = @ECHO_N@ -ECHO_T = @ECHO_T@ -EGREP = @EGREP@ -EXEEXT = @EXEEXT@ -FGREP = @FGREP@ -FONTCONFIG_CFLAGS = @FONTCONFIG_CFLAGS@ -FONTCONFIG_LIBS = @FONTCONFIG_LIBS@ -GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ -GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ -GMSGFMT = @GMSGFMT@ -GMSGFMT_015 = @GMSGFMT_015@ -GREP = @GREP@ -HOST_LIBS = @HOST_LIBS@ -INCINTL = @INCINTL@ -INSTALL = @INSTALL@ -INSTALL_DATA = @INSTALL_DATA@ -INSTALL_PROGRAM = @INSTALL_PROGRAM@ -INSTALL_SCRIPT = @INSTALL_SCRIPT@ -INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ -INTLLIBS = @INTLLIBS@ -INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ -INTLTOOL_MERGE = @INTLTOOL_MERGE@ -INTLTOOL_PERL = @INTLTOOL_PERL@ -INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ -INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ -LD = @LD@ -LDFLAGS = @LDFLAGS@ -LIBICONV = @LIBICONV@ -LIBINTL = @LIBINTL@ -LIBOBJS = @LIBOBJS@ -LIBS = @LIBS@ -LIBTOOL = @LIBTOOL@ -LIPO = @LIPO@ -LN_S = @LN_S@ -LTLIBICONV = @LTLIBICONV@ -LTLIBINTL = @LTLIBINTL@ -LTLIBOBJS = @LTLIBOBJS@ -MAKEINFO = @MAKEINFO@ -MANIFEST_TOOL = @MANIFEST_TOOL@ -MD5SUM = @MD5SUM@ -MKDIR_P = @MKDIR_P@ -MSGFMT = @MSGFMT@ -MSGFMT_015 = @MSGFMT_015@ -MSGMERGE = @MSGMERGE@ -NM = @NM@ -NMEDIT = @NMEDIT@ -OBJDUMP = @OBJDUMP@ -OBJEXT = @OBJEXT@ -OTOOL = @OTOOL@ -OTOOL64 = @OTOOL64@ -PACKAGE = @PACKAGE@ -PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ -PACKAGE_NAME = @PACKAGE_NAME@ -PACKAGE_STRING = @PACKAGE_STRING@ -PACKAGE_TARNAME = @PACKAGE_TARNAME@ -PACKAGE_URL = @PACKAGE_URL@ -PACKAGE_VERSION = @PACKAGE_VERSION@ -PANGOCAIRO_CFLAGS = @PANGOCAIRO_CFLAGS@ -PANGOCAIRO_LIBS = @PANGOCAIRO_LIBS@ -PATH_SEPARATOR = @PATH_SEPARATOR@ -PKG_CONFIG = @PKG_CONFIG@ -PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ -PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ -POSUB = @POSUB@ -RANLIB = @RANLIB@ -SED = @SED@ -SET_MAKE = @SET_MAKE@ -SHELL = @SHELL@ -STRIP = @STRIP@ -TAR = @TAR@ -USE_NLS = @USE_NLS@ -VERSION = @VERSION@ -WGET = @WGET@ -XGETTEXT = @XGETTEXT@ -XGETTEXT_015 = @XGETTEXT_015@ -XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ -XMKMF = @XMKMF@ -XRENDER_CFLAGS = @XRENDER_CFLAGS@ -XRENDER_LIBS = @XRENDER_LIBS@ -X_CFLAGS = @X_CFLAGS@ -X_LIBS = @X_LIBS@ -abs_builddir = @abs_builddir@ -abs_srcdir = @abs_srcdir@ -abs_top_builddir = @abs_top_builddir@ -abs_top_srcdir = @abs_top_srcdir@ -ac_ct_AR = @ac_ct_AR@ -ac_ct_CC = @ac_ct_CC@ -ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ -am__include = @am__include@ -am__leading_dot = @am__leading_dot@ -am__quote = @am__quote@ -am__tar = @am__tar@ -am__untar = @am__untar@ -bindir = @bindir@ -build = @build@ -build_alias = @build_alias@ -build_cpu = @build_cpu@ -build_os = @build_os@ -build_vendor = @build_vendor@ -builddir = @builddir@ -datadir = @datadir@ -datarootdir = @datarootdir@ -docdir = @docdir@ -dvidir = @dvidir@ -exec_prefix = @exec_prefix@ -host = @host@ -host_alias = @host_alias@ -host_cpu = @host_cpu@ -host_os = @host_os@ -host_vendor = @host_vendor@ -htmldir = @htmldir@ -includedir = @includedir@ -infodir = @infodir@ -install_sh = @install_sh@ -libdir = @libdir@ -libexecdir = @libexecdir@ -localedir = @localedir@ -localstatedir = @localstatedir@ -mandir = @mandir@ -mkdir_p = @mkdir_p@ -oldincludedir = @oldincludedir@ -pdfdir = @pdfdir@ -prefix = @prefix@ -program_transform_name = @program_transform_name@ -psdir = @psdir@ -sbindir = @sbindir@ -sharedstatedir = @sharedstatedir@ -srcdir = @srcdir@ -sysconfdir = @sysconfdir@ -target_alias = @target_alias@ -top_build_prefix = @top_build_prefix@ -top_builddir = @top_builddir@ -top_srcdir = @top_srcdir@ -INCLUDES = -I$(top_srcdir)/lib -I$(top_srcdir)/src -lib_LTLIBRARIES = libfcitx-config.la -libfcitx_config_la_SOURCES = \ - cutils.c cutils.h \ - sprintf.c sprintf.h \ - fcitx-config.c fcitx-config.h \ - hotkey.c hotkey.h \ - uthash.h \ - xdg.c xdg.h - -libfcitx_config_la_LDFLAGS = -version-number 4:0:0 -no-undefined -libfcitx_config_la_CFLAGS = -fvisibility=hidden -libfcitx_configincludedir = $(includedir)/fcitx-config -libfcitx_configinclude_HEADERS = \ - fcitx-config.h \ - hotkey.h \ - xdg.h - -pkgconfigdir = $(libdir)/pkgconfig -pkgconfig_DATA = fcitx-config.pc -EXTRA_DIST = \ - fcitx-config.pc.in - -all: all-am - -.SUFFIXES: -.SUFFIXES: .c .lo .o .obj -$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ - && { if test -f $@; then exit 0; else break; fi; }; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/fcitx-config/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign src/fcitx-config/Makefile -.PRECIOUS: Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(am__aclocal_m4_deps): -fcitx-config.pc: $(top_builddir)/config.status $(srcdir)/fcitx-config.pc.in - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ -install-libLTLIBRARIES: $(lib_LTLIBRARIES) - @$(NORMAL_INSTALL) - test -z "$(libdir)" || $(MKDIR_P) "$(DESTDIR)$(libdir)" - @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ - list2=; for p in $$list; do \ - if test -f $$p; then \ - list2="$$list2 $$p"; \ - else :; fi; \ - done; \ - test -z "$$list2" || { \ - echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(libdir)'"; \ - $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(libdir)"; \ - } - -uninstall-libLTLIBRARIES: - @$(NORMAL_UNINSTALL) - @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ - for p in $$list; do \ - $(am__strip_dir) \ - echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$f'"; \ - $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$f"; \ - done - -clean-libLTLIBRARIES: - -test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES) - @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ - dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ - test "$$dir" != "$$p" || dir=.; \ - echo "rm -f \"$${dir}/so_locations\""; \ - rm -f "$${dir}/so_locations"; \ - done -libfcitx-config.la: $(libfcitx_config_la_OBJECTS) $(libfcitx_config_la_DEPENDENCIES) - $(AM_V_CCLD)$(libfcitx_config_la_LINK) -rpath $(libdir) $(libfcitx_config_la_OBJECTS) $(libfcitx_config_la_LIBADD) $(LIBS) - -mostlyclean-compile: - -rm -f *.$(OBJEXT) - -distclean-compile: - -rm -f *.tab.c - -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libfcitx_config_la-cutils.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libfcitx_config_la-fcitx-config.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libfcitx_config_la-hotkey.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libfcitx_config_la-sprintf.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libfcitx_config_la-xdg.Plo@am__quote@ - -.c.o: -@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c $< - -.c.obj: -@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` - -.c.lo: -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< - -libfcitx_config_la-cutils.lo: cutils.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libfcitx_config_la_CFLAGS) $(CFLAGS) -MT libfcitx_config_la-cutils.lo -MD -MP -MF $(DEPDIR)/libfcitx_config_la-cutils.Tpo -c -o libfcitx_config_la-cutils.lo `test -f 'cutils.c' || echo '$(srcdir)/'`cutils.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libfcitx_config_la-cutils.Tpo $(DEPDIR)/libfcitx_config_la-cutils.Plo -@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='cutils.c' object='libfcitx_config_la-cutils.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libfcitx_config_la_CFLAGS) $(CFLAGS) -c -o libfcitx_config_la-cutils.lo `test -f 'cutils.c' || echo '$(srcdir)/'`cutils.c - -libfcitx_config_la-sprintf.lo: sprintf.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libfcitx_config_la_CFLAGS) $(CFLAGS) -MT libfcitx_config_la-sprintf.lo -MD -MP -MF $(DEPDIR)/libfcitx_config_la-sprintf.Tpo -c -o libfcitx_config_la-sprintf.lo `test -f 'sprintf.c' || echo '$(srcdir)/'`sprintf.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libfcitx_config_la-sprintf.Tpo $(DEPDIR)/libfcitx_config_la-sprintf.Plo -@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sprintf.c' object='libfcitx_config_la-sprintf.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libfcitx_config_la_CFLAGS) $(CFLAGS) -c -o libfcitx_config_la-sprintf.lo `test -f 'sprintf.c' || echo '$(srcdir)/'`sprintf.c - -libfcitx_config_la-fcitx-config.lo: fcitx-config.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libfcitx_config_la_CFLAGS) $(CFLAGS) -MT libfcitx_config_la-fcitx-config.lo -MD -MP -MF $(DEPDIR)/libfcitx_config_la-fcitx-config.Tpo -c -o libfcitx_config_la-fcitx-config.lo `test -f 'fcitx-config.c' || echo '$(srcdir)/'`fcitx-config.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libfcitx_config_la-fcitx-config.Tpo $(DEPDIR)/libfcitx_config_la-fcitx-config.Plo -@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='fcitx-config.c' object='libfcitx_config_la-fcitx-config.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libfcitx_config_la_CFLAGS) $(CFLAGS) -c -o libfcitx_config_la-fcitx-config.lo `test -f 'fcitx-config.c' || echo '$(srcdir)/'`fcitx-config.c - -libfcitx_config_la-hotkey.lo: hotkey.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libfcitx_config_la_CFLAGS) $(CFLAGS) -MT libfcitx_config_la-hotkey.lo -MD -MP -MF $(DEPDIR)/libfcitx_config_la-hotkey.Tpo -c -o libfcitx_config_la-hotkey.lo `test -f 'hotkey.c' || echo '$(srcdir)/'`hotkey.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libfcitx_config_la-hotkey.Tpo $(DEPDIR)/libfcitx_config_la-hotkey.Plo -@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='hotkey.c' object='libfcitx_config_la-hotkey.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libfcitx_config_la_CFLAGS) $(CFLAGS) -c -o libfcitx_config_la-hotkey.lo `test -f 'hotkey.c' || echo '$(srcdir)/'`hotkey.c - -libfcitx_config_la-xdg.lo: xdg.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libfcitx_config_la_CFLAGS) $(CFLAGS) -MT libfcitx_config_la-xdg.lo -MD -MP -MF $(DEPDIR)/libfcitx_config_la-xdg.Tpo -c -o libfcitx_config_la-xdg.lo `test -f 'xdg.c' || echo '$(srcdir)/'`xdg.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libfcitx_config_la-xdg.Tpo $(DEPDIR)/libfcitx_config_la-xdg.Plo -@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='xdg.c' object='libfcitx_config_la-xdg.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libfcitx_config_la_CFLAGS) $(CFLAGS) -c -o libfcitx_config_la-xdg.lo `test -f 'xdg.c' || echo '$(srcdir)/'`xdg.c - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs -install-pkgconfigDATA: $(pkgconfig_DATA) - @$(NORMAL_INSTALL) - test -z "$(pkgconfigdir)" || $(MKDIR_P) "$(DESTDIR)$(pkgconfigdir)" - @list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \ - for p in $$list; do \ - if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ - echo "$$d$$p"; \ - done | $(am__base_list) | \ - while read files; do \ - echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(pkgconfigdir)'"; \ - $(INSTALL_DATA) $$files "$(DESTDIR)$(pkgconfigdir)" || exit $$?; \ - done - -uninstall-pkgconfigDATA: - @$(NORMAL_UNINSTALL) - @list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \ - files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ - test -n "$$files" || exit 0; \ - echo " ( cd '$(DESTDIR)$(pkgconfigdir)' && rm -f" $$files ")"; \ - cd "$(DESTDIR)$(pkgconfigdir)" && rm -f $$files -install-libfcitx_configincludeHEADERS: $(libfcitx_configinclude_HEADERS) - @$(NORMAL_INSTALL) - test -z "$(libfcitx_configincludedir)" || $(MKDIR_P) "$(DESTDIR)$(libfcitx_configincludedir)" - @list='$(libfcitx_configinclude_HEADERS)'; test -n "$(libfcitx_configincludedir)" || list=; \ - for p in $$list; do \ - if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ - echo "$$d$$p"; \ - done | $(am__base_list) | \ - while read files; do \ - echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(libfcitx_configincludedir)'"; \ - $(INSTALL_HEADER) $$files "$(DESTDIR)$(libfcitx_configincludedir)" || exit $$?; \ - done - -uninstall-libfcitx_configincludeHEADERS: - @$(NORMAL_UNINSTALL) - @list='$(libfcitx_configinclude_HEADERS)'; test -n "$(libfcitx_configincludedir)" || list=; \ - files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ - test -n "$$files" || exit 0; \ - echo " ( cd '$(DESTDIR)$(libfcitx_configincludedir)' && rm -f" $$files ")"; \ - cd "$(DESTDIR)$(libfcitx_configincludedir)" && rm -f $$files - -ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - mkid -fID $$unique -tags: TAGS - -TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - set x; \ - here=`pwd`; \ - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: CTAGS -CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d "$(distdir)/$$file"; then \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ - else \ - test -f "$(distdir)/$$file" \ - || cp -p $$d/$$file "$(distdir)/$$file" \ - || exit 1; \ - fi; \ - done -check-am: all-am -check: check-am -all-am: Makefile $(LTLIBRARIES) $(DATA) $(HEADERS) -installdirs: - for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(pkgconfigdir)" "$(DESTDIR)$(libfcitx_configincludedir)"; do \ - test -z "$$dir" || $(MKDIR_P) "$$dir"; \ - done -install: install-am -install-exec: install-exec-am -install-data: install-data-am -uninstall: uninstall-am - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-am -install-strip: - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - `test -z '$(STRIP)' || \ - echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install -mostlyclean-generic: - -clean-generic: - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-am - -clean-am: clean-generic clean-libLTLIBRARIES clean-libtool \ - mostlyclean-am - -distclean: distclean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -distclean-am: clean-am distclean-compile distclean-generic \ - distclean-tags - -dvi: dvi-am - -dvi-am: - -html: html-am - -html-am: - -info: info-am - -info-am: - -install-data-am: install-libfcitx_configincludeHEADERS \ - install-pkgconfigDATA - -install-dvi: install-dvi-am - -install-dvi-am: - -install-exec-am: install-libLTLIBRARIES - -install-html: install-html-am - -install-html-am: - -install-info: install-info-am - -install-info-am: - -install-man: - -install-pdf: install-pdf-am - -install-pdf-am: - -install-ps: install-ps-am - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-am - -mostlyclean-am: mostlyclean-compile mostlyclean-generic \ - mostlyclean-libtool - -pdf: pdf-am - -pdf-am: - -ps: ps-am - -ps-am: - -uninstall-am: uninstall-libLTLIBRARIES \ - uninstall-libfcitx_configincludeHEADERS \ - uninstall-pkgconfigDATA - -.MAKE: install-am install-strip - -.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ - clean-libLTLIBRARIES clean-libtool ctags distclean \ - distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am html html-am info info-am \ - install install-am install-data install-data-am install-dvi \ - install-dvi-am install-exec install-exec-am install-html \ - install-html-am install-info install-info-am \ - install-libLTLIBRARIES install-libfcitx_configincludeHEADERS \ - install-man install-pdf install-pdf-am install-pkgconfigDATA \ - install-ps install-ps-am install-strip installcheck \ - installcheck-am installdirs maintainer-clean \ - maintainer-clean-generic mostlyclean mostlyclean-compile \ - mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ - tags uninstall uninstall-am uninstall-libLTLIBRARIES \ - uninstall-libfcitx_configincludeHEADERS \ - uninstall-pkgconfigDATA - - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff -Nru fcitx-4.0.1/src/fcitx-config/sprintf.c fcitx-4.1.1/src/fcitx-config/sprintf.c --- fcitx-4.0.1/src/fcitx-config/sprintf.c 2010-11-28 11:55:00.000000000 +0000 +++ fcitx-4.1.1/src/fcitx-config/sprintf.c 1970-01-01 00:00:00.000000000 +0000 @@ -1,63 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2010~2010 by CSSlayer * - * wengxt@gmail.com * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * - ***************************************************************************/ - -#include - -#include "core/fcitx.h" - -#include "fcitx-config/sprintf.h" - -#ifndef HAVE_VASPRINTF -int vasprintf(char **ptr, const char *format, va_list ap) -{ - int ret; - va_list ap2; - - va_copy(ap2, ap); - - ret = vsnprintf(NULL, 0, format, ap2); - if (ret <= 0) return ret; - - (*ptr) = (char *)malloc(ret+1); - if (!*ptr) return -1; - - va_copy(ap2, ap); - - ret = vsnprintf(*ptr, ret+1, format, ap2); - - return ret; -} -#endif - -#ifndef HAVE_ASPRINTF -int asprintf(char **ptr, const char *format, ...) -{ - va_list ap; - int ret; - - *ptr = NULL; - va_start(ap, format); - ret = vasprintf(ptr, format, ap); - va_end(ap); - - return ret; -} -#endif - diff -Nru fcitx-4.0.1/src/fcitx-config/sprintf.h fcitx-4.1.1/src/fcitx-config/sprintf.h --- fcitx-4.0.1/src/fcitx-config/sprintf.h 2010-11-28 11:55:00.000000000 +0000 +++ fcitx-4.1.1/src/fcitx-config/sprintf.h 1970-01-01 00:00:00.000000000 +0000 @@ -1,30 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2010~2010 by CSSlayer * - * wengxt@gmail.com * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * - ***************************************************************************/ - -#include -#include - -#ifndef HAVE_VASPRINTF -extern int vasprintf(char **ptr, const char *format, va_list ap); -#endif - -#ifndef HAVE_ASPRINTF -extern int asprintf(char **ptr, const char *format, ...); -#endif diff -Nru fcitx-4.0.1/src/fcitx-config/uthash.h fcitx-4.1.1/src/fcitx-config/uthash.h --- fcitx-4.0.1/src/fcitx-config/uthash.h 2010-12-06 12:03:48.000000000 +0000 +++ fcitx-4.1.1/src/fcitx-config/uthash.h 1970-01-01 00:00:00.000000000 +0000 @@ -1,927 +0,0 @@ -/* -Copyright (c) 2003-2009, Troy D. Hanson http://uthash.sourceforge.net -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS -IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED -TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A -PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER -OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, -EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, -PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -*/ - -#ifndef UTHASH_H -#define UTHASH_H - -#include /* memcmp,strlen */ -#include /* ptrdiff_t */ -#include /* uint32_t etc */ - -#define UTHASH_VERSION 1.8 - -/* C++ requires extra stringent casting */ -#if defined __cplusplus -#define TYPEOF(x) (typeof(x)) -#else -#define TYPEOF(x) -#endif - - -#define uthash_fatal(msg) /* fatal error (out of memory,etc) */ -#define uthash_malloc(sz) malloc(sz) /* malloc fcn */ -#define uthash_free(ptr) free(ptr) /* free fcn */ - -#define uthash_noexpand_fyi(tbl) /* can be defined to log noexpand */ -#define uthash_expand_fyi(tbl) /* can be defined to log expands */ - -/* initial number of buckets */ -#define HASH_INITIAL_NUM_BUCKETS 32 /* initial number of buckets */ -#define HASH_INITIAL_NUM_BUCKETS_LOG2 5 /* lg2 of initial number of buckets */ -#define HASH_BKT_CAPACITY_THRESH 10 /* expand when bucket count reaches */ - -/* calculate the element whose hash handle address is hhe */ -#define ELMT_FROM_HH(tbl,hhp) ((void*)(((char*)hhp) - (tbl)->hho)) - -#define HASH_FIND(hh,head,keyptr,keylen,out) \ -do { \ - unsigned _hf_bkt,_hf_hashv; \ - out=TYPEOF(out)NULL; \ - if (head) { \ - HASH_FCN(keyptr,keylen, (head)->hh.tbl->num_buckets, _hf_hashv, _hf_bkt); \ - if (HASH_BLOOM_TEST((head)->hh.tbl, _hf_hashv)) { \ - HASH_FIND_IN_BKT((head)->hh.tbl, hh, (head)->hh.tbl->buckets[ _hf_bkt ], \ - keyptr,keylen,out); \ - } \ - } \ -} while (0) - -#ifdef HASH_BLOOM -#define HASH_BLOOM_BITLEN (1ULL << HASH_BLOOM) -#define HASH_BLOOM_BYTELEN (HASH_BLOOM_BITLEN/8) + ((HASH_BLOOM_BITLEN%8) ? 1:0) -#define HASH_BLOOM_MAKE(tbl) \ -do { \ - (tbl)->bloom_nbits = HASH_BLOOM; \ - (tbl)->bloom_bv = (uint8_t*)uthash_malloc(HASH_BLOOM_BYTELEN); \ - if (!((tbl)->bloom_bv)) { uthash_fatal( "out of memory"); } \ - memset((tbl)->bloom_bv, 0, HASH_BLOOM_BYTELEN); \ - (tbl)->bloom_sig = HASH_BLOOM_SIGNATURE; \ -} while (0); - -#define HASH_BLOOM_FREE(tbl) \ -do { \ - uthash_free((tbl)->bloom_bv); \ -} while (0); - -#define HASH_BLOOM_BITSET(bv,idx) (bv[(idx)/8] |= (1U << ((idx)%8))) -#define HASH_BLOOM_BITTEST(bv,idx) (bv[(idx)/8] & (1U << ((idx)%8))) - -#define HASH_BLOOM_ADD(tbl,hashv) \ - HASH_BLOOM_BITSET((tbl)->bloom_bv, (hashv & (uint32_t)((1ULL << (tbl)->bloom_nbits) - 1))) - -#define HASH_BLOOM_TEST(tbl,hashv) \ - HASH_BLOOM_BITTEST((tbl)->bloom_bv, (hashv & (uint32_t)((1ULL << (tbl)->bloom_nbits) - 1))) - -#else -#define HASH_BLOOM_MAKE(tbl) -#define HASH_BLOOM_FREE(tbl) -#define HASH_BLOOM_ADD(tbl,hashv) -#define HASH_BLOOM_TEST(tbl,hashv) (1) -#endif - -#define HASH_MAKE_TABLE(hh,head) \ -do { \ - (head)->hh.tbl = (UT_hash_table*)uthash_malloc( \ - sizeof(UT_hash_table)); \ - if (!((head)->hh.tbl)) { uthash_fatal( "out of memory"); } \ - memset((head)->hh.tbl, 0, sizeof(UT_hash_table)); \ - (head)->hh.tbl->tail = &((head)->hh); \ - (head)->hh.tbl->num_buckets = HASH_INITIAL_NUM_BUCKETS; \ - (head)->hh.tbl->log2_num_buckets = HASH_INITIAL_NUM_BUCKETS_LOG2; \ - (head)->hh.tbl->hho = (char*)(&(head)->hh) - (char*)(head); \ - (head)->hh.tbl->buckets = (UT_hash_bucket*)uthash_malloc( \ - HASH_INITIAL_NUM_BUCKETS*sizeof(struct UT_hash_bucket)); \ - if (! (head)->hh.tbl->buckets) { uthash_fatal( "out of memory"); } \ - memset((head)->hh.tbl->buckets, 0, \ - HASH_INITIAL_NUM_BUCKETS*sizeof(struct UT_hash_bucket)); \ - HASH_BLOOM_MAKE((head)->hh.tbl); \ - (head)->hh.tbl->signature = HASH_SIGNATURE; \ -} while(0) - -#define HASH_ADD(hh,head,fieldname,keylen_in,add) \ - HASH_ADD_KEYPTR(hh,head,&add->fieldname,keylen_in,add) - -#define HASH_ADD_KEYPTR(hh,head,keyptr,keylen_in,add) \ -do { \ - unsigned _ha_bkt; \ - (add)->hh.next = NULL; \ - (add)->hh.key = (char*)keyptr; \ - (add)->hh.keylen = keylen_in; \ - if (!(head)) { \ - head = (add); \ - (head)->hh.prev = NULL; \ - HASH_MAKE_TABLE(hh,head); \ - } else { \ - (head)->hh.tbl->tail->next = (add); \ - (add)->hh.prev = ELMT_FROM_HH((head)->hh.tbl, (head)->hh.tbl->tail); \ - (head)->hh.tbl->tail = &((add)->hh); \ - } \ - (head)->hh.tbl->num_items++; \ - (add)->hh.tbl = (head)->hh.tbl; \ - HASH_FCN(keyptr,keylen_in, (head)->hh.tbl->num_buckets, \ - (add)->hh.hashv, _ha_bkt); \ - HASH_ADD_TO_BKT((head)->hh.tbl->buckets[_ha_bkt],&(add)->hh); \ - HASH_BLOOM_ADD((head)->hh.tbl,(add)->hh.hashv); \ - HASH_EMIT_KEY(hh,head,keyptr,keylen_in); \ - HASH_FSCK(hh,head); \ -} while(0) - -#define HASH_TO_BKT( hashv, num_bkts, bkt ) \ -do { \ - bkt = ((hashv) & ((num_bkts) - 1)); \ -} while(0) - -/* delete "delptr" from the hash table. - * "the usual" patch-up process for the app-order doubly-linked-list. - * The use of _hd_hh_del below deserves special explanation. - * These used to be expressed using (delptr) but that led to a bug - * if someone used the same symbol for the head and deletee, like - * HASH_DELETE(hh,users,users); - * We want that to work, but by changing the head (users) below - * we were forfeiting our ability to further refer to the deletee (users) - * in the patch-up process. Solution: use scratch space in the table to - * copy the deletee pointer, then the latter references are via that - * scratch pointer rather than through the repointed (users) symbol. - */ -#define HASH_DELETE(hh,head,delptr) \ -do { \ - unsigned _hd_bkt; \ - struct UT_hash_handle *_hd_hh_del; \ - if ( ((delptr)->hh.prev == NULL) && ((delptr)->hh.next == NULL) ) { \ - uthash_free((head)->hh.tbl->buckets ); \ - HASH_BLOOM_FREE((head)->hh.tbl); \ - uthash_free((head)->hh.tbl); \ - head = NULL; \ - } else { \ - _hd_hh_del = &((delptr)->hh); \ - if ((delptr) == ELMT_FROM_HH((head)->hh.tbl,(head)->hh.tbl->tail)) { \ - (head)->hh.tbl->tail = \ - (UT_hash_handle*)((char*)((delptr)->hh.prev) + \ - (head)->hh.tbl->hho); \ - } \ - if ((delptr)->hh.prev) { \ - ((UT_hash_handle*)((char*)((delptr)->hh.prev) + \ - (head)->hh.tbl->hho))->next = (delptr)->hh.next; \ - } else { \ - head = TYPEOF(head)((delptr)->hh.next); \ - } \ - if (_hd_hh_del->next) { \ - ((UT_hash_handle*)((char*)_hd_hh_del->next + \ - (head)->hh.tbl->hho))->prev = \ - _hd_hh_del->prev; \ - } \ - HASH_TO_BKT( _hd_hh_del->hashv, (head)->hh.tbl->num_buckets, _hd_bkt); \ - HASH_DEL_IN_BKT(hh,(head)->hh.tbl->buckets[_hd_bkt], _hd_hh_del); \ - (head)->hh.tbl->num_items--; \ - } \ - HASH_FSCK(hh,head); \ -} while (0) - - -/* convenience forms of HASH_FIND/HASH_ADD/HASH_DEL */ -#define HASH_FIND_STR(head,findstr,out) \ - HASH_FIND(hh,head,findstr,strlen(findstr),out) -#define HASH_ADD_STR(head,strfield,add) \ - HASH_ADD(hh,head,strfield,strlen(add->strfield),add) -#define HASH_FIND_INT(head,findint,out) \ - HASH_FIND(hh,head,findint,sizeof(int),out) -#define HASH_ADD_INT(head,intfield,add) \ - HASH_ADD(hh,head,intfield,sizeof(int),add) -#define HASH_DEL(head,delptr) \ - HASH_DELETE(hh,head,delptr) - -/* HASH_FSCK checks hash integrity on every add/delete when HASH_DEBUG is defined. - * This is for uthash developer only; it compiles away if HASH_DEBUG isn't defined. - */ -#ifdef HASH_DEBUG -#define HASH_OOPS(...) do { fprintf(stderr,__VA_ARGS__); } while (0) -#define HASH_FSCK(hh,head) \ -do { \ - unsigned _bkt_i; \ - unsigned _count, _bkt_count; \ - char *_prev; \ - struct UT_hash_handle *_thh; \ - if (head) { \ - _count = 0; \ - for( _bkt_i = 0; _bkt_i < (head)->hh.tbl->num_buckets; _bkt_i++) { \ - _bkt_count = 0; \ - _thh = (head)->hh.tbl->buckets[_bkt_i].hh_head; \ - _prev = NULL; \ - while (_thh) { \ - if (_prev != (char*)(_thh->hh_prev)) { \ - HASH_OOPS("invalid hh_prev %p, actual %p\n", \ - _thh->hh_prev, _prev ); \ - } \ - _bkt_count++; \ - _prev = (char*)(_thh); \ - _thh = _thh->hh_next; \ - } \ - _count += _bkt_count; \ - if ((head)->hh.tbl->buckets[_bkt_i].count != _bkt_count) { \ - HASH_OOPS("invalid bucket count %d, actual %d\n", \ - (head)->hh.tbl->buckets[_bkt_i].count, _bkt_count); \ - } \ - } \ - if (_count != (head)->hh.tbl->num_items) { \ - HASH_OOPS("invalid hh item count %d, actual %d\n", \ - (head)->hh.tbl->num_items, _count ); \ - } \ - /* traverse hh in app order; check next/prev integrity, count */ \ - _count = 0; \ - _prev = NULL; \ - _thh = &(head)->hh; \ - while (_thh) { \ - _count++; \ - if (_prev !=(char*)(_thh->prev)) { \ - HASH_OOPS("invalid prev %p, actual %p\n", \ - _thh->prev, _prev ); \ - } \ - _prev = (char*)ELMT_FROM_HH((head)->hh.tbl, _thh); \ - _thh = ( _thh->next ? (UT_hash_handle*)((char*)(_thh->next) + \ - (head)->hh.tbl->hho) : NULL ); \ - } \ - if (_count != (head)->hh.tbl->num_items) { \ - HASH_OOPS("invalid app item count %d, actual %d\n", \ - (head)->hh.tbl->num_items, _count ); \ - } \ - } \ -} while (0) -#else -#define HASH_FSCK(hh,head) -#endif - -/* When compiled with -DHASH_EMIT_KEYS, length-prefixed keys are emitted to - * the descriptor to which this macro is defined for tuning the hash function. - * The app can #include to get the prototype for write(2). */ -#ifdef HASH_EMIT_KEYS -#define HASH_EMIT_KEY(hh,head,keyptr,fieldlen) \ -do { \ - unsigned _klen = fieldlen; \ - write(HASH_EMIT_KEYS, &_klen, sizeof(_klen)); \ - write(HASH_EMIT_KEYS, keyptr, fieldlen); \ -} while (0) -#else -#define HASH_EMIT_KEY(hh,head,keyptr,fieldlen) -#endif - -/* default to Jenkin's hash unless overridden e.g. DHASH_FUNCTION=HASH_SAX */ -#ifdef HASH_FUNCTION -#define HASH_FCN HASH_FUNCTION -#else -#define HASH_FCN HASH_JEN -#endif - -/* The Bernstein hash function, used in Perl prior to v5.6 */ -#define HASH_BER(key,keylen,num_bkts,hashv,bkt) \ -do { \ - unsigned _hb_keylen=keylen; \ - char *_hb_key=(char*)key; \ - (hashv) = 0; \ - while (_hb_keylen--) { (hashv) = ((hashv) * 33) + *_hb_key++; } \ - bkt = (hashv) & (num_bkts-1); \ -} while (0) - - -/* SAX/FNV/OAT/JEN hash functions are macro variants of those listed at - * http://eternallyconfuzzled.com/tuts/algorithms/jsw_tut_hashing.aspx */ -#define HASH_SAX(key,keylen,num_bkts,hashv,bkt) \ -do { \ - unsigned _sx_i; \ - char *_hs_key=(char*)key; \ - hashv = 0; \ - for(_sx_i=0; _sx_i < keylen; _sx_i++) \ - hashv ^= (hashv << 5) + (hashv >> 2) + _hs_key[_sx_i]; \ - bkt = hashv & (num_bkts-1); \ -} while (0) - -#define HASH_FNV(key,keylen,num_bkts,hashv,bkt) \ -do { \ - unsigned _fn_i; \ - char *_hf_key=(char*)key; \ - hashv = 2166136261UL; \ - for(_fn_i=0; _fn_i < keylen; _fn_i++) \ - hashv = (hashv * 16777619) ^ _hf_key[_fn_i]; \ - bkt = hashv & (num_bkts-1); \ -} while(0); - -#define HASH_OAT(key,keylen,num_bkts,hashv,bkt) \ -do { \ - unsigned _ho_i; \ - char *_ho_key=(char*)key; \ - hashv = 0; \ - for(_ho_i=0; _ho_i < keylen; _ho_i++) { \ - hashv += _ho_key[_ho_i]; \ - hashv += (hashv << 10); \ - hashv ^= (hashv >> 6); \ - } \ - hashv += (hashv << 3); \ - hashv ^= (hashv >> 11); \ - hashv += (hashv << 15); \ - bkt = hashv & (num_bkts-1); \ -} while(0) - -#define HASH_JEN_MIX(a,b,c) \ -do { \ - a -= b; a -= c; a ^= ( c >> 13 ); \ - b -= c; b -= a; b ^= ( a << 8 ); \ - c -= a; c -= b; c ^= ( b >> 13 ); \ - a -= b; a -= c; a ^= ( c >> 12 ); \ - b -= c; b -= a; b ^= ( a << 16 ); \ - c -= a; c -= b; c ^= ( b >> 5 ); \ - a -= b; a -= c; a ^= ( c >> 3 ); \ - b -= c; b -= a; b ^= ( a << 10 ); \ - c -= a; c -= b; c ^= ( b >> 15 ); \ -} while (0) - -#define HASH_JEN(key,keylen,num_bkts,hashv,bkt) \ -do { \ - unsigned _hj_i,_hj_j,_hj_k; \ - char *_hj_key=(char*)key; \ - hashv = 0xfeedbeef; \ - _hj_i = _hj_j = 0x9e3779b9; \ - _hj_k = keylen; \ - while (_hj_k >= 12) { \ - _hj_i += (_hj_key[0] + ( (unsigned)_hj_key[1] << 8 ) \ - + ( (unsigned)_hj_key[2] << 16 ) \ - + ( (unsigned)_hj_key[3] << 24 ) ); \ - _hj_j += (_hj_key[4] + ( (unsigned)_hj_key[5] << 8 ) \ - + ( (unsigned)_hj_key[6] << 16 ) \ - + ( (unsigned)_hj_key[7] << 24 ) ); \ - hashv += (_hj_key[8] + ( (unsigned)_hj_key[9] << 8 ) \ - + ( (unsigned)_hj_key[10] << 16 ) \ - + ( (unsigned)_hj_key[11] << 24 ) ); \ - \ - HASH_JEN_MIX(_hj_i, _hj_j, hashv); \ - \ - _hj_key += 12; \ - _hj_k -= 12; \ - } \ - hashv += keylen; \ - switch ( _hj_k ) { \ - case 11: hashv += ( (unsigned)_hj_key[10] << 24 ); \ - case 10: hashv += ( (unsigned)_hj_key[9] << 16 ); \ - case 9: hashv += ( (unsigned)_hj_key[8] << 8 ); \ - case 8: _hj_j += ( (unsigned)_hj_key[7] << 24 ); \ - case 7: _hj_j += ( (unsigned)_hj_key[6] << 16 ); \ - case 6: _hj_j += ( (unsigned)_hj_key[5] << 8 ); \ - case 5: _hj_j += _hj_key[4]; \ - case 4: _hj_i += ( (unsigned)_hj_key[3] << 24 ); \ - case 3: _hj_i += ( (unsigned)_hj_key[2] << 16 ); \ - case 2: _hj_i += ( (unsigned)_hj_key[1] << 8 ); \ - case 1: _hj_i += _hj_key[0]; \ - } \ - HASH_JEN_MIX(_hj_i, _hj_j, hashv); \ - bkt = hashv & (num_bkts-1); \ -} while(0) - -/* The Paul Hsieh hash function */ -#undef get16bits -#if (defined(__GNUC__) && defined(__i386__)) || defined(__WATCOMC__) \ - || defined(_MSC_VER) || defined (__BORLANDC__) || defined (__TURBOC__) -#define get16bits(d) (*((const uint16_t *) (d))) -#endif - -#if !defined (get16bits) -#define get16bits(d) ((((uint32_t)(((const uint8_t *)(d))[1])) << 8) \ - +(uint32_t)(((const uint8_t *)(d))[0]) ) -#endif -#define HASH_SFH(key,keylen,num_bkts,hashv,bkt) \ -do { \ - char *_sfh_key=(char*)key; \ - uint32_t _sfh_tmp, _sfh_len = keylen; \ - \ - int _sfh_rem = _sfh_len & 3; \ - _sfh_len >>= 2; \ - hashv = 0xcafebabe; \ - \ - /* Main loop */ \ - for (;_sfh_len > 0; _sfh_len--) { \ - hashv += get16bits (_sfh_key); \ - _sfh_tmp = (get16bits (_sfh_key+2) << 11) ^ hashv; \ - hashv = (hashv << 16) ^ _sfh_tmp; \ - _sfh_key += 2*sizeof (uint16_t); \ - hashv += hashv >> 11; \ - } \ - \ - /* Handle end cases */ \ - switch (_sfh_rem) { \ - case 3: hashv += get16bits (_sfh_key); \ - hashv ^= hashv << 16; \ - hashv ^= _sfh_key[sizeof (uint16_t)] << 18; \ - hashv += hashv >> 11; \ - break; \ - case 2: hashv += get16bits (_sfh_key); \ - hashv ^= hashv << 11; \ - hashv += hashv >> 17; \ - break; \ - case 1: hashv += *_sfh_key; \ - hashv ^= hashv << 10; \ - hashv += hashv >> 1; \ - } \ - \ - /* Force "avalanching" of final 127 bits */ \ - hashv ^= hashv << 3; \ - hashv += hashv >> 5; \ - hashv ^= hashv << 4; \ - hashv += hashv >> 17; \ - hashv ^= hashv << 25; \ - hashv += hashv >> 6; \ - bkt = hashv & (num_bkts-1); \ -} while(0); - -#ifdef HASH_USING_NO_STRICT_ALIASING -/* The MurmurHash exploits some CPU's (e.g. x86) tolerance for unaligned reads. - * For other types of CPU's (e.g. Sparc) an unaligned read causes a bus error. - * So MurmurHash comes in two versions, the faster unaligned one and the slower - * aligned one. We only use the faster one on CPU's where we know it's safe. - * - * Note the preprocessor built-in defines can be emitted using: - * - * gcc -m64 -dM -E - < /dev/null (on gcc) - * cc -## a.c (where a.c is a simple test file) (Sun Studio) - */ -#if (defined(__i386__) || defined(__x86_64__)) -#define HASH_MUR HASH_MUR_UNALIGNED -#else -#define HASH_MUR HASH_MUR_ALIGNED -#endif - -/* Appleby's MurmurHash fast version for unaligned-tolerant archs like i386 */ -#define HASH_MUR_UNALIGNED(key,keylen,num_bkts,hashv,bkt) \ -do { \ - const unsigned int _mur_m = 0x5bd1e995; \ - const int _mur_r = 24; \ - hashv = 0xcafebabe ^ keylen; \ - char *_mur_key = (char *)key; \ - uint32_t _mur_tmp, _mur_len = keylen; \ - \ - for (;_mur_len >= 4; _mur_len-=4) { \ - _mur_tmp = *(uint32_t *)_mur_key; \ - _mur_tmp *= _mur_m; \ - _mur_tmp ^= _mur_tmp >> _mur_r; \ - _mur_tmp *= _mur_m; \ - hashv *= _mur_m; \ - hashv ^= _mur_tmp; \ - _mur_key += 4; \ - } \ - \ - switch(_mur_len) \ - { \ - case 3: hashv ^= _mur_key[2] << 16; \ - case 2: hashv ^= _mur_key[1] << 8; \ - case 1: hashv ^= _mur_key[0]; \ - hashv *= _mur_m; \ - }; \ - \ - hashv ^= hashv >> 13; \ - hashv *= _mur_m; \ - hashv ^= hashv >> 15; \ - \ - bkt = hashv & (num_bkts-1); \ -} while(0) - -/* Appleby's MurmurHash version for alignment-sensitive archs like Sparc */ -#define HASH_MUR_ALIGNED(key,keylen,num_bkts,hashv,bkt) \ -do { \ - const unsigned int _mur_m = 0x5bd1e995; \ - const int _mur_r = 24; \ - hashv = 0xcafebabe ^ keylen; \ - char *_mur_key = (char *)key; \ - uint32_t _mur_len = keylen; \ - int _mur_align = (int)_mur_key & 3; \ - \ - if (_mur_align && (_mur_len >= 4)) { \ - unsigned _mur_t = 0, _mur_d = 0; \ - switch(_mur_align) { \ - case 1: _mur_t |= _mur_key[2] << 16; \ - case 2: _mur_t |= _mur_key[1] << 8; \ - case 3: _mur_t |= _mur_key[0]; \ - } \ - _mur_t <<= (8 * _mur_align); \ - _mur_key += 4-_mur_align; \ - _mur_len -= 4-_mur_align; \ - int _mur_sl = 8 * (4-_mur_align); \ - int _mur_sr = 8 * _mur_align; \ - \ - for (;_mur_len >= 4; _mur_len-=4) { \ - _mur_d = *(unsigned *)_mur_key; \ - _mur_t = (_mur_t >> _mur_sr) | (_mur_d << _mur_sl); \ - unsigned _mur_k = _mur_t; \ - _mur_k *= _mur_m; \ - _mur_k ^= _mur_k >> _mur_r; \ - _mur_k *= _mur_m; \ - hashv *= _mur_m; \ - hashv ^= _mur_k; \ - _mur_t = _mur_d; \ - _mur_key += 4; \ - } \ - _mur_d = 0; \ - if(_mur_len >= _mur_align) { \ - switch(_mur_align) { \ - case 3: _mur_d |= _mur_key[2] << 16; \ - case 2: _mur_d |= _mur_key[1] << 8; \ - case 1: _mur_d |= _mur_key[0]; \ - } \ - unsigned _mur_k = (_mur_t >> _mur_sr) | (_mur_d << _mur_sl); \ - _mur_k *= _mur_m; \ - _mur_k ^= _mur_k >> _mur_r; \ - _mur_k *= _mur_m; \ - hashv *= _mur_m; \ - hashv ^= _mur_k; \ - _mur_k += _mur_align; \ - _mur_len -= _mur_align; \ - \ - switch(_mur_len) \ - { \ - case 3: hashv ^= _mur_key[2] << 16; \ - case 2: hashv ^= _mur_key[1] << 8; \ - case 1: hashv ^= _mur_key[0]; \ - hashv *= _mur_m; \ - } \ - } else { \ - switch(_mur_len) \ - { \ - case 3: _mur_d ^= _mur_key[2] << 16; \ - case 2: _mur_d ^= _mur_key[1] << 8; \ - case 1: _mur_d ^= _mur_key[0]; \ - case 0: hashv ^= (_mur_t >> _mur_sr) | (_mur_d << _mur_sl); \ - hashv *= _mur_m; \ - } \ - } \ - \ - hashv ^= hashv >> 13; \ - hashv *= _mur_m; \ - hashv ^= hashv >> 15; \ - } else { \ - for (;_mur_len >= 4; _mur_len-=4) { \ - unsigned _mur_k = *(unsigned*)_mur_key; \ - _mur_k *= _mur_m; \ - _mur_k ^= _mur_k >> _mur_r; \ - _mur_k *= _mur_m; \ - hashv *= _mur_m; \ - hashv ^= _mur_k; \ - _mur_key += 4; \ - } \ - switch(_mur_len) \ - { \ - case 3: hashv ^= _mur_key[2] << 16; \ - case 2: hashv ^= _mur_key[1] << 8; \ - case 1: hashv ^= _mur_key[0]; \ - hashv *= _mur_m; \ - } \ - \ - hashv ^= hashv >> 13; \ - hashv *= _mur_m; \ - hashv ^= hashv >> 15; \ - } \ - bkt = hashv & (num_bkts-1); \ -} while(0) -#endif /* HASH_USING_NO_STRICT_ALIASING */ - -/* key comparison function; return 0 if keys equal */ -#define HASH_KEYCMP(a,b,len) memcmp(a,b,len) - -/* iterate over items in a known bucket to find desired item */ -#define HASH_FIND_IN_BKT(tbl,hh,head,keyptr,keylen_in,out) \ -out = TYPEOF(out)((head.hh_head) ? ELMT_FROM_HH(tbl,head.hh_head) : NULL); \ -while (out) { \ - if (out->hh.keylen == keylen_in) { \ - if ((HASH_KEYCMP(out->hh.key,keyptr,keylen_in)) == 0) break; \ - } \ - out= TYPEOF(out)((out->hh.hh_next) ? \ - ELMT_FROM_HH(tbl,out->hh.hh_next) : NULL); \ -} - -/* add an item to a bucket */ -#define HASH_ADD_TO_BKT(head,addhh) \ -do { \ - head.count++; \ - (addhh)->hh_next = head.hh_head; \ - (addhh)->hh_prev = NULL; \ - if (head.hh_head) { (head).hh_head->hh_prev = (addhh); } \ - (head).hh_head=addhh; \ - if (head.count >= ((head.expand_mult+1) * HASH_BKT_CAPACITY_THRESH) \ - && (addhh)->tbl->noexpand != 1) { \ - HASH_EXPAND_BUCKETS((addhh)->tbl); \ - } \ -} while(0) - -/* remove an item from a given bucket */ -#define HASH_DEL_IN_BKT(hh,head,hh_del) \ - (head).count--; \ - if ((head).hh_head == hh_del) { \ - (head).hh_head = hh_del->hh_next; \ - } \ - if (hh_del->hh_prev) { \ - hh_del->hh_prev->hh_next = hh_del->hh_next; \ - } \ - if (hh_del->hh_next) { \ - hh_del->hh_next->hh_prev = hh_del->hh_prev; \ - } - -/* Bucket expansion has the effect of doubling the number of buckets - * and redistributing the items into the new buckets. Ideally the - * items will distribute more or less evenly into the new buckets - * (the extent to which this is true is a measure of the quality of - * the hash function as it applies to the key domain). - * - * With the items distributed into more buckets, the chain length - * (item count) in each bucket is reduced. Thus by expanding buckets - * the hash keeps a bound on the chain length. This bounded chain - * length is the essence of how a hash provides constant time lookup. - * - * The calculation of tbl->ideal_chain_maxlen below deserves some - * explanation. First, keep in mind that we're calculating the ideal - * maximum chain length based on the *new* (doubled) bucket count. - * In fractions this is just n/b (n=number of items,b=new num buckets). - * Since the ideal chain length is an integer, we want to calculate - * ceil(n/b). We don't depend on floating point arithmetic in this - * hash, so to calculate ceil(n/b) with integers we could write - * - * ceil(n/b) = (n/b) + ((n%b)?1:0) - * - * and in fact a previous version of this hash did just that. - * But now we have improved things a bit by recognizing that b is - * always a power of two. We keep its base 2 log handy (call it lb), - * so now we can write this with a bit shift and logical AND: - * - * ceil(n/b) = (n>>lb) + ( (n & (b-1)) ? 1:0) - * - */ -#define HASH_EXPAND_BUCKETS(tbl) \ -do { \ - unsigned _he_bkt; \ - unsigned _he_bkt_i; \ - struct UT_hash_handle *_he_thh, *_he_hh_nxt; \ - UT_hash_bucket *_he_new_buckets, *_he_newbkt; \ - _he_new_buckets = (UT_hash_bucket*)uthash_malloc( \ - 2 * tbl->num_buckets * sizeof(struct UT_hash_bucket)); \ - if (!_he_new_buckets) { uthash_fatal( "out of memory"); } \ - memset(_he_new_buckets, 0, \ - 2 * tbl->num_buckets * sizeof(struct UT_hash_bucket)); \ - tbl->ideal_chain_maxlen = \ - (tbl->num_items >> (tbl->log2_num_buckets+1)) + \ - ((tbl->num_items & ((tbl->num_buckets*2)-1)) ? 1 : 0); \ - tbl->nonideal_items = 0; \ - for(_he_bkt_i = 0; _he_bkt_i < tbl->num_buckets; _he_bkt_i++) \ - { \ - _he_thh = tbl->buckets[ _he_bkt_i ].hh_head; \ - while (_he_thh) { \ - _he_hh_nxt = _he_thh->hh_next; \ - HASH_TO_BKT( _he_thh->hashv, tbl->num_buckets*2, _he_bkt); \ - _he_newbkt = &(_he_new_buckets[ _he_bkt ]); \ - if (++(_he_newbkt->count) > tbl->ideal_chain_maxlen) { \ - tbl->nonideal_items++; \ - _he_newbkt->expand_mult = _he_newbkt->count / \ - tbl->ideal_chain_maxlen; \ - } \ - _he_thh->hh_prev = NULL; \ - _he_thh->hh_next = _he_newbkt->hh_head; \ - if (_he_newbkt->hh_head) _he_newbkt->hh_head->hh_prev = \ - _he_thh; \ - _he_newbkt->hh_head = _he_thh; \ - _he_thh = _he_hh_nxt; \ - } \ - } \ - tbl->num_buckets *= 2; \ - tbl->log2_num_buckets++; \ - uthash_free( tbl->buckets ); \ - tbl->buckets = _he_new_buckets; \ - tbl->ineff_expands = (tbl->nonideal_items > (tbl->num_items >> 1)) ? \ - (tbl->ineff_expands+1) : 0; \ - if (tbl->ineff_expands > 1) { \ - tbl->noexpand=1; \ - uthash_noexpand_fyi(tbl); \ - } \ - uthash_expand_fyi(tbl); \ -} while(0) - - -/* This is an adaptation of Simon Tatham's O(n log(n)) mergesort */ -/* Note that HASH_SORT assumes the hash handle name to be hh. - * HASH_SRT was added to allow the hash handle name to be passed in. */ -#define HASH_SORT(head,cmpfcn) HASH_SRT(hh,head,cmpfcn) -#define HASH_SRT(hh,head,cmpfcn) \ -do { \ - unsigned _hs_i; \ - unsigned _hs_looping,_hs_nmerges,_hs_insize,_hs_psize,_hs_qsize; \ - struct UT_hash_handle *_hs_p, *_hs_q, *_hs_e, *_hs_list, *_hs_tail; \ - if (head) { \ - _hs_insize = 1; \ - _hs_looping = 1; \ - _hs_list = &((head)->hh); \ - while (_hs_looping) { \ - _hs_p = _hs_list; \ - _hs_list = NULL; \ - _hs_tail = NULL; \ - _hs_nmerges = 0; \ - while (_hs_p) { \ - _hs_nmerges++; \ - _hs_q = _hs_p; \ - _hs_psize = 0; \ - for ( _hs_i = 0; _hs_i < _hs_insize; _hs_i++ ) { \ - _hs_psize++; \ - _hs_q = (UT_hash_handle*)((_hs_q->next) ? \ - ((void*)((char*)(_hs_q->next) + \ - (head)->hh.tbl->hho)) : NULL); \ - if (! (_hs_q) ) break; \ - } \ - _hs_qsize = _hs_insize; \ - while ((_hs_psize > 0) || ((_hs_qsize > 0) && _hs_q )) { \ - if (_hs_psize == 0) { \ - _hs_e = _hs_q; \ - _hs_q = (UT_hash_handle*)((_hs_q->next) ? \ - ((void*)((char*)(_hs_q->next) + \ - (head)->hh.tbl->hho)) : NULL); \ - _hs_qsize--; \ - } else if ( (_hs_qsize == 0) || !(_hs_q) ) { \ - _hs_e = _hs_p; \ - _hs_p = (UT_hash_handle*)((_hs_p->next) ? \ - ((void*)((char*)(_hs_p->next) + \ - (head)->hh.tbl->hho)) : NULL); \ - _hs_psize--; \ - } else if (( \ - cmpfcn(TYPEOF(head)(ELMT_FROM_HH((head)->hh.tbl,_hs_p)), \ - TYPEOF(head)(ELMT_FROM_HH((head)->hh.tbl,_hs_q))) \ - ) <= 0) { \ - _hs_e = _hs_p; \ - _hs_p = (UT_hash_handle*)((_hs_p->next) ? \ - ((void*)((char*)(_hs_p->next) + \ - (head)->hh.tbl->hho)) : NULL); \ - _hs_psize--; \ - } else { \ - _hs_e = _hs_q; \ - _hs_q = (UT_hash_handle*)((_hs_q->next) ? \ - ((void*)((char*)(_hs_q->next) + \ - (head)->hh.tbl->hho)) : NULL); \ - _hs_qsize--; \ - } \ - if ( _hs_tail ) { \ - _hs_tail->next = ((_hs_e) ? \ - ELMT_FROM_HH((head)->hh.tbl,_hs_e) : NULL); \ - } else { \ - _hs_list = _hs_e; \ - } \ - _hs_e->prev = ((_hs_tail) ? \ - ELMT_FROM_HH((head)->hh.tbl,_hs_tail) : NULL); \ - _hs_tail = _hs_e; \ - } \ - _hs_p = _hs_q; \ - } \ - _hs_tail->next = NULL; \ - if ( _hs_nmerges <= 1 ) { \ - _hs_looping=0; \ - (head)->hh.tbl->tail = _hs_tail; \ - (head) = TYPEOF(head)ELMT_FROM_HH((head)->hh.tbl, _hs_list); \ - } \ - _hs_insize *= 2; \ - } \ - HASH_FSCK(hh,head); \ - } \ -} while (0) - -/* This function selects items from one hash into another hash. - * The end result is that the selected items have dual presence - * in both hashes. There is no copy of the items made; rather - * they are added into the new hash through a secondary hash - * hash handle that must be present in the structure. */ -#define HASH_SELECT(hh_dst, dst, hh_src, src, cond) \ -do { \ - unsigned _src_bkt, _dst_bkt; \ - void *_last_elt=NULL, *_elt; \ - UT_hash_handle *_src_hh, *_dst_hh, *_last_elt_hh=NULL; \ - ptrdiff_t _dst_hho = ((char*)(&(dst)->hh_dst) - (char*)(dst)); \ - if (src) { \ - for(_src_bkt=0; _src_bkt < (src)->hh_src.tbl->num_buckets; _src_bkt++) { \ - for(_src_hh = (src)->hh_src.tbl->buckets[_src_bkt].hh_head; \ - _src_hh; \ - _src_hh = _src_hh->hh_next) { \ - _elt = ELMT_FROM_HH((src)->hh_src.tbl, _src_hh); \ - if (cond(_elt)) { \ - _dst_hh = (UT_hash_handle*)(((char*)_elt) + _dst_hho); \ - _dst_hh->key = _src_hh->key; \ - _dst_hh->keylen = _src_hh->keylen; \ - _dst_hh->hashv = _src_hh->hashv; \ - _dst_hh->prev = _last_elt; \ - _dst_hh->next = NULL; \ - if (_last_elt_hh) { _last_elt_hh->next = _elt; } \ - if (!dst) { \ - dst = TYPEOF(dst)_elt; \ - HASH_MAKE_TABLE(hh_dst,dst); \ - } else { \ - _dst_hh->tbl = (dst)->hh_dst.tbl; \ - } \ - HASH_TO_BKT(_dst_hh->hashv, _dst_hh->tbl->num_buckets, _dst_bkt); \ - HASH_ADD_TO_BKT(_dst_hh->tbl->buckets[_dst_bkt],_dst_hh); \ - (dst)->hh_dst.tbl->num_items++; \ - _last_elt = _elt; \ - _last_elt_hh = _dst_hh; \ - } \ - } \ - } \ - } \ - HASH_FSCK(hh_dst,dst); \ -} while (0) - -#define HASH_CLEAR(hh,head) \ -do { \ - if (head) { \ - uthash_free((head)->hh.tbl->buckets ); \ - uthash_free((head)->hh.tbl); \ - (head)=NULL; \ - } \ -} while(0) - -/* obtain a count of items in the hash */ -#define HASH_COUNT(head) HASH_CNT(hh,head) -#define HASH_CNT(hh,head) (head?(head->hh.tbl->num_items):0) - -typedef struct UT_hash_bucket { - struct UT_hash_handle *hh_head; - unsigned count; - - /* expand_mult is normally set to 0. In this situation, the max chain length - * threshold is enforced at its default value, HASH_BKT_CAPACITY_THRESH. (If - * the bucket's chain exceeds this length, bucket expansion is triggered). - * However, setting expand_mult to a non-zero value delays bucket expansion - * (that would be triggered by additions to this particular bucket) - * until its chain length reaches a *multiple* of HASH_BKT_CAPACITY_THRESH. - * (The multiplier is simply expand_mult+1). The whole idea of this - * multiplier is to reduce bucket expansions, since they are expensive, in - * situations where we know that a particular bucket tends to be overused. - * It is better to let its chain length grow to a longer yet-still-bounded - * value, than to do an O(n) bucket expansion too often. - */ - unsigned expand_mult; - -} UT_hash_bucket; - -/* random signature used only to find hash tables in external analysis */ -#define HASH_SIGNATURE 0xa0111fe1 -#define HASH_BLOOM_SIGNATURE 0xb12220f2 - -typedef struct UT_hash_table { - UT_hash_bucket *buckets; - unsigned num_buckets, log2_num_buckets; - unsigned num_items; - struct UT_hash_handle *tail; /* tail hh in app order, for fast append */ - ptrdiff_t hho; /* hash handle offset (byte pos of hash handle in element */ - - /* in an ideal situation (all buckets used equally), no bucket would have - * more than ceil(#items/#buckets) items. that's the ideal chain length. */ - unsigned ideal_chain_maxlen; - - /* nonideal_items is the number of items in the hash whose chain position - * exceeds the ideal chain maxlen. these items pay the penalty for an uneven - * hash distribution; reaching them in a chain traversal takes >ideal steps */ - unsigned nonideal_items; - - /* ineffective expands occur when a bucket doubling was performed, but - * afterward, more than half the items in the hash had nonideal chain - * positions. If this happens on two consecutive expansions we inhibit any - * further expansion, as it's not helping; this happens when the hash - * function isn't a good fit for the key domain. When expansion is inhibited - * the hash will still work, albeit no longer in constant time. */ - unsigned ineff_expands, noexpand; - - uint32_t signature; /* used only to find hash tables in external analysis */ -#ifdef HASH_BLOOM - uint32_t bloom_sig; /* used only to test bloom exists in external analysis */ - uint8_t *bloom_bv; - char bloom_nbits; -#endif - -} UT_hash_table; - -typedef struct UT_hash_handle { - struct UT_hash_table *tbl; - void *prev; /* prev element in app order */ - void *next; /* next element in app order */ - struct UT_hash_handle *hh_prev; /* previous hh in bucket order */ - struct UT_hash_handle *hh_next; /* next hh in bucket order */ - void *key; /* ptr to enclosing struct's key */ - unsigned keylen; /* enclosing struct's key len */ - unsigned hashv; /* result of hash-fcn(key) */ -} UT_hash_handle; - -#endif /* UTHASH_H */ diff -Nru fcitx-4.0.1/src/fcitx-config/xdg.c fcitx-4.1.1/src/fcitx-config/xdg.c --- fcitx-4.0.1/src/fcitx-config/xdg.c 2010-12-06 04:59:22.000000000 +0000 +++ fcitx-4.1.1/src/fcitx-config/xdg.c 1970-01-01 00:00:00.000000000 +0000 @@ -1,299 +0,0 @@ -/*************************************************************************** - * Copyright (C) 20010~2010 by CSSlayer * - * wengxt@gmail.com * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * - ***************************************************************************/ - -/** - * @file xdg.c - * @brief xdg related path handle - * @author CSSlayer - * @version 4.0.0 - * @date 2010-05-02 - */ -#include "core/fcitx.h" - -#include -#include -#include -#include -#include -#include -#include -#include -#include - -#include "fcitx-config/xdg.h" -#include "fcitx-config/sprintf.h" - -static void make_path (const char *path); - -void -make_path (const char *path) -{ - char opath[PATH_MAX]; - char *p; - size_t len; - - strncpy(opath, path, sizeof(opath)); - opath[PATH_MAX - 1] = '\0'; - len = strlen(opath); - while(opath[len - 1] == '/') - { - opath[len - 1] = '\0'; - len --; - } - for(p = opath; *p; p++) - if(*p == '/') { - *p = '\0'; - if(access(opath, F_OK)) - mkdir(opath, S_IRWXU); - *p = '/'; - } - if(access(opath, F_OK)) /* if path is not terminated with / */ - mkdir(opath, S_IRWXU); -} - - -/** - * @brief 获得xdg路径的数据文件 - * - * @param 文件名 - * @param 模式 - * - * @return 文件指针 - */ -FCITX_EXPORT_API -FILE *GetXDGFileData(const char *fileName, const char *mode, char **retFile) -{ - size_t len; - char ** path = GetXDGPath(&len, "XDG_CONFIG_HOME", ".config", "fcitx" , DATADIR, "fcitx/data" ); - - FILE* fp = GetXDGFile(fileName, path, mode, len, retFile); - - FreeXDGPath(path); - - return fp; -} - -FCITX_EXPORT_API -FILE *GetLibFile(const char *filename, const char *mode, char **retFile) -{ - size_t len; - char ** path; - path = GetXDGPath(&len, "XDG_CONFIG_HOME", ".config", "fcitx/lib" , LIBDIR, "" ); - - FILE* fp = GetXDGFile(filename, path, mode, len, retFile); - - FreeXDGPath(path); - - return fp; - -} - -FCITX_EXPORT_API -FILE *GetXDGFileTable(const char *fileName, const char *mode, char **retFile, Bool forceUser) -{ - size_t len; - char ** path; - if (forceUser) - path = GetXDGPath(&len, "XDG_CONFIG_HOME", ".config", "fcitx/table" , NULL, NULL ); - else - path = GetXDGPath(&len, "XDG_CONFIG_HOME", ".config", "fcitx/table" , DATADIR, "fcitx/data/table" ); - - FILE* fp = GetXDGFile(fileName, path, mode, len, retFile); - - FreeXDGPath(path); - - return fp; -} - -FCITX_EXPORT_API -FILE *GetXDGFilePinyin(const char *fileName, const char *mode, char **retFile) -{ - size_t len; - char ** path; - path = GetXDGPath(&len, "XDG_CONFIG_HOME", ".config", "fcitx/pinyin" , DATADIR, "fcitx/data/pinyin" ); - - FILE* fp = GetXDGFile(fileName, path, mode, len, retFile); - - FreeXDGPath(path); - - return fp; -} - -FCITX_EXPORT_API -FILE *GetXDGFileUser(const char *fileName, const char *mode, char **retFile) -{ - size_t len; - char ** path = GetXDGPath(&len, "XDG_CONFIG_HOME", ".config", "fcitx" , NULL, NULL ); - - FILE* fp = GetXDGFile(fileName, path, mode, len, retFile); - - FreeXDGPath(path); - - return fp; -} - -/** - * @brief 根据Path按顺序查找第一个符合要求的文件,在mode包含写入时,这个函数会尝试创建文件夹 - * - * @param 文件名 - * @param 路径数组 - * @param 模式 - * @param 路径数值长度 - * - * @return 文件指针 - */ -FCITX_EXPORT_API -FILE *GetXDGFile(const char *fileName, char **path, const char *mode, size_t len, char **retFile) -{ - char buf[PATH_MAX]; - int i; - FILE *fp = NULL; - - /* check absolute path */ - if (strlen(fileName) > 0 && fileName[0] == '/') - { - fp = fopen (fileName, mode); - if (retFile) - *retFile = strdup(fileName); - return fp; - } - - if (!mode) - { - snprintf(buf, sizeof(buf), "%s/%s", path[0], fileName); - buf[sizeof(buf) - 1] = '\0'; - - if (retFile) - *retFile = strdup(buf); - return NULL; - } - - if (len <= 0) - return NULL; - for(i=0;i -#include - -#ifdef __cplusplus -extern "C" { -#endif - -FILE *GetLibFile(const char *filename, const char *mode, char **retFile); -FILE *GetXDGFile(const char *fileName, char **path, const char *mode, size_t len, char **retFile); -char **GetXDGPath( - size_t *len, - const char* homeEnv, - const char* homeDefault, - const char* suffixHome, - const char* dirsDefault, - const char* suffixGlobal); - -FILE *GetXDGFileData(const char *fileName, const char *mode, char**retFile); -FILE *GetXDGFileUser(const char *fileName, const char *mode, char **retFile); -FILE *GetXDGFileTable(const char *fileName, const char *mode, char **retFile, Bool forceUser); -FILE *GetXDGFilePinyin(const char *fileName, const char *mode, char **retFile); -void FreeXDGPath(char **path); - -#ifdef __cplusplus -} -#endif - -#endif diff -Nru fcitx-4.0.1/src/frontend/CMakeLists.txt fcitx-4.1.1/src/frontend/CMakeLists.txt --- fcitx-4.0.1/src/frontend/CMakeLists.txt 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/frontend/CMakeLists.txt 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,21 @@ +add_subdirectory(xim) + +if (_ENABLE_DBUS) + #add_subdirectory(fbterm) + add_subdirectory(ipc) + + if (ENABLE_GTK2_IM_MODULE OR ENABLE_GTK3_IM_MODULE) + + PKG_CHECK_MODULES(GLIB2 REQUIRED "glib-2.0" ) + PKG_CHECK_MODULES(DBUS_GLIB REQUIRED "dbus-glib-1") + + _pkgconfig_invoke("glib-2.0" GLIB2 GLIB_GENMARSHAL "" "--variable=glib_genmarshal") + + FIND_PROGRAM(GLIB_GENMARSHAL ${GLIB2_GLIB_GENMARSHAL}) + + endif (ENABLE_GTK2_IM_MODULE OR ENABLE_GTK3_IM_MODULE) + + add_subdirectory(gtk2) + add_subdirectory(gtk3) + add_subdirectory(qt) +endif (_ENABLE_DBUS) \ No newline at end of file diff -Nru fcitx-4.0.1/src/frontend/gtk2/client.c fcitx-4.1.1/src/frontend/gtk2/client.c --- fcitx-4.0.1/src/frontend/gtk2/client.c 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/frontend/gtk2/client.c 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,377 @@ +/*************************************************************************** + * Copyright (C) 2010~2011 by CSSlayer * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +#include +#include +#include "module/dbus/dbusstuff.h" +#include "frontend/ipc/ipc.h" +#include "fcitx/fcitx.h" +#include "fcitx/ime.h" +#include "fcitx-config/fcitx-config.h" +#include "fcitx-utils/log.h" +#include "fcitx-utils/utils.h" + +#include "client.h" +#include "marshall.h" + +#define LOG_LEVEL DEBUG +#define IC_NAME_MAX 64 + +struct _FcitxIMClient { + DBusGConnection* conn; + DBusGProxy* proxy; + DBusGProxy* icproxy; + char icname[IC_NAME_MAX]; + int id; + DBusGProxy* dbusproxy; + FcitxIMClientConnectCallback connectcb; + FcitxIMClientDestroyCallback destroycb; + void *data; + HOTKEYS triggerkey[2]; + char servicename[IC_NAME_MAX]; +}; + +static void FcitxIMClientCreateIC(FcitxIMClient* client); + +static void _destroy_cb(DBusGProxy *proxy, gpointer user_data); +static void _changed_cb(DBusGProxy* proxy, char* service, char* old_owner, char* new_owner, gpointer user_data); + +static void FcitxIMClientCreateICCallback(DBusGProxy *proxy, + DBusGProxyCall *call_id, + gpointer user_data); + +boolean IsFcitxIMClientValid(FcitxIMClient* client) +{ + if (client == NULL) + return false; + if (client->proxy == NULL || client->icproxy == NULL) + return false; + + return true; +} + +FcitxIMClient* FcitxIMClientOpen(FcitxIMClientConnectCallback connectcb, FcitxIMClientDestroyCallback destroycb, GObject* data) +{ + FcitxIMClient* client = fcitx_malloc0(sizeof(FcitxIMClient)); + GError *error = NULL; + client->connectcb = connectcb; + client->destroycb = destroycb; + client->data = data; + client->conn = dbus_g_bus_get(DBUS_BUS_SESSION, &error); + client->id = -1; + + /* You must have dbus to make it works */ + if (client->conn == NULL) + { + g_warning("%s", error->message); + free(client); + return NULL; + } + + client->dbusproxy = dbus_g_proxy_new_for_name(client->conn, + DBUS_SERVICE_DBUS, + DBUS_PATH_DBUS, + DBUS_INTERFACE_DBUS); + + if (!client->dbusproxy) + { + g_object_unref(client->conn); + free(client); + return NULL; + } + sprintf(client->servicename, "%s-%d", FCITX_DBUS_SERVICE, FcitxGetDisplayNumber()); + dbus_g_object_register_marshaller(fcitx_marshall_VOID__STRING_STRING_STRING, G_TYPE_NONE, G_TYPE_STRING, G_TYPE_STRING, G_TYPE_STRING, G_TYPE_INVALID); + dbus_g_proxy_add_signal(client->dbusproxy, "NameOwnerChanged", G_TYPE_STRING, G_TYPE_STRING, G_TYPE_STRING, G_TYPE_INVALID); + dbus_g_proxy_connect_signal(client->dbusproxy, "NameOwnerChanged", + G_CALLBACK(_changed_cb), client, NULL); + + client->triggerkey[0].sym = client->triggerkey[0].state = client->triggerkey[1].sym = client->triggerkey[1].state = 0; + + FcitxIMClientCreateIC(client); + return client; +} + +static void _changed_cb(DBusGProxy* proxy, char* service, char* old_owner, char* new_owner, gpointer user_data) +{ + FcitxLog(LOG_LEVEL, "_changed_cb"); + FcitxIMClient* client = (FcitxIMClient*) user_data; + if (g_str_equal(service, client->servicename)) + { + gboolean new_owner_good = new_owner && (new_owner[0] != '\0'); + if (new_owner_good) + { + if (client->proxy) + { + g_object_unref(client->proxy); + client->proxy = NULL; + } + + if (client->icproxy) + { + g_object_unref(client->icproxy); + client->icproxy = NULL; + } + + FcitxIMClientCreateIC(client); + } + } +} + +static void _destroy_cb(DBusGProxy *proxy, gpointer user_data) +{ + FcitxLog(LOG_LEVEL, "_destroy_cb"); + FcitxIMClient* client = (FcitxIMClient*) user_data; + if (client->proxy == proxy) + { + g_object_unref(client->proxy); + g_object_unref(client->icproxy); + client->proxy = NULL; + client->icproxy = NULL; + client->triggerkey[0].sym = client->triggerkey[0].state = client->triggerkey[1].sym = client->triggerkey[1].state = 0; + } + client->destroycb(client, client->data); +} + +void FcitxIMClientCreateIC(FcitxIMClient* client) +{ + GError* error = NULL; + + client->proxy = dbus_g_proxy_new_for_name_owner(client->conn, + client->servicename, + FCITX_IM_DBUS_PATH, + FCITX_IM_DBUS_INTERFACE, + &error); + + if (!client->proxy) + return; + + g_signal_connect(client->proxy, "destroy", G_CALLBACK( _destroy_cb), client); + + dbus_g_proxy_begin_call(client->proxy, "CreateIC", FcitxIMClientCreateICCallback, client, NULL, G_TYPE_INVALID); +} + +void FcitxIMClientCreateICCallback(DBusGProxy *proxy, + DBusGProxyCall *call_id, + gpointer user_data) +{ + FcitxIMClient* client = (FcitxIMClient*) user_data; + GError *error = NULL; + + guint arg1, arg2, arg3, arg4; + int id = -1; + dbus_g_proxy_end_call(proxy, call_id, &error, + G_TYPE_INT, &id, + G_TYPE_UINT, &arg1, + G_TYPE_UINT, &arg2, + G_TYPE_UINT, &arg3, + G_TYPE_UINT, &arg4, + G_TYPE_INVALID + ); + client->triggerkey[0].sym = arg1; + client->triggerkey[0].state = arg2; + client->triggerkey[1].sym = arg3; + client->triggerkey[1].state = arg4; + + if (id >= 0) + client->id = id; + else + return; + + sprintf(client->icname, FCITX_IC_DBUS_PATH, client->id); + + client->icproxy = dbus_g_proxy_new_for_name_owner(client->conn, + client->servicename, + client->icname, + FCITX_IC_DBUS_INTERFACE, + &error + ); + if (!client->icproxy) + return; + + dbus_g_proxy_add_signal(client->icproxy, "EnableIM", G_TYPE_INVALID); + dbus_g_proxy_add_signal(client->icproxy, "CloseIM", G_TYPE_INVALID); + dbus_g_proxy_add_signal(client->icproxy, "CommitString", G_TYPE_STRING, G_TYPE_INVALID); + + dbus_g_object_register_marshaller(fcitx_marshall_VOID__STRING_INT, G_TYPE_NONE, G_TYPE_STRING, G_TYPE_INT, G_TYPE_INVALID); + + dbus_g_proxy_add_signal(client->icproxy, "UpdatePreedit", G_TYPE_STRING, G_TYPE_INT, G_TYPE_INVALID); + + dbus_g_object_register_marshaller(fcitx_marshall_VOID__UINT_UINT_INT, G_TYPE_NONE, G_TYPE_UINT, G_TYPE_UINT, G_TYPE_INT, G_TYPE_INVALID); + + dbus_g_proxy_add_signal(client->icproxy, "ForwardKey", G_TYPE_UINT, G_TYPE_UINT, G_TYPE_INT, G_TYPE_INVALID); + client->connectcb(client, client->data); +} + +void FcitxIMClientClose(FcitxIMClient* client) +{ + if (client->icproxy) + { + dbus_g_proxy_call_no_reply(client->icproxy, "DestroyIC", G_TYPE_INVALID); + } + DBusGProxy* icproxy = client->icproxy; + DBusGProxy* proxy = client->proxy; + client->icproxy = NULL; + client->proxy = NULL; + if (client->dbusproxy) + g_object_unref(client->dbusproxy); + if (proxy) + g_signal_handlers_disconnect_by_func(proxy, G_CALLBACK( _destroy_cb), client); + if (icproxy) + g_object_unref(icproxy); + if (proxy) + g_object_unref(proxy); + free(client); +} + +void FcitxIMClientFocusIn(FcitxIMClient* client) +{ + if (client->icproxy) + { + dbus_g_proxy_call_no_reply(client->icproxy, "FocusIn", G_TYPE_INVALID); + } +} + +void FcitxIMClientFocusOut(FcitxIMClient* client) +{ + if (client->icproxy) + { + dbus_g_proxy_call_no_reply(client->icproxy, "FocusOut", G_TYPE_INVALID); + } +} + +void FcitxIMClientReset(FcitxIMClient* client) +{ + if (client->icproxy) + { + dbus_g_proxy_call_no_reply(client->icproxy, "Reset", G_TYPE_INVALID); + } +} + +void FcitxIMClientSetCapacity(FcitxIMClient* client, CapacityFlags flags) +{ + uint32_t iflags = flags; + if (client->icproxy) + { + dbus_g_proxy_call_no_reply(client->icproxy, "SetCapacity", G_TYPE_UINT, iflags, G_TYPE_INVALID); + } +} + +void FcitxIMClientSetCursorLocation(FcitxIMClient* client, int x, int y) +{ + if (client->icproxy) + { + dbus_g_proxy_call_no_reply(client->icproxy, "SetCursorLocation", G_TYPE_INT, x, G_TYPE_INT, y, G_TYPE_INVALID); + } +} + +void FcitxIMClientProcessKey(FcitxIMClient* client, + DBusGProxyCallNotify callback, + void* user_data, + GDestroyNotify notify, + uint32_t keyval, uint32_t keycode, uint32_t state, FcitxKeyEventType type, uint32_t t) +{ + int itype = type; + dbus_g_proxy_begin_call(client->icproxy, "ProcessKeyEvent", + callback, + user_data, + notify, + G_TYPE_UINT, keyval, + G_TYPE_UINT, keycode, + G_TYPE_UINT, state, + G_TYPE_INT, itype, + G_TYPE_UINT, t, + G_TYPE_INVALID + ); +} + +int FcitxIMClientProcessKeySync(FcitxIMClient* client, + uint32_t keyval, uint32_t keycode, uint32_t state, FcitxKeyEventType type, uint32_t t) +{ + int itype = type; + GError *error = NULL; + int ret = -1; + if ( !dbus_g_proxy_call(client->icproxy, "ProcessKeyEvent", + &error, + G_TYPE_UINT, keyval, + G_TYPE_UINT, keycode, + G_TYPE_UINT, state, + G_TYPE_INT, itype, + G_TYPE_UINT, t, + G_TYPE_INVALID, + G_TYPE_INT, &ret, + G_TYPE_INVALID + )) + { + return -1; + } + + return ret; +} + +void FcitxIMClientConnectSignal(FcitxIMClient* imclient, + GCallback enableIM, + GCallback closeIM, + GCallback commitString, + GCallback forwardKey, + GCallback updatePreedit, + void* user_data, + GClosureNotify freefunc + ) +{ + dbus_g_proxy_connect_signal(imclient->icproxy, + "EnableIM", + enableIM, + user_data, + freefunc + ); + + dbus_g_proxy_connect_signal(imclient->icproxy, + "CloseIM", + closeIM, + user_data, + freefunc + ); + + dbus_g_proxy_connect_signal(imclient->icproxy, + "CommitString", + commitString, + user_data, + freefunc + ); + + dbus_g_proxy_connect_signal(imclient->icproxy, + "ForwardKey", + forwardKey, + user_data, + freefunc + ); + + dbus_g_proxy_connect_signal(imclient->icproxy, + "UpdatePreedit", + updatePreedit, + user_data, + freefunc + ); +} + +HOTKEYS* FcitxIMClientGetTriggerKey(FcitxIMClient* client) +{ + return client->triggerkey; +} +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/frontend/gtk2/client.h fcitx-4.1.1/src/frontend/gtk2/client.h --- fcitx-4.0.1/src/frontend/gtk2/client.h 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/frontend/gtk2/client.h 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,64 @@ +/*************************************************************************** + * Copyright (C) 2010~2011 by CSSlayer * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +#ifndef FCITX_CLIENT_H +#define FCITX_CLIENT_H + +#include +#include "fcitx-config/fcitx-config.h" +#include "fcitx/ime.h" +#include "fcitx/frontend.h" + +#ifdef __cplusplus +extern "C" { +#endif + + typedef struct _FcitxIMClient FcitxIMClient; + typedef void (*FcitxIMClientDestroyCallback)(FcitxIMClient* client, void* data); + typedef void (*FcitxIMClientConnectCallback)(FcitxIMClient* client, void* data); + + + FcitxIMClient* FcitxIMClientOpen(FcitxIMClientConnectCallback connectcb, FcitxIMClientDestroyCallback destroycb, GObject* data); + boolean IsFcitxIMClientValid(FcitxIMClient* client); + void FcitxIMClientClose(FcitxIMClient* client); + void FcitxIMClientFocusIn(FcitxIMClient* client); + void FcitxIMClientFocusOut(FcitxIMClient* client); + void FcitxIMClientSetCursorLocation(FcitxIMClient* client, int x, int y); + void FcitxIMClientSetCapacity(FcitxIMClient* client, CapacityFlags flags); + void FcitxIMClientReset(FcitxIMClient* client); + void FcitxIMClientProcessKey(FcitxIMClient* client, DBusGProxyCallNotify callback, void* user_data, GDestroyNotify notify, uint32_t keyval, uint32_t keycode, uint32_t state, FcitxKeyEventType type, uint32_t t); + int FcitxIMClientProcessKeySync(FcitxIMClient* client, + uint32_t keyval, uint32_t keycode, uint32_t state, FcitxKeyEventType type, uint32_t t); + void FcitxIMClientConnectSignal(FcitxIMClient* imclient, + GCallback enableIM, + GCallback closeIM, + GCallback commitString, + GCallback forwardKey, + GCallback updatePreedit, + void* user_data, + GClosureNotify freefunc + ); + HOTKEYS* FcitxIMClientGetTriggerKey(FcitxIMClient* client); + +#ifdef __cplusplus +} +#endif + +#endif +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/frontend/gtk2/CMakeLists.txt fcitx-4.1.1/src/frontend/gtk2/CMakeLists.txt --- fcitx-4.0.1/src/frontend/gtk2/CMakeLists.txt 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/frontend/gtk2/CMakeLists.txt 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,36 @@ +if(ENABLE_GTK2_IM_MODULE) + +PKG_CHECK_MODULES(GTK2 REQUIRED "gtk+-2.0" ) + +_pkgconfig_invoke("gtk+-2.0" GTK2 BINARY_VERSION "" "--variable=gtk_binary_version") +set(GTK2_IM_MODULEDIR + "${libdir}/gtk-2.0/${GTK2_BINARY_VERSION}/immodules" +) + +include_directories(${GTK2_INCLUDE_DIRS}) +include_directories(${DBUS_GLIB_INCLUDE_DIRS}) +include_directories(${CMAKE_CURRENT_BINARY_DIR}) +link_directories(${GTK2_LIBRARY_DIRS} ${DBUS_GLIB_LIBRARY_DIRS}) + +add_custom_command(OUTPUT marshall.c + COMMAND ${GLIB_GENMARSHAL} --body --prefix=fcitx_marshall ${PROJECT_SOURCE_DIR}/src/frontend/gtk-common/marshall.list > marshall.c +) +add_custom_command(OUTPUT marshall.h + COMMAND ${GLIB_GENMARSHAL} --header --prefix=fcitx_marshall ${PROJECT_SOURCE_DIR}/src/frontend/gtk-common/marshall.list > marshall.h +) + +set(FCITX_GTK2_IM_MODULE_SOURCES + fcitxim.c + fcitximcontext.c + client.c + ${CMAKE_CURRENT_BINARY_DIR}/marshall.c + ${CMAKE_CURRENT_BINARY_DIR}/marshall.h +) + +add_library(im-fcitx MODULE ${FCITX_GTK2_IM_MODULE_SOURCES}) +set_target_properties( im-fcitx PROPERTIES PREFIX "" COMPILE_FLAGS "-fvisibility=hidden" LINK_FLAGS "-Wl,--no-undefined") +target_link_libraries( im-fcitx ${GTK2_LIBRARIES} ${DBUS_GLIB_LIBRARIES} fcitx-utils) + +install(TARGETS im-fcitx DESTINATION ${GTK2_IM_MODULEDIR}) + +endif(ENABLE_GTK2_IM_MODULE) diff -Nru fcitx-4.0.1/src/frontend/gtk2/fcitxim.c fcitx-4.1.1/src/frontend/gtk2/fcitxim.c --- fcitx-4.0.1/src/frontend/gtk2/fcitxim.c 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/frontend/gtk2/fcitxim.c 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,84 @@ +/*************************************************************************** + * Copyright (C) 2010~2011 by CSSlayer * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +#include +#include +#include +#include "fcitx/fcitx.h" +#include "fcitximcontext.h" + +static const GtkIMContextInfo fcitx_im_info = { + "fcitx", + "Fcitx (Free Chinese Input Toy of X)", + "fcitx", + LOCALEDIR, + "ja:ko:zh:*" +}; + +static const GtkIMContextInfo *info_list[] = { + &fcitx_im_info +}; + +FCITX_EXPORT_API +G_MODULE_EXPORT const gchar* +g_module_check_init (GModule *module) +{ + return glib_check_version (GLIB_MAJOR_VERSION, + GLIB_MINOR_VERSION, + 0); +} + +FCITX_EXPORT_API +G_MODULE_EXPORT void +im_module_init (GTypeModule *type_module) +{ + /* make module resident */ + g_type_module_use (type_module); + fcitx_im_context_register_type (type_module); +} + +FCITX_EXPORT_API +G_MODULE_EXPORT void +im_module_exit (void) +{ +} + +FCITX_EXPORT_API +G_MODULE_EXPORT GtkIMContext * +im_module_create (const gchar *context_id) +{ + if (context_id != NULL && strcmp (context_id, "fcitx") == 0) { + FcitxIMContext *context; + context = fcitx_im_context_new (); + return (GtkIMContext *) context; + } + return NULL; +} + +FCITX_EXPORT_API +G_MODULE_EXPORT void +im_module_list (const GtkIMContextInfo ***contexts, + gint *n_contexts) +{ + *contexts = info_list; + *n_contexts = G_N_ELEMENTS (info_list); +} + + +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/frontend/gtk2/fcitximcontext.c fcitx-4.1.1/src/frontend/gtk2/fcitximcontext.c --- fcitx-4.0.1/src/frontend/gtk2/fcitximcontext.c 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/frontend/gtk2/fcitximcontext.c 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,1104 @@ +/*************************************************************************** + * Copyright (C) 2010~2011 by CSSlayer * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +/** + * @file fcitximcontext.c + * + * @brief This is a gtk im module for fcitx, using DBus as a protocol. + * This is compromise to gtk and firefox, users are being sucked by them + * again and again. + */ + +#ifdef HAVE_CONFIG_H +# include +#endif + +#include +#include +#include +#include +#include "fcitx/fcitx.h" +#include "fcitximcontext.h" +#include "fcitx-config/fcitx-config.h" +#include "client.h" +#include +#include + +#define LOG_LEVEL DEBUG + +#if !GTK_CHECK_VERSION (2, 91, 0) +# define DEPRECATED_GDK_KEYSYMS 1 +#endif + +#if GTK_CHECK_VERSION (2, 24, 0) +# define NEW_GDK_WINDOW_GET_DISPLAY +#endif + +struct _FcitxIMContext { + GtkIMContext parent; + + GdkWindow *client_window; + /* enable */ + boolean enable; + GdkRectangle area; + FcitxIMClient* client; + GtkIMContext* slave; + int has_focus; + guint32 time; + gboolean use_preedit; + gboolean is_inpreedit; + char* preedit_string; + int cursor_pos; +}; + +typedef struct _ProcessKeyStruct { + FcitxIMContext* context; + GdkEventKey* event; +} ProcessKeyStruct; + +struct _FcitxIMContextClass { + GtkIMContextClass parent; + /* klass members */ +}; + +/* functions prototype */ +static void fcitx_im_context_class_init (FcitxIMContextClass *klass); +static void fcitx_im_context_init (FcitxIMContext *im_context); +static void fcitx_im_context_finalize (GObject *obj); +static void fcitx_im_context_set_client_window (GtkIMContext *context, + GdkWindow *client_window); +static gboolean fcitx_im_context_filter_keypress (GtkIMContext *context, + GdkEventKey *key); +static void fcitx_im_context_reset (GtkIMContext *context); +static void fcitx_im_context_focus_in (GtkIMContext *context); +static void fcitx_im_context_focus_out (GtkIMContext *context); +static void fcitx_im_context_set_cursor_location (GtkIMContext *context, + GdkRectangle *area); +static void fcitx_im_context_set_use_preedit (GtkIMContext *context, + gboolean use_preedit); +static void fcitx_im_context_get_preedit_string (GtkIMContext *context, + gchar **str, + PangoAttrList **attrs, + gint *cursor_pos); + + +static gboolean +_set_cursor_location_internal (FcitxIMContext *fcitxcontext); +static void +_slave_commit_cb (GtkIMContext *slave, + gchar *string, + FcitxIMContext *context); +static void +_slave_preedit_changed_cb (GtkIMContext *slave, + FcitxIMContext *context); +static void +_slave_preedit_start_cb (GtkIMContext *slave, + FcitxIMContext *context); +static void +_slave_preedit_end_cb (GtkIMContext *slave, + FcitxIMContext *context); +static gboolean +_slave_retrieve_surrounding_cb (GtkIMContext *slave, + FcitxIMContext *context); +static gboolean +_slave_delete_surrounding_cb (GtkIMContext *slave, + gint offset_from_cursor, + guint nchars, + FcitxIMContext *context); +static void +_fcitx_im_context_enable_im_cb(DBusGProxy* proxy, void* user_data); +static void +_fcitx_im_context_close_im_cb(DBusGProxy* proxy, void* user_data); +static void +_fcitx_im_context_commit_string_cb(DBusGProxy* proxy, char* str, void* user_data); +static void +_fcitx_im_context_forward_key_cb(DBusGProxy* proxy, guint keyval, guint state, gint type, void* user_data); +static void +_fcitx_im_context_update_preedit_cb(DBusGProxy* proxy, char* str, int cursor_pos, void* user_data); +static void +_fcitx_im_context_connect_cb(FcitxIMClient* client, void* user_data); +static void +_fcitx_im_context_destroy_cb(FcitxIMClient* client, void* user_data); +static void +_fcitx_im_context_process_key_cb(DBusGProxy *proxy, DBusGProxyCall *call_id, gpointer user_data); +static void +_fcitx_im_context_set_capacity(FcitxIMContext* fcitxcontext); + +static GdkEventKey * +_create_gdk_event (FcitxIMContext *fcitxcontext, + guint keyval, + guint state, + FcitxKeyEventType type + ); + + +static gboolean +_key_is_modifier (guint keyval); + +static gboolean +_get_boolean_env(const gchar *name, + gboolean defval); + +static GType _fcitx_type_im_context = 0; + +static guint _signal_commit_id = 0; +static guint _signal_preedit_changed_id = 0; +static guint _signal_preedit_start_id = 0; +static guint _signal_preedit_end_id = 0; +static guint _signal_delete_surrounding_id = 0; +static guint _signal_retrieve_surrounding_id = 0; +static gboolean _use_sync_mode = 0; + +/* Copied from gtk+2.0-2.20.1/modules/input/imcedilla.c to fix crosbug.com/11421. +* Overwrite the original Gtk+'s compose table in gtk+-2.x.y/gtk/gtkimcontextsimple.c. */ + +/* The difference between this and the default input method is the handling +* of C+acute - this method produces C WITH CEDILLA rather than C WITH ACUTE. +* For languages that use CCedilla and not acute, this is the preferred mapping, +* and is particularly important for pt_BR, where the us-intl keyboard is +* used extensively. +*/ +static guint16 cedilla_compose_seqs[] = { +#ifdef DEPRECATED_GDK_KEYSYMS + GDK_dead_acute, GDK_C, 0, 0, 0, 0x00C7, /* LATIN_CAPITAL_LETTER_C_WITH_CEDILLA */ + GDK_dead_acute, GDK_c, 0, 0, 0, 0x00E7, /* LATIN_SMALL_LETTER_C_WITH_CEDILLA */ + GDK_Multi_key, GDK_apostrophe, GDK_C, 0, 0, 0x00C7, /* LATIN_CAPITAL_LETTER_C_WITH_CEDILLA */ + GDK_Multi_key, GDK_apostrophe, GDK_c, 0, 0, 0x00E7, /* LATIN_SMALL_LETTER_C_WITH_CEDILLA */ + GDK_Multi_key, GDK_C, GDK_apostrophe, 0, 0, 0x00C7, /* LATIN_CAPITAL_LETTER_C_WITH_CEDILLA */ + GDK_Multi_key, GDK_c, GDK_apostrophe, 0, 0, 0x00E7, /* LATIN_SMALL_LETTER_C_WITH_CEDILLA */ +#else + GDK_KEY_dead_acute, GDK_KEY_C, 0, 0, 0, 0x00C7, /* LATIN_CAPITAL_LETTER_C_WITH_CEDILLA */ + GDK_KEY_dead_acute, GDK_KEY_c, 0, 0, 0, 0x00E7, /* LATIN_SMALL_LETTER_C_WITH_CEDILLA */ + GDK_KEY_Multi_key, GDK_KEY_apostrophe, GDK_KEY_C, 0, 0, 0x00C7, /* LATIN_CAPITAL_LETTER_C_WITH_CEDILLA */ + GDK_KEY_Multi_key, GDK_KEY_apostrophe, GDK_KEY_c, 0, 0, 0x00E7, /* LATIN_SMALL_LETTER_C_WITH_CEDILLA */ + GDK_KEY_Multi_key, GDK_KEY_C, GDK_KEY_apostrophe, 0, 0, 0x00C7, /* LATIN_CAPITAL_LETTER_C_WITH_CEDILLA */ + GDK_KEY_Multi_key, GDK_KEY_c, GDK_KEY_apostrophe, 0, 0, 0x00E7, /* LATIN_SMALL_LETTER_C_WITH_CEDILLA */ +#endif +}; + +static +boolean FcitxIsHotKey(FcitxKeySym sym, int state, HOTKEYS * hotkey); + +static +boolean FcitxIsHotKey(FcitxKeySym sym, int state, HOTKEYS * hotkey) +{ + state &= KEY_CTRL_ALT_SHIFT_COMP; + if (hotkey[0].sym && sym == hotkey[0].sym && (hotkey[0].state == state) ) + return true; + if (hotkey[1].sym && sym == hotkey[1].sym && (hotkey[1].state == state) ) + return true; + return false; +} + +void +fcitx_im_context_register_type (GTypeModule *type_module) +{ + static const GTypeInfo fcitx_im_context_info = { + sizeof (FcitxIMContextClass), + (GBaseInitFunc) NULL, + (GBaseFinalizeFunc) NULL, + (GClassInitFunc) fcitx_im_context_class_init, + (GClassFinalizeFunc) NULL, + NULL, /* klass data */ + sizeof (FcitxIMContext), + 0, + (GInstanceInitFunc) fcitx_im_context_init, + 0 + }; + + if (!_fcitx_type_im_context) { + if (type_module) { + _fcitx_type_im_context = + g_type_module_register_type (type_module, + GTK_TYPE_IM_CONTEXT, + "FcitxIMContext", + &fcitx_im_context_info, + (GTypeFlags)0); + } + else { + _fcitx_type_im_context = + g_type_register_static (GTK_TYPE_IM_CONTEXT, + "FcitxIMContext", + &fcitx_im_context_info, + (GTypeFlags)0); + } + } +} + +GType +fcitx_im_context_get_type (void) +{ + if (_fcitx_type_im_context == 0) { + fcitx_im_context_register_type (NULL); + } + + g_assert (_fcitx_type_im_context != 0); + return _fcitx_type_im_context; +} + +FcitxIMContext * +fcitx_im_context_new (void) +{ + GObject *obj = g_object_new (FCITX_TYPE_IM_CONTEXT, NULL); + return FCITX_IM_CONTEXT (obj); +} + +/// +static void +fcitx_im_context_class_init (FcitxIMContextClass *klass) +{ + GtkIMContextClass *im_context_class = GTK_IM_CONTEXT_CLASS (klass); + GObjectClass *gobject_class = G_OBJECT_CLASS (klass); + + im_context_class->set_client_window = fcitx_im_context_set_client_window; + im_context_class->filter_keypress = fcitx_im_context_filter_keypress; + im_context_class->reset = fcitx_im_context_reset; + im_context_class->get_preedit_string = fcitx_im_context_get_preedit_string; + im_context_class->focus_in = fcitx_im_context_focus_in; + im_context_class->focus_out = fcitx_im_context_focus_out; + im_context_class->set_cursor_location = fcitx_im_context_set_cursor_location; + im_context_class->set_use_preedit = fcitx_im_context_set_use_preedit; + gobject_class->finalize = fcitx_im_context_finalize; + + _signal_commit_id = + g_signal_lookup ("commit", G_TYPE_FROM_CLASS (klass)); + g_assert (_signal_commit_id != 0); + + _signal_preedit_changed_id = + g_signal_lookup ("preedit-changed", G_TYPE_FROM_CLASS (klass)); + g_assert (_signal_preedit_changed_id != 0); + + _signal_preedit_start_id = + g_signal_lookup ("preedit-start", G_TYPE_FROM_CLASS (klass)); + g_assert (_signal_preedit_start_id != 0); + + _signal_preedit_end_id = + g_signal_lookup ("preedit-end", G_TYPE_FROM_CLASS (klass)); + g_assert (_signal_preedit_end_id != 0); + + _signal_delete_surrounding_id = + g_signal_lookup ("delete-surrounding", G_TYPE_FROM_CLASS (klass)); + g_assert (_signal_delete_surrounding_id != 0); + + _signal_retrieve_surrounding_id = + g_signal_lookup ("retrieve-surrounding", G_TYPE_FROM_CLASS (klass)); + g_assert (_signal_retrieve_surrounding_id != 0); + + /* make ibus fix benefits us */ + _use_sync_mode = _get_boolean_env ("IBUS_ENABLE_SYNC_MODE", FALSE) + || _get_boolean_env ("FCITX_ENABLE_SYNC_MODE", FALSE); +} + + +static void +fcitx_im_context_init (FcitxIMContext *context) +{ + FcitxLog(LOG_LEVEL, "fcitx_im_context_init"); + context->client = NULL; + context->area.x = -1; + context->area.y = -1; + context->area.width = 0; + context->area.height = 0; + context->use_preedit = TRUE; + context->cursor_pos = 0; + context->preedit_string = NULL; + + context->slave = gtk_im_context_simple_new (); + gtk_im_context_simple_add_table (GTK_IM_CONTEXT_SIMPLE (context->slave), + cedilla_compose_seqs, + 4, + G_N_ELEMENTS (cedilla_compose_seqs) / (4 + 2)); + + g_signal_connect (context->slave, + "commit", + G_CALLBACK (_slave_commit_cb), + context); + g_signal_connect (context->slave, + "preedit-start", + G_CALLBACK (_slave_preedit_start_cb), + context); + g_signal_connect (context->slave, + "preedit-end", + G_CALLBACK (_slave_preedit_end_cb), + context); + g_signal_connect (context->slave, + "preedit-changed", + G_CALLBACK (_slave_preedit_changed_cb), + context); + g_signal_connect (context->slave, + "retrieve-surrounding", + G_CALLBACK (_slave_retrieve_surrounding_cb), + context); + g_signal_connect (context->slave, + "delete-surrounding", + G_CALLBACK (_slave_delete_surrounding_cb), + context); + + context->time = GDK_CURRENT_TIME; + + context->client = FcitxIMClientOpen(_fcitx_im_context_connect_cb, _fcitx_im_context_destroy_cb, G_OBJECT(context)); +} + +static void +fcitx_im_context_finalize (GObject *obj) +{ + FcitxLog(LOG_LEVEL, "fcitx_im_context_finalize"); + FcitxIMContext *context = FCITX_IM_CONTEXT (obj); + + FcitxIMClientClose(context->client); + context->client = NULL; + + if (context->slave) + { + g_object_unref(context->slave); + context->slave = NULL; + } + + if (context->preedit_string) + g_free(context->preedit_string); + context->preedit_string = NULL; +} + + +static void +set_ic_client_window (FcitxIMContext *context, + GdkWindow *client_window) +{ + if (!client_window) + return; + + if (context->client_window) { + g_object_unref (context->client_window); + context->client_window = NULL; + } + + if (client_window != NULL) + context->client_window = g_object_ref (client_window); + + if (context->slave) + gtk_im_context_set_client_window (context->slave, client_window); +} + + +/// +static void +fcitx_im_context_set_client_window (GtkIMContext *context, + GdkWindow *client_window) +{ + FcitxLog(LOG_LEVEL, "fcitx_im_context_set_client_window"); + FcitxIMContext *fcitxcontext = FCITX_IM_CONTEXT (context); + set_ic_client_window (fcitxcontext, client_window); +} + +/// +static gboolean +fcitx_im_context_filter_keypress (GtkIMContext *context, + GdkEventKey *event) +{ + FcitxLog(LOG_LEVEL, "fcitx_im_context_filter_keypress"); + FcitxIMContext *fcitxcontext = FCITX_IM_CONTEXT (context); + + if (G_UNLIKELY (event->state & KEY_HANDLED_MASK)) + return TRUE; + + if (G_UNLIKELY (event->state & KEY_IGNORED_MASK)) + return gtk_im_context_filter_keypress(fcitxcontext->slave, event); + + if (IsFcitxIMClientValid(fcitxcontext->client)) + { + /* XXX it is a workaround for some applications do not set client window. */ + if (fcitxcontext->client_window == NULL && event->window != NULL) + { + gtk_im_context_set_client_window ((GtkIMContext *)fcitxcontext, event->window); + + /* set_cursor_location_internal() will get origin from X server, + * it blocks UI. So delay it to idle callback. */ + g_idle_add_full (G_PRIORITY_DEFAULT_IDLE, + (GSourceFunc) _set_cursor_location_internal, + g_object_ref (fcitxcontext), + (GDestroyNotify) g_object_unref); + } + + if (!fcitxcontext->enable) + { + if (!FcitxIsHotKey(event->keyval, event->state, FcitxIMClientGetTriggerKey(fcitxcontext->client))) + return gtk_im_context_filter_keypress(fcitxcontext->slave, event); + } + + fcitxcontext->time = event->time; + + if (_use_sync_mode) + { + int ret = FcitxIMClientProcessKeySync(fcitxcontext->client, + event->keyval, + event->hardware_keycode, + event->state, + (event->type == GDK_KEY_PRESS)?(FCITX_PRESS_KEY):(FCITX_RELEASE_KEY), + event->time); + if (ret <= 0) + { + event->state |= KEY_IGNORED_MASK; + return gtk_im_context_filter_keypress(fcitxcontext->slave, event); + } + else + { + event->state |= KEY_HANDLED_MASK; + return TRUE; + } + } + else + { + ProcessKeyStruct* pks = g_malloc0(sizeof(ProcessKeyStruct)); + pks->context = fcitxcontext; + pks->event = (GdkEventKey *) gdk_event_copy((GdkEvent *) event); + + FcitxIMClientProcessKey(fcitxcontext->client, + _fcitx_im_context_process_key_cb, + pks, + g_free, + event->keyval, + event->hardware_keycode, + event->state, + (event->type == GDK_KEY_PRESS)?(FCITX_PRESS_KEY):(FCITX_RELEASE_KEY), + event->time); + event->state |= KEY_HANDLED_MASK; + return TRUE; + } + } + else + { + return gtk_im_context_filter_keypress(fcitxcontext->slave, event); + } + return FALSE; +} + +static void +_fcitx_im_context_process_key_cb(DBusGProxy *proxy, + DBusGProxyCall *call_id, + gpointer user_data) +{ + ProcessKeyStruct* pks = user_data; + GdkEventKey* event = pks->event; + GError* error = NULL; + int ret; + dbus_g_proxy_end_call(proxy, call_id, &error, G_TYPE_INT, &ret, G_TYPE_INVALID); + if (ret <= 0) + { + event->state |= KEY_IGNORED_MASK; + gdk_event_put ((GdkEvent *)event); + } + gdk_event_free ((GdkEvent *)event); +} + +static void +_fcitx_im_context_update_preedit_cb(DBusGProxy* proxy, char* str, int cursor_pos, void* user_data) +{ + FcitxLog(LOG_LEVEL, "_fcitx_im_context_commit_string_cb"); + FcitxIMContext* context = FCITX_IM_CONTEXT(user_data); + + gboolean visible = false; + + if (context->preedit_string != NULL) + { + if (strlen(context->preedit_string) != 0) + visible = true; + g_free(context->preedit_string); + context->preedit_string = NULL; + } + context->preedit_string = g_strdup(str); + context->cursor_pos = cursor_pos; + + gboolean new_visible = false; + + if (context->preedit_string != NULL) + { + if (strlen(context->preedit_string) != 0) + new_visible = true; + } + gboolean flag = new_visible != visible; + + if (new_visible) { + if (flag) { + /* invisible => visible */ + g_signal_emit (context, _signal_preedit_start_id, 0); + } + g_signal_emit (context, _signal_preedit_changed_id, 0); + } + else { + if (flag) { + /* visible => invisible */ + g_signal_emit (context, _signal_preedit_changed_id, 0); + g_signal_emit (context, _signal_preedit_end_id, 0); + } + else { + /* still invisible */ + /* do nothing */ + } + } + + g_signal_emit (context, _signal_preedit_changed_id, 0); +} + + +/// +static void +fcitx_im_context_focus_in (GtkIMContext *context) +{ + FcitxLog(LOG_LEVEL, "fcitx_im_context_focus_in"); + FcitxIMContext *fcitxcontext = FCITX_IM_CONTEXT (context); + + if (fcitxcontext->has_focus) + return; + + fcitxcontext->has_focus = true; + + if (IsFcitxIMClientValid(fcitxcontext->client)) { + FcitxIMClientFocusIn(fcitxcontext->client); + } + + gtk_im_context_focus_in (fcitxcontext->slave); + + /* set_cursor_location_internal() will get origin from X server, + * it blocks UI. So delay it to idle callback. */ + g_idle_add_full (G_PRIORITY_DEFAULT_IDLE, + (GSourceFunc) _set_cursor_location_internal, + g_object_ref (fcitxcontext), + (GDestroyNotify) g_object_unref); + + return; +} + +static void +fcitx_im_context_focus_out (GtkIMContext *context) +{ + FcitxLog(LOG_LEVEL, "fcitx_im_context_focus_out"); + FcitxIMContext *fcitxcontext = FCITX_IM_CONTEXT (context); + + if (!fcitxcontext->has_focus) + { + return; + } + + fcitxcontext->has_focus = false; + + if (IsFcitxIMClientValid(fcitxcontext->client)) { + FcitxIMClientFocusOut(fcitxcontext->client); + } + + + if (fcitxcontext->preedit_string != NULL) + g_free(fcitxcontext->preedit_string); + fcitxcontext->preedit_string = NULL; + fcitxcontext->cursor_pos = 0; + g_signal_emit (fcitxcontext, _signal_preedit_changed_id, 0); + g_signal_emit (fcitxcontext, _signal_preedit_end_id, 0); + + gtk_im_context_focus_out(fcitxcontext->slave); + + return; +} + +/// +static void +fcitx_im_context_set_cursor_location (GtkIMContext *context, + GdkRectangle *area) +{ + FcitxLog(LOG_LEVEL, "fcitx_im_context_set_cursor_location %d %d %d %d", area->x, area->y, area->height, area->width); + FcitxIMContext *fcitxcontext = FCITX_IM_CONTEXT (context); + + if (fcitxcontext->area.x == area->x && + fcitxcontext->area.y == area->y && + fcitxcontext->area.width == area->width && + fcitxcontext->area.height == area->height) { + return; + } + fcitxcontext->area = *area; + + if (IsFcitxIMClientValid(fcitxcontext->client)) { + _set_cursor_location_internal(fcitxcontext); + } + gtk_im_context_set_cursor_location(fcitxcontext->slave, area); + + return; +} + +static gboolean +_set_cursor_location_internal (FcitxIMContext *fcitxcontext) +{ + GdkRectangle area; + + if (fcitxcontext->client_window == NULL || + !IsFcitxIMClientValid(fcitxcontext->client)) { + return FALSE; + } + + area = fcitxcontext->area; + if (area.x == -1 && area.y == -1 && area.width == 0 && area.height == 0) { +#if GTK_CHECK_VERSION (2, 91, 0) + area.x = 0; + area.y += gdk_window_get_height (fcitxcontext->client_window); +#else + gint w, h; + gdk_drawable_get_size (fcitxcontext->client_window, &w, &h); + area.y += h; + area.x = 0; +#endif + } + +#if GTK_CHECK_VERSION (2, 18, 0) + gdk_window_get_root_coords (fcitxcontext->client_window, + area.x, area.y, + &area.x, &area.y); +#else + { + int rootx, rooty; + gdk_window_get_origin (fcitxcontext->client_window, &rootx, &rooty); + area.x = rootx + area.x; + area.y = rooty + area.y; + } +#endif + + FcitxIMClientSetCursorLocation(fcitxcontext->client, area.x, area.y + area.height); + return FALSE; +} + +/// +static void +fcitx_im_context_set_use_preedit (GtkIMContext *context, + gboolean use_preedit) +{ + FcitxLog(LOG_LEVEL, "fcitx_im_context_set_use_preedit"); + FcitxIMContext *fcitxcontext = FCITX_IM_CONTEXT (context); + + fcitxcontext->use_preedit = use_preedit; + _fcitx_im_context_set_capacity(fcitxcontext); + + gtk_im_context_set_use_preedit(fcitxcontext->slave, use_preedit); +} + +void +_fcitx_im_context_set_capacity(FcitxIMContext* fcitxcontext) +{ + if (IsFcitxIMClientValid(fcitxcontext->client)) + { + CapacityFlags flags = CAPACITY_NONE; + if (fcitxcontext->use_preedit) + flags |= CAPACITY_PREEDIT; + FcitxIMClientSetCapacity(fcitxcontext->client, flags); + + } +} + +/// +static void +fcitx_im_context_reset (GtkIMContext *context) +{ + FcitxLog(LOG_LEVEL, "fcitx_im_context_reset"); + FcitxIMContext *fcitxcontext = FCITX_IM_CONTEXT (context); + + if (IsFcitxIMClientValid(fcitxcontext->client)) { + FcitxIMClientReset(fcitxcontext->client); + } + + gtk_im_context_reset(fcitxcontext->slave); +} + +static void +fcitx_im_context_get_preedit_string (GtkIMContext *context, + gchar **str, + PangoAttrList **attrs, + gint *cursor_pos) +{ + FcitxLog(LOG_LEVEL, "fcitx_im_context_get_preedit_string"); + FcitxIMContext *fcitxcontext = FCITX_IM_CONTEXT (context); + + if (fcitxcontext->enable && IsFcitxIMClientValid(fcitxcontext->client)) + { + if (str) + { + if (fcitxcontext->preedit_string) + *str = strdup(fcitxcontext->preedit_string); + else + *str = strdup(""); + } + if (attrs) + { + *attrs = pango_attr_list_new (); + + if (str) + { + PangoAttribute *pango_attr; + pango_attr = pango_attr_underline_new (PANGO_UNDERLINE_SINGLE); + pango_attr->start_index = 0; + pango_attr->end_index = strlen(*str); + pango_attr_list_insert (*attrs, pango_attr); + } + } + if (cursor_pos) + *cursor_pos = fcitxcontext->cursor_pos; + + } + else + gtk_im_context_get_preedit_string (fcitxcontext->slave, str, attrs, cursor_pos); + return ; +} + +/* Callback functions for slave context */ +static void +_slave_commit_cb (GtkIMContext *slave, + gchar *string, + FcitxIMContext *context) +{ + g_signal_emit (context, _signal_commit_id, 0, string); +} +static void +_slave_preedit_changed_cb (GtkIMContext *slave, + FcitxIMContext *context) +{ + if (context->enable && context->client) { + return; + } + + g_signal_emit (context, _signal_preedit_changed_id, 0); +} +static void +_slave_preedit_start_cb (GtkIMContext *slave, + FcitxIMContext *context) +{ + if (context->enable && context->client) { + return; + } + + g_signal_emit (context, _signal_preedit_start_id, 0); +} + +static void +_slave_preedit_end_cb (GtkIMContext *slave, + FcitxIMContext *context) +{ + if (context->enable && context->client) { + return; + } + g_signal_emit (context, _signal_preedit_end_id, 0); +} + +static gboolean +_slave_retrieve_surrounding_cb (GtkIMContext *slave, + FcitxIMContext *context) +{ + gboolean return_value; + + if (context->enable && context->client) { + return FALSE; + } + g_signal_emit (context, _signal_retrieve_surrounding_id, 0, + &return_value); + return return_value; +} + +static gboolean +_slave_delete_surrounding_cb (GtkIMContext *slave, + gint offset_from_cursor, + guint nchars, + FcitxIMContext *context) +{ + gboolean return_value; + + if (context->enable && context->client) { + return FALSE; + } + g_signal_emit (context, _signal_delete_surrounding_id, 0, offset_from_cursor, nchars, &return_value); + return return_value; +} + +void _fcitx_im_context_enable_im_cb(DBusGProxy* proxy, void* user_data) +{ + FcitxLog(LOG_LEVEL, "_fcitx_im_context_enable_im_cb"); + FcitxIMContext* context = FCITX_IM_CONTEXT(user_data); + context->enable = true; +} + +void _fcitx_im_context_close_im_cb(DBusGProxy* proxy, void* user_data) +{ + FcitxLog(LOG_LEVEL, "_fcitx_im_context_close_im_cb"); + FcitxIMContext* context = FCITX_IM_CONTEXT(user_data); + context->enable = false; + + if (context->preedit_string != NULL) + g_free(context->preedit_string); + context->preedit_string = NULL; + context->cursor_pos = 0; + g_signal_emit (context, _signal_preedit_changed_id, 0); + g_signal_emit (context, _signal_preedit_end_id, 0); +} + +void _fcitx_im_context_commit_string_cb(DBusGProxy* proxy, char* str, void* user_data) +{ + FcitxLog(LOG_LEVEL, "_fcitx_im_context_commit_string_cb"); + FcitxIMContext* context = FCITX_IM_CONTEXT(user_data); + g_signal_emit (context, _signal_commit_id, 0, str); +} + +void _fcitx_im_context_forward_key_cb(DBusGProxy* proxy, guint keyval, guint state, gint type, void* user_data) +{ + FcitxLog(LOG_LEVEL, "_fcitx_im_context_forward_key_cb"); + FcitxIMContext* context = FCITX_IM_CONTEXT(user_data); + FcitxKeyEventType tp = (FcitxKeyEventType) type; + GdkEventKey* event = _create_gdk_event(context, keyval, state, tp); + event->state |= KEY_IGNORED_MASK; + gdk_event_put ((GdkEvent *)event); + gdk_event_free ((GdkEvent *)event); +} + +/* Copy from gdk */ +static GdkEventKey * +_create_gdk_event (FcitxIMContext *fcitxcontext, + guint keyval, + guint state, + FcitxKeyEventType type + ) +{ + gunichar c = 0; + gchar buf[8]; + + GdkEventKey *event = (GdkEventKey *)gdk_event_new ((type == FCITX_RELEASE_KEY) ? GDK_KEY_RELEASE : GDK_KEY_PRESS); + + if (fcitxcontext && fcitxcontext->client_window) + event->window = g_object_ref (fcitxcontext->client_window); + + /* The time is copied the latest value from the previous + * GdkKeyEvent in filter_keypress(). + * + * We understand the best way would be to pass the all time value + * to Fcitx functions process_key_event() and Fcitx DBus functions + * ProcessKeyEvent() in IM clients and IM engines so that the + * _create_gdk_event() could get the correct time values. + * However it would causes to change many functions and the time value + * would not provide the useful meanings for each Fcitx engines but just + * pass the original value to ForwardKeyEvent(). + * We use the saved value at the moment. + * + * Another idea might be to have the time implementation in X servers + * but some Xorg uses clock_gettime() and others use gettimeofday() + * and the values would be different in each implementation and + * locale/remote X server. So probably that idea would not work. */ + if (fcitxcontext) { + event->time = fcitxcontext->time; + } else { + event->time = GDK_CURRENT_TIME; + } + + event->send_event = FALSE; + event->state = state; + event->keyval = keyval; + event->string = NULL; + event->length = 0; + event->hardware_keycode = 0; + if (event->window) + { +#ifndef NEW_GDK_WINDOW_GET_DISPLAY + GdkDisplay *display = gdk_display_get_default(); +#else + GdkDisplay *display = gdk_window_get_display (event->window); +#endif + GdkKeymap *keymap = gdk_keymap_get_for_display (display); + GdkKeymapKey *keys; + gint n_keys = 0; + + if (gdk_keymap_get_entries_for_keyval (keymap, keyval, &keys, &n_keys)) + { + if (n_keys) + event->hardware_keycode = keys[0].keycode; + g_free(keys); + } + } + + event->group = 0; + event->is_modifier = _key_is_modifier (keyval); + +#ifdef DEPRECATED_GDK_KEYSYMS + if (keyval != GDK_VoidSymbol) +#else + if (keyval != GDK_KEY_VoidSymbol) +#endif + c = gdk_keyval_to_unicode (keyval); + + if (c) { + gsize bytes_written; + gint len; + + /* Apply the control key - Taken from Xlib + */ + if (event->state & GDK_CONTROL_MASK) { + if ((c >= '@' && c < '\177') || c == ' ') c &= 0x1F; + else if (c == '2') { + event->string = g_memdup ("\0\0", 2); + event->length = 1; + buf[0] = '\0'; + goto out; + } + else if (c >= '3' && c <= '7') c -= ('3' - '\033'); + else if (c == '8') c = '\177'; + else if (c == '/') c = '_' & 0x1F; + } + + len = g_unichar_to_utf8 (c, buf); + buf[len] = '\0'; + + event->string = g_locale_from_utf8 (buf, len, + NULL, &bytes_written, + NULL); + if (event->string) + event->length = bytes_written; +#ifdef DEPRECATED_GDK_KEYSYMS + } else if (keyval == GDK_Escape) { +#else + } else if (keyval == GDK_KEY_Escape) { +#endif + event->length = 1; + event->string = g_strdup ("\033"); + } +#ifdef DEPRECATED_GDK_KEYSYMS + else if (keyval == GDK_Return || + keyval == GDK_KP_Enter) { +#else + else if (keyval == GDK_KEY_Return || + keyval == GDK_KEY_KP_Enter) { +#endif + event->length = 1; + event->string = g_strdup ("\r"); + } + + if (!event->string) { + event->length = 0; + event->string = g_strdup (""); + } +out: + return event; +} + + +static gboolean +_key_is_modifier (guint keyval) +{ + /* See gdkkeys-x11.c:_gdk_keymap_key_is_modifier() for how this + * really should be implemented */ + + switch (keyval) { +#ifdef DEPRECATED_GDK_KEYSYMS + case GDK_Shift_L: + case GDK_Shift_R: + case GDK_Control_L: + case GDK_Control_R: + case GDK_Caps_Lock: + case GDK_Shift_Lock: + case GDK_Meta_L: + case GDK_Meta_R: + case GDK_Alt_L: + case GDK_Alt_R: + case GDK_Super_L: + case GDK_Super_R: + case GDK_Hyper_L: + case GDK_Hyper_R: + case GDK_ISO_Lock: + case GDK_ISO_Level2_Latch: + case GDK_ISO_Level3_Shift: + case GDK_ISO_Level3_Latch: + case GDK_ISO_Level3_Lock: + case GDK_ISO_Group_Shift: + case GDK_ISO_Group_Latch: + case GDK_ISO_Group_Lock: + return TRUE; +#else + case GDK_KEY_Shift_L: + case GDK_KEY_Shift_R: + case GDK_KEY_Control_L: + case GDK_KEY_Control_R: + case GDK_KEY_Caps_Lock: + case GDK_KEY_Shift_Lock: + case GDK_KEY_Meta_L: + case GDK_KEY_Meta_R: + case GDK_KEY_Alt_L: + case GDK_KEY_Alt_R: + case GDK_KEY_Super_L: + case GDK_KEY_Super_R: + case GDK_KEY_Hyper_L: + case GDK_KEY_Hyper_R: + case GDK_KEY_ISO_Lock: + case GDK_KEY_ISO_Level2_Latch: + case GDK_KEY_ISO_Level3_Shift: + case GDK_KEY_ISO_Level3_Latch: + case GDK_KEY_ISO_Level3_Lock: + case GDK_KEY_ISO_Level5_Shift: + case GDK_KEY_ISO_Level5_Latch: + case GDK_KEY_ISO_Level5_Lock: + case GDK_KEY_ISO_Group_Shift: + case GDK_KEY_ISO_Group_Latch: + case GDK_KEY_ISO_Group_Lock: + return TRUE; +#endif + default: + return FALSE; + } +} + +void _fcitx_im_context_connect_cb(FcitxIMClient* client, void* user_data) +{ + FcitxIMContext* context = FCITX_IM_CONTEXT(user_data); + if (IsFcitxIMClientValid(client)) + { + FcitxIMClientConnectSignal(client, + G_CALLBACK(_fcitx_im_context_enable_im_cb), + G_CALLBACK(_fcitx_im_context_close_im_cb), + G_CALLBACK(_fcitx_im_context_commit_string_cb), + G_CALLBACK(_fcitx_im_context_forward_key_cb), + G_CALLBACK(_fcitx_im_context_update_preedit_cb), + context, + NULL); + _fcitx_im_context_set_capacity(context); + } + +} + +void _fcitx_im_context_destroy_cb(FcitxIMClient* client, void* user_data) +{ + FcitxIMContext* context = FCITX_IM_CONTEXT(user_data); + context->enable = false; +} + +static gboolean +_get_boolean_env(const gchar *name, + gboolean defval) +{ + const gchar *value = g_getenv (name); + + if (value == NULL) + return defval; + + if (g_strcmp0 (value, "") == 0 || + g_strcmp0 (value, "0") == 0 || + g_strcmp0 (value, "false") == 0 || + g_strcmp0 (value, "False") == 0 || + g_strcmp0 (value, "FALSE") == 0) + return FALSE; + + return TRUE; +} + +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/frontend/gtk2/fcitximcontext.h fcitx-4.1.1/src/frontend/gtk2/fcitximcontext.h --- fcitx-4.0.1/src/frontend/gtk2/fcitximcontext.h 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/frontend/gtk2/fcitximcontext.h 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,52 @@ +/*************************************************************************** + * Copyright (C) 2010~2011 by CSSlayer * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +#ifndef __FCITX_IM_CONTEXT_H_ +#define __FCITX_IM_CONTEXT_H_ + +#include + +/* +* Type macros. +*/ +#define FCITX_TYPE_IM_CONTEXT \ +(fcitx_im_context_get_type ()) +#define FCITX_IM_CONTEXT(obj) \ +(G_TYPE_CHECK_INSTANCE_CAST ((obj), FCITX_TYPE_IM_CONTEXT, FcitxIMContext)) +#define FCITX_IM_CONTEXT_CLASS(klass) \ +(G_TYPE_CHECK_CLASS_CAST ((klass), FCITX_TYPE_IM_CONTEXT, FcitxIMContextClass)) +#define FCITX_IS_IM_CONTEXT(obj) \ +(G_TYPE_CHECK_INSTANCE_TYPE ((obj), FCITX_TYPE_IM_CONTEXT)) +#define FCITX_IS_IM_CONTEXT_CLASS(klass) \ +(G_TYPE_CHECK_CLASS_TYPE ((klass), FCITX_TYPE_IM_CONTEXT)) +#define FCITX_IM_CONTEXT_GET_CLASS(obj) \ +(G_TYPE_CHECK_GET_CLASS ((obj), FCITX_TYPE_IM_CONTEXT, FcitxIMContextClass)) + +G_BEGIN_DECLS +typedef struct _FcitxIMContext FcitxIMContext; +typedef struct _FcitxIMContextClass FcitxIMContextClass; + +GType fcitx_im_context_get_type (void); +FcitxIMContext +*fcitx_im_context_new (void); +void fcitx_im_context_register_type +(GTypeModule *type_module); +G_END_DECLS +#endif +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/frontend/gtk3/CMakeLists.txt fcitx-4.1.1/src/frontend/gtk3/CMakeLists.txt --- fcitx-4.0.1/src/frontend/gtk3/CMakeLists.txt 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/frontend/gtk3/CMakeLists.txt 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,39 @@ +if(ENABLE_GTK3_IM_MODULE) + +PKG_CHECK_MODULES(GTK3 REQUIRED "gtk+-3.0" ) + +_pkgconfig_invoke("gtk+-3.0" GTK3 BINARY_VERSION "" "--variable=gtk_binary_version") + +set(GTK3_IM_MODULEDIR + "${libdir}/gtk-3.0/${GTK3_BINARY_VERSION}/immodules" +) + +include_directories(${GTK3_INCLUDE_DIRS}) +include_directories(${DBUS_GLIB_INCLUDE_DIRS}) +include_directories(${CMAKE_CURRENT_BINARY_DIR}) +link_directories(${GTK3_LIBRARY_DIRS} ${DBUS_GLIB_LIBRARY_DIRS}) + +add_custom_command(OUTPUT marshall.c + COMMAND ${GLIB_GENMARSHAL} --body --prefix=fcitx_marshall ${PROJECT_SOURCE_DIR}/src/frontend/gtk-common/marshall.list > marshall.c +) +add_custom_command(OUTPUT marshall.h + COMMAND ${GLIB_GENMARSHAL} --header --prefix=fcitx_marshall ${PROJECT_SOURCE_DIR}/src/frontend/gtk-common/marshall.list > marshall.h +) + +set(FCITX_GTK3_IM_MODULE_SOURCES + ../gtk2/fcitxim.c + ../gtk2/fcitximcontext.c + ../gtk2/client.c + ${CMAKE_CURRENT_BINARY_DIR}/marshall.c + ${CMAKE_CURRENT_BINARY_DIR}/marshall.h +) + +add_library(im-fcitx-gtk3 MODULE ${FCITX_GTK3_IM_MODULE_SOURCES}) +set_target_properties( im-fcitx-gtk3 PROPERTIES PREFIX "" COMPILE_FLAGS "-fvisibility=hidden" OUTPUT_NAME "im-fcitx" LINK_FLAGS "-Wl,--no-undefined") + +target_link_libraries( im-fcitx-gtk3 ${GTK3_LIBRARIES} ${DBUS_GLIB_LIBRARIES} fcitx-utils) + +install(TARGETS im-fcitx-gtk3 DESTINATION ${GTK3_IM_MODULEDIR}) + +endif(ENABLE_GTK3_IM_MODULE) + diff -Nru fcitx-4.0.1/src/frontend/gtk-common/marshall.list fcitx-4.1.1/src/frontend/gtk-common/marshall.list --- fcitx-4.0.1/src/frontend/gtk-common/marshall.list 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/frontend/gtk-common/marshall.list 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,3 @@ +VOID:UINT,UINT,INT +VOID:STRING,STRING,STRING +VOID:STRING,INT diff -Nru fcitx-4.0.1/src/frontend/ipc/CMakeLists.txt fcitx-4.1.1/src/frontend/ipc/CMakeLists.txt --- fcitx-4.0.1/src/frontend/ipc/CMakeLists.txt 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/frontend/ipc/CMakeLists.txt 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,13 @@ +include_directories(${PROJECT_SOURCE_DIR}/src) +include_directories(${DBUS_INCLUDE_DIRS}) +link_directories(${DBUS_LIBRARY_DIRS}) + +set(fcitx_ipc_SOURCES + ipc.c +) + +fcitx_add_addon(fcitx-ipc ${fcitx_ipc_SOURCES}) +target_link_libraries( fcitx-ipc ${DBUS_LIBRARIES} ) +fcitx_add_addon_header(ipc ipc.h) +fcitx_add_addon_conf_file(fcitx-ipc.conf) + diff -Nru fcitx-4.0.1/src/frontend/ipc/fcitx-ipc.conf.in fcitx-4.1.1/src/frontend/ipc/fcitx-ipc.conf.in --- fcitx-4.0.1/src/frontend/ipc/fcitx-ipc.conf.in 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/frontend/ipc/fcitx-ipc.conf.in 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,9 @@ +[Addon] +Name=fcitx-ipc +_GeneralName=Fcitx DBus Frontend +_Comment=Frontend Used by IM Modules +Category=Frontend +Enabled=True +Library=fcitx-ipc.so +Type=SharedLibrary +Dependency=fcitx-dbus \ No newline at end of file diff -Nru fcitx-4.0.1/src/frontend/ipc/ipc.c fcitx-4.1.1/src/frontend/ipc/ipc.c --- fcitx-4.0.1/src/frontend/ipc/ipc.c 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/frontend/ipc/ipc.c 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,672 @@ +/*************************************************************************** + * Copyright (C) 2010~2011 by CSSlayer * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +#include +#include + +#include "fcitx/fcitx.h" +#include "fcitx/frontend.h" +#include "fcitx-utils/utils.h" +#include "module/dbus/dbusstuff.h" +#include "fcitx/instance.h" +#include "fcitx/module.h" +#include "fcitx-utils/log.h" +#include "fcitx/configfile.h" +#include "fcitx/hook.h" +#include "ipc.h" + +#define GetIPCIC(ic) ((FcitxIPCIC*) (ic)->privateic) + +typedef struct _FcitxIPCIC { + int id; + char path[32]; +} FcitxIPCIC; + +typedef struct _FcitxIPCFrontend { + int frontendid; + int maxid; + DBusConnection* conn; + FcitxInstance* owner; +} FcitxIPCFrontend; + +static void* IPCCreate(FcitxInstance* instance, int frontendid); +static boolean IPCDestroy(void* arg); +void IPCCreateIC (void* arg, FcitxInputContext* context, void *priv); +boolean IPCCheckIC (void* arg, FcitxInputContext* context, void* priv); +void IPCDestroyIC (void* arg, FcitxInputContext* context); +static void IPCEnableIM(void* arg, FcitxInputContext* ic); +static void IPCCloseIM(void* arg, FcitxInputContext* ic); +static void IPCCommitString(void* arg, FcitxInputContext* ic, char* str); +static void IPCForwardKey(void* arg, FcitxInputContext* ic, FcitxKeyEventType event, FcitxKeySym sym, unsigned int state); +static void IPCSetWindowOffset(void* arg, FcitxInputContext* ic, int x, int y); +static void IPCGetWindowPosition(void* arg, FcitxInputContext* ic, int* x, int* y); +static void IPCUpdatePreedit(void* arg, FcitxInputContext* ic); +static void IPCUpdateClientSideUI(void* arg, FcitxInputContext* ic); +static DBusHandlerResult IPCDBusEventHandler (DBusConnection *connection, DBusMessage *message, void *user_data); +static DBusHandlerResult IPCICDBusEventHandler (DBusConnection *connection, DBusMessage *msg, void *user_data); +static void IPCICFocusIn(FcitxIPCFrontend* ipc, FcitxInputContext* ic); +static void IPCICFocusOut(FcitxIPCFrontend* ipc, FcitxInputContext* ic); +static void IPCICReset(FcitxIPCFrontend* ipc, FcitxInputContext* ic); +static void IPCICSetCursorLocation(FcitxIPCFrontend* ipc, FcitxInputContext* ic, int x, int y); +static int IPCProcessKey(FcitxIPCFrontend* ipc, FcitxInputContext* callic, uint32_t originsym, uint32_t keycode, uint32_t originstate, uint32_t time, FcitxKeyEventType type); + +const char * im_introspection_xml = + "\n" + "\n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + "\n"; + +const char * ic_introspection_xml = + "\n" + "\n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + "\n"; + +FCITX_EXPORT_API +FcitxFrontend frontend = +{ + IPCCreate, + IPCDestroy, + IPCCreateIC, + IPCCheckIC, + IPCDestroyIC, + IPCEnableIM, + IPCCloseIM, + IPCCommitString, + IPCForwardKey, + IPCSetWindowOffset, + IPCGetWindowPosition, + IPCUpdatePreedit, + IPCUpdateClientSideUI, + NULL, + NULL, + NULL +}; + +void* IPCCreate(FcitxInstance* instance, int frontendid) +{ + FcitxIPCFrontend* ipc = fcitx_malloc0(sizeof(FcitxIPCFrontend)); + ipc->frontendid = frontendid; + ipc->owner = instance; + + FcitxModuleFunctionArg arg; + + ipc->conn = InvokeFunction(instance, FCITX_DBUS, GETCONNECTION, arg); + if (ipc->conn == NULL) + { + FcitxLog(ERROR, "DBus Not initialized"); + free(ipc); + return NULL; + } + + DBusObjectPathVTable fcitxIPCVTable = {NULL, &IPCDBusEventHandler, NULL, NULL, NULL, NULL }; + + if (!dbus_connection_register_object_path(ipc->conn, FCITX_IM_DBUS_PATH, + &fcitxIPCVTable, ipc)) + { + FcitxLog(ERROR, "No memory"); + free(ipc); + return NULL; + } + + return ipc; +} + +boolean IPCDestroy(void* arg) +{ + return true; +} + +void IPCCreateIC(void* arg, FcitxInputContext* context, void* priv) +{ + FcitxIPCFrontend* ipc = (FcitxIPCFrontend*) arg; + FcitxIPCIC* ipcic = (FcitxIPCIC*) fcitx_malloc0(sizeof(FcitxIPCIC)); + context->privateic = ipcic; + DBusMessage* message = (DBusMessage*) priv; + + DBusMessage *reply = dbus_message_new_method_return(message); + + ipcic->id = ipc->maxid; + ipc->maxid ++; + sprintf(ipcic->path, FCITX_IC_DBUS_PATH, ipcic->id); + + uint32_t arg1, arg2, arg3, arg4; + arg1 = ipc->owner->config->hkTrigger[0].sym; + arg2 = ipc->owner->config->hkTrigger[0].state; + arg3 = ipc->owner->config->hkTrigger[1].sym; + arg4 = ipc->owner->config->hkTrigger[1].state; + dbus_message_append_args(reply, + DBUS_TYPE_INT32, &ipcic->id, + DBUS_TYPE_UINT32, &arg1, + DBUS_TYPE_UINT32, &arg2, + DBUS_TYPE_UINT32, &arg3, + DBUS_TYPE_UINT32, &arg4, + DBUS_TYPE_INVALID); + dbus_connection_send (ipc->conn, reply, NULL); + dbus_message_unref (reply); + + DBusObjectPathVTable vtable = {NULL, &IPCICDBusEventHandler, NULL, NULL, NULL, NULL }; + if (!dbus_connection_register_object_path(ipc->conn, ipcic->path, &vtable, ipc)) + { + return ; + } + + dbus_connection_flush(ipc->conn); + +} + +boolean IPCCheckIC(void* arg, FcitxInputContext* context, void* priv) +{ + int *id = (int*) priv; + if (GetIPCIC(context)->id == *id) + return true; + return false; +} + +void IPCDestroyIC(void* arg, FcitxInputContext* context) +{ + FcitxIPCFrontend* ipc = (FcitxIPCFrontend*) arg; + + dbus_connection_unregister_object_path(ipc->conn, GetIPCIC(context)->path); + free(context->privateic); + context->privateic = NULL; +} + +void IPCEnableIM(void* arg, FcitxInputContext* ic) +{ + FcitxIPCFrontend* ipc = (FcitxIPCFrontend*) arg; + dbus_uint32_t serial = 0; // unique number to associate replies with requests + DBusMessage* msg = dbus_message_new_signal(GetIPCIC(ic)->path, // object name of the signal + FCITX_IC_DBUS_INTERFACE, // interface name of the signal + "EnableIM"); // name of the signal + + if (!dbus_connection_send(ipc->conn, msg, &serial)) { + FcitxLog(DEBUG, "Out Of Memory!"); + } + dbus_connection_flush(ipc->conn); + dbus_message_unref(msg); +} + +void IPCCloseIM(void* arg, FcitxInputContext* ic) +{ + FcitxIPCFrontend* ipc = (FcitxIPCFrontend*) arg; + dbus_uint32_t serial = 0; // unique number to associate replies with requests + DBusMessage* msg = dbus_message_new_signal(GetIPCIC(ic)->path, // object name of the signal + FCITX_IC_DBUS_INTERFACE, // interface name of the signal + "CloseIM"); // name of the signal + + if (!dbus_connection_send(ipc->conn, msg, &serial)) { + FcitxLog(DEBUG, "Out Of Memory!"); + } + dbus_connection_flush(ipc->conn); + dbus_message_unref(msg); +} + +void IPCCommitString(void* arg, FcitxInputContext* ic, char* str) +{ + FcitxIPCFrontend* ipc = (FcitxIPCFrontend*) arg; + dbus_uint32_t serial = 0; // unique number to associate replies with requests + DBusMessage* msg = dbus_message_new_signal(GetIPCIC(ic)->path, // object name of the signal + FCITX_IC_DBUS_INTERFACE, // interface name of the signal + "CommitString"); // name of the signal + + dbus_message_append_args(msg, DBUS_TYPE_STRING, &str, DBUS_TYPE_INVALID); + + if (!dbus_connection_send(ipc->conn, msg, &serial)) { + FcitxLog(DEBUG, "Out Of Memory!"); + } + dbus_connection_flush(ipc->conn); + dbus_message_unref(msg); +} + +void IPCForwardKey(void* arg, FcitxInputContext* ic, FcitxKeyEventType event, FcitxKeySym sym, unsigned int state) +{ + FcitxIPCFrontend* ipc = (FcitxIPCFrontend*) arg; + dbus_uint32_t serial = 0; // unique number to associate replies with requests + DBusMessage* msg = dbus_message_new_signal(GetIPCIC(ic)->path, // object name of the signal + FCITX_IC_DBUS_INTERFACE, // interface name of the signal + "ForwardKey"); // name of the signal + + uint32_t keyval = (uint32_t) sym; + uint32_t keystate = (uint32_t) state; + int32_t type = (int) event; + dbus_message_append_args(msg, DBUS_TYPE_UINT32, &keyval, DBUS_TYPE_UINT32, &keystate, DBUS_TYPE_INT32, &type, DBUS_TYPE_INVALID); + + if (!dbus_connection_send(ipc->conn, msg, &serial)) { + FcitxLog(DEBUG, "Out Of Memory!"); + } + dbus_connection_flush(ipc->conn); + dbus_message_unref(msg); +} + +void IPCSetWindowOffset(void* arg, FcitxInputContext* ic, int x, int y) +{ + ic->offset_x = x; + ic->offset_y = y; +} + +void IPCGetWindowPosition(void* arg, FcitxInputContext* ic, int* x, int* y) +{ + *x= ic->offset_x; + *y= ic->offset_y; +} + + +static DBusHandlerResult IPCDBusEventHandler (DBusConnection *connection, DBusMessage *msg, void *user_data) +{ + FcitxIPCFrontend* ipc = (FcitxIPCFrontend*) user_data; + if (dbus_message_is_method_call(msg, DBUS_INTERFACE_INTROSPECTABLE, "Introspect")) + { + DBusMessage *reply = dbus_message_new_method_return(msg); + + dbus_message_append_args(reply, DBUS_TYPE_STRING, &im_introspection_xml, DBUS_TYPE_INVALID); + dbus_connection_send (ipc->conn, reply, NULL); + dbus_message_unref (reply); + return DBUS_HANDLER_RESULT_HANDLED; + } + else if (dbus_message_is_method_call(msg, FCITX_IM_DBUS_INTERFACE, "CreateIC")) + { + CreateIC(ipc->owner, ipc->frontendid, msg); + return DBUS_HANDLER_RESULT_HANDLED; + } + return DBUS_HANDLER_RESULT_NOT_YET_HANDLED; +} + + +static DBusHandlerResult IPCICDBusEventHandler (DBusConnection *connection, DBusMessage *msg, void *user_data) +{ + FcitxIPCFrontend* ipc = (FcitxIPCFrontend*) user_data; + int id; + sscanf(dbus_message_get_path(msg), FCITX_IC_DBUS_PATH, &id); + FcitxInputContext* ic = FindIC(ipc->owner, ipc->frontendid, &id); + DBusHandlerResult result = DBUS_HANDLER_RESULT_NOT_YET_HANDLED; + + if (dbus_message_is_method_call(msg, DBUS_INTERFACE_INTROSPECTABLE, "Introspect")) + { + DBusMessage *reply = dbus_message_new_method_return(msg); + + dbus_message_append_args(reply, DBUS_TYPE_STRING, &ic_introspection_xml, DBUS_TYPE_INVALID); + dbus_connection_send (ipc->conn, reply, NULL); + dbus_message_unref (reply); + result = DBUS_HANDLER_RESULT_HANDLED; + } + + if (result == DBUS_HANDLER_RESULT_NOT_YET_HANDLED && ic) + { + DBusError error; + dbus_error_init(&error); + if (dbus_message_is_method_call(msg, FCITX_IC_DBUS_INTERFACE, "EnableIC")) + { + EnableIM(ipc->owner, ic, false); + DBusMessage *reply = dbus_message_new_method_return(msg); + dbus_connection_send (ipc->conn, reply, NULL); + dbus_message_unref (reply); + result = DBUS_HANDLER_RESULT_HANDLED; + } + else if (dbus_message_is_method_call(msg, FCITX_IC_DBUS_INTERFACE, "CloseIC")) + { + CloseIM(ipc->owner, ic); + DBusMessage *reply = dbus_message_new_method_return(msg); + dbus_connection_send (ipc->conn, reply, NULL); + dbus_message_unref (reply); + result = DBUS_HANDLER_RESULT_HANDLED; + } + else if (dbus_message_is_method_call(msg, FCITX_IC_DBUS_INTERFACE, "FocusIn")) + { + IPCICFocusIn(ipc, ic); + DBusMessage *reply = dbus_message_new_method_return(msg); + dbus_connection_send (ipc->conn, reply, NULL); + dbus_message_unref (reply); + result = DBUS_HANDLER_RESULT_HANDLED; + } + else if (dbus_message_is_method_call(msg, FCITX_IC_DBUS_INTERFACE, "FocusOut")) + { + IPCICFocusOut(ipc, ic); + DBusMessage *reply = dbus_message_new_method_return(msg); + dbus_connection_send (ipc->conn, reply, NULL); + dbus_message_unref (reply); + result = DBUS_HANDLER_RESULT_HANDLED; + } + else if (dbus_message_is_method_call(msg, FCITX_IC_DBUS_INTERFACE, "Reset")) + { + IPCICReset(ipc, ic); + DBusMessage *reply = dbus_message_new_method_return(msg); + dbus_connection_send (ipc->conn, reply, NULL); + dbus_message_unref (reply); + result = DBUS_HANDLER_RESULT_HANDLED; + } + else if (dbus_message_is_method_call(msg, FCITX_IC_DBUS_INTERFACE, "SetCursorLocation")) + { + int x, y; + if (dbus_message_get_args(msg, &error, DBUS_TYPE_INT32, &x, DBUS_TYPE_INT32, &y, DBUS_TYPE_INVALID)) + { + IPCICSetCursorLocation(ipc, ic, x, y); + DBusMessage *reply = dbus_message_new_method_return(msg); + dbus_connection_send (ipc->conn, reply, NULL); + dbus_message_unref (reply); + } + result = DBUS_HANDLER_RESULT_HANDLED; + } + else if (dbus_message_is_method_call(msg, FCITX_IC_DBUS_INTERFACE, "SetCapacity")) + { + uint32_t flags; + if (dbus_message_get_args(msg, &error, DBUS_TYPE_UINT32, &flags, DBUS_TYPE_INVALID)) + { + ic->contextCaps = flags; + DBusMessage *reply = dbus_message_new_method_return(msg); + dbus_connection_send (ipc->conn, reply, NULL); + dbus_message_unref (reply); + } + result = DBUS_HANDLER_RESULT_HANDLED; + } + else if (dbus_message_is_method_call(msg, FCITX_IC_DBUS_INTERFACE, "DestroyIC")) + { + DestroyIC(ipc->owner, ipc->frontendid, &id); + DBusMessage *reply = dbus_message_new_method_return(msg); + dbus_connection_send (ipc->conn, reply, NULL); + dbus_message_unref (reply); + result = DBUS_HANDLER_RESULT_HANDLED; + } + else if (dbus_message_is_method_call(msg, FCITX_IC_DBUS_INTERFACE, "ProcessKeyEvent")) + { + uint32_t keyval, keycode, state, t; + int ret, itype; + FcitxKeyEventType type; + if (dbus_message_get_args(msg, &error, + DBUS_TYPE_UINT32, &keyval, + DBUS_TYPE_UINT32, &keycode, + DBUS_TYPE_UINT32, &state, + DBUS_TYPE_INT32, &itype, + DBUS_TYPE_UINT32, &t, + DBUS_TYPE_INVALID)) + { + type = itype; + ret = IPCProcessKey(ipc, ic, keyval, keycode, state, t, type); + + DBusMessage *reply = dbus_message_new_method_return(msg); + + dbus_message_append_args(reply, DBUS_TYPE_INT32, &ret, DBUS_TYPE_INVALID); + dbus_connection_send (ipc->conn, reply, NULL); + dbus_message_unref (reply); + dbus_connection_flush(ipc->conn); + } + + result = DBUS_HANDLER_RESULT_HANDLED; + } + dbus_error_free(&error); + } + return result; +} + +static int IPCProcessKey(FcitxIPCFrontend* ipc, FcitxInputContext* callic, uint32_t originsym, uint32_t keycode, uint32_t originstate, uint32_t t, FcitxKeyEventType type) +{ + FcitxInputContext* ic = GetCurrentIC(ipc->owner); + + if (ic == NULL) { + SetCurrentIC(ipc->owner, callic); + } + ic = callic; + FcitxKeySym sym; + unsigned int state; + + originstate = originstate - (originstate & KEY_NUMLOCK) - (originstate & KEY_CAPSLOCK) - (originstate & KEY_SCROLLLOCK); + originstate &= KEY_USED_MASK; + GetKey(originsym, originstate, &sym, &state); + FcitxLog(DEBUG, + "KeyRelease=%d state=%d KEYCODE=%d KEYSYM=%u ", + (type == FCITX_RELEASE_KEY), state, keycode, sym); + + if (originsym == 0) + return 0; + + if (ic->state == IS_CLOSED && type == FCITX_PRESS_KEY && IsHotKey(sym, state, ipc->owner->config->hkTrigger)) + { + EnableIM(ipc->owner, ic, false); + ipc->owner->input.keyReleased = KR_OTHER; + return 1; + } + + INPUT_RETURN_VALUE retVal = ProcessKey(ipc->owner, type, + t, + sym, state); + + if (retVal & IRV_FLAG_FORWARD_KEY || retVal == IRV_TO_PROCESS) + return 0; + else + return 1; +} + +static void IPCICFocusIn(FcitxIPCFrontend* ipc, FcitxInputContext* ic) +{ + if (ic == NULL) + return; + + if (!SetCurrentIC(ipc->owner, ic)) + return; + + if (ic) + { + OnInputFocus(ipc->owner); + } + else + { + CloseInputWindow(ipc->owner); + MoveInputWindow(ipc->owner); + } + + return; +} + +static void IPCICFocusOut(FcitxIPCFrontend* ipc, FcitxInputContext* ic) +{ + FcitxInputContext* currentic = GetCurrentIC(ipc->owner); + if (ic && ic == currentic) + { + SetCurrentIC(ipc->owner, NULL); + CloseInputWindow(ipc->owner); + OnInputUnFocus(ipc->owner); + } + + return; +} + +static void IPCICReset(FcitxIPCFrontend* ipc, FcitxInputContext* ic) +{ + FcitxInputContext* currentic = GetCurrentIC(ipc->owner); + if (ic && ic == currentic) + { + CloseInputWindow(ipc->owner); + ResetInput(ipc->owner); + } + + return; +} + +static void IPCICSetCursorLocation(FcitxIPCFrontend* ipc, FcitxInputContext* ic, int x, int y) +{ + ic->offset_x = x; + ic->offset_y = y; + MoveInputWindow(ipc->owner); + + return; +} + +void IPCUpdatePreedit(void* arg, FcitxInputContext* ic) +{ + FcitxIPCFrontend* ipc = (FcitxIPCFrontend*) arg; + dbus_uint32_t serial = 0; // unique number to associate replies with requests + DBusMessage* msg = dbus_message_new_signal(GetIPCIC(ic)->path, // object name of the signal + FCITX_IC_DBUS_INTERFACE, // interface name of the signal + "UpdatePreedit"); // name of the signal + + char* strPreedit = MessagesToCString(ipc->owner->input.msgPreedit); + char* str = ProcessOutputFilter(ipc->owner, strPreedit); + if (str) + { + free(strPreedit); + strPreedit = str; + } + + dbus_message_append_args(msg, DBUS_TYPE_STRING, &strPreedit, DBUS_TYPE_INT32, &ipc->owner->input.iCursorPos, DBUS_TYPE_INVALID); + + if (!dbus_connection_send(ipc->conn, msg, &serial)) { + FcitxLog(DEBUG, "Out Of Memory!"); + } + dbus_connection_flush(ipc->conn); + dbus_message_unref(msg); + free(strPreedit); +} + +void IPCUpdateClientSideUI(void* arg, FcitxInputContext* ic) +{ + FcitxIPCFrontend* ipc = (FcitxIPCFrontend*) arg; + dbus_uint32_t serial = 0; // unique number to associate replies with requests + DBusMessage* msg = dbus_message_new_signal(GetIPCIC(ic)->path, // object name of the signal + FCITX_IC_DBUS_INTERFACE, // interface name of the signal + "UpdateClientSideUI"); // name of the signal + + char *str; + char* strAuxUp = MessagesToCString(ipc->owner->input.msgAuxUp); + str = ProcessOutputFilter(ipc->owner, strAuxUp); + if (str) + { + free(strAuxUp); + strAuxUp = str; + } + char* strAuxDown = MessagesToCString(ipc->owner->input.msgAuxDown); + str = ProcessOutputFilter(ipc->owner, strAuxDown); + if (str) + { + free(strAuxDown); + strAuxDown = str; + } + char* strPreedit = MessagesToCString(ipc->owner->input.msgPreedit); + str = ProcessOutputFilter(ipc->owner, strPreedit); + if (str) + { + free(strPreedit); + strPreedit = str; + } + char* candidateword = CandidateWordToCString(ipc->owner); + str = ProcessOutputFilter(ipc->owner, candidateword); + if (str) + { + free(candidateword); + candidateword = str; + } + FcitxIM* im = GetCurrentIM(ipc->owner); + char* imname = NULL; + if (im == NULL) + imname = "En"; + else + imname = im->strName; + + dbus_message_append_args(msg, + DBUS_TYPE_STRING, &strAuxUp, + DBUS_TYPE_STRING, &strAuxDown, + DBUS_TYPE_STRING, &strPreedit, + DBUS_TYPE_STRING, &candidateword, + DBUS_TYPE_STRING, &imname, + DBUS_TYPE_INT32, &ipc->owner->input.iCursorPos, + DBUS_TYPE_INVALID); + + if (!dbus_connection_send(ipc->conn, msg, &serial)) { + FcitxLog(DEBUG, "Out Of Memory!"); + } + dbus_connection_flush(ipc->conn); + dbus_message_unref(msg); + free(strAuxUp); + free(strAuxDown); + free(strPreedit); + free(candidateword); +} + +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/frontend/ipc/ipc.h fcitx-4.1.1/src/frontend/ipc/ipc.h --- fcitx-4.0.1/src/frontend/ipc/ipc.h 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/frontend/ipc/ipc.h 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,39 @@ +/*************************************************************************** + * Copyright (C) 2010~2011 by CSSlayer * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +#ifndef FCITX_IPC_H +#define FCITX_IPC_H + +#ifdef __cplusplus +extern "C" { +#endif + +#define FCITX_IM_DBUS_PATH "/inputmethod" +#define FCITX_IC_DBUS_PATH "/inputcontext_%d" +#define FCITX_IC_DBUS_PATH_QSTRING "/inputcontext_%1" + +#define FCITX_IM_DBUS_INTERFACE "org.fcitx.Fcitx.InputMethod" +#define FCITX_IC_DBUS_INTERFACE "org.fcitx.Fcitx.InputContext" + +#ifdef __cplusplus +} +#endif + +#endif // FCITX_IPC_H +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/frontend/qt/CMakeLists.txt fcitx-4.1.1/src/frontend/qt/CMakeLists.txt --- fcitx-4.0.1/src/frontend/qt/CMakeLists.txt 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/frontend/qt/CMakeLists.txt 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,82 @@ +if (ENABLE_QT_IM_MODULE) +find_package(Qt4 4.5 COMPONENTS QtCore QtGui QtDBus REQUIRED) +find_package(ICU REQUIRED) + +include_directories( + ${QT_INCLUDE_DIR} + ${QT_QTCORE_INCLUDE_DIR} + ${QT_QTGUI_INCLUDE_DIR} + ${QT_QTDBUS_INCLUDE_DIR} + ${X11_INCLUDE_DIRS} + ${DBUS_INCLUDE_DIRS} + ${ICU_INCLUDE_DIRS} + ${CMAKE_CURRENT_BINARY_DIR} +) + +link_directories( + ${X11_LIBRARY_DIRS} + ${DBUS_LIBRARY_DIRS} +) + +set( + qtim_fcitx_SRCS + fcitx-plugin.cpp + fcitx-input-context.cpp + fcitxkeyuni.cpp +) + + +QT4_ADD_DBUS_INTERFACE(qtim_fcitx_SRCS + org.fcitx.Fcitx.InputContext.xml + org.fcitx.Fcitx.InputContext +) + +QT4_ADD_DBUS_INTERFACE(qtim_fcitx_SRCS + org.fcitx.Fcitx.InputMethod.xml + org.fcitx.Fcitx.InputMethod +) + +QT4_ADD_DBUS_INTERFACE(qtim_fcitx_SRCS + org.freedesktop.DBus.xml + org.freedesktop.DBus +) + + +set( + qtim_fcitx_MOC_HDRS + fcitx-input-context.h +) + +QT4_AUTOMOC(${qtim_fcitx_SRCS}) +QT4_WRAP_CPP( + qtim_fcitx_MOC_SRCS + ${qtim_fcitx_MOC_HDRS} +) + +add_library( + qtim-fcitx MODULE + ${qtim_fcitx_SRCS} + ${qtim_fcitx_MOC_SRCS} +) + +set_target_properties( qtim-fcitx PROPERTIES PREFIX "" COMPILE_FLAGS "-fvisibility=hidden" LINK_FLAGS "-Wl,--no-undefined") + +target_link_libraries( + qtim-fcitx + debug ${QT_QTCORE_LIBRARY_DEBUG} + debug ${QT_QTDBUS_LIBRARY_DEBUG} + debug ${QT_QTGUI_LIBRARY_DEBUG} + optimized ${QT_QTCORE_LIBRARY_RELEASE} + optimized ${QT_QTDBUS_LIBRARY_RELEASE} + optimized ${QT_QTGUI_LIBRARY_RELEASE} + ${X11_LIBRARIES} + ${ICU_LIBRARIES} + fcitx-config +) + +install( + TARGETS qtim-fcitx + LIBRARY DESTINATION + ${QT_PLUGINS_DIR}/inputmethods) + +endif (ENABLE_QT_IM_MODULE) \ No newline at end of file diff -Nru fcitx-4.0.1/src/frontend/qt/fcitx-compose-data.h fcitx-4.1.1/src/frontend/qt/fcitx-compose-data.h --- fcitx-4.0.1/src/frontend/qt/fcitx-compose-data.h 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/frontend/qt/fcitx-compose-data.h 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,4450 @@ +/* vim:set noet ts=4: */ +/* + * ibus - The Input Bus + * + * Copyright (c) 2007-2008 Huang Peng + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this program; if not, write to the + * Free Software Foundation, Inc., 59 Temple Place, Suite 330, + * Boston, MA 02111-1307 USA + */ +#ifndef __Key_COMPOSE_DATA_H_ +#define __Key_COMPOSE_DATA_H_ + +static const quint32 fcitx_compose_seqs_compact[] = { + Key_dead_stroke, 138, 226, 235, 235, 235, + Key_Greek_accentdieresis, 235, 239, 239, 239, 239, + Key_dead_grave, 239, 299, 386, 598, 598, + Key_dead_acute, 598, 664, 760, 1036, 1036, + Key_dead_circumflex, 1036, 1176, 1176, 1376, 1376, + Key_dead_tilde, 1376, 1458, 1521, 1661, 1661, + Key_dead_macron, 1661, 1707, 1707, 1779, 1779, + Key_dead_breve, 1779, 1833, 1833, 1857, 1857, + Key_dead_abovedot, 1857, 1887, 1890, 1922, 1922, + Key_dead_diaeresis, 1922, 2010, 2019, 2043, 2043, + Key_dead_abovering, 2043, 2053, 2053, 2053, 2053, + Key_dead_doubleacute, 2053, 2063, 2063, 2063, 2063, + Key_dead_caron, 2063, 2089, 2089, 2097, 2097, + Key_dead_cedilla, 2097, 2111, 2111, 2111, 2111, + Key_dead_ogonek, 2111, 2121, 2121, 2121, 2121, + Key_dead_iota, 2121, 2143, 2242, 2674, 3334, + Key_dead_voiced_sound, 3334, 3380, 3380, 3380, 3380, + Key_dead_semivoiced_sound, 3380, 3390, 3390, 3390, 3390, + Key_dead_belowdot, 3390, 3400, 3400, 3416, 3416, + Key_dead_hook, 3416, 3494, 3494, 3550, 3550, + Key_dead_psili, 3550, 3578, 3578, 3578, 3578, + Key_dead_dasia, 3578, 3610, 3610, 3610, 3610, + Key_Multi_key, 3610, 3610, 9589, 13297, 15157, + Key_space, 0x002F, + Key_2, 0x01BB, + Key_A, 0x023A, + Key_B, 0x0243, + Key_C, 0x023B, + Key_D, 0x0110, + Key_E, 0x0246, + Key_G, 0x01E4, + Key_H, 0x0126, + Key_I, 0x0197, + Key_J, 0x0248, + Key_L, 0x0141, + Key_O, 0x00D8, + Key_P, 0x2C63, + Key_R, 0x024C, + Key_T, 0x0166, + Key_U, 0x0244, + Key_Y, 0x024E, + Key_Z, 0x01B5, + Key_a, 0x2C65, + Key_b, 0x0180, + Key_c, 0x023C, + Key_d, 0x0111, + Key_e, 0x0247, + Key_g, 0x01E5, + Key_h, 0x0127, + Key_i, 0x0268, + Key_j, 0x0249, + Key_l, 0x0142, + Key_o, 0x00F8, + Key_p, 0x1D7D, + Key_r, 0x024D, + Key_t, 0x0167, + Key_u, 0x0289, + Key_y, 0x024F, + Key_z, 0x01B6, + Key_nobreakspace, 0x0338, + Key_Oacute, 0x01FE, + Key_oacute, 0x01FF, + 0x0237, 0x025F, + 0x0269, 0x1D7C, + Key_dead_stroke, 0x002F, + Key_lessthanequal, 0x2270, + Key_greaterthanequal, 0x2271, + Key_dead_acute, Key_O, 0x01FE, + Key_dead_acute, Key_o, 0x01FF, + Key_dead_abovedot, Key_j, 0x025F, + Key_Greek_iota, 0x0390, + Key_Greek_upsilon, 0x03B0, + Key_space, 0x0060, + Key_V, 0x01DB, + Key_v, 0x01DC, + Key_Abreve, 0x1EB0, + Key_abreve, 0x1EB1, + Key_Emacron, 0x1E14, + Key_emacron, 0x1E15, + Key_Omacron, 0x1E50, + Key_omacron, 0x1E51, + Key_Cyrillic_ie, 0x0450, + Key_Cyrillic_i, 0x045D, + Key_Cyrillic_IE, 0x0400, + Key_Cyrillic_I, 0x040D, + Key_Greek_iotadieresis, 0x1FD2, + Key_Greek_upsilondieresis, 0x1FE2, + Key_Greek_ALPHA, 0x1FBA, + Key_Greek_EPSILON, 0x1FC8, + Key_Greek_ETA, 0x1FCA, + Key_Greek_IOTA, 0x1FDA, + Key_Greek_OMICRON, 0x1FF8, + Key_Greek_UPSILON, 0x1FEA, + Key_Greek_OMEGA, 0x1FFA, + Key_Greek_alpha, 0x1F70, + Key_Greek_epsilon, 0x1F72, + Key_Greek_eta, 0x1F74, + Key_Greek_iota, 0x1F76, + Key_Greek_omicron, 0x1F78, + Key_Greek_upsilon, 0x1F7A, + Key_Greek_omega, 0x1F7C, + Key_dead_grave, 0x0060, + Key_dead_diaeresis, Key_Greek_iota, 0x1FD2, + Key_dead_diaeresis, Key_Greek_upsilon, 0x1FE2, + Key_dead_psili, Key_Greek_ALPHA, 0x1F0A, + Key_dead_psili, Key_Greek_EPSILON, 0x1F1A, + Key_dead_psili, Key_Greek_ETA, 0x1F2A, + Key_dead_psili, Key_Greek_IOTA, 0x1F3A, + Key_dead_psili, Key_Greek_OMICRON, 0x1F4A, + Key_dead_psili, Key_Greek_OMEGA, 0x1F6A, + Key_dead_psili, Key_Greek_alpha, 0x1F02, + Key_dead_psili, Key_Greek_epsilon, 0x1F12, + Key_dead_psili, Key_Greek_eta, 0x1F22, + Key_dead_psili, Key_Greek_iota, 0x1F32, + Key_dead_psili, Key_Greek_omicron, 0x1F42, + Key_dead_psili, Key_Greek_upsilon, 0x1F52, + Key_dead_psili, Key_Greek_omega, 0x1F62, + Key_dead_dasia, Key_Greek_ALPHA, 0x1F0B, + Key_dead_dasia, Key_Greek_EPSILON, 0x1F1B, + Key_dead_dasia, Key_Greek_ETA, 0x1F2B, + Key_dead_dasia, Key_Greek_IOTA, 0x1F3B, + Key_dead_dasia, Key_Greek_OMICRON, 0x1F4B, + Key_dead_dasia, Key_Greek_UPSILON, 0x1F5B, + Key_dead_dasia, Key_Greek_OMEGA, 0x1F6B, + Key_dead_dasia, Key_Greek_alpha, 0x1F03, + Key_dead_dasia, Key_Greek_epsilon, 0x1F13, + Key_dead_dasia, Key_Greek_eta, 0x1F23, + Key_dead_dasia, Key_Greek_iota, 0x1F33, + Key_dead_dasia, Key_Greek_omicron, 0x1F43, + Key_dead_dasia, Key_Greek_upsilon, 0x1F53, + Key_dead_dasia, Key_Greek_omega, 0x1F63, + Key_Multi_key, Key_quotedbl, Key_U, 0x01DB, + Key_Multi_key, Key_quotedbl, Key_u, 0x01DC, + Key_Multi_key, Key_quotedbl, Key_Greek_iota, 0x1FD2, + Key_Multi_key, Key_quotedbl, Key_Greek_upsilon, 0x1FE2, + Key_Multi_key, Key_parenleft, Key_Greek_ALPHA, 0x1F0B, + Key_Multi_key, Key_parenleft, Key_Greek_EPSILON, 0x1F1B, + Key_Multi_key, Key_parenleft, Key_Greek_ETA, 0x1F2B, + Key_Multi_key, Key_parenleft, Key_Greek_IOTA, 0x1F3B, + Key_Multi_key, Key_parenleft, Key_Greek_OMICRON, 0x1F4B, + Key_Multi_key, Key_parenleft, Key_Greek_UPSILON, 0x1F5B, + Key_Multi_key, Key_parenleft, Key_Greek_OMEGA, 0x1F6B, + Key_Multi_key, Key_parenleft, Key_Greek_alpha, 0x1F03, + Key_Multi_key, Key_parenleft, Key_Greek_epsilon, 0x1F13, + Key_Multi_key, Key_parenleft, Key_Greek_eta, 0x1F23, + Key_Multi_key, Key_parenleft, Key_Greek_iota, 0x1F33, + Key_Multi_key, Key_parenleft, Key_Greek_omicron, 0x1F43, + Key_Multi_key, Key_parenleft, Key_Greek_upsilon, 0x1F53, + Key_Multi_key, Key_parenleft, Key_Greek_omega, 0x1F63, + Key_Multi_key, Key_parenright, Key_Greek_ALPHA, 0x1F0A, + Key_Multi_key, Key_parenright, Key_Greek_EPSILON, 0x1F1A, + Key_Multi_key, Key_parenright, Key_Greek_ETA, 0x1F2A, + Key_Multi_key, Key_parenright, Key_Greek_IOTA, 0x1F3A, + Key_Multi_key, Key_parenright, Key_Greek_OMICRON, 0x1F4A, + Key_Multi_key, Key_parenright, Key_Greek_OMEGA, 0x1F6A, + Key_Multi_key, Key_parenright, Key_Greek_alpha, 0x1F02, + Key_Multi_key, Key_parenright, Key_Greek_epsilon, 0x1F12, + Key_Multi_key, Key_parenright, Key_Greek_eta, 0x1F22, + Key_Multi_key, Key_parenright, Key_Greek_iota, 0x1F32, + Key_Multi_key, Key_parenright, Key_Greek_omicron, 0x1F42, + Key_Multi_key, Key_parenright, Key_Greek_upsilon, 0x1F52, + Key_Multi_key, Key_parenright, Key_Greek_omega, 0x1F62, + Key_Multi_key, Key_plus, Key_O, 0x1EDC, + Key_Multi_key, Key_plus, Key_U, 0x1EEA, + Key_Multi_key, Key_plus, Key_o, 0x1EDD, + Key_Multi_key, Key_plus, Key_u, 0x1EEB, + Key_Multi_key, Key_U, Key_A, 0x1EB0, + Key_Multi_key, Key_U, Key_a, 0x1EB1, + Key_Multi_key, Key_asciicircum, Key_A, 0x1EA6, + Key_Multi_key, Key_asciicircum, Key_E, 0x1EC0, + Key_Multi_key, Key_asciicircum, Key_O, 0x1ED2, + Key_Multi_key, Key_asciicircum, Key_a, 0x1EA7, + Key_Multi_key, Key_asciicircum, Key_e, 0x1EC1, + Key_Multi_key, Key_asciicircum, Key_o, 0x1ED3, + Key_Multi_key, Key_underscore, Key_E, 0x1E14, + Key_Multi_key, Key_underscore, Key_O, 0x1E50, + Key_Multi_key, Key_underscore, Key_e, 0x1E15, + Key_Multi_key, Key_underscore, Key_o, 0x1E51, + Key_Multi_key, Key_b, Key_A, 0x1EB0, + Key_Multi_key, Key_b, Key_a, 0x1EB1, + Key_Multi_key, Key_macron, Key_E, 0x1E14, + Key_Multi_key, Key_macron, Key_O, 0x1E50, + Key_Multi_key, Key_macron, Key_e, 0x1E15, + Key_Multi_key, Key_macron, Key_o, 0x1E51, + Key_space, 0x0027, + Key_V, 0x01D7, + Key_v, 0x01D8, + Key_Abreve, 0x1EAE, + Key_abreve, 0x1EAF, + Key_Emacron, 0x1E16, + Key_emacron, 0x1E17, + Key_Utilde, 0x1E78, + Key_omacron, 0x1E53, + Key_utilde, 0x1E79, + Key_Cyrillic_ghe, 0x0453, + Key_Cyrillic_ka, 0x045C, + Key_Cyrillic_GHE, 0x0403, + Key_Cyrillic_KA, 0x040C, + Key_Greek_iotadieresis, 0x0390, + Key_Greek_upsilondieresis, 0x03B0, + Key_Greek_ALPHA, 0x0386, + Key_Greek_EPSILON, 0x0388, + Key_Greek_ETA, 0x0389, + Key_Greek_IOTA, 0x038A, + Key_Greek_OMICRON, 0x038C, + Key_Greek_UPSILON, 0x038E, + Key_Greek_OMEGA, 0x038F, + Key_Greek_alpha, 0x03AC, + Key_Greek_epsilon, 0x03AD, + Key_Greek_eta, 0x03AE, + Key_Greek_iota, 0x03AF, + Key_Greek_omicron, 0x03CC, + Key_Greek_upsilon, 0x03CD, + Key_Greek_omega, 0x03CE, + Key_Sabovedot, 0x1E64, + Key_sabovedot, 0x1E65, + Key_dead_acute, 0x00B4, + Key_dead_stroke, Key_O, 0x01FE, + Key_dead_stroke, Key_o, 0x01FF, + Key_dead_diaeresis, Key_space, 0x0385, + Key_dead_diaeresis, Key_Greek_iota, 0x0390, + Key_dead_diaeresis, Key_Greek_upsilon, 0x03B0, + Key_dead_psili, Key_Greek_ALPHA, 0x1F0C, + Key_dead_psili, Key_Greek_EPSILON, 0x1F1C, + Key_dead_psili, Key_Greek_ETA, 0x1F2C, + Key_dead_psili, Key_Greek_IOTA, 0x1F3C, + Key_dead_psili, Key_Greek_OMICRON, 0x1F4C, + Key_dead_psili, Key_Greek_OMEGA, 0x1F6C, + Key_dead_psili, Key_Greek_alpha, 0x1F04, + Key_dead_psili, Key_Greek_epsilon, 0x1F14, + Key_dead_psili, Key_Greek_eta, 0x1F24, + Key_dead_psili, Key_Greek_iota, 0x1F34, + Key_dead_psili, Key_Greek_omicron, 0x1F44, + Key_dead_psili, Key_Greek_upsilon, 0x1F54, + Key_dead_psili, Key_Greek_omega, 0x1F64, + Key_dead_dasia, Key_Greek_ALPHA, 0x1F0D, + Key_dead_dasia, Key_Greek_EPSILON, 0x1F1D, + Key_dead_dasia, Key_Greek_ETA, 0x1F2D, + Key_dead_dasia, Key_Greek_IOTA, 0x1F3D, + Key_dead_dasia, Key_Greek_OMICRON, 0x1F4D, + Key_dead_dasia, Key_Greek_UPSILON, 0x1F5D, + Key_dead_dasia, Key_Greek_OMEGA, 0x1F6D, + Key_dead_dasia, Key_Greek_alpha, 0x1F05, + Key_dead_dasia, Key_Greek_epsilon, 0x1F15, + Key_dead_dasia, Key_Greek_eta, 0x1F25, + Key_dead_dasia, Key_Greek_iota, 0x1F35, + Key_dead_dasia, Key_Greek_omicron, 0x1F45, + Key_dead_dasia, Key_Greek_upsilon, 0x1F55, + Key_dead_dasia, Key_Greek_omega, 0x1F65, + Key_Multi_key, Key_quotedbl, Key_I, 0x1E2E, + Key_Multi_key, Key_quotedbl, Key_U, 0x01D7, + Key_Multi_key, Key_quotedbl, Key_i, 0x1E2F, + Key_Multi_key, Key_quotedbl, Key_u, 0x01D8, + Key_Multi_key, Key_quotedbl, Key_Greek_iota, 0x0390, + Key_Multi_key, Key_quotedbl, Key_Greek_upsilon, 0x03B0, + Key_Multi_key, Key_parenleft, Key_Greek_ALPHA, 0x1F0D, + Key_Multi_key, Key_parenleft, Key_Greek_EPSILON, 0x1F1D, + Key_Multi_key, Key_parenleft, Key_Greek_ETA, 0x1F2D, + Key_Multi_key, Key_parenleft, Key_Greek_IOTA, 0x1F3D, + Key_Multi_key, Key_parenleft, Key_Greek_OMICRON, 0x1F4D, + Key_Multi_key, Key_parenleft, Key_Greek_UPSILON, 0x1F5D, + Key_Multi_key, Key_parenleft, Key_Greek_OMEGA, 0x1F6D, + Key_Multi_key, Key_parenleft, Key_Greek_alpha, 0x1F05, + Key_Multi_key, Key_parenleft, Key_Greek_epsilon, 0x1F15, + Key_Multi_key, Key_parenleft, Key_Greek_eta, 0x1F25, + Key_Multi_key, Key_parenleft, Key_Greek_iota, 0x1F35, + Key_Multi_key, Key_parenleft, Key_Greek_omicron, 0x1F45, + Key_Multi_key, Key_parenleft, Key_Greek_upsilon, 0x1F55, + Key_Multi_key, Key_parenleft, Key_Greek_omega, 0x1F65, + Key_Multi_key, Key_parenright, Key_Greek_ALPHA, 0x1F0C, + Key_Multi_key, Key_parenright, Key_Greek_EPSILON, 0x1F1C, + Key_Multi_key, Key_parenright, Key_Greek_ETA, 0x1F2C, + Key_Multi_key, Key_parenright, Key_Greek_IOTA, 0x1F3C, + Key_Multi_key, Key_parenright, Key_Greek_OMICRON, 0x1F4C, + Key_Multi_key, Key_parenright, Key_Greek_OMEGA, 0x1F6C, + Key_Multi_key, Key_parenright, Key_Greek_alpha, 0x1F04, + Key_Multi_key, Key_parenright, Key_Greek_epsilon, 0x1F14, + Key_Multi_key, Key_parenright, Key_Greek_eta, 0x1F24, + Key_Multi_key, Key_parenright, Key_Greek_iota, 0x1F34, + Key_Multi_key, Key_parenright, Key_Greek_omicron, 0x1F44, + Key_Multi_key, Key_parenright, Key_Greek_upsilon, 0x1F54, + Key_Multi_key, Key_parenright, Key_Greek_omega, 0x1F64, + Key_Multi_key, Key_plus, Key_O, 0x1EDA, + Key_Multi_key, Key_plus, Key_U, 0x1EE8, + Key_Multi_key, Key_plus, Key_o, 0x1EDB, + Key_Multi_key, Key_plus, Key_u, 0x1EE9, + Key_Multi_key, Key_comma, Key_C, 0x1E08, + Key_Multi_key, Key_comma, Key_c, 0x1E09, + Key_Multi_key, Key_slash, Key_O, 0x01FE, + Key_Multi_key, Key_slash, Key_o, 0x01FF, + Key_Multi_key, Key_U, Key_A, 0x1EAE, + Key_Multi_key, Key_U, Key_a, 0x1EAF, + Key_Multi_key, Key_asciicircum, Key_A, 0x1EA4, + Key_Multi_key, Key_asciicircum, Key_E, 0x1EBE, + Key_Multi_key, Key_asciicircum, Key_O, 0x1ED0, + Key_Multi_key, Key_asciicircum, Key_a, 0x1EA5, + Key_Multi_key, Key_asciicircum, Key_e, 0x1EBF, + Key_Multi_key, Key_asciicircum, Key_o, 0x1ED1, + Key_Multi_key, Key_underscore, Key_E, 0x1E16, + Key_Multi_key, Key_underscore, Key_O, 0x1E52, + Key_Multi_key, Key_underscore, Key_e, 0x1E17, + Key_Multi_key, Key_underscore, Key_o, 0x1E53, + Key_Multi_key, Key_b, Key_A, 0x1EAE, + Key_Multi_key, Key_b, Key_a, 0x1EAF, + Key_Multi_key, Key_o, Key_A, 0x01FA, + Key_Multi_key, Key_o, Key_a, 0x01FB, + Key_Multi_key, Key_asciitilde, Key_O, 0x1E4C, + Key_Multi_key, Key_asciitilde, Key_U, 0x1E78, + Key_Multi_key, Key_asciitilde, Key_o, 0x1E4D, + Key_Multi_key, Key_asciitilde, Key_u, 0x1E79, + Key_Multi_key, Key_macron, Key_E, 0x1E16, + Key_Multi_key, Key_macron, Key_O, 0x1E52, + Key_Multi_key, Key_macron, Key_e, 0x1E17, + Key_Multi_key, Key_macron, Key_o, 0x1E53, + Key_Multi_key, Key_cedilla, Key_C, 0x1E08, + Key_Multi_key, Key_cedilla, Key_c, 0x1E09, + Key_Multi_key, Key_KP_Divide, Key_O, 0x01FE, + Key_Multi_key, Key_KP_Divide, Key_o, 0x01FF, + Key_space, 0x005E, + Key_parenleft, 0x207D, + Key_parenright, 0x207E, + Key_plus, 0x207A, + Key_minus, 0x207B, + Key_0, 0x2070, + Key_1, 0x00B9, + Key_2, 0x00B2, + Key_3, 0x00B3, + Key_4, 0x2074, + Key_5, 0x2075, + Key_6, 0x2076, + Key_7, 0x2077, + Key_8, 0x2078, + Key_9, 0x2079, + Key_equal, 0x207C, + Key_nobreakspace, 0x0302, + Key_Agrave, 0x1EA6, + Key_Aacute, 0x1EA4, + Key_Atilde, 0x1EAA, + Key_Egrave, 0x1EC0, + Key_Eacute, 0x1EBE, + Key_Ograve, 0x1ED2, + Key_Oacute, 0x1ED0, + Key_Otilde, 0x1ED6, + Key_agrave, 0x1EA7, + Key_aacute, 0x1EA5, + Key_atilde, 0x1EAB, + Key_egrave, 0x1EC1, + Key_eacute, 0x1EBF, + Key_ograve, 0x1ED3, + Key_oacute, 0x1ED1, + Key_otilde, 0x1ED7, + Key_Ahook, 0x1EA8, + Key_ahook, 0x1EA9, + Key_Ehook, 0x1EC2, + Key_ehook, 0x1EC3, + Key_Etilde, 0x1EC4, + Key_etilde, 0x1EC5, + Key_Ohook, 0x1ED4, + Key_ohook, 0x1ED5, + 0x2212, 0x207B, + 0x4E00, 0x3192, + 0x4E01, 0x319C, + 0x4E09, 0x3194, + 0x4E0A, 0x3196, + 0x4E0B, 0x3198, + 0x4E19, 0x319B, + 0x4E2D, 0x3197, + 0x4E59, 0x319A, + 0x4E8C, 0x3193, + 0x4EBA, 0x319F, + 0x56DB, 0x3195, + 0x5730, 0x319E, + 0x5929, 0x319D, + 0x7532, 0x3199, + Key_dead_circumflex, 0x005E, + Key_KP_Space, 0x00B2, + Key_KP_Add, 0x207A, + Key_KP_0, 0x2070, + Key_KP_1, 0x00B9, + Key_KP_2, 0x00B2, + Key_KP_3, 0x00B3, + Key_KP_4, 0x2074, + Key_KP_5, 0x2075, + Key_KP_6, 0x2076, + Key_KP_7, 0x2077, + Key_KP_8, 0x2078, + Key_KP_9, 0x2079, + Key_KP_Equal, 0x207C, + Key_Multi_key, Key_exclam, Key_A, 0x1EAC, + Key_Multi_key, Key_exclam, Key_E, 0x1EC6, + Key_Multi_key, Key_exclam, Key_O, 0x1ED8, + Key_Multi_key, Key_exclam, Key_a, 0x1EAD, + Key_Multi_key, Key_exclam, Key_e, 0x1EC7, + Key_Multi_key, Key_exclam, Key_o, 0x1ED9, + Key_Multi_key, Key_S, Key_M, 0x2120, + Key_Multi_key, Key_S, Key_m, 0x2120, + Key_Multi_key, Key_T, Key_M, 0x2122, + Key_Multi_key, Key_T, Key_m, 0x2122, + Key_Multi_key, Key_underscore, Key_a, 0x00AA, + Key_Multi_key, Key_underscore, Key_h, 0x02B0, + Key_Multi_key, Key_underscore, Key_i, 0x2071, + Key_Multi_key, Key_underscore, Key_j, 0x02B2, + Key_Multi_key, Key_underscore, Key_l, 0x02E1, + Key_Multi_key, Key_underscore, Key_n, 0x207F, + Key_Multi_key, Key_underscore, Key_o, 0x00BA, + Key_Multi_key, Key_underscore, Key_r, 0x02B3, + Key_Multi_key, Key_underscore, Key_s, 0x02E2, + Key_Multi_key, Key_underscore, Key_w, 0x02B7, + Key_Multi_key, Key_underscore, Key_x, 0x02E3, + Key_Multi_key, Key_underscore, Key_y, 0x02B8, + Key_Multi_key, Key_underscore, 0x0263, 0x02E0, + Key_Multi_key, Key_underscore, 0x0266, 0x02B1, + Key_Multi_key, Key_underscore, 0x0279, 0x02B4, + Key_Multi_key, Key_underscore, 0x027B, 0x02B5, + Key_Multi_key, Key_underscore, 0x0281, 0x02B6, + Key_Multi_key, Key_underscore, 0x0295, 0x02E4, + Key_Multi_key, Key_s, Key_M, 0x2120, + Key_Multi_key, Key_s, Key_m, 0x2120, + Key_Multi_key, Key_t, Key_M, 0x2122, + Key_Multi_key, Key_t, Key_m, 0x2122, + Key_Multi_key, Key_underbar, Key_a, 0x00AA, + Key_Multi_key, Key_underbar, Key_h, 0x02B0, + Key_Multi_key, Key_underbar, Key_i, 0x2071, + Key_Multi_key, Key_underbar, Key_j, 0x02B2, + Key_Multi_key, Key_underbar, Key_l, 0x02E1, + Key_Multi_key, Key_underbar, Key_n, 0x207F, + Key_Multi_key, Key_underbar, Key_o, 0x00BA, + Key_Multi_key, Key_underbar, Key_r, 0x02B3, + Key_Multi_key, Key_underbar, Key_s, 0x02E2, + Key_Multi_key, Key_underbar, Key_w, 0x02B7, + Key_Multi_key, Key_underbar, Key_x, 0x02E3, + Key_Multi_key, Key_underbar, Key_y, 0x02B8, + Key_Multi_key, Key_underbar, 0x0263, 0x02E0, + Key_Multi_key, Key_underbar, 0x0266, 0x02B1, + Key_Multi_key, Key_underbar, 0x0279, 0x02B4, + Key_Multi_key, Key_underbar, 0x027B, 0x02B5, + Key_Multi_key, Key_underbar, 0x0281, 0x02B6, + Key_Multi_key, Key_underbar, 0x0295, 0x02E4, + Key_space, 0x007E, + Key_less, 0x2272, + Key_equal, 0x2243, + Key_greater, 0x2273, + Key_Oacute, 0x1E4C, + Key_Odiaeresis, 0x1E4E, + Key_Uacute, 0x1E78, + Key_oacute, 0x1E4D, + Key_odiaeresis, 0x1E4F, + Key_uacute, 0x1E79, + Key_Abreve, 0x1EB4, + Key_abreve, 0x1EB5, + Key_Omacron, 0x022C, + Key_omacron, 0x022D, + Key_Greek_iotadieresis, 0x1FD7, + Key_Greek_upsilondieresis, 0x1FE7, + Key_Greek_alpha, 0x1FB6, + Key_Greek_eta, 0x1FC6, + Key_Greek_iota, 0x1FD6, + Key_Greek_upsilon, 0x1FE6, + Key_Greek_omega, 0x1FF6, + 0x1F00, 0x1F06, + 0x1F01, 0x1F07, + 0x1F08, 0x1F0E, + 0x1F09, 0x1F0F, + 0x1F20, 0x1F26, + 0x1F21, 0x1F27, + 0x1F28, 0x1F2E, + 0x1F29, 0x1F2F, + 0x1F30, 0x1F36, + 0x1F31, 0x1F37, + 0x1F38, 0x1F3E, + 0x1F39, 0x1F3F, + 0x1F50, 0x1F56, + 0x1F51, 0x1F57, + 0x1F59, 0x1F5F, + 0x1F60, 0x1F66, + 0x1F61, 0x1F67, + 0x1F68, 0x1F6E, + 0x1F69, 0x1F6F, + Key_dead_tilde, 0x007E, + Key_dead_diaeresis, Key_Greek_iota, 0x1FD7, + Key_dead_diaeresis, Key_Greek_upsilon, 0x1FE7, + Key_dead_psili, Key_Greek_ALPHA, 0x1F0E, + Key_dead_psili, Key_Greek_ETA, 0x1F2E, + Key_dead_psili, Key_Greek_IOTA, 0x1F3E, + Key_dead_psili, Key_Greek_OMEGA, 0x1F6E, + Key_dead_psili, Key_Greek_alpha, 0x1F06, + Key_dead_psili, Key_Greek_eta, 0x1F26, + Key_dead_psili, Key_Greek_iota, 0x1F36, + Key_dead_psili, Key_Greek_upsilon, 0x1F56, + Key_dead_psili, Key_Greek_omega, 0x1F66, + Key_dead_dasia, Key_Greek_ALPHA, 0x1F0F, + Key_dead_dasia, Key_Greek_ETA, 0x1F2F, + Key_dead_dasia, Key_Greek_IOTA, 0x1F3F, + Key_dead_dasia, Key_Greek_UPSILON, 0x1F5F, + Key_dead_dasia, Key_Greek_OMEGA, 0x1F6F, + Key_dead_dasia, Key_Greek_alpha, 0x1F07, + Key_dead_dasia, Key_Greek_eta, 0x1F27, + Key_dead_dasia, Key_Greek_iota, 0x1F37, + Key_dead_dasia, Key_Greek_upsilon, 0x1F57, + Key_dead_dasia, Key_Greek_omega, 0x1F67, + Key_Multi_key, Key_quotedbl, Key_Greek_iota, 0x1FD7, + Key_Multi_key, Key_quotedbl, Key_Greek_upsilon, 0x1FE7, + Key_Multi_key, Key_parenleft, Key_Greek_ALPHA, 0x1F0F, + Key_Multi_key, Key_parenleft, Key_Greek_ETA, 0x1F2F, + Key_Multi_key, Key_parenleft, Key_Greek_IOTA, 0x1F3F, + Key_Multi_key, Key_parenleft, Key_Greek_UPSILON, 0x1F5F, + Key_Multi_key, Key_parenleft, Key_Greek_OMEGA, 0x1F6F, + Key_Multi_key, Key_parenleft, Key_Greek_alpha, 0x1F07, + Key_Multi_key, Key_parenleft, Key_Greek_eta, 0x1F27, + Key_Multi_key, Key_parenleft, Key_Greek_iota, 0x1F37, + Key_Multi_key, Key_parenleft, Key_Greek_upsilon, 0x1F57, + Key_Multi_key, Key_parenleft, Key_Greek_omega, 0x1F67, + Key_Multi_key, Key_parenright, Key_Greek_ALPHA, 0x1F0E, + Key_Multi_key, Key_parenright, Key_Greek_ETA, 0x1F2E, + Key_Multi_key, Key_parenright, Key_Greek_IOTA, 0x1F3E, + Key_Multi_key, Key_parenright, Key_Greek_OMEGA, 0x1F6E, + Key_Multi_key, Key_parenright, Key_Greek_alpha, 0x1F06, + Key_Multi_key, Key_parenright, Key_Greek_eta, 0x1F26, + Key_Multi_key, Key_parenright, Key_Greek_iota, 0x1F36, + Key_Multi_key, Key_parenright, Key_Greek_upsilon, 0x1F56, + Key_Multi_key, Key_parenright, Key_Greek_omega, 0x1F66, + Key_Multi_key, Key_plus, Key_O, 0x1EE0, + Key_Multi_key, Key_plus, Key_U, 0x1EEE, + Key_Multi_key, Key_plus, Key_o, 0x1EE1, + Key_Multi_key, Key_plus, Key_u, 0x1EEF, + Key_Multi_key, Key_U, Key_A, 0x1EB4, + Key_Multi_key, Key_U, Key_a, 0x1EB5, + Key_Multi_key, Key_asciicircum, Key_A, 0x1EAA, + Key_Multi_key, Key_asciicircum, Key_E, 0x1EC4, + Key_Multi_key, Key_asciicircum, Key_O, 0x1ED6, + Key_Multi_key, Key_asciicircum, Key_a, 0x1EAB, + Key_Multi_key, Key_asciicircum, Key_e, 0x1EC5, + Key_Multi_key, Key_asciicircum, Key_o, 0x1ED7, + Key_Multi_key, Key_b, Key_A, 0x1EB4, + Key_Multi_key, Key_b, Key_a, 0x1EB5, + Key_space, 0x00AF, + Key_V, 0x01D5, + Key_v, 0x01D6, + Key_nobreakspace, 0x0304, + Key_Egrave, 0x1E14, + Key_Eacute, 0x1E16, + Key_Ograve, 0x1E50, + Key_Oacute, 0x1E52, + Key_egrave, 0x1E15, + Key_eacute, 0x1E17, + Key_ograve, 0x1E51, + Key_oacute, 0x1E53, + Key_Cyrillic_i, 0x04E3, + Key_Cyrillic_u, 0x04EF, + Key_Cyrillic_I, 0x04E2, + Key_Cyrillic_U, 0x04EE, + Key_Greek_ALPHA, 0x1FB9, + Key_Greek_IOTA, 0x1FD9, + Key_Greek_UPSILON, 0x1FE9, + Key_Greek_alpha, 0x1FB1, + Key_Greek_iota, 0x1FD1, + Key_Greek_upsilon, 0x1FE1, + Key_dead_macron, 0x00AF, + Key_Multi_key, Key_exclam, Key_L, 0x1E38, + Key_Multi_key, Key_exclam, Key_R, 0x1E5C, + Key_Multi_key, Key_exclam, Key_l, 0x1E39, + Key_Multi_key, Key_exclam, Key_r, 0x1E5D, + Key_Multi_key, Key_quotedbl, Key_A, 0x01DE, + Key_Multi_key, Key_quotedbl, Key_O, 0x022A, + Key_Multi_key, Key_quotedbl, Key_U, 0x01D5, + Key_Multi_key, Key_quotedbl, Key_a, 0x01DF, + Key_Multi_key, Key_quotedbl, Key_o, 0x022B, + Key_Multi_key, Key_quotedbl, Key_u, 0x01D6, + Key_Multi_key, Key_period, Key_A, 0x01E0, + Key_Multi_key, Key_period, Key_O, 0x0230, + Key_Multi_key, Key_period, Key_a, 0x01E1, + Key_Multi_key, Key_period, Key_o, 0x0231, + Key_Multi_key, Key_semicolon, Key_O, 0x01EC, + Key_Multi_key, Key_semicolon, Key_o, 0x01ED, + Key_Multi_key, Key_asciitilde, Key_O, 0x022C, + Key_Multi_key, Key_asciitilde, Key_o, 0x022D, + Key_space, 0x02D8, + Key_nobreakspace, 0x0306, + Key_Agrave, 0x1EB0, + Key_Aacute, 0x1EAE, + Key_Atilde, 0x1EB4, + Key_agrave, 0x1EB1, + Key_aacute, 0x1EAF, + Key_atilde, 0x1EB5, + Key_Cyrillic_a, 0x04D1, + Key_Cyrillic_ie, 0x04D7, + Key_Cyrillic_i, 0x0439, + Key_Cyrillic_u, 0x045E, + Key_Cyrillic_zhe, 0x04C2, + Key_Cyrillic_A, 0x04D0, + Key_Cyrillic_IE, 0x04D6, + Key_Cyrillic_I, 0x0419, + Key_Cyrillic_U, 0x040E, + Key_Cyrillic_ZHE, 0x04C1, + Key_Greek_ALPHA, 0x1FB8, + Key_Greek_IOTA, 0x1FD8, + Key_Greek_UPSILON, 0x1FE8, + Key_Greek_alpha, 0x1FB0, + Key_Greek_iota, 0x1FD0, + Key_Greek_upsilon, 0x1FE0, + Key_Ahook, 0x1EB2, + Key_ahook, 0x1EB3, + Key_dead_breve, 0x02D8, + Key_Multi_key, Key_exclam, Key_A, 0x1EB6, + Key_Multi_key, Key_exclam, Key_a, 0x1EB7, + Key_Multi_key, Key_comma, Key_E, 0x1E1C, + Key_Multi_key, Key_comma, Key_e, 0x1E1D, + Key_Multi_key, Key_cedilla, Key_E, 0x1E1C, + Key_Multi_key, Key_cedilla, Key_e, 0x1E1D, + Key_space, 0x02D9, + Key_L, 0x013F, + Key_i, 0x0131, + Key_j, 0x0237, + Key_l, 0x0140, + Key_nobreakspace, 0x0307, + Key_Sacute, 0x1E64, + Key_Scaron, 0x1E66, + Key_sacute, 0x1E65, + Key_scaron, 0x1E67, + Key_Amacron, 0x01E0, + Key_Omacron, 0x0230, + Key_amacron, 0x01E1, + Key_omacron, 0x0231, + Key_dead_abovedot, 0x02D9, + Key_dead_stroke, Key_j, 0x025F, + Key_Multi_key, Key_exclam, Key_S, 0x1E68, + Key_Multi_key, Key_exclam, Key_s, 0x1E69, + Key_Multi_key, Key_apostrophe, Key_S, 0x1E64, + Key_Multi_key, Key_apostrophe, Key_s, 0x1E65, + Key_Multi_key, Key_c, Key_S, 0x1E66, + Key_Multi_key, Key_c, Key_s, 0x1E67, + Key_Multi_key, Key_acute, Key_S, 0x1E64, + Key_Multi_key, Key_acute, Key_s, 0x1E65, + Key_space, 0x0022, + Key_apostrophe, 0x0344, + Key_nobreakspace, 0x0308, + Key_acute, 0x0344, + Key_Iacute, 0x1E2E, + Key_Ugrave, 0x01DB, + Key_Uacute, 0x01D7, + Key_iacute, 0x1E2F, + Key_ugrave, 0x01DC, + Key_uacute, 0x01D8, + 0x01D3, 0x01D9, + 0x01D4, 0x01DA, + Key_Amacron, 0x01DE, + Key_Umacron, 0x1E7A, + Key_amacron, 0x01DF, + Key_omacron, 0x022B, + Key_umacron, 0x1E7B, + Key_Ukrainian_i, 0x0457, + Key_Ukrainian_I, 0x0407, + Key_Cyrillic_a, 0x04D3, + Key_Cyrillic_ie, 0x0451, + Key_Cyrillic_i, 0x04E5, + Key_Cyrillic_o, 0x04E7, + Key_Cyrillic_u, 0x04F1, + Key_Cyrillic_zhe, 0x04DD, + Key_Cyrillic_yeru, 0x04F9, + Key_Cyrillic_ze, 0x04DF, + Key_Cyrillic_e, 0x04ED, + Key_Cyrillic_che, 0x04F5, + Key_Cyrillic_A, 0x04D2, + Key_Cyrillic_IE, 0x0401, + Key_Cyrillic_I, 0x04E4, + Key_Cyrillic_O, 0x04E6, + Key_Cyrillic_U, 0x04F0, + Key_Cyrillic_ZHE, 0x04DC, + Key_Cyrillic_YERU, 0x04F8, + Key_Cyrillic_ZE, 0x04DE, + Key_Cyrillic_E, 0x04EC, + Key_Cyrillic_CHE, 0x04F4, + Key_Greek_IOTA, 0x03AA, + Key_Greek_UPSILON, 0x03AB, + Key_Greek_iota, 0x03CA, + Key_Greek_upsilon, 0x03CB, + Key_dead_diaeresis, 0x00A8, + Key_dead_acute, Key_space, 0x0385, + Key_dead_acute, Key_Greek_iota, 0x0390, + Key_dead_acute, Key_Greek_upsilon, 0x03B0, + Key_Multi_key, Key_underscore, Key_U, 0x1E7A, + Key_Multi_key, Key_underscore, Key_u, 0x1E7B, + Key_Multi_key, Key_asciitilde, Key_O, 0x1E4E, + Key_Multi_key, Key_asciitilde, Key_o, 0x1E4F, + Key_Multi_key, Key_macron, Key_U, 0x1E7A, + Key_Multi_key, Key_macron, Key_u, 0x1E7B, + Key_space, 0x00B0, + Key_nobreakspace, 0x030A, + Key_Aacute, 0x01FA, + Key_aacute, 0x01FB, + Key_dead_abovering, 0x00B0, + Key_space, 0x02DD, + Key_nobreakspace, 0x030B, + Key_Cyrillic_u, 0x04F3, + Key_Cyrillic_U, 0x04F2, + Key_dead_doubleacute, 0x02DD, + Key_space, 0x02C7, + Key_parenleft, 0x208D, + Key_parenright, 0x208E, + Key_plus, 0x208A, + Key_minus, 0x208B, + Key_equal, 0x208C, + Key_V, 0x01D9, + Key_v, 0x01DA, + Key_nobreakspace, 0x030C, + 0x01F2, 0x01C5, + Key_Sabovedot, 0x1E66, + Key_sabovedot, 0x1E67, + Key_dead_caron, 0x02C7, + Key_Multi_key, Key_quotedbl, Key_U, 0x01D9, + Key_Multi_key, Key_quotedbl, Key_u, 0x01DA, + Key_space, 0x00B8, + Key_nobreakspace, 0x0327, + Key_cent, 0x20B5, + Key_Cacute, 0x1E08, + Key_cacute, 0x1E09, + Key_ColonSign, 0x20B5, + Key_dead_cedilla, 0x00B8, + Key_space, 0x02DB, + Key_nobreakspace, 0x0328, + Key_Omacron, 0x01EC, + Key_omacron, 0x01ED, + Key_dead_ogonek, 0x02DB, + Key_space, 0x037A, + Key_Greek_alphaaccent, 0x1FB4, + Key_Greek_etaaccent, 0x1FC4, + Key_Greek_omegaaccent, 0x1FF4, + Key_Greek_ALPHA, 0x1FBC, + Key_Greek_ETA, 0x1FCC, + Key_Greek_OMEGA, 0x1FFC, + Key_Greek_alpha, 0x1FB3, + Key_Greek_eta, 0x1FC3, + Key_Greek_omega, 0x1FF3, + Key_dead_iota, 0x037A, + Key_dead_grave, Key_Greek_alpha, 0x1FB2, + Key_dead_grave, Key_Greek_eta, 0x1FC2, + Key_dead_grave, Key_Greek_omega, 0x1FF2, + Key_dead_acute, Key_Greek_alpha, 0x1FB4, + Key_dead_acute, Key_Greek_eta, 0x1FC4, + Key_dead_acute, Key_Greek_omega, 0x1FF4, + Key_dead_tilde, Key_Greek_alpha, 0x1FB7, + Key_dead_tilde, Key_Greek_eta, 0x1FC7, + Key_dead_tilde, Key_Greek_omega, 0x1FF7, + Key_dead_tilde, 0x1F00, 0x1F86, + Key_dead_tilde, 0x1F01, 0x1F87, + Key_dead_tilde, 0x1F08, 0x1F8E, + Key_dead_tilde, 0x1F09, 0x1F8F, + Key_dead_tilde, 0x1F20, 0x1F96, + Key_dead_tilde, 0x1F21, 0x1F97, + Key_dead_tilde, 0x1F28, 0x1F9E, + Key_dead_tilde, 0x1F29, 0x1F9F, + Key_dead_tilde, 0x1F60, 0x1FA6, + Key_dead_tilde, 0x1F61, 0x1FA7, + Key_dead_tilde, 0x1F68, 0x1FAE, + Key_dead_tilde, 0x1F69, 0x1FAF, + Key_dead_psili, Key_Greek_ALPHA, 0x1F88, + Key_dead_psili, Key_Greek_ETA, 0x1F98, + Key_dead_psili, Key_Greek_OMEGA, 0x1FA8, + Key_dead_psili, Key_Greek_alpha, 0x1F80, + Key_dead_psili, Key_Greek_eta, 0x1F90, + Key_dead_psili, Key_Greek_omega, 0x1FA0, + Key_dead_dasia, Key_Greek_ALPHA, 0x1F89, + Key_dead_dasia, Key_Greek_ETA, 0x1F99, + Key_dead_dasia, Key_Greek_OMEGA, 0x1FA9, + Key_dead_dasia, Key_Greek_alpha, 0x1F81, + Key_dead_dasia, Key_Greek_eta, 0x1F91, + Key_dead_dasia, Key_Greek_omega, 0x1FA1, + Key_dead_grave, Key_dead_psili, Key_Greek_ALPHA, 0x1F8A, + Key_dead_grave, Key_dead_psili, Key_Greek_ETA, 0x1F9A, + Key_dead_grave, Key_dead_psili, Key_Greek_OMEGA, 0x1FAA, + Key_dead_grave, Key_dead_psili, Key_Greek_alpha, 0x1F82, + Key_dead_grave, Key_dead_psili, Key_Greek_eta, 0x1F92, + Key_dead_grave, Key_dead_psili, Key_Greek_omega, 0x1FA2, + Key_dead_grave, Key_dead_dasia, Key_Greek_ALPHA, 0x1F8B, + Key_dead_grave, Key_dead_dasia, Key_Greek_ETA, 0x1F9B, + Key_dead_grave, Key_dead_dasia, Key_Greek_OMEGA, 0x1FAB, + Key_dead_grave, Key_dead_dasia, Key_Greek_alpha, 0x1F83, + Key_dead_grave, Key_dead_dasia, Key_Greek_eta, 0x1F93, + Key_dead_grave, Key_dead_dasia, Key_Greek_omega, 0x1FA3, + Key_dead_acute, Key_dead_psili, Key_Greek_ALPHA, 0x1F8C, + Key_dead_acute, Key_dead_psili, Key_Greek_ETA, 0x1F9C, + Key_dead_acute, Key_dead_psili, Key_Greek_OMEGA, 0x1FAC, + Key_dead_acute, Key_dead_psili, Key_Greek_alpha, 0x1F84, + Key_dead_acute, Key_dead_psili, Key_Greek_eta, 0x1F94, + Key_dead_acute, Key_dead_psili, Key_Greek_omega, 0x1FA4, + Key_dead_acute, Key_dead_dasia, Key_Greek_ALPHA, 0x1F8D, + Key_dead_acute, Key_dead_dasia, Key_Greek_ETA, 0x1F9D, + Key_dead_acute, Key_dead_dasia, Key_Greek_OMEGA, 0x1FAD, + Key_dead_acute, Key_dead_dasia, Key_Greek_alpha, 0x1F85, + Key_dead_acute, Key_dead_dasia, Key_Greek_eta, 0x1F95, + Key_dead_acute, Key_dead_dasia, Key_Greek_omega, 0x1FA5, + Key_dead_tilde, Key_dead_psili, Key_Greek_ALPHA, 0x1F8E, + Key_dead_tilde, Key_dead_psili, Key_Greek_ETA, 0x1F9E, + Key_dead_tilde, Key_dead_psili, Key_Greek_OMEGA, 0x1FAE, + Key_dead_tilde, Key_dead_psili, Key_Greek_alpha, 0x1F86, + Key_dead_tilde, Key_dead_psili, Key_Greek_eta, 0x1F96, + Key_dead_tilde, Key_dead_psili, Key_Greek_omega, 0x1FA6, + Key_dead_tilde, Key_dead_dasia, Key_Greek_ALPHA, 0x1F8F, + Key_dead_tilde, Key_dead_dasia, Key_Greek_ETA, 0x1F9F, + Key_dead_tilde, Key_dead_dasia, Key_Greek_OMEGA, 0x1FAF, + Key_dead_tilde, Key_dead_dasia, Key_Greek_alpha, 0x1F87, + Key_dead_tilde, Key_dead_dasia, Key_Greek_eta, 0x1F97, + Key_dead_tilde, Key_dead_dasia, Key_Greek_omega, 0x1FA7, + Key_Multi_key, Key_apostrophe, Key_Greek_alpha, 0x1FB4, + Key_Multi_key, Key_apostrophe, Key_Greek_eta, 0x1FC4, + Key_Multi_key, Key_apostrophe, Key_Greek_omega, 0x1FF4, + Key_Multi_key, Key_apostrophe, 0x1F00, 0x1F84, + Key_Multi_key, Key_apostrophe, 0x1F01, 0x1F85, + Key_Multi_key, Key_apostrophe, 0x1F08, 0x1F8C, + Key_Multi_key, Key_apostrophe, 0x1F09, 0x1F8D, + Key_Multi_key, Key_apostrophe, 0x1F20, 0x1F94, + Key_Multi_key, Key_apostrophe, 0x1F21, 0x1F95, + Key_Multi_key, Key_apostrophe, 0x1F28, 0x1F9C, + Key_Multi_key, Key_apostrophe, 0x1F29, 0x1F9D, + Key_Multi_key, Key_apostrophe, 0x1F60, 0x1FA4, + Key_Multi_key, Key_apostrophe, 0x1F61, 0x1FA5, + Key_Multi_key, Key_apostrophe, 0x1F68, 0x1FAC, + Key_Multi_key, Key_apostrophe, 0x1F69, 0x1FAD, + Key_Multi_key, Key_parenleft, Key_Greek_ALPHA, 0x1F89, + Key_Multi_key, Key_parenleft, Key_Greek_ETA, 0x1F99, + Key_Multi_key, Key_parenleft, Key_Greek_OMEGA, 0x1FA9, + Key_Multi_key, Key_parenleft, Key_Greek_alpha, 0x1F81, + Key_Multi_key, Key_parenleft, Key_Greek_eta, 0x1F91, + Key_Multi_key, Key_parenleft, Key_Greek_omega, 0x1FA1, + Key_Multi_key, Key_parenright, Key_Greek_ALPHA, 0x1F88, + Key_Multi_key, Key_parenright, Key_Greek_ETA, 0x1F98, + Key_Multi_key, Key_parenright, Key_Greek_OMEGA, 0x1FA8, + Key_Multi_key, Key_parenright, Key_Greek_alpha, 0x1F80, + Key_Multi_key, Key_parenright, Key_Greek_eta, 0x1F90, + Key_Multi_key, Key_parenright, Key_Greek_omega, 0x1FA0, + Key_Multi_key, Key_grave, Key_Greek_alpha, 0x1FB2, + Key_Multi_key, Key_grave, Key_Greek_eta, 0x1FC2, + Key_Multi_key, Key_grave, Key_Greek_omega, 0x1FF2, + Key_Multi_key, Key_grave, 0x1F00, 0x1F82, + Key_Multi_key, Key_grave, 0x1F01, 0x1F83, + Key_Multi_key, Key_grave, 0x1F08, 0x1F8A, + Key_Multi_key, Key_grave, 0x1F09, 0x1F8B, + Key_Multi_key, Key_grave, 0x1F20, 0x1F92, + Key_Multi_key, Key_grave, 0x1F21, 0x1F93, + Key_Multi_key, Key_grave, 0x1F28, 0x1F9A, + Key_Multi_key, Key_grave, 0x1F29, 0x1F9B, + Key_Multi_key, Key_grave, 0x1F60, 0x1FA2, + Key_Multi_key, Key_grave, 0x1F61, 0x1FA3, + Key_Multi_key, Key_grave, 0x1F68, 0x1FAA, + Key_Multi_key, Key_grave, 0x1F69, 0x1FAB, + Key_Multi_key, Key_asciitilde, Key_Greek_alpha, 0x1FB7, + Key_Multi_key, Key_asciitilde, Key_Greek_eta, 0x1FC7, + Key_Multi_key, Key_asciitilde, Key_Greek_omega, 0x1FF7, + Key_Multi_key, Key_asciitilde, 0x1F00, 0x1F86, + Key_Multi_key, Key_asciitilde, 0x1F01, 0x1F87, + Key_Multi_key, Key_asciitilde, 0x1F08, 0x1F8E, + Key_Multi_key, Key_asciitilde, 0x1F09, 0x1F8F, + Key_Multi_key, Key_asciitilde, 0x1F20, 0x1F96, + Key_Multi_key, Key_asciitilde, 0x1F21, 0x1F97, + Key_Multi_key, Key_asciitilde, 0x1F28, 0x1F9E, + Key_Multi_key, Key_asciitilde, 0x1F29, 0x1F9F, + Key_Multi_key, Key_asciitilde, 0x1F60, 0x1FA6, + Key_Multi_key, Key_asciitilde, 0x1F61, 0x1FA7, + Key_Multi_key, Key_asciitilde, 0x1F68, 0x1FAE, + Key_Multi_key, Key_asciitilde, 0x1F69, 0x1FAF, + Key_Multi_key, Key_acute, Key_Greek_alpha, 0x1FB4, + Key_Multi_key, Key_acute, Key_Greek_eta, 0x1FC4, + Key_Multi_key, Key_acute, Key_Greek_omega, 0x1FF4, + Key_Multi_key, Key_acute, 0x1F00, 0x1F84, + Key_Multi_key, Key_acute, 0x1F01, 0x1F85, + Key_Multi_key, Key_acute, 0x1F08, 0x1F8C, + Key_Multi_key, Key_acute, 0x1F09, 0x1F8D, + Key_Multi_key, Key_acute, 0x1F20, 0x1F94, + Key_Multi_key, Key_acute, 0x1F21, 0x1F95, + Key_Multi_key, Key_acute, 0x1F28, 0x1F9C, + Key_Multi_key, Key_acute, 0x1F29, 0x1F9D, + Key_Multi_key, Key_acute, 0x1F60, 0x1FA4, + Key_Multi_key, Key_acute, 0x1F61, 0x1FA5, + Key_Multi_key, Key_acute, 0x1F68, 0x1FAC, + Key_Multi_key, Key_acute, 0x1F69, 0x1FAD, + Key_dead_grave, Key_Multi_key, Key_parenleft, Key_Greek_ALPHA, 0x1F8B, + Key_dead_grave, Key_Multi_key, Key_parenleft, Key_Greek_ETA, 0x1F9B, + Key_dead_grave, Key_Multi_key, Key_parenleft, Key_Greek_OMEGA, 0x1FAB, + Key_dead_grave, Key_Multi_key, Key_parenleft, Key_Greek_alpha, 0x1F83, + Key_dead_grave, Key_Multi_key, Key_parenleft, Key_Greek_eta, 0x1F93, + Key_dead_grave, Key_Multi_key, Key_parenleft, Key_Greek_omega, 0x1FA3, + Key_dead_grave, Key_Multi_key, Key_parenright, Key_Greek_ALPHA, 0x1F8A, + Key_dead_grave, Key_Multi_key, Key_parenright, Key_Greek_ETA, 0x1F9A, + Key_dead_grave, Key_Multi_key, Key_parenright, Key_Greek_OMEGA, 0x1FAA, + Key_dead_grave, Key_Multi_key, Key_parenright, Key_Greek_alpha, 0x1F82, + Key_dead_grave, Key_Multi_key, Key_parenright, Key_Greek_eta, 0x1F92, + Key_dead_grave, Key_Multi_key, Key_parenright, Key_Greek_omega, 0x1FA2, + Key_dead_acute, Key_Multi_key, Key_parenleft, Key_Greek_ALPHA, 0x1F8D, + Key_dead_acute, Key_Multi_key, Key_parenleft, Key_Greek_ETA, 0x1F9D, + Key_dead_acute, Key_Multi_key, Key_parenleft, Key_Greek_OMEGA, 0x1FAD, + Key_dead_acute, Key_Multi_key, Key_parenleft, Key_Greek_alpha, 0x1F85, + Key_dead_acute, Key_Multi_key, Key_parenleft, Key_Greek_eta, 0x1F95, + Key_dead_acute, Key_Multi_key, Key_parenleft, Key_Greek_omega, 0x1FA5, + Key_dead_acute, Key_Multi_key, Key_parenright, Key_Greek_ALPHA, 0x1F8C, + Key_dead_acute, Key_Multi_key, Key_parenright, Key_Greek_ETA, 0x1F9C, + Key_dead_acute, Key_Multi_key, Key_parenright, Key_Greek_OMEGA, 0x1FAC, + Key_dead_acute, Key_Multi_key, Key_parenright, Key_Greek_alpha, 0x1F84, + Key_dead_acute, Key_Multi_key, Key_parenright, Key_Greek_eta, 0x1F94, + Key_dead_acute, Key_Multi_key, Key_parenright, Key_Greek_omega, 0x1FA4, + Key_dead_tilde, Key_Multi_key, Key_parenleft, Key_Greek_ALPHA, 0x1F8F, + Key_dead_tilde, Key_Multi_key, Key_parenleft, Key_Greek_ETA, 0x1F9F, + Key_dead_tilde, Key_Multi_key, Key_parenleft, Key_Greek_OMEGA, 0x1FAF, + Key_dead_tilde, Key_Multi_key, Key_parenleft, Key_Greek_alpha, 0x1F87, + Key_dead_tilde, Key_Multi_key, Key_parenleft, Key_Greek_eta, 0x1F97, + Key_dead_tilde, Key_Multi_key, Key_parenleft, Key_Greek_omega, 0x1FA7, + Key_dead_tilde, Key_Multi_key, Key_parenright, Key_Greek_ALPHA, 0x1F8E, + Key_dead_tilde, Key_Multi_key, Key_parenright, Key_Greek_ETA, 0x1F9E, + Key_dead_tilde, Key_Multi_key, Key_parenright, Key_Greek_OMEGA, 0x1FAE, + Key_dead_tilde, Key_Multi_key, Key_parenright, Key_Greek_alpha, 0x1F86, + Key_dead_tilde, Key_Multi_key, Key_parenright, Key_Greek_eta, 0x1F96, + Key_dead_tilde, Key_Multi_key, Key_parenright, Key_Greek_omega, 0x1FA6, + Key_Multi_key, Key_apostrophe, Key_parenleft, Key_Greek_ALPHA, 0x1F8D, + Key_Multi_key, Key_apostrophe, Key_parenleft, Key_Greek_ETA, 0x1F9D, + Key_Multi_key, Key_apostrophe, Key_parenleft, Key_Greek_OMEGA, 0x1FAD, + Key_Multi_key, Key_apostrophe, Key_parenleft, Key_Greek_alpha, 0x1F85, + Key_Multi_key, Key_apostrophe, Key_parenleft, Key_Greek_eta, 0x1F95, + Key_Multi_key, Key_apostrophe, Key_parenleft, Key_Greek_omega, 0x1FA5, + Key_Multi_key, Key_apostrophe, Key_parenright, Key_Greek_ALPHA, 0x1F8C, + Key_Multi_key, Key_apostrophe, Key_parenright, Key_Greek_ETA, 0x1F9C, + Key_Multi_key, Key_apostrophe, Key_parenright, Key_Greek_OMEGA, 0x1FAC, + Key_Multi_key, Key_apostrophe, Key_parenright, Key_Greek_alpha, 0x1F84, + Key_Multi_key, Key_apostrophe, Key_parenright, Key_Greek_eta, 0x1F94, + Key_Multi_key, Key_apostrophe, Key_parenright, Key_Greek_omega, 0x1FA4, + Key_Multi_key, Key_apostrophe, Key_dead_psili, Key_Greek_ALPHA, 0x1F8C, + Key_Multi_key, Key_apostrophe, Key_dead_psili, Key_Greek_ETA, 0x1F9C, + Key_Multi_key, Key_apostrophe, Key_dead_psili, Key_Greek_OMEGA, 0x1FAC, + Key_Multi_key, Key_apostrophe, Key_dead_psili, Key_Greek_alpha, 0x1F84, + Key_Multi_key, Key_apostrophe, Key_dead_psili, Key_Greek_eta, 0x1F94, + Key_Multi_key, Key_apostrophe, Key_dead_psili, Key_Greek_omega, 0x1FA4, + Key_Multi_key, Key_apostrophe, Key_dead_dasia, Key_Greek_ALPHA, 0x1F8D, + Key_Multi_key, Key_apostrophe, Key_dead_dasia, Key_Greek_ETA, 0x1F9D, + Key_Multi_key, Key_apostrophe, Key_dead_dasia, Key_Greek_OMEGA, 0x1FAD, + Key_Multi_key, Key_apostrophe, Key_dead_dasia, Key_Greek_alpha, 0x1F85, + Key_Multi_key, Key_apostrophe, Key_dead_dasia, Key_Greek_eta, 0x1F95, + Key_Multi_key, Key_apostrophe, Key_dead_dasia, Key_Greek_omega, 0x1FA5, + Key_Multi_key, Key_grave, Key_parenleft, Key_Greek_ALPHA, 0x1F8B, + Key_Multi_key, Key_grave, Key_parenleft, Key_Greek_ETA, 0x1F9B, + Key_Multi_key, Key_grave, Key_parenleft, Key_Greek_OMEGA, 0x1FAB, + Key_Multi_key, Key_grave, Key_parenleft, Key_Greek_alpha, 0x1F83, + Key_Multi_key, Key_grave, Key_parenleft, Key_Greek_eta, 0x1F93, + Key_Multi_key, Key_grave, Key_parenleft, Key_Greek_omega, 0x1FA3, + Key_Multi_key, Key_grave, Key_parenright, Key_Greek_ALPHA, 0x1F8A, + Key_Multi_key, Key_grave, Key_parenright, Key_Greek_ETA, 0x1F9A, + Key_Multi_key, Key_grave, Key_parenright, Key_Greek_OMEGA, 0x1FAA, + Key_Multi_key, Key_grave, Key_parenright, Key_Greek_alpha, 0x1F82, + Key_Multi_key, Key_grave, Key_parenright, Key_Greek_eta, 0x1F92, + Key_Multi_key, Key_grave, Key_parenright, Key_Greek_omega, 0x1FA2, + Key_Multi_key, Key_grave, Key_dead_psili, Key_Greek_ALPHA, 0x1F8A, + Key_Multi_key, Key_grave, Key_dead_psili, Key_Greek_ETA, 0x1F9A, + Key_Multi_key, Key_grave, Key_dead_psili, Key_Greek_OMEGA, 0x1FAA, + Key_Multi_key, Key_grave, Key_dead_psili, Key_Greek_alpha, 0x1F82, + Key_Multi_key, Key_grave, Key_dead_psili, Key_Greek_eta, 0x1F92, + Key_Multi_key, Key_grave, Key_dead_psili, Key_Greek_omega, 0x1FA2, + Key_Multi_key, Key_grave, Key_dead_dasia, Key_Greek_ALPHA, 0x1F8B, + Key_Multi_key, Key_grave, Key_dead_dasia, Key_Greek_ETA, 0x1F9B, + Key_Multi_key, Key_grave, Key_dead_dasia, Key_Greek_OMEGA, 0x1FAB, + Key_Multi_key, Key_grave, Key_dead_dasia, Key_Greek_alpha, 0x1F83, + Key_Multi_key, Key_grave, Key_dead_dasia, Key_Greek_eta, 0x1F93, + Key_Multi_key, Key_grave, Key_dead_dasia, Key_Greek_omega, 0x1FA3, + Key_Multi_key, Key_asciitilde, Key_parenleft, Key_Greek_ALPHA, 0x1F8F, + Key_Multi_key, Key_asciitilde, Key_parenleft, Key_Greek_ETA, 0x1F9F, + Key_Multi_key, Key_asciitilde, Key_parenleft, Key_Greek_OMEGA, 0x1FAF, + Key_Multi_key, Key_asciitilde, Key_parenleft, Key_Greek_alpha, 0x1F87, + Key_Multi_key, Key_asciitilde, Key_parenleft, Key_Greek_eta, 0x1F97, + Key_Multi_key, Key_asciitilde, Key_parenleft, Key_Greek_omega, 0x1FA7, + Key_Multi_key, Key_asciitilde, Key_parenright, Key_Greek_ALPHA, 0x1F8E, + Key_Multi_key, Key_asciitilde, Key_parenright, Key_Greek_ETA, 0x1F9E, + Key_Multi_key, Key_asciitilde, Key_parenright, Key_Greek_OMEGA, 0x1FAE, + Key_Multi_key, Key_asciitilde, Key_parenright, Key_Greek_alpha, 0x1F86, + Key_Multi_key, Key_asciitilde, Key_parenright, Key_Greek_eta, 0x1F96, + Key_Multi_key, Key_asciitilde, Key_parenright, Key_Greek_omega, 0x1FA6, + Key_Multi_key, Key_asciitilde, Key_dead_psili, Key_Greek_ALPHA, 0x1F8E, + Key_Multi_key, Key_asciitilde, Key_dead_psili, Key_Greek_ETA, 0x1F9E, + Key_Multi_key, Key_asciitilde, Key_dead_psili, Key_Greek_OMEGA, 0x1FAE, + Key_Multi_key, Key_asciitilde, Key_dead_psili, Key_Greek_alpha, 0x1F86, + Key_Multi_key, Key_asciitilde, Key_dead_psili, Key_Greek_eta, 0x1F96, + Key_Multi_key, Key_asciitilde, Key_dead_psili, Key_Greek_omega, 0x1FA6, + Key_Multi_key, Key_asciitilde, Key_dead_dasia, Key_Greek_ALPHA, 0x1F8F, + Key_Multi_key, Key_asciitilde, Key_dead_dasia, Key_Greek_ETA, 0x1F9F, + Key_Multi_key, Key_asciitilde, Key_dead_dasia, Key_Greek_OMEGA, 0x1FAF, + Key_Multi_key, Key_asciitilde, Key_dead_dasia, Key_Greek_alpha, 0x1F87, + Key_Multi_key, Key_asciitilde, Key_dead_dasia, Key_Greek_eta, 0x1F97, + Key_Multi_key, Key_asciitilde, Key_dead_dasia, Key_Greek_omega, 0x1FA7, + Key_Multi_key, Key_acute, Key_parenleft, Key_Greek_ALPHA, 0x1F8D, + Key_Multi_key, Key_acute, Key_parenleft, Key_Greek_ETA, 0x1F9D, + Key_Multi_key, Key_acute, Key_parenleft, Key_Greek_OMEGA, 0x1FAD, + Key_Multi_key, Key_acute, Key_parenleft, Key_Greek_alpha, 0x1F85, + Key_Multi_key, Key_acute, Key_parenleft, Key_Greek_eta, 0x1F95, + Key_Multi_key, Key_acute, Key_parenleft, Key_Greek_omega, 0x1FA5, + Key_Multi_key, Key_acute, Key_parenright, Key_Greek_ALPHA, 0x1F8C, + Key_Multi_key, Key_acute, Key_parenright, Key_Greek_ETA, 0x1F9C, + Key_Multi_key, Key_acute, Key_parenright, Key_Greek_OMEGA, 0x1FAC, + Key_Multi_key, Key_acute, Key_parenright, Key_Greek_alpha, 0x1F84, + Key_Multi_key, Key_acute, Key_parenright, Key_Greek_eta, 0x1F94, + Key_Multi_key, Key_acute, Key_parenright, Key_Greek_omega, 0x1FA4, + Key_Multi_key, Key_acute, Key_dead_psili, Key_Greek_ALPHA, 0x1F8C, + Key_Multi_key, Key_acute, Key_dead_psili, Key_Greek_ETA, 0x1F9C, + Key_Multi_key, Key_acute, Key_dead_psili, Key_Greek_OMEGA, 0x1FAC, + Key_Multi_key, Key_acute, Key_dead_psili, Key_Greek_alpha, 0x1F84, + Key_Multi_key, Key_acute, Key_dead_psili, Key_Greek_eta, 0x1F94, + Key_Multi_key, Key_acute, Key_dead_psili, Key_Greek_omega, 0x1FA4, + Key_Multi_key, Key_acute, Key_dead_dasia, Key_Greek_ALPHA, 0x1F8D, + Key_Multi_key, Key_acute, Key_dead_dasia, Key_Greek_ETA, 0x1F9D, + Key_Multi_key, Key_acute, Key_dead_dasia, Key_Greek_OMEGA, 0x1FAD, + Key_Multi_key, Key_acute, Key_dead_dasia, Key_Greek_alpha, 0x1F85, + Key_Multi_key, Key_acute, Key_dead_dasia, Key_Greek_eta, 0x1F95, + Key_Multi_key, Key_acute, Key_dead_dasia, Key_Greek_omega, 0x1FA5, + Key_kana_WO, 0x30FA, + Key_kana_U, 0x30F4, + Key_kana_KA, 0x30AC, + Key_kana_KI, 0x30AE, + Key_kana_KU, 0x30B0, + Key_kana_KE, 0x30B2, + Key_kana_KO, 0x30B4, + Key_kana_SA, 0x30B6, + Key_kana_SHI, 0x30B8, + Key_kana_SU, 0x30BA, + Key_kana_SE, 0x30BC, + Key_kana_SO, 0x30BE, + Key_kana_TA, 0x30C0, + Key_kana_CHI, 0x30C2, + Key_kana_TSU, 0x30C5, + Key_kana_TE, 0x30C7, + Key_kana_TO, 0x30C9, + Key_kana_HA, 0x30D0, + Key_kana_HI, 0x30D3, + Key_kana_FU, 0x30D6, + Key_kana_HE, 0x30D9, + Key_kana_HO, 0x30DC, + Key_kana_WA, 0x30F7, + Key_kana_HA, 0x30D1, + Key_kana_HI, 0x30D4, + Key_kana_FU, 0x30D7, + Key_kana_HE, 0x30DA, + Key_kana_HO, 0x30DD, + Key_plus, 0x2A25, + Key_minus, 0x2A2A, + Key_equal, 0x2A66, + Key_Abreve, 0x1EB6, + Key_abreve, 0x1EB7, + Key_Multi_key, Key_plus, Key_O, 0x1EE2, + Key_Multi_key, Key_plus, Key_U, 0x1EF0, + Key_Multi_key, Key_plus, Key_o, 0x1EE3, + Key_Multi_key, Key_plus, Key_u, 0x1EF1, + Key_space, 0x0309, + Key_B, 0x0181, + Key_C, 0x0187, + Key_D, 0x018A, + Key_F, 0x0191, + Key_G, 0x0193, + Key_K, 0x0198, + Key_M, 0x2C6E, + Key_N, 0x019D, + Key_P, 0x01A4, + Key_T, 0x01AC, + Key_V, 0x01B2, + Key_W, 0x2C72, + Key_Z, 0x0224, + Key_b, 0x0253, + Key_c, 0x0188, + Key_d, 0x0257, + Key_f, 0x0192, + Key_g, 0x0260, + Key_h, 0x0266, + Key_k, 0x0199, + Key_m, 0x0271, + Key_n, 0x0272, + Key_p, 0x01A5, + Key_q, 0x02A0, + Key_s, 0x0282, + Key_t, 0x01AD, + Key_v, 0x028B, + Key_w, 0x2C73, + Key_z, 0x0225, + Key_nobreakspace, 0x0309, + Key_Abreve, 0x1EB2, + Key_abreve, 0x1EB3, + 0x0256, 0x1D91, + Key_schwa, 0x025A, + 0x025C, 0x025D, + 0x025F, 0x0284, + 0x0279, 0x027B, + Key_dead_hook, 0x0309, + Key_Multi_key, Key_plus, Key_O, 0x1EDE, + Key_Multi_key, Key_plus, Key_U, 0x1EEC, + Key_Multi_key, Key_plus, Key_o, 0x1EDF, + Key_Multi_key, Key_plus, Key_u, 0x1EED, + Key_Multi_key, Key_U, Key_A, 0x1EB2, + Key_Multi_key, Key_U, Key_a, 0x1EB3, + Key_Multi_key, Key_asciicircum, Key_A, 0x1EA8, + Key_Multi_key, Key_asciicircum, Key_E, 0x1EC2, + Key_Multi_key, Key_asciicircum, Key_O, 0x1ED4, + Key_Multi_key, Key_asciicircum, Key_a, 0x1EA9, + Key_Multi_key, Key_asciicircum, Key_e, 0x1EC3, + Key_Multi_key, Key_asciicircum, Key_o, 0x1ED5, + Key_Multi_key, Key_b, Key_A, 0x1EB2, + Key_Multi_key, Key_b, Key_a, 0x1EB3, + Key_Greek_ALPHA, 0x1F08, + Key_Greek_EPSILON, 0x1F18, + Key_Greek_ETA, 0x1F28, + Key_Greek_IOTA, 0x1F38, + Key_Greek_OMICRON, 0x1F48, + Key_Greek_OMEGA, 0x1F68, + Key_Greek_alpha, 0x1F00, + Key_Greek_epsilon, 0x1F10, + Key_Greek_eta, 0x1F20, + Key_Greek_iota, 0x1F30, + Key_Greek_omicron, 0x1F40, + Key_Greek_rho, 0x1FE4, + Key_Greek_upsilon, 0x1F50, + Key_Greek_omega, 0x1F60, + Key_Greek_ALPHA, 0x1F09, + Key_Greek_EPSILON, 0x1F19, + Key_Greek_ETA, 0x1F29, + Key_Greek_IOTA, 0x1F39, + Key_Greek_OMICRON, 0x1F49, + Key_Greek_RHO, 0x1FEC, + Key_Greek_UPSILON, 0x1F59, + Key_Greek_OMEGA, 0x1F69, + Key_Greek_alpha, 0x1F01, + Key_Greek_epsilon, 0x1F11, + Key_Greek_eta, 0x1F21, + Key_Greek_iota, 0x1F31, + Key_Greek_omicron, 0x1F41, + Key_Greek_rho, 0x1FE5, + Key_Greek_upsilon, 0x1F51, + Key_Greek_omega, 0x1F61, + Key_space, Key_space, 0x00A0, + Key_space, Key_apostrophe, 0x0027, + Key_space, Key_parenleft, 0x02D8, + Key_space, Key_comma, 0x00B8, + Key_space, Key_minus, 0x007E, + Key_space, Key_period, 0x2008, + Key_space, Key_less, 0x02C7, + Key_space, Key_greater, 0x005E, + Key_space, Key_asciicircum, 0x005E, + Key_space, Key_grave, 0x0060, + Key_space, Key_asciitilde, 0x007E, + Key_exclam, Key_exclam, 0x00A1, + Key_exclam, Key_question, 0x203D, + Key_exclam, Key_A, 0x1EA0, + Key_exclam, Key_B, 0x1E04, + Key_exclam, Key_D, 0x1E0C, + Key_exclam, Key_E, 0x1EB8, + Key_exclam, Key_H, 0x1E24, + Key_exclam, Key_I, 0x1ECA, + Key_exclam, Key_K, 0x1E32, + Key_exclam, Key_L, 0x1E36, + Key_exclam, Key_M, 0x1E42, + Key_exclam, Key_N, 0x1E46, + Key_exclam, Key_O, 0x1ECC, + Key_exclam, Key_P, 0x00B6, + Key_exclam, Key_R, 0x1E5A, + Key_exclam, Key_S, 0x00A7, + Key_exclam, Key_T, 0x1E6C, + Key_exclam, Key_U, 0x1EE4, + Key_exclam, Key_V, 0x1E7E, + Key_exclam, Key_W, 0x1E88, + Key_exclam, Key_Y, 0x1EF4, + Key_exclam, Key_Z, 0x1E92, + Key_exclam, Key_asciicircum, 0x00A6, + Key_exclam, Key_a, 0x1EA1, + Key_exclam, Key_b, 0x1E05, + Key_exclam, Key_d, 0x1E0D, + Key_exclam, Key_e, 0x1EB9, + Key_exclam, Key_h, 0x1E25, + Key_exclam, Key_i, 0x1ECB, + Key_exclam, Key_k, 0x1E33, + Key_exclam, Key_l, 0x1E37, + Key_exclam, Key_m, 0x1E43, + Key_exclam, Key_n, 0x1E47, + Key_exclam, Key_o, 0x1ECD, + Key_exclam, Key_p, 0x00B6, + Key_exclam, Key_r, 0x1E5B, + Key_exclam, Key_s, 0x00A7, + Key_exclam, Key_t, 0x1E6D, + Key_exclam, Key_u, 0x1EE5, + Key_exclam, Key_v, 0x1E7F, + Key_exclam, Key_w, 0x1E89, + Key_exclam, Key_y, 0x1EF5, + Key_exclam, Key_z, 0x1E93, + Key_exclam, Key_Ohorn, 0x1EE2, + Key_exclam, Key_ohorn, 0x1EE3, + Key_exclam, Key_Uhorn, 0x1EF0, + Key_exclam, Key_uhorn, 0x1EF1, + Key_quotedbl, Key_quotedbl, 0x00A8, + Key_quotedbl, Key_apostrophe, 0x0344, + Key_quotedbl, Key_comma, 0x201E, + Key_quotedbl, Key_slash, 0x301E, + Key_quotedbl, Key_less, 0x201C, + Key_quotedbl, Key_greater, 0x201D, + Key_quotedbl, Key_A, 0x00C4, + Key_quotedbl, Key_E, 0x00CB, + Key_quotedbl, Key_H, 0x1E26, + Key_quotedbl, Key_I, 0x00CF, + Key_quotedbl, Key_O, 0x00D6, + Key_quotedbl, Key_U, 0x00DC, + Key_quotedbl, Key_W, 0x1E84, + Key_quotedbl, Key_X, 0x1E8C, + Key_quotedbl, Key_Y, 0x0178, + Key_quotedbl, Key_backslash, 0x301D, + Key_quotedbl, Key_a, 0x00E4, + Key_quotedbl, Key_e, 0x00EB, + Key_quotedbl, Key_h, 0x1E27, + Key_quotedbl, Key_i, 0x00EF, + Key_quotedbl, Key_o, 0x00F6, + Key_quotedbl, Key_t, 0x1E97, + Key_quotedbl, Key_u, 0x00FC, + Key_quotedbl, Key_w, 0x1E85, + Key_quotedbl, Key_x, 0x1E8D, + Key_quotedbl, Key_y, 0x00FF, + Key_quotedbl, Key_acute, 0x0344, + Key_quotedbl, Key_Otilde, 0x1E4E, + Key_quotedbl, Key_otilde, 0x1E4F, + Key_quotedbl, 0x03D2, 0x03D4, + Key_quotedbl, Key_Umacron, 0x1E7A, + Key_quotedbl, Key_umacron, 0x1E7B, + Key_quotedbl, 0x04D8, 0x04DA, + Key_quotedbl, 0x04D9, 0x04DB, + Key_quotedbl, 0x04E8, 0x04EA, + Key_quotedbl, 0x04E9, 0x04EB, + Key_quotedbl, Key_Ukrainian_i, 0x0457, + Key_quotedbl, Key_Ukrainian_I, 0x0407, + Key_quotedbl, Key_Cyrillic_a, 0x04D3, + Key_quotedbl, Key_Cyrillic_ie, 0x0451, + Key_quotedbl, Key_Cyrillic_i, 0x04E5, + Key_quotedbl, Key_Cyrillic_o, 0x04E7, + Key_quotedbl, Key_Cyrillic_u, 0x04F1, + Key_quotedbl, Key_Cyrillic_zhe, 0x04DD, + Key_quotedbl, Key_Cyrillic_yeru, 0x04F9, + Key_quotedbl, Key_Cyrillic_ze, 0x04DF, + Key_quotedbl, Key_Cyrillic_e, 0x04ED, + Key_quotedbl, Key_Cyrillic_che, 0x04F5, + Key_quotedbl, Key_Cyrillic_A, 0x04D2, + Key_quotedbl, Key_Cyrillic_IE, 0x0401, + Key_quotedbl, Key_Cyrillic_I, 0x04E4, + Key_quotedbl, Key_Cyrillic_O, 0x04E6, + Key_quotedbl, Key_Cyrillic_U, 0x04F0, + Key_quotedbl, Key_Cyrillic_ZHE, 0x04DC, + Key_quotedbl, Key_Cyrillic_YERU, 0x04F8, + Key_quotedbl, Key_Cyrillic_ZE, 0x04DE, + Key_quotedbl, Key_Cyrillic_E, 0x04EC, + Key_quotedbl, Key_Cyrillic_CHE, 0x04F4, + Key_quotedbl, Key_Greek_IOTA, 0x03AA, + Key_quotedbl, Key_Greek_UPSILON, 0x03AB, + Key_quotedbl, Key_Greek_iota, 0x03CA, + Key_quotedbl, Key_Greek_upsilon, 0x03CB, + Key_quotedbl, Key_dead_acute, 0x0344, + Key_numbersign, Key_numbersign, 0x266F, + Key_numbersign, Key_b, 0x266D, + Key_numbersign, Key_f, 0x266E, + Key_percent, Key_o, 0x2030, + Key_apostrophe, Key_space, 0x0027, + Key_apostrophe, Key_apostrophe, 0x00B4, + Key_apostrophe, Key_comma, 0x201A, + Key_apostrophe, Key_less, 0x2018, + Key_apostrophe, Key_greater, 0x2019, + Key_apostrophe, Key_A, 0x00C1, + Key_apostrophe, Key_C, 0x0106, + Key_apostrophe, Key_E, 0x00C9, + Key_apostrophe, Key_G, 0x01F4, + Key_apostrophe, Key_I, 0x00CD, + Key_apostrophe, Key_K, 0x1E30, + Key_apostrophe, Key_L, 0x0139, + Key_apostrophe, Key_M, 0x1E3E, + Key_apostrophe, Key_N, 0x0143, + Key_apostrophe, Key_O, 0x00D3, + Key_apostrophe, Key_P, 0x1E54, + Key_apostrophe, Key_R, 0x0154, + Key_apostrophe, Key_S, 0x015A, + Key_apostrophe, Key_U, 0x00DA, + Key_apostrophe, Key_W, 0x1E82, + Key_apostrophe, Key_Y, 0x00DD, + Key_apostrophe, Key_Z, 0x0179, + Key_apostrophe, Key_a, 0x00E1, + Key_apostrophe, Key_c, 0x0107, + Key_apostrophe, Key_e, 0x00E9, + Key_apostrophe, Key_g, 0x01F5, + Key_apostrophe, Key_i, 0x00ED, + Key_apostrophe, Key_k, 0x1E31, + Key_apostrophe, Key_l, 0x013A, + Key_apostrophe, Key_m, 0x1E3F, + Key_apostrophe, Key_n, 0x0144, + Key_apostrophe, Key_o, 0x00F3, + Key_apostrophe, Key_p, 0x1E55, + Key_apostrophe, Key_r, 0x0155, + Key_apostrophe, Key_s, 0x015B, + Key_apostrophe, Key_u, 0x00FA, + Key_apostrophe, Key_w, 0x1E83, + Key_apostrophe, Key_y, 0x00FD, + Key_apostrophe, Key_z, 0x017A, + Key_apostrophe, Key_Acircumflex, 0x1EA4, + Key_apostrophe, Key_Aring, 0x01FA, + Key_apostrophe, Key_AE, 0x01FC, + Key_apostrophe, Key_Ccedilla, 0x1E08, + Key_apostrophe, Key_Ecircumflex, 0x1EBE, + Key_apostrophe, Key_Idiaeresis, 0x1E2E, + Key_apostrophe, Key_Ocircumflex, 0x1ED0, + Key_apostrophe, Key_Otilde, 0x1E4C, + Key_apostrophe, Key_Ooblique, 0x01FE, + Key_apostrophe, 0x00DC, 0x01D7, + Key_apostrophe, Key_acircumflex, 0x1EA5, + Key_apostrophe, Key_aring, 0x01FB, + Key_apostrophe, Key_ae, 0x01FD, + Key_apostrophe, Key_ccedilla, 0x1E09, + Key_apostrophe, Key_ecircumflex, 0x1EBF, + Key_apostrophe, Key_idiaeresis, 0x1E2F, + Key_apostrophe, Key_ocircumflex, 0x1ED1, + Key_apostrophe, Key_otilde, 0x1E4D, + Key_apostrophe, Key_oslash, 0x01FF, + Key_apostrophe, Key_udiaeresis, 0x01D8, + Key_apostrophe, Key_Ohorn, 0x1EDA, + Key_apostrophe, Key_ohorn, 0x1EDB, + Key_apostrophe, Key_Uhorn, 0x1EE8, + Key_apostrophe, Key_uhorn, 0x1EE9, + Key_apostrophe, Key_Abreve, 0x1EAE, + Key_apostrophe, Key_abreve, 0x1EAF, + Key_apostrophe, Key_Emacron, 0x1E16, + Key_apostrophe, Key_emacron, 0x1E17, + Key_apostrophe, Key_Omacron, 0x1E52, + Key_apostrophe, Key_Utilde, 0x1E78, + Key_apostrophe, Key_omacron, 0x1E53, + Key_apostrophe, Key_utilde, 0x1E79, + Key_apostrophe, Key_Cyrillic_ghe, 0x0453, + Key_apostrophe, Key_Cyrillic_ka, 0x045C, + Key_apostrophe, Key_Cyrillic_GHE, 0x0403, + Key_apostrophe, Key_Cyrillic_KA, 0x040C, + Key_apostrophe, Key_Greek_iotadieresis, 0x0390, + Key_apostrophe, Key_Greek_upsilondieresis, 0x03B0, + Key_apostrophe, Key_Greek_ALPHA, 0x0386, + Key_apostrophe, Key_Greek_EPSILON, 0x0388, + Key_apostrophe, Key_Greek_ETA, 0x0389, + Key_apostrophe, Key_Greek_IOTA, 0x038A, + Key_apostrophe, Key_Greek_OMICRON, 0x038C, + Key_apostrophe, Key_Greek_UPSILON, 0x038E, + Key_apostrophe, Key_Greek_OMEGA, 0x038F, + Key_apostrophe, Key_Greek_alpha, 0x03AC, + Key_apostrophe, Key_Greek_epsilon, 0x03AD, + Key_apostrophe, Key_Greek_eta, 0x03AE, + Key_apostrophe, Key_Greek_iota, 0x03AF, + Key_apostrophe, Key_Greek_omicron, 0x03CC, + Key_apostrophe, Key_Greek_upsilon, 0x03CD, + Key_apostrophe, Key_Greek_omega, 0x03CE, + Key_apostrophe, 0x1F00, 0x1F04, + Key_apostrophe, 0x1F01, 0x1F05, + Key_apostrophe, 0x1F08, 0x1F0C, + Key_apostrophe, 0x1F09, 0x1F0D, + Key_apostrophe, 0x1F10, 0x1F14, + Key_apostrophe, 0x1F11, 0x1F15, + Key_apostrophe, 0x1F18, 0x1F1C, + Key_apostrophe, 0x1F19, 0x1F1D, + Key_apostrophe, 0x1F20, 0x1F24, + Key_apostrophe, 0x1F21, 0x1F25, + Key_apostrophe, 0x1F28, 0x1F2C, + Key_apostrophe, 0x1F29, 0x1F2D, + Key_apostrophe, 0x1F30, 0x1F34, + Key_apostrophe, 0x1F31, 0x1F35, + Key_apostrophe, 0x1F38, 0x1F3C, + Key_apostrophe, 0x1F39, 0x1F3D, + Key_apostrophe, 0x1F40, 0x1F44, + Key_apostrophe, 0x1F41, 0x1F45, + Key_apostrophe, 0x1F48, 0x1F4C, + Key_apostrophe, 0x1F49, 0x1F4D, + Key_apostrophe, 0x1F50, 0x1F54, + Key_apostrophe, 0x1F51, 0x1F55, + Key_apostrophe, 0x1F59, 0x1F5D, + Key_apostrophe, 0x1F60, 0x1F64, + Key_apostrophe, 0x1F61, 0x1F65, + Key_apostrophe, 0x1F68, 0x1F6C, + Key_apostrophe, 0x1F69, 0x1F6D, + Key_parenleft, Key_space, 0x02D8, + Key_parenleft, Key_parenleft, 0x005B, + Key_parenleft, Key_minus, 0x007B, + Key_parenleft, Key_A, 0x0102, + Key_parenleft, Key_G, 0x011E, + Key_parenleft, Key_a, 0x0103, + Key_parenleft, Key_c, 0x00A9, + Key_parenleft, Key_g, 0x011F, + Key_parenleft, Key_r, 0x00AE, + Key_parenleft, Key_Greek_ALPHA, 0x1F09, + Key_parenleft, Key_Greek_EPSILON, 0x1F19, + Key_parenleft, Key_Greek_ETA, 0x1F29, + Key_parenleft, Key_Greek_IOTA, 0x1F39, + Key_parenleft, Key_Greek_OMICRON, 0x1F49, + Key_parenleft, Key_Greek_RHO, 0x1FEC, + Key_parenleft, Key_Greek_UPSILON, 0x1F59, + Key_parenleft, Key_Greek_OMEGA, 0x1F69, + Key_parenleft, Key_Greek_alpha, 0x1F01, + Key_parenleft, Key_Greek_epsilon, 0x1F11, + Key_parenleft, Key_Greek_eta, 0x1F21, + Key_parenleft, Key_Greek_iota, 0x1F31, + Key_parenleft, Key_Greek_omicron, 0x1F41, + Key_parenleft, Key_Greek_rho, 0x1FE5, + Key_parenleft, Key_Greek_upsilon, 0x1F51, + Key_parenleft, Key_Greek_omega, 0x1F61, + Key_parenright, Key_parenright, 0x005D, + Key_parenright, Key_minus, 0x007D, + Key_parenright, Key_Greek_ALPHA, 0x1F08, + Key_parenright, Key_Greek_EPSILON, 0x1F18, + Key_parenright, Key_Greek_ETA, 0x1F28, + Key_parenright, Key_Greek_IOTA, 0x1F38, + Key_parenright, Key_Greek_OMICRON, 0x1F48, + Key_parenright, Key_Greek_OMEGA, 0x1F68, + Key_parenright, Key_Greek_alpha, 0x1F00, + Key_parenright, Key_Greek_epsilon, 0x1F10, + Key_parenright, Key_Greek_eta, 0x1F20, + Key_parenright, Key_Greek_iota, 0x1F30, + Key_parenright, Key_Greek_omicron, 0x1F40, + Key_parenright, Key_Greek_rho, 0x1FE4, + Key_parenright, Key_Greek_upsilon, 0x1F50, + Key_parenright, Key_Greek_omega, 0x1F60, + Key_asterisk, Key_0, 0x00B0, + Key_asterisk, Key_A, 0x00C5, + Key_asterisk, Key_U, 0x016E, + Key_asterisk, Key_a, 0x00E5, + Key_asterisk, Key_u, 0x016F, + Key_plus, Key_plus, 0x0023, + Key_plus, Key_minus, 0x00B1, + Key_plus, Key_O, 0x01A0, + Key_plus, Key_U, 0x01AF, + Key_plus, Key_o, 0x01A1, + Key_plus, Key_u, 0x01B0, + Key_comma, Key_space, 0x00B8, + Key_comma, Key_quotedbl, 0x201E, + Key_comma, Key_apostrophe, 0x201A, + Key_comma, Key_comma, 0x00B8, + Key_comma, Key_minus, 0x00AC, + Key_comma, Key_A, 0x0104, + Key_comma, Key_C, 0x00C7, + Key_comma, Key_D, 0x1E10, + Key_comma, Key_E, 0x0118, + Key_comma, Key_G, 0x0122, + Key_comma, Key_H, 0x1E28, + Key_comma, Key_I, 0x012E, + Key_comma, Key_K, 0x0136, + Key_comma, Key_L, 0x013B, + Key_comma, Key_N, 0x0145, + Key_comma, Key_R, 0x0156, + Key_comma, Key_S, 0x015E, + Key_comma, Key_T, 0x0162, + Key_comma, Key_U, 0x0172, + Key_comma, Key_a, 0x0105, + Key_comma, Key_c, 0x00E7, + Key_comma, Key_d, 0x1E11, + Key_comma, Key_e, 0x0119, + Key_comma, Key_g, 0x0123, + Key_comma, Key_h, 0x1E29, + Key_comma, Key_i, 0x012F, + Key_comma, Key_k, 0x0137, + Key_comma, Key_l, 0x013C, + Key_comma, Key_n, 0x0146, + Key_comma, Key_r, 0x0157, + Key_comma, Key_s, 0x015F, + Key_comma, Key_t, 0x0163, + Key_comma, Key_u, 0x0173, + Key_minus, Key_space, 0x007E, + Key_minus, Key_parenleft, 0x007B, + Key_minus, Key_parenright, 0x007D, + Key_minus, Key_plus, 0x00B1, + Key_minus, Key_comma, 0x00AC, + Key_minus, Key_colon, 0x00F7, + Key_minus, Key_A, 0x00C3, + Key_minus, Key_D, 0x0110, + Key_minus, Key_E, 0x0112, + Key_minus, Key_I, 0x012A, + Key_minus, Key_L, 0x00A3, + Key_minus, Key_N, 0x00D1, + Key_minus, Key_O, 0x00D5, + Key_minus, Key_U, 0x016A, + Key_minus, Key_Y, 0x00A5, + Key_minus, Key_asciicircum, 0x00AF, + Key_minus, Key_a, 0x00E3, + Key_minus, Key_d, 0x0111, + Key_minus, Key_e, 0x0113, + Key_minus, Key_i, 0x012B, + Key_minus, Key_l, 0x00A3, + Key_minus, Key_n, 0x00F1, + Key_minus, Key_o, 0x00F5, + Key_minus, Key_u, 0x016B, + Key_minus, Key_y, 0x00A5, + Key_period, Key_minus, 0x00B7, + Key_period, Key_period, 0x02D9, + Key_period, Key_less, 0x2039, + Key_period, Key_equal, 0x2022, + Key_period, Key_greater, 0x203A, + Key_period, Key_A, 0x0226, + Key_period, Key_B, 0x1E02, + Key_period, Key_C, 0x010A, + Key_period, Key_D, 0x1E0A, + Key_period, Key_E, 0x0116, + Key_period, Key_F, 0x1E1E, + Key_period, Key_G, 0x0120, + Key_period, Key_H, 0x1E22, + Key_period, Key_I, 0x0130, + Key_period, Key_M, 0x1E40, + Key_period, Key_N, 0x1E44, + Key_period, Key_O, 0x022E, + Key_period, Key_P, 0x1E56, + Key_period, Key_R, 0x1E58, + Key_period, Key_S, 0x1E60, + Key_period, Key_T, 0x1E6A, + Key_period, Key_W, 0x1E86, + Key_period, Key_X, 0x1E8A, + Key_period, Key_Y, 0x1E8E, + Key_period, Key_Z, 0x017B, + Key_period, Key_asciicircum, 0x00B7, + Key_period, Key_a, 0x0227, + Key_period, Key_b, 0x1E03, + Key_period, Key_c, 0x010B, + Key_period, Key_d, 0x1E0B, + Key_period, Key_e, 0x0117, + Key_period, Key_f, 0x1E1F, + Key_period, Key_g, 0x0121, + Key_period, Key_h, 0x1E23, + Key_period, Key_i, 0x0131, + Key_period, Key_m, 0x1E41, + Key_period, Key_n, 0x1E45, + Key_period, Key_o, 0x022F, + Key_period, Key_p, 0x1E57, + Key_period, Key_r, 0x1E59, + Key_period, Key_s, 0x1E61, + Key_period, Key_t, 0x1E6B, + Key_period, Key_w, 0x1E87, + Key_period, Key_x, 0x1E8B, + Key_period, Key_y, 0x1E8F, + Key_period, Key_z, 0x017C, + Key_period, 0x017F, 0x1E9B, + Key_period, Key_Sacute, 0x1E64, + Key_period, Key_Scaron, 0x1E66, + Key_period, Key_sacute, 0x1E65, + Key_period, Key_scaron, 0x1E67, + Key_period, 0x1E62, 0x1E68, + Key_period, 0x1E63, 0x1E69, + Key_slash, Key_slash, 0x005C, + Key_slash, Key_less, 0x005C, + Key_slash, Key_C, 0x00A2, + Key_slash, Key_D, 0x0110, + Key_slash, Key_G, 0x01E4, + Key_slash, Key_H, 0x0126, + Key_slash, Key_I, 0x0197, + Key_slash, Key_L, 0x0141, + Key_slash, Key_O, 0x00D8, + Key_slash, Key_T, 0x0166, + Key_slash, Key_U, 0x00B5, + Key_slash, Key_Z, 0x01B5, + Key_slash, Key_asciicircum, 0x007C, + Key_slash, Key_b, 0x0180, + Key_slash, Key_c, 0x00A2, + Key_slash, Key_d, 0x0111, + Key_slash, Key_g, 0x01E5, + Key_slash, Key_h, 0x0127, + Key_slash, Key_i, 0x0268, + Key_slash, Key_l, 0x0142, + Key_slash, Key_m, 0x20A5, + Key_slash, Key_o, 0x00F8, + Key_slash, Key_t, 0x0167, + Key_slash, Key_u, 0x00B5, + Key_slash, Key_z, 0x01B6, + Key_slash, 0x0294, 0x02A1, + Key_slash, 0x04AE, 0x04B0, + Key_slash, 0x04AF, 0x04B1, + Key_slash, Key_Cyrillic_ghe, 0x0493, + Key_slash, Key_Cyrillic_ka, 0x049F, + Key_slash, Key_Cyrillic_GHE, 0x0492, + Key_slash, Key_Cyrillic_KA, 0x049E, + Key_slash, Key_leftarrow, 0x219A, + Key_slash, Key_rightarrow, 0x219B, + Key_slash, 0x2194, 0x21AE, + Key_0, Key_asterisk, 0x00B0, + Key_0, Key_C, 0x00A9, + Key_0, Key_S, 0x00A7, + Key_0, Key_X, 0x00A4, + Key_0, Key_asciicircum, 0x00B0, + Key_0, Key_c, 0x00A9, + Key_0, Key_s, 0x00A7, + Key_0, Key_x, 0x00A4, + Key_1, Key_2, 0x00BD, + Key_1, Key_3, 0x2153, + Key_1, Key_4, 0x00BC, + Key_1, Key_5, 0x2155, + Key_1, Key_6, 0x2159, + Key_1, Key_8, 0x215B, + Key_1, Key_S, 0x00B9, + Key_1, Key_asciicircum, 0x00B9, + Key_1, Key_s, 0x00B9, + Key_2, Key_3, 0x2154, + Key_2, Key_5, 0x2156, + Key_2, Key_S, 0x00B2, + Key_2, Key_asciicircum, 0x00B2, + Key_2, Key_s, 0x00B2, + Key_3, Key_4, 0x00BE, + Key_3, Key_5, 0x2157, + Key_3, Key_8, 0x215C, + Key_3, Key_S, 0x00B3, + Key_3, Key_asciicircum, 0x00B3, + Key_3, Key_s, 0x00B3, + Key_4, Key_5, 0x2158, + Key_5, Key_6, 0x215A, + Key_5, Key_8, 0x215D, + Key_7, Key_8, 0x215E, + Key_colon, Key_minus, 0x00F7, + Key_semicolon, Key_A, 0x0104, + Key_semicolon, Key_E, 0x0118, + Key_semicolon, Key_I, 0x012E, + Key_semicolon, Key_O, 0x01EA, + Key_semicolon, Key_U, 0x0172, + Key_semicolon, Key_a, 0x0105, + Key_semicolon, Key_e, 0x0119, + Key_semicolon, Key_i, 0x012F, + Key_semicolon, Key_o, 0x01EB, + Key_semicolon, Key_u, 0x0173, + Key_less, Key_space, 0x02C7, + Key_less, Key_quotedbl, 0x201C, + Key_less, Key_apostrophe, 0x2018, + Key_less, Key_slash, 0x005C, + Key_less, Key_less, 0x00AB, + Key_less, Key_C, 0x010C, + Key_less, Key_D, 0x010E, + Key_less, Key_E, 0x011A, + Key_less, Key_L, 0x013D, + Key_less, Key_N, 0x0147, + Key_less, Key_R, 0x0158, + Key_less, Key_S, 0x0160, + Key_less, Key_T, 0x0164, + Key_less, Key_Z, 0x017D, + Key_less, Key_c, 0x010D, + Key_less, Key_d, 0x010F, + Key_less, Key_e, 0x011B, + Key_less, Key_l, 0x013E, + Key_less, Key_n, 0x0148, + Key_less, Key_r, 0x0159, + Key_less, Key_s, 0x0161, + Key_less, Key_t, 0x0165, + Key_less, Key_z, 0x017E, + Key_less, 0x0338, 0x226E, + Key_equal, Key_C, 0x20AC, + Key_equal, Key_E, 0x20AC, + Key_equal, Key_L, 0x00A3, + Key_equal, Key_N, 0x20A6, + Key_equal, Key_O, 0x0150, + Key_equal, Key_U, 0x0170, + Key_equal, Key_W, 0x20A9, + Key_equal, Key_Y, 0x00A5, + Key_equal, Key_c, 0x20AC, + Key_equal, Key_e, 0x20AC, + Key_equal, Key_l, 0x00A3, + Key_equal, Key_o, 0x0151, + Key_equal, Key_u, 0x0171, + Key_equal, Key_y, 0x00A5, + Key_equal, 0x0338, 0x2260, + Key_equal, Key_Cyrillic_u, 0x04F3, + Key_equal, Key_Cyrillic_IE, 0x20AC, + Key_equal, Key_Cyrillic_ES, 0x20AC, + Key_equal, Key_Cyrillic_U, 0x04F2, + Key_greater, Key_space, 0x005E, + Key_greater, Key_quotedbl, 0x201D, + Key_greater, Key_apostrophe, 0x2019, + Key_greater, Key_greater, 0x00BB, + Key_greater, Key_A, 0x00C2, + Key_greater, Key_E, 0x00CA, + Key_greater, Key_I, 0x00CE, + Key_greater, Key_O, 0x00D4, + Key_greater, Key_U, 0x00DB, + Key_greater, Key_a, 0x00E2, + Key_greater, Key_e, 0x00EA, + Key_greater, Key_i, 0x00EE, + Key_greater, Key_o, 0x00F4, + Key_greater, Key_u, 0x00FB, + Key_greater, 0x0338, 0x226F, + Key_question, Key_exclam, 0x203D, + Key_question, Key_question, 0x00BF, + Key_question, Key_A, 0x1EA2, + Key_question, Key_E, 0x1EBA, + Key_question, Key_I, 0x1EC8, + Key_question, Key_O, 0x1ECE, + Key_question, Key_U, 0x1EE6, + Key_question, Key_Y, 0x1EF6, + Key_question, Key_a, 0x1EA3, + Key_question, Key_e, 0x1EBB, + Key_question, Key_i, 0x1EC9, + Key_question, Key_o, 0x1ECF, + Key_question, Key_u, 0x1EE7, + Key_question, Key_y, 0x1EF7, + Key_question, Key_Acircumflex, 0x1EA8, + Key_question, Key_Ecircumflex, 0x1EC2, + Key_question, Key_Ocircumflex, 0x1ED4, + Key_question, Key_acircumflex, 0x1EA9, + Key_question, Key_ecircumflex, 0x1EC3, + Key_question, Key_ocircumflex, 0x1ED5, + Key_question, Key_Ohorn, 0x1EDE, + Key_question, Key_ohorn, 0x1EDF, + Key_question, Key_Uhorn, 0x1EEC, + Key_question, Key_uhorn, 0x1EED, + Key_question, Key_Abreve, 0x1EB2, + Key_question, Key_abreve, 0x1EB3, + Key_A, Key_quotedbl, 0x00C4, + Key_A, Key_apostrophe, 0x00C1, + Key_A, Key_parenleft, 0x0102, + Key_A, Key_asterisk, 0x00C5, + Key_A, Key_comma, 0x0104, + Key_A, Key_minus, 0x00C3, + Key_A, Key_greater, 0x00C2, + Key_A, Key_A, 0x00C5, + Key_A, Key_E, 0x00C6, + Key_A, Key_T, 0x0040, + Key_A, Key_asciicircum, 0x00C2, + Key_A, Key_underscore, 0x00AA, + Key_A, Key_grave, 0x00C0, + Key_A, Key_asciitilde, 0x00C3, + Key_A, Key_diaeresis, 0x00C4, + Key_A, Key_acute, 0x00C1, + Key_B, Key_period, 0x1E02, + Key_C, Key_apostrophe, 0x0106, + Key_C, Key_comma, 0x00C7, + Key_C, Key_period, 0x010A, + Key_C, Key_slash, 0x00A2, + Key_C, Key_0, 0x00A9, + Key_C, Key_less, 0x010C, + Key_C, Key_equal, 0x20AC, + Key_C, Key_E, 0x20A0, + Key_C, Key_O, 0x00A9, + Key_C, Key_o, 0x00A9, + Key_C, Key_r, 0x20A2, + Key_C, Key_bar, 0x00A2, + Key_D, Key_minus, 0x0110, + Key_D, Key_period, 0x1E0A, + Key_D, Key_less, 0x010E, + Key_D, Key_H, 0x00D0, + Key_E, Key_quotedbl, 0x00CB, + Key_E, Key_apostrophe, 0x00C9, + Key_E, Key_comma, 0x0118, + Key_E, Key_minus, 0x0112, + Key_E, Key_period, 0x0116, + Key_E, Key_less, 0x011A, + Key_E, Key_equal, 0x20AC, + Key_E, Key_greater, 0x00CA, + Key_E, Key_asciicircum, 0x00CA, + Key_E, Key_underscore, 0x0112, + Key_E, Key_grave, 0x00C8, + Key_E, Key_diaeresis, 0x00CB, + Key_E, Key_acute, 0x00C9, + Key_F, Key_period, 0x1E1E, + Key_F, Key_r, 0x20A3, + Key_G, Key_parenleft, 0x011E, + Key_G, Key_comma, 0x0122, + Key_G, Key_period, 0x0120, + Key_G, Key_U, 0x011E, + Key_G, Key_breve, 0x011E, + Key_I, Key_quotedbl, 0x00CF, + Key_I, Key_apostrophe, 0x00CD, + Key_I, Key_comma, 0x012E, + Key_I, Key_minus, 0x012A, + Key_I, Key_period, 0x0130, + Key_I, Key_greater, 0x00CE, + Key_I, Key_asciicircum, 0x00CE, + Key_I, Key_underscore, 0x012A, + Key_I, Key_grave, 0x00CC, + Key_I, Key_asciitilde, 0x0128, + Key_I, Key_diaeresis, 0x00CF, + Key_I, Key_acute, 0x00CD, + Key_K, Key_comma, 0x0136, + Key_L, Key_apostrophe, 0x0139, + Key_L, Key_comma, 0x013B, + Key_L, Key_minus, 0x00A3, + Key_L, Key_slash, 0x0141, + Key_L, Key_less, 0x013D, + Key_L, Key_equal, 0x00A3, + Key_L, Key_V, 0x007C, + Key_M, Key_period, 0x1E40, + Key_N, Key_apostrophe, 0x0143, + Key_N, Key_comma, 0x0145, + Key_N, Key_minus, 0x00D1, + Key_N, Key_less, 0x0147, + Key_N, Key_equal, 0x20A6, + Key_N, Key_G, 0x014A, + Key_N, Key_O, 0x2116, + Key_N, Key_o, 0x2116, + Key_N, Key_asciitilde, 0x00D1, + Key_O, Key_quotedbl, 0x00D6, + Key_O, Key_apostrophe, 0x00D3, + Key_O, Key_minus, 0x00D5, + Key_O, Key_slash, 0x00D8, + Key_O, Key_greater, 0x00D4, + Key_O, Key_C, 0x00A9, + Key_O, Key_E, 0x0152, + Key_O, Key_R, 0x00AE, + Key_O, Key_S, 0x00A7, + Key_O, Key_X, 0x00A4, + Key_O, Key_asciicircum, 0x00D4, + Key_O, Key_underscore, 0x00BA, + Key_O, Key_grave, 0x00D2, + Key_O, Key_c, 0x00A9, + Key_O, Key_r, 0x00AE, + Key_O, Key_x, 0x00A4, + Key_O, Key_asciitilde, 0x00D5, + Key_O, Key_diaeresis, 0x00D6, + Key_O, Key_acute, 0x00D3, + Key_P, Key_exclam, 0x00B6, + Key_P, Key_period, 0x1E56, + Key_P, Key_P, 0x00B6, + Key_P, Key_t, 0x20A7, + Key_R, Key_apostrophe, 0x0154, + Key_R, Key_comma, 0x0156, + Key_R, Key_less, 0x0158, + Key_R, Key_O, 0x00AE, + Key_R, Key_s, 0x20A8, + Key_S, Key_exclam, 0x00A7, + Key_S, Key_apostrophe, 0x015A, + Key_S, Key_comma, 0x015E, + Key_S, Key_period, 0x1E60, + Key_S, Key_0, 0x00A7, + Key_S, Key_1, 0x00B9, + Key_S, Key_2, 0x00B2, + Key_S, Key_3, 0x00B3, + Key_S, Key_less, 0x0160, + Key_S, Key_M, 0x2120, + Key_S, Key_O, 0x00A7, + Key_S, Key_m, 0x2120, + Key_S, Key_cedilla, 0x015E, + Key_T, Key_minus, 0x0166, + Key_T, Key_period, 0x1E6A, + Key_T, Key_slash, 0x0166, + Key_T, Key_less, 0x0164, + Key_T, Key_H, 0x00DE, + Key_T, Key_M, 0x2122, + Key_T, Key_m, 0x2122, + Key_U, Key_quotedbl, 0x00DC, + Key_U, Key_apostrophe, 0x00DA, + Key_U, Key_asterisk, 0x016E, + Key_U, Key_comma, 0x0172, + Key_U, Key_minus, 0x016A, + Key_U, Key_slash, 0x00B5, + Key_U, Key_greater, 0x00DB, + Key_U, Key_A, 0x0102, + Key_U, Key_E, 0x0114, + Key_U, Key_G, 0x011E, + Key_U, Key_I, 0x012C, + Key_U, Key_O, 0x014E, + Key_U, Key_U, 0x016C, + Key_U, Key_asciicircum, 0x00DB, + Key_U, Key_underscore, 0x016A, + Key_U, Key_grave, 0x00D9, + Key_U, Key_a, 0x0103, + Key_U, Key_e, 0x0115, + Key_U, Key_g, 0x011F, + Key_U, Key_i, 0x012D, + Key_U, Key_o, 0x014F, + Key_U, Key_u, 0x016D, + Key_U, Key_asciitilde, 0x0168, + Key_U, Key_diaeresis, 0x00DC, + Key_U, Key_acute, 0x00DA, + Key_U, 0x0228, 0x1E1C, + Key_U, 0x0229, 0x1E1D, + Key_U, Key_Cyrillic_a, 0x04D1, + Key_U, Key_Cyrillic_ie, 0x04D7, + Key_U, Key_Cyrillic_i, 0x0439, + Key_U, Key_Cyrillic_u, 0x045E, + Key_U, Key_Cyrillic_zhe, 0x04C2, + Key_U, Key_Cyrillic_A, 0x04D0, + Key_U, Key_Cyrillic_IE, 0x04D6, + Key_U, Key_Cyrillic_I, 0x0419, + Key_U, Key_Cyrillic_U, 0x040E, + Key_U, Key_Cyrillic_ZHE, 0x04C1, + Key_U, Key_Greek_ALPHA, 0x1FB8, + Key_U, Key_Greek_IOTA, 0x1FD8, + Key_U, Key_Greek_UPSILON, 0x1FE8, + Key_U, Key_Greek_alpha, 0x1FB0, + Key_U, Key_Greek_iota, 0x1FD0, + Key_U, Key_Greek_upsilon, 0x1FE0, + Key_U, 0x1EA0, 0x1EB6, + Key_U, 0x1EA1, 0x1EB7, + Key_V, Key_L, 0x007C, + Key_W, Key_equal, 0x20A9, + Key_W, Key_asciicircum, 0x0174, + Key_X, Key_0, 0x00A4, + Key_X, Key_O, 0x00A4, + Key_X, Key_o, 0x00A4, + Key_Y, Key_quotedbl, 0x0178, + Key_Y, Key_apostrophe, 0x00DD, + Key_Y, Key_minus, 0x00A5, + Key_Y, Key_equal, 0x00A5, + Key_Y, Key_asciicircum, 0x0176, + Key_Y, Key_diaeresis, 0x0178, + Key_Y, Key_acute, 0x00DD, + Key_Z, Key_apostrophe, 0x0179, + Key_Z, Key_period, 0x017B, + Key_Z, Key_less, 0x017D, + Key_asciicircum, Key_space, 0x005E, + Key_asciicircum, Key_parenleft, 0x207D, + Key_asciicircum, Key_parenright, 0x207E, + Key_asciicircum, Key_plus, 0x207A, + Key_asciicircum, Key_minus, 0x00AF, + Key_asciicircum, Key_period, 0x00B7, + Key_asciicircum, Key_slash, 0x007C, + Key_asciicircum, Key_0, 0x00B0, + Key_asciicircum, Key_1, 0x00B9, + Key_asciicircum, Key_2, 0x00B2, + Key_asciicircum, Key_3, 0x00B3, + Key_asciicircum, Key_4, 0x2074, + Key_asciicircum, Key_5, 0x2075, + Key_asciicircum, Key_6, 0x2076, + Key_asciicircum, Key_7, 0x2077, + Key_asciicircum, Key_8, 0x2078, + Key_asciicircum, Key_9, 0x2079, + Key_asciicircum, Key_equal, 0x207C, + Key_asciicircum, Key_A, 0x00C2, + Key_asciicircum, Key_C, 0x0108, + Key_asciicircum, Key_E, 0x00CA, + Key_asciicircum, Key_G, 0x011C, + Key_asciicircum, Key_H, 0x0124, + Key_asciicircum, Key_I, 0x00CE, + Key_asciicircum, Key_J, 0x0134, + Key_asciicircum, Key_O, 0x00D4, + Key_asciicircum, Key_S, 0x015C, + Key_asciicircum, Key_U, 0x00DB, + Key_asciicircum, Key_W, 0x0174, + Key_asciicircum, Key_Y, 0x0176, + Key_asciicircum, Key_Z, 0x1E90, + Key_asciicircum, Key_underscore, 0x00AF, + Key_asciicircum, Key_a, 0x00E2, + Key_asciicircum, Key_c, 0x0109, + Key_asciicircum, Key_e, 0x00EA, + Key_asciicircum, Key_g, 0x011D, + Key_asciicircum, Key_h, 0x0125, + Key_asciicircum, Key_i, 0x00EE, + Key_asciicircum, Key_j, 0x0135, + Key_asciicircum, Key_o, 0x00F4, + Key_asciicircum, Key_s, 0x015D, + Key_asciicircum, Key_u, 0x00FB, + Key_asciicircum, Key_w, 0x0175, + Key_asciicircum, Key_y, 0x0177, + Key_asciicircum, Key_z, 0x1E91, + Key_asciicircum, 0x1EA0, 0x1EAC, + Key_asciicircum, 0x1EA1, 0x1EAD, + Key_asciicircum, 0x1EB8, 0x1EC6, + Key_asciicircum, 0x1EB9, 0x1EC7, + Key_asciicircum, 0x1ECC, 0x1ED8, + Key_asciicircum, 0x1ECD, 0x1ED9, + Key_asciicircum, 0x2212, 0x207B, + Key_asciicircum, 0x4E00, 0x3192, + Key_asciicircum, 0x4E01, 0x319C, + Key_asciicircum, 0x4E09, 0x3194, + Key_asciicircum, 0x4E0A, 0x3196, + Key_asciicircum, 0x4E0B, 0x3198, + Key_asciicircum, 0x4E19, 0x319B, + Key_asciicircum, 0x4E2D, 0x3197, + Key_asciicircum, 0x4E59, 0x319A, + Key_asciicircum, 0x4E8C, 0x3193, + Key_asciicircum, 0x4EBA, 0x319F, + Key_asciicircum, 0x56DB, 0x3195, + Key_asciicircum, 0x5730, 0x319E, + Key_asciicircum, 0x5929, 0x319D, + Key_asciicircum, 0x7532, 0x3199, + Key_asciicircum, Key_KP_Space, 0x00B2, + Key_asciicircum, Key_KP_Add, 0x207A, + Key_asciicircum, Key_KP_0, 0x2070, + Key_asciicircum, Key_KP_1, 0x00B9, + Key_asciicircum, Key_KP_2, 0x00B2, + Key_asciicircum, Key_KP_3, 0x00B3, + Key_asciicircum, Key_KP_4, 0x2074, + Key_asciicircum, Key_KP_5, 0x2075, + Key_asciicircum, Key_KP_6, 0x2076, + Key_asciicircum, Key_KP_7, 0x2077, + Key_asciicircum, Key_KP_8, 0x2078, + Key_asciicircum, Key_KP_9, 0x2079, + Key_asciicircum, Key_KP_Equal, 0x207C, + Key_underscore, Key_parenleft, 0x208D, + Key_underscore, Key_parenright, 0x208E, + Key_underscore, Key_plus, 0x208A, + Key_underscore, Key_0, 0x2080, + Key_underscore, Key_1, 0x2081, + Key_underscore, Key_2, 0x2082, + Key_underscore, Key_3, 0x2083, + Key_underscore, Key_4, 0x2084, + Key_underscore, Key_5, 0x2085, + Key_underscore, Key_6, 0x2086, + Key_underscore, Key_7, 0x2087, + Key_underscore, Key_8, 0x2088, + Key_underscore, Key_9, 0x2089, + Key_underscore, Key_equal, 0x208C, + Key_underscore, Key_A, 0x00AA, + Key_underscore, Key_E, 0x0112, + Key_underscore, Key_G, 0x1E20, + Key_underscore, Key_I, 0x012A, + Key_underscore, Key_O, 0x00BA, + Key_underscore, Key_U, 0x016A, + Key_underscore, Key_Y, 0x0232, + Key_underscore, Key_asciicircum, 0x00AF, + Key_underscore, Key_underscore, 0x00AF, + Key_underscore, Key_a, 0x00AA, + Key_underscore, Key_e, 0x0113, + Key_underscore, Key_g, 0x1E21, + Key_underscore, Key_i, 0x012B, + Key_underscore, Key_o, 0x00BA, + Key_underscore, Key_u, 0x016B, + Key_underscore, Key_y, 0x0233, + Key_underscore, Key_Adiaeresis, 0x01DE, + Key_underscore, Key_AE, 0x01E2, + Key_underscore, Key_Otilde, 0x022C, + Key_underscore, Key_Odiaeresis, 0x022A, + Key_underscore, 0x00DC, 0x01D5, + Key_underscore, Key_adiaeresis, 0x01DF, + Key_underscore, Key_ae, 0x01E3, + Key_underscore, Key_otilde, 0x022D, + Key_underscore, Key_odiaeresis, 0x022B, + Key_underscore, Key_udiaeresis, 0x01D6, + Key_underscore, 0x01EA, 0x01EC, + Key_underscore, 0x01EB, 0x01ED, + Key_underscore, 0x0226, 0x01E0, + Key_underscore, 0x0227, 0x01E1, + Key_underscore, 0x022E, 0x0230, + Key_underscore, 0x022F, 0x0231, + Key_underscore, Key_Cyrillic_i, 0x04E3, + Key_underscore, Key_Cyrillic_u, 0x04EF, + Key_underscore, Key_Cyrillic_I, 0x04E2, + Key_underscore, Key_Cyrillic_U, 0x04EE, + Key_underscore, Key_Greek_ALPHA, 0x1FB9, + Key_underscore, Key_Greek_IOTA, 0x1FD9, + Key_underscore, Key_Greek_UPSILON, 0x1FE9, + Key_underscore, Key_Greek_alpha, 0x1FB1, + Key_underscore, Key_Greek_iota, 0x1FD1, + Key_underscore, Key_Greek_upsilon, 0x1FE1, + Key_underscore, 0x1E36, 0x1E38, + Key_underscore, 0x1E37, 0x1E39, + Key_underscore, 0x1E5A, 0x1E5C, + Key_underscore, 0x1E5B, 0x1E5D, + Key_underscore, 0x2212, 0x208B, + Key_underscore, Key_KP_Space, 0x2082, + Key_underscore, Key_KP_Add, 0x208A, + Key_underscore, Key_KP_0, 0x2080, + Key_underscore, Key_KP_1, 0x2081, + Key_underscore, Key_KP_2, 0x2082, + Key_underscore, Key_KP_3, 0x2083, + Key_underscore, Key_KP_4, 0x2084, + Key_underscore, Key_KP_5, 0x2085, + Key_underscore, Key_KP_6, 0x2086, + Key_underscore, Key_KP_7, 0x2087, + Key_underscore, Key_KP_8, 0x2088, + Key_underscore, Key_KP_9, 0x2089, + Key_underscore, Key_KP_Equal, 0x208C, + Key_grave, Key_space, 0x0060, + Key_grave, Key_A, 0x00C0, + Key_grave, Key_E, 0x00C8, + Key_grave, Key_I, 0x00CC, + Key_grave, Key_N, 0x01F8, + Key_grave, Key_O, 0x00D2, + Key_grave, Key_U, 0x00D9, + Key_grave, Key_W, 0x1E80, + Key_grave, Key_Y, 0x1EF2, + Key_grave, Key_a, 0x00E0, + Key_grave, Key_e, 0x00E8, + Key_grave, Key_i, 0x00EC, + Key_grave, Key_n, 0x01F9, + Key_grave, Key_o, 0x00F2, + Key_grave, Key_u, 0x00F9, + Key_grave, Key_w, 0x1E81, + Key_grave, Key_y, 0x1EF3, + Key_grave, Key_Acircumflex, 0x1EA6, + Key_grave, Key_Ecircumflex, 0x1EC0, + Key_grave, Key_Ocircumflex, 0x1ED2, + Key_grave, 0x00DC, 0x01DB, + Key_grave, Key_acircumflex, 0x1EA7, + Key_grave, Key_ecircumflex, 0x1EC1, + Key_grave, Key_ocircumflex, 0x1ED3, + Key_grave, Key_udiaeresis, 0x01DC, + Key_grave, Key_Ohorn, 0x1EDC, + Key_grave, Key_ohorn, 0x1EDD, + Key_grave, Key_Uhorn, 0x1EEA, + Key_grave, Key_uhorn, 0x1EEB, + Key_grave, Key_Abreve, 0x1EB0, + Key_grave, Key_abreve, 0x1EB1, + Key_grave, Key_Emacron, 0x1E14, + Key_grave, Key_emacron, 0x1E15, + Key_grave, Key_Omacron, 0x1E50, + Key_grave, Key_omacron, 0x1E51, + Key_grave, Key_Cyrillic_ie, 0x0450, + Key_grave, Key_Cyrillic_i, 0x045D, + Key_grave, Key_Cyrillic_IE, 0x0400, + Key_grave, Key_Cyrillic_I, 0x040D, + Key_grave, Key_Greek_iotadieresis, 0x1FD2, + Key_grave, Key_Greek_upsilondieresis, 0x1FE2, + Key_grave, Key_Greek_ALPHA, 0x1FBA, + Key_grave, Key_Greek_EPSILON, 0x1FC8, + Key_grave, Key_Greek_ETA, 0x1FCA, + Key_grave, Key_Greek_IOTA, 0x1FDA, + Key_grave, Key_Greek_OMICRON, 0x1FF8, + Key_grave, Key_Greek_UPSILON, 0x1FEA, + Key_grave, Key_Greek_OMEGA, 0x1FFA, + Key_grave, Key_Greek_alpha, 0x1F70, + Key_grave, Key_Greek_epsilon, 0x1F72, + Key_grave, Key_Greek_eta, 0x1F74, + Key_grave, Key_Greek_iota, 0x1F76, + Key_grave, Key_Greek_omicron, 0x1F78, + Key_grave, Key_Greek_upsilon, 0x1F7A, + Key_grave, Key_Greek_omega, 0x1F7C, + Key_grave, 0x1F00, 0x1F02, + Key_grave, 0x1F01, 0x1F03, + Key_grave, 0x1F08, 0x1F0A, + Key_grave, 0x1F09, 0x1F0B, + Key_grave, 0x1F10, 0x1F12, + Key_grave, 0x1F11, 0x1F13, + Key_grave, 0x1F18, 0x1F1A, + Key_grave, 0x1F19, 0x1F1B, + Key_grave, 0x1F20, 0x1F22, + Key_grave, 0x1F21, 0x1F23, + Key_grave, 0x1F28, 0x1F2A, + Key_grave, 0x1F29, 0x1F2B, + Key_grave, 0x1F30, 0x1F32, + Key_grave, 0x1F31, 0x1F33, + Key_grave, 0x1F38, 0x1F3A, + Key_grave, 0x1F39, 0x1F3B, + Key_grave, 0x1F40, 0x1F42, + Key_grave, 0x1F41, 0x1F43, + Key_grave, 0x1F48, 0x1F4A, + Key_grave, 0x1F49, 0x1F4B, + Key_grave, 0x1F50, 0x1F52, + Key_grave, 0x1F51, 0x1F53, + Key_grave, 0x1F59, 0x1F5B, + Key_grave, 0x1F60, 0x1F62, + Key_grave, 0x1F61, 0x1F63, + Key_grave, 0x1F68, 0x1F6A, + Key_grave, 0x1F69, 0x1F6B, + Key_a, Key_quotedbl, 0x00E4, + Key_a, Key_apostrophe, 0x00E1, + Key_a, Key_parenleft, 0x0103, + Key_a, Key_asterisk, 0x00E5, + Key_a, Key_comma, 0x0105, + Key_a, Key_minus, 0x00E3, + Key_a, Key_greater, 0x00E2, + Key_a, Key_asciicircum, 0x00E2, + Key_a, Key_underscore, 0x00AA, + Key_a, Key_grave, 0x00E0, + Key_a, Key_a, 0x00E5, + Key_a, Key_e, 0x00E6, + Key_a, Key_asciitilde, 0x00E3, + Key_a, Key_diaeresis, 0x00E4, + Key_a, Key_acute, 0x00E1, + Key_b, Key_period, 0x1E03, + Key_b, Key_A, 0x0102, + Key_b, Key_E, 0x0114, + Key_b, Key_G, 0x011E, + Key_b, Key_I, 0x012C, + Key_b, Key_O, 0x014E, + Key_b, Key_U, 0x016C, + Key_b, Key_a, 0x0103, + Key_b, Key_e, 0x0115, + Key_b, Key_g, 0x011F, + Key_b, Key_i, 0x012D, + Key_b, Key_o, 0x014F, + Key_b, Key_u, 0x016D, + Key_b, 0x0228, 0x1E1C, + Key_b, 0x0229, 0x1E1D, + Key_b, Key_Cyrillic_a, 0x04D1, + Key_b, Key_Cyrillic_ie, 0x04D7, + Key_b, Key_Cyrillic_i, 0x0439, + Key_b, Key_Cyrillic_u, 0x045E, + Key_b, Key_Cyrillic_zhe, 0x04C2, + Key_b, Key_Cyrillic_A, 0x04D0, + Key_b, Key_Cyrillic_IE, 0x04D6, + Key_b, Key_Cyrillic_I, 0x0419, + Key_b, Key_Cyrillic_U, 0x040E, + Key_b, Key_Cyrillic_ZHE, 0x04C1, + Key_b, Key_Greek_ALPHA, 0x1FB8, + Key_b, Key_Greek_IOTA, 0x1FD8, + Key_b, Key_Greek_UPSILON, 0x1FE8, + Key_b, Key_Greek_alpha, 0x1FB0, + Key_b, Key_Greek_iota, 0x1FD0, + Key_b, Key_Greek_upsilon, 0x1FE0, + Key_b, 0x1EA0, 0x1EB6, + Key_b, 0x1EA1, 0x1EB7, + Key_c, Key_apostrophe, 0x0107, + Key_c, Key_comma, 0x00E7, + Key_c, Key_period, 0x010B, + Key_c, Key_slash, 0x00A2, + Key_c, Key_0, 0x00A9, + Key_c, Key_less, 0x010D, + Key_c, Key_equal, 0x20AC, + Key_c, Key_A, 0x01CD, + Key_c, Key_C, 0x010C, + Key_c, Key_D, 0x010E, + Key_c, Key_E, 0x011A, + Key_c, Key_G, 0x01E6, + Key_c, Key_H, 0x021E, + Key_c, Key_I, 0x01CF, + Key_c, Key_K, 0x01E8, + Key_c, Key_L, 0x013D, + Key_c, Key_N, 0x0147, + Key_c, Key_O, 0x00A9, + Key_c, Key_R, 0x0158, + Key_c, Key_S, 0x0160, + Key_c, Key_T, 0x0164, + Key_c, Key_U, 0x01D3, + Key_c, Key_Z, 0x017D, + Key_c, Key_a, 0x01CE, + Key_c, Key_c, 0x010D, + Key_c, Key_d, 0x010F, + Key_c, Key_e, 0x011B, + Key_c, Key_g, 0x01E7, + Key_c, Key_h, 0x021F, + Key_c, Key_i, 0x01D0, + Key_c, Key_j, 0x01F0, + Key_c, Key_k, 0x01E9, + Key_c, Key_l, 0x013E, + Key_c, Key_n, 0x0148, + Key_c, Key_o, 0x00A9, + Key_c, Key_r, 0x0159, + Key_c, Key_s, 0x0161, + Key_c, Key_t, 0x0165, + Key_c, Key_u, 0x01D4, + Key_c, Key_z, 0x017E, + Key_c, Key_bar, 0x00A2, + Key_c, 0x00DC, 0x01D9, + Key_c, Key_udiaeresis, 0x01DA, + Key_c, 0x01B7, 0x01EE, + Key_c, 0x0292, 0x01EF, + Key_d, Key_minus, 0x0111, + Key_d, Key_period, 0x1E0B, + Key_d, Key_less, 0x010F, + Key_d, Key_h, 0x00F0, + Key_e, Key_quotedbl, 0x00EB, + Key_e, Key_apostrophe, 0x00E9, + Key_e, Key_comma, 0x0119, + Key_e, Key_minus, 0x0113, + Key_e, Key_period, 0x0117, + Key_e, Key_less, 0x011B, + Key_e, Key_equal, 0x20AC, + Key_e, Key_greater, 0x00EA, + Key_e, Key_asciicircum, 0x00EA, + Key_e, Key_underscore, 0x0113, + Key_e, Key_grave, 0x00E8, + Key_e, Key_e, 0x0259, + Key_e, Key_diaeresis, 0x00EB, + Key_e, Key_acute, 0x00E9, + Key_f, Key_period, 0x1E1F, + Key_f, Key_S, 0x017F, + Key_f, Key_s, 0x017F, + Key_g, Key_parenleft, 0x011F, + Key_g, Key_comma, 0x0123, + Key_g, Key_period, 0x0121, + Key_g, Key_U, 0x011F, + Key_g, Key_breve, 0x011F, + Key_i, Key_quotedbl, 0x00EF, + Key_i, Key_apostrophe, 0x00ED, + Key_i, Key_comma, 0x012F, + Key_i, Key_minus, 0x012B, + Key_i, Key_period, 0x0131, + Key_i, Key_greater, 0x00EE, + Key_i, Key_asciicircum, 0x00EE, + Key_i, Key_underscore, 0x012B, + Key_i, Key_grave, 0x00EC, + Key_i, Key_asciitilde, 0x0129, + Key_i, Key_diaeresis, 0x00EF, + Key_i, Key_acute, 0x00ED, + Key_k, Key_comma, 0x0137, + Key_k, Key_k, 0x0138, + Key_l, Key_apostrophe, 0x013A, + Key_l, Key_comma, 0x013C, + Key_l, Key_minus, 0x00A3, + Key_l, Key_slash, 0x0142, + Key_l, Key_less, 0x013E, + Key_l, Key_equal, 0x00A3, + Key_l, Key_v, 0x007C, + Key_m, Key_period, 0x1E41, + Key_m, Key_slash, 0x20A5, + Key_m, Key_u, 0x00B5, + Key_n, Key_apostrophe, 0x0144, + Key_n, Key_comma, 0x0146, + Key_n, Key_minus, 0x00F1, + Key_n, Key_less, 0x0148, + Key_n, Key_g, 0x014B, + Key_n, Key_asciitilde, 0x00F1, + Key_o, Key_quotedbl, 0x00F6, + Key_o, Key_apostrophe, 0x00F3, + Key_o, Key_minus, 0x00F5, + Key_o, Key_slash, 0x00F8, + Key_o, Key_greater, 0x00F4, + Key_o, Key_A, 0x00C5, + Key_o, Key_C, 0x00A9, + Key_o, Key_R, 0x00AE, + Key_o, Key_U, 0x016E, + Key_o, Key_X, 0x00A4, + Key_o, Key_asciicircum, 0x00F4, + Key_o, Key_underscore, 0x00BA, + Key_o, Key_grave, 0x00F2, + Key_o, Key_a, 0x00E5, + Key_o, Key_c, 0x00A9, + Key_o, Key_e, 0x0153, + Key_o, Key_o, 0x00B0, + Key_o, Key_r, 0x00AE, + Key_o, Key_s, 0x00A7, + Key_o, Key_u, 0x016F, + Key_o, Key_w, 0x1E98, + Key_o, Key_x, 0x00A4, + Key_o, Key_y, 0x1E99, + Key_o, Key_asciitilde, 0x00F5, + Key_o, Key_diaeresis, 0x00F6, + Key_o, Key_acute, 0x00F3, + Key_p, Key_exclam, 0x00B6, + Key_p, Key_period, 0x1E57, + Key_r, Key_apostrophe, 0x0155, + Key_r, Key_comma, 0x0157, + Key_r, Key_less, 0x0159, + Key_s, Key_exclam, 0x00A7, + Key_s, Key_apostrophe, 0x015B, + Key_s, Key_comma, 0x015F, + Key_s, Key_period, 0x1E61, + Key_s, Key_0, 0x00A7, + Key_s, Key_1, 0x00B9, + Key_s, Key_2, 0x00B2, + Key_s, Key_3, 0x00B3, + Key_s, Key_less, 0x0161, + Key_s, Key_M, 0x2120, + Key_s, Key_m, 0x2120, + Key_s, Key_o, 0x00A7, + Key_s, Key_s, 0x00DF, + Key_s, Key_cedilla, 0x015F, + Key_t, Key_minus, 0x0167, + Key_t, Key_period, 0x1E6B, + Key_t, Key_slash, 0x0167, + Key_t, Key_less, 0x0165, + Key_t, Key_M, 0x2122, + Key_t, Key_h, 0x00FE, + Key_t, Key_m, 0x2122, + Key_u, Key_quotedbl, 0x00FC, + Key_u, Key_apostrophe, 0x00FA, + Key_u, Key_asterisk, 0x016F, + Key_u, Key_comma, 0x0173, + Key_u, Key_minus, 0x016B, + Key_u, Key_slash, 0x00B5, + Key_u, Key_greater, 0x00FB, + Key_u, Key_asciicircum, 0x00FB, + Key_u, Key_underscore, 0x016B, + Key_u, Key_grave, 0x00F9, + Key_u, Key_u, 0x016D, + Key_u, Key_asciitilde, 0x0169, + Key_u, Key_diaeresis, 0x00FC, + Key_u, Key_acute, 0x00FA, + Key_v, Key_Z, 0x017D, + Key_v, Key_l, 0x007C, + Key_v, Key_z, 0x017E, + Key_w, Key_asciicircum, 0x0175, + Key_x, Key_0, 0x00A4, + Key_x, Key_O, 0x00A4, + Key_x, Key_o, 0x00A4, + Key_x, Key_x, 0x00D7, + Key_y, Key_quotedbl, 0x00FF, + Key_y, Key_apostrophe, 0x00FD, + Key_y, Key_minus, 0x00A5, + Key_y, Key_equal, 0x00A5, + Key_y, Key_asciicircum, 0x0177, + Key_y, Key_diaeresis, 0x00FF, + Key_y, Key_acute, 0x00FD, + Key_z, Key_apostrophe, 0x017A, + Key_z, Key_period, 0x017C, + Key_z, Key_less, 0x017E, + Key_bar, Key_C, 0x00A2, + Key_bar, Key_c, 0x00A2, + Key_asciitilde, Key_space, 0x007E, + Key_asciitilde, Key_A, 0x00C3, + Key_asciitilde, Key_E, 0x1EBC, + Key_asciitilde, Key_I, 0x0128, + Key_asciitilde, Key_N, 0x00D1, + Key_asciitilde, Key_O, 0x00D5, + Key_asciitilde, Key_U, 0x0168, + Key_asciitilde, Key_V, 0x1E7C, + Key_asciitilde, Key_Y, 0x1EF8, + Key_asciitilde, Key_a, 0x00E3, + Key_asciitilde, Key_e, 0x1EBD, + Key_asciitilde, Key_i, 0x0129, + Key_asciitilde, Key_n, 0x00F1, + Key_asciitilde, Key_o, 0x00F5, + Key_asciitilde, Key_u, 0x0169, + Key_asciitilde, Key_v, 0x1E7D, + Key_asciitilde, Key_y, 0x1EF9, + Key_asciitilde, Key_Acircumflex, 0x1EAA, + Key_asciitilde, Key_Ecircumflex, 0x1EC4, + Key_asciitilde, Key_Ocircumflex, 0x1ED6, + Key_asciitilde, Key_acircumflex, 0x1EAB, + Key_asciitilde, Key_ecircumflex, 0x1EC5, + Key_asciitilde, Key_ocircumflex, 0x1ED7, + Key_asciitilde, Key_Ohorn, 0x1EE0, + Key_asciitilde, Key_ohorn, 0x1EE1, + Key_asciitilde, Key_Uhorn, 0x1EEE, + Key_asciitilde, Key_uhorn, 0x1EEF, + Key_asciitilde, Key_Abreve, 0x1EB4, + Key_asciitilde, Key_abreve, 0x1EB5, + Key_asciitilde, Key_Greek_iotadieresis, 0x1FD7, + Key_asciitilde, Key_Greek_upsilondieresis, 0x1FE7, + Key_asciitilde, Key_Greek_alpha, 0x1FB6, + Key_asciitilde, Key_Greek_eta, 0x1FC6, + Key_asciitilde, Key_Greek_iota, 0x1FD6, + Key_asciitilde, Key_Greek_upsilon, 0x1FE6, + Key_asciitilde, Key_Greek_omega, 0x1FF6, + Key_asciitilde, 0x1F00, 0x1F06, + Key_asciitilde, 0x1F01, 0x1F07, + Key_asciitilde, 0x1F08, 0x1F0E, + Key_asciitilde, 0x1F09, 0x1F0F, + Key_asciitilde, 0x1F20, 0x1F26, + Key_asciitilde, 0x1F21, 0x1F27, + Key_asciitilde, 0x1F28, 0x1F2E, + Key_asciitilde, 0x1F29, 0x1F2F, + Key_asciitilde, 0x1F30, 0x1F36, + Key_asciitilde, 0x1F31, 0x1F37, + Key_asciitilde, 0x1F38, 0x1F3E, + Key_asciitilde, 0x1F39, 0x1F3F, + Key_asciitilde, 0x1F50, 0x1F56, + Key_asciitilde, 0x1F51, 0x1F57, + Key_asciitilde, 0x1F59, 0x1F5F, + Key_asciitilde, 0x1F60, 0x1F66, + Key_asciitilde, 0x1F61, 0x1F67, + Key_asciitilde, 0x1F68, 0x1F6E, + Key_asciitilde, 0x1F69, 0x1F6F, + Key_diaeresis, Key_apostrophe, 0x0385, + Key_diaeresis, Key_A, 0x00C4, + Key_diaeresis, Key_E, 0x00CB, + Key_diaeresis, Key_I, 0x00CF, + Key_diaeresis, Key_O, 0x00D6, + Key_diaeresis, Key_U, 0x00DC, + Key_diaeresis, Key_Y, 0x0178, + Key_diaeresis, Key_grave, 0x1FED, + Key_diaeresis, Key_a, 0x00E4, + Key_diaeresis, Key_e, 0x00EB, + Key_diaeresis, Key_i, 0x00EF, + Key_diaeresis, Key_o, 0x00F6, + Key_diaeresis, Key_u, 0x00FC, + Key_diaeresis, Key_y, 0x00FF, + Key_diaeresis, Key_asciitilde, 0x1FC1, + Key_diaeresis, Key_acute, 0x0385, + Key_diaeresis, Key_dead_grave, 0x1FED, + Key_diaeresis, Key_dead_acute, 0x0385, + Key_diaeresis, Key_dead_tilde, 0x1FC1, + Key_macron, Key_A, 0x0100, + Key_macron, Key_E, 0x0112, + Key_macron, Key_G, 0x1E20, + Key_macron, Key_I, 0x012A, + Key_macron, Key_O, 0x014C, + Key_macron, Key_U, 0x016A, + Key_macron, Key_Y, 0x0232, + Key_macron, Key_a, 0x0101, + Key_macron, Key_e, 0x0113, + Key_macron, Key_g, 0x1E21, + Key_macron, Key_i, 0x012B, + Key_macron, Key_o, 0x014D, + Key_macron, Key_u, 0x016B, + Key_macron, Key_y, 0x0233, + Key_macron, Key_Adiaeresis, 0x01DE, + Key_macron, Key_AE, 0x01E2, + Key_macron, Key_Otilde, 0x022C, + Key_macron, Key_Odiaeresis, 0x022A, + Key_macron, 0x00DC, 0x01D5, + Key_macron, Key_adiaeresis, 0x01DF, + Key_macron, Key_ae, 0x01E3, + Key_macron, Key_otilde, 0x022D, + Key_macron, Key_odiaeresis, 0x022B, + Key_macron, Key_udiaeresis, 0x01D6, + Key_macron, 0x01EA, 0x01EC, + Key_macron, 0x01EB, 0x01ED, + Key_macron, 0x0226, 0x01E0, + Key_macron, 0x0227, 0x01E1, + Key_macron, 0x022E, 0x0230, + Key_macron, 0x022F, 0x0231, + Key_macron, Key_Cyrillic_i, 0x04E3, + Key_macron, Key_Cyrillic_u, 0x04EF, + Key_macron, Key_Cyrillic_I, 0x04E2, + Key_macron, Key_Cyrillic_U, 0x04EE, + Key_macron, Key_Greek_ALPHA, 0x1FB9, + Key_macron, Key_Greek_IOTA, 0x1FD9, + Key_macron, Key_Greek_UPSILON, 0x1FE9, + Key_macron, Key_Greek_alpha, 0x1FB1, + Key_macron, Key_Greek_iota, 0x1FD1, + Key_macron, Key_Greek_upsilon, 0x1FE1, + Key_macron, 0x1E36, 0x1E38, + Key_macron, 0x1E37, 0x1E39, + Key_macron, 0x1E5A, 0x1E5C, + Key_macron, 0x1E5B, 0x1E5D, + Key_acute, Key_A, 0x00C1, + Key_acute, Key_C, 0x0106, + Key_acute, Key_E, 0x00C9, + Key_acute, Key_G, 0x01F4, + Key_acute, Key_I, 0x00CD, + Key_acute, Key_K, 0x1E30, + Key_acute, Key_L, 0x0139, + Key_acute, Key_M, 0x1E3E, + Key_acute, Key_N, 0x0143, + Key_acute, Key_O, 0x00D3, + Key_acute, Key_P, 0x1E54, + Key_acute, Key_R, 0x0154, + Key_acute, Key_S, 0x015A, + Key_acute, Key_U, 0x00DA, + Key_acute, Key_W, 0x1E82, + Key_acute, Key_Y, 0x00DD, + Key_acute, Key_Z, 0x0179, + Key_acute, Key_a, 0x00E1, + Key_acute, Key_c, 0x0107, + Key_acute, Key_e, 0x00E9, + Key_acute, Key_g, 0x01F5, + Key_acute, Key_i, 0x00ED, + Key_acute, Key_k, 0x1E31, + Key_acute, Key_l, 0x013A, + Key_acute, Key_m, 0x1E3F, + Key_acute, Key_n, 0x0144, + Key_acute, Key_o, 0x00F3, + Key_acute, Key_p, 0x1E55, + Key_acute, Key_r, 0x0155, + Key_acute, Key_s, 0x015B, + Key_acute, Key_u, 0x00FA, + Key_acute, Key_w, 0x1E83, + Key_acute, Key_y, 0x00FD, + Key_acute, Key_z, 0x017A, + Key_acute, Key_Acircumflex, 0x1EA4, + Key_acute, Key_Aring, 0x01FA, + Key_acute, Key_AE, 0x01FC, + Key_acute, Key_Ccedilla, 0x1E08, + Key_acute, Key_Ecircumflex, 0x1EBE, + Key_acute, Key_Idiaeresis, 0x1E2E, + Key_acute, Key_Ocircumflex, 0x1ED0, + Key_acute, Key_Otilde, 0x1E4C, + Key_acute, Key_Ooblique, 0x01FE, + Key_acute, 0x00DC, 0x01D7, + Key_acute, Key_acircumflex, 0x1EA5, + Key_acute, Key_aring, 0x01FB, + Key_acute, Key_ae, 0x01FD, + Key_acute, Key_ccedilla, 0x1E09, + Key_acute, Key_ecircumflex, 0x1EBF, + Key_acute, Key_idiaeresis, 0x1E2F, + Key_acute, Key_ocircumflex, 0x1ED1, + Key_acute, Key_otilde, 0x1E4D, + Key_acute, Key_oslash, 0x01FF, + Key_acute, Key_udiaeresis, 0x01D8, + Key_acute, Key_Ohorn, 0x1EDA, + Key_acute, Key_ohorn, 0x1EDB, + Key_acute, Key_Uhorn, 0x1EE8, + Key_acute, Key_uhorn, 0x1EE9, + Key_acute, Key_Abreve, 0x1EAE, + Key_acute, Key_abreve, 0x1EAF, + Key_acute, Key_Emacron, 0x1E16, + Key_acute, Key_emacron, 0x1E17, + Key_acute, Key_Omacron, 0x1E52, + Key_acute, Key_Utilde, 0x1E78, + Key_acute, Key_omacron, 0x1E53, + Key_acute, Key_utilde, 0x1E79, + Key_acute, Key_Cyrillic_ghe, 0x0453, + Key_acute, Key_Cyrillic_ka, 0x045C, + Key_acute, Key_Cyrillic_GHE, 0x0403, + Key_acute, Key_Cyrillic_KA, 0x040C, + Key_acute, Key_Greek_iotadieresis, 0x0390, + Key_acute, Key_Greek_upsilondieresis, 0x03B0, + Key_acute, Key_Greek_ALPHA, 0x0386, + Key_acute, Key_Greek_EPSILON, 0x0388, + Key_acute, Key_Greek_ETA, 0x0389, + Key_acute, Key_Greek_IOTA, 0x038A, + Key_acute, Key_Greek_OMICRON, 0x038C, + Key_acute, Key_Greek_UPSILON, 0x038E, + Key_acute, Key_Greek_OMEGA, 0x038F, + Key_acute, Key_Greek_alpha, 0x03AC, + Key_acute, Key_Greek_epsilon, 0x03AD, + Key_acute, Key_Greek_eta, 0x03AE, + Key_acute, Key_Greek_iota, 0x03AF, + Key_acute, Key_Greek_omicron, 0x03CC, + Key_acute, Key_Greek_upsilon, 0x03CD, + Key_acute, Key_Greek_omega, 0x03CE, + Key_acute, 0x1F00, 0x1F04, + Key_acute, 0x1F01, 0x1F05, + Key_acute, 0x1F08, 0x1F0C, + Key_acute, 0x1F09, 0x1F0D, + Key_acute, 0x1F10, 0x1F14, + Key_acute, 0x1F11, 0x1F15, + Key_acute, 0x1F18, 0x1F1C, + Key_acute, 0x1F19, 0x1F1D, + Key_acute, 0x1F20, 0x1F24, + Key_acute, 0x1F21, 0x1F25, + Key_acute, 0x1F28, 0x1F2C, + Key_acute, 0x1F29, 0x1F2D, + Key_acute, 0x1F30, 0x1F34, + Key_acute, 0x1F31, 0x1F35, + Key_acute, 0x1F38, 0x1F3C, + Key_acute, 0x1F39, 0x1F3D, + Key_acute, 0x1F40, 0x1F44, + Key_acute, 0x1F41, 0x1F45, + Key_acute, 0x1F48, 0x1F4C, + Key_acute, 0x1F49, 0x1F4D, + Key_acute, 0x1F50, 0x1F54, + Key_acute, 0x1F51, 0x1F55, + Key_acute, 0x1F59, 0x1F5D, + Key_acute, 0x1F60, 0x1F64, + Key_acute, 0x1F61, 0x1F65, + Key_acute, 0x1F68, 0x1F6C, + Key_acute, 0x1F69, 0x1F6D, + Key_cedilla, Key_C, 0x00C7, + Key_cedilla, Key_D, 0x1E10, + Key_cedilla, Key_E, 0x0228, + Key_cedilla, Key_G, 0x0122, + Key_cedilla, Key_H, 0x1E28, + Key_cedilla, Key_K, 0x0136, + Key_cedilla, Key_L, 0x013B, + Key_cedilla, Key_N, 0x0145, + Key_cedilla, Key_R, 0x0156, + Key_cedilla, Key_S, 0x015E, + Key_cedilla, Key_T, 0x0162, + Key_cedilla, Key_c, 0x00E7, + Key_cedilla, Key_d, 0x1E11, + Key_cedilla, Key_e, 0x0229, + Key_cedilla, Key_g, 0x0123, + Key_cedilla, Key_h, 0x1E29, + Key_cedilla, Key_k, 0x0137, + Key_cedilla, Key_l, 0x013C, + Key_cedilla, Key_n, 0x0146, + Key_cedilla, Key_r, 0x0157, + Key_cedilla, Key_s, 0x015F, + Key_cedilla, Key_t, 0x0163, + Key_breve, Key_G, 0x011E, + Key_breve, Key_g, 0x011F, + 0x05B4, Key_hebrew_yod, 0xFB1D, + 0x05B7, 0x05F2, 0xFB1F, + 0x05B7, Key_hebrew_aleph, 0xFB2E, + 0x05B8, Key_hebrew_aleph, 0xFB2F, + 0x05B9, Key_hebrew_waw, 0xFB4B, + 0x05BC, Key_hebrew_aleph, 0xFB30, + 0x05BC, Key_hebrew_beth, 0xFB31, + 0x05BC, Key_hebrew_gimmel, 0xFB32, + 0x05BC, Key_hebrew_daleth, 0xFB33, + 0x05BC, Key_hebrew_he, 0xFB34, + 0x05BC, Key_hebrew_waw, 0xFB35, + 0x05BC, Key_hebrew_zayin, 0xFB36, + 0x05BC, Key_hebrew_teth, 0xFB38, + 0x05BC, Key_hebrew_yod, 0xFB39, + 0x05BC, Key_hebrew_finalkaph, 0xFB3A, + 0x05BC, Key_hebrew_kaph, 0xFB3B, + 0x05BC, Key_hebrew_lamed, 0xFB3C, + 0x05BC, Key_hebrew_mem, 0xFB3E, + 0x05BC, Key_hebrew_nun, 0xFB40, + 0x05BC, Key_hebrew_samekh, 0xFB41, + 0x05BC, Key_hebrew_finalpe, 0xFB43, + 0x05BC, Key_hebrew_pe, 0xFB44, + 0x05BC, Key_hebrew_zadi, 0xFB46, + 0x05BC, Key_hebrew_qoph, 0xFB47, + 0x05BC, Key_hebrew_resh, 0xFB48, + 0x05BC, Key_hebrew_shin, 0xFB49, + 0x05BC, Key_hebrew_taw, 0xFB4A, + 0x05BF, Key_hebrew_beth, 0xFB4C, + 0x05BF, Key_hebrew_kaph, 0xFB4D, + 0x05BF, Key_hebrew_pe, 0xFB4E, + 0x05C1, Key_hebrew_shin, 0xFB2A, + 0x05C1, 0xFB49, 0xFB2C, + 0x05C2, Key_hebrew_shin, 0xFB2B, + 0x05C2, 0xFB49, 0xFB2D, + 0x0653, Key_Arabic_alef, 0x0622, + 0x0654, Key_Arabic_alef, 0x0623, + 0x0654, Key_Arabic_waw, 0x0624, + 0x0654, Key_Arabic_yeh, 0x0626, + 0x0654, 0x06C1, 0x06C2, + 0x0654, 0x06D2, 0x06D3, + 0x0654, 0x06D5, 0x06C0, + 0x0655, Key_Arabic_alef, 0x0625, + Key_Cyrillic_pe, Key_Cyrillic_a, 0x00A7, + Key_Cyrillic_IE, Key_equal, 0x20AC, + Key_Cyrillic_EN, Key_Cyrillic_o, 0x2116, + Key_Cyrillic_EN, Key_Cyrillic_O, 0x2116, + Key_Cyrillic_ES, Key_equal, 0x20AC, + Key_Greek_ALPHA, Key_apostrophe, 0x0386, + Key_Greek_EPSILON, Key_apostrophe, 0x0388, + Key_Greek_ETA, Key_apostrophe, 0x0389, + Key_Greek_IOTA, Key_quotedbl, 0x03AA, + Key_Greek_IOTA, Key_apostrophe, 0x038A, + Key_Greek_OMICRON, Key_apostrophe, 0x038C, + Key_Greek_UPSILON, Key_quotedbl, 0x03AB, + Key_Greek_UPSILON, Key_apostrophe, 0x038E, + Key_Greek_OMEGA, Key_apostrophe, 0x038F, + Key_Greek_alpha, Key_apostrophe, 0x03AC, + Key_Greek_epsilon, Key_apostrophe, 0x03AD, + Key_Greek_eta, Key_apostrophe, 0x03AE, + Key_Greek_iota, Key_quotedbl, 0x03CA, + Key_Greek_iota, Key_apostrophe, 0x03AF, + Key_Greek_iota, Key_Greek_alphaaccent, 0x1FB4, + Key_Greek_iota, Key_Greek_etaaccent, 0x1FC4, + Key_Greek_iota, Key_Greek_omegaaccent, 0x1FF4, + Key_Greek_iota, Key_Greek_ALPHA, 0x1FBC, + Key_Greek_iota, Key_Greek_ETA, 0x1FCC, + Key_Greek_iota, Key_Greek_OMEGA, 0x1FFC, + Key_Greek_iota, Key_Greek_alpha, 0x1FB3, + Key_Greek_iota, Key_Greek_eta, 0x1FC3, + Key_Greek_iota, Key_Greek_omega, 0x1FF3, + Key_Greek_iota, 0x1F00, 0x1F80, + Key_Greek_iota, 0x1F01, 0x1F81, + Key_Greek_iota, 0x1F02, 0x1F82, + Key_Greek_iota, 0x1F03, 0x1F83, + Key_Greek_iota, 0x1F04, 0x1F84, + Key_Greek_iota, 0x1F05, 0x1F85, + Key_Greek_iota, 0x1F06, 0x1F86, + Key_Greek_iota, 0x1F07, 0x1F87, + Key_Greek_iota, 0x1F08, 0x1F88, + Key_Greek_iota, 0x1F09, 0x1F89, + Key_Greek_iota, 0x1F0A, 0x1F8A, + Key_Greek_iota, 0x1F0B, 0x1F8B, + Key_Greek_iota, 0x1F0C, 0x1F8C, + Key_Greek_iota, 0x1F0D, 0x1F8D, + Key_Greek_iota, 0x1F0E, 0x1F8E, + Key_Greek_iota, 0x1F0F, 0x1F8F, + Key_Greek_iota, 0x1F20, 0x1F90, + Key_Greek_iota, 0x1F21, 0x1F91, + Key_Greek_iota, 0x1F22, 0x1F92, + Key_Greek_iota, 0x1F23, 0x1F93, + Key_Greek_iota, 0x1F24, 0x1F94, + Key_Greek_iota, 0x1F25, 0x1F95, + Key_Greek_iota, 0x1F26, 0x1F96, + Key_Greek_iota, 0x1F27, 0x1F97, + Key_Greek_iota, 0x1F28, 0x1F98, + Key_Greek_iota, 0x1F29, 0x1F99, + Key_Greek_iota, 0x1F2A, 0x1F9A, + Key_Greek_iota, 0x1F2B, 0x1F9B, + Key_Greek_iota, 0x1F2C, 0x1F9C, + Key_Greek_iota, 0x1F2D, 0x1F9D, + Key_Greek_iota, 0x1F2E, 0x1F9E, + Key_Greek_iota, 0x1F2F, 0x1F9F, + Key_Greek_iota, 0x1F60, 0x1FA0, + Key_Greek_iota, 0x1F61, 0x1FA1, + Key_Greek_iota, 0x1F62, 0x1FA2, + Key_Greek_iota, 0x1F63, 0x1FA3, + Key_Greek_iota, 0x1F64, 0x1FA4, + Key_Greek_iota, 0x1F65, 0x1FA5, + Key_Greek_iota, 0x1F66, 0x1FA6, + Key_Greek_iota, 0x1F67, 0x1FA7, + Key_Greek_iota, 0x1F68, 0x1FA8, + Key_Greek_iota, 0x1F69, 0x1FA9, + Key_Greek_iota, 0x1F6A, 0x1FAA, + Key_Greek_iota, 0x1F6B, 0x1FAB, + Key_Greek_iota, 0x1F6C, 0x1FAC, + Key_Greek_iota, 0x1F6D, 0x1FAD, + Key_Greek_iota, 0x1F6E, 0x1FAE, + Key_Greek_iota, 0x1F6F, 0x1FAF, + Key_Greek_iota, 0x1F70, 0x1FB2, + Key_Greek_iota, 0x1F74, 0x1FC2, + Key_Greek_iota, 0x1F7C, 0x1FF2, + Key_Greek_iota, 0x1FB6, 0x1FB7, + Key_Greek_iota, 0x1FC6, 0x1FC7, + Key_Greek_iota, 0x1FF6, 0x1FF7, + Key_Greek_omicron, Key_apostrophe, 0x03CC, + Key_Greek_upsilon, Key_quotedbl, 0x03CB, + Key_Greek_upsilon, Key_apostrophe, 0x03CD, + Key_Greek_omega, Key_apostrophe, 0x03CE, + Key_lessthanequal, 0x0338, 0x2270, + Key_greaterthanequal, 0x0338, 0x2271, + Key_approximate, 0x0338, 0x2247, + Key_identical, 0x0338, 0x2262, + Key_includedin, 0x0338, 0x2284, + Key_includes, 0x0338, 0x2285, + 0x093C, 0x0915, 0x0958, + 0x093C, 0x0916, 0x0959, + 0x093C, 0x0917, 0x095A, + 0x093C, 0x091C, 0x095B, + 0x093C, 0x0921, 0x095C, + 0x093C, 0x0922, 0x095D, + 0x093C, 0x0928, 0x0929, + 0x093C, 0x092B, 0x095E, + 0x093C, 0x092F, 0x095F, + 0x093C, 0x0930, 0x0931, + 0x093C, 0x0933, 0x0934, + 0x09BC, 0x09A1, 0x09DC, + 0x09BC, 0x09A2, 0x09DD, + 0x09BC, 0x09AF, 0x09DF, + 0x09C7, 0x09BE, 0x09CB, + 0x09C7, 0x09D7, 0x09CC, + 0x0A3C, 0x0A16, 0x0A59, + 0x0A3C, 0x0A17, 0x0A5A, + 0x0A3C, 0x0A1C, 0x0A5B, + 0x0A3C, 0x0A2B, 0x0A5E, + 0x0A3C, 0x0A32, 0x0A33, + 0x0A3C, 0x0A38, 0x0A36, + 0x0B3C, 0x0B21, 0x0B5C, + 0x0B3C, 0x0B22, 0x0B5D, + 0x0B47, 0x0B3E, 0x0B4B, + 0x0B47, 0x0B56, 0x0B48, + 0x0B47, 0x0B57, 0x0B4C, + Key_leftcaret, 0x0338, 0x226E, + Key_rightcaret, 0x0338, 0x226F, + Key_underbar, Key_parenleft, 0x208D, + Key_underbar, Key_parenright, 0x208E, + Key_underbar, Key_plus, 0x208A, + Key_underbar, Key_0, 0x2080, + Key_underbar, Key_1, 0x2081, + Key_underbar, Key_2, 0x2082, + Key_underbar, Key_3, 0x2083, + Key_underbar, Key_4, 0x2084, + Key_underbar, Key_5, 0x2085, + Key_underbar, Key_6, 0x2086, + Key_underbar, Key_7, 0x2087, + Key_underbar, Key_8, 0x2088, + Key_underbar, Key_9, 0x2089, + Key_underbar, Key_equal, 0x208C, + 0x0BC6, 0x0BBE, 0x0BCA, + 0x0BC6, 0x0BD7, 0x0BCC, + Key_underbar, 0x2212, 0x208B, + Key_underbar, Key_KP_Space, 0x2082, + Key_underbar, Key_KP_Add, 0x208A, + Key_underbar, Key_KP_0, 0x2080, + Key_underbar, Key_KP_1, 0x2081, + Key_underbar, Key_KP_2, 0x2082, + Key_underbar, Key_KP_3, 0x2083, + Key_underbar, Key_KP_4, 0x2084, + Key_underbar, Key_KP_5, 0x2085, + Key_underbar, Key_KP_6, 0x2086, + Key_underbar, Key_KP_7, 0x2087, + Key_underbar, Key_KP_8, 0x2088, + Key_underbar, Key_KP_9, 0x2089, + Key_underbar, Key_KP_Equal, 0x208C, + 0x0BC7, 0x0BBE, 0x0BCB, + 0x0BD7, 0x0B92, 0x0B94, + Key_rightshoe, 0x0338, 0x2285, + Key_leftshoe, 0x0338, 0x2284, + Key_righttack, 0x0338, 0x22AC, + 0x0C46, 0x0C56, 0x0C48, + 0x0CBF, 0x0CD5, 0x0CC0, + 0x0CC6, 0x0CC2, 0x0CCA, + 0x0CC6, 0x0CD5, 0x0CC7, + 0x0CC6, 0x0CD6, 0x0CC8, + 0x0CCA, 0x0CD5, 0x0CCB, + 0x0D46, 0x0D3E, 0x0D4A, + 0x0D46, 0x0D57, 0x0D4C, + 0x0D47, 0x0D3E, 0x0D4B, + 0x0DD9, 0x0DCA, 0x0DDA, + 0x0DD9, 0x0DCF, 0x0DDC, + 0x0DD9, 0x0DDF, 0x0DDE, + 0x0DDC, 0x0DCA, 0x0DDD, + 0x0F71, 0x0F72, 0x0F73, + 0x0F71, 0x0F74, 0x0F75, + 0x0F71, 0x0F80, 0x0F81, + 0x0F90, 0x0FB5, 0x0FB9, + 0x0F92, 0x0FB7, 0x0F93, + 0x0F9C, 0x0FB7, 0x0F9D, + 0x0FA1, 0x0FB7, 0x0FA2, + 0x0FA6, 0x0FB7, 0x0FA7, + 0x0FAB, 0x0FB7, 0x0FAC, + 0x0FB2, 0x0F80, 0x0F76, + 0x0FB3, 0x0F80, 0x0F78, + 0x0FB5, 0x0F40, 0x0F69, + 0x0FB7, 0x0F42, 0x0F43, + 0x0FB7, 0x0F4C, 0x0F4D, + 0x0FB7, 0x0F51, 0x0F52, + 0x0FB7, 0x0F56, 0x0F57, + 0x0FB7, 0x0F5B, 0x0F5C, + 0x102E, 0x1025, 0x1026, + 0x1100, 0x1100, 0x1101, + 0x1102, 0x1100, 0x1113, + 0x1102, 0x1102, 0x1114, + 0x1102, 0x1103, 0x1115, + 0x1102, 0x1107, 0x1116, + 0x1103, 0x1100, 0x1117, + 0x1103, 0x1103, 0x1104, + 0x1105, 0x1102, 0x1118, + 0x1105, 0x1105, 0x1119, + 0x1105, 0x110B, 0x111B, + 0x1105, 0x1112, 0x111A, + 0x1106, 0x1107, 0x111C, + 0x1106, 0x110B, 0x111D, + 0x1107, 0x1100, 0x111E, + 0x1107, 0x1102, 0x111F, + 0x1107, 0x1103, 0x1120, + 0x1107, 0x1107, 0x1108, + 0x1107, 0x1109, 0x1121, + 0x1107, 0x110A, 0x1125, + 0x1107, 0x110B, 0x112B, + 0x1107, 0x110C, 0x1127, + 0x1107, 0x110E, 0x1128, + 0x1107, 0x1110, 0x1129, + 0x1107, 0x1111, 0x112A, + 0x1107, 0x112B, 0x112C, + 0x1107, 0x112D, 0x1122, + 0x1107, 0x112F, 0x1123, + 0x1107, 0x1132, 0x1124, + 0x1107, 0x1136, 0x1126, + 0x1108, 0x110B, 0x112C, + 0x1109, 0x1100, 0x112D, + 0x1109, 0x1102, 0x112E, + 0x1109, 0x1103, 0x112F, + 0x1109, 0x1105, 0x1130, + 0x1109, 0x1106, 0x1131, + 0x1109, 0x1107, 0x1132, + 0x1109, 0x1109, 0x110A, + 0x1109, 0x110A, 0x1134, + 0x1109, 0x110B, 0x1135, + 0x1109, 0x110C, 0x1136, + 0x1109, 0x110E, 0x1137, + 0x1109, 0x110F, 0x1138, + 0x1109, 0x1110, 0x1139, + 0x1109, 0x1111, 0x113A, + 0x1109, 0x1112, 0x113B, + 0x1109, 0x111E, 0x1133, + 0x110A, 0x1109, 0x1134, + 0x110B, 0x1100, 0x1141, + 0x110B, 0x1103, 0x1142, + 0x110B, 0x1106, 0x1143, + 0x110B, 0x1107, 0x1144, + 0x110B, 0x1109, 0x1145, + 0x110B, 0x110B, 0x1147, + 0x110B, 0x110C, 0x1148, + 0x110B, 0x110E, 0x1149, + 0x110B, 0x1110, 0x114A, + 0x110B, 0x1111, 0x114B, + 0x110B, 0x1140, 0x1146, + 0x110C, 0x110B, 0x114D, + 0x110C, 0x110C, 0x110D, + 0x110E, 0x110F, 0x1152, + 0x110E, 0x1112, 0x1153, + 0x1111, 0x1107, 0x1156, + 0x1111, 0x110B, 0x1157, + 0x1112, 0x1112, 0x1158, + 0x1121, 0x1100, 0x1122, + 0x1121, 0x1103, 0x1123, + 0x1121, 0x1107, 0x1124, + 0x1121, 0x1109, 0x1125, + 0x1121, 0x110C, 0x1126, + 0x1132, 0x1100, 0x1133, + 0x113C, 0x113C, 0x113D, + 0x113E, 0x113E, 0x113F, + 0x114E, 0x114E, 0x114F, + 0x1150, 0x1150, 0x1151, + 0x1161, 0x1169, 0x1176, + 0x1161, 0x116E, 0x1177, + 0x1161, 0x1175, 0x1162, + 0x1163, 0x1169, 0x1178, + 0x1163, 0x116D, 0x1179, + 0x1163, 0x1175, 0x1164, + 0x1165, 0x1169, 0x117A, + 0x1165, 0x116E, 0x117B, + 0x1165, 0x1173, 0x117C, + 0x1165, 0x1175, 0x1166, + 0x1167, 0x1169, 0x117D, + 0x1167, 0x116E, 0x117E, + 0x1167, 0x1175, 0x1168, + 0x1169, 0x1161, 0x116A, + 0x1169, 0x1162, 0x116B, + 0x1169, 0x1165, 0x117F, + 0x1169, 0x1166, 0x1180, + 0x1169, 0x1168, 0x1181, + 0x1169, 0x1169, 0x1182, + 0x1169, 0x116E, 0x1183, + 0x1169, 0x1175, 0x116C, + 0x116A, 0x1175, 0x116B, + 0x116D, 0x1163, 0x1184, + 0x116D, 0x1164, 0x1185, + 0x116D, 0x1167, 0x1186, + 0x116D, 0x1169, 0x1187, + 0x116D, 0x1175, 0x1188, + 0x116E, 0x1161, 0x1189, + 0x116E, 0x1162, 0x118A, + 0x116E, 0x1165, 0x116F, + 0x116E, 0x1166, 0x1170, + 0x116E, 0x1168, 0x118C, + 0x116E, 0x116E, 0x118D, + 0x116E, 0x1175, 0x1171, + 0x116E, 0x117C, 0x118B, + 0x116F, 0x1173, 0x118B, + 0x116F, 0x1175, 0x1170, + 0x1172, 0x1161, 0x118E, + 0x1172, 0x1165, 0x118F, + 0x1172, 0x1166, 0x1190, + 0x1172, 0x1167, 0x1191, + 0x1172, 0x1168, 0x1192, + 0x1172, 0x116E, 0x1193, + 0x1172, 0x1175, 0x1194, + 0x1173, 0x116E, 0x1195, + 0x1173, 0x1173, 0x1196, + 0x1173, 0x1175, 0x1174, + 0x1174, 0x116E, 0x1197, + 0x1175, 0x1161, 0x1198, + 0x1175, 0x1163, 0x1199, + 0x1175, 0x1169, 0x119A, + 0x1175, 0x116E, 0x119B, + 0x1175, 0x1173, 0x119C, + 0x1175, 0x119E, 0x119D, + 0x119E, 0x1165, 0x119F, + 0x119E, 0x116E, 0x11A0, + 0x119E, 0x1175, 0x11A1, + 0x119E, 0x119E, 0x11A2, + 0x11A8, 0x11A8, 0x11A9, + 0x11A8, 0x11AF, 0x11C3, + 0x11A8, 0x11BA, 0x11AA, + 0x11A8, 0x11E7, 0x11C4, + 0x11AA, 0x11A8, 0x11C4, + 0x11AB, 0x11A8, 0x11C5, + 0x11AB, 0x11AE, 0x11C6, + 0x11AB, 0x11BA, 0x11C7, + 0x11AB, 0x11BD, 0x11AC, + 0x11AB, 0x11C0, 0x11C9, + 0x11AB, 0x11C2, 0x11AD, + 0x11AB, 0x11EB, 0x11C8, + 0x11AE, 0x11A8, 0x11CA, + 0x11AE, 0x11AF, 0x11CB, + 0x11AF, 0x11A8, 0x11B0, + 0x11AF, 0x11AA, 0x11CC, + 0x11AF, 0x11AB, 0x11CD, + 0x11AF, 0x11AE, 0x11CE, + 0x11AF, 0x11AF, 0x11D0, + 0x11AF, 0x11B7, 0x11B1, + 0x11AF, 0x11B8, 0x11B2, + 0x11AF, 0x11B9, 0x11D3, + 0x11AF, 0x11BA, 0x11B3, + 0x11AF, 0x11BB, 0x11D6, + 0x11AF, 0x11BF, 0x11D8, + 0x11AF, 0x11C0, 0x11B4, + 0x11AF, 0x11C1, 0x11B5, + 0x11AF, 0x11C2, 0x11B6, + 0x11AF, 0x11DA, 0x11D1, + 0x11AF, 0x11DD, 0x11D2, + 0x11AF, 0x11E5, 0x11D4, + 0x11AF, 0x11E6, 0x11D5, + 0x11AF, 0x11EB, 0x11D7, + 0x11AF, 0x11F9, 0x11D9, + 0x11B0, 0x11BA, 0x11CC, + 0x11B1, 0x11A8, 0x11D1, + 0x11B1, 0x11BA, 0x11D2, + 0x11B2, 0x11BA, 0x11D3, + 0x11B2, 0x11BC, 0x11D5, + 0x11B2, 0x11C2, 0x11D4, + 0x11B3, 0x11BA, 0x11D6, + 0x11B7, 0x11A8, 0x11DA, + 0x11B7, 0x11AF, 0x11DB, + 0x11B7, 0x11B8, 0x11DC, + 0x11B7, 0x11BA, 0x11DD, + 0x11B7, 0x11BB, 0x11DE, + 0x11B7, 0x11BC, 0x11E2, + 0x11B7, 0x11BE, 0x11E0, + 0x11B7, 0x11C2, 0x11E1, + 0x11B7, 0x11EB, 0x11DF, + 0x11B8, 0x11AF, 0x11E3, + 0x11B8, 0x11BA, 0x11B9, + 0x11B8, 0x11BC, 0x11E6, + 0x11B8, 0x11C1, 0x11E4, + 0x11B8, 0x11C2, 0x11E5, + 0x11BA, 0x11A8, 0x11E7, + 0x11BA, 0x11AE, 0x11E8, + 0x11BA, 0x11AF, 0x11E9, + 0x11BA, 0x11B8, 0x11EA, + 0x11BA, 0x11BA, 0x11BB, + 0x11BC, 0x11A8, 0x11EC, + 0x11BC, 0x11A9, 0x11ED, + 0x11BC, 0x11BC, 0x11EE, + 0x11BC, 0x11BF, 0x11EF, + 0x11C1, 0x11B8, 0x11F3, + 0x11C1, 0x11BC, 0x11F4, + 0x11C2, 0x11AB, 0x11F5, + 0x11C2, 0x11AF, 0x11F6, + 0x11C2, 0x11B7, 0x11F7, + 0x11C2, 0x11B8, 0x11F8, + 0x11CE, 0x11C2, 0x11CF, + 0x11DD, 0x11BA, 0x11DE, + 0x11EC, 0x11A8, 0x11ED, + 0x11F0, 0x11BA, 0x11F1, + 0x11F0, 0x11EB, 0x11F2, + 0x1FBF, Key_apostrophe, 0x1FCE, + 0x1FBF, Key_grave, 0x1FCD, + 0x1FBF, Key_asciitilde, 0x1FCF, + 0x1FBF, Key_acute, 0x1FCE, + 0x1FBF, Key_dead_grave, 0x1FCD, + 0x1FBF, Key_dead_acute, 0x1FCE, + 0x1FBF, Key_dead_tilde, 0x1FCF, + 0x1FFE, Key_apostrophe, 0x1FDE, + 0x1FFE, Key_grave, 0x1FDD, + 0x1FFE, Key_asciitilde, 0x1FDF, + 0x1FFE, Key_acute, 0x1FDE, + 0x1FFE, Key_dead_grave, 0x1FDD, + 0x1FFE, Key_dead_acute, 0x1FDE, + 0x1FFE, Key_dead_tilde, 0x1FDF, + 0x2203, 0x0338, 0x2204, + 0x2208, 0x0338, 0x2209, + 0x220B, 0x0338, 0x220C, + 0x2223, 0x0338, 0x2224, + 0x2225, 0x0338, 0x2226, + 0x223C, 0x0338, 0x2241, + 0x2243, 0x0338, 0x2244, + 0x2248, 0x0338, 0x2249, + 0x224D, 0x0338, 0x226D, + 0x2272, 0x0338, 0x2274, + 0x2273, 0x0338, 0x2275, + 0x2276, 0x0338, 0x2278, + 0x2277, 0x0338, 0x2279, + 0x227A, 0x0338, 0x2280, + 0x227B, 0x0338, 0x2281, + 0x227C, 0x0338, 0x22E0, + 0x227D, 0x0338, 0x22E1, + 0x2286, 0x0338, 0x2288, + 0x2287, 0x0338, 0x2289, + 0x2291, 0x0338, 0x22E2, + 0x2292, 0x0338, 0x22E3, + 0x22A8, 0x0338, 0x22AD, + 0x22A9, 0x0338, 0x22AE, + 0x22AB, 0x0338, 0x22AF, + 0x22B2, 0x0338, 0x22EA, + 0x22B3, 0x0338, 0x22EB, + 0x22B4, 0x0338, 0x22EC, + 0x22B5, 0x0338, 0x22ED, + 0x2ADD, 0x0338, 0x2ADC, + Key_KP_Divide, Key_D, 0x0110, + Key_KP_Divide, Key_G, 0x01E4, + Key_KP_Divide, Key_H, 0x0126, + Key_KP_Divide, Key_I, 0x0197, + Key_KP_Divide, Key_L, 0x0141, + Key_KP_Divide, Key_O, 0x00D8, + Key_KP_Divide, Key_T, 0x0166, + Key_KP_Divide, Key_Z, 0x01B5, + Key_KP_Divide, Key_b, 0x0180, + Key_KP_Divide, Key_d, 0x0111, + Key_KP_Divide, Key_g, 0x01E5, + Key_KP_Divide, Key_h, 0x0127, + Key_KP_Divide, Key_i, 0x0268, + Key_KP_Divide, Key_l, 0x0142, + Key_KP_Divide, Key_o, 0x00F8, + Key_KP_Divide, Key_t, 0x0167, + Key_KP_Divide, Key_z, 0x01B6, + Key_KP_Divide, 0x0294, 0x02A1, + Key_KP_Divide, 0x04AE, 0x04B0, + Key_KP_Divide, 0x04AF, 0x04B1, + Key_KP_Divide, Key_Cyrillic_ghe, 0x0493, + Key_KP_Divide, Key_Cyrillic_ka, 0x049F, + Key_KP_Divide, Key_Cyrillic_GHE, 0x0492, + Key_KP_Divide, Key_Cyrillic_KA, 0x049E, + Key_KP_Divide, Key_leftarrow, 0x219A, + Key_KP_Divide, Key_rightarrow, 0x219B, + Key_KP_Divide, 0x2194, 0x21AE, + Key_KP_Equal, 0x0338, 0x2260, + Key_exclam, Key_plus, Key_O, 0x1EE2, + Key_exclam, Key_plus, Key_U, 0x1EF0, + Key_exclam, Key_plus, Key_o, 0x1EE3, + Key_exclam, Key_plus, Key_u, 0x1EF1, + Key_exclam, Key_dead_horn, Key_O, 0x1EE2, + Key_exclam, Key_dead_horn, Key_U, 0x1EF0, + Key_exclam, Key_dead_horn, Key_o, 0x1EE3, + Key_exclam, Key_dead_horn, Key_u, 0x1EF1, + Key_quotedbl, Key_apostrophe, Key_space, 0x0385, + Key_quotedbl, Key_apostrophe, Key_Greek_iota, 0x0390, + Key_quotedbl, Key_apostrophe, Key_Greek_upsilon, 0x03B0, + Key_quotedbl, Key_underscore, Key_U, 0x1E7A, + Key_quotedbl, Key_underscore, Key_u, 0x1E7B, + Key_quotedbl, Key_asciitilde, Key_O, 0x1E4E, + Key_quotedbl, Key_asciitilde, Key_o, 0x1E4F, + Key_quotedbl, Key_macron, Key_U, 0x1E7A, + Key_quotedbl, Key_macron, Key_u, 0x1E7B, + Key_quotedbl, Key_dead_tilde, Key_O, 0x1E4E, + Key_quotedbl, Key_dead_tilde, Key_o, 0x1E4F, + Key_quotedbl, Key_dead_macron, Key_U, 0x1E7A, + Key_quotedbl, Key_dead_macron, Key_u, 0x1E7B, + Key_apostrophe, Key_quotedbl, Key_space, 0x0385, + Key_apostrophe, Key_quotedbl, Key_I, 0x1E2E, + Key_apostrophe, Key_quotedbl, Key_U, 0x01D7, + Key_apostrophe, Key_quotedbl, Key_i, 0x1E2F, + Key_apostrophe, Key_quotedbl, Key_u, 0x01D8, + Key_apostrophe, Key_quotedbl, Key_Greek_iota, 0x0390, + Key_apostrophe, Key_quotedbl, Key_Greek_upsilon, 0x03B0, + Key_apostrophe, Key_parenleft, Key_Greek_ALPHA, 0x1F0D, + Key_apostrophe, Key_parenleft, Key_Greek_EPSILON, 0x1F1D, + Key_apostrophe, Key_parenleft, Key_Greek_ETA, 0x1F2D, + Key_apostrophe, Key_parenleft, Key_Greek_IOTA, 0x1F3D, + Key_apostrophe, Key_parenleft, Key_Greek_OMICRON, 0x1F4D, + Key_apostrophe, Key_parenleft, Key_Greek_UPSILON, 0x1F5D, + Key_apostrophe, Key_parenleft, Key_Greek_OMEGA, 0x1F6D, + Key_apostrophe, Key_parenleft, Key_Greek_alpha, 0x1F05, + Key_apostrophe, Key_parenleft, Key_Greek_epsilon, 0x1F15, + Key_apostrophe, Key_parenleft, Key_Greek_eta, 0x1F25, + Key_apostrophe, Key_parenleft, Key_Greek_iota, 0x1F35, + Key_apostrophe, Key_parenleft, Key_Greek_omicron, 0x1F45, + Key_apostrophe, Key_parenleft, Key_Greek_upsilon, 0x1F55, + Key_apostrophe, Key_parenleft, Key_Greek_omega, 0x1F65, + Key_apostrophe, Key_parenright, Key_Greek_ALPHA, 0x1F0C, + Key_apostrophe, Key_parenright, Key_Greek_EPSILON, 0x1F1C, + Key_apostrophe, Key_parenright, Key_Greek_ETA, 0x1F2C, + Key_apostrophe, Key_parenright, Key_Greek_IOTA, 0x1F3C, + Key_apostrophe, Key_parenright, Key_Greek_OMICRON, 0x1F4C, + Key_apostrophe, Key_parenright, Key_Greek_OMEGA, 0x1F6C, + Key_apostrophe, Key_parenright, Key_Greek_alpha, 0x1F04, + Key_apostrophe, Key_parenright, Key_Greek_epsilon, 0x1F14, + Key_apostrophe, Key_parenright, Key_Greek_eta, 0x1F24, + Key_apostrophe, Key_parenright, Key_Greek_iota, 0x1F34, + Key_apostrophe, Key_parenright, Key_Greek_omicron, 0x1F44, + Key_apostrophe, Key_parenright, Key_Greek_upsilon, 0x1F54, + Key_apostrophe, Key_parenright, Key_Greek_omega, 0x1F64, + Key_apostrophe, Key_plus, Key_O, 0x1EDA, + Key_apostrophe, Key_plus, Key_U, 0x1EE8, + Key_apostrophe, Key_plus, Key_o, 0x1EDB, + Key_apostrophe, Key_plus, Key_u, 0x1EE9, + Key_apostrophe, Key_slash, Key_O, 0x01FE, + Key_apostrophe, Key_slash, Key_o, 0x01FF, + Key_apostrophe, Key_asciicircum, Key_A, 0x1EA4, + Key_apostrophe, Key_asciicircum, Key_E, 0x1EBE, + Key_apostrophe, Key_asciicircum, Key_O, 0x1ED0, + Key_apostrophe, Key_asciicircum, Key_a, 0x1EA5, + Key_apostrophe, Key_asciicircum, Key_e, 0x1EBF, + Key_apostrophe, Key_asciicircum, Key_o, 0x1ED1, + Key_apostrophe, Key_underscore, Key_E, 0x1E16, + Key_apostrophe, Key_underscore, Key_O, 0x1E52, + Key_apostrophe, Key_underscore, Key_e, 0x1E17, + Key_apostrophe, Key_underscore, Key_o, 0x1E53, + Key_apostrophe, Key_b, Key_A, 0x1EAE, + Key_apostrophe, Key_b, Key_a, 0x1EAF, + Key_apostrophe, Key_asciitilde, Key_O, 0x1E4C, + Key_apostrophe, Key_asciitilde, Key_U, 0x1E78, + Key_apostrophe, Key_asciitilde, Key_o, 0x1E4D, + Key_apostrophe, Key_asciitilde, Key_u, 0x1E79, + Key_apostrophe, Key_macron, Key_E, 0x1E16, + Key_apostrophe, Key_macron, Key_O, 0x1E52, + Key_apostrophe, Key_macron, Key_e, 0x1E17, + Key_apostrophe, Key_macron, Key_o, 0x1E53, + Key_apostrophe, Key_cedilla, Key_C, 0x1E08, + Key_apostrophe, Key_cedilla, Key_c, 0x1E09, + Key_apostrophe, Key_dead_circumflex, Key_A, 0x1EA4, + Key_apostrophe, Key_dead_circumflex, Key_E, 0x1EBE, + Key_apostrophe, Key_dead_circumflex, Key_O, 0x1ED0, + Key_apostrophe, Key_dead_circumflex, Key_a, 0x1EA5, + Key_apostrophe, Key_dead_circumflex, Key_e, 0x1EBF, + Key_apostrophe, Key_dead_circumflex, Key_o, 0x1ED1, + Key_apostrophe, Key_dead_tilde, Key_O, 0x1E4C, + Key_apostrophe, Key_dead_tilde, Key_U, 0x1E78, + Key_apostrophe, Key_dead_tilde, Key_o, 0x1E4D, + Key_apostrophe, Key_dead_tilde, Key_u, 0x1E79, + Key_apostrophe, Key_dead_macron, Key_E, 0x1E16, + Key_apostrophe, Key_dead_macron, Key_O, 0x1E52, + Key_apostrophe, Key_dead_macron, Key_e, 0x1E17, + Key_apostrophe, Key_dead_macron, Key_o, 0x1E53, + Key_apostrophe, Key_dead_breve, Key_A, 0x1EAE, + Key_apostrophe, Key_dead_breve, Key_a, 0x1EAF, + Key_apostrophe, Key_dead_diaeresis, Key_I, 0x1E2E, + Key_apostrophe, Key_dead_diaeresis, Key_U, 0x01D7, + Key_apostrophe, Key_dead_diaeresis, Key_i, 0x1E2F, + Key_apostrophe, Key_dead_diaeresis, Key_u, 0x01D8, + Key_apostrophe, Key_dead_diaeresis, Key_Greek_iota, 0x0390, + Key_apostrophe, Key_dead_diaeresis, Key_Greek_upsilon, 0x03B0, + Key_apostrophe, Key_dead_abovering, Key_A, 0x01FA, + Key_apostrophe, Key_dead_abovering, Key_a, 0x01FB, + Key_apostrophe, Key_dead_cedilla, Key_C, 0x1E08, + Key_apostrophe, Key_dead_cedilla, Key_c, 0x1E09, + Key_apostrophe, Key_dead_horn, Key_O, 0x1EDA, + Key_apostrophe, Key_dead_horn, Key_U, 0x1EE8, + Key_apostrophe, Key_dead_horn, Key_o, 0x1EDB, + Key_apostrophe, Key_dead_horn, Key_u, 0x1EE9, + Key_apostrophe, Key_dead_psili, Key_Greek_ALPHA, 0x1F0C, + Key_apostrophe, Key_dead_psili, Key_Greek_EPSILON, 0x1F1C, + Key_apostrophe, Key_dead_psili, Key_Greek_ETA, 0x1F2C, + Key_apostrophe, Key_dead_psili, Key_Greek_IOTA, 0x1F3C, + Key_apostrophe, Key_dead_psili, Key_Greek_OMICRON, 0x1F4C, + Key_apostrophe, Key_dead_psili, Key_Greek_OMEGA, 0x1F6C, + Key_apostrophe, Key_dead_psili, Key_Greek_alpha, 0x1F04, + Key_apostrophe, Key_dead_psili, Key_Greek_epsilon, 0x1F14, + Key_apostrophe, Key_dead_psili, Key_Greek_eta, 0x1F24, + Key_apostrophe, Key_dead_psili, Key_Greek_iota, 0x1F34, + Key_apostrophe, Key_dead_psili, Key_Greek_omicron, 0x1F44, + Key_apostrophe, Key_dead_psili, Key_Greek_upsilon, 0x1F54, + Key_apostrophe, Key_dead_psili, Key_Greek_omega, 0x1F64, + Key_apostrophe, Key_dead_dasia, Key_Greek_ALPHA, 0x1F0D, + Key_apostrophe, Key_dead_dasia, Key_Greek_EPSILON, 0x1F1D, + Key_apostrophe, Key_dead_dasia, Key_Greek_ETA, 0x1F2D, + Key_apostrophe, Key_dead_dasia, Key_Greek_IOTA, 0x1F3D, + Key_apostrophe, Key_dead_dasia, Key_Greek_OMICRON, 0x1F4D, + Key_apostrophe, Key_dead_dasia, Key_Greek_UPSILON, 0x1F5D, + Key_apostrophe, Key_dead_dasia, Key_Greek_OMEGA, 0x1F6D, + Key_apostrophe, Key_dead_dasia, Key_Greek_alpha, 0x1F05, + Key_apostrophe, Key_dead_dasia, Key_Greek_epsilon, 0x1F15, + Key_apostrophe, Key_dead_dasia, Key_Greek_eta, 0x1F25, + Key_apostrophe, Key_dead_dasia, Key_Greek_iota, 0x1F35, + Key_apostrophe, Key_dead_dasia, Key_Greek_omicron, 0x1F45, + Key_apostrophe, Key_dead_dasia, Key_Greek_upsilon, 0x1F55, + Key_apostrophe, Key_dead_dasia, Key_Greek_omega, 0x1F65, + Key_apostrophe, Key_KP_Divide, Key_O, 0x01FE, + Key_apostrophe, Key_KP_Divide, Key_o, 0x01FF, + Key_parenleft, Key_0, Key_parenright, 0x24EA, + Key_parenleft, Key_1, Key_parenright, 0x2460, + Key_parenleft, Key_2, Key_parenright, 0x2461, + Key_parenleft, Key_3, Key_parenright, 0x2462, + Key_parenleft, Key_4, Key_parenright, 0x2463, + Key_parenleft, Key_5, Key_parenright, 0x2464, + Key_parenleft, Key_6, Key_parenright, 0x2465, + Key_parenleft, Key_7, Key_parenright, 0x2466, + Key_parenleft, Key_8, Key_parenright, 0x2467, + Key_parenleft, Key_9, Key_parenright, 0x2468, + Key_parenleft, Key_A, Key_parenright, 0x24B6, + Key_parenleft, Key_B, Key_parenright, 0x24B7, + Key_parenleft, Key_C, Key_parenright, 0x24B8, + Key_parenleft, Key_D, Key_parenright, 0x24B9, + Key_parenleft, Key_E, Key_parenright, 0x24BA, + Key_parenleft, Key_F, Key_parenright, 0x24BB, + Key_parenleft, Key_G, Key_parenright, 0x24BC, + Key_parenleft, Key_H, Key_parenright, 0x24BD, + Key_parenleft, Key_I, Key_parenright, 0x24BE, + Key_parenleft, Key_J, Key_parenright, 0x24BF, + Key_parenleft, Key_K, Key_parenright, 0x24C0, + Key_parenleft, Key_L, Key_parenright, 0x24C1, + Key_parenleft, Key_M, Key_parenright, 0x24C2, + Key_parenleft, Key_N, Key_parenright, 0x24C3, + Key_parenleft, Key_O, Key_parenright, 0x24C4, + Key_parenleft, Key_P, Key_parenright, 0x24C5, + Key_parenleft, Key_Q, Key_parenright, 0x24C6, + Key_parenleft, Key_R, Key_parenright, 0x24C7, + Key_parenleft, Key_S, Key_parenright, 0x24C8, + Key_parenleft, Key_T, Key_parenright, 0x24C9, + Key_parenleft, Key_U, Key_parenright, 0x24CA, + Key_parenleft, Key_V, Key_parenright, 0x24CB, + Key_parenleft, Key_W, Key_parenright, 0x24CC, + Key_parenleft, Key_X, Key_parenright, 0x24CD, + Key_parenleft, Key_Y, Key_parenright, 0x24CE, + Key_parenleft, Key_Z, Key_parenright, 0x24CF, + Key_parenleft, Key_a, Key_parenright, 0x24D0, + Key_parenleft, Key_b, Key_parenright, 0x24D1, + Key_parenleft, Key_c, Key_parenright, 0x24D2, + Key_parenleft, Key_d, Key_parenright, 0x24D3, + Key_parenleft, Key_e, Key_parenright, 0x24D4, + Key_parenleft, Key_f, Key_parenright, 0x24D5, + Key_parenleft, Key_g, Key_parenright, 0x24D6, + Key_parenleft, Key_h, Key_parenright, 0x24D7, + Key_parenleft, Key_i, Key_parenright, 0x24D8, + Key_parenleft, Key_j, Key_parenright, 0x24D9, + Key_parenleft, Key_k, Key_parenright, 0x24DA, + Key_parenleft, Key_l, Key_parenright, 0x24DB, + Key_parenleft, Key_m, Key_parenright, 0x24DC, + Key_parenleft, Key_n, Key_parenright, 0x24DD, + Key_parenleft, Key_o, Key_parenright, 0x24DE, + Key_parenleft, Key_p, Key_parenright, 0x24DF, + Key_parenleft, Key_q, Key_parenright, 0x24E0, + Key_parenleft, Key_r, Key_parenright, 0x24E1, + Key_parenleft, Key_s, Key_parenright, 0x24E2, + Key_parenleft, Key_t, Key_parenright, 0x24E3, + Key_parenleft, Key_u, Key_parenright, 0x24E4, + Key_parenleft, Key_v, Key_parenright, 0x24E5, + Key_parenleft, Key_w, Key_parenright, 0x24E6, + Key_parenleft, Key_x, Key_parenright, 0x24E7, + Key_parenleft, Key_y, Key_parenright, 0x24E8, + Key_parenleft, Key_z, Key_parenright, 0x24E9, + Key_parenleft, Key_kana_WO, Key_parenright, 0x32FE, + Key_parenleft, Key_kana_A, Key_parenright, 0x32D0, + Key_parenleft, Key_kana_I, Key_parenright, 0x32D1, + Key_parenleft, Key_kana_U, Key_parenright, 0x32D2, + Key_parenleft, Key_kana_E, Key_parenright, 0x32D3, + Key_parenleft, Key_kana_O, Key_parenright, 0x32D4, + Key_parenleft, Key_kana_KA, Key_parenright, 0x32D5, + Key_parenleft, Key_kana_KI, Key_parenright, 0x32D6, + Key_parenleft, Key_kana_KU, Key_parenright, 0x32D7, + Key_parenleft, Key_kana_KE, Key_parenright, 0x32D8, + Key_parenleft, Key_kana_KO, Key_parenright, 0x32D9, + Key_parenleft, Key_kana_SA, Key_parenright, 0x32DA, + Key_parenleft, Key_kana_SHI, Key_parenright, 0x32DB, + Key_parenleft, Key_kana_SU, Key_parenright, 0x32DC, + Key_parenleft, Key_kana_SE, Key_parenright, 0x32DD, + Key_parenleft, Key_kana_SO, Key_parenright, 0x32DE, + Key_parenleft, Key_kana_TA, Key_parenright, 0x32DF, + Key_parenleft, Key_kana_CHI, Key_parenright, 0x32E0, + Key_parenleft, Key_kana_TSU, Key_parenright, 0x32E1, + Key_parenleft, Key_kana_TE, Key_parenright, 0x32E2, + Key_parenleft, Key_kana_TO, Key_parenright, 0x32E3, + Key_parenleft, Key_kana_NA, Key_parenright, 0x32E4, + Key_parenleft, Key_kana_NI, Key_parenright, 0x32E5, + Key_parenleft, Key_kana_NU, Key_parenright, 0x32E6, + Key_parenleft, Key_kana_NE, Key_parenright, 0x32E7, + Key_parenleft, Key_kana_NO, Key_parenright, 0x32E8, + Key_parenleft, Key_kana_HA, Key_parenright, 0x32E9, + Key_parenleft, Key_kana_HI, Key_parenright, 0x32EA, + Key_parenleft, Key_kana_FU, Key_parenright, 0x32EB, + Key_parenleft, Key_kana_HE, Key_parenright, 0x32EC, + Key_parenleft, Key_kana_HO, Key_parenright, 0x32ED, + Key_parenleft, Key_kana_MA, Key_parenright, 0x32EE, + Key_parenleft, Key_kana_MI, Key_parenright, 0x32EF, + Key_parenleft, Key_kana_MU, Key_parenright, 0x32F0, + Key_parenleft, Key_kana_ME, Key_parenright, 0x32F1, + Key_parenleft, Key_kana_MO, Key_parenright, 0x32F2, + Key_parenleft, Key_kana_YA, Key_parenright, 0x32F3, + Key_parenleft, Key_kana_YU, Key_parenright, 0x32F4, + Key_parenleft, Key_kana_YO, Key_parenright, 0x32F5, + Key_parenleft, Key_kana_RA, Key_parenright, 0x32F6, + Key_parenleft, Key_kana_RI, Key_parenright, 0x32F7, + Key_parenleft, Key_kana_RU, Key_parenright, 0x32F8, + Key_parenleft, Key_kana_RE, Key_parenright, 0x32F9, + Key_parenleft, Key_kana_RO, Key_parenright, 0x32FA, + Key_parenleft, Key_kana_WA, Key_parenright, 0x32FB, + Key_parenleft, 0x1100, Key_parenright, 0x3260, + Key_parenleft, 0x1102, Key_parenright, 0x3261, + Key_parenleft, 0x1103, Key_parenright, 0x3262, + Key_parenleft, 0x1105, Key_parenright, 0x3263, + Key_parenleft, 0x1106, Key_parenright, 0x3264, + Key_parenleft, 0x1107, Key_parenright, 0x3265, + Key_parenleft, 0x1109, Key_parenright, 0x3266, + Key_parenleft, 0x110B, Key_parenright, 0x3267, + Key_parenleft, 0x110C, Key_parenright, 0x3268, + Key_parenleft, 0x110E, Key_parenright, 0x3269, + Key_parenleft, 0x110F, Key_parenright, 0x326A, + Key_parenleft, 0x1110, Key_parenright, 0x326B, + Key_parenleft, 0x1111, Key_parenright, 0x326C, + Key_parenleft, 0x1112, Key_parenright, 0x326D, + Key_parenleft, 0x30F0, Key_parenright, 0x32FC, + Key_parenleft, 0x30F1, Key_parenright, 0x32FD, + Key_parenleft, 0x4E00, Key_parenright, 0x3280, + Key_parenleft, 0x4E03, Key_parenright, 0x3286, + Key_parenleft, 0x4E09, Key_parenright, 0x3282, + Key_parenleft, 0x4E0A, Key_parenright, 0x32A4, + Key_parenleft, 0x4E0B, Key_parenright, 0x32A6, + Key_parenleft, 0x4E2D, Key_parenright, 0x32A5, + Key_parenleft, 0x4E5D, Key_parenright, 0x3288, + Key_parenleft, 0x4E8C, Key_parenright, 0x3281, + Key_parenleft, 0x4E94, Key_parenright, 0x3284, + Key_parenleft, 0x4F01, Key_parenright, 0x32AD, + Key_parenleft, 0x4F11, Key_parenright, 0x32A1, + Key_parenleft, 0x512A, Key_parenright, 0x329D, + Key_parenleft, 0x516B, Key_parenright, 0x3287, + Key_parenleft, 0x516D, Key_parenright, 0x3285, + Key_parenleft, 0x5199, Key_parenright, 0x32A2, + Key_parenleft, 0x52B4, Key_parenright, 0x3298, + Key_parenleft, 0x533B, Key_parenright, 0x32A9, + Key_parenleft, 0x5341, Key_parenright, 0x3289, + Key_parenleft, 0x5354, Key_parenright, 0x32AF, + Key_parenleft, 0x5370, Key_parenright, 0x329E, + Key_parenleft, 0x53F3, Key_parenright, 0x32A8, + Key_parenleft, 0x540D, Key_parenright, 0x3294, + Key_parenleft, 0x56DB, Key_parenright, 0x3283, + Key_parenleft, 0x571F, Key_parenright, 0x328F, + Key_parenleft, 0x591C, Key_parenright, 0x32B0, + Key_parenleft, 0x5973, Key_parenright, 0x329B, + Key_parenleft, 0x5B66, Key_parenright, 0x32AB, + Key_parenleft, 0x5B97, Key_parenright, 0x32AA, + Key_parenleft, 0x5DE6, Key_parenright, 0x32A7, + Key_parenleft, 0x65E5, Key_parenright, 0x3290, + Key_parenleft, 0x6708, Key_parenright, 0x328A, + Key_parenleft, 0x6709, Key_parenright, 0x3292, + Key_parenleft, 0x6728, Key_parenright, 0x328D, + Key_parenleft, 0x682A, Key_parenright, 0x3291, + Key_parenleft, 0x6B63, Key_parenright, 0x32A3, + Key_parenleft, 0x6C34, Key_parenright, 0x328C, + Key_parenleft, 0x6CE8, Key_parenright, 0x329F, + Key_parenleft, 0x706B, Key_parenright, 0x328B, + Key_parenleft, 0x7279, Key_parenright, 0x3295, + Key_parenleft, 0x7537, Key_parenright, 0x329A, + Key_parenleft, 0x76E3, Key_parenright, 0x32AC, + Key_parenleft, 0x793E, Key_parenright, 0x3293, + Key_parenleft, 0x795D, Key_parenright, 0x3297, + Key_parenleft, 0x79D8, Key_parenright, 0x3299, + Key_parenleft, 0x8CA1, Key_parenright, 0x3296, + Key_parenleft, 0x8CC7, Key_parenright, 0x32AE, + Key_parenleft, 0x9069, Key_parenright, 0x329C, + Key_parenleft, 0x91D1, Key_parenright, 0x328E, + Key_parenleft, 0x9805, Key_parenright, 0x32A0, + Key_parenleft, Key_KP_Space, Key_parenright, 0x2461, + Key_parenleft, Key_KP_0, Key_parenright, 0x24EA, + Key_parenleft, Key_KP_1, Key_parenright, 0x2460, + Key_parenleft, Key_KP_2, Key_parenright, 0x2461, + Key_parenleft, Key_KP_3, Key_parenright, 0x2462, + Key_parenleft, Key_KP_4, Key_parenright, 0x2463, + Key_parenleft, Key_KP_5, Key_parenright, 0x2464, + Key_parenleft, Key_KP_6, Key_parenright, 0x2465, + Key_parenleft, Key_KP_7, Key_parenright, 0x2466, + Key_parenleft, Key_KP_8, Key_parenright, 0x2467, + Key_parenleft, Key_KP_9, Key_parenright, 0x2468, + Key_minus, Key_minus, Key_space, 0x00AD, + Key_minus, Key_minus, Key_minus, 0x2014, + Key_minus, Key_minus, Key_period, 0x2013, + Key_period, Key_exclam, Key_S, 0x1E68, + Key_period, Key_exclam, Key_s, 0x1E69, + Key_period, Key_apostrophe, Key_S, 0x1E64, + Key_period, Key_apostrophe, Key_s, 0x1E65, + Key_period, Key_acute, Key_S, 0x1E64, + Key_period, Key_acute, Key_s, 0x1E65, + Key_period, Key_dead_acute, Key_S, 0x1E64, + Key_period, Key_dead_acute, Key_s, 0x1E65, + Key_period, Key_dead_caron, Key_S, 0x1E66, + Key_period, Key_dead_caron, Key_s, 0x1E67, + Key_period, Key_dead_belowdot, Key_S, 0x1E68, + Key_period, Key_dead_belowdot, Key_s, 0x1E69, + Key_question, Key_plus, Key_O, 0x1EDE, + Key_question, Key_plus, Key_U, 0x1EEC, + Key_question, Key_plus, Key_o, 0x1EDF, + Key_question, Key_plus, Key_u, 0x1EED, + Key_question, Key_asciicircum, Key_A, 0x1EA8, + Key_question, Key_asciicircum, Key_E, 0x1EC2, + Key_question, Key_asciicircum, Key_O, 0x1ED4, + Key_question, Key_asciicircum, Key_a, 0x1EA9, + Key_question, Key_asciicircum, Key_e, 0x1EC3, + Key_question, Key_asciicircum, Key_o, 0x1ED5, + Key_question, Key_b, Key_A, 0x1EB2, + Key_question, Key_b, Key_a, 0x1EB3, + Key_question, Key_dead_circumflex, Key_A, 0x1EA8, + Key_question, Key_dead_circumflex, Key_E, 0x1EC2, + Key_question, Key_dead_circumflex, Key_O, 0x1ED4, + Key_question, Key_dead_circumflex, Key_a, 0x1EA9, + Key_question, Key_dead_circumflex, Key_e, 0x1EC3, + Key_question, Key_dead_circumflex, Key_o, 0x1ED5, + Key_question, Key_dead_breve, Key_A, 0x1EB2, + Key_question, Key_dead_breve, Key_a, 0x1EB3, + Key_question, Key_dead_horn, Key_O, 0x1EDE, + Key_question, Key_dead_horn, Key_U, 0x1EEC, + Key_question, Key_dead_horn, Key_o, 0x1EDF, + Key_question, Key_dead_horn, Key_u, 0x1EED, + Key_U, Key_exclam, Key_A, 0x1EB6, + Key_U, Key_exclam, Key_a, 0x1EB7, + Key_U, Key_comma, Key_E, 0x1E1C, + Key_U, Key_comma, Key_e, 0x1E1D, + Key_U, Key_cedilla, Key_E, 0x1E1C, + Key_U, Key_cedilla, Key_e, 0x1E1D, + Key_U, Key_dead_cedilla, Key_E, 0x1E1C, + Key_U, Key_dead_cedilla, Key_e, 0x1E1D, + Key_U, Key_dead_belowdot, Key_A, 0x1EB6, + Key_U, Key_dead_belowdot, Key_a, 0x1EB7, + Key_asciicircum, Key_exclam, Key_A, 0x1EAC, + Key_asciicircum, Key_exclam, Key_E, 0x1EC6, + Key_asciicircum, Key_exclam, Key_O, 0x1ED8, + Key_asciicircum, Key_exclam, Key_a, 0x1EAD, + Key_asciicircum, Key_exclam, Key_e, 0x1EC7, + Key_asciicircum, Key_exclam, Key_o, 0x1ED9, + Key_asciicircum, Key_underscore, Key_a, 0x00AA, + Key_asciicircum, Key_underscore, Key_h, 0x02B0, + Key_asciicircum, Key_underscore, Key_i, 0x2071, + Key_asciicircum, Key_underscore, Key_j, 0x02B2, + Key_asciicircum, Key_underscore, Key_l, 0x02E1, + Key_asciicircum, Key_underscore, Key_n, 0x207F, + Key_asciicircum, Key_underscore, Key_o, 0x00BA, + Key_asciicircum, Key_underscore, Key_r, 0x02B3, + Key_asciicircum, Key_underscore, Key_s, 0x02E2, + Key_asciicircum, Key_underscore, Key_w, 0x02B7, + Key_asciicircum, Key_underscore, Key_x, 0x02E3, + Key_asciicircum, Key_underscore, Key_y, 0x02B8, + Key_asciicircum, Key_underscore, 0x0263, 0x02E0, + Key_asciicircum, Key_underscore, 0x0266, 0x02B1, + Key_asciicircum, Key_underscore, 0x0279, 0x02B4, + Key_asciicircum, Key_underscore, 0x027B, 0x02B5, + Key_asciicircum, Key_underscore, 0x0281, 0x02B6, + Key_asciicircum, Key_underscore, 0x0295, 0x02E4, + Key_asciicircum, Key_underbar, Key_a, 0x00AA, + Key_asciicircum, Key_underbar, Key_h, 0x02B0, + Key_asciicircum, Key_underbar, Key_i, 0x2071, + Key_asciicircum, Key_underbar, Key_j, 0x02B2, + Key_asciicircum, Key_underbar, Key_l, 0x02E1, + Key_asciicircum, Key_underbar, Key_n, 0x207F, + Key_asciicircum, Key_underbar, Key_o, 0x00BA, + Key_asciicircum, Key_underbar, Key_r, 0x02B3, + Key_asciicircum, Key_underbar, Key_s, 0x02E2, + Key_asciicircum, Key_underbar, Key_w, 0x02B7, + Key_asciicircum, Key_underbar, Key_x, 0x02E3, + Key_asciicircum, Key_underbar, Key_y, 0x02B8, + Key_asciicircum, Key_underbar, 0x0263, 0x02E0, + Key_asciicircum, Key_underbar, 0x0266, 0x02B1, + Key_asciicircum, Key_underbar, 0x0279, 0x02B4, + Key_asciicircum, Key_underbar, 0x027B, 0x02B5, + Key_asciicircum, Key_underbar, 0x0281, 0x02B6, + Key_asciicircum, Key_underbar, 0x0295, 0x02E4, + Key_asciicircum, Key_dead_belowdot, Key_A, 0x1EAC, + Key_asciicircum, Key_dead_belowdot, Key_E, 0x1EC6, + Key_asciicircum, Key_dead_belowdot, Key_O, 0x1ED8, + Key_asciicircum, Key_dead_belowdot, Key_a, 0x1EAD, + Key_asciicircum, Key_dead_belowdot, Key_e, 0x1EC7, + Key_asciicircum, Key_dead_belowdot, Key_o, 0x1ED9, + Key_underscore, Key_exclam, Key_L, 0x1E38, + Key_underscore, Key_exclam, Key_R, 0x1E5C, + Key_underscore, Key_exclam, Key_l, 0x1E39, + Key_underscore, Key_exclam, Key_r, 0x1E5D, + Key_underscore, Key_quotedbl, Key_A, 0x01DE, + Key_underscore, Key_quotedbl, Key_O, 0x022A, + Key_underscore, Key_quotedbl, Key_U, 0x01D5, + Key_underscore, Key_quotedbl, Key_a, 0x01DF, + Key_underscore, Key_quotedbl, Key_o, 0x022B, + Key_underscore, Key_quotedbl, Key_u, 0x01D6, + Key_underscore, Key_period, Key_A, 0x01E0, + Key_underscore, Key_period, Key_O, 0x0230, + Key_underscore, Key_period, Key_a, 0x01E1, + Key_underscore, Key_period, Key_o, 0x0231, + Key_underscore, Key_semicolon, Key_O, 0x01EC, + Key_underscore, Key_semicolon, Key_o, 0x01ED, + Key_underscore, Key_asciitilde, Key_O, 0x022C, + Key_underscore, Key_asciitilde, Key_o, 0x022D, + Key_underscore, Key_dead_tilde, Key_O, 0x022C, + Key_underscore, Key_dead_tilde, Key_o, 0x022D, + Key_underscore, Key_dead_abovedot, Key_A, 0x01E0, + Key_underscore, Key_dead_abovedot, Key_O, 0x0230, + Key_underscore, Key_dead_abovedot, Key_a, 0x01E1, + Key_underscore, Key_dead_abovedot, Key_o, 0x0231, + Key_underscore, Key_dead_diaeresis, Key_A, 0x01DE, + Key_underscore, Key_dead_diaeresis, Key_O, 0x022A, + Key_underscore, Key_dead_diaeresis, Key_U, 0x01D5, + Key_underscore, Key_dead_diaeresis, Key_a, 0x01DF, + Key_underscore, Key_dead_diaeresis, Key_o, 0x022B, + Key_underscore, Key_dead_diaeresis, Key_u, 0x01D6, + Key_underscore, Key_dead_ogonek, Key_O, 0x01EC, + Key_underscore, Key_dead_ogonek, Key_o, 0x01ED, + Key_underscore, Key_dead_belowdot, Key_L, 0x1E38, + Key_underscore, Key_dead_belowdot, Key_R, 0x1E5C, + Key_underscore, Key_dead_belowdot, Key_l, 0x1E39, + Key_underscore, Key_dead_belowdot, Key_r, 0x1E5D, + Key_grave, Key_quotedbl, Key_U, 0x01DB, + Key_grave, Key_quotedbl, Key_u, 0x01DC, + Key_grave, Key_quotedbl, Key_Greek_iota, 0x1FD2, + Key_grave, Key_quotedbl, Key_Greek_upsilon, 0x1FE2, + Key_grave, Key_parenleft, Key_Greek_ALPHA, 0x1F0B, + Key_grave, Key_parenleft, Key_Greek_EPSILON, 0x1F1B, + Key_grave, Key_parenleft, Key_Greek_ETA, 0x1F2B, + Key_grave, Key_parenleft, Key_Greek_IOTA, 0x1F3B, + Key_grave, Key_parenleft, Key_Greek_OMICRON, 0x1F4B, + Key_grave, Key_parenleft, Key_Greek_UPSILON, 0x1F5B, + Key_grave, Key_parenleft, Key_Greek_OMEGA, 0x1F6B, + Key_grave, Key_parenleft, Key_Greek_alpha, 0x1F03, + Key_grave, Key_parenleft, Key_Greek_epsilon, 0x1F13, + Key_grave, Key_parenleft, Key_Greek_eta, 0x1F23, + Key_grave, Key_parenleft, Key_Greek_iota, 0x1F33, + Key_grave, Key_parenleft, Key_Greek_omicron, 0x1F43, + Key_grave, Key_parenleft, Key_Greek_upsilon, 0x1F53, + Key_grave, Key_parenleft, Key_Greek_omega, 0x1F63, + Key_grave, Key_parenright, Key_Greek_ALPHA, 0x1F0A, + Key_grave, Key_parenright, Key_Greek_EPSILON, 0x1F1A, + Key_grave, Key_parenright, Key_Greek_ETA, 0x1F2A, + Key_grave, Key_parenright, Key_Greek_IOTA, 0x1F3A, + Key_grave, Key_parenright, Key_Greek_OMICRON, 0x1F4A, + Key_grave, Key_parenright, Key_Greek_OMEGA, 0x1F6A, + Key_grave, Key_parenright, Key_Greek_alpha, 0x1F02, + Key_grave, Key_parenright, Key_Greek_epsilon, 0x1F12, + Key_grave, Key_parenright, Key_Greek_eta, 0x1F22, + Key_grave, Key_parenright, Key_Greek_iota, 0x1F32, + Key_grave, Key_parenright, Key_Greek_omicron, 0x1F42, + Key_grave, Key_parenright, Key_Greek_upsilon, 0x1F52, + Key_grave, Key_parenright, Key_Greek_omega, 0x1F62, + Key_grave, Key_plus, Key_O, 0x1EDC, + Key_grave, Key_plus, Key_U, 0x1EEA, + Key_grave, Key_plus, Key_o, 0x1EDD, + Key_grave, Key_plus, Key_u, 0x1EEB, + Key_grave, Key_asciicircum, Key_A, 0x1EA6, + Key_grave, Key_asciicircum, Key_E, 0x1EC0, + Key_grave, Key_asciicircum, Key_O, 0x1ED2, + Key_grave, Key_asciicircum, Key_a, 0x1EA7, + Key_grave, Key_asciicircum, Key_e, 0x1EC1, + Key_grave, Key_asciicircum, Key_o, 0x1ED3, + Key_grave, Key_underscore, Key_E, 0x1E14, + Key_grave, Key_underscore, Key_O, 0x1E50, + Key_grave, Key_underscore, Key_e, 0x1E15, + Key_grave, Key_underscore, Key_o, 0x1E51, + Key_grave, Key_b, Key_A, 0x1EB0, + Key_grave, Key_b, Key_a, 0x1EB1, + Key_grave, Key_macron, Key_E, 0x1E14, + Key_grave, Key_macron, Key_O, 0x1E50, + Key_grave, Key_macron, Key_e, 0x1E15, + Key_grave, Key_macron, Key_o, 0x1E51, + Key_grave, Key_dead_circumflex, Key_A, 0x1EA6, + Key_grave, Key_dead_circumflex, Key_E, 0x1EC0, + Key_grave, Key_dead_circumflex, Key_O, 0x1ED2, + Key_grave, Key_dead_circumflex, Key_a, 0x1EA7, + Key_grave, Key_dead_circumflex, Key_e, 0x1EC1, + Key_grave, Key_dead_circumflex, Key_o, 0x1ED3, + Key_grave, Key_dead_macron, Key_E, 0x1E14, + Key_grave, Key_dead_macron, Key_O, 0x1E50, + Key_grave, Key_dead_macron, Key_e, 0x1E15, + Key_grave, Key_dead_macron, Key_o, 0x1E51, + Key_grave, Key_dead_breve, Key_A, 0x1EB0, + Key_grave, Key_dead_breve, Key_a, 0x1EB1, + Key_grave, Key_dead_diaeresis, Key_U, 0x01DB, + Key_grave, Key_dead_diaeresis, Key_u, 0x01DC, + Key_grave, Key_dead_diaeresis, Key_Greek_iota, 0x1FD2, + Key_grave, Key_dead_diaeresis, Key_Greek_upsilon, 0x1FE2, + Key_grave, Key_dead_horn, Key_O, 0x1EDC, + Key_grave, Key_dead_horn, Key_U, 0x1EEA, + Key_grave, Key_dead_horn, Key_o, 0x1EDD, + Key_grave, Key_dead_horn, Key_u, 0x1EEB, + Key_grave, Key_dead_psili, Key_Greek_ALPHA, 0x1F0A, + Key_grave, Key_dead_psili, Key_Greek_EPSILON, 0x1F1A, + Key_grave, Key_dead_psili, Key_Greek_ETA, 0x1F2A, + Key_grave, Key_dead_psili, Key_Greek_IOTA, 0x1F3A, + Key_grave, Key_dead_psili, Key_Greek_OMICRON, 0x1F4A, + Key_grave, Key_dead_psili, Key_Greek_OMEGA, 0x1F6A, + Key_grave, Key_dead_psili, Key_Greek_alpha, 0x1F02, + Key_grave, Key_dead_psili, Key_Greek_epsilon, 0x1F12, + Key_grave, Key_dead_psili, Key_Greek_eta, 0x1F22, + Key_grave, Key_dead_psili, Key_Greek_iota, 0x1F32, + Key_grave, Key_dead_psili, Key_Greek_omicron, 0x1F42, + Key_grave, Key_dead_psili, Key_Greek_upsilon, 0x1F52, + Key_grave, Key_dead_psili, Key_Greek_omega, 0x1F62, + Key_grave, Key_dead_dasia, Key_Greek_ALPHA, 0x1F0B, + Key_grave, Key_dead_dasia, Key_Greek_EPSILON, 0x1F1B, + Key_grave, Key_dead_dasia, Key_Greek_ETA, 0x1F2B, + Key_grave, Key_dead_dasia, Key_Greek_IOTA, 0x1F3B, + Key_grave, Key_dead_dasia, Key_Greek_OMICRON, 0x1F4B, + Key_grave, Key_dead_dasia, Key_Greek_UPSILON, 0x1F5B, + Key_grave, Key_dead_dasia, Key_Greek_OMEGA, 0x1F6B, + Key_grave, Key_dead_dasia, Key_Greek_alpha, 0x1F03, + Key_grave, Key_dead_dasia, Key_Greek_epsilon, 0x1F13, + Key_grave, Key_dead_dasia, Key_Greek_eta, 0x1F23, + Key_grave, Key_dead_dasia, Key_Greek_iota, 0x1F33, + Key_grave, Key_dead_dasia, Key_Greek_omicron, 0x1F43, + Key_grave, Key_dead_dasia, Key_Greek_upsilon, 0x1F53, + Key_grave, Key_dead_dasia, Key_Greek_omega, 0x1F63, + Key_b, Key_exclam, Key_A, 0x1EB6, + Key_b, Key_exclam, Key_a, 0x1EB7, + Key_b, Key_comma, Key_E, 0x1E1C, + Key_b, Key_comma, Key_e, 0x1E1D, + Key_b, Key_cedilla, Key_E, 0x1E1C, + Key_b, Key_cedilla, Key_e, 0x1E1D, + Key_b, Key_dead_cedilla, Key_E, 0x1E1C, + Key_b, Key_dead_cedilla, Key_e, 0x1E1D, + Key_b, Key_dead_belowdot, Key_A, 0x1EB6, + Key_b, Key_dead_belowdot, Key_a, 0x1EB7, + Key_c, Key_quotedbl, Key_U, 0x01D9, + Key_c, Key_quotedbl, Key_u, 0x01DA, + Key_c, Key_dead_diaeresis, Key_U, 0x01D9, + Key_c, Key_dead_diaeresis, Key_u, 0x01DA, + Key_o, Key_apostrophe, Key_A, 0x01FA, + Key_o, Key_apostrophe, Key_a, 0x01FB, + Key_asciitilde, Key_quotedbl, Key_Greek_iota, 0x1FD7, + Key_asciitilde, Key_quotedbl, Key_Greek_upsilon, 0x1FE7, + Key_asciitilde, Key_parenleft, Key_Greek_ALPHA, 0x1F0F, + Key_asciitilde, Key_parenleft, Key_Greek_ETA, 0x1F2F, + Key_asciitilde, Key_parenleft, Key_Greek_IOTA, 0x1F3F, + Key_asciitilde, Key_parenleft, Key_Greek_UPSILON, 0x1F5F, + Key_asciitilde, Key_parenleft, Key_Greek_OMEGA, 0x1F6F, + Key_asciitilde, Key_parenleft, Key_Greek_alpha, 0x1F07, + Key_asciitilde, Key_parenleft, Key_Greek_eta, 0x1F27, + Key_asciitilde, Key_parenleft, Key_Greek_iota, 0x1F37, + Key_asciitilde, Key_parenleft, Key_Greek_upsilon, 0x1F57, + Key_asciitilde, Key_parenleft, Key_Greek_omega, 0x1F67, + Key_asciitilde, Key_parenright, Key_Greek_ALPHA, 0x1F0E, + Key_asciitilde, Key_parenright, Key_Greek_ETA, 0x1F2E, + Key_asciitilde, Key_parenright, Key_Greek_IOTA, 0x1F3E, + Key_asciitilde, Key_parenright, Key_Greek_OMEGA, 0x1F6E, + Key_asciitilde, Key_parenright, Key_Greek_alpha, 0x1F06, + Key_asciitilde, Key_parenright, Key_Greek_eta, 0x1F26, + Key_asciitilde, Key_parenright, Key_Greek_iota, 0x1F36, + Key_asciitilde, Key_parenright, Key_Greek_upsilon, 0x1F56, + Key_asciitilde, Key_parenright, Key_Greek_omega, 0x1F66, + Key_asciitilde, Key_plus, Key_O, 0x1EE0, + Key_asciitilde, Key_plus, Key_U, 0x1EEE, + Key_asciitilde, Key_plus, Key_o, 0x1EE1, + Key_asciitilde, Key_plus, Key_u, 0x1EEF, + Key_asciitilde, Key_asciicircum, Key_A, 0x1EAA, + Key_asciitilde, Key_asciicircum, Key_E, 0x1EC4, + Key_asciitilde, Key_asciicircum, Key_O, 0x1ED6, + Key_asciitilde, Key_asciicircum, Key_a, 0x1EAB, + Key_asciitilde, Key_asciicircum, Key_e, 0x1EC5, + Key_asciitilde, Key_asciicircum, Key_o, 0x1ED7, + Key_asciitilde, Key_b, Key_A, 0x1EB4, + Key_asciitilde, Key_b, Key_a, 0x1EB5, + Key_asciitilde, Key_dead_circumflex, Key_A, 0x1EAA, + Key_asciitilde, Key_dead_circumflex, Key_E, 0x1EC4, + Key_asciitilde, Key_dead_circumflex, Key_O, 0x1ED6, + Key_asciitilde, Key_dead_circumflex, Key_a, 0x1EAB, + Key_asciitilde, Key_dead_circumflex, Key_e, 0x1EC5, + Key_asciitilde, Key_dead_circumflex, Key_o, 0x1ED7, + Key_asciitilde, Key_dead_breve, Key_A, 0x1EB4, + Key_asciitilde, Key_dead_breve, Key_a, 0x1EB5, + Key_asciitilde, Key_dead_diaeresis, Key_Greek_iota, 0x1FD7, + Key_asciitilde, Key_dead_diaeresis, Key_Greek_upsilon, 0x1FE7, + Key_asciitilde, Key_dead_horn, Key_O, 0x1EE0, + Key_asciitilde, Key_dead_horn, Key_U, 0x1EEE, + Key_asciitilde, Key_dead_horn, Key_o, 0x1EE1, + Key_asciitilde, Key_dead_horn, Key_u, 0x1EEF, + Key_asciitilde, Key_dead_psili, Key_Greek_ALPHA, 0x1F0E, + Key_asciitilde, Key_dead_psili, Key_Greek_ETA, 0x1F2E, + Key_asciitilde, Key_dead_psili, Key_Greek_IOTA, 0x1F3E, + Key_asciitilde, Key_dead_psili, Key_Greek_OMEGA, 0x1F6E, + Key_asciitilde, Key_dead_psili, Key_Greek_alpha, 0x1F06, + Key_asciitilde, Key_dead_psili, Key_Greek_eta, 0x1F26, + Key_asciitilde, Key_dead_psili, Key_Greek_iota, 0x1F36, + Key_asciitilde, Key_dead_psili, Key_Greek_upsilon, 0x1F56, + Key_asciitilde, Key_dead_psili, Key_Greek_omega, 0x1F66, + Key_asciitilde, Key_dead_dasia, Key_Greek_ALPHA, 0x1F0F, + Key_asciitilde, Key_dead_dasia, Key_Greek_ETA, 0x1F2F, + Key_asciitilde, Key_dead_dasia, Key_Greek_IOTA, 0x1F3F, + Key_asciitilde, Key_dead_dasia, Key_Greek_UPSILON, 0x1F5F, + Key_asciitilde, Key_dead_dasia, Key_Greek_OMEGA, 0x1F6F, + Key_asciitilde, Key_dead_dasia, Key_Greek_alpha, 0x1F07, + Key_asciitilde, Key_dead_dasia, Key_Greek_eta, 0x1F27, + Key_asciitilde, Key_dead_dasia, Key_Greek_iota, 0x1F37, + Key_asciitilde, Key_dead_dasia, Key_Greek_upsilon, 0x1F57, + Key_asciitilde, Key_dead_dasia, Key_Greek_omega, 0x1F67, + Key_macron, Key_exclam, Key_L, 0x1E38, + Key_macron, Key_exclam, Key_R, 0x1E5C, + Key_macron, Key_exclam, Key_l, 0x1E39, + Key_macron, Key_exclam, Key_r, 0x1E5D, + Key_macron, Key_quotedbl, Key_A, 0x01DE, + Key_macron, Key_quotedbl, Key_O, 0x022A, + Key_macron, Key_quotedbl, Key_U, 0x01D5, + Key_macron, Key_quotedbl, Key_a, 0x01DF, + Key_macron, Key_quotedbl, Key_o, 0x022B, + Key_macron, Key_quotedbl, Key_u, 0x01D6, + Key_macron, Key_period, Key_A, 0x01E0, + Key_macron, Key_period, Key_O, 0x0230, + Key_macron, Key_period, Key_a, 0x01E1, + Key_macron, Key_period, Key_o, 0x0231, + Key_macron, Key_semicolon, Key_O, 0x01EC, + Key_macron, Key_semicolon, Key_o, 0x01ED, + Key_macron, Key_asciitilde, Key_O, 0x022C, + Key_macron, Key_asciitilde, Key_o, 0x022D, + Key_macron, Key_dead_tilde, Key_O, 0x022C, + Key_macron, Key_dead_tilde, Key_o, 0x022D, + Key_macron, Key_dead_abovedot, Key_A, 0x01E0, + Key_macron, Key_dead_abovedot, Key_O, 0x0230, + Key_macron, Key_dead_abovedot, Key_a, 0x01E1, + Key_macron, Key_dead_abovedot, Key_o, 0x0231, + Key_macron, Key_dead_diaeresis, Key_A, 0x01DE, + Key_macron, Key_dead_diaeresis, Key_O, 0x022A, + Key_macron, Key_dead_diaeresis, Key_U, 0x01D5, + Key_macron, Key_dead_diaeresis, Key_a, 0x01DF, + Key_macron, Key_dead_diaeresis, Key_o, 0x022B, + Key_macron, Key_dead_diaeresis, Key_u, 0x01D6, + Key_macron, Key_dead_ogonek, Key_O, 0x01EC, + Key_macron, Key_dead_ogonek, Key_o, 0x01ED, + Key_macron, Key_dead_belowdot, Key_L, 0x1E38, + Key_macron, Key_dead_belowdot, Key_R, 0x1E5C, + Key_macron, Key_dead_belowdot, Key_l, 0x1E39, + Key_macron, Key_dead_belowdot, Key_r, 0x1E5D, + Key_acute, Key_quotedbl, Key_I, 0x1E2E, + Key_acute, Key_quotedbl, Key_U, 0x01D7, + Key_acute, Key_quotedbl, Key_i, 0x1E2F, + Key_acute, Key_quotedbl, Key_u, 0x01D8, + Key_acute, Key_quotedbl, Key_Greek_iota, 0x0390, + Key_acute, Key_quotedbl, Key_Greek_upsilon, 0x03B0, + Key_acute, Key_parenleft, Key_Greek_ALPHA, 0x1F0D, + Key_acute, Key_parenleft, Key_Greek_EPSILON, 0x1F1D, + Key_acute, Key_parenleft, Key_Greek_ETA, 0x1F2D, + Key_acute, Key_parenleft, Key_Greek_IOTA, 0x1F3D, + Key_acute, Key_parenleft, Key_Greek_OMICRON, 0x1F4D, + Key_acute, Key_parenleft, Key_Greek_UPSILON, 0x1F5D, + Key_acute, Key_parenleft, Key_Greek_OMEGA, 0x1F6D, + Key_acute, Key_parenleft, Key_Greek_alpha, 0x1F05, + Key_acute, Key_parenleft, Key_Greek_epsilon, 0x1F15, + Key_acute, Key_parenleft, Key_Greek_eta, 0x1F25, + Key_acute, Key_parenleft, Key_Greek_iota, 0x1F35, + Key_acute, Key_parenleft, Key_Greek_omicron, 0x1F45, + Key_acute, Key_parenleft, Key_Greek_upsilon, 0x1F55, + Key_acute, Key_parenleft, Key_Greek_omega, 0x1F65, + Key_acute, Key_parenright, Key_Greek_ALPHA, 0x1F0C, + Key_acute, Key_parenright, Key_Greek_EPSILON, 0x1F1C, + Key_acute, Key_parenright, Key_Greek_ETA, 0x1F2C, + Key_acute, Key_parenright, Key_Greek_IOTA, 0x1F3C, + Key_acute, Key_parenright, Key_Greek_OMICRON, 0x1F4C, + Key_acute, Key_parenright, Key_Greek_OMEGA, 0x1F6C, + Key_acute, Key_parenright, Key_Greek_alpha, 0x1F04, + Key_acute, Key_parenright, Key_Greek_epsilon, 0x1F14, + Key_acute, Key_parenright, Key_Greek_eta, 0x1F24, + Key_acute, Key_parenright, Key_Greek_iota, 0x1F34, + Key_acute, Key_parenright, Key_Greek_omicron, 0x1F44, + Key_acute, Key_parenright, Key_Greek_upsilon, 0x1F54, + Key_acute, Key_parenright, Key_Greek_omega, 0x1F64, + Key_acute, Key_plus, Key_O, 0x1EDA, + Key_acute, Key_plus, Key_U, 0x1EE8, + Key_acute, Key_plus, Key_o, 0x1EDB, + Key_acute, Key_plus, Key_u, 0x1EE9, + Key_acute, Key_comma, Key_C, 0x1E08, + Key_acute, Key_comma, Key_c, 0x1E09, + Key_acute, Key_slash, Key_O, 0x01FE, + Key_acute, Key_slash, Key_o, 0x01FF, + Key_acute, Key_asciicircum, Key_A, 0x1EA4, + Key_acute, Key_asciicircum, Key_E, 0x1EBE, + Key_acute, Key_asciicircum, Key_O, 0x1ED0, + Key_acute, Key_asciicircum, Key_a, 0x1EA5, + Key_acute, Key_asciicircum, Key_e, 0x1EBF, + Key_acute, Key_asciicircum, Key_o, 0x1ED1, + Key_acute, Key_underscore, Key_E, 0x1E16, + Key_acute, Key_underscore, Key_O, 0x1E52, + Key_acute, Key_underscore, Key_e, 0x1E17, + Key_acute, Key_underscore, Key_o, 0x1E53, + Key_acute, Key_b, Key_A, 0x1EAE, + Key_acute, Key_b, Key_a, 0x1EAF, + Key_acute, Key_asciitilde, Key_O, 0x1E4C, + Key_acute, Key_asciitilde, Key_U, 0x1E78, + Key_acute, Key_asciitilde, Key_o, 0x1E4D, + Key_acute, Key_asciitilde, Key_u, 0x1E79, + Key_acute, Key_macron, Key_E, 0x1E16, + Key_acute, Key_macron, Key_O, 0x1E52, + Key_acute, Key_macron, Key_e, 0x1E17, + Key_acute, Key_macron, Key_o, 0x1E53, + Key_acute, Key_cedilla, Key_C, 0x1E08, + Key_acute, Key_cedilla, Key_c, 0x1E09, + Key_acute, Key_dead_circumflex, Key_A, 0x1EA4, + Key_acute, Key_dead_circumflex, Key_E, 0x1EBE, + Key_acute, Key_dead_circumflex, Key_O, 0x1ED0, + Key_acute, Key_dead_circumflex, Key_a, 0x1EA5, + Key_acute, Key_dead_circumflex, Key_e, 0x1EBF, + Key_acute, Key_dead_circumflex, Key_o, 0x1ED1, + Key_acute, Key_dead_tilde, Key_O, 0x1E4C, + Key_acute, Key_dead_tilde, Key_U, 0x1E78, + Key_acute, Key_dead_tilde, Key_o, 0x1E4D, + Key_acute, Key_dead_tilde, Key_u, 0x1E79, + Key_acute, Key_dead_macron, Key_E, 0x1E16, + Key_acute, Key_dead_macron, Key_O, 0x1E52, + Key_acute, Key_dead_macron, Key_e, 0x1E17, + Key_acute, Key_dead_macron, Key_o, 0x1E53, + Key_acute, Key_dead_breve, Key_A, 0x1EAE, + Key_acute, Key_dead_breve, Key_a, 0x1EAF, + Key_acute, Key_dead_diaeresis, Key_I, 0x1E2E, + Key_acute, Key_dead_diaeresis, Key_U, 0x01D7, + Key_acute, Key_dead_diaeresis, Key_i, 0x1E2F, + Key_acute, Key_dead_diaeresis, Key_u, 0x01D8, + Key_acute, Key_dead_diaeresis, Key_Greek_iota, 0x0390, + Key_acute, Key_dead_diaeresis, Key_Greek_upsilon, 0x03B0, + Key_acute, Key_dead_abovering, Key_A, 0x01FA, + Key_acute, Key_dead_abovering, Key_a, 0x01FB, + Key_acute, Key_dead_cedilla, Key_C, 0x1E08, + Key_acute, Key_dead_cedilla, Key_c, 0x1E09, + Key_acute, Key_dead_horn, Key_O, 0x1EDA, + Key_acute, Key_dead_horn, Key_U, 0x1EE8, + Key_acute, Key_dead_horn, Key_o, 0x1EDB, + Key_acute, Key_dead_horn, Key_u, 0x1EE9, + Key_acute, Key_dead_psili, Key_Greek_ALPHA, 0x1F0C, + Key_acute, Key_dead_psili, Key_Greek_EPSILON, 0x1F1C, + Key_acute, Key_dead_psili, Key_Greek_ETA, 0x1F2C, + Key_acute, Key_dead_psili, Key_Greek_IOTA, 0x1F3C, + Key_acute, Key_dead_psili, Key_Greek_OMICRON, 0x1F4C, + Key_acute, Key_dead_psili, Key_Greek_OMEGA, 0x1F6C, + Key_acute, Key_dead_psili, Key_Greek_alpha, 0x1F04, + Key_acute, Key_dead_psili, Key_Greek_epsilon, 0x1F14, + Key_acute, Key_dead_psili, Key_Greek_eta, 0x1F24, + Key_acute, Key_dead_psili, Key_Greek_iota, 0x1F34, + Key_acute, Key_dead_psili, Key_Greek_omicron, 0x1F44, + Key_acute, Key_dead_psili, Key_Greek_upsilon, 0x1F54, + Key_acute, Key_dead_psili, Key_Greek_omega, 0x1F64, + Key_acute, Key_dead_dasia, Key_Greek_ALPHA, 0x1F0D, + Key_acute, Key_dead_dasia, Key_Greek_EPSILON, 0x1F1D, + Key_acute, Key_dead_dasia, Key_Greek_ETA, 0x1F2D, + Key_acute, Key_dead_dasia, Key_Greek_IOTA, 0x1F3D, + Key_acute, Key_dead_dasia, Key_Greek_OMICRON, 0x1F4D, + Key_acute, Key_dead_dasia, Key_Greek_UPSILON, 0x1F5D, + Key_acute, Key_dead_dasia, Key_Greek_OMEGA, 0x1F6D, + Key_acute, Key_dead_dasia, Key_Greek_alpha, 0x1F05, + Key_acute, Key_dead_dasia, Key_Greek_epsilon, 0x1F15, + Key_acute, Key_dead_dasia, Key_Greek_eta, 0x1F25, + Key_acute, Key_dead_dasia, Key_Greek_iota, 0x1F35, + Key_acute, Key_dead_dasia, Key_Greek_omicron, 0x1F45, + Key_acute, Key_dead_dasia, Key_Greek_upsilon, 0x1F55, + Key_acute, Key_dead_dasia, Key_Greek_omega, 0x1F65, + Key_acute, Key_KP_Divide, Key_O, 0x01FE, + Key_acute, Key_KP_Divide, Key_o, 0x01FF, + 0x05C1, 0x05BC, Key_hebrew_shin, 0xFB2C, + 0x05C2, 0x05BC, Key_hebrew_shin, 0xFB2D, + Key_Greek_iota, Key_apostrophe, Key_Greek_alpha, 0x1FB4, + Key_Greek_iota, Key_apostrophe, Key_Greek_eta, 0x1FC4, + Key_Greek_iota, Key_apostrophe, Key_Greek_omega, 0x1FF4, + Key_Greek_iota, Key_apostrophe, 0x1F00, 0x1F84, + Key_Greek_iota, Key_apostrophe, 0x1F01, 0x1F85, + Key_Greek_iota, Key_apostrophe, 0x1F08, 0x1F8C, + Key_Greek_iota, Key_apostrophe, 0x1F09, 0x1F8D, + Key_Greek_iota, Key_apostrophe, 0x1F20, 0x1F94, + Key_Greek_iota, Key_apostrophe, 0x1F21, 0x1F95, + Key_Greek_iota, Key_apostrophe, 0x1F28, 0x1F9C, + Key_Greek_iota, Key_apostrophe, 0x1F29, 0x1F9D, + Key_Greek_iota, Key_apostrophe, 0x1F60, 0x1FA4, + Key_Greek_iota, Key_apostrophe, 0x1F61, 0x1FA5, + Key_Greek_iota, Key_apostrophe, 0x1F68, 0x1FAC, + Key_Greek_iota, Key_apostrophe, 0x1F69, 0x1FAD, + Key_Greek_iota, Key_parenleft, Key_Greek_ALPHA, 0x1F89, + Key_Greek_iota, Key_parenleft, Key_Greek_ETA, 0x1F99, + Key_Greek_iota, Key_parenleft, Key_Greek_OMEGA, 0x1FA9, + Key_Greek_iota, Key_parenleft, Key_Greek_alpha, 0x1F81, + Key_Greek_iota, Key_parenleft, Key_Greek_eta, 0x1F91, + Key_Greek_iota, Key_parenleft, Key_Greek_omega, 0x1FA1, + Key_Greek_iota, Key_parenright, Key_Greek_ALPHA, 0x1F88, + Key_Greek_iota, Key_parenright, Key_Greek_ETA, 0x1F98, + Key_Greek_iota, Key_parenright, Key_Greek_OMEGA, 0x1FA8, + Key_Greek_iota, Key_parenright, Key_Greek_alpha, 0x1F80, + Key_Greek_iota, Key_parenright, Key_Greek_eta, 0x1F90, + Key_Greek_iota, Key_parenright, Key_Greek_omega, 0x1FA0, + Key_Greek_iota, Key_grave, Key_Greek_alpha, 0x1FB2, + Key_Greek_iota, Key_grave, Key_Greek_eta, 0x1FC2, + Key_Greek_iota, Key_grave, Key_Greek_omega, 0x1FF2, + Key_Greek_iota, Key_grave, 0x1F00, 0x1F82, + Key_Greek_iota, Key_grave, 0x1F01, 0x1F83, + Key_Greek_iota, Key_grave, 0x1F08, 0x1F8A, + Key_Greek_iota, Key_grave, 0x1F09, 0x1F8B, + Key_Greek_iota, Key_grave, 0x1F20, 0x1F92, + Key_Greek_iota, Key_grave, 0x1F21, 0x1F93, + Key_Greek_iota, Key_grave, 0x1F28, 0x1F9A, + Key_Greek_iota, Key_grave, 0x1F29, 0x1F9B, + Key_Greek_iota, Key_grave, 0x1F60, 0x1FA2, + Key_Greek_iota, Key_grave, 0x1F61, 0x1FA3, + Key_Greek_iota, Key_grave, 0x1F68, 0x1FAA, + Key_Greek_iota, Key_grave, 0x1F69, 0x1FAB, + Key_Greek_iota, Key_asciitilde, Key_Greek_alpha, 0x1FB7, + Key_Greek_iota, Key_asciitilde, Key_Greek_eta, 0x1FC7, + Key_Greek_iota, Key_asciitilde, Key_Greek_omega, 0x1FF7, + Key_Greek_iota, Key_asciitilde, 0x1F00, 0x1F86, + Key_Greek_iota, Key_asciitilde, 0x1F01, 0x1F87, + Key_Greek_iota, Key_asciitilde, 0x1F08, 0x1F8E, + Key_Greek_iota, Key_asciitilde, 0x1F09, 0x1F8F, + Key_Greek_iota, Key_asciitilde, 0x1F20, 0x1F96, + Key_Greek_iota, Key_asciitilde, 0x1F21, 0x1F97, + Key_Greek_iota, Key_asciitilde, 0x1F28, 0x1F9E, + Key_Greek_iota, Key_asciitilde, 0x1F29, 0x1F9F, + Key_Greek_iota, Key_asciitilde, 0x1F60, 0x1FA6, + Key_Greek_iota, Key_asciitilde, 0x1F61, 0x1FA7, + Key_Greek_iota, Key_asciitilde, 0x1F68, 0x1FAE, + Key_Greek_iota, Key_asciitilde, 0x1F69, 0x1FAF, + Key_Greek_iota, Key_acute, Key_Greek_alpha, 0x1FB4, + Key_Greek_iota, Key_acute, Key_Greek_eta, 0x1FC4, + Key_Greek_iota, Key_acute, Key_Greek_omega, 0x1FF4, + Key_Greek_iota, Key_acute, 0x1F00, 0x1F84, + Key_Greek_iota, Key_acute, 0x1F01, 0x1F85, + Key_Greek_iota, Key_acute, 0x1F08, 0x1F8C, + Key_Greek_iota, Key_acute, 0x1F09, 0x1F8D, + Key_Greek_iota, Key_acute, 0x1F20, 0x1F94, + Key_Greek_iota, Key_acute, 0x1F21, 0x1F95, + Key_Greek_iota, Key_acute, 0x1F28, 0x1F9C, + Key_Greek_iota, Key_acute, 0x1F29, 0x1F9D, + Key_Greek_iota, Key_acute, 0x1F60, 0x1FA4, + Key_Greek_iota, Key_acute, 0x1F61, 0x1FA5, + Key_Greek_iota, Key_acute, 0x1F68, 0x1FAC, + Key_Greek_iota, Key_acute, 0x1F69, 0x1FAD, + Key_Greek_iota, Key_dead_grave, Key_Greek_alpha, 0x1FB2, + Key_Greek_iota, Key_dead_grave, Key_Greek_eta, 0x1FC2, + Key_Greek_iota, Key_dead_grave, Key_Greek_omega, 0x1FF2, + Key_Greek_iota, Key_dead_grave, 0x1F00, 0x1F82, + Key_Greek_iota, Key_dead_grave, 0x1F01, 0x1F83, + Key_Greek_iota, Key_dead_grave, 0x1F08, 0x1F8A, + Key_Greek_iota, Key_dead_grave, 0x1F09, 0x1F8B, + Key_Greek_iota, Key_dead_grave, 0x1F20, 0x1F92, + Key_Greek_iota, Key_dead_grave, 0x1F21, 0x1F93, + Key_Greek_iota, Key_dead_grave, 0x1F28, 0x1F9A, + Key_Greek_iota, Key_dead_grave, 0x1F29, 0x1F9B, + Key_Greek_iota, Key_dead_grave, 0x1F60, 0x1FA2, + Key_Greek_iota, Key_dead_grave, 0x1F61, 0x1FA3, + Key_Greek_iota, Key_dead_grave, 0x1F68, 0x1FAA, + Key_Greek_iota, Key_dead_grave, 0x1F69, 0x1FAB, + Key_Greek_iota, Key_dead_acute, Key_Greek_alpha, 0x1FB4, + Key_Greek_iota, Key_dead_acute, Key_Greek_eta, 0x1FC4, + Key_Greek_iota, Key_dead_acute, Key_Greek_omega, 0x1FF4, + Key_Greek_iota, Key_dead_acute, 0x1F00, 0x1F84, + Key_Greek_iota, Key_dead_acute, 0x1F01, 0x1F85, + Key_Greek_iota, Key_dead_acute, 0x1F08, 0x1F8C, + Key_Greek_iota, Key_dead_acute, 0x1F09, 0x1F8D, + Key_Greek_iota, Key_dead_acute, 0x1F20, 0x1F94, + Key_Greek_iota, Key_dead_acute, 0x1F21, 0x1F95, + Key_Greek_iota, Key_dead_acute, 0x1F28, 0x1F9C, + Key_Greek_iota, Key_dead_acute, 0x1F29, 0x1F9D, + Key_Greek_iota, Key_dead_acute, 0x1F60, 0x1FA4, + Key_Greek_iota, Key_dead_acute, 0x1F61, 0x1FA5, + Key_Greek_iota, Key_dead_acute, 0x1F68, 0x1FAC, + Key_Greek_iota, Key_dead_acute, 0x1F69, 0x1FAD, + Key_Greek_iota, Key_dead_tilde, Key_Greek_alpha, 0x1FB7, + Key_Greek_iota, Key_dead_tilde, Key_Greek_eta, 0x1FC7, + Key_Greek_iota, Key_dead_tilde, Key_Greek_omega, 0x1FF7, + Key_Greek_iota, Key_dead_tilde, 0x1F00, 0x1F86, + Key_Greek_iota, Key_dead_tilde, 0x1F01, 0x1F87, + Key_Greek_iota, Key_dead_tilde, 0x1F08, 0x1F8E, + Key_Greek_iota, Key_dead_tilde, 0x1F09, 0x1F8F, + Key_Greek_iota, Key_dead_tilde, 0x1F20, 0x1F96, + Key_Greek_iota, Key_dead_tilde, 0x1F21, 0x1F97, + Key_Greek_iota, Key_dead_tilde, 0x1F28, 0x1F9E, + Key_Greek_iota, Key_dead_tilde, 0x1F29, 0x1F9F, + Key_Greek_iota, Key_dead_tilde, 0x1F60, 0x1FA6, + Key_Greek_iota, Key_dead_tilde, 0x1F61, 0x1FA7, + Key_Greek_iota, Key_dead_tilde, 0x1F68, 0x1FAE, + Key_Greek_iota, Key_dead_tilde, 0x1F69, 0x1FAF, + Key_Greek_iota, Key_dead_psili, Key_Greek_ALPHA, 0x1F88, + Key_Greek_iota, Key_dead_psili, Key_Greek_ETA, 0x1F98, + Key_Greek_iota, Key_dead_psili, Key_Greek_OMEGA, 0x1FA8, + Key_Greek_iota, Key_dead_psili, Key_Greek_alpha, 0x1F80, + Key_Greek_iota, Key_dead_psili, Key_Greek_eta, 0x1F90, + Key_Greek_iota, Key_dead_psili, Key_Greek_omega, 0x1FA0, + Key_Greek_iota, Key_dead_dasia, Key_Greek_ALPHA, 0x1F89, + Key_Greek_iota, Key_dead_dasia, Key_Greek_ETA, 0x1F99, + Key_Greek_iota, Key_dead_dasia, Key_Greek_OMEGA, 0x1FA9, + Key_Greek_iota, Key_dead_dasia, Key_Greek_alpha, 0x1F81, + Key_Greek_iota, Key_dead_dasia, Key_Greek_eta, 0x1F91, + Key_Greek_iota, Key_dead_dasia, Key_Greek_omega, 0x1FA1, + Key_parenleft, Key_1, Key_0, Key_parenright, 0x2469, + Key_parenleft, Key_1, Key_1, Key_parenright, 0x246A, + Key_parenleft, Key_1, Key_2, Key_parenright, 0x246B, + Key_parenleft, Key_1, Key_3, Key_parenright, 0x246C, + Key_parenleft, Key_1, Key_4, Key_parenright, 0x246D, + Key_parenleft, Key_1, Key_5, Key_parenright, 0x246E, + Key_parenleft, Key_1, Key_6, Key_parenright, 0x246F, + Key_parenleft, Key_1, Key_7, Key_parenright, 0x2470, + Key_parenleft, Key_1, Key_8, Key_parenright, 0x2471, + Key_parenleft, Key_1, Key_9, Key_parenright, 0x2472, + Key_parenleft, Key_1, Key_KP_Space, Key_parenright, 0x246B, + Key_parenleft, Key_1, Key_KP_0, Key_parenright, 0x2469, + Key_parenleft, Key_1, Key_KP_1, Key_parenright, 0x246A, + Key_parenleft, Key_1, Key_KP_2, Key_parenright, 0x246B, + Key_parenleft, Key_1, Key_KP_3, Key_parenright, 0x246C, + Key_parenleft, Key_1, Key_KP_4, Key_parenright, 0x246D, + Key_parenleft, Key_1, Key_KP_5, Key_parenright, 0x246E, + Key_parenleft, Key_1, Key_KP_6, Key_parenright, 0x246F, + Key_parenleft, Key_1, Key_KP_7, Key_parenright, 0x2470, + Key_parenleft, Key_1, Key_KP_8, Key_parenright, 0x2471, + Key_parenleft, Key_1, Key_KP_9, Key_parenright, 0x2472, + Key_parenleft, Key_2, Key_0, Key_parenright, 0x2473, + Key_parenleft, Key_2, Key_1, Key_parenright, 0x3251, + Key_parenleft, Key_2, Key_2, Key_parenright, 0x3252, + Key_parenleft, Key_2, Key_3, Key_parenright, 0x3253, + Key_parenleft, Key_2, Key_4, Key_parenright, 0x3254, + Key_parenleft, Key_2, Key_5, Key_parenright, 0x3255, + Key_parenleft, Key_2, Key_6, Key_parenright, 0x3256, + Key_parenleft, Key_2, Key_7, Key_parenright, 0x3257, + Key_parenleft, Key_2, Key_8, Key_parenright, 0x3258, + Key_parenleft, Key_2, Key_9, Key_parenright, 0x3259, + Key_parenleft, Key_2, Key_KP_Space, Key_parenright, 0x3252, + Key_parenleft, Key_2, Key_KP_0, Key_parenright, 0x2473, + Key_parenleft, Key_2, Key_KP_1, Key_parenright, 0x3251, + Key_parenleft, Key_2, Key_KP_2, Key_parenright, 0x3252, + Key_parenleft, Key_2, Key_KP_3, Key_parenright, 0x3253, + Key_parenleft, Key_2, Key_KP_4, Key_parenright, 0x3254, + Key_parenleft, Key_2, Key_KP_5, Key_parenright, 0x3255, + Key_parenleft, Key_2, Key_KP_6, Key_parenright, 0x3256, + Key_parenleft, Key_2, Key_KP_7, Key_parenright, 0x3257, + Key_parenleft, Key_2, Key_KP_8, Key_parenright, 0x3258, + Key_parenleft, Key_2, Key_KP_9, Key_parenright, 0x3259, + Key_parenleft, Key_3, Key_0, Key_parenright, 0x325A, + Key_parenleft, Key_3, Key_1, Key_parenright, 0x325B, + Key_parenleft, Key_3, Key_2, Key_parenright, 0x325C, + Key_parenleft, Key_3, Key_3, Key_parenright, 0x325D, + Key_parenleft, Key_3, Key_4, Key_parenright, 0x325E, + Key_parenleft, Key_3, Key_5, Key_parenright, 0x325F, + Key_parenleft, Key_3, Key_6, Key_parenright, 0x32B1, + Key_parenleft, Key_3, Key_7, Key_parenright, 0x32B2, + Key_parenleft, Key_3, Key_8, Key_parenright, 0x32B3, + Key_parenleft, Key_3, Key_9, Key_parenright, 0x32B4, + Key_parenleft, Key_3, Key_KP_Space, Key_parenright, 0x325C, + Key_parenleft, Key_3, Key_KP_0, Key_parenright, 0x325A, + Key_parenleft, Key_3, Key_KP_1, Key_parenright, 0x325B, + Key_parenleft, Key_3, Key_KP_2, Key_parenright, 0x325C, + Key_parenleft, Key_3, Key_KP_3, Key_parenright, 0x325D, + Key_parenleft, Key_3, Key_KP_4, Key_parenright, 0x325E, + Key_parenleft, Key_3, Key_KP_5, Key_parenright, 0x325F, + Key_parenleft, Key_3, Key_KP_6, Key_parenright, 0x32B1, + Key_parenleft, Key_3, Key_KP_7, Key_parenright, 0x32B2, + Key_parenleft, Key_3, Key_KP_8, Key_parenright, 0x32B3, + Key_parenleft, Key_3, Key_KP_9, Key_parenright, 0x32B4, + Key_parenleft, Key_4, Key_0, Key_parenright, 0x32B5, + Key_parenleft, Key_4, Key_1, Key_parenright, 0x32B6, + Key_parenleft, Key_4, Key_2, Key_parenright, 0x32B7, + Key_parenleft, Key_4, Key_3, Key_parenright, 0x32B8, + Key_parenleft, Key_4, Key_4, Key_parenright, 0x32B9, + Key_parenleft, Key_4, Key_5, Key_parenright, 0x32BA, + Key_parenleft, Key_4, Key_6, Key_parenright, 0x32BB, + Key_parenleft, Key_4, Key_7, Key_parenright, 0x32BC, + Key_parenleft, Key_4, Key_8, Key_parenright, 0x32BD, + Key_parenleft, Key_4, Key_9, Key_parenright, 0x32BE, + Key_parenleft, Key_4, Key_KP_Space, Key_parenright, 0x32B7, + Key_parenleft, Key_4, Key_KP_0, Key_parenright, 0x32B5, + Key_parenleft, Key_4, Key_KP_1, Key_parenright, 0x32B6, + Key_parenleft, Key_4, Key_KP_2, Key_parenright, 0x32B7, + Key_parenleft, Key_4, Key_KP_3, Key_parenright, 0x32B8, + Key_parenleft, Key_4, Key_KP_4, Key_parenright, 0x32B9, + Key_parenleft, Key_4, Key_KP_5, Key_parenright, 0x32BA, + Key_parenleft, Key_4, Key_KP_6, Key_parenright, 0x32BB, + Key_parenleft, Key_4, Key_KP_7, Key_parenright, 0x32BC, + Key_parenleft, Key_4, Key_KP_8, Key_parenright, 0x32BD, + Key_parenleft, Key_4, Key_KP_9, Key_parenright, 0x32BE, + Key_parenleft, Key_5, Key_KP_0, Key_parenright, 0x32BF, + Key_parenleft, 0x1100, 0x1161, Key_parenright, 0x326E, + Key_parenleft, 0x1102, 0x1161, Key_parenright, 0x326F, + Key_parenleft, 0x1103, 0x1161, Key_parenright, 0x3270, + Key_parenleft, 0x1105, 0x1161, Key_parenright, 0x3271, + Key_parenleft, 0x1106, 0x1161, Key_parenright, 0x3272, + Key_parenleft, 0x1107, 0x1161, Key_parenright, 0x3273, + Key_parenleft, 0x1109, 0x1161, Key_parenright, 0x3274, + Key_parenleft, 0x110B, 0x1161, Key_parenright, 0x3275, + Key_parenleft, 0x110C, 0x1161, Key_parenright, 0x3276, + Key_parenleft, 0x110E, 0x1161, Key_parenright, 0x3277, + Key_parenleft, 0x110F, 0x1161, Key_parenright, 0x3278, + Key_parenleft, 0x1110, 0x1161, Key_parenright, 0x3279, + Key_parenleft, 0x1111, 0x1161, Key_parenright, 0x327A, + Key_parenleft, 0x1112, 0x1161, Key_parenright, 0x327B, + Key_parenleft, Key_KP_Space, Key_0, Key_parenright, 0x2473, + Key_parenleft, Key_KP_Space, Key_1, Key_parenright, 0x3251, + Key_parenleft, Key_KP_Space, Key_2, Key_parenright, 0x3252, + Key_parenleft, Key_KP_Space, Key_3, Key_parenright, 0x3253, + Key_parenleft, Key_KP_Space, Key_4, Key_parenright, 0x3254, + Key_parenleft, Key_KP_Space, Key_5, Key_parenright, 0x3255, + Key_parenleft, Key_KP_Space, Key_6, Key_parenright, 0x3256, + Key_parenleft, Key_KP_Space, Key_7, Key_parenright, 0x3257, + Key_parenleft, Key_KP_Space, Key_8, Key_parenright, 0x3258, + Key_parenleft, Key_KP_Space, Key_9, Key_parenright, 0x3259, + Key_parenleft, Key_KP_Space, Key_KP_Space, Key_parenright, 0x3252, + Key_parenleft, Key_KP_Space, Key_KP_0, Key_parenright, 0x2473, + Key_parenleft, Key_KP_Space, Key_KP_1, Key_parenright, 0x3251, + Key_parenleft, Key_KP_Space, Key_KP_2, Key_parenright, 0x3252, + Key_parenleft, Key_KP_Space, Key_KP_3, Key_parenright, 0x3253, + Key_parenleft, Key_KP_Space, Key_KP_4, Key_parenright, 0x3254, + Key_parenleft, Key_KP_Space, Key_KP_5, Key_parenright, 0x3255, + Key_parenleft, Key_KP_Space, Key_KP_6, Key_parenright, 0x3256, + Key_parenleft, Key_KP_Space, Key_KP_7, Key_parenright, 0x3257, + Key_parenleft, Key_KP_Space, Key_KP_8, Key_parenright, 0x3258, + Key_parenleft, Key_KP_Space, Key_KP_9, Key_parenright, 0x3259, + Key_parenleft, Key_KP_1, Key_0, Key_parenright, 0x2469, + Key_parenleft, Key_KP_1, Key_1, Key_parenright, 0x246A, + Key_parenleft, Key_KP_1, Key_2, Key_parenright, 0x246B, + Key_parenleft, Key_KP_1, Key_3, Key_parenright, 0x246C, + Key_parenleft, Key_KP_1, Key_4, Key_parenright, 0x246D, + Key_parenleft, Key_KP_1, Key_5, Key_parenright, 0x246E, + Key_parenleft, Key_KP_1, Key_6, Key_parenright, 0x246F, + Key_parenleft, Key_KP_1, Key_7, Key_parenright, 0x2470, + Key_parenleft, Key_KP_1, Key_8, Key_parenright, 0x2471, + Key_parenleft, Key_KP_1, Key_9, Key_parenright, 0x2472, + Key_parenleft, Key_KP_1, Key_KP_Space, Key_parenright, 0x246B, + Key_parenleft, Key_KP_1, Key_KP_0, Key_parenright, 0x2469, + Key_parenleft, Key_KP_1, Key_KP_1, Key_parenright, 0x246A, + Key_parenleft, Key_KP_1, Key_KP_2, Key_parenright, 0x246B, + Key_parenleft, Key_KP_1, Key_KP_3, Key_parenright, 0x246C, + Key_parenleft, Key_KP_1, Key_KP_4, Key_parenright, 0x246D, + Key_parenleft, Key_KP_1, Key_KP_5, Key_parenright, 0x246E, + Key_parenleft, Key_KP_1, Key_KP_6, Key_parenright, 0x246F, + Key_parenleft, Key_KP_1, Key_KP_7, Key_parenright, 0x2470, + Key_parenleft, Key_KP_1, Key_KP_8, Key_parenright, 0x2471, + Key_parenleft, Key_KP_1, Key_KP_9, Key_parenright, 0x2472, + Key_parenleft, Key_KP_2, Key_0, Key_parenright, 0x2473, + Key_parenleft, Key_KP_2, Key_1, Key_parenright, 0x3251, + Key_parenleft, Key_KP_2, Key_2, Key_parenright, 0x3252, + Key_parenleft, Key_KP_2, Key_3, Key_parenright, 0x3253, + Key_parenleft, Key_KP_2, Key_4, Key_parenright, 0x3254, + Key_parenleft, Key_KP_2, Key_5, Key_parenright, 0x3255, + Key_parenleft, Key_KP_2, Key_6, Key_parenright, 0x3256, + Key_parenleft, Key_KP_2, Key_7, Key_parenright, 0x3257, + Key_parenleft, Key_KP_2, Key_8, Key_parenright, 0x3258, + Key_parenleft, Key_KP_2, Key_9, Key_parenright, 0x3259, + Key_parenleft, Key_KP_2, Key_KP_Space, Key_parenright, 0x3252, + Key_parenleft, Key_KP_2, Key_KP_0, Key_parenright, 0x2473, + Key_parenleft, Key_KP_2, Key_KP_1, Key_parenright, 0x3251, + Key_parenleft, Key_KP_2, Key_KP_2, Key_parenright, 0x3252, + Key_parenleft, Key_KP_2, Key_KP_3, Key_parenright, 0x3253, + Key_parenleft, Key_KP_2, Key_KP_4, Key_parenright, 0x3254, + Key_parenleft, Key_KP_2, Key_KP_5, Key_parenright, 0x3255, + Key_parenleft, Key_KP_2, Key_KP_6, Key_parenright, 0x3256, + Key_parenleft, Key_KP_2, Key_KP_7, Key_parenright, 0x3257, + Key_parenleft, Key_KP_2, Key_KP_8, Key_parenright, 0x3258, + Key_parenleft, Key_KP_2, Key_KP_9, Key_parenright, 0x3259, + Key_parenleft, Key_KP_3, Key_0, Key_parenright, 0x325A, + Key_parenleft, Key_KP_3, Key_1, Key_parenright, 0x325B, + Key_parenleft, Key_KP_3, Key_2, Key_parenright, 0x325C, + Key_parenleft, Key_KP_3, Key_3, Key_parenright, 0x325D, + Key_parenleft, Key_KP_3, Key_4, Key_parenright, 0x325E, + Key_parenleft, Key_KP_3, Key_5, Key_parenright, 0x325F, + Key_parenleft, Key_KP_3, Key_6, Key_parenright, 0x32B1, + Key_parenleft, Key_KP_3, Key_7, Key_parenright, 0x32B2, + Key_parenleft, Key_KP_3, Key_8, Key_parenright, 0x32B3, + Key_parenleft, Key_KP_3, Key_9, Key_parenright, 0x32B4, + Key_parenleft, Key_KP_3, Key_KP_Space, Key_parenright, 0x325C, + Key_parenleft, Key_KP_3, Key_KP_0, Key_parenright, 0x325A, + Key_parenleft, Key_KP_3, Key_KP_1, Key_parenright, 0x325B, + Key_parenleft, Key_KP_3, Key_KP_2, Key_parenright, 0x325C, + Key_parenleft, Key_KP_3, Key_KP_3, Key_parenright, 0x325D, + Key_parenleft, Key_KP_3, Key_KP_4, Key_parenright, 0x325E, + Key_parenleft, Key_KP_3, Key_KP_5, Key_parenright, 0x325F, + Key_parenleft, Key_KP_3, Key_KP_6, Key_parenright, 0x32B1, + Key_parenleft, Key_KP_3, Key_KP_7, Key_parenright, 0x32B2, + Key_parenleft, Key_KP_3, Key_KP_8, Key_parenright, 0x32B3, + Key_parenleft, Key_KP_3, Key_KP_9, Key_parenright, 0x32B4, + Key_parenleft, Key_KP_4, Key_0, Key_parenright, 0x32B5, + Key_parenleft, Key_KP_4, Key_1, Key_parenright, 0x32B6, + Key_parenleft, Key_KP_4, Key_2, Key_parenright, 0x32B7, + Key_parenleft, Key_KP_4, Key_3, Key_parenright, 0x32B8, + Key_parenleft, Key_KP_4, Key_4, Key_parenright, 0x32B9, + Key_parenleft, Key_KP_4, Key_5, Key_parenright, 0x32BA, + Key_parenleft, Key_KP_4, Key_6, Key_parenright, 0x32BB, + Key_parenleft, Key_KP_4, Key_7, Key_parenright, 0x32BC, + Key_parenleft, Key_KP_4, Key_8, Key_parenright, 0x32BD, + Key_parenleft, Key_KP_4, Key_9, Key_parenright, 0x32BE, + Key_parenleft, Key_KP_4, Key_KP_Space, Key_parenright, 0x32B7, + Key_parenleft, Key_KP_4, Key_KP_0, Key_parenright, 0x32B5, + Key_parenleft, Key_KP_4, Key_KP_1, Key_parenright, 0x32B6, + Key_parenleft, Key_KP_4, Key_KP_2, Key_parenright, 0x32B7, + Key_parenleft, Key_KP_4, Key_KP_3, Key_parenright, 0x32B8, + Key_parenleft, Key_KP_4, Key_KP_4, Key_parenright, 0x32B9, + Key_parenleft, Key_KP_4, Key_KP_5, Key_parenright, 0x32BA, + Key_parenleft, Key_KP_4, Key_KP_6, Key_parenright, 0x32BB, + Key_parenleft, Key_KP_4, Key_KP_7, Key_parenright, 0x32BC, + Key_parenleft, Key_KP_4, Key_KP_8, Key_parenright, 0x32BD, + Key_parenleft, Key_KP_4, Key_KP_9, Key_parenright, 0x32BE, + Key_parenleft, Key_KP_5, Key_KP_0, Key_parenright, 0x32BF, + Key_Greek_iota, Key_apostrophe, Key_parenleft, Key_Greek_ALPHA, 0x1F8D, + Key_Greek_iota, Key_apostrophe, Key_parenleft, Key_Greek_ETA, 0x1F9D, + Key_Greek_iota, Key_apostrophe, Key_parenleft, Key_Greek_OMEGA, 0x1FAD, + Key_Greek_iota, Key_apostrophe, Key_parenleft, Key_Greek_alpha, 0x1F85, + Key_Greek_iota, Key_apostrophe, Key_parenleft, Key_Greek_eta, 0x1F95, + Key_Greek_iota, Key_apostrophe, Key_parenleft, Key_Greek_omega, 0x1FA5, + Key_Greek_iota, Key_apostrophe, Key_parenright, Key_Greek_ALPHA, 0x1F8C, + Key_Greek_iota, Key_apostrophe, Key_parenright, Key_Greek_ETA, 0x1F9C, + Key_Greek_iota, Key_apostrophe, Key_parenright, Key_Greek_OMEGA, 0x1FAC, + Key_Greek_iota, Key_apostrophe, Key_parenright, Key_Greek_alpha, 0x1F84, + Key_Greek_iota, Key_apostrophe, Key_parenright, Key_Greek_eta, 0x1F94, + Key_Greek_iota, Key_apostrophe, Key_parenright, Key_Greek_omega, 0x1FA4, + Key_Greek_iota, Key_apostrophe, Key_dead_psili, Key_Greek_ALPHA, 0x1F8C, + Key_Greek_iota, Key_apostrophe, Key_dead_psili, Key_Greek_ETA, 0x1F9C, + Key_Greek_iota, Key_apostrophe, Key_dead_psili, Key_Greek_OMEGA, 0x1FAC, + Key_Greek_iota, Key_apostrophe, Key_dead_psili, Key_Greek_alpha, 0x1F84, + Key_Greek_iota, Key_apostrophe, Key_dead_psili, Key_Greek_eta, 0x1F94, + Key_Greek_iota, Key_apostrophe, Key_dead_psili, Key_Greek_omega, 0x1FA4, + Key_Greek_iota, Key_apostrophe, Key_dead_dasia, Key_Greek_ALPHA, 0x1F8D, + Key_Greek_iota, Key_apostrophe, Key_dead_dasia, Key_Greek_ETA, 0x1F9D, + Key_Greek_iota, Key_apostrophe, Key_dead_dasia, Key_Greek_OMEGA, 0x1FAD, + Key_Greek_iota, Key_apostrophe, Key_dead_dasia, Key_Greek_alpha, 0x1F85, + Key_Greek_iota, Key_apostrophe, Key_dead_dasia, Key_Greek_eta, 0x1F95, + Key_Greek_iota, Key_apostrophe, Key_dead_dasia, Key_Greek_omega, 0x1FA5, + Key_Greek_iota, Key_grave, Key_parenleft, Key_Greek_ALPHA, 0x1F8B, + Key_Greek_iota, Key_grave, Key_parenleft, Key_Greek_ETA, 0x1F9B, + Key_Greek_iota, Key_grave, Key_parenleft, Key_Greek_OMEGA, 0x1FAB, + Key_Greek_iota, Key_grave, Key_parenleft, Key_Greek_alpha, 0x1F83, + Key_Greek_iota, Key_grave, Key_parenleft, Key_Greek_eta, 0x1F93, + Key_Greek_iota, Key_grave, Key_parenleft, Key_Greek_omega, 0x1FA3, + Key_Greek_iota, Key_grave, Key_parenright, Key_Greek_ALPHA, 0x1F8A, + Key_Greek_iota, Key_grave, Key_parenright, Key_Greek_ETA, 0x1F9A, + Key_Greek_iota, Key_grave, Key_parenright, Key_Greek_OMEGA, 0x1FAA, + Key_Greek_iota, Key_grave, Key_parenright, Key_Greek_alpha, 0x1F82, + Key_Greek_iota, Key_grave, Key_parenright, Key_Greek_eta, 0x1F92, + Key_Greek_iota, Key_grave, Key_parenright, Key_Greek_omega, 0x1FA2, + Key_Greek_iota, Key_grave, Key_dead_psili, Key_Greek_ALPHA, 0x1F8A, + Key_Greek_iota, Key_grave, Key_dead_psili, Key_Greek_ETA, 0x1F9A, + Key_Greek_iota, Key_grave, Key_dead_psili, Key_Greek_OMEGA, 0x1FAA, + Key_Greek_iota, Key_grave, Key_dead_psili, Key_Greek_alpha, 0x1F82, + Key_Greek_iota, Key_grave, Key_dead_psili, Key_Greek_eta, 0x1F92, + Key_Greek_iota, Key_grave, Key_dead_psili, Key_Greek_omega, 0x1FA2, + Key_Greek_iota, Key_grave, Key_dead_dasia, Key_Greek_ALPHA, 0x1F8B, + Key_Greek_iota, Key_grave, Key_dead_dasia, Key_Greek_ETA, 0x1F9B, + Key_Greek_iota, Key_grave, Key_dead_dasia, Key_Greek_OMEGA, 0x1FAB, + Key_Greek_iota, Key_grave, Key_dead_dasia, Key_Greek_alpha, 0x1F83, + Key_Greek_iota, Key_grave, Key_dead_dasia, Key_Greek_eta, 0x1F93, + Key_Greek_iota, Key_grave, Key_dead_dasia, Key_Greek_omega, 0x1FA3, + Key_Greek_iota, Key_asciitilde, Key_parenleft, Key_Greek_ALPHA, 0x1F8F, + Key_Greek_iota, Key_asciitilde, Key_parenleft, Key_Greek_ETA, 0x1F9F, + Key_Greek_iota, Key_asciitilde, Key_parenleft, Key_Greek_OMEGA, 0x1FAF, + Key_Greek_iota, Key_asciitilde, Key_parenleft, Key_Greek_alpha, 0x1F87, + Key_Greek_iota, Key_asciitilde, Key_parenleft, Key_Greek_eta, 0x1F97, + Key_Greek_iota, Key_asciitilde, Key_parenleft, Key_Greek_omega, 0x1FA7, + Key_Greek_iota, Key_asciitilde, Key_parenright, Key_Greek_ALPHA, 0x1F8E, + Key_Greek_iota, Key_asciitilde, Key_parenright, Key_Greek_ETA, 0x1F9E, + Key_Greek_iota, Key_asciitilde, Key_parenright, Key_Greek_OMEGA, 0x1FAE, + Key_Greek_iota, Key_asciitilde, Key_parenright, Key_Greek_alpha, 0x1F86, + Key_Greek_iota, Key_asciitilde, Key_parenright, Key_Greek_eta, 0x1F96, + Key_Greek_iota, Key_asciitilde, Key_parenright, Key_Greek_omega, 0x1FA6, + Key_Greek_iota, Key_asciitilde, Key_dead_psili, Key_Greek_ALPHA, 0x1F8E, + Key_Greek_iota, Key_asciitilde, Key_dead_psili, Key_Greek_ETA, 0x1F9E, + Key_Greek_iota, Key_asciitilde, Key_dead_psili, Key_Greek_OMEGA, 0x1FAE, + Key_Greek_iota, Key_asciitilde, Key_dead_psili, Key_Greek_alpha, 0x1F86, + Key_Greek_iota, Key_asciitilde, Key_dead_psili, Key_Greek_eta, 0x1F96, + Key_Greek_iota, Key_asciitilde, Key_dead_psili, Key_Greek_omega, 0x1FA6, + Key_Greek_iota, Key_asciitilde, Key_dead_dasia, Key_Greek_ALPHA, 0x1F8F, + Key_Greek_iota, Key_asciitilde, Key_dead_dasia, Key_Greek_ETA, 0x1F9F, + Key_Greek_iota, Key_asciitilde, Key_dead_dasia, Key_Greek_OMEGA, 0x1FAF, + Key_Greek_iota, Key_asciitilde, Key_dead_dasia, Key_Greek_alpha, 0x1F87, + Key_Greek_iota, Key_asciitilde, Key_dead_dasia, Key_Greek_eta, 0x1F97, + Key_Greek_iota, Key_asciitilde, Key_dead_dasia, Key_Greek_omega, 0x1FA7, + Key_Greek_iota, Key_acute, Key_parenleft, Key_Greek_ALPHA, 0x1F8D, + Key_Greek_iota, Key_acute, Key_parenleft, Key_Greek_ETA, 0x1F9D, + Key_Greek_iota, Key_acute, Key_parenleft, Key_Greek_OMEGA, 0x1FAD, + Key_Greek_iota, Key_acute, Key_parenleft, Key_Greek_alpha, 0x1F85, + Key_Greek_iota, Key_acute, Key_parenleft, Key_Greek_eta, 0x1F95, + Key_Greek_iota, Key_acute, Key_parenleft, Key_Greek_omega, 0x1FA5, + Key_Greek_iota, Key_acute, Key_parenright, Key_Greek_ALPHA, 0x1F8C, + Key_Greek_iota, Key_acute, Key_parenright, Key_Greek_ETA, 0x1F9C, + Key_Greek_iota, Key_acute, Key_parenright, Key_Greek_OMEGA, 0x1FAC, + Key_Greek_iota, Key_acute, Key_parenright, Key_Greek_alpha, 0x1F84, + Key_Greek_iota, Key_acute, Key_parenright, Key_Greek_eta, 0x1F94, + Key_Greek_iota, Key_acute, Key_parenright, Key_Greek_omega, 0x1FA4, + Key_Greek_iota, Key_acute, Key_dead_psili, Key_Greek_ALPHA, 0x1F8C, + Key_Greek_iota, Key_acute, Key_dead_psili, Key_Greek_ETA, 0x1F9C, + Key_Greek_iota, Key_acute, Key_dead_psili, Key_Greek_OMEGA, 0x1FAC, + Key_Greek_iota, Key_acute, Key_dead_psili, Key_Greek_alpha, 0x1F84, + Key_Greek_iota, Key_acute, Key_dead_psili, Key_Greek_eta, 0x1F94, + Key_Greek_iota, Key_acute, Key_dead_psili, Key_Greek_omega, 0x1FA4, + Key_Greek_iota, Key_acute, Key_dead_dasia, Key_Greek_ALPHA, 0x1F8D, + Key_Greek_iota, Key_acute, Key_dead_dasia, Key_Greek_ETA, 0x1F9D, + Key_Greek_iota, Key_acute, Key_dead_dasia, Key_Greek_OMEGA, 0x1FAD, + Key_Greek_iota, Key_acute, Key_dead_dasia, Key_Greek_alpha, 0x1F85, + Key_Greek_iota, Key_acute, Key_dead_dasia, Key_Greek_eta, 0x1F95, + Key_Greek_iota, Key_acute, Key_dead_dasia, Key_Greek_omega, 0x1FA5, + Key_Greek_iota, Key_dead_grave, Key_parenleft, Key_Greek_ALPHA, 0x1F8B, + Key_Greek_iota, Key_dead_grave, Key_parenleft, Key_Greek_ETA, 0x1F9B, + Key_Greek_iota, Key_dead_grave, Key_parenleft, Key_Greek_OMEGA, 0x1FAB, + Key_Greek_iota, Key_dead_grave, Key_parenleft, Key_Greek_alpha, 0x1F83, + Key_Greek_iota, Key_dead_grave, Key_parenleft, Key_Greek_eta, 0x1F93, + Key_Greek_iota, Key_dead_grave, Key_parenleft, Key_Greek_omega, 0x1FA3, + Key_Greek_iota, Key_dead_grave, Key_parenright, Key_Greek_ALPHA, 0x1F8A, + Key_Greek_iota, Key_dead_grave, Key_parenright, Key_Greek_ETA, 0x1F9A, + Key_Greek_iota, Key_dead_grave, Key_parenright, Key_Greek_OMEGA, 0x1FAA, + Key_Greek_iota, Key_dead_grave, Key_parenright, Key_Greek_alpha, 0x1F82, + Key_Greek_iota, Key_dead_grave, Key_parenright, Key_Greek_eta, 0x1F92, + Key_Greek_iota, Key_dead_grave, Key_parenright, Key_Greek_omega, 0x1FA2, + Key_Greek_iota, Key_dead_grave, Key_dead_psili, Key_Greek_ALPHA, 0x1F8A, + Key_Greek_iota, Key_dead_grave, Key_dead_psili, Key_Greek_ETA, 0x1F9A, + Key_Greek_iota, Key_dead_grave, Key_dead_psili, Key_Greek_OMEGA, 0x1FAA, + Key_Greek_iota, Key_dead_grave, Key_dead_psili, Key_Greek_alpha, 0x1F82, + Key_Greek_iota, Key_dead_grave, Key_dead_psili, Key_Greek_eta, 0x1F92, + Key_Greek_iota, Key_dead_grave, Key_dead_psili, Key_Greek_omega, 0x1FA2, + Key_Greek_iota, Key_dead_grave, Key_dead_dasia, Key_Greek_ALPHA, 0x1F8B, + Key_Greek_iota, Key_dead_grave, Key_dead_dasia, Key_Greek_ETA, 0x1F9B, + Key_Greek_iota, Key_dead_grave, Key_dead_dasia, Key_Greek_OMEGA, 0x1FAB, + Key_Greek_iota, Key_dead_grave, Key_dead_dasia, Key_Greek_alpha, 0x1F83, + Key_Greek_iota, Key_dead_grave, Key_dead_dasia, Key_Greek_eta, 0x1F93, + Key_Greek_iota, Key_dead_grave, Key_dead_dasia, Key_Greek_omega, 0x1FA3, + Key_Greek_iota, Key_dead_acute, Key_parenleft, Key_Greek_ALPHA, 0x1F8D, + Key_Greek_iota, Key_dead_acute, Key_parenleft, Key_Greek_ETA, 0x1F9D, + Key_Greek_iota, Key_dead_acute, Key_parenleft, Key_Greek_OMEGA, 0x1FAD, + Key_Greek_iota, Key_dead_acute, Key_parenleft, Key_Greek_alpha, 0x1F85, + Key_Greek_iota, Key_dead_acute, Key_parenleft, Key_Greek_eta, 0x1F95, + Key_Greek_iota, Key_dead_acute, Key_parenleft, Key_Greek_omega, 0x1FA5, + Key_Greek_iota, Key_dead_acute, Key_parenright, Key_Greek_ALPHA, 0x1F8C, + Key_Greek_iota, Key_dead_acute, Key_parenright, Key_Greek_ETA, 0x1F9C, + Key_Greek_iota, Key_dead_acute, Key_parenright, Key_Greek_OMEGA, 0x1FAC, + Key_Greek_iota, Key_dead_acute, Key_parenright, Key_Greek_alpha, 0x1F84, + Key_Greek_iota, Key_dead_acute, Key_parenright, Key_Greek_eta, 0x1F94, + Key_Greek_iota, Key_dead_acute, Key_parenright, Key_Greek_omega, 0x1FA4, + Key_Greek_iota, Key_dead_acute, Key_dead_psili, Key_Greek_ALPHA, 0x1F8C, + Key_Greek_iota, Key_dead_acute, Key_dead_psili, Key_Greek_ETA, 0x1F9C, + Key_Greek_iota, Key_dead_acute, Key_dead_psili, Key_Greek_OMEGA, 0x1FAC, + Key_Greek_iota, Key_dead_acute, Key_dead_psili, Key_Greek_alpha, 0x1F84, + Key_Greek_iota, Key_dead_acute, Key_dead_psili, Key_Greek_eta, 0x1F94, + Key_Greek_iota, Key_dead_acute, Key_dead_psili, Key_Greek_omega, 0x1FA4, + Key_Greek_iota, Key_dead_acute, Key_dead_dasia, Key_Greek_ALPHA, 0x1F8D, + Key_Greek_iota, Key_dead_acute, Key_dead_dasia, Key_Greek_ETA, 0x1F9D, + Key_Greek_iota, Key_dead_acute, Key_dead_dasia, Key_Greek_OMEGA, 0x1FAD, + Key_Greek_iota, Key_dead_acute, Key_dead_dasia, Key_Greek_alpha, 0x1F85, + Key_Greek_iota, Key_dead_acute, Key_dead_dasia, Key_Greek_eta, 0x1F95, + Key_Greek_iota, Key_dead_acute, Key_dead_dasia, Key_Greek_omega, 0x1FA5, + Key_Greek_iota, Key_dead_tilde, Key_parenleft, Key_Greek_ALPHA, 0x1F8F, + Key_Greek_iota, Key_dead_tilde, Key_parenleft, Key_Greek_ETA, 0x1F9F, + Key_Greek_iota, Key_dead_tilde, Key_parenleft, Key_Greek_OMEGA, 0x1FAF, + Key_Greek_iota, Key_dead_tilde, Key_parenleft, Key_Greek_alpha, 0x1F87, + Key_Greek_iota, Key_dead_tilde, Key_parenleft, Key_Greek_eta, 0x1F97, + Key_Greek_iota, Key_dead_tilde, Key_parenleft, Key_Greek_omega, 0x1FA7, + Key_Greek_iota, Key_dead_tilde, Key_parenright, Key_Greek_ALPHA, 0x1F8E, + Key_Greek_iota, Key_dead_tilde, Key_parenright, Key_Greek_ETA, 0x1F9E, + Key_Greek_iota, Key_dead_tilde, Key_parenright, Key_Greek_OMEGA, 0x1FAE, + Key_Greek_iota, Key_dead_tilde, Key_parenright, Key_Greek_alpha, 0x1F86, + Key_Greek_iota, Key_dead_tilde, Key_parenright, Key_Greek_eta, 0x1F96, + Key_Greek_iota, Key_dead_tilde, Key_parenright, Key_Greek_omega, 0x1FA6, + Key_Greek_iota, Key_dead_tilde, Key_dead_psili, Key_Greek_ALPHA, 0x1F8E, + Key_Greek_iota, Key_dead_tilde, Key_dead_psili, Key_Greek_ETA, 0x1F9E, + Key_Greek_iota, Key_dead_tilde, Key_dead_psili, Key_Greek_OMEGA, 0x1FAE, + Key_Greek_iota, Key_dead_tilde, Key_dead_psili, Key_Greek_alpha, 0x1F86, + Key_Greek_iota, Key_dead_tilde, Key_dead_psili, Key_Greek_eta, 0x1F96, + Key_Greek_iota, Key_dead_tilde, Key_dead_psili, Key_Greek_omega, 0x1FA6, + Key_Greek_iota, Key_dead_tilde, Key_dead_dasia, Key_Greek_ALPHA, 0x1F8F, + Key_Greek_iota, Key_dead_tilde, Key_dead_dasia, Key_Greek_ETA, 0x1F9F, + Key_Greek_iota, Key_dead_tilde, Key_dead_dasia, Key_Greek_OMEGA, 0x1FAF, + Key_Greek_iota, Key_dead_tilde, Key_dead_dasia, Key_Greek_alpha, 0x1F87, + Key_Greek_iota, Key_dead_tilde, Key_dead_dasia, Key_Greek_eta, 0x1F97, +}; + +#endif + + +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/frontend/qt/fcitx-input-context.cpp fcitx-4.1.1/src/frontend/qt/fcitx-input-context.cpp --- fcitx-4.0.1/src/frontend/qt/fcitx-input-context.cpp 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/frontend/qt/fcitx-input-context.cpp 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,824 @@ +#include +#include +#include +#include + +#include +#include + +#include "fcitx/ime.h" +#include "fcitx-utils/utils.h" +#include "fcitx/frontend.h" +#include "fcitx-config/hotkey.h" +#include "module/dbus/dbusstuff.h" +#include "frontend/ipc/ipc.h" +#include "fcitx-compose-data.h" +#include "fcitx-input-context.h" +#include "keyserver_x11.h" + +#if defined(Q_WS_X11) +#include + +#include +#include +#include +static const int XKeyPress = KeyPress; +static const int XKeyRelease = KeyRelease; +#undef KeyPress +#undef KeyRelease +#undef FocusIn +#undef FocusOut +#endif + +typedef struct _FcitxComposeTableCompact FcitxComposeTableCompact; +struct _FcitxComposeTableCompact { + const quint32 *data; + int max_seq_len; + int n_index_size; + int n_index_stride; +}; + +static const FcitxComposeTableCompact ibus_compose_table_compact = { + fcitx_compose_seqs_compact, + 5, + 23, + 6 +}; + +static int +compare_seq_index (const void *key, const void *value) { + const uint *keysyms = (const uint *)key; + const quint32 *seq = (const quint32 *)value; + + if (keysyms[0] < seq[0]) + return -1; + else if (keysyms[0] > seq[0]) + return 1; + return 0; +} + +static int +compare_seq (const void *key, const void *value) { + int i = 0; + const uint *keysyms = (const uint *)key; + const quint32 *seq = (const quint32 *)value; + + while (keysyms[i]) { + if (keysyms[i] < seq[i]) + return -1; + else if (keysyms[i] > seq[i]) + return 1; + i++; + } + + return 0; +} + +static const uint fcitx_compose_ignore[] = { + Key_Shift_L, + Key_Shift_R, + Key_Control_L, + Key_Control_R, + Key_Caps_Lock, + Key_Shift_Lock, + Key_Meta_L, + Key_Meta_R, + Key_Alt_L, + Key_Alt_R, + Key_Super_L, + Key_Super_R, + Key_Hyper_L, + Key_Hyper_R, + Key_Mode_switch, + Key_ISO_Level3_Shift, + Key_VoidSymbol +}; + +typedef QInputMethodEvent::Attribute QAttribute; + +static bool key_filtered = false; + +static boolean FcitxIsHotKey(FcitxKeySym sym, int state, HOTKEYS * hotkey); + +boolean FcitxIsHotKey(FcitxKeySym sym, int state, HOTKEYS * hotkey) +{ + state &= KEY_CTRL_ALT_SHIFT_COMP; + if (hotkey[0].sym && sym == hotkey[0].sym && (hotkey[0].state == state) ) + return true; + if (hotkey[1].sym && sym == hotkey[1].sym && (hotkey[1].state == state) ) + return true; + return false; +} + +QFcitxInputContext::QFcitxInputContext() + : m_connection(QDBusConnection::sessionBus()), + m_dbusproxy(0), + m_improxy(0), + m_icproxy(0), + m_id(0), + m_path(""), + m_enable(false), + m_has_focus(false), + m_slave(0), + m_n_compose(0) +{ +#if defined(Q_WS_X11) + /* slave has too much limitation, ibus compose by hand is better, so m_slave will be NULL then */ +#if 0 + m_slave = QInputContextFactory::create("xims", 0); +#endif +#endif + memset(m_compose_buffer, 0, sizeof(uint)* (FCITX_MAX_COMPOSE_LEN + 1)); + + if (m_slave) + { + qDebug() << "slave created"; + m_slave->setParent(this); + connect(m_slave, SIGNAL(destroyed(QObject*)), this, SLOT(destroySlaveContext())); + } + + m_dbusproxy = new org::freedesktop::DBus(DBUS_SERVICE_DBUS, DBUS_PATH_DBUS, m_connection, this); + connect(m_dbusproxy, SIGNAL(NameOwnerChanged(QString,QString,QString)), this, SLOT(imChanged(QString,QString,QString))); + + m_triggerKey[0].sym = m_triggerKey[1].sym = (FcitxKeySym) 0; + m_triggerKey[0].state = m_triggerKey[1].state = 0; + + m_serviceName = QString("%1-%2").arg(FCITX_DBUS_SERVICE).arg(FcitxGetDisplayNumber()); + + createInputContext(); +} + +QFcitxInputContext::~QFcitxInputContext() +{ + delete m_dbusproxy; + if (m_improxy) + delete m_improxy; + if (m_icproxy) + { + if (m_icproxy->isValid()) + { + m_icproxy->DestroyIC(); + } + + delete m_icproxy; + } +} + +QString QFcitxInputContext::identifierName() +{ + return FCITX_IDENTIFIER_NAME; +} + +QString QFcitxInputContext::language() +{ + return ""; +} + +void QFcitxInputContext::reset() +{ + if (isValid()) + m_icproxy->Reset(); + if (m_slave) + m_slave->reset(); +} + +void QFcitxInputContext::update() +{ + QWidget* widget = focusWidget(); + if (widget == NULL || !isValid()) + { + return; + } + + QRect rect = widget->inputMethodQuery(Qt::ImMicroFocus).toRect (); + + QPoint topleft = widget->mapToGlobal(QPoint(0,0)); + rect.translate (topleft); + + m_icproxy->SetCursorLocation(rect.x (), rect.y () + rect.height()); +} + + +bool QFcitxInputContext::isComposing() const +{ + return false; +} + +bool QFcitxInputContext::filterEvent(const QEvent* event) +{ +#ifndef Q_WS_X11 + QWidget* keywidget = focusWidget(); + + if (key_filtered) + return false; + + if (!keywidget->testAttribute(Qt::WA_WState_Created)) + return false; + + if (!keywidget || keywidget->inputMethodHints() & (Qt::ImhExclusiveInputMask | Qt::ImhHiddenText)) + return false; + + if (!isValid() || (event->type() != QEvent::KeyPress && event->type() != QEvent::KeyRelease)) + { + return QInputContext::filterEvent(event); + } + + const QKeyEvent *key_event = static_cast (event); + if (!m_enable) + { + FcitxKeySym fcitxsym; + uint fcitxstate; + GetKey((FcitxKeySym) key_event->nativeVirtualKey(), key_event->nativeModifiers(), &fcitxsym, &fcitxstate); + if (!FcitxIsHotKey(fcitxsym, fcitxstate, m_triggerKey)) + { + if (m_slave && m_slave->filterEvent(event )) + return true; + else + return QInputContext::filterEvent(event); + } + + } + m_icproxy->FocusIn(); + + struct timeval current_time; + gettimeofday (¤t_time, NULL); + uint time = (current_time.tv_sec * 1000) + (current_time.tv_usec / 1000); + + QDBusPendingReply< int > result = this->m_icproxy->ProcessKeyEvent(key_event->nativeVirtualKey(), + key_event->nativeScanCode(), + key_event->nativeModifiers(), + (event->type() == QEvent::KeyPress)?FCITX_PRESS_KEY:FCITX_RELEASE_KEY, + time + ); + { + QEventLoop loop; + QDBusPendingCallWatcher watcher (result); + loop.connect(&watcher, SIGNAL(finished(QDBusPendingCallWatcher*)), SLOT(quit())); + loop.exec(QEventLoop::ExcludeUserInputEvents | QEventLoop::WaitForMoreEvents); + } + + if (result.isError() || result.value() <= 0) + return QInputContext::filterEvent(event); + else + { + update(); + return true; + } +#else + Q_UNUSED(event); + return false; +#endif + +} + +QKeyEvent* QFcitxInputContext::createKeyEvent(uint keyval, uint state, int type) +{ + Q_UNUSED(keyval); + Q_UNUSED(state); + + Qt::KeyboardModifiers qstate = Qt::NoModifier; + + int count = 1; + if(state & KEY_ALT_COMP) + { + qstate |= Qt::AltModifier; + count ++; + } + + if(state & KEY_SHIFT_COMP) + { + qstate |= Qt::ShiftModifier; + count ++; + } + + if(state & KEY_CTRL_COMP) + { + qstate |= Qt::ControlModifier; + count ++; + } + + int key; + symToKeyQt(keyval, key); + + QKeyEvent* keyevent = new QKeyEvent( + (type == FCITX_PRESS_KEY)? (QEvent::KeyPress) : (QEvent::KeyRelease), + key, + qstate, + QString(), + false, + count + ); + + return keyevent; +} + +void QFcitxInputContext::setFocusWidget(QWidget* w) +{ + QWidget *oldFocus = focusWidget(); + + if (oldFocus == w) + return; + + if (oldFocus && isValid()) { + m_icproxy->FocusOut(); + } + + QInputContext::setFocusWidget(w); + if (m_slave) + { + m_slave->setFocusWidget(w); + } + + if (!w || w->inputMethodHints() & (Qt::ImhExclusiveInputMask | Qt::ImhHiddenText)) + return; + + bool has_focus = (w != NULL); + + if (!isValid()) + return; + + if (has_focus) { + m_icproxy->FocusIn(); + } + else { + m_icproxy->FocusOut(); + } + update (); +} + +void QFcitxInputContext::widgetDestroyed(QWidget* w) +{ + QInputContext::widgetDestroyed(w); + if (m_slave) + m_slave->widgetDestroyed(w); + if (!isValid()) + return; + if (w == focusWidget()) + m_icproxy->FocusOut(); + update(); +} + + +#if defined(Q_WS_X11) + +bool QFcitxInputContext::x11FilterEvent(QWidget* keywidget, XEvent* event) +{ + if (key_filtered) + return false; + + if (!keywidget->testAttribute(Qt::WA_WState_Created)) + return false; + + if (keywidget != focusWidget()) + return false; + + if (!keywidget || keywidget->inputMethodHints() & (Qt::ImhExclusiveInputMask | Qt::ImhHiddenText)) + return false; + + if (!isValid() || (event->type != XKeyRelease && event->type != XKeyPress)) + { + return x11FilterEventFallback(keywidget, event, 0); + } + + KeySym sym = 0; + char strbuf[64]; + memset(strbuf, 0, 64); + XLookupString(&event->xkey, strbuf, 64, &sym, NULL); + + + if (!m_enable) + { + FcitxKeySym fcitxsym; + uint fcitxstate; + GetKey((FcitxKeySym) sym, event->xkey.state, &fcitxsym, &fcitxstate); + if (!FcitxIsHotKey(fcitxsym, fcitxstate, m_triggerKey)) + { + return x11FilterEventFallback(keywidget, event, sym); + } + } + + m_icproxy->FocusIn(); + + QDBusPendingReply< int > result = this->m_icproxy->ProcessKeyEvent( + sym, + event->xkey.keycode, + event->xkey.state, + (event->type == XKeyPress)?FCITX_PRESS_KEY:FCITX_RELEASE_KEY, + event->xkey.time + ); + { + QEventLoop loop; + QDBusPendingCallWatcher watcher (result); + loop.connect(&watcher, SIGNAL(finished(QDBusPendingCallWatcher*)), SLOT(quit())); + loop.exec(QEventLoop::ExcludeUserInputEvents | QEventLoop::WaitForMoreEvents); + } + + if (result.isError() || result.value() <= 0) + { + return x11FilterEventFallback(keywidget, event, sym); + } + else + { + update(); + return true; + } + return false; +} + +bool QFcitxInputContext::x11FilterEventFallback(QWidget *keywidget, XEvent *event, KeySym sym) +{ + if (m_slave && m_slave->x11FilterEvent(keywidget, event)) + return true; + else + { + if (event->type == XKeyPress || event->type == XKeyRelease) + { + if (processCompose(sym, event->xkey.state, (event->type == XKeyPress)?FCITX_PRESS_KEY:FCITX_RELEASE_KEY)) + { + return true; + } + } + return QInputContext::x11FilterEvent(keywidget, event); + } +} + +#endif // Q_WS_X11 + + +void QFcitxInputContext::imChanged(const QString& service, const QString& oldowner, const QString& newowner) +{ + if (service == m_serviceName) + { + /* old die */ + if (oldowner.length() > 0 || newowner.length() > 0) + { + if (m_improxy) + { + delete m_improxy; + m_improxy = NULL; + } + + if (m_icproxy) + { + delete m_icproxy; + m_icproxy = NULL; + } + m_enable = false; + m_triggerKey[0].sym = m_triggerKey[1].sym = (FcitxKeySym) 0; + m_triggerKey[0].state = m_triggerKey[1].state = 0; + } + + /* new rise */ + if (newowner.length() > 0) + createInputContext(); + } +} + +void QFcitxInputContext::createInputContext() +{ + m_improxy = new org::fcitx::Fcitx::InputMethod(m_serviceName, FCITX_IM_DBUS_PATH, m_connection, this); + + if (!m_improxy->isValid()) + return; + + QDBusPendingReply< int, uint, uint, uint, uint > result = m_improxy->CreateIC(); + QDBusPendingCallWatcher* watcher = new QDBusPendingCallWatcher(result); + connect(watcher, SIGNAL(finished(QDBusPendingCallWatcher*)), this, SLOT(createInputContextFinished(QDBusPendingCallWatcher*))); +} + +void QFcitxInputContext::createInputContextFinished(QDBusPendingCallWatcher* watcher) +{ + QDBusPendingReply< int, uint, uint, uint, uint > result = *watcher; + if (result.isError()) + qWarning() << result.error(); + else + { + + this->m_id = qdbus_cast(result.argumentAt(0)); + m_triggerKey[0].sym = (FcitxKeySym) qdbus_cast(result.argumentAt(1)); + m_triggerKey[0].state = qdbus_cast(result.argumentAt(2)); + m_triggerKey[1].sym = (FcitxKeySym) qdbus_cast(result.argumentAt(3)); + m_triggerKey[1].state = qdbus_cast(result.argumentAt(4)); + this->m_path = QString(FCITX_IC_DBUS_PATH_QSTRING).arg(m_id); + m_icproxy = new org::fcitx::Fcitx::InputContext(m_serviceName, m_path, m_connection, this); + connect(m_icproxy, SIGNAL(CloseIM()), this, SLOT(closeIM())); + connect(m_icproxy, SIGNAL(CommitString(QString)), this, SLOT(commitString(QString))); + connect(m_icproxy, SIGNAL(EnableIM()), this, SLOT(enableIM())); + connect(m_icproxy, SIGNAL(ForwardKey(uint, uint, int)), this, SLOT(forwardKey(uint, uint, int))); + connect(m_icproxy, SIGNAL(UpdatePreedit(QString,int)), this, SLOT(updatePreedit(QString, int))); + + if (m_icproxy->isValid() && focusWidget() != NULL) + m_icproxy->FocusIn(); + + if (m_icproxy) + m_icproxy->SetCapacity(CAPACITY_PREEDIT); + } + delete watcher; +} + +void QFcitxInputContext::closeIM() +{ + this->m_enable = false; +} + +void QFcitxInputContext::enableIM() +{ + this->m_enable = true; +} + +void QFcitxInputContext::commitString(const QString& str) +{ + QInputMethodEvent event; + event.setCommitString(str); + sendEvent(event); + update(); +} + +void QFcitxInputContext::updatePreedit(const QString& str, int cursorPos) +{ + QByteArray array = str.toUtf8(); + array.truncate(cursorPos); + cursorPos = QString::fromUtf8(array).length(); + + QList attrList; + QTextCharFormat format; + format.setUnderlineStyle(QTextCharFormat::DashUnderline); + attrList.append(QAttribute(QInputMethodEvent::Cursor, cursorPos, 1, 0)); + attrList.append(QAttribute(QInputMethodEvent::TextFormat, 0, str.length(), format)); + QInputMethodEvent event(str, attrList); + sendEvent(event); + update(); +} + +void QFcitxInputContext::forwardKey(uint keyval, uint state, int type) +{ + QWidget* widget = focusWidget(); + if (widget != NULL) + { + key_filtered = true; +#ifdef Q_WS_X11 + const WId window_id = widget->winId(); + Display* x11_display = QX11Info::display(); + + XEvent* xevent = createXEvent(x11_display, window_id, keyval, state, type); + qApp->x11ProcessEvent(xevent); + free(xevent); +#else + QKeyEvent *keyevent = createKeyEvent(keyval, state, type); + QApplication::sendEvent(widget, keyevent); + delete keyevent; +#endif + key_filtered = false; + } +} + +#ifdef Q_WS_X11 +XEvent* QFcitxInputContext::createXEvent(Display* dpy, WId wid, uint keyval, uint state, int type) +{ + XEvent* xevent = static_cast (malloc(sizeof(XEvent))); + XKeyEvent *xkeyevent = &xevent->xkey; + + xkeyevent->type = type == FCITX_PRESS_KEY? XKeyPress : XKeyRelease; + xkeyevent->display = dpy; + xkeyevent->window = wid; + xkeyevent->subwindow = wid; + xkeyevent->serial = 0; /* hope it's ok */ + xkeyevent->send_event = FALSE; + xkeyevent->same_screen = FALSE; + + struct timeval current_time; + gettimeofday (¤t_time, NULL); + xkeyevent->time = (current_time.tv_sec * 1000) + (current_time.tv_usec / 1000); + + if (dpy != NULL) { + xkeyevent->root = DefaultRootWindow (dpy); + xkeyevent->keycode = XKeysymToKeycode (dpy, (KeySym) keyval); + } else { + xkeyevent->root = None; + xkeyevent->keycode = 0; + } + + xkeyevent->state = state; + + return xevent; +} +#endif + +bool QFcitxInputContext::isValid() +{ + return m_icproxy != NULL && m_icproxy->isValid(); +} + +void QFcitxInputContext::destroySlaveContext() +{ + if ( m_slave ) + { + m_slave->deleteLater(); + m_slave = 0; + } +} + +bool +QFcitxInputContext::processCompose (uint keyval, uint state, FcitxKeyEventType event) +{ + Q_UNUSED(state); + int i; + + if (event == FCITX_RELEASE_KEY) + return false; + + for (i = 0; fcitx_compose_ignore[i] != Key_VoidSymbol; i++) { + if (keyval == fcitx_compose_ignore[i]) + return false; + } + + m_compose_buffer[m_n_compose ++] = keyval; + m_compose_buffer[m_n_compose] = 0; + + if (checkCompactTable (&ibus_compose_table_compact)) { + // qDebug () << "checkCompactTable ->true"; + return true; + } + + if (checkAlgorithmically ()) { + // qDebug () << "checkAlgorithmically ->true"; + return true; + } + + if (m_n_compose > 1) { + QApplication::beep (); + m_compose_buffer[0] = 0; + m_n_compose = 0; + return true; + } + else { + m_compose_buffer[0] = 0; + m_n_compose = 0; + return false; + } +} + + +#define IS_DEAD_KEY(k) \ +((k) >= Key_dead_grave && (k) <= (Key_dead_dasia+1)) +quint32 fcitx_keyval_to_unicode (uint keyval); + +bool +QFcitxInputContext::checkAlgorithmically () +{ + int i; + UChar combination_buffer[FCITX_MAX_COMPOSE_LEN]; + + if (m_n_compose >= FCITX_MAX_COMPOSE_LEN) + return false; + + for (i = 0; i < m_n_compose && IS_DEAD_KEY (m_compose_buffer[i]); i++); + if (i == m_n_compose) + return true; + + if (i > 0 && i == m_n_compose - 1) { + combination_buffer[0] = fcitx_keyval_to_unicode (m_compose_buffer[i]); + combination_buffer[m_n_compose] = 0; + i--; + while (i >= 0) { + switch (m_compose_buffer[i]) { +#define CASE(keysym, unicode) \ +case Key_dead_##keysym: combination_buffer[i + 1] = unicode; break + CASE (grave, 0x0300); + CASE (acute, 0x0301); + CASE (circumflex, 0x0302); + CASE (tilde, 0x0303); /* Also used with perispomeni, 0x342. */ + CASE (macron, 0x0304); + CASE (breve, 0x0306); + CASE (abovedot, 0x0307); + CASE (diaeresis, 0x0308); + CASE (hook, 0x0309); + CASE (abovering, 0x030A); + CASE (doubleacute, 0x030B); + CASE (caron, 0x030C); + CASE (abovecomma, 0x0313); /* Equivalent to psili */ + CASE (abovereversedcomma, 0x0314); /* Equivalent to dasia */ + CASE (horn, 0x031B); /* Legacy use for psili, 0x313 (or 0x343). */ + CASE (belowdot, 0x0323); + CASE (cedilla, 0x0327); + CASE (ogonek, 0x0328); /* Legacy use for dasia, 0x314.*/ + CASE (iota, 0x0345); + CASE (voiced_sound, 0x3099); /* Per Markus Kuhn keysyms.txt file. */ + CASE (semivoiced_sound, 0x309A); /* Per Markus Kuhn keysyms.txt file. */ + /* The following cases are to be removed once xkeyboard-config, + * xorg are fully updated. + **/ + /* Workaround for typo in 1.4.x xserver-xorg */ + case 0xfe66: + combination_buffer[i + 1] = 0x314; + break; + /* CASE (dasia, 0x314); */ + /* CASE (perispomeni, 0x342); */ + /* CASE (psili, 0x343); */ +#undef CASE + default: + combination_buffer[i + 1] = fcitx_keyval_to_unicode (m_compose_buffer[i]); + } + i--; + } + + /* If the buffer normalizes to a single character, + * then modify the order of combination_buffer accordingly, if necessary, + * and return TRUE. + **/ +#if 0 + if (check_normalize_nfc (combination_buffer, m_n_compose)) + { + gunichar value; + combination_utf8 = g_ucs4_to_utf8 (combination_buffer, -1, NULL, NULL, NULL); + nfc = g_utf8_normalize (combination_utf8, -1, G_NORMALIZE_NFC); + + value = g_utf8_get_char (nfc); + gtk_im_context_simple_commit_char (GTK_IM_CONTEXT (context_simple), value); + context_simple->compose_buffer[0] = 0; + + g_free (combination_utf8); + g_free (nfc); + + return TRUE; + } +#endif + UErrorCode state = U_ZERO_ERROR; + UChar result[FCITX_MAX_COMPOSE_LEN + 1]; + i = unorm_normalize (combination_buffer, m_n_compose, UNORM_NFC, 0, result, FCITX_MAX_COMPOSE_LEN + 1, &state); + + // qDebug () << "combination_buffer = " << QString::fromUtf16(combination_buffer) << "m_n_compose" << m_n_compose; + // qDebug () << "result = " << QString::fromUtf16(result) << "i = " << i << state; + + if (i == 1) { + commitString (QString (QChar (result[0]))); + m_compose_buffer[0] = 0; + m_n_compose = 0; + return true; + } + } + return false; +} + + +bool +QFcitxInputContext::checkCompactTable (const FcitxComposeTableCompact *table) +{ + int row_stride; + const quint32 *seq_index; + const quint32 *seq; + int i; + + /* Will never match, if the sequence in the compose buffer is longer + * than the sequences in the table. Further, compare_seq (key, val) + * will overrun val if key is longer than val. */ + if (m_n_compose > table->max_seq_len) + return false; + + seq_index = (const quint32 *)bsearch (m_compose_buffer, + table->data, table->n_index_size, + sizeof (quint32) * table->n_index_stride, + compare_seq_index); + + if (!seq_index) { + return false; + } + + if (seq_index && m_n_compose == 1) { + return true; + } + + seq = NULL; + for (i = m_n_compose-1; i < table->max_seq_len; i++) { + row_stride = i + 1; + + if (seq_index[i+1] - seq_index[i] > 0) { + seq = (const quint32 *) bsearch (m_compose_buffer + 1, + table->data + seq_index[i], (seq_index[i+1] - seq_index[i]) / row_stride, + sizeof (quint32) * row_stride, + compare_seq); + if (seq) { + if (i == m_n_compose - 1) + break; + else { + return true; + } + } + } + } + + if (!seq) { + return false; + } + else + { + uint value; + value = seq[row_stride - 1]; + commitString (QString (QChar (value))); + m_compose_buffer[0] = 0; + m_n_compose = 0; + return true; + } + return false; +} +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/frontend/qt/fcitx-input-context.h fcitx-4.1.1/src/frontend/qt/fcitx-input-context.h --- fcitx-4.0.1/src/frontend/qt/fcitx-input-context.h 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/frontend/qt/fcitx-input-context.h 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,80 @@ +#ifndef __FCITX_INPUT_CONTEXT_H_ +#define __FCITX_INPUT_CONTEXT_H_ + +#include +#include +#include +#include +#include "org.freedesktop.DBus.h" +#include "org.fcitx.Fcitx.InputMethod.h" +#include "org.fcitx.Fcitx.InputContext.h" +#include "fcitx-config/hotkey.h" +#include "fcitx/ime.h" + +#if defined(Q_WS_X11) +#include +#endif + + +#define FCITX_IDENTIFIER_NAME "fcitx" +#define FCITX_MAX_COMPOSE_LEN 7 + +class QFcitxInputContext : public QInputContext { + Q_OBJECT +public: + QFcitxInputContext (); + ~QFcitxInputContext (); + + virtual QString identifierName(); + virtual QString language(); + virtual void reset(); + virtual bool isComposing() const; + virtual void update(); + virtual void setFocusWidget( QWidget *w ); + + virtual void widgetDestroyed(QWidget *w); + +#if defined(Q_WS_X11) + virtual bool x11FilterEvent( QWidget *keywidget, XEvent *event ); +#endif // Q_WS_X11 + virtual bool filterEvent(const QEvent* event); + +private Q_SLOTS: + void imChanged(const QString& service, const QString& oldowner, const QString& newowner); + void closeIM(); + void enableIM(); + void commitString(const QString& str); + void updatePreedit(const QString& str, int cursorPos); + void forwardKey(uint keyval, uint state, int type); + void destroySlaveContext(); + void createInputContextFinished(QDBusPendingCallWatcher* watcher); +private: + void createInputContext(); + bool processCompose (uint keyval, uint state, FcitxKeyEventType event); + bool checkAlgorithmically (); + bool checkCompactTable (const struct _FcitxComposeTableCompact *table); +#if defined(Q_WS_X11) + bool x11FilterEventFallback( QWidget *keywidget, XEvent *event , KeySym sym ); + XEvent* createXEvent(Display* dpy, WId wid, uint keyval, uint state, int type); +#endif // Q_WS_X11 + QKeyEvent* createKeyEvent(uint keyval, uint state, int type); + bool isValid(); + + QDBusConnection m_connection; + org::freedesktop::DBus* m_dbusproxy; + org::fcitx::Fcitx::InputMethod* m_improxy; + org::fcitx::Fcitx::InputContext* m_icproxy; + int m_id; + QString m_path; + bool m_enable; + bool m_has_focus; + HOTKEYS m_triggerKey[2]; + QInputContext* m_slave; + uint m_compose_buffer[FCITX_MAX_COMPOSE_LEN + 1]; + int m_n_compose; + QString m_serviceName; +}; + +#endif //__FCITX_INPUT_CONTEXT_H_ + +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/frontend/qt/fcitxkeyuni.cpp fcitx-4.1.1/src/frontend/qt/fcitxkeyuni.cpp --- fcitx-4.0.1/src/frontend/qt/fcitxkeyuni.cpp 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/frontend/qt/fcitxkeyuni.cpp 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,1696 @@ +/* GDK - The GIMP Drawing Kit + * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the + * Free Software Foundation, Inc., 59 Temple Place - Suite 330, + * Boston, MA 02111-1307, USA. + */ + +/* + * Modified by the GTK+ Team and others 1997-2000. See the AUTHORS + * file for a list of people on the GTK+ Team. See the ChangeLog + * files for a list of changes. These files are distributed with + * GTK+ at ftp://ftp.gtk.org/pub/gtk/. + */ + +#include + +/* Thanks to Markus G. Kuhn for the ksysym<->Unicode + * mapping functions, from the xterm sources. + */ + +/* These tables could be compressed by contiguous ranges, but the benefit of doing so + * is smallish. It would save about ~1000 bytes total. + */ + +static const struct { + unsigned short keysym; + unsigned short ucs; +} fcitx_keysym_to_unicode_tab[] = { + { 0x01a1, 0x0104 }, /* Aogonek Ą LATIN CAPITAL LETTER A WITH OGONEK */ + { 0x01a2, 0x02d8 }, /* breve ˘ BREVE */ + { 0x01a3, 0x0141 }, /* Lstroke Ł LATIN CAPITAL LETTER L WITH STROKE */ + { 0x01a5, 0x013d }, /* Lcaron Ľ LATIN CAPITAL LETTER L WITH CARON */ + { 0x01a6, 0x015a }, /* Sacute Ś LATIN CAPITAL LETTER S WITH ACUTE */ + { 0x01a9, 0x0160 }, /* Scaron Š LATIN CAPITAL LETTER S WITH CARON */ + { 0x01aa, 0x015e }, /* Scedilla Ş LATIN CAPITAL LETTER S WITH CEDILLA */ + { 0x01ab, 0x0164 }, /* Tcaron Ť LATIN CAPITAL LETTER T WITH CARON */ + { 0x01ac, 0x0179 }, /* Zacute Ź LATIN CAPITAL LETTER Z WITH ACUTE */ + { 0x01ae, 0x017d }, /* Zcaron Ž LATIN CAPITAL LETTER Z WITH CARON */ + { 0x01af, 0x017b }, /* Zabovedot Ż LATIN CAPITAL LETTER Z WITH DOT ABOVE */ + { 0x01b1, 0x0105 }, /* aogonek ą LATIN SMALL LETTER A WITH OGONEK */ + { 0x01b2, 0x02db }, /* ogonek ˛ OGONEK */ + { 0x01b3, 0x0142 }, /* lstroke ł LATIN SMALL LETTER L WITH STROKE */ + { 0x01b5, 0x013e }, /* lcaron ľ LATIN SMALL LETTER L WITH CARON */ + { 0x01b6, 0x015b }, /* sacute ś LATIN SMALL LETTER S WITH ACUTE */ + { 0x01b7, 0x02c7 }, /* caron ˇ CARON */ + { 0x01b9, 0x0161 }, /* scaron š LATIN SMALL LETTER S WITH CARON */ + { 0x01ba, 0x015f }, /* scedilla ş LATIN SMALL LETTER S WITH CEDILLA */ + { 0x01bb, 0x0165 }, /* tcaron ť LATIN SMALL LETTER T WITH CARON */ + { 0x01bc, 0x017a }, /* zacute ź LATIN SMALL LETTER Z WITH ACUTE */ + { 0x01bd, 0x02dd }, /* doubleacute ˝ DOUBLE ACUTE ACCENT */ + { 0x01be, 0x017e }, /* zcaron ž LATIN SMALL LETTER Z WITH CARON */ + { 0x01bf, 0x017c }, /* zabovedot ż LATIN SMALL LETTER Z WITH DOT ABOVE */ + { 0x01c0, 0x0154 }, /* Racute Ŕ LATIN CAPITAL LETTER R WITH ACUTE */ + { 0x01c3, 0x0102 }, /* Abreve Ă LATIN CAPITAL LETTER A WITH BREVE */ + { 0x01c5, 0x0139 }, /* Lacute Ĺ LATIN CAPITAL LETTER L WITH ACUTE */ + { 0x01c6, 0x0106 }, /* Cacute Ć LATIN CAPITAL LETTER C WITH ACUTE */ + { 0x01c8, 0x010c }, /* Ccaron Č LATIN CAPITAL LETTER C WITH CARON */ + { 0x01ca, 0x0118 }, /* Eogonek Ę LATIN CAPITAL LETTER E WITH OGONEK */ + { 0x01cc, 0x011a }, /* Ecaron Ě LATIN CAPITAL LETTER E WITH CARON */ + { 0x01cf, 0x010e }, /* Dcaron Ď LATIN CAPITAL LETTER D WITH CARON */ + { 0x01d0, 0x0110 }, /* Dstroke Đ LATIN CAPITAL LETTER D WITH STROKE */ + { 0x01d1, 0x0143 }, /* Nacute Ń LATIN CAPITAL LETTER N WITH ACUTE */ + { 0x01d2, 0x0147 }, /* Ncaron Ň LATIN CAPITAL LETTER N WITH CARON */ + { 0x01d5, 0x0150 }, /* Odoubleacute Ő LATIN CAPITAL LETTER O WITH DOUBLE ACUTE */ + { 0x01d8, 0x0158 }, /* Rcaron Ř LATIN CAPITAL LETTER R WITH CARON */ + { 0x01d9, 0x016e }, /* Uring Ů LATIN CAPITAL LETTER U WITH RING ABOVE */ + { 0x01db, 0x0170 }, /* Udoubleacute Ű LATIN CAPITAL LETTER U WITH DOUBLE ACUTE */ + { 0x01de, 0x0162 }, /* Tcedilla Ţ LATIN CAPITAL LETTER T WITH CEDILLA */ + { 0x01e0, 0x0155 }, /* racute ŕ LATIN SMALL LETTER R WITH ACUTE */ + { 0x01e3, 0x0103 }, /* abreve ă LATIN SMALL LETTER A WITH BREVE */ + { 0x01e5, 0x013a }, /* lacute ĺ LATIN SMALL LETTER L WITH ACUTE */ + { 0x01e6, 0x0107 }, /* cacute ć LATIN SMALL LETTER C WITH ACUTE */ + { 0x01e8, 0x010d }, /* ccaron č LATIN SMALL LETTER C WITH CARON */ + { 0x01ea, 0x0119 }, /* eogonek ę LATIN SMALL LETTER E WITH OGONEK */ + { 0x01ec, 0x011b }, /* ecaron ě LATIN SMALL LETTER E WITH CARON */ + { 0x01ef, 0x010f }, /* dcaron ď LATIN SMALL LETTER D WITH CARON */ + { 0x01f0, 0x0111 }, /* dstroke đ LATIN SMALL LETTER D WITH STROKE */ + { 0x01f1, 0x0144 }, /* nacute ń LATIN SMALL LETTER N WITH ACUTE */ + { 0x01f2, 0x0148 }, /* ncaron ň LATIN SMALL LETTER N WITH CARON */ + { 0x01f5, 0x0151 }, /* odoubleacute ő LATIN SMALL LETTER O WITH DOUBLE ACUTE */ + { 0x01f8, 0x0159 }, /* rcaron ř LATIN SMALL LETTER R WITH CARON */ + { 0x01f9, 0x016f }, /* uring ů LATIN SMALL LETTER U WITH RING ABOVE */ + { 0x01fb, 0x0171 }, /* udoubleacute ű LATIN SMALL LETTER U WITH DOUBLE ACUTE */ + { 0x01fe, 0x0163 }, /* tcedilla ţ LATIN SMALL LETTER T WITH CEDILLA */ + { 0x01ff, 0x02d9 }, /* abovedot ˙ DOT ABOVE */ + { 0x02a1, 0x0126 }, /* Hstroke Ħ LATIN CAPITAL LETTER H WITH STROKE */ + { 0x02a6, 0x0124 }, /* Hcircumflex Ĥ LATIN CAPITAL LETTER H WITH CIRCUMFLEX */ + { 0x02a9, 0x0130 }, /* Iabovedot İ LATIN CAPITAL LETTER I WITH DOT ABOVE */ + { 0x02ab, 0x011e }, /* Gbreve Ğ LATIN CAPITAL LETTER G WITH BREVE */ + { 0x02ac, 0x0134 }, /* Jcircumflex Ĵ LATIN CAPITAL LETTER J WITH CIRCUMFLEX */ + { 0x02b1, 0x0127 }, /* hstroke ħ LATIN SMALL LETTER H WITH STROKE */ + { 0x02b6, 0x0125 }, /* hcircumflex ĥ LATIN SMALL LETTER H WITH CIRCUMFLEX */ + { 0x02b9, 0x0131 }, /* idotless ı LATIN SMALL LETTER DOTLESS I */ + { 0x02bb, 0x011f }, /* gbreve ğ LATIN SMALL LETTER G WITH BREVE */ + { 0x02bc, 0x0135 }, /* jcircumflex ĵ LATIN SMALL LETTER J WITH CIRCUMFLEX */ + { 0x02c5, 0x010a }, /* Cabovedot Ċ LATIN CAPITAL LETTER C WITH DOT ABOVE */ + { 0x02c6, 0x0108 }, /* Ccircumflex Ĉ LATIN CAPITAL LETTER C WITH CIRCUMFLEX */ + { 0x02d5, 0x0120 }, /* Gabovedot Ġ LATIN CAPITAL LETTER G WITH DOT ABOVE */ + { 0x02d8, 0x011c }, /* Gcircumflex Ĝ LATIN CAPITAL LETTER G WITH CIRCUMFLEX */ + { 0x02dd, 0x016c }, /* Ubreve Ŭ LATIN CAPITAL LETTER U WITH BREVE */ + { 0x02de, 0x015c }, /* Scircumflex Ŝ LATIN CAPITAL LETTER S WITH CIRCUMFLEX */ + { 0x02e5, 0x010b }, /* cabovedot ċ LATIN SMALL LETTER C WITH DOT ABOVE */ + { 0x02e6, 0x0109 }, /* ccircumflex ĉ LATIN SMALL LETTER C WITH CIRCUMFLEX */ + { 0x02f5, 0x0121 }, /* gabovedot ġ LATIN SMALL LETTER G WITH DOT ABOVE */ + { 0x02f8, 0x011d }, /* gcircumflex ĝ LATIN SMALL LETTER G WITH CIRCUMFLEX */ + { 0x02fd, 0x016d }, /* ubreve ŭ LATIN SMALL LETTER U WITH BREVE */ + { 0x02fe, 0x015d }, /* scircumflex ŝ LATIN SMALL LETTER S WITH CIRCUMFLEX */ + { 0x03a2, 0x0138 }, /* kra ĸ LATIN SMALL LETTER KRA */ + { 0x03a3, 0x0156 }, /* Rcedilla Ŗ LATIN CAPITAL LETTER R WITH CEDILLA */ + { 0x03a5, 0x0128 }, /* Itilde Ĩ LATIN CAPITAL LETTER I WITH TILDE */ + { 0x03a6, 0x013b }, /* Lcedilla Ļ LATIN CAPITAL LETTER L WITH CEDILLA */ + { 0x03aa, 0x0112 }, /* Emacron Ē LATIN CAPITAL LETTER E WITH MACRON */ + { 0x03ab, 0x0122 }, /* Gcedilla Ģ LATIN CAPITAL LETTER G WITH CEDILLA */ + { 0x03ac, 0x0166 }, /* Tslash Ŧ LATIN CAPITAL LETTER T WITH STROKE */ + { 0x03b3, 0x0157 }, /* rcedilla ŗ LATIN SMALL LETTER R WITH CEDILLA */ + { 0x03b5, 0x0129 }, /* itilde ĩ LATIN SMALL LETTER I WITH TILDE */ + { 0x03b6, 0x013c }, /* lcedilla ļ LATIN SMALL LETTER L WITH CEDILLA */ + { 0x03ba, 0x0113 }, /* emacron ē LATIN SMALL LETTER E WITH MACRON */ + { 0x03bb, 0x0123 }, /* gcedilla ģ LATIN SMALL LETTER G WITH CEDILLA */ + { 0x03bc, 0x0167 }, /* tslash ŧ LATIN SMALL LETTER T WITH STROKE */ + { 0x03bd, 0x014a }, /* ENG Ŋ LATIN CAPITAL LETTER ENG */ + { 0x03bf, 0x014b }, /* eng ŋ LATIN SMALL LETTER ENG */ + { 0x03c0, 0x0100 }, /* Amacron Ā LATIN CAPITAL LETTER A WITH MACRON */ + { 0x03c7, 0x012e }, /* Iogonek Į LATIN CAPITAL LETTER I WITH OGONEK */ + { 0x03cc, 0x0116 }, /* Eabovedot Ė LATIN CAPITAL LETTER E WITH DOT ABOVE */ + { 0x03cf, 0x012a }, /* Imacron Ī LATIN CAPITAL LETTER I WITH MACRON */ + { 0x03d1, 0x0145 }, /* Ncedilla Ņ LATIN CAPITAL LETTER N WITH CEDILLA */ + { 0x03d2, 0x014c }, /* Omacron Ō LATIN CAPITAL LETTER O WITH MACRON */ + { 0x03d3, 0x0136 }, /* Kcedilla Ķ LATIN CAPITAL LETTER K WITH CEDILLA */ + { 0x03d9, 0x0172 }, /* Uogonek Ų LATIN CAPITAL LETTER U WITH OGONEK */ + { 0x03dd, 0x0168 }, /* Utilde Ũ LATIN CAPITAL LETTER U WITH TILDE */ + { 0x03de, 0x016a }, /* Umacron Ū LATIN CAPITAL LETTER U WITH MACRON */ + { 0x03e0, 0x0101 }, /* amacron ā LATIN SMALL LETTER A WITH MACRON */ + { 0x03e7, 0x012f }, /* iogonek į LATIN SMALL LETTER I WITH OGONEK */ + { 0x03ec, 0x0117 }, /* eabovedot ė LATIN SMALL LETTER E WITH DOT ABOVE */ + { 0x03ef, 0x012b }, /* imacron ī LATIN SMALL LETTER I WITH MACRON */ + { 0x03f1, 0x0146 }, /* ncedilla ņ LATIN SMALL LETTER N WITH CEDILLA */ + { 0x03f2, 0x014d }, /* omacron ō LATIN SMALL LETTER O WITH MACRON */ + { 0x03f3, 0x0137 }, /* kcedilla ķ LATIN SMALL LETTER K WITH CEDILLA */ + { 0x03f9, 0x0173 }, /* uogonek ų LATIN SMALL LETTER U WITH OGONEK */ + { 0x03fd, 0x0169 }, /* utilde ũ LATIN SMALL LETTER U WITH TILDE */ + { 0x03fe, 0x016b }, /* umacron ū LATIN SMALL LETTER U WITH MACRON */ + { 0x047e, 0x203e }, /* overline ‾ OVERLINE */ + { 0x04a1, 0x3002 }, /* kana_fullstop 。 IDEOGRAPHIC FULL STOP */ + { 0x04a2, 0x300c }, /* kana_openingbracket 「 LEFT CORNER BRACKET */ + { 0x04a3, 0x300d }, /* kana_closingbracket 」 RIGHT CORNER BRACKET */ + { 0x04a4, 0x3001 }, /* kana_comma 、 IDEOGRAPHIC COMMA */ + { 0x04a5, 0x30fb }, /* kana_conjunctive ・ KATAKANA MIDDLE DOT */ + { 0x04a6, 0x30f2 }, /* kana_WO ヲ KATAKANA LETTER WO */ + { 0x04a7, 0x30a1 }, /* kana_a ァ KATAKANA LETTER SMALL A */ + { 0x04a8, 0x30a3 }, /* kana_i ィ KATAKANA LETTER SMALL I */ + { 0x04a9, 0x30a5 }, /* kana_u ゥ KATAKANA LETTER SMALL U */ + { 0x04aa, 0x30a7 }, /* kana_e ェ KATAKANA LETTER SMALL E */ + { 0x04ab, 0x30a9 }, /* kana_o ォ KATAKANA LETTER SMALL O */ + { 0x04ac, 0x30e3 }, /* kana_ya ャ KATAKANA LETTER SMALL YA */ + { 0x04ad, 0x30e5 }, /* kana_yu ュ KATAKANA LETTER SMALL YU */ + { 0x04ae, 0x30e7 }, /* kana_yo ョ KATAKANA LETTER SMALL YO */ + { 0x04af, 0x30c3 }, /* kana_tsu ッ KATAKANA LETTER SMALL TU */ + { 0x04b0, 0x30fc }, /* prolongedsound ー KATAKANA-HIRAGANA PROLONGED SOUND MARK */ + { 0x04b1, 0x30a2 }, /* kana_A ア KATAKANA LETTER A */ + { 0x04b2, 0x30a4 }, /* kana_I イ KATAKANA LETTER I */ + { 0x04b3, 0x30a6 }, /* kana_U ウ KATAKANA LETTER U */ + { 0x04b4, 0x30a8 }, /* kana_E エ KATAKANA LETTER E */ + { 0x04b5, 0x30aa }, /* kana_O オ KATAKANA LETTER O */ + { 0x04b6, 0x30ab }, /* kana_KA カ KATAKANA LETTER KA */ + { 0x04b7, 0x30ad }, /* kana_KI キ KATAKANA LETTER KI */ + { 0x04b8, 0x30af }, /* kana_KU ク KATAKANA LETTER KU */ + { 0x04b9, 0x30b1 }, /* kana_KE ケ KATAKANA LETTER KE */ + { 0x04ba, 0x30b3 }, /* kana_KO コ KATAKANA LETTER KO */ + { 0x04bb, 0x30b5 }, /* kana_SA サ KATAKANA LETTER SA */ + { 0x04bc, 0x30b7 }, /* kana_SHI シ KATAKANA LETTER SI */ + { 0x04bd, 0x30b9 }, /* kana_SU ス KATAKANA LETTER SU */ + { 0x04be, 0x30bb }, /* kana_SE セ KATAKANA LETTER SE */ + { 0x04bf, 0x30bd }, /* kana_SO ソ KATAKANA LETTER SO */ + { 0x04c0, 0x30bf }, /* kana_TA タ KATAKANA LETTER TA */ + { 0x04c1, 0x30c1 }, /* kana_CHI チ KATAKANA LETTER TI */ + { 0x04c2, 0x30c4 }, /* kana_TSU ツ KATAKANA LETTER TU */ + { 0x04c3, 0x30c6 }, /* kana_TE テ KATAKANA LETTER TE */ + { 0x04c4, 0x30c8 }, /* kana_TO ト KATAKANA LETTER TO */ + { 0x04c5, 0x30ca }, /* kana_NA ナ KATAKANA LETTER NA */ + { 0x04c6, 0x30cb }, /* kana_NI ニ KATAKANA LETTER NI */ + { 0x04c7, 0x30cc }, /* kana_NU ヌ KATAKANA LETTER NU */ + { 0x04c8, 0x30cd }, /* kana_NE ネ KATAKANA LETTER NE */ + { 0x04c9, 0x30ce }, /* kana_NO ノ KATAKANA LETTER NO */ + { 0x04ca, 0x30cf }, /* kana_HA ハ KATAKANA LETTER HA */ + { 0x04cb, 0x30d2 }, /* kana_HI ヒ KATAKANA LETTER HI */ + { 0x04cc, 0x30d5 }, /* kana_FU フ KATAKANA LETTER HU */ + { 0x04cd, 0x30d8 }, /* kana_HE ヘ KATAKANA LETTER HE */ + { 0x04ce, 0x30db }, /* kana_HO ホ KATAKANA LETTER HO */ + { 0x04cf, 0x30de }, /* kana_MA マ KATAKANA LETTER MA */ + { 0x04d0, 0x30df }, /* kana_MI ミ KATAKANA LETTER MI */ + { 0x04d1, 0x30e0 }, /* kana_MU ム KATAKANA LETTER MU */ + { 0x04d2, 0x30e1 }, /* kana_ME メ KATAKANA LETTER ME */ + { 0x04d3, 0x30e2 }, /* kana_MO モ KATAKANA LETTER MO */ + { 0x04d4, 0x30e4 }, /* kana_YA ヤ KATAKANA LETTER YA */ + { 0x04d5, 0x30e6 }, /* kana_YU ユ KATAKANA LETTER YU */ + { 0x04d6, 0x30e8 }, /* kana_YO ヨ KATAKANA LETTER YO */ + { 0x04d7, 0x30e9 }, /* kana_RA ラ KATAKANA LETTER RA */ + { 0x04d8, 0x30ea }, /* kana_RI リ KATAKANA LETTER RI */ + { 0x04d9, 0x30eb }, /* kana_RU ル KATAKANA LETTER RU */ + { 0x04da, 0x30ec }, /* kana_RE レ KATAKANA LETTER RE */ + { 0x04db, 0x30ed }, /* kana_RO ロ KATAKANA LETTER RO */ + { 0x04dc, 0x30ef }, /* kana_WA ワ KATAKANA LETTER WA */ + { 0x04dd, 0x30f3 }, /* kana_N ン KATAKANA LETTER N */ + { 0x04de, 0x309b }, /* voicedsound ゛ KATAKANA-HIRAGANA VOICED SOUND MARK */ + { 0x04df, 0x309c }, /* semivoicedsound ゜ KATAKANA-HIRAGANA SEMI-VOICED SOUND MARK */ + { 0x05ac, 0x060c }, /* Arabic_comma ، ARABIC COMMA */ + { 0x05bb, 0x061b }, /* Arabic_semicolon ؛ ARABIC SEMICOLON */ + { 0x05bf, 0x061f }, /* Arabic_question_mark ؟ ARABIC QUESTION MARK */ + { 0x05c1, 0x0621 }, /* Arabic_hamza ء ARABIC LETTER HAMZA */ + { 0x05c2, 0x0622 }, /* Arabic_maddaonalef آ ARABIC LETTER ALEF WITH MADDA ABOVE */ + { 0x05c3, 0x0623 }, /* Arabic_hamzaonalef أ ARABIC LETTER ALEF WITH HAMZA ABOVE */ + { 0x05c4, 0x0624 }, /* Arabic_hamzaonwaw ؤ ARABIC LETTER WAW WITH HAMZA ABOVE */ + { 0x05c5, 0x0625 }, /* Arabic_hamzaunderalef إ ARABIC LETTER ALEF WITH HAMZA BELOW */ + { 0x05c6, 0x0626 }, /* Arabic_hamzaonyeh ئ ARABIC LETTER YEH WITH HAMZA ABOVE */ + { 0x05c7, 0x0627 }, /* Arabic_alef ا ARABIC LETTER ALEF */ + { 0x05c8, 0x0628 }, /* Arabic_beh ب ARABIC LETTER BEH */ + { 0x05c9, 0x0629 }, /* Arabic_tehmarbuta ة ARABIC LETTER TEH MARBUTA */ + { 0x05ca, 0x062a }, /* Arabic_teh ت ARABIC LETTER TEH */ + { 0x05cb, 0x062b }, /* Arabic_theh ث ARABIC LETTER THEH */ + { 0x05cc, 0x062c }, /* Arabic_jeem ج ARABIC LETTER JEEM */ + { 0x05cd, 0x062d }, /* Arabic_hah ح ARABIC LETTER HAH */ + { 0x05ce, 0x062e }, /* Arabic_khah خ ARABIC LETTER KHAH */ + { 0x05cf, 0x062f }, /* Arabic_dal د ARABIC LETTER DAL */ + { 0x05d0, 0x0630 }, /* Arabic_thal ذ ARABIC LETTER THAL */ + { 0x05d1, 0x0631 }, /* Arabic_ra ر ARABIC LETTER REH */ + { 0x05d2, 0x0632 }, /* Arabic_zain ز ARABIC LETTER ZAIN */ + { 0x05d3, 0x0633 }, /* Arabic_seen س ARABIC LETTER SEEN */ + { 0x05d4, 0x0634 }, /* Arabic_sheen ش ARABIC LETTER SHEEN */ + { 0x05d5, 0x0635 }, /* Arabic_sad ص ARABIC LETTER SAD */ + { 0x05d6, 0x0636 }, /* Arabic_dad ض ARABIC LETTER DAD */ + { 0x05d7, 0x0637 }, /* Arabic_tah ط ARABIC LETTER TAH */ + { 0x05d8, 0x0638 }, /* Arabic_zah ظ ARABIC LETTER ZAH */ + { 0x05d9, 0x0639 }, /* Arabic_ain ع ARABIC LETTER AIN */ + { 0x05da, 0x063a }, /* Arabic_ghain غ ARABIC LETTER GHAIN */ + { 0x05e0, 0x0640 }, /* Arabic_tatweel ـ ARABIC TATWEEL */ + { 0x05e1, 0x0641 }, /* Arabic_feh ف ARABIC LETTER FEH */ + { 0x05e2, 0x0642 }, /* Arabic_qaf ق ARABIC LETTER QAF */ + { 0x05e3, 0x0643 }, /* Arabic_kaf ك ARABIC LETTER KAF */ + { 0x05e4, 0x0644 }, /* Arabic_lam ل ARABIC LETTER LAM */ + { 0x05e5, 0x0645 }, /* Arabic_meem م ARABIC LETTER MEEM */ + { 0x05e6, 0x0646 }, /* Arabic_noon ن ARABIC LETTER NOON */ + { 0x05e7, 0x0647 }, /* Arabic_ha ه ARABIC LETTER HEH */ + { 0x05e8, 0x0648 }, /* Arabic_waw و ARABIC LETTER WAW */ + { 0x05e9, 0x0649 }, /* Arabic_alefmaksura ى ARABIC LETTER ALEF MAKSURA */ + { 0x05ea, 0x064a }, /* Arabic_yeh ي ARABIC LETTER YEH */ + { 0x05eb, 0x064b }, /* Arabic_fathatan ً ARABIC FATHATAN */ + { 0x05ec, 0x064c }, /* Arabic_dammatan ٌ ARABIC DAMMATAN */ + { 0x05ed, 0x064d }, /* Arabic_kasratan ٍ ARABIC KASRATAN */ + { 0x05ee, 0x064e }, /* Arabic_fatha َ ARABIC FATHA */ + { 0x05ef, 0x064f }, /* Arabic_damma ُ ARABIC DAMMA */ + { 0x05f0, 0x0650 }, /* Arabic_kasra ِ ARABIC KASRA */ + { 0x05f1, 0x0651 }, /* Arabic_shadda ّ ARABIC SHADDA */ + { 0x05f2, 0x0652 }, /* Arabic_sukun ْ ARABIC SUKUN */ + { 0x06a1, 0x0452 }, /* Serbian_dje ђ CYRILLIC SMALL LETTER DJE */ + { 0x06a2, 0x0453 }, /* Macedonia_gje ѓ CYRILLIC SMALL LETTER GJE */ + { 0x06a3, 0x0451 }, /* Cyrillic_io ё CYRILLIC SMALL LETTER IO */ + { 0x06a4, 0x0454 }, /* Ukrainian_ie є CYRILLIC SMALL LETTER UKRAINIAN IE */ + { 0x06a5, 0x0455 }, /* Macedonia_dse ѕ CYRILLIC SMALL LETTER DZE */ + { 0x06a6, 0x0456 }, /* Ukrainian_i і CYRILLIC SMALL LETTER BYELORUSSIAN-UKRAINIAN I */ + { 0x06a7, 0x0457 }, /* Ukrainian_yi ї CYRILLIC SMALL LETTER YI */ + { 0x06a8, 0x0458 }, /* Cyrillic_je ј CYRILLIC SMALL LETTER JE */ + { 0x06a9, 0x0459 }, /* Cyrillic_lje љ CYRILLIC SMALL LETTER LJE */ + { 0x06aa, 0x045a }, /* Cyrillic_nje њ CYRILLIC SMALL LETTER NJE */ + { 0x06ab, 0x045b }, /* Serbian_tshe ћ CYRILLIC SMALL LETTER TSHE */ + { 0x06ac, 0x045c }, /* Macedonia_kje ќ CYRILLIC SMALL LETTER KJE */ + { 0x06ad, 0x0491 }, /* Ukrainian_ghe_with_upturn ґ CYRILLIC SMALL LETTER GHE WITH UPTURN */ + { 0x06ae, 0x045e }, /* Byelorussian_shortu ў CYRILLIC SMALL LETTER SHORT U */ + { 0x06af, 0x045f }, /* Cyrillic_dzhe џ CYRILLIC SMALL LETTER DZHE */ + { 0x06b0, 0x2116 }, /* numerosign № NUMERO SIGN */ + { 0x06b1, 0x0402 }, /* Serbian_DJE Ђ CYRILLIC CAPITAL LETTER DJE */ + { 0x06b2, 0x0403 }, /* Macedonia_GJE Ѓ CYRILLIC CAPITAL LETTER GJE */ + { 0x06b3, 0x0401 }, /* Cyrillic_IO Ё CYRILLIC CAPITAL LETTER IO */ + { 0x06b4, 0x0404 }, /* Ukrainian_IE Є CYRILLIC CAPITAL LETTER UKRAINIAN IE */ + { 0x06b5, 0x0405 }, /* Macedonia_DSE Ѕ CYRILLIC CAPITAL LETTER DZE */ + { 0x06b6, 0x0406 }, /* Ukrainian_I І CYRILLIC CAPITAL LETTER BYELORUSSIAN-UKRAINIAN I */ + { 0x06b7, 0x0407 }, /* Ukrainian_YI Ї CYRILLIC CAPITAL LETTER YI */ + { 0x06b8, 0x0408 }, /* Cyrillic_JE Ј CYRILLIC CAPITAL LETTER JE */ + { 0x06b9, 0x0409 }, /* Cyrillic_LJE Љ CYRILLIC CAPITAL LETTER LJE */ + { 0x06ba, 0x040a }, /* Cyrillic_NJE Њ CYRILLIC CAPITAL LETTER NJE */ + { 0x06bb, 0x040b }, /* Serbian_TSHE Ћ CYRILLIC CAPITAL LETTER TSHE */ + { 0x06bc, 0x040c }, /* Macedonia_KJE Ќ CYRILLIC CAPITAL LETTER KJE */ + { 0x06bd, 0x0490 }, /* Ukrainian_GHE_WITH_UPTURN Ґ CYRILLIC CAPITAL LETTER GHE WITH UPTURN */ + { 0x06be, 0x040e }, /* Byelorussian_SHORTU Ў CYRILLIC CAPITAL LETTER SHORT U */ + { 0x06bf, 0x040f }, /* Cyrillic_DZHE Џ CYRILLIC CAPITAL LETTER DZHE */ + { 0x06c0, 0x044e }, /* Cyrillic_yu ю CYRILLIC SMALL LETTER YU */ + { 0x06c1, 0x0430 }, /* Cyrillic_a а CYRILLIC SMALL LETTER A */ + { 0x06c2, 0x0431 }, /* Cyrillic_be б CYRILLIC SMALL LETTER BE */ + { 0x06c3, 0x0446 }, /* Cyrillic_tse ц CYRILLIC SMALL LETTER TSE */ + { 0x06c4, 0x0434 }, /* Cyrillic_de д CYRILLIC SMALL LETTER DE */ + { 0x06c5, 0x0435 }, /* Cyrillic_ie е CYRILLIC SMALL LETTER IE */ + { 0x06c6, 0x0444 }, /* Cyrillic_ef ф CYRILLIC SMALL LETTER EF */ + { 0x06c7, 0x0433 }, /* Cyrillic_ghe г CYRILLIC SMALL LETTER GHE */ + { 0x06c8, 0x0445 }, /* Cyrillic_ha х CYRILLIC SMALL LETTER HA */ + { 0x06c9, 0x0438 }, /* Cyrillic_i и CYRILLIC SMALL LETTER I */ + { 0x06ca, 0x0439 }, /* Cyrillic_shorti й CYRILLIC SMALL LETTER SHORT I */ + { 0x06cb, 0x043a }, /* Cyrillic_ka к CYRILLIC SMALL LETTER KA */ + { 0x06cc, 0x043b }, /* Cyrillic_el л CYRILLIC SMALL LETTER EL */ + { 0x06cd, 0x043c }, /* Cyrillic_em м CYRILLIC SMALL LETTER EM */ + { 0x06ce, 0x043d }, /* Cyrillic_en н CYRILLIC SMALL LETTER EN */ + { 0x06cf, 0x043e }, /* Cyrillic_o о CYRILLIC SMALL LETTER O */ + { 0x06d0, 0x043f }, /* Cyrillic_pe п CYRILLIC SMALL LETTER PE */ + { 0x06d1, 0x044f }, /* Cyrillic_ya я CYRILLIC SMALL LETTER YA */ + { 0x06d2, 0x0440 }, /* Cyrillic_er р CYRILLIC SMALL LETTER ER */ + { 0x06d3, 0x0441 }, /* Cyrillic_es с CYRILLIC SMALL LETTER ES */ + { 0x06d4, 0x0442 }, /* Cyrillic_te т CYRILLIC SMALL LETTER TE */ + { 0x06d5, 0x0443 }, /* Cyrillic_u у CYRILLIC SMALL LETTER U */ + { 0x06d6, 0x0436 }, /* Cyrillic_zhe ж CYRILLIC SMALL LETTER ZHE */ + { 0x06d7, 0x0432 }, /* Cyrillic_ve в CYRILLIC SMALL LETTER VE */ + { 0x06d8, 0x044c }, /* Cyrillic_softsign ь CYRILLIC SMALL LETTER SOFT SIGN */ + { 0x06d9, 0x044b }, /* Cyrillic_yeru ы CYRILLIC SMALL LETTER YERU */ + { 0x06da, 0x0437 }, /* Cyrillic_ze з CYRILLIC SMALL LETTER ZE */ + { 0x06db, 0x0448 }, /* Cyrillic_sha ш CYRILLIC SMALL LETTER SHA */ + { 0x06dc, 0x044d }, /* Cyrillic_e э CYRILLIC SMALL LETTER E */ + { 0x06dd, 0x0449 }, /* Cyrillic_shcha щ CYRILLIC SMALL LETTER SHCHA */ + { 0x06de, 0x0447 }, /* Cyrillic_che ч CYRILLIC SMALL LETTER CHE */ + { 0x06df, 0x044a }, /* Cyrillic_hardsign ъ CYRILLIC SMALL LETTER HARD SIGN */ + { 0x06e0, 0x042e }, /* Cyrillic_YU Ю CYRILLIC CAPITAL LETTER YU */ + { 0x06e1, 0x0410 }, /* Cyrillic_A А CYRILLIC CAPITAL LETTER A */ + { 0x06e2, 0x0411 }, /* Cyrillic_BE Б CYRILLIC CAPITAL LETTER BE */ + { 0x06e3, 0x0426 }, /* Cyrillic_TSE Ц CYRILLIC CAPITAL LETTER TSE */ + { 0x06e4, 0x0414 }, /* Cyrillic_DE Д CYRILLIC CAPITAL LETTER DE */ + { 0x06e5, 0x0415 }, /* Cyrillic_IE Е CYRILLIC CAPITAL LETTER IE */ + { 0x06e6, 0x0424 }, /* Cyrillic_EF Ф CYRILLIC CAPITAL LETTER EF */ + { 0x06e7, 0x0413 }, /* Cyrillic_GHE Г CYRILLIC CAPITAL LETTER GHE */ + { 0x06e8, 0x0425 }, /* Cyrillic_HA Х CYRILLIC CAPITAL LETTER HA */ + { 0x06e9, 0x0418 }, /* Cyrillic_I И CYRILLIC CAPITAL LETTER I */ + { 0x06ea, 0x0419 }, /* Cyrillic_SHORTI Й CYRILLIC CAPITAL LETTER SHORT I */ + { 0x06eb, 0x041a }, /* Cyrillic_KA К CYRILLIC CAPITAL LETTER KA */ + { 0x06ec, 0x041b }, /* Cyrillic_EL Л CYRILLIC CAPITAL LETTER EL */ + { 0x06ed, 0x041c }, /* Cyrillic_EM М CYRILLIC CAPITAL LETTER EM */ + { 0x06ee, 0x041d }, /* Cyrillic_EN Н CYRILLIC CAPITAL LETTER EN */ + { 0x06ef, 0x041e }, /* Cyrillic_O О CYRILLIC CAPITAL LETTER O */ + { 0x06f0, 0x041f }, /* Cyrillic_PE П CYRILLIC CAPITAL LETTER PE */ + { 0x06f1, 0x042f }, /* Cyrillic_YA Я CYRILLIC CAPITAL LETTER YA */ + { 0x06f2, 0x0420 }, /* Cyrillic_ER Р CYRILLIC CAPITAL LETTER ER */ + { 0x06f3, 0x0421 }, /* Cyrillic_ES С CYRILLIC CAPITAL LETTER ES */ + { 0x06f4, 0x0422 }, /* Cyrillic_TE Т CYRILLIC CAPITAL LETTER TE */ + { 0x06f5, 0x0423 }, /* Cyrillic_U У CYRILLIC CAPITAL LETTER U */ + { 0x06f6, 0x0416 }, /* Cyrillic_ZHE Ж CYRILLIC CAPITAL LETTER ZHE */ + { 0x06f7, 0x0412 }, /* Cyrillic_VE В CYRILLIC CAPITAL LETTER VE */ + { 0x06f8, 0x042c }, /* Cyrillic_SOFTSIGN Ь CYRILLIC CAPITAL LETTER SOFT SIGN */ + { 0x06f9, 0x042b }, /* Cyrillic_YERU Ы CYRILLIC CAPITAL LETTER YERU */ + { 0x06fa, 0x0417 }, /* Cyrillic_ZE З CYRILLIC CAPITAL LETTER ZE */ + { 0x06fb, 0x0428 }, /* Cyrillic_SHA Ш CYRILLIC CAPITAL LETTER SHA */ + { 0x06fc, 0x042d }, /* Cyrillic_E Э CYRILLIC CAPITAL LETTER E */ + { 0x06fd, 0x0429 }, /* Cyrillic_SHCHA Щ CYRILLIC CAPITAL LETTER SHCHA */ + { 0x06fe, 0x0427 }, /* Cyrillic_CHE Ч CYRILLIC CAPITAL LETTER CHE */ + { 0x06ff, 0x042a }, /* Cyrillic_HARDSIGN Ъ CYRILLIC CAPITAL LETTER HARD SIGN */ + { 0x07a1, 0x0386 }, /* Greek_ALPHAaccent Ά GREEK CAPITAL LETTER ALPHA WITH TONOS */ + { 0x07a2, 0x0388 }, /* Greek_EPSILONaccent Έ GREEK CAPITAL LETTER EPSILON WITH TONOS */ + { 0x07a3, 0x0389 }, /* Greek_ETAaccent Ή GREEK CAPITAL LETTER ETA WITH TONOS */ + { 0x07a4, 0x038a }, /* Greek_IOTAaccent Ί GREEK CAPITAL LETTER IOTA WITH TONOS */ + { 0x07a5, 0x03aa }, /* Greek_IOTAdieresis Ϊ GREEK CAPITAL LETTER IOTA WITH DIALYTIKA */ + { 0x07a7, 0x038c }, /* Greek_OMICRONaccent Ό GREEK CAPITAL LETTER OMICRON WITH TONOS */ + { 0x07a8, 0x038e }, /* Greek_UPSILONaccent Ύ GREEK CAPITAL LETTER UPSILON WITH TONOS */ + { 0x07a9, 0x03ab }, /* Greek_UPSILONdieresis Ϋ GREEK CAPITAL LETTER UPSILON WITH DIALYTIKA */ + { 0x07ab, 0x038f }, /* Greek_OMEGAaccent Ώ GREEK CAPITAL LETTER OMEGA WITH TONOS */ + { 0x07ae, 0x0385 }, /* Greek_accentdieresis ΅ GREEK DIALYTIKA TONOS */ + { 0x07af, 0x2015 }, /* Greek_horizbar ― HORIZONTAL BAR */ + { 0x07b1, 0x03ac }, /* Greek_alphaaccent ά GREEK SMALL LETTER ALPHA WITH TONOS */ + { 0x07b2, 0x03ad }, /* Greek_epsilonaccent έ GREEK SMALL LETTER EPSILON WITH TONOS */ + { 0x07b3, 0x03ae }, /* Greek_etaaccent ή GREEK SMALL LETTER ETA WITH TONOS */ + { 0x07b4, 0x03af }, /* Greek_iotaaccent ί GREEK SMALL LETTER IOTA WITH TONOS */ + { 0x07b5, 0x03ca }, /* Greek_iotadieresis ϊ GREEK SMALL LETTER IOTA WITH DIALYTIKA */ + { 0x07b6, 0x0390 }, /* Greek_iotaaccentdieresis ΐ GREEK SMALL LETTER IOTA WITH DIALYTIKA AND TONOS */ + { 0x07b7, 0x03cc }, /* Greek_omicronaccent ό GREEK SMALL LETTER OMICRON WITH TONOS */ + { 0x07b8, 0x03cd }, /* Greek_upsilonaccent ύ GREEK SMALL LETTER UPSILON WITH TONOS */ + { 0x07b9, 0x03cb }, /* Greek_upsilondieresis ϋ GREEK SMALL LETTER UPSILON WITH DIALYTIKA */ + { 0x07ba, 0x03b0 }, /* Greek_upsilonaccentdieresis ΰ GREEK SMALL LETTER UPSILON WITH DIALYTIKA AND TONOS */ + { 0x07bb, 0x03ce }, /* Greek_omegaaccent ώ GREEK SMALL LETTER OMEGA WITH TONOS */ + { 0x07c1, 0x0391 }, /* Greek_ALPHA Α GREEK CAPITAL LETTER ALPHA */ + { 0x07c2, 0x0392 }, /* Greek_BETA Β GREEK CAPITAL LETTER BETA */ + { 0x07c3, 0x0393 }, /* Greek_GAMMA Γ GREEK CAPITAL LETTER GAMMA */ + { 0x07c4, 0x0394 }, /* Greek_DELTA Δ GREEK CAPITAL LETTER DELTA */ + { 0x07c5, 0x0395 }, /* Greek_EPSILON Ε GREEK CAPITAL LETTER EPSILON */ + { 0x07c6, 0x0396 }, /* Greek_ZETA Ζ GREEK CAPITAL LETTER ZETA */ + { 0x07c7, 0x0397 }, /* Greek_ETA Η GREEK CAPITAL LETTER ETA */ + { 0x07c8, 0x0398 }, /* Greek_THETA Θ GREEK CAPITAL LETTER THETA */ + { 0x07c9, 0x0399 }, /* Greek_IOTA Ι GREEK CAPITAL LETTER IOTA */ + { 0x07ca, 0x039a }, /* Greek_KAPPA Κ GREEK CAPITAL LETTER KAPPA */ + { 0x07cb, 0x039b }, /* Greek_LAMBDA Λ GREEK CAPITAL LETTER LAMDA */ + { 0x07cc, 0x039c }, /* Greek_MU Μ GREEK CAPITAL LETTER MU */ + { 0x07cd, 0x039d }, /* Greek_NU Ν GREEK CAPITAL LETTER NU */ + { 0x07ce, 0x039e }, /* Greek_XI Ξ GREEK CAPITAL LETTER XI */ + { 0x07cf, 0x039f }, /* Greek_OMICRON Ο GREEK CAPITAL LETTER OMICRON */ + { 0x07d0, 0x03a0 }, /* Greek_PI Π GREEK CAPITAL LETTER PI */ + { 0x07d1, 0x03a1 }, /* Greek_RHO Ρ GREEK CAPITAL LETTER RHO */ + { 0x07d2, 0x03a3 }, /* Greek_SIGMA Σ GREEK CAPITAL LETTER SIGMA */ + { 0x07d4, 0x03a4 }, /* Greek_TAU Τ GREEK CAPITAL LETTER TAU */ + { 0x07d5, 0x03a5 }, /* Greek_UPSILON Υ GREEK CAPITAL LETTER UPSILON */ + { 0x07d6, 0x03a6 }, /* Greek_PHI Φ GREEK CAPITAL LETTER PHI */ + { 0x07d7, 0x03a7 }, /* Greek_CHI Χ GREEK CAPITAL LETTER CHI */ + { 0x07d8, 0x03a8 }, /* Greek_PSI Ψ GREEK CAPITAL LETTER PSI */ + { 0x07d9, 0x03a9 }, /* Greek_OMEGA Ω GREEK CAPITAL LETTER OMEGA */ + { 0x07e1, 0x03b1 }, /* Greek_alpha α GREEK SMALL LETTER ALPHA */ + { 0x07e2, 0x03b2 }, /* Greek_beta β GREEK SMALL LETTER BETA */ + { 0x07e3, 0x03b3 }, /* Greek_gamma γ GREEK SMALL LETTER GAMMA */ + { 0x07e4, 0x03b4 }, /* Greek_delta δ GREEK SMALL LETTER DELTA */ + { 0x07e5, 0x03b5 }, /* Greek_epsilon ε GREEK SMALL LETTER EPSILON */ + { 0x07e6, 0x03b6 }, /* Greek_zeta ζ GREEK SMALL LETTER ZETA */ + { 0x07e7, 0x03b7 }, /* Greek_eta η GREEK SMALL LETTER ETA */ + { 0x07e8, 0x03b8 }, /* Greek_theta θ GREEK SMALL LETTER THETA */ + { 0x07e9, 0x03b9 }, /* Greek_iota ι GREEK SMALL LETTER IOTA */ + { 0x07ea, 0x03ba }, /* Greek_kappa κ GREEK SMALL LETTER KAPPA */ + { 0x07eb, 0x03bb }, /* Greek_lambda λ GREEK SMALL LETTER LAMDA */ + { 0x07ec, 0x03bc }, /* Greek_mu μ GREEK SMALL LETTER MU */ + { 0x07ed, 0x03bd }, /* Greek_nu ν GREEK SMALL LETTER NU */ + { 0x07ee, 0x03be }, /* Greek_xi ξ GREEK SMALL LETTER XI */ + { 0x07ef, 0x03bf }, /* Greek_omicron ο GREEK SMALL LETTER OMICRON */ + { 0x07f0, 0x03c0 }, /* Greek_pi π GREEK SMALL LETTER PI */ + { 0x07f1, 0x03c1 }, /* Greek_rho ρ GREEK SMALL LETTER RHO */ + { 0x07f2, 0x03c3 }, /* Greek_sigma σ GREEK SMALL LETTER SIGMA */ + { 0x07f3, 0x03c2 }, /* Greek_finalsmallsigma ς GREEK SMALL LETTER FINAL SIGMA */ + { 0x07f4, 0x03c4 }, /* Greek_tau τ GREEK SMALL LETTER TAU */ + { 0x07f5, 0x03c5 }, /* Greek_upsilon υ GREEK SMALL LETTER UPSILON */ + { 0x07f6, 0x03c6 }, /* Greek_phi φ GREEK SMALL LETTER PHI */ + { 0x07f7, 0x03c7 }, /* Greek_chi χ GREEK SMALL LETTER CHI */ + { 0x07f8, 0x03c8 }, /* Greek_psi ψ GREEK SMALL LETTER PSI */ + { 0x07f9, 0x03c9 }, /* Greek_omega ω GREEK SMALL LETTER OMEGA */ + /* 0x08a1 leftradical ? ??? */ + /* 0x08a2 topleftradical ? ??? */ + /* 0x08a3 horizconnector ? ??? */ + { 0x08a4, 0x2320 }, /* topintegral ⌠ TOP HALF INTEGRAL */ + { 0x08a5, 0x2321 }, /* botintegral ⌡ BOTTOM HALF INTEGRAL */ + { 0x08a6, 0x2502 }, /* vertconnector │ BOX DRAWINGS LIGHT VERTICAL */ + /* 0x08a7 topleftsqbracket ? ??? */ + /* 0x08a8 botleftsqbracket ? ??? */ + /* 0x08a9 toprightsqbracket ? ??? */ + /* 0x08aa botrightsqbracket ? ??? */ + /* 0x08ab topleftparens ? ??? */ + /* 0x08ac botleftparens ? ??? */ + /* 0x08ad toprightparens ? ??? */ + /* 0x08ae botrightparens ? ??? */ + /* 0x08af leftmiddlecurlybrace ? ??? */ + /* 0x08b0 rightmiddlecurlybrace ? ??? */ + /* 0x08b1 topleftsummation ? ??? */ + /* 0x08b2 botleftsummation ? ??? */ + /* 0x08b3 topvertsummationconnector ? ??? */ + /* 0x08b4 botvertsummationconnector ? ??? */ + /* 0x08b5 toprightsummation ? ??? */ + /* 0x08b6 botrightsummation ? ??? */ + /* 0x08b7 rightmiddlesummation ? ??? */ + { 0x08bc, 0x2264 }, /* lessthanequal ≤ LESS-THAN OR EQUAL TO */ + { 0x08bd, 0x2260 }, /* notequal ≠ NOT EQUAL TO */ + { 0x08be, 0x2265 }, /* greaterthanequal ≥ GREATER-THAN OR EQUAL TO */ + { 0x08bf, 0x222b }, /* integral ∫ INTEGRAL */ + { 0x08c0, 0x2234 }, /* therefore ∴ THEREFORE */ + { 0x08c1, 0x221d }, /* variation ∝ PROPORTIONAL TO */ + { 0x08c2, 0x221e }, /* infinity ∞ INFINITY */ + { 0x08c5, 0x2207 }, /* nabla ∇ NABLA */ + { 0x08c8, 0x2245 }, /* approximate ≅ APPROXIMATELY EQUAL TO */ + /* 0x08c9 similarequal ? ??? */ + { 0x08cd, 0x21d4 }, /* ifonlyif ⇔ LEFT RIGHT DOUBLE ARROW */ + { 0x08ce, 0x21d2 }, /* implies ⇒ RIGHTWARDS DOUBLE ARROW */ + { 0x08cf, 0x2261 }, /* identical ≡ IDENTICAL TO */ + { 0x08d6, 0x221a }, /* radical √ SQUARE ROOT */ + { 0x08da, 0x2282 }, /* includedin ⊂ SUBSET OF */ + { 0x08db, 0x2283 }, /* includes ⊃ SUPERSET OF */ + { 0x08dc, 0x2229 }, /* intersection ∩ INTERSECTION */ + { 0x08dd, 0x222a }, /* union ∪ UNION */ + { 0x08de, 0x2227 }, /* logicaland ∧ LOGICAL AND */ + { 0x08df, 0x2228 }, /* logicalor ∨ LOGICAL OR */ + { 0x08ef, 0x2202 }, /* partialderivative ∂ PARTIAL DIFFERENTIAL */ + { 0x08f6, 0x0192 }, /* function ƒ LATIN SMALL LETTER F WITH HOOK */ + { 0x08fb, 0x2190 }, /* leftarrow ← LEFTWARDS ARROW */ + { 0x08fc, 0x2191 }, /* uparrow ↑ UPWARDS ARROW */ + { 0x08fd, 0x2192 }, /* rightarrow → RIGHTWARDS ARROW */ + { 0x08fe, 0x2193 }, /* downarrow ↓ DOWNWARDS ARROW */ + { 0x09df, 0x2422 }, /* blank ␢ BLANK SYMBOL */ + { 0x09e0, 0x25c6 }, /* soliddiamond ◆ BLACK DIAMOND */ + { 0x09e1, 0x2592 }, /* checkerboard ▒ MEDIUM SHADE */ + { 0x09e2, 0x2409 }, /* ht ␉ SYMBOL FOR HORIZONTAL TABULATION */ + { 0x09e3, 0x240c }, /* ff ␌ SYMBOL FOR FORM FEED */ + { 0x09e4, 0x240d }, /* cr ␍ SYMBOL FOR CARRIAGE RETURN */ + { 0x09e5, 0x240a }, /* lf ␊ SYMBOL FOR LINE FEED */ + { 0x09e8, 0x2424 }, /* nl ␤ SYMBOL FOR NEWLINE */ + { 0x09e9, 0x240b }, /* vt ␋ SYMBOL FOR VERTICAL TABULATION */ + { 0x09ea, 0x2518 }, /* lowrightcorner ┘ BOX DRAWINGS LIGHT UP AND LEFT */ + { 0x09eb, 0x2510 }, /* uprightcorner ┐ BOX DRAWINGS LIGHT DOWN AND LEFT */ + { 0x09ec, 0x250c }, /* upleftcorner ┌ BOX DRAWINGS LIGHT DOWN AND RIGHT */ + { 0x09ed, 0x2514 }, /* lowleftcorner └ BOX DRAWINGS LIGHT UP AND RIGHT */ + { 0x09ee, 0x253c }, /* crossinglines ┼ BOX DRAWINGS LIGHT VERTICAL AND HORIZONTAL */ + /* 0x09ef horizlinescan1 ? ??? */ + /* 0x09f0 horizlinescan3 ? ??? */ + { 0x09f1, 0x2500 }, /* horizlinescan5 ─ BOX DRAWINGS LIGHT HORIZONTAL */ + /* 0x09f2 horizlinescan7 ? ??? */ + /* 0x09f3 horizlinescan9 ? ??? */ + { 0x09f4, 0x251c }, /* leftt ├ BOX DRAWINGS LIGHT VERTICAL AND RIGHT */ + { 0x09f5, 0x2524 }, /* rightt ┤ BOX DRAWINGS LIGHT VERTICAL AND LEFT */ + { 0x09f6, 0x2534 }, /* bott ┴ BOX DRAWINGS LIGHT UP AND HORIZONTAL */ + { 0x09f7, 0x252c }, /* topt ┬ BOX DRAWINGS LIGHT DOWN AND HORIZONTAL */ + { 0x09f8, 0x2502 }, /* vertbar │ BOX DRAWINGS LIGHT VERTICAL */ + { 0x0aa1, 0x2003 }, /* emspace   EM SPACE */ + { 0x0aa2, 0x2002 }, /* enspace   EN SPACE */ + { 0x0aa3, 0x2004 }, /* em3space   THREE-PER-EM SPACE */ + { 0x0aa4, 0x2005 }, /* em4space   FOUR-PER-EM SPACE */ + { 0x0aa5, 0x2007 }, /* digitspace   FIGURE SPACE */ + { 0x0aa6, 0x2008 }, /* punctspace   PUNCTUATION SPACE */ + { 0x0aa7, 0x2009 }, /* thinspace   THIN SPACE */ + { 0x0aa8, 0x200a }, /* hairspace   HAIR SPACE */ + { 0x0aa9, 0x2014 }, /* emdash — EM DASH */ + { 0x0aaa, 0x2013 }, /* endash – EN DASH */ + /* 0x0aac signifblank ? ??? */ + { 0x0aae, 0x2026 }, /* ellipsis … HORIZONTAL ELLIPSIS */ + /* 0x0aaf doubbaselinedot ? ??? */ + { 0x0ab0, 0x2153 }, /* onethird ⅓ VULGAR FRACTION ONE THIRD */ + { 0x0ab1, 0x2154 }, /* twothirds ⅔ VULGAR FRACTION TWO THIRDS */ + { 0x0ab2, 0x2155 }, /* onefifth ⅕ VULGAR FRACTION ONE FIFTH */ + { 0x0ab3, 0x2156 }, /* twofifths ⅖ VULGAR FRACTION TWO FIFTHS */ + { 0x0ab4, 0x2157 }, /* threefifths ⅗ VULGAR FRACTION THREE FIFTHS */ + { 0x0ab5, 0x2158 }, /* fourfifths ⅘ VULGAR FRACTION FOUR FIFTHS */ + { 0x0ab6, 0x2159 }, /* onesixth ⅙ VULGAR FRACTION ONE SIXTH */ + { 0x0ab7, 0x215a }, /* fivesixths ⅚ VULGAR FRACTION FIVE SIXTHS */ + { 0x0ab8, 0x2105 }, /* careof ℅ CARE OF */ + { 0x0abb, 0x2012 }, /* figdash ‒ FIGURE DASH */ + { 0x0abc, 0x2329 }, /* leftanglebracket 〈 LEFT-POINTING ANGLE BRACKET */ + { 0x0abd, 0x002e }, /* decimalpoint . FULL STOP */ + { 0x0abe, 0x232a }, /* rightanglebracket 〉 RIGHT-POINTING ANGLE BRACKET */ + /* 0x0abf marker ? ??? */ + { 0x0ac3, 0x215b }, /* oneeighth ⅛ VULGAR FRACTION ONE EIGHTH */ + { 0x0ac4, 0x215c }, /* threeeighths ⅜ VULGAR FRACTION THREE EIGHTHS */ + { 0x0ac5, 0x215d }, /* fiveeighths ⅝ VULGAR FRACTION FIVE EIGHTHS */ + { 0x0ac6, 0x215e }, /* seveneighths ⅞ VULGAR FRACTION SEVEN EIGHTHS */ + { 0x0ac9, 0x2122 }, /* trademark ™ TRADE MARK SIGN */ + { 0x0aca, 0x2613 }, /* signaturemark ☓ SALTIRE */ + /* 0x0acb trademarkincircle ? ??? */ + { 0x0acc, 0x25c1 }, /* leftopentriangle ◁ WHITE LEFT-POINTING TRIANGLE */ + { 0x0acd, 0x25b7 }, /* rightopentriangle ▷ WHITE RIGHT-POINTING TRIANGLE */ + { 0x0ace, 0x25cb }, /* emopencircle ○ WHITE CIRCLE */ + { 0x0acf, 0x25a1 }, /* emopenrectangle □ WHITE SQUARE */ + { 0x0ad0, 0x2018 }, /* leftsinglequotemark ‘ LEFT SINGLE QUOTATION MARK */ + { 0x0ad1, 0x2019 }, /* rightsinglequotemark ’ RIGHT SINGLE QUOTATION MARK */ + { 0x0ad2, 0x201c }, /* leftdoublequotemark “ LEFT DOUBLE QUOTATION MARK */ + { 0x0ad3, 0x201d }, /* rightdoublequotemark ” RIGHT DOUBLE QUOTATION MARK */ + { 0x0ad4, 0x211e }, /* prescription ℞ PRESCRIPTION TAKE */ + { 0x0ad6, 0x2032 }, /* minutes ′ PRIME */ + { 0x0ad7, 0x2033 }, /* seconds ″ DOUBLE PRIME */ + { 0x0ad9, 0x271d }, /* latincross ✝ LATIN CROSS */ + /* 0x0ada hexagram ? ??? */ + { 0x0adb, 0x25ac }, /* filledrectbullet ▬ BLACK RECTANGLE */ + { 0x0adc, 0x25c0 }, /* filledlefttribullet ◀ BLACK LEFT-POINTING TRIANGLE */ + { 0x0add, 0x25b6 }, /* filledrighttribullet ▶ BLACK RIGHT-POINTING TRIANGLE */ + { 0x0ade, 0x25cf }, /* emfilledcircle ● BLACK CIRCLE */ + { 0x0adf, 0x25a0 }, /* emfilledrect ■ BLACK SQUARE */ + { 0x0ae0, 0x25e6 }, /* enopencircbullet ◦ WHITE BULLET */ + { 0x0ae1, 0x25ab }, /* enopensquarebullet ▫ WHITE SMALL SQUARE */ + { 0x0ae2, 0x25ad }, /* openrectbullet ▭ WHITE RECTANGLE */ + { 0x0ae3, 0x25b3 }, /* opentribulletup △ WHITE UP-POINTING TRIANGLE */ + { 0x0ae4, 0x25bd }, /* opentribulletdown ▽ WHITE DOWN-POINTING TRIANGLE */ + { 0x0ae5, 0x2606 }, /* openstar ☆ WHITE STAR */ + { 0x0ae6, 0x2022 }, /* enfilledcircbullet • BULLET */ + { 0x0ae7, 0x25aa }, /* enfilledsqbullet ▪ BLACK SMALL SQUARE */ + { 0x0ae8, 0x25b2 }, /* filledtribulletup ▲ BLACK UP-POINTING TRIANGLE */ + { 0x0ae9, 0x25bc }, /* filledtribulletdown ▼ BLACK DOWN-POINTING TRIANGLE */ + { 0x0aea, 0x261c }, /* leftpointer ☜ WHITE LEFT POINTING INDEX */ + { 0x0aeb, 0x261e }, /* rightpointer ☞ WHITE RIGHT POINTING INDEX */ + { 0x0aec, 0x2663 }, /* club ♣ BLACK CLUB SUIT */ + { 0x0aed, 0x2666 }, /* diamond ♦ BLACK DIAMOND SUIT */ + { 0x0aee, 0x2665 }, /* heart ♥ BLACK HEART SUIT */ + { 0x0af0, 0x2720 }, /* maltesecross ✠ MALTESE CROSS */ + { 0x0af1, 0x2020 }, /* dagger † DAGGER */ + { 0x0af2, 0x2021 }, /* doubledagger ‡ DOUBLE DAGGER */ + { 0x0af3, 0x2713 }, /* checkmark ✓ CHECK MARK */ + { 0x0af4, 0x2717 }, /* ballotcross ✗ BALLOT X */ + { 0x0af5, 0x266f }, /* musicalsharp ♯ MUSIC SHARP SIGN */ + { 0x0af6, 0x266d }, /* musicalflat ♭ MUSIC FLAT SIGN */ + { 0x0af7, 0x2642 }, /* malesymbol ♂ MALE SIGN */ + { 0x0af8, 0x2640 }, /* femalesymbol ♀ FEMALE SIGN */ + { 0x0af9, 0x260e }, /* telephone ☎ BLACK TELEPHONE */ + { 0x0afa, 0x2315 }, /* telephonerecorder ⌕ TELEPHONE RECORDER */ + { 0x0afb, 0x2117 }, /* phonographcopyright ℗ SOUND RECORDING COPYRIGHT */ + { 0x0afc, 0x2038 }, /* caret ‸ CARET */ + { 0x0afd, 0x201a }, /* singlelowquotemark ‚ SINGLE LOW-9 QUOTATION MARK */ + { 0x0afe, 0x201e }, /* doublelowquotemark „ DOUBLE LOW-9 QUOTATION MARK */ + /* 0x0aff cursor ? ??? */ + { 0x0ba3, 0x003c }, /* leftcaret < LESS-THAN SIGN */ + { 0x0ba6, 0x003e }, /* rightcaret > GREATER-THAN SIGN */ + { 0x0ba8, 0x2228 }, /* downcaret ∨ LOGICAL OR */ + { 0x0ba9, 0x2227 }, /* upcaret ∧ LOGICAL AND */ + { 0x0bc0, 0x00af }, /* overbar ¯ MACRON */ + { 0x0bc2, 0x22a4 }, /* downtack ⊤ DOWN TACK */ + { 0x0bc3, 0x2229 }, /* upshoe ∩ INTERSECTION */ + { 0x0bc4, 0x230a }, /* downstile ⌊ LEFT FLOOR */ + { 0x0bc6, 0x005f }, /* underbar _ LOW LINE */ + { 0x0bca, 0x2218 }, /* jot ∘ RING OPERATOR */ + { 0x0bcc, 0x2395 }, /* quad ⎕ APL FUNCTIONAL SYMBOL QUAD (Unicode 3.0) */ + { 0x0bce, 0x22a5 }, /* uptack ⊥ UP TACK */ + { 0x0bcf, 0x25cb }, /* circle ○ WHITE CIRCLE */ + { 0x0bd3, 0x2308 }, /* upstile ⌈ LEFT CEILING */ + { 0x0bd6, 0x222a }, /* downshoe ∪ UNION */ + { 0x0bd8, 0x2283 }, /* rightshoe ⊃ SUPERSET OF */ + { 0x0bda, 0x2282 }, /* leftshoe ⊂ SUBSET OF */ + { 0x0bdc, 0x22a3 }, /* lefttack ⊣ LEFT TACK */ + { 0x0bfc, 0x22a2 }, /* righttack ⊢ RIGHT TACK */ + { 0x0cdf, 0x2017 }, /* hebrew_doublelowline ‗ DOUBLE LOW LINE */ + { 0x0ce0, 0x05d0 }, /* hebrew_aleph א HEBREW LETTER ALEF */ + { 0x0ce1, 0x05d1 }, /* hebrew_bet ב HEBREW LETTER BET */ + { 0x0ce2, 0x05d2 }, /* hebrew_gimel ג HEBREW LETTER GIMEL */ + { 0x0ce3, 0x05d3 }, /* hebrew_dalet ד HEBREW LETTER DALET */ + { 0x0ce4, 0x05d4 }, /* hebrew_he ה HEBREW LETTER HE */ + { 0x0ce5, 0x05d5 }, /* hebrew_waw ו HEBREW LETTER VAV */ + { 0x0ce6, 0x05d6 }, /* hebrew_zain ז HEBREW LETTER ZAYIN */ + { 0x0ce7, 0x05d7 }, /* hebrew_chet ח HEBREW LETTER HET */ + { 0x0ce8, 0x05d8 }, /* hebrew_tet ט HEBREW LETTER TET */ + { 0x0ce9, 0x05d9 }, /* hebrew_yod י HEBREW LETTER YOD */ + { 0x0cea, 0x05da }, /* hebrew_finalkaph ך HEBREW LETTER FINAL KAF */ + { 0x0ceb, 0x05db }, /* hebrew_kaph כ HEBREW LETTER KAF */ + { 0x0cec, 0x05dc }, /* hebrew_lamed ל HEBREW LETTER LAMED */ + { 0x0ced, 0x05dd }, /* hebrew_finalmem ם HEBREW LETTER FINAL MEM */ + { 0x0cee, 0x05de }, /* hebrew_mem מ HEBREW LETTER MEM */ + { 0x0cef, 0x05df }, /* hebrew_finalnun ן HEBREW LETTER FINAL NUN */ + { 0x0cf0, 0x05e0 }, /* hebrew_nun נ HEBREW LETTER NUN */ + { 0x0cf1, 0x05e1 }, /* hebrew_samech ס HEBREW LETTER SAMEKH */ + { 0x0cf2, 0x05e2 }, /* hebrew_ayin ע HEBREW LETTER AYIN */ + { 0x0cf3, 0x05e3 }, /* hebrew_finalpe ף HEBREW LETTER FINAL PE */ + { 0x0cf4, 0x05e4 }, /* hebrew_pe פ HEBREW LETTER PE */ + { 0x0cf5, 0x05e5 }, /* hebrew_finalzade ץ HEBREW LETTER FINAL TSADI */ + { 0x0cf6, 0x05e6 }, /* hebrew_zade צ HEBREW LETTER TSADI */ + { 0x0cf7, 0x05e7 }, /* hebrew_qoph ק HEBREW LETTER QOF */ + { 0x0cf8, 0x05e8 }, /* hebrew_resh ר HEBREW LETTER RESH */ + { 0x0cf9, 0x05e9 }, /* hebrew_shin ש HEBREW LETTER SHIN */ + { 0x0cfa, 0x05ea }, /* hebrew_taw ת HEBREW LETTER TAV */ + { 0x0da1, 0x0e01 }, /* Thai_kokai ก THAI CHARACTER KO KAI */ + { 0x0da2, 0x0e02 }, /* Thai_khokhai ข THAI CHARACTER KHO KHAI */ + { 0x0da3, 0x0e03 }, /* Thai_khokhuat ฃ THAI CHARACTER KHO KHUAT */ + { 0x0da4, 0x0e04 }, /* Thai_khokhwai ค THAI CHARACTER KHO KHWAI */ + { 0x0da5, 0x0e05 }, /* Thai_khokhon ฅ THAI CHARACTER KHO KHON */ + { 0x0da6, 0x0e06 }, /* Thai_khorakhang ฆ THAI CHARACTER KHO RAKHANG */ + { 0x0da7, 0x0e07 }, /* Thai_ngongu ง THAI CHARACTER NGO NGU */ + { 0x0da8, 0x0e08 }, /* Thai_chochan จ THAI CHARACTER CHO CHAN */ + { 0x0da9, 0x0e09 }, /* Thai_choching ฉ THAI CHARACTER CHO CHING */ + { 0x0daa, 0x0e0a }, /* Thai_chochang ช THAI CHARACTER CHO CHANG */ + { 0x0dab, 0x0e0b }, /* Thai_soso ซ THAI CHARACTER SO SO */ + { 0x0dac, 0x0e0c }, /* Thai_chochoe ฌ THAI CHARACTER CHO CHOE */ + { 0x0dad, 0x0e0d }, /* Thai_yoying ญ THAI CHARACTER YO YING */ + { 0x0dae, 0x0e0e }, /* Thai_dochada ฎ THAI CHARACTER DO CHADA */ + { 0x0daf, 0x0e0f }, /* Thai_topatak ฏ THAI CHARACTER TO PATAK */ + { 0x0db0, 0x0e10 }, /* Thai_thothan ฐ THAI CHARACTER THO THAN */ + { 0x0db1, 0x0e11 }, /* Thai_thonangmontho ฑ THAI CHARACTER THO NANGMONTHO */ + { 0x0db2, 0x0e12 }, /* Thai_thophuthao ฒ THAI CHARACTER THO PHUTHAO */ + { 0x0db3, 0x0e13 }, /* Thai_nonen ณ THAI CHARACTER NO NEN */ + { 0x0db4, 0x0e14 }, /* Thai_dodek ด THAI CHARACTER DO DEK */ + { 0x0db5, 0x0e15 }, /* Thai_totao ต THAI CHARACTER TO TAO */ + { 0x0db6, 0x0e16 }, /* Thai_thothung ถ THAI CHARACTER THO THUNG */ + { 0x0db7, 0x0e17 }, /* Thai_thothahan ท THAI CHARACTER THO THAHAN */ + { 0x0db8, 0x0e18 }, /* Thai_thothong ธ THAI CHARACTER THO THONG */ + { 0x0db9, 0x0e19 }, /* Thai_nonu น THAI CHARACTER NO NU */ + { 0x0dba, 0x0e1a }, /* Thai_bobaimai บ THAI CHARACTER BO BAIMAI */ + { 0x0dbb, 0x0e1b }, /* Thai_popla ป THAI CHARACTER PO PLA */ + { 0x0dbc, 0x0e1c }, /* Thai_phophung ผ THAI CHARACTER PHO PHUNG */ + { 0x0dbd, 0x0e1d }, /* Thai_fofa ฝ THAI CHARACTER FO FA */ + { 0x0dbe, 0x0e1e }, /* Thai_phophan พ THAI CHARACTER PHO PHAN */ + { 0x0dbf, 0x0e1f }, /* Thai_fofan ฟ THAI CHARACTER FO FAN */ + { 0x0dc0, 0x0e20 }, /* Thai_phosamphao ภ THAI CHARACTER PHO SAMPHAO */ + { 0x0dc1, 0x0e21 }, /* Thai_moma ม THAI CHARACTER MO MA */ + { 0x0dc2, 0x0e22 }, /* Thai_yoyak ย THAI CHARACTER YO YAK */ + { 0x0dc3, 0x0e23 }, /* Thai_rorua ร THAI CHARACTER RO RUA */ + { 0x0dc4, 0x0e24 }, /* Thai_ru ฤ THAI CHARACTER RU */ + { 0x0dc5, 0x0e25 }, /* Thai_loling ล THAI CHARACTER LO LING */ + { 0x0dc6, 0x0e26 }, /* Thai_lu ฦ THAI CHARACTER LU */ + { 0x0dc7, 0x0e27 }, /* Thai_wowaen ว THAI CHARACTER WO WAEN */ + { 0x0dc8, 0x0e28 }, /* Thai_sosala ศ THAI CHARACTER SO SALA */ + { 0x0dc9, 0x0e29 }, /* Thai_sorusi ษ THAI CHARACTER SO RUSI */ + { 0x0dca, 0x0e2a }, /* Thai_sosua ส THAI CHARACTER SO SUA */ + { 0x0dcb, 0x0e2b }, /* Thai_hohip ห THAI CHARACTER HO HIP */ + { 0x0dcc, 0x0e2c }, /* Thai_lochula ฬ THAI CHARACTER LO CHULA */ + { 0x0dcd, 0x0e2d }, /* Thai_oang อ THAI CHARACTER O ANG */ + { 0x0dce, 0x0e2e }, /* Thai_honokhuk ฮ THAI CHARACTER HO NOKHUK */ + { 0x0dcf, 0x0e2f }, /* Thai_paiyannoi ฯ THAI CHARACTER PAIYANNOI */ + { 0x0dd0, 0x0e30 }, /* Thai_saraa ะ THAI CHARACTER SARA A */ + { 0x0dd1, 0x0e31 }, /* Thai_maihanakat ั THAI CHARACTER MAI HAN-AKAT */ + { 0x0dd2, 0x0e32 }, /* Thai_saraaa า THAI CHARACTER SARA AA */ + { 0x0dd3, 0x0e33 }, /* Thai_saraam ำ THAI CHARACTER SARA AM */ + { 0x0dd4, 0x0e34 }, /* Thai_sarai ิ THAI CHARACTER SARA I */ + { 0x0dd5, 0x0e35 }, /* Thai_saraii ี THAI CHARACTER SARA II */ + { 0x0dd6, 0x0e36 }, /* Thai_saraue ึ THAI CHARACTER SARA UE */ + { 0x0dd7, 0x0e37 }, /* Thai_sarauee ื THAI CHARACTER SARA UEE */ + { 0x0dd8, 0x0e38 }, /* Thai_sarau ุ THAI CHARACTER SARA U */ + { 0x0dd9, 0x0e39 }, /* Thai_sarauu ู THAI CHARACTER SARA UU */ + { 0x0dda, 0x0e3a }, /* Thai_phinthu ฺ THAI CHARACTER PHINTHU */ + { 0x0dde, 0x0e3e }, /* Thai_maihanakat_maitho ฾ ??? */ + { 0x0ddf, 0x0e3f }, /* Thai_baht ฿ THAI CURRENCY SYMBOL BAHT */ + { 0x0de0, 0x0e40 }, /* Thai_sarae เ THAI CHARACTER SARA E */ + { 0x0de1, 0x0e41 }, /* Thai_saraae แ THAI CHARACTER SARA AE */ + { 0x0de2, 0x0e42 }, /* Thai_sarao โ THAI CHARACTER SARA O */ + { 0x0de3, 0x0e43 }, /* Thai_saraaimaimuan ใ THAI CHARACTER SARA AI MAIMUAN */ + { 0x0de4, 0x0e44 }, /* Thai_saraaimaimalai ไ THAI CHARACTER SARA AI MAIMALAI */ + { 0x0de5, 0x0e45 }, /* Thai_lakkhangyao ๅ THAI CHARACTER LAKKHANGYAO */ + { 0x0de6, 0x0e46 }, /* Thai_maiyamok ๆ THAI CHARACTER MAIYAMOK */ + { 0x0de7, 0x0e47 }, /* Thai_maitaikhu ็ THAI CHARACTER MAITAIKHU */ + { 0x0de8, 0x0e48 }, /* Thai_maiek ่ THAI CHARACTER MAI EK */ + { 0x0de9, 0x0e49 }, /* Thai_maitho ้ THAI CHARACTER MAI THO */ + { 0x0dea, 0x0e4a }, /* Thai_maitri ๊ THAI CHARACTER MAI TRI */ + { 0x0deb, 0x0e4b }, /* Thai_maichattawa ๋ THAI CHARACTER MAI CHATTAWA */ + { 0x0dec, 0x0e4c }, /* Thai_thanthakhat ์ THAI CHARACTER THANTHAKHAT */ + { 0x0ded, 0x0e4d }, /* Thai_nikhahit ํ THAI CHARACTER NIKHAHIT */ + { 0x0df0, 0x0e50 }, /* Thai_leksun ๐ THAI DIGIT ZERO */ + { 0x0df1, 0x0e51 }, /* Thai_leknung ๑ THAI DIGIT ONE */ + { 0x0df2, 0x0e52 }, /* Thai_leksong ๒ THAI DIGIT TWO */ + { 0x0df3, 0x0e53 }, /* Thai_leksam ๓ THAI DIGIT THREE */ + { 0x0df4, 0x0e54 }, /* Thai_leksi ๔ THAI DIGIT FOUR */ + { 0x0df5, 0x0e55 }, /* Thai_lekha ๕ THAI DIGIT FIVE */ + { 0x0df6, 0x0e56 }, /* Thai_lekhok ๖ THAI DIGIT SIX */ + { 0x0df7, 0x0e57 }, /* Thai_lekchet ๗ THAI DIGIT SEVEN */ + { 0x0df8, 0x0e58 }, /* Thai_lekpaet ๘ THAI DIGIT EIGHT */ + { 0x0df9, 0x0e59 }, /* Thai_lekkao ๙ THAI DIGIT NINE */ + { 0x0ea1, 0x3131 }, /* Hangul_Kiyeog ㄱ HANGUL LETTER KIYEOK */ + { 0x0ea2, 0x3132 }, /* Hangul_SsangKiyeog ㄲ HANGUL LETTER SSANGKIYEOK */ + { 0x0ea3, 0x3133 }, /* Hangul_KiyeogSios ㄳ HANGUL LETTER KIYEOK-SIOS */ + { 0x0ea4, 0x3134 }, /* Hangul_Nieun ㄴ HANGUL LETTER NIEUN */ + { 0x0ea5, 0x3135 }, /* Hangul_NieunJieuj ㄵ HANGUL LETTER NIEUN-CIEUC */ + { 0x0ea6, 0x3136 }, /* Hangul_NieunHieuh ㄶ HANGUL LETTER NIEUN-HIEUH */ + { 0x0ea7, 0x3137 }, /* Hangul_Dikeud ㄷ HANGUL LETTER TIKEUT */ + { 0x0ea8, 0x3138 }, /* Hangul_SsangDikeud ㄸ HANGUL LETTER SSANGTIKEUT */ + { 0x0ea9, 0x3139 }, /* Hangul_Rieul ㄹ HANGUL LETTER RIEUL */ + { 0x0eaa, 0x313a }, /* Hangul_RieulKiyeog ㄺ HANGUL LETTER RIEUL-KIYEOK */ + { 0x0eab, 0x313b }, /* Hangul_RieulMieum ㄻ HANGUL LETTER RIEUL-MIEUM */ + { 0x0eac, 0x313c }, /* Hangul_RieulPieub ㄼ HANGUL LETTER RIEUL-PIEUP */ + { 0x0ead, 0x313d }, /* Hangul_RieulSios ㄽ HANGUL LETTER RIEUL-SIOS */ + { 0x0eae, 0x313e }, /* Hangul_RieulTieut ㄾ HANGUL LETTER RIEUL-THIEUTH */ + { 0x0eaf, 0x313f }, /* Hangul_RieulPhieuf ㄿ HANGUL LETTER RIEUL-PHIEUPH */ + { 0x0eb0, 0x3140 }, /* Hangul_RieulHieuh ㅀ HANGUL LETTER RIEUL-HIEUH */ + { 0x0eb1, 0x3141 }, /* Hangul_Mieum ㅁ HANGUL LETTER MIEUM */ + { 0x0eb2, 0x3142 }, /* Hangul_Pieub ㅂ HANGUL LETTER PIEUP */ + { 0x0eb3, 0x3143 }, /* Hangul_SsangPieub ㅃ HANGUL LETTER SSANGPIEUP */ + { 0x0eb4, 0x3144 }, /* Hangul_PieubSios ㅄ HANGUL LETTER PIEUP-SIOS */ + { 0x0eb5, 0x3145 }, /* Hangul_Sios ㅅ HANGUL LETTER SIOS */ + { 0x0eb6, 0x3146 }, /* Hangul_SsangSios ㅆ HANGUL LETTER SSANGSIOS */ + { 0x0eb7, 0x3147 }, /* Hangul_Ieung ㅇ HANGUL LETTER IEUNG */ + { 0x0eb8, 0x3148 }, /* Hangul_Jieuj ㅈ HANGUL LETTER CIEUC */ + { 0x0eb9, 0x3149 }, /* Hangul_SsangJieuj ㅉ HANGUL LETTER SSANGCIEUC */ + { 0x0eba, 0x314a }, /* Hangul_Cieuc ㅊ HANGUL LETTER CHIEUCH */ + { 0x0ebb, 0x314b }, /* Hangul_Khieuq ㅋ HANGUL LETTER KHIEUKH */ + { 0x0ebc, 0x314c }, /* Hangul_Tieut ㅌ HANGUL LETTER THIEUTH */ + { 0x0ebd, 0x314d }, /* Hangul_Phieuf ㅍ HANGUL LETTER PHIEUPH */ + { 0x0ebe, 0x314e }, /* Hangul_Hieuh ㅎ HANGUL LETTER HIEUH */ + { 0x0ebf, 0x314f }, /* Hangul_A ㅏ HANGUL LETTER A */ + { 0x0ec0, 0x3150 }, /* Hangul_AE ㅐ HANGUL LETTER AE */ + { 0x0ec1, 0x3151 }, /* Hangul_YA ㅑ HANGUL LETTER YA */ + { 0x0ec2, 0x3152 }, /* Hangul_YAE ㅒ HANGUL LETTER YAE */ + { 0x0ec3, 0x3153 }, /* Hangul_EO ㅓ HANGUL LETTER EO */ + { 0x0ec4, 0x3154 }, /* Hangul_E ㅔ HANGUL LETTER E */ + { 0x0ec5, 0x3155 }, /* Hangul_YEO ㅕ HANGUL LETTER YEO */ + { 0x0ec6, 0x3156 }, /* Hangul_YE ㅖ HANGUL LETTER YE */ + { 0x0ec7, 0x3157 }, /* Hangul_O ㅗ HANGUL LETTER O */ + { 0x0ec8, 0x3158 }, /* Hangul_WA ㅘ HANGUL LETTER WA */ + { 0x0ec9, 0x3159 }, /* Hangul_WAE ㅙ HANGUL LETTER WAE */ + { 0x0eca, 0x315a }, /* Hangul_OE ㅚ HANGUL LETTER OE */ + { 0x0ecb, 0x315b }, /* Hangul_YO ㅛ HANGUL LETTER YO */ + { 0x0ecc, 0x315c }, /* Hangul_U ㅜ HANGUL LETTER U */ + { 0x0ecd, 0x315d }, /* Hangul_WEO ㅝ HANGUL LETTER WEO */ + { 0x0ece, 0x315e }, /* Hangul_WE ㅞ HANGUL LETTER WE */ + { 0x0ecf, 0x315f }, /* Hangul_WI ㅟ HANGUL LETTER WI */ + { 0x0ed0, 0x3160 }, /* Hangul_YU ㅠ HANGUL LETTER YU */ + { 0x0ed1, 0x3161 }, /* Hangul_EU ㅡ HANGUL LETTER EU */ + { 0x0ed2, 0x3162 }, /* Hangul_YI ㅢ HANGUL LETTER YI */ + { 0x0ed3, 0x3163 }, /* Hangul_I ㅣ HANGUL LETTER I */ + { 0x0ed4, 0x11a8 }, /* Hangul_J_Kiyeog ᆨ HANGUL JONGSEONG KIYEOK */ + { 0x0ed5, 0x11a9 }, /* Hangul_J_SsangKiyeog ᆩ HANGUL JONGSEONG SSANGKIYEOK */ + { 0x0ed6, 0x11aa }, /* Hangul_J_KiyeogSios ᆪ HANGUL JONGSEONG KIYEOK-SIOS */ + { 0x0ed7, 0x11ab }, /* Hangul_J_Nieun ᆫ HANGUL JONGSEONG NIEUN */ + { 0x0ed8, 0x11ac }, /* Hangul_J_NieunJieuj ᆬ HANGUL JONGSEONG NIEUN-CIEUC */ + { 0x0ed9, 0x11ad }, /* Hangul_J_NieunHieuh ᆭ HANGUL JONGSEONG NIEUN-HIEUH */ + { 0x0eda, 0x11ae }, /* Hangul_J_Dikeud ᆮ HANGUL JONGSEONG TIKEUT */ + { 0x0edb, 0x11af }, /* Hangul_J_Rieul ᆯ HANGUL JONGSEONG RIEUL */ + { 0x0edc, 0x11b0 }, /* Hangul_J_RieulKiyeog ᆰ HANGUL JONGSEONG RIEUL-KIYEOK */ + { 0x0edd, 0x11b1 }, /* Hangul_J_RieulMieum ᆱ HANGUL JONGSEONG RIEUL-MIEUM */ + { 0x0ede, 0x11b2 }, /* Hangul_J_RieulPieub ᆲ HANGUL JONGSEONG RIEUL-PIEUP */ + { 0x0edf, 0x11b3 }, /* Hangul_J_RieulSios ᆳ HANGUL JONGSEONG RIEUL-SIOS */ + { 0x0ee0, 0x11b4 }, /* Hangul_J_RieulTieut ᆴ HANGUL JONGSEONG RIEUL-THIEUTH */ + { 0x0ee1, 0x11b5 }, /* Hangul_J_RieulPhieuf ᆵ HANGUL JONGSEONG RIEUL-PHIEUPH */ + { 0x0ee2, 0x11b6 }, /* Hangul_J_RieulHieuh ᆶ HANGUL JONGSEONG RIEUL-HIEUH */ + { 0x0ee3, 0x11b7 }, /* Hangul_J_Mieum ᆷ HANGUL JONGSEONG MIEUM */ + { 0x0ee4, 0x11b8 }, /* Hangul_J_Pieub ᆸ HANGUL JONGSEONG PIEUP */ + { 0x0ee5, 0x11b9 }, /* Hangul_J_PieubSios ᆹ HANGUL JONGSEONG PIEUP-SIOS */ + { 0x0ee6, 0x11ba }, /* Hangul_J_Sios ᆺ HANGUL JONGSEONG SIOS */ + { 0x0ee7, 0x11bb }, /* Hangul_J_SsangSios ᆻ HANGUL JONGSEONG SSANGSIOS */ + { 0x0ee8, 0x11bc }, /* Hangul_J_Ieung ᆼ HANGUL JONGSEONG IEUNG */ + { 0x0ee9, 0x11bd }, /* Hangul_J_Jieuj ᆽ HANGUL JONGSEONG CIEUC */ + { 0x0eea, 0x11be }, /* Hangul_J_Cieuc ᆾ HANGUL JONGSEONG CHIEUCH */ + { 0x0eeb, 0x11bf }, /* Hangul_J_Khieuq ᆿ HANGUL JONGSEONG KHIEUKH */ + { 0x0eec, 0x11c0 }, /* Hangul_J_Tieut ᇀ HANGUL JONGSEONG THIEUTH */ + { 0x0eed, 0x11c1 }, /* Hangul_J_Phieuf ᇁ HANGUL JONGSEONG PHIEUPH */ + { 0x0eee, 0x11c2 }, /* Hangul_J_Hieuh ᇂ HANGUL JONGSEONG HIEUH */ + { 0x0eef, 0x316d }, /* Hangul_RieulYeorinHieuh ㅭ HANGUL LETTER RIEUL-YEORINHIEUH */ + { 0x0ef0, 0x3171 }, /* Hangul_SunkyeongeumMieum ㅱ HANGUL LETTER KAPYEOUNMIEUM */ + { 0x0ef1, 0x3178 }, /* Hangul_SunkyeongeumPieub ㅸ HANGUL LETTER KAPYEOUNPIEUP */ + { 0x0ef2, 0x317f }, /* Hangul_PanSios ㅿ HANGUL LETTER PANSIOS */ + /* 0x0ef3 Hangul_KkogjiDalrinIeung ? ??? */ + { 0x0ef4, 0x3184 }, /* Hangul_SunkyeongeumPhieuf ㆄ HANGUL LETTER KAPYEOUNPHIEUPH */ + { 0x0ef5, 0x3186 }, /* Hangul_YeorinHieuh ㆆ HANGUL LETTER YEORINHIEUH */ + { 0x0ef6, 0x318d }, /* Hangul_AraeA ㆍ HANGUL LETTER ARAEA */ + { 0x0ef7, 0x318e }, /* Hangul_AraeAE ㆎ HANGUL LETTER ARAEAE */ + { 0x0ef8, 0x11eb }, /* Hangul_J_PanSios ᇫ HANGUL JONGSEONG PANSIOS */ + /* 0x0ef9 Hangul_J_KkogjiDalrinIeung ? ??? */ + { 0x0efa, 0x11f9 }, /* Hangul_J_YeorinHieuh ᇹ HANGUL JONGSEONG YEORINHIEUH */ + { 0x0eff, 0x20a9 }, /* Korean_Won ₩ WON SIGN */ + { 0x13bc, 0x0152 }, /* OE Œ LATIN CAPITAL LIGATURE OE */ + { 0x13bd, 0x0153 }, /* oe œ LATIN SMALL LIGATURE OE */ + { 0x13be, 0x0178 }, /* Ydiaeresis Ÿ LATIN CAPITAL LETTER Y WITH DIAERESIS */ + { 0x20a0, 0x20a0 }, /* EcuSign ₠ EURO-CURRENCY SIGN */ + { 0x20a1, 0x20a1 }, /* ColonSign ₡ COLON SIGN */ + { 0x20a2, 0x20a2 }, /* CruzeiroSign ₢ CRUZEIRO SIGN */ + { 0x20a3, 0x20a3 }, /* FFrancSign ₣ FRENCH FRANC SIGN */ + { 0x20a4, 0x20a4 }, /* LiraSign ₤ LIRA SIGN */ + { 0x20a5, 0x20a5 }, /* MillSign ₥ MILL SIGN */ + { 0x20a6, 0x20a6 }, /* NairaSign ₦ NAIRA SIGN */ + { 0x20a7, 0x20a7 }, /* PesetaSign ₧ PESETA SIGN */ + { 0x20a8, 0x20a8 }, /* RupeeSign ₨ RUPEE SIGN */ + { 0x20a9, 0x20a9 }, /* WonSign ₩ WON SIGN */ + { 0x20aa, 0x20aa }, /* NewSheqelSign ₪ NEW SHEQEL SIGN */ + { 0x20ab, 0x20ab }, /* DongSign ₫ DONG SIGN */ + { 0x20ac, 0x20ac }, /* EuroSign € EURO SIGN */ + + + /* Following items added to GTK, not in the xterm table */ + + /* Numeric keypad */ + + { 0xFF80 /* Space */, ' ' }, + { 0xFFAA /* Multiply */, '*' }, + { 0xFFAB /* Add */, '+' }, + { 0xFFAC /* Separator */, ',' }, + { 0xFFAD /* Subtract */, '-' }, + { 0xFFAE /* Decimal */, '.' }, + { 0xFFAF /* Divide */, '/' }, + { 0xFFB0 /* 0 */, '0' }, + { 0xFFB1 /* 1 */, '1' }, + { 0xFFB2 /* 2 */, '2' }, + { 0xFFB3 /* 3 */, '3' }, + { 0xFFB4 /* 4 */, '4' }, + { 0xFFB5 /* 5 */, '5' }, + { 0xFFB6 /* 6 */, '6' }, + { 0xFFB7 /* 7 */, '7' }, + { 0xFFB8 /* 8 */, '8' }, + { 0xFFB9 /* 9 */, '9' }, + { 0xFFBD /* Equal */, '=' }, + + /* End numeric keypad */ +}; + +/** + * fcitx_keyval_to_unicode: + * @keyval: a GDK key symbol + * + * Convert from a GDK key symbol to the corresponding ISO10646 (Unicode) + * character. + * + * Return value: the corresponding unicode character, or 0 if there + * is no corresponding character. + **/ +quint32 +fcitx_keyval_to_unicode (uint keyval) +{ + int min = 0; + int max = sizeof (fcitx_keysym_to_unicode_tab) / sizeof (fcitx_keysym_to_unicode_tab[0]) - 1; + int mid; + + /* First check for Latin-1 characters (1:1 mapping) */ + if ((keyval >= 0x0020 && keyval <= 0x007e) || + (keyval >= 0x00a0 && keyval <= 0x00ff)) + return keyval; + + /* Also check for directly encoded 24-bit UCS characters: + */ + if ((keyval & 0xff000000) == 0x01000000) + return keyval & 0x00ffffff; + + /* binary search in table */ + while (max >= min) { + mid = (min + max) / 2; + if (fcitx_keysym_to_unicode_tab[mid].keysym < keyval) + min = mid + 1; + else if (fcitx_keysym_to_unicode_tab[mid].keysym > keyval) + max = mid - 1; + else { + /* found it */ + return fcitx_keysym_to_unicode_tab[mid].ucs; + } + } + + /* No matching Unicode value found */ + return 0; +} + +static const struct { + unsigned short keysym; + unsigned short ucs; +} fcitx_unicode_to_keysym_tab[] = { + { 0x0abd, 0x002e }, /* decimalpoint . FULL STOP */ + { 0x0ba3, 0x003c }, /* leftcaret < LESS-THAN SIGN */ + { 0x0ba6, 0x003e }, /* rightcaret > GREATER-THAN SIGN */ + { 0x0bc6, 0x005f }, /* underbar _ LOW LINE */ + { 0x0bc0, 0x00af }, /* overbar ¯ MACRON */ + { 0x03c0, 0x0100 }, /* Amacron Ā LATIN CAPITAL LETTER A WITH MACRON */ + { 0x03e0, 0x0101 }, /* amacron ā LATIN SMALL LETTER A WITH MACRON */ + { 0x01c3, 0x0102 }, /* Abreve Ă LATIN CAPITAL LETTER A WITH BREVE */ + { 0x01e3, 0x0103 }, /* abreve ă LATIN SMALL LETTER A WITH BREVE */ + { 0x01a1, 0x0104 }, /* Aogonek Ą LATIN CAPITAL LETTER A WITH OGONEK */ + { 0x01b1, 0x0105 }, /* aogonek ą LATIN SMALL LETTER A WITH OGONEK */ + { 0x01c6, 0x0106 }, /* Cacute Ć LATIN CAPITAL LETTER C WITH ACUTE */ + { 0x01e6, 0x0107 }, /* cacute ć LATIN SMALL LETTER C WITH ACUTE */ + { 0x02c6, 0x0108 }, /* Ccircumflex Ĉ LATIN CAPITAL LETTER C WITH CIRCUMFLEX */ + { 0x02e6, 0x0109 }, /* ccircumflex ĉ LATIN SMALL LETTER C WITH CIRCUMFLEX */ + { 0x02c5, 0x010a }, /* Cabovedot Ċ LATIN CAPITAL LETTER C WITH DOT ABOVE */ + { 0x02e5, 0x010b }, /* cabovedot ċ LATIN SMALL LETTER C WITH DOT ABOVE */ + { 0x01c8, 0x010c }, /* Ccaron Č LATIN CAPITAL LETTER C WITH CARON */ + { 0x01e8, 0x010d }, /* ccaron č LATIN SMALL LETTER C WITH CARON */ + { 0x01cf, 0x010e }, /* Dcaron Ď LATIN CAPITAL LETTER D WITH CARON */ + { 0x01ef, 0x010f }, /* dcaron ď LATIN SMALL LETTER D WITH CARON */ + { 0x01d0, 0x0110 }, /* Dstroke Đ LATIN CAPITAL LETTER D WITH STROKE */ + { 0x01f0, 0x0111 }, /* dstroke đ LATIN SMALL LETTER D WITH STROKE */ + { 0x03aa, 0x0112 }, /* Emacron Ē LATIN CAPITAL LETTER E WITH MACRON */ + { 0x03ba, 0x0113 }, /* emacron ē LATIN SMALL LETTER E WITH MACRON */ + { 0x03cc, 0x0116 }, /* Eabovedot Ė LATIN CAPITAL LETTER E WITH DOT ABOVE */ + { 0x03ec, 0x0117 }, /* eabovedot ė LATIN SMALL LETTER E WITH DOT ABOVE */ + { 0x01ca, 0x0118 }, /* Eogonek Ę LATIN CAPITAL LETTER E WITH OGONEK */ + { 0x01ea, 0x0119 }, /* eogonek ę LATIN SMALL LETTER E WITH OGONEK */ + { 0x01cc, 0x011a }, /* Ecaron Ě LATIN CAPITAL LETTER E WITH CARON */ + { 0x01ec, 0x011b }, /* ecaron ě LATIN SMALL LETTER E WITH CARON */ + { 0x02d8, 0x011c }, /* Gcircumflex Ĝ LATIN CAPITAL LETTER G WITH CIRCUMFLEX */ + { 0x02f8, 0x011d }, /* gcircumflex ĝ LATIN SMALL LETTER G WITH CIRCUMFLEX */ + { 0x02ab, 0x011e }, /* Gbreve Ğ LATIN CAPITAL LETTER G WITH BREVE */ + { 0x02bb, 0x011f }, /* gbreve ğ LATIN SMALL LETTER G WITH BREVE */ + { 0x02d5, 0x0120 }, /* Gabovedot Ġ LATIN CAPITAL LETTER G WITH DOT ABOVE */ + { 0x02f5, 0x0121 }, /* gabovedot ġ LATIN SMALL LETTER G WITH DOT ABOVE */ + { 0x03ab, 0x0122 }, /* Gcedilla Ģ LATIN CAPITAL LETTER G WITH CEDILLA */ + { 0x03bb, 0x0123 }, /* gcedilla ģ LATIN SMALL LETTER G WITH CEDILLA */ + { 0x02a6, 0x0124 }, /* Hcircumflex Ĥ LATIN CAPITAL LETTER H WITH CIRCUMFLEX */ + { 0x02b6, 0x0125 }, /* hcircumflex ĥ LATIN SMALL LETTER H WITH CIRCUMFLEX */ + { 0x02a1, 0x0126 }, /* Hstroke Ħ LATIN CAPITAL LETTER H WITH STROKE */ + { 0x02b1, 0x0127 }, /* hstroke ħ LATIN SMALL LETTER H WITH STROKE */ + { 0x03a5, 0x0128 }, /* Itilde Ĩ LATIN CAPITAL LETTER I WITH TILDE */ + { 0x03b5, 0x0129 }, /* itilde ĩ LATIN SMALL LETTER I WITH TILDE */ + { 0x03cf, 0x012a }, /* Imacron Ī LATIN CAPITAL LETTER I WITH MACRON */ + { 0x03ef, 0x012b }, /* imacron ī LATIN SMALL LETTER I WITH MACRON */ + { 0x03c7, 0x012e }, /* Iogonek Į LATIN CAPITAL LETTER I WITH OGONEK */ + { 0x03e7, 0x012f }, /* iogonek į LATIN SMALL LETTER I WITH OGONEK */ + { 0x02a9, 0x0130 }, /* Iabovedot İ LATIN CAPITAL LETTER I WITH DOT ABOVE */ + { 0x02b9, 0x0131 }, /* idotless ı LATIN SMALL LETTER DOTLESS I */ + { 0x02ac, 0x0134 }, /* Jcircumflex Ĵ LATIN CAPITAL LETTER J WITH CIRCUMFLEX */ + { 0x02bc, 0x0135 }, /* jcircumflex ĵ LATIN SMALL LETTER J WITH CIRCUMFLEX */ + { 0x03d3, 0x0136 }, /* Kcedilla Ķ LATIN CAPITAL LETTER K WITH CEDILLA */ + { 0x03f3, 0x0137 }, /* kcedilla ķ LATIN SMALL LETTER K WITH CEDILLA */ + { 0x03a2, 0x0138 }, /* kra ĸ LATIN SMALL LETTER KRA */ + { 0x01c5, 0x0139 }, /* Lacute Ĺ LATIN CAPITAL LETTER L WITH ACUTE */ + { 0x01e5, 0x013a }, /* lacute ĺ LATIN SMALL LETTER L WITH ACUTE */ + { 0x03a6, 0x013b }, /* Lcedilla Ļ LATIN CAPITAL LETTER L WITH CEDILLA */ + { 0x03b6, 0x013c }, /* lcedilla ļ LATIN SMALL LETTER L WITH CEDILLA */ + { 0x01a5, 0x013d }, /* Lcaron Ľ LATIN CAPITAL LETTER L WITH CARON */ + { 0x01b5, 0x013e }, /* lcaron ľ LATIN SMALL LETTER L WITH CARON */ + { 0x01a3, 0x0141 }, /* Lstroke Ł LATIN CAPITAL LETTER L WITH STROKE */ + { 0x01b3, 0x0142 }, /* lstroke ł LATIN SMALL LETTER L WITH STROKE */ + { 0x01d1, 0x0143 }, /* Nacute Ń LATIN CAPITAL LETTER N WITH ACUTE */ + { 0x01f1, 0x0144 }, /* nacute ń LATIN SMALL LETTER N WITH ACUTE */ + { 0x03d1, 0x0145 }, /* Ncedilla Ņ LATIN CAPITAL LETTER N WITH CEDILLA */ + { 0x03f1, 0x0146 }, /* ncedilla ņ LATIN SMALL LETTER N WITH CEDILLA */ + { 0x01d2, 0x0147 }, /* Ncaron Ň LATIN CAPITAL LETTER N WITH CARON */ + { 0x01f2, 0x0148 }, /* ncaron ň LATIN SMALL LETTER N WITH CARON */ + { 0x03bd, 0x014a }, /* ENG Ŋ LATIN CAPITAL LETTER ENG */ + { 0x03bf, 0x014b }, /* eng ŋ LATIN SMALL LETTER ENG */ + { 0x03d2, 0x014c }, /* Omacron Ō LATIN CAPITAL LETTER O WITH MACRON */ + { 0x03f2, 0x014d }, /* omacron ō LATIN SMALL LETTER O WITH MACRON */ + { 0x01d5, 0x0150 }, /* Odoubleacute Ő LATIN CAPITAL LETTER O WITH DOUBLE ACUTE */ + { 0x01f5, 0x0151 }, /* odoubleacute ő LATIN SMALL LETTER O WITH DOUBLE ACUTE */ + { 0x13bc, 0x0152 }, /* OE Œ LATIN CAPITAL LIGATURE OE */ + { 0x13bd, 0x0153 }, /* oe œ LATIN SMALL LIGATURE OE */ + { 0x01c0, 0x0154 }, /* Racute Ŕ LATIN CAPITAL LETTER R WITH ACUTE */ + { 0x01e0, 0x0155 }, /* racute ŕ LATIN SMALL LETTER R WITH ACUTE */ + { 0x03a3, 0x0156 }, /* Rcedilla Ŗ LATIN CAPITAL LETTER R WITH CEDILLA */ + { 0x03b3, 0x0157 }, /* rcedilla ŗ LATIN SMALL LETTER R WITH CEDILLA */ + { 0x01d8, 0x0158 }, /* Rcaron Ř LATIN CAPITAL LETTER R WITH CARON */ + { 0x01f8, 0x0159 }, /* rcaron ř LATIN SMALL LETTER R WITH CARON */ + { 0x01a6, 0x015a }, /* Sacute Ś LATIN CAPITAL LETTER S WITH ACUTE */ + { 0x01b6, 0x015b }, /* sacute ś LATIN SMALL LETTER S WITH ACUTE */ + { 0x02de, 0x015c }, /* Scircumflex Ŝ LATIN CAPITAL LETTER S WITH CIRCUMFLEX */ + { 0x02fe, 0x015d }, /* scircumflex ŝ LATIN SMALL LETTER S WITH CIRCUMFLEX */ + { 0x01aa, 0x015e }, /* Scedilla Ş LATIN CAPITAL LETTER S WITH CEDILLA */ + { 0x01ba, 0x015f }, /* scedilla ş LATIN SMALL LETTER S WITH CEDILLA */ + { 0x01a9, 0x0160 }, /* Scaron Š LATIN CAPITAL LETTER S WITH CARON */ + { 0x01b9, 0x0161 }, /* scaron š LATIN SMALL LETTER S WITH CARON */ + { 0x01de, 0x0162 }, /* Tcedilla Ţ LATIN CAPITAL LETTER T WITH CEDILLA */ + { 0x01fe, 0x0163 }, /* tcedilla ţ LATIN SMALL LETTER T WITH CEDILLA */ + { 0x01ab, 0x0164 }, /* Tcaron Ť LATIN CAPITAL LETTER T WITH CARON */ + { 0x01bb, 0x0165 }, /* tcaron ť LATIN SMALL LETTER T WITH CARON */ + { 0x03ac, 0x0166 }, /* Tslash Ŧ LATIN CAPITAL LETTER T WITH STROKE */ + { 0x03bc, 0x0167 }, /* tslash ŧ LATIN SMALL LETTER T WITH STROKE */ + { 0x03dd, 0x0168 }, /* Utilde Ũ LATIN CAPITAL LETTER U WITH TILDE */ + { 0x03fd, 0x0169 }, /* utilde ũ LATIN SMALL LETTER U WITH TILDE */ + { 0x03de, 0x016a }, /* Umacron Ū LATIN CAPITAL LETTER U WITH MACRON */ + { 0x03fe, 0x016b }, /* umacron ū LATIN SMALL LETTER U WITH MACRON */ + { 0x02dd, 0x016c }, /* Ubreve Ŭ LATIN CAPITAL LETTER U WITH BREVE */ + { 0x02fd, 0x016d }, /* ubreve ŭ LATIN SMALL LETTER U WITH BREVE */ + { 0x01d9, 0x016e }, /* Uring Ů LATIN CAPITAL LETTER U WITH RING ABOVE */ + { 0x01f9, 0x016f }, /* uring ů LATIN SMALL LETTER U WITH RING ABOVE */ + { 0x01db, 0x0170 }, /* Udoubleacute Ű LATIN CAPITAL LETTER U WITH DOUBLE ACUTE */ + { 0x01fb, 0x0171 }, /* udoubleacute ű LATIN SMALL LETTER U WITH DOUBLE ACUTE */ + { 0x03d9, 0x0172 }, /* Uogonek Ų LATIN CAPITAL LETTER U WITH OGONEK */ + { 0x03f9, 0x0173 }, /* uogonek ų LATIN SMALL LETTER U WITH OGONEK */ + { 0x13be, 0x0178 }, /* Ydiaeresis Ÿ LATIN CAPITAL LETTER Y WITH DIAERESIS */ + { 0x01ac, 0x0179 }, /* Zacute Ź LATIN CAPITAL LETTER Z WITH ACUTE */ + { 0x01bc, 0x017a }, /* zacute ź LATIN SMALL LETTER Z WITH ACUTE */ + { 0x01af, 0x017b }, /* Zabovedot Ż LATIN CAPITAL LETTER Z WITH DOT ABOVE */ + { 0x01bf, 0x017c }, /* zabovedot ż LATIN SMALL LETTER Z WITH DOT ABOVE */ + { 0x01ae, 0x017d }, /* Zcaron Ž LATIN CAPITAL LETTER Z WITH CARON */ + { 0x01be, 0x017e }, /* zcaron ž LATIN SMALL LETTER Z WITH CARON */ + { 0x08f6, 0x0192 }, /* function ƒ LATIN SMALL LETTER F WITH HOOK */ + { 0x01b7, 0x02c7 }, /* caron ˇ CARON */ + { 0x01a2, 0x02d8 }, /* breve ˘ BREVE */ + { 0x01ff, 0x02d9 }, /* abovedot ˙ DOT ABOVE */ + { 0x01b2, 0x02db }, /* ogonek ˛ OGONEK */ + { 0x01bd, 0x02dd }, /* doubleacute ˝ DOUBLE ACUTE ACCENT */ + { 0x07ae, 0x0385 }, /* Greek_accentdieresis ΅ GREEK DIALYTIKA TONOS */ + { 0x07a1, 0x0386 }, /* Greek_ALPHAaccent Ά GREEK CAPITAL LETTER ALPHA WITH TONOS */ + { 0x07a2, 0x0388 }, /* Greek_EPSILONaccent Έ GREEK CAPITAL LETTER EPSILON WITH TONOS */ + { 0x07a3, 0x0389 }, /* Greek_ETAaccent Ή GREEK CAPITAL LETTER ETA WITH TONOS */ + { 0x07a4, 0x038a }, /* Greek_IOTAaccent Ί GREEK CAPITAL LETTER IOTA WITH TONOS */ + { 0x07a7, 0x038c }, /* Greek_OMICRONaccent Ό GREEK CAPITAL LETTER OMICRON WITH TONOS */ + { 0x07a8, 0x038e }, /* Greek_UPSILONaccent Ύ GREEK CAPITAL LETTER UPSILON WITH TONOS */ + { 0x07ab, 0x038f }, /* Greek_OMEGAaccent Ώ GREEK CAPITAL LETTER OMEGA WITH TONOS */ + { 0x07b6, 0x0390 }, /* Greek_iotaaccentdieresis ΐ GREEK SMALL LETTER IOTA WITH DIALYTIKA AND TONOS */ + { 0x07c1, 0x0391 }, /* Greek_ALPHA Α GREEK CAPITAL LETTER ALPHA */ + { 0x07c2, 0x0392 }, /* Greek_BETA Β GREEK CAPITAL LETTER BETA */ + { 0x07c3, 0x0393 }, /* Greek_GAMMA Γ GREEK CAPITAL LETTER GAMMA */ + { 0x07c4, 0x0394 }, /* Greek_DELTA Δ GREEK CAPITAL LETTER DELTA */ + { 0x07c5, 0x0395 }, /* Greek_EPSILON Ε GREEK CAPITAL LETTER EPSILON */ + { 0x07c6, 0x0396 }, /* Greek_ZETA Ζ GREEK CAPITAL LETTER ZETA */ + { 0x07c7, 0x0397 }, /* Greek_ETA Η GREEK CAPITAL LETTER ETA */ + { 0x07c8, 0x0398 }, /* Greek_THETA Θ GREEK CAPITAL LETTER THETA */ + { 0x07c9, 0x0399 }, /* Greek_IOTA Ι GREEK CAPITAL LETTER IOTA */ + { 0x07ca, 0x039a }, /* Greek_KAPPA Κ GREEK CAPITAL LETTER KAPPA */ + { 0x07cb, 0x039b }, /* Greek_LAMBDA Λ GREEK CAPITAL LETTER LAMDA */ + { 0x07cc, 0x039c }, /* Greek_MU Μ GREEK CAPITAL LETTER MU */ + { 0x07cd, 0x039d }, /* Greek_NU Ν GREEK CAPITAL LETTER NU */ + { 0x07ce, 0x039e }, /* Greek_XI Ξ GREEK CAPITAL LETTER XI */ + { 0x07cf, 0x039f }, /* Greek_OMICRON Ο GREEK CAPITAL LETTER OMICRON */ + { 0x07d0, 0x03a0 }, /* Greek_PI Π GREEK CAPITAL LETTER PI */ + { 0x07d1, 0x03a1 }, /* Greek_RHO Ρ GREEK CAPITAL LETTER RHO */ + { 0x07d2, 0x03a3 }, /* Greek_SIGMA Σ GREEK CAPITAL LETTER SIGMA */ + { 0x07d4, 0x03a4 }, /* Greek_TAU Τ GREEK CAPITAL LETTER TAU */ + { 0x07d5, 0x03a5 }, /* Greek_UPSILON Υ GREEK CAPITAL LETTER UPSILON */ + { 0x07d6, 0x03a6 }, /* Greek_PHI Φ GREEK CAPITAL LETTER PHI */ + { 0x07d7, 0x03a7 }, /* Greek_CHI Χ GREEK CAPITAL LETTER CHI */ + { 0x07d8, 0x03a8 }, /* Greek_PSI Ψ GREEK CAPITAL LETTER PSI */ + { 0x07d9, 0x03a9 }, /* Greek_OMEGA Ω GREEK CAPITAL LETTER OMEGA */ + { 0x07a5, 0x03aa }, /* Greek_IOTAdieresis Ϊ GREEK CAPITAL LETTER IOTA WITH DIALYTIKA */ + { 0x07a9, 0x03ab }, /* Greek_UPSILONdieresis Ϋ GREEK CAPITAL LETTER UPSILON WITH DIALYTIKA */ + { 0x07b1, 0x03ac }, /* Greek_alphaaccent ά GREEK SMALL LETTER ALPHA WITH TONOS */ + { 0x07b2, 0x03ad }, /* Greek_epsilonaccent έ GREEK SMALL LETTER EPSILON WITH TONOS */ + { 0x07b3, 0x03ae }, /* Greek_etaaccent ή GREEK SMALL LETTER ETA WITH TONOS */ + { 0x07b4, 0x03af }, /* Greek_iotaaccent ί GREEK SMALL LETTER IOTA WITH TONOS */ + { 0x07ba, 0x03b0 }, /* Greek_upsilonaccentdieresis ΰ GREEK SMALL LETTER UPSILON WITH DIALYTIKA AND TONOS */ + { 0x07e1, 0x03b1 }, /* Greek_alpha α GREEK SMALL LETTER ALPHA */ + { 0x07e2, 0x03b2 }, /* Greek_beta β GREEK SMALL LETTER BETA */ + { 0x07e3, 0x03b3 }, /* Greek_gamma γ GREEK SMALL LETTER GAMMA */ + { 0x07e4, 0x03b4 }, /* Greek_delta δ GREEK SMALL LETTER DELTA */ + { 0x07e5, 0x03b5 }, /* Greek_epsilon ε GREEK SMALL LETTER EPSILON */ + { 0x07e6, 0x03b6 }, /* Greek_zeta ζ GREEK SMALL LETTER ZETA */ + { 0x07e7, 0x03b7 }, /* Greek_eta η GREEK SMALL LETTER ETA */ + { 0x07e8, 0x03b8 }, /* Greek_theta θ GREEK SMALL LETTER THETA */ + { 0x07e9, 0x03b9 }, /* Greek_iota ι GREEK SMALL LETTER IOTA */ + { 0x07ea, 0x03ba }, /* Greek_kappa κ GREEK SMALL LETTER KAPPA */ + { 0x07eb, 0x03bb }, /* Greek_lambda λ GREEK SMALL LETTER LAMDA */ + { 0x07ec, 0x03bc }, /* Greek_mu μ GREEK SMALL LETTER MU */ + { 0x07ed, 0x03bd }, /* Greek_nu ν GREEK SMALL LETTER NU */ + { 0x07ee, 0x03be }, /* Greek_xi ξ GREEK SMALL LETTER XI */ + { 0x07ef, 0x03bf }, /* Greek_omicron ο GREEK SMALL LETTER OMICRON */ + { 0x07f0, 0x03c0 }, /* Greek_pi π GREEK SMALL LETTER PI */ + { 0x07f1, 0x03c1 }, /* Greek_rho ρ GREEK SMALL LETTER RHO */ + { 0x07f3, 0x03c2 }, /* Greek_finalsmallsigma ς GREEK SMALL LETTER FINAL SIGMA */ + { 0x07f2, 0x03c3 }, /* Greek_sigma σ GREEK SMALL LETTER SIGMA */ + { 0x07f4, 0x03c4 }, /* Greek_tau τ GREEK SMALL LETTER TAU */ + { 0x07f5, 0x03c5 }, /* Greek_upsilon υ GREEK SMALL LETTER UPSILON */ + { 0x07f6, 0x03c6 }, /* Greek_phi φ GREEK SMALL LETTER PHI */ + { 0x07f7, 0x03c7 }, /* Greek_chi χ GREEK SMALL LETTER CHI */ + { 0x07f8, 0x03c8 }, /* Greek_psi ψ GREEK SMALL LETTER PSI */ + { 0x07f9, 0x03c9 }, /* Greek_omega ω GREEK SMALL LETTER OMEGA */ + { 0x07b5, 0x03ca }, /* Greek_iotadieresis ϊ GREEK SMALL LETTER IOTA WITH DIALYTIKA */ + { 0x07b9, 0x03cb }, /* Greek_upsilondieresis ϋ GREEK SMALL LETTER UPSILON WITH DIALYTIKA */ + { 0x07b7, 0x03cc }, /* Greek_omicronaccent ό GREEK SMALL LETTER OMICRON WITH TONOS */ + { 0x07b8, 0x03cd }, /* Greek_upsilonaccent ύ GREEK SMALL LETTER UPSILON WITH TONOS */ + { 0x07bb, 0x03ce }, /* Greek_omegaaccent ώ GREEK SMALL LETTER OMEGA WITH TONOS */ + { 0x06b3, 0x0401 }, /* Cyrillic_IO Ё CYRILLIC CAPITAL LETTER IO */ + { 0x06b1, 0x0402 }, /* Serbian_DJE Ђ CYRILLIC CAPITAL LETTER DJE */ + { 0x06b2, 0x0403 }, /* Macedonia_GJE Ѓ CYRILLIC CAPITAL LETTER GJE */ + { 0x06b4, 0x0404 }, /* Ukrainian_IE Є CYRILLIC CAPITAL LETTER UKRAINIAN IE */ + { 0x06b5, 0x0405 }, /* Macedonia_DSE Ѕ CYRILLIC CAPITAL LETTER DZE */ + { 0x06b6, 0x0406 }, /* Ukrainian_I І CYRILLIC CAPITAL LETTER BYELORUSSIAN-UKRAINIAN I */ + { 0x06b7, 0x0407 }, /* Ukrainian_YI Ї CYRILLIC CAPITAL LETTER YI */ + { 0x06b8, 0x0408 }, /* Cyrillic_JE Ј CYRILLIC CAPITAL LETTER JE */ + { 0x06b9, 0x0409 }, /* Cyrillic_LJE Љ CYRILLIC CAPITAL LETTER LJE */ + { 0x06ba, 0x040a }, /* Cyrillic_NJE Њ CYRILLIC CAPITAL LETTER NJE */ + { 0x06bb, 0x040b }, /* Serbian_TSHE Ћ CYRILLIC CAPITAL LETTER TSHE */ + { 0x06bc, 0x040c }, /* Macedonia_KJE Ќ CYRILLIC CAPITAL LETTER KJE */ + { 0x06be, 0x040e }, /* Byelorussian_SHORTU Ў CYRILLIC CAPITAL LETTER SHORT U */ + { 0x06bf, 0x040f }, /* Cyrillic_DZHE Џ CYRILLIC CAPITAL LETTER DZHE */ + { 0x06e1, 0x0410 }, /* Cyrillic_A А CYRILLIC CAPITAL LETTER A */ + { 0x06e2, 0x0411 }, /* Cyrillic_BE Б CYRILLIC CAPITAL LETTER BE */ + { 0x06f7, 0x0412 }, /* Cyrillic_VE В CYRILLIC CAPITAL LETTER VE */ + { 0x06e7, 0x0413 }, /* Cyrillic_GHE Г CYRILLIC CAPITAL LETTER GHE */ + { 0x06e4, 0x0414 }, /* Cyrillic_DE Д CYRILLIC CAPITAL LETTER DE */ + { 0x06e5, 0x0415 }, /* Cyrillic_IE Е CYRILLIC CAPITAL LETTER IE */ + { 0x06f6, 0x0416 }, /* Cyrillic_ZHE Ж CYRILLIC CAPITAL LETTER ZHE */ + { 0x06fa, 0x0417 }, /* Cyrillic_ZE З CYRILLIC CAPITAL LETTER ZE */ + { 0x06e9, 0x0418 }, /* Cyrillic_I И CYRILLIC CAPITAL LETTER I */ + { 0x06ea, 0x0419 }, /* Cyrillic_SHORTI Й CYRILLIC CAPITAL LETTER SHORT I */ + { 0x06eb, 0x041a }, /* Cyrillic_KA К CYRILLIC CAPITAL LETTER KA */ + { 0x06ec, 0x041b }, /* Cyrillic_EL Л CYRILLIC CAPITAL LETTER EL */ + { 0x06ed, 0x041c }, /* Cyrillic_EM М CYRILLIC CAPITAL LETTER EM */ + { 0x06ee, 0x041d }, /* Cyrillic_EN Н CYRILLIC CAPITAL LETTER EN */ + { 0x06ef, 0x041e }, /* Cyrillic_O О CYRILLIC CAPITAL LETTER O */ + { 0x06f0, 0x041f }, /* Cyrillic_PE П CYRILLIC CAPITAL LETTER PE */ + { 0x06f2, 0x0420 }, /* Cyrillic_ER Р CYRILLIC CAPITAL LETTER ER */ + { 0x06f3, 0x0421 }, /* Cyrillic_ES С CYRILLIC CAPITAL LETTER ES */ + { 0x06f4, 0x0422 }, /* Cyrillic_TE Т CYRILLIC CAPITAL LETTER TE */ + { 0x06f5, 0x0423 }, /* Cyrillic_U У CYRILLIC CAPITAL LETTER U */ + { 0x06e6, 0x0424 }, /* Cyrillic_EF Ф CYRILLIC CAPITAL LETTER EF */ + { 0x06e8, 0x0425 }, /* Cyrillic_HA Х CYRILLIC CAPITAL LETTER HA */ + { 0x06e3, 0x0426 }, /* Cyrillic_TSE Ц CYRILLIC CAPITAL LETTER TSE */ + { 0x06fe, 0x0427 }, /* Cyrillic_CHE Ч CYRILLIC CAPITAL LETTER CHE */ + { 0x06fb, 0x0428 }, /* Cyrillic_SHA Ш CYRILLIC CAPITAL LETTER SHA */ + { 0x06fd, 0x0429 }, /* Cyrillic_SHCHA Щ CYRILLIC CAPITAL LETTER SHCHA */ + { 0x06ff, 0x042a }, /* Cyrillic_HARDSIGN Ъ CYRILLIC CAPITAL LETTER HARD SIGN */ + { 0x06f9, 0x042b }, /* Cyrillic_YERU Ы CYRILLIC CAPITAL LETTER YERU */ + { 0x06f8, 0x042c }, /* Cyrillic_SOFTSIGN Ь CYRILLIC CAPITAL LETTER SOFT SIGN */ + { 0x06fc, 0x042d }, /* Cyrillic_E Э CYRILLIC CAPITAL LETTER E */ + { 0x06e0, 0x042e }, /* Cyrillic_YU Ю CYRILLIC CAPITAL LETTER YU */ + { 0x06f1, 0x042f }, /* Cyrillic_YA Я CYRILLIC CAPITAL LETTER YA */ + { 0x06c1, 0x0430 }, /* Cyrillic_a а CYRILLIC SMALL LETTER A */ + { 0x06c2, 0x0431 }, /* Cyrillic_be б CYRILLIC SMALL LETTER BE */ + { 0x06d7, 0x0432 }, /* Cyrillic_ve в CYRILLIC SMALL LETTER VE */ + { 0x06c7, 0x0433 }, /* Cyrillic_ghe г CYRILLIC SMALL LETTER GHE */ + { 0x06c4, 0x0434 }, /* Cyrillic_de д CYRILLIC SMALL LETTER DE */ + { 0x06c5, 0x0435 }, /* Cyrillic_ie е CYRILLIC SMALL LETTER IE */ + { 0x06d6, 0x0436 }, /* Cyrillic_zhe ж CYRILLIC SMALL LETTER ZHE */ + { 0x06da, 0x0437 }, /* Cyrillic_ze з CYRILLIC SMALL LETTER ZE */ + { 0x06c9, 0x0438 }, /* Cyrillic_i и CYRILLIC SMALL LETTER I */ + { 0x06ca, 0x0439 }, /* Cyrillic_shorti й CYRILLIC SMALL LETTER SHORT I */ + { 0x06cb, 0x043a }, /* Cyrillic_ka к CYRILLIC SMALL LETTER KA */ + { 0x06cc, 0x043b }, /* Cyrillic_el л CYRILLIC SMALL LETTER EL */ + { 0x06cd, 0x043c }, /* Cyrillic_em м CYRILLIC SMALL LETTER EM */ + { 0x06ce, 0x043d }, /* Cyrillic_en н CYRILLIC SMALL LETTER EN */ + { 0x06cf, 0x043e }, /* Cyrillic_o о CYRILLIC SMALL LETTER O */ + { 0x06d0, 0x043f }, /* Cyrillic_pe п CYRILLIC SMALL LETTER PE */ + { 0x06d2, 0x0440 }, /* Cyrillic_er р CYRILLIC SMALL LETTER ER */ + { 0x06d3, 0x0441 }, /* Cyrillic_es с CYRILLIC SMALL LETTER ES */ + { 0x06d4, 0x0442 }, /* Cyrillic_te т CYRILLIC SMALL LETTER TE */ + { 0x06d5, 0x0443 }, /* Cyrillic_u у CYRILLIC SMALL LETTER U */ + { 0x06c6, 0x0444 }, /* Cyrillic_ef ф CYRILLIC SMALL LETTER EF */ + { 0x06c8, 0x0445 }, /* Cyrillic_ha х CYRILLIC SMALL LETTER HA */ + { 0x06c3, 0x0446 }, /* Cyrillic_tse ц CYRILLIC SMALL LETTER TSE */ + { 0x06de, 0x0447 }, /* Cyrillic_che ч CYRILLIC SMALL LETTER CHE */ + { 0x06db, 0x0448 }, /* Cyrillic_sha ш CYRILLIC SMALL LETTER SHA */ + { 0x06dd, 0x0449 }, /* Cyrillic_shcha щ CYRILLIC SMALL LETTER SHCHA */ + { 0x06df, 0x044a }, /* Cyrillic_hardsign ъ CYRILLIC SMALL LETTER HARD SIGN */ + { 0x06d9, 0x044b }, /* Cyrillic_yeru ы CYRILLIC SMALL LETTER YERU */ + { 0x06d8, 0x044c }, /* Cyrillic_softsign ь CYRILLIC SMALL LETTER SOFT SIGN */ + { 0x06dc, 0x044d }, /* Cyrillic_e э CYRILLIC SMALL LETTER E */ + { 0x06c0, 0x044e }, /* Cyrillic_yu ю CYRILLIC SMALL LETTER YU */ + { 0x06d1, 0x044f }, /* Cyrillic_ya я CYRILLIC SMALL LETTER YA */ + { 0x06a3, 0x0451 }, /* Cyrillic_io ё CYRILLIC SMALL LETTER IO */ + { 0x06a1, 0x0452 }, /* Serbian_dje ђ CYRILLIC SMALL LETTER DJE */ + { 0x06a2, 0x0453 }, /* Macedonia_gje ѓ CYRILLIC SMALL LETTER GJE */ + { 0x06a4, 0x0454 }, /* Ukrainian_ie є CYRILLIC SMALL LETTER UKRAINIAN IE */ + { 0x06a5, 0x0455 }, /* Macedonia_dse ѕ CYRILLIC SMALL LETTER DZE */ + { 0x06a6, 0x0456 }, /* Ukrainian_i і CYRILLIC SMALL LETTER BYELORUSSIAN-UKRAINIAN I */ + { 0x06a7, 0x0457 }, /* Ukrainian_yi ї CYRILLIC SMALL LETTER YI */ + { 0x06a8, 0x0458 }, /* Cyrillic_je ј CYRILLIC SMALL LETTER JE */ + { 0x06a9, 0x0459 }, /* Cyrillic_lje љ CYRILLIC SMALL LETTER LJE */ + { 0x06aa, 0x045a }, /* Cyrillic_nje њ CYRILLIC SMALL LETTER NJE */ + { 0x06ab, 0x045b }, /* Serbian_tshe ћ CYRILLIC SMALL LETTER TSHE */ + { 0x06ac, 0x045c }, /* Macedonia_kje ќ CYRILLIC SMALL LETTER KJE */ + { 0x06ae, 0x045e }, /* Byelorussian_shortu ў CYRILLIC SMALL LETTER SHORT U */ + { 0x06af, 0x045f }, /* Cyrillic_dzhe џ CYRILLIC SMALL LETTER DZHE */ + { 0x0ce0, 0x05d0 }, /* hebrew_aleph א HEBREW LETTER ALEF */ + { 0x0ce1, 0x05d1 }, /* hebrew_bet ב HEBREW LETTER BET */ + { 0x0ce2, 0x05d2 }, /* hebrew_gimel ג HEBREW LETTER GIMEL */ + { 0x0ce3, 0x05d3 }, /* hebrew_dalet ד HEBREW LETTER DALET */ + { 0x0ce4, 0x05d4 }, /* hebrew_he ה HEBREW LETTER HE */ + { 0x0ce5, 0x05d5 }, /* hebrew_waw ו HEBREW LETTER VAV */ + { 0x0ce6, 0x05d6 }, /* hebrew_zain ז HEBREW LETTER ZAYIN */ + { 0x0ce7, 0x05d7 }, /* hebrew_chet ח HEBREW LETTER HET */ + { 0x0ce8, 0x05d8 }, /* hebrew_tet ט HEBREW LETTER TET */ + { 0x0ce9, 0x05d9 }, /* hebrew_yod י HEBREW LETTER YOD */ + { 0x0cea, 0x05da }, /* hebrew_finalkaph ך HEBREW LETTER FINAL KAF */ + { 0x0ceb, 0x05db }, /* hebrew_kaph כ HEBREW LETTER KAF */ + { 0x0cec, 0x05dc }, /* hebrew_lamed ל HEBREW LETTER LAMED */ + { 0x0ced, 0x05dd }, /* hebrew_finalmem ם HEBREW LETTER FINAL MEM */ + { 0x0cee, 0x05de }, /* hebrew_mem מ HEBREW LETTER MEM */ + { 0x0cef, 0x05df }, /* hebrew_finalnun ן HEBREW LETTER FINAL NUN */ + { 0x0cf0, 0x05e0 }, /* hebrew_nun נ HEBREW LETTER NUN */ + { 0x0cf1, 0x05e1 }, /* hebrew_samech ס HEBREW LETTER SAMEKH */ + { 0x0cf2, 0x05e2 }, /* hebrew_ayin ע HEBREW LETTER AYIN */ + { 0x0cf3, 0x05e3 }, /* hebrew_finalpe ף HEBREW LETTER FINAL PE */ + { 0x0cf4, 0x05e4 }, /* hebrew_pe פ HEBREW LETTER PE */ + { 0x0cf5, 0x05e5 }, /* hebrew_finalzade ץ HEBREW LETTER FINAL TSADI */ + { 0x0cf6, 0x05e6 }, /* hebrew_zade צ HEBREW LETTER TSADI */ + { 0x0cf7, 0x05e7 }, /* hebrew_qoph ק HEBREW LETTER QOF */ + { 0x0cf8, 0x05e8 }, /* hebrew_resh ר HEBREW LETTER RESH */ + { 0x0cf9, 0x05e9 }, /* hebrew_shin ש HEBREW LETTER SHIN */ + { 0x0cfa, 0x05ea }, /* hebrew_taw ת HEBREW LETTER TAV */ + { 0x05ac, 0x060c }, /* Arabic_comma ، ARABIC COMMA */ + { 0x05bb, 0x061b }, /* Arabic_semicolon ؛ ARABIC SEMICOLON */ + { 0x05bf, 0x061f }, /* Arabic_question_mark ؟ ARABIC QUESTION MARK */ + { 0x05c1, 0x0621 }, /* Arabic_hamza ء ARABIC LETTER HAMZA */ + { 0x05c2, 0x0622 }, /* Arabic_maddaonalef آ ARABIC LETTER ALEF WITH MADDA ABOVE */ + { 0x05c3, 0x0623 }, /* Arabic_hamzaonalef أ ARABIC LETTER ALEF WITH HAMZA ABOVE */ + { 0x05c4, 0x0624 }, /* Arabic_hamzaonwaw ؤ ARABIC LETTER WAW WITH HAMZA ABOVE */ + { 0x05c5, 0x0625 }, /* Arabic_hamzaunderalef إ ARABIC LETTER ALEF WITH HAMZA BELOW */ + { 0x05c6, 0x0626 }, /* Arabic_hamzaonyeh ئ ARABIC LETTER YEH WITH HAMZA ABOVE */ + { 0x05c7, 0x0627 }, /* Arabic_alef ا ARABIC LETTER ALEF */ + { 0x05c8, 0x0628 }, /* Arabic_beh ب ARABIC LETTER BEH */ + { 0x05c9, 0x0629 }, /* Arabic_tehmarbuta ة ARABIC LETTER TEH MARBUTA */ + { 0x05ca, 0x062a }, /* Arabic_teh ت ARABIC LETTER TEH */ + { 0x05cb, 0x062b }, /* Arabic_theh ث ARABIC LETTER THEH */ + { 0x05cc, 0x062c }, /* Arabic_jeem ج ARABIC LETTER JEEM */ + { 0x05cd, 0x062d }, /* Arabic_hah ح ARABIC LETTER HAH */ + { 0x05ce, 0x062e }, /* Arabic_khah خ ARABIC LETTER KHAH */ + { 0x05cf, 0x062f }, /* Arabic_dal د ARABIC LETTER DAL */ + { 0x05d0, 0x0630 }, /* Arabic_thal ذ ARABIC LETTER THAL */ + { 0x05d1, 0x0631 }, /* Arabic_ra ر ARABIC LETTER REH */ + { 0x05d2, 0x0632 }, /* Arabic_zain ز ARABIC LETTER ZAIN */ + { 0x05d3, 0x0633 }, /* Arabic_seen س ARABIC LETTER SEEN */ + { 0x05d4, 0x0634 }, /* Arabic_sheen ش ARABIC LETTER SHEEN */ + { 0x05d5, 0x0635 }, /* Arabic_sad ص ARABIC LETTER SAD */ + { 0x05d6, 0x0636 }, /* Arabic_dad ض ARABIC LETTER DAD */ + { 0x05d7, 0x0637 }, /* Arabic_tah ط ARABIC LETTER TAH */ + { 0x05d8, 0x0638 }, /* Arabic_zah ظ ARABIC LETTER ZAH */ + { 0x05d9, 0x0639 }, /* Arabic_ain ع ARABIC LETTER AIN */ + { 0x05da, 0x063a }, /* Arabic_ghain غ ARABIC LETTER GHAIN */ + { 0x05e0, 0x0640 }, /* Arabic_tatweel ـ ARABIC TATWEEL */ + { 0x05e1, 0x0641 }, /* Arabic_feh ف ARABIC LETTER FEH */ + { 0x05e2, 0x0642 }, /* Arabic_qaf ق ARABIC LETTER QAF */ + { 0x05e3, 0x0643 }, /* Arabic_kaf ك ARABIC LETTER KAF */ + { 0x05e4, 0x0644 }, /* Arabic_lam ل ARABIC LETTER LAM */ + { 0x05e5, 0x0645 }, /* Arabic_meem م ARABIC LETTER MEEM */ + { 0x05e6, 0x0646 }, /* Arabic_noon ن ARABIC LETTER NOON */ + { 0x05e7, 0x0647 }, /* Arabic_ha ه ARABIC LETTER HEH */ + { 0x05e8, 0x0648 }, /* Arabic_waw و ARABIC LETTER WAW */ + { 0x05e9, 0x0649 }, /* Arabic_alefmaksura ى ARABIC LETTER ALEF MAKSURA */ + { 0x05ea, 0x064a }, /* Arabic_yeh ي ARABIC LETTER YEH */ + { 0x05eb, 0x064b }, /* Arabic_fathatan ً ARABIC FATHATAN */ + { 0x05ec, 0x064c }, /* Arabic_dammatan ٌ ARABIC DAMMATAN */ + { 0x05ed, 0x064d }, /* Arabic_kasratan ٍ ARABIC KASRATAN */ + { 0x05ee, 0x064e }, /* Arabic_fatha َ ARABIC FATHA */ + { 0x05ef, 0x064f }, /* Arabic_damma ُ ARABIC DAMMA */ + { 0x05f0, 0x0650 }, /* Arabic_kasra ِ ARABIC KASRA */ + { 0x05f1, 0x0651 }, /* Arabic_shadda ّ ARABIC SHADDA */ + { 0x05f2, 0x0652 }, /* Arabic_sukun ْ ARABIC SUKUN */ + { 0x0da1, 0x0e01 }, /* Thai_kokai ก THAI CHARACTER KO KAI */ + { 0x0da2, 0x0e02 }, /* Thai_khokhai ข THAI CHARACTER KHO KHAI */ + { 0x0da3, 0x0e03 }, /* Thai_khokhuat ฃ THAI CHARACTER KHO KHUAT */ + { 0x0da4, 0x0e04 }, /* Thai_khokhwai ค THAI CHARACTER KHO KHWAI */ + { 0x0da5, 0x0e05 }, /* Thai_khokhon ฅ THAI CHARACTER KHO KHON */ + { 0x0da6, 0x0e06 }, /* Thai_khorakhang ฆ THAI CHARACTER KHO RAKHANG */ + { 0x0da7, 0x0e07 }, /* Thai_ngongu ง THAI CHARACTER NGO NGU */ + { 0x0da8, 0x0e08 }, /* Thai_chochan จ THAI CHARACTER CHO CHAN */ + { 0x0da9, 0x0e09 }, /* Thai_choching ฉ THAI CHARACTER CHO CHING */ + { 0x0daa, 0x0e0a }, /* Thai_chochang ช THAI CHARACTER CHO CHANG */ + { 0x0dab, 0x0e0b }, /* Thai_soso ซ THAI CHARACTER SO SO */ + { 0x0dac, 0x0e0c }, /* Thai_chochoe ฌ THAI CHARACTER CHO CHOE */ + { 0x0dad, 0x0e0d }, /* Thai_yoying ญ THAI CHARACTER YO YING */ + { 0x0dae, 0x0e0e }, /* Thai_dochada ฎ THAI CHARACTER DO CHADA */ + { 0x0daf, 0x0e0f }, /* Thai_topatak ฏ THAI CHARACTER TO PATAK */ + { 0x0db0, 0x0e10 }, /* Thai_thothan ฐ THAI CHARACTER THO THAN */ + { 0x0db1, 0x0e11 }, /* Thai_thonangmontho ฑ THAI CHARACTER THO NANGMONTHO */ + { 0x0db2, 0x0e12 }, /* Thai_thophuthao ฒ THAI CHARACTER THO PHUTHAO */ + { 0x0db3, 0x0e13 }, /* Thai_nonen ณ THAI CHARACTER NO NEN */ + { 0x0db4, 0x0e14 }, /* Thai_dodek ด THAI CHARACTER DO DEK */ + { 0x0db5, 0x0e15 }, /* Thai_totao ต THAI CHARACTER TO TAO */ + { 0x0db6, 0x0e16 }, /* Thai_thothung ถ THAI CHARACTER THO THUNG */ + { 0x0db7, 0x0e17 }, /* Thai_thothahan ท THAI CHARACTER THO THAHAN */ + { 0x0db8, 0x0e18 }, /* Thai_thothong ธ THAI CHARACTER THO THONG */ + { 0x0db9, 0x0e19 }, /* Thai_nonu น THAI CHARACTER NO NU */ + { 0x0dba, 0x0e1a }, /* Thai_bobaimai บ THAI CHARACTER BO BAIMAI */ + { 0x0dbb, 0x0e1b }, /* Thai_popla ป THAI CHARACTER PO PLA */ + { 0x0dbc, 0x0e1c }, /* Thai_phophung ผ THAI CHARACTER PHO PHUNG */ + { 0x0dbd, 0x0e1d }, /* Thai_fofa ฝ THAI CHARACTER FO FA */ + { 0x0dbe, 0x0e1e }, /* Thai_phophan พ THAI CHARACTER PHO PHAN */ + { 0x0dbf, 0x0e1f }, /* Thai_fofan ฟ THAI CHARACTER FO FAN */ + { 0x0dc0, 0x0e20 }, /* Thai_phosamphao ภ THAI CHARACTER PHO SAMPHAO */ + { 0x0dc1, 0x0e21 }, /* Thai_moma ม THAI CHARACTER MO MA */ + { 0x0dc2, 0x0e22 }, /* Thai_yoyak ย THAI CHARACTER YO YAK */ + { 0x0dc3, 0x0e23 }, /* Thai_rorua ร THAI CHARACTER RO RUA */ + { 0x0dc4, 0x0e24 }, /* Thai_ru ฤ THAI CHARACTER RU */ + { 0x0dc5, 0x0e25 }, /* Thai_loling ล THAI CHARACTER LO LING */ + { 0x0dc6, 0x0e26 }, /* Thai_lu ฦ THAI CHARACTER LU */ + { 0x0dc7, 0x0e27 }, /* Thai_wowaen ว THAI CHARACTER WO WAEN */ + { 0x0dc8, 0x0e28 }, /* Thai_sosala ศ THAI CHARACTER SO SALA */ + { 0x0dc9, 0x0e29 }, /* Thai_sorusi ษ THAI CHARACTER SO RUSI */ + { 0x0dca, 0x0e2a }, /* Thai_sosua ส THAI CHARACTER SO SUA */ + { 0x0dcb, 0x0e2b }, /* Thai_hohip ห THAI CHARACTER HO HIP */ + { 0x0dcc, 0x0e2c }, /* Thai_lochula ฬ THAI CHARACTER LO CHULA */ + { 0x0dcd, 0x0e2d }, /* Thai_oang อ THAI CHARACTER O ANG */ + { 0x0dce, 0x0e2e }, /* Thai_honokhuk ฮ THAI CHARACTER HO NOKHUK */ + { 0x0dcf, 0x0e2f }, /* Thai_paiyannoi ฯ THAI CHARACTER PAIYANNOI */ + { 0x0dd0, 0x0e30 }, /* Thai_saraa ะ THAI CHARACTER SARA A */ + { 0x0dd1, 0x0e31 }, /* Thai_maihanakat ั THAI CHARACTER MAI HAN-AKAT */ + { 0x0dd2, 0x0e32 }, /* Thai_saraaa า THAI CHARACTER SARA AA */ + { 0x0dd3, 0x0e33 }, /* Thai_saraam ำ THAI CHARACTER SARA AM */ + { 0x0dd4, 0x0e34 }, /* Thai_sarai ิ THAI CHARACTER SARA I */ + { 0x0dd5, 0x0e35 }, /* Thai_saraii ี THAI CHARACTER SARA II */ + { 0x0dd6, 0x0e36 }, /* Thai_saraue ึ THAI CHARACTER SARA UE */ + { 0x0dd7, 0x0e37 }, /* Thai_sarauee ื THAI CHARACTER SARA UEE */ + { 0x0dd8, 0x0e38 }, /* Thai_sarau ุ THAI CHARACTER SARA U */ + { 0x0dd9, 0x0e39 }, /* Thai_sarauu ู THAI CHARACTER SARA UU */ + { 0x0dda, 0x0e3a }, /* Thai_phinthu ฺ THAI CHARACTER PHINTHU */ + { 0x0ddf, 0x0e3f }, /* Thai_baht ฿ THAI CURRENCY SYMBOL BAHT */ + { 0x0de0, 0x0e40 }, /* Thai_sarae เ THAI CHARACTER SARA E */ + { 0x0de1, 0x0e41 }, /* Thai_saraae แ THAI CHARACTER SARA AE */ + { 0x0de2, 0x0e42 }, /* Thai_sarao โ THAI CHARACTER SARA O */ + { 0x0de3, 0x0e43 }, /* Thai_saraaimaimuan ใ THAI CHARACTER SARA AI MAIMUAN */ + { 0x0de4, 0x0e44 }, /* Thai_saraaimaimalai ไ THAI CHARACTER SARA AI MAIMALAI */ + { 0x0de5, 0x0e45 }, /* Thai_lakkhangyao ๅ THAI CHARACTER LAKKHANGYAO */ + { 0x0de6, 0x0e46 }, /* Thai_maiyamok ๆ THAI CHARACTER MAIYAMOK */ + { 0x0de7, 0x0e47 }, /* Thai_maitaikhu ็ THAI CHARACTER MAITAIKHU */ + { 0x0de8, 0x0e48 }, /* Thai_maiek ่ THAI CHARACTER MAI EK */ + { 0x0de9, 0x0e49 }, /* Thai_maitho ้ THAI CHARACTER MAI THO */ + { 0x0dea, 0x0e4a }, /* Thai_maitri ๊ THAI CHARACTER MAI TRI */ + { 0x0deb, 0x0e4b }, /* Thai_maichattawa ๋ THAI CHARACTER MAI CHATTAWA */ + { 0x0dec, 0x0e4c }, /* Thai_thanthakhat ์ THAI CHARACTER THANTHAKHAT */ + { 0x0ded, 0x0e4d }, /* Thai_nikhahit ํ THAI CHARACTER NIKHAHIT */ + { 0x0df0, 0x0e50 }, /* Thai_leksun ๐ THAI DIGIT ZERO */ + { 0x0df1, 0x0e51 }, /* Thai_leknung ๑ THAI DIGIT ONE */ + { 0x0df2, 0x0e52 }, /* Thai_leksong ๒ THAI DIGIT TWO */ + { 0x0df3, 0x0e53 }, /* Thai_leksam ๓ THAI DIGIT THREE */ + { 0x0df4, 0x0e54 }, /* Thai_leksi ๔ THAI DIGIT FOUR */ + { 0x0df5, 0x0e55 }, /* Thai_lekha ๕ THAI DIGIT FIVE */ + { 0x0df6, 0x0e56 }, /* Thai_lekhok ๖ THAI DIGIT SIX */ + { 0x0df7, 0x0e57 }, /* Thai_lekchet ๗ THAI DIGIT SEVEN */ + { 0x0df8, 0x0e58 }, /* Thai_lekpaet ๘ THAI DIGIT EIGHT */ + { 0x0df9, 0x0e59 }, /* Thai_lekkao ๙ THAI DIGIT NINE */ + { 0x0ed4, 0x11a8 }, /* Hangul_J_Kiyeog ᆨ HANGUL JONGSEONG KIYEOK */ + { 0x0ed5, 0x11a9 }, /* Hangul_J_SsangKiyeog ᆩ HANGUL JONGSEONG SSANGKIYEOK */ + { 0x0ed6, 0x11aa }, /* Hangul_J_KiyeogSios ᆪ HANGUL JONGSEONG KIYEOK-SIOS */ + { 0x0ed7, 0x11ab }, /* Hangul_J_Nieun ᆫ HANGUL JONGSEONG NIEUN */ + { 0x0ed8, 0x11ac }, /* Hangul_J_NieunJieuj ᆬ HANGUL JONGSEONG NIEUN-CIEUC */ + { 0x0ed9, 0x11ad }, /* Hangul_J_NieunHieuh ᆭ HANGUL JONGSEONG NIEUN-HIEUH */ + { 0x0eda, 0x11ae }, /* Hangul_J_Dikeud ᆮ HANGUL JONGSEONG TIKEUT */ + { 0x0edb, 0x11af }, /* Hangul_J_Rieul ᆯ HANGUL JONGSEONG RIEUL */ + { 0x0edc, 0x11b0 }, /* Hangul_J_RieulKiyeog ᆰ HANGUL JONGSEONG RIEUL-KIYEOK */ + { 0x0edd, 0x11b1 }, /* Hangul_J_RieulMieum ᆱ HANGUL JONGSEONG RIEUL-MIEUM */ + { 0x0ede, 0x11b2 }, /* Hangul_J_RieulPieub ᆲ HANGUL JONGSEONG RIEUL-PIEUP */ + { 0x0edf, 0x11b3 }, /* Hangul_J_RieulSios ᆳ HANGUL JONGSEONG RIEUL-SIOS */ + { 0x0ee0, 0x11b4 }, /* Hangul_J_RieulTieut ᆴ HANGUL JONGSEONG RIEUL-THIEUTH */ + { 0x0ee1, 0x11b5 }, /* Hangul_J_RieulPhieuf ᆵ HANGUL JONGSEONG RIEUL-PHIEUPH */ + { 0x0ee2, 0x11b6 }, /* Hangul_J_RieulHieuh ᆶ HANGUL JONGSEONG RIEUL-HIEUH */ + { 0x0ee3, 0x11b7 }, /* Hangul_J_Mieum ᆷ HANGUL JONGSEONG MIEUM */ + { 0x0ee4, 0x11b8 }, /* Hangul_J_Pieub ᆸ HANGUL JONGSEONG PIEUP */ + { 0x0ee5, 0x11b9 }, /* Hangul_J_PieubSios ᆹ HANGUL JONGSEONG PIEUP-SIOS */ + { 0x0ee6, 0x11ba }, /* Hangul_J_Sios ᆺ HANGUL JONGSEONG SIOS */ + { 0x0ee7, 0x11bb }, /* Hangul_J_SsangSios ᆻ HANGUL JONGSEONG SSANGSIOS */ + { 0x0ee8, 0x11bc }, /* Hangul_J_Ieung ᆼ HANGUL JONGSEONG IEUNG */ + { 0x0ee9, 0x11bd }, /* Hangul_J_Jieuj ᆽ HANGUL JONGSEONG CIEUC */ + { 0x0eea, 0x11be }, /* Hangul_J_Cieuc ᆾ HANGUL JONGSEONG CHIEUCH */ + { 0x0eeb, 0x11bf }, /* Hangul_J_Khieuq ᆿ HANGUL JONGSEONG KHIEUKH */ + { 0x0eec, 0x11c0 }, /* Hangul_J_Tieut ᇀ HANGUL JONGSEONG THIEUTH */ + { 0x0eed, 0x11c1 }, /* Hangul_J_Phieuf ᇁ HANGUL JONGSEONG PHIEUPH */ + { 0x0eee, 0x11c2 }, /* Hangul_J_Hieuh ᇂ HANGUL JONGSEONG HIEUH */ + { 0x0ef8, 0x11eb }, /* Hangul_J_PanSios ᇫ HANGUL JONGSEONG PANSIOS */ + { 0x0efa, 0x11f9 }, /* Hangul_J_YeorinHieuh ᇹ HANGUL JONGSEONG YEORINHIEUH */ + { 0x0aa2, 0x2002 }, /* enspace   EN SPACE */ + { 0x0aa1, 0x2003 }, /* emspace   EM SPACE */ + { 0x0aa3, 0x2004 }, /* em3space   THREE-PER-EM SPACE */ + { 0x0aa4, 0x2005 }, /* em4space   FOUR-PER-EM SPACE */ + { 0x0aa5, 0x2007 }, /* digitspace   FIGURE SPACE */ + { 0x0aa6, 0x2008 }, /* punctspace   PUNCTUATION SPACE */ + { 0x0aa7, 0x2009 }, /* thinspace   THIN SPACE */ + { 0x0aa8, 0x200a }, /* hairspace   HAIR SPACE */ + { 0x0abb, 0x2012 }, /* figdash ‒ FIGURE DASH */ + { 0x0aaa, 0x2013 }, /* endash – EN DASH */ + { 0x0aa9, 0x2014 }, /* emdash — EM DASH */ + { 0x07af, 0x2015 }, /* Greek_horizbar ― HORIZONTAL BAR */ + { 0x0cdf, 0x2017 }, /* hebrew_doublelowline ‗ DOUBLE LOW LINE */ + { 0x0ad0, 0x2018 }, /* leftsinglequotemark ‘ LEFT SINGLE QUOTATION MARK */ + { 0x0ad1, 0x2019 }, /* rightsinglequotemark ’ RIGHT SINGLE QUOTATION MARK */ + { 0x0afd, 0x201a }, /* singlelowquotemark ‚ SINGLE LOW-9 QUOTATION MARK */ + { 0x0ad2, 0x201c }, /* leftdoublequotemark “ LEFT DOUBLE QUOTATION MARK */ + { 0x0ad3, 0x201d }, /* rightdoublequotemark ” RIGHT DOUBLE QUOTATION MARK */ + { 0x0afe, 0x201e }, /* doublelowquotemark „ DOUBLE LOW-9 QUOTATION MARK */ + { 0x0af1, 0x2020 }, /* dagger † DAGGER */ + { 0x0af2, 0x2021 }, /* doubledagger ‡ DOUBLE DAGGER */ + { 0x0ae6, 0x2022 }, /* enfilledcircbullet • BULLET */ + { 0x0aae, 0x2026 }, /* ellipsis … HORIZONTAL ELLIPSIS */ + { 0x0ad6, 0x2032 }, /* minutes ′ PRIME */ + { 0x0ad7, 0x2033 }, /* seconds ″ DOUBLE PRIME */ + { 0x0afc, 0x2038 }, /* caret ‸ CARET */ + { 0x047e, 0x203e }, /* overline ‾ OVERLINE */ + { 0x20a0, 0x20a0 }, /* EcuSign ₠ EURO-CURRENCY SIGN */ + { 0x20a1, 0x20a1 }, /* ColonSign ₡ COLON SIGN */ + { 0x20a2, 0x20a2 }, /* CruzeiroSign ₢ CRUZEIRO SIGN */ + { 0x20a3, 0x20a3 }, /* FFrancSign ₣ FRENCH FRANC SIGN */ + { 0x20a4, 0x20a4 }, /* LiraSign ₤ LIRA SIGN */ + { 0x20a5, 0x20a5 }, /* MillSign ₥ MILL SIGN */ + { 0x20a6, 0x20a6 }, /* NairaSign ₦ NAIRA SIGN */ + { 0x20a7, 0x20a7 }, /* PesetaSign ₧ PESETA SIGN */ + { 0x20a8, 0x20a8 }, /* RupeeSign ₨ RUPEE SIGN */ + { 0x0eff, 0x20a9 }, /* Korean_Won ₩ WON SIGN */ + { 0x20a9, 0x20a9 }, /* WonSign ₩ WON SIGN */ + { 0x20aa, 0x20aa }, /* NewSheqelSign ₪ NEW SHEQEL SIGN */ + { 0x20ab, 0x20ab }, /* DongSign ₫ DONG SIGN */ + { 0x20ac, 0x20ac }, /* EuroSign € EURO SIGN */ + { 0x0ab8, 0x2105 }, /* careof ℅ CARE OF */ + { 0x06b0, 0x2116 }, /* numerosign № NUMERO SIGN */ + { 0x0afb, 0x2117 }, /* phonographcopyright ℗ SOUND RECORDING COPYRIGHT */ + { 0x0ad4, 0x211e }, /* prescription ℞ PRESCRIPTION TAKE */ + { 0x0ac9, 0x2122 }, /* trademark ™ TRADE MARK SIGN */ + { 0x0ab0, 0x2153 }, /* onethird ⅓ VULGAR FRACTION ONE THIRD */ + { 0x0ab1, 0x2154 }, /* twothirds ⅔ VULGAR FRACTION TWO THIRDS */ + { 0x0ab2, 0x2155 }, /* onefifth ⅕ VULGAR FRACTION ONE FIFTH */ + { 0x0ab3, 0x2156 }, /* twofifths ⅖ VULGAR FRACTION TWO FIFTHS */ + { 0x0ab4, 0x2157 }, /* threefifths ⅗ VULGAR FRACTION THREE FIFTHS */ + { 0x0ab5, 0x2158 }, /* fourfifths ⅘ VULGAR FRACTION FOUR FIFTHS */ + { 0x0ab6, 0x2159 }, /* onesixth ⅙ VULGAR FRACTION ONE SIXTH */ + { 0x0ab7, 0x215a }, /* fivesixths ⅚ VULGAR FRACTION FIVE SIXTHS */ + { 0x0ac3, 0x215b }, /* oneeighth ⅛ VULGAR FRACTION ONE EIGHTH */ + { 0x0ac4, 0x215c }, /* threeeighths ⅜ VULGAR FRACTION THREE EIGHTHS */ + { 0x0ac5, 0x215d }, /* fiveeighths ⅝ VULGAR FRACTION FIVE EIGHTHS */ + { 0x0ac6, 0x215e }, /* seveneighths ⅞ VULGAR FRACTION SEVEN EIGHTHS */ + { 0x08fb, 0x2190 }, /* leftarrow ← LEFTWARDS ARROW */ + { 0x08fc, 0x2191 }, /* uparrow ↑ UPWARDS ARROW */ + { 0x08fd, 0x2192 }, /* rightarrow → RIGHTWARDS ARROW */ + { 0x08fe, 0x2193 }, /* downarrow ↓ DOWNWARDS ARROW */ + { 0x08ce, 0x21d2 }, /* implies ⇒ RIGHTWARDS DOUBLE ARROW */ + { 0x08cd, 0x21d4 }, /* ifonlyif ⇔ LEFT RIGHT DOUBLE ARROW */ + { 0x08ef, 0x2202 }, /* partialderivative ∂ PARTIAL DIFFERENTIAL */ + { 0x08c5, 0x2207 }, /* nabla ∇ NABLA */ + { 0x0bca, 0x2218 }, /* jot ∘ RING OPERATOR */ + { 0x08d6, 0x221a }, /* radical √ SQUARE ROOT */ + { 0x08c1, 0x221d }, /* variation ∝ PROPORTIONAL TO */ + { 0x08c2, 0x221e }, /* infinity ∞ INFINITY */ + { 0x08de, 0x2227 }, /* logicaland ∧ LOGICAL AND */ + { 0x0ba9, 0x2227 }, /* upcaret ∧ LOGICAL AND */ + { 0x08df, 0x2228 }, /* logicalor ∨ LOGICAL OR */ + { 0x0ba8, 0x2228 }, /* downcaret ∨ LOGICAL OR */ + { 0x08dc, 0x2229 }, /* intersection ∩ INTERSECTION */ + { 0x0bc3, 0x2229 }, /* upshoe ∩ INTERSECTION */ + { 0x08dd, 0x222a }, /* union ∪ UNION */ + { 0x0bd6, 0x222a }, /* downshoe ∪ UNION */ + { 0x08bf, 0x222b }, /* integral ∫ INTEGRAL */ + { 0x08c0, 0x2234 }, /* therefore ∴ THEREFORE */ + { 0x08c8, 0x2245 }, /* approximate ≅ APPROXIMATELY EQUAL TO */ + { 0x08bd, 0x2260 }, /* notequal ≠ NOT EQUAL TO */ + { 0x08cf, 0x2261 }, /* identical ≡ IDENTICAL TO */ + { 0x08bc, 0x2264 }, /* lessthanequal ≤ LESS-THAN OR EQUAL TO */ + { 0x08be, 0x2265 }, /* greaterthanequal ≥ GREATER-THAN OR EQUAL TO */ + { 0x08da, 0x2282 }, /* includedin ⊂ SUBSET OF */ + { 0x0bda, 0x2282 }, /* leftshoe ⊂ SUBSET OF */ + { 0x08db, 0x2283 }, /* includes ⊃ SUPERSET OF */ + { 0x0bd8, 0x2283 }, /* rightshoe ⊃ SUPERSET OF */ + { 0x0bfc, 0x22a2 }, /* righttack ⊢ RIGHT TACK */ + { 0x0bdc, 0x22a3 }, /* lefttack ⊣ LEFT TACK */ + { 0x0bc2, 0x22a4 }, /* downtack ⊤ DOWN TACK */ + { 0x0bce, 0x22a5 }, /* uptack ⊥ UP TACK */ + { 0x0bd3, 0x2308 }, /* upstile ⌈ LEFT CEILING */ + { 0x0bc4, 0x230a }, /* downstile ⌊ LEFT FLOOR */ + { 0x0afa, 0x2315 }, /* telephonerecorder ⌕ TELEPHONE RECORDER */ + { 0x08a4, 0x2320 }, /* topintegral ⌠ TOP HALF INTEGRAL */ + { 0x08a5, 0x2321 }, /* botintegral ⌡ BOTTOM HALF INTEGRAL */ + { 0x0abc, 0x2329 }, /* leftanglebracket 〈 LEFT-POINTING ANGLE BRACKET */ + { 0x0abe, 0x232a }, /* rightanglebracket 〉 RIGHT-POINTING ANGLE BRACKET */ + { 0x0bcc, 0x2395 }, /* quad ⎕ APL FUNCTIONAL SYMBOL QUAD (Unicode 3.0) */ + { 0x09e2, 0x2409 }, /* ht ␉ SYMBOL FOR HORIZONTAL TABULATION */ + { 0x09e5, 0x240a }, /* lf ␊ SYMBOL FOR LINE FEED */ + { 0x09e9, 0x240b }, /* vt ␋ SYMBOL FOR VERTICAL TABULATION */ + { 0x09e3, 0x240c }, /* ff ␌ SYMBOL FOR FORM FEED */ + { 0x09e4, 0x240d }, /* cr ␍ SYMBOL FOR CARRIAGE RETURN */ + { 0x09df, 0x2422 }, /* blank ␢ BLANK SYMBOL */ + { 0x09e8, 0x2424 }, /* nl ␤ SYMBOL FOR NEWLINE */ + { 0x09f1, 0x2500 }, /* horizlinescan5 ─ BOX DRAWINGS LIGHT HORIZONTAL */ + { 0x08a6, 0x2502 }, /* vertconnector │ BOX DRAWINGS LIGHT VERTICAL */ + { 0x09f8, 0x2502 }, /* vertbar │ BOX DRAWINGS LIGHT VERTICAL */ + { 0x09ec, 0x250c }, /* upleftcorner ┌ BOX DRAWINGS LIGHT DOWN AND RIGHT */ + { 0x09eb, 0x2510 }, /* uprightcorner ┐ BOX DRAWINGS LIGHT DOWN AND LEFT */ + { 0x09ed, 0x2514 }, /* lowleftcorner └ BOX DRAWINGS LIGHT UP AND RIGHT */ + { 0x09ea, 0x2518 }, /* lowrightcorner ┘ BOX DRAWINGS LIGHT UP AND LEFT */ + { 0x09f4, 0x251c }, /* leftt ├ BOX DRAWINGS LIGHT VERTICAL AND RIGHT */ + { 0x09f5, 0x2524 }, /* rightt ┤ BOX DRAWINGS LIGHT VERTICAL AND LEFT */ + { 0x09f7, 0x252c }, /* topt ┬ BOX DRAWINGS LIGHT DOWN AND HORIZONTAL */ + { 0x09f6, 0x2534 }, /* bott ┴ BOX DRAWINGS LIGHT UP AND HORIZONTAL */ + { 0x09ee, 0x253c }, /* crossinglines ┼ BOX DRAWINGS LIGHT VERTICAL AND HORIZONTAL */ + { 0x09e1, 0x2592 }, /* checkerboard ▒ MEDIUM SHADE */ + { 0x0adf, 0x25a0 }, /* emfilledrect ■ BLACK SQUARE */ + { 0x0acf, 0x25a1 }, /* emopenrectangle □ WHITE SQUARE */ + { 0x0ae7, 0x25aa }, /* enfilledsqbullet ▪ BLACK SMALL SQUARE */ + { 0x0ae1, 0x25ab }, /* enopensquarebullet ▫ WHITE SMALL SQUARE */ + { 0x0adb, 0x25ac }, /* filledrectbullet ▬ BLACK RECTANGLE */ + { 0x0ae2, 0x25ad }, /* openrectbullet ▭ WHITE RECTANGLE */ + { 0x0ae8, 0x25b2 }, /* filledtribulletup ▲ BLACK UP-POINTING TRIANGLE */ + { 0x0ae3, 0x25b3 }, /* opentribulletup △ WHITE UP-POINTING TRIANGLE */ + { 0x0add, 0x25b6 }, /* filledrighttribullet ▶ BLACK RIGHT-POINTING TRIANGLE */ + { 0x0acd, 0x25b7 }, /* rightopentriangle ▷ WHITE RIGHT-POINTING TRIANGLE */ + { 0x0ae9, 0x25bc }, /* filledtribulletdown ▼ BLACK DOWN-POINTING TRIANGLE */ + { 0x0ae4, 0x25bd }, /* opentribulletdown ▽ WHITE DOWN-POINTING TRIANGLE */ + { 0x0adc, 0x25c0 }, /* filledlefttribullet ◀ BLACK LEFT-POINTING TRIANGLE */ + { 0x0acc, 0x25c1 }, /* leftopentriangle ◁ WHITE LEFT-POINTING TRIANGLE */ + { 0x09e0, 0x25c6 }, /* soliddiamond ◆ BLACK DIAMOND */ + { 0x0ace, 0x25cb }, /* emopencircle ○ WHITE CIRCLE */ + { 0x0bcf, 0x25cb }, /* circle ○ WHITE CIRCLE */ + { 0x0ade, 0x25cf }, /* emfilledcircle ● BLACK CIRCLE */ + { 0x0ae0, 0x25e6 }, /* enopencircbullet ◦ WHITE BULLET */ + { 0x0ae5, 0x2606 }, /* openstar ☆ WHITE STAR */ + { 0x0af9, 0x260e }, /* telephone ☎ BLACK TELEPHONE */ + { 0x0aca, 0x2613 }, /* signaturemark ☓ SALTIRE */ + { 0x0aea, 0x261c }, /* leftpointer ☜ WHITE LEFT POINTING INDEX */ + { 0x0aeb, 0x261e }, /* rightpointer ☞ WHITE RIGHT POINTING INDEX */ + { 0x0af8, 0x2640 }, /* femalesymbol ♀ FEMALE SIGN */ + { 0x0af7, 0x2642 }, /* malesymbol ♂ MALE SIGN */ + { 0x0aec, 0x2663 }, /* club ♣ BLACK CLUB SUIT */ + { 0x0aee, 0x2665 }, /* heart ♥ BLACK HEART SUIT */ + { 0x0aed, 0x2666 }, /* diamond ♦ BLACK DIAMOND SUIT */ + { 0x0af6, 0x266d }, /* musicalflat ♭ MUSIC FLAT SIGN */ + { 0x0af5, 0x266f }, /* musicalsharp ♯ MUSIC SHARP SIGN */ + { 0x0af3, 0x2713 }, /* checkmark ✓ CHECK MARK */ + { 0x0af4, 0x2717 }, /* ballotcross ✗ BALLOT X */ + { 0x0ad9, 0x271d }, /* latincross ✝ LATIN CROSS */ + { 0x0af0, 0x2720 }, /* maltesecross ✠ MALTESE CROSS */ + { 0x04a4, 0x3001 }, /* kana_comma 、 IDEOGRAPHIC COMMA */ + { 0x04a1, 0x3002 }, /* kana_fullstop 。 IDEOGRAPHIC FULL STOP */ + { 0x04a2, 0x300c }, /* kana_openingbracket 「 LEFT CORNER BRACKET */ + { 0x04a3, 0x300d }, /* kana_closingbracket 」 RIGHT CORNER BRACKET */ + { 0x04de, 0x309b }, /* voicedsound ゛ KATAKANA-HIRAGANA VOICED SOUND MARK */ + { 0x04df, 0x309c }, /* semivoicedsound ゜ KATAKANA-HIRAGANA SEMI-VOICED SOUND MARK */ + { 0x04a7, 0x30a1 }, /* kana_a ァ KATAKANA LETTER SMALL A */ + { 0x04b1, 0x30a2 }, /* kana_A ア KATAKANA LETTER A */ + { 0x04a8, 0x30a3 }, /* kana_i ィ KATAKANA LETTER SMALL I */ + { 0x04b2, 0x30a4 }, /* kana_I イ KATAKANA LETTER I */ + { 0x04a9, 0x30a5 }, /* kana_u ゥ KATAKANA LETTER SMALL U */ + { 0x04b3, 0x30a6 }, /* kana_U ウ KATAKANA LETTER U */ + { 0x04aa, 0x30a7 }, /* kana_e ェ KATAKANA LETTER SMALL E */ + { 0x04b4, 0x30a8 }, /* kana_E エ KATAKANA LETTER E */ + { 0x04ab, 0x30a9 }, /* kana_o ォ KATAKANA LETTER SMALL O */ + { 0x04b5, 0x30aa }, /* kana_O オ KATAKANA LETTER O */ + { 0x04b6, 0x30ab }, /* kana_KA カ KATAKANA LETTER KA */ + { 0x04b7, 0x30ad }, /* kana_KI キ KATAKANA LETTER KI */ + { 0x04b8, 0x30af }, /* kana_KU ク KATAKANA LETTER KU */ + { 0x04b9, 0x30b1 }, /* kana_KE ケ KATAKANA LETTER KE */ + { 0x04ba, 0x30b3 }, /* kana_KO コ KATAKANA LETTER KO */ + { 0x04bb, 0x30b5 }, /* kana_SA サ KATAKANA LETTER SA */ + { 0x04bc, 0x30b7 }, /* kana_SHI シ KATAKANA LETTER SI */ + { 0x04bd, 0x30b9 }, /* kana_SU ス KATAKANA LETTER SU */ + { 0x04be, 0x30bb }, /* kana_SE セ KATAKANA LETTER SE */ + { 0x04bf, 0x30bd }, /* kana_SO ソ KATAKANA LETTER SO */ + { 0x04c0, 0x30bf }, /* kana_TA タ KATAKANA LETTER TA */ + { 0x04c1, 0x30c1 }, /* kana_CHI チ KATAKANA LETTER TI */ + { 0x04af, 0x30c3 }, /* kana_tsu ッ KATAKANA LETTER SMALL TU */ + { 0x04c2, 0x30c4 }, /* kana_TSU ツ KATAKANA LETTER TU */ + { 0x04c3, 0x30c6 }, /* kana_TE テ KATAKANA LETTER TE */ + { 0x04c4, 0x30c8 }, /* kana_TO ト KATAKANA LETTER TO */ + { 0x04c5, 0x30ca }, /* kana_NA ナ KATAKANA LETTER NA */ + { 0x04c6, 0x30cb }, /* kana_NI ニ KATAKANA LETTER NI */ + { 0x04c7, 0x30cc }, /* kana_NU ヌ KATAKANA LETTER NU */ + { 0x04c8, 0x30cd }, /* kana_NE ネ KATAKANA LETTER NE */ + { 0x04c9, 0x30ce }, /* kana_NO ノ KATAKANA LETTER NO */ + { 0x04ca, 0x30cf }, /* kana_HA ハ KATAKANA LETTER HA */ + { 0x04cb, 0x30d2 }, /* kana_HI ヒ KATAKANA LETTER HI */ + { 0x04cc, 0x30d5 }, /* kana_FU フ KATAKANA LETTER HU */ + { 0x04cd, 0x30d8 }, /* kana_HE ヘ KATAKANA LETTER HE */ + { 0x04ce, 0x30db }, /* kana_HO ホ KATAKANA LETTER HO */ + { 0x04cf, 0x30de }, /* kana_MA マ KATAKANA LETTER MA */ + { 0x04d0, 0x30df }, /* kana_MI ミ KATAKANA LETTER MI */ + { 0x04d1, 0x30e0 }, /* kana_MU ム KATAKANA LETTER MU */ + { 0x04d2, 0x30e1 }, /* kana_ME メ KATAKANA LETTER ME */ + { 0x04d3, 0x30e2 }, /* kana_MO モ KATAKANA LETTER MO */ + { 0x04ac, 0x30e3 }, /* kana_ya ャ KATAKANA LETTER SMALL YA */ + { 0x04d4, 0x30e4 }, /* kana_YA ヤ KATAKANA LETTER YA */ + { 0x04ad, 0x30e5 }, /* kana_yu ュ KATAKANA LETTER SMALL YU */ + { 0x04d5, 0x30e6 }, /* kana_YU ユ KATAKANA LETTER YU */ + { 0x04ae, 0x30e7 }, /* kana_yo ョ KATAKANA LETTER SMALL YO */ + { 0x04d6, 0x30e8 }, /* kana_YO ヨ KATAKANA LETTER YO */ + { 0x04d7, 0x30e9 }, /* kana_RA ラ KATAKANA LETTER RA */ + { 0x04d8, 0x30ea }, /* kana_RI リ KATAKANA LETTER RI */ + { 0x04d9, 0x30eb }, /* kana_RU ル KATAKANA LETTER RU */ + { 0x04da, 0x30ec }, /* kana_RE レ KATAKANA LETTER RE */ + { 0x04db, 0x30ed }, /* kana_RO ロ KATAKANA LETTER RO */ + { 0x04dc, 0x30ef }, /* kana_WA ワ KATAKANA LETTER WA */ + { 0x04a6, 0x30f2 }, /* kana_WO ヲ KATAKANA LETTER WO */ + { 0x04dd, 0x30f3 }, /* kana_N ン KATAKANA LETTER N */ + { 0x04a5, 0x30fb }, /* kana_conjunctive ・ KATAKANA MIDDLE DOT */ + { 0x04b0, 0x30fc }, /* prolongedsound ー KATAKANA-HIRAGANA PROLONGED SOUND MARK */ + { 0x0ea1, 0x3131 }, /* Hangul_Kiyeog ㄱ HANGUL LETTER KIYEOK */ + { 0x0ea2, 0x3132 }, /* Hangul_SsangKiyeog ㄲ HANGUL LETTER SSANGKIYEOK */ + { 0x0ea3, 0x3133 }, /* Hangul_KiyeogSios ㄳ HANGUL LETTER KIYEOK-SIOS */ + { 0x0ea4, 0x3134 }, /* Hangul_Nieun ㄴ HANGUL LETTER NIEUN */ + { 0x0ea5, 0x3135 }, /* Hangul_NieunJieuj ㄵ HANGUL LETTER NIEUN-CIEUC */ + { 0x0ea6, 0x3136 }, /* Hangul_NieunHieuh ㄶ HANGUL LETTER NIEUN-HIEUH */ + { 0x0ea7, 0x3137 }, /* Hangul_Dikeud ㄷ HANGUL LETTER TIKEUT */ + { 0x0ea8, 0x3138 }, /* Hangul_SsangDikeud ㄸ HANGUL LETTER SSANGTIKEUT */ + { 0x0ea9, 0x3139 }, /* Hangul_Rieul ㄹ HANGUL LETTER RIEUL */ + { 0x0eaa, 0x313a }, /* Hangul_RieulKiyeog ㄺ HANGUL LETTER RIEUL-KIYEOK */ + { 0x0eab, 0x313b }, /* Hangul_RieulMieum ㄻ HANGUL LETTER RIEUL-MIEUM */ + { 0x0eac, 0x313c }, /* Hangul_RieulPieub ㄼ HANGUL LETTER RIEUL-PIEUP */ + { 0x0ead, 0x313d }, /* Hangul_RieulSios ㄽ HANGUL LETTER RIEUL-SIOS */ + { 0x0eae, 0x313e }, /* Hangul_RieulTieut ㄾ HANGUL LETTER RIEUL-THIEUTH */ + { 0x0eaf, 0x313f }, /* Hangul_RieulPhieuf ㄿ HANGUL LETTER RIEUL-PHIEUPH */ + { 0x0eb0, 0x3140 }, /* Hangul_RieulHieuh ㅀ HANGUL LETTER RIEUL-HIEUH */ + { 0x0eb1, 0x3141 }, /* Hangul_Mieum ㅁ HANGUL LETTER MIEUM */ + { 0x0eb2, 0x3142 }, /* Hangul_Pieub ㅂ HANGUL LETTER PIEUP */ + { 0x0eb3, 0x3143 }, /* Hangul_SsangPieub ㅃ HANGUL LETTER SSANGPIEUP */ + { 0x0eb4, 0x3144 }, /* Hangul_PieubSios ㅄ HANGUL LETTER PIEUP-SIOS */ + { 0x0eb5, 0x3145 }, /* Hangul_Sios ㅅ HANGUL LETTER SIOS */ + { 0x0eb6, 0x3146 }, /* Hangul_SsangSios ㅆ HANGUL LETTER SSANGSIOS */ + { 0x0eb7, 0x3147 }, /* Hangul_Ieung ㅇ HANGUL LETTER IEUNG */ + { 0x0eb8, 0x3148 }, /* Hangul_Jieuj ㅈ HANGUL LETTER CIEUC */ + { 0x0eb9, 0x3149 }, /* Hangul_SsangJieuj ㅉ HANGUL LETTER SSANGCIEUC */ + { 0x0eba, 0x314a }, /* Hangul_Cieuc ㅊ HANGUL LETTER CHIEUCH */ + { 0x0ebb, 0x314b }, /* Hangul_Khieuq ㅋ HANGUL LETTER KHIEUKH */ + { 0x0ebc, 0x314c }, /* Hangul_Tieut ㅌ HANGUL LETTER THIEUTH */ + { 0x0ebd, 0x314d }, /* Hangul_Phieuf ㅍ HANGUL LETTER PHIEUPH */ + { 0x0ebe, 0x314e }, /* Hangul_Hieuh ㅎ HANGUL LETTER HIEUH */ + { 0x0ebf, 0x314f }, /* Hangul_A ㅏ HANGUL LETTER A */ + { 0x0ec0, 0x3150 }, /* Hangul_AE ㅐ HANGUL LETTER AE */ + { 0x0ec1, 0x3151 }, /* Hangul_YA ㅑ HANGUL LETTER YA */ + { 0x0ec2, 0x3152 }, /* Hangul_YAE ㅒ HANGUL LETTER YAE */ + { 0x0ec3, 0x3153 }, /* Hangul_EO ㅓ HANGUL LETTER EO */ + { 0x0ec4, 0x3154 }, /* Hangul_E ㅔ HANGUL LETTER E */ + { 0x0ec5, 0x3155 }, /* Hangul_YEO ㅕ HANGUL LETTER YEO */ + { 0x0ec6, 0x3156 }, /* Hangul_YE ㅖ HANGUL LETTER YE */ + { 0x0ec7, 0x3157 }, /* Hangul_O ㅗ HANGUL LETTER O */ + { 0x0ec8, 0x3158 }, /* Hangul_WA ㅘ HANGUL LETTER WA */ + { 0x0ec9, 0x3159 }, /* Hangul_WAE ㅙ HANGUL LETTER WAE */ + { 0x0eca, 0x315a }, /* Hangul_OE ㅚ HANGUL LETTER OE */ + { 0x0ecb, 0x315b }, /* Hangul_YO ㅛ HANGUL LETTER YO */ + { 0x0ecc, 0x315c }, /* Hangul_U ㅜ HANGUL LETTER U */ + { 0x0ecd, 0x315d }, /* Hangul_WEO ㅝ HANGUL LETTER WEO */ + { 0x0ece, 0x315e }, /* Hangul_WE ㅞ HANGUL LETTER WE */ + { 0x0ecf, 0x315f }, /* Hangul_WI ㅟ HANGUL LETTER WI */ + { 0x0ed0, 0x3160 }, /* Hangul_YU ㅠ HANGUL LETTER YU */ + { 0x0ed1, 0x3161 }, /* Hangul_EU ㅡ HANGUL LETTER EU */ + { 0x0ed2, 0x3162 }, /* Hangul_YI ㅢ HANGUL LETTER YI */ + { 0x0ed3, 0x3163 }, /* Hangul_I ㅣ HANGUL LETTER I */ + { 0x0eef, 0x316d }, /* Hangul_RieulYeorinHieuh ㅭ HANGUL LETTER RIEUL-YEORINHIEUH */ + { 0x0ef0, 0x3171 }, /* Hangul_SunkyeongeumMieum ㅱ HANGUL LETTER KAPYEOUNMIEUM */ + { 0x0ef1, 0x3178 }, /* Hangul_SunkyeongeumPieub ㅸ HANGUL LETTER KAPYEOUNPIEUP */ + { 0x0ef2, 0x317f }, /* Hangul_PanSios ㅿ HANGUL LETTER PANSIOS */ + { 0x0ef4, 0x3184 }, /* Hangul_SunkyeongeumPhieuf ㆄ HANGUL LETTER KAPYEOUNPHIEUPH */ + { 0x0ef5, 0x3186 }, /* Hangul_YeorinHieuh ㆆ HANGUL LETTER YEORINHIEUH */ + { 0x0ef6, 0x318d }, /* Hangul_AraeA ㆍ HANGUL LETTER ARAEA */ + { 0x0ef7, 0x318e }, /* Hangul_AraeAE ㆎ HANGUL LETTER ARAEAE */ +}; + +/** + * fcitx_unicode_to_keyval: + * @wc: a ISO10646 encoded character + * + * Convert from a ISO10646 character to a key symbol. + * + * Return value: the corresponding GDK key symbol, if one exists. + * or, if there is no corresponding symbol, + * wc | 0x01000000 + **/ +uint +fcitx_unicode_to_keyval (quint32 wc) +{ + int min = 0; + int max = sizeof (fcitx_unicode_to_keysym_tab) / sizeof (fcitx_unicode_to_keysym_tab[0]) - 1; + int mid; + + /* First check for Latin-1 characters (1:1 mapping) */ + if ((wc >= 0x0020 && wc <= 0x007e) || + (wc >= 0x00a0 && wc <= 0x00ff)) + return wc; + + /* Binary search in table */ + while (max >= min) { + mid = (min + max) / 2; + if (fcitx_unicode_to_keysym_tab[mid].ucs < wc) + min = mid + 1; + else if (fcitx_unicode_to_keysym_tab[mid].ucs > wc) + max = mid - 1; + else { + /* found it */ + return fcitx_unicode_to_keysym_tab[mid].keysym; + } + } + + /* + * No matching keysym value found, return Unicode value plus 0x01000000 + * (a convention introduced in the UTF-8 work on xterm). + */ + return wc | 0x01000000; +} +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/frontend/qt/fcitx-plugin.cpp fcitx-4.1.1/src/frontend/qt/fcitx-plugin.cpp --- fcitx-4.0.1/src/frontend/qt/fcitx-plugin.cpp 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/frontend/qt/fcitx-plugin.cpp 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,103 @@ +#include +#include +#include "fcitx-input-context.h" + +/* The class Definition */ +class FcitxPlugin: public QInputContextPlugin +{ + +private: + /** + * The language list for Fcitx. + */ + static QStringList fcitx_languages; + +public: + + FcitxPlugin (QObject *parent = 0); + + ~FcitxPlugin (); + + QStringList keys () const; + + QStringList languages (const QString &key); + + QString description (const QString &key); + + QInputContext *create (const QString &key); + + QString displayName (const QString &key); + +private: +}; + + +/* Implementations */ +QStringList FcitxPlugin::fcitx_languages; + + +FcitxPlugin::FcitxPlugin (QObject *parent) + :QInputContextPlugin (parent) +{ +} + + +FcitxPlugin::~FcitxPlugin () +{ +} + +QStringList +FcitxPlugin::keys () const +{ + QStringList identifiers; + identifiers.push_back (FCITX_IDENTIFIER_NAME); + return identifiers; +} + + +QStringList +FcitxPlugin::languages (const QString & key) +{ + if (key.toLower () != FCITX_IDENTIFIER_NAME) { + return QStringList (); + } + + if (fcitx_languages.empty ()) { + fcitx_languages.push_back ("zh"); + fcitx_languages.push_back ("ja"); + fcitx_languages.push_back ("ko"); + } + return fcitx_languages; +} + + +QString +FcitxPlugin::description (const QString &key) +{ + if (key.toLower () != FCITX_IDENTIFIER_NAME) { + return QString (""); + } + + return QString::fromUtf8 ("Qt immodule plugin for Fcitx"); +} + + +QInputContext * +FcitxPlugin::create (const QString &key) +{ + if (key.toLower () != FCITX_IDENTIFIER_NAME) { + return NULL; + } + + return static_cast (new QFcitxInputContext ()); +} + + +QString FcitxPlugin::displayName (const QString &key) +{ + return key; +} + +Q_EXPORT_PLUGIN2 (FcitxPlugin, FcitxPlugin) + +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/frontend/qt/keyserver_x11.h fcitx-4.1.1/src/frontend/qt/keyserver_x11.h --- fcitx-4.0.1/src/frontend/qt/keyserver_x11.h 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/frontend/qt/keyserver_x11.h 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,141 @@ +/* + Copyright (C) 2001 Ellis Whitehead + + Win32 port: + Copyright (C) 2004 Jaroslaw Staniek + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General Public + License as published by the Free Software Foundation; either + version 2 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Library General Public License for more details. + + You should have received a copy of the GNU Library General Public License + along with this library; see the file COPYING.LIB. If not, write to + the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, + Boston, MA 02110-1301, USA. + */ + +#ifndef KEYSERVER_X11_H +#define KEYSERVER_X11_H + +#include "fcitx-config/hotkey.h" + +struct TransKey { + int keySymQt; + FcitxKeySym keySymX; +}; + +static const TransKey g_rgQtToSymX[] = +{ + { Qt::Key_Escape, Key_Escape }, + { Qt::Key_Tab, Key_Tab }, + { Qt::Key_Backtab, Key_ISO_Left_Tab }, + { Qt::Key_Backspace, Key_BackSpace }, + { Qt::Key_Return, Key_Return }, + { Qt::Key_Enter, Key_KP_Enter }, + { Qt::Key_Insert, Key_Insert }, + { Qt::Key_Delete, Key_Delete }, + { Qt::Key_Pause, Key_Pause }, +#ifdef sun + { Qt::Key_Print, Key_F22 }, +#else + { Qt::Key_Print, Key_Print }, +#endif + { Qt::Key_SysReq, Key_Sys_Req }, + { Qt::Key_Home, Key_Home }, + { Qt::Key_End, Key_End }, + { Qt::Key_Left, Key_Left }, + { Qt::Key_Up, Key_Up }, + { Qt::Key_Right, Key_Right }, + { Qt::Key_Down, Key_Down }, + //{ Qt::Key_Shift, 0 }, + //{ Qt::Key_Control, 0 }, + //{ Qt::Key_Meta, 0 }, + //{ Qt::Key_Alt, 0 }, + { Qt::Key_CapsLock, Key_Caps_Lock }, + { Qt::Key_NumLock, Key_Num_Lock }, + { Qt::Key_ScrollLock, Key_Scroll_Lock }, + { Qt::Key_F1, Key_F1 }, + { Qt::Key_F2, Key_F2 }, + { Qt::Key_F3, Key_F3 }, + { Qt::Key_F4, Key_F4 }, + { Qt::Key_F5, Key_F5 }, + { Qt::Key_F6, Key_F6 }, + { Qt::Key_F7, Key_F7 }, + { Qt::Key_F8, Key_F8 }, + { Qt::Key_F9, Key_F9 }, + { Qt::Key_F10, Key_F10 }, + { Qt::Key_F11, Key_F11 }, + { Qt::Key_F12, Key_F12 }, + { Qt::Key_F13, Key_F13 }, + { Qt::Key_F14, Key_F14 }, + { Qt::Key_F15, Key_F15 }, + { Qt::Key_F16, Key_F16 }, + { Qt::Key_F17, Key_F17 }, + { Qt::Key_F18, Key_F18 }, + { Qt::Key_F19, Key_F19 }, + { Qt::Key_F20, Key_F20 }, + { Qt::Key_F21, Key_F21 }, + { Qt::Key_F22, Key_F22 }, + { Qt::Key_F23, Key_F23 }, + { Qt::Key_F24, Key_F24 }, + { Qt::Key_F25, Key_F25 }, + { Qt::Key_F26, Key_F26 }, + { Qt::Key_F27, Key_F27 }, + { Qt::Key_F28, Key_F28 }, + { Qt::Key_F29, Key_F29 }, + { Qt::Key_F30, Key_F30 }, + { Qt::Key_F31, Key_F31 }, + { Qt::Key_F32, Key_F32 }, + { Qt::Key_F33, Key_F33 }, + { Qt::Key_F34, Key_F34 }, + { Qt::Key_F35, Key_F35 }, + { Qt::Key_Super_L, Key_Super_L }, + { Qt::Key_Super_R, Key_Super_R }, + { Qt::Key_Menu, Key_Menu }, + { Qt::Key_Hyper_L, Key_Hyper_L }, + { Qt::Key_Hyper_R, Key_Hyper_R }, + { Qt::Key_Help, Key_Help }, + + { '/', Key_KP_Divide }, + { '*', Key_KP_Multiply }, + { '-', Key_KP_Subtract }, + { '+', Key_KP_Add }, + { Qt::Key_Return, Key_KP_Enter } +}; + +#include + +inline int map_sym_to_qt(uint keySym) +{ + if( keySym < 0x1000 ) { + if( keySym >= 'a' && keySym <= 'z' ) + return QChar(keySym).toUpper().unicode(); + return keySym; + } +#ifdef Q_WS_WIN + if( keySym < 0x3000 ) + return keySym; +#else + if( keySym < 0x3000 ) + return keySym | Qt::UNICODE_ACCEL; + + for( uint i = 0; i < sizeof(g_rgQtToSymX)/sizeof(TransKey); i++ ) + if( g_rgQtToSymX[i].keySymX == keySym ) + return g_rgQtToSymX[i].keySymQt; +#endif + return Qt::Key_unknown; +} + +static bool symToKeyQt( uint keySym, int& keyQt ) +{ + keyQt = map_sym_to_qt(keySym); + return (keyQt != Qt::Key_unknown); +} + +#endif diff -Nru fcitx-4.0.1/src/frontend/qt/org.fcitx.Fcitx.InputContext.xml fcitx-4.1.1/src/frontend/qt/org.fcitx.Fcitx.InputContext.xml --- fcitx-4.0.1/src/frontend/qt/org.fcitx.Fcitx.InputContext.xml 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/frontend/qt/org.fcitx.Fcitx.InputContext.xml 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff -Nru fcitx-4.0.1/src/frontend/qt/org.fcitx.Fcitx.InputMethod.xml fcitx-4.1.1/src/frontend/qt/org.fcitx.Fcitx.InputMethod.xml --- fcitx-4.0.1/src/frontend/qt/org.fcitx.Fcitx.InputMethod.xml 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/frontend/qt/org.fcitx.Fcitx.InputMethod.xml 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,13 @@ + + + + + + + + + + + + \ No newline at end of file diff -Nru fcitx-4.0.1/src/frontend/qt/org.freedesktop.DBus.xml fcitx-4.1.1/src/frontend/qt/org.freedesktop.DBus.xml --- fcitx-4.0.1/src/frontend/qt/org.freedesktop.DBus.xml 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/frontend/qt/org.freedesktop.DBus.xml 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff -Nru fcitx-4.0.1/src/frontend/xim/CMakeLists.txt fcitx-4.1.1/src/frontend/xim/CMakeLists.txt --- fcitx-4.0.1/src/frontend/xim/CMakeLists.txt 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/frontend/xim/CMakeLists.txt 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,32 @@ +include_directories(${PROJECT_SOURCE_DIR}/src) +include_directories(${PROJECT_SOURCE_DIR}/src/frontend/xim/lib) +include_directories(${X11_X11_INCLUDE_PATH}) + +set(fcitx_xim_SOURCES + IC.c + xim.c + ximhandler.c + ximconfig.c +) + +set(Ximd_SOURCES + lib/FrameMgr.c + lib/i18nAttr.c + lib/i18nClbk.c + lib/i18nIc.c + lib/i18nIMProto.c + lib/i18nMethod.c + lib/i18nPtHdr.c + lib/i18nUtil.c + lib/i18nX.c + lib/IMConn.c + lib/IMMethod.c + lib/IMValues.c +) + + +fcitx_add_addon(fcitx-xim ${fcitx_xim_SOURCES} ${Ximd_SOURCES}) +target_link_libraries( fcitx-xim ${X11_LIBRARIES}) + +fcitx_add_addon_conf_file(fcitx-xim.conf) +fcitx_add_configdesc_file(fcitx-xim.desc) diff -Nru fcitx-4.0.1/src/frontend/xim/fcitx-xim.conf.in fcitx-4.1.1/src/frontend/xim/fcitx-xim.conf.in --- fcitx-4.0.1/src/frontend/xim/fcitx-xim.conf.in 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/frontend/xim/fcitx-xim.conf.in 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,9 @@ +[Addon] +Name=fcitx-xim +_GeneralName=Fcitx XIM Frontend +_Comment=Provides XIM support +Category=Frontend +Enabled=True +Library=fcitx-xim.so +Type=SharedLibrary +Dependency=fcitx-x11 \ No newline at end of file diff -Nru fcitx-4.0.1/src/frontend/xim/fcitx-xim.desc fcitx-4.1.1/src/frontend/xim/fcitx-xim.desc --- fcitx-4.0.1/src/frontend/xim/fcitx-xim.desc 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/frontend/xim/fcitx-xim.desc 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,7 @@ +[Xim/UseOnTheSpotStyle] +Type=Boolean +DefaultValue=False +Description=Use On The Spot Style for XIM (Can not change during running) + +[DescriptionFile] +LocaleDomain=fcitx diff -Nru fcitx-4.0.1/src/frontend/xim/IC.c fcitx-4.1.1/src/frontend/xim/IC.c --- fcitx-4.0.1/src/frontend/xim/IC.c 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/frontend/xim/IC.c 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,367 @@ +/****************************************************************** + + Copyright 1994, 1995 by Sun Microsystems, Inc. + Copyright 1993, 1994 by Hewlett-Packard Company + +Permission to use, copy, modify, distribute, and sell this software +and its documentation for any purpose is hereby granted without fee, +provided that the above copyright notice appear in all copies and +that both that copyright notice and this permission notice appear +in supporting documentation, and that the name of Sun Microsystems, Inc. +and Hewlett-Packard not be used in advertising or publicity pertaining to +distribution of the software without specific, written prior permission. +Sun Microsystems, Inc. and Hewlett-Packard make no representations about +the suitability of this software for any purpose. It is provided "as is" +without express or implied warranty. + +SUN MICROSYSTEMS INC. AND HEWLETT-PACKARD COMPANY DISCLAIMS ALL +WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL +SUN MICROSYSTEMS, INC. AND HEWLETT-PACKARD COMPANY 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. + + Author: Hidetoshi Tajima(tajima@Eng.Sun.COM) Sun Microsystems, Inc. + +******************************************************************/ +#include +#include + +#include "Xi18n.h" +#include "IC.h" +#include "fcitx-utils/log.h" +#include "xim.h" +#include +#include "ximhandler.h" + +/** + * @file IC.c + * + * @brief Process XIM Input Context + */ + +static int Is (char *attr, XICAttribute * attr_list); +static void StoreIC (FcitxXimIC * rec, IMChangeICStruct * call_data); + +static int Is (char *attr, XICAttribute * attr_list) +{ + return !strcmp (attr, attr_list->name); +} + +boolean XimCheckIC (void* arg, FcitxInputContext* context, void* priv) +{ + CARD16* picid = (CARD16*) priv; + FcitxXimIC* rec = (FcitxXimIC*) context->privateic; + if (rec->id == *picid) + return true; + else + return false; +} + +static void StoreIC (FcitxXimIC * rec, IMChangeICStruct * call_data) +{ + XICAttribute *ic_attr = call_data->ic_attr; + XICAttribute *pre_attr = call_data->preedit_attr; + XICAttribute *sts_attr = call_data->status_attr; + register int i; + + for (i = 0; i < (int) call_data->ic_attr_num; i++, ic_attr++) { + if (Is (XNInputStyle, ic_attr)) + rec->input_style = *(INT32 *) ic_attr->value; + + else if (Is (XNClientWindow, ic_attr)) { + CARD32 value = *(CARD32*) ic_attr->value; + rec->client_win = (Window) value; + } + else if (Is (XNFocusWindow, ic_attr)) { + CARD32 value = *(CARD32*) ic_attr->value; + rec->focus_win = (Window) value; + } + } + + for (i = 0; i < (int) call_data->preedit_attr_num; i++, pre_attr++) { + if (Is (XNArea, pre_attr)) { + rec->pre_attr.area = *(XRectangle *) pre_attr->value; + } + else if (Is (XNAreaNeeded, pre_attr)) { + rec->pre_attr.area_needed = *(XRectangle *) pre_attr->value; + } + else if (Is (XNSpotLocation, pre_attr)) { + rec->pre_attr.spot_location = *(XPoint *) pre_attr->value; + } + else if (Is (XNColormap, pre_attr)) + rec->pre_attr.cmap = *(Colormap *) pre_attr->value; + + else if (Is (XNStdColormap, pre_attr)) + rec->pre_attr.cmap = *(Colormap *) pre_attr->value; + + else if (Is (XNForeground, pre_attr)) { + rec->pre_attr.foreground = *(CARD32 *) pre_attr->value; + } + else if (Is (XNBackground, pre_attr)) { + rec->pre_attr.background = *(CARD32 *) pre_attr->value; + } + else if (Is (XNBackgroundPixmap, pre_attr)) + rec->pre_attr.bg_pixmap = *(Pixmap *) pre_attr->value; + + else if (Is (XNFontSet, pre_attr)) { + int str_length = strlen ((char *) pre_attr->value); + + if (rec->pre_attr.base_font != NULL) { + if (Is (rec->pre_attr.base_font, pre_attr)) + continue; + XFree (rec->pre_attr.base_font); + } + rec->pre_attr.base_font = (char *) malloc (str_length + 1); + strcpy (rec->pre_attr.base_font, (char *) pre_attr->value); + } + else if (Is (XNLineSpace, pre_attr)) + rec->pre_attr.line_space = *(CARD32 *) pre_attr->value; + else if (Is (XNCursor, pre_attr)) + rec->pre_attr.cursor = *(Cursor *) pre_attr->value; + } + + for (i = 0; i < (int) call_data->status_attr_num; i++, sts_attr++) { + if (Is (XNArea, sts_attr)) { + rec->sts_attr.area = *(XRectangle *) sts_attr->value; + } + else if (Is (XNAreaNeeded, sts_attr)) { + rec->sts_attr.area_needed = *(XRectangle *) sts_attr->value; + } + else if (Is (XNColormap, sts_attr)) { + rec->sts_attr.cmap = *(Colormap *) sts_attr->value; + } + else if (Is (XNStdColormap, sts_attr)) + rec->sts_attr.cmap = *(Colormap *) sts_attr->value; + + else if (Is (XNForeground, sts_attr)) { + rec->sts_attr.foreground = *(CARD32 *) sts_attr->value; + } + else if (Is (XNBackground, sts_attr)) { + rec->sts_attr.background = *(CARD32 *) sts_attr->value; + } + + else if (Is (XNBackgroundPixmap, sts_attr)) + rec->sts_attr.bg_pixmap = *(Pixmap *) sts_attr->value; + + else if (Is (XNFontSet, sts_attr)) { + int str_length = strlen ((char *) sts_attr->value); + + if (rec->sts_attr.base_font != NULL) { + if (Is (rec->sts_attr.base_font, sts_attr)) + continue; + XFree (rec->sts_attr.base_font); + } + rec->sts_attr.base_font = (char *) malloc (str_length + 1); + strcpy (rec->sts_attr.base_font, (char *) sts_attr->value); + } + else if (Is (XNLineSpace, sts_attr)) + rec->sts_attr.line_space = *(CARD32 *) sts_attr->value; + + else if (Is (XNCursor, sts_attr)) + + rec->sts_attr.cursor = *(Cursor *) sts_attr->value; + } +} + +/** + * @brief Interface for XIM Create Input Context + * + * @param context Input Context + * @param priv private data passed by CreateIC + * @return void + **/ +void XimCreateIC (void* arg, FcitxInputContext* context, void *priv) +{ + FcitxXimFrontend* xim = (FcitxXimFrontend*) arg; + IMChangeICStruct * call_data = (IMChangeICStruct *)priv; + context->privateic = fcitx_malloc0(sizeof(FcitxXimIC)); + FcitxXimIC* privic = (FcitxXimIC*) context->privateic; + + privic->connect_id = call_data->connect_id; + privic->id = ++ xim->icid; + privic->offset_x = -1; + privic->offset_y = -1; + StoreIC (privic, call_data); + SetTrackPos(xim, context, call_data); + call_data->icid = privic->id; + if (privic->input_style & XIMPreeditCallbacks) + context->contextCaps |= CAPACITY_PREEDIT; + else + context->contextCaps &= ~CAPACITY_PREEDIT; + + return; +} + +/** + * @brief Destroy Input Context for XIM + * + * @param context Input Context to Destroy + * @return void + **/ +void XimDestroyIC (void* arg, FcitxInputContext* context) +{ + //free resource + FcitxXimIC* privic = (FcitxXimIC*) context->privateic; + if (privic->resource_name) + free (privic->resource_name); + if (privic->resource_class) + free (privic->resource_class); + + context->privateic = NULL; + free(privic); + return; +} + +/** + * @brief Set Input Context Data + * + * @param call_data + * @return void + **/ +void XimSetIC (FcitxXimFrontend* xim, IMChangeICStruct * call_data) +{ + FcitxInputContext *ic = FindIC (xim->owner, xim->frontendid, &call_data->icid); + + if (ic == NULL) + return; + FcitxXimIC* rec = (FcitxXimIC*) ic->privateic; + StoreIC (rec, call_data); + + if (rec->input_style & XIMPreeditCallbacks) + ic->contextCaps |= CAPACITY_PREEDIT; + else + ic->contextCaps &= ~CAPACITY_PREEDIT; + + return; +} + +/** + * @brief Fetch Input Context Data + * + * @param call_data + * @return void + **/ +void XimGetIC (FcitxXimFrontend* xim, IMChangeICStruct * call_data) +{ + XICAttribute *ic_attr = call_data->ic_attr; + XICAttribute *pre_attr = call_data->preedit_attr; + XICAttribute *sts_attr = call_data->status_attr; + register int i; + FcitxInputContext *ic = FindIC (xim->owner, xim->frontendid, &call_data->icid); + if (ic == NULL) + return; + FcitxXimIC* rec = (FcitxXimIC*) ic->privateic; + + if (rec == NULL) + return; + for (i = 0; i < (int) call_data->ic_attr_num; i++, ic_attr++) { + if (Is (XNFilterEvents, ic_attr)) { + ic_attr->value = (void *) malloc (sizeof (CARD32)); + *(CARD32 *) ic_attr->value = KeyPressMask | KeyReleaseMask; + ic_attr->value_length = sizeof (CARD32); + } + } + + /* preedit attributes */ + for (i = 0; i < (int) call_data->preedit_attr_num; i++, pre_attr++) { + if (Is (XNArea, pre_attr)) { + pre_attr->value = (void *) malloc (sizeof (XRectangle)); + *(XRectangle *) pre_attr->value = rec->pre_attr.area; + pre_attr->value_length = sizeof (XRectangle); + + } + else if (Is (XNAreaNeeded, pre_attr)) { + pre_attr->value = (void *) malloc (sizeof (XRectangle)); + *(XRectangle *) pre_attr->value = rec->pre_attr.area_needed; + pre_attr->value_length = sizeof (XRectangle); + + } + else if (Is (XNSpotLocation, pre_attr)) { + pre_attr->value = (void *) malloc (sizeof (XPoint)); + *(XPoint *) pre_attr->value = rec->pre_attr.spot_location; + pre_attr->value_length = sizeof (XPoint); + + } + else if (Is (XNFontSet, pre_attr)) { + CARD16 base_len = (CARD16) strlen (rec->pre_attr.base_font); + int total_len = sizeof (CARD16) + (CARD16) base_len; + char *p; + + pre_attr->value = (void *) malloc (total_len); + p = (char *) pre_attr->value; + memmove (p, &base_len, sizeof (CARD16)); + p += sizeof (CARD16); + strncpy (p, rec->pre_attr.base_font, base_len); + pre_attr->value_length = total_len; + + } + else if (Is (XNForeground, pre_attr)) { + pre_attr->value = (void *) malloc (sizeof (long)); + *(long *) pre_attr->value = rec->pre_attr.foreground; + pre_attr->value_length = sizeof (long); + + } + else if (Is (XNBackground, pre_attr)) { + pre_attr->value = (void *) malloc (sizeof (long)); + *(long *) pre_attr->value = rec->pre_attr.background; + pre_attr->value_length = sizeof (long); + + } + else if (Is (XNLineSpace, pre_attr)) { + pre_attr->value = (void *) malloc (sizeof (long)); + *(long *) pre_attr->value = 18; + pre_attr->value_length = sizeof (long); + } + } + + /* status attributes */ + for (i = 0; i < (int) call_data->status_attr_num; i++, sts_attr++) { + if (Is (XNArea, sts_attr)) { + sts_attr->value = (void *) malloc (sizeof (XRectangle)); + *(XRectangle *) sts_attr->value = rec->sts_attr.area; + sts_attr->value_length = sizeof (XRectangle); + + } + else if (Is (XNAreaNeeded, sts_attr)) { + sts_attr->value = (void *) malloc (sizeof (XRectangle)); + *(XRectangle *) sts_attr->value = rec->sts_attr.area_needed; + sts_attr->value_length = sizeof (XRectangle); + + } + else if (Is (XNFontSet, sts_attr)) { + CARD16 base_len = (CARD16) strlen (rec->sts_attr.base_font); + int total_len = sizeof (CARD16) + (CARD16) base_len; + char *p; + + sts_attr->value = (void *) malloc (total_len); + p = (char *) sts_attr->value; + memmove (p, &base_len, sizeof (CARD16)); + p += sizeof (CARD16); + strncpy (p, rec->sts_attr.base_font, base_len); + sts_attr->value_length = total_len; + + } + else if (Is (XNForeground, sts_attr)) { + sts_attr->value = (void *) malloc (sizeof (long)); + *(long *) sts_attr->value = rec->sts_attr.foreground; + sts_attr->value_length = sizeof (long); + + } + else if (Is (XNBackground, sts_attr)) { + sts_attr->value = (void *) malloc (sizeof (long)); + *(long *) sts_attr->value = rec->sts_attr.background; + sts_attr->value_length = sizeof (long); + + } + else if (Is (XNLineSpace, sts_attr)) { + sts_attr->value = (void *) malloc (sizeof (long)); + *(long *) sts_attr->value = 18; + sts_attr->value_length = sizeof (long); + } + } +} + +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/frontend/xim/IC.h fcitx-4.1.1/src/frontend/xim/IC.h --- fcitx-4.0.1/src/frontend/xim/IC.h 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/frontend/xim/IC.h 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,98 @@ +/****************************************************************** + + Copyright 1994, 1995 by Sun Microsystems, Inc. + Copyright 1993, 1994 by Hewlett-Packard Company + +Permission to use, copy, modify, distribute, and sell this software +and its documentation for any purpose is hereby granted without fee, +provided that the above copyright notice appear in all copies and +that both that copyright notice and this permission notice appear +in supporting documentation, and that the name of Sun Microsystems, Inc. +and Hewlett-Packard not be used in advertising or publicity pertaining to +distribution of the software without specific, written prior permission. +Sun Microsystems, Inc. and Hewlett-Packard make no representations about +the suitability of this software for any purpose. It is provided "as is" +without express or implied warranty. + +SUN MICROSYSTEMS INC. AND HEWLETT-PACKARD COMPANY DISCLAIMS ALL +WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL +SUN MICROSYSTEMS, INC. AND HEWLETT-PACKARD COMPANY 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. + + Author: Hidetoshi Tajima(tajima@Eng.Sun.COM) Sun Microsystems, Inc. + +******************************************************************/ +#ifndef _FCITX_IC_H_ +#define _FCITX_IC_H_ + +#include "fcitx/frontend.h" + +struct _FcitxXimFrontend; + +/** + * @brief XIM Preedit Attributes + **/ +typedef struct { + XRectangle area; /* area */ + XRectangle area_needed; /* area needed */ + XPoint spot_location; /* spot location */ + Colormap cmap; /* colormap */ + CARD32 foreground; /* foreground */ + CARD32 background; /* background */ + Pixmap bg_pixmap; /* background pixmap */ + char *base_font; /* base font of fontset */ + CARD32 line_space; /* line spacing */ + Cursor cursor; /* cursor */ +} PreeditAttributes; + +/** + * @brief XIM Status Attributes + **/ +typedef struct { + XRectangle area; /* area */ + XRectangle area_needed; /* area needed */ + Colormap cmap; /* colormap */ + CARD32 foreground; /* foreground */ + CARD32 background; /* background */ + Pixmap bg_pixmap; /* background pixmap */ + char *base_font; /* base font of fontset */ + CARD32 line_space; /* line spacing */ + Cursor cursor; /* cursor */ +} StatusAttributes; + +/** + * @brief Input Context for Fcitx XIM Frontend + **/ +typedef struct _FcitxXimIC { + CARD16 id; /* ic id */ + INT32 input_style; /* input style */ + Window client_win; /* client window */ + Window focus_win; /* focus window */ + char *resource_name; /* resource name */ + char *resource_class; /* resource class */ + PreeditAttributes pre_attr; /* preedit attributes */ + StatusAttributes sts_attr; /* status attributes */ + + CARD16 connect_id; + int bPreeditStarted; + uint onspot_preedit_length; + boolean bHasCursorLocation; + int offset_x; + int offset_y; +} FcitxXimIC; + +struct FcitxXimFrontend; + +void XimCreateIC (void* arg, FcitxInputContext* context, void *priv); +void XimDestroyIC (void* arg, FcitxInputContext* arg1); +boolean XimCheckIC (void* arg, FcitxInputContext* arg1, void* arg2); +void XimSetIC (struct _FcitxXimFrontend* xim, IMChangeICStruct * call_data); +void XimGetIC (struct _FcitxXimFrontend* xim, IMChangeICStruct * call_data); + +#endif + +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/frontend/xim/lib/FrameMgr.c fcitx-4.1.1/src/frontend/xim/lib/FrameMgr.c --- fcitx-4.0.1/src/frontend/xim/lib/FrameMgr.c 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/frontend/xim/lib/FrameMgr.c 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,2455 @@ +/****************************************************************** +Copyright 1993, 1994 by Digital Equipment Corporation, Maynard, Massachusetts, + + All Rights Reserved + +Permission to use, copy, modify, and distribute this software and its +documentation for any purpose and without fee is hereby granted, +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 Digital or MIT not be +used in advertising or publicity pertaining to distribution of the +software without specific, written prior permission. + +DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING +ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL +DIGITAL 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. + + Author: Hiroyuki Miyamoto Digital Equipment Corporation + miyamoto@jrd.dec.com + + This version tidied and debugged by Steve Underwood May 1999 + +******************************************************************/ + +#include +#include +#include "FrameMgr.h" + +/* Convenient macro */ + +#define _UNIT(n) ((int)(n) & 0xFF) +#define _NUMBER(n) (((int)(n) >> 8) & 0xFF) + +/* For byte swapping */ + +#define Swap16(p, n) ((p)->byte_swap ? \ +(((n) << 8 & 0xFF00) | \ + ((n) >> 8 & 0xFF) \ +) : n) +#define Swap32(p, n) ((p)->byte_swap ? \ + (((n) << 24 & 0xFF000000) | \ + ((n) << 8 & 0xFF0000) | \ + ((n) >> 8 & 0xFF00) | \ + ((n) >> 24 & 0xFF) \ + ) : n) +#define Swap64(p, n) ((p)->byte_swap ? \ + (((n) << 56 & 0xFF00000000000000) | \ + ((n) << 40 & 0xFF000000000000) | \ + ((n) << 24 & 0xFF0000000000) | \ + ((n) << 8 & 0xFF00000000) | \ + ((n) >> 8 & 0xFF000000) | \ + ((n) >> 24 & 0xFF0000) | \ + ((n) >> 40 & 0xFF00) | \ + ((n) >> 56 & 0xFF) \ + ) : n) + +/* Type definition */ + +typedef struct _Iter *Iter; + +typedef struct _FrameInst *FrameInst; + +typedef union +{ + int num; /* For BARRAY */ + FrameInst fi; /* For POINTER */ + Iter iter; /* For ITER */ +} ExtraDataRec, *ExtraData; + +typedef struct _Chain +{ + ExtraDataRec d; + int frame_no; + struct _Chain *next; +} ChainRec, *Chain; + +typedef struct _ChainMgr +{ + Chain top; + Chain tail; +} ChainMgrRec, *ChainMgr; + +typedef struct _ChainIter +{ + Chain cur; +} ChainIterRec, *ChainIter; + +typedef struct _FrameIter +{ + Iter iter; + Bool counting; + unsigned int counter; + int end; + struct _FrameIter* next; +} FrameIterRec, *FrameIter; + +typedef struct _FrameInst +{ + XimFrame _template; + ChainMgrRec cm; + int cur_no; +} FrameInstRec; + +typedef void (*IterStartWatchProc) (Iter it, void *client_data); + +typedef struct _Iter +{ + XimFrame _template; + int max_count; + Bool allow_expansion; + ChainMgrRec cm; + int cur_no; + IterStartWatchProc start_watch_proc; + void *client_data; + Bool start_counter; +} IterRec; + +typedef struct _FrameMgr +{ + XimFrame frame; + FrameInst fi; + char *area; + int idx; + Bool byte_swap; + int total_size; + FrameIter iters; +} FrameMgrRec; + +typedef union +{ + int num; /* For BARRAY and PAD */ + struct + { /* For COUNTER_* */ + Iter iter; + Bool is_byte_len; + } counter; +} XimFrameTypeInfoRec, *XimFrameTypeInfo; + +/* Special values */ +#define NO_VALUE -1 +#define NO_VALID_FIELD -2 + +static FrameInst FrameInstInit(XimFrame frame); +static void FrameInstFree(FrameInst fi); +static XimFrameType FrameInstGetNextType(FrameInst fi, XimFrameTypeInfo info); +static XimFrameType FrameInstPeekNextType(FrameInst fi, XimFrameTypeInfo info); +static FmStatus FrameInstSetSize(FrameInst fi, int num); +static FmStatus FrameInstSetIterCount(FrameInst fi, int num); +static int FrameInstGetTotalSize(FrameInst fi); +static void FrameInstReset(FrameInst fi); + +static Iter IterInit(XimFrame frame, int count); +static void IterFree(Iter it); +static int FrameInstGetSize(FrameInst fi); +static int IterGetSize(Iter it); +static XimFrameType IterGetNextType(Iter it, XimFrameTypeInfo info); +static XimFrameType IterPeekNextType(Iter it, XimFrameTypeInfo info); +static FmStatus IterSetSize(Iter it, int num); +static FmStatus IterSetIterCount(Iter it, int num); +static int IterGetTotalSize(Iter it); +static void IterReset(Iter it); +static Bool IterIsLoopEnd(Iter it, Bool* myself); +static void IterSetStartWatch(Iter it, IterStartWatchProc proc, void* client_data); +static void _IterStartWatch(Iter it, void* client_data); + +static ExtraData ChainMgrGetExtraData(ChainMgr cm, int frame_no); +static ExtraData ChainMgrSetData(ChainMgr cm, int frame_no, + ExtraDataRec data); +static Bool ChainIterGetNext(ChainIter ci, int* frame_no, ExtraData d); +static int _FrameInstIncrement(XimFrame frame, int count); +static int _FrameInstDecrement(XimFrame frame, int count); +static int _FrameInstGetItemSize(FrameInst fi, int cur_no); +static Bool FrameInstIsIterLoopEnd(FrameInst fi); + +static FrameIter _FrameMgrAppendIter(FrameMgr fm, Iter it, int end); +static FrameIter _FrameIterCounterIncr(FrameIter fitr, int i); +static void _FrameMgrRemoveIter(FrameMgr fm, FrameIter it); +static Bool _FrameMgrIsIterLoopEnd(FrameMgr fm); +static Bool _FrameMgrProcessPadding(FrameMgr fm, FmStatus* status); + +#define IterGetIterCount(it) ((it)->allow_expansion ? \ +NO_VALUE : (it)->max_count) + +#define IterFixIteration(it) ((it)->allow_expansion = False) + +#define IterSetStarter(it) ((it)->start_counter = True) + +#define ChainMgrInit(cm) (cm)->top = (cm)->tail = NULL +#define ChainMgrFree(cm) \ +{ \ + Chain tmp; \ + Chain cur = (cm)->top; \ + \ + while (cur) \ + { \ + tmp = cur->next; \ + Xfree (cur); \ + cur = tmp; \ + } \ +} + +#define ChainIterInit(ci, cm) \ +{ \ + (ci)->cur = (cm)->top; \ +} + +/* ChainIterFree has nothing to do. */ +#define ChainIterFree(ci) + +#define FrameInstIsEnd(fi) ((fi)->_template[(fi)->cur_no].type == EOL) + +FrameMgr FrameMgrInit (XimFrame frame, char* area, Bool byte_swap) +{ + FrameMgr fm; + + fm = (FrameMgr) Xmalloc (sizeof (FrameMgrRec)); + + fm->frame = frame; + fm->fi = FrameInstInit (frame); + fm->area = (char *) area; + fm->idx = 0; + fm->byte_swap = byte_swap; + fm->total_size = NO_VALUE; + fm->iters = NULL; + + return fm; +} + +void FrameMgrInitWithData (FrameMgr fm, + XimFrame frame, + void * area, + Bool byte_swap) +{ + fm->frame = frame; + fm->fi = FrameInstInit (frame); + fm->area = (char *) area; + fm->idx = 0; + fm->byte_swap = byte_swap; + fm->total_size = NO_VALUE; +} + +void FrameMgrFree (FrameMgr fm) +{ + FrameInstFree (fm->fi); + Xfree (fm); +} + +FmStatus FrameMgrSetBuffer (FrameMgr fm, void* area) +{ + if (fm->area) + return FmBufExist; + fm->area = (char *) area; + return FmSuccess; +} + +FmStatus _FrameMgrPutToken (FrameMgr fm, void *data, int data_size) +{ + XimFrameType type; + XimFrameTypeInfoRec info; + + if (fm->total_size != NO_VALUE && fm->idx >= fm->total_size) + return FmNoMoreData; + /*endif*/ + + type = FrameInstGetNextType(fm->fi, &info); + + if (type & COUNTER_MASK) + { + unsigned long input_length; + + if (info.counter.is_byte_len) + { + if ((input_length = IterGetTotalSize (info.counter.iter)) + == NO_VALUE) + { + return FmCannotCalc; + } + /*endif*/ + } + else + { + if ((input_length = IterGetIterCount (info.counter.iter)) + == NO_VALUE) + { + return FmCannotCalc; + } + /*endif*/ + } + /*endif*/ + switch (type) + { + case COUNTER_BIT8: + *(CARD8 *) (fm->area + fm->idx) = input_length; + fm->idx++; + break; + + case COUNTER_BIT16: + *(CARD16 *) (fm->area + fm->idx) = Swap16 (fm, input_length); + fm->idx += 2; + break; + + case COUNTER_BIT32: + *(CARD32 *) (fm->area + fm->idx) = Swap32 (fm, input_length); + fm->idx += 4; + break; + +#if defined(_NEED64BIT) + case COUNTER_BIT64: + *(CARD64 *) (fm->area + fm->idx) = Swap64 (fm, input_length); + fm->idx += 8; + break; +#endif + default: + break; + } + /*endswitch*/ + _FrameMgrPutToken(fm, data, data_size); + return FmSuccess; + } + /*endif*/ + + switch (type) + { + case BIT8: + if (data_size == sizeof (unsigned char)) + { + unsigned long num = *(unsigned char *) data; + *(CARD8 *) (fm->area + fm->idx) = num; + } + else if (data_size == sizeof (unsigned short)) + { + unsigned long num = *(unsigned short *) data; + *(CARD8 *) (fm->area + fm->idx) = num; + } + else if (data_size == sizeof (unsigned int)) + { + unsigned long num = *(unsigned int *) data; + *(CARD8 *) (fm->area + fm->idx) = num; + } + else if (data_size == sizeof (unsigned long)) + { + unsigned long num = *(unsigned long *) data; + *(CARD8 *) (fm->area + fm->idx) = num; + } + else + { + ; /* Should never be reached */ + } + /*endif*/ + fm->idx++; + return FmSuccess; + + case BIT16: + if (data_size == sizeof (unsigned char)) + { + unsigned long num = *(unsigned char *) data; + *(CARD16*)(fm->area + fm->idx) = Swap16 (fm, num); + } + else if (data_size == sizeof (unsigned short)) + { + unsigned long num = *(unsigned short *) data; + *(CARD16 *) (fm->area + fm->idx) = Swap16 (fm, num); + } + else if (data_size == sizeof (unsigned int)) + { + unsigned long num = *(unsigned int *) data; + *(CARD16 *) (fm->area + fm->idx) = Swap16 (fm, num); + } + else if (data_size == sizeof (unsigned long)) + { + unsigned long num = *(unsigned long *) data; + *(CARD16 *) (fm->area + fm->idx) = Swap16 (fm, num); + } + else + { + ; /* Should never reached */ + } + /*endif*/ + fm->idx += 2; + return FmSuccess; + + case BIT32: + if (data_size == sizeof (unsigned char)) + { + unsigned long num = *(unsigned char *) data; + *(CARD32 *) (fm->area + fm->idx) = Swap32 (fm, num); + } + else if (data_size == sizeof (unsigned short)) + { + unsigned long num = *(unsigned short *) data; + *(CARD32 *) (fm->area + fm->idx) = Swap32 (fm, num); + } + else if (data_size == sizeof (unsigned int)) + { + unsigned long num = *(unsigned int *) data; + *(CARD32 *) (fm->area + fm->idx) = Swap32 (fm, num); + } + else if (data_size == sizeof (unsigned long)) + { + unsigned long num = *(unsigned long *) data; + *(CARD32 *) (fm->area + fm->idx) = Swap32 (fm, num); + } + else + { + ; /* Should never reached */ + } + /*endif*/ + fm->idx += 4; + return FmSuccess; + +#if defined(_NEED64BIT) + case BIT64: + if (data_size == sizeof (unsigned char)) + { + unsigned long num = *(unsigned char *) data; + *(CARD64 *) (fm->area + fm->idx) = Swap64 (fm, num); + } + else if (data_size == sizeof (unsigned short)) + { + unsigned long num = *(unsigned short *) data; + *(CARD64 *) (fm->area + fm->idx) = Swap64 (fm, num); + } + else if (data_size == sizeof (unsigned int)) + { + unsigned long num = *(unsigned int *) data; + *(CARD64 *) (fm->area + fm->idx) = Swap64 (fm, num); + } + else if (data_size == sizeof (unsigned long)) + { + unsigned long num = *(unsigned long *) data; + *(CARD64 *) (fm->area + fm->idx) = Swap64 (fm, num); + } + else + { + ; /* Should never reached */ + } + /*endif*/ + fm->idx += 4; + return FmSuccess; +#endif + + case BARRAY: + if (info.num == NO_VALUE) + return FmInvalidCall; + /*endif*/ + if (info.num > 0) + { + memcpy (fm->area + fm->idx, *(char **) data, info.num); + fm->idx += info.num; + } + /*endif*/ + return FmSuccess; + + case PADDING: + if (info.num == NO_VALUE) + return FmInvalidCall; + /*endif*/ + fm->idx += info.num; + return _FrameMgrPutToken(fm, data, data_size); + + case ITER: + return FmInvalidCall; + + case EOL: + return FmEOD; + default: + break; + } + /*endswitch*/ + return (FmStatus) NULL; /* Should never be reached */ +} + +FmStatus _FrameMgrGetToken (FrameMgr fm , void* data, int data_size) +{ + XimFrameType type; + static XimFrameTypeInfoRec info; /* memory */ + FrameIter fitr; + + if (fm->total_size != NO_VALUE && fm->idx >= fm->total_size) + return FmNoMoreData; + /*endif*/ + + type = FrameInstGetNextType(fm->fi, &info); + + if (type & COUNTER_MASK) + { + int end=0; + FrameIter client_data; + + type &= ~COUNTER_MASK; + switch (type) + { + case BIT8: + end = *(CARD8 *) (fm->area + fm->idx); + break; + + case BIT16: + end = Swap16 (fm, *(CARD16 *) (fm->area + fm->idx)); + break; + + case BIT32: + end = Swap32 (fm, *(CARD32 *) (fm->area + fm->idx)); + break; + +#if defined(_NEED64BIT) + case BIT64: + end = Swap64 (fm, *(CARD64 *) (fm->area + fm->idx)); + break; +#endif + default: + break; + } + /*endswitch*/ + + if ((client_data = _FrameMgrAppendIter (fm, info.counter.iter, end))) + { + IterSetStarter (info.counter.iter); + IterSetStartWatch (info.counter.iter, + _IterStartWatch, + (void *) client_data); + } + /*endif*/ + } + /*endif*/ + + type &= ~COUNTER_MASK; + switch (type) + { + case BIT8: + if (data_size == sizeof (unsigned char)) + { + *(unsigned char*) data = *(CARD8 *) (fm->area + fm->idx); + } + else if (data_size == sizeof (unsigned short)) + { + *(unsigned short *) data = *(CARD8 *) (fm->area + fm->idx); + } + else if (data_size == sizeof (unsigned int)) + { + *(unsigned int *) data = *(CARD8 *) (fm->area + fm->idx); + } + else if (data_size == sizeof (unsigned long)) + { + *(unsigned long *) data = *(CARD8 *) (fm->area + fm->idx); + } + else + { + ; /* Should never reached */ + } + /*endif*/ + fm->idx++; + if ((fitr = _FrameIterCounterIncr (fm->iters, 1/*BIT8*/))) + _FrameMgrRemoveIter (fm, fitr); + /*endif*/ + return FmSuccess; + + case BIT16: + if (data_size == sizeof (unsigned char)) + { + *(unsigned char *) data = + Swap16 (fm, *(CARD16 *) (fm->area + fm->idx)); + } + else if (data_size == sizeof (unsigned short)) + { + *(unsigned short *) data = + Swap16 (fm, *(CARD16 *) (fm->area + fm->idx)); + } + else if (data_size == sizeof (unsigned int)) + { + *(unsigned int *) data = + Swap16 (fm, *(CARD16 *) (fm->area + fm->idx)); + } + else if (data_size == sizeof (unsigned long)) + { + *(unsigned long *) data = + Swap16 (fm, *(CARD16 *) (fm->area + fm->idx)); + } + else + { + ; /* Should never reached */ + } + /*endif*/ + fm->idx += 2; + if ((fitr = _FrameIterCounterIncr (fm->iters, 2/*BIT16*/))) + _FrameMgrRemoveIter(fm, fitr); + /*endif*/ + return FmSuccess; + + case BIT32: + if (data_size == sizeof (unsigned char)) + { + *(unsigned char *) data = + Swap32 (fm, *(CARD32 *) (fm->area + fm->idx)); + } + else if (data_size == sizeof (unsigned short)) + { + *(unsigned short *) data = + Swap32 (fm, *(CARD32 *) (fm->area + fm->idx)); + } + else if (data_size == sizeof (unsigned int)) + { + *(unsigned int *) data = + Swap32 (fm, *(CARD32 *) (fm->area + fm->idx)); + } + else if (data_size == sizeof (unsigned long)) + { + *(unsigned long *) data = + Swap32 (fm, *(CARD32 *) (fm->area + fm->idx)); + } + else + { + ; /* Should never reached */ + } + /*endif*/ + fm->idx += 4; + if ((fitr = _FrameIterCounterIncr (fm->iters, 4/*BIT32*/))) + _FrameMgrRemoveIter (fm, fitr); + /*endif*/ + return FmSuccess; + +#if defined(_NEED64BIT) + case BIT64: + if (data_size == sizeof (unsigned char)) + { + *(unsigned char *) data = + Swap64 (fm, *(CARD64 *) (fm->area + fm->idx)); + } + else if (data_size == sizeof (unsigned short)) + { + *(unsigned short *) data = + Swap64 (fm, *(CARD64 *) (fm->area + fm->idx)); + } + else if (data_size == sizeof (unsigned int)) + { + *(unsigned int *) data = + Swap64 (fm, *(CARD64 *) (fm->area + fm->idx)); + } + else if (data_size == sizeof (unsigned long)) + { + *(unsigned long *) data = + Swap64 (fm, *(CARD64 *) (fm->area + fm->idx)); + } + else + { + ; /* Should never reached */ + } + /*endif*/ + fm->idx += 8; + if ((fitr = _FrameIterCounterIncr (fm->iters, 8/*BIT64*/))) + _FrameMgrRemoveIter (fm, fitr); + /*endif*/ + return FmSuccess; +#endif + + case BARRAY: + if (info.num == NO_VALUE) + return FmInvalidCall; + /*endif*/ + if (info.num > 0) + { + *(char **) data = fm->area + fm->idx; + + fm->idx += info.num; + if ((fitr = _FrameIterCounterIncr (fm->iters, info.num))) + _FrameMgrRemoveIter (fm, fitr); + /*endif*/ + } + else + { + *(char **) data = NULL; + } + /*endif*/ + return FmSuccess; + + case PADDING: + if (info.num == NO_VALUE) + return FmInvalidCall; + /*endif*/ + fm->idx += info.num; + if ((fitr = _FrameIterCounterIncr (fm->iters, info.num))) + _FrameMgrRemoveIter (fm, fitr); + /*endif*/ + return _FrameMgrGetToken (fm, data, data_size); + + case ITER: + return FmInvalidCall; /* if comes here, it's a bug! */ + + case EOL: + return FmEOD; + default: + break; + } + /*endswitch*/ + return (FmStatus) NULL; /* Should never be reached */ +} + +FmStatus FrameMgrSetSize (FrameMgr fm, int barray_size) +{ + if (FrameInstSetSize (fm->fi, barray_size) == FmSuccess) + return FmSuccess; + /*endif*/ + return FmNoMoreData; +} + +FmStatus FrameMgrSetIterCount (FrameMgr fm, int count) +{ + if (FrameInstSetIterCount (fm->fi, count) == FmSuccess) + return FmSuccess; + /*endif*/ + return FmNoMoreData; +} + +FmStatus FrameMgrSetTotalSize (FrameMgr fm, int total_size) +{ + fm->total_size = total_size; + return FmSuccess; +} + +int FrameMgrGetTotalSize (FrameMgr fm) +{ + return FrameInstGetTotalSize (fm->fi); +} + +int FrameMgrGetSize (FrameMgr fm) +{ + register int ret_size; + + ret_size = FrameInstGetSize (fm->fi); + if (ret_size == NO_VALID_FIELD) + return NO_VALUE; + /*endif*/ + return ret_size; +} + +FmStatus FrameMgrSkipToken (FrameMgr fm, int skip_count) +{ + XimFrameType type; + XimFrameTypeInfoRec info; + register int i; + + if (fm->total_size != NO_VALUE && fm->idx >= fm->total_size) + return FmNoMoreData; + /*endif*/ + for (i = 0; i < skip_count; i++) + { + type = FrameInstGetNextType (fm->fi, &info); + type &= ~COUNTER_MASK; + + switch (type) + { + case BIT8: + fm->idx++; + break; + + case BIT16: + fm->idx += 2; + break; + + case BIT32: + fm->idx += 4; + break; + + case BIT64: + fm->idx += 8; + break; + + case BARRAY: + if (info.num == NO_VALUE) + return FmInvalidCall; + /*endif*/ + fm->idx += info.num; + break; + + case PADDING: + if (info.num == NO_VALUE) + return FmInvalidCall; + /*endif*/ + fm->idx += info.num; + return FrameMgrSkipToken (fm, skip_count); + + case ITER: + return FmInvalidCall; + + case EOL: + return FmEOD; + default: + break; + } + /*endswitch*/ + } + /*endfor*/ + return FmSuccess; +} + +void FrameMgrReset (FrameMgr fm) +{ + fm->idx = 0; + FrameInstReset (fm->fi); +} + +Bool FrameMgrIsIterLoopEnd (FrameMgr fm, FmStatus* status) +{ + do + { + if (_FrameMgrIsIterLoopEnd (fm)) + return True; + /*endif*/ + } + while (_FrameMgrProcessPadding (fm, status)); + + return False; +} + + +/* Internal routines */ + +static Bool _FrameMgrIsIterLoopEnd (FrameMgr fm) +{ + return FrameInstIsIterLoopEnd (fm->fi); +} + +static Bool _FrameMgrProcessPadding (FrameMgr fm, FmStatus* status) +{ + XimFrameTypeInfoRec info; + XimFrameType next_type = FrameInstPeekNextType (fm->fi, &info); + FrameIter fitr; + + if (next_type == PADDING) + { + if (info.num == NO_VALUE) + { + *status = FmInvalidCall; + return True; + } + /*endif*/ + next_type = FrameInstGetNextType (fm->fi, &info); + fm->idx += info.num; + if ((fitr = _FrameIterCounterIncr (fm->iters, info.num))) + _FrameMgrRemoveIter (fm, fitr); + /*endif*/ + *status = FmSuccess; + return True; + } + /*endif*/ + *status = FmSuccess; + return False; +} + +static FrameInst FrameInstInit (XimFrame frame) +{ + FrameInst fi; + + fi = (FrameInst) Xmalloc (sizeof (FrameInstRec)); + + fi->_template = frame; + fi->cur_no = 0; + ChainMgrInit (&fi->cm); + return fi; +} + +static void FrameInstFree (FrameInst fi) +{ + ChainIterRec ci; + int frame_no; + ExtraDataRec d; + + ChainIterInit (&ci, &fi->cm); + + while (ChainIterGetNext (&ci, &frame_no, &d)) + { + register XimFrameType type; + type = fi->_template[frame_no].type; + if (type == ITER) + { + if (d.iter) + IterFree (d.iter); + /*endif*/ + } + else if (type == POINTER) + { + if (d.fi) + FrameInstFree (d.fi); + /*endif*/ + } + /*endif*/ + } + /*endwhile*/ + ChainIterFree (&ci); + ChainMgrFree (&fi->cm); + Xfree (fi); +} + +static XimFrameType FrameInstGetNextType(FrameInst fi, XimFrameTypeInfo info) +{ + XimFrameType ret_type; + + ret_type = fi->_template[fi->cur_no].type; + + switch (ret_type) + { + case BIT8: + case BIT16: + case BIT32: + case BIT64: + case EOL: + fi->cur_no = _FrameInstIncrement(fi->_template, fi->cur_no); + break; + + case COUNTER_BIT8: + case COUNTER_BIT16: + case COUNTER_BIT32: + case COUNTER_BIT64: + if (info) + { + register int offset, iter_idx; + + info->counter.is_byte_len = + (((long) fi->_template[fi->cur_no].data & 0xFF)) == FmCounterByte; + offset = ((long) fi->_template[fi->cur_no].data) >> 8; + iter_idx = fi->cur_no + offset; + if (fi->_template[iter_idx].type == ITER) + { + ExtraData d; + ExtraDataRec dr; + + if ((d = ChainMgrGetExtraData (&fi->cm, iter_idx)) == NULL) + { + dr.iter = IterInit (&fi->_template[iter_idx + 1], NO_VALUE); + d = ChainMgrSetData (&fi->cm, iter_idx, dr); + } + /*endif*/ + info->counter.iter = d->iter; + } + else + { + /* Should never reach here */ + } + /*endif*/ + } + /*endif*/ + fi->cur_no = _FrameInstIncrement (fi->_template, fi->cur_no); + break; + + case BARRAY: + if (info) + { + ExtraData d; + + if ((d = ChainMgrGetExtraData (&fi->cm, fi->cur_no)) == NULL) + info->num = NO_VALUE; + else + info->num = d->num; + /*endif*/ + } + /*endif*/ + fi->cur_no = _FrameInstIncrement (fi->_template, fi->cur_no); + break; + + case PADDING: + if (info) + { + register int unit; + register int number; + register int size; + register int i; + + unit = _UNIT ((long) fi->_template[fi->cur_no].data); + number = _NUMBER ((long) fi->_template[fi->cur_no].data); + + i = fi->cur_no; + size = 0; + while (number > 0) + { + i = _FrameInstDecrement (fi->_template, i); + size += _FrameInstGetItemSize (fi, i); + number--; + } + /*endwhile*/ + info->num = (unit - (size%unit))%unit; + } + /*endif*/ + fi->cur_no = _FrameInstIncrement (fi->_template, fi->cur_no); + break; + + case ITER: + { + ExtraData d; + ExtraDataRec dr; + XimFrameType sub_type; + + + if ((d = ChainMgrGetExtraData (&fi->cm, fi->cur_no)) == NULL) + { + dr.iter = IterInit (&fi->_template[fi->cur_no + 1], NO_VALUE); + d = ChainMgrSetData (&fi->cm, fi->cur_no, dr); + } + /*endif*/ + sub_type = IterGetNextType (d->iter, info); + if (sub_type == EOL) + { + fi->cur_no = _FrameInstIncrement (fi->_template, fi->cur_no); + ret_type = FrameInstGetNextType (fi, info); + } + else + { + ret_type = sub_type; + } + /*endif*/ + } + break; + + case POINTER: + { + ExtraData d; + ExtraDataRec dr; + XimFrameType sub_type; + + if ((d = ChainMgrGetExtraData (&fi->cm, fi->cur_no)) == NULL) + { + dr.fi = FrameInstInit (fi->_template[fi->cur_no + 1].data); + d = ChainMgrSetData (&fi->cm, fi->cur_no, dr); + } + /*endif*/ + sub_type = FrameInstGetNextType (d->fi, info); + if (sub_type == EOL) + { + fi->cur_no = _FrameInstIncrement (fi->_template, fi->cur_no); + ret_type = FrameInstGetNextType (fi, info); + } + else + { + ret_type = sub_type; + } + /*endif*/ + } + break; + default: + break; + } + /*endswitch*/ + return ret_type; +} + +static XimFrameType FrameInstPeekNextType (FrameInst fi, XimFrameTypeInfo info) +{ + XimFrameType ret_type; + + ret_type = fi->_template[fi->cur_no].type; + + switch (ret_type) + { + case BIT8: + case BIT16: + case BIT32: + case BIT64: + case EOL: + break; + + case COUNTER_BIT8: + case COUNTER_BIT16: + case COUNTER_BIT32: + case COUNTER_BIT64: + if (info) + { + register int offset; + register int iter_idx; + + info->counter.is_byte_len = + (((long) fi->_template[fi->cur_no].data) & 0xFF) == FmCounterByte; + offset = ((long)fi->_template[fi->cur_no].data) >> 8; + iter_idx = fi->cur_no + offset; + if (fi->_template[iter_idx].type == ITER) + { + ExtraData d; + ExtraDataRec dr; + + if ((d = ChainMgrGetExtraData (&fi->cm, iter_idx)) == NULL) + { + dr.iter = IterInit (&fi->_template[iter_idx + 1], NO_VALUE); + d = ChainMgrSetData (&fi->cm, iter_idx, dr); + } + /*endif*/ + info->counter.iter = d->iter; + } + else + { + /* Should not be reached here */ + } + /*endif*/ + } + /*endif*/ + break; + + case BARRAY: + if (info) + { + ExtraData d; + + if ((d = ChainMgrGetExtraData (&fi->cm, fi->cur_no)) == NULL) + info->num = NO_VALUE; + else + info->num = d->num; + /*endif*/ + } + /*endif*/ + break; + + case PADDING: + if (info) + { + register int unit; + register int number; + register int size; + register int i; + + unit = _UNIT ((long) fi->_template[fi->cur_no].data); + number = _NUMBER ((long) fi->_template[fi->cur_no].data); + + i = fi->cur_no; + size = 0; + while (number > 0) + { + i = _FrameInstDecrement (fi->_template, i); + size += _FrameInstGetItemSize (fi, i); + number--; + } + /*endwhile*/ + info->num = (unit - (size%unit))%unit; + } + /*endif*/ + break; + + case ITER: + { + ExtraData d; + ExtraDataRec dr; + XimFrameType sub_type; + + if ((d = ChainMgrGetExtraData (&fi->cm, fi->cur_no)) == NULL) + { + dr.iter = IterInit (&fi->_template[fi->cur_no + 1], NO_VALUE); + d = ChainMgrSetData (&fi->cm, fi->cur_no, dr); + } + /*endif*/ + sub_type = IterPeekNextType (d->iter, info); + if (sub_type == EOL) + ret_type = FrameInstPeekNextType (fi, info); + else + ret_type = sub_type; + /*endif*/ + } + break; + + case POINTER: + { + ExtraData d; + ExtraDataRec dr; + XimFrameType sub_type; + + if ((d = ChainMgrGetExtraData (&fi->cm, fi->cur_no)) == NULL) + { + dr.fi = FrameInstInit (fi->_template[fi->cur_no + 1].data); + d = ChainMgrSetData (&fi->cm, fi->cur_no, dr); + } + /*endif*/ + sub_type = FrameInstPeekNextType (d->fi, info); + if (sub_type == EOL) + ret_type = FrameInstPeekNextType (fi, info); + else + ret_type = sub_type; + /*endif*/ + default: + break; + } + break; + } + /*endswitch*/ + return ret_type; +} + +static Bool FrameInstIsIterLoopEnd (FrameInst fi) +{ + Bool ret = False; + + if (fi->_template[fi->cur_no].type == ITER) + { + ExtraData d = ChainMgrGetExtraData (&fi->cm, fi->cur_no); + Bool yourself; + + if (d) + { + ret = IterIsLoopEnd (d->iter, &yourself); + if (ret && yourself) + fi->cur_no = _FrameInstIncrement (fi->_template, fi->cur_no); + /*endif*/ + } + /*endif*/ + } + /*endif*/ + return (ret); +} + +static FrameIter _FrameMgrAppendIter (FrameMgr fm, Iter it, int end) +{ + FrameIter p = fm->iters; + + while (p && p->next) + p = p->next; + /*endwhile*/ + + if (!p) + { + fm->iters = + p = (FrameIter) Xmalloc (sizeof (FrameIterRec)); + } + else + { + p->next = (FrameIter) Xmalloc (sizeof (FrameIterRec)); + p = p->next; + } + /*endif*/ + if (p) + { + p->iter = it; + p->counting = False; + p->counter = 0; + p->end = end; + p->next = NULL; + } + /*endif*/ + return (p); +} + +static void _FrameMgrRemoveIter (FrameMgr fm, FrameIter it) +{ + FrameIter prev; + FrameIter p; + + prev = NULL; + p = fm->iters; + while (p) + { + if (p == it) + { + if (prev) + prev->next = p->next; + else + fm->iters = p->next; + /*endif*/ + Xfree (p); + break; + } + /*endif*/ + prev = p; + p = p->next; + } + /*endwhile*/ +} + +static FrameIter _FrameIterCounterIncr (FrameIter fitr, int i) +{ + FrameIter p = fitr; + + while (p) + { + if (p->counting) + { + p->counter += i; + if (p->counter >= p->end) + { + IterFixIteration (p->iter); + return (p); + } + /*endif*/ + } + /*endif*/ + p = p->next; + } + /*endwhile*/ + return (NULL); +} + +static void _IterStartWatch (Iter it, void *client_data) +{ + FrameIter p = (FrameIter) client_data; + p->counting = True; +} + +static FmStatus FrameInstSetSize (FrameInst fi, int num) +{ + ExtraData d; + ExtraDataRec dr; + XimFrameType type; + register int i; + + i = 0; + while ((type = fi->_template[i].type) != EOL) + { + switch (type) + { + case BARRAY: + if ((d = ChainMgrGetExtraData (&fi->cm, i)) == NULL) + { + dr.num = -1; + d = ChainMgrSetData (&fi->cm, i, dr); + } + /*endif*/ + if (d->num == NO_VALUE) + { + d->num = num; + return FmSuccess; + } + /*endif*/ + break; + case ITER: + if ((d = ChainMgrGetExtraData (&fi->cm, i)) == NULL) + { + dr.iter = IterInit (&fi->_template[i + 1], NO_VALUE); + d = ChainMgrSetData (&fi->cm, i, dr); + } + /*endif*/ + if (IterSetSize (d->iter, num) == FmSuccess) + return FmSuccess; + /*endif*/ + break; + + case POINTER: + if ((d = ChainMgrGetExtraData(&fi->cm, i)) == NULL) + { + dr.fi = FrameInstInit(fi->_template[i + 1].data); + d = ChainMgrSetData(&fi->cm, i, dr); + } + /*endif*/ + if (FrameInstSetSize(d->fi, num) == FmSuccess) + return FmSuccess; + /*endif*/ + break; + default: + break; + } + /*endswitch*/ + i = _FrameInstIncrement(fi->_template, i); + } + /*endwhile*/ + return FmNoMoreData; +} + +static int FrameInstGetSize (FrameInst fi) +{ + XimFrameType type; + register int i; + ExtraData d; + ExtraDataRec dr; + int ret_size; + + i = fi->cur_no; + while ((type = fi->_template[i].type) != EOL) + { + switch (type) + { + case BARRAY: + if ((d = ChainMgrGetExtraData (&fi->cm, i)) == NULL) + return NO_VALUE; + /*endif*/ + return d->num; + + case ITER: + if ((d = ChainMgrGetExtraData (&fi->cm, i)) == NULL) + { + dr.iter = IterInit (&fi->_template[i + 1], NO_VALUE); + d = ChainMgrSetData (&fi->cm, i, dr); + } + /*endif*/ + ret_size = IterGetSize(d->iter); + if (ret_size != NO_VALID_FIELD) + return ret_size; + /*endif*/ + break; + + case POINTER: + if ((d = ChainMgrGetExtraData (&fi->cm, i)) == NULL) + { + dr.fi = FrameInstInit (fi->_template[i + 1].data); + d = ChainMgrSetData (&fi->cm, i, dr); + } + /*endif*/ + ret_size = FrameInstGetSize (d->fi); + if (ret_size != NO_VALID_FIELD) + return ret_size; + /*endif*/ + break; + default: + break; + } + /*endswitch*/ + i = _FrameInstIncrement (fi->_template, i); + } + /*endwhile*/ + return NO_VALID_FIELD; +} + +static FmStatus FrameInstSetIterCount (FrameInst fi, int num) +{ + ExtraData d; + ExtraDataRec dr; + register int i; + XimFrameType type; + + i = 0; + while ((type = fi->_template[i].type) != EOL) + { + switch (type) + { + case ITER: + if ((d = ChainMgrGetExtraData (&fi->cm, i)) == NULL) + { + dr.iter = IterInit (&fi->_template[i + 1], num); + (void)ChainMgrSetData (&fi->cm, i, dr); + return FmSuccess; + } + /*endif*/ + if (IterSetIterCount (d->iter, num) == FmSuccess) + return FmSuccess; + /*endif*/ + break; + + case POINTER: + if ((d = ChainMgrGetExtraData (&fi->cm, i)) == NULL) + { + dr.fi = FrameInstInit (fi->_template[i + 1].data); + d = ChainMgrSetData (&fi->cm, i, dr); + } + /*endif*/ + if (FrameInstSetIterCount (d->fi, num) == FmSuccess) + return FmSuccess; + /*endif*/ + break; + + default: + break; + } + /*endswitch*/ + i = _FrameInstIncrement (fi->_template, i); + } + /*endwhile*/ + return FmNoMoreData; +} + +static int FrameInstGetTotalSize (FrameInst fi) +{ + register int size; + register int i; + + size = 0; + i = 0; + + while (fi->_template[i].type != EOL) + { + size += _FrameInstGetItemSize (fi, i); + i = _FrameInstIncrement (fi->_template, i); + } + /*endwhile*/ + return size; +} + +static void FrameInstReset (FrameInst fi) +{ + ChainIterRec ci; + int frame_no; + ExtraDataRec d; + + ChainIterInit (&ci, &fi->cm); + + while (ChainIterGetNext (&ci, &frame_no, &d)) + { + register XimFrameType type; + type = fi->_template[frame_no].type; + if (type == ITER) + { + if (d.iter) + IterReset (d.iter); + /*endif*/ + } + else if (type == POINTER) + { + if (d.fi) + FrameInstReset (d.fi); + /*endif*/ + } + /*endif*/ + } + /*endwhile*/ + ChainIterFree (&ci); + + fi->cur_no = 0; +} + +static Iter IterInit (XimFrame frame, int count) +{ + Iter it; + register XimFrameType type; + + it = (Iter) Xmalloc (sizeof (IterRec)); + it->_template = frame; + it->max_count = (count == NO_VALUE) ? 0 : count; + it->allow_expansion = (count == NO_VALUE); + it->cur_no = 0; + it->start_watch_proc = NULL; + it->client_data = NULL; + it->start_counter = False; + + type = frame->type; + if (type & COUNTER_MASK) + { + /* COUNTER_XXX cannot be an item of a ITER */ + Xfree (it); + return NULL; + } + /*endif*/ + + switch (type) + { + case BIT8: + case BIT16: + case BIT32: + case BIT64: + /* Do nothing */ + break; + + case BARRAY: + case ITER: + case POINTER: + ChainMgrInit (&it->cm); + break; + + default: + Xfree (it); + return NULL; /* This should never occur */ + } + /*endswitch*/ + return it; +} + +static void IterFree (Iter it) +{ + switch (it->_template->type) + { + case BARRAY: + ChainMgrFree (&it->cm); + break; + + case ITER: + { + ChainIterRec ci; + int count; + ExtraDataRec d; + + ChainIterInit (&ci, &it->cm); + while (ChainIterGetNext (&ci, &count, &d)) + IterFree (d.iter); + /*endwhile*/ + ChainIterFree (&ci); + ChainMgrFree (&it->cm); + } + break; + + case POINTER: + { + ChainIterRec ci; + int count; + ExtraDataRec dr; + + ChainIterInit (&ci, &it->cm); + while (ChainIterGetNext (&ci, &count, &dr)) + FrameInstFree (dr.fi); + /*endwhile*/ + ChainIterFree (&ci); + ChainMgrFree (&it->cm); + } + break; + + default: + break; + } + /*endswitch*/ + Xfree (it); +} + +static Bool IterIsLoopEnd (Iter it, Bool *myself) +{ + Bool ret = False; + *myself = False; + + if (!it->allow_expansion && (it->cur_no == it->max_count)) + { + *myself = True; + return True; + } + /*endif*/ + + if (it->_template->type == POINTER) + { + ExtraData d = ChainMgrGetExtraData (&it->cm, it->cur_no); + if (d) + { + if (FrameInstIsIterLoopEnd (d->fi)) + { + ret = True; + } + else + { + if (FrameInstIsEnd (d->fi)) + { + it->cur_no++; + if (!it->allow_expansion && it->cur_no == it->max_count) + { + *myself = True; + ret = True; + } + /*endif*/ + } + /*endif*/ + } + /*endif*/ + } + /*endif*/ + } + else if (it->_template->type == ITER) + { + ExtraData d = ChainMgrGetExtraData (&it->cm, it->cur_no); + if (d) + { + Bool yourself; + + if (IterIsLoopEnd (d->iter, &yourself)) + ret = True; + /*endif*/ + } + /*endif*/ + } + /*endif*/ + + return ret; +} + +static XimFrameType IterGetNextType (Iter it, XimFrameTypeInfo info) +{ + XimFrameType type = it->_template->type; + + if (it->start_counter) + { + (*it->start_watch_proc) (it, it->client_data); + it->start_counter = False; + } + /*endif*/ + if (it->cur_no >= it->max_count) + { + if (it->allow_expansion) + it->max_count = it->cur_no + 1; + else + return EOL; + /*endif*/ + } + /*endif*/ + + switch (type) + { + case BIT8: + case BIT16: + case BIT32: + case BIT64: + it->cur_no++; + return type; + + case BARRAY: + if (info) + { + ExtraData d; + + if ((d = ChainMgrGetExtraData (&it->cm, it->cur_no)) == NULL) + info->num = NO_VALUE; + else + info->num = d->num; + /*endif*/ + } + /*endif*/ + it->cur_no++; + return BARRAY; + + case ITER: + { + XimFrameType ret_type; + ExtraData d; + ExtraDataRec dr; + + if ((d = ChainMgrGetExtraData (&it->cm, it->cur_no)) == NULL) + { + dr.iter = IterInit (it->_template + 1, NO_VALUE); + d = ChainMgrSetData (&it->cm, it->cur_no, dr); + } + /*endif*/ + + ret_type = IterGetNextType (d->iter, info); + if (ret_type == EOL) + { + it->cur_no++; + ret_type = IterGetNextType (it, info); + } + /*endif*/ + return ret_type; + } + + case POINTER: + { + XimFrameType ret_type; + ExtraData d; + ExtraDataRec dr; + + if ((d = ChainMgrGetExtraData (&it->cm, it->cur_no)) == NULL) + { + dr.fi = FrameInstInit (it->_template[1].data); + d = ChainMgrSetData (&it->cm, it->cur_no, dr); + } + /*endif*/ + + ret_type = FrameInstGetNextType (d->fi, info); + if (ret_type == EOL) + { + it->cur_no++; + ret_type = IterGetNextType (it, info); + } + /*endif*/ + return ret_type; + } + + default: + return (XimFrameType) NULL; + } + /*endswitch*/ + return (XimFrameType) NULL; /* This should never occur */ +} + +static XimFrameType IterPeekNextType (Iter it, XimFrameTypeInfo info) +{ + XimFrameType type = it->_template->type; + + if (!it->allow_expansion && it->cur_no >= it->max_count) + return (EOL); + /*endif*/ + + switch (type) + { + case BIT8: + case BIT16: + case BIT32: + case BIT64: + return type; + + case BARRAY: + if (info) + { + ExtraData d; + + if ((d = ChainMgrGetExtraData (&it->cm, it->cur_no)) == NULL) + info->num = NO_VALUE; + else + info->num = d->num; + /*endif*/ + } + /*endif*/ + return BARRAY; + + case ITER: + { + XimFrameType ret_type; + ExtraData d; + ExtraDataRec dr; + + if ((d = ChainMgrGetExtraData (&it->cm, it->cur_no)) == NULL) + { + dr.iter = IterInit (it->_template + 1, NO_VALUE); + d = ChainMgrSetData (&it->cm, it->cur_no, dr); + } + /*endif*/ + + ret_type = IterPeekNextType (d->iter, info); + if (ret_type == EOL) + ret_type = IterPeekNextType (it, info); + /*endif*/ + return ret_type; + } + + case POINTER: + { + XimFrameType ret_type; + ExtraData d; + ExtraDataRec dr; + + if ((d = ChainMgrGetExtraData (&it->cm, it->cur_no)) == NULL) + { + dr.fi = FrameInstInit (it->_template[1].data); + d = ChainMgrSetData (&it->cm, it->cur_no, dr); + } + /*endif*/ + + ret_type = FrameInstPeekNextType (d->fi, info); + if (ret_type == EOL) + ret_type = IterPeekNextType (it, info); + /*endif*/ + return (ret_type); + } + + default: + break; + } + /*endswitch*/ + /* Reaching here is a bug! */ + return (XimFrameType) NULL; +} + +static FmStatus IterSetSize (Iter it, int num) +{ + XimFrameType type; + register int i; + + if (!it->allow_expansion && it->max_count == 0) + return FmNoMoreData; + /*endif*/ + + type = it->_template->type; + switch (type) + { + case BARRAY: + { + ExtraData d; + ExtraDataRec dr; + + for (i = 0; i < it->max_count; i++) + { + if ((d = ChainMgrGetExtraData (&it->cm, i)) == NULL) + { + dr.num = NO_VALUE; + d = ChainMgrSetData (&it->cm, i, dr); + } + /*endif*/ + if (d->num == NO_VALUE) + { + d->num = num; + return FmSuccess; + } + /*endif*/ + } + /*endfor*/ + if (it->allow_expansion) + { + ExtraDataRec dr; + + dr.num = num; + ChainMgrSetData (&it->cm, it->max_count, dr); + it->max_count++; + + return FmSuccess; + } + /*endif*/ + } + return FmNoMoreData; + + case ITER: + { + ExtraData d; + ExtraDataRec dr; + + for (i = 0; i < it->max_count; i++) + { + if ((d = ChainMgrGetExtraData (&it->cm, i)) == NULL) + { + dr.iter = IterInit (it->_template + 1, NO_VALUE); + d = ChainMgrSetData (&it->cm, i, dr); + } + /*endif*/ + if (IterSetSize (d->iter, num) == FmSuccess) + return FmSuccess; + /*endif*/ + } + /*endfor*/ + if (it->allow_expansion) + { + ExtraDataRec dr; + + dr.iter = IterInit (it->_template + 1, NO_VALUE); + ChainMgrSetData (&it->cm, it->max_count, dr); + it->max_count++; + + if (IterSetSize(dr.iter, num) == FmSuccess) + return FmSuccess; + /*endif*/ + } + /*endif*/ + } + return FmNoMoreData; + + case POINTER: + { + ExtraData d; + ExtraDataRec dr; + + for (i = 0; i < it->max_count; i++) + { + if ((d = ChainMgrGetExtraData (&it->cm, i)) == NULL) + { + dr.fi = FrameInstInit (it->_template[1].data); + d = ChainMgrSetData (&it->cm, i, dr); + } + /*endif*/ + if (FrameInstSetSize (d->fi, num) == FmSuccess) + return FmSuccess; + /*endif*/ + } + /*endfor*/ + if (it->allow_expansion) + { + ExtraDataRec dr; + + dr.fi = FrameInstInit (it->_template[1].data); + ChainMgrSetData (&it->cm, it->max_count, dr); + it->max_count++; + + if (FrameInstSetSize (dr.fi, num) == FmSuccess) + return FmSuccess; + /*endif*/ + } + /*endif*/ + } + return FmNoMoreData; + + default: + break; + } + /*endswitch*/ + return FmNoMoreData; +} + +static int IterGetSize (Iter it) +{ + register int i; + ExtraData d; + ExtraDataRec dr; + + if (it->cur_no >= it->max_count) + return NO_VALID_FIELD; + /*endif*/ + + switch (it->_template->type) + { + case BARRAY: + if ((d = ChainMgrGetExtraData (&it->cm, it->cur_no)) == NULL) + return NO_VALUE; + /*endif*/ + return d->num; + + case ITER: + for (i = it->cur_no; i < it->max_count; i++) + { + int ret_size; + + if ((d = ChainMgrGetExtraData (&it->cm, i)) == NULL) + { + dr.iter = IterInit (it->_template + 1, NO_VALUE); + d = ChainMgrSetData (&it->cm, i, dr); + } + /*endif*/ + ret_size = IterGetSize (d->iter); + if (ret_size != NO_VALID_FIELD) + return ret_size; + /*endif*/ + } + /*endfor*/ + return NO_VALID_FIELD; + + case POINTER: + for (i = it->cur_no; i < it->max_count; i++) + { + int ret_size; + + if ((d = ChainMgrGetExtraData (&it->cm, i)) == NULL) + { + dr.fi = FrameInstInit (it->_template[1].data); + d = ChainMgrSetData (&it->cm, i, dr); + } + /*endif*/ + ret_size = FrameInstGetSize (d->fi); + if (ret_size != NO_VALID_FIELD) + return ret_size; + /*endif*/ + } + /*endfor*/ + return NO_VALID_FIELD; + + default: + break; + } + /*endswitch*/ + return NO_VALID_FIELD; +} + +static FmStatus IterSetIterCount (Iter it, int num) +{ + register int i; + + if (it->allow_expansion) + { + it->max_count = num; + it->allow_expansion = False; + return FmSuccess; + } + /*endif*/ + + if (it->max_count == 0) + return FmNoMoreData; + /*endif*/ + + switch (it->_template->type) + { + case ITER: + for (i = 0; i < it->max_count; i++) + { + ExtraData d; + ExtraDataRec dr; + + if ((d = ChainMgrGetExtraData(&it->cm, i)) == NULL) + { + dr.iter = IterInit(it->_template + 1, num); + (void)ChainMgrSetData(&it->cm, i, dr); + return FmSuccess; + } + /*endif*/ + if (IterSetIterCount(d->iter, num) == FmSuccess) + return FmSuccess; + /*endif*/ + } + /*endfor*/ + if (it->allow_expansion) + { + ExtraDataRec dr; + + dr.iter = IterInit (it->_template + 1, num); + ChainMgrSetData (&it->cm, it->max_count, dr); + it->max_count++; + + return FmSuccess; + } + /*endif*/ + break; + + case POINTER: + for (i = 0; i < it->max_count; i++) + { + ExtraData d; + ExtraDataRec dr; + + if ((d = ChainMgrGetExtraData (&it->cm, i)) == NULL) + { + dr.fi = FrameInstInit (it->_template[1].data); + d = ChainMgrSetData (&it->cm, i, dr); + } + /*endif*/ + if (FrameInstSetIterCount (d->fi, num) == FmSuccess) + return FmSuccess; + /*endif*/ + } + /*endfor*/ + if (it->allow_expansion) + { + ExtraDataRec dr; + + dr.fi = FrameInstInit (it->_template[1].data); + ChainMgrSetData (&it->cm, it->max_count, dr); + it->max_count++; + + if (FrameInstSetIterCount (dr.fi, num) == FmSuccess) + return FmSuccess; + /*endif*/ + } + /*endif*/ + break; + + default: + break; + } + /*endswitch*/ + return FmNoMoreData; +} + +static int IterGetTotalSize (Iter it) +{ + register int size, i; + XimFrameType type; + + if (it->allow_expansion) + return NO_VALUE; + /*endif*/ + if (it->max_count == 0) + return 0; + /*endif*/ + + size = 0; + type = it->_template->type; + + switch (type) + { + case BIT8: + size = it->max_count; + break; + + case BIT16: + size = it->max_count*2; + break; + + case BIT32: + size = it->max_count*4; + break; + + case BIT64: + size = it->max_count*8; + break; + + case BARRAY: + for (i = 0; i < it->max_count; i++) + { + register int num; + ExtraData d; + + if ((d = ChainMgrGetExtraData (&it->cm, i)) == NULL) + return NO_VALUE; + /*endif*/ + if ((num = d->num) == NO_VALUE) + return NO_VALUE; + /*endif*/ + size += num; + } + /*endfor*/ + break; + + case ITER: + for (i = 0; i < it->max_count; i++) + { + register int num; + ExtraData d; + + if ((d = ChainMgrGetExtraData (&it->cm, i)) == NULL) + return NO_VALUE; + /*endif*/ + if ((num = IterGetTotalSize (d->iter)) == NO_VALUE) + return NO_VALUE; + /*endif*/ + size += num; + } + /*endfor*/ + break; + + case POINTER: + for (i = 0; i < it->max_count; i++) + { + register int num; + ExtraData d; + ExtraDataRec dr; + + if ((d = ChainMgrGetExtraData (&it->cm, i)) == NULL) + { + dr.fi = FrameInstInit (it->_template[1].data); + d = ChainMgrSetData (&it->cm, i, dr); + } + /*endif*/ + if ((num = FrameInstGetTotalSize (d->fi)) == NO_VALUE) + return NO_VALUE; + /*endif*/ + size += num; + } + /*endfor*/ + break; + + default: + break; + } + /*endswitch*/ + return size; +} + +static void IterReset (Iter it) +{ + ChainIterRec ci; + int count; + ExtraDataRec d; + + switch (it->_template->type) + { + case ITER: + ChainIterInit (&ci, &it->cm); + while (ChainIterGetNext (&ci, &count, &d)) + IterReset (d.iter); + /*endwhile*/ + ChainIterFree (&ci); + break; + + case POINTER: + ChainIterInit (&ci, &it->cm); + while (ChainIterGetNext (&ci, &count, &d)) + FrameInstReset (d.fi); + /*endwhile*/ + ChainIterFree (&ci); + break; + + default: + break; + } + /*endswitch*/ + it->cur_no = 0; +} + +static void IterSetStartWatch (Iter it, + IterStartWatchProc proc, + void *client_data) +{ + it->start_watch_proc = proc; + it->client_data = client_data; +} + +static ExtraData ChainMgrSetData (ChainMgr cm, + int frame_no, + ExtraDataRec data) +{ + Chain cur = (Chain) Xmalloc (sizeof (ChainRec)); + + cur->frame_no = frame_no; + cur->d = data; + cur->next = NULL; + + if (cm->top == NULL) + { + cm->top = cm->tail = cur; + } + else + { + cm->tail->next = cur; + cm->tail = cur; + } + /*endif*/ + return &cur->d; +} + +static ExtraData ChainMgrGetExtraData (ChainMgr cm, int frame_no) +{ + Chain cur; + + cur = cm->top; + + while (cur) + { + if (cur->frame_no == frame_no) + return &cur->d; + /*endif*/ + cur = cur->next; + } + /*endwhile*/ + return NULL; +} + +static Bool ChainIterGetNext (ChainIter ci, int *frame_no, ExtraData d) +{ + if (ci->cur == NULL) + return False; + /*endif*/ + + *frame_no = ci->cur->frame_no; + *d = ci->cur->d; + + ci->cur = ci->cur->next; + + return True; +} + +static int _FrameInstIncrement (XimFrame frame, int count) +{ + XimFrameType type; + + type = frame[count].type; + type &= ~COUNTER_MASK; + + switch (type) + { + case BIT8: + case BIT16: + case BIT32: + case BIT64: + case BARRAY: + case PADDING: + return count + 1; + + case POINTER: + return count + 2; + + case ITER: + return _FrameInstIncrement (frame, count + 1); + default: + break; + } + /*endswitch*/ + return - 1; /* Error */ +} + +static int _FrameInstDecrement (XimFrame frame, int count) +{ + register int i; + XimFrameType type; + + if (count == 0) + return - 1; /* cannot decrement */ + /*endif*/ + + if (count == 1) + return 0; /* BOGUS - It should check the contents of data */ + /*endif*/ + + type = frame[count - 2].type; + type &= ~COUNTER_MASK; + + switch (type) + { + case BIT8: + case BIT16: + case BIT32: + case BIT64: + case BARRAY: + case PADDING: + case PTR_ITEM: + return count - 1; + + case POINTER: + case ITER: + i = count - 3; + while (i >= 0) + { + if (frame[i].type != ITER) + return i + 1; + /*endif*/ + i--; + } + /*endwhile*/ + return 0; + default: + break; + } + /*enswitch*/ + return - 1; /* Error */ +} + +static int _FrameInstGetItemSize (FrameInst fi, int cur_no) +{ + XimFrameType type; + + type = fi->_template[cur_no].type; + type &= ~COUNTER_MASK; + + switch (type) + { + case BIT8: + return 1; + + case BIT16: + return 2; + + case BIT32: + return 4; + + case BIT64: + return 8; + + case BARRAY: + { + ExtraData d; + + if ((d = ChainMgrGetExtraData (&fi->cm, cur_no)) == NULL) + return NO_VALUE; + /*endif*/ + if (d->num == NO_VALUE) + return NO_VALUE; + /*endif*/ + return d->num; + } + + case PADDING: + { + register int unit; + register int number; + register int size; + register int i; + + unit = _UNIT ((long) fi->_template[cur_no].data); + number = _NUMBER ((long) fi->_template[cur_no].data); + + i = cur_no; + size = 0; + while (number > 0) + { + i = _FrameInstDecrement (fi->_template, i); + size += _FrameInstGetItemSize (fi, i); + number--; + } + /*endwhile*/ + size = (unit - (size%unit))%unit; + return size; + } + + case ITER: + { + ExtraData d; + int sub_size; + + if ((d = ChainMgrGetExtraData (&fi->cm, cur_no)) == NULL) + return NO_VALUE; + /*endif*/ + sub_size = IterGetTotalSize (d->iter); + if (sub_size == NO_VALUE) + return NO_VALUE; + /*endif*/ + return sub_size; + } + + case POINTER: + { + ExtraData d; + int sub_size; + + if ((d = ChainMgrGetExtraData (&fi->cm, cur_no)) == NULL) + return NO_VALUE; + /*endif*/ + sub_size = FrameInstGetTotalSize (d->fi); + if (sub_size == NO_VALUE) + return NO_VALUE; + /*endif*/ + return sub_size; + } + + default: + break; + } + /*endswitch*/ + return NO_VALUE; +} + +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/frontend/xim/lib/FrameMgr.h fcitx-4.1.1/src/frontend/xim/lib/FrameMgr.h --- fcitx-4.0.1/src/frontend/xim/lib/FrameMgr.h 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/frontend/xim/lib/FrameMgr.h 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,133 @@ +/****************************************************************** +Copyright 1993, 1994 by Digital Equipment Corporation, Maynard, Massachusetts, + + All Rights Reserved + +Permission to use, copy, modify, and distribute this software and its +documentation for any purpose and without fee is hereby granted, +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 Digital or MIT not be +used in advertising or publicity pertaining to distribution of the +software without specific, written prior permission. + +DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING +ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL +DIGITAL 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. + + Author: Hiroyuki Miyamoto Digital Equipment Corporation + miyamoto@jrd.dec.com + + This version tidied and debugged by Steve Underwood May 1999 + +******************************************************************/ + +#ifndef FRAMEMGR_H +#define FRAMEMGR_H + +#include +#include +#include + +#if defined(VAXC) && !defined(__DECC) +#define xim_externalref globalref +#define xim_externaldef globaldef +#else +#define xim_externalref extern +#define xim_externaldef +#endif + +/* Definitions for FrameMgr */ + +#define COUNTER_MASK 0x10 + +typedef enum +{ + BIT8 = 0x1, /* {CARD8* | INT8*} */ + BIT16 = 0x2, /* {CARD16* | INT16*} */ + BIT32 = 0x3, /* {CARD32* | INT32*} */ + BIT64 = 0x4, /* {CARD64* | INT64*} */ + BARRAY = 0x5, /* int*, void* */ + ITER = 0x6, /* int* */ + POINTER = 0x7, /* specifies next item is a PTR_ITEM */ + PTR_ITEM = 0x8, /* specifies the item has a pointer */ + /* BOGUS - POINTER and PTR_ITEM + * In the current implementation, PTR_ITEM should be lead by + * POINTER. But actually, it's just redundant logically. Someone + * may remove this redundancy and POINTER from the enum member but he + * should also modify the logic in FrameMgr program. + */ + PADDING = 0x9, /* specifies that a padding is needed. + * This requires extra data in data field. + */ + EOL = 0xA, /* specifies the end of list */ + + COUNTER_BIT8 = COUNTER_MASK | 0x1, + COUNTER_BIT16 = COUNTER_MASK | 0x2, + COUNTER_BIT32 = COUNTER_MASK | 0x3, + COUNTER_BIT64 = COUNTER_MASK | 0x4 +} XimFrameType; + +/* Convenient macro */ +#define _FRAME(a) {a, NULL} +#define _PTR(p) {PTR_ITEM, (void *)p} +/* PADDING's usage of data field + * B15-B8 : Shows the number of effective items. + * B7-B0 : Shows padding unit. ex) 04 shows 4 unit padding. + */ +#define _PAD2(n) {PADDING, (void*)((n)<<8|2)} +#define _PAD4(n) {PADDING, (void*)((n)<<8|4)} + +#define FmCounterByte 0 +#define FmCounterNumber 1 + +#define _BYTE_COUNTER(type, offset) \ + {(COUNTER_MASK|type), (void*)((offset)<<8|FmCounterByte)} + +#define _NUMBER_COUNTER(type, offset) \ + {(COUNTER_MASK|type), (void*)((offset)<<8|FmCounterNumber)} + +typedef struct _XimFrame +{ + XimFrameType type; + void* data; /* For PTR_ITEM and PADDING */ +} XimFrameRec, *XimFrame; + +typedef enum +{ + FmSuccess, + FmEOD, + FmInvalidCall, + FmBufExist, + FmCannotCalc, + FmNoMoreData +} FmStatus; + +typedef struct _FrameMgr *FrameMgr; + +FrameMgr FrameMgrInit(XimFrame frame, char* area, Bool byte_swap); +void FrameMgrInitWithData(FrameMgr fm, XimFrame frame, void* area, + Bool byte_swap); +void FrameMgrFree(FrameMgr fm); +FmStatus FrameMgrSetBuffer(FrameMgr, void*); +FmStatus _FrameMgrPutToken(FrameMgr, void*, int); +FmStatus _FrameMgrGetToken(FrameMgr, void*, int); +FmStatus FrameMgrSetSize(FrameMgr, int); +FmStatus FrameMgrSetIterCount(FrameMgr, int); +FmStatus FrameMgrSetTotalSize(FrameMgr, int); +int FrameMgrGetTotalSize(FrameMgr); +int FrameMgrGetSize(FrameMgr); +FmStatus FrameMgrSkipToken(FrameMgr, int); +void FrameMgrReset(FrameMgr); +Bool FrameMgrIsIterLoopEnd(FrameMgr, FmStatus*); + +#define FrameMgrPutToken(fm, obj) _FrameMgrPutToken((fm), &(obj), sizeof(obj)) +#define FrameMgrGetToken(fm, obj) _FrameMgrGetToken((fm), &(obj), sizeof(obj)) + +#endif /* FRAMEMGR_H */ + +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/frontend/xim/lib/i18nAttr.c fcitx-4.1.1/src/frontend/xim/lib/i18nAttr.c --- fcitx-4.0.1/src/frontend/xim/lib/i18nAttr.c 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/frontend/xim/lib/i18nAttr.c 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,177 @@ +/****************************************************************** + + Copyright 1994, 1995 by Sun Microsystems, Inc. + Copyright 1993, 1994 by Hewlett-Packard Company + +Permission to use, copy, modify, distribute, and sell this software +and its documentation for any purpose is hereby granted without fee, +provided that the above copyright notice appear in all copies and +that both that copyright notice and this permission notice appear +in supporting documentation, and that the name of Sun Microsystems, Inc. +and Hewlett-Packard not be used in advertising or publicity pertaining to +distribution of the software without specific, written prior permission. +Sun Microsystems, Inc. and Hewlett-Packard make no representations about +the suitability of this software for any purpose. It is provided "as is" +without express or implied warranty. + +SUN MICROSYSTEMS INC. AND HEWLETT-PACKARD COMPANY DISCLAIMS ALL +WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL +SUN MICROSYSTEMS, INC. AND HEWLETT-PACKARD COMPANY 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. + + Author: Hidetoshi Tajima(tajima@Eng.Sun.COM) Sun Microsystems, Inc. + + This version tidied and debugged by Steve Underwood May 1999 + +******************************************************************/ + +#include +#include +#include "IMdkit.h" +#include "Xi18n.h" +#include "XimFunc.h" + +typedef struct +{ + char *name; + CARD16 type; +} IMListOfAttr; + +typedef struct +{ + char *name; + CARD8 major_opcode; + CARD8 minor_opcode; +} IMExtList; + +IMListOfAttr Default_IMattr[] = +{ + {XNQueryInputStyle, XimType_XIMStyles}, + /* {XNQueryIMValuesList, XimType_XIMValuesList}, */ + {(char *) NULL, (CARD16) 0} +}; + +IMListOfAttr Default_ICattr[] = +{ + {XNInputStyle, XimType_CARD32}, + {XNClientWindow, XimType_Window}, + {XNFocusWindow, XimType_Window}, + {XNFilterEvents, XimType_CARD32}, + {XNPreeditAttributes, XimType_NEST}, + {XNStatusAttributes, XimType_NEST}, + {XNFontSet, XimType_XFontSet}, + {XNArea, XimType_XRectangle}, + {XNAreaNeeded, XimType_XRectangle}, + {XNColormap, XimType_CARD32}, + {XNStdColormap, XimType_CARD32}, + {XNForeground, XimType_CARD32}, + {XNBackground, XimType_CARD32}, + {XNBackgroundPixmap, XimType_CARD32}, + {XNSpotLocation, XimType_XPoint}, + {XNLineSpace, XimType_CARD32}, + {XNPreeditState, XimType_CARD32}, + {XNSeparatorofNestedList, XimType_SeparatorOfNestedList}, + {(char *)NULL, (CARD16) 0} +}; + +IMExtList Default_Extension[] = +{ + {"XIM_EXT_MOVE", XIM_EXTENSION, XIM_EXT_MOVE}, + {"XIM_EXT_SET_EVENT_MASK", XIM_EXTENSION, XIM_EXT_SET_EVENT_MASK}, + {"XIM_EXT_FORWARD_KEYEVENT", XIM_EXTENSION, XIM_EXT_FORWARD_KEYEVENT}, + {(char *) NULL, (CARD8) 0, (CARD8) 0} +}; + +static void CountAttrList(IMListOfAttr *attr, int *total_count) +{ + *total_count = 0; + + while (attr->name != NULL) + { + attr++; + ++(*total_count); + } +} + +static XIMAttr *CreateAttrList (Xi18n i18n_core, + IMListOfAttr *attr, + int *total_count) +{ + XIMAttr *args, *p; + unsigned int buf_size; + + CountAttrList(attr, total_count); + + buf_size = (unsigned) (*total_count + 1)*sizeof (XIMAttr); + args = (XIMAttr *) malloc (buf_size); + if (!args) + return (XIMAttr *) NULL; + /*endif*/ + memset (args, 0, buf_size); + + for (p = args; attr->name != NULL; attr++, p++) + { + p->name = attr->name; + p->length = strlen (attr->name); + p->type = (CARD16) attr->type; + p->attribute_id = XrmStringToQuark (p->name); + if (strcmp (p->name, XNPreeditAttributes) == 0) + i18n_core->address.preeditAttr_id = p->attribute_id; + else if (strcmp (p->name, XNStatusAttributes) == 0) + i18n_core->address.statusAttr_id = p->attribute_id; + else if (strcmp (p->name, XNSeparatorofNestedList) == 0) + i18n_core->address.separatorAttr_id = p->attribute_id; + /*endif*/ + } + /*endfor*/ + p->name = (char *) NULL; + + return args; +} + +void _Xi18nInitAttrList (Xi18n i18n_core) +{ + XIMAttr *args; + int total_count; + + /* init IMAttr list */ + if (i18n_core->address.xim_attr) + XFree ((char *)i18n_core->address.xim_attr); + /*endif*/ + args = CreateAttrList (i18n_core, Default_IMattr, &total_count); + + i18n_core->address.im_attr_num = total_count; + i18n_core->address.xim_attr = (XIMAttr *)args; + + /* init ICAttr list */ + if (i18n_core->address.xic_attr) + XFree ((char *) i18n_core->address.xic_attr); + /*endif*/ + args = CreateAttrList (i18n_core, Default_ICattr, &total_count); + + i18n_core->address.ic_attr_num = total_count; + i18n_core->address.xic_attr = (XICAttr *) args; +} + +void _Xi18nInitExtension(Xi18n i18n_core) +{ + register int i; + IMExtList *extensions = (IMExtList *) Default_Extension; + XIMExt *ext_list = (XIMExt *) i18n_core->address.extension; + + for (i = 0; extensions->name; i++, ext_list++, extensions++) + { + ext_list->major_opcode = extensions->major_opcode; + ext_list->minor_opcode = extensions->minor_opcode; + ext_list->name = extensions->name; + ext_list->length = strlen(ext_list->name); + } + /*endfor*/ + i18n_core->address.ext_num = i; +} + +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/frontend/xim/lib/i18nClbk.c fcitx-4.1.1/src/frontend/xim/lib/i18nClbk.c --- fcitx-4.0.1/src/frontend/xim/lib/i18nClbk.c 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/frontend/xim/lib/i18nClbk.c 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,520 @@ +/****************************************************************** + + Copyright 1994, 1995 by Sun Microsystems, Inc. + Copyright 1993, 1994 by Hewlett-Packard Company + +Permission to use, copy, modify, distribute, and sell this software +and its documentation for any purpose is hereby granted without fee, +provided that the above copyright notice appear in all copies and +that both that copyright notice and this permission notice appear +in supporting documentation, and that the name of Sun Microsystems, Inc. +and Hewlett-Packard not be used in advertising or publicity pertaining to +distribution of the software without specific, written prior permission. +Sun Microsystems, Inc. and Hewlett-Packard make no representations about +the suitability of this software for any purpose. It is provided "as is" +without express or implied warranty. + +SUN MICROSYSTEMS INC. AND HEWLETT-PACKARD COMPANY DISCLAIMS ALL +WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL +SUN MICROSYSTEMS, INC. AND HEWLETT-PACKARD COMPANY 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. + + Author: Hidetoshi Tajima(tajima@Eng.Sun.COM) Sun Microsystems, Inc. + + This version tidied and debugged by Steve Underwood May 1999 + +******************************************************************/ + +#include +#include "IMdkit.h" +#include "Xi18n.h" +#include "FrameMgr.h" +#include "XimFunc.h" + +int _Xi18nGeometryCallback (XIMS ims, IMProtocol *call_data) +{ + Xi18n i18n_core = ims->protocol; + FrameMgr fm; + extern XimFrameRec geometry_fr[]; + register int total_size; + unsigned char *reply = NULL; + IMGeometryCBStruct *geometry_CB = + (IMGeometryCBStruct *) &call_data->geometry_callback; + CARD16 connect_id = call_data->any.connect_id; + + fm = FrameMgrInit (geometry_fr, + NULL, + _Xi18nNeedSwap (i18n_core, connect_id)); + + total_size = FrameMgrGetTotalSize (fm); + reply = (unsigned char *) malloc (total_size); + if (!reply) + { + _Xi18nSendMessage (ims, connect_id, XIM_ERROR, 0, 0, 0); + return False; + } + /*endif*/ + memset (reply, 0, total_size); + FrameMgrSetBuffer (fm, reply); + + FrameMgrPutToken (fm, connect_id); + FrameMgrPutToken (fm, geometry_CB->icid); + + _Xi18nSendMessage (ims, + connect_id, + XIM_GEOMETRY, + 0, + reply, + total_size); + FrameMgrFree (fm); + XFree (reply); + + /* XIM_GEOMETRY is an asyncronous protocol, + so return immediately. */ + return True; +} + +int _Xi18nPreeditStartCallback (XIMS ims, IMProtocol *call_data) +{ + Xi18n i18n_core = ims->protocol; + FrameMgr fm; + extern XimFrameRec preedit_start_fr[]; + register int total_size; + unsigned char *reply = NULL; + IMPreeditCBStruct *preedit_CB = + (IMPreeditCBStruct*) &call_data->preedit_callback; + CARD16 connect_id = call_data->any.connect_id; + + fm = FrameMgrInit (preedit_start_fr, + NULL, + _Xi18nNeedSwap (i18n_core, connect_id)); + total_size = FrameMgrGetTotalSize (fm); + reply = (unsigned char *) malloc (total_size); + if (!reply) + { + _Xi18nSendMessage(ims, connect_id, XIM_ERROR, 0, 0, 0); + return False; + } + /*endif*/ + memset (reply, 0, total_size); + FrameMgrSetBuffer (fm, reply); + + FrameMgrPutToken (fm, connect_id); + FrameMgrPutToken (fm, preedit_CB->icid); + + _Xi18nSendMessage (ims, + connect_id, + XIM_PREEDIT_START, + 0, + reply, + total_size); + FrameMgrFree (fm); + XFree (reply); + + return True; +} + +int _Xi18nPreeditDrawCallback (XIMS ims, IMProtocol *call_data) +{ + Xi18n i18n_core = ims->protocol; + FrameMgr fm; + extern XimFrameRec preedit_draw_fr[]; + register int total_size; + unsigned char *reply = NULL; + IMPreeditCBStruct *preedit_CB = + (IMPreeditCBStruct *) &call_data->preedit_callback; + XIMPreeditDrawCallbackStruct *draw = + (XIMPreeditDrawCallbackStruct *) &preedit_CB->todo.draw; + CARD16 connect_id = call_data->any.connect_id; + register int feedback_count; + register int i; + BITMASK32 status = 0x0; + + if (draw->text->length == 0) + status = 0x00000001; + else if (draw->text->feedback[0] == 0) + status = 0x00000002; + /*endif*/ + + fm = FrameMgrInit (preedit_draw_fr, + NULL, + _Xi18nNeedSwap (i18n_core, connect_id)); + + /* set length of preedit string */ + FrameMgrSetSize (fm, draw->text->length); + + /* set iteration count for list of feedback */ + for (i = 0; draw->text->feedback[i] != 0; i++) + ; + /*endfor*/ + feedback_count = i; + FrameMgrSetIterCount (fm, feedback_count); + + total_size = FrameMgrGetTotalSize (fm); + reply = (unsigned char *) malloc (total_size); + if (!reply) + { + _Xi18nSendMessage (ims, connect_id, XIM_ERROR, 0, 0, 0); + return False; + } + /*endif*/ + memset (reply, 0, total_size); + FrameMgrSetBuffer (fm, reply); + + FrameMgrPutToken (fm, connect_id); + FrameMgrPutToken (fm, preedit_CB->icid); + FrameMgrPutToken (fm, draw->caret); + FrameMgrPutToken (fm, draw->chg_first); + FrameMgrPutToken (fm, draw->chg_length); + FrameMgrPutToken (fm, status); + FrameMgrPutToken (fm, draw->text->length); + FrameMgrPutToken (fm, draw->text->string); + for (i = 0; i < feedback_count; i++) + FrameMgrPutToken (fm, draw->text->feedback[i]); + /*endfor*/ + + _Xi18nSendMessage (ims, + connect_id, + XIM_PREEDIT_DRAW, + 0, + reply, + total_size); + FrameMgrFree (fm); + XFree (reply); + + /* XIM_PREEDIT_DRAW is an asyncronous protocol, so return immediately. */ + return True; +} + +int _Xi18nPreeditCaretCallback (XIMS ims, IMProtocol *call_data) +{ + Xi18n i18n_core = ims->protocol; + FrameMgr fm; + extern XimFrameRec preedit_caret_fr[]; + register int total_size; + unsigned char *reply = NULL; + IMPreeditCBStruct *preedit_CB = + (IMPreeditCBStruct*) &call_data->preedit_callback; + XIMPreeditCaretCallbackStruct *caret = + (XIMPreeditCaretCallbackStruct *) &preedit_CB->todo.caret; + CARD16 connect_id = call_data->any.connect_id; + + fm = FrameMgrInit (preedit_caret_fr, + NULL, + _Xi18nNeedSwap (i18n_core, connect_id)); + + total_size = FrameMgrGetTotalSize (fm); + reply = (unsigned char *) malloc (total_size); + if (!reply) + { + _Xi18nSendMessage (ims, connect_id, XIM_ERROR, 0, 0, 0); + return False; + } + /*endif*/ + memset (reply, 0, total_size); + FrameMgrSetBuffer (fm, reply); + + FrameMgrPutToken (fm, connect_id); + FrameMgrPutToken (fm, preedit_CB->icid); + FrameMgrPutToken (fm, caret->position); + FrameMgrPutToken (fm, caret->direction); + FrameMgrPutToken (fm, caret->style); + + _Xi18nSendMessage (ims, + connect_id, + XIM_PREEDIT_CARET, + 0, + reply, + total_size); + FrameMgrFree (fm); + XFree (reply); + + return True; +} + +int _Xi18nPreeditDoneCallback (XIMS ims, IMProtocol *call_data) +{ + Xi18n i18n_core = ims->protocol; + FrameMgr fm; + extern XimFrameRec preedit_done_fr[]; + register int total_size; + unsigned char *reply = NULL; + IMPreeditCBStruct *preedit_CB = + (IMPreeditCBStruct *) &call_data->preedit_callback; + CARD16 connect_id = call_data->any.connect_id; + + fm = FrameMgrInit (preedit_done_fr, + NULL, + _Xi18nNeedSwap (i18n_core, connect_id)); + + total_size = FrameMgrGetTotalSize (fm); + reply = (unsigned char *) malloc (total_size); + if (!reply) + { + _Xi18nSendMessage (ims, connect_id, XIM_ERROR, 0, 0, 0); + return False; + } + /*endif*/ + memset (reply, 0, total_size); + FrameMgrSetBuffer (fm, reply); + + FrameMgrPutToken (fm, connect_id); + FrameMgrPutToken (fm, preedit_CB->icid); + + _Xi18nSendMessage (ims, + connect_id, + XIM_PREEDIT_DONE, + 0, + reply, + total_size); + FrameMgrFree (fm); + XFree (reply); + + /* XIM_PREEDIT_DONE is an asyncronous protocol, so return immediately. */ + return True; +} + +int _Xi18nStatusStartCallback (XIMS ims, IMProtocol *call_data) +{ + Xi18n i18n_core = ims->protocol; + FrameMgr fm; + extern XimFrameRec status_start_fr[]; + register int total_size; + unsigned char *reply = NULL; + IMStatusCBStruct *status_CB = + (IMStatusCBStruct*) &call_data->status_callback; + CARD16 connect_id = call_data->any.connect_id; + + fm = FrameMgrInit (status_start_fr, + NULL, + _Xi18nNeedSwap (i18n_core, connect_id)); + total_size = FrameMgrGetTotalSize (fm); + reply = (unsigned char *) malloc (total_size); + if (!reply) + { + _Xi18nSendMessage (ims, connect_id, XIM_ERROR, 0, 0, 0); + return False; + } + /*endif*/ + memset (reply, 0, total_size); + FrameMgrSetBuffer (fm, reply); + + FrameMgrPutToken (fm, connect_id); + FrameMgrPutToken (fm, status_CB->icid); + + _Xi18nSendMessage (ims, + connect_id, + XIM_STATUS_START, + 0, + reply, + total_size); + FrameMgrFree (fm); + XFree (reply); + + /* XIM_STATUS_START is an asyncronous protocol, so return immediately. */ + return True; +} + +int _Xi18nStatusDrawCallback (XIMS ims, IMProtocol *call_data) +{ + Xi18n i18n_core = ims->protocol; + FrameMgr fm = (FrameMgr)0; + extern XimFrameRec status_draw_text_fr[]; + extern XimFrameRec status_draw_bitmap_fr[]; + register int total_size = 0; + unsigned char *reply = NULL; + IMStatusCBStruct *status_CB = + (IMStatusCBStruct *) &call_data->status_callback; + XIMStatusDrawCallbackStruct *draw = + (XIMStatusDrawCallbackStruct *) &status_CB->todo.draw; + CARD16 connect_id = call_data->any.connect_id; + register int feedback_count; + register int i; + BITMASK32 status = 0x0; + + switch (draw->type) + { + case XIMTextType: + fm = FrameMgrInit (status_draw_text_fr, + NULL, + _Xi18nNeedSwap (i18n_core, connect_id)); + + if (draw->data.text->length == 0) + status = 0x00000001; + else if (draw->data.text->feedback[0] == 0) + status = 0x00000002; + /*endif*/ + + /* set length of status string */ + FrameMgrSetSize(fm, draw->data.text->length); + /* set iteration count for list of feedback */ + for (i = 0; draw->data.text->feedback[i] != 0; i++) + ; + /*endfor*/ + feedback_count = i; + FrameMgrSetIterCount (fm, feedback_count); + + total_size = FrameMgrGetTotalSize (fm); + reply = (unsigned char *) malloc (total_size); + if (!reply) + { + _Xi18nSendMessage (ims, connect_id, XIM_ERROR, 0, 0, 0); + return False; + } + /*endif*/ + memset (reply, 0, total_size); + FrameMgrSetBuffer (fm, reply); + + FrameMgrPutToken (fm, connect_id); + FrameMgrPutToken (fm, status_CB->icid); + FrameMgrPutToken (fm, draw->type); + FrameMgrPutToken (fm, status); + FrameMgrPutToken (fm, draw->data.text->length); + FrameMgrPutToken (fm, draw->data.text->string); + for (i = 0; i < feedback_count; i++) + FrameMgrPutToken (fm, draw->data.text->feedback[i]); + /*endfor*/ + break; + + case XIMBitmapType: + fm = FrameMgrInit (status_draw_bitmap_fr, + NULL, + _Xi18nNeedSwap (i18n_core, connect_id)); + + total_size = FrameMgrGetTotalSize (fm); + reply = (unsigned char *) malloc (total_size); + if (!reply) + { + _Xi18nSendMessage (ims, connect_id, XIM_ERROR, 0, 0, 0); + return False; + } + /*endif*/ + memset (reply, 0, total_size); + FrameMgrSetBuffer (fm, reply); + + FrameMgrPutToken (fm, connect_id); + FrameMgrPutToken (fm, status_CB->icid); + FrameMgrPutToken (fm, draw->data.bitmap); + break; + } + /*endswitch*/ + _Xi18nSendMessage (ims, + connect_id, + XIM_STATUS_DRAW, + 0, + reply, + total_size); + FrameMgrFree (fm); + XFree (reply); + + /* XIM_STATUS_DRAW is an asyncronous protocol, so return immediately. */ + return True; +} + +int _Xi18nStatusDoneCallback (XIMS ims, IMProtocol *call_data) +{ + Xi18n i18n_core = ims->protocol; + FrameMgr fm; + extern XimFrameRec status_done_fr[]; + register int total_size; + unsigned char *reply = NULL; + IMStatusCBStruct *status_CB = + (IMStatusCBStruct *) &call_data->status_callback; + CARD16 connect_id = call_data->any.connect_id; + + fm = FrameMgrInit (status_done_fr, + NULL, + _Xi18nNeedSwap (i18n_core, connect_id)); + + total_size = FrameMgrGetTotalSize (fm); + reply = (unsigned char *) malloc (total_size); + if (!reply) + { + _Xi18nSendMessage (ims, connect_id, XIM_ERROR, 0, 0, 0); + return False; + } + /*endif*/ + memset (reply, 0, total_size); + FrameMgrSetBuffer (fm, reply); + + FrameMgrPutToken (fm, connect_id); + FrameMgrPutToken (fm, status_CB->icid); + + _Xi18nSendMessage (ims, + connect_id, + XIM_STATUS_DONE, + 0, + reply, + total_size); + FrameMgrFree (fm); + XFree (reply); + + /* XIM_STATUS_DONE is an asyncronous protocol, so return immediately. */ + return True; +} + +int _Xi18nStringConversionCallback (XIMS ims, IMProtocol *call_data) +{ + Xi18n i18n_core = ims->protocol; + FrameMgr fm; + extern XimFrameRec str_conversion_fr[]; + register int total_size; + unsigned char *reply = NULL; + IMStrConvCBStruct *call_back = + (IMStrConvCBStruct *) &call_data->strconv_callback; + XIMStringConversionCallbackStruct *strconv = + (XIMStringConversionCallbackStruct *) &call_back->strconv; + CARD16 connect_id = call_data->any.connect_id; + + fm = FrameMgrInit (str_conversion_fr, + NULL, + _Xi18nNeedSwap (i18n_core, connect_id)); +#if 0 + /* set length of preedit string */ + FrameMgrSetSize (fm, strconv->text->length); +#endif + total_size = FrameMgrGetTotalSize (fm); + reply = (unsigned char *) malloc (total_size); + if (!reply) + { + _Xi18nSendMessage (ims, connect_id, XIM_ERROR, 0, 0, 0); + return False; + } + /*endif*/ + memset (reply, 0, total_size); + FrameMgrSetBuffer (fm, reply); + + FrameMgrPutToken (fm, connect_id); + FrameMgrPutToken (fm, call_back->icid); + FrameMgrPutToken (fm, strconv->position); + FrameMgrPutToken (fm, strconv->direction); + FrameMgrPutToken (fm, strconv->operation); +#if 0 + FrameMgrPutToken (fm, strconv->text->string); +#endif + _Xi18nSendMessage (ims, connect_id, + XIM_STR_CONVERSION, + 0, + reply, + total_size); + FrameMgrFree (fm); + XFree (reply); + + /* XIM_STR_CONVERSION is a syncronous protocol, + so should wait here for XIM_STR_CONVERSION_REPLY. */ + if (i18n_core->methods.wait (ims, + connect_id, + XIM_STR_CONVERSION_REPLY, + 0) == False) + { + return False; + } + /*endif*/ + return True; +} + +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/frontend/xim/lib/i18nIc.c fcitx-4.1.1/src/frontend/xim/lib/i18nIc.c --- fcitx-4.0.1/src/frontend/xim/lib/i18nIc.c 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/frontend/xim/lib/i18nIc.c 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,1055 @@ +/****************************************************************** + + Copyright 1994, 1995 by Sun Microsystems, Inc. + Copyright 1993, 1994 by Hewlett-Packard Company + +Permission to use, copy, modify, distribute, and sell this software +and its documentation for any purpose is hereby granted without fee, +provided that the above copyright notice appear in all copies and +that both that copyright notice and this permission notice appear +in supporting documentation, and that the name of Sun Microsystems, Inc. +and Hewlett-Packard not be used in advertising or publicity pertaining to +distribution of the software without specific, written prior permission. +Sun Microsystems, Inc. and Hewlett-Packard make no representations about +the suitability of this software for any purpose. It is provided "as is" +without express or implied warranty. + +SUN MICROSYSTEMS INC. AND HEWLETT-PACKARD COMPANY DISCLAIMS ALL +WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL +SUN MICROSYSTEMS, INC. AND HEWLETT-PACKARD COMPANY 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. + + Author: Hidetoshi Tajima(tajima@Eng.Sun.COM) Sun Microsystems, Inc. + + This version tidied and debugged by Steve Underwood May 1999 + +******************************************************************/ + +#include +#include "IMdkit.h" +#include "Xi18n.h" +#include "FrameMgr.h" +#include "XimFunc.h" + +#define IC_SIZE 64 + +/* Set IC values */ +static void SetCardAttribute (XICAttribute *value_ret, + char *p, + XICAttr *ic_attr, + int value_length, + int need_swap) +{ + char *buf; + FrameMgr fm; + + if ((buf = (char *) malloc (value_length)) == NULL) + return; + /*endif*/ + if (value_length == sizeof (CARD8)) + { + memmove (buf, p, value_length); + } + else if (value_length == sizeof (CARD16)) + { + INT16 value; + extern XimFrameRec short_fr[]; + + fm = FrameMgrInit (short_fr, (char *) p, need_swap); + /* get data */ + FrameMgrGetToken (fm, value); + FrameMgrFree (fm); + memmove (buf, &value, value_length); + } + else if (value_length == sizeof(CARD32)) + { + INT32 value; + extern XimFrameRec long_fr[]; + + fm = FrameMgrInit (long_fr, (char *) p, need_swap); + /* get data */ + FrameMgrGetToken (fm, value); + FrameMgrFree (fm); + memmove (buf, &value, value_length); + } + /*endif*/ + value_ret->attribute_id = ic_attr->attribute_id; + value_ret->name = ic_attr->name; + value_ret->name_length = ic_attr->length; + value_ret->type = ic_attr->type; + value_ret->value_length = value_length; + value_ret->value = buf; +} + +static void SetFontAttribute (XICAttribute *value_ret, + char *p, + XICAttr *ic_attr, + int value_length, + int need_swap) +{ + char *buf; + char *base_name; + CARD16 base_length; + FrameMgr fm; + extern XimFrameRec fontset_fr[]; + + fm = FrameMgrInit (fontset_fr, (char *) p, need_swap); + /* get data */ + FrameMgrGetToken (fm, base_length); + FrameMgrSetSize (fm, base_length); + if ((buf = (char *) malloc (base_length + 1)) == NULL) + return; + /*endif*/ + FrameMgrGetToken (fm, base_name); + FrameMgrFree(fm); + strncpy (buf, base_name, base_length); + buf[base_length] = (char) 0; + + value_ret->attribute_id = ic_attr->attribute_id; + value_ret->name = ic_attr->name; + value_ret->name_length = ic_attr->length; + value_ret->type = ic_attr->type; + value_ret->value_length = value_length; + value_ret->value = buf; +} + +static void SetPointAttribute (XICAttribute *value_ret, + char *p, + XICAttr *ic_attr, + int value_length, + int need_swap) +{ + XPoint *buf; + FrameMgr fm; + extern XimFrameRec xpoint_fr[]; + + if ((buf = (XPoint *) malloc (sizeof (XPoint))) == NULL) + return; + /*endif*/ + + fm = FrameMgrInit (xpoint_fr, (char *) p, need_swap); + /* get data */ + FrameMgrGetToken (fm, buf->x); + FrameMgrGetToken (fm, buf->y); + FrameMgrFree (fm); + + memmove (&(buf->x), p, sizeof (INT16)); + p += sizeof (INT16); + memmove (&(buf->y), p, sizeof (INT16)); + + value_ret->attribute_id = ic_attr->attribute_id; + value_ret->name = ic_attr->name; + value_ret->name_length = ic_attr->length; + value_ret->type = ic_attr->type; + value_ret->value_length = value_length; + value_ret->value = (char *) buf; +} + +static void SetRectAttribute (XICAttribute *value_ret, + char *p, + XICAttr *ic_attr, + int value_length, + int need_swap) +{ + XRectangle *buf; + FrameMgr fm; + extern XimFrameRec xrectangle_fr[]; + + if ((buf = (XRectangle *) malloc (sizeof (XRectangle))) == NULL) + return; + /*endif*/ + + fm = FrameMgrInit (xrectangle_fr, (char *) p, need_swap); + /* get data */ + FrameMgrGetToken (fm, buf->x); + FrameMgrGetToken (fm, buf->y); + FrameMgrGetToken (fm, buf->width); + FrameMgrGetToken (fm, buf->height); + FrameMgrFree (fm); + + value_ret->attribute_id = ic_attr->attribute_id; + value_ret->name = ic_attr->name; + value_ret->name_length = ic_attr->length; + value_ret->type = ic_attr->type; + value_ret->value_length = value_length; + value_ret->value = (char *) buf; + + return; +} + +#if 0 +static void SetHotKeyAttribute (XICAttribute *value_ret, + char *p, + XICAttr *ic_attr, + int value_length, + int need_swap) +{ + INT32 list_number; + XIMTriggerKey *hotkeys; + + memmove (&list_number, p, sizeof(INT32)); + p += sizeof(INT32); + + hotkeys = (XIMTriggerKey *) malloc (list_number*sizeof (XIMTriggerKey)); + if (hotkeys == NULL) + return; + /*endif*/ + + memmove (hotkeys, p, list_number*sizeof (XIMTriggerKey)); + + value_ret->attribute_id = ic_attr->attribute_id; + value_ret->name = ic_attr->name; + value_ret->name_length = ic_attr->length; + value_ret->type = ic_attr->type; + value_ret->value_length = value_length; + value_ret->value = (char *) hotkeys; +} +#endif + +/* get IC values */ +static void GetAttrHeader (unsigned char *rec, + XICAttribute *list, + int need_swap) +{ + FrameMgr fm; + extern XimFrameRec attr_head_fr[]; + + fm = FrameMgrInit (attr_head_fr, (char *) rec, need_swap); + /* put data */ + FrameMgrPutToken (fm, list->attribute_id); + FrameMgrPutToken (fm, list->value_length); + FrameMgrFree (fm); +} + +static void GetCardAttribute (char *rec, XICAttribute *list, int need_swap) +{ + FrameMgr fm; + unsigned char *recp = (unsigned char *) rec; + + GetAttrHeader (recp, list, need_swap); + recp += sizeof (CARD16)*2; + + if (list->value_length == sizeof (CARD8)) + { + memmove (recp, list->value, list->value_length); + } + else if (list->value_length == sizeof (CARD16)) + { + INT16 *value = (INT16 *) list->value; + extern XimFrameRec short_fr[]; + + fm = FrameMgrInit (short_fr, (char *) recp, need_swap); + /* put data */ + FrameMgrPutToken (fm, *value); + FrameMgrFree (fm); + } + else if (list->value_length == sizeof (CARD32)) + { + INT32 *value = (INT32 *) list->value; + extern XimFrameRec long_fr[]; + + fm = FrameMgrInit (long_fr, (char *) recp, need_swap); + /* put data */ + FrameMgrPutToken (fm, *value); + FrameMgrFree (fm); + } + /*endif*/ +} + +static void GetFontAttribute(char *rec, XICAttribute *list, int need_swap) +{ + FrameMgr fm; + extern XimFrameRec fontset_fr[]; + char *base_name = (char *) list->value; + unsigned char *recp = (unsigned char *) rec; + + GetAttrHeader (recp, list, need_swap); + recp += sizeof (CARD16)*2; + + fm = FrameMgrInit (fontset_fr, (char *)recp, need_swap); + /* put data */ + FrameMgrSetSize (fm, list->value_length); + FrameMgrPutToken (fm, list->value_length); + FrameMgrPutToken (fm, base_name); + FrameMgrFree (fm); +} + +static void GetRectAttribute (char *rec, XICAttribute *list, int need_swap) +{ + FrameMgr fm; + extern XimFrameRec xrectangle_fr[]; + XRectangle *rect = (XRectangle *) list->value; + unsigned char *recp = (unsigned char *) rec; + + GetAttrHeader (recp, list, need_swap); + recp += sizeof(CARD16)*2; + + fm = FrameMgrInit (xrectangle_fr, (char *) recp, need_swap); + /* put data */ + FrameMgrPutToken (fm, rect->x); + FrameMgrPutToken (fm, rect->y); + FrameMgrPutToken (fm, rect->width); + FrameMgrPutToken (fm, rect->height); + FrameMgrFree (fm); +} + +static void GetPointAttribute (char *rec, XICAttribute *list, int need_swap) +{ + FrameMgr fm; + extern XimFrameRec xpoint_fr[]; + XPoint *rect = (XPoint *) list->value; + unsigned char *recp = (unsigned char *) rec; + + GetAttrHeader (recp, list, need_swap); + recp += sizeof(CARD16)*2; + + fm = FrameMgrInit (xpoint_fr, (char *) recp, need_swap); + /* put data */ + FrameMgrPutToken (fm, rect->x); + FrameMgrPutToken (fm, rect->y); + FrameMgrFree (fm); +} + +static int ReadICValue (Xi18n i18n_core, + CARD16 icvalue_id, + int value_length, + void *p, + XICAttribute *value_ret, + CARD16 *number_ret, + int need_swap) +{ + XICAttr *ic_attr = i18n_core->address.xic_attr; + int i; + + *number_ret = (CARD16) 0; + + for (i = 0; i < i18n_core->address.ic_attr_num; i++, ic_attr++) + { + if (ic_attr->attribute_id == icvalue_id) + break; + /*endif*/ + } + /*endfor*/ + switch (ic_attr->type) + { + case XimType_NEST: + { + int total_length = 0; + CARD16 attribute_ID; + INT16 attribute_length; + unsigned char *p1 = (unsigned char *) p; + CARD16 ic_len = 0; + CARD16 number; + FrameMgr fm; + extern XimFrameRec attr_head_fr[]; + + while (total_length < value_length) + { + fm = FrameMgrInit (attr_head_fr, (char *) p1, need_swap); + /* get data */ + FrameMgrGetToken (fm, attribute_ID); + FrameMgrGetToken (fm, attribute_length); + FrameMgrFree (fm); + p1 += sizeof (CARD16)*2; + ReadICValue (i18n_core, + attribute_ID, + attribute_length, + p1, + (value_ret + ic_len), + &number, + need_swap); + ic_len++; + *number_ret += number; + p1 += attribute_length; + p1 += IMPAD (attribute_length); + total_length += (CARD16) sizeof(CARD16)*2 + + (INT16) attribute_length + + IMPAD (attribute_length); + } + /*endwhile*/ + return ic_len; + } + + case XimType_CARD8: + case XimType_CARD16: + case XimType_CARD32: + case XimType_Window: + SetCardAttribute (value_ret, p, ic_attr, value_length, need_swap); + *number_ret = (CARD16) 1; + return *number_ret; + + case XimType_XFontSet: + SetFontAttribute (value_ret, p, ic_attr, value_length, need_swap); + *number_ret = (CARD16) 1; + return *number_ret; + + case XimType_XRectangle: + SetRectAttribute (value_ret, p, ic_attr, value_length, need_swap); + *number_ret = (CARD16) 1; + return *number_ret; + + case XimType_XPoint: + SetPointAttribute(value_ret, p, ic_attr, value_length, need_swap); + *number_ret = (CARD16) 1; + return *number_ret; + +#if 0 + case XimType_XIMHotKeyTriggers: + SetHotKeyAttribute (value_ret, p, ic_attr, value_length, need_swap); + *number_ret = (CARD16) 1; + return *number_ret; +#endif + } + /*endswitch*/ + return 0; +} + +static XICAttribute *CreateNestedList (CARD16 attr_id, + XICAttribute *list, + int number, + int need_swap) +{ + XICAttribute *nest_list = NULL; + register int i; + char *values = NULL; + char *valuesp; + int value_length = 0; + + if (number == 0) + return NULL; + /*endif*/ + for (i = 0; i < number; i++) + { + value_length += sizeof (CARD16)*2; + value_length += list[i].value_length; + value_length += IMPAD (list[i].value_length); + } + /*endfor*/ + if ((values = (char *) malloc (value_length)) == NULL) + return NULL; + /*endif*/ + memset (values, 0, value_length); + + valuesp = values; + for (i = 0; i < number; i++) + { + switch (list[i].type) + { + case XimType_CARD8: + case XimType_CARD16: + case XimType_CARD32: + case XimType_Window: + GetCardAttribute (valuesp, &list[i], need_swap); + break; + + case XimType_XFontSet: + GetFontAttribute (valuesp, &list[i], need_swap); + break; + + case XimType_XRectangle: + GetRectAttribute (valuesp, &list[i], need_swap); + break; + + case XimType_XPoint: + GetPointAttribute (valuesp, &list[i], need_swap); + break; + +#if 0 + case XimType_XIMHotKeyTriggers: + GetHotKeyAttribute (valuesp, &list[i], need_swap); + break; +#endif + } + /*endswitch*/ + valuesp += sizeof (CARD16)*2; + valuesp += list[i].value_length; + valuesp += IMPAD(list[i].value_length); + } + /*endfor*/ + + nest_list = (XICAttribute *) malloc (sizeof (XICAttribute)); + if (nest_list == NULL) + return NULL; + /*endif*/ + memset (nest_list, 0, sizeof (XICAttribute)); + nest_list->value = (void *) malloc (value_length); + if (nest_list->value == NULL) + return NULL; + /*endif*/ + memset (nest_list->value, 0, sizeof (value_length)); + + nest_list->attribute_id = attr_id; + nest_list->value_length = value_length; + memmove (nest_list->value, values, value_length); + + XFree (values); + return nest_list; +} + +static Bool IsNestedList (Xi18n i18n_core, CARD16 icvalue_id) +{ + XICAttr *ic_attr = i18n_core->address.xic_attr; + int i; + + for (i = 0; i < i18n_core->address.ic_attr_num; i++, ic_attr++) + { + if (ic_attr->attribute_id == icvalue_id) + { + if (ic_attr->type == XimType_NEST) + return True; + /*endif*/ + return False; + } + /*endif*/ + } + /*endfor*/ + return False; +} + +static Bool IsSeparator (Xi18n i18n_core, CARD16 icvalue_id) +{ + return (i18n_core->address.separatorAttr_id == icvalue_id); +} + +static int GetICValue (Xi18n i18n_core, + XICAttribute *attr_ret, + CARD16 *id_list, + int list_num) +{ + XICAttr *xic_attr = i18n_core->address.xic_attr; + register int i; + register int j; + register int n; + + i = + n = 0; + if (IsNestedList (i18n_core, id_list[i])) + { + i++; + while (i < list_num && !IsSeparator (i18n_core, id_list[i])) + { + for (j = 0; j < i18n_core->address.ic_attr_num; j++) + { + if (xic_attr[j].attribute_id == id_list[i]) + { + attr_ret[n].attribute_id = xic_attr[j].attribute_id; + attr_ret[n].name_length = xic_attr[j].length; + attr_ret[n].name = malloc (xic_attr[j].length + 1); + strcpy(attr_ret[n].name, xic_attr[j].name); + attr_ret[n].type = xic_attr[j].type; + n++; + i++; + break; + } + /*endif*/ + } + /*endfor*/ + } + /*endwhile*/ + } + else + { + for (j = 0; j < i18n_core->address.ic_attr_num; j++) + { + if (xic_attr[j].attribute_id == id_list[i]) + { + attr_ret[n].attribute_id = xic_attr[j].attribute_id; + attr_ret[n].name_length = xic_attr[j].length; + attr_ret[n].name = malloc (xic_attr[j].length + 1); + strcpy(attr_ret[n].name, xic_attr[j].name); + attr_ret[n].type = xic_attr[j].type; + n++; + break; + } + /*endif*/ + } + /*endfor*/ + } + /*endif*/ + return n; +} + +/* called from CreateICMessageProc and SetICValueMessageProc */ +void _Xi18nChangeIC (XIMS ims, + IMProtocol *call_data, + unsigned char *p, + int create_flag) +{ + Xi18n i18n_core = ims->protocol; + FrameMgr fm; + FmStatus status; + CARD16 byte_length; + register int total_size; + unsigned char *reply = NULL; + register int i; + register int attrib_num; + XICAttribute *attrib_list; + XICAttribute pre_attr[IC_SIZE]; + XICAttribute sts_attr[IC_SIZE]; + XICAttribute ic_attr[IC_SIZE]; + CARD16 preedit_ic_num = 0; + CARD16 status_ic_num = 0; + CARD16 ic_num = 0; + CARD16 connect_id = call_data->any.connect_id; + IMChangeICStruct *changeic = (IMChangeICStruct *) &call_data->changeic; + extern XimFrameRec create_ic_fr[]; + extern XimFrameRec create_ic_reply_fr[]; + extern XimFrameRec set_ic_values_fr[]; + extern XimFrameRec set_ic_values_reply_fr[]; + CARD16 input_method_ID; + + memset (pre_attr, 0, sizeof (XICAttribute)*IC_SIZE); + memset (sts_attr, 0, sizeof (XICAttribute)*IC_SIZE); + memset (ic_attr, 0, sizeof (XICAttribute)*IC_SIZE); + + if (create_flag == True) + { + fm = FrameMgrInit (create_ic_fr, + (char *) p, + _Xi18nNeedSwap (i18n_core, connect_id)); + /* get data */ + FrameMgrGetToken (fm, input_method_ID); + FrameMgrGetToken (fm, byte_length); + } + else + { + fm = FrameMgrInit (set_ic_values_fr, + (char *) p, + _Xi18nNeedSwap (i18n_core, connect_id)); + /* get data */ + FrameMgrGetToken (fm, input_method_ID); + FrameMgrGetToken (fm, changeic->icid); + FrameMgrGetToken (fm, byte_length); + } + /*endif*/ + attrib_list = (XICAttribute *) malloc (sizeof (XICAttribute)*IC_SIZE); + if (!attrib_list) + { + _Xi18nSendMessage (ims, connect_id, XIM_ERROR, 0, 0, 0); + return; + } + /*endif*/ + memset (attrib_list, 0, sizeof(XICAttribute)*IC_SIZE); + + attrib_num = 0; + while (FrameMgrIsIterLoopEnd (fm, &status) == False) + { + void *value; + int value_length; + + FrameMgrGetToken (fm, attrib_list[attrib_num].attribute_id); + FrameMgrGetToken (fm, value_length); + FrameMgrSetSize (fm, value_length); + attrib_list[attrib_num].value_length = value_length; + FrameMgrGetToken (fm, value); + attrib_list[attrib_num].value = (void *) malloc (value_length + 1); + memmove (attrib_list[attrib_num].value, value, value_length); + ((char *)attrib_list[attrib_num].value)[value_length] = '\0'; + attrib_num++; + } + /*endwhile*/ + + for (i = 0; i < attrib_num; i++) + { + CARD16 number; + + if (IsNestedList (i18n_core, attrib_list[i].attribute_id)) + { + if (attrib_list[i].attribute_id + == i18n_core->address.preeditAttr_id) + { + ReadICValue (i18n_core, + attrib_list[i].attribute_id, + attrib_list[i].value_length, + attrib_list[i].value, + &pre_attr[preedit_ic_num], + &number, + _Xi18nNeedSwap(i18n_core, connect_id)); + preedit_ic_num += number; + } + else if (attrib_list[i].attribute_id == i18n_core->address.statusAttr_id) + { + ReadICValue (i18n_core, + attrib_list[i].attribute_id, + attrib_list[i].value_length, + attrib_list[i].value, + &sts_attr[status_ic_num], + &number, + _Xi18nNeedSwap (i18n_core, connect_id)); + status_ic_num += number; + } + else + { + /* another nested list.. possible? */ + } + /*endif*/ + } + else + { + ReadICValue (i18n_core, + attrib_list[i].attribute_id, + attrib_list[i].value_length, + attrib_list[i].value, + &ic_attr[ic_num], + &number, + _Xi18nNeedSwap (i18n_core, connect_id)); + ic_num += number; + } + /*endif*/ + } + /*endfor*/ + for (i = 0; i < attrib_num; i++) + XFree (attrib_list[i].value); + /*endfor*/ + XFree (attrib_list); + + FrameMgrFree (fm); + + changeic->preedit_attr_num = preedit_ic_num; + changeic->status_attr_num = status_ic_num; + changeic->ic_attr_num = ic_num; + changeic->preedit_attr = pre_attr; + changeic->status_attr = sts_attr; + changeic->ic_attr = ic_attr; + + if (i18n_core->address.improto) + { + if (!(i18n_core->address.improto(ims, call_data))) + return; + /*endif*/ + } + /*endif*/ + if (create_flag == True) + { + fm = FrameMgrInit (create_ic_reply_fr, + NULL, + _Xi18nNeedSwap (i18n_core, connect_id)); + } + else + { + fm = FrameMgrInit (set_ic_values_reply_fr, + NULL, + _Xi18nNeedSwap (i18n_core, connect_id)); + } + /*endif*/ + total_size = FrameMgrGetTotalSize (fm); + reply = (unsigned char *) malloc (total_size); + if (!reply) + { + _Xi18nSendMessage (ims, connect_id, XIM_ERROR, 0, 0, 0); + return; + } + /*endif*/ + memset (reply, 0, total_size); + FrameMgrSetBuffer (fm, reply); + + FrameMgrPutToken (fm, input_method_ID); + FrameMgrPutToken (fm, changeic->icid); + + if (create_flag == True) + { + _Xi18nSendMessage (ims, + connect_id, + XIM_CREATE_IC_REPLY, + 0, + reply, + total_size); + } + else + { + _Xi18nSendMessage (ims, + connect_id, + XIM_SET_IC_VALUES_REPLY, + 0, + reply, + total_size); + } + /*endif*/ + if (create_flag == True) + { + int on_key_num = i18n_core->address.on_keys.count_keys; + int off_key_num = i18n_core->address.off_keys.count_keys; + + if (on_key_num == 0 && off_key_num == 0) + { + long mask; + + if (i18n_core->address.imvalue_mask & I18N_FILTERMASK) + mask = i18n_core->address.filterevent_mask; + else + mask = DEFAULT_FILTER_MASK; + /*endif*/ + /* static event flow is default */ + _Xi18nSetEventMask (ims, + connect_id, + input_method_ID, + changeic->icid, + mask, + ~mask); + } + /*endif*/ + } + /*endif*/ + FrameMgrFree (fm); + XFree(reply); + + /* add by hurrica...@126.com */ + for (i = 0; i < (int) changeic->ic_attr_num; i++) + { + if (changeic->ic_attr[i].value) + XFree (changeic->ic_attr[i].value); + /*endif*/ + } + /*endfor*/ + for (i = 0; i < (int) changeic->preedit_attr_num; i++) + { + if (changeic->preedit_attr[i].value) + XFree (changeic->preedit_attr[i].value); + /*endif*/ + } + /*endfor*/ + for (i = 0; i < (int) changeic->status_attr_num; i++) + { + if (changeic->status_attr[i].value) + XFree (changeic->status_attr[i].value); + /*endif*/ + } + /*endfor*/ + /* *************************************** */ +} + +/* called from GetICValueMessageProc */ +void _Xi18nGetIC (XIMS ims, IMProtocol *call_data, unsigned char *p) +{ + Xi18n i18n_core = ims->protocol; + FrameMgr fm; + FmStatus status; + extern XimFrameRec get_ic_values_fr[]; + extern XimFrameRec get_ic_values_reply_fr[]; + CARD16 byte_length; + register int total_size; + unsigned char *reply = NULL; + XICAttribute *preedit_ret = NULL; + XICAttribute *status_ret = NULL; + register int i; + register int number; + int iter_count; + CARD16 *attrID_list; + XICAttribute pre_attr[IC_SIZE]; + XICAttribute sts_attr[IC_SIZE]; + XICAttribute ic_attr[IC_SIZE]; + CARD16 pre_count = 0; + CARD16 sts_count = 0; + CARD16 ic_count = 0; + IMChangeICStruct *getic = (IMChangeICStruct *) &call_data->changeic; + CARD16 connect_id = call_data->any.connect_id; + CARD16 input_method_ID; + + memset (pre_attr, 0, sizeof (XICAttribute)*IC_SIZE); + memset (sts_attr, 0, sizeof (XICAttribute)*IC_SIZE); + memset (ic_attr, 0, sizeof (XICAttribute)*IC_SIZE); + + fm = FrameMgrInit (get_ic_values_fr, + (char *) p, + _Xi18nNeedSwap (i18n_core, connect_id)); + + /* get data */ + FrameMgrGetToken (fm, input_method_ID); + FrameMgrGetToken (fm, getic->icid); + FrameMgrGetToken (fm, byte_length); + + attrID_list = (CARD16 *) malloc (sizeof (CARD16)*IC_SIZE); /* bogus */ + memset (attrID_list, 0, sizeof (CARD16)*IC_SIZE); + + number = 0; + while (FrameMgrIsIterLoopEnd (fm, &status) == False) + FrameMgrGetToken (fm, attrID_list[number++]); + /*endwhile*/ + FrameMgrFree (fm); + + i = 0; + while (i < number) + { + int read_number; + + if (IsNestedList (i18n_core, attrID_list[i])) + { + if (attrID_list[i] == i18n_core->address.preeditAttr_id) + { + read_number = GetICValue (i18n_core, + &pre_attr[pre_count], + &attrID_list[i], + number); + i += read_number + 1; + pre_count += read_number; + } + else if (attrID_list[i] == i18n_core->address.statusAttr_id) + { + read_number = GetICValue (i18n_core, + &sts_attr[sts_count], + &attrID_list[i], + number); + i += read_number + 1; + sts_count += read_number; + } + else + { + /* another nested list.. possible? */ + } + /*endif*/ + } + else + { + read_number = GetICValue (i18n_core, + &ic_attr[ic_count], + &attrID_list[i], + number); + i += read_number; + ic_count += read_number; + } + /*endif*/ + } + /*endwhile*/ + getic->preedit_attr_num = pre_count; + getic->status_attr_num = sts_count; + getic->ic_attr_num = ic_count; + getic->preedit_attr = pre_attr; + getic->status_attr = sts_attr; + getic->ic_attr = ic_attr; + if (i18n_core->address.improto) + { + if (!(i18n_core->address.improto (ims, call_data))) + return; + /*endif*/ + } + /*endif*/ + iter_count = getic->ic_attr_num; + + preedit_ret = CreateNestedList (i18n_core->address.preeditAttr_id, + getic->preedit_attr, + getic->preedit_attr_num, + _Xi18nNeedSwap (i18n_core, connect_id)); + if (preedit_ret) + iter_count++; + /*endif*/ + status_ret = CreateNestedList (i18n_core->address.statusAttr_id, + getic->status_attr, + getic->status_attr_num, + _Xi18nNeedSwap (i18n_core, connect_id)); + if (status_ret) + iter_count++; + /*endif*/ + + fm = FrameMgrInit (get_ic_values_reply_fr, + NULL, + _Xi18nNeedSwap (i18n_core, connect_id)); + + /* set iteration count for list of ic_attribute */ + FrameMgrSetIterCount (fm, iter_count); + + /* set length of BARRAY item in xicattribute_fr */ + for (i = 0; i < (int) getic->ic_attr_num; i++) + FrameMgrSetSize (fm, ic_attr[i].value_length); + /*endfor*/ + + if (preedit_ret) + FrameMgrSetSize (fm, preedit_ret->value_length); + /*endif*/ + if (status_ret) + FrameMgrSetSize (fm, status_ret->value_length); + /*endif*/ + total_size = FrameMgrGetTotalSize (fm); + reply = (unsigned char *) malloc (total_size); + if (reply == NULL) + { + _Xi18nSendMessage (ims, connect_id, XIM_ERROR, 0, 0, 0); + return; + } + /*endif*/ + memset (reply, 0, total_size); + FrameMgrSetBuffer (fm, reply); + + FrameMgrPutToken (fm, input_method_ID); + FrameMgrPutToken (fm, getic->icid); + + for (i = 0; i < (int) getic->ic_attr_num; i++) + { + FrameMgrPutToken (fm, ic_attr[i].attribute_id); + FrameMgrPutToken (fm, ic_attr[i].value_length); + FrameMgrPutToken (fm, ic_attr[i].value); + } + /*endfor*/ + if (preedit_ret) + { + FrameMgrPutToken (fm, preedit_ret->attribute_id); + FrameMgrPutToken (fm, preedit_ret->value_length); + FrameMgrPutToken (fm, preedit_ret->value); + } + /*endif*/ + if (status_ret) + { + FrameMgrPutToken (fm, status_ret->attribute_id); + FrameMgrPutToken (fm, status_ret->value_length); + FrameMgrPutToken (fm, status_ret->value); + } + /*endif*/ + _Xi18nSendMessage (ims, + connect_id, + XIM_GET_IC_VALUES_REPLY, + 0, + reply, + total_size); + XFree (reply); + XFree (attrID_list); + + for (i = 0; i < (int) getic->ic_attr_num; i++) + { + if (getic->ic_attr[i].name) + XFree (getic->ic_attr[i].name); + /*endif*/ + if (getic->ic_attr[i].value) + XFree (getic->ic_attr[i].value); + /*endif*/ + } + /*endfor*/ + for (i = 0; i < (int) getic->preedit_attr_num; i++) + { + if (getic->preedit_attr[i].name) + XFree (getic->preedit_attr[i].name); + /*endif*/ + if (getic->preedit_attr[i].value) + XFree (getic->preedit_attr[i].value); + /*endif*/ + } + /*endfor*/ + for (i = 0; i < (int) getic->status_attr_num; i++) + { + if (getic->status_attr[i].name) + XFree (getic->status_attr[i].name); + /*endif*/ + if (getic->status_attr[i].value) + XFree (getic->status_attr[i].value); + /*endif*/ + } + /*endfor*/ + + if (preedit_ret) + { + XFree (preedit_ret->value); + XFree (preedit_ret); + } + /*endif*/ + if (status_ret) + { + XFree (status_ret->value); + XFree (status_ret); + } + /*endif*/ + FrameMgrFree (fm); +} + +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/frontend/xim/lib/i18nIMProto.c fcitx-4.1.1/src/frontend/xim/lib/i18nIMProto.c --- fcitx-4.0.1/src/frontend/xim/lib/i18nIMProto.c 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/frontend/xim/lib/i18nIMProto.c 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,758 @@ +/****************************************************************** +Copyright 1993, 1994 by Digital Equipment Corporation, Maynard, Massachusetts, +Copyright 1993, 1994 by Hewlett-Packard Company + +Copyright 1994, 1995 by Sun Microsystems, Inc. + + All Rights Reserved + +Permission to use, copy, modify, and distribute this software and its +documentation for any purpose and without fee is hereby granted, +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 Digital or MIT not be +used in advertising or publicity pertaining to distribution of the +software without specific, written prior permission. + +DIGITAL AND HEWLETT-PACKARD COMPANY DISCLAIMS ALL WARRANTIES WITH REGARD +TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS, IN NO EVENT SHALL DIGITAL AND HEWLETT-PACKARD COMPANY 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. + + Author: Hiroyuki Miyamoto Digital Equipment Corporation + miyamoto@jrd.dec.com + Hidetoshi Tajima(tajima@Eng.Sun.COM) Sun Microsystems, Inc. + + This version tidied and debugged by Steve Underwood May 1999 + +******************************************************************/ + +/* Protocol Packet frames */ + +#include "FrameMgr.h" + +/* Data type definitions */ + +static XimFrameRec ximattr_fr[] = +{ + _FRAME(BIT16), /* attribute ID */ + _FRAME(BIT16), /* type of the value */ + _FRAME(BIT16), /* length of im-attribute */ + _FRAME(BARRAY), /* im-attribute */ + _PAD4(2), + _FRAME(EOL), +}; + +static XimFrameRec xicattr_fr[] = +{ + _FRAME(BIT16), /* attribute ID */ + _FRAME(BIT16), /* type of the value */ + _FRAME(BIT16), /* length of ic-attribute */ + _FRAME(BARRAY), /* ic-attribute */ + _PAD4(2), + _FRAME(EOL), +}; + +static XimFrameRec ximattribute_fr[] = +{ + _FRAME(BIT16), /* attribute ID */ + _FRAME(BIT16), /* value length */ + _FRAME(BARRAY), /* value */ + _PAD4(1), + _FRAME(EOL), +}; + +static XimFrameRec xicattribute_fr[] = +{ + _FRAME(BIT16), /* attribute ID */ + _FRAME(BIT16), /* value length */ + _FRAME(BARRAY), /* value */ + _PAD4(1), + _FRAME(EOL), +}; + +static XimFrameRec ximtriggerkey_fr[] = +{ + _FRAME(BIT32), /* keysym */ + _FRAME(BIT32), /* modifier */ + _FRAME(BIT32), /* modifier mask */ + _FRAME(EOL), +}; + +static XimFrameRec encodinginfo_fr[] = +{ + _FRAME(BIT16), /* length of encoding info */ + _FRAME(BARRAY), /* encoding info */ + _PAD4(2), + _FRAME(EOL), +}; + +static XimFrameRec str_fr[] = +{ + _FRAME(BIT8), /* number of byte */ + _FRAME(BARRAY), /* string */ + _FRAME(EOL), +}; + +static XimFrameRec xpcs_fr[] = +{ + _FRAME(BIT16), /* length of string in bytes */ + _FRAME(BARRAY), /* string */ + _PAD4(2), +}; + +static XimFrameRec ext_fr[] = +{ + _FRAME(BIT16), /* extension major-opcode */ + _FRAME(BIT16), /* extension minor-opcode */ + _FRAME(BIT16), /* length of extension name */ + _FRAME(BARRAY), /* extension name */ + _PAD4(2), + _FRAME(EOL), +}; + +static XimFrameRec inputstyle_fr[] = +{ + _FRAME(BIT32), /* inputstyle */ + _FRAME(EOL), +}; +/* Protocol definitions */ + +xim_externaldef XimFrameRec attr_head_fr[] = +{ + _FRAME(BIT16), /* attribute id */ + _FRAME(BIT16), /* attribute length */ + _FRAME(EOL), +}; + +xim_externaldef XimFrameRec short_fr[] = +{ + _FRAME(BIT16), /* value */ + _FRAME(EOL), +}; + +xim_externaldef XimFrameRec long_fr[] = +{ + _FRAME(BIT32), /* value */ + _FRAME(EOL), +}; + +xim_externaldef XimFrameRec xrectangle_fr[] = +{ + _FRAME(BIT16), /* x */ + _FRAME(BIT16), /* y */ + _FRAME(BIT16), /* width */ + _FRAME(BIT16), /* height */ + _FRAME(EOL), +}; + +xim_externaldef XimFrameRec xpoint_fr[] = +{ + _FRAME(BIT16), /* x */ + _FRAME(BIT16), /* y */ + _FRAME(EOL), +}; + +xim_externaldef XimFrameRec fontset_fr[] = +{ + _FRAME(BIT16), /* length of base font name */ + _FRAME(BARRAY), /* base font name list */ + _PAD4(2), /* unused */ + _FRAME(EOL), +}; + +xim_externaldef XimFrameRec input_styles_fr[] = +{ + _FRAME(BIT16), /* number of list */ + _PAD4(1), /* unused */ + _FRAME(ITER), /* XIMStyle list */ + _FRAME(POINTER), + _PTR(inputstyle_fr), + _FRAME(EOL), +}; + +xim_externaldef XimFrameRec packet_header_fr[] = +{ + _FRAME(BIT8), /* major-opcode */ + _FRAME(BIT8), /* minor-opcode */ + _FRAME(BIT16), /* length */ + _FRAME(EOL), +}; + +xim_externaldef XimFrameRec error_fr[] = +{ + _FRAME(BIT16), /* input-method-ID */ + _FRAME(BIT16), /* input-context-ID */ + _FRAME(BIT16), /* flag */ + _FRAME(BIT16), /* Error Code */ + _FRAME(BIT16), /* length of error detail */ + _FRAME(BIT16), /* type of error detail */ + _FRAME(BARRAY), /* error detail */ + _PAD4(1), + _FRAME(EOL), +}; + +xim_externaldef XimFrameRec connect_fr[] = +{ + _FRAME(BIT8), /* byte order */ + _PAD2(1), /* unused */ + _FRAME(BIT16), /* client-major-protocol-version */ + _FRAME(BIT16), /* client-minor-protocol-version */ + _BYTE_COUNTER(BIT16, 1), /* length of client-auth-protocol-names */ + _FRAME(ITER), /* client-auth-protocol-names */ + _FRAME(POINTER), + _PTR(xpcs_fr), + _FRAME(EOL), +}; + +xim_externaldef XimFrameRec connect_reply_fr[] = +{ + _FRAME(BIT16), /* server-major-protocol-version */ + _FRAME(BIT16), /* server-minor-protocol-version */ + _FRAME(EOL), +}; + +xim_externaldef XimFrameRec auth_required_fr[] = +{ + _FRAME(BIT8), /* auth-protocol-index */ + _FRAME(BIT8), /* auth-data1 */ + _FRAME(BARRAY), /* auth-data2 */ + _PAD4(3), + _FRAME(EOL), +}; + + +xim_externaldef XimFrameRec auth_reply_fr[] = +{ + _FRAME(BIT8), + _FRAME(BARRAY), + _PAD4(2), + _FRAME(EOL), +}; + +xim_externaldef XimFrameRec auth_next_fr[] = +{ + _FRAME(BIT8), /* auth-data1 */ + _FRAME(BARRAY), /* auth-data2 */ + _PAD4(2), + _FRAME(EOL), +}; + +xim_externaldef XimFrameRec auth_setup_fr[] = +{ + _BYTE_COUNTER(BIT16, 2), /* number of client-auth-protocol-names */ + _PAD4(1), /* unused */ + _FRAME(ITER), /* server-auth-protocol-names */ + _FRAME(POINTER), + _PTR(xpcs_fr), + _FRAME(EOL), +}; + +xim_externaldef XimFrameRec auth_ng_fr[] = +{ + _FRAME(EOL), +}; + +xim_externaldef XimFrameRec disconnect_fr[] = +{ + _FRAME(EOL), +}; + +xim_externaldef XimFrameRec disconnect_reply_fr[] = +{ + _FRAME(EOL), +}; + +xim_externaldef XimFrameRec open_fr[] = +{ + _FRAME(POINTER), /* locale name */ + _PTR(str_fr), + _PAD4(1), + _FRAME(EOL), +}; + +xim_externaldef XimFrameRec open_reply_fr[] = +{ + _FRAME(BIT16), /* input-method-ID */ + _BYTE_COUNTER(BIT16, 1), /* byte length of IM attributes supported */ + _FRAME(ITER), /* IM attribute supported */ + _FRAME(POINTER), + _PTR(ximattr_fr), + _BYTE_COUNTER(BIT16, 2), /* number of IC attribute supported */ + _PAD4(1), /* unused */ + _FRAME(ITER), /* IC attribute supported */ + _FRAME(POINTER), + _PTR(xicattr_fr), + _FRAME(EOL), +}; + +xim_externaldef XimFrameRec close_fr[] = +{ + _FRAME(BIT16), /* input-method-ID */ + _PAD4(1), /* unused */ + _FRAME(EOL), +}; + +xim_externaldef XimFrameRec close_reply_fr[] = +{ + _FRAME(BIT16), /* input-method-ID */ + _PAD4(1), /* unused */ + _FRAME(EOL), +}; + +xim_externaldef XimFrameRec register_triggerkeys_fr[] = +{ + _FRAME(BIT16), /* input-method-ID */ + _PAD4(1), /* unused */ + _BYTE_COUNTER(BIT32, 1), /* byte length of on-keys */ + _FRAME(ITER), /* on-keys list */ + _FRAME(POINTER), + _PTR(ximtriggerkey_fr), + _BYTE_COUNTER(BIT32, 1), /* byte length of off-keys */ + _FRAME(ITER), /* off-keys list */ + _FRAME(POINTER), + _PTR(ximtriggerkey_fr), + _FRAME(EOL), +}; + +xim_externaldef XimFrameRec trigger_notify_fr[] = +{ + _FRAME(BIT16), /* input-mehotd-ID */ + _FRAME(BIT16), /* input-context-ID */ + _FRAME(BIT32), /* flag */ + _FRAME(BIT32), /* index of keys list */ + _FRAME(BIT32), /* client-select-event-mask */ + _FRAME(EOL), +}; + +xim_externaldef XimFrameRec trigger_notify_reply_fr[] = +{ + _FRAME(BIT16), /* input-method-ID */ + _FRAME(BIT16), /* input-context-ID */ + _FRAME(EOL), +}; + +xim_externaldef XimFrameRec set_event_mask_fr[] = +{ + _FRAME(BIT16), /* input-method-ID */ + _FRAME(BIT16), /* input-context-ID */ + _FRAME(BIT32), /* forward-event-mask */ + _FRAME(BIT32), /* synchronous-event-mask */ + _FRAME(EOL), +}; + +xim_externaldef XimFrameRec encoding_negotiation_fr[] = +{ + _FRAME(BIT16), /* input-method-ID */ + _BYTE_COUNTER(BIT16, 1), /* byte length of encodings listed by name */ + _FRAME(ITER), /* supported list of encoding in IM library */ + _FRAME(POINTER), + _PTR(str_fr), + _PAD4(1), + _BYTE_COUNTER(BIT16, 2), /* byte length of encodings listed by + detailed data */ + _PAD4(1), + _FRAME(ITER), /* list of encodings supported in the + IM library */ + _FRAME(POINTER), + _PTR(encodinginfo_fr), + _FRAME(EOL), +}; + +xim_externaldef XimFrameRec encoding_negotiation_reply_fr[] = +{ + _FRAME(BIT16), /* input-method-ID */ + _FRAME(BIT16), /* category of the encoding determined */ + _FRAME(BIT16), /* index of the encoding dterminated */ + _PAD4(1), + _FRAME(EOL), +}; + +xim_externaldef XimFrameRec query_extension_fr[] = +{ + _FRAME(BIT16), /* input-method-ID */ + _BYTE_COUNTER(BIT16, 1), /* byte length of extensions supported + by the IM library */ + _FRAME(ITER), /* extensions supported by the IM library */ + _FRAME(POINTER), + _PTR(str_fr), + _PAD4(1), + _FRAME(EOL), +}; + +xim_externaldef XimFrameRec query_extension_reply_fr[] = +{ + _FRAME(BIT16), /* input-method-ID */ + _BYTE_COUNTER(BIT16, 1), /* byte length of extensions supported + by the IM server */ + _FRAME(ITER), /* list of extensions supported by the + IM server */ + _FRAME(POINTER), + _PTR(ext_fr), + _FRAME(EOL), +}; + +xim_externaldef XimFrameRec get_im_values_fr[] = +{ + _FRAME(BIT16), /* input-method-ID */ + _BYTE_COUNTER(BIT16, 1), /* byte length of im-attribute-id */ + _FRAME(ITER), /* im-attribute-id */ + _FRAME(BIT16), + _PAD4(1), + _FRAME(EOL), +}; + +xim_externaldef XimFrameRec get_im_values_reply_fr[] = +{ + _FRAME(BIT16), /* input-method-ID */ + _BYTE_COUNTER(BIT16, 1), /* byte length of im-attribute returned */ + _FRAME(ITER), /* im-attribute returned */ + _FRAME(POINTER), + _PTR(ximattribute_fr), + _FRAME(EOL), +}; + +xim_externaldef XimFrameRec create_ic_fr[] = +{ + _FRAME(BIT16), /* input-method-ID */ + _BYTE_COUNTER(BIT16, 1), /* byte length of ic-attributes */ + _FRAME(ITER), /* ic-attributes */ + _FRAME(POINTER), + _PTR(xicattribute_fr), + _FRAME(EOL), +}; + +xim_externaldef XimFrameRec create_ic_reply_fr[] = +{ + _FRAME(BIT16), /* input-method-ID */ + _FRAME(BIT16), /* input-context-ID */ + _FRAME(EOL), +}; + +xim_externaldef XimFrameRec destroy_ic_fr[] = +{ + _FRAME(BIT16), /* input-method-ID */ + _FRAME(BIT16), /* input-context-ID */ + _FRAME(EOL), +}; + +xim_externaldef XimFrameRec destroy_ic_reply_fr[] = +{ + _FRAME(BIT16), /* input-method-ID */ + _FRAME(BIT16), /* input-context-ID */ + _FRAME(EOL), +}; + +xim_externaldef XimFrameRec set_ic_values_fr[] = +{ + _FRAME(BIT16), /* input-method-ID */ + _FRAME(BIT16), /* input-context-ID */ + _BYTE_COUNTER(BIT16, 2), /* byte length of ic-attributes */ + _PAD4(1), + _FRAME(ITER), /* ic-attribute */ + _FRAME(POINTER), + _PTR(xicattribute_fr), + _FRAME(EOL), +}; + +xim_externaldef XimFrameRec set_ic_values_reply_fr[] = +{ + _FRAME(BIT16), /* input-method-ID */ + _FRAME(BIT16), /* input-context-ID */ + _FRAME(EOL), +}; + +xim_externaldef XimFrameRec get_ic_values_fr[] = +{ + _FRAME(BIT16), /* input-method-ID */ + _FRAME(BIT16), /* input-context-ID */ + _BYTE_COUNTER(BIT16, 1), /* byte length of ic-attribute-id */ + _FRAME(ITER), /* ic-attribute */ + _FRAME(BIT16), + _PAD4(2), + _FRAME(EOL), +}; + +xim_externaldef XimFrameRec get_ic_values_reply_fr[] = +{ + _FRAME(BIT16), /* input-method-ID */ + _FRAME(BIT16), /* input-context-ID */ + _BYTE_COUNTER(BIT16, 2), /* byte length of ic-attribute */ + _PAD4(1), + _FRAME(ITER), /* ic-attribute */ + _FRAME(POINTER), + _PTR(xicattribute_fr), + _FRAME(EOL), +}; + +xim_externaldef XimFrameRec set_ic_focus_fr[] = +{ + _FRAME(BIT16), /* input-method-ID */ + _FRAME(BIT16), /* input-context-ID */ + _FRAME(EOL), +}; + +xim_externaldef XimFrameRec unset_ic_focus_fr[] = +{ + _FRAME(BIT16), /* input-method-ID */ + _FRAME(BIT16), /* input-context-ID */ + _FRAME(EOL), +}; + +xim_externaldef XimFrameRec forward_event_fr[] = +{ + _FRAME(BIT16), /* input-method-ID */ + _FRAME(BIT16), /* input-context-ID */ + _FRAME(BIT16), /* flag */ + _FRAME(BIT16), /* sequence number */ + _FRAME(EOL), +}; + +xim_externaldef XimFrameRec sync_fr[] = +{ + _FRAME(BIT16), /* input-method-ID */ + _FRAME(BIT16), /* input-context-ID */ + _FRAME(EOL), +}; + +xim_externaldef XimFrameRec sync_reply_fr[] = +{ + _FRAME(BIT16), /* input-method-ID */ + _FRAME(BIT16), /* input-context-ID */ + _FRAME(EOL), +}; + +#if 0 +xim_externaldef XimFrameRec commit_fr[] = +{ + _FRAME(BIT16), /* input-method-ID */ + _FRAME(BIT16), /* input-context-ID */ + _FRAME(BIT16), /* flag */ + _FRAME(BIT16), /* byte length of committed string */ + _FRAME(BARRAY), /* committed string */ + _PAD4(1), + _BYTE_COUNTER(BIT16, 1), /* byte length of keysym */ + _FRAME(ITER), /* keysym */ + _FRAME(BIT32), + _PAD4(1), + _FRAME(EOL), +}; +#endif + +xim_externaldef XimFrameRec commit_chars_fr[] = +{ + _FRAME(BIT16), /* input-method-ID */ + _FRAME(BIT16), /* input-context-ID */ + _FRAME(BIT16), /* flag */ + _FRAME(BIT16), /* byte length of committed string */ + _FRAME(BARRAY), /* committed string */ + _PAD4(1), + _FRAME(EOL), +}; + +xim_externaldef XimFrameRec commit_both_fr[] = +{ + _FRAME(BIT16), /* input-method-ID */ + _FRAME(BIT16), /* input-context-ID */ + _FRAME(BIT16), /* flag */ + _PAD4(1), /* unused */ + _FRAME(BIT32), /* keysym */ + _FRAME(BIT16), /* byte length of committed string */ + _FRAME(BARRAY), /* committed string */ + _PAD4(2), + _FRAME(EOL), +}; + +xim_externaldef XimFrameRec reset_ic_fr[] = +{ + _FRAME(BIT16), /* input-method-ID */ + _FRAME(BIT16), /* input-context-ID */ + _FRAME(EOL), +}; + +xim_externaldef XimFrameRec reset_ic_reply_fr[] = +{ + _FRAME(BIT16), /* input-method-ID */ + _FRAME(BIT16), /* input-context-ID */ + _FRAME(BIT16), /* byte length of committed string */ + _FRAME(BARRAY), /* committed string */ + _PAD4(2), + _FRAME(EOL), +}; + +xim_externaldef XimFrameRec geometry_fr[] = +{ + _FRAME(BIT16), /* input-method-ID */ + _FRAME(BIT16), /* input-context-ID */ + _FRAME(EOL), +}; + +xim_externaldef XimFrameRec str_conversion_fr[] = +{ + _FRAME(BIT16), /* input-method-ID */ + _FRAME(BIT16), /* input-context-ID */ + _FRAME(BIT32), /* XIMStringConversionPosition */ + _FRAME(BIT32), /* XIMStringConversionType */ + _FRAME(BIT32), /* XIMStringConversionOperation */ + _FRAME(BIT16), /* length to multiply the + XIMStringConversionType */ + _FRAME(BIT16), /* length of the string to be + substituted */ +#if 0 + _FRAME(BARRAY), /* string */ + _PAD4(1), +#endif + _FRAME(EOL), +}; + +xim_externaldef XimFrameRec str_conversion_reply_fr[] = +{ + _FRAME(BIT16), /* input-method-ID */ + _FRAME(BIT16), /* input-context-ID */ + _FRAME(BIT32), /* XIMStringConversionFeedback */ + _FRAME(BIT16), /* length of the retrieved string */ + _FRAME(BARRAY), /* retrieved string */ + _PAD4(2), + _BYTE_COUNTER(BIT16, 2), /* number of feedback array */ + _PAD4(1), + _FRAME(ITER), /* feedback array */ + _FRAME(BIT32), + _FRAME(EOL), +}; + +xim_externaldef XimFrameRec preedit_start_fr[] = +{ + _FRAME(BIT16), /* input-method-ID */ + _FRAME(BIT16), /* input-context-ID */ + _FRAME(EOL), +}; + +xim_externaldef XimFrameRec preedit_start_reply_fr[] = +{ + _FRAME(BIT16), /* input-method-ID */ + _FRAME(BIT16), /* input-context-ID */ + _FRAME(BIT32), /* return value */ + _FRAME(EOL), +}; + +xim_externaldef XimFrameRec preedit_draw_fr[] = +{ + _FRAME(BIT16), /* input-method-ID */ + _FRAME(BIT16), /* input-context-ID */ + _FRAME(BIT32), /* caret */ + _FRAME(BIT32), /* chg_first */ + _FRAME(BIT32), /* chg_length */ + _FRAME(BIT32), /* status */ + _FRAME(BIT16), /* length of preedit string */ + _FRAME(BARRAY), /* preedit string */ + _PAD4(2), + _BYTE_COUNTER(BIT16, 2), /* number of feedback array */ + _PAD4(1), + _FRAME(ITER), /* feedback array */ + _FRAME(BIT32), + _FRAME(EOL), +}; + +xim_externaldef XimFrameRec preedit_caret_fr[] = +{ + _FRAME(BIT16), /* input-method-ID */ + _FRAME(BIT16), /* input-context-ID */ + _FRAME(BIT32), /* position */ + _FRAME(BIT32), /* direction */ + _FRAME(BIT32), /* style */ + _FRAME(EOL), +}; + +xim_externaldef XimFrameRec preedit_caret_reply_fr[] = +{ + _FRAME(BIT16), /* input-method-ID */ + _FRAME(BIT16), /* input-context-ID */ + _FRAME(BIT32), /* position */ + _FRAME(EOL), +}; + +xim_externaldef XimFrameRec preedit_done_fr[] = +{ + _FRAME(BIT16), /* input-method-ID */ + _FRAME(BIT16), /* input-context-ID */ + _FRAME(EOL), +}; + +xim_externaldef XimFrameRec status_start_fr[] = +{ + _FRAME(BIT16), /* input-method-ID */ + _FRAME(BIT16), /* input-context-ID */ + _FRAME(EOL), +}; + +xim_externaldef XimFrameRec status_draw_text_fr[] = +{ + _FRAME(BIT16), /* input-method-ID */ + _FRAME(BIT16), /* input-context-ID */ + _FRAME(BIT32), /* type */ + _FRAME(BIT32), /* status */ + _FRAME(BIT16), /* length of status string */ + _FRAME(BARRAY), /* status string */ + _PAD4(2), + _BYTE_COUNTER(BIT16, 2), /* number of feedback array */ + _PAD4(1), + _FRAME(ITER), /* feedback array */ + _FRAME(BIT32), + _FRAME(EOL), +}; + +xim_externaldef XimFrameRec status_draw_bitmap_fr[] = +{ + _FRAME(BIT16), /* input-method-ID */ + _FRAME(BIT16), /* input-context-ID */ + _FRAME(BIT32), /* type */ + _FRAME(BIT32), /* pixmap data */ + _FRAME(EOL), +}; + +xim_externaldef XimFrameRec status_done_fr[] = +{ + _FRAME(BIT16), /* input-method-ID */ + _FRAME(BIT16), /* input-context-ID */ + _FRAME(EOL), +}; + +xim_externaldef XimFrameRec ext_set_event_mask_fr[] = +{ + _FRAME(BIT16), /* input-method-ID */ + _FRAME(BIT16), /* input-context-ID */ + _FRAME(BIT32), /* filter-event-mask */ + _FRAME(BIT32), /* intercept-event-mask */ + _FRAME(BIT32), /* select-event-mask */ + _FRAME(BIT32), /* forward-event-mask */ + _FRAME(BIT32), /* synchronous-event-mask */ + _FRAME(EOL), +}; + +xim_externaldef XimFrameRec ext_forward_keyevent_fr[] = +{ + _FRAME(BIT16), /* input-method-ID */ + _FRAME(BIT16), /* input-context-ID */ + _FRAME(BIT16), /* flag */ + _FRAME(BIT16), /* sequence number */ + _FRAME(BIT8), /* xEvent.u.u.type */ + _FRAME(BIT8), /* keycode */ + _FRAME(BIT16), /* state */ + _FRAME(BIT32), /* time */ + _FRAME(BIT32), /* window */ + _FRAME(EOL), +}; + +xim_externaldef XimFrameRec ext_move_fr[] = +{ + _FRAME(BIT16), /* input-method-ID */ + _FRAME(BIT16), /* input-context-ID */ + _FRAME(BIT16), /* X */ + _FRAME(BIT16), /* Y */ + _FRAME(EOL), +}; + +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/frontend/xim/lib/i18nMethod.c fcitx-4.1.1/src/frontend/xim/lib/i18nMethod.c --- fcitx-4.0.1/src/frontend/xim/lib/i18nMethod.c 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/frontend/xim/lib/i18nMethod.c 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,1131 @@ +/****************************************************************** + + Copyright 1994, 1995 by Sun Microsystems, Inc. + Copyright 1993, 1994 by Hewlett-Packard Company + +Permission to use, copy, modify, distribute, and sell this software +and its documentation for any purpose is hereby granted without fee, +provided that the above copyright notice appear in all copies and +that both that copyright notice and this permission notice appear +in supporting documentation, and that the name of Sun Microsystems, Inc. +and Hewlett-Packard not be used in advertising or publicity pertaining to +distribution of the software without specific, written prior permission. +Sun Microsystems, Inc. and Hewlett-Packard make no representations about +the suitability of this software for any purpose. It is provided "as is" +without express or implied warranty. + +SUN MICROSYSTEMS INC. AND HEWLETT-PACKARD COMPANY DISCLAIMS ALL +WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL +SUN MICROSYSTEMS, INC. AND HEWLETT-PACKARD COMPANY 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. + + Author: Hidetoshi Tajima(tajima@Eng.Sun.COM) Sun Microsystems, Inc. + + This version tidied and debugged by Steve Underwood May 1999 + +******************************************************************/ + +#include +#include +#ifndef NEED_EVENTS +#define NEED_EVENTS +#endif +#include +#undef NEED_EVENTS +#include "FrameMgr.h" +#include "IMdkit.h" +#include "Xi18n.h" +#include "XimFunc.h" + +extern Xi18nClient *_Xi18nFindClient (Xi18n, CARD16); + +static void *xi18n_setup (Display *, XIMArg *); +static Status xi18n_openIM (XIMS); +static Status xi18n_closeIM (XIMS); +static char *xi18n_setIMValues (XIMS, XIMArg *); +static char *xi18n_getIMValues (XIMS, XIMArg *); +static Status xi18n_forwardEvent (XIMS, XPointer); +static Status xi18n_commit (XIMS, XPointer); +static int xi18n_callCallback (XIMS, XPointer); +static int xi18n_preeditStart (XIMS, XPointer); +static int xi18n_preeditEnd (XIMS, XPointer); +static int xi18n_syncXlib (XIMS, XPointer); + +#ifndef XIM_SERVERS +#define XIM_SERVERS "XIM_SERVERS" +#endif +static Atom XIM_Servers = None; + + +IMMethodsRec Xi18n_im_methods = +{ + xi18n_setup, + xi18n_openIM, + xi18n_closeIM, + xi18n_setIMValues, + xi18n_getIMValues, + xi18n_forwardEvent, + xi18n_commit, + xi18n_callCallback, + xi18n_preeditStart, + xi18n_preeditEnd, + xi18n_syncXlib, +}; + +extern Bool _Xi18nCheckXAddress (Xi18n, TransportSW *, char *); +extern Bool _Xi18nCheckTransAddress (Xi18n, TransportSW *, char *); + +TransportSW _TransR[] = +{ + {"X", 1, _Xi18nCheckXAddress}, +#ifdef TCPCONN + {"tcp", 3, _Xi18nCheckTransAddress}, + {"local", 5, _Xi18nCheckTransAddress}, +#endif +#ifdef DNETCONN + {"decnet", 6, _Xi18nCheckTransAddress}, +#endif + {(char *) NULL, 0, (Bool (*) ()) NULL} +}; + +static Bool GetInputStyles (Xi18n i18n_core, XIMStyles **p_style) +{ + Xi18nAddressRec *address = (Xi18nAddressRec *) &i18n_core->address; + XIMStyles *p; + int i; + + p = &address->input_styles; + if ((*p_style = (XIMStyles *) malloc (sizeof (XIMStyles) + + p->count_styles*sizeof (XIMStyle))) + == NULL) + { + return False; + } + /*endif*/ + (*p_style)->count_styles = p->count_styles; + (*p_style)->supported_styles = (XIMStyle *) ((XPointer) *p_style + sizeof (XIMStyles)); + for (i = 0; i < (int) p->count_styles; i++) + (*p_style)->supported_styles[i] = p->supported_styles[i]; + /*endfor*/ + return True; +} + +static Bool GetOnOffKeys (Xi18n i18n_core, long mask, XIMTriggerKeys **p_key) +{ + Xi18nAddressRec *address = (Xi18nAddressRec *) &i18n_core->address; + XIMTriggerKeys *p; + int i; + + if (mask & I18N_ON_KEYS) + p = &address->on_keys; + else + p = &address->off_keys; + /*endif*/ + if ((*p_key = (XIMTriggerKeys *) malloc (sizeof(XIMTriggerKeys) + + p->count_keys*sizeof(XIMTriggerKey))) + == NULL) + { + return False; + } + /*endif*/ + (*p_key)->count_keys = p->count_keys; + (*p_key)->keylist = + (XIMTriggerKey *) ((XPointer) *p_key + sizeof(XIMTriggerKeys)); + for (i = 0; i < (int) p->count_keys; i++) + { + (*p_key)->keylist[i].keysym = p->keylist[i].keysym; + (*p_key)->keylist[i].modifier = p->keylist[i].modifier; + (*p_key)->keylist[i].modifier_mask = p->keylist[i].modifier_mask; + } + /*endfor*/ + return True; +} + +static Bool GetEncodings(Xi18n i18n_core, XIMEncodings **p_encoding) +{ + Xi18nAddressRec *address = (Xi18nAddressRec *) &i18n_core->address; + XIMEncodings *p; + int i; + + p = &address->encoding_list; + + if ((*p_encoding = (XIMEncodings *) malloc (sizeof (XIMEncodings) + + p->count_encodings*sizeof(XIMEncoding))) == NULL) + { + return False; + } + /*endif*/ + (*p_encoding)->count_encodings = p->count_encodings; + (*p_encoding)->supported_encodings = + (XIMEncoding *) ((XPointer)*p_encoding + sizeof (XIMEncodings)); + for (i = 0; i < (int) p->count_encodings; i++) + { + (*p_encoding)->supported_encodings[i] + = (char *) malloc (strlen (p->supported_encodings[i]) + 1); + strcpy ((*p_encoding)->supported_encodings[i], + p->supported_encodings[i]); + } + /*endif*/ + return True; +} + +static char *ParseArgs (Xi18n i18n_core, int mode, XIMArg *args) +{ + Xi18nAddressRec *address = (Xi18nAddressRec *) &i18n_core->address; + XIMArg *p; + + if (mode == I18N_OPEN || mode == I18N_SET) + { + for (p = args; p->name != NULL; p++) + { + if (strcmp (p->name, IMLocale) == 0) + { + if (address->imvalue_mask & I18N_IM_LOCALE) + return IMLocale; + /*endif*/ + address->im_locale = (char *) malloc (strlen (p->value) + 1); + if (!address->im_locale) + return IMLocale; + /*endif*/ + strcpy (address->im_locale, p->value); + address->imvalue_mask |= I18N_IM_LOCALE; + } + else if (strcmp (p->name, IMServerTransport) == 0) + { + if (address->imvalue_mask & I18N_IM_ADDRESS) + return IMServerTransport; + /*endif*/ + address->im_addr = (char *) malloc (strlen (p->value) + 1); + if (!address->im_addr) + return IMServerTransport; + /*endif*/ + strcpy(address->im_addr, p->value); + address->imvalue_mask |= I18N_IM_ADDRESS; + } + else if (strcmp (p->name, IMServerName) == 0) + { + if (address->imvalue_mask & I18N_IM_NAME) + return IMServerName; + /*endif*/ + address->im_name = (char *) malloc (strlen (p->value) + 1); + if (!address->im_name) + return IMServerName; + /*endif*/ + strcpy (address->im_name, p->value); + address->imvalue_mask |= I18N_IM_NAME; + } + else if (strcmp (p->name, IMServerWindow) == 0) + { + if (address->imvalue_mask & I18N_IMSERVER_WIN) + return IMServerWindow; + /*endif*/ + address->im_window = (Window) p->value; + address->imvalue_mask |= I18N_IMSERVER_WIN; + } + else if (strcmp (p->name, IMInputStyles) == 0) + { + if (address->imvalue_mask & I18N_INPUT_STYLES) + return IMInputStyles; + /*endif*/ + address->input_styles.count_styles = + ((XIMStyles*)p->value)->count_styles; + address->input_styles.supported_styles = + (XIMStyle *) malloc (sizeof (XIMStyle)*address->input_styles.count_styles); + if (address->input_styles.supported_styles == (XIMStyle *) NULL) + return IMInputStyles; + /*endif*/ + memmove (address->input_styles.supported_styles, + ((XIMStyles *) p->value)->supported_styles, + sizeof (XIMStyle)*address->input_styles.count_styles); + address->imvalue_mask |= I18N_INPUT_STYLES; + } + else if (strcmp (p->name, IMProtocolHandler) == 0) + { + address->improto = (IMProtoHandler) p->value; + address->imvalue_mask |= I18N_IM_HANDLER; + } + else if (strcmp (p->name, IMOnKeysList) == 0) + { + if (address->imvalue_mask & I18N_ON_KEYS) + return IMOnKeysList; + /*endif*/ + address->on_keys.count_keys = + ((XIMTriggerKeys *) p->value)->count_keys; + address->on_keys.keylist = + (XIMTriggerKey *) malloc (sizeof (XIMTriggerKey)*address->on_keys.count_keys); + if (address->on_keys.keylist == (XIMTriggerKey *) NULL) + return IMOnKeysList; + /*endif*/ + memmove (address->on_keys.keylist, + ((XIMTriggerKeys *) p->value)->keylist, + sizeof (XIMTriggerKey)*address->on_keys.count_keys); + address->imvalue_mask |= I18N_ON_KEYS; + } + else if (strcmp (p->name, IMOffKeysList) == 0) + { + if (address->imvalue_mask & I18N_OFF_KEYS) + return IMOffKeysList; + /*endif*/ + address->off_keys.count_keys = + ((XIMTriggerKeys *) p->value)->count_keys; + address->off_keys.keylist = + (XIMTriggerKey *) malloc (sizeof (XIMTriggerKey)*address->off_keys.count_keys); + if (address->off_keys.keylist == (XIMTriggerKey *) NULL) + return IMOffKeysList; + /*endif*/ + memmove (address->off_keys.keylist, + ((XIMTriggerKeys *) p->value)->keylist, + sizeof (XIMTriggerKey)*address->off_keys.count_keys); + address->imvalue_mask |= I18N_OFF_KEYS; + } + else if (strcmp (p->name, IMEncodingList) == 0) + { + if (address->imvalue_mask & I18N_ENCODINGS) + return IMEncodingList; + /*endif*/ + address->encoding_list.count_encodings = + ((XIMEncodings *) p->value)->count_encodings; + address->encoding_list.supported_encodings = + (XIMEncoding *) malloc (sizeof (XIMEncoding)*address->encoding_list.count_encodings); + if (address->encoding_list.supported_encodings + == (XIMEncoding *) NULL) + { + return IMEncodingList; + } + /*endif*/ + memmove (address->encoding_list.supported_encodings, + ((XIMEncodings *) p->value)->supported_encodings, + sizeof (XIMEncoding)*address->encoding_list.count_encodings); + address->imvalue_mask |= I18N_ENCODINGS; + } + else if (strcmp (p->name, IMFilterEventMask) == 0) + { + if (address->imvalue_mask & I18N_FILTERMASK) + return IMFilterEventMask; + /*endif*/ + address->filterevent_mask = (long) p->value; + address->imvalue_mask |= I18N_FILTERMASK; + } + /*endif*/ + } + /*endfor*/ + if (mode == I18N_OPEN) + { + /* check mandatory IM values */ + if (!(address->imvalue_mask & I18N_IM_LOCALE)) + { + /* locales must be set in IMOpenIM */ + return IMLocale; + } + /*endif*/ + if (!(address->imvalue_mask & I18N_IM_ADDRESS)) + { + /* address must be set in IMOpenIM */ + return IMServerTransport; + } + /*endif*/ + } + /*endif*/ + } + else if (mode == I18N_GET) + { + for (p = args; p->name != NULL; p++) + { + if (strcmp (p->name, IMLocale) == 0) + { + p->value = (char *) malloc (strlen (address->im_locale) + 1); + if (!p->value) + return IMLocale; + /*endif*/ + strcpy (p->value, address->im_locale); + } + else if (strcmp (p->name, IMServerTransport) == 0) + { + p->value = (char *) malloc (strlen (address->im_addr) + 1); + if (!p->value) + return IMServerTransport; + /*endif*/ + strcpy (p->value, address->im_addr); + } + else if (strcmp (p->name, IMServerName) == 0) + { + if (address->imvalue_mask & I18N_IM_NAME) + { + p->value = (char *) malloc (strlen (address->im_name) + 1); + if (!p->value) + return IMServerName; + /*endif*/ + strcpy (p->value, address->im_name); + } + else + { + return IMServerName; + } + /*endif*/ + } + else if (strcmp (p->name, IMServerWindow) == 0) + { + if (address->imvalue_mask & I18N_IMSERVER_WIN) + *((Window *) (p->value)) = address->im_window; + else + return IMServerWindow; + /*endif*/ + } + else if (strcmp (p->name, IMInputStyles) == 0) + { + if (GetInputStyles (i18n_core, + (XIMStyles **) p->value) == False) + { + return IMInputStyles; + } + /*endif*/ + } + else if (strcmp (p->name, IMProtocolHandler) == 0) + { + if (address->imvalue_mask & I18N_IM_HANDLER) + *((IMProtoHandler *) (p->value)) = address->improto; + else + return IMProtocolHandler; + /*endif*/ + } + else if (strcmp (p->name, IMOnKeysList) == 0) + { + if (address->imvalue_mask & I18N_ON_KEYS) + { + if (GetOnOffKeys (i18n_core, + I18N_ON_KEYS, + (XIMTriggerKeys **) p->value) == False) + { + return IMOnKeysList; + } + /*endif*/ + } + else + { + return IMOnKeysList; + } + /*endif*/ + } + else if (strcmp (p->name, IMOffKeysList) == 0) + { + if (address->imvalue_mask & I18N_OFF_KEYS) + { + if (GetOnOffKeys (i18n_core, + I18N_OFF_KEYS, + (XIMTriggerKeys **) p->value) == False) + { + return IMOffKeysList; + } + /*endif*/ + } + else + { + return IMOffKeysList; + } + /*endif*/ + } + else if (strcmp (p->name, IMEncodingList) == 0) + { + if (address->imvalue_mask & I18N_ENCODINGS) + { + if (GetEncodings (i18n_core, + (XIMEncodings **) p->value) == False) + { + return IMEncodingList; + } + /*endif*/ + } + else + { + return IMEncodingList; + } + /*endif*/ + } + else if (strcmp (p->name, IMFilterEventMask) == 0) + { + if (address->imvalue_mask & I18N_FILTERMASK) + *((long *) (p->value)) = address->filterevent_mask; + else + return IMFilterEventMask; + /*endif*/ + } + /*endif*/ + } + /*endfor*/ + } + /*endif*/ + return NULL; +} + +static int CheckIMName (Xi18n i18n_core) +{ + char *address = i18n_core->address.im_addr; + int i; + + for (i = 0; _TransR[i].transportname; i++) + { + while (*address == ' ' || *address == '\t') + address++; + /*endwhile*/ + if (strncmp (address, + _TransR[i].transportname, + _TransR[i].namelen) == 0 + && + address[_TransR[i].namelen] == '/') + { + if (_TransR[i].checkAddr (i18n_core, + &_TransR[i], + address + _TransR[i].namelen + 1) == True) + { + return True; + } + /*endif*/ + return False; + } + /*endif*/ + } + /*endfor*/ + return False; +} + +static int SetXi18nSelectionOwner(Xi18n i18n_core) +{ + Display *dpy = i18n_core->address.dpy; + Window ims_win = i18n_core->address.im_window; + Window root = RootWindow (dpy, DefaultScreen (dpy)); + Atom realtype; + int realformat; + unsigned long bytesafter; + long *data=NULL; + unsigned long length; + Atom atom; + int i; + int found; + int forse = False; + char buf[256]; + + (void)sprintf(buf, "@server=%s", i18n_core->address.im_name); + if ((atom = XInternAtom(dpy, buf, False)) == 0) + return False; + i18n_core->address.selection = atom; + + if (XIM_Servers == None) + XIM_Servers = XInternAtom (dpy, XIM_SERVERS, False); + /*endif*/ + XGetWindowProperty (dpy, + root, + XIM_Servers, + 0L, + 1000000L, + False, + XA_ATOM, + &realtype, + &realformat, + &length, + &bytesafter, + (unsigned char **) (&data)); + if (realtype != None && (realtype != XA_ATOM || realformat != 32)) { + if (data != NULL) + XFree ((char *) data); + return False; + } + + found = False; + for (i = 0; i < length; i++) { + if (data[i] == atom) { + Window owner; + found = True; + if ((owner = XGetSelectionOwner (dpy, atom)) != ims_win) { + if (owner == None || forse == True) + XSetSelectionOwner (dpy, atom, ims_win, CurrentTime); + else + return False; + } + break; + } + } + + if (found == False) { + XSetSelectionOwner (dpy, atom, ims_win, CurrentTime); + XChangeProperty (dpy, + root, + XIM_Servers, + XA_ATOM, + 32, + PropModePrepend, + (unsigned char *) &atom, + 1); + } + else { + /* + * We always need to generate the PropertyNotify to the Root Window + */ + XChangeProperty (dpy, + root, + XIM_Servers, + XA_ATOM, + 32, + PropModePrepend, + (unsigned char *) data, + 0); + } + if (data != NULL) + XFree ((char *) data); + + /* Intern "LOCALES" and "TRANSOPORT" Target Atoms */ + i18n_core->address.Localename = XInternAtom (dpy, LOCALES, False); + i18n_core->address.Transportname = XInternAtom (dpy, TRANSPORT, False); + return (XGetSelectionOwner (dpy, atom) == ims_win); +} + +static int DeleteXi18nAtom(Xi18n i18n_core) +{ + Display *dpy = i18n_core->address.dpy; + Window root = RootWindow (dpy, DefaultScreen (dpy)); + Atom realtype; + int realformat; + unsigned long bytesafter; + long *data=NULL; + unsigned long length; + Atom atom; + int i, ret; + int found; + char buf[256]; + + (void)sprintf(buf, "@server=%s", i18n_core->address.im_name); + if ((atom = XInternAtom(dpy, buf, False)) == 0) + return False; + i18n_core->address.selection = atom; + + if (XIM_Servers == None) + XIM_Servers = XInternAtom (dpy, XIM_SERVERS, False); + XGetWindowProperty (dpy, + root, + XIM_Servers, + 0L, + 1000000L, + False, + XA_ATOM, + &realtype, + &realformat, + &length, + &bytesafter, + (unsigned char **) (&data)); + if (realtype != XA_ATOM || realformat != 32) { + if (data != NULL) + XFree ((char *) data); + return False; + } + + found = False; + for (i = 0; i < length; i++) { + if (data[i] == atom) { + found = True; + break; + } + } + + if (found == True) { + for (i=i+1; iaddress.dpy = dpy; + + if (ParseArgs (i18n_core, I18N_OPEN, args) != NULL) + { + XFree (i18n_core); + return NULL; + } + /*endif*/ + if (*(char *) &endian) + i18n_core->address.im_byteOrder = 'l'; + else + i18n_core->address.im_byteOrder = 'B'; + /*endif*/ + + /* install IMAttr and ICAttr list in i18n_core */ + _Xi18nInitAttrList (i18n_core); + + /* install IMExtension list in i18n_core */ + _Xi18nInitExtension (i18n_core); + + return i18n_core; +} + +static void ReturnSelectionNotify (Xi18n i18n_core, XSelectionRequestEvent *ev) +{ + XEvent event; + Display *dpy = i18n_core->address.dpy; + char buf[256]; + + event.type = SelectionNotify; + event.xselection.requestor = ev->requestor; + event.xselection.selection = ev->selection; + event.xselection.target = ev->target; + event.xselection.time = ev->time; + event.xselection.property = ev->property; + if (ev->target == i18n_core->address.Localename) + { + sprintf (buf, "@locale=%s", i18n_core->address.im_locale); + } + else if (ev->target == i18n_core->address.Transportname) + { + sprintf (buf, "@transport=%s", i18n_core->address.im_addr); + } + /*endif*/ + XChangeProperty (dpy, + event.xselection.requestor, + ev->target, + ev->target, + 8, + PropModeReplace, + (unsigned char *) buf, + strlen (buf)); + XSendEvent (dpy, event.xselection.requestor, False, NoEventMask, &event); + XFlush (i18n_core->address.dpy); +} + +static Bool WaitXSelectionRequest (Display *dpy, + Window win, + XEvent *ev, + XPointer client_data) +{ + XIMS ims = (XIMS) client_data; + Xi18n i18n_core = ims->protocol; + + if (((XSelectionRequestEvent *) ev)->selection + == i18n_core->address.selection) + { + ReturnSelectionNotify (i18n_core, (XSelectionRequestEvent *) ev); + return True; + } + /*endif*/ + return False; +} + +static Status xi18n_openIM(XIMS ims) +{ + Xi18n i18n_core = ims->protocol; + Display *dpy = i18n_core->address.dpy; + + if (!CheckIMName (i18n_core) + || + !SetXi18nSelectionOwner (i18n_core) + || + !i18n_core->methods.begin (ims)) + { + XFree (i18n_core->address.im_name); + XFree (i18n_core->address.im_locale); + XFree (i18n_core->address.im_addr); + XFree (i18n_core); + return False; + } + /*endif*/ + + _XRegisterFilterByType (dpy, + i18n_core->address.im_window, + SelectionRequest, + SelectionRequest, + WaitXSelectionRequest, + (XPointer)ims); + XFlush(dpy); + return True; +} + +static Status xi18n_closeIM(XIMS ims) +{ + Xi18n i18n_core = ims->protocol; + Display *dpy = i18n_core->address.dpy; + + DeleteXi18nAtom(i18n_core); + if (!i18n_core->methods.end (ims)) + return False; + + _XUnregisterFilter (dpy, + i18n_core->address.im_window, + WaitXSelectionRequest, + (XPointer)ims); + XFree (i18n_core->address.im_name); + XFree (i18n_core->address.im_locale); + XFree (i18n_core->address.im_addr); + XFree (i18n_core); + return True; +} + +static char *xi18n_setIMValues (XIMS ims, XIMArg *args) +{ + Xi18n i18n_core = ims->protocol; + char *ret; + + if ((ret = ParseArgs (i18n_core, I18N_SET, args)) != NULL) + return ret; + /*endif*/ + return NULL; +} + +static char *xi18n_getIMValues (XIMS ims, XIMArg *args) +{ + Xi18n i18n_core = ims->protocol; + char *ret; + + if ((ret = ParseArgs (i18n_core, I18N_GET, args)) != NULL) + return ret; + /*endif*/ + return NULL; +} + +static void EventToWireEvent (XEvent *ev, xEvent *event, CARD16 *serial) +{ + *serial = (CARD16) (ev->xany.serial >> 16); + event->u.u.sequenceNumber = + (CARD16) (ev->xany.serial & (unsigned long) 0xFFFF); + + switch (ev->type) + { + case KeyPress: + case KeyRelease: + { + XKeyEvent *kev = (XKeyEvent *) ev; + + event->u.u.type = ev->type; + event->u.keyButtonPointer.root = kev->root; + event->u.keyButtonPointer.state = kev->state; + event->u.keyButtonPointer.time = kev->time; + event->u.keyButtonPointer.event = kev->window; + event->u.keyButtonPointer.child = kev->subwindow; + event->u.keyButtonPointer.eventX = kev->x; + event->u.keyButtonPointer.eventY = kev->y; + event->u.keyButtonPointer.rootX = kev->x_root; + event->u.keyButtonPointer.rootY = kev->y_root; + event->u.keyButtonPointer.sameScreen = kev->same_screen; + event->u.u.detail = kev->keycode; + } + } + /*endswitch*/ +} + +static Status xi18n_forwardEvent (XIMS ims, XPointer xp) +{ + Xi18n i18n_core = ims->protocol; + IMForwardEventStruct *call_data = (IMForwardEventStruct *)xp; + FrameMgr fm; + extern XimFrameRec forward_event_fr[]; + register int total_size; + unsigned char *reply = NULL; + unsigned char *replyp; + CARD16 serial; + int event_size; + Xi18nClient *client; + + client = (Xi18nClient *) _Xi18nFindClient (i18n_core, call_data->connect_id); + + /* create FrameMgr */ + fm = FrameMgrInit (forward_event_fr, + NULL, + _Xi18nNeedSwap (i18n_core, call_data->connect_id)); + + total_size = FrameMgrGetTotalSize (fm); + event_size = sizeof (xEvent); + reply = (unsigned char *) malloc (total_size + event_size); + if (!reply) + { + _Xi18nSendMessage (ims, + call_data->connect_id, + XIM_ERROR, + 0, + 0, + 0); + return False; + } + /*endif*/ + memset (reply, 0, total_size + event_size); + FrameMgrSetBuffer (fm, reply); + replyp = reply; + + call_data->sync_bit = 1; /* always sync */ + client->sync = True; + + FrameMgrPutToken (fm, call_data->connect_id); + FrameMgrPutToken (fm, call_data->icid); + FrameMgrPutToken (fm, call_data->sync_bit); + + replyp += total_size; + EventToWireEvent (&(call_data->event), (xEvent *) replyp, &serial); + + FrameMgrPutToken (fm, serial); + + _Xi18nSendMessage (ims, + call_data->connect_id, + XIM_FORWARD_EVENT, + 0, + reply, + total_size + event_size); + + XFree (reply); + FrameMgrFree (fm); + + return True; +} + +static Status xi18n_commit (XIMS ims, XPointer xp) +{ + Xi18n i18n_core = ims->protocol; + IMCommitStruct *call_data = (IMCommitStruct *)xp; + FrameMgr fm; + extern XimFrameRec commit_chars_fr[]; + extern XimFrameRec commit_both_fr[]; + register int total_size; + unsigned char *reply = NULL; + CARD16 str_length; + + call_data->flag |= XimSYNCHRONUS; /* always sync */ + + if (!(call_data->flag & XimLookupKeySym) + && + (call_data->flag & XimLookupChars)) + { + fm = FrameMgrInit (commit_chars_fr, + NULL, + _Xi18nNeedSwap (i18n_core, call_data->connect_id)); + + /* set length of STRING8 */ + str_length = strlen (call_data->commit_string); + FrameMgrSetSize (fm, str_length); + total_size = FrameMgrGetTotalSize (fm); + reply = (unsigned char *) malloc (total_size); + if (!reply) + { + _Xi18nSendMessage (ims, + call_data->connect_id, + XIM_ERROR, + 0, + 0, + 0); + return False; + } + /*endif*/ + memset (reply, 0, total_size); + FrameMgrSetBuffer (fm, reply); + + str_length = FrameMgrGetSize (fm); + FrameMgrPutToken (fm, call_data->connect_id); + FrameMgrPutToken (fm, call_data->icid); + FrameMgrPutToken (fm, call_data->flag); + FrameMgrPutToken (fm, str_length); + FrameMgrPutToken (fm, call_data->commit_string); + } + else + { + fm = FrameMgrInit (commit_both_fr, + NULL, + _Xi18nNeedSwap (i18n_core, call_data->connect_id)); + /* set length of STRING8 */ + str_length = strlen (call_data->commit_string); + if (str_length > 0) + FrameMgrSetSize (fm, str_length); + /*endif*/ + total_size = FrameMgrGetTotalSize (fm); + reply = (unsigned char *) malloc (total_size); + if (!reply) + { + _Xi18nSendMessage (ims, + call_data->connect_id, + XIM_ERROR, + 0, + 0, + 0); + return False; + } + /*endif*/ + FrameMgrSetBuffer (fm, reply); + FrameMgrPutToken (fm, call_data->connect_id); + FrameMgrPutToken (fm, call_data->icid); + FrameMgrPutToken (fm, call_data->flag); + FrameMgrPutToken (fm, call_data->keysym); + if (str_length > 0) + { + str_length = FrameMgrGetSize (fm); + FrameMgrPutToken (fm, str_length); + FrameMgrPutToken (fm, call_data->commit_string); + } + /*endif*/ + } + /*endif*/ + _Xi18nSendMessage (ims, + call_data->connect_id, + XIM_COMMIT, + 0, + reply, + total_size); + FrameMgrFree (fm); + XFree (reply); + + return True; +} + +static int xi18n_callCallback (XIMS ims, XPointer xp) +{ + IMProtocol *call_data = (IMProtocol *)xp; + switch (call_data->major_code) + { + case XIM_GEOMETRY: + return _Xi18nGeometryCallback (ims, call_data); + + case XIM_PREEDIT_START: + return _Xi18nPreeditStartCallback (ims, call_data); + + case XIM_PREEDIT_DRAW: + return _Xi18nPreeditDrawCallback (ims, call_data); + + case XIM_PREEDIT_CARET: + return _Xi18nPreeditCaretCallback (ims, call_data); + + case XIM_PREEDIT_DONE: + return _Xi18nPreeditDoneCallback (ims, call_data); + + case XIM_STATUS_START: + return _Xi18nStatusStartCallback (ims, call_data); + + case XIM_STATUS_DRAW: + return _Xi18nStatusDrawCallback (ims, call_data); + + case XIM_STATUS_DONE: + return _Xi18nStatusDoneCallback (ims, call_data); + + case XIM_STR_CONVERSION: + return _Xi18nStringConversionCallback (ims, call_data); + } + /*endswitch*/ + return False; +} + +/* preeditStart and preeditEnd are used only for Dynamic Event Flow. */ +static int xi18n_preeditStart (XIMS ims, XPointer xp) +{ + IMProtocol *call_data = (IMProtocol *)xp; + Xi18n i18n_core = ims->protocol; + IMPreeditStateStruct *preedit_state = + (IMPreeditStateStruct *) &call_data->preedit_state; + long mask; + int on_key_num = i18n_core->address.on_keys.count_keys; + int off_key_num = i18n_core->address.off_keys.count_keys; + + if (on_key_num == 0 && off_key_num == 0) + return False; + /*endif*/ + if (i18n_core->address.imvalue_mask & I18N_FILTERMASK) + mask = i18n_core->address.filterevent_mask; + else + mask = DEFAULT_FILTER_MASK; + /*endif*/ + _Xi18nSetEventMask (ims, + preedit_state->connect_id, + preedit_state->connect_id, + preedit_state->icid, + mask, + ~mask); + return True; +} + +static int xi18n_preeditEnd (XIMS ims, XPointer xp) +{ + IMProtocol *call_data = (IMProtocol *)xp; + Xi18n i18n_core = ims->protocol; + int on_key_num = i18n_core->address.on_keys.count_keys; + int off_key_num = i18n_core->address.off_keys.count_keys; + IMPreeditStateStruct *preedit_state; + + preedit_state = (IMPreeditStateStruct *) &call_data->preedit_state; + + if (on_key_num == 0 && off_key_num == 0) + return False; + /*endif*/ + + _Xi18nSetEventMask (ims, + preedit_state->connect_id, + preedit_state->connect_id, + preedit_state->icid, + 0, + 0); + return True; +} + +static int xi18n_syncXlib (XIMS ims, XPointer xp) +{ + IMProtocol *call_data = (IMProtocol *)xp; + Xi18n i18n_core = ims->protocol; + IMSyncXlibStruct *sync_xlib; + + extern XimFrameRec sync_fr[]; + FrameMgr fm; + CARD16 connect_id = call_data->any.connect_id; + int total_size; + unsigned char *reply; + + sync_xlib = (IMSyncXlibStruct *) &call_data->sync_xlib; + fm = FrameMgrInit (sync_fr, NULL, + _Xi18nNeedSwap (i18n_core, connect_id)); + total_size = FrameMgrGetTotalSize(fm); + reply = (unsigned char *) malloc (total_size); + if (!reply) { + _Xi18nSendMessage (ims, connect_id, XIM_ERROR, 0, 0, 0); + return False; + } + memset (reply, 0, total_size); + FrameMgrSetBuffer (fm, reply); + + /* input input-method ID */ + FrameMgrPutToken (fm, connect_id); + /* input input-context ID */ + FrameMgrPutToken (fm, sync_xlib->icid); + _Xi18nSendMessage (ims, connect_id, XIM_SYNC, 0, reply, total_size); + + FrameMgrFree (fm); + XFree(reply); + return True; +} + + +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/frontend/xim/lib/i18nPtHdr.c fcitx-4.1.1/src/frontend/xim/lib/i18nPtHdr.c --- fcitx-4.0.1/src/frontend/xim/lib/i18nPtHdr.c 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/frontend/xim/lib/i18nPtHdr.c 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,1817 @@ +/****************************************************************** + + Copyright 1994, 1995 by Sun Microsystems, Inc. + Copyright 1993, 1994 by Hewlett-Packard Company + +Permission to use, copy, modify, distribute, and sell this software +and its documentation for any purpose is hereby granted without fee, +provided that the above copyright notice appear in all copies and +that both that copyright notice and this permission notice appear +in supporting documentation, and that the name of Sun Microsystems, Inc. +and Hewlett-Packard not be used in advertising or publicity pertaining to +distribution of the software without specific, written prior permission. +Sun Microsystems, Inc. and Hewlett-Packard make no representations about +the suitability of this software for any purpose. It is provided "as is" +without express or implied warranty. + +SUN MICROSYSTEMS INC. AND HEWLETT-PACKARD COMPANY DISCLAIMS ALL +WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL +SUN MICROSYSTEMS, INC. AND HEWLETT-PACKARD COMPANY 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. + + Author: Hidetoshi Tajima(tajima@Eng.Sun.COM) Sun Microsystems, Inc. + + This version tidied and debugged by Steve Underwood May 1999 + +******************************************************************/ + +#include +#include +#include +#ifndef NEED_EVENTS +#define NEED_EVENTS +#endif +#include +#undef NEED_EVENTS +#include "FrameMgr.h" +#include "IMdkit.h" +#include "Xi18n.h" +#include "XimFunc.h" + +#ifdef XIM_DEBUG +#include + +static void DebugLog(char * msg) +{ + fprintf(stderr, msg); +} +#endif + +extern Xi18nClient *_Xi18nFindClient (Xi18n, CARD16); + +static void GetProtocolVersion (CARD16 client_major, + CARD16 client_minor, + CARD16 *server_major, + CARD16 *server_minor) +{ + *server_major = client_major; + *server_minor = client_minor; +} + +static void ConnectMessageProc (XIMS ims, + IMProtocol *call_data, + unsigned char *p) +{ + Xi18n i18n_core = ims->protocol; + FrameMgr fm; + extern XimFrameRec connect_fr[], connect_reply_fr[]; + register int total_size; + CARD16 server_major_version, server_minor_version; + unsigned char *reply = NULL; + IMConnectStruct *imconnect = + (IMConnectStruct*) &call_data->imconnect; + CARD16 connect_id = call_data->any.connect_id; + + fm = FrameMgrInit (connect_fr, + (char *) p, + _Xi18nNeedSwap (i18n_core, connect_id)); + + /* get data */ + FrameMgrGetToken (fm, imconnect->byte_order); + FrameMgrGetToken (fm, imconnect->major_version); + FrameMgrGetToken (fm, imconnect->minor_version); + + FrameMgrFree (fm); + + GetProtocolVersion (imconnect->major_version, + imconnect->minor_version, + &server_major_version, + &server_minor_version); +#ifdef PROTOCOL_RICH + if (i18n_core->address.improto) + { + if (!(i18n_core->address.improto(ims, call_data))) + return; + /*endif*/ + } + /*endif*/ +#endif /* PROTOCOL_RICH */ + + fm = FrameMgrInit (connect_reply_fr, + NULL, + _Xi18nNeedSwap (i18n_core, connect_id)); + + total_size = FrameMgrGetTotalSize (fm); + reply = (unsigned char *) malloc (total_size); + if (!reply) + { + _Xi18nSendMessage (ims, connect_id, XIM_ERROR, 0, 0, 0); + return; + } + /*endif*/ + memset (reply, 0, total_size); + FrameMgrSetBuffer (fm, reply); + + FrameMgrPutToken (fm, server_major_version); + FrameMgrPutToken (fm, server_minor_version); + + _Xi18nSendMessage (ims, + connect_id, + XIM_CONNECT_REPLY, + 0, + reply, + total_size); + + FrameMgrFree (fm); + XFree (reply); +} + +static void DisConnectMessageProc (XIMS ims, IMProtocol *call_data) +{ + Xi18n i18n_core = ims->protocol; + unsigned char *reply = NULL; + CARD16 connect_id = call_data->any.connect_id; + +#ifdef PROTOCOL_RICH + if (i18n_core->address.improto) + { + if (!(i18n_core->address.improto (ims, call_data))) + return; + /*endif*/ + } + /*endif*/ +#endif /* PROTOCOL_RICH */ + + _Xi18nSendMessage (ims, + connect_id, + XIM_DISCONNECT_REPLY, + 0, + reply, + 0); + + i18n_core->methods.disconnect (ims, connect_id); +} + +static void OpenMessageProc(XIMS ims, IMProtocol *call_data, unsigned char *p) +{ + Xi18n i18n_core = ims->protocol; + FrameMgr fm; + extern XimFrameRec open_fr[]; + extern XimFrameRec open_reply_fr[]; + unsigned char *reply = NULL; + int str_size; + register int i, total_size; + CARD16 connect_id = call_data->any.connect_id; + int str_length; + char *name; + IMOpenStruct *imopen = (IMOpenStruct *) &call_data->imopen; + + fm = FrameMgrInit (open_fr, + (char *) p, + _Xi18nNeedSwap (i18n_core, connect_id)); + + /* get data */ + FrameMgrGetToken (fm, str_length); + FrameMgrSetSize (fm, str_length); + FrameMgrGetToken (fm, name); + imopen->lang.length = str_length; + imopen->lang.name = malloc (str_length + 1); + strncpy (imopen->lang.name, name, str_length); + imopen->lang.name[str_length] = (char) 0; + + FrameMgrFree (fm); + + if (i18n_core->address.improto) + { + if (!(i18n_core->address.improto(ims, call_data))) + return; + /*endif*/ + } + /*endif*/ + if ((i18n_core->address.imvalue_mask & I18N_ON_KEYS) + || + (i18n_core->address.imvalue_mask & I18N_OFF_KEYS)) + { + _Xi18nSendTriggerKey (ims, connect_id); + } + /*endif*/ + XFree (imopen->lang.name); + + fm = FrameMgrInit (open_reply_fr, + NULL, + _Xi18nNeedSwap (i18n_core, connect_id)); + + /* set iteration count for list of imattr */ + FrameMgrSetIterCount (fm, i18n_core->address.im_attr_num); + + /* set length of BARRAY item in ximattr_fr */ + for (i = 0; i < i18n_core->address.im_attr_num; i++) + { + str_size = strlen (i18n_core->address.xim_attr[i].name); + FrameMgrSetSize (fm, str_size); + } + /*endfor*/ + /* set iteration count for list of icattr */ + FrameMgrSetIterCount (fm, i18n_core->address.ic_attr_num); + /* set length of BARRAY item in xicattr_fr */ + for (i = 0; i < i18n_core->address.ic_attr_num; i++) + { + str_size = strlen (i18n_core->address.xic_attr[i].name); + FrameMgrSetSize (fm, str_size); + } + /*endfor*/ + + total_size = FrameMgrGetTotalSize (fm); + reply = (unsigned char *) malloc (total_size); + if (!reply) + { + _Xi18nSendMessage (ims, connect_id, XIM_ERROR, 0, 0, 0); + return; + } + /*endif*/ + memset (reply, 0, total_size); + FrameMgrSetBuffer (fm, reply); + + /* input input-method ID */ + FrameMgrPutToken (fm, connect_id); + + for (i = 0; i < i18n_core->address.im_attr_num; i++) + { + str_size = FrameMgrGetSize (fm); + FrameMgrPutToken (fm, i18n_core->address.xim_attr[i].attribute_id); + FrameMgrPutToken (fm, i18n_core->address.xim_attr[i].type); + FrameMgrPutToken (fm, str_size); + FrameMgrPutToken (fm, i18n_core->address.xim_attr[i].name); + } + /*endfor*/ + for (i = 0; i < i18n_core->address.ic_attr_num; i++) + { + str_size = FrameMgrGetSize (fm); + FrameMgrPutToken (fm, i18n_core->address.xic_attr[i].attribute_id); + FrameMgrPutToken (fm, i18n_core->address.xic_attr[i].type); + FrameMgrPutToken (fm, str_size); + FrameMgrPutToken (fm, i18n_core->address.xic_attr[i].name); + } + /*endfor*/ + + _Xi18nSendMessage (ims, + connect_id, + XIM_OPEN_REPLY, + 0, + reply, + total_size); + + FrameMgrFree (fm); + XFree (reply); +} + +static void CloseMessageProc (XIMS ims, + IMProtocol *call_data, + unsigned char *p) +{ + Xi18n i18n_core = ims->protocol; + FrameMgr fm; + extern XimFrameRec close_fr[]; + extern XimFrameRec close_reply_fr[]; + unsigned char *reply = NULL; + register int total_size; + CARD16 connect_id = call_data->any.connect_id; + CARD16 input_method_ID; + + fm = FrameMgrInit (close_fr, + (char *) p, + _Xi18nNeedSwap (i18n_core, connect_id)); + + FrameMgrGetToken (fm, input_method_ID); + + FrameMgrFree (fm); + + if (i18n_core->address.improto) + { + if (!(i18n_core->address.improto (ims, call_data))) + return; + /*endif*/ + } + /*endif*/ + + fm = FrameMgrInit (close_reply_fr, + NULL, + _Xi18nNeedSwap (i18n_core, connect_id)); + + total_size = FrameMgrGetTotalSize (fm); + reply = (unsigned char *) malloc (total_size); + if (!reply) + { + _Xi18nSendMessage (ims, + connect_id, + XIM_ERROR, + 0, + 0, + 0); + return; + } + /*endif*/ + memset (reply, 0, total_size); + FrameMgrSetBuffer (fm, reply); + + FrameMgrPutToken (fm, input_method_ID); + + _Xi18nSendMessage (ims, + connect_id, + XIM_CLOSE_REPLY, + 0, + reply, + total_size); + + FrameMgrFree (fm); + XFree (reply); +} + +static XIMExt *MakeExtensionList (Xi18n i18n_core, + XIMStr *lib_extension, + int number, + int *reply_number) +{ + XIMExt *ext_list; + XIMExt *im_ext = (XIMExt *) i18n_core->address.extension; + int im_ext_len = i18n_core->address.ext_num; + int i; + int j; + + *reply_number = 0; + + if (number == 0) + { + /* query all extensions */ + *reply_number = im_ext_len; + } + else + { + for (i = 0; i < im_ext_len; i++) + { + for (j = 0; j < (int) number; j++) + { + if (strcmp (lib_extension[j].name, im_ext[i].name) == 0) + { + (*reply_number)++; + break; + } + /*endif*/ + } + /*endfor*/ + } + /*endfor*/ + } + /*endif*/ + + if (!(*reply_number)) + return NULL; + /*endif*/ + ext_list = (XIMExt *) malloc (sizeof (XIMExt)*(*reply_number)); + if (!ext_list) + return NULL; + /*endif*/ + memset (ext_list, 0, sizeof (XIMExt)*(*reply_number)); + + if (number == 0) + { + /* query all extensions */ + for (i = 0; i < im_ext_len; i++) + { + ext_list[i].major_opcode = im_ext[i].major_opcode; + ext_list[i].minor_opcode = im_ext[i].minor_opcode; + ext_list[i].length = im_ext[i].length; + ext_list[i].name = malloc (im_ext[i].length + 1); + strcpy (ext_list[i].name, im_ext[i].name); + } + /*endfor*/ + } + else + { + int n = 0; + + for (i = 0; i < im_ext_len; i++) + { + for (j = 0; j < (int)number; j++) + { + if (strcmp (lib_extension[j].name, im_ext[i].name) == 0) + { + ext_list[n].major_opcode = im_ext[i].major_opcode; + ext_list[n].minor_opcode = im_ext[i].minor_opcode; + ext_list[n].length = im_ext[i].length; + ext_list[n].name = malloc (im_ext[i].length + 1); + strcpy (ext_list[n].name, im_ext[i].name); + n++; + break; + } + /*endif*/ + } + /*endfor*/ + } + /*endfor*/ + } + /*endif*/ + return ext_list; +} + +static void QueryExtensionMessageProc (XIMS ims, + IMProtocol *call_data, + unsigned char *p) +{ + Xi18n i18n_core = ims->protocol; + FrameMgr fm; + FmStatus status; + extern XimFrameRec query_extension_fr[]; + extern XimFrameRec query_extension_reply_fr[]; + unsigned char *reply = NULL; + int str_size; + register int i; + register int number; + register int total_size; + int byte_length; + int reply_number = 0; + XIMExt *ext_list; + IMQueryExtensionStruct *query_ext = + (IMQueryExtensionStruct *) &call_data->queryext; + CARD16 connect_id = call_data->any.connect_id; + CARD16 input_method_ID; + + fm = FrameMgrInit (query_extension_fr, + (char *) p, + _Xi18nNeedSwap (i18n_core, connect_id)); + + FrameMgrGetToken (fm, input_method_ID); + FrameMgrGetToken (fm, byte_length); + query_ext->extension = (XIMStr *) malloc (sizeof (XIMStr)*10); + memset (query_ext->extension, 0, sizeof (XIMStr)*10); + number = 0; + while (FrameMgrIsIterLoopEnd (fm, &status) == False) + { + char *name; + int str_length; + + FrameMgrGetToken (fm, str_length); + FrameMgrSetSize (fm, str_length); + query_ext->extension[number].length = str_length; + FrameMgrGetToken (fm, name); + query_ext->extension[number].name = malloc (str_length + 1); + strncpy (query_ext->extension[number].name, name, str_length); + query_ext->extension[number].name[str_length] = (char) 0; + number++; + } + /*endwhile*/ + query_ext->number = number; + +#ifdef PROTOCOL_RICH + if (i18n_core->address.improto) + { + if (!(i18n_core->address.improto(ims, call_data))) + return; + /*endif*/ + } + /*endif*/ +#endif /* PROTOCOL_RICH */ + + FrameMgrFree (fm); + + ext_list = MakeExtensionList (i18n_core, + query_ext->extension, + number, + &reply_number); + + for (i = 0; i < number; i++) + XFree (query_ext->extension[i].name); + /*endfor*/ + XFree (query_ext->extension); + + fm = FrameMgrInit (query_extension_reply_fr, + NULL, + _Xi18nNeedSwap (i18n_core, connect_id)); + + /* set iteration count for list of extensions */ + FrameMgrSetIterCount (fm, reply_number); + + /* set length of BARRAY item in ext_fr */ + for (i = 0; i < reply_number; i++) + { + str_size = strlen (ext_list[i].name); + FrameMgrSetSize (fm, str_size); + } + /*endfor*/ + + total_size = FrameMgrGetTotalSize (fm); + reply = (unsigned char *) malloc (total_size); + if (!reply) + { + _Xi18nSendMessage (ims, + connect_id, + XIM_ERROR, + 0, + 0, + 0); + return; + } + /*endif*/ + memset (reply, 0, total_size); + FrameMgrSetBuffer (fm, reply); + + FrameMgrPutToken (fm, input_method_ID); + + for (i = 0; i < reply_number; i++) + { + str_size = FrameMgrGetSize (fm); + FrameMgrPutToken (fm, ext_list[i].major_opcode); + FrameMgrPutToken (fm, ext_list[i].minor_opcode); + FrameMgrPutToken (fm, str_size); + FrameMgrPutToken (fm, ext_list[i].name); + } + /*endfor*/ + _Xi18nSendMessage (ims, + connect_id, + XIM_QUERY_EXTENSION_REPLY, + 0, + reply, + total_size); + FrameMgrFree (fm); + XFree (reply); + + for (i = 0; i < reply_number; i++) + XFree (ext_list[i].name); + /*endfor*/ + XFree ((char *) ext_list); +} + +static void SyncReplyMessageProc (XIMS ims, + IMProtocol *call_data, + unsigned char *p) +{ + Xi18n i18n_core = ims->protocol; + FrameMgr fm; + extern XimFrameRec sync_reply_fr[]; + CARD16 connect_id = call_data->any.connect_id; + Xi18nClient *client; + CARD16 input_method_ID; + CARD16 input_context_ID; + + client = (Xi18nClient *)_Xi18nFindClient (i18n_core, connect_id); + fm = FrameMgrInit (sync_reply_fr, + (char *) p, + _Xi18nNeedSwap (i18n_core, connect_id)); + FrameMgrGetToken (fm, input_method_ID); + FrameMgrGetToken (fm, input_context_ID); + FrameMgrFree (fm); + + client->sync = False; + + if (ims->sync == True) { + ims->sync = False; + if (i18n_core->address.improto) { + call_data->sync_xlib.major_code = XIM_SYNC_REPLY; + call_data->sync_xlib.minor_code = 0; + call_data->sync_xlib.connect_id = input_method_ID; + call_data->sync_xlib.icid = input_context_ID; + i18n_core->address.improto(ims, call_data); + } + } +} + +static void GetIMValueFromName (Xi18n i18n_core, + CARD16 connect_id, + char *buf, + char *name, + int *length) +{ + register int i; + + if (strcmp (name, XNQueryInputStyle) == 0) + { + XIMStyles *styles = (XIMStyles *) &i18n_core->address.input_styles; + + *length = sizeof (CARD16)*2; /* count_styles, unused */ + *length += styles->count_styles*sizeof (CARD32); + + if (buf != NULL) + { + FrameMgr fm; + extern XimFrameRec input_styles_fr[]; + unsigned char *data = NULL; + int total_size; + + fm = FrameMgrInit (input_styles_fr, + NULL, + _Xi18nNeedSwap (i18n_core, connect_id)); + + /* set iteration count for list of input_style */ + FrameMgrSetIterCount (fm, styles->count_styles); + + total_size = FrameMgrGetTotalSize (fm); + data = (unsigned char *) malloc (total_size); + if (!data) + return; + /*endif*/ + memset (data, 0, total_size); + FrameMgrSetBuffer (fm, data); + + FrameMgrPutToken (fm, styles->count_styles); + for (i = 0; i < (int) styles->count_styles; i++) + FrameMgrPutToken (fm, styles->supported_styles[i]); + /*endfor*/ + memmove (buf, data, total_size); + FrameMgrFree (fm); + + /* add by hurrica...@126.com */ + free (data); + /* ************************* */ + } + /*endif*/ + } + /*endif*/ + + else if (strcmp (name, XNQueryIMValuesList) == 0) { + } +} + +static XIMAttribute *MakeIMAttributeList (Xi18n i18n_core, + CARD16 connect_id, + CARD16 *list, + int *number, + int *length) +{ + XIMAttribute *attrib_list; + int list_num; + XIMAttr *attr = i18n_core->address.xim_attr; + int list_len = i18n_core->address.im_attr_num; + register int i; + register int j; + int value_length; + int number_ret = 0; + + *length = 0; + list_num = 0; + for (i = 0; i < *number; i++) + { + for (j = 0; j < list_len; j++) + { + if (attr[j].attribute_id == list[i]) + { + list_num++; + break; + } + /*endif*/ + } + /*endfor*/ + } + /*endfor*/ + attrib_list = (XIMAttribute *) malloc (sizeof (XIMAttribute)*list_num); + if (!attrib_list) + return NULL; + /*endif*/ + memset (attrib_list, 0, sizeof (XIMAttribute)*list_num); + number_ret = list_num; + list_num = 0; + for (i = 0; i < *number; i++) + { + for (j = 0; j < list_len; j++) + { + if (attr[j].attribute_id == list[i]) + { + attrib_list[list_num].attribute_id = attr[j].attribute_id; + attrib_list[list_num].name_length = attr[j].length; + attrib_list[list_num].name = attr[j].name; + attrib_list[list_num].type = attr[j].type; + GetIMValueFromName (i18n_core, + connect_id, + NULL, + attr[j].name, + &value_length); + attrib_list[list_num].value_length = value_length; + attrib_list[list_num].value = (void *) malloc (value_length); + memset(attrib_list[list_num].value, 0, value_length); + GetIMValueFromName (i18n_core, + connect_id, + attrib_list[list_num].value, + attr[j].name, + &value_length); + *length += sizeof (CARD16)*2; + *length += value_length; + *length += IMPAD (value_length); + list_num++; + break; + } + /*endif*/ + } + /*endfor*/ + } + /*endfor*/ + *number = number_ret; + return attrib_list; +} + +static void GetIMValuesMessageProc (XIMS ims, + IMProtocol *call_data, + unsigned char *p) +{ + Xi18n i18n_core = ims->protocol; + FrameMgr fm; + FmStatus status; + extern XimFrameRec get_im_values_fr[]; + extern XimFrameRec get_im_values_reply_fr[]; + CARD16 byte_length; + int list_len, total_size; + unsigned char *reply = NULL; + int iter_count; + register int i; + register int j; + int number; + CARD16 *im_attrID_list; + char **name_list; + CARD16 name_number; + XIMAttribute *im_attribute_list; + IMGetIMValuesStruct *getim = (IMGetIMValuesStruct *)&call_data->getim; + CARD16 connect_id = call_data->any.connect_id; + CARD16 input_method_ID; + + /* create FrameMgr */ + fm = FrameMgrInit (get_im_values_fr, + (char *) p, + _Xi18nNeedSwap (i18n_core, connect_id)); + + FrameMgrGetToken (fm, input_method_ID); + FrameMgrGetToken (fm, byte_length); + im_attrID_list = (CARD16 *) malloc (sizeof (CARD16)*20); + memset (im_attrID_list, 0, sizeof (CARD16)*20); + name_list = (char **)malloc(sizeof(char *) * 20); + memset(name_list, 0, sizeof(char *) * 20); + number = 0; + while (FrameMgrIsIterLoopEnd (fm, &status) == False) + { + FrameMgrGetToken (fm, im_attrID_list[number]); + number++; + } + FrameMgrFree (fm); + + name_number = 0; + for (i = 0; i < number; i++) { + for (j = 0; j < i18n_core->address.im_attr_num; j++) { + if (i18n_core->address.xim_attr[j].attribute_id == + im_attrID_list[i]) { + name_list[name_number++] = + i18n_core->address.xim_attr[j].name; + break; + } + } + } + getim->number = name_number; + getim->im_attr_list = name_list; + XFree (name_list); + + +#ifdef PROTOCOL_RICH + if (i18n_core->address.improto) { + if (!(i18n_core->address.improto (ims, call_data))) + return; + } +#endif /* PROTOCOL_RICH */ + + im_attribute_list = MakeIMAttributeList (i18n_core, + connect_id, + im_attrID_list, + &number, + &list_len); + if (im_attrID_list) + XFree (im_attrID_list); + /*endif*/ + + fm = FrameMgrInit (get_im_values_reply_fr, + NULL, + _Xi18nNeedSwap (i18n_core, connect_id)); + + iter_count = number; + + /* set iteration count for list of im_attribute */ + FrameMgrSetIterCount (fm, iter_count); + + /* set length of BARRAY item in ximattribute_fr */ + for (i = 0; i < iter_count; i++) + FrameMgrSetSize (fm, im_attribute_list[i].value_length); + /*endfor*/ + + total_size = FrameMgrGetTotalSize (fm); + reply = (unsigned char *) malloc (total_size); + if (!reply) + { + _Xi18nSendMessage (ims, connect_id, XIM_ERROR, 0, 0, 0); + return; + } + /*endif*/ + memset (reply, 0, total_size); + FrameMgrSetBuffer (fm, reply); + + FrameMgrPutToken (fm, input_method_ID); + + for (i = 0; i < iter_count; i++) + { + FrameMgrPutToken (fm, im_attribute_list[i].attribute_id); + FrameMgrPutToken (fm, im_attribute_list[i].value_length); + FrameMgrPutToken (fm, im_attribute_list[i].value); + } + /*endfor*/ + _Xi18nSendMessage (ims, + connect_id, + XIM_GET_IM_VALUES_REPLY, + 0, + reply, + total_size); + FrameMgrFree (fm); + XFree (reply); + + for (i = 0; i < iter_count; i++) + XFree(im_attribute_list[i].value); + XFree (im_attribute_list); +} + +static void CreateICMessageProc (XIMS ims, + IMProtocol *call_data, + unsigned char *p) +{ + _Xi18nChangeIC (ims, call_data, p, True); +} + +static void SetICValuesMessageProc (XIMS ims, + IMProtocol *call_data, + unsigned char *p) +{ + _Xi18nChangeIC (ims, call_data, p, False); +} + +static void GetICValuesMessageProc (XIMS ims, + IMProtocol *call_data, + unsigned char *p) +{ + _Xi18nGetIC (ims, call_data, p); +} + +static void SetICFocusMessageProc (XIMS ims, + IMProtocol *call_data, + unsigned char *p) +{ + Xi18n i18n_core = ims->protocol; + FrameMgr fm; + extern XimFrameRec set_ic_focus_fr[]; + IMChangeFocusStruct *setfocus; + CARD16 connect_id = call_data->any.connect_id; + CARD16 input_method_ID; + + setfocus = (IMChangeFocusStruct *) &call_data->changefocus; + + fm = FrameMgrInit (set_ic_focus_fr, + (char *) p, + _Xi18nNeedSwap (i18n_core, connect_id)); + + /* get data */ + FrameMgrGetToken (fm, input_method_ID); + FrameMgrGetToken (fm, setfocus->icid); + + FrameMgrFree (fm); + + if (i18n_core->address.improto) + { + if (!(i18n_core->address.improto (ims, call_data))) + return; + /*endif*/ + } + /*endif*/ +} + +static void UnsetICFocusMessageProc (XIMS ims, + IMProtocol *call_data, + unsigned char *p) +{ + Xi18n i18n_core = ims->protocol; + FrameMgr fm; + extern XimFrameRec unset_ic_focus_fr[]; + IMChangeFocusStruct *unsetfocus; + CARD16 connect_id = call_data->any.connect_id; + CARD16 input_method_ID; + + unsetfocus = (IMChangeFocusStruct *) &call_data->changefocus; + + fm = FrameMgrInit (unset_ic_focus_fr, + (char *) p, + _Xi18nNeedSwap (i18n_core, connect_id)); + + /* get data */ + FrameMgrGetToken (fm, input_method_ID); + FrameMgrGetToken (fm, unsetfocus->icid); + + FrameMgrFree (fm); + + if (i18n_core->address.improto) + { + if (!(i18n_core->address.improto (ims, call_data))) + return; + /*endif*/ + } + /*endif*/ +} + +static void DestroyICMessageProc (XIMS ims, + IMProtocol *call_data, + unsigned char *p) +{ + Xi18n i18n_core = ims->protocol; + FrameMgr fm; + extern XimFrameRec destroy_ic_fr[]; + extern XimFrameRec destroy_ic_reply_fr[]; + register int total_size; + unsigned char *reply = NULL; + IMDestroyICStruct *destroy = + (IMDestroyICStruct *) &call_data->destroyic; + CARD16 connect_id = call_data->any.connect_id; + CARD16 input_method_ID; + + fm = FrameMgrInit (destroy_ic_fr, + (char *) p, + _Xi18nNeedSwap (i18n_core, connect_id)); + + /* get data */ + FrameMgrGetToken (fm, input_method_ID); + FrameMgrGetToken (fm, destroy->icid); + + FrameMgrFree (fm); + + if (i18n_core->address.improto) + { + if (!(i18n_core->address.improto (ims, call_data))) + return; + /*endif*/ + } + /*endif*/ + + fm = FrameMgrInit (destroy_ic_reply_fr, + NULL, + _Xi18nNeedSwap (i18n_core, connect_id)); + + total_size = FrameMgrGetTotalSize (fm); + reply = (unsigned char *) malloc (total_size); + if (!reply) + { + _Xi18nSendMessage (ims, connect_id, XIM_ERROR, 0, 0, 0); + return; + } + /*endif*/ + memset (reply, 0, total_size); + FrameMgrSetBuffer (fm, reply); + + FrameMgrPutToken (fm, input_method_ID); + FrameMgrPutToken (fm, destroy->icid); + + _Xi18nSendMessage (ims, + connect_id, + XIM_DESTROY_IC_REPLY, + 0, + reply, + total_size); + XFree(reply); + FrameMgrFree (fm); +} + +static void ResetICMessageProc (XIMS ims, + IMProtocol *call_data, + unsigned char *p) +{ + Xi18n i18n_core = ims->protocol; + FrameMgr fm; + extern XimFrameRec reset_ic_fr[]; + extern XimFrameRec reset_ic_reply_fr[]; + register int total_size; + unsigned char *reply = NULL; + IMResetICStruct *resetic = + (IMResetICStruct *) &call_data->resetic; + CARD16 connect_id = call_data->any.connect_id; + CARD16 input_method_ID; + + fm = FrameMgrInit (reset_ic_fr, + (char *) p, + _Xi18nNeedSwap (i18n_core, connect_id)); + + /* get data */ + FrameMgrGetToken (fm, input_method_ID); + FrameMgrGetToken (fm, resetic->icid); + + FrameMgrFree (fm); + + if (i18n_core->address.improto) + { + if (!(i18n_core->address.improto(ims, call_data))) + return; + /*endif*/ + } + /*endif*/ + + /* create FrameMgr */ + fm = FrameMgrInit (reset_ic_reply_fr, + NULL, + _Xi18nNeedSwap (i18n_core, connect_id)); + + /* set length of STRING8 */ + FrameMgrSetSize (fm, resetic->length); + + total_size = FrameMgrGetTotalSize (fm); + reply = (unsigned char *) malloc (total_size); + if (!reply) + { + _Xi18nSendMessage (ims, connect_id, XIM_ERROR, 0, 0, 0); + return; + } + /*endif*/ + memset (reply, 0, total_size); + FrameMgrSetBuffer (fm, reply); + + FrameMgrPutToken (fm, input_method_ID); + FrameMgrPutToken (fm, resetic->icid); + FrameMgrPutToken(fm, resetic->length); + FrameMgrPutToken (fm, resetic->commit_string); + + _Xi18nSendMessage (ims, + connect_id, + XIM_RESET_IC_REPLY, + 0, + reply, + total_size); + FrameMgrFree (fm); + XFree(reply); +} + +static int WireEventToEvent (Xi18n i18n_core, + xEvent *event, + CARD16 serial, + XEvent *ev) +{ + ev->xany.serial = event->u.u.sequenceNumber & ((unsigned long) 0xFFFF); + ev->xany.serial |= serial << 16; + ev->xany.send_event = False; + ev->xany.display = i18n_core->address.dpy; + switch (ev->type = event->u.u.type & 0x7F) + { + case KeyPress: + case KeyRelease: + ((XKeyEvent *) ev)->keycode = event->u.u.detail; + ((XKeyEvent *) ev)->window = event->u.keyButtonPointer.event; + ((XKeyEvent *) ev)->state = event->u.keyButtonPointer.state; + ((XKeyEvent *) ev)->time = event->u.keyButtonPointer.time; + ((XKeyEvent *) ev)->root = event->u.keyButtonPointer.root; + ((XKeyEvent *) ev)->x = event->u.keyButtonPointer.eventX; + ((XKeyEvent *) ev)->y = event->u.keyButtonPointer.eventY; + ((XKeyEvent *) ev)->x_root = 0; + ((XKeyEvent *) ev)->y_root = 0; + return True; + } + return False; +} + +static void ForwardEventMessageProc (XIMS ims, + IMProtocol *call_data, + unsigned char *p) +{ + Xi18n i18n_core = ims->protocol; + FrameMgr fm; + extern XimFrameRec forward_event_fr[]; + xEvent wire_event; + IMForwardEventStruct *forward = + (IMForwardEventStruct*) &call_data->forwardevent; + CARD16 connect_id = call_data->any.connect_id; + CARD16 input_method_ID; + + fm = FrameMgrInit (forward_event_fr, + (char *) p, + _Xi18nNeedSwap (i18n_core, connect_id)); + /* get data */ + FrameMgrGetToken (fm, input_method_ID); + FrameMgrGetToken (fm, forward->icid); + FrameMgrGetToken (fm, forward->sync_bit); + FrameMgrGetToken (fm, forward->serial_number); + p += sizeof (CARD16)*4; + memmove (&wire_event, p, sizeof (xEvent)); + + FrameMgrFree (fm); + + if (WireEventToEvent (i18n_core, + &wire_event, + forward->serial_number, + &forward->event) == True) + { + if (i18n_core->address.improto) + { + if (!(i18n_core->address.improto(ims, call_data))) + return; + /*endif*/ + } + /*endif*/ + } + /*endif*/ +} + +static void ExtForwardKeyEventMessageProc (XIMS ims, + IMProtocol *call_data, + unsigned char *p) +{ + Xi18n i18n_core = ims->protocol; + FrameMgr fm; + extern XimFrameRec ext_forward_keyevent_fr[]; + CARD8 type, keycode; + CARD16 state; + CARD32 ev_time, window; + IMForwardEventStruct *forward = + (IMForwardEventStruct *) &call_data->forwardevent; + XEvent *ev = (XEvent *) &forward->event; + CARD16 connect_id = call_data->any.connect_id; + CARD16 input_method_ID; + + fm = FrameMgrInit (ext_forward_keyevent_fr, + (char *) p, + _Xi18nNeedSwap (i18n_core, connect_id)); + /* get data */ + FrameMgrGetToken (fm, input_method_ID); + FrameMgrGetToken (fm, forward->icid); + FrameMgrGetToken (fm, forward->sync_bit); + FrameMgrGetToken (fm, forward->serial_number); + FrameMgrGetToken (fm, type); + FrameMgrGetToken (fm, keycode); + FrameMgrGetToken (fm, state); + FrameMgrGetToken (fm, ev_time); + FrameMgrGetToken (fm, window); + + FrameMgrFree (fm); + + if (type != KeyPress) + { + _Xi18nSendMessage (ims, connect_id, XIM_ERROR, 0, 0, 0); + return; + } + /*endif*/ + + /* make a faked keypress event */ + ev->type = (int)type; + ev->xany.send_event = True; + ev->xany.display = i18n_core->address.dpy; + ev->xany.serial = (unsigned long) forward->serial_number; + ((XKeyEvent *) ev)->keycode = (unsigned int) keycode; + ((XKeyEvent *) ev)->state = (unsigned int) state; + ((XKeyEvent *) ev)->time = (Time) ev_time; + ((XKeyEvent *) ev)->window = (Window) window; + ((XKeyEvent *) ev)->root = DefaultRootWindow (ev->xany.display); + ((XKeyEvent *) ev)->x = 0; + ((XKeyEvent *) ev)->y = 0; + ((XKeyEvent *) ev)->x_root = 0; + ((XKeyEvent *) ev)->y_root = 0; + + if (i18n_core->address.improto) + { + if (!(i18n_core->address.improto (ims, call_data))) + return; + /*endif*/ + } + /*endif*/ +} + +static void ExtMoveMessageProc (XIMS ims, + IMProtocol *call_data, + unsigned char *p) +{ + Xi18n i18n_core = ims->protocol; + FrameMgr fm; + extern XimFrameRec ext_move_fr[]; + IMMoveStruct *extmove = + (IMMoveStruct*) & call_data->extmove; + CARD16 connect_id = call_data->any.connect_id; + CARD16 input_method_ID; + + fm = FrameMgrInit (ext_move_fr, + (char *) p, + _Xi18nNeedSwap (i18n_core, connect_id)); + /* get data */ + FrameMgrGetToken (fm, input_method_ID); + FrameMgrGetToken (fm, extmove->icid); + FrameMgrGetToken (fm, extmove->x); + FrameMgrGetToken (fm, extmove->y); + + FrameMgrFree (fm); + + if (i18n_core->address.improto) + { + if (!(i18n_core->address.improto (ims, call_data))) + return; + /*endif*/ + } + /*endif*/ +} + +static void ExtensionMessageProc (XIMS ims, + IMProtocol *call_data, + unsigned char *p) +{ + switch (call_data->any.minor_code) + { + case XIM_EXT_FORWARD_KEYEVENT: + ExtForwardKeyEventMessageProc (ims, call_data, p); + break; + + case XIM_EXT_MOVE: + ExtMoveMessageProc (ims, call_data, p); + break; + } + /*endswitch*/ +} + +static void TriggerNotifyMessageProc (XIMS ims, + IMProtocol *call_data, + unsigned char *p) +{ + Xi18n i18n_core = ims->protocol; + FrameMgr fm; + extern XimFrameRec trigger_notify_fr[], trigger_notify_reply_fr[]; + register int total_size; + unsigned char *reply = NULL; + IMTriggerNotifyStruct *trigger = + (IMTriggerNotifyStruct *) &call_data->triggernotify; + CARD16 connect_id = call_data->any.connect_id; + CARD16 input_method_ID; + CARD32 flag; + + fm = FrameMgrInit (trigger_notify_fr, + (char *) p, + _Xi18nNeedSwap (i18n_core, connect_id)); + /* get data */ + FrameMgrGetToken (fm, input_method_ID); + FrameMgrGetToken (fm, trigger->icid); + FrameMgrGetToken (fm, trigger->flag); + FrameMgrGetToken (fm, trigger->key_index); + FrameMgrGetToken (fm, trigger->event_mask); + /* + In order to support Front End Method, this event_mask must be saved + per clients so that it should be restored by an XIM_EXT_SET_EVENT_MASK + call when preediting mode is reset to off. + */ + + flag = trigger->flag; + + FrameMgrFree (fm); + + fm = FrameMgrInit (trigger_notify_reply_fr, + NULL, + _Xi18nNeedSwap (i18n_core, connect_id)); + + total_size = FrameMgrGetTotalSize (fm); + reply = (unsigned char *) malloc (total_size); + if (!reply) + { + _Xi18nSendMessage (ims, connect_id, XIM_ERROR, 0, 0, 0); + return; + } + /*endif*/ + memset (reply, 0, total_size); + FrameMgrSetBuffer (fm, reply); + + FrameMgrPutToken (fm, input_method_ID); + FrameMgrPutToken (fm, trigger->icid); + + /* NOTE: + XIM_TRIGGER_NOTIFY_REPLY should be sent before XIM_SET_EVENT_MASK + in case of XIM_TRIGGER_NOTIFY(flag == ON), while it should be + sent after XIM_SET_EVENT_MASK in case of + XIM_TRIGGER_NOTIFY(flag == OFF). + */ + if (flag == 0) + { + /* on key */ + _Xi18nSendMessage (ims, + connect_id, + XIM_TRIGGER_NOTIFY_REPLY, + 0, + reply, + total_size); + IMPreeditStart (ims, (XPointer)call_data); + } + /*endif*/ + if (i18n_core->address.improto) + { + if (!(i18n_core->address.improto(ims, call_data))) + { + FrameMgrFree(fm); + XFree (reply); + return; + } + /*endif*/ + } + /*endif*/ + + if (flag == 1) + { + /* off key */ + IMPreeditEnd (ims, (XPointer) call_data); + _Xi18nSendMessage (ims, + connect_id, + XIM_TRIGGER_NOTIFY_REPLY, + 0, + reply, + total_size); + } + /*endif*/ + FrameMgrFree (fm); + XFree (reply); +} + +static INT16 ChooseEncoding (Xi18n i18n_core, + IMEncodingNegotiationStruct *enc_nego) +{ + Xi18nAddressRec *address = (Xi18nAddressRec *) & i18n_core->address; + XIMEncodings *p; + int i, j; + int enc_index=0; + + p = (XIMEncodings *) &address->encoding_list; + for (i = 0; i < (int) p->count_encodings; i++) + { + for (j = 0; j < (int) enc_nego->encoding_number; j++) + { + if (strcmp (p->supported_encodings[i], + enc_nego->encoding[j].name) == 0) + { + enc_index = j; + break; + } + /*endif*/ + } + /*endfor*/ + } + /*endfor*/ + + return (INT16) enc_index; +#if 0 + return (INT16) XIM_Default_Encoding_IDX; +#endif +} + +static void EncodingNegotiatonMessageProc (XIMS ims, + IMProtocol *call_data, + unsigned char *p) +{ + Xi18n i18n_core = ims->protocol; + FrameMgr fm; + FmStatus status; + CARD16 byte_length; + extern XimFrameRec encoding_negotiation_fr[]; + extern XimFrameRec encoding_negotiation_reply_fr[]; + register int i, total_size; + unsigned char *reply = NULL; + IMEncodingNegotiationStruct *enc_nego = + (IMEncodingNegotiationStruct *) &call_data->encodingnego; + CARD16 connect_id = call_data->any.connect_id; + CARD16 input_method_ID; + + fm = FrameMgrInit (encoding_negotiation_fr, + (char *) p, + _Xi18nNeedSwap (i18n_core, connect_id)); + + FrameMgrGetToken (fm, input_method_ID); + + /* get ENCODING STR field */ + FrameMgrGetToken (fm, byte_length); + if (byte_length > 0) + { + enc_nego->encoding = (XIMStr *) malloc (sizeof (XIMStr)*10); + memset (enc_nego->encoding, 0, sizeof (XIMStr)*10); + i = 0; + while (FrameMgrIsIterLoopEnd (fm, &status) == False) + { + char *name; + int str_length; + + FrameMgrGetToken (fm, str_length); + FrameMgrSetSize (fm, str_length); + enc_nego->encoding[i].length = str_length; + FrameMgrGetToken (fm, name); + enc_nego->encoding[i].name = malloc (str_length + 1); + strncpy (enc_nego->encoding[i].name, name, str_length); + enc_nego->encoding[i].name[str_length] = '\0'; + i++; + } + /*endwhile*/ + enc_nego->encoding_number = i; + } + /*endif*/ + /* get ENCODING INFO field */ + FrameMgrGetToken (fm, byte_length); + if (byte_length > 0) + { + enc_nego->encodinginfo = (XIMStr *) malloc (sizeof (XIMStr)*10); + memset (enc_nego->encoding, 0, sizeof (XIMStr)*10); + i = 0; + while (FrameMgrIsIterLoopEnd (fm, &status) == False) + { + char *name; + int str_length; + + FrameMgrGetToken (fm, str_length); + FrameMgrSetSize (fm, str_length); + enc_nego->encodinginfo[i].length = str_length; + FrameMgrGetToken (fm, name); + enc_nego->encodinginfo[i].name = malloc (str_length + 1); + strncpy (enc_nego->encodinginfo[i].name, name, str_length); + enc_nego->encodinginfo[i].name[str_length] = '\0'; + i++; + } + /*endwhile*/ + enc_nego->encoding_info_number = i; + } + /*endif*/ + + enc_nego->enc_index = ChooseEncoding (i18n_core, enc_nego); + enc_nego->category = 0; + +#ifdef PROTOCOL_RICH + if (i18n_core->address.improto) + { + if (!(i18n_core->address.improto(ims, call_data))) + return; + /*endif*/ + } + /*endif*/ +#endif /* PROTOCOL_RICH */ + + FrameMgrFree (fm); + + fm = FrameMgrInit (encoding_negotiation_reply_fr, + NULL, + _Xi18nNeedSwap (i18n_core, connect_id)); + + total_size = FrameMgrGetTotalSize (fm); + reply = (unsigned char *) malloc (total_size); + if (!reply) + { + _Xi18nSendMessage (ims, connect_id, XIM_ERROR, 0, 0, 0); + return; + } + /*endif*/ + memset (reply, 0, total_size); + FrameMgrSetBuffer (fm, reply); + + FrameMgrPutToken (fm, input_method_ID); + FrameMgrPutToken (fm, enc_nego->category); + FrameMgrPutToken (fm, enc_nego->enc_index); + + _Xi18nSendMessage (ims, + connect_id, + XIM_ENCODING_NEGOTIATION_REPLY, + 0, + reply, + total_size); + XFree (reply); + + /* free data for encoding list */ + if (enc_nego->encoding) + { + for (i = 0; i < (int) enc_nego->encoding_number; i++) + XFree (enc_nego->encoding[i].name); + /*endfor*/ + XFree (enc_nego->encoding); + } + /*endif*/ + if (enc_nego->encodinginfo) + { + for (i = 0; i < (int) enc_nego->encoding_info_number; i++) + XFree (enc_nego->encodinginfo[i].name); + /*endfor*/ + XFree (enc_nego->encodinginfo); + } + /*endif*/ + FrameMgrFree (fm); +} + +void PreeditStartReplyMessageProc (XIMS ims, + IMProtocol *call_data, + unsigned char *p) +{ + Xi18n i18n_core = ims->protocol; + FrameMgr fm; + extern XimFrameRec preedit_start_reply_fr[]; + IMPreeditCBStruct *preedit_CB = + (IMPreeditCBStruct *) &call_data->preedit_callback; + CARD16 connect_id = call_data->any.connect_id; + CARD16 input_method_ID; + + fm = FrameMgrInit (preedit_start_reply_fr, + (char *) p, + _Xi18nNeedSwap (i18n_core, connect_id)); + /* get data */ + FrameMgrGetToken (fm, input_method_ID); + FrameMgrGetToken (fm, preedit_CB->icid); + FrameMgrGetToken (fm, preedit_CB->todo.return_value); + + FrameMgrFree (fm); + + if (i18n_core->address.improto) + { + if (!(i18n_core->address.improto (ims, call_data))) + return; + /*endif*/ + } + /*endif*/ +} + +void PreeditCaretReplyMessageProc (XIMS ims, + IMProtocol *call_data, + unsigned char *p) +{ + Xi18n i18n_core = ims->protocol; + FrameMgr fm; + extern XimFrameRec preedit_caret_reply_fr[]; + IMPreeditCBStruct *preedit_CB = + (IMPreeditCBStruct *) &call_data->preedit_callback; + XIMPreeditCaretCallbackStruct *caret = + (XIMPreeditCaretCallbackStruct *) & preedit_CB->todo.caret; + CARD16 connect_id = call_data->any.connect_id; + CARD16 input_method_ID; + + fm = FrameMgrInit (preedit_caret_reply_fr, + (char *) p, + _Xi18nNeedSwap (i18n_core, connect_id)); + /* get data */ + FrameMgrGetToken (fm, input_method_ID); + FrameMgrGetToken (fm, preedit_CB->icid); + FrameMgrGetToken (fm, caret->position); + + FrameMgrFree (fm); + + if (i18n_core->address.improto) + { + if (!(i18n_core->address.improto(ims, call_data))) + return; + /*endif*/ + } + /*endif*/ +} + +void StrConvReplyMessageProc (XIMS ims, + IMProtocol *call_data, + unsigned char *p) +{ + return; +} + +static void AddQueue (Xi18nClient *client, unsigned char *p) +{ + XIMPending *new; + XIMPending *last; + + if ((new = (XIMPending *) malloc (sizeof (XIMPending))) == NULL) + return; + /*endif*/ + new->p = p; + new->next = (XIMPending *) NULL; + if (!client->pending) + { + client->pending = new; + } + else + { + for (last = client->pending; last->next; last = last->next) + ; + /*endfor*/ + last->next = new; + } + /*endif*/ + return; +} + +static void ProcessQueue (XIMS ims, CARD16 connect_id) +{ + Xi18n i18n_core = ims->protocol; + Xi18nClient *client = (Xi18nClient *) _Xi18nFindClient (i18n_core, + connect_id); + + while (client->sync == False && client->pending) + { + XimProtoHdr *hdr = (XimProtoHdr *) client->pending->p; + unsigned char *p1 = (unsigned char *) (hdr + 1); + IMProtocol call_data; + + call_data.major_code = hdr->major_opcode; + call_data.any.minor_code = hdr->minor_opcode; + call_data.any.connect_id = connect_id; + + switch (hdr->major_opcode) + { + case XIM_FORWARD_EVENT: + ForwardEventMessageProc(ims, &call_data, p1); + break; + } + /*endswitch*/ + XFree (hdr); + { + XIMPending *old = client->pending; + + client->pending = old->next; + XFree (old); + } + } + /*endwhile*/ + return; +} + + +void _Xi18nMessageHandler (XIMS ims, + CARD16 connect_id, + unsigned char *p, + Bool *delete) +{ + XimProtoHdr *hdr = (XimProtoHdr *)p; + unsigned char *p1 = (unsigned char *)(hdr + 1); + IMProtocol call_data; + Xi18n i18n_core = ims->protocol; + Xi18nClient *client; + + client = (Xi18nClient *) _Xi18nFindClient (i18n_core, connect_id); + if (hdr == (XimProtoHdr *) NULL) + return; + /*endif*/ + + memset (&call_data, 0, sizeof(IMProtocol)); + + call_data.major_code = hdr->major_opcode; + call_data.any.minor_code = hdr->minor_opcode; + call_data.any.connect_id = connect_id; + + switch (call_data.major_code) + { + case XIM_CONNECT: +#ifdef XIM_DEBUG + DebugLog("-- XIM_CONNECT\n"); +#endif + ConnectMessageProc (ims, &call_data, p1); + break; + + case XIM_DISCONNECT: +#ifdef XIM_DEBUG + DebugLog("-- XIM_DISCONNECT\n"); +#endif + DisConnectMessageProc (ims, &call_data); + break; + + case XIM_OPEN: +#ifdef XIM_DEBUG + DebugLog("-- XIM_OPEN\n"); +#endif + OpenMessageProc (ims, &call_data, p1); + break; + + case XIM_CLOSE: +#ifdef XIM_DEBUG + DebugLog("-- XIM_CLOSE\n"); +#endif + CloseMessageProc (ims, &call_data, p1); + break; + + case XIM_QUERY_EXTENSION: +#ifdef XIM_DEBUG + DebugLog("-- XIM_QUERY_EXTENSION\n"); +#endif + QueryExtensionMessageProc (ims, &call_data, p1); + break; + + case XIM_GET_IM_VALUES: +#ifdef XIM_DEBUG + DebugLog("-- XIM_GET_IM_VALUES\n"); +#endif + GetIMValuesMessageProc (ims, &call_data, p1); + break; + + case XIM_CREATE_IC: +#ifdef XIM_DEBUG + DebugLog("-- XIM_CREATE_IC\n"); +#endif + CreateICMessageProc (ims, &call_data, p1); + break; + + case XIM_SET_IC_VALUES: +#ifdef XIM_DEBUG + DebugLog("-- XIM_SET_IC_VALUES\n"); +#endif + SetICValuesMessageProc (ims, &call_data, p1); + break; + + case XIM_GET_IC_VALUES: +#ifdef XIM_DEBUG + DebugLog("-- XIM_GET_IC_VALUES\n"); +#endif + GetICValuesMessageProc (ims, &call_data, p1); + break; + + case XIM_SET_IC_FOCUS: +#ifdef XIM_DEBUG + DebugLog("-- XIM_SET_IC_FOCUS\n"); +#endif + SetICFocusMessageProc (ims, &call_data, p1); + break; + + case XIM_UNSET_IC_FOCUS: +#ifdef XIM_DEBUG + DebugLog("-- XIM_UNSET_IC_FOCUS\n"); +#endif + UnsetICFocusMessageProc (ims, &call_data, p1); + break; + + case XIM_DESTROY_IC: +#ifdef XIM_DEBUG + DebugLog("-- XIM_DESTROY_IC\n"); +#endif + DestroyICMessageProc (ims, &call_data, p1); + break; + + case XIM_RESET_IC: +#ifdef XIM_DEBUG + DebugLog("-- XIM_RESET_IC\n"); +#endif + ResetICMessageProc (ims, &call_data, p1); + break; + + case XIM_FORWARD_EVENT: +#ifdef XIM_DEBUG + DebugLog("-- XIM_FORWARD_EVENT\n"); +#endif + if (client->sync == True) + { + AddQueue (client, p); + *delete = False; + } + else + { + ForwardEventMessageProc (ims, &call_data, p1); + } + break; + + case XIM_EXTENSION: +#ifdef XIM_DEBUG + DebugLog("-- XIM_EXTENSION\n"); +#endif + ExtensionMessageProc (ims, &call_data, p1); + break; + + case XIM_SYNC: +#ifdef XIM_DEBUG + DebugLog("-- XIM_SYNC\n"); +#endif + break; + + case XIM_SYNC_REPLY: +#ifdef XIM_DEBUG + DebugLog("-- XIM_SYNC_REPLY\n"); +#endif + SyncReplyMessageProc (ims, &call_data, p1); + ProcessQueue (ims, connect_id); + break; + + case XIM_TRIGGER_NOTIFY: +#ifdef XIM_DEBUG + DebugLog("-- XIM_TRIGGER_NOTIFY\n"); +#endif + TriggerNotifyMessageProc (ims, &call_data, p1); + break; + + case XIM_ENCODING_NEGOTIATION: +#ifdef XIM_DEBUG + DebugLog("-- XIM_ENCODING_NEGOTIATION\n"); +#endif + EncodingNegotiatonMessageProc (ims, &call_data, p1); + break; + + case XIM_PREEDIT_START_REPLY: +#ifdef XIM_DEBUG + DebugLog("-- XIM_PREEDIT_START_REPLY\n"); +#endif + PreeditStartReplyMessageProc (ims, &call_data, p1); + break; + + case XIM_PREEDIT_CARET_REPLY: +#ifdef XIM_DEBUG + DebugLog("-- XIM_PREEDIT_CARET_REPLY\n"); +#endif + PreeditCaretReplyMessageProc (ims, &call_data, p1); + break; + + case XIM_STR_CONVERSION_REPLY: +#ifdef XIM_DEBUG + DebugLog("-- XIM_STR_CONVERSION_REPLY\n"); +#endif + StrConvReplyMessageProc (ims, &call_data, p1); + break; + } + /*endswitch*/ +} + +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/frontend/xim/lib/i18nUtil.c fcitx-4.1.1/src/frontend/xim/lib/i18nUtil.c --- fcitx-4.0.1/src/frontend/xim/lib/i18nUtil.c 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/frontend/xim/lib/i18nUtil.c 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,278 @@ +/****************************************************************** + + Copyright 1994, 1995 by Sun Microsystems, Inc. + Copyright 1993, 1994 by Hewlett-Packard Company + +Permission to use, copy, modify, distribute, and sell this software +and its documentation for any purpose is hereby granted without fee, +provided that the above copyright notice appear in all copies and +that both that copyright notice and this permission notice appear +in supporting documentation, and that the name of Sun Microsystems, Inc. +and Hewlett-Packard not be used in advertising or publicity pertaining to +distribution of the software without specific, written prior permission. +Sun Microsystems, Inc. and Hewlett-Packard make no representations about +the suitability of this software for any purpose. It is provided "as is" +without express or implied warranty. + +SUN MICROSYSTEMS INC. AND HEWLETT-PACKARD COMPANY DISCLAIMS ALL +WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL +SUN MICROSYSTEMS, INC. AND HEWLETT-PACKARD COMPANY 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. + + Author: Hidetoshi Tajima(tajima@Eng.Sun.COM) Sun Microsystems, Inc. + + This version tidied and debugged by Steve Underwood May 1999 + +******************************************************************/ + +#include +#include "IMdkit.h" +#include "Xi18n.h" +#include "FrameMgr.h" +#include "XimFunc.h" + +Xi18nClient *_Xi18nFindClient (Xi18n, CARD16); + +int +_Xi18nNeedSwap (Xi18n i18n_core, CARD16 connect_id) +{ + CARD8 im_byteOrder = i18n_core->address.im_byteOrder; + Xi18nClient *client = _Xi18nFindClient (i18n_core, connect_id); + + return (client->byte_order != im_byteOrder); +} + +Xi18nClient *_Xi18nNewClient(Xi18n i18n_core) +{ + static CARD16 connect_id = 0; + int new_connect_id; + Xi18nClient *client; + + if (i18n_core->address.free_clients) + { + client = i18n_core->address.free_clients; + i18n_core->address.free_clients = client->next; + new_connect_id = client->connect_id; + } + else + { + client = (Xi18nClient *) malloc (sizeof (Xi18nClient)); + new_connect_id = ++connect_id; + } + /*endif*/ + memset (client, 0, sizeof (Xi18nClient)); + client->connect_id = new_connect_id; + client->pending = (XIMPending *) NULL; + client->sync = False; + client->byte_order = '?'; /* initial value */ + memset (&client->pending, 0, sizeof (XIMPending *)); + client->next = i18n_core->address.clients; + i18n_core->address.clients = client; + + return (Xi18nClient *) client; +} + +Xi18nClient *_Xi18nFindClient (Xi18n i18n_core, CARD16 connect_id) +{ + Xi18nClient *client = i18n_core->address.clients; + + while (client) + { + if (client->connect_id == connect_id) + return client; + /*endif*/ + client = client->next; + } + /*endwhile*/ + return NULL; +} + +void _Xi18nDeleteClient (Xi18n i18n_core, CARD16 connect_id) +{ + Xi18nClient *target = _Xi18nFindClient (i18n_core, connect_id); + Xi18nClient *ccp; + Xi18nClient *ccp0; + + for (ccp = i18n_core->address.clients, ccp0 = NULL; + ccp != NULL; + ccp0 = ccp, ccp = ccp->next) + { + if (ccp == target) + { + if (ccp0 == NULL) + i18n_core->address.clients = ccp->next; + else + ccp0->next = ccp->next; + /*endif*/ + /* put it back to free list */ + target->next = i18n_core->address.free_clients; + i18n_core->address.free_clients = target; + return; + } + /*endif*/ + } + /*endfor*/ +} + +void _Xi18nSendMessage (XIMS ims, + CARD16 connect_id, + CARD8 major_opcode, + CARD8 minor_opcode, + unsigned char *data, + long length) +{ + Xi18n i18n_core = ims->protocol; + FrameMgr fm; + extern XimFrameRec packet_header_fr[]; + unsigned char *reply_hdr = NULL; + int header_size; + unsigned char *reply = NULL; + unsigned char *replyp; + int reply_length; + long p_len = length/4; + + fm = FrameMgrInit (packet_header_fr, + NULL, + _Xi18nNeedSwap (i18n_core, connect_id)); + + header_size = FrameMgrGetTotalSize (fm); + reply_hdr = (unsigned char *) malloc (header_size); + if (reply_hdr == NULL) + { + _Xi18nSendMessage (ims, connect_id, XIM_ERROR, 0, 0, 0); + return; + } + /*endif*/ + FrameMgrSetBuffer (fm, reply_hdr); + + /* put data */ + FrameMgrPutToken (fm, major_opcode); + FrameMgrPutToken (fm, minor_opcode); + FrameMgrPutToken (fm, p_len); + + reply_length = header_size + length; + reply = (unsigned char *) malloc (reply_length); + replyp = reply; + memmove (reply, reply_hdr, header_size); + replyp += header_size; + memmove (replyp, data, length); + + i18n_core->methods.send (ims, connect_id, reply, reply_length); + + XFree (reply); + XFree (reply_hdr); + FrameMgrFree (fm); +} + +void _Xi18nSendTriggerKey (XIMS ims, CARD16 connect_id) +{ + Xi18n i18n_core = ims->protocol; + FrameMgr fm; + extern XimFrameRec register_triggerkeys_fr[]; + XIMTriggerKey *on_keys = i18n_core->address.on_keys.keylist; + XIMTriggerKey *off_keys = i18n_core->address.off_keys.keylist; + int on_key_num = i18n_core->address.on_keys.count_keys; + int off_key_num = i18n_core->address.off_keys.count_keys; + unsigned char *reply = NULL; + register int i, total_size; + CARD16 im_id; + + if (on_key_num == 0 && off_key_num == 0) + return; + /*endif*/ + + fm = FrameMgrInit (register_triggerkeys_fr, + NULL, + _Xi18nNeedSwap (i18n_core, connect_id)); + + /* set iteration count for on-keys list */ + FrameMgrSetIterCount (fm, on_key_num); + /* set iteration count for off-keys list */ + FrameMgrSetIterCount (fm, off_key_num); + + /* get total_size */ + total_size = FrameMgrGetTotalSize (fm); + + reply = (unsigned char *) malloc (total_size); + if (!reply) + return; + /*endif*/ + memset (reply, 0, total_size); + FrameMgrSetBuffer (fm, reply); + + /* Right now XIM_OPEN_REPLY hasn't been sent to this new client, so + the input-method-id is still invalid, and should be set to zero... + Reter to $(XC)/lib/X11/imDefLkup.c:_XimRegisterTriggerKeysCallback + */ + im_id = 0; + FrameMgrPutToken (fm, im_id); /* input-method-id */ + for (i = 0; i < on_key_num; i++) + { + FrameMgrPutToken (fm, on_keys[i].keysym); + FrameMgrPutToken (fm, on_keys[i].modifier); + FrameMgrPutToken (fm, on_keys[i].modifier_mask); + } + /*endfor*/ + for (i = 0; i < off_key_num; i++) + { + FrameMgrPutToken (fm, off_keys[i].keysym); + FrameMgrPutToken (fm, off_keys[i].modifier); + FrameMgrPutToken (fm, off_keys[i].modifier_mask); + } + /*endfor*/ + _Xi18nSendMessage (ims, + connect_id, + XIM_REGISTER_TRIGGERKEYS, + 0, + reply, + total_size); + FrameMgrFree (fm); + XFree(reply); +} + +void _Xi18nSetEventMask (XIMS ims, + CARD16 connect_id, + CARD16 im_id, + CARD16 ic_id, + CARD32 forward_mask, + CARD32 sync_mask) +{ + Xi18n i18n_core = ims->protocol; + FrameMgr fm; + extern XimFrameRec set_event_mask_fr[]; + unsigned char *reply = NULL; + register int total_size; + + fm = FrameMgrInit (set_event_mask_fr, + NULL, + _Xi18nNeedSwap (i18n_core, connect_id)); + + total_size = FrameMgrGetTotalSize (fm); + reply = (unsigned char *) malloc (total_size); + if (!reply) + return; + /*endif*/ + memset (reply, 0, total_size); + FrameMgrSetBuffer (fm, reply); + + FrameMgrPutToken (fm, im_id); /* input-method-id */ + FrameMgrPutToken (fm, ic_id); /* input-context-id */ + FrameMgrPutToken (fm, forward_mask); + FrameMgrPutToken (fm, sync_mask); + + _Xi18nSendMessage (ims, + connect_id, + XIM_SET_EVENT_MASK, + 0, + reply, + total_size); + + FrameMgrFree (fm); + XFree(reply); +} + +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/frontend/xim/lib/i18nX.c fcitx-4.1.1/src/frontend/xim/lib/i18nX.c --- fcitx-4.0.1/src/frontend/xim/lib/i18nX.c 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/frontend/xim/lib/i18nX.c 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,499 @@ +/****************************************************************** + + Copyright 1994, 1995 by Sun Microsystems, Inc. + Copyright 1993, 1994 by Hewlett-Packard Company + +Permission to use, copy, modify, distribute, and sell this software +and its documentation for any purpose is hereby granted without fee, +provided that the above copyright notice appear in all copies and +that both that copyright notice and this permission notice appear +in supporting documentation, and that the name of Sun Microsystems, Inc. +and Hewlett-Packard not be used in advertising or publicity pertaining to +distribution of the software without specific, written prior permission. +Sun Microsystems, Inc. and Hewlett-Packard make no representations about +the suitability of this software for any purpose. It is provided "as is" +without express or implied warranty. + +SUN MICROSYSTEMS INC. AND HEWLETT-PACKARD COMPANY DISCLAIMS ALL +WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL +SUN MICROSYSTEMS, INC. AND HEWLETT-PACKARD COMPANY 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. + + Author: Hidetoshi Tajima(tajima@Eng.Sun.COM) Sun Microsystems, Inc. + + This version tidied and debugged by Steve Underwood May 1999 + +******************************************************************/ + +#include +#include +#include "FrameMgr.h" +#include "IMdkit.h" +#include "Xi18n.h" +#include "Xi18nX.h" +#include "XimFunc.h" + +extern Xi18nClient *_Xi18nFindClient(Xi18n, CARD16); +extern Xi18nClient *_Xi18nNewClient(Xi18n); +extern void _Xi18nDeleteClient(Xi18n, CARD16); +static Bool WaitXConnectMessage(Display*, Window, + XEvent*, XPointer); +static Bool WaitXIMProtocol(Display*, Window, XEvent*, XPointer); + +static XClient *NewXClient (Xi18n i18n_core, Window new_client) +{ + Display *dpy = i18n_core->address.dpy; + Xi18nClient *client = _Xi18nNewClient (i18n_core); + XClient *x_client; + + x_client = (XClient *) malloc (sizeof (XClient)); + x_client->client_win = new_client; + x_client->accept_win = XCreateSimpleWindow (dpy, + DefaultRootWindow(dpy), + 0, + 0, + 1, + 1, + 1, + 0, + 0); + client->trans_rec = x_client; + return ((XClient *) x_client); +} + +static unsigned char *ReadXIMMessage (XIMS ims, + XClientMessageEvent *ev, + int *connect_id) +{ + Xi18n i18n_core = ims->protocol; + Xi18nClient *client = i18n_core->address.clients; + XClient *x_client = NULL; + FrameMgr fm; + extern XimFrameRec packet_header_fr[]; + unsigned char *p = NULL; + unsigned char *p1; + + while (client != NULL) { + x_client = (XClient *) client->trans_rec; + if (x_client->accept_win == ev->window) { + *connect_id = client->connect_id; + break; + } + client = client->next; + } + + if (ev->format == 8) { + /* ClientMessage only */ + XimProtoHdr *hdr = (XimProtoHdr *) ev->data.b; + unsigned char *rec = (unsigned char *) (hdr + 1); + register int total_size; + CARD8 major_opcode; + CARD8 minor_opcode; + CARD16 length; + extern int _Xi18nNeedSwap (Xi18n, CARD16); + + if (client->byte_order == '?') + { + if (hdr->major_opcode != XIM_CONNECT) + return (unsigned char *) NULL; /* can do nothing */ + client->byte_order = (CARD8) rec[0]; + } + + fm = FrameMgrInit (packet_header_fr, + (char *) hdr, + _Xi18nNeedSwap (i18n_core, *connect_id)); + total_size = FrameMgrGetTotalSize (fm); + /* get data */ + FrameMgrGetToken (fm, major_opcode); + FrameMgrGetToken (fm, minor_opcode); + FrameMgrGetToken (fm, length); + FrameMgrFree (fm); + + if ((p = (unsigned char *) malloc (total_size + length * 4)) == NULL) + return (unsigned char *) NULL; + + p1 = p; + memmove (p1, &major_opcode, sizeof (CARD8)); + p1 += sizeof (CARD8); + memmove (p1, &minor_opcode, sizeof (CARD8)); + p1 += sizeof (CARD8); + memmove (p1, &length, sizeof (CARD16)); + p1 += sizeof (CARD16); + memmove (p1, rec, length * 4); + } + else if (ev->format == 32) { + /* ClientMessage and WindowProperty */ + unsigned long length = (unsigned long) ev->data.l[0]; + Atom atom = (Atom) ev->data.l[1]; + int return_code; + Atom actual_type_ret; + int actual_format_ret; + unsigned long bytes_after_ret; + unsigned char *prop; + unsigned long nitems; + + return_code = XGetWindowProperty (i18n_core->address.dpy, + x_client->accept_win, + atom, + 0L, + length, + True, + AnyPropertyType, + &actual_type_ret, + &actual_format_ret, + &nitems, + &bytes_after_ret, + &prop); + if (return_code != Success || actual_format_ret == 0 || nitems == 0) { + if (return_code == Success) + XFree (prop); + return (unsigned char *) NULL; + } + if (length != nitems) + length = nitems; + if (actual_format_ret == 16) + length *= 2; + else if (actual_format_ret == 32) + length *= 4; + + /* if hit, it might be an error */ + if ((p = (unsigned char *) malloc (length)) == NULL) + return (unsigned char *) NULL; + + memmove (p, prop, length); + XFree (prop); + } + return (unsigned char *) p; +} + +static void ReadXConnectMessage (XIMS ims, XClientMessageEvent *ev) +{ + Xi18n i18n_core = ims->protocol; + XSpecRec *spec = (XSpecRec *) i18n_core->address.connect_addr; + XEvent event; + Display *dpy = i18n_core->address.dpy; + Window new_client = ev->data.l[0]; + CARD32 major_version = ev->data.l[1]; + CARD32 minor_version = ev->data.l[2]; + XClient *x_client = NewXClient (i18n_core, new_client); + + if (ev->window != i18n_core->address.im_window) + return; /* incorrect connection request */ + /*endif*/ + if (major_version != 0 || minor_version != 0) + { + major_version = + minor_version = 0; + /* Only supporting only-CM & Property-with-CM method */ + } + /*endif*/ + _XRegisterFilterByType (dpy, + x_client->accept_win, + ClientMessage, + ClientMessage, + WaitXIMProtocol, + (XPointer)ims); + event.xclient.type = ClientMessage; + event.xclient.display = dpy; + event.xclient.window = new_client; + event.xclient.message_type = spec->connect_request; + event.xclient.format = 32; + event.xclient.data.l[0] = x_client->accept_win; + event.xclient.data.l[1] = major_version; + event.xclient.data.l[2] = minor_version; + event.xclient.data.l[3] = XCM_DATA_LIMIT; + + XSendEvent (dpy, + new_client, + False, + NoEventMask, + &event); + XFlush (dpy); +} + +static Bool Xi18nXBegin (XIMS ims) +{ + Xi18n i18n_core = ims->protocol; + Display *dpy = i18n_core->address.dpy; + XSpecRec *spec = (XSpecRec *) i18n_core->address.connect_addr; + + spec->xim_request = XInternAtom (i18n_core->address.dpy, + _XIM_PROTOCOL, + False); + spec->connect_request = XInternAtom (i18n_core->address.dpy, + _XIM_XCONNECT, + False); + + _XRegisterFilterByType (dpy, + i18n_core->address.im_window, + ClientMessage, + ClientMessage, + WaitXConnectMessage, + (XPointer)ims); + return True; +} + +static Bool Xi18nXEnd(XIMS ims) +{ + Xi18n i18n_core = ims->protocol; + Display *dpy = i18n_core->address.dpy; + + _XUnregisterFilter (dpy, + i18n_core->address.im_window, + WaitXConnectMessage, + (XPointer)ims); + return True; +} + +static char *MakeNewAtom (CARD16 connect_id, char *atomName) +{ + static int sequence = 0; + + sprintf (atomName, + "_server%d_%d", + connect_id, + ((sequence > 20) ? (sequence = 0) : sequence++)); + return atomName; +} + +static Bool Xi18nXSend (XIMS ims, + CARD16 connect_id, + unsigned char *reply, + long length) +{ + Xi18n i18n_core = ims->protocol; + Xi18nClient *client = _Xi18nFindClient (i18n_core, connect_id); + XSpecRec *spec = (XSpecRec *) i18n_core->address.connect_addr; + XClient *x_client = (XClient *) client->trans_rec; + XEvent event; + + event.type = ClientMessage; + event.xclient.window = x_client->client_win; + event.xclient.message_type = spec->xim_request; + + if (length > XCM_DATA_LIMIT) + { + Atom atom; + char atomName[16]; + Atom actual_type_ret; + int actual_format_ret; + int return_code; + unsigned long nitems_ret; + unsigned long bytes_after_ret; + unsigned char *win_data; + + event.xclient.format = 32; + atom = XInternAtom (i18n_core->address.dpy, + MakeNewAtom (connect_id, atomName), + False); + return_code = XGetWindowProperty (i18n_core->address.dpy, + x_client->client_win, + atom, + 0L, + 10000L, + False, + XA_STRING, + &actual_type_ret, + &actual_format_ret, + &nitems_ret, + &bytes_after_ret, + &win_data); + if (return_code != Success) + return False; + /*endif*/ + if (win_data) + XFree ((char *) win_data); + /*endif*/ + XChangeProperty (i18n_core->address.dpy, + x_client->client_win, + atom, + XA_STRING, + 8, + PropModeAppend, + (unsigned char *) reply, + length); + event.xclient.data.l[0] = length; + event.xclient.data.l[1] = atom; + } + else + { + unsigned char buffer[XCM_DATA_LIMIT]; + int i; + + event.xclient.format = 8; + + /* Clear unused field with NULL */ + memmove(buffer, reply, length); + for (i = length; i < XCM_DATA_LIMIT; i++) + buffer[i] = (char) 0; + /*endfor*/ + length = XCM_DATA_LIMIT; + memmove (event.xclient.data.b, buffer, length); + } + XSendEvent (i18n_core->address.dpy, + x_client->client_win, + False, + NoEventMask, + &event); + XFlush (i18n_core->address.dpy); + return True; +} + +static Bool CheckCMEvent (Display *display, XEvent *event, XPointer xi18n_core) +{ + Xi18n i18n_core = (Xi18n) ((void *) xi18n_core); + XSpecRec *spec = (XSpecRec *) i18n_core->address.connect_addr; + + if ((event->type == ClientMessage) + && + (event->xclient.message_type == spec->xim_request)) + { + return True; + } + /*endif*/ + return False; +} + +static Bool Xi18nXWait (XIMS ims, + CARD16 connect_id, + CARD8 major_opcode, + CARD8 minor_opcode) +{ + Xi18n i18n_core = ims->protocol; + XEvent event; + Xi18nClient *client = _Xi18nFindClient (i18n_core, connect_id); + XClient *x_client = (XClient *) client->trans_rec; + + for (;;) + { + unsigned char *packet; + XimProtoHdr *hdr; + int connect_id_ret; + + XIfEvent (i18n_core->address.dpy, + &event, + CheckCMEvent, + (XPointer) i18n_core); + if (event.xclient.window == x_client->accept_win) + { + if ((packet = ReadXIMMessage (ims, + (XClientMessageEvent *) & event, + &connect_id_ret)) + == (unsigned char*) NULL) + { + return False; + } + /*endif*/ + hdr = (XimProtoHdr *)packet; + + if ((hdr->major_opcode == major_opcode) + && + (hdr->minor_opcode == minor_opcode)) + { + return True; + } + else if (hdr->major_opcode == XIM_ERROR) + { + return False; + } + /*endif*/ + } + /*endif*/ + } + /*endfor*/ +} + +static Bool Xi18nXDisconnect (XIMS ims, CARD16 connect_id) +{ + Xi18n i18n_core = ims->protocol; + Display *dpy = i18n_core->address.dpy; + Xi18nClient *client = _Xi18nFindClient (i18n_core, connect_id); + XClient *x_client = (XClient *) client->trans_rec; + + XDestroyWindow (dpy, x_client->accept_win); + _XUnregisterFilter (dpy, + x_client->accept_win, + WaitXIMProtocol, + (XPointer)ims); + XFree (x_client); + _Xi18nDeleteClient (i18n_core, connect_id); + return True; +} + +Bool _Xi18nCheckXAddress (Xi18n i18n_core, + TransportSW *transSW, + char *address) +{ + XSpecRec *spec; + + if (!(spec = (XSpecRec *) malloc (sizeof (XSpecRec)))) + return False; + /*endif*/ + + i18n_core->address.connect_addr = (XSpecRec *) spec; + i18n_core->methods.begin = Xi18nXBegin; + i18n_core->methods.end = Xi18nXEnd; + i18n_core->methods.send = Xi18nXSend; + i18n_core->methods.wait = Xi18nXWait; + i18n_core->methods.disconnect = Xi18nXDisconnect; + return True; +} + +static Bool WaitXConnectMessage (Display *dpy, + Window win, + XEvent *ev, + XPointer client_data) +{ + XIMS ims = (XIMS)client_data; + Xi18n i18n_core = ims->protocol; + XSpecRec *spec = (XSpecRec *) i18n_core->address.connect_addr; + + if (((XClientMessageEvent *) ev)->message_type + == spec->connect_request) + { + ReadXConnectMessage (ims, (XClientMessageEvent *) ev); + return True; + } + /*endif*/ + return False; +} + +static Bool WaitXIMProtocol (Display *dpy, + Window win, + XEvent *ev, + XPointer client_data) +{ + extern void _Xi18nMessageHandler (XIMS, CARD16, unsigned char *, Bool *); + XIMS ims = (XIMS) client_data; + Xi18n i18n_core = ims->protocol; + XSpecRec *spec = (XSpecRec *) i18n_core->address.connect_addr; + Bool delete = True; + unsigned char *packet; + int connect_id; + + if (((XClientMessageEvent *) ev)->message_type + == spec->xim_request) + { + if ((packet = ReadXIMMessage (ims, + (XClientMessageEvent *) ev, + &connect_id)) + == (unsigned char *) NULL) + { + return False; + } + /*endif*/ + _Xi18nMessageHandler (ims, connect_id, packet, &delete); + if (delete == True) + XFree (packet); + /*endif*/ + return True; + } + /*endif*/ + return False; +} + +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/frontend/xim/lib/IMConn.c fcitx-4.1.1/src/frontend/xim/lib/IMConn.c --- fcitx-4.0.1/src/frontend/xim/lib/IMConn.c 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/frontend/xim/lib/IMConn.c 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,185 @@ +/****************************************************************** + + Copyright 1994, 1995 by Sun Microsystems, Inc. + Copyright 1993, 1994 by Hewlett-Packard Company + +Permission to use, copy, modify, distribute, and sell this software +and its documentation for any purpose is hereby granted without fee, +provided that the above copyright notice appear in all copies and +that both that copyright notice and this permission notice appear +in supporting documentation, and that the name of Sun Microsystems, Inc. +and Hewlett-Packard not be used in advertising or publicity pertaining to +distribution of the software without specific, written prior permission. +Sun Microsystems, Inc. and Hewlett-Packard make no representations about +the suitability of this software for any purpose. It is provided "as is" +without express or implied warranty. + +SUN MICROSYSTEMS INC. AND HEWLETT-PACKARD COMPANY DISCLAIMS ALL +WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL +SUN MICROSYSTEMS, INC. AND HEWLETT-PACKARD COMPANY 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. + + Author: Hidetoshi Tajima(tajima@Eng.Sun.COM) Sun Microsystems, Inc. + + This version tidied and debugged by Steve Underwood May 1999 + +******************************************************************/ + +#include + +#include +#ifdef HAVE_MALLOC_H +#include +#endif + +#include + +#include +#include "IMdkit.h" +#include + +#define Va_start(a,b) va_start(a,b) + +static void _IMCountVaList(va_list var, int *total_count) +{ + char *attr; + + *total_count = 0; + + for (attr = va_arg (var, char*); attr; attr = va_arg (var, char*)) + { + (void)va_arg (var, XIMArg *); + ++(*total_count); + } + /*endfor*/ +} + +static void _IMVaToNestedList(va_list var, int max_count, XIMArg **args_return) +{ + XIMArg *args; + char *attr; + + if (max_count <= 0) + { + *args_return = (XIMArg *) NULL; + return; + } + /*endif*/ + + args = (XIMArg *) malloc ((unsigned) (max_count + 1)*sizeof (XIMArg)); + *args_return = args; + if (!args) + return; + /*endif*/ + + for (attr = va_arg (var, char*); attr; attr = va_arg (var, char *)) + { + args->name = attr; + args->value = va_arg (var, XPointer); + args++; + } + /*endfor*/ + args->name = (char*)NULL; +} + +static char *_FindModifiers (XIMArg *args) +{ + char *modifiers; + + while (args->name) + { + if (strcmp (args->name, IMModifiers) == 0) + { + modifiers = args->value; + return modifiers; + } + else + { + args++; + } + /*endif*/ + } + /*endwhile*/ + return NULL; +} + +XIMS _GetIMS (char *modifiers) +{ + XIMS ims; + extern IMMethodsRec Xi18n_im_methods; + + if ((ims = (XIMS) malloc (sizeof (XIMProtocolRec))) == (XIMS) NULL) + return ((XIMS) NULL); + /*endif*/ + memset ((void *) ims, 0, sizeof (XIMProtocolRec)); + + if (modifiers == NULL + || + modifiers[0] == '\0' + || + strcmp (modifiers, "Xi18n") == 0) + { + ims->methods = &Xi18n_im_methods; + return ims; + } + /*endif*/ + XFree (ims); + return (XIMS) NULL; +} + +XIMS IMOpenIM (Display *display, ...) +{ + va_list var; + int total_count; + XIMArg *args; + XIMS ims; + char *modifiers; + Status ret; + + Va_start (var, display); + _IMCountVaList (var, &total_count); + va_end (var); + + Va_start (var, display); + _IMVaToNestedList (var, total_count, &args); + va_end (var); + + modifiers = _FindModifiers (args); + + ims = _GetIMS (modifiers); + if (ims == (XIMS) NULL) + return (XIMS) NULL; + /*endif*/ + + ims->core.display = display; + + ims->protocol = (*ims->methods->setup) (display, args); + XFree (args); + if (ims->protocol == (void *) NULL) + { + XFree (ims); + return (XIMS) NULL; + } + /*endif*/ + ret = (ims->methods->openIM) (ims); + if (ret == False) + { + XFree (ims); + return (XIMS) NULL; + } + /*endif*/ + return (XIMS) ims; +} + +Status IMCloseIM (XIMS ims) +{ + (ims->methods->closeIM) (ims); + XFree (ims); + return True; +} + +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/frontend/xim/lib/IMdkit.h fcitx-4.1.1/src/frontend/xim/lib/IMdkit.h --- fcitx-4.0.1/src/frontend/xim/lib/IMdkit.h 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/frontend/xim/lib/IMdkit.h 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,146 @@ +/****************************************************************** + + Copyright 1994, 1995 by Sun Microsystems, Inc. + Copyright 1993, 1994 by Hewlett-Packard Company + +Permission to use, copy, modify, distribute, and sell this software +and its documentation for any purpose is hereby granted without fee, +provided that the above copyright notice appear in all copies and +that both that copyright notice and this permission notice appear +in supporting documentation, and that the name of Sun Microsystems, Inc. +and Hewlett-Packard not be used in advertising or publicity pertaining to +distribution of the software without specific, written prior permission. +Sun Microsystems, Inc. and Hewlett-Packard make no representations about +the suitability of this software for any purpose. It is provided "as is" +without express or implied warranty. + +SUN MICROSYSTEMS INC. AND HEWLETT-PACKARD COMPANY DISCLAIMS ALL +WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL +SUN MICROSYSTEMS, INC. AND HEWLETT-PACKARD COMPANY 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. + + Author: Hidetoshi Tajima(tajima@Eng.Sun.COM) Sun Microsystems, Inc. + + This version tidied and debugged by Steve Underwood May 1999 + +******************************************************************/ + +#ifndef _IMdkit_h +#define _IMdkit_h + +#include + +#ifdef __cplusplus +extern "C" { +#endif + + /* IM Attributes Name */ +#define IMModifiers "modifiers" +#define IMServerWindow "serverWindow" +#define IMServerName "serverName" +#define IMServerTransport "serverTransport" +#define IMLocale "locale" +#define IMInputStyles "inputStyles" +#define IMProtocolHandler "protocolHandler" +#define IMOnKeysList "onKeysList" +#define IMOffKeysList "offKeysList" +#define IMEncodingList "encodingList" +#define IMFilterEventMask "filterEventMask" +#define IMProtocolDepend "protocolDepend" + + /* Masks for IM Attributes Name */ +#define I18N_IMSERVER_WIN 0x0001 /* IMServerWindow */ +#define I18N_IM_NAME 0x0002 /* IMServerName */ +#define I18N_IM_LOCALE 0x0004 /* IMLocale */ +#define I18N_IM_ADDRESS 0x0008 /* IMServerTransport */ +#define I18N_INPUT_STYLES 0x0010 /* IMInputStyles */ +#define I18N_ON_KEYS 0x0020 /* IMOnKeysList */ +#define I18N_OFF_KEYS 0x0040 /* IMOffKeysList */ +#define I18N_IM_HANDLER 0x0080 /* IMProtocolHander */ +#define I18N_ENCODINGS 0x0100 /* IMEncodingList */ +#define I18N_FILTERMASK 0x0200 /* IMFilterEventMask */ +#define I18N_PROTO_DEPEND 0x0400 /* IMProtoDepend */ + + typedef struct + { + char *name; + XPointer value; + } XIMArg; + + typedef struct + { + CARD32 keysym; + CARD32 modifier; + CARD32 modifier_mask; + } XIMTriggerKey; + + typedef struct + { + unsigned short count_keys; + XIMTriggerKey *keylist; + } XIMTriggerKeys; + + typedef char *XIMEncoding; + + typedef struct + { + unsigned short count_encodings; + XIMEncoding *supported_encodings; + } XIMEncodings; + + typedef struct _XIMS *XIMS; + + typedef struct + { + void* (*setup) (Display *, XIMArg *); + Status (*openIM) (XIMS); + Status (*closeIM) (XIMS); + char* (*setIMValues) (XIMS, XIMArg *); + char* (*getIMValues) (XIMS, XIMArg *); + Status (*forwardEvent) (XIMS, XPointer); + Status (*commitString) (XIMS, XPointer); + int (*callCallback) (XIMS, XPointer); + int (*preeditStart) (XIMS, XPointer); + int (*preeditEnd) (XIMS, XPointer); + int (*syncXlib) (XIMS, XPointer); + } IMMethodsRec, *IMMethods; + + typedef struct + { + Display *display; + int screen; + } IMCoreRec, *IMCore; + + typedef struct _XIMS + { + IMMethods methods; + IMCoreRec core; + Bool sync; + void *protocol; + } XIMProtocolRec; + + /* + * X function declarations. + */ + extern XIMS IMOpenIM (Display *, ...); + extern Status IMCloseIM (XIMS); + extern char *IMSetIMValues (XIMS, ...); + extern char *IMGetIMValues (XIMS, ...); + void IMForwardEvent (XIMS, XPointer); + void IMCommitString (XIMS, XPointer); + int IMCallCallback (XIMS, XPointer); + int IMPreeditStart (XIMS, XPointer); + int IMPreeditEnd (XIMS, XPointer); + int IMSyncXlib (XIMS, XPointer); + +#ifdef __cplusplus +} +#endif + +#endif /* IMdkit_h */ + +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/frontend/xim/lib/IMMethod.c fcitx-4.1.1/src/frontend/xim/lib/IMMethod.c --- fcitx-4.0.1/src/frontend/xim/lib/IMMethod.c 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/frontend/xim/lib/IMMethod.c 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,67 @@ +/****************************************************************** + + Copyright 1994, 1995 by Sun Microsystems, Inc. + Copyright 1993, 1994 by Hewlett-Packard Company + +Permission to use, copy, modify, distribute, and sell this software +and its documentation for any purpose is hereby granted without fee, +provided that the above copyright notice appear in all copies and +that both that copyright notice and this permission notice appear +in supporting documentation, and that the name of Sun Microsystems, Inc. +and Hewlett-Packard not be used in advertising or publicity pertaining to +distribution of the software without specific, written prior permission. +Sun Microsystems, Inc. and Hewlett-Packard make no representations about +the suitability of this software for any purpose. It is provided "as is" +without express or implied warranty. + +SUN MICROSYSTEMS INC. AND HEWLETT-PACKARD COMPANY DISCLAIMS ALL +WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL +SUN MICROSYSTEMS, INC. AND HEWLETT-PACKARD COMPANY 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. + + Author: Hidetoshi Tajima(tajima@Eng.Sun.COM) Sun Microsystems, Inc. + + This version tidied and debugged by Steve Underwood May 1999 + +******************************************************************/ + +#include +#include "IMdkit.h" + +/* Public Function */ +void IMForwardEvent (XIMS ims, XPointer call_data) +{ + (ims->methods->forwardEvent) (ims, call_data); +} + +void IMCommitString (XIMS ims, XPointer call_data) +{ + (ims->methods->commitString) (ims, call_data); +} + +int IMCallCallback (XIMS ims, XPointer call_data) +{ + return (ims->methods->callCallback) (ims, call_data); +} + +int IMPreeditStart (XIMS ims, XPointer call_data) +{ + return (ims->methods->preeditStart) (ims, call_data); +} + +int IMPreeditEnd (XIMS ims, XPointer call_data) +{ + return (ims->methods->preeditEnd) (ims, call_data); +} + +int IMSyncXlib(XIMS ims, XPointer call_data) +{ + ims->sync = True; + return (ims->methods->syncXlib) (ims, call_data); +} + +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/frontend/xim/lib/IMValues.c fcitx-4.1.1/src/frontend/xim/lib/IMValues.c --- fcitx-4.0.1/src/frontend/xim/lib/IMValues.c 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/frontend/xim/lib/IMValues.c 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,126 @@ +/****************************************************************** + + Copyright 1994, 1995 by Sun Microsystems, Inc. + Copyright 1993, 1994 by Hewlett-Packard Company + +Permission to use, copy, modify, distribute, and sell this software +and its documentation for any purpose is hereby granted without fee, +provided that the above copyright notice appear in all copies and +that both that copyright notice and this permission notice appear +in supporting documentation, and that the name of Sun Microsystems, Inc. +and Hewlett-Packard not be used in advertising or publicity pertaining to +distribution of the software without specific, written prior permission. +Sun Microsystems, Inc. and Hewlett-Packard make no representations about +the suitability of this software for any purpose. It is provided "as is" +without express or implied warranty. + +SUN MICROSYSTEMS INC. AND HEWLETT-PACKARD COMPANY DISCLAIMS ALL +WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL +SUN MICROSYSTEMS, INC. AND HEWLETT-PACKARD COMPANY 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. + + Author: Hidetoshi Tajima(tajima@Eng.Sun.COM) Sun Microsystems, Inc. + + This version tidied and debugged by Steve Underwood May 1999 + +******************************************************************/ + +#include +#include +#include "IMdkit.h" +#include + +#define Va_start(a,b) va_start(a,b) + +static void _IMCountVaList (va_list var, int *total_count) +{ + char *attr; + + *total_count = 0; + + for (attr = va_arg (var, char *); attr; attr = va_arg (var, char *)) + { + (void)va_arg (var, XIMArg *); + ++(*total_count); + } + /*endfor*/ +} + +static void _IMVaToNestedList (va_list var, int max_count, XIMArg **args_return) +{ + XIMArg *args; + char *attr; + + if (max_count <= 0) + { + *args_return = (XIMArg *) NULL; + return; + } + /*endif*/ + + args = (XIMArg *) malloc ((unsigned) (max_count + 1)*sizeof (XIMArg)); + *args_return = args; + if (!args) + return; + /*endif*/ + for (attr = va_arg (var, char *); attr; attr = va_arg (var, char *)) + { + args->name = attr; + args->value = va_arg (var, XPointer); + args++; + } + /*endfor*/ + args->name = (char *) NULL; +} + +char *IMGetIMValues (XIMS ims, ...) +{ + va_list var; + int total_count; + XIMArg *args; + char *ret; + + Va_start (var, ims); + _IMCountVaList (var, &total_count); + va_end (var); + + Va_start (var, ims); + _IMVaToNestedList (var, total_count, &args); + va_end (var); + + ret = (*ims->methods->getIMValues) (ims, args); + + if (args) + XFree ((char *) args); + /*endif*/ + return ret; +} + +char *IMSetIMValues (XIMS ims, ...) +{ + va_list var; + int total_count; + XIMArg *args; + char *ret; + + Va_start (var, ims); + _IMCountVaList (var, &total_count); + va_end (var); + + Va_start (var, ims); + _IMVaToNestedList (var, total_count, &args); + va_end (var); + + ret = (*ims->methods->setIMValues) (ims, args); + + if (args) + XFree ((char *) args); + /*endif*/ + return ret; +} + +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/frontend/xim/lib/Xi18n.h fcitx-4.1.1/src/frontend/xim/lib/Xi18n.h --- fcitx-4.0.1/src/frontend/xim/lib/Xi18n.h 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/frontend/xim/lib/Xi18n.h 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,507 @@ +/****************************************************************** + + Copyright 1994, 1995 by Sun Microsystems, Inc. + Copyright 1993, 1994 by Hewlett-Packard Company + +Permission to use, copy, modify, distribute, and sell this software +and its documentation for any purpose is hereby granted without fee, +provided that the above copyright notice appear in all copies and +that both that copyright notice and this permission notice appear +in supporting documentation, and that the name of Sun Microsystems, Inc. +and Hewlett-Packard not be used in advertising or publicity pertaining to +distribution of the software without specific, written prior permission. +Sun Microsystems, Inc. and Hewlett-Packard make no representations about +the suitability of this software for any purpose. It is provided "as is" +without express or implied warranty. + +SUN MICROSYSTEMS INC. AND HEWLETT-PACKARD COMPANY DISCLAIMS ALL +WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL +SUN MICROSYSTEMS, INC. AND HEWLETT-PACKARD COMPANY 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. + + Author: Hidetoshi Tajima(tajima@Eng.Sun.COM) Sun Microsystems, Inc. + + This version tidied and debugged by Steve Underwood May 1999 + +******************************************************************/ + +#ifndef _Xi18n_h +#define _Xi18n_h +#include +#include +#include +#include "XimProto.h" + +/* + * Minor Protocol Number for Extension Protocol + */ +#define XIM_EXTENSION 128 +#define XIM_EXT_SET_EVENT_MASK (0x30) +#define XIM_EXT_FORWARD_KEYEVENT (0x32) +#define XIM_EXT_MOVE (0x33) +#define COMMON_EXTENSIONS_NUM 3 + +#include +#include "IMdkit.h" + +/* XI18N Valid Attribute Name Definition */ +#define ExtForwardKeyEvent "extForwardKeyEvent" +#define ExtMove "extMove" +#define ExtSetEventMask "extSetEventMask" + +/* + * Padding macro + */ +#define IMPAD(length) ((4 - ((length)%4))%4) + +/* + * Target Atom for Transport Connection + */ +#define LOCALES "LOCALES" +#define TRANSPORT "TRANSPORT" + +#define I18N_OPEN 0 +#define I18N_SET 1 +#define I18N_GET 2 + +typedef struct +{ + char *transportname; + int namelen; + Bool (*checkAddr) (); +} TransportSW; + +typedef struct _XIMPending +{ + unsigned char *p; + struct _XIMPending *next; +} XIMPending; + +typedef struct _XimProtoHdr +{ + CARD8 major_opcode; + CARD8 minor_opcode; + CARD16 length; +} XimProtoHdr; + +typedef struct +{ + CARD16 attribute_id; + CARD16 type; + CARD16 length; + char *name; +} XIMAttr; + +typedef struct +{ + CARD16 attribute_id; + CARD16 type; + CARD16 length; + char *name; +} XICAttr; + +typedef struct +{ + int attribute_id; + CARD16 name_length; + char *name; + int value_length; + void *value; + int type; +} XIMAttribute; + +typedef struct +{ + int attribute_id; + CARD16 name_length; + char *name; + int value_length; + void *value; + int type; +} XICAttribute; + +typedef struct +{ + int length; + char *name; +} XIMStr; + +typedef struct +{ + CARD16 major_opcode; + CARD16 minor_opcode; + CARD16 length; + char *name; +} XIMExt; + +typedef struct _Xi18nClient +{ + int connect_id; + CARD8 byte_order; + /* + '?': initial value + 'B': for Big-Endian + 'l': for little-endian + */ + int sync; + XIMPending *pending; + void *trans_rec; /* contains transport specific data */ + struct _Xi18nClient *next; +} Xi18nClient; + +typedef struct _Xi18nCore *Xi18n; + +/* + * Callback Struct for XIM Protocol + */ +typedef struct +{ + int major_code; + int minor_code; + CARD16 connect_id; +} IMAnyStruct; + +typedef struct +{ + int major_code; + int minor_code; + CARD16 connect_id; + CARD8 byte_order; + CARD16 major_version; + CARD16 minor_version; +} IMConnectStruct; + +typedef struct +{ + int major_code; + int minor_code; + CARD16 connect_id; +} IMDisConnectStruct; + +typedef struct +{ + int major_code; + int minor_code; + CARD16 connect_id; + XIMStr lang; +} IMOpenStruct; + +typedef struct +{ + int major_code; + int minor_code; + CARD16 connect_id; +} IMCloseStruct; + +typedef struct +{ + int major_code; + int minor_code; + CARD16 connect_id; + CARD16 number; + XIMStr *extension; +} IMQueryExtensionStruct; + +typedef struct +{ + int major_code; + int minor_code; + CARD16 connect_id; + CARD16 number; + char **im_attr_list; +} IMGetIMValuesStruct; + +typedef struct +{ + int major_code; + int minor_code; + CARD16 connect_id; + CARD16 icid; + CARD16 preedit_attr_num; + CARD16 status_attr_num; + CARD16 ic_attr_num; + XICAttribute *preedit_attr; + XICAttribute *status_attr; + XICAttribute *ic_attr; +} IMChangeICStruct; + +typedef struct +{ + int major_code; + int minor_code; + CARD16 connect_id; + CARD16 icid; +} IMDestroyICStruct; + +typedef struct +{ + int major_code; + int minor_code; + CARD16 connect_id; + CARD16 icid; + CARD16 length; + char *commit_string; +} IMResetICStruct; + +typedef struct +{ + int major_code; + int minor_code; + CARD16 connect_id; + CARD16 icid; +} IMChangeFocusStruct; + +typedef struct +{ + int major_code; + int minor_code; + CARD16 connect_id; + CARD16 icid; + BITMASK16 sync_bit; + CARD16 serial_number; + XEvent event; +} IMForwardEventStruct; + +typedef struct +{ + int major_code; + int minor_code; + CARD16 connect_id; + CARD16 icid; + CARD16 flag; + KeySym keysym; + char *commit_string; +} IMCommitStruct; + +typedef struct +{ + int major_code; + int minor_code; + CARD16 connect_id; + CARD16 icid; + CARD32 flag; + CARD32 key_index; + CARD32 event_mask; +} IMTriggerNotifyStruct; + +typedef struct +{ + int major_code; + int minor_code; + CARD16 connect_id; + CARD16 encoding_number; + XIMStr *encoding; /* name information */ + CARD16 encoding_info_number; + XIMStr *encodinginfo; /* detailed information */ + CARD16 category; /* #0 for name, #1 for detail */ + INT16 enc_index; /* index of the encoding determined */ +} IMEncodingNegotiationStruct; + +typedef struct +{ + int major_code; + int minor_code; + CARD16 connect_id; + CARD16 icid; + CARD32 flag; + CARD32 forward_event_mask; + CARD32 sync_event_mask; +} IMSetEventMaskStruct; + +typedef struct +{ + int major_code; + int minor_code; + CARD16 connect_id; + CARD16 icid; + CARD32 filter_event_mask; + CARD32 intercept_event_mask; + CARD32 select_event_mask; + CARD32 forward_event_mask; + CARD32 sync_event_mask; +} IMExtSetEventMaskStruct; + +typedef struct +{ + int major_code; + int minor_code; + CARD16 connect_id; + CARD16 icid; + CARD16 x; + CARD16 y; +} IMMoveStruct; + +typedef struct +{ + int major_code; + int minor_code; + CARD16 connect_id; + CARD16 icid; + BITMASK16 flag; + CARD16 error_code; + CARD16 str_length; + CARD16 error_type; + char *error_detail; +} IMErrorStruct; + +typedef struct +{ + int major_code; + int minor_code; + CARD16 connect_id; + CARD16 icid; +} IMPreeditStateStruct; + +/* Callbacks */ +typedef struct +{ + int major_code; + int minor_code; + CARD16 connect_id; + CARD16 icid; +} IMGeometryCBStruct; + +typedef struct +{ + int major_code; + int minor_code; + CARD16 connect_id; + CARD16 icid; + union + { + int return_value; /* PreeditStart */ + XIMPreeditDrawCallbackStruct draw; /* PreeditDraw */ + XIMPreeditCaretCallbackStruct caret; /* PreeditCaret */ + } todo; +} IMPreeditCBStruct; + +typedef struct +{ + int major_code; + int minor_code; + CARD16 connect_id; + CARD16 icid; + union + { + XIMStatusDrawCallbackStruct draw; /* StatusDraw */ + } todo; +} IMStatusCBStruct; + +typedef struct +{ + int major_code; + int minor_code; + CARD16 connect_id; + CARD16 icid; + XIMStringConversionCallbackStruct strconv; +} IMStrConvCBStruct; + +typedef struct +{ + int major_code; + int minor_code; + CARD16 connect_id; + CARD16 icid; +} IMSyncXlibStruct; + +typedef union _IMProtocol +{ + int major_code; + IMAnyStruct any; + IMConnectStruct imconnect; + IMDisConnectStruct imdisconnect; + IMOpenStruct imopen; + IMCloseStruct imclose; + IMQueryExtensionStruct queryext; + IMGetIMValuesStruct getim; + IMEncodingNegotiationStruct encodingnego; + IMExtSetEventMaskStruct extsetevent; + IMMoveStruct extmove; + IMSetEventMaskStruct setevent; + IMChangeICStruct changeic; + IMDestroyICStruct destroyic; + IMResetICStruct resetic; + IMChangeFocusStruct changefocus; + IMCommitStruct commitstring; + IMForwardEventStruct forwardevent; + IMTriggerNotifyStruct triggernotify; + IMPreeditStateStruct preedit_state; + IMErrorStruct imerror; + IMGeometryCBStruct geometry_callback; + IMPreeditCBStruct preedit_callback; + IMStatusCBStruct status_callback; + IMStrConvCBStruct strconv_callback; + IMSyncXlibStruct sync_xlib; + long pad[32]; +} IMProtocol; + +typedef int (*IMProtoHandler) (XIMS, IMProtocol*); + +#define DEFAULT_FILTER_MASK (KeyPressMask) + +/* Xi18nAddressRec structure */ +typedef struct _Xi18nAddressRec +{ + Display *dpy; + CARD8 im_byteOrder; /* byte order 'B' or 'l' */ + /* IM Values */ + long imvalue_mask; + Window im_window; /* IMServerWindow */ + char *im_name; /* IMServerName */ + char *im_locale; /* IMLocale */ + char *im_addr; /* IMServerTransport */ + XIMStyles input_styles; /* IMInputStyles */ + XIMTriggerKeys on_keys; /* IMOnKeysList */ + XIMTriggerKeys off_keys; /* IMOffKeysList */ + XIMEncodings encoding_list; /* IMEncodingList */ + IMProtoHandler improto; /* IMProtocolHander */ + long filterevent_mask; /* IMFilterEventMask */ + /* XIM_SERVERS target Atoms */ + Atom selection; + Atom Localename; + Atom Transportname; + /* XIM/XIC Attr */ + int im_attr_num; + XIMAttr *xim_attr; + int ic_attr_num; + XICAttr *xic_attr; + CARD16 preeditAttr_id; + CARD16 statusAttr_id; + CARD16 separatorAttr_id; + /* XIMExtension List */ + int ext_num; + XIMExt extension[COMMON_EXTENSIONS_NUM]; + /* transport specific connection address */ + void *connect_addr; + /* actual data is defined: + XSpecRec in Xi18nX.h for X-based connection. + TransSpecRec in Xi18nTr.h for Socket-based connection. + */ + /* clients table */ + Xi18nClient *clients; + Xi18nClient *free_clients; +} Xi18nAddressRec; + +typedef struct _Xi18nMethodsRec +{ + Bool (*begin) (XIMS); + Bool (*end) (XIMS); + Bool (*send) (XIMS, CARD16, unsigned char*, long); + Bool (*wait) (XIMS, CARD16, CARD8, CARD8); + Bool (*disconnect) (XIMS, CARD16); +} Xi18nMethodsRec; + +typedef struct _Xi18nCore +{ + Xi18nAddressRec address; + Xi18nMethodsRec methods; +} Xi18nCore; + +#endif + + +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/frontend/xim/lib/Xi18nTr.h fcitx-4.1.1/src/frontend/xim/lib/Xi18nTr.h --- fcitx-4.0.1/src/frontend/xim/lib/Xi18nTr.h 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/frontend/xim/lib/Xi18nTr.h 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,49 @@ +/****************************************************************** + + Copyright 1994, 1995 by Sun Microsystems, Inc. + Copyright 1993, 1994 by Hewlett-Packard Company + +Permission to use, copy, modify, distribute, and sell this software +and its documentation for any purpose is hereby granted without fee, +provided that the above copyright notice appear in all copies and +that both that copyright notice and this permission notice appear +in supporting documentation, and that the name of Sun Microsystems, Inc. +and Hewlett-Packard not be used in advertising or publicity pertaining to +distribution of the software without specific, written prior permission. +Sun Microsystems, Inc. and Hewlett-Packard make no representations about +the suitability of this software for any purpose. It is provided "as is" +without express or implied warranty. + +SUN MICROSYSTEMS INC. AND HEWLETT-PACKARD COMPANY DISCLAIMS ALL +WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL +SUN MICROSYSTEMS, INC. AND HEWLETT-PACKARD COMPANY 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. + + Author: Hidetoshi Tajima(tajima@Eng.Sun.COM) Sun Microsystems, Inc. + + This version tidied and debugged by Steve Underwood May 1999 + +******************************************************************/ + +#ifndef _Xi18nTrTrans_h +#define _Xi18nTrTrans_h + +typedef struct _TransClient +{ + int accept_fd; + struct _XtransConnInfo *accept_conn; +} TransClient; + +typedef struct +{ + struct _XtransConnInfo *trans_conn; /* transport connection object */ + char *port; +} TransSpecRec; + +#endif + +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/frontend/xim/lib/Xi18nX.h fcitx-4.1.1/src/frontend/xim/lib/Xi18nX.h --- fcitx-4.0.1/src/frontend/xim/lib/Xi18nX.h 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/frontend/xim/lib/Xi18nX.h 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,54 @@ +/****************************************************************** + + Copyright 1994, 1995 by Sun Microsystems, Inc. + Copyright 1993, 1994 by Hewlett-Packard Company + +Permission to use, copy, modify, distribute, and sell this software +and its documentation for any purpose is hereby granted without fee, +provided that the above copyright notice appear in all copies and +that both that copyright notice and this permission notice appear +in supporting documentation, and that the name of Sun Microsystems, Inc. +and Hewlett-Packard not be used in advertising or publicity pertaining to +distribution of the software without specific, written prior permission. +Sun Microsystems, Inc. and Hewlett-Packard make no representations about +the suitability of this software for any purpose. It is provided "as is" +without express or implied warranty. + +SUN MICROSYSTEMS INC. AND HEWLETT-PACKARD COMPANY DISCLAIMS ALL +WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL +SUN MICROSYSTEMS, INC. AND HEWLETT-PACKARD COMPANY 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. + + Author: Hidetoshi Tajima(tajima@Eng.Sun.COM) Sun Microsystems, Inc. + + This version tidied and debugged by Steve Underwood May 1999 + +******************************************************************/ + +#ifndef _Xi18nTrX_h +#define _Xi18nTrX_h + +#define _XIM_PROTOCOL "_XIM_PROTOCOL" +#define _XIM_XCONNECT "_XIM_XCONNECT" + +#define XCM_DATA_LIMIT 20 + +typedef struct _XClient +{ + Window client_win; /* client window */ + Window accept_win; /* accept window */ +} XClient; + +typedef struct +{ + Atom xim_request; + Atom connect_request; +} XSpecRec; + +#endif + +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/frontend/xim/lib/XimFunc.h fcitx-4.1.1/src/frontend/xim/lib/XimFunc.h --- fcitx-4.0.1/src/frontend/xim/lib/XimFunc.h 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/frontend/xim/lib/XimFunc.h 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,74 @@ +/****************************************************************** + + Copyright 1994, 1995 by Sun Microsystems, Inc. + Copyright 1993, 1994 by Hewlett-Packard Company + +Permission to use, copy, modify, distribute, and sell this software +and its documentation for any purpose is hereby granted without fee, +provided that the above copyright notice appear in all copies and +that both that copyright notice and this permission notice appear +in supporting documentation, and that the name of Sun Microsystems, Inc. +and Hewlett-Packard not be used in advertising or publicity pertaining to +distribution of the software without specific, written prior permission. +Sun Microsystems, Inc. and Hewlett-Packard make no representations about +the suitability of this software for any purpose. It is provided "as is" +without express or implied warranty. + +SUN MICROSYSTEMS INC. AND HEWLETT-PACKARD COMPANY DISCLAIMS ALL +WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL +SUN MICROSYSTEMS, INC. AND HEWLETT-PACKARD COMPANY 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. + + Author: Hidetoshi Tajima(tajima@Eng.Sun.COM) Sun Microsystems, Inc. + + This version tidied and debugged by Steve Underwood May 1999 + +******************************************************************/ + +#ifndef _XimFunc_h +#define _XimFunc_h + +/* i18nAttr.c */ +void _Xi18nInitAttrList (Xi18n i18n_core); +void _Xi18nInitExtension(Xi18n i18n_core); + +/* i18nClbk.c */ +int _Xi18nGeometryCallback (XIMS ims, IMProtocol *call_data); +int _Xi18nPreeditStartCallback (XIMS ims, IMProtocol *call_data); +int _Xi18nPreeditDrawCallback (XIMS ims, IMProtocol *call_data); +int _Xi18nPreeditCaretCallback (XIMS ims, IMProtocol *call_data); +int _Xi18nPreeditDoneCallback (XIMS ims, IMProtocol *call_data); +int _Xi18nStatusStartCallback (XIMS ims, IMProtocol *call_data); +int _Xi18nStatusDrawCallback (XIMS ims, IMProtocol *call_data); +int _Xi18nStatusDoneCallback (XIMS ims, IMProtocol *call_data); +int _Xi18nStringConversionCallback (XIMS ims, IMProtocol *call_data); + +/* i18nIc.c */ +void _Xi18nChangeIC (XIMS ims, IMProtocol *call_data, unsigned char *p, + int create_flag); +void _Xi18nGetIC (XIMS ims, IMProtocol *call_data, unsigned char *p); + +/* i18nUtil.c */ +int _Xi18nNeedSwap (Xi18n i18n_core, CARD16 connect_id); +Xi18nClient *_Xi18nNewClient(Xi18n i18n_core); +Xi18nClient *_Xi18nFindClient (Xi18n i18n_core, CARD16 connect_id); +void _Xi18nDeleteClient (Xi18n i18n_core, CARD16 connect_id); +void _Xi18nSendMessage (XIMS ims, CARD16 connect_id, CARD8 major_opcode, + CARD8 minor_opcode, unsigned char *data, long length); +void _Xi18nSendTriggerKey (XIMS ims, CARD16 connect_id); +void _Xi18nSetEventMask (XIMS ims, CARD16 connect_id, CARD16 im_id, + CARD16 ic_id, CARD32 forward_mask, CARD32 sync_mask); + +/* Xlib internal */ +void _XRegisterFilterByType(Display*, Window, int, int, + Bool (*filter)(Display*, Window, XEvent*, XPointer), XPointer); +void _XUnregisterFilter(Display*, Window, + Bool (*filter)(Display*, Window, XEvent*, XPointer), XPointer); + +#endif + +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/frontend/xim/lib/XimProto.h fcitx-4.1.1/src/frontend/xim/lib/XimProto.h --- fcitx-4.0.1/src/frontend/xim/lib/XimProto.h 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/frontend/xim/lib/XimProto.h 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,232 @@ +/* $XConsortium: XimProto.h,v 1.2 94/01/20 18:02:24 rws Exp $ */ +/****************************************************************** + + Copyright 1992, 1993, 1994 by FUJITSU LIMITED + +Permission to use, copy, modify, distribute, and sell this software +and its documentation for any purpose is hereby granted without fee, +provided that the above copyright notice appear in all copies and +that both that copyright notice and this permission notice appear +in supporting documentation, and that the name of FUJITSU LIMITED +not be used in advertising or publicity pertaining to distribution +of the software without specific, written prior permission. +FUJITSU LIMITED makes no representations about the suitability of +this software for any purpose. +It is provided "as is" without express or implied warranty. + +FUJITSU LIMITED DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, +INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO +EVENT SHALL FUJITSU LIMITED 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. + + Author: Takashi Fujiwara FUJITSU LIMITED + fujiwara@a80.tech.yk.fujitsu.co.jp + + This version tidied and debugged by Steve Underwood May 1999 + +******************************************************************/ + +#ifndef _XIMPROTO_H +#define _XIMPROTO_H + +/* + * Default Preconnection selection target + */ +#define XIM_SERVERS "XIM_SERVERS" +#define XIM_LOCALES "LOCALES" +#define XIM_TRANSPORT "TRANSPORT" + +/* + * categories in XIM_SERVERS + */ +#define XIM_SERVER_CATEGORY "@server=" +#define XIM_LOCAL_CATEGORY "@locale=" +#define XIM_TRANSPORT_CATEGORY "@transport=" + +/* + * Xim implementation revision + */ +#define PROTOCOLMAJORVERSION 0 +#define PROTOCOLMINORVERSION 0 + +/* + * Major Protocol number + */ +#define XIM_CONNECT 1 +#define XIM_CONNECT_REPLY 2 +#define XIM_DISCONNECT 3 +#define XIM_DISCONNECT_REPLY 4 + +#define XIM_AUTH_REQUIRED 10 +#define XIM_AUTH_REPLY 11 +#define XIM_AUTH_NEXT 12 +#define XIM_AUTH_SETUP 13 +#define XIM_AUTH_NG 14 + +#define XIM_ERROR 20 + +#define XIM_OPEN 30 +#define XIM_OPEN_REPLY 31 +#define XIM_CLOSE 32 +#define XIM_CLOSE_REPLY 33 +#define XIM_REGISTER_TRIGGERKEYS 34 +#define XIM_TRIGGER_NOTIFY 35 +#define XIM_TRIGGER_NOTIFY_REPLY 36 +#define XIM_SET_EVENT_MASK 37 +#define XIM_ENCODING_NEGOTIATION 38 +#define XIM_ENCODING_NEGOTIATION_REPLY 39 +#define XIM_QUERY_EXTENSION 40 +#define XIM_QUERY_EXTENSION_REPLY 41 +#define XIM_SET_IM_VALUES 42 +#define XIM_SET_IM_VALUES_REPLY 43 +#define XIM_GET_IM_VALUES 44 +#define XIM_GET_IM_VALUES_REPLY 45 + +#define XIM_CREATE_IC 50 +#define XIM_CREATE_IC_REPLY 51 +#define XIM_DESTROY_IC 52 +#define XIM_DESTROY_IC_REPLY 53 +#define XIM_SET_IC_VALUES 54 +#define XIM_SET_IC_VALUES_REPLY 55 +#define XIM_GET_IC_VALUES 56 +#define XIM_GET_IC_VALUES_REPLY 57 +#define XIM_SET_IC_FOCUS 58 +#define XIM_UNSET_IC_FOCUS 59 +#define XIM_FORWARD_EVENT 60 +#define XIM_SYNC 61 +#define XIM_SYNC_REPLY 62 +#define XIM_COMMIT 63 +#define XIM_RESET_IC 64 +#define XIM_RESET_IC_REPLY 65 + +#define XIM_GEOMETRY 70 +#define XIM_STR_CONVERSION 71 +#define XIM_STR_CONVERSION_REPLY 72 +#define XIM_PREEDIT_START 73 +#define XIM_PREEDIT_START_REPLY 74 +#define XIM_PREEDIT_DRAW 75 +#define XIM_PREEDIT_CARET 76 +#define XIM_PREEDIT_CARET_REPLY 77 +#define XIM_PREEDIT_DONE 78 +#define XIM_STATUS_START 79 +#define XIM_STATUS_DRAW 80 +#define XIM_STATUS_DONE 81 + +/* + * values for the flag of XIM_ERROR + */ +#define XIM_IMID_VALID 0x0001 +#define XIM_ICID_VALID 0x0002 + +/* + * XIM Error Code + */ +#define XIM_BadAlloc 1 +#define XIM_BadStyle 2 +#define XIM_BadClientWindow 3 +#define XIM_BadFocusWindow 4 +#define XIM_BadArea 5 +#define XIM_BadSpotLocation 6 +#define XIM_BadColormap 7 +#define XIM_BadAtom 8 +#define XIM_BadPixel 9 +#define XIM_BadPixmap 10 +#define XIM_BadName 11 +#define XIM_BadCursor 12 +#define XIM_BadProtocol 13 +#define XIM_BadForeground 14 +#define XIM_BadBackground 15 +#define XIM_LocaleNotSupported 16 +#define XIM_BadSomething 999 + +/* + * byte order + */ +#define BIGENDIAN (CARD8) 0x42 /* MSB first */ +#define LITTLEENDIAN (CARD8) 0x6c /* LSB first */ + +/* + * values for the type of XIMATTR & XICATTR + */ +#define XimType_SeparatorOfNestedList 0 +#define XimType_CARD8 1 +#define XimType_CARD16 2 +#define XimType_CARD32 3 +#define XimType_STRING8 4 +#define XimType_Window 5 +#define XimType_XIMStyles 10 +#define XimType_XRectangle 11 +#define XimType_XPoint 12 +#define XimType_XFontSet 13 +#define XimType_XIMOptions 14 +#define XimType_XIMHotKeyTriggers 15 +#define XimType_XIMHotKeyState 16 +#define XimType_XIMStringConversion 17 +#define XimType_XIMValuesList 18 +#define XimType_NEST 0x7FFF + +/* + * values for the category of XIM_ENCODING_NEGOTIATON_REPLY + */ +#define XIM_Encoding_NameCategory 0 +#define XIM_Encoding_DetailCategory 1 + +/* + * value for the index of XIM_ENCODING_NEGOTIATON_REPLY + */ +#define XIM_Default_Encoding_IDX -1 + +/* + * value for the flag of XIM_FORWARD_EVENT, XIM_COMMIT + */ +#define XimSYNCHRONUS 0x0001 +#define XimLookupChars 0x0002 +#define XimLookupKeySym 0x0004 +#define XimLookupBoth 0x0006 + +/* + * request packet header size + */ +#define XIM_HEADER_SIZE \ + sizeof(CARD8) /* sizeof mejor-opcode */ \ + + sizeof(CARD8) /* sizeof minor-opcode */ \ + + sizeof(INT16) /* sizeof length */ + +/* + * Client Message data size + */ +#define XIM_CM_DATA_SIZE 20 + +/* + * XIM data structure + */ +typedef CARD16 BITMASK16; +typedef CARD32 BITMASK32; +typedef CARD32 EVENTMASK; + +typedef CARD16 XIMID; /* Input Method ID */ +typedef CARD16 XICID; /* Input Context ID */ + +/* + * Padding macro + */ +#define XIM_PAD(length) ((4 - ((length) % 4)) % 4) + +#define XIM_SET_PAD(ptr, length) \ + { \ + register int Counter = XIM_PAD((int)length); \ + if (Counter) { \ + register char *Ptr = (char *)(ptr) + (length); \ + length += Counter; \ + for (; Counter; --Counter, ++Ptr) \ + *Ptr = '\0'; \ + } \ + } + +#endif + + +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/frontend/xim/xim.c fcitx-4.1.1/src/frontend/xim/xim.c --- fcitx-4.0.1/src/frontend/xim/xim.c 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/frontend/xim/xim.c 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,587 @@ +/*************************************************************************** + * Copyright (C) 2010~2010 by CSSlayer * + * wengxt@gmail.com * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +#include +#include +#include +#include +#include +#include + +#include "fcitx/fcitx.h" +#include "fcitx/addon.h" +#include "fcitx/frontend.h" +#include "fcitx/module.h" +#include "fcitx/configfile.h" +#include "fcitx/instance.h" +#include "fcitx-utils/utils.h" +#include "fcitx-utils/log.h" +#include "fcitx-config/fcitx-config.h" +#include "IMdkit.h" +#include "Xi18n.h" +#include "IC.h" +#include "xim.h" +#include "ximhandler.h" +#include "module/x11/x11stuff.h" +#include "fcitx-config/xdg.h" +#include "fcitx/hook.h" + +static void* XimCreate(FcitxInstance* instance, int frontendid); +static boolean XimDestroy(void* arg); +static void XimEnableIM(void* arg, FcitxInputContext* ic); +static void XimCloseIM(void* arg, FcitxInputContext* ic); +static void XimCommitString(void* arg, FcitxInputContext* ic, char* str); +static void XimForwardKey(void* arg, FcitxInputContext* ic, FcitxKeyEventType event, FcitxKeySym sym, unsigned int state); +static void XimSetWindowOffset(void* arg, FcitxInputContext* ic, int x, int y); +static void XimGetWindowPosition(void* arg, FcitxInputContext* ic, int* x, int* y); +static void XimUpdatePreedit(void* arg, FcitxInputContext* ic); + +static Bool XimProtocolHandler(XIMS _ims, IMProtocol * call_data); +static void SetTriggerKeys (FcitxXimFrontend* xim, char** strKey, int length); +static inline Bool MyStrcmp (char *str1, char *str2); + +static XIMStyle OverTheSpot_Styles[] = { + XIMPreeditPosition | XIMStatusArea, //OverTheSpot + XIMPreeditPosition | XIMStatusNothing, //OverTheSpot + XIMPreeditPosition | XIMStatusNone, //OverTheSpot + XIMPreeditNothing | XIMStatusNothing, //Root + XIMPreeditNothing | XIMStatusNone, //Root + /* + XIMPreeditArea | XIMStatusArea, //OffTheSpot + XIMPreeditArea | XIMStatusNothing, //OffTheSpot + XIMPreeditArea | XIMStatusNone, //OffTheSpot */ + 0 +}; + +static XIMStyle OnTheSpot_Styles [] = { + XIMPreeditPosition | XIMStatusNothing, + XIMPreeditCallbacks | XIMStatusNothing, + XIMPreeditNothing | XIMStatusNothing, + XIMPreeditPosition | XIMStatusCallbacks, + XIMPreeditCallbacks | XIMStatusCallbacks, + XIMPreeditNothing | XIMStatusCallbacks, + 0 + }; + +FCITX_EXPORT_API +FcitxFrontend frontend = +{ + XimCreate, + XimDestroy, + XimCreateIC, + XimCheckIC, + XimDestroyIC, + XimEnableIM, + XimCloseIM, + XimCommitString, + XimForwardKey, + XimSetWindowOffset, + XimGetWindowPosition, + XimUpdatePreedit, + NULL, + NULL, + NULL, + NULL +}; + +FcitxXimFrontend *ximfrontend; + +CONFIG_DESC_DEFINE(GetXimConfigDesc, "fcitx-xim.desc") + +/* Supported Chinese Encodings */ +static XIMEncoding zhEncodings[] = { + "COMPOUND_TEXT", + NULL +}; + +char strLocale[201] = "zh_CN.GB18030,zh_CN.GB2312,zh_CN,zh_CN.GBK,zh_CN.UTF-8,zh_CN.UTF8,en_US.UTF-8,en_US.UTF8"; + +Bool MyStrcmp (char *str1, char *str2) +{ + return !strncmp (str1, str2, strlen (str2)); +} + +void* XimCreate(FcitxInstance* instance, int frontendid) +{ + if (ximfrontend != NULL) + return NULL; + FcitxXimFrontend* xim = fcitx_malloc0(sizeof(FcitxXimFrontend)); + if (xim == NULL) + return NULL; + + ximfrontend = xim; + + XIMStyles *input_styles; + XIMTriggerKeys *on_keys; + XIMEncodings *encodings; + char *imname = NULL; + GenericConfig *fc = &instance->config->gconfig; + ConfigValueType triggerKey = ConfigGetBindValue(fc, "Hotkey", "TriggerKey"); + char *p; + FcitxModuleFunctionArg arg; + + xim->display = InvokeFunction(instance, FCITX_X11, GETDISPLAY, arg); + + if (xim->display == NULL) + { + FcitxLog(FATAL, _("X11 not initialized")); + free(xim); + return NULL; + } + + xim->iScreen = DefaultScreen(xim->display); + xim->owner = instance; + xim->frontendid = frontendid; + + xim->ximWindow = XCreateSimpleWindow(xim->display, DefaultRootWindow(xim->display), 0, 0, 1, 1, 1, 0, 0); + if (xim->ximWindow == (Window) NULL) { + FcitxLog(FATAL, _("Can't Create imWindow")); + free(xim); + return NULL; + } + + if (!imname) { + imname = getenv("XMODIFIERS"); + if (imname) { + if (strstr(imname, "@im=")) + imname += 4; + else { + FcitxLog(WARNING, _("XMODIFIERS Error.")); + imname = DEFAULT_IMNAME; + } + } else { + FcitxLog(WARNING, _("Please set XMODIFIERS.")); + imname = DEFAULT_IMNAME; + } + } + + char *strkey[2]; + int i = 0; + for (;i<2;i++) + { + if (triggerKey.hotkey[i].desc == NULL) + break; + strkey[i] = triggerKey.hotkey[i].desc; + } + SetTriggerKeys(xim, strkey, i); + + if (GetXimConfigDesc() == NULL) + xim->bUseOnTheSpotStyle = false; + else + { + ConfigFileDesc* configDesc = GetXimConfigDesc(); + + FILE *fp; + char *file; + fp = GetXDGFileUserWithPrefix("conf", "fcitx-xim.config", "rt", &file); + FcitxLog(DEBUG, "Load Config File %s", file); + free(file); + if (!fp) { + if (errno == ENOENT) + { + char *file; + FILE *fp2 = GetXDGFileUserWithPrefix("conf", "fcitx-xim.config", "wt", &file); + FcitxLog(DEBUG, "Save Config to %s", file); + SaveConfigFileFp(fp2, &xim->gconfig, configDesc); + free(file); + if (fp2) + fclose(fp2); + } + } + + ConfigFile *cfile = ParseConfigFileFp(fp, configDesc); + + FcitxXimFrontendConfigBind(xim, cfile, configDesc); + ConfigBindSync((GenericConfig*)xim); + + if (fp) + fclose(fp); + } + + input_styles = (XIMStyles *) malloc(sizeof(XIMStyles)); + if (xim->bUseOnTheSpotStyle) + { + input_styles->count_styles = sizeof(OnTheSpot_Styles) / sizeof(XIMStyle) - 1; + input_styles->supported_styles = OnTheSpot_Styles; + } + else + { + input_styles->count_styles = sizeof(OverTheSpot_Styles) / sizeof(XIMStyle) - 1; + input_styles->supported_styles = OverTheSpot_Styles; + } + + on_keys = (XIMTriggerKeys *) malloc(sizeof(XIMTriggerKeys)); + on_keys->count_keys = xim->iTriggerKeyCount + 1; + on_keys->keylist = xim->Trigger_Keys; + + encodings = (XIMEncodings *) malloc(sizeof(XIMEncodings)); + encodings->count_encodings = sizeof(zhEncodings) / sizeof(XIMEncoding) - 1; + encodings->supported_encodings = zhEncodings; + + p = getenv("LC_CTYPE"); + if (!p) { + p = getenv("LC_ALL"); + if (!p) + p = getenv("LANG"); + } + if (p) { + if (!strcasestr(strLocale, p)) { + strcat(strLocale, ","); + strcat(strLocale, p); + } + } + + xim->ims = IMOpenIM(xim->display, + IMModifiers, "Xi18n", + IMServerWindow, xim->ximWindow, + IMServerName, imname, + IMLocale, strLocale, + IMServerTransport, "X/", + IMInputStyles, input_styles, + IMEncodingList, encodings, + IMProtocolHandler, XimProtocolHandler, + IMFilterEventMask, KeyPressMask | KeyReleaseMask, + IMOnKeysList, on_keys, + NULL); + + free(input_styles); + free(on_keys); + free(encodings); + + if (xim->ims == (XIMS) NULL) { + FcitxLog(ERROR, _("Start XIM error. Another XIM daemon named %s is running?"), imname); + free(xim); + return NULL; + } + return xim; +} + +Bool XimProtocolHandler(XIMS _ims, IMProtocol * call_data) +{ + switch (call_data->major_code) { + case XIM_OPEN: + FcitxLog(DEBUG, "XIM_OPEN:\t\ticid=%d\tconnect_id=%d", ((IMForwardEventStruct *) call_data)->icid, + ((IMForwardEventStruct *) call_data)->connect_id); + break; + case XIM_CLOSE: + FcitxLog(DEBUG, "XIM_CLOSE:\t\ticid=%d\tconnect_id=%d", ((IMForwardEventStruct *) call_data)->icid, + ((IMForwardEventStruct *) call_data)->connect_id); + break; + case XIM_CREATE_IC: + FcitxLog(DEBUG, "XIM_CREATE_IC:\t\ticid=%d\tconnect_id=%d", ((IMForwardEventStruct *) call_data)->icid, + ((IMForwardEventStruct *) call_data)->connect_id); + break; + case XIM_DESTROY_IC: + FcitxLog(DEBUG, "XIM_DESTROY_IC:\t\ticid=%d\tconnect_id=%d", ((IMForwardEventStruct *) call_data)->icid, + ((IMForwardEventStruct *) call_data)->connect_id); + break; + case XIM_SET_IC_VALUES: + FcitxLog(DEBUG, "XIM_SET_IC_VALUES:\t\ticid=%d\tconnect_id=%d", ((IMForwardEventStruct *) call_data)->icid, + ((IMForwardEventStruct *) call_data)->connect_id); + break; + case XIM_GET_IC_VALUES: + FcitxLog(DEBUG, "XIM_GET_IC_VALUES:\ticid=%d\tconnect_id=%d", ((IMForwardEventStruct *) call_data)->icid, + ((IMForwardEventStruct *) call_data)->connect_id); + break; + case XIM_FORWARD_EVENT: + FcitxLog(DEBUG, "XIM_FORWARD_EVENT:\ticid=%d\tconnect_id=%d", ((IMForwardEventStruct *) call_data)->icid, + ((IMForwardEventStruct *) call_data)->connect_id); + break; + case XIM_SET_IC_FOCUS: + FcitxLog(DEBUG, "XIM_SET_IC_FOCUS:\ticid=%d\tconnect_id=%d", ((IMForwardEventStruct *) call_data)->icid, + ((IMForwardEventStruct *) call_data)->connect_id); + break; + case XIM_UNSET_IC_FOCUS: + FcitxLog(DEBUG, "XIM_UNSET_IC_FOCUS:\ticid=%d\tconnect_id=%d", ((IMForwardEventStruct *) call_data)->icid, + ((IMForwardEventStruct *) call_data)->connect_id); + break; + case XIM_RESET_IC: + FcitxLog(DEBUG, "XIM_RESET_IC:\t\ticid=%d\tconnect_id=%d", ((IMForwardEventStruct *) call_data)->icid, + ((IMForwardEventStruct *) call_data)->connect_id); + break; + case XIM_TRIGGER_NOTIFY: + FcitxLog(DEBUG, "XIM_TRIGGER_NOTIFY:\t\ticid=%d\tconnect_id=%d", ((IMForwardEventStruct *) call_data)->icid, + ((IMForwardEventStruct *) call_data)->connect_id); + break; + default: + FcitxLog(DEBUG, "XIM_DEFAULT:\t\ticid=%d\tconnect_id=%d\t%d", ((IMForwardEventStruct *) call_data)->icid, + ((IMForwardEventStruct *) call_data)->connect_id, call_data->major_code); + break; + } + + switch (call_data->major_code) { + case XIM_OPEN: + return XIMOpenHandler(ximfrontend, (IMOpenStruct *) call_data); + case XIM_CLOSE: + return XIMCloseHandler(ximfrontend, (IMOpenStruct *) call_data); + case XIM_CREATE_IC: + return XIMCreateICHandler(ximfrontend, (IMChangeICStruct *) call_data); + case XIM_DESTROY_IC: + return XIMDestroyICHandler(ximfrontend, (IMChangeICStruct *) call_data); + case XIM_SET_IC_VALUES: + return XIMSetICValuesHandler(ximfrontend, (IMChangeICStruct *) call_data); + case XIM_GET_IC_VALUES: + return XIMGetICValuesHandler(ximfrontend, (IMChangeICStruct *) call_data); + case XIM_FORWARD_EVENT: + XIMProcessKey(ximfrontend, (IMForwardEventStruct *) call_data); + return True; + case XIM_SET_IC_FOCUS: + return XIMSetFocusHandler(ximfrontend, (IMChangeFocusStruct *) call_data); + case XIM_UNSET_IC_FOCUS: + return XIMUnsetFocusHandler(ximfrontend, (IMChangeICStruct *) call_data);; + case XIM_RESET_IC: + return True; + case XIM_TRIGGER_NOTIFY: + return XIMTriggerNotifyHandler(ximfrontend, (IMTriggerNotifyStruct *) call_data); + case XIM_PREEDIT_START_REPLY: + return 0; + case XIM_PREEDIT_CARET_REPLY: + return 0; + case XIM_SYNC_REPLY: + return 0; + default: + return True; + } +} + +boolean XimDestroy(void* arg) +{ + FcitxXimFrontend* xim = (FcitxXimFrontend*) arg; + + if (xim->ims) + IMCloseIM(xim->ims); + + return true; +} + +void SetTriggerKeys (FcitxXimFrontend* xim, char **strKey, int length) +{ + int i; + char *p; + + if (length == 0) + { + strKey[0] = "CTRL_SPACE"; + length = 1; + } + + xim->iTriggerKeyCount = length - 1; + + if (xim->Trigger_Keys) + free(xim->Trigger_Keys); + + xim->Trigger_Keys = (XIMTriggerKey *) malloc (sizeof (XIMTriggerKey) * (xim->iTriggerKeyCount + 2)); + for (i = 0; i <= (xim->iTriggerKeyCount + 1); i++) { + xim->Trigger_Keys[i].keysym = 0; + xim->Trigger_Keys[i].modifier = 0; + xim->Trigger_Keys[i].modifier_mask = 0; + } + + for (i = 0; i <= xim->iTriggerKeyCount; i++) { + if (MyStrcmp (strKey[i], "CTRL_")) { + xim->Trigger_Keys[i].modifier = xim->Trigger_Keys[i].modifier | ControlMask; + xim->Trigger_Keys[i].modifier_mask = xim->Trigger_Keys[i].modifier_mask | ControlMask; + } + else if (MyStrcmp (strKey[i], "SHIFT_")) { + xim->Trigger_Keys[i].modifier = xim->Trigger_Keys[i].modifier | ShiftMask; + xim->Trigger_Keys[i].modifier_mask = xim->Trigger_Keys[i].modifier_mask | ShiftMask; + } + else if (MyStrcmp (strKey[i], "ALT_")) { + xim->Trigger_Keys[i].modifier = xim->Trigger_Keys[i].modifier | Mod1Mask; + xim->Trigger_Keys[i].modifier_mask = xim->Trigger_Keys[i].modifier_mask | Mod1Mask; + } + else if (MyStrcmp (strKey[i], "SUPER_")) { + xim->Trigger_Keys[i].modifier = xim->Trigger_Keys[i].modifier | Mod4Mask; + xim->Trigger_Keys[i].modifier_mask = xim->Trigger_Keys[i].modifier_mask | Mod4Mask; + } + + if (xim->Trigger_Keys[i].modifier == 0) { + xim->Trigger_Keys[i].modifier = ControlMask; + xim->Trigger_Keys[i].modifier_mask = ControlMask; + } + + p = strKey[i] + strlen (strKey[i]) - 1; + while (*p != '_') { + p--; + if (p == strKey[i] || (p == strKey[i] + strlen (strKey[i]) - 1)) { + xim->Trigger_Keys = (XIMTriggerKey *) malloc (sizeof (XIMTriggerKey) * (xim->iTriggerKeyCount + 2)); + xim->Trigger_Keys[i].keysym = XK_space; + return; + } + } + p++; + + if (strlen (p) == 1) + xim->Trigger_Keys[i].keysym = tolower (*p); + else if (!strcasecmp (p, "LCTRL")) + xim->Trigger_Keys[i].keysym = XK_Control_L; + else if (!strcasecmp (p, "RCTRL")) + xim->Trigger_Keys[i].keysym = XK_Control_R; + else if (!strcasecmp (p, "LSHIFT")) + xim->Trigger_Keys[i].keysym = XK_Shift_L; + else if (!strcasecmp (p, "RSHIFT")) + xim->Trigger_Keys[i].keysym = XK_Shift_R; + else if (!strcasecmp (p, "LALT")) + xim->Trigger_Keys[i].keysym = XK_Alt_L; + else if (!strcasecmp (p, "RALT")) + xim->Trigger_Keys[i].keysym = XK_Alt_R; + else if (!strcasecmp (p, "LSUPER")) + xim->Trigger_Keys[i].keysym = XK_Super_L; + else if (!strcasecmp (p, "RSUPER")) + xim->Trigger_Keys[i].keysym = XK_Super_R; + else + xim->Trigger_Keys[i].keysym = XK_space; + } +} + +void XimEnableIM(void* arg, FcitxInputContext* ic) +{ + FcitxXimFrontend* xim = (FcitxXimFrontend*) arg; + IMChangeFocusStruct call_data; + FcitxXimIC* ximic = (FcitxXimIC*) ic->privateic; + call_data.connect_id = ximic->connect_id; + call_data.icid = ximic->id; + IMPreeditStart(xim->ims, (XPointer) &call_data); +} + + +void XimCloseIM(void* arg, FcitxInputContext* ic) +{ + FcitxXimFrontend* xim = (FcitxXimFrontend*) arg; + IMChangeFocusStruct call_data; + FcitxXimIC* ximic = (FcitxXimIC*) ic->privateic; + call_data.connect_id = ximic->connect_id; + call_data.icid = ximic->id; + IMPreeditEnd(xim->ims, (XPointer) &call_data); +} + +void XimCommitString(void* arg, FcitxInputContext* ic, char* str) +{ + FcitxXimFrontend* xim = (FcitxXimFrontend*) arg; + XTextProperty tp; + IMCommitStruct cms; + FcitxXimIC* ximic = (FcitxXimIC*) ic->privateic; + + /* avoid Seg fault */ + if (!ic) + return; + + /* + * I'm not sure whether xim should commit string before preedit done + * but this can fix opera's crash in specific input box + * quite strange. + */ + if (GetXimIC(ic)->bPreeditStarted == true) { + XimPreeditCallbackDraw (xim, GetXimIC(ic), "", 0); + XimPreeditCallbackDone (xim, GetXimIC(ic)); + GetXimIC(ic)->bPreeditStarted = false; + } + + Xutf8TextListToTextProperty(xim->display, (char **) &str, 1, XCompoundTextStyle, &tp); + + memset(&cms, 0, sizeof(IMCommitStruct)); + cms.major_code = XIM_COMMIT; + cms.icid = ximic->id; + cms.connect_id = ximic->connect_id; + cms.flag = XimLookupChars; + cms.commit_string = (char *) tp.value; + IMCommitString(xim->ims, (XPointer) & cms); + XFree(tp.value); +} + +void XimForwardKey(void *arg, FcitxInputContext* ic, FcitxKeyEventType event, FcitxKeySym sym, unsigned int state) +{ + FcitxXimFrontend* xim = (FcitxXimFrontend*) arg; + XEvent xEvent; + + xEvent.xkey.type = (event == FCITX_PRESS_KEY)?KeyPress:KeyRelease; + xEvent.xkey.display = xim->display; + xEvent.xkey.serial = xim->currentSerialNumberKey; + xEvent.xkey.send_event = False; + xEvent.xkey.x = xEvent.xkey.y = xEvent.xkey.x_root = xEvent.xkey.y_root = 0; + xEvent.xkey.same_screen = False; + xEvent.xkey.subwindow = None; + xEvent.xkey.window = None; + xEvent.xkey.root = DefaultRootWindow(xim->display); + xEvent.xkey.state = state; + if (GetXimIC(ic)->focus_win) + xEvent.xkey.window = GetXimIC(ic)->focus_win; + else if (GetXimIC(ic)->client_win) + xEvent.xkey.window = GetXimIC(ic)->client_win; + + xEvent.xkey.keycode = XKeysymToKeycode(xim->display, sym); + XimForwardKeyInternal(xim, GetXimIC(ic), &xEvent); +} + +void XimSetWindowOffset(void* arg, FcitxInputContext* ic, int x, int y) +{ + FcitxXimFrontend* xim = (FcitxXimFrontend*) arg; + FcitxXimIC* ximic = GetXimIC(ic); + Window window = None, dst; + if (ximic->focus_win) + window = ximic->focus_win; + else if (ximic->client_win) + window = ximic->client_win; + + if (window != None) + { + XTranslateCoordinates(xim->display, RootWindow(xim->display, xim->iScreen), window, + x, y, + &ic->offset_x, &ic->offset_y, + &dst + ); + } +} + +void XimGetWindowPosition(void* arg, FcitxInputContext* ic, int* x, int* y) +{ + *x= ic->offset_x; + *y= ic->offset_y; +} + +void XimUpdatePreedit(void* arg, FcitxInputContext* ic) +{ + FcitxXimFrontend* xim = (FcitxXimFrontend*) arg; + char* strPreedit = MessagesToCString(xim->owner->input.msgPreedit); + char* str = ProcessOutputFilter(xim->owner, strPreedit); + if (str) + { + free(strPreedit); + strPreedit = str; + } + + if (strlen(strPreedit) == 0 && GetXimIC(ic)->bPreeditStarted == true) { + XimPreeditCallbackDraw (xim, GetXimIC(ic), strPreedit, 0); + XimPreeditCallbackDone (xim, GetXimIC(ic)); + GetXimIC(ic)->bPreeditStarted = false; + } + + if (strlen(strPreedit) != 0 && GetXimIC(ic)->bPreeditStarted == false) { + XimPreeditCallbackStart (xim, GetXimIC(ic)); + GetXimIC(ic)->bPreeditStarted = true; + } + if (strlen(strPreedit) != 0) { + XimPreeditCallbackDraw (xim, GetXimIC(ic), strPreedit, xim->owner->input.iCursorPos); + } + + free(strPreedit); +} + +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/frontend/xim/ximconfig.c fcitx-4.1.1/src/frontend/xim/ximconfig.c --- fcitx-4.0.1/src/frontend/xim/ximconfig.c 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/frontend/xim/ximconfig.c 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,25 @@ +/*************************************************************************** + * Copyright (C) 2010~2010 by CSSlayer * + * wengxt@gmail.com * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +#include "xim.h" + +CONFIG_BINDING_BEGIN(FcitxXimFrontend) +CONFIG_BINDING_REGISTER("Xim", "UseOnTheSpotStyle", bUseOnTheSpotStyle) +CONFIG_BINDING_END() \ No newline at end of file diff -Nru fcitx-4.0.1/src/frontend/xim/xim.h fcitx-4.1.1/src/frontend/xim/xim.h --- fcitx-4.0.1/src/frontend/xim/xim.h 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/frontend/xim/xim.h 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,58 @@ +/*************************************************************************** + * Copyright (C) 2010~2010 by CSSlayer * + * wengxt@gmail.com * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +#ifndef _FCITX_XIM_H_ +#define _FCITX_XIM_H_ + +#include +#include + +#include "fcitx/frontend.h" +#include "IMdkit.h" + +#define DEFAULT_IMNAME "fcitx" +#define STRBUFLEN 64 + +#define GetXimIC(c) ((FcitxXimIC*)(c)->privateic) + +typedef struct _FcitxXimFrontend +{ + GenericConfig gconfig; + boolean bUseOnTheSpotStyle; + Window ximWindow; + Display* display; + int iScreen; + int iTriggerKeyCount; + XIMTriggerKey* Trigger_Keys; + XIMS ims; + CARD16 icid; + struct _FcitxFrontend* frontend; + struct _FcitxInstance* owner; + int frontendid; + CARD16 currentSerialNumberCallData; + long unsigned int currentSerialNumberKey; + XIMFeedback *feedback; + int feedback_len; +} FcitxXimFrontend; + +CONFIG_BINDING_DECLARE(FcitxXimFrontend) + +#endif +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/frontend/xim/ximhandler.c fcitx-4.1.1/src/frontend/xim/ximhandler.c --- fcitx-4.0.1/src/frontend/xim/ximhandler.c 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/frontend/xim/ximhandler.c 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,358 @@ +/*************************************************************************** + * Copyright (C) 2010~2010 by CSSlayer * + * wengxt@gmail.com * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +#include + +#include "fcitx/ui.h" +#include "fcitx/ime.h" +#include "fcitx-config/hotkey.h" +#include "fcitx-utils/log.h" +#include "xim.h" +#include "ximhandler.h" +#include "Xi18n.h" +#include "IC.h" + +Bool XIMOpenHandler(FcitxXimFrontend* xim, IMOpenStruct * call_data) +{ + return True; +} + + +Bool XIMGetICValuesHandler(FcitxXimFrontend* xim, IMChangeICStruct * call_data) +{ + XimGetIC(xim, call_data); + + return True; +} + +Bool XIMSetICValuesHandler(FcitxXimFrontend* xim, IMChangeICStruct * call_data) +{ + XimSetIC(xim, call_data); + FcitxInputContext* ic = FindIC(xim->owner, xim->frontendid, &call_data->icid); + SetTrackPos(xim, ic, call_data); + + return True; +} + +Bool XIMSetFocusHandler(FcitxXimFrontend* xim, IMChangeFocusStruct * call_data) +{ + FcitxInputContext* ic = FindIC(xim->owner, xim->frontendid, &call_data->icid); + if (ic == NULL) + return True; + + if (!SetCurrentIC(xim->owner, ic)) + return True; + + SetTrackPos(xim, ic, NULL); + + if (ic) + { + OnInputFocus(xim->owner); + } + else + { + CloseInputWindow(xim->owner); + MoveInputWindow(xim->owner); + } + + return True; +} + +Bool XIMUnsetFocusHandler(FcitxXimFrontend* xim, IMChangeICStruct * call_data) +{ + FcitxInputContext* ic = GetCurrentIC(xim->owner); + if (ic && GetXimIC(ic)->id == call_data->icid) + { + SetCurrentIC(xim->owner, NULL); + CloseInputWindow(xim->owner); + OnInputUnFocus(xim->owner); + } + + return True; +} + +Bool XIMCloseHandler(FcitxXimFrontend* xim, IMOpenStruct * call_data) +{ + CloseInputWindow(xim->owner); + SaveAllIM(xim->owner); + return True; +} + +Bool XIMCreateICHandler(FcitxXimFrontend* xim, IMChangeICStruct * call_data) +{ + CreateIC(xim->owner, xim->frontendid, call_data); + FcitxInputContext* ic = GetCurrentIC(xim->owner); + + if (ic == NULL) { + ic = FindIC(xim->owner, xim->frontendid, &call_data->icid); + SetCurrentIC(xim->owner, ic); + } + + return True; +} + +Bool XIMDestroyICHandler(FcitxXimFrontend* xim, IMChangeICStruct * call_data) +{ + DestroyIC(xim->owner, xim->frontendid, &call_data->icid); + + return True; +} + +Bool XIMTriggerNotifyHandler(FcitxXimFrontend* xim, IMTriggerNotifyStruct * call_data) +{ + FcitxInputContext* ic = FindIC(xim->owner, xim->frontendid, &call_data->icid); + if (ic == NULL) + return True; + + SetCurrentIC(xim->owner, ic); + EnableIM(xim->owner, ic, false); + OnTriggerOn(xim->owner); + return True; +} + + +void SetTrackPos(FcitxXimFrontend* xim, FcitxInputContext* ic, IMChangeICStruct * call_data) +{ + if (ic == NULL) + return; + + int i; + FcitxXimIC* ximic = GetXimIC(ic); + if (call_data) + { + XICAttribute *pre_attr = ((IMChangeICStruct *) call_data)->preedit_attr; + + for (i = 0; i < (int) ((IMChangeICStruct *) call_data)->preedit_attr_num; i++, pre_attr++) { + if (!strcmp(XNSpotLocation, pre_attr->name)) { + ximic->bHasCursorLocation = true; + ximic->offset_x = (*(XPoint *) pre_attr->value).x; + ximic->offset_y = (*(XPoint *) pre_attr->value).y; + } + } + } + + Window window = None; + if (ximic->focus_win) + window = ximic->focus_win; + else if (ximic->client_win) + window = ximic->client_win; + + + if (window != None) + { + Window dst; + XWindowAttributes attr; + XGetWindowAttributes(xim->display, window, &attr); + + if (ximic->offset_x < 0 && ximic->offset_y < 0) + { + + XTranslateCoordinates (xim->display, window, RootWindow(xim->display, xim->iScreen), + 0, attr.height, + &ic->offset_x, &ic->offset_y, + &dst + ); + } + else { + XTranslateCoordinates (xim->display, window, RootWindow(xim->display, xim->iScreen), + ximic->offset_x, ximic->offset_y, + &ic->offset_x, &ic->offset_y, + &dst); + } + } + + if (ic == GetCurrentIC(xim->owner)) + MoveInputWindow(xim->owner); +} + +void XIMProcessKey(FcitxXimFrontend* xim, IMForwardEventStruct * call_data) +{ + KeySym originsym; + FcitxKeySym sym; + XKeyEvent *kev; + int keyCount; + unsigned int state, originstate; + char strbuf[STRBUFLEN]; + FcitxInputContext* ic = GetCurrentIC(xim->owner); + + if (ic == NULL) { + ic = FindIC(xim->owner, xim->frontendid, &call_data->icid); + SetCurrentIC(xim->owner, ic); + } + + if (ic == NULL) + return; + + if (GetXimIC(ic)->id != call_data->icid) { + ic = FindIC(xim->owner, xim->frontendid, &call_data->icid); + if (ic == NULL) + return; + } + + kev = (XKeyEvent *) & call_data->event; + memset(strbuf, 0, STRBUFLEN); + keyCount = XLookupString(kev, strbuf, STRBUFLEN, &originsym, NULL); + + originstate = kev->state - (kev->state & KEY_NUMLOCK) - (kev->state & KEY_CAPSLOCK) - (kev->state & KEY_SCROLLLOCK); + originstate &= KEY_USED_MASK; + GetKey((FcitxKeySym) originsym, originstate, &sym, &state); + FcitxLog(DEBUG, + "KeyRelease=%d state=%d KEYCODE=%d KEYSYM=%d keyCount=%d", + (call_data->event.type == KeyRelease), state, kev->keycode, (int) sym, keyCount); + + xim->currentSerialNumberCallData = call_data->serial_number; + xim->currentSerialNumberKey = kev->serial; + INPUT_RETURN_VALUE retVal = ProcessKey(xim->owner, (call_data->event.type == KeyRelease)?(FCITX_RELEASE_KEY):(FCITX_PRESS_KEY), + kev->time, + sym, state); + + if ((retVal & IRV_FLAG_FORWARD_KEY) || retVal == IRV_TO_PROCESS) + { + XimForwardKeyInternal(xim, + GetXimIC(ic), + &call_data->event + ); + } + else { + if (!GetXimIC(ic)->bHasCursorLocation) + SetTrackPos(xim, ic, NULL); + } + xim->currentSerialNumberCallData = xim->currentSerialNumberKey = 0L; +} + + +void XimForwardKeyInternal(FcitxXimFrontend *xim, + FcitxXimIC* ic, + XEvent* xEvent + ) +{ + IMForwardEventStruct forwardEvent; + + memset(&forwardEvent, 0, sizeof(IMForwardEventStruct)); + forwardEvent.connect_id = ic->connect_id; + forwardEvent.icid = ic->id; + forwardEvent.major_code = XIM_FORWARD_EVENT; + forwardEvent.sync_bit = 0; + forwardEvent.serial_number = xim->currentSerialNumberCallData; + + memcpy(&(forwardEvent.event), xEvent, sizeof(XEvent)); + IMForwardEvent(xim->ims, (XPointer) (&forwardEvent)); +} + +void XIMClose(FcitxXimFrontend* xim, FcitxInputContext* ic, FcitxKeySym sym, unsigned int state, int count) +{ + if (ic == NULL) + return; + IMChangeFocusStruct call_data; + + call_data.connect_id = GetXimIC(ic)->connect_id; + call_data.icid = GetXimIC(ic)->id; + + IMPreeditEnd(xim->ims, (XPointer) &call_data); +} + + +void +XimPreeditCallbackStart (FcitxXimFrontend *xim, const FcitxXimIC* ic) +{ + IMPreeditCBStruct pcb; + + pcb.major_code = XIM_PREEDIT_START; + pcb.minor_code = 0; + pcb.connect_id = ic->connect_id; + pcb.icid = ic->id; + pcb.todo.return_value = 0; + IMCallCallback (xim->ims, (XPointer) & pcb); +} + + +void +XimPreeditCallbackDone (FcitxXimFrontend *xim, const FcitxXimIC* ic) +{ + IMPreeditCBStruct pcb; + + pcb.major_code = XIM_PREEDIT_DONE; + pcb.minor_code = 0; + pcb.connect_id = ic->connect_id; + pcb.icid = ic->id; + pcb.todo.return_value = 0; + IMCallCallback (xim->ims, (XPointer) & pcb); +} + +void +XimPreeditCallbackDraw (FcitxXimFrontend* xim, FcitxXimIC* ic, const char* preedit_string, int cursorPos) +{ + IMPreeditCBStruct pcb; + XIMText text; + XTextProperty tp; + + uint i, len; + + if (preedit_string == NULL) + return; + + len = utf8_strlen (preedit_string); + + if (len + 1 > xim->feedback_len) { + xim->feedback_len = len + 1; + if (xim->feedback) { + xim->feedback = realloc (xim->feedback, sizeof(XIMFeedback) * xim->feedback_len); + } + else { + xim->feedback = fcitx_malloc0 (sizeof(XIMFeedback) * xim->feedback_len); + } + } + + for (i = 0; i < len; i++) { + xim->feedback[i] = XIMUnderline; + } + xim->feedback[len] = 0; + + pcb.major_code = XIM_PREEDIT_DRAW; + pcb.connect_id = ic->connect_id; + pcb.icid = ic->id; + + pcb.todo.draw.caret = cursorPos; + pcb.todo.draw.chg_first = 0; + pcb.todo.draw.chg_length = ic->onspot_preedit_length; + pcb.todo.draw.text = &text; + + text.feedback = xim->feedback; + + if (len > 0) { + Xutf8TextListToTextProperty (xim->display, + (char **)&preedit_string, + 1, XCompoundTextStyle, &tp); + text.encoding_is_wchar = 0; + text.length = strlen ((char*)tp.value); + text.string.multi_byte = (char*)tp.value; + IMCallCallback (xim->ims, (XPointer) & pcb); + XFree (tp.value); + } else { + text.encoding_is_wchar = 0; + text.length = 0; + text.string.multi_byte = ""; + IMCallCallback (xim->ims, (XPointer) & pcb); + len = 0; + } + ic->onspot_preedit_length = len; +} + +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/frontend/xim/ximhandler.h fcitx-4.1.1/src/frontend/xim/ximhandler.h --- fcitx-4.0.1/src/frontend/xim/ximhandler.h 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/frontend/xim/ximhandler.h 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,46 @@ +/*************************************************************************** + * Copyright (C) 2010~2010 by CSSlayer * + * wengxt@gmail.com * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +#ifndef _FCITX_XIMHANDLER_H_ +#define _FCITX_XIMHANDLER_H_ + +#include +#include + +struct _FcitxXimIC; + +Bool XIMOpenHandler(FcitxXimFrontend* xim, IMOpenStruct * call_data); +Bool XIMGetICValuesHandler(FcitxXimFrontend* xim, IMChangeICStruct * call_data); +Bool XIMSetICValuesHandler(FcitxXimFrontend* xim, IMChangeICStruct * call_data); +Bool XIMSetFocusHandler(FcitxXimFrontend* xim, IMChangeFocusStruct * call_data); +Bool XIMUnsetFocusHandler(FcitxXimFrontend* xim, IMChangeICStruct * call_data); +Bool XIMCloseHandler(FcitxXimFrontend* xim, IMOpenStruct * call_data); +Bool XIMCreateICHandler(FcitxXimFrontend* xim, IMChangeICStruct * call_data); +Bool XIMDestroyICHandler(FcitxXimFrontend* xim, IMChangeICStruct * call_data); +Bool XIMTriggerNotifyHandler(FcitxXimFrontend* xim, IMTriggerNotifyStruct * call_data); +void XIMProcessKey(FcitxXimFrontend* xim, IMForwardEventStruct * call_data); +void XimForwardKeyInternal(FcitxXimFrontend *xim, struct _FcitxXimIC* ic, XEvent* xEvent ); +void XimPreeditCallbackStart (FcitxXimFrontend* xim, const struct _FcitxXimIC* ic); +void XimPreeditCallbackDone (FcitxXimFrontend* xim, const struct _FcitxXimIC* ic); +void XimPreeditCallbackDraw (FcitxXimFrontend *xim, struct _FcitxXimIC* ic, const char *preedit_string, int cursorPos); +void SetTrackPos(FcitxXimFrontend* xim, FcitxInputContext* ic, IMChangeICStruct* call_data); + +#endif +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/im/CMakeLists.txt fcitx-4.1.1/src/im/CMakeLists.txt --- fcitx-4.0.1/src/im/CMakeLists.txt 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/im/CMakeLists.txt 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,7 @@ +add_subdirectory(pinyin) + +if (ENABLE_TABLE) + add_subdirectory(table) +endif (ENABLE_TABLE) + +add_subdirectory(qw) \ No newline at end of file diff -Nru fcitx-4.0.1/src/im/extra/extra.c fcitx-4.1.1/src/im/extra/extra.c --- fcitx-4.0.1/src/im/extra/extra.c 2010-12-17 04:19:10.000000000 +0000 +++ fcitx-4.1.1/src/im/extra/extra.c 1970-01-01 00:00:00.000000000 +0000 @@ -1,310 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2010~2010 by dgod * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * - ***************************************************************************/ - -#include "core/fcitx.h" - -#include "core/addon.h" -#include "im/extra/extra.h" -#include "ui/InputWindow.h" -#include "tools/configfile.h" -#include "tools/profile.h" -#include "fcitx-config/xdg.h" -#include "fcitx-config/cutils.h" - -#include -#include -#include - -extern IM *im; - -extern Display *dpy; - -static char CandTableEngine[10][MAX_CAND_LEN+1]; -static char CodeTipsEngine[10][MAX_TIPS_LEN+1]; -static char StringGetEngine[MAX_USER_INPUT+1]; - -extern INT8 iIMCount; -extern INT8 iInCap; - -extern int iCandWordCount; -extern int iCandPageCount; -extern int iCurrentCandPage; -extern char strStringGet[]; -extern char strCodeInput[]; -extern int iCodeInputCount; -extern Bool bCursorAuto; - -#define GetCurrentEIM() ((im[gs.iIMIndex].addonInfo)?im[gs.iIMIndex].addonInfo->im.eim:NULL) -static void UnloadExtraIM(INT8 index); - -static void UnloadExtraIM(INT8 index) -{ - IM *cim = &im[index]; - FcitxAddon* addon = cim->addonInfo; - if (!addon) - return; - EXTRA_IM *eim = addon->im.eim; - if (!eim) - return; - if (eim->Destroy) - eim->Destroy(); - if (addon->im.handle) - dlclose(addon->im.handle); - addon->im.index = 0; - addon->im.handle = NULL; - addon->im.eim = NULL; -} - -static void ExtraReset(void) -{ - EXTRA_IM *eim = GetCurrentEIM(); - inputWindow.bShowCursor=False; - bCursorAuto=False; - if(!eim) return; - if(eim->CandWordMax) eim->CandWordMax=fc.iMaxCandWord; - if(eim->Reset) eim->Reset(); - eim->StringGet[0]=0; - eim->CodeInput[0]=0; - eim->CaretPos=-1; - eim->CandWordMax=fc.iMaxCandWord; - eim->Reset(); -} - -static void DisplayEIM(EXTRA_IM *im) -{ - int i; - char strTemp[3]; - - if ( fc.bPointAfterNumber ) - { - strTemp[1] = '.'; - strTemp[2] = '\0'; - } - else strTemp[1]='\0'; - - SetMessageCount(&messageDown, 0); - for (i = 0; i < im->CandWordCount; i++) - { - strTemp[0] = i + 1 + '0'; - if (i == 9) strTemp[0] = '0'; - AddMessageAtLast(&messageDown, MSG_INDEX, "%s", strTemp); - - AddMessageAtLast(&messageDown, (i!=im->SelectIndex)? MSG_OTHER:MSG_FIRSTCAND, "%s", im->CandTable[i]); - if(im->CodeTips && im->CodeTips[i] && im->CodeTips[i][0]) - AddMessageAtLast(&messageDown, MSG_CODE, "%s", im->CodeTips[i]); - if (i != 9) - MessageConcatLast(&messageDown, " "); - } - - SetMessageCount(&messageUp, 0); - if(im->StringGet[0] || im->CodeInput[0]) - { - AddMessageAtLast(&messageUp, MSG_INPUT, "%s%s", im->StringGet, im->CodeInput); - - inputWindow.bShowCursor=True; - iCodeInputCount=strlen(im->CodeInput); - if(im->CaretPos!=-1) - iCursorPos=im->CaretPos; - else - iCursorPos=strlen(im->StringGet) + strlen(im->CodeInput); - bCursorAuto=True; - } - - iCandWordCount=im->CandWordCount; - iCandPageCount=im->CandPageCount; - iCurrentCandPage=im->CurCandPage; - if(iCandPageCount) iCandPageCount--; -} - -static INPUT_RETURN_VALUE ExtraDoInput(unsigned int sym, unsigned int state, int count) -{ - EXTRA_IM *eim = GetCurrentEIM(); - INPUT_RETURN_VALUE ret=IRV_DO_NOTHING; - if(!eim) return IRV_TO_PROCESS; - if(eim->DoInput) - ret=eim->DoInput(sym, state, count); - - if(ret==IRV_GET_CANDWORDS||ret==IRV_GET_CANDWORDS_NEXT) - { - strcpy(strStringGet,eim->StringGet); - eim->StringGet[0]=0; - if(ret==IRV_GET_CANDWORDS_NEXT) - { - DisplayEIM(eim); - } - else - { - SetMessageCount(&messageDown, 0); - SetMessageCount(&messageUp, 0); - } - } - else if(ret==IRV_DO_NOTHING && (eim->CandWordCount || - eim->StringGet[0] || eim->CodeInput[0])) - { - DisplayEIM(eim); - ret=IRV_DISPLAY_CANDWORDS; - } - else if(ret==IRV_DISPLAY_CANDWORDS) - { - DisplayEIM(eim); - } - else if(ret==IRV_ENG) - { - iCodeInputCount=strlen(strCodeInput); - iInCap=3; - ret=IRV_DONOT_PROCESS; - } - - return ret; -} - -static INPUT_RETURN_VALUE ExtraGetCandWords(SEARCH_MODE sm) -{ - EXTRA_IM *eim = GetCurrentEIM(); - INPUT_RETURN_VALUE ret=IRV_DO_NOTHING; - if(!eim) return IRV_TO_PROCESS; - if(eim->GetCandWords) - ret=eim->GetCandWords(sm); - if(ret==IRV_DISPLAY_CANDWORDS) - DisplayEIM(eim); - return ret; -} - -static char *ExtraGetCandWord(int index) -{ - EXTRA_IM *eim = GetCurrentEIM(); - if(!eim) return 0; - if(eim->GetCandWord) - { - char *ret = eim->GetCandWord(index); - if (ret) - { - SetMessageCount(&messageDown, 0); - SetMessageCount(&messageUp, 0); - return ret; - } - else - DisplayEIM(eim); - } - return 0; -} - -/* the result is slow, why? */ -char *GetClipboardString(Display *disp) -{ - Atom sel; - Window w; - int ret; - Atom target; - Atom type; - int fmt; - unsigned long n,after; - unsigned char *pret=0; - static char result[1024]; - - sel = XInternAtom(disp, "PRIMARY", 0); - target = XInternAtom(disp,"UTF8_STRING",0); - w=XGetSelectionOwner(disp,sel); - if(w==None) - { - return NULL; - } - XConvertSelection(disp,sel,target,sel,w,CurrentTime); - ret=XGetWindowProperty(disp,w,sel,0,1023,False,target,&type,&fmt,&n,&after,&pret); - if(ret!=Success || !pret || fmt!=8) - { - return NULL; - } - memcpy(result,pret,n); - XFree(pret); - result[n]=0; - return result; -} - -int InitExtraIM(EXTRA_IM *eim,char *arg) -{ - eim->CodeInput=strCodeInput; - eim->StringGet=StringGetEngine; - eim->CandTable=CandTableEngine; - eim->CodeTips=CodeTipsEngine; - eim->CandWordMax=fc.iMaxCandWord; - eim->CaretPos=-1; - eim->fc = (void*)&fc; - eim->profile = (void*)&fcitxProfile; - - if(eim->Init(arg)) - { - FcitxLog(ERROR, _("ExtraIM: init fail")); - return -1; - } - - return 0; -} - -void LoadExtraIM() -{ - FcitxAddon *addon; - for ( addon = (FcitxAddon *) utarray_front(addons); - addon != NULL; - addon = (FcitxAddon *) utarray_next(addons, addon)) - { - if (addon->category == AC_INPUTMETHOD) - { - char *modulePath; - switch (addon->type) - { - case AT_SHAREDLIBRARY: - { - FILE *fp = GetLibFile(addon->module, "r", &modulePath); - void *handle; - EXTRA_IM* eim; - if (!fp) - break; - fclose(fp); - handle = dlopen(modulePath,RTLD_LAZY); - if(!handle) - { - FcitxLog(ERROR, _("ExtraIM: open %s fail %s") ,modulePath ,dlerror()); - break; - } - eim=dlsym(handle,"EIM"); - if(!eim || !eim->Init) - { - FcitxLog(ERROR, _("ExtraIM: bad im")); - dlclose(handle); - break; - } - if(InitExtraIM(eim,addon->module)) - { - dlclose(handle); - return; - } - RegisterNewIM(eim->Name, eim->IconName,ExtraReset,ExtraDoInput,ExtraGetCandWords,ExtraGetCandWord,NULL,NULL,NULL,NULL, UnloadExtraIM, addon); - addon->im.handle = handle; - addon->im.index = iIMCount - 1; - addon->im.eim = eim; - } - break; - default: - break; - } - free(modulePath); - } - } -} diff -Nru fcitx-4.0.1/src/im/extra/extra.h fcitx-4.1.1/src/im/extra/extra.h --- fcitx-4.0.1/src/im/extra/extra.h 2010-12-08 03:26:55.000000000 +0000 +++ fcitx-4.1.1/src/im/extra/extra.h 1970-01-01 00:00:00.000000000 +0000 @@ -1,29 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2010~2010 by dgod * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * - ***************************************************************************/ - -#ifndef _EXTRA_H_ -#define _EXTRA_H_ - -#include "core/ime.h" -#include "core/fcitx.h" - -void LoadExtraIM(); - -#endif/*_EXTRA_H_*/ - diff -Nru fcitx-4.0.1/src/im/extra/Makefile.am fcitx-4.1.1/src/im/extra/Makefile.am --- fcitx-4.0.1/src/im/extra/Makefile.am 2010-11-28 11:55:00.000000000 +0000 +++ fcitx-4.1.1/src/im/extra/Makefile.am 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -INCLUDES = \ - -I$(top_srcdir)/lib \ - -I$(top_srcdir)/src \ - @CAIRO_XLIB_CFLAGS@ \ - $(NULL) -DEFS = -DPKGDATADIR=\"$(pkgdatadir)\" -DLIBDIR=\"$(libdir)\" - -noinst_LIBRARIES=libimextra.a -libimextra_a_SOURCES= extra.c extra.h - diff -Nru fcitx-4.0.1/src/im/extra/Makefile.in fcitx-4.1.1/src/im/extra/Makefile.in --- fcitx-4.0.1/src/im/extra/Makefile.in 2010-12-17 04:26:30.000000000 +0000 +++ fcitx-4.1.1/src/im/extra/Makefile.in 1970-01-01 00:00:00.000000000 +0000 @@ -1,537 +0,0 @@ -# Makefile.in generated by automake 1.11.1 from Makefile.am. -# @configure_input@ - -# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, -# Inc. -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - -@SET_MAKE@ - -VPATH = @srcdir@ -pkgdatadir = $(datadir)/@PACKAGE@ -pkgincludedir = $(includedir)/@PACKAGE@ -pkglibdir = $(libdir)/@PACKAGE@ -pkglibexecdir = $(libexecdir)/@PACKAGE@ -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = @build@ -host_triplet = @host@ -subdir = src/im/extra -DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/configure.in -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -mkinstalldirs = $(install_sh) -d -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -CONFIG_CLEAN_VPATH_FILES = -LIBRARIES = $(noinst_LIBRARIES) -ARFLAGS = cru -AM_V_AR = $(am__v_AR_$(V)) -am__v_AR_ = $(am__v_AR_$(AM_DEFAULT_VERBOSITY)) -am__v_AR_0 = @echo " AR " $@; -AM_V_at = $(am__v_at_$(V)) -am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) -am__v_at_0 = @ -libimextra_a_AR = $(AR) $(ARFLAGS) -libimextra_a_LIBADD = -am_libimextra_a_OBJECTS = extra.$(OBJEXT) -libimextra_a_OBJECTS = $(am_libimextra_a_OBJECTS) -DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles -am__mv = mv -f -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -AM_V_lt = $(am__v_lt_$(V)) -am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) -am__v_lt_0 = --silent -LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ - $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ - $(AM_CFLAGS) $(CFLAGS) -AM_V_CC = $(am__v_CC_$(V)) -am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) -am__v_CC_0 = @echo " CC " $@; -CCLD = $(CC) -LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -AM_V_CCLD = $(am__v_CCLD_$(V)) -am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) -am__v_CCLD_0 = @echo " CCLD " $@; -AM_V_GEN = $(am__v_GEN_$(V)) -am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) -am__v_GEN_0 = @echo " GEN " $@; -SOURCES = $(libimextra_a_SOURCES) -DIST_SOURCES = $(libimextra_a_SOURCES) -ETAGS = etags -CTAGS = ctags -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -ACLOCAL = @ACLOCAL@ -ALL_LINGUAS = @ALL_LINGUAS@ -AMTAR = @AMTAR@ -AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ -AR = @AR@ -AUTOCONF = @AUTOCONF@ -AUTOHEADER = @AUTOHEADER@ -AUTOMAKE = @AUTOMAKE@ -AWK = @AWK@ -CAIRO_XLIB_CFLAGS = @CAIRO_XLIB_CFLAGS@ -CAIRO_XLIB_LIBS = @CAIRO_XLIB_LIBS@ -CC = @CC@ -CCDEPMODE = @CCDEPMODE@ -CFLAGS = @CFLAGS@ -CPP = @CPP@ -CPPFLAGS = @CPPFLAGS@ -CYGPATH_W = @CYGPATH_W@ -DATADIRNAME = @DATADIRNAME@ -DBUS_CFLAGS = @DBUS_CFLAGS@ -DBUS_LIBS = @DBUS_LIBS@ -DEFS = -DPKGDATADIR=\"$(pkgdatadir)\" -DLIBDIR=\"$(libdir)\" -DEPDIR = @DEPDIR@ -DLLTOOL = @DLLTOOL@ -DSYMUTIL = @DSYMUTIL@ -DUMPBIN = @DUMPBIN@ -ECHO_C = @ECHO_C@ -ECHO_N = @ECHO_N@ -ECHO_T = @ECHO_T@ -EGREP = @EGREP@ -EXEEXT = @EXEEXT@ -FGREP = @FGREP@ -FONTCONFIG_CFLAGS = @FONTCONFIG_CFLAGS@ -FONTCONFIG_LIBS = @FONTCONFIG_LIBS@ -GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ -GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ -GMSGFMT = @GMSGFMT@ -GMSGFMT_015 = @GMSGFMT_015@ -GREP = @GREP@ -HOST_LIBS = @HOST_LIBS@ -INCINTL = @INCINTL@ -INSTALL = @INSTALL@ -INSTALL_DATA = @INSTALL_DATA@ -INSTALL_PROGRAM = @INSTALL_PROGRAM@ -INSTALL_SCRIPT = @INSTALL_SCRIPT@ -INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ -INTLLIBS = @INTLLIBS@ -INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ -INTLTOOL_MERGE = @INTLTOOL_MERGE@ -INTLTOOL_PERL = @INTLTOOL_PERL@ -INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ -INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ -LD = @LD@ -LDFLAGS = @LDFLAGS@ -LIBICONV = @LIBICONV@ -LIBINTL = @LIBINTL@ -LIBOBJS = @LIBOBJS@ -LIBS = @LIBS@ -LIBTOOL = @LIBTOOL@ -LIPO = @LIPO@ -LN_S = @LN_S@ -LTLIBICONV = @LTLIBICONV@ -LTLIBINTL = @LTLIBINTL@ -LTLIBOBJS = @LTLIBOBJS@ -MAKEINFO = @MAKEINFO@ -MANIFEST_TOOL = @MANIFEST_TOOL@ -MD5SUM = @MD5SUM@ -MKDIR_P = @MKDIR_P@ -MSGFMT = @MSGFMT@ -MSGFMT_015 = @MSGFMT_015@ -MSGMERGE = @MSGMERGE@ -NM = @NM@ -NMEDIT = @NMEDIT@ -OBJDUMP = @OBJDUMP@ -OBJEXT = @OBJEXT@ -OTOOL = @OTOOL@ -OTOOL64 = @OTOOL64@ -PACKAGE = @PACKAGE@ -PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ -PACKAGE_NAME = @PACKAGE_NAME@ -PACKAGE_STRING = @PACKAGE_STRING@ -PACKAGE_TARNAME = @PACKAGE_TARNAME@ -PACKAGE_URL = @PACKAGE_URL@ -PACKAGE_VERSION = @PACKAGE_VERSION@ -PANGOCAIRO_CFLAGS = @PANGOCAIRO_CFLAGS@ -PANGOCAIRO_LIBS = @PANGOCAIRO_LIBS@ -PATH_SEPARATOR = @PATH_SEPARATOR@ -PKG_CONFIG = @PKG_CONFIG@ -PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ -PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ -POSUB = @POSUB@ -RANLIB = @RANLIB@ -SED = @SED@ -SET_MAKE = @SET_MAKE@ -SHELL = @SHELL@ -STRIP = @STRIP@ -TAR = @TAR@ -USE_NLS = @USE_NLS@ -VERSION = @VERSION@ -WGET = @WGET@ -XGETTEXT = @XGETTEXT@ -XGETTEXT_015 = @XGETTEXT_015@ -XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ -XMKMF = @XMKMF@ -XRENDER_CFLAGS = @XRENDER_CFLAGS@ -XRENDER_LIBS = @XRENDER_LIBS@ -X_CFLAGS = @X_CFLAGS@ -X_LIBS = @X_LIBS@ -abs_builddir = @abs_builddir@ -abs_srcdir = @abs_srcdir@ -abs_top_builddir = @abs_top_builddir@ -abs_top_srcdir = @abs_top_srcdir@ -ac_ct_AR = @ac_ct_AR@ -ac_ct_CC = @ac_ct_CC@ -ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ -am__include = @am__include@ -am__leading_dot = @am__leading_dot@ -am__quote = @am__quote@ -am__tar = @am__tar@ -am__untar = @am__untar@ -bindir = @bindir@ -build = @build@ -build_alias = @build_alias@ -build_cpu = @build_cpu@ -build_os = @build_os@ -build_vendor = @build_vendor@ -builddir = @builddir@ -datadir = @datadir@ -datarootdir = @datarootdir@ -docdir = @docdir@ -dvidir = @dvidir@ -exec_prefix = @exec_prefix@ -host = @host@ -host_alias = @host_alias@ -host_cpu = @host_cpu@ -host_os = @host_os@ -host_vendor = @host_vendor@ -htmldir = @htmldir@ -includedir = @includedir@ -infodir = @infodir@ -install_sh = @install_sh@ -libdir = @libdir@ -libexecdir = @libexecdir@ -localedir = @localedir@ -localstatedir = @localstatedir@ -mandir = @mandir@ -mkdir_p = @mkdir_p@ -oldincludedir = @oldincludedir@ -pdfdir = @pdfdir@ -prefix = @prefix@ -program_transform_name = @program_transform_name@ -psdir = @psdir@ -sbindir = @sbindir@ -sharedstatedir = @sharedstatedir@ -srcdir = @srcdir@ -sysconfdir = @sysconfdir@ -target_alias = @target_alias@ -top_build_prefix = @top_build_prefix@ -top_builddir = @top_builddir@ -top_srcdir = @top_srcdir@ -INCLUDES = \ - -I$(top_srcdir)/lib \ - -I$(top_srcdir)/src \ - @CAIRO_XLIB_CFLAGS@ \ - $(NULL) - -noinst_LIBRARIES = libimextra.a -libimextra_a_SOURCES = extra.c extra.h -all: all-am - -.SUFFIXES: -.SUFFIXES: .c .lo .o .obj -$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ - && { if test -f $@; then exit 0; else break; fi; }; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/im/extra/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign src/im/extra/Makefile -.PRECIOUS: Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(am__aclocal_m4_deps): - -clean-noinstLIBRARIES: - -test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES) -libimextra.a: $(libimextra_a_OBJECTS) $(libimextra_a_DEPENDENCIES) - $(AM_V_at)-rm -f libimextra.a - $(AM_V_AR)$(libimextra_a_AR) libimextra.a $(libimextra_a_OBJECTS) $(libimextra_a_LIBADD) - $(AM_V_at)$(RANLIB) libimextra.a - -mostlyclean-compile: - -rm -f *.$(OBJEXT) - -distclean-compile: - -rm -f *.tab.c - -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/extra.Po@am__quote@ - -.c.o: -@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c $< - -.c.obj: -@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` - -.c.lo: -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs - -ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - mkid -fID $$unique -tags: TAGS - -TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - set x; \ - here=`pwd`; \ - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: CTAGS -CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d "$(distdir)/$$file"; then \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ - else \ - test -f "$(distdir)/$$file" \ - || cp -p $$d/$$file "$(distdir)/$$file" \ - || exit 1; \ - fi; \ - done -check-am: all-am -check: check-am -all-am: Makefile $(LIBRARIES) -installdirs: -install: install-am -install-exec: install-exec-am -install-data: install-data-am -uninstall: uninstall-am - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-am -install-strip: - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - `test -z '$(STRIP)' || \ - echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install -mostlyclean-generic: - -clean-generic: - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-am - -clean-am: clean-generic clean-libtool clean-noinstLIBRARIES \ - mostlyclean-am - -distclean: distclean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -distclean-am: clean-am distclean-compile distclean-generic \ - distclean-tags - -dvi: dvi-am - -dvi-am: - -html: html-am - -html-am: - -info: info-am - -info-am: - -install-data-am: - -install-dvi: install-dvi-am - -install-dvi-am: - -install-exec-am: - -install-html: install-html-am - -install-html-am: - -install-info: install-info-am - -install-info-am: - -install-man: - -install-pdf: install-pdf-am - -install-pdf-am: - -install-ps: install-ps-am - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-am - -mostlyclean-am: mostlyclean-compile mostlyclean-generic \ - mostlyclean-libtool - -pdf: pdf-am - -pdf-am: - -ps: ps-am - -ps-am: - -uninstall-am: - -.MAKE: install-am install-strip - -.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ - clean-libtool clean-noinstLIBRARIES ctags distclean \ - distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am html html-am info info-am \ - install install-am install-data install-data-am install-dvi \ - install-dvi-am install-exec install-exec-am install-html \ - install-html-am install-info install-info-am install-man \ - install-pdf install-pdf-am install-ps install-ps-am \ - install-strip installcheck installcheck-am installdirs \ - maintainer-clean maintainer-clean-generic mostlyclean \ - mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ - pdf pdf-am ps ps-am tags uninstall uninstall-am - - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff -Nru fcitx-4.0.1/src/im/Makefile.am fcitx-4.1.1/src/im/Makefile.am --- fcitx-4.0.1/src/im/Makefile.am 2010-11-28 11:55:00.000000000 +0000 +++ fcitx-4.1.1/src/im/Makefile.am 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -SUBDIRS=pinyin table qw special extra diff -Nru fcitx-4.0.1/src/im/Makefile.in fcitx-4.1.1/src/im/Makefile.in --- fcitx-4.0.1/src/im/Makefile.in 2010-12-17 04:26:30.000000000 +0000 +++ fcitx-4.1.1/src/im/Makefile.in 1970-01-01 00:00:00.000000000 +0000 @@ -1,604 +0,0 @@ -# Makefile.in generated by automake 1.11.1 from Makefile.am. -# @configure_input@ - -# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, -# Inc. -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - -@SET_MAKE@ -VPATH = @srcdir@ -pkgdatadir = $(datadir)/@PACKAGE@ -pkgincludedir = $(includedir)/@PACKAGE@ -pkglibdir = $(libdir)/@PACKAGE@ -pkglibexecdir = $(libexecdir)/@PACKAGE@ -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = @build@ -host_triplet = @host@ -subdir = src/im -DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/configure.in -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -mkinstalldirs = $(install_sh) -d -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -CONFIG_CLEAN_VPATH_FILES = -AM_V_GEN = $(am__v_GEN_$(V)) -am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) -am__v_GEN_0 = @echo " GEN " $@; -AM_V_at = $(am__v_at_$(V)) -am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) -am__v_at_0 = @ -SOURCES = -DIST_SOURCES = -RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ - html-recursive info-recursive install-data-recursive \ - install-dvi-recursive install-exec-recursive \ - install-html-recursive install-info-recursive \ - install-pdf-recursive install-ps-recursive install-recursive \ - installcheck-recursive installdirs-recursive pdf-recursive \ - ps-recursive uninstall-recursive -RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ - distclean-recursive maintainer-clean-recursive -AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \ - $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \ - distdir -ETAGS = etags -CTAGS = ctags -DIST_SUBDIRS = $(SUBDIRS) -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -am__relativize = \ - dir0=`pwd`; \ - sed_first='s,^\([^/]*\)/.*$$,\1,'; \ - sed_rest='s,^[^/]*/*,,'; \ - sed_last='s,^.*/\([^/]*\)$$,\1,'; \ - sed_butlast='s,/*[^/]*$$,,'; \ - while test -n "$$dir1"; do \ - first=`echo "$$dir1" | sed -e "$$sed_first"`; \ - if test "$$first" != "."; then \ - if test "$$first" = ".."; then \ - dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ - dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ - else \ - first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ - if test "$$first2" = "$$first"; then \ - dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ - else \ - dir2="../$$dir2"; \ - fi; \ - dir0="$$dir0"/"$$first"; \ - fi; \ - fi; \ - dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ - done; \ - reldir="$$dir2" -ACLOCAL = @ACLOCAL@ -ALL_LINGUAS = @ALL_LINGUAS@ -AMTAR = @AMTAR@ -AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ -AR = @AR@ -AUTOCONF = @AUTOCONF@ -AUTOHEADER = @AUTOHEADER@ -AUTOMAKE = @AUTOMAKE@ -AWK = @AWK@ -CAIRO_XLIB_CFLAGS = @CAIRO_XLIB_CFLAGS@ -CAIRO_XLIB_LIBS = @CAIRO_XLIB_LIBS@ -CC = @CC@ -CCDEPMODE = @CCDEPMODE@ -CFLAGS = @CFLAGS@ -CPP = @CPP@ -CPPFLAGS = @CPPFLAGS@ -CYGPATH_W = @CYGPATH_W@ -DATADIRNAME = @DATADIRNAME@ -DBUS_CFLAGS = @DBUS_CFLAGS@ -DBUS_LIBS = @DBUS_LIBS@ -DEFS = @DEFS@ -DEPDIR = @DEPDIR@ -DLLTOOL = @DLLTOOL@ -DSYMUTIL = @DSYMUTIL@ -DUMPBIN = @DUMPBIN@ -ECHO_C = @ECHO_C@ -ECHO_N = @ECHO_N@ -ECHO_T = @ECHO_T@ -EGREP = @EGREP@ -EXEEXT = @EXEEXT@ -FGREP = @FGREP@ -FONTCONFIG_CFLAGS = @FONTCONFIG_CFLAGS@ -FONTCONFIG_LIBS = @FONTCONFIG_LIBS@ -GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ -GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ -GMSGFMT = @GMSGFMT@ -GMSGFMT_015 = @GMSGFMT_015@ -GREP = @GREP@ -HOST_LIBS = @HOST_LIBS@ -INCINTL = @INCINTL@ -INSTALL = @INSTALL@ -INSTALL_DATA = @INSTALL_DATA@ -INSTALL_PROGRAM = @INSTALL_PROGRAM@ -INSTALL_SCRIPT = @INSTALL_SCRIPT@ -INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ -INTLLIBS = @INTLLIBS@ -INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ -INTLTOOL_MERGE = @INTLTOOL_MERGE@ -INTLTOOL_PERL = @INTLTOOL_PERL@ -INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ -INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ -LD = @LD@ -LDFLAGS = @LDFLAGS@ -LIBICONV = @LIBICONV@ -LIBINTL = @LIBINTL@ -LIBOBJS = @LIBOBJS@ -LIBS = @LIBS@ -LIBTOOL = @LIBTOOL@ -LIPO = @LIPO@ -LN_S = @LN_S@ -LTLIBICONV = @LTLIBICONV@ -LTLIBINTL = @LTLIBINTL@ -LTLIBOBJS = @LTLIBOBJS@ -MAKEINFO = @MAKEINFO@ -MANIFEST_TOOL = @MANIFEST_TOOL@ -MD5SUM = @MD5SUM@ -MKDIR_P = @MKDIR_P@ -MSGFMT = @MSGFMT@ -MSGFMT_015 = @MSGFMT_015@ -MSGMERGE = @MSGMERGE@ -NM = @NM@ -NMEDIT = @NMEDIT@ -OBJDUMP = @OBJDUMP@ -OBJEXT = @OBJEXT@ -OTOOL = @OTOOL@ -OTOOL64 = @OTOOL64@ -PACKAGE = @PACKAGE@ -PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ -PACKAGE_NAME = @PACKAGE_NAME@ -PACKAGE_STRING = @PACKAGE_STRING@ -PACKAGE_TARNAME = @PACKAGE_TARNAME@ -PACKAGE_URL = @PACKAGE_URL@ -PACKAGE_VERSION = @PACKAGE_VERSION@ -PANGOCAIRO_CFLAGS = @PANGOCAIRO_CFLAGS@ -PANGOCAIRO_LIBS = @PANGOCAIRO_LIBS@ -PATH_SEPARATOR = @PATH_SEPARATOR@ -PKG_CONFIG = @PKG_CONFIG@ -PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ -PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ -POSUB = @POSUB@ -RANLIB = @RANLIB@ -SED = @SED@ -SET_MAKE = @SET_MAKE@ -SHELL = @SHELL@ -STRIP = @STRIP@ -TAR = @TAR@ -USE_NLS = @USE_NLS@ -VERSION = @VERSION@ -WGET = @WGET@ -XGETTEXT = @XGETTEXT@ -XGETTEXT_015 = @XGETTEXT_015@ -XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ -XMKMF = @XMKMF@ -XRENDER_CFLAGS = @XRENDER_CFLAGS@ -XRENDER_LIBS = @XRENDER_LIBS@ -X_CFLAGS = @X_CFLAGS@ -X_LIBS = @X_LIBS@ -abs_builddir = @abs_builddir@ -abs_srcdir = @abs_srcdir@ -abs_top_builddir = @abs_top_builddir@ -abs_top_srcdir = @abs_top_srcdir@ -ac_ct_AR = @ac_ct_AR@ -ac_ct_CC = @ac_ct_CC@ -ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ -am__include = @am__include@ -am__leading_dot = @am__leading_dot@ -am__quote = @am__quote@ -am__tar = @am__tar@ -am__untar = @am__untar@ -bindir = @bindir@ -build = @build@ -build_alias = @build_alias@ -build_cpu = @build_cpu@ -build_os = @build_os@ -build_vendor = @build_vendor@ -builddir = @builddir@ -datadir = @datadir@ -datarootdir = @datarootdir@ -docdir = @docdir@ -dvidir = @dvidir@ -exec_prefix = @exec_prefix@ -host = @host@ -host_alias = @host_alias@ -host_cpu = @host_cpu@ -host_os = @host_os@ -host_vendor = @host_vendor@ -htmldir = @htmldir@ -includedir = @includedir@ -infodir = @infodir@ -install_sh = @install_sh@ -libdir = @libdir@ -libexecdir = @libexecdir@ -localedir = @localedir@ -localstatedir = @localstatedir@ -mandir = @mandir@ -mkdir_p = @mkdir_p@ -oldincludedir = @oldincludedir@ -pdfdir = @pdfdir@ -prefix = @prefix@ -program_transform_name = @program_transform_name@ -psdir = @psdir@ -sbindir = @sbindir@ -sharedstatedir = @sharedstatedir@ -srcdir = @srcdir@ -sysconfdir = @sysconfdir@ -target_alias = @target_alias@ -top_build_prefix = @top_build_prefix@ -top_builddir = @top_builddir@ -top_srcdir = @top_srcdir@ -SUBDIRS = pinyin table qw special extra -all: all-recursive - -.SUFFIXES: -$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ - && { if test -f $@; then exit 0; else break; fi; }; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/im/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign src/im/Makefile -.PRECIOUS: Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(am__aclocal_m4_deps): - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs - -# This directory's subdirectories are mostly independent; you can cd -# into them and run `make' without going through this Makefile. -# To change the values of `make' variables: instead of editing Makefiles, -# (1) if the variable is set in `config.status', edit `config.status' -# (which will cause the Makefiles to be regenerated when you run `make'); -# (2) otherwise, pass the desired values on the `make' command line. -$(RECURSIVE_TARGETS): - @fail= failcom='exit 1'; \ - for f in x $$MAKEFLAGS; do \ - case $$f in \ - *=* | --[!k]*);; \ - *k*) failcom='fail=yes';; \ - esac; \ - done; \ - dot_seen=no; \ - target=`echo $@ | sed s/-recursive//`; \ - list='$(SUBDIRS)'; for subdir in $$list; do \ - echo "Making $$target in $$subdir"; \ - if test "$$subdir" = "."; then \ - dot_seen=yes; \ - local_target="$$target-am"; \ - else \ - local_target="$$target"; \ - fi; \ - ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ - || eval $$failcom; \ - done; \ - if test "$$dot_seen" = "no"; then \ - $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ - fi; test -z "$$fail" - -$(RECURSIVE_CLEAN_TARGETS): - @fail= failcom='exit 1'; \ - for f in x $$MAKEFLAGS; do \ - case $$f in \ - *=* | --[!k]*);; \ - *k*) failcom='fail=yes';; \ - esac; \ - done; \ - dot_seen=no; \ - case "$@" in \ - distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ - *) list='$(SUBDIRS)' ;; \ - esac; \ - rev=''; for subdir in $$list; do \ - if test "$$subdir" = "."; then :; else \ - rev="$$subdir $$rev"; \ - fi; \ - done; \ - rev="$$rev ."; \ - target=`echo $@ | sed s/-recursive//`; \ - for subdir in $$rev; do \ - echo "Making $$target in $$subdir"; \ - if test "$$subdir" = "."; then \ - local_target="$$target-am"; \ - else \ - local_target="$$target"; \ - fi; \ - ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ - || eval $$failcom; \ - done && test -z "$$fail" -tags-recursive: - list='$(SUBDIRS)'; for subdir in $$list; do \ - test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ - done -ctags-recursive: - list='$(SUBDIRS)'; for subdir in $$list; do \ - test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ - done - -ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - mkid -fID $$unique -tags: TAGS - -TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - set x; \ - here=`pwd`; \ - if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ - include_option=--etags-include; \ - empty_fix=.; \ - else \ - include_option=--include; \ - empty_fix=; \ - fi; \ - list='$(SUBDIRS)'; for subdir in $$list; do \ - if test "$$subdir" = .; then :; else \ - test ! -f $$subdir/TAGS || \ - set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ - fi; \ - done; \ - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: CTAGS -CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d "$(distdir)/$$file"; then \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ - else \ - test -f "$(distdir)/$$file" \ - || cp -p $$d/$$file "$(distdir)/$$file" \ - || exit 1; \ - fi; \ - done - @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ - if test "$$subdir" = .; then :; else \ - test -d "$(distdir)/$$subdir" \ - || $(MKDIR_P) "$(distdir)/$$subdir" \ - || exit 1; \ - fi; \ - done - @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ - if test "$$subdir" = .; then :; else \ - dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ - $(am__relativize); \ - new_distdir=$$reldir; \ - dir1=$$subdir; dir2="$(top_distdir)"; \ - $(am__relativize); \ - new_top_distdir=$$reldir; \ - echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ - echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ - ($(am__cd) $$subdir && \ - $(MAKE) $(AM_MAKEFLAGS) \ - top_distdir="$$new_top_distdir" \ - distdir="$$new_distdir" \ - am__remove_distdir=: \ - am__skip_length_check=: \ - am__skip_mode_fix=: \ - distdir) \ - || exit 1; \ - fi; \ - done -check-am: all-am -check: check-recursive -all-am: Makefile -installdirs: installdirs-recursive -installdirs-am: -install: install-recursive -install-exec: install-exec-recursive -install-data: install-data-recursive -uninstall: uninstall-recursive - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-recursive -install-strip: - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - `test -z '$(STRIP)' || \ - echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install -mostlyclean-generic: - -clean-generic: - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-recursive - -clean-am: clean-generic clean-libtool mostlyclean-am - -distclean: distclean-recursive - -rm -f Makefile -distclean-am: clean-am distclean-generic distclean-tags - -dvi: dvi-recursive - -dvi-am: - -html: html-recursive - -html-am: - -info: info-recursive - -info-am: - -install-data-am: - -install-dvi: install-dvi-recursive - -install-dvi-am: - -install-exec-am: - -install-html: install-html-recursive - -install-html-am: - -install-info: install-info-recursive - -install-info-am: - -install-man: - -install-pdf: install-pdf-recursive - -install-pdf-am: - -install-ps: install-ps-recursive - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-recursive - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-recursive - -mostlyclean-am: mostlyclean-generic mostlyclean-libtool - -pdf: pdf-recursive - -pdf-am: - -ps: ps-recursive - -ps-am: - -uninstall-am: - -.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) ctags-recursive \ - install-am install-strip tags-recursive - -.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \ - all all-am check check-am clean clean-generic clean-libtool \ - ctags ctags-recursive distclean distclean-generic \ - distclean-libtool distclean-tags distdir dvi dvi-am html \ - html-am info info-am install install-am install-data \ - install-data-am install-dvi install-dvi-am install-exec \ - install-exec-am install-html install-html-am install-info \ - install-info-am install-man install-pdf install-pdf-am \ - install-ps install-ps-am install-strip installcheck \ - installcheck-am installdirs installdirs-am maintainer-clean \ - maintainer-clean-generic mostlyclean mostlyclean-generic \ - mostlyclean-libtool pdf pdf-am ps ps-am tags tags-recursive \ - uninstall uninstall-am - - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff -Nru fcitx-4.0.1/src/im/pinyin/CMakeLists.txt fcitx-4.1.1/src/im/pinyin/CMakeLists.txt --- fcitx-4.0.1/src/im/pinyin/CMakeLists.txt 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/im/pinyin/CMakeLists.txt 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,15 @@ + +set(FCITX_PINYIN_SOURCES + py.c + PYFA.c + pyMapTable.c + pyParser.c + sp.c + pyconfig.c +) + +fcitx_add_addon(fcitx-pinyin ${FCITX_PINYIN_SOURCES}) + +fcitx_add_addon_header(pinyin pydef.h) +fcitx_add_configdesc_file(fcitx-pinyin.desc) +fcitx_add_addon_conf_file(fcitx-pinyin.conf) diff -Nru fcitx-4.0.1/src/im/pinyin/fcitx-pinyin.conf.in fcitx-4.1.1/src/im/pinyin/fcitx-pinyin.conf.in --- fcitx-4.0.1/src/im/pinyin/fcitx-pinyin.conf.in 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/im/pinyin/fcitx-pinyin.conf.in 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,9 @@ +[Addon] +Name=fcitx-pinyin +_GeneralName=Pinyin +_Comment=Simple Pinyin support for Fcitx +Category=InputMethod +Enabled=True +Library=fcitx-pinyin.so +Type=SharedLibrary +SubConfig=Shuang Pin Schema:native:pinyin/sp.dat,Symbol:native:pinyin/pySym.mb,fcitx:domain diff -Nru fcitx-4.0.1/src/im/pinyin/fcitx-pinyin.desc fcitx-4.1.1/src/im/pinyin/fcitx-pinyin.desc --- fcitx-4.0.1/src/im/pinyin/fcitx-pinyin.desc 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/im/pinyin/fcitx-pinyin.desc 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,139 @@ +[Pinyin/PinyinPriority] +Type=Integer +DefaultValue=1 +Description=Pinyin Priority Order, 0 to disable + +[Pinyin/ShuangpinPriority] +Type=Integer +DefaultValue=2 +Description=Shuangpin Priority Order, 0 to disable + +[Pinyin/DefaultShuangpinSchema] +Type=String +DefaultValue=自然码 +Description=Default Shuangpin Schema + +[Pinyin/UseCompletePinyin] +Type=Boolean +DefaultValue=False +Description=Use Complete Pinyin + +[Pinyin/AutoCreatePhrase] +Type=Boolean +DefaultValue=True +Description=Auto Create Phrase + +[Pinyin/SaveAutoPhrase] +Type=Boolean +DefaultValue=False +Description=Save Auto Created Phrase + +[Pinyin/AddFreqWordKey] +Type=Hotkey +DefaultValue=CTRL_8 +Description=Hotkey of Adding Frequent Word + +[Pinyin/DeleteFreqWordKey] +Type=Hotkey +DefaultValue=CTRL_7 +Description=Hotkey of Deleting Frequent Word + +[Pinyin/DeleteUserPhraseKey] +Type=Hotkey +DefaultValue=CTRL_DELETE +Description=Hotkey of Delete User Phrase + +[Pinyin/InputWordFromPhraseKey] +Type=String +DefaultValue=[] +Description=Hotkey of Inputing Word From Phrase + +[Pinyin/BaseOrder] +Type=Enum +EnumCount=3 +Enum0=AdjustNo +Enum1=AdjustFast +Enum2=AdjustFreq +DefaultValue=AdjustFreq +Description=Rule of Candidate Word Order + +[Pinyin/PhraseOrder] +Type=Enum +EnumCount=3 +Enum0=AdjustNo +Enum1=AdjustFast +Enum2=AdjustFreq +DefaultValue=AdjustFast +Description=Rule of Candidate Phrase Order + +[Pinyin/FreqOrder] +Type=Enum +EnumCount=3 +Enum0=AdjustNo +Enum1=AdjustFast +Enum2=AdjustFreq +DefaultValue=AdjustNo +Description=Rule of Frequent Word Order + +[Pinyin/FuzzyAnAng] +Type=Boolean +DefaultValue=False +Description=Fuzzy an and ang + +[Pinyin/FuzzyEnEng] +Type=Boolean +DefaultValue=False +Description=Fuzzy en and eng + +[Pinyin/FuzzyIanIang] +Type=Boolean +DefaultValue=False +Description=Fuzzy ian and iang + +[Pinyin/FuzzyInIng] +Type=Boolean +DefaultValue=False +Description=Fuzzy in and ing + +[Pinyin/FuzzyOuU] +Type=Boolean +DefaultValue=False +Description=Fuzzy ou and u + +[Pinyin/FuzzyUanUang] +Type=Boolean +DefaultValue=False +Description=Fuzzy uan and uang + +[Pinyin/FuzzyCCh] +Type=Boolean +DefaultValue=False +Description=Fuzzy c and ch + +[Pinyin/FuzzyFH] +Type=Boolean +DefaultValue=False +Description=Fuzzy f and h + +[Pinyin/FuzzyLN] +Type=Boolean +DefaultValue=False +Description=Fuzzy l and n + +[Pinyin/FuzzySSH] +Type=Boolean +DefaultValue=False +Description=Fuzzy s and sh + +[Pinyin/FuzzyZZH] +Type=Boolean +DefaultValue=False +Description=Fuzzy z and zh + +[Pinyin/Misstype] +Type=Boolean +DefaultValue=False +Description=Fix misstype gn/ng + +[DescriptionFile] +LocaleDomain=fcitx diff -Nru fcitx-4.0.1/src/im/pinyin/Makefile.am fcitx-4.1.1/src/im/pinyin/Makefile.am --- fcitx-4.0.1/src/im/pinyin/Makefile.am 2010-11-28 11:55:00.000000000 +0000 +++ fcitx-4.1.1/src/im/pinyin/Makefile.am 1970-01-01 00:00:00.000000000 +0000 @@ -1,14 +0,0 @@ -INCLUDES = \ - -I$(top_srcdir)/lib \ - -I$(top_srcdir)/src \ - @CAIRO_XLIB_CFLAGS@ \ - $(NULL) -DEFS = -DPKGDATADIR=\"$(pkgdatadir)\" -DDATADIR=\"$(datadir)\" - -noinst_LIBRARIES=libimpinyin.a -libimpinyin_a_SOURCES= py.c py.h \ - PYFA.c PYFA.h \ - pyMapTable.c pyMapTable.h \ - pyParser.c pyParser.h \ - sp.c sp.h - diff -Nru fcitx-4.0.1/src/im/pinyin/Makefile.in fcitx-4.1.1/src/im/pinyin/Makefile.in --- fcitx-4.0.1/src/im/pinyin/Makefile.in 2010-12-17 04:26:31.000000000 +0000 +++ fcitx-4.1.1/src/im/pinyin/Makefile.in 1970-01-01 00:00:00.000000000 +0000 @@ -1,547 +0,0 @@ -# Makefile.in generated by automake 1.11.1 from Makefile.am. -# @configure_input@ - -# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, -# Inc. -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - -@SET_MAKE@ - -VPATH = @srcdir@ -pkgdatadir = $(datadir)/@PACKAGE@ -pkgincludedir = $(includedir)/@PACKAGE@ -pkglibdir = $(libdir)/@PACKAGE@ -pkglibexecdir = $(libexecdir)/@PACKAGE@ -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = @build@ -host_triplet = @host@ -subdir = src/im/pinyin -DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/configure.in -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -mkinstalldirs = $(install_sh) -d -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -CONFIG_CLEAN_VPATH_FILES = -LIBRARIES = $(noinst_LIBRARIES) -ARFLAGS = cru -AM_V_AR = $(am__v_AR_$(V)) -am__v_AR_ = $(am__v_AR_$(AM_DEFAULT_VERBOSITY)) -am__v_AR_0 = @echo " AR " $@; -AM_V_at = $(am__v_at_$(V)) -am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) -am__v_at_0 = @ -libimpinyin_a_AR = $(AR) $(ARFLAGS) -libimpinyin_a_LIBADD = -am_libimpinyin_a_OBJECTS = py.$(OBJEXT) PYFA.$(OBJEXT) \ - pyMapTable.$(OBJEXT) pyParser.$(OBJEXT) sp.$(OBJEXT) -libimpinyin_a_OBJECTS = $(am_libimpinyin_a_OBJECTS) -DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles -am__mv = mv -f -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -AM_V_lt = $(am__v_lt_$(V)) -am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) -am__v_lt_0 = --silent -LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ - $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ - $(AM_CFLAGS) $(CFLAGS) -AM_V_CC = $(am__v_CC_$(V)) -am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) -am__v_CC_0 = @echo " CC " $@; -CCLD = $(CC) -LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -AM_V_CCLD = $(am__v_CCLD_$(V)) -am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) -am__v_CCLD_0 = @echo " CCLD " $@; -AM_V_GEN = $(am__v_GEN_$(V)) -am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) -am__v_GEN_0 = @echo " GEN " $@; -SOURCES = $(libimpinyin_a_SOURCES) -DIST_SOURCES = $(libimpinyin_a_SOURCES) -ETAGS = etags -CTAGS = ctags -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -ACLOCAL = @ACLOCAL@ -ALL_LINGUAS = @ALL_LINGUAS@ -AMTAR = @AMTAR@ -AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ -AR = @AR@ -AUTOCONF = @AUTOCONF@ -AUTOHEADER = @AUTOHEADER@ -AUTOMAKE = @AUTOMAKE@ -AWK = @AWK@ -CAIRO_XLIB_CFLAGS = @CAIRO_XLIB_CFLAGS@ -CAIRO_XLIB_LIBS = @CAIRO_XLIB_LIBS@ -CC = @CC@ -CCDEPMODE = @CCDEPMODE@ -CFLAGS = @CFLAGS@ -CPP = @CPP@ -CPPFLAGS = @CPPFLAGS@ -CYGPATH_W = @CYGPATH_W@ -DATADIRNAME = @DATADIRNAME@ -DBUS_CFLAGS = @DBUS_CFLAGS@ -DBUS_LIBS = @DBUS_LIBS@ -DEFS = -DPKGDATADIR=\"$(pkgdatadir)\" -DDATADIR=\"$(datadir)\" -DEPDIR = @DEPDIR@ -DLLTOOL = @DLLTOOL@ -DSYMUTIL = @DSYMUTIL@ -DUMPBIN = @DUMPBIN@ -ECHO_C = @ECHO_C@ -ECHO_N = @ECHO_N@ -ECHO_T = @ECHO_T@ -EGREP = @EGREP@ -EXEEXT = @EXEEXT@ -FGREP = @FGREP@ -FONTCONFIG_CFLAGS = @FONTCONFIG_CFLAGS@ -FONTCONFIG_LIBS = @FONTCONFIG_LIBS@ -GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ -GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ -GMSGFMT = @GMSGFMT@ -GMSGFMT_015 = @GMSGFMT_015@ -GREP = @GREP@ -HOST_LIBS = @HOST_LIBS@ -INCINTL = @INCINTL@ -INSTALL = @INSTALL@ -INSTALL_DATA = @INSTALL_DATA@ -INSTALL_PROGRAM = @INSTALL_PROGRAM@ -INSTALL_SCRIPT = @INSTALL_SCRIPT@ -INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ -INTLLIBS = @INTLLIBS@ -INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ -INTLTOOL_MERGE = @INTLTOOL_MERGE@ -INTLTOOL_PERL = @INTLTOOL_PERL@ -INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ -INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ -LD = @LD@ -LDFLAGS = @LDFLAGS@ -LIBICONV = @LIBICONV@ -LIBINTL = @LIBINTL@ -LIBOBJS = @LIBOBJS@ -LIBS = @LIBS@ -LIBTOOL = @LIBTOOL@ -LIPO = @LIPO@ -LN_S = @LN_S@ -LTLIBICONV = @LTLIBICONV@ -LTLIBINTL = @LTLIBINTL@ -LTLIBOBJS = @LTLIBOBJS@ -MAKEINFO = @MAKEINFO@ -MANIFEST_TOOL = @MANIFEST_TOOL@ -MD5SUM = @MD5SUM@ -MKDIR_P = @MKDIR_P@ -MSGFMT = @MSGFMT@ -MSGFMT_015 = @MSGFMT_015@ -MSGMERGE = @MSGMERGE@ -NM = @NM@ -NMEDIT = @NMEDIT@ -OBJDUMP = @OBJDUMP@ -OBJEXT = @OBJEXT@ -OTOOL = @OTOOL@ -OTOOL64 = @OTOOL64@ -PACKAGE = @PACKAGE@ -PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ -PACKAGE_NAME = @PACKAGE_NAME@ -PACKAGE_STRING = @PACKAGE_STRING@ -PACKAGE_TARNAME = @PACKAGE_TARNAME@ -PACKAGE_URL = @PACKAGE_URL@ -PACKAGE_VERSION = @PACKAGE_VERSION@ -PANGOCAIRO_CFLAGS = @PANGOCAIRO_CFLAGS@ -PANGOCAIRO_LIBS = @PANGOCAIRO_LIBS@ -PATH_SEPARATOR = @PATH_SEPARATOR@ -PKG_CONFIG = @PKG_CONFIG@ -PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ -PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ -POSUB = @POSUB@ -RANLIB = @RANLIB@ -SED = @SED@ -SET_MAKE = @SET_MAKE@ -SHELL = @SHELL@ -STRIP = @STRIP@ -TAR = @TAR@ -USE_NLS = @USE_NLS@ -VERSION = @VERSION@ -WGET = @WGET@ -XGETTEXT = @XGETTEXT@ -XGETTEXT_015 = @XGETTEXT_015@ -XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ -XMKMF = @XMKMF@ -XRENDER_CFLAGS = @XRENDER_CFLAGS@ -XRENDER_LIBS = @XRENDER_LIBS@ -X_CFLAGS = @X_CFLAGS@ -X_LIBS = @X_LIBS@ -abs_builddir = @abs_builddir@ -abs_srcdir = @abs_srcdir@ -abs_top_builddir = @abs_top_builddir@ -abs_top_srcdir = @abs_top_srcdir@ -ac_ct_AR = @ac_ct_AR@ -ac_ct_CC = @ac_ct_CC@ -ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ -am__include = @am__include@ -am__leading_dot = @am__leading_dot@ -am__quote = @am__quote@ -am__tar = @am__tar@ -am__untar = @am__untar@ -bindir = @bindir@ -build = @build@ -build_alias = @build_alias@ -build_cpu = @build_cpu@ -build_os = @build_os@ -build_vendor = @build_vendor@ -builddir = @builddir@ -datadir = @datadir@ -datarootdir = @datarootdir@ -docdir = @docdir@ -dvidir = @dvidir@ -exec_prefix = @exec_prefix@ -host = @host@ -host_alias = @host_alias@ -host_cpu = @host_cpu@ -host_os = @host_os@ -host_vendor = @host_vendor@ -htmldir = @htmldir@ -includedir = @includedir@ -infodir = @infodir@ -install_sh = @install_sh@ -libdir = @libdir@ -libexecdir = @libexecdir@ -localedir = @localedir@ -localstatedir = @localstatedir@ -mandir = @mandir@ -mkdir_p = @mkdir_p@ -oldincludedir = @oldincludedir@ -pdfdir = @pdfdir@ -prefix = @prefix@ -program_transform_name = @program_transform_name@ -psdir = @psdir@ -sbindir = @sbindir@ -sharedstatedir = @sharedstatedir@ -srcdir = @srcdir@ -sysconfdir = @sysconfdir@ -target_alias = @target_alias@ -top_build_prefix = @top_build_prefix@ -top_builddir = @top_builddir@ -top_srcdir = @top_srcdir@ -INCLUDES = \ - -I$(top_srcdir)/lib \ - -I$(top_srcdir)/src \ - @CAIRO_XLIB_CFLAGS@ \ - $(NULL) - -noinst_LIBRARIES = libimpinyin.a -libimpinyin_a_SOURCES = py.c py.h \ - PYFA.c PYFA.h \ - pyMapTable.c pyMapTable.h \ - pyParser.c pyParser.h \ - sp.c sp.h - -all: all-am - -.SUFFIXES: -.SUFFIXES: .c .lo .o .obj -$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ - && { if test -f $@; then exit 0; else break; fi; }; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/im/pinyin/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign src/im/pinyin/Makefile -.PRECIOUS: Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(am__aclocal_m4_deps): - -clean-noinstLIBRARIES: - -test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES) -libimpinyin.a: $(libimpinyin_a_OBJECTS) $(libimpinyin_a_DEPENDENCIES) - $(AM_V_at)-rm -f libimpinyin.a - $(AM_V_AR)$(libimpinyin_a_AR) libimpinyin.a $(libimpinyin_a_OBJECTS) $(libimpinyin_a_LIBADD) - $(AM_V_at)$(RANLIB) libimpinyin.a - -mostlyclean-compile: - -rm -f *.$(OBJEXT) - -distclean-compile: - -rm -f *.tab.c - -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/PYFA.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/py.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pyMapTable.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pyParser.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sp.Po@am__quote@ - -.c.o: -@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c $< - -.c.obj: -@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` - -.c.lo: -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs - -ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - mkid -fID $$unique -tags: TAGS - -TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - set x; \ - here=`pwd`; \ - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: CTAGS -CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d "$(distdir)/$$file"; then \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ - else \ - test -f "$(distdir)/$$file" \ - || cp -p $$d/$$file "$(distdir)/$$file" \ - || exit 1; \ - fi; \ - done -check-am: all-am -check: check-am -all-am: Makefile $(LIBRARIES) -installdirs: -install: install-am -install-exec: install-exec-am -install-data: install-data-am -uninstall: uninstall-am - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-am -install-strip: - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - `test -z '$(STRIP)' || \ - echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install -mostlyclean-generic: - -clean-generic: - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-am - -clean-am: clean-generic clean-libtool clean-noinstLIBRARIES \ - mostlyclean-am - -distclean: distclean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -distclean-am: clean-am distclean-compile distclean-generic \ - distclean-tags - -dvi: dvi-am - -dvi-am: - -html: html-am - -html-am: - -info: info-am - -info-am: - -install-data-am: - -install-dvi: install-dvi-am - -install-dvi-am: - -install-exec-am: - -install-html: install-html-am - -install-html-am: - -install-info: install-info-am - -install-info-am: - -install-man: - -install-pdf: install-pdf-am - -install-pdf-am: - -install-ps: install-ps-am - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-am - -mostlyclean-am: mostlyclean-compile mostlyclean-generic \ - mostlyclean-libtool - -pdf: pdf-am - -pdf-am: - -ps: ps-am - -ps-am: - -uninstall-am: - -.MAKE: install-am install-strip - -.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ - clean-libtool clean-noinstLIBRARIES ctags distclean \ - distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am html html-am info info-am \ - install install-am install-data install-data-am install-dvi \ - install-dvi-am install-exec install-exec-am install-html \ - install-html-am install-info install-info-am install-man \ - install-pdf install-pdf-am install-ps install-ps-am \ - install-strip installcheck installcheck-am installdirs \ - maintainer-clean maintainer-clean-generic mostlyclean \ - mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ - pdf pdf-am ps ps-am tags uninstall uninstall-am - - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff -Nru fcitx-4.0.1/src/im/pinyin/py.c fcitx-4.1.1/src/im/pinyin/py.c --- fcitx-4.0.1/src/im/pinyin/py.c 2010-12-17 04:17:49.000000000 +0000 +++ fcitx-4.1.1/src/im/pinyin/py.c 2011-09-08 16:00:05.000000000 +0000 @@ -17,10 +17,11 @@ * Free Software Foundation, Inc., * * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ***************************************************************************/ -#ifdef HAVE_CONFIG_H -#include +#ifdef FCITX_HAVE_CONFIG_H +#include "config.h" #endif +#include #include #include #include @@ -33,129 +34,166 @@ #include #endif -#include "core/fcitx.h" +#include "fcitx/fcitx.h" -#include "tools/tools.h" -#include "core/ime.h" -#include "core/keys.h" -#include "ui/InputWindow.h" -#include "im/pinyin/py.h" -#include "im/pinyin/PYFA.h" -#include "im/pinyin/pyParser.h" -#include "im/pinyin/sp.h" -#include "tools/utf8.h" -#include "tools/profile.h" -#include "tools/configfile.h" -#include "fcitx-config/cutils.h" +#include "fcitx-utils/utils.h" +#include "fcitx/ime.h" +#include "fcitx/keys.h" +#include "fcitx/ui.h" +#include "py.h" +#include "PYFA.h" +#include "pyParser.h" +#include "sp.h" +#include "fcitx-utils/utf8.h" +#include "fcitx/profile.h" +#include "fcitx/configfile.h" +#include "fcitx-utils/log.h" #include "fcitx-config/xdg.h" +#include "pyconfig.h" +#include "fcitx/instance.h" +#include "fcitx/frontend.h" +#include "fcitx/module.h" +#include "fcitx/candidate.h" + +#define TEMP_FILE "FCITX_DICT_TEMP" + +FCITX_EXPORT_API +FcitxIMClass ime = { + PYCreate, + NULL +}; + +const UT_icd pycand_icd = {sizeof(PYCandWord*) , NULL, NULL, NULL }; + +typedef struct _PYCandWordSortContext { + PY_CAND_WORD_TYPE type; + ADJUSTORDER order; + FcitxPinyinState* pystate; +} PYCandWordSortContext; + +static void LoadPYPhraseDict(FcitxPinyinState* pystate, FILE* fp, boolean isSystem); + +static void * LoadPYBaseDictWrapper(void* arg, FcitxModuleFunctionArg args); +static void * PYGetPYByHZWrapper(void* arg, FcitxModuleFunctionArg args); +static void * DoPYInputWrapper(void* arg, FcitxModuleFunctionArg args); +static void * PYGetCandWordsWrapper(void* arg, FcitxModuleFunctionArg args); +static void * PYGetFindStringWrapper(void* arg, FcitxModuleFunctionArg args); +static void * PYResetWrapper(void* arg, FcitxModuleFunctionArg args); +static void ReloadConfigPY(void* arg); +static void PinyinMigration(); +static int PYCandWordCmp(const void* b, const void* a, void* arg); +static void* PYSP2QP(void* arg, FcitxModuleFunctionArg args); + +void *PYCreate(FcitxInstance* instance) +{ + FcitxPinyinState *pystate = fcitx_malloc0(sizeof(FcitxPinyinState)); + FcitxAddon* pyaddon = GetAddonByName(&instance->addons, FCITX_PINYIN_NAME); + InitMHPY(&pystate->pyconfig.MHPY_C, MHPY_C_TEMPLATE); + InitMHPY(&pystate->pyconfig.MHPY_S, MHPY_S_TEMPLATE); + InitPYTable(&pystate->pyconfig); + if (!LoadPYConfig(&pystate->pyconfig)) + { + free(pystate->pyconfig.MHPY_C); + free(pystate->pyconfig.MHPY_S); + free(pystate->pyconfig.PYTable); + free(pystate); + return NULL; + } -int iPYFACount; -PYFA *PYFAList; -uint iCounter = 0; -uint iOrigCounter = 0; -Bool bPYBaseDictLoaded = False; -Bool bPYOtherDictLoaded = False; - -PyFreq *pyFreq = NULL, *pCurFreq = NULL; -uint iPYFreqCount = 0; - -char strFindString[MAX_USER_INPUT + 2]; -ParsePYStruct findMap; -int iPYInsertPoint = 0; - -char strPYLegendSource[MAX_WORDS_USER_INPUT * UTF8_MAX_LENGTH + 1] = "\0"; -char strPYLegendMap[MAX_WORDS_USER_INPUT * 2 + 1] = "\0"; -PyBase *pyBaseForLengend; -PYLegendCandWord PYLegendCandWords[MAX_CAND_WORD]; - -PY_SELECTED pySelected[MAX_WORDS_USER_INPUT + 1]; -uint iPYSelected = 0; - -PYCandWord PYCandWords[MAX_CAND_WORD]; -char strPYAuto[MAX_WORDS_USER_INPUT * UTF8_MAX_LENGTH + 1]; -char strPYAutoMap[MAX_WORDS_USER_INPUT * 2 + 1]; - -INT8 iNewPYPhraseCount = 0; -INT8 iOrderCount = 0; -INT8 iNewFreqCount = 0; - -INT8 iYCDZ = 0; - -Bool bIsPYAddFreq = False; -Bool bIsPYDelFreq = False; -Bool bIsPYDelUserPhr = False; - -Bool isSavingPYUserPhrase = False; -Bool isSavingPYIndex = False; -Bool isSavingPYFreq = False; - -extern Bool bIsInLegend; -extern Bool bSP_UseSemicolon; -extern Bool bSP; -extern int iCandWordCount; -extern int iCandPageCount; -extern int iCodeInputCount; -extern int iCurrentCandPage; -extern char strCodeInput[]; - -extern char strStringGet[]; -extern Bool bIsDoInputOnly; - -extern int iLegendCandWordCount; -extern int iLegendCandPageCount; -extern int iCurrentLegendCandPage; - -static void LoadPYPhraseDict(FILE *fp, Bool isSystem); + PinyinMigration(); -void PYInit(void) -{ - bSP = False; + FcitxRegisterIM(instance, + pystate, + _("Pinyin"), + "pinyin", + PYInit, + ResetPYStatus, + DoPYInput, + PYGetCandWords, + NULL, + SavePY, + ReloadConfigPY, + NULL, + pystate->pyconfig.iPinyinPriority + ); + FcitxRegisterIM(instance, + pystate, + _("Shuangpin"), + "shuangpin", + SPInit, + ResetPYStatus, + DoPYInput, + PYGetCandWords, + NULL, + SavePY, + ReloadConfigPY, + NULL, + pystate->pyconfig.iShuangpinPriority + ); + pystate->owner = instance; + + /* ensure the order! */ + AddFunction(pyaddon, LoadPYBaseDictWrapper); // 0 + AddFunction(pyaddon, PYGetPYByHZWrapper); // 1 + AddFunction(pyaddon, DoPYInputWrapper); // 2 + AddFunction(pyaddon, PYGetCandWordsWrapper); // 3 + AddFunction(pyaddon, PYGetFindStringWrapper); // 4 + AddFunction(pyaddon, PYResetWrapper); // 5 + AddFunction(pyaddon, PYSP2QP); // 5 + return pystate; +} + +boolean PYInit(void *arg) +{ + FcitxPinyinState *pystate = (FcitxPinyinState* )arg; + pystate->bSP = false; + return true; } -Bool LoadPYBaseDict(void) +boolean LoadPYBaseDict(FcitxPinyinState *pystate) { FILE *fp; int i, j, iLen; - fp = GetXDGFileData(PY_BASE_FILE, "r", NULL); + fp = GetXDGFileWithPrefix("pinyin", PY_BASE_FILE, "r", NULL); if (!fp) - return False; + return false; - fread(&iPYFACount, sizeof(int), 1, fp); - PYFAList = (PYFA *) malloc(sizeof(PYFA) * iPYFACount); - for (i = 0; i < iPYFACount; i++) { + fread(&pystate->iPYFACount, sizeof(int), 1, fp); + pystate->PYFAList = (PYFA *) fcitx_malloc0(sizeof(PYFA) * pystate->iPYFACount); + PYFA* PYFAList = pystate->PYFAList; + for (i = 0; i < pystate->iPYFACount; i++) { fread(PYFAList[i].strMap, sizeof(char) * 2, 1, fp); PYFAList[i].strMap[2] = '\0'; fread(&(PYFAList[i].iBase), sizeof(int), 1, fp); - PYFAList[i].pyBase = (PyBase *) malloc(sizeof(PyBase) * PYFAList[i].iBase); + PYFAList[i].pyBase = (PyBase *) fcitx_malloc0(sizeof(PyBase) * PYFAList[i].iBase); for (j = 0; j < PYFAList[i].iBase; j++) { - INT8 len; - fread(&len, sizeof(INT8), 1, fp); + int8_t len; + fread(&len, sizeof(char), 1, fp); fread(PYFAList[i].pyBase[j].strHZ, sizeof(char) * len, 1, fp); PYFAList[i].pyBase[j].strHZ[len] = '\0'; fread(&iLen, sizeof(int), 1, fp); PYFAList[i].pyBase[j].iIndex = iLen; PYFAList[i].pyBase[j].iHit = 0; - PYFAList[i].pyBase[j].flag = 0; - if (iLen > iCounter) - iCounter = iLen; + if (iLen > pystate->iCounter) + pystate->iCounter = iLen; PYFAList[i].pyBase[j].iPhrase = 0; PYFAList[i].pyBase[j].iUserPhrase = 0; - PYFAList[i].pyBase[j].userPhrase = (PyPhrase *) malloc(sizeof(PyPhrase)); + PYFAList[i].pyBase[j].userPhrase = (PyUsrPhrase *) fcitx_malloc0(sizeof(PyUsrPhrase)); PYFAList[i].pyBase[j].userPhrase->next = PYFAList[i].pyBase[j].userPhrase; } } fclose(fp); - bPYBaseDictLoaded = True; + pystate->bPYBaseDictLoaded = true; - iOrigCounter = iCounter; + pystate->iOrigCounter = pystate->iCounter; - pyFreq = (PyFreq *) malloc(sizeof(PyFreq)); - pyFreq->next = NULL; + pystate->pyFreq = (PyFreq *) fcitx_malloc0(sizeof(PyFreq)); + pystate->pyFreq->next = NULL; - return True; + return true; } StringHashSet *GetPYPhraseFiles() @@ -168,11 +206,11 @@ struct dirent *drt; struct stat fileStat; - StringHashSet* sset = NULL; + StringHashSet* sset = NULL; - pinyinPath = GetXDGPath(&len, "XDG_CONFIG_HOME", ".config", "fcitx/pinyin" , DATADIR, "fcitx/data/pinyin" ); + pinyinPath = GetXDGPath(&len, "XDG_CONFIG_HOME", ".config", PACKAGE "/pinyin" , DATADIR, PACKAGE "/pinyin" ); - for(i = 0; i< len; i++) + for (i = 0; i< len; i++) { snprintf(pathBuf, sizeof(pathBuf), "%s", pinyinPath[i]); pathBuf[sizeof(pathBuf) - 1] = '\0'; @@ -181,8 +219,8 @@ if (dir == NULL) continue; - /* collect all *.conf files */ - while((drt = readdir(dir)) != NULL) + /* collect all *.conf files */ + while ((drt = readdir(dir)) != NULL) { size_t nameLen = strlen(drt->d_name); if (nameLen <= strlen(".mb") ) @@ -191,6 +229,15 @@ if (strcmp(drt->d_name + nameLen -strlen(".mb"), ".mb") != 0) continue; + if (strcmp(drt->d_name, PY_PHRASE_FILE) == 0) + continue; + if (strcmp(drt->d_name, PY_USERPHRASE_FILE) == 0) + continue; + if (strcmp(drt->d_name, PY_SYMBOL_FILE) == 0) + continue; + if (strcmp(drt->d_name, PY_BASE_FILE) == 0) + continue; + FcitxLog(INFO, "Try %s", drt->d_name); snprintf(pathBuf, sizeof(pathBuf), "%s/%s", pinyinPath[i], drt->d_name ); if (stat(pathBuf, &fileStat) == -1) @@ -198,16 +245,16 @@ if (fileStat.st_mode & S_IFREG) { - StringHashSet *string; - HASH_FIND_STR(sset, drt->d_name, string); - if (!string) - { - char *bStr = strdup(drt->d_name); - string = malloc(sizeof(StringHashSet)); + StringHashSet *string; + HASH_FIND_STR(sset, drt->d_name, string); + if (!string) + { + char *bStr = strdup(drt->d_name); + string = fcitx_malloc0(sizeof(StringHashSet)); memset(string, 0, sizeof(StringHashSet)); - string->name = bStr; - HASH_ADD_KEYPTR(hh, sset, string->name, strlen(string->name), string); - } + string->name = bStr; + HASH_ADD_KEYPTR(hh, sset, string->name, strlen(string->name), string); + } } } @@ -219,16 +266,17 @@ return sset; } -void LoadPYPhraseDict(FILE *fp, Bool isSystem) +void LoadPYPhraseDict(FcitxPinyinState* pystate, FILE *fp, boolean isSystem) { int i, j ,k, count, iLen; char strBase[UTF8_MAX_LENGTH + 1]; - PyPhrase *temp, *phrase = NULL; + PyPhrase *phrase = NULL, *temp; + PYFA* PYFAList = pystate->PYFAList; while (!feof(fp)) { - INT8 clen; + int8_t clen; if (!fread(&i, sizeof(int), 1, fp)) break; - if (!fread(&clen, sizeof(INT8), 1, fp)) + if (!fread(&clen, sizeof(int8_t), 1, fp)) break; if (clen <= 0 || clen > UTF8_MAX_LENGTH) break; @@ -238,50 +286,48 @@ if (!fread(&count, sizeof(int), 1, fp)) break; - j = GetBaseIndex(i, strBase); + j = GetBaseIndex(pystate, i, strBase); if (j == -1) break; if (isSystem) { - phrase = (PyPhrase *) malloc(sizeof(PyPhrase) * count); + phrase = (PyPhrase *) fcitx_malloc0(sizeof(PyPhrase) * count); temp = phrase; } else { PYFAList[i].pyBase[j].iUserPhrase = count; - temp = PYFAList[i].pyBase[j].userPhrase; + temp = &PYFAList[i].pyBase[j].userPhrase->phrase; } for (k = 0; k < count; k++) { if (!isSystem) - phrase = (PyPhrase *) malloc(sizeof(PyPhrase)); + phrase = (PyPhrase *) fcitx_malloc0(sizeof(PyUsrPhrase)); fread(&iLen, sizeof(int), 1, fp); - phrase->strMap = (char *) malloc(sizeof(char) * (iLen + 1)); + phrase->strMap = (char *) fcitx_malloc0(sizeof(char) * (iLen + 1)); fread(phrase->strMap, sizeof(char) * iLen, 1, fp); phrase->strMap[iLen] = '\0'; fread(&iLen, sizeof(int), 1, fp); - phrase->strPhrase = (char *) malloc(sizeof(char) * (iLen + 1)); + phrase->strPhrase = (char *) fcitx_malloc0(sizeof(char) * (iLen + 1)); fread(phrase->strPhrase, sizeof(char) * iLen, 1, fp); phrase->strPhrase[iLen] = '\0'; fread(&iLen, sizeof(unsigned int), 1, fp); phrase->iIndex = iLen; - if (iLen > iCounter) - iCounter = iLen; + if (iLen > pystate->iCounter) + pystate->iCounter = iLen; if (isSystem) { phrase->iHit = 0; - phrase->flag = 0; phrase ++; } else { fread(&iLen, sizeof(int), 1, fp); phrase->iHit = iLen; - phrase->flag = 0; - phrase->next = temp->next; - temp->next = phrase; + ((PyUsrPhrase*) phrase)->next = ((PyUsrPhrase*) temp)->next; + ((PyUsrPhrase*) temp)->next = (PyUsrPhrase*) phrase; temp = phrase; } @@ -297,8 +343,8 @@ else { int m, n; - Bool *flag = malloc(sizeof(Bool) * count); - memset(flag, 0, sizeof(Bool) * count); + boolean *flag = fcitx_malloc0(sizeof(boolean) * count); + memset(flag, 0, sizeof(boolean) * count); int left = count; phrase = temp; for (m = 0; m < count; m++) @@ -344,7 +390,7 @@ } } -Bool LoadPYOtherDict(void) +boolean LoadPYOtherDict(FcitxPinyinState* pystate) { //下面开始读系统词组 FILE *fp; @@ -352,43 +398,47 @@ uint iIndex; PyFreq *pyFreqTemp, *pPyFreq; HZ *HZTemp, *pHZ; + PYFA* PYFAList = pystate->PYFAList; - bPYOtherDictLoaded = True; + pystate->bPYOtherDictLoaded = true; - fp = GetXDGFileData(PY_PHRASE_FILE, "r", NULL); + fp = GetXDGFileWithPrefix("pinyin", PY_PHRASE_FILE, "r", NULL); if (!fp) FcitxLog(ERROR, _("Can not find System Database of Pinyin!")); else { - LoadPYPhraseDict(fp, True); + LoadPYPhraseDict(pystate, fp, true); fclose(fp); StringHashSet *sset = GetPYPhraseFiles(); StringHashSet *curStr; - while(sset) + while (sset) { curStr = sset; HASH_DEL(sset, curStr); - fp = GetXDGFilePinyin(curStr->name, "r", NULL); - LoadPYPhraseDict(fp, True); + char *filename; + fp = GetXDGFileWithPrefix("pinyin", curStr->name, "r", &filename); + FcitxLog(INFO, _("Load extra dict: %s"), filename); + free(filename); + LoadPYPhraseDict(pystate, fp, true); fclose(fp); free(curStr->name); free(curStr); } - iOrigCounter = iCounter; + pystate->iOrigCounter = pystate->iCounter; } //下面开始读取用户词库 - fp = GetXDGFileData(PY_USERPHRASE_FILE, "rb", NULL); + fp = GetXDGFileWithPrefix("pinyin", PY_USERPHRASE_FILE, "rb", NULL); if (fp) { - LoadPYPhraseDict(fp, False); + LoadPYPhraseDict(pystate, fp, false); fclose(fp); } //下面读取索引文件 - fp = GetXDGFileData(PY_INDEX_FILE, "rb", NULL); + fp = GetXDGFileWithPrefix("pinyin", PY_INDEX_FILE, "rb", NULL); if (fp) { fread(&iLen, sizeof(uint), 1, fp); - if (iLen > iCounter) - iCounter = iLen; + if (iLen > pystate->iCounter) + pystate->iCounter = iLen; while (!feof(fp)) { fread(&i, sizeof(int), 1, fp); fread(&j, sizeof(int), 1, fp); @@ -396,7 +446,7 @@ fread(&iIndex, sizeof(uint), 1, fp); fread(&iLen, sizeof(uint), 1, fp); - if (i < iPYFACount) { + if (i < pystate->iPYFACount) { if (j < PYFAList[i].iBase) { if (k < PYFAList[i].pyBase[j].iPhrase) { if (k >= 0) { @@ -414,29 +464,29 @@ fclose(fp); } //下面读取常用词表 - fp = GetXDGFileData(PY_FREQ_FILE, "rb", NULL); + fp = GetXDGFileWithPrefix("pinyin", PY_FREQ_FILE, "rb", NULL); if (fp) { - pPyFreq = pyFreq; + pPyFreq = pystate->pyFreq; - fread(&iPYFreqCount, sizeof(uint), 1, fp); + fread(&pystate->iPYFreqCount, sizeof(uint), 1, fp); - for (i = 0; i < iPYFreqCount; i++) { - pyFreqTemp = (PyFreq *) malloc(sizeof(PyFreq)); + for (i = 0; i < pystate->iPYFreqCount; i++) { + pyFreqTemp = (PyFreq *) fcitx_malloc0(sizeof(PyFreq)); pyFreqTemp->next = NULL; - pyFreqTemp->bIsSym = False; + pyFreqTemp->bIsSym = false; fread(pyFreqTemp->strPY, sizeof(char) * 11, 1, fp); fread(&j, sizeof(int), 1, fp); pyFreqTemp->iCount = j; - pyFreqTemp->HZList = (HZ *) malloc(sizeof(HZ)); + pyFreqTemp->HZList = (HZ *) fcitx_malloc0(sizeof(HZ)); pyFreqTemp->HZList->next = NULL; pHZ = pyFreqTemp->HZList; for (k = 0; k < pyFreqTemp->iCount; k++) { - INT8 slen; - HZTemp = (HZ *) malloc(sizeof(HZ)); - fread(&slen, sizeof(INT8), 1, fp); + int8_t slen; + HZTemp = (HZ *) fcitx_malloc0(sizeof(HZ)); + fread(&slen, sizeof(int8_t), 1, fp); fread(HZTemp->strHZ, sizeof(char) * slen, 1, fp); HZTemp->strHZ[slen] = '\0'; fread(&j, sizeof(int), 1, fp); @@ -445,7 +495,6 @@ HZTemp->iHit = j; fread(&j, sizeof(int), 1, fp); HZTemp->iIndex = j; - HZTemp->flag = 0; pHZ->next = HZTemp; pHZ = HZTemp; } @@ -457,7 +506,7 @@ fclose(fp); } //下面读取特殊符号表 - fp = GetXDGFileData(PY_SYMBOL_FILE, "rb", NULL); + fp = GetXDGFileWithPrefix("pinyin", PY_SYMBOL_FILE, "rb", NULL); if (fp) { char strTxt[256]; char str1[MAX_PY_PHRASE_LENGTH * MAX_PY_LENGTH + 1], str2[MAX_PY_PHRASE_LENGTH * UTF8_MAX_LENGTH + 1]; @@ -479,8 +528,8 @@ sscanf(str, "%s %s", str1, str2); //首先看看str1是否已经在列表中 - pyFreqTemp = pyFreq->next; - pPyFreq = pyFreq; + pyFreqTemp = pystate->pyFreq->next; + pPyFreq = pystate->pyFreq; while (pyFreqTemp) { if (!strcmp(pyFreqTemp->strPY, str1)) break; @@ -489,21 +538,21 @@ } if (!pyFreqTemp) { - pyFreqTemp = (PyFreq *) malloc(sizeof(PyFreq)); + pyFreqTemp = (PyFreq *) fcitx_malloc0(sizeof(PyFreq)); strcpy(pyFreqTemp->strPY, str1); pyFreqTemp->next = NULL; pyFreqTemp->iCount = 0; - pyFreqTemp->bIsSym = True; - pyFreqTemp->HZList = (HZ *) malloc(sizeof(HZ)); + pyFreqTemp->bIsSym = true; + pyFreqTemp->HZList = (HZ *) fcitx_malloc0(sizeof(HZ)); pyFreqTemp->HZList->next = NULL; pPyFreq->next = pyFreqTemp; - iPYFreqCount++; + pystate->iPYFreqCount++; } else { if (!pyFreqTemp->bIsSym) //不能与常用字的编码相同 continue; } - HZTemp = (HZ *) malloc(sizeof(HZ)); + HZTemp = (HZ *) fcitx_malloc0(sizeof(HZ)); strcpy(HZTemp->strHZ, str2); HZTemp->next = NULL; pyFreqTemp->iCount++; @@ -518,30 +567,31 @@ fclose(fp); } - return True; + return true; } -void ResetPYStatus() +void ResetPYStatus(void* arg) { - iPYInsertPoint = 0; - iPYSelected = 0; - strFindString[0] = '\0'; - strPYAuto[0] = '\0'; + FcitxPinyinState *pystate = (FcitxPinyinState*)arg; + pystate->iPYInsertPoint = 0; + pystate->iPYSelected = 0; + pystate->strFindString[0] = '\0'; + pystate->strPYAuto[0] = '\0'; - bIsPYAddFreq = False; - bIsPYDelFreq = False; - bIsPYDelUserPhr = False; + pystate->bIsPYAddFreq = false; + pystate->bIsPYDelFreq = false; + pystate->bIsPYDelUserPhr = false; - findMap.iMode = PARSE_SINGLEHZ; //只要不是PARSE_ERROR就可以 + pystate->findMap.iMode = PARSE_SINGLEHZ; //只要不是PARSE_ERROR就可以 } -int GetBaseIndex(int iPYFA, char *strBase) +int GetBaseIndex(FcitxPinyinState* pystate, int iPYFA, char *strBase) { int i; - if (iPYFA < iPYFACount) { - for (i = 0; i < PYFAList[iPYFA].iBase; i++) { - if (!strcmp(strBase, PYFAList[iPYFA].pyBase[i].strHZ)) + if (iPYFA < pystate->iPYFACount) { + for (i = 0; i < pystate->PYFAList[iPYFA].iBase; i++) { + if (!strcmp(strBase, pystate->PYFAList[iPYFA].pyBase[i].strHZ)) return i; } } @@ -549,324 +599,354 @@ return -1; } -INPUT_RETURN_VALUE DoPYInput(unsigned int sym, unsigned int state, int keyCount) +INPUT_RETURN_VALUE DoPYInput(void* arg, FcitxKeySym sym, unsigned int state) { + FcitxPinyinState *pystate = (FcitxPinyinState*) arg; + FcitxInputState *input = &pystate->owner->input; int i = 0; int val; - char *strGet = NULL; + INPUT_RETURN_VALUE retVal; char strTemp[MAX_USER_INPUT + 1]; - if (sym == 0 && state == 0 && keyCount == -1) + if (sym == 0 && state == 0) sym = -1; - if (!bPYBaseDictLoaded) - LoadPYBaseDict(); - if (!bPYOtherDictLoaded) - LoadPYOtherDict(); - - val = IRV_TO_PROCESS; - if (!bIsPYAddFreq && !bIsPYDelFreq && !bIsPYDelUserPhr) { - if ((IsHotKeyLAZ(sym, state) || IsHotKey(sym, state, FCITX_SEPARATOR) || (bSP && bSP_UseSemicolon && IsHotKey(sym, state, FCITX_SEMICOLON)))) { - bIsInLegend = False; - inputWindow.bShowCursor = True; + if (!pystate->bPYBaseDictLoaded) + LoadPYBaseDict(pystate); + if (!pystate->bPYOtherDictLoaded) + LoadPYOtherDict(pystate); + + retVal = IRV_TO_PROCESS; + + /* is not in py special state */ + if (!pystate->bIsPYAddFreq && !pystate->bIsPYDelFreq && !pystate->bIsPYDelUserPhr) { + if ((IsHotKeyLAZ(sym, state) + || IsHotKey(sym, state, FCITX_SEPARATOR) + || (pystate->bSP && input->iCodeInputCount > 0 && pystate->bSP_UseSemicolon && IsHotKey(sym, state, FCITX_SEMICOLON)))) + { + input->bIsInRemind = false; + input->bShowCursor = true; + /* we cannot insert seperator in the first, nor there is a existing separator */ if (IsHotKey(sym, state, FCITX_SEPARATOR)) { - if (!iPYInsertPoint) + if (!pystate->iPYInsertPoint) return IRV_TO_PROCESS; - if (strFindString[iPYInsertPoint - 1] == PY_SEPARATOR) + if (pystate->strFindString[pystate->iPYInsertPoint - 1] == PY_SEPARATOR) return IRV_DO_NOTHING; } - val = i = strlen(strFindString); + val = i = strlen(pystate->strFindString); - for (; i > iPYInsertPoint; i--) - strFindString[i] = strFindString[i - 1]; - - strFindString[iPYInsertPoint++] = sym; - strFindString[val + 1] = '\0'; - ParsePY(strFindString, &findMap, PY_PARSE_INPUT_USER, bSP); + /* do the insert */ + for (; i > pystate->iPYInsertPoint; i--) + pystate->strFindString[i] = pystate->strFindString[i - 1]; + + pystate->strFindString[pystate->iPYInsertPoint++] = sym; + pystate->strFindString[val + 1] = '\0'; + ParsePY(&pystate->pyconfig, pystate->strFindString, &pystate->findMap, PY_PARSE_INPUT_USER, pystate->bSP); val = 0; - for (i = 0; i < iPYSelected; i++) - val += utf8_strlen(pySelected[i].strHZ); - - if (findMap.iHZCount > (MAX_WORDS_USER_INPUT - val)) { - UpdateFindString(val); - ParsePY(strFindString, &findMap, PY_PARSE_INPUT_USER, bSP); - } + for (i = 0; i < pystate->iPYSelected; i++) + val += utf8_strlen(pystate->pySelected[i].strHZ); - val = IRV_DISPLAY_CANDWORDS; - } else if (IsHotKey(sym, state, FCITX_BACKSPACE) || IsHotKey(sym, state, FCITX_CTRL_H) ) { - if (iPYInsertPoint) { - val = ((iPYInsertPoint > 1) - && (strFindString[iPYInsertPoint - 2] == PY_SEPARATOR)) ? 2 : 1; - int len = strlen(strFindString + iPYInsertPoint), i = 0; + if (pystate->findMap.iHZCount > (MAX_WORDS_USER_INPUT - val)) { + UpdateFindString(pystate, val); + ParsePY(&pystate->pyconfig, pystate->strFindString, &pystate->findMap, PY_PARSE_INPUT_USER, pystate->bSP); + } + + retVal = IRV_DISPLAY_CANDWORDS; + } else if (IsHotKey(sym, state, FCITX_BACKSPACE)) { + if (pystate->iPYSelected) { + char strTemp[MAX_USER_INPUT + 1]; + + val = strlen(pystate->strFindString); + strcpy(strTemp, pystate->pySelected[pystate->iPYSelected - 1].strPY); + strcat(strTemp, pystate->strFindString); + strcpy(pystate->strFindString, strTemp); + pystate->iPYInsertPoint += strlen(pystate->strFindString) - val; + pystate->iPYSelected--; + ParsePY(&pystate->pyconfig, pystate->strFindString, &pystate->findMap, PY_PARSE_INPUT_USER, pystate->bSP); + + retVal = IRV_DISPLAY_CANDWORDS; + } + else if (pystate->iPYInsertPoint) { + /* we cannot delete it if cursor is at the first */ + val = ((pystate->iPYInsertPoint > 1) + && (pystate->strFindString[pystate->iPYInsertPoint - 2] == PY_SEPARATOR)) ? 2 : 1; + int len = strlen(pystate->strFindString + pystate->iPYInsertPoint), i = 0; /* 这里使用<=而不是<是因为还有'\0'需要拷贝 */ for (i = 0; i <= len; i++) - strFindString[i + iPYInsertPoint - val] = strFindString[i + iPYInsertPoint]; - ParsePY(strFindString, &findMap, PY_PARSE_INPUT_USER, bSP); - iPYInsertPoint -= val; - val = IRV_DISPLAY_CANDWORDS; + pystate->strFindString[i + pystate->iPYInsertPoint - val] = pystate->strFindString[i + pystate->iPYInsertPoint]; + ParsePY(&pystate->pyconfig, pystate->strFindString, &pystate->findMap, PY_PARSE_INPUT_USER, pystate->bSP); + pystate->iPYInsertPoint -= val; - if (!strlen(strFindString)) { - if (!iPYSelected) + if (!strlen(pystate->strFindString)) { + if (!pystate->iPYSelected) return IRV_CLEAN; - val = strlen(strFindString); - strcpy(strTemp, pySelected[iPYSelected - 1].strPY); - strcat(strTemp, strFindString); - strcpy(strFindString, strTemp); - iPYInsertPoint = strlen(strFindString) - val; - iPYSelected--; - ParsePY(strFindString, &findMap, PY_PARSE_INPUT_USER, bSP); + val = strlen(pystate->strFindString); + strcpy(strTemp, pystate->pySelected[pystate->iPYSelected - 1].strPY); + strcat(strTemp, pystate->strFindString); + strcpy(pystate->strFindString, strTemp); + pystate->iPYInsertPoint = strlen(pystate->strFindString) - val; + pystate->iPYSelected--; + ParsePY(&pystate->pyconfig, pystate->strFindString, &pystate->findMap, PY_PARSE_INPUT_USER, pystate->bSP); } - val = IRV_DISPLAY_CANDWORDS; + retVal = IRV_DISPLAY_CANDWORDS; + } + else + { + if (strlen(pystate->strFindString) == 0) + return IRV_TO_PROCESS; + else + return IRV_DO_NOTHING; } } else if (IsHotKey(sym, state, FCITX_DELETE)) { - if (iCodeInputCount) { - if (iPYInsertPoint == strlen(strFindString)) + if (input->iCodeInputCount) { + if (pystate->iPYInsertPoint == strlen(pystate->strFindString)) return IRV_DO_NOTHING; - val = (strFindString[iPYInsertPoint + 1] == PY_SEPARATOR) ? 2 : 1; - int len = strlen(strFindString + iPYInsertPoint + val), i = 0; + val = (pystate->strFindString[pystate->iPYInsertPoint + 1] == PY_SEPARATOR) ? 2 : 1; + int len = strlen(pystate->strFindString + pystate->iPYInsertPoint + val), i = 0; /* 这里使用<=而不是<是因为还有'\0'需要拷贝 */ for (i = 0; i <= len; i++) - strFindString[i + iPYInsertPoint] = strFindString[i + iPYInsertPoint + val]; + pystate->strFindString[i + pystate->iPYInsertPoint] = pystate->strFindString[i + pystate->iPYInsertPoint + val]; - ParsePY(strFindString, &findMap, PY_PARSE_INPUT_USER, bSP); - if (!strlen(strFindString)) + ParsePY(&pystate->pyconfig, pystate->strFindString, &pystate->findMap, PY_PARSE_INPUT_USER, pystate->bSP); + if (!strlen(pystate->strFindString)) return IRV_CLEAN; - val = IRV_DISPLAY_CANDWORDS; + retVal = IRV_DISPLAY_CANDWORDS; } } else if (IsHotKey(sym, state, FCITX_HOME)) { - if (iCodeInputCount == 0) + if (input->iCodeInputCount == 0) return IRV_DONOT_PROCESS; - iPYInsertPoint = 0; - val = IRV_DISPLAY_CANDWORDS; + pystate->iPYInsertPoint = 0; + retVal = IRV_DISPLAY_CANDWORDS; } else if (IsHotKey(sym, state, FCITX_END)) { - if (iCodeInputCount == 0) + if (input->iCodeInputCount == 0) return IRV_DONOT_PROCESS; - iPYInsertPoint = strlen(strFindString); - val = IRV_DISPLAY_CANDWORDS; + pystate->iPYInsertPoint = strlen(pystate->strFindString); + retVal = IRV_DISPLAY_CANDWORDS; } else if (IsHotKey(sym, state, FCITX_RIGHT)) { - if (!iCodeInputCount) + if (!input->iCodeInputCount) return IRV_TO_PROCESS; - if (iPYInsertPoint == strlen(strFindString)) + if (pystate->iPYInsertPoint == strlen(pystate->strFindString)) return IRV_DO_NOTHING; - iPYInsertPoint++; - val = IRV_DISPLAY_CANDWORDS; + pystate->iPYInsertPoint++; + retVal = IRV_DISPLAY_CANDWORDS; } else if (IsHotKey(sym, state, FCITX_LEFT)) { - if (!iCodeInputCount) + if (!input->iCodeInputCount) return IRV_TO_PROCESS; - if (iPYInsertPoint < 2) { - if (iPYSelected) { + if (pystate->iPYInsertPoint < 2) { + if (pystate->iPYSelected) { char strTemp[MAX_USER_INPUT + 1]; - val = strlen(strFindString); - strcpy(strTemp, pySelected[iPYSelected - 1].strPY); - strcat(strTemp, strFindString); - strcpy(strFindString, strTemp); - iPYInsertPoint = strlen(strFindString) - val; - iPYSelected--; - ParsePY(strFindString, &findMap, PY_PARSE_INPUT_USER, bSP); - - val = IRV_DISPLAY_CANDWORDS; - } else if (iPYInsertPoint) { - iPYInsertPoint--; - val = IRV_DISPLAY_CANDWORDS; + val = strlen(pystate->strFindString); + strcpy(strTemp, pystate->pySelected[pystate->iPYSelected - 1].strPY); + strcat(strTemp, pystate->strFindString); + strcpy(pystate->strFindString, strTemp); + pystate->iPYInsertPoint = strlen(pystate->strFindString) - val; + pystate->iPYSelected--; + ParsePY(&pystate->pyconfig, pystate->strFindString, &pystate->findMap, PY_PARSE_INPUT_USER, pystate->bSP); + + retVal = IRV_DISPLAY_CANDWORDS; + } else if (pystate->iPYInsertPoint) { + pystate->iPYInsertPoint--; + retVal = IRV_DISPLAY_CANDWORDS; } else - val = IRV_DO_NOTHING; + retVal = IRV_DO_NOTHING; } else { - iPYInsertPoint--; - val = IRV_DISPLAY_CANDWORDS; + pystate->iPYInsertPoint--; + retVal = IRV_DISPLAY_CANDWORDS; } } else if (IsHotKey(sym, state, FCITX_SPACE)) { - if (!bIsInLegend) { - if (findMap.iMode == PARSE_ERROR) + if (pystate->findMap.iMode == PARSE_ERROR) + return IRV_DO_NOTHING; + + if (CandidateWordPageCount(input->candList) == 0) { + if (input->iCodeInputCount == 0) + return IRV_TO_PROCESS; + else return IRV_DO_NOTHING; + } - if (!iCandWordCount) { - if (iCodeInputCount == 1 && strCodeInput[0] == ';' && bSP) { - strcpy(strStringGet, ";"); - return IRV_PUNC; + retVal = CandidateWordChooseByIndex(input->candList, 0); + } else if (IsHotKey(sym, state, pystate->pyconfig.hkPYDelUserPhr)) { + if (!pystate->bIsPYDelUserPhr) { + CandidateWord* candWord = NULL; + for (candWord = CandidateWordGetCurrentWindow(input->candList); + candWord != NULL; + candWord = CandidateWordGetCurrentWindowNext(input->candList, candWord)) { + if (candWord->owner == pystate) + { + PYCandWord* pycandWord = candWord->priv; + if (pycandWord->iWhich == PY_CAND_USERPHRASE) + break; } - return IRV_TO_PROCESS; } - strGet = PYGetCandWord(0); - - if (strGet) { - strcpy(strStringGet, strGet); + if (!candWord) + return IRV_TO_PROCESS; - if (bIsInLegend) - val = IRV_GET_LEGEND; - else - val = IRV_GET_CANDWORDS; - } else - val = IRV_DISPLAY_CANDWORDS; - } else { - strcpy(strStringGet, PYGetLegendCandWord(0)); - val = IRV_GET_LEGEND; - } - } else if (IsHotKey(sym, state, fc.hkPYDelUserPhr)) { - if (!bIsPYDelUserPhr) { - for (val = 0; val < iCandWordCount; val++) { - if (PYCandWords[val].iWhich == PY_CAND_USERPHRASE) - goto _NEXT; - } - return IRV_TO_PROCESS; + pystate->bIsPYDelUserPhr = true; + input->bIsDoInputOnly = true; - _NEXT: - bIsPYDelUserPhr = True; - bIsDoInputOnly = True; - - SetMessageCount(&messageUp, 0); - AddMessageAtLast(&messageUp, MSG_TIPS, "选择标号的用户词组将被删除(ESC取消)"); - inputWindow.bShowCursor = False; + SetMessageCount(input->msgPreedit, 0); + SetMessageCount(input->msgAuxUp, 0); + AddMessageAtLast(input->msgAuxUp, MSG_TIPS, _("Press index to delete user phrase (ESC for cancel)")); + input->bShowCursor = false; return IRV_DISPLAY_MESSAGE; } - } else if (IsHotKey(sym, state, fc.hkPYAddFreq)) { - if (!bIsPYAddFreq && findMap.iHZCount == 1 && iCodeInputCount) { - bIsPYAddFreq = True; - bIsDoInputOnly = True; - - SetMessageCount(&messageUp, 0); - AddMessageAtLast(&messageUp, MSG_TIPS, "选择标号的字将进入 %s 的常用字表(ESC取消)", strFindString); - inputWindow.bShowCursor = False; + } else if (IsHotKey(sym, state, pystate->pyconfig.hkPYAddFreq)) { + if (!pystate->bIsPYAddFreq && pystate->findMap.iHZCount == 1 && input->iCodeInputCount) { + pystate->bIsPYAddFreq = true; + input->bIsDoInputOnly = true; + + SetMessageCount(input->msgPreedit, 0); + SetMessageCount(input->msgAuxUp, 0); + AddMessageAtLast(input->msgAuxUp, MSG_TIPS, _("Press number to make word in frequent list"), pystate->strFindString); + input->bShowCursor = false; return IRV_DISPLAY_MESSAGE; } - } else if (IsHotKey(sym, state, fc.hkPYDelFreq)) { - if (!bIsPYDelFreq && (pCurFreq && !pCurFreq->bIsSym)) { - for (val = 0; val < iCandWordCount; val++) { - if (PYCandWords[val].iWhich != PY_CAND_FREQ) - break; + } else if (IsHotKey(sym, state, pystate->pyconfig.hkPYDelFreq)) { + if (!pystate->bIsPYDelFreq) { + val = 0; + int index = 0; + CandidateWord* candWord = NULL; + for (candWord = CandidateWordGetCurrentWindow(input->candList); + candWord != NULL; + candWord = CandidateWordGetCurrentWindowNext(input->candList, candWord)) { + index ++ ; + if (candWord->owner == pystate) + { + PYCandWord* pycandWord = candWord->priv; + if (pycandWord->iWhich == PY_CAND_FREQ) + { + val = index; + } + } } - if (!val) + if (val == 0) return IRV_DO_NOTHING; - SetMessageCount(&messageUp, 0); + SetMessageCount(input->msgPreedit, 0); + SetMessageCount(input->msgAuxUp, 0); if (val == 1) - AddMessageAtLast(&messageUp, MSG_TIPS, "按 1 删除 %s 的常用字(ESC取消)", strFindString); + AddMessageAtLast(input->msgAuxUp, MSG_TIPS, _("Press 1 to delete %s in frequent list (ESC for cancel)"), pystate->strFindString); else - AddMessageAtLast(&messageUp, MSG_TIPS, "按 1-%d 删除 %s 的常用字(ESC取消)", val, strFindString); + AddMessageAtLast(input->msgAuxUp, MSG_TIPS, _("Press 1-%d to delete %s in frequent list (ESC for cancel)"), val, pystate->strFindString); - bIsPYDelFreq = True; - bIsDoInputOnly = True; + pystate->bIsPYDelFreq = true; + input->bIsDoInputOnly = true; - inputWindow.bShowCursor = False; + input->bShowCursor = false; return IRV_DISPLAY_MESSAGE; } } } - if (val == IRV_TO_PROCESS) { + if (retVal == IRV_TO_PROCESS) { if (IsHotKeyDigit(sym, state)) { - int iKey = sym - XK_0; + int iKey = sym - Key_0; if (iKey == 0) iKey = 10; - if (!bIsInLegend) { - if (!iCodeInputCount) + CandidateWord* candWord = CandidateWordGetByIndex(input->candList, iKey - 1); + if (!input->bIsInRemind) { + if (!input->iCodeInputCount) return IRV_TO_PROCESS; - else if (!iCandWordCount || (iKey > iCandWordCount)) + else if (candWord == NULL) return IRV_DO_NOTHING; else { - if (bIsPYAddFreq || bIsPYDelFreq || bIsPYDelUserPhr) { - if (bIsPYAddFreq) { - PYAddFreq(iKey - 1); - bIsPYAddFreq = False; - } else if (bIsPYDelFreq) { - PYDelFreq(iKey - 1); - bIsPYDelFreq = False; + if (candWord->owner == pystate && (pystate->bIsPYAddFreq || pystate->bIsPYDelFreq || pystate->bIsPYDelUserPhr)) { + PYCandWord* pycandWord = candWord->priv; + if (pystate->bIsPYAddFreq) { + PYAddFreq(pystate, pycandWord ); + pystate->bIsPYAddFreq = false; + } else if (pystate->bIsPYDelFreq) { + PYDelFreq(pystate, pycandWord); + pystate->bIsPYDelFreq = false; } else { - if (PYCandWords[iKey - 1].iWhich == PY_CAND_USERPHRASE) - PYDelUserPhrase(PYCandWords[iKey - 1].cand.phrase.iPYFA, - PYCandWords[iKey - 1].cand.phrase.iBase, PYCandWords[iKey - 1].cand.phrase.phrase); - bIsPYDelUserPhr = False; + if (pycandWord->iWhich == PY_CAND_USERPHRASE) + PYDelUserPhrase(pystate, pycandWord->cand.phrase.iPYFA, + pycandWord->cand.phrase.iBase, (PyUsrPhrase*) pycandWord->cand.phrase.phrase); + pystate->bIsPYDelUserPhr = false; } - bIsDoInputOnly = False; - inputWindow.bShowCursor = True; + input->bIsDoInputOnly = false; + input->bShowCursor = true; - val = IRV_DISPLAY_CANDWORDS; - } else { - strGet = PYGetCandWord(iKey - 1); - if (strGet) { - strcpy(strStringGet, strGet); - - if (bIsInLegend) - val = IRV_GET_LEGEND; - else - val = IRV_GET_CANDWORDS; - } else - val = IRV_DISPLAY_CANDWORDS; + retVal = IRV_DISPLAY_CANDWORDS; } } - } else { - strcpy(strStringGet, PYGetLegendCandWord(iKey - 1)); - val = IRV_GET_LEGEND; } } else if (sym == -1) { - ParsePY(strFindString, &findMap, PY_PARSE_INPUT_USER, bSP); - iPYInsertPoint = 0; - val = IRV_DISPLAY_CANDWORDS; + ParsePY(&pystate->pyconfig, pystate->strFindString, &pystate->findMap, PY_PARSE_INPUT_USER, pystate->bSP); + pystate->iPYInsertPoint = 0; + retVal = IRV_DISPLAY_CANDWORDS; } else if (IsHotKey(sym, state, FCITX_ESCAPE)) return IRV_TO_PROCESS; else { - if (bIsPYAddFreq || bIsPYDelFreq || bIsPYDelUserPhr) + if (pystate->bIsPYAddFreq || pystate->bIsPYDelFreq || pystate->bIsPYDelUserPhr) return IRV_DO_NOTHING; //下面实现以词定字 - if (iCandWordCount) { - if (state == KEY_NONE && (sym == fc.cPYYCDZ[0] || sym == fc.cPYYCDZ[1])) { - if (PYCandWords[iYCDZ].iWhich == PY_CAND_USERPHRASE || PYCandWords[iYCDZ].iWhich == PY_CAND_SYMPHRASE) { - char *pBase, *pPhrase; - - pBase = PYFAList[PYCandWords[iYCDZ].cand.phrase.iPYFA].pyBase[PYCandWords[iYCDZ].cand.phrase.iBase].strHZ; - pPhrase = PYCandWords[iYCDZ].cand.phrase.phrase->strPhrase; - - if (sym == fc.cPYYCDZ[0]) - strcpy(strStringGet, pBase); - else { - INT8 clen; - clen = utf8_char_len(pPhrase); - strncpy(strStringGet, pPhrase, clen); - strStringGet[clen] = '\0'; + if (CandidateWordPageCount(input->candList) != 0) { + if (state == KEY_NONE && (sym == pystate->pyconfig.cPYYCDZ[0] || sym == pystate->pyconfig.cPYYCDZ[1])) { + CandidateWord* candWord = CandidateWordGetByIndex(input->candList, pystate->iYCDZ); + if (candWord->owner == pystate) + { + PYCandWord* pycandWord = candWord->priv; + if (pycandWord->iWhich == PY_CAND_USERPHRASE || pycandWord->iWhich == PY_CAND_SYSPHRASE) { + char *pBase, *pPhrase; + + pBase = pystate->PYFAList[pycandWord->cand.phrase.iPYFA].pyBase[pycandWord->cand.phrase.iBase].strHZ; + pPhrase = pycandWord->cand.phrase.phrase->strPhrase; + + if (sym == pystate->pyconfig.cPYYCDZ[0]) + strcpy(GetOutputString(input), pBase); + else { + int8_t clen; + clen = utf8_char_len(pPhrase); + strncpy(GetOutputString(input), pPhrase, clen); + GetOutputString(input)[clen] = '\0'; + } + SetMessageCount(input->msgAuxDown, 0); + return IRV_COMMIT_STRING; } - SetMessageCount(&messageDown, 0); - return IRV_GET_CANDWORDS; } - } else if (!bIsInLegend) { + } else if (!input->bIsInRemind) { val = -1; switch (sym) { - case XK_parenright: + case Key_parenright: val++; - case XK_parenleft: + case Key_parenleft: val++; - case XK_asterisk: + case Key_asterisk: val++; - case XK_ampersand: + case Key_ampersand: val++; - case XK_asciicircum: + case Key_asciicircum: val++; - case XK_percent: + case Key_percent: val++; - case XK_dollar: + case Key_dollar: val++; - case XK_numbersign: + case Key_numbersign: val++; - case XK_at: + case Key_at: val++; - case XK_exclam: + case Key_exclam: val++; + default: + break; } - if (val != -1 && val < iCandWordCount) { - iYCDZ = val; - PYCreateCandString(); + if (val != -1 && CandidateWordGetByIndex(input->candList, val)) { + pystate->iYCDZ = val; return IRV_DISPLAY_CANDWORDS; } @@ -877,316 +957,151 @@ } } - if (!bIsInLegend) { - UpdateCodeInputPY(); - CalculateCursorPosition(); - } - - if (val == IRV_DISPLAY_CANDWORDS) { - SetMessageCount(&messageUp, 0); - if (iPYSelected) { - AddMessageAtLast(&messageUp, MSG_OTHER, ""); - for (i = 0; i < iPYSelected; i++) - strcat(LAST_MESSAGE(messageUp).strMsg, pySelected[i].strHZ); - } - - for (i = 0; i < findMap.iHZCount; i++) { - AddMessageAtLast(&messageUp, MSG_CODE, "%s ", findMap.strPYParsed[i]); - } - - return PYGetCandWords(SM_FIRST); + if (!input->bIsInRemind) { + UpdateCodeInputPY(pystate); + CalculateCursorPosition(pystate); } - return (INPUT_RETURN_VALUE) val; + return retVal; } /* * 本函数根据当前插入点计算光标的实际位置 */ -void CalculateCursorPosition(void) +void CalculateCursorPosition(FcitxPinyinState* pystate) { int i; int iTemp; + FcitxInputState* input = &pystate->owner->input; - iCursorPos = 0; - for (i = 0; i < iPYSelected; i++) - iCursorPos += strlen(pySelected[i].strHZ); - - if (iPYInsertPoint > strlen(strFindString)) - iPYInsertPoint = strlen(strFindString); - iTemp = iPYInsertPoint; - - for (i = 0; i < findMap.iHZCount; i++) { - if (strlen(findMap.strPYParsed[i]) >= iTemp) { - iCursorPos += iTemp; + input->iCursorPos = 0; + for (i = 0; i < pystate->iPYSelected; i++) + input->iCursorPos += strlen(pystate->pySelected[i].strHZ); + + if (pystate->iPYInsertPoint > strlen(pystate->strFindString)) + pystate->iPYInsertPoint = strlen(pystate->strFindString); + iTemp = pystate->iPYInsertPoint; + + for (i = 0; i < pystate->findMap.iHZCount; i++) { + if (strlen(pystate->findMap.strPYParsed[i]) >= iTemp) { + input->iCursorPos += iTemp; break; } - iCursorPos += strlen(findMap.strPYParsed[i]); + input->iCursorPos += strlen(pystate->findMap.strPYParsed[i]); - iCursorPos++; - iTemp -= strlen(findMap.strPYParsed[i]); + input->iCursorPos++; + iTemp -= strlen(pystate->findMap.strPYParsed[i]); } } /* - * 由于拼音的编辑功能修改了strFindString,必须保证strCodeInput与用户的输入一致 + * 由于拼音的编辑功能修改了strFindString,必须保证input->strCodeInput与用户的输入一致 */ -void UpdateCodeInputPY(void) +void UpdateCodeInputPY(FcitxPinyinState* pystate) { int i; + FcitxInputState* input = &pystate->owner->input; - strCodeInput[0] = '\0'; - for (i = 0; i < iPYSelected; i++) - strcat(strCodeInput, pySelected[i].strPY); - strcat(strCodeInput, strFindString); - iCodeInputCount = strlen(strCodeInput); + input->strCodeInput[0] = '\0'; + for (i = 0; i < pystate->iPYSelected; i++) + strcat(input->strCodeInput, pystate->pySelected[i].strPY); + strcat(input->strCodeInput, pystate->strFindString); + input->iCodeInputCount = strlen(input->strCodeInput); } -void PYResetFlags(void) -{ - int i, j, k; - PyPhrase *phrase; - PyFreq *freq; - HZ *hz; - - for (i = 0; i < iPYFACount; i++) { - for (j = 0; j < PYFAList[i].iBase; j++) { - PYFAList[i].pyBase[j].flag = 0; - for (k = 0; k < PYFAList[i].pyBase[j].iPhrase; k++) - PYFAList[i].pyBase[j].phrase[k].flag = 0; - phrase = PYFAList[i].pyBase[j].userPhrase->next; - for (k = 0; k < PYFAList[i].pyBase[j].iUserPhrase; k++) { - phrase->flag = 0; - phrase = phrase->next; - } - } - } - - freq = pyFreq->next; - for (i = 0; i < iPYFreqCount; i++) { - hz = freq->HZList->next; - for (j = 0; j < freq->iCount; j++) { - hz->flag = False; - hz = hz->next; - } - freq = freq->next; - } -} - -void UpdateFindString(int val) +void UpdateFindString(FcitxPinyinState* pystate, int val) { int i; - strFindString[0] = '\0'; - for (i = 0; i < findMap.iHZCount; i++) { + pystate->strFindString[0] = '\0'; + for (i = 0; i < pystate->findMap.iHZCount; i++) { if (i >= MAX_WORDS_USER_INPUT - val) break; - strcat(strFindString, findMap.strPYParsed[i]); + strcat(pystate->strFindString, pystate->findMap.strPYParsed[i]); } - if (iPYInsertPoint > strlen(strFindString)) - iPYInsertPoint = strlen(strFindString); + if (pystate->iPYInsertPoint > strlen(pystate->strFindString)) + pystate->iPYInsertPoint = strlen(pystate->strFindString); } -INPUT_RETURN_VALUE PYGetCandWords(SEARCH_MODE mode) +INPUT_RETURN_VALUE PYGetCandWords(void* arg) { int iVal; + FcitxPinyinState *pystate = (FcitxPinyinState*) arg; + FcitxInputState *input = &pystate->owner->input; - if (findMap.iMode == PARSE_ERROR) { - SetMessageCount(&messageDown, 0); - iCandPageCount = 0; - iCandWordCount = 0; + /* update preedit string */ + int i; + SetMessageCount(input->msgPreedit, 0); + if (pystate->iPYSelected) { + Messages* messageUp = input->msgPreedit; + AddMessageAtLast(input->msgPreedit, MSG_OTHER, ""); + for (i = 0; i < pystate->iPYSelected; i++) + MessageConcat(messageUp, GetMessageCount(messageUp) - 1, pystate->pySelected[i].strHZ); + } + + for (i = 0; i < pystate->findMap.iHZCount; i++) { + AddMessageAtLast(input->msgPreedit, MSG_CODE, "%s", pystate->findMap.strPYParsed[i]); + if (i < pystate->findMap.iHZCount - 1) + MessageConcat(input->msgPreedit, GetMessageCount(input->msgPreedit) - 1, " "); + } + if (pystate->findMap.iMode == PARSE_ERROR) { + CleanInputWindowDown(pystate->owner); return IRV_DISPLAY_MESSAGE; } - if (bIsInLegend) - return PYGetLegendCandWords(mode); - - if (mode == SM_FIRST) { - iCurrentCandPage = 0; - iCandPageCount = 0; - iCandWordCount = 0; - iYCDZ = 0; - - PYResetFlags(); - - //判断是不是要输入常用字或符号 - pCurFreq = pyFreq->next; - for (iVal = 0; iVal < iPYFreqCount; iVal++) { - if (!strcmp(strFindString, pCurFreq->strPY)) - break; - pCurFreq = pCurFreq->next; - } - - if (fc.bPYCreateAuto) - PYCreateAuto(); - } else { - if (!iCandPageCount) - return IRV_TO_PROCESS; - - if (mode == SM_NEXT) { - if (iCurrentCandPage == iCandPageCount) - return IRV_DO_NOTHING; + if (input->bIsInRemind) + return PYGetRemindCandWords(pystate); - iCurrentCandPage++; - } else { - if (!iCurrentCandPage) - return IRV_DO_NOTHING; + CandidateWordSetPageSize(input->candList, pystate->owner->config->iMaxCandWord); + CandidateWordSetChoose(input->candList, DIGIT_STR_CHOOSE); - iCurrentCandPage--; - //需要将目前的候选词的标志重置 - PYSetCandWordsFlag(False); - } + pystate->iYCDZ = 0; - iCandWordCount = 0; + //判断是不是要输入常用字或符号 + PyFreq* pCurFreq = pystate->pyFreq->next; + for (iVal = 0; iVal < pystate->iPYFreqCount; iVal++) { + if (!strcmp(pystate->strFindString, pCurFreq->strPY)) + break; + pCurFreq = pCurFreq->next; } + /* if it is symbol mode, all word will be take care */ if (!(pCurFreq && pCurFreq->bIsSym)) { - if (!iCurrentCandPage && strPYAuto[0]) { - iCandWordCount = 1; - PYCandWords[0].iWhich = PY_CAND_AUTO; - } - } - - if (mode != SM_PREV) { - PYGetCandWordsForward(); - if (iCurrentCandPage == iCandPageCount) { - if (PYCheckNextCandPage()) - iCandPageCount++; - } - } else - PYGetCandWordsBackward(); - - PYCreateCandString(); - - return IRV_DISPLAY_CANDWORDS; -} - -void PYCreateCandString(void) -{ - char str[3]; - char *pBase = NULL, *pPhrase; - int iVal; - MSG_TYPE iType; - - if (fc.bPointAfterNumber) { - str[1] = '.'; - str[2] = '\0'; - } else - str[1] = '\0'; - SetMessageCount(&messageDown, 0); - - for (iVal = 0; iVal < iCandWordCount; iVal++) { - if (iVal == 9) - str[0] = '0'; - else - str[0] = iVal + 1 + '0'; - AddMessageAtLast(&messageDown, MSG_INDEX, "%s", str); + if (pystate->pyconfig.bPYCreateAuto) + PYCreateAuto(pystate); - iType = MSG_OTHER; - if (PYCandWords[iVal].iWhich == PY_CAND_AUTO) - iType = MSG_TIPS; - if (PYCandWords[iVal].iWhich != PY_CAND_AUTO && iVal == iYCDZ) - iType = MSG_FIRSTCAND; - - AddMessageAtLast(&messageDown, iType, ""); - if (PYCandWords[iVal].iWhich == PY_CAND_AUTO) { - MessageConcatLast(&messageDown, strPYAuto); - } else { - pPhrase = NULL; - switch (PYCandWords[iVal].iWhich) { - case PY_CAND_BASE: //是系统单字 - pBase = PYFAList[PYCandWords[iVal].cand.base.iPYFA].pyBase[PYCandWords[iVal].cand.base.iBase].strHZ; - break; - case PY_CAND_USERPHRASE: //是用户词组 - iType = MSG_USERPHR; - case PY_CAND_SYMPHRASE: //是系统词组 - pBase = PYFAList[PYCandWords[iVal].cand.phrase.iPYFA].pyBase[PYCandWords[iVal].cand.phrase.iBase].strHZ; - pPhrase = PYCandWords[iVal].cand.phrase.phrase->strPhrase; - break; - case PY_CAND_FREQ: //是常用字 - pBase = PYCandWords[iVal].cand.freq.hz->strHZ; - iType = MSG_CODE; - break; - case PY_CAND_SYMBOL: //是特殊符号 - pBase = PYCandWords[iVal].cand.freq.hz->strHZ; - break; - } - MessageConcatLast(&messageDown, pBase); - if (pPhrase) - MessageConcatLast(&messageDown, pPhrase); + if (pystate->strPYAuto[0]) { + CandidateWord candWord; + PYCandWord* pycandword = fcitx_malloc0(sizeof(PYCandWord)); + pycandword->iWhich = PY_CAND_AUTO; + candWord.owner = pystate; + candWord.callback = PYGetCandWord; + candWord.priv = pycandword; + candWord.strWord = strdup(pystate->strPYAuto); + candWord.strExtra = NULL; + CandidateWordAppend(input->candList, &candWord); } - if (iVal != (iCandWordCount - 1)) { - MessageConcatLast(&messageDown, " "); - } + PYGetPhraseCandWords(pystate); + if (pCurFreq) + PYGetFreqCandWords(pystate, pCurFreq); + PYGetBaseCandWords(pystate, pCurFreq); } -} - -void PYGetCandText(int iIndex, char *strText) -{ - char *pBase = NULL, *pPhrase; - - if (PYCandWords[iIndex].iWhich == PY_CAND_AUTO) - strcpy(strText, strPYAuto); - else { - pPhrase = NULL; - - switch (PYCandWords[iIndex].iWhich) { - case PY_CAND_BASE: //是系统单字 - pBase = PYFAList[PYCandWords[iIndex].cand.base.iPYFA].pyBase[PYCandWords[iIndex].cand.base.iBase].strHZ; - break; - case PY_CAND_USERPHRASE: //是用户词组 - case PY_CAND_SYMPHRASE: //是系统词组 - pBase = PYFAList[PYCandWords[iIndex].cand.phrase.iPYFA].pyBase[PYCandWords[iIndex].cand.phrase.iBase].strHZ; - pPhrase = PYCandWords[iIndex].cand.phrase.phrase->strPhrase; - break; - case PY_CAND_FREQ: //是常用字 - pBase = PYCandWords[iIndex].cand.freq.hz->strHZ; - break; - case PY_CAND_SYMBOL: //是特殊符号 - pBase = PYCandWords[iIndex].cand.freq.hz->strHZ; - break; - } - - strcpy(strText, pBase); - if (pPhrase) - strcat(strText, pPhrase); + else + { + PYGetSymCandWords(pystate, pCurFreq); } -} -void PYSetCandWordsFlag(Bool flag) -{ - int i; - - for (i = 0; i < iCandWordCount; i++) - PYSetCandWordFlag(i, flag); -} - -void PYSetCandWordFlag(int iIndex, Bool flag) -{ - switch (PYCandWords[iIndex].iWhich) { - case PY_CAND_BASE: - PYFAList[PYCandWords[iIndex].cand.base.iPYFA].pyBase[PYCandWords[iIndex].cand.base.iBase].flag = flag; - break; - case PY_CAND_SYMPHRASE: - case PY_CAND_USERPHRASE: - PYCandWords[iIndex].cand.phrase.phrase->flag = flag; - break; - case PY_CAND_FREQ: - PYCandWords[iIndex].cand.freq.hz->flag = flag; - case PY_CAND_SYMBOL: - PYCandWords[iIndex].cand.sym.hz->flag = flag; - break; - } + return IRV_DISPLAY_CANDWORDS; } /* * 根据用户的录入自动生成一个汉字组合 * 此处采用的策略是按照使用频率最高的字/词 */ -void PYCreateAuto(void) +void PYCreateAuto(FcitxPinyinState* pystate) { PYCandIndex candPos; int val; @@ -1198,51 +1113,53 @@ PYFA *pPYFA = NULL; char strMap[MAX_WORDS_USER_INPUT * 2 + 1]; int iCount; + PYFA* PYFAList = pystate->PYFAList; + FcitxPinyinConfig* pyconfig = &pystate->pyconfig; - strPYAuto[0] = '\0'; - strPYAutoMap[0] = '\0'; + pystate->strPYAuto[0] = '\0'; + pystate->strPYAutoMap[0] = '\0'; str[2] = '\0'; - if (findMap.iHZCount == 1) + if (pystate->findMap.iHZCount == 1) return; - while (utf8_strlen(strPYAuto) < findMap.iHZCount) { + while (utf8_strlen(pystate->strPYAuto) < pystate->findMap.iHZCount) { phraseSelected = NULL; baseSelected = NULL; - iCount = utf8_strlen(strPYAuto); - str[0] = findMap.strMap[iCount][0]; - str[1] = findMap.strMap[iCount][1]; + iCount = utf8_strlen(pystate->strPYAuto); + str[0] = pystate->findMap.strMap[iCount][0]; + str[1] = pystate->findMap.strMap[iCount][1]; strMap[0] = '\0'; - for (val = iCount + 1; val < findMap.iHZCount; val++) - strcat(strMap, findMap.strMap[val]); + for (val = iCount + 1; val < pystate->findMap.iHZCount; val++) + strcat(strMap, pystate->findMap.strMap[val]); candPos.iPYFA = 0; candPos.iBase = 0; candPos.iPhrase = 0; - if ((findMap.iHZCount - iCount) > 1) { - for (candPos.iPYFA = 0; candPos.iPYFA < iPYFACount; candPos.iPYFA++) { - if (!Cmp2Map(PYFAList[candPos.iPYFA].strMap, str, bSP)) { + if ((pystate->findMap.iHZCount - iCount) > 1) { + for (candPos.iPYFA = 0; candPos.iPYFA < pystate->iPYFACount; candPos.iPYFA++) { + if (!Cmp2Map(pyconfig, PYFAList[candPos.iPYFA].strMap, str, pystate->bSP)) { for (candPos.iBase = 0; candPos.iBase < PYFAList[candPos.iPYFA].iBase; candPos.iBase++) { - phrase = PYFAList[candPos.iPYFA].pyBase[candPos.iBase].userPhrase->next; + phrase = USER_PHRASE_NEXT(PYFAList[candPos.iPYFA].pyBase[candPos.iBase].userPhrase); for (candPos.iPhrase = 0; - candPos.iPhrase < PYFAList[candPos.iPYFA].pyBase[candPos.iBase].iUserPhrase; candPos.iPhrase++) { - val = CmpMap(phrase->strMap, strMap, &iMatchedLength, bSP); - if (!val && iMatchedLength == (findMap.iHZCount - 1) * 2) + candPos.iPhrase < PYFAList[candPos.iPYFA].pyBase[candPos.iBase].iUserPhrase; candPos.iPhrase++) { + val = CmpMap(pyconfig, phrase->strMap, strMap, &iMatchedLength, pystate->bSP); + if (!val && iMatchedLength == (pystate->findMap.iHZCount - 1) * 2) return; if (!val || (val && (strlen(phrase->strMap) == iMatchedLength))) { if (!phraseSelected) { baseSelected = &(PYFAList[candPos.iPYFA].pyBase[candPos.iBase]); pPYFA = &PYFAList[candPos.iPYFA]; phraseSelected = phrase; - } else if (strlen(phrase->strMap) <= (findMap.iHZCount - 1) * 2) { + } else if (strlen(phrase->strMap) <= (pystate->findMap.iHZCount - 1) * 2) { if (strlen(phrase->strMap) == strlen(phraseSelected->strMap)) { //先看词频,如果词频一样,再最近优先 if ((phrase->iHit > phraseSelected->iHit) - || ((phrase->iHit == phraseSelected->iHit) - && (phrase->iIndex > phraseSelected->iIndex))) { + || ((phrase->iHit == phraseSelected->iHit) + && (phrase->iIndex > phraseSelected->iIndex))) { baseSelected = &(PYFAList[candPos.iPYFA].pyBase[candPos.iBase]); pPYFA = &PYFAList[candPos.iPYFA]; phraseSelected = phrase; @@ -1254,618 +1171,337 @@ } } } - phrase = phrase->next; + phrase = USER_PHRASE_NEXT(phrase); } } } } - for (candPos.iPYFA = 0; candPos.iPYFA < iPYFACount; candPos.iPYFA++) { - if (!Cmp2Map(PYFAList[candPos.iPYFA].strMap, str, bSP)) { + for (candPos.iPYFA = 0; candPos.iPYFA < pystate->iPYFACount; candPos.iPYFA++) { + if (!Cmp2Map(pyconfig, PYFAList[candPos.iPYFA].strMap, str, pystate->bSP)) { for (candPos.iBase = 0; candPos.iBase < PYFAList[candPos.iPYFA].iBase; candPos.iBase++) { for (candPos.iPhrase = 0; - candPos.iPhrase < PYFAList[candPos.iPYFA].pyBase[candPos.iBase].iPhrase; candPos.iPhrase++) { - val = - CmpMap(PYFAList[candPos.iPYFA].pyBase[candPos.iBase].phrase[candPos.iPhrase].strMap, - strMap, &iMatchedLength, bSP); - if (!val && iMatchedLength == (findMap.iHZCount - 1) * 2) - return; - if (!val || (val && (strlen(PYFAList[candPos.iPYFA].pyBase[candPos.iBase].phrase[candPos.iPhrase].strMap) - == iMatchedLength))) { - if (!phraseSelected) { - baseSelected = &(PYFAList[candPos.iPYFA].pyBase[candPos.iBase]); - pPYFA = &PYFAList[candPos.iPYFA]; - phraseSelected = &(PYFAList[candPos.iPYFA].pyBase[candPos.iBase].phrase[candPos.iPhrase]); - } else if (strlen(PYFAList[candPos.iPYFA].pyBase[candPos.iBase].phrase[candPos.iPhrase].strMap) - <= (findMap.iHZCount - 1) * 2) { - if (strlen(PYFAList[candPos.iPYFA].pyBase[candPos.iBase].phrase[candPos.iPhrase].strMap) + candPos.iPhrase < PYFAList[candPos.iPYFA].pyBase[candPos.iBase].iPhrase; candPos.iPhrase++) { + val = + CmpMap(pyconfig, PYFAList[candPos.iPYFA].pyBase[candPos.iBase].phrase[candPos.iPhrase].strMap, + strMap, &iMatchedLength, pystate->bSP); + if (!val && iMatchedLength == (pystate->findMap.iHZCount - 1) * 2) + return; + if (!val || (val && (strlen(PYFAList[candPos.iPYFA].pyBase[candPos.iBase].phrase[candPos.iPhrase].strMap) + == iMatchedLength))) { + if (!phraseSelected) { + baseSelected = &(PYFAList[candPos.iPYFA].pyBase[candPos.iBase]); + pPYFA = &PYFAList[candPos.iPYFA]; + phraseSelected = &(PYFAList[candPos.iPYFA].pyBase[candPos.iBase].phrase[candPos.iPhrase]); + } else if (strlen(PYFAList[candPos.iPYFA].pyBase[candPos.iBase].phrase[candPos.iPhrase].strMap) + <= (pystate->findMap.iHZCount - 1) * 2) { + if (strlen(PYFAList[candPos.iPYFA].pyBase[candPos.iBase].phrase[candPos.iPhrase].strMap) == strlen(phraseSelected->strMap)) { - //先看词频,如果词频一样,再最近优先 - if ((PYFAList[candPos.iPYFA].pyBase[candPos.iBase].phrase[candPos.iPhrase].iHit > - phraseSelected->iHit) + //先看词频,如果词频一样,再最近优先 + if ((PYFAList[candPos.iPYFA].pyBase[candPos.iBase].phrase[candPos.iPhrase].iHit > + phraseSelected->iHit) || ((PYFAList[candPos.iPYFA].pyBase[candPos.iBase].phrase[candPos.iPhrase].iHit == phraseSelected->iHit) && (PYFAList[candPos.iPYFA].pyBase[candPos.iBase].phrase[candPos.iPhrase].iIndex > phraseSelected->iIndex))) { - baseSelected = &(PYFAList[candPos.iPYFA].pyBase[candPos.iBase]); - pPYFA = &PYFAList[candPos.iPYFA]; - phraseSelected = &(PYFAList[candPos.iPYFA].pyBase[candPos.iBase].phrase[candPos.iPhrase]); - } - } else if (strlen(PYFAList[candPos.iPYFA].pyBase[candPos.iBase].phrase[candPos.iPhrase].strMap) - > strlen(phraseSelected->strMap)) { baseSelected = &(PYFAList[candPos.iPYFA].pyBase[candPos.iBase]); pPYFA = &PYFAList[candPos.iPYFA]; phraseSelected = &(PYFAList[candPos.iPYFA].pyBase[candPos.iBase].phrase[candPos.iPhrase]); } + } else if (strlen(PYFAList[candPos.iPYFA].pyBase[candPos.iBase].phrase[candPos.iPhrase].strMap) + > strlen(phraseSelected->strMap)) { + baseSelected = &(PYFAList[candPos.iPYFA].pyBase[candPos.iBase]); + pPYFA = &PYFAList[candPos.iPYFA]; + phraseSelected = &(PYFAList[candPos.iPYFA].pyBase[candPos.iBase].phrase[candPos.iPhrase]); } + } } } } } } if (baseSelected) { - strcat(strPYAuto, baseSelected->strHZ); - strcat(strPYAutoMap, pPYFA->strMap); - strcat(strPYAuto, phraseSelected->strPhrase); - strcat(strPYAutoMap, phraseSelected->strMap); + strcat(pystate->strPYAuto, baseSelected->strHZ); + strcat(pystate->strPYAutoMap, pPYFA->strMap); + strcat(pystate->strPYAuto, phraseSelected->strPhrase); + strcat(pystate->strPYAutoMap, phraseSelected->strMap); } } if (!baseSelected) { val = -1; baseSelected = NULL; - for (candPos.iPYFA = 0; candPos.iPYFA < iPYFACount; candPos.iPYFA++) { - if (!Cmp2Map(PYFAList[candPos.iPYFA].strMap, str, bSP)) { + for (candPos.iPYFA = 0; candPos.iPYFA < pystate->iPYFACount; candPos.iPYFA++) { + if (!Cmp2Map(pyconfig, PYFAList[candPos.iPYFA].strMap, str, pystate->bSP)) { for (candPos.iBase = 0; candPos.iBase < PYFAList[candPos.iPYFA].iBase; candPos.iBase++) { - if ((int) + if ((int) (PYFAList[candPos.iPYFA].pyBase[candPos.iBase].iHit) > val) { - val = PYFAList[candPos.iPYFA].pyBase[candPos.iBase].iHit; - baseSelected = &(PYFAList[candPos.iPYFA].pyBase[candPos.iBase]); - pPYFA = &PYFAList[candPos.iPYFA]; - } + val = PYFAList[candPos.iPYFA].pyBase[candPos.iBase].iHit; + baseSelected = &(PYFAList[candPos.iPYFA].pyBase[candPos.iBase]); + pPYFA = &PYFAList[candPos.iPYFA]; + } } } } if (baseSelected) { - strcat(strPYAuto, baseSelected->strHZ); - strcat(strPYAutoMap, pPYFA->strMap); + strcat(pystate->strPYAuto, baseSelected->strHZ); + strcat(pystate->strPYAutoMap, pPYFA->strMap); } else { //出错了 - strPYAuto[0] = '\0'; + pystate->strPYAuto[0] = '\0'; return; } } } } -char *PYGetCandWord(int iIndex) +INPUT_RETURN_VALUE PYGetCandWord(void* arg, CandidateWord* candWord) { + FcitxPinyinState *pystate = (FcitxPinyinState* )arg; char *pBase = NULL, *pPhrase = NULL; char *pBaseMap = NULL, *pPhraseMap = NULL; uint *pIndex = NULL; - Bool bAddNewPhrase = True; + boolean bAddNewPhrase = true; int i; char strHZString[MAX_WORDS_USER_INPUT * UTF8_MAX_LENGTH + 1]; int iLen; + FcitxInputState* input = &pystate->owner->input; + PYFA* PYFAList = pystate->PYFAList; + FcitxInstance* instance = pystate->owner; + PYCandWord* pycandWord = candWord->priv; - if (!iCandWordCount) - return NULL; - if (iIndex > (iCandWordCount - 1)) - iIndex = iCandWordCount - 1; - switch (PYCandWords[iIndex].iWhich) { + switch (pycandWord->iWhich) { case PY_CAND_AUTO: - pBase = strPYAuto; - pBaseMap = strPYAutoMap; - bAddNewPhrase = fc.bPYSaveAutoAsPhrase; + pBase = pystate->strPYAuto; + pBaseMap = pystate->strPYAutoMap; + bAddNewPhrase = pystate->pyconfig.bPYSaveAutoAsPhrase; break; case PY_CAND_BASE: //是系统单字 - pBase = PYFAList[PYCandWords[iIndex].cand.base.iPYFA].pyBase[PYCandWords[iIndex].cand.base.iBase].strHZ; - pBaseMap = PYFAList[PYCandWords[iIndex].cand.base.iPYFA].strMap; - pIndex = &(PYFAList[PYCandWords[iIndex].cand.base.iPYFA].pyBase[PYCandWords[iIndex].cand.base.iBase].iIndex); - PYFAList[PYCandWords[iIndex].cand.base.iPYFA].pyBase[PYCandWords[iIndex].cand.base.iBase].iHit++; - iOrderCount++; + pBase = PYFAList[pycandWord->cand.base.iPYFA].pyBase[pycandWord->cand.base.iBase].strHZ; + pBaseMap = PYFAList[pycandWord->cand.base.iPYFA].strMap; + pIndex = &(PYFAList[pycandWord->cand.base.iPYFA].pyBase[pycandWord->cand.base.iBase].iIndex); + PYFAList[pycandWord->cand.base.iPYFA].pyBase[pycandWord->cand.base.iBase].iHit++; + pystate->iOrderCount++; break; - case PY_CAND_SYMPHRASE: //是系统词组 + case PY_CAND_SYSPHRASE: //是系统词组 case PY_CAND_USERPHRASE: //是用户词组 - pBase = PYFAList[PYCandWords[iIndex].cand.phrase.iPYFA].pyBase[PYCandWords[iIndex].cand.phrase.iBase].strHZ; - pBaseMap = PYFAList[PYCandWords[iIndex].cand.phrase.iPYFA].strMap; - pPhrase = PYCandWords[iIndex].cand.phrase.phrase->strPhrase; - pPhraseMap = PYCandWords[iIndex].cand.phrase.phrase->strMap; - pIndex = &(PYCandWords[iIndex].cand.phrase.phrase->iIndex); - PYCandWords[iIndex].cand.phrase.phrase->iHit++; - iOrderCount++; + pBase = PYFAList[pycandWord->cand.phrase.iPYFA].pyBase[pycandWord->cand.phrase.iBase].strHZ; + pBaseMap = PYFAList[pycandWord->cand.phrase.iPYFA].strMap; + pPhrase = pycandWord->cand.phrase.phrase->strPhrase; + pPhraseMap = pycandWord->cand.phrase.phrase->strMap; + pIndex = &(pycandWord->cand.phrase.phrase->iIndex); + pycandWord->cand.phrase.phrase->iHit++; + pystate->iOrderCount++; break; case PY_CAND_FREQ: //是常用字 - pBase = PYCandWords[iIndex].cand.freq.hz->strHZ; - pBaseMap = PYFAList[PYCandWords[iIndex].cand.freq.hz->iPYFA].strMap; - PYCandWords[iIndex].cand.freq.hz->iHit++; - pIndex = &(PYCandWords[iIndex].cand.freq.hz->iIndex); - iNewFreqCount++; + pBase = pycandWord->cand.freq.hz->strHZ; + pBaseMap = PYFAList[pycandWord->cand.freq.hz->iPYFA].strMap; + pycandWord->cand.freq.hz->iHit++; + pIndex = &(pycandWord->cand.freq.hz->iIndex); + pystate->iNewFreqCount++; break; case PY_CAND_SYMBOL: //是特殊符号 - pBase = PYCandWords[iIndex].cand.freq.hz->strHZ; - bAddNewPhrase = False; + pBase = pycandWord->cand.freq.hz->strHZ; + bAddNewPhrase = false; break; + case PY_CAND_REMIND: + { + strcpy(pystate->strPYRemindSource, pycandWord->cand.remind.phrase->strPhrase + pycandWord->cand.remind.iLength); + strcpy(pystate->strPYRemindMap, pycandWord->cand.remind.phrase->strMap + pycandWord->cand.remind.iLength); + pBase = pystate->strPYRemindSource; + strcpy(GetOutputString(input), pBase); + CandidateWordReset(input->candList); + INPUT_RETURN_VALUE retVal = PYGetRemindCandWords(pystate); + if (retVal == IRV_DISPLAY_CANDWORDS) + return IRV_COMMIT_STRING_REMIND; + else + return IRV_COMMIT_STRING; + } } - if (pIndex && (*pIndex != iCounter)) - *pIndex = ++iCounter; - if (iOrderCount >= AUTOSAVE_ORDER_COUNT) { - SavePYIndex(); - iOrderCount = 0; - } - if (iNewFreqCount >= AUTOSAVE_FREQ_COUNT) { - SavePYFreq(); - iNewFreqCount = 0; + if (pIndex && (*pIndex != pystate->iCounter)) + *pIndex = ++pystate->iCounter; + if (pystate->iOrderCount >= AUTOSAVE_ORDER_COUNT) { + SavePYIndex(pystate); + pystate->iOrderCount = 0; + } + if (pystate->iNewFreqCount >= AUTOSAVE_FREQ_COUNT) { + SavePYFreq(pystate); + pystate->iNewFreqCount = 0; } - SetMessageText(&messageDown, messageDown.msgCount, pBase); - if (pPhrase) - MessageConcat(&messageDown, messageDown.msgCount, pPhrase); strcpy(strHZString, pBase); if (pPhrase) strcat(strHZString, pPhrase); iLen = utf8_strlen(strHZString); - if (iLen == findMap.iHZCount || PYCandWords[iIndex].iWhich == PY_CAND_SYMBOL) { - strPYAuto[0] = '\0'; - for (iLen = 0; iLen < iPYSelected; iLen++) - strcat(strPYAuto, pySelected[iLen].strHZ); - strcat(strPYAuto, strHZString); - ParsePY(strCodeInput, &findMap, PY_PARSE_INPUT_USER, bSP); + if (iLen == pystate->findMap.iHZCount || pycandWord->iWhich == PY_CAND_SYMBOL) { + pystate->strPYAuto[0] = '\0'; + for (iLen = 0; iLen < pystate->iPYSelected; iLen++) + strcat(pystate->strPYAuto, pystate->pySelected[iLen].strHZ); + strcat(pystate->strPYAuto, strHZString); + ParsePY(&pystate->pyconfig, input->strCodeInput, &pystate->findMap, PY_PARSE_INPUT_USER, pystate->bSP); strHZString[0] = '\0'; - for (i = 0; i < iPYSelected; i++) - strcat(strHZString, pySelected[i].strMap); + for (i = 0; i < pystate->iPYSelected; i++) + strcat(strHZString, pystate->pySelected[i].strMap); if (pBaseMap) strcat(strHZString, pBaseMap); if (pPhraseMap) strcat(strHZString, pPhraseMap); - if (bAddNewPhrase && (utf8_strlen(strPYAuto) <= (MAX_PY_PHRASE_LENGTH))) - PYAddUserPhrase(strPYAuto, strHZString); - SetMessageCount(&messageDown, 0); - SetMessageCount(&messageUp, 0); - if (fcitxProfile.bUseLegend) { - strcpy(strPYLegendSource, strPYAuto); - strcpy(strPYLegendMap, strHZString); - PYGetLegendCandWords(SM_FIRST); - iPYInsertPoint = 0; - strFindString[0] = '\0'; + if (bAddNewPhrase && (utf8_strlen(pystate->strPYAuto) <= (MAX_PY_PHRASE_LENGTH))) + PYAddUserPhrase(pystate, pystate->strPYAuto, strHZString); + CleanInputWindow(instance); + strcpy(GetOutputString(&instance->input), pystate->strPYAuto); + if (UseRemind(instance->profile)) { + strcpy(pystate->strPYRemindSource, pystate->strPYAuto); + strcpy(pystate->strPYRemindMap, strHZString); + PYGetRemindCandWords(pystate); + pystate->iPYInsertPoint = 0; + pystate->strFindString[0] = '\0'; + return IRV_COMMIT_STRING_REMIND; } - return strPYAuto; + return IRV_COMMIT_STRING; } //此时进入自造词状态 - pySelected[iPYSelected].strPY[0] = '\0'; - pySelected[iPYSelected].strMap[0] = '\0'; + pystate->pySelected[pystate->iPYSelected].strPY[0] = '\0'; + pystate->pySelected[pystate->iPYSelected].strMap[0] = '\0'; for (i = 0; i < iLen; i++) - strcat(pySelected[iPYSelected].strPY, findMap.strPYParsed[i]); + strcat(pystate->pySelected[pystate->iPYSelected].strPY, pystate->findMap.strPYParsed[i]); if (pBaseMap) - strcat(pySelected[iPYSelected].strMap, pBaseMap); + strcat(pystate->pySelected[pystate->iPYSelected].strMap, pBaseMap); if (pPhraseMap) - strcat(pySelected[iPYSelected].strMap, pPhraseMap); - strcpy(pySelected[iPYSelected].strHZ, strHZString); - iPYSelected++; - strFindString[0] = '\0'; - for (; i < findMap.iHZCount; i++) - strcat(strFindString, findMap.strPYParsed[i]); - DoPYInput(0,0,-1); - iPYInsertPoint = strlen(strFindString); - return NULL; -} - -void PYGetCandWordsForward(void) -{ - if (pCurFreq && pCurFreq->bIsSym) - PYGetSymCandWords(SM_NEXT); - else { - PYGetPhraseCandWords(SM_NEXT); - if (pCurFreq) - PYGetFreqCandWords(SM_NEXT); - } - - if (!(pCurFreq && pCurFreq->bIsSym)) - PYGetBaseCandWords(SM_NEXT); -} - -void PYGetCandWordsBackward(void) -{ - if (pCurFreq && pCurFreq->bIsSym) - PYGetSymCandWords(SM_PREV); - else { - PYGetFreqCandWords(SM_PREV); - PYGetBaseCandWords(SM_PREV); - if (iCandWordCount == fc.iMaxCandWord) - return; - PYGetPhraseCandWords(SM_PREV); - } -} - -Bool PYCheckNextCandPage(void) -{ - PYCandIndex candPos; - int val; - int iMatchedLength; - char str[3]; - PyPhrase *phrase; - char strMap[MAX_WORDS_USER_INPUT * 2 + 1]; - HZ *hz; - - str[0] = findMap.strMap[0][0]; - str[1] = findMap.strMap[0][1]; - str[2] = '\0'; - strMap[0] = '\0'; - if (pCurFreq && pCurFreq->bIsSym) { - hz = pCurFreq->HZList->next; - for (val = 0; val < pCurFreq->iCount; val++) { - if (!hz->flag) - return True; - hz = hz->next; - } - } else { - if (findMap.iHZCount > 1) { - for (val = 1; val < findMap.iHZCount; val++) - strcat(strMap, findMap.strMap[val]); - for (candPos.iPYFA = 0; candPos.iPYFA < iPYFACount; candPos.iPYFA++) { - if (!Cmp2Map(PYFAList[candPos.iPYFA].strMap, str, bSP)) { - for (candPos.iBase = 0; candPos.iBase < PYFAList[candPos.iPYFA].iBase; candPos.iBase++) { - phrase = PYFAList[candPos.iPYFA].pyBase[candPos.iBase].userPhrase->next; - for (candPos.iPhrase = 0; - candPos.iPhrase < PYFAList[candPos.iPYFA].pyBase[candPos.iBase].iUserPhrase; candPos.iPhrase++) { - val = CmpMap(phrase->strMap, strMap, &iMatchedLength, bSP); - if (!val || (val && (strlen(phrase->strMap) == iMatchedLength))) { - if (!phrase->flag) - return True; - } - phrase = phrase->next; - } - } - } - } - - for (candPos.iPYFA = 0; candPos.iPYFA < iPYFACount; candPos.iPYFA++) { - if (!Cmp2Map(PYFAList[candPos.iPYFA].strMap, str, bSP)) { - for (candPos.iBase = 0; candPos.iBase < PYFAList[candPos.iPYFA].iBase; candPos.iBase++) { - for (candPos.iPhrase = 0; - candPos.iPhrase < PYFAList[candPos.iPYFA].pyBase[candPos.iBase].iPhrase; candPos.iPhrase++) { - if (!PYFAList[candPos.iPYFA].pyBase[candPos.iBase].phrase[candPos.iPhrase].flag) { - val = - CmpMap(PYFAList[candPos.iPYFA].pyBase[candPos.iBase].phrase[candPos.iPhrase].strMap, - strMap, &iMatchedLength, bSP); - if (!val || (val && (strlen(PYFAList[candPos.iPYFA].pyBase[candPos.iBase].phrase[candPos.iPhrase].strMap) - == iMatchedLength))) { - return True; - } - } - } - } - } - } - } - - if (pCurFreq) { - hz = pCurFreq->HZList->next; - for (val = 0; val < pCurFreq->iCount; val++) { - if (!hz->flag) - return True; - hz = hz->next; - } - } - - for (candPos.iPYFA = 0; candPos.iPYFA < iPYFACount; candPos.iPYFA++) { - if (!Cmp2Map(PYFAList[candPos.iPYFA].strMap, str, bSP)) { - for (candPos.iBase = 0; candPos.iBase < PYFAList[candPos.iPYFA].iBase; candPos.iBase++) { - if (!PYFAList[candPos.iPYFA].pyBase[candPos.iBase].flag) { - return True; - } - } - } - } - } + strcat(pystate->pySelected[pystate->iPYSelected].strMap, pPhraseMap); + strcpy(pystate->pySelected[pystate->iPYSelected].strHZ, strHZString); + pystate->iPYSelected++; + pystate->strFindString[0] = '\0'; + for (; i < pystate->findMap.iHZCount; i++) + strcat(pystate->strFindString, pystate->findMap.strPYParsed[i]); + DoPYInput(pystate, 0, 0); + pystate->iPYInsertPoint = strlen(pystate->strFindString); - return False; + CalculateCursorPosition(pystate); + return IRV_DISPLAY_CANDWORDS; } -void PYGetPhraseCandWords(SEARCH_MODE mode) +void PYGetPhraseCandWords(FcitxPinyinState* pystate) { PYCandIndex candPos; char str[3]; int val, iMatchedLength; char strMap[MAX_WORDS_USER_INPUT * 2 + 1]; PyPhrase *phrase; + PYFA* PYFAList = pystate->PYFAList; + FcitxPinyinConfig* pyconfig = &pystate->pyconfig; - if (findMap.iHZCount == 1) + if (pystate->findMap.iHZCount == 1) return; - str[0] = findMap.strMap[0][0]; - str[1] = findMap.strMap[0][1]; + + UT_array candtemp; + utarray_init(&candtemp, &pycand_icd); + + str[0] = pystate->findMap.strMap[0][0]; + str[1] = pystate->findMap.strMap[0][1]; str[2] = '\0'; strMap[0] = '\0'; - for (val = 1; val < findMap.iHZCount; val++) - strcat(strMap, findMap.strMap[val]); - for (candPos.iPYFA = 0; candPos.iPYFA < iPYFACount; candPos.iPYFA++) { - if (!Cmp2Map(PYFAList[candPos.iPYFA].strMap, str, bSP)) { + for (val = 1; val < pystate->findMap.iHZCount; val++) + strcat(strMap, pystate->findMap.strMap[val]); + for (candPos.iPYFA = 0; candPos.iPYFA < pystate->iPYFACount; candPos.iPYFA++) { + if (!Cmp2Map(pyconfig, PYFAList[candPos.iPYFA].strMap, str, pystate->bSP)) { for (candPos.iBase = 0; candPos.iBase < PYFAList[candPos.iPYFA].iBase; candPos.iBase++) { - phrase = PYFAList[candPos.iPYFA].pyBase[candPos.iBase].userPhrase->next; - for (candPos.iPhrase = 0; - candPos.iPhrase < PYFAList[candPos.iPYFA].pyBase[candPos.iBase].iUserPhrase; candPos.iPhrase++) { - val = CmpMap(phrase->strMap, strMap, &iMatchedLength, bSP); - if (!val || (val && (strlen(phrase->strMap) == iMatchedLength))) { - if ((mode != SM_PREV && !phrase->flag) - || (mode == SM_PREV && phrase->flag)) { - if (!PYAddPhraseCandWord(candPos, phrase, mode, False)) - goto _end; - } - } - - phrase = phrase->next; + phrase = USER_PHRASE_NEXT(PYFAList[candPos.iPYFA].pyBase[candPos.iBase].userPhrase); + for (candPos.iPhrase = 0; + candPos.iPhrase < PYFAList[candPos.iPYFA].pyBase[candPos.iBase].iUserPhrase; candPos.iPhrase++) { + val = CmpMap(pyconfig, phrase->strMap, strMap, &iMatchedLength, pystate->bSP); + if (!val || (val && (strlen(phrase->strMap) == iMatchedLength))) { + PYCandWord* pycandWord = fcitx_malloc0(sizeof(PYCandWord)); + PYAddPhraseCandWord(pystate, candPos, phrase, false, pycandWord); + utarray_push_back(&candtemp, &pycandWord); } + + phrase = USER_PHRASE_NEXT(phrase); + } } } } - for (candPos.iPYFA = 0; candPos.iPYFA < iPYFACount; candPos.iPYFA++) { - if (!Cmp2Map(PYFAList[candPos.iPYFA].strMap, str, bSP)) { + for (candPos.iPYFA = 0; candPos.iPYFA < pystate->iPYFACount; candPos.iPYFA++) { + if (!Cmp2Map(pyconfig, PYFAList[candPos.iPYFA].strMap, str, pystate->bSP)) { for (candPos.iBase = 0; candPos.iBase < PYFAList[candPos.iPYFA].iBase; candPos.iBase++) { - for (candPos.iPhrase = 0; candPos.iPhrase < PYFAList[candPos.iPYFA].pyBase[candPos.iBase].iPhrase; candPos.iPhrase++) { - val = - CmpMap(PYFAList[candPos.iPYFA].pyBase[candPos.iBase].phrase[candPos.iPhrase].strMap, - strMap, &iMatchedLength, bSP); - if (!val - || (val - && - (strlen - (PYFAList[candPos.iPYFA].pyBase[candPos.iBase].phrase[candPos.iPhrase].strMap) == iMatchedLength))) { - if ((mode != SM_PREV && !PYFAList[candPos.iPYFA].pyBase[candPos.iBase].phrase[candPos.iPhrase].flag) - || (mode == SM_PREV && PYFAList[candPos.iPYFA].pyBase[candPos.iBase].phrase[candPos.iPhrase].flag)) { - if (!PYAddPhraseCandWord - (candPos, &(PYFAList[candPos.iPYFA].pyBase[candPos.iBase].phrase[candPos.iPhrase]), mode, True)) - goto _end; - } - } + for (candPos.iPhrase = 0; candPos.iPhrase < PYFAList[candPos.iPYFA].pyBase[candPos.iBase].iPhrase; candPos.iPhrase++) + { + val = CmpMap( + pyconfig, + PYFAList[candPos.iPYFA].pyBase[candPos.iBase].phrase[candPos.iPhrase].strMap, + strMap, + &iMatchedLength, + pystate->bSP); + if (!val || + (val && (strlen (PYFAList[candPos.iPYFA].pyBase[candPos.iBase].phrase[candPos.iPhrase].strMap) == iMatchedLength))) + { + PYCandWord* pycandWord = fcitx_malloc0(sizeof(PYCandWord)); + PYAddPhraseCandWord(pystate, candPos, &(PYFAList[candPos.iPYFA].pyBase[candPos.iBase].phrase[candPos.iPhrase]), true, pycandWord); + utarray_push_back(&candtemp, &pycandWord); } + } } } } - _end: - PYSetCandWordsFlag(True); + PYCandWordSortContext context; + context.order = pystate->pyconfig.phraseOrder; + context.type = PY_CAND_SYSPHRASE; + context.pystate = pystate; + if (context.order != AD_NO) + utarray_sort_r(&candtemp, PYCandWordCmp, &context); + + PYCandWord** pcand = NULL; + for (pcand = (PYCandWord**) utarray_front(&candtemp); + pcand != NULL; + pcand = (PYCandWord**) utarray_next(&candtemp, pcand)) + { + CandidateWord candWord; + candWord.callback = PYGetCandWord; + candWord.owner = pystate; + candWord.priv = *pcand; + candWord.strExtra = NULL; + candWord.strWord = NULL; + const char* pBase = PYFAList[(*pcand)->cand.phrase.iPYFA].pyBase[(*pcand)->cand.phrase.iBase].strHZ; + const char* pPhrase = (*pcand)->cand.phrase.phrase->strPhrase; + asprintf(&candWord.strWord, "%s%s", pBase, pPhrase); + CandidateWordAppend(pystate->owner->input.candList, &candWord); + } + + utarray_done(&candtemp); } /* * 将一个词加入到候选列表的合适位置中 - * b = True 表示是系统词组,False表示是用户词组 + * b = true 表示是系统词组,false表示是用户词组 */ -Bool PYAddPhraseCandWord(PYCandIndex pos, PyPhrase * phrase, SEARCH_MODE mode, Bool b) +boolean PYAddPhraseCandWord(FcitxPinyinState* pystate, PYCandIndex pos, PyPhrase * phrase, boolean b, PYCandWord* pycandword) { + PYFA* PYFAList = pystate->PYFAList; char str[MAX_WORDS_USER_INPUT * UTF8_MAX_LENGTH + 1]; - int i = 0, j, iStart = 0; strcpy(str, PYFAList[pos.iPYFA].pyBase[pos.iBase].strHZ); strcat(str, phrase->strPhrase); - if (strPYAuto[0]) { - if (!strcmp(strPYAuto, str)) { - phrase->flag = 1; - return True; + if (pystate->strPYAuto[0]) { + if (strcmp(pystate->strPYAuto, str) == 0) { + return false; } } - switch (fc.phraseOrder) { - case AD_NO: - if (mode == SM_PREV) { - for (i = (iCandWordCount - 1); i >= 0; i--) { - if (PYCandWords[i].iWhich == PY_CAND_AUTO) { - iStart = i + 1; - i++; - break; - } else if (PYCandWords[i].iWhich == PY_CAND_USERPHRASE || PYCandWords[i].iWhich == PY_CAND_SYMPHRASE) { - if (strlen(PYCandWords[i].cand.phrase.phrase->strPhrase) >= strlen(phrase->strPhrase)) { - i++; - break; - } - } - } - - if (i < 0) { - if (iCandWordCount == fc.iMaxCandWord) - return False; - else - i = 0; - } else if (iCandWordCount == fc.iMaxCandWord) - i--; - } else { - for (i = 0; i < iCandWordCount; i++) { - if (PYCandWords[i].iWhich == PY_CAND_USERPHRASE || PYCandWords[i].iWhich == PY_CAND_SYMPHRASE) - if (strlen(PYCandWords[i].cand.phrase.phrase->strPhrase) < strlen(phrase->strPhrase)) - break; - } - if (i > fc.iMaxCandWord) - return False; - } - break; - //下面两部分可以放在一起×××××××××××××××××××××××××××××××××××××××××× - case AD_FAST: - if (mode == SM_PREV) { - for (i = (iCandWordCount - 1); i >= 0; i--) { - if (PYCandWords[i].iWhich == PY_CAND_AUTO) { - iStart = ++i; - break; - } else if (PYCandWords[i].iWhich == PY_CAND_USERPHRASE || PYCandWords[i].iWhich == PY_CAND_SYMPHRASE) { - if (strlen(phrase->strPhrase) < strlen(PYCandWords[i].cand.phrase.phrase->strPhrase)) { - i++; - break; - } else if (strlen(PYCandWords[i].cand.phrase.phrase->strPhrase) == strlen(phrase->strPhrase)) { - if (phrase->iIndex < PYCandWords[i].cand.phrase.phrase->iIndex) { - i++; - break; - } - if (phrase->iIndex == PYCandWords[i].cand.phrase.phrase->iIndex) { - if (phrase->iHit <= PYCandWords[i].cand.phrase.phrase->iHit) { - i++; - break; - } - } - } - } - } - - if (i < 0) { - if (iCandWordCount == fc.iMaxCandWord) - return True; - i = 0; - } else if (iCandWordCount == fc.iMaxCandWord) - i--; - } else { - for (i = 0; i < iCandWordCount; i++) { - if (PYCandWords[i].iWhich == PY_CAND_USERPHRASE || PYCandWords[i].iWhich == PY_CAND_SYMPHRASE) { - if (strlen(PYCandWords[i].cand.phrase.phrase->strPhrase) < strlen(phrase->strPhrase)) - break; - else if (strlen(PYCandWords[i].cand.phrase.phrase->strPhrase) == strlen(phrase->strPhrase)) { - if (phrase->iIndex > PYCandWords[i].cand.phrase.phrase->iIndex) - break; - if (phrase->iIndex == PYCandWords[i].cand.phrase.phrase->iIndex) { - if (phrase->iHit > PYCandWords[i].cand.phrase.phrase->iHit) - break; - } - } - } - } - - if (i == fc.iMaxCandWord) - return True; - } - break; - case AD_FREQ: - if (mode == SM_PREV) { - for (i = (iCandWordCount - 1); i >= 0; i--) { - if (PYCandWords[i].iWhich == PY_CAND_AUTO) { - iStart = ++i; - break; - } else if (PYCandWords[i].iWhich == PY_CAND_USERPHRASE || PYCandWords[i].iWhich == PY_CAND_SYMPHRASE) { - if (strlen(PYCandWords[i].cand.phrase.phrase->strPhrase) < strlen(phrase->strPhrase)) { - i++; - break; - } else if (strlen(PYCandWords[i].cand.phrase.phrase->strPhrase) == strlen(phrase->strPhrase)) { - if (phrase->iHit < PYCandWords[i].cand.phrase.phrase->iHit) { - i++; - break; - } - if (phrase->iHit == PYCandWords[i].cand.phrase.phrase->iHit) { - if (phrase->iIndex <= PYCandWords[i].cand.phrase.phrase->iIndex) { - i++; - break; - } - } - } - } - } - - if (i < 0) { - if (iCandWordCount == fc.iMaxCandWord) - return True; - i = 0; - } else if (iCandWordCount == fc.iMaxCandWord) - i--; - } else { - for (i = 0; i < iCandWordCount; i++) { - if (PYCandWords[i].iWhich == PY_CAND_USERPHRASE || PYCandWords[i].iWhich == PY_CAND_SYMPHRASE) { - if (strlen(PYCandWords[i].cand.phrase.phrase->strPhrase) < strlen(phrase->strPhrase)) - break; - else if (strlen(PYCandWords[i].cand.phrase.phrase->strPhrase) == strlen(phrase->strPhrase)) { - if (phrase->iHit > PYCandWords[i].cand.phrase.phrase->iHit) - break; - if (phrase->iHit == PYCandWords[i].cand.phrase.phrase->iHit) { - if (phrase->iIndex > PYCandWords[i].cand.phrase.phrase->iIndex) - break; - } - } - } - } - if (i == fc.iMaxCandWord) - return True; - } - break; - } - //××××××××××××××××××××××××××××××××××××××××××××××××××××× - - if (mode == SM_PREV) { - if (iCandWordCount == fc.iMaxCandWord) { - for (j = iStart; j < i; j++) { - PYCandWords[j].iWhich = PYCandWords[j + 1].iWhich; - switch (PYCandWords[j].iWhich) { - case PY_CAND_BASE: - PYCandWords[j].cand.base.iPYFA = PYCandWords[j + 1].cand.base.iPYFA; - PYCandWords[j].cand.base.iBase = PYCandWords[j + 1].cand.base.iBase; - break; - case PY_CAND_SYMPHRASE: - case PY_CAND_USERPHRASE: - PYCandWords[j].cand.phrase.phrase = PYCandWords[j + 1].cand.phrase.phrase; - PYCandWords[j].cand.phrase.iPYFA = PYCandWords[j + 1].cand.phrase.iPYFA; - PYCandWords[j].cand.phrase.iBase = PYCandWords[j + 1].cand.phrase.iBase; - break; - case PY_CAND_FREQ: - PYCandWords[j].cand.freq.hz = PYCandWords[j + 1].cand.freq.hz; - PYCandWords[j].cand.freq.strPY = PYCandWords[j + 1].cand.freq.strPY; - break; - } - } - } else { - //插在i的前面 - for (j = iCandWordCount; j > i; j--) { - PYCandWords[j].iWhich = PYCandWords[j - 1].iWhich; - switch (PYCandWords[j].iWhich) { - case PY_CAND_BASE: - PYCandWords[j].cand.base.iPYFA = PYCandWords[j - 1].cand.base.iPYFA; - PYCandWords[j].cand.base.iBase = PYCandWords[j - 1].cand.base.iBase; - break; - case PY_CAND_SYMPHRASE: - case PY_CAND_USERPHRASE: - PYCandWords[j].cand.phrase.phrase = PYCandWords[j - 1].cand.phrase.phrase; - PYCandWords[j].cand.phrase.iPYFA = PYCandWords[j - 1].cand.phrase.iPYFA; - PYCandWords[j].cand.phrase.iBase = PYCandWords[j - 1].cand.phrase.iBase; - break; - case PY_CAND_FREQ: - PYCandWords[j].cand.freq.hz = PYCandWords[j - 1].cand.freq.hz; - PYCandWords[j].cand.freq.strPY = PYCandWords[j - 1].cand.freq.strPY; - break; - } - } - } - } else { - j = iCandWordCount; - if (iCandWordCount == fc.iMaxCandWord) - j--; - for (; j > i; j--) { - PYCandWords[j].iWhich = PYCandWords[j - 1].iWhich; - switch (PYCandWords[j].iWhich) { - case PY_CAND_BASE: - PYCandWords[j].cand.base.iPYFA = PYCandWords[j - 1].cand.base.iPYFA; - PYCandWords[j].cand.base.iBase = PYCandWords[j - 1].cand.base.iBase; - break; - case PY_CAND_SYMPHRASE: - case PY_CAND_USERPHRASE: - PYCandWords[j].cand.phrase.phrase = PYCandWords[j - 1].cand.phrase.phrase; - PYCandWords[j].cand.phrase.iPYFA = PYCandWords[j - 1].cand.phrase.iPYFA; - PYCandWords[j].cand.phrase.iBase = PYCandWords[j - 1].cand.phrase.iBase; - break; - case PY_CAND_FREQ: - PYCandWords[j].cand.freq.hz = PYCandWords[j - 1].cand.freq.hz; - PYCandWords[j].cand.freq.strPY = PYCandWords[j - 1].cand.freq.strPY; - break; - } - } - } - - PYCandWords[i].iWhich = (b) ? PY_CAND_SYMPHRASE : PY_CAND_USERPHRASE; - PYCandWords[i].cand.phrase.phrase = phrase; - PYCandWords[i].cand.phrase.iPYFA = pos.iPYFA; - PYCandWords[i].cand.phrase.iBase = pos.iBase; - if (iCandWordCount != fc.iMaxCandWord) - iCandWordCount++; - return True; -} + pycandword->iWhich = (b) ? PY_CAND_SYSPHRASE : PY_CAND_USERPHRASE; + pycandword->cand.phrase.phrase = phrase; + pycandword->cand.phrase.iPYFA = pos.iPYFA; + pycandword->cand.phrase.iBase = pos.iBase; + return true; +} //******************************************** -void PYGetSymCandWords(SEARCH_MODE mode) +void PYGetSymCandWords(FcitxPinyinState* pystate, PyFreq* pCurFreq) { int i; HZ *hz; @@ -1873,497 +1509,198 @@ if (pCurFreq && pCurFreq->bIsSym) { hz = pCurFreq->HZList->next; for (i = 0; i < pCurFreq->iCount; i++) { - if ((mode != SM_PREV && !hz->flag) - || (mode == SM_PREV && hz->flag)) { - if (!PYAddSymCandWord(hz, mode)) - break; - } + PYCandWord* pycandWord = fcitx_malloc0(sizeof(PYCandWord)); + PYAddSymCandWord(hz, pycandWord); + CandidateWord candWord; + candWord.callback = PYGetCandWord; + candWord.owner = pystate; + candWord.priv = pycandWord; + candWord.strExtra = NULL; + candWord.strWord = strdup(hz->strHZ); + CandidateWordAppend(pystate->owner->input.candList, &candWord); hz = hz->next; } } - - PYSetCandWordsFlag(True); } /* * 将一个符号加入到候选列表的合适位置中 * 符号不需进行频率调整 */ -Bool PYAddSymCandWord(HZ * hz, SEARCH_MODE mode) +void PYAddSymCandWord(HZ * hz, PYCandWord* pycandWord) { - int i, j; - - if (mode == SM_PREV) { - if (iCandWordCount == fc.iMaxCandWord) { - i = iCandWordCount - 1; - for (j = 0; j < i; j++) - PYCandWords[j].cand.sym.hz = PYCandWords[j + 1].cand.sym.hz; - } else - i = iCandWordCount; - } else { - if (iCandWordCount == fc.iMaxCandWord) - return False; - i = iCandWordCount; - for (j = iCandWordCount - 1; j > i; j--) - PYCandWords[j].cand.sym.hz = PYCandWords[j - 1].cand.sym.hz; - } - - PYCandWords[i].iWhich = PY_CAND_SYMBOL; - PYCandWords[i].cand.sym.hz = hz; - if (iCandWordCount != fc.iMaxCandWord) - iCandWordCount++; - return True; + pycandWord->iWhich = PY_CAND_SYMBOL; + pycandWord->cand.sym.hz = hz; } //***************************************************** -void PYGetBaseCandWords(SEARCH_MODE mode) +void PYGetBaseCandWords(FcitxPinyinState* pystate, PyFreq* pCurFreq) { PYCandIndex candPos = { 0, 0, 0 }; char str[3]; + PYFA* PYFAList = pystate->PYFAList; + FcitxPinyinConfig* pyconfig = &pystate->pyconfig; + UT_array candtemp; + utarray_init(&candtemp, &pycand_icd); - str[0] = findMap.strMap[0][0]; - str[1] = findMap.strMap[0][1]; + str[0] = pystate->findMap.strMap[0][0]; + str[1] = pystate->findMap.strMap[0][1]; str[2] = '\0'; - for (candPos.iPYFA = 0; candPos.iPYFA < iPYFACount; candPos.iPYFA++) { - if (!Cmp2Map(PYFAList[candPos.iPYFA].strMap, str, bSP)) { + for (candPos.iPYFA = 0; candPos.iPYFA < pystate->iPYFACount; candPos.iPYFA++) { + if (!Cmp2Map(pyconfig, PYFAList[candPos.iPYFA].strMap, str, pystate->bSP)) { for (candPos.iBase = 0; candPos.iBase < PYFAList[candPos.iPYFA].iBase; candPos.iBase++) { - if ((mode != SM_PREV && !PYFAList[candPos.iPYFA].pyBase[candPos.iBase].flag) - || (mode == SM_PREV && PYFAList[candPos.iPYFA].pyBase[candPos.iBase].flag)) { - if (!PYIsInFreq(PYFAList[candPos.iPYFA].pyBase[candPos.iBase].strHZ)) { - if (!PYAddBaseCandWord(candPos, mode)) - goto _end; - } - } + if (!PYIsInFreq(pCurFreq, PYFAList[candPos.iPYFA].pyBase[candPos.iBase].strHZ)) { + PYCandWord* pycandWord = fcitx_malloc0(sizeof(PYCandWord)); + PYAddBaseCandWord(candPos, pycandWord); + utarray_push_back(&candtemp, &pycandWord); + } } } } - _end: - PYSetCandWordsFlag(True); + PYCandWordSortContext context; + context.order = pystate->pyconfig.baseOrder; + context.type = PY_CAND_BASE; + context.pystate = pystate; + if (context.order != AD_NO) + utarray_sort_r(&candtemp, PYCandWordCmp, &context); + + PYCandWord** pcand = NULL; + for (pcand = (PYCandWord**) utarray_front(&candtemp); + pcand != NULL; + pcand = (PYCandWord**) utarray_next(&candtemp, pcand)) + { + CandidateWord candWord; + candWord.callback = PYGetCandWord; + candWord.owner = pystate; + candWord.priv = *pcand; + candWord.strExtra = NULL; + candWord.strWord = strdup(PYFAList[(*pcand)->cand.base.iPYFA].pyBase[(*pcand)->cand.base.iBase].strHZ); + + CandidateWordAppend(pystate->owner->input.candList, &candWord); + } + + utarray_done(&candtemp); } /* * 将一个字加入到候选列表的合适位置中 */ -Bool PYAddBaseCandWord(PYCandIndex pos, SEARCH_MODE mode) +void PYAddBaseCandWord(PYCandIndex pos, PYCandWord* pycandWord) { - int i = 0, j; - int iStart = 0; - - switch (fc.baseOrder) { - case AD_NO: - if (mode == SM_PREV) { - if (iCandWordCount == fc.iMaxCandWord) - i = iCandWordCount - 1; - else - i = iCandWordCount; - } else { - if (iCandWordCount == fc.iMaxCandWord) - return False; - i = iCandWordCount; - } - break; - case AD_FAST: - if (mode == SM_PREV) { - for (i = (iCandWordCount - 1); i >= 0; i--) { - if (PYCandWords[i].iWhich == PY_CAND_AUTO || PYCandWords[i].iWhich == PY_CAND_FREQ) { - iStart = i + 1; - i++; - break; - } else if (PYCandWords[i].iWhich == PY_CAND_BASE) { - if (PYFAList[PYCandWords[i].cand.base.iPYFA].pyBase - [PYCandWords[i].cand.base.iBase].iIndex > PYFAList[pos.iPYFA].pyBase[pos.iBase].iIndex) { - i++; - break; - } else - if (PYFAList[PYCandWords[i].cand.base.iPYFA].pyBase - [PYCandWords[i].cand.base.iBase].iIndex == PYFAList[pos.iPYFA].pyBase[pos.iBase].iIndex) { - if (PYFAList[PYCandWords[i].cand.base.iPYFA].pyBase - [PYCandWords[i].cand.base.iBase].iHit >= PYFAList[pos.iPYFA].pyBase[pos.iBase].iHit) { - i++; - break; - } - } - } - } - - if (i < 0) { - if (iCandWordCount == fc.iMaxCandWord) - return True; - i = 0; - } else if (iCandWordCount == fc.iMaxCandWord) - i--; - } else { - for (i = 0; i < iCandWordCount; i++) { - if (PYCandWords[i].iWhich == PY_CAND_BASE) { - if (PYFAList[PYCandWords[i].cand.base.iPYFA].pyBase - [PYCandWords[i].cand.base.iBase].iIndex < PYFAList[pos.iPYFA].pyBase[pos.iBase].iIndex) - break; - else if (PYFAList[PYCandWords[i].cand.base.iPYFA].pyBase[PYCandWords[i].cand.base.iBase].iIndex == - PYFAList[pos.iPYFA].pyBase[pos.iBase].iIndex) { - if (PYFAList[PYCandWords[i].cand.base.iPYFA].pyBase[PYCandWords[i].cand.base.iBase].iHit < - PYFAList[pos.iPYFA].pyBase[pos.iBase].iHit) - break; - } - } - } - - if (i == fc.iMaxCandWord) - return True; - } - - break; - case AD_FREQ: - if (mode == SM_PREV) { - for (i = (iCandWordCount - 1); i >= 0; i--) { - if (PYCandWords[i].iWhich == PY_CAND_AUTO || PYCandWords[i].iWhich == PY_CAND_FREQ) { - iStart = i + 1; - i++; - break; - } else if (PYCandWords[i].iWhich == PY_CAND_BASE) { - if (PYFAList[PYCandWords[i].cand.base.iPYFA].pyBase - [PYCandWords[i].cand.base.iBase].iHit > PYFAList[pos.iPYFA].pyBase[pos.iBase].iHit) { - i++; - break; - } else - if (PYFAList[PYCandWords[i].cand.base.iPYFA].pyBase - [PYCandWords[i].cand.base.iBase].iHit == PYFAList[pos.iPYFA].pyBase[pos.iBase].iHit) { - if (PYFAList[PYCandWords[i].cand.base.iPYFA].pyBase - [PYCandWords[i].cand.base.iBase].iIndex >= PYFAList[pos.iPYFA].pyBase[pos.iBase].iIndex) { - i++; - break; - } - } - } - } - - if (i < 0) { - if (iCandWordCount == fc.iMaxCandWord) - return True; - i = 0; - } else if (iCandWordCount == fc.iMaxCandWord) - i--; - } else { - for (i = 0; i < iCandWordCount; i++) { - if (PYCandWords[i].iWhich == PY_CAND_BASE) { - if (PYFAList[PYCandWords[i].cand.base.iPYFA].pyBase - [PYCandWords[i].cand.base.iBase].iHit < PYFAList[pos.iPYFA].pyBase[pos.iBase].iHit) - break; - else if (PYFAList[PYCandWords[i].cand.base.iPYFA].pyBase[PYCandWords[i].cand.base.iBase].iHit == - PYFAList[pos.iPYFA].pyBase[pos.iBase].iHit) { - if (PYFAList[PYCandWords[i].cand.base.iPYFA].pyBase[PYCandWords[i].cand.base.iBase].iIndex < - PYFAList[pos.iPYFA].pyBase[pos.iBase].iIndex) - break; - } - } - } - if (i == fc.iMaxCandWord) - return True; - } - break; - } - - if (mode == SM_PREV) { - if (iCandWordCount == fc.iMaxCandWord) { - for (j = iStart; j < i; j++) { - PYCandWords[j].iWhich = PYCandWords[j + 1].iWhich; - switch (PYCandWords[j].iWhich) { - case PY_CAND_BASE: - PYCandWords[j].cand.base.iPYFA = PYCandWords[j + 1].cand.base.iPYFA; - PYCandWords[j].cand.base.iBase = PYCandWords[j + 1].cand.base.iBase; - break; - case PY_CAND_SYMPHRASE: - case PY_CAND_USERPHRASE: - PYCandWords[j].cand.phrase.phrase = PYCandWords[j + 1].cand.phrase.phrase; - PYCandWords[j].cand.phrase.iPYFA = PYCandWords[j + 1].cand.phrase.iPYFA; - PYCandWords[j].cand.phrase.iBase = PYCandWords[j + 1].cand.phrase.iBase; - break; - case PY_CAND_FREQ: - PYCandWords[j].cand.freq.hz = PYCandWords[j + 1].cand.freq.hz; - PYCandWords[j].cand.freq.strPY = PYCandWords[j + 1].cand.freq.strPY; - break; - } - } - } else { - for (j = iCandWordCount; j > i; j--) { - PYCandWords[j].iWhich = PYCandWords[j - 1].iWhich; - switch (PYCandWords[j].iWhich) { - case PY_CAND_BASE: - PYCandWords[j].cand.base.iPYFA = PYCandWords[j - 1].cand.base.iPYFA; - PYCandWords[j].cand.base.iBase = PYCandWords[j - 1].cand.base.iBase; - break; - case PY_CAND_SYMPHRASE: - case PY_CAND_USERPHRASE: - PYCandWords[j].cand.phrase.phrase = PYCandWords[j - 1].cand.phrase.phrase; - PYCandWords[j].cand.phrase.iPYFA = PYCandWords[j - 1].cand.phrase.iPYFA; - PYCandWords[j].cand.phrase.iBase = PYCandWords[j - 1].cand.phrase.iBase; - break; - case PY_CAND_FREQ: - PYCandWords[j].cand.freq.hz = PYCandWords[j - 1].cand.freq.hz; - PYCandWords[j].cand.freq.strPY = PYCandWords[j - 1].cand.freq.strPY; - break; - } - } - } - } else { - j = iCandWordCount; - if (iCandWordCount == fc.iMaxCandWord) - j--; - for (; j > i; j--) { - PYCandWords[j].iWhich = PYCandWords[j - 1].iWhich; - switch (PYCandWords[j].iWhich) { - case PY_CAND_BASE: - PYCandWords[j].cand.base.iPYFA = PYCandWords[j - 1].cand.base.iPYFA; - PYCandWords[j].cand.base.iBase = PYCandWords[j - 1].cand.base.iBase; - break; - case PY_CAND_SYMPHRASE: - case PY_CAND_USERPHRASE: - PYCandWords[j].cand.phrase.phrase = PYCandWords[j - 1].cand.phrase.phrase; - PYCandWords[j].cand.phrase.iPYFA = PYCandWords[j - 1].cand.phrase.iPYFA; - PYCandWords[j].cand.phrase.iBase = PYCandWords[j - 1].cand.phrase.iBase; - break; - case PY_CAND_FREQ: - PYCandWords[j].cand.freq.hz = PYCandWords[j - 1].cand.freq.hz; - PYCandWords[j].cand.freq.strPY = PYCandWords[j - 1].cand.freq.strPY; - break; - } - } - } - - PYCandWords[i].iWhich = PY_CAND_BASE; - PYCandWords[i].cand.base.iPYFA = pos.iPYFA; - PYCandWords[i].cand.base.iBase = pos.iBase; - if (iCandWordCount != fc.iMaxCandWord) - iCandWordCount++; - return True; + pycandWord->iWhich = PY_CAND_BASE; + pycandWord->cand.base.iPYFA = pos.iPYFA; + pycandWord->cand.base.iBase = pos.iBase; } -void PYGetFreqCandWords(SEARCH_MODE mode) +void PYGetFreqCandWords(FcitxPinyinState* pystate, PyFreq* pCurFreq) { int i; HZ *hz; + UT_array candtemp; + utarray_init(&candtemp, &pycand_icd); if (pCurFreq && !pCurFreq->bIsSym) { hz = pCurFreq->HZList->next; for (i = 0; i < pCurFreq->iCount; i++) { - if ((mode != SM_PREV && !hz->flag) - || (mode == SM_PREV && hz->flag)) { - if (!PYAddFreqCandWord(hz, pCurFreq->strPY, mode)) - break; - } + PYCandWord* pycandWord = fcitx_malloc0(sizeof(PYCandWord)); + PYAddFreqCandWord(pCurFreq, hz, pCurFreq->strPY, pycandWord); + utarray_push_back(&candtemp, &pycandWord); hz = hz->next; } } - PYSetCandWordsFlag(True); + PYCandWordSortContext context; + context.order = pystate->pyconfig.freqOrder; + context.type = PY_CAND_FREQ; + context.pystate = pystate; + if (context.order != AD_NO) + utarray_sort_r(&candtemp, PYCandWordCmp, &context); + + PYCandWord** pcand = NULL; + for (pcand = (PYCandWord**) utarray_front(&candtemp); + pcand != NULL; + pcand = (PYCandWord**) utarray_next(&candtemp, pcand)) + { + CandidateWord candWord; + candWord.callback = PYGetCandWord; + candWord.owner = pystate; + candWord.priv = *pcand; + candWord.strExtra = NULL; + candWord.strWord = strdup((*pcand)->cand.freq.hz->strHZ); + + CandidateWordAppend(pystate->owner->input.candList, &candWord); + } + + utarray_done(&candtemp); } /* * 将一个常用字加入到候选列表的合适位置中 */ -Bool PYAddFreqCandWord(HZ * hz, char *strPY, SEARCH_MODE mode) +void PYAddFreqCandWord(PyFreq* pyFreq, HZ * hz, char *strPY, PYCandWord* pycandWord) { - int i = 0, j; - int iStart = 0; - - switch (fc.freqOrder) { - case AD_NO: - if (mode == SM_PREV) { - if (iCandWordCount == fc.iMaxCandWord) - i = iCandWordCount - 1; - } else { - if (iCandWordCount == fc.iMaxCandWord) - return False; - i = iCandWordCount; - } - break; - case AD_FAST: - if (mode == SM_PREV) { - for (i = (iCandWordCount - 1); i >= 0; i--) { - if (PYCandWords[i].iWhich == PY_CAND_AUTO) { - iStart = i + 1; - i++; - break; - } else if (PYCandWords[i].iWhich == PY_CAND_FREQ && (hz->iIndex <= PYCandWords[i].cand.freq.hz->iIndex)) { - i++; - break; - } - } - - if (i < 0) { - if (iCandWordCount == fc.iMaxCandWord) - return True; - i = 0; - } else if (iCandWordCount == fc.iMaxCandWord) - i--; - } else { - for (i = 0; i < iCandWordCount; i++) { - if (PYCandWords[i].iWhich == PY_CAND_FREQ && (hz->iIndex > PYCandWords[i].cand.freq.hz->iIndex)) - break; - } - if (i == fc.iMaxCandWord) - return True; - } - break; - case AD_FREQ: - if (mode == SM_PREV) { - for (i = (iCandWordCount - 1); i >= 0; i--) { - if (PYCandWords[i].iWhich == PY_CAND_AUTO) { - iStart = i + 1; - i++; - break; - } else if (PYCandWords[i].iWhich == PY_CAND_FREQ && (hz->iHit <= PYCandWords[i].cand.freq.hz->iHit)) { - i++; - break; - } - } - - if (i < 0) { - if (iCandWordCount == fc.iMaxCandWord) - return True; - i = 0; - } else if (iCandWordCount == fc.iMaxCandWord) - i--; - } else { - for (i = 0; i < iCandWordCount; i++) { - if (PYCandWords[i].iWhich == PY_CAND_FREQ && (hz->iHit > PYCandWords[i].cand.freq.hz->iHit)) - break; - } - if (i == fc.iMaxCandWord) - return True; - } - break; - } - - if (mode == SM_PREV) { - if (iCandWordCount == fc.iMaxCandWord) { - for (j = iStart; j < i; j++) { - PYCandWords[j].iWhich = PYCandWords[j + 1].iWhich; - switch (PYCandWords[j].iWhich) { - case PY_CAND_BASE: - PYCandWords[j].cand.base.iPYFA = PYCandWords[j + 1].cand.base.iPYFA; - PYCandWords[j].cand.base.iBase = PYCandWords[j + 1].cand.base.iBase; - break; - case PY_CAND_SYMPHRASE: - case PY_CAND_USERPHRASE: - PYCandWords[j].cand.phrase.phrase = PYCandWords[j + 1].cand.phrase.phrase; - PYCandWords[j].cand.phrase.iPYFA = PYCandWords[j + 1].cand.phrase.iPYFA; - PYCandWords[j].cand.phrase.iBase = PYCandWords[j + 1].cand.phrase.iBase; - break; - case PY_CAND_FREQ: - PYCandWords[j].cand.freq.hz = PYCandWords[j + 1].cand.freq.hz; - PYCandWords[j].cand.freq.strPY = PYCandWords[j + 1].cand.freq.strPY; - break; - } - } - } else { - for (j = iCandWordCount; j > i; j--) { - PYCandWords[j].iWhich = PYCandWords[j - 1].iWhich; - switch (PYCandWords[j].iWhich) { - case PY_CAND_BASE: - PYCandWords[j].cand.base.iPYFA = PYCandWords[j - 1].cand.base.iPYFA; - PYCandWords[j].cand.base.iBase = PYCandWords[j - 1].cand.base.iBase; - break; - case PY_CAND_SYMPHRASE: - case PY_CAND_USERPHRASE: - PYCandWords[j].cand.phrase.phrase = PYCandWords[j - 1].cand.phrase.phrase; - PYCandWords[j].cand.phrase.iPYFA = PYCandWords[j - 1].cand.phrase.iPYFA; - PYCandWords[j].cand.phrase.iBase = PYCandWords[j - 1].cand.phrase.iBase; - break; - case PY_CAND_FREQ: - PYCandWords[j].cand.freq.hz = PYCandWords[j - 1].cand.freq.hz; - PYCandWords[j].cand.freq.strPY = PYCandWords[j - 1].cand.freq.strPY; - break; - } - } - } - } else { - j = iCandWordCount; - if (iCandWordCount == fc.iMaxCandWord) - j--; - for (; j > i; j--) { - PYCandWords[j].iWhich = PYCandWords[j - 1].iWhich; - switch (PYCandWords[j].iWhich) { - case PY_CAND_BASE: - PYCandWords[j].cand.base.iPYFA = PYCandWords[j - 1].cand.base.iPYFA; - PYCandWords[j].cand.base.iBase = PYCandWords[j - 1].cand.base.iBase; - break; - case PY_CAND_SYMPHRASE: - case PY_CAND_USERPHRASE: - PYCandWords[j].cand.phrase.phrase = PYCandWords[j - 1].cand.phrase.phrase; - PYCandWords[j].cand.phrase.iPYFA = PYCandWords[j - 1].cand.phrase.iPYFA; - PYCandWords[j].cand.phrase.iBase = PYCandWords[j - 1].cand.phrase.iBase; - break; - case PY_CAND_FREQ: - PYCandWords[j].cand.freq.hz = PYCandWords[j - 1].cand.freq.hz; - PYCandWords[j].cand.freq.strPY = PYCandWords[j - 1].cand.freq.strPY; - break; - } - } - } - - PYCandWords[i].iWhich = PY_CAND_FREQ; - PYCandWords[i].cand.freq.hz = hz; - PYCandWords[i].cand.freq.strPY = strPY; - if (iCandWordCount != fc.iMaxCandWord) - iCandWordCount++; - return True; + pycandWord->iWhich = PY_CAND_FREQ; + pycandWord->cand.freq.hz = hz; + pycandWord->cand.freq.strPY = strPY; + pycandWord->cand.freq.pyFreq = pyFreq; } /* * 将一个词组保存到用户词组库中 - * 返回True表示是新词组 + * 返回true表示是新词组 */ -Bool PYAddUserPhrase(char *phrase, char *map) +boolean PYAddUserPhrase(FcitxPinyinState* pystate, char *phrase, char *map) { - PyPhrase *userPhrase, *newPhrase, *temp; + PyUsrPhrase *userPhrase, *newPhrase, *temp; char str[UTF8_MAX_LENGTH + 1]; int i, j, k, iTemp; int clen; + PYFA* PYFAList = pystate->PYFAList; + FcitxPinyinConfig* pyconfig = &pystate->pyconfig; //如果短于两个汉字,则不能组成词组 if (utf8_strlen(phrase) < 2) - return False; + return false; str[0] = map[0]; str[1] = map[1]; str[2] = '\0'; - i = GetBaseMapIndex(str); + i = GetBaseMapIndex(pystate, str); clen = utf8_char_len(phrase); strncpy(str, phrase, clen); str[clen] = '\0'; - j = GetBaseIndex(i, str);; + j = GetBaseIndex(pystate, i, str);; //判断该词组是否已经在库中 //首先,看它是不是在用户词组库中 userPhrase = PYFAList[i].pyBase[j].userPhrase->next; for (k = 0; k < PYFAList[i].pyBase[j].iUserPhrase; k++) { - if (!strcmp(map + 2, userPhrase->strMap) - && !strcmp(phrase + clen, userPhrase->strPhrase)) - return False; + if (!strcmp(map + 2, userPhrase->phrase.strMap) + && !strcmp(phrase + clen, userPhrase->phrase.strPhrase)) + return false; userPhrase = userPhrase->next; } //然后,看它是不是在系统词组库中 for (k = 0; k < PYFAList[i].pyBase[j].iPhrase; k++) if (!strcmp(map + 2, PYFAList[i].pyBase[j].phrase[k].strMap) - && !strcmp(phrase + clen, PYFAList[i].pyBase[j].phrase[k].strPhrase)) - return False; + && !strcmp(phrase + clen, PYFAList[i].pyBase[j].phrase[k].strPhrase)) + return false; //下面将词组添加到列表中 - newPhrase = (PyPhrase *) malloc(sizeof(PyPhrase)); - newPhrase->strMap = (char *) malloc(sizeof(char) * strlen(map + 2) + 1); - newPhrase->strPhrase = (char *) malloc(sizeof(char) * strlen(phrase + clen) + 1); - strcpy(newPhrase->strMap, map + 2); - strcpy(newPhrase->strPhrase, phrase + clen); - newPhrase->iIndex = ++iCounter; - newPhrase->iHit = 1; - newPhrase->flag = 0; + newPhrase = (PyUsrPhrase *) fcitx_malloc0(sizeof(PyUsrPhrase)); + newPhrase->phrase.strMap = (char *) fcitx_malloc0(sizeof(char) * strlen(map + 2) + 1); + newPhrase->phrase.strPhrase = (char *) fcitx_malloc0(sizeof(char) * strlen(phrase + clen) + 1); + strcpy(newPhrase->phrase.strMap, map + 2); + strcpy(newPhrase->phrase.strPhrase, phrase + clen); + newPhrase->phrase.iIndex = ++pystate->iCounter; + newPhrase->phrase.iHit = 1; temp = PYFAList[i].pyBase[j].userPhrase; userPhrase = PYFAList[i].pyBase[j].userPhrase->next; for (k = 0; k < PYFAList[i].pyBase[j].iUserPhrase; k++) { - if (CmpMap(map + 2, userPhrase->strMap, &iTemp, bSP) > 0) + if (CmpMap(pyconfig, map + 2, userPhrase->phrase.strMap, &iTemp, pystate->bSP) > 0) break; temp = userPhrase; userPhrase = userPhrase->next; @@ -2372,18 +1709,19 @@ newPhrase->next = temp->next; temp->next = newPhrase; PYFAList[i].pyBase[j].iUserPhrase++; - iNewPYPhraseCount++; - if (iNewPYPhraseCount == AUTOSAVE_PHRASE_COUNT) { - SavePYUserPhrase(); - iNewPYPhraseCount = 0; + pystate->iNewPYPhraseCount++; + if (pystate->iNewPYPhraseCount == AUTOSAVE_PHRASE_COUNT) { + SavePYUserPhrase(pystate); + pystate->iNewPYPhraseCount = 0; } - return True; + return true; } -void PYDelUserPhrase(int iPYFA, int iBase, PyPhrase * phrase) +void PYDelUserPhrase(FcitxPinyinState* pystate, int iPYFA, int iBase, PyUsrPhrase * phrase) { - PyPhrase *temp; + PyUsrPhrase *temp; + PYFA* PYFAList = pystate->PYFAList; //首先定位该词组 temp = PYFAList[iPYFA].pyBase[iBase].userPhrase; @@ -2395,23 +1733,23 @@ if (!temp) return; temp->next = phrase->next; - free(phrase->strPhrase); - free(phrase->strMap); + free(phrase->phrase.strPhrase); + free(phrase->phrase.strMap); free(phrase); PYFAList[iPYFA].pyBase[iBase].iUserPhrase--; - iNewPYPhraseCount++; - if (iNewPYPhraseCount == AUTOSAVE_PHRASE_COUNT) { - SavePYUserPhrase(); - iNewPYPhraseCount = 0; + pystate->iNewPYPhraseCount++; + if (pystate->iNewPYPhraseCount == AUTOSAVE_PHRASE_COUNT) { + SavePYUserPhrase(pystate); + pystate->iNewPYPhraseCount = 0; } } -int GetBaseMapIndex(char *strMap) +int GetBaseMapIndex(FcitxPinyinState* pystate, char *strMap) { int i; - for (i = 0; i < iPYFACount; i++) { - if (!strcmp(strMap, PYFAList[i].strMap)) + for (i = 0; i < pystate->iPYFACount; i++) { + if (!strcmp(strMap, pystate->PYFAList[i].strMap)) return i; } return -1; @@ -2420,7 +1758,7 @@ /* * 保存用户词库 */ -void SavePYUserPhrase(void) +void SavePYUserPhrase(FcitxPinyinState* pystate) { int i, j, k; int iTemp; @@ -2428,32 +1766,27 @@ char strPathTemp[PATH_MAX]; FILE *fp; PyPhrase *phrase; + PYFA* PYFAList = pystate->PYFAList; - if (isSavingPYUserPhrase) - return; - - isSavingPYUserPhrase = True; - - fp = GetXDGFileData(TEMP_FILE, "wb", &pstr); + fp = GetXDGFileWithPrefix("pinyin", TEMP_FILE, "wb", &pstr); if (!fp) { - isSavingPYUserPhrase = False; FcitxLog(ERROR, _("Cannot Save User Pinyin Database: %s"), pstr); return; } strcpy(strPathTemp, pstr); free(pstr); - for (i = 0; i < iPYFACount; i++) { + for (i = 0; i < pystate->iPYFACount; i++) { for (j = 0; j < PYFAList[i].iBase; j++) { iTemp = PYFAList[i].pyBase[j].iUserPhrase; if (iTemp) { - INT8 clen; + char clen; fwrite(&i, sizeof(int), 1, fp); clen = strlen(PYFAList[i].pyBase[j].strHZ); - fwrite(&clen, sizeof(INT8), 1, fp); + fwrite(&clen, sizeof(char), 1, fp); fwrite(PYFAList[i].pyBase[j].strHZ, sizeof(char) * clen, 1, fp); fwrite(&iTemp, sizeof(int), 1, fp); - phrase = PYFAList[i].pyBase[j].userPhrase->next; + phrase = USER_PHRASE_NEXT(PYFAList[i].pyBase[j].userPhrase); for (k = 0; k < PYFAList[i].pyBase[j].iUserPhrase; k++) { iTemp = strlen(phrase->strMap); fwrite(&iTemp, sizeof(int), 1, fp); @@ -2467,23 +1800,21 @@ fwrite(&iTemp, sizeof(int), 1, fp); iTemp = phrase->iHit; fwrite(&iTemp, sizeof(int), 1, fp); - phrase = phrase->next; + phrase = USER_PHRASE_NEXT(phrase); } } } } fclose(fp); - fp = GetXDGFileData(PY_USERPHRASE_FILE, NULL, &pstr); + fp = GetXDGFileWithPrefix("pinyin", PY_USERPHRASE_FILE, NULL, &pstr); if (access(pstr, 0)) unlink(pstr); rename(strPathTemp, pstr); free(pstr); - - isSavingPYUserPhrase = False; } -void SavePYFreq(void) +void SavePYFreq(FcitxPinyinState *pystate) { int i, j, k; char *pstr; @@ -2492,13 +1823,8 @@ PyFreq *pPyFreq; HZ *hz; - if (isSavingPYFreq) - return; - - isSavingPYFreq = True; - fp = GetXDGFileData(TEMP_FILE, "wb", &pstr); + fp = GetXDGFileWithPrefix("pinyin", TEMP_FILE, "wb", &pstr); if (!fp) { - isSavingPYFreq = False; FcitxLog(ERROR, _("Cannot Save Frequent word: %s"), pstr); return; } @@ -2506,14 +1832,14 @@ free(pstr); i = 0; - pPyFreq = pyFreq->next; + pPyFreq = pystate->pyFreq->next; while (pPyFreq) { if (!pPyFreq->bIsSym) i++; pPyFreq = pPyFreq->next; } fwrite(&i, sizeof(uint), 1, fp); - pPyFreq = pyFreq->next; + pPyFreq = pystate->pyFreq->next; while (pPyFreq) { if (!pPyFreq->bIsSym) { fwrite(pPyFreq->strPY, sizeof(char) * 11, 1, fp); @@ -2522,8 +1848,8 @@ hz = pPyFreq->HZList->next; for (k = 0; k < pPyFreq->iCount; k++) { - INT8 slen = strlen(hz->strHZ); - fwrite(&slen, sizeof(INT8), 1, fp); + char slen = strlen(hz->strHZ); + fwrite(&slen, sizeof(char), 1, fp); fwrite(hz->strHZ, sizeof(char) * slen, 1, fp); j = hz->iPYFA; @@ -2543,32 +1869,26 @@ fclose(fp); - fp = GetXDGFileData(PY_FREQ_FILE, NULL, &pstr); + fp = GetXDGFileWithPrefix("pinyin", PY_FREQ_FILE, NULL, &pstr); if (access(pstr, 0)) unlink(pstr); rename(strPathTemp, pstr); free(pstr); - - isSavingPYFreq = False; } /* * 保存索引文件 */ -void SavePYIndex(void) +void SavePYIndex(FcitxPinyinState *pystate) { int i, j, k, l; char *pstr; char strPathTemp[PATH_MAX]; FILE *fp; + PYFA* PYFAList = pystate->PYFAList; - if (isSavingPYIndex) - return; - - isSavingPYIndex = True; - fp = GetXDGFileData(TEMP_FILE, "wb", &pstr); + fp = GetXDGFileWithPrefix("pinyin", TEMP_FILE, "wb", &pstr); if (!fp) { - isSavingPYIndex = False; FcitxLog(ERROR, _("Cannot Save Pinyin Index: %s"), pstr); return; } @@ -2576,12 +1896,12 @@ free(pstr); //保存计数器 - fwrite(&iCounter, sizeof(uint), 1, fp); + fwrite(&pystate->iCounter, sizeof(uint), 1, fp); //先保存索引不为0的单字 k = -1; - for (i = 0; i < iPYFACount; i++) { + for (i = 0; i < pystate->iPYFACount; i++) { for (j = 0; j < PYFAList[i].iBase; j++) { - if (PYFAList[i].pyBase[j].iIndex > iOrigCounter) { + if (PYFAList[i].pyBase[j].iIndex > pystate->iOrigCounter) { fwrite(&i, sizeof(int), 1, fp); fwrite(&j, sizeof(int), 1, fp); fwrite(&k, sizeof(int), 1, fp); @@ -2594,10 +1914,10 @@ } //再保存索引不为0的系统词组 - for (i = 0; i < iPYFACount; i++) { + for (i = 0; i < pystate->iPYFACount; i++) { for (j = 0; j < PYFAList[i].iBase; j++) { for (k = 0; k < PYFAList[i].pyBase[j].iPhrase; k++) { - if (PYFAList[i].pyBase[j].phrase[k].iIndex > iOrigCounter) { + if (PYFAList[i].pyBase[j].phrase[k].iIndex > pystate->iOrigCounter) { fwrite(&i, sizeof(int), 1, fp); fwrite(&j, sizeof(int), 1, fp); fwrite(&k, sizeof(int), 1, fp); @@ -2612,14 +1932,12 @@ fclose(fp); - fp = GetXDGFileData(PY_INDEX_FILE, NULL, &pstr); + fp = GetXDGFileWithPrefix("pinyin", PY_INDEX_FILE, NULL, &pstr); if (access(pstr, 0)) unlink(pstr); rename(strPathTemp, pstr); free(pstr); - - isSavingPYIndex = False; } /* @@ -2628,23 +1946,30 @@ * 当用户输入单字时 * 至于常用词的问题暂时不考虑 */ -void PYAddFreq(int iIndex) +void PYAddFreq(FcitxPinyinState* pystate, PYCandWord* pycandWord) { int i; HZ *HZTemp; PyFreq *freq; HZ *hz; + PYFA* PYFAList = pystate->PYFAList; + PyFreq* pCurFreq = pystate->pyFreq->next; + for (i = 0; i < pystate->iPYFreqCount; i++) { + if (!strcmp(pystate->strFindString, pCurFreq->strPY)) + break; + pCurFreq = pCurFreq->next; + } //能到这儿来,就说明候选列表中都是单字 //首先,看这个字是不是已经在常用字表中 i = 1; if (pCurFreq) { i = -1; - if (PYCandWords[iIndex].iWhich != PY_CAND_FREQ) { + if (pycandWord->iWhich != PY_CAND_FREQ) { //说明该字是系统单字 HZTemp = pCurFreq->HZList->next; for (i = 0; i < pCurFreq->iCount; i++) { - if (!strcmp(PYFAList[PYCandWords[iIndex].cand.base.iPYFA].pyBase[PYCandWords[iIndex].cand.base.iBase].strHZ, HZTemp->strHZ)) { + if (!strcmp(PYFAList[pycandWord->cand.base.iPYFA].pyBase[pycandWord->cand.base.iBase].strHZ, HZTemp->strHZ)) { i = -1; break; } @@ -2655,31 +1980,28 @@ //借用i来指示是否需要添加新的常用字 if (i < 0) return; - PYSetCandWordsFlag(False); //需要添加该字,此时该字必然是系统单字 if (!pCurFreq) { - freq = (PyFreq *) malloc(sizeof(PyFreq)); - freq->HZList = (HZ *) malloc(sizeof(HZ)); + freq = (PyFreq *) fcitx_malloc0(sizeof(PyFreq)); + freq->HZList = (HZ *) fcitx_malloc0(sizeof(HZ)); freq->HZList->next = NULL; - strcpy(freq->strPY, strFindString); + strcpy(freq->strPY, pystate->strFindString); freq->next = NULL; freq->iCount = 0; - freq->bIsSym = False; - pCurFreq = pyFreq; - for (i = 0; i < iPYFreqCount; i++) + freq->bIsSym = false; + pCurFreq = pystate->pyFreq; + for (i = 0; i < pystate->iPYFreqCount; i++) pCurFreq = pCurFreq->next; pCurFreq->next = freq; - iPYFreqCount++; + pystate->iPYFreqCount++; pCurFreq = freq; } - HZTemp = (HZ *) malloc(sizeof(HZ)); - memset(HZTemp, 0 , sizeof(HZ)); - strcpy(HZTemp->strHZ, PYFAList[PYCandWords[iIndex].cand.base.iPYFA].pyBase[PYCandWords[iIndex].cand.base.iBase].strHZ); - HZTemp->iPYFA = PYCandWords[iIndex].cand.base.iPYFA; + HZTemp = (HZ *) fcitx_malloc0(sizeof(HZ)); + strcpy(HZTemp->strHZ, PYFAList[pycandWord->cand.base.iPYFA].pyBase[pycandWord->cand.base.iBase].strHZ); + HZTemp->iPYFA = pycandWord->cand.base.iPYFA; HZTemp->iHit = 0; HZTemp->iIndex = 0; - HZTemp->flag = 0; HZTemp->next = NULL; //将HZTemp加到链表尾部 hz = pCurFreq->HZList; @@ -2687,316 +2009,409 @@ hz = hz->next; hz->next = HZTemp; pCurFreq->iCount++; - iNewFreqCount++; - if (iNewFreqCount == AUTOSAVE_FREQ_COUNT) { - SavePYFreq(); - iNewFreqCount = 0; + pystate->iNewFreqCount++; + if (pystate->iNewFreqCount == AUTOSAVE_FREQ_COUNT) { + SavePYFreq(pystate); + pystate->iNewFreqCount = 0; } } /* * 删除拼音常用字表中的某个字 */ -void PYDelFreq(int iIndex) +void PYDelFreq(FcitxPinyinState *pystate, PYCandWord* pycandWord) { HZ *hz; //能到这儿来,就说明候选列表中都是单字 //首先,看这个字是不是已经在常用字表中 - if (PYCandWords[iIndex].iWhich != PY_CAND_FREQ) + if (pycandWord->iWhich != PY_CAND_FREQ) return; - PYSetCandWordsFlag(False); //先找到需要删除单字的位置 - hz = pCurFreq->HZList; - while (hz->next != PYCandWords[iIndex].cand.freq.hz) + hz = pycandWord->cand.freq.pyFreq->HZList; + while (hz->next != pycandWord->cand.freq.hz) hz = hz->next; - hz->next = PYCandWords[iIndex].cand.freq.hz->next; - free(PYCandWords[iIndex].cand.freq.hz); - pCurFreq->iCount--; - iNewFreqCount++; - if (iNewFreqCount == AUTOSAVE_FREQ_COUNT) { - SavePYFreq(); - iNewFreqCount = 0; + hz->next = pycandWord->cand.freq.hz->next; + free(pycandWord->cand.freq.hz); + pycandWord->cand.freq.pyFreq->iCount--; + pystate->iNewFreqCount++; + if (pystate->iNewFreqCount == AUTOSAVE_FREQ_COUNT) { + SavePYFreq(pystate); + pystate->iNewFreqCount = 0; } } /* * 判断一个字是否已经是常用字 */ -Bool PYIsInFreq(char *strHZ) +boolean PYIsInFreq(PyFreq* pCurFreq, char *strHZ) { HZ *hz; int i; if (!pCurFreq || pCurFreq->bIsSym) - return False; + return false; hz = pCurFreq->HZList->next; for (i = 0; i < pCurFreq->iCount; i++) { if (!strcmp(strHZ, hz->strHZ)) - return True; + return true; hz = hz->next; } - return False; + return false; } /* * 取得拼音的联想字串 * 按照频率来定排列顺序 */ -INPUT_RETURN_VALUE PYGetLegendCandWords(SEARCH_MODE mode) +INPUT_RETURN_VALUE PYGetRemindCandWords(void *arg) { int i, j; - char strTemp[2]; PyPhrase *phrase; + FcitxPinyinState* pystate = (FcitxPinyinState*) arg; + GenericConfig *fc = &pystate->owner->config->gconfig; + boolean bDisablePagingInRemind = *(ConfigGetBindValue(fc, "Output", "RemindModeDisablePaging").boolvalue); + FcitxInputState *input = &pystate->owner->input; + PYFA* PYFAList = pystate->PYFAList; - if (!strPYLegendSource[0]) + if (!pystate->strPYRemindSource[0]) return IRV_TO_PROCESS; - if (mode == SM_FIRST) { - iLegendCandPageCount = 0; - iLegendCandWordCount = 0; - iCurrentLegendCandPage = 0; - PYResetFlags(); - pyBaseForLengend = NULL; - for (i = 0; i < iPYFACount; i++) { - if (!strncmp(strPYLegendMap, PYFAList[i].strMap, 2)) { - for (j = 0; j < PYFAList[i].iBase; j++) { - if (!utf8_strncmp(strPYLegendSource, PYFAList[i].pyBase[j].strHZ, 1)) { - pyBaseForLengend = &(PYFAList[i].pyBase[j]); - goto _HIT; - } + + PyBase* pyBaseForRemind = NULL; + for (i = 0; i < pystate->iPYFACount; i++) { + if (!strncmp(pystate->strPYRemindMap, PYFAList[i].strMap, 2)) { + for (j = 0; j < PYFAList[i].iBase; j++) { + if (!utf8_strncmp(pystate->strPYRemindSource, PYFAList[i].pyBase[j].strHZ, 1)) { + pyBaseForRemind = &(PYFAList[i].pyBase[j]); + goto _HIT; } } } - - _HIT: - if (!pyBaseForLengend) - return IRV_TO_PROCESS; - inputWindow.bShowCursor = False; - } else { - if (!iLegendCandPageCount) - return IRV_TO_PROCESS; - if (mode == SM_NEXT) { - if (iCurrentLegendCandPage == iLegendCandPageCount) - return IRV_DO_NOTHING; - iLegendCandWordCount = 0; - iCurrentLegendCandPage++; - } else { - if (!iCurrentLegendCandPage) - return IRV_DO_NOTHING; - iCurrentLegendCandPage--; - PYSetLegendCandWordsFlag(False); - } } - for (i = 0; i < pyBaseForLengend->iPhrase; i++) { - if (utf8_strlen(strPYLegendSource) == 1) { - if (utf8_strlen(pyBaseForLengend->phrase[i].strPhrase) == 1 && ((mode != SM_PREV && !pyBaseForLengend->phrase[i].flag) - || (mode == SM_PREV && pyBaseForLengend->phrase[i].flag))) { - if (!PYAddLengendCandWord(&pyBaseForLengend->phrase[i], mode)) - break; +_HIT: + if (!pyBaseForRemind) + return IRV_TO_PROCESS; + + UT_array candtemp; + utarray_init(&candtemp, &pycand_icd); + + for (i = 0; i < pyBaseForRemind->iPhrase; i++) { + + if (bDisablePagingInRemind && utarray_len(&candtemp) >= CandidateWordGetPageSize(input->candList)) + break; + + if (utf8_strlen(pystate->strPYRemindSource) == 1) { + if (utf8_strlen(pyBaseForRemind->phrase[i].strPhrase) == 1) + { + PYCandWord* pycandWord = fcitx_malloc0(sizeof(PYCandWord)); + PYAddRemindCandWord(pystate, &pyBaseForRemind->phrase[i], pycandWord); + utarray_push_back(&candtemp, &pycandWord); } - } else if (strlen(pyBaseForLengend->phrase[i].strPhrase) == strlen(strPYLegendSource)) { + } else if (strlen(pyBaseForRemind->phrase[i].strPhrase) == strlen(pystate->strPYRemindSource)) { if (!strncmp - (strPYLegendSource + utf8_char_len(strPYLegendSource), - pyBaseForLengend->phrase[i].strPhrase, strlen(strPYLegendSource + utf8_char_len(strPYLegendSource))) - && ((mode != SM_PREV && !pyBaseForLengend->phrase[i].flag) - || (mode == SM_PREV && pyBaseForLengend->phrase[i].flag))) { - if (!PYAddLengendCandWord(&pyBaseForLengend->phrase[i], mode)) - break; + (pystate->strPYRemindSource + utf8_char_len(pystate->strPYRemindSource), + pyBaseForRemind->phrase[i].strPhrase, strlen(pystate->strPYRemindSource + utf8_char_len(pystate->strPYRemindSource))) + ) { + PYCandWord* pycandWord = fcitx_malloc0(sizeof(PYCandWord)); + PYAddRemindCandWord(pystate, &pyBaseForRemind->phrase[i], pycandWord); + utarray_push_back(&candtemp, &pycandWord); } } } - phrase = pyBaseForLengend->userPhrase->next; - for (i = 0; i < pyBaseForLengend->iUserPhrase; i++) { - if (utf8_strlen(strPYLegendSource) == 1) { - if (utf8_strlen(phrase->strPhrase) == 1 && ((mode != SM_PREV && !phrase->flag) - || (mode == SM_PREV && phrase->flag))) { - if (!PYAddLengendCandWord(phrase, mode)) - break; + phrase = &pyBaseForRemind->userPhrase->next->phrase; + for (i = 0; i < pyBaseForRemind->iUserPhrase; i++) { + if (bDisablePagingInRemind && utarray_len(&candtemp) >= CandidateWordGetPageSize(input->candList)) + break; + + if (utf8_strlen(pystate->strPYRemindSource) == 1) { + if (utf8_strlen(phrase->strPhrase) == 1) { + PYCandWord* pycandWord = fcitx_malloc0(sizeof(PYCandWord)); + PYAddRemindCandWord(pystate, phrase, pycandWord); + utarray_push_back(&candtemp, &pycandWord); } - } else if (strlen(phrase->strPhrase) == strlen(strPYLegendSource)) { + } else if (strlen(phrase->strPhrase) == strlen(pystate->strPYRemindSource)) { if (!strncmp - (strPYLegendSource + utf8_char_len(strPYLegendSource), - phrase->strPhrase, strlen(strPYLegendSource + utf8_char_len(strPYLegendSource))) - && ((mode != SM_PREV && !phrase->flag) - || (mode == SM_PREV && phrase->flag))) { - if (!PYAddLengendCandWord(phrase, mode)) - break; + (pystate->strPYRemindSource + utf8_char_len(pystate->strPYRemindSource), + phrase->strPhrase, strlen(pystate->strPYRemindSource + utf8_char_len(pystate->strPYRemindSource)))) { + PYCandWord* pycandWord = fcitx_malloc0(sizeof(PYCandWord)); + PYAddRemindCandWord(pystate, phrase, pycandWord); + utarray_push_back(&candtemp, &pycandWord); } } - phrase = phrase->next; + phrase = USER_PHRASE_NEXT(phrase); } - PYSetLegendCandWordsFlag(True); - if (!fc.bDisablePagingInLegend && mode != SM_PREV && iCurrentLegendCandPage == iLegendCandPageCount) { - for (i = 0; i < pyBaseForLengend->iPhrase; i++) { - if (utf8_strlen(strPYLegendSource) == 1) { - if (utf8_strlen(pyBaseForLengend->phrase[i].strPhrase) == 1 && !pyBaseForLengend->phrase[i].flag) { - iLegendCandPageCount++; - goto _NEWPAGE; - } - } else if (strlen(pyBaseForLengend->phrase[i].strPhrase) == strlen(strPYLegendSource)) { - if (!strncmp - (strPYLegendSource + utf8_char_len(strPYLegendSource), - pyBaseForLengend->phrase[i].strPhrase, strlen(strPYLegendSource + utf8_char_len(strPYLegendSource))) - && (!pyBaseForLengend->phrase[i].flag)) { - iLegendCandPageCount++; - goto _NEWPAGE; - } - } - } + SetMessageCount(input->msgAuxUp, 0); + AddMessageAtLast(input->msgAuxUp, MSG_TIPS, _("Remind: ")); + AddMessageAtLast(input->msgAuxUp, MSG_INPUT, "%s", pystate->strPYRemindSource); - phrase = pyBaseForLengend->userPhrase->next; - for (i = 0; i < pyBaseForLengend->iUserPhrase; i++) { - if (utf8_strlen(strPYLegendSource) == 1) { - if (utf8_strlen(phrase->strPhrase) == 1 && (!phrase->flag)) { - iLegendCandPageCount++; - goto _NEWPAGE; - } - } else if (strlen(pyBaseForLengend->phrase[i].strPhrase) == strlen(strPYLegendSource)) { - if (!strncmp - (strPYLegendSource + utf8_char_len(strPYLegendSource), - phrase->strPhrase, strlen(strPYLegendSource + utf8_char_len(strPYLegendSource))) - && (!phrase->flag)) { - iLegendCandPageCount++; - goto _NEWPAGE; - } - } - phrase = phrase->next; - } - _NEWPAGE: - ; - } + PYCandWordSortContext context; + context.order = AD_NO; + context.type = PY_CAND_REMIND; + context.pystate = pystate; - SetMessageCount(&messageUp, 0); - AddMessageAtLast(&messageUp, MSG_TIPS, "联想:"); - AddMessageAtLast(&messageUp, MSG_INPUT, "%s", strPYLegendSource); - strTemp[1] = '\0'; - SetMessageCount(&messageDown, 0); - for (i = 0; i < iLegendCandWordCount; i++) { - strTemp[0] = i + 1 + '0'; - if (i == 9) - strTemp[0] = '0'; + PYCandWord** pcand = NULL; + for (pcand = (PYCandWord**) utarray_front(&candtemp); + pcand != NULL; + pcand = (PYCandWord**) utarray_next(&candtemp, pcand)) + { + CandidateWord candWord; + candWord.callback = PYGetCandWord; + candWord.owner = pystate; + candWord.priv = *pcand; + candWord.strExtra = NULL; + candWord.strWord = strdup((*pcand)->cand.remind.phrase->strPhrase + (*pcand)->cand.remind.iLength); - AddMessageAtLast(&messageDown, MSG_INDEX, "%s", strTemp); - AddMessageAtLast(&messageDown, - ((i == 0) ? MSG_FIRSTCAND : MSG_OTHER), - "%s", PYLegendCandWords[i].phrase->strPhrase + PYLegendCandWords[i].iLength); - if (i != (iLegendCandWordCount - 1)) { - MessageConcatLast(&messageDown, " "); - } + CandidateWordAppend(pystate->owner->input.candList, &candWord); } - bIsInLegend = (iLegendCandWordCount != 0); + utarray_done(&candtemp); + + input->bIsInRemind = (CandidateWordPageCount(input->candList) != 0); return IRV_DISPLAY_CANDWORDS; } -Bool PYAddLengendCandWord(PyPhrase * phrase, SEARCH_MODE mode) +void PYAddRemindCandWord(FcitxPinyinState* pystate, PyPhrase * phrase, PYCandWord* pycandWord) { - int i = 0, j; + PYRemindCandWord* pyRemindCandWords = &pycandWord->cand.remind; - if (mode == SM_PREV) { - for (i = (iLegendCandWordCount - 1); i >= 0; i--) { - if (PYLegendCandWords[i].phrase->iHit >= phrase->iHit) { - i++; - break; - } - } + pycandWord->iWhich = PY_CAND_REMIND; + pyRemindCandWords->phrase = phrase; + pyRemindCandWords->iLength = strlen(pystate->strPYRemindSource) - utf8_char_len(pystate->strPYRemindSource); +} - if (i < 0) { - if (iLegendCandWordCount == fc.iMaxCandWord) - return True; - i = 0; - } else if (iLegendCandWordCount == fc.iMaxCandWord) - i--; - } else { - for (i = 0; i < iLegendCandWordCount; i++) { - if (PYLegendCandWords[i].phrase->iHit < phrase->iHit) - break; - } - if (i == fc.iMaxCandWord) - return True; - } +void PYGetPYByHZ(FcitxPinyinState*pystate, char *strHZ, char *strPY) +{ + int i, j; + char str_PY[MAX_PY_LENGTH + 1]; + PYFA* PYFAList = pystate->PYFAList; - if (mode == SM_PREV) { - if (iLegendCandWordCount == fc.iMaxCandWord) { - for (j = 0; j < i; j++) { - PYLegendCandWords[j].phrase = PYLegendCandWords[j + 1].phrase; - PYLegendCandWords[j].iLength = PYLegendCandWords[j + 1].iLength; - } - } else { - for (j = iLegendCandWordCount; j > i; j--) { - PYLegendCandWords[j].phrase = PYLegendCandWords[j - 1].phrase; - PYLegendCandWords[j].iLength = PYLegendCandWords[j - 1].iLength; + strPY[0] = '\0'; + for (i = pystate->iPYFACount - 1; i >= 0; i--) { + if (MapToPY(PYFAList[i].strMap, str_PY)) { + for (j = 0; j < PYFAList[i].iBase; j++) { + if (!strcmp(PYFAList[i].pyBase[j].strHZ, strHZ)) { + if (strPY[0]) + strcat(strPY, " "); + strcat(strPY, str_PY); + } } } - } else { - j = iLegendCandWordCount; - if (iLegendCandWordCount == fc.iMaxCandWord) - j--; - for (; j > i; j--) { - PYLegendCandWords[j].phrase = PYLegendCandWords[j - 1].phrase; - PYLegendCandWords[j].iLength = PYLegendCandWords[j - 1].iLength; - } } +} - PYLegendCandWords[i].phrase = phrase; - PYLegendCandWords[i].iLength = strlen(strPYLegendSource) - utf8_char_len(strPYLegendSource); - if (iLegendCandWordCount != fc.iMaxCandWord) - iLegendCandWordCount++; - return True; +void SavePY(void *arg) +{ + FcitxPinyinState *pystate = (FcitxPinyinState*)arg; + if (pystate->iNewPYPhraseCount) + SavePYUserPhrase(pystate); + if (pystate->iOrderCount) + SavePYIndex(pystate); + if (pystate->iNewFreqCount) + SavePYFreq(pystate); +} + +void* LoadPYBaseDictWrapper(void * arg, FcitxModuleFunctionArg args) +{ + FcitxPinyinState *pystate = (FcitxPinyinState*)arg; + if (!pystate->bPYBaseDictLoaded) + LoadPYBaseDict(pystate); + return NULL; } -char *PYGetLegendCandWord(int iIndex) +void* PYGetPYByHZWrapper(void * arg, FcitxModuleFunctionArg args) { - if (iLegendCandWordCount) { - if (iIndex > (iLegendCandWordCount - 1)) - iIndex = iLegendCandWordCount - 1; - strcpy(strPYLegendSource, PYLegendCandWords[iIndex].phrase->strPhrase + PYLegendCandWords[iIndex].iLength); - strcpy(strPYLegendMap, PYLegendCandWords[iIndex].phrase->strMap + PYLegendCandWords[iIndex].iLength); - PYGetLegendCandWords(SM_FIRST); - return strPYLegendSource; - } + FcitxPinyinState *pystate = (FcitxPinyinState*)arg; + char *a = args.args[0]; + char *b = args.args[1]; + PYGetPYByHZ(pystate, a, b); + return NULL; +} +void* DoPYInputWrapper(void * arg, FcitxModuleFunctionArg args) +{ + FcitxPinyinState *pystate = (FcitxPinyinState*)arg; + FcitxKeySym *a = args.args[0]; + unsigned int *b = args.args[1]; + DoPYInput(pystate, *a, *b); + return NULL; + +} +void* PYGetCandWordsWrapper(void * arg, FcitxModuleFunctionArg args) +{ + PYGetCandWords(arg); return NULL; } -void PYSetLegendCandWordsFlag(Bool flag) +void* PYGetFindStringWrapper(void * arg, FcitxModuleFunctionArg args) { - int i; + FcitxPinyinState *pystate = (FcitxPinyinState*)arg; + return pystate->strFindString; + +} +void* PYResetWrapper(void * arg, FcitxModuleFunctionArg args) +{ + FcitxPinyinState *pystate = (FcitxPinyinState*)arg; - for (i = 0; i < iLegendCandWordCount; i++) - PYLegendCandWords[i].phrase->flag = flag; + pystate->bSP = false; + pystate->strPYAuto[0] = '\0'; + ResetPYStatus(pystate); + + return NULL; } -void PYGetPYByHZ(char *strHZ, char *strPY) +void ReloadConfigPY(void* arg) { - int i, j; - char str_PY[MAX_PY_LENGTH + 1]; + FcitxPinyinState *pystate = (FcitxPinyinState*)arg; - strPY[0] = '\0'; - for (i = iPYFACount - 1; i >= 0; i--) { - if (MapToPY(PYFAList[i].strMap, str_PY)) { - for (j = 0; j < PYFAList[i].iBase; j++) { - if (!strcmp(PYFAList[i].pyBase[j].strHZ, strHZ)) { - if (strPY[0]) - strcat(strPY, " "); - strcat(strPY, str_PY); - } - } + LoadPYConfig(&pystate->pyconfig); +} + +void PinyinMigration() +{ + char* olduserphrase, *oldpyindex, *newuserphrase, *newpyindex; + GetXDGFileUserWithPrefix("", PY_USERPHRASE_FILE, NULL, &olduserphrase); + GetXDGFileUserWithPrefix("", PY_INDEX_FILE, NULL, &oldpyindex); + GetXDGFileUserWithPrefix("pinyin", PY_USERPHRASE_FILE, NULL, &newuserphrase); + GetXDGFileUserWithPrefix("pinyin", PY_INDEX_FILE, NULL, &newpyindex); + + struct stat olduserphrasestat, oldpyindexstat, newuserphrasestat, newpyindexstat; + + /* check old file are all not exist */ + if (stat(newpyindex, &newpyindexstat) == -1 && stat(newuserphrase, &newuserphrasestat) == -1) + { + if (stat(oldpyindex, &oldpyindexstat) == 0 || stat(olduserphrase, &olduserphrasestat) == 0) + { + FcitxLog(INFO, _("Migrate the old file path to the new one")); + /* there might be a very very rare case, that ~/.config/fcitx/pinyin + * and ~/.config/fcitx in different filesystem, who the fucking guy + * do this meaningless go die */ + link(oldpyindex, newpyindex); + link(olduserphrase, newuserphrase); + } + } + + + free(oldpyindex); + free(olduserphrase); + free(newpyindex); + free(newuserphrase); +} + +/* decend sort */ +int PYCandWordCmp(const void* b, const void *a, void* arg) +{ + const PYCandWord* canda = *(PYCandWord**)a; + const PYCandWord* candb = *(PYCandWord**)b; + PYCandWordSortContext *context = arg; + + switch (context->type) + { + case PY_CAND_BASE: + { + switch (context->order) + { + case AD_NO: + return 0; + case AD_FAST: + { + int delta = context->pystate->PYFAList[canda->cand.base.iPYFA].pyBase[canda->cand.base.iBase].iIndex + - context->pystate->PYFAList[candb->cand.base.iPYFA].pyBase[candb->cand.base.iBase].iIndex; + if (delta != 0) + return delta; + + delta = context->pystate->PYFAList[canda->cand.base.iPYFA].pyBase[canda->cand.base.iBase].iHit + - context->pystate->PYFAList[candb->cand.base.iPYFA].pyBase[candb->cand.base.iBase].iHit; + return delta; + } + break; + case AD_FREQ: + { + int delta = context->pystate->PYFAList[canda->cand.base.iPYFA].pyBase[canda->cand.base.iBase].iHit + - context->pystate->PYFAList[candb->cand.base.iPYFA].pyBase[candb->cand.base.iBase].iHit; + if (delta != 0) + return delta; + + delta = context->pystate->PYFAList[canda->cand.base.iPYFA].pyBase[canda->cand.base.iBase].iIndex + - context->pystate->PYFAList[candb->cand.base.iPYFA].pyBase[candb->cand.base.iBase].iIndex; + return delta; + } + break; + } + } + break; + case PY_CAND_SYSPHRASE: + case PY_CAND_USERPHRASE: + { + switch (context->order) + { + case AD_NO: + return strlen(canda->cand.phrase.phrase->strPhrase) - strlen(candb->cand.phrase.phrase->strPhrase); + break; + case AD_FAST: + { + int size = strlen(canda->cand.phrase.phrase->strPhrase) - strlen(candb->cand.phrase.phrase->strPhrase); + if (size != 0) + return size; + + if (canda->cand.phrase.phrase->iIndex - candb->cand.phrase.phrase->iIndex != 0) + return canda->cand.phrase.phrase->iIndex - candb->cand.phrase.phrase->iIndex; + + return canda->cand.phrase.phrase->iHit - candb->cand.phrase.phrase->iHit; + } + break; + case AD_FREQ: + { + int size = strlen(canda->cand.phrase.phrase->strPhrase) - strlen(candb->cand.phrase.phrase->strPhrase); + if (size != 0) + return size; + + if (canda->cand.phrase.phrase->iHit - candb->cand.phrase.phrase->iHit != 0) + return canda->cand.phrase.phrase->iHit - candb->cand.phrase.phrase->iHit; + + return canda->cand.phrase.phrase->iIndex - candb->cand.phrase.phrase->iIndex; + } + break; + } + } + break; + case PY_CAND_FREQ: + { + switch (context->order) + { + case AD_NO: + return 0; + case AD_FAST: + return canda->cand.freq.hz->iIndex - candb->cand.freq.hz->iIndex; + case AD_FREQ: + return canda->cand.freq.hz->iHit - candb->cand.freq.hz->iHit; } } + break; + case PY_CAND_REMIND: + return canda->cand.remind.phrase->iHit - canda->cand.remind.phrase->iHit; + default: + return 0; + } + + return 0; } -void SavePY(void) + +void* PYSP2QP(void* arg, FcitxModuleFunctionArg args) { - if (iNewPYPhraseCount) - SavePYUserPhrase(); - if (iOrderCount) - SavePYIndex(); - if (iNewFreqCount) - SavePYFreq(); + FcitxPinyinState *pystate = (FcitxPinyinState*)arg; + char* strSP = args.args[0]; + char strQP[MAX_PY_LENGTH + 1]; + strQP[0] = 0; + + SP2QP(&pystate->pyconfig, strSP, strQP); + + return strdup(strQP); } + +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/im/pinyin/pyconfig.c fcitx-4.1.1/src/im/pinyin/pyconfig.c --- fcitx-4.0.1/src/im/pinyin/pyconfig.c 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/im/pinyin/pyconfig.c 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,128 @@ +/*************************************************************************** + * Copyright (C) 2010~2010 by CSSlayer * + * wengxt@gmail.com * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +#include +#include + +#include "fcitx/fcitx.h" +#include "fcitx-utils/log.h" +#include "pyconfig.h" +#include "fcitx-config/fcitx-config.h" +#include "fcitx-config/xdg.h" +#include "PYFA.h" +#include +#include + +static void FilterGetWordFromPhrase(GenericConfig* config, ConfigGroup *group, ConfigOption *option, void* value, ConfigSync sync, void* arg); +static void FilterAnAng(GenericConfig* config, ConfigGroup *group, ConfigOption *option, void* value, ConfigSync sync, void* arg); +static ConfigFileDesc* GetPYConfigDesc(); + +CONFIG_BINDING_BEGIN(FcitxPinyinConfig) +CONFIG_BINDING_REGISTER("Pinyin", "PinyinPriority", iPinyinPriority) +CONFIG_BINDING_REGISTER("Pinyin", "ShuangpinPriority", iShuangpinPriority) +CONFIG_BINDING_REGISTER("Pinyin", "DefaultShuangpinSchema", strDefaultSP) +CONFIG_BINDING_REGISTER("Pinyin", "UseCompletePinyin", bFullPY) +CONFIG_BINDING_REGISTER("Pinyin", "AutoCreatePhrase", bPYCreateAuto) +CONFIG_BINDING_REGISTER("Pinyin", "SaveAutoPhrase", bPYSaveAutoAsPhrase) +CONFIG_BINDING_REGISTER("Pinyin", "AddFreqWordKey", hkPYAddFreq) +CONFIG_BINDING_REGISTER("Pinyin", "DeleteFreqWordKey", hkPYDelFreq) +CONFIG_BINDING_REGISTER("Pinyin", "DeleteUserPhraseKey", hkPYDelUserPhr) +CONFIG_BINDING_REGISTER_WITH_FILTER("Pinyin", "InputWordFromPhraseKey", strPYGetWordFromPhrase, FilterGetWordFromPhrase) +CONFIG_BINDING_REGISTER("Pinyin", "BaseOrder", baseOrder) +CONFIG_BINDING_REGISTER("Pinyin", "PhraseOrder", phraseOrder) +CONFIG_BINDING_REGISTER("Pinyin", "FreqOrder", freqOrder) +CONFIG_BINDING_REGISTER_WITH_FILTER("Pinyin", "FuzzyAnAng", MHPY_C[0].bMode, FilterAnAng) +CONFIG_BINDING_REGISTER("Pinyin", "FuzzyEnEng", MHPY_C[1].bMode) +CONFIG_BINDING_REGISTER("Pinyin", "FuzzyIanIang", MHPY_C[2].bMode) +CONFIG_BINDING_REGISTER("Pinyin", "FuzzyInIng", MHPY_C[3].bMode) +CONFIG_BINDING_REGISTER("Pinyin", "FuzzyOuU", MHPY_C[4].bMode) +CONFIG_BINDING_REGISTER("Pinyin", "FuzzyUanUang", MHPY_C[5].bMode) +CONFIG_BINDING_REGISTER("Pinyin", "FuzzyCCh", MHPY_S[0].bMode) +CONFIG_BINDING_REGISTER("Pinyin", "FuzzyFH", MHPY_S[1].bMode) +CONFIG_BINDING_REGISTER("Pinyin", "FuzzyLN", MHPY_S[2].bMode) +CONFIG_BINDING_REGISTER("Pinyin", "FuzzySSH", MHPY_S[3].bMode) +CONFIG_BINDING_REGISTER("Pinyin", "FuzzyZZH", MHPY_S[4].bMode) +CONFIG_BINDING_REGISTER("Pinyin", "Misstype", bMisstype) +CONFIG_BINDING_END() + + +void FilterGetWordFromPhrase(GenericConfig* config, ConfigGroup *group, ConfigOption *option, void* value, ConfigSync sync, void* arg) +{ + char *pstr = *(char**) value; + FcitxPinyinConfig* pyconfig = (FcitxPinyinConfig*) config; + if (sync == Raw2Value) { + char a = '\0'; + char b = '\0'; + if (strlen(pstr) >= 1) + a = pstr[0]; + if (strlen(pstr) >= 2) + b = pstr[1]; + pyconfig->cPYYCDZ[0] = a; + pyconfig->cPYYCDZ[1] = b; + } +} + +void FilterAnAng(GenericConfig* config, ConfigGroup *group, ConfigOption *option, void* value, ConfigSync sync, void* arg) +{ + FcitxPinyinConfig* pyconfig = (FcitxPinyinConfig*) config; + if (sync == Raw2Value) + { + boolean *b = (boolean*)value; + pyconfig->MHPY_S[5].bMode = *b; + } +} + +boolean LoadPYConfig(FcitxPinyinConfig *pyconfig) +{ + ConfigFileDesc* configDesc = GetPYConfigDesc(); + if (configDesc == NULL) + return false; + FILE *fp; + char *file; + fp = GetXDGFileUserWithPrefix("conf", "fcitx-pinyin.config", "rt", &file); + free(file); + if (!fp) { + if (errno == ENOENT) + SavePYConfig(pyconfig); + } + + ConfigFile *cfile = ParseConfigFileFp(fp, configDesc); + + FcitxPinyinConfigConfigBind(pyconfig, cfile, configDesc); + ConfigBindSync((GenericConfig*)pyconfig); + + if (fp) + fclose(fp); + return true; +} + +void SavePYConfig(FcitxPinyinConfig* pyconfig) +{ + ConfigFileDesc* configDesc = GetPYConfigDesc(); + char *file; + FILE *fp = GetXDGFileUserWithPrefix("conf", "fcitx-pinyin.config", "wt", &file); + SaveConfigFileFp(fp, &pyconfig->gconfig, configDesc); + free(file); + if (fp) + fclose(fp); +} + +CONFIG_DESC_DEFINE(GetPYConfigDesc, "fcitx-pinyin.desc") +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/im/pinyin/pyconfig.h fcitx-4.1.1/src/im/pinyin/pyconfig.h --- fcitx-4.0.1/src/im/pinyin/pyconfig.h 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/im/pinyin/pyconfig.h 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,67 @@ +/*************************************************************************** + * Copyright (C) 2010~2010 by CSSlayer * + * wengxt@gmail.com * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +#ifndef PYCONFIG_H +#define PYCONFIG_H +#include "fcitx-config/fcitx-config.h" +#include "fcitx/configfile.h" +#include "sp.h" + +struct MHPY; + +typedef enum _ADJUSTORDER { + AD_NO = 0, + AD_FAST = 1, + AD_FREQ = 2 +} ADJUSTORDER; + +typedef struct _FcitxPinyinConfig +{ + GenericConfig gconfig; + /* py config */ + int iPinyinPriority; + int iShuangpinPriority; + char *strDefaultSP; + boolean bFullPY; + boolean bPYCreateAuto; + boolean bPYSaveAutoAsPhrase; + ADJUSTORDER baseOrder; + ADJUSTORDER phraseOrder; + ADJUSTORDER freqOrder; + HOTKEYS hkPYAddFreq[2]; + HOTKEYS hkPYDelFreq[2]; + HOTKEYS hkPYDelUserPhr[2]; + char* strPYGetWordFromPhrase; + char cPYYCDZ[3]; + struct _MHPY *MHPY_C; + struct _MHPY *MHPY_S; + boolean bMisstype; + struct _PYTABLE *PYTable; + char cNonS; + SP_C SPMap_C[31]; + SP_S SPMap_S[4]; +} FcitxPinyinConfig; + +CONFIG_BINDING_DECLARE(FcitxPinyinConfig); +boolean LoadPYConfig(FcitxPinyinConfig *pyconfig); +void SavePYConfig(FcitxPinyinConfig *pyconfig); + +#endif +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/im/pinyin/pydef.h fcitx-4.1.1/src/im/pinyin/pydef.h --- fcitx-4.0.1/src/im/pinyin/pydef.h 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/im/pinyin/pydef.h 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,45 @@ +/*************************************************************************** + * Copyright (C) 2002~2005 by Yuking * + * yuking_net@sohu.com * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +#ifndef PYDEF_H +#define PYDEF_H + +#define MAX_WORDS_USER_INPUT 32 +#define MAX_PY_PHRASE_LENGTH 10 +#define MAX_PY_LENGTH 6 + +#define FCITX_PINYIN_NAME "fcitx-pinyin" +#define FCITX_PINYIN_LOADBASEDICT 0 +#define FCITX_PINYIN_LOADBASEDICT_RETURNTYPE void +#define FCITX_PINYIN_PYGETPYBYHZ 1 +#define FCITX_PINYIN_PYGETPYBYHZ_RETURNTYPE void +#define FCITX_PINYIN_DOPYINPUT 2 +#define FCITX_PINYIN_DOPYINPUT_RETURNTYPE void +#define FCITX_PINYIN_PYGETCANDWORDS 3 +#define FCITX_PINYIN_PYGETCANDWORDS_RETURNTYPE void +#define FCITX_PINYIN_PYGETFINDSTRING 4 +#define FCITX_PINYIN_PYGETFINDSTRING_RETURNTYPE char* +#define FCITX_PINYIN_PYRESET 5 +#define FCITX_PINYIN_PYRESET_RETURNTYPE void +#define FCITX_PINYIN_SP2QP 6 +#define FCITX_PINYIN_SP2QP_RETURNTYPE char* + +#endif +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/im/pinyin/PYFA.c fcitx-4.1.1/src/im/pinyin/PYFA.c --- fcitx-4.0.1/src/im/pinyin/PYFA.c 2010-12-17 04:17:57.000000000 +0000 +++ fcitx-4.1.1/src/im/pinyin/PYFA.c 2011-09-08 16:00:05.000000000 +0000 @@ -18,1172 +18,1183 @@ * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ***************************************************************************/ -#include "core/fcitx.h" -#include "tools/configfile.h" +#include "fcitx/fcitx.h" #include "PYFA.h" +#include "pyconfig.h" #include +#include "fcitx-utils/log.h" +#include +#include -MHPY MHPY_C[] = { //韵母 +const MHPY_TEMPLATE MHPY_C_TEMPLATE[] = //韵母 +{ //{"an","ang"}, - {"CD", 0} + {"CD"} , //{"en","eng"}, - {"HI", 0} + {"HI"} , //{"ian","iang"}, - {"LM", 0} + {"LM"} , //{"in","ing"}, - {"PQ", 0} + {"PQ"} , //{"u","ou"}, - {"VW", 0} + {"VW"} , //{"uan","uang"}, - {"Za", 0} + {"Za"} , - {"\0", 0} + {"\0"} }; -MHPY MHPY_S[] = { //声母 +const MHPY_TEMPLATE MHPY_S_TEMPLATE[] = //声母 +{ //{"c","ch"}, - {"bc", 0} + {"bc"} , //{"f","h"}, - {"TV", 0} + {"TV"} , //{"l","n"}, - {"OQ", 0} + {"OQ"} , //{"s","sh"}, - {"GH", 0} + {"GH"} , //{"z","zh"}, - {"AB", 0} + {"AB"} , //{"an","ang"} - {"fg", 0} + {"fg"} , - {"\0", 0} + {"\0"} }; //其中增加了那些不是标准的拼音,但模糊输入中需要使用的拼音组合 -PYTABLE PYTable[] = { - {"zuo", NULL} +const PYTABLE_TEMPLATE PYTable_template[] = +{ + {"zuo", PYTABLE_NONE} , - {"zun", NULL} + {"zun", PYTABLE_NONE} , - {"zui", NULL} + {"zui", PYTABLE_NONE} , - {"zuagn", &fc.bMisstype } + {"zuagn", PYTABLE_NG_GN} , - {"zuang", &MHPY_C[5].bMode} + {"zuang", PYTABLE_UAN_UANG} , - {"zuagn", &fc.bMisstype } + {"zuagn", PYTABLE_NG_GN} , - {"zuang", &MHPY_S[4].bMode} + {"zuang", PYTABLE_Z_ZH} , - {"zuan", NULL} + {"zuan", PYTABLE_NONE} , - {"zua", &MHPY_S[4].bMode} + {"zua", PYTABLE_Z_ZH} , - {"zu", NULL} + {"zu", PYTABLE_NONE} , - {"zou", NULL} + {"zou", PYTABLE_NONE} , - {"zogn", &fc.bMisstype } + {"zogn", PYTABLE_NG_GN} , - {"zong", NULL} + {"zong", PYTABLE_NONE} , - {"zi", NULL} + {"zi", PYTABLE_NONE} , - {"zhuo", NULL} + {"zhuo", PYTABLE_NONE} , - {"zhun", NULL} + {"zhun", PYTABLE_NONE} , - {"zhui", NULL} + {"zhui", PYTABLE_NONE} , - {"zhuagn", &fc.bMisstype } + {"zhuagn", PYTABLE_NG_GN} , - {"zhuang", NULL} + {"zhuang", PYTABLE_NONE} , - {"zhuan", NULL} + {"zhuan", PYTABLE_NONE} , - {"zhuai", NULL} + {"zhuai", PYTABLE_NONE} , - {"zhua", NULL} + {"zhua", PYTABLE_NONE} , - {"zhu", NULL} + {"zhu", PYTABLE_NONE} , - {"zhou", NULL} + {"zhou", PYTABLE_NONE} , - {"zhogn", &fc.bMisstype } + {"zhogn", PYTABLE_NG_GN} , - {"zhong", NULL} + {"zhong", PYTABLE_NONE} , - {"zhi", NULL} + {"zhi", PYTABLE_NONE} , - {"zhegn", &fc.bMisstype } + {"zhegn", PYTABLE_NG_GN} , - {"zheng", NULL} + {"zheng", PYTABLE_NONE} , - {"zhen", NULL} + {"zhen", PYTABLE_NONE} , - {"zhe", NULL} + {"zhe", PYTABLE_NONE} , - {"zhao", NULL} + {"zhao", PYTABLE_NONE} , - {"zhagn", &fc.bMisstype } + {"zhagn", PYTABLE_NG_GN} , - {"zhang", NULL} + {"zhang", PYTABLE_NONE} , - {"zhan", NULL} + {"zhan", PYTABLE_NONE} , - {"zhai", NULL} + {"zhai", PYTABLE_NONE} , - {"zha", NULL} + {"zha", PYTABLE_NONE} , - {"zegn", &fc.bMisstype } + {"zegn", PYTABLE_NG_GN} , - {"zeng", NULL} + {"zeng", PYTABLE_NONE} , - {"zen", NULL} + {"zen", PYTABLE_NONE} , - {"zei", NULL} + {"zei", PYTABLE_NONE} , - {"ze", NULL} + {"ze", PYTABLE_NONE} , - {"zao", NULL} + {"zao", PYTABLE_NONE} , - {"zagn", &fc.bMisstype } + {"zagn", PYTABLE_NG_GN} , - {"zang", NULL} + {"zang", PYTABLE_NONE} , - {"zan", NULL} + {"zan", PYTABLE_NONE} , - {"zai", NULL} + {"zai", PYTABLE_NONE} , - {"za", NULL} + {"za", PYTABLE_NONE} , - {"yun", NULL} + {"yun", PYTABLE_NONE} , - {"yue", NULL} + {"yue", PYTABLE_NONE} , - {"yuagn", &fc.bMisstype } + {"yuagn", PYTABLE_NG_GN} , - {"yuang", &MHPY_C[5].bMode} + {"yuang", PYTABLE_UAN_UANG} , - {"yuan", NULL} + {"yuan", PYTABLE_NONE} , - {"yu", NULL} + {"yu", PYTABLE_NONE} , - {"you", NULL} + {"you", PYTABLE_NONE} , - {"yogn", &fc.bMisstype } + {"yogn", PYTABLE_NG_GN} , - {"yong", NULL} + {"yong", PYTABLE_NONE} , - {"yo", NULL} + {"yo", PYTABLE_NONE} , - {"yign", &fc.bMisstype } + {"yign", PYTABLE_NG_GN} , - {"ying", NULL} + {"ying", PYTABLE_NONE} , - {"yin", NULL} + {"yin", PYTABLE_NONE} , - {"yi", NULL} + {"yi", PYTABLE_NONE} , - {"ye", NULL} + {"ye", PYTABLE_NONE} , - {"yao", NULL} + {"yao", PYTABLE_NONE} , - {"yagn", &fc.bMisstype } + {"yagn", PYTABLE_NG_GN} , - {"yang", NULL} + {"yang", PYTABLE_NONE} , - {"yan", NULL} + {"yan", PYTABLE_NONE} , - {"ya", NULL} + {"ya", PYTABLE_NONE} , - {"xun", NULL} + {"xun", PYTABLE_NONE} , - {"xue", NULL} + {"xue", PYTABLE_NONE} , - {"xuagn", &fc.bMisstype } + {"xuagn", PYTABLE_NG_GN} , - {"xuang", &MHPY_C[5].bMode} + {"xuang", PYTABLE_UAN_UANG} , - {"xuan", NULL} + {"xuan", PYTABLE_NONE} , - {"xu", NULL} + {"xu", PYTABLE_NONE} , - {"xou", &MHPY_C[4].bMode} + {"xou", PYTABLE_U_OU} , - {"xiu", NULL} + {"xiu", PYTABLE_NONE} , - {"xiogn", &fc.bMisstype } + {"xiogn", PYTABLE_NG_GN} , - {"xiong", NULL} + {"xiong", PYTABLE_NONE} , - {"xign", &fc.bMisstype } + {"xign", PYTABLE_NG_GN} , - {"xing", NULL} + {"xing", PYTABLE_NONE} , - {"xin", NULL} + {"xin", PYTABLE_NONE} , - {"xie", NULL} + {"xie", PYTABLE_NONE} , - {"xiao", NULL} + {"xiao", PYTABLE_NONE} , - {"xiagn", &fc.bMisstype } + {"xiagn", PYTABLE_NG_GN} , - {"xiang", NULL} + {"xiang", PYTABLE_NONE} , - {"xian", NULL} + {"xian", PYTABLE_NONE} , - {"xia", NULL} + {"xia", PYTABLE_NONE} , - {"xi", NULL} + {"xi", PYTABLE_NONE} , - {"wu", NULL} + {"wu", PYTABLE_NONE} , - {"wo", NULL} + {"wo", PYTABLE_NONE} , - {"wegn", &fc.bMisstype } + {"wegn", PYTABLE_NG_GN} , - {"weng", NULL} + {"weng", PYTABLE_NONE} , - {"wen", NULL} + {"wen", PYTABLE_NONE} , - {"wei", NULL} + {"wei", PYTABLE_NONE} , - {"wagn", &fc.bMisstype } + {"wagn", PYTABLE_NG_GN} , - {"wang", NULL} + {"wang", PYTABLE_NONE} , - {"wan", NULL} + {"wan", PYTABLE_NONE} , - {"wai", NULL} + {"wai", PYTABLE_NONE} , - {"wa", NULL} + {"wa", PYTABLE_NONE} , - {"tuo", NULL} + {"tuo", PYTABLE_NONE} , - {"tun", NULL} + {"tun", PYTABLE_NONE} , - {"tui", NULL} + {"tui", PYTABLE_NONE} , - {"tuagn", &fc.bMisstype } + {"tuagn", PYTABLE_NG_GN} , - {"tuang", &MHPY_C[5].bMode} + {"tuang", PYTABLE_UAN_UANG} , - {"tuan", NULL} + {"tuan", PYTABLE_NONE} , - {"tu", NULL} + {"tu", PYTABLE_NONE} , - {"tou", NULL} + {"tou", PYTABLE_NONE} , - {"togn", &fc.bMisstype } + {"togn", PYTABLE_NG_GN} , - {"tong", NULL} + {"tong", PYTABLE_NONE} , - {"tign", &fc.bMisstype } + {"tign", PYTABLE_NG_GN} , - {"ting", NULL} + {"ting", PYTABLE_NONE} , - {"tin", &MHPY_C[3].bMode} + {"tin", PYTABLE_IN_ING} , - {"tie", NULL} + {"tie", PYTABLE_NONE} , - {"tiao", NULL} + {"tiao", PYTABLE_NONE} , - {"tiagn", &fc.bMisstype } + {"tiagn", PYTABLE_NG_GN} , - {"tiang", &MHPY_C[2].bMode} + {"tiang", PYTABLE_IAN_IANG} , - {"tian", NULL} + {"tian", PYTABLE_NONE} , - {"ti", NULL} + {"ti", PYTABLE_NONE} , - {"tegn", &fc.bMisstype } + {"tegn", PYTABLE_NG_GN} , - {"teng", NULL} + {"teng", PYTABLE_NONE} , - {"ten", &MHPY_C[1].bMode} + {"ten", PYTABLE_EN_ENG} , - {"tei", NULL} + {"tei", PYTABLE_NONE} , - {"te", NULL} + {"te", PYTABLE_NONE} , - {"tao", NULL} + {"tao", PYTABLE_NONE} , - {"tagn", &fc.bMisstype } + {"tagn", PYTABLE_NG_GN} , - {"tang", NULL} + {"tang", PYTABLE_NONE} , - {"tan", NULL} + {"tan", PYTABLE_NONE} , - {"tai", NULL} + {"tai", PYTABLE_NONE} , - {"ta", NULL} + {"ta", PYTABLE_NONE} , - {"suo", NULL} + {"suo", PYTABLE_NONE} , - {"sun", NULL} + {"sun", PYTABLE_NONE} , - {"sui", NULL} + {"sui", PYTABLE_NONE} , - {"suagn", &fc.bMisstype } + {"suagn", PYTABLE_NG_GN} , - {"suang", &MHPY_S[3].bMode} + {"suang", PYTABLE_S_SH} , - {"suagn", &fc.bMisstype } + {"suagn", PYTABLE_NG_GN} , - {"suang", &MHPY_C[5].bMode} + {"suang", PYTABLE_UAN_UANG} , - {"suan", NULL} + {"suan", PYTABLE_NONE} , - {"sua", &MHPY_S[3].bMode} + {"sua", PYTABLE_S_SH} , - {"su", NULL} + {"su", PYTABLE_NONE} , - {"sou", NULL} + {"sou", PYTABLE_NONE} , - {"sogn", &fc.bMisstype } + {"sogn", PYTABLE_NG_GN} , - {"song", NULL} + {"song", PYTABLE_NONE} , - {"si", NULL} + {"si", PYTABLE_NONE} , - {"shuo", NULL} + {"shuo", PYTABLE_NONE} , - {"shun", NULL} + {"shun", PYTABLE_NONE} , - {"shui", NULL} + {"shui", PYTABLE_NONE} , - {"shuagn", &fc.bMisstype } + {"shuagn", PYTABLE_NG_GN} , - {"shuang", NULL} + {"shuang", PYTABLE_NONE} , - {"shuan", NULL} + {"shuan", PYTABLE_NONE} , - {"shuai", NULL} + {"shuai", PYTABLE_NONE} , - {"shua", NULL} + {"shua", PYTABLE_NONE} , - {"shu", NULL} + {"shu", PYTABLE_NONE} , - {"shou", NULL} + {"shou", PYTABLE_NONE} , - {"shi", NULL} + {"shi", PYTABLE_NONE} , - {"shegn", &fc.bMisstype } + {"shegn", PYTABLE_NG_GN} , - {"sheng", NULL} + {"sheng", PYTABLE_NONE} , - {"shen", NULL} + {"shen", PYTABLE_NONE} , - {"shei", NULL} + {"shei", PYTABLE_NONE} , - {"she", NULL} + {"she", PYTABLE_NONE} , - {"shao", NULL} + {"shao", PYTABLE_NONE} , - {"shagn", &fc.bMisstype } + {"shagn", PYTABLE_NG_GN} , - {"shang", NULL} + {"shang", PYTABLE_NONE} , - {"shan", NULL} + {"shan", PYTABLE_NONE} , - {"shai", NULL} + {"shai", PYTABLE_NONE} , - {"sha", NULL} + {"sha", PYTABLE_NONE} , - {"segn", &fc.bMisstype } + {"segn", PYTABLE_NG_GN} , - {"seng", NULL} + {"seng", PYTABLE_NONE} , - {"sen", NULL} + {"sen", PYTABLE_NONE} , - {"se", NULL} + {"se", PYTABLE_NONE} , - {"sao", NULL} + {"sao", PYTABLE_NONE} , - {"sagn", &fc.bMisstype } + {"sagn", PYTABLE_NG_GN} , - {"sang", NULL} + {"sang", PYTABLE_NONE} , - {"san", NULL} + {"san", PYTABLE_NONE} , - {"sai", NULL} + {"sai", PYTABLE_NONE} , - {"sa", NULL} + {"sa", PYTABLE_NONE} , - {"ruo", NULL} + {"ruo", PYTABLE_NONE} , - {"run", NULL} + {"run", PYTABLE_NONE} , - {"rui", NULL} + {"rui", PYTABLE_NONE} , - {"ruagn", &fc.bMisstype } + {"ruagn", PYTABLE_NG_GN} , - {"ruang", &MHPY_C[5].bMode} + {"ruang", PYTABLE_UAN_UANG} , - {"ruan", NULL} + {"ruan", PYTABLE_NONE} , - {"ru", NULL} + {"ru", PYTABLE_NONE} , - {"rou", NULL} + {"rou", PYTABLE_NONE} , - {"rogn", &fc.bMisstype } + {"rogn", PYTABLE_NG_GN} , - {"rong", NULL} + {"rong", PYTABLE_NONE} , - {"ri", NULL} + {"ri", PYTABLE_NONE} , - {"regn", &fc.bMisstype } + {"regn", PYTABLE_NG_GN} , - {"reng", NULL} + {"reng", PYTABLE_NONE} , - {"ren", NULL} + {"ren", PYTABLE_NONE} , - {"re", NULL} + {"re", PYTABLE_NONE} , - {"rao", NULL} + {"rao", PYTABLE_NONE} , - {"ragn", &fc.bMisstype } + {"ragn", PYTABLE_NG_GN} , - {"rang", NULL} + {"rang", PYTABLE_NONE} , - {"ran", NULL} + {"ran", PYTABLE_NONE} , - {"qun", NULL} + {"qun", PYTABLE_NONE} , - {"que", NULL} + {"que", PYTABLE_NONE} , - {"quagn", &fc.bMisstype } + {"quagn", PYTABLE_NG_GN} , - {"quang", &MHPY_C[5].bMode} + {"quang", PYTABLE_UAN_UANG} , - {"quan", NULL} + {"quan", PYTABLE_NONE} , - {"qu", NULL} + {"qu", PYTABLE_NONE} , - {"qiu", NULL} + {"qiu", PYTABLE_NONE} , - {"qiogn", &fc.bMisstype } + {"qiogn", PYTABLE_NG_GN} , - {"qiong", NULL} + {"qiong", PYTABLE_NONE} , - {"qign", &fc.bMisstype } + {"qign", PYTABLE_NG_GN} , - {"qing", NULL} + {"qing", PYTABLE_NONE} , - {"qin", NULL} + {"qin", PYTABLE_NONE} , - {"qie", NULL} + {"qie", PYTABLE_NONE} , - {"qiao", NULL} + {"qiao", PYTABLE_NONE} , - {"qiagn", &fc.bMisstype } + {"qiagn", PYTABLE_NG_GN} , - {"qiang", NULL} + {"qiang", PYTABLE_NONE} , - {"qian", NULL} + {"qian", PYTABLE_NONE} , - {"qia", NULL} + {"qia", PYTABLE_NONE} , - {"qi", NULL} + {"qi", PYTABLE_NONE} , - {"pu", NULL} + {"pu", PYTABLE_NONE} , - {"pou", NULL} + {"pou", PYTABLE_NONE} , - {"po", NULL} + {"po", PYTABLE_NONE} , - {"pign", &fc.bMisstype } + {"pign", PYTABLE_NG_GN} , - {"ping", NULL} + {"ping", PYTABLE_NONE} , - {"pin", NULL} + {"pin", PYTABLE_NONE} , - {"pie", NULL} + {"pie", PYTABLE_NONE} , - {"piao", NULL} + {"piao", PYTABLE_NONE} , - {"piagn", &fc.bMisstype } + {"piagn", PYTABLE_NG_GN} , - {"piang", &MHPY_C[2].bMode} + {"piang", PYTABLE_IAN_IANG} , - {"pian", NULL} + {"pian", PYTABLE_NONE} , - {"pi", NULL} + {"pi", PYTABLE_NONE} , - {"pegn", &fc.bMisstype } + {"pegn", PYTABLE_NG_GN} , - {"peng", NULL} + {"peng", PYTABLE_NONE} , - {"pen", NULL} + {"pen", PYTABLE_NONE} , - {"pei", NULL} + {"pei", PYTABLE_NONE} , - {"pao", NULL} + {"pao", PYTABLE_NONE} , - {"pagn", &fc.bMisstype } + {"pagn", PYTABLE_NG_GN} , - {"pang", NULL} + {"pang", PYTABLE_NONE} , - {"pan", NULL} + {"pan", PYTABLE_NONE} , - {"pai", NULL} + {"pai", PYTABLE_NONE} , - {"pa", NULL} + {"pa", PYTABLE_NONE} , - {"ou", NULL} + {"ou", PYTABLE_NONE} , - {"o", NULL} + {"o", PYTABLE_NONE} , - {"nve", NULL} + {"nve", PYTABLE_NONE} , - {"nv", NULL} + {"nv", PYTABLE_NONE} , - {"nuo", NULL} + {"nuo", PYTABLE_NONE} , - {"nue", NULL} + {"nue", PYTABLE_NONE} , - {"nuagn", &fc.bMisstype } + {"nuagn", PYTABLE_NG_GN} , - {"nuang", &MHPY_C[5].bMode} + {"nuang", PYTABLE_UAN_UANG} , - {"nuagn", &fc.bMisstype } + {"nuagn", PYTABLE_NG_GN} , - {"nuang", &MHPY_S[2].bMode} + {"nuang", PYTABLE_L_N} , - {"nuan", NULL} + {"nuan", PYTABLE_NONE} , - {"nu", NULL} + {"nu", PYTABLE_NONE} , - {"nou", NULL} + {"nou", PYTABLE_NONE} , - {"nogn", &fc.bMisstype } + {"nogn", PYTABLE_NG_GN} , - {"nong", NULL} + {"nong", PYTABLE_NONE} , - {"niu", NULL} + {"niu", PYTABLE_NONE} , - {"nign", &fc.bMisstype } + {"nign", PYTABLE_NG_GN} , - {"ning", NULL} + {"ning", PYTABLE_NONE} , - {"nin", NULL} + {"nin", PYTABLE_NONE} , - {"nie", NULL} + {"nie", PYTABLE_NONE} , - {"niao", NULL} + {"niao", PYTABLE_NONE} , - {"niagn", &fc.bMisstype } + {"niagn", PYTABLE_NG_GN} , - {"niang", NULL} + {"niang", PYTABLE_NONE} , - {"nian", NULL} + {"nian", PYTABLE_NONE} , - {"ni", NULL} + {"ni", PYTABLE_NONE} , - {"ng", NULL} + {"ng", PYTABLE_NONE} , - {"negn", &fc.bMisstype } + {"negn", PYTABLE_NG_GN} , - {"neng", NULL} + {"neng", PYTABLE_NONE} , - {"nen", NULL} + {"nen", PYTABLE_NONE} , - {"nei", NULL} + {"nei", PYTABLE_NONE} , - {"ne", NULL} + {"ne", PYTABLE_NONE} , - {"nao", NULL} + {"nao", PYTABLE_NONE} , - {"nagn", &fc.bMisstype } + {"nagn", PYTABLE_NG_GN} , - {"nang", NULL} + {"nang", PYTABLE_NONE} , - {"nan", NULL} + {"nan", PYTABLE_NONE} , - {"nai", NULL} + {"nai", PYTABLE_NONE} , - {"na", NULL} + {"na", PYTABLE_NONE} , - {"n", NULL} + {"n", PYTABLE_NONE} , - {"mu", NULL} + {"mu", PYTABLE_NONE} , - {"mou", NULL} + {"mou", PYTABLE_NONE} , - {"mo", NULL} + {"mo", PYTABLE_NONE} , - {"miu", NULL} + {"miu", PYTABLE_NONE} , - {"mign", &fc.bMisstype } + {"mign", PYTABLE_NG_GN} , - {"ming", NULL} + {"ming", PYTABLE_NONE} , - {"min", NULL} + {"min", PYTABLE_NONE} , - {"mie", NULL} + {"mie", PYTABLE_NONE} , - {"miao", NULL} + {"miao", PYTABLE_NONE} , - {"miagn", &fc.bMisstype } + {"miagn", PYTABLE_NG_GN} , - {"miang", &MHPY_C[2].bMode} + {"miang", PYTABLE_IAN_IANG} , - {"mian", NULL} + {"mian", PYTABLE_NONE} , - {"mi", NULL} + {"mi", PYTABLE_NONE} , - {"megn", &fc.bMisstype } + {"megn", PYTABLE_NG_GN} , - {"meng", NULL} + {"meng", PYTABLE_NONE} , - {"men", NULL} + {"men", PYTABLE_NONE} , - {"mei", NULL} + {"mei", PYTABLE_NONE} , - {"me", NULL} + {"me", PYTABLE_NONE} , - {"mao", NULL} + {"mao", PYTABLE_NONE} , - {"magn", &fc.bMisstype } + {"magn", PYTABLE_NG_GN} , - {"mang", NULL} + {"mang", PYTABLE_NONE} , - {"man", NULL} + {"man", PYTABLE_NONE} , - {"mai", NULL} + {"mai", PYTABLE_NONE} , - {"ma", NULL} + {"ma", PYTABLE_NONE} , - {"m", NULL} + {"m", PYTABLE_NONE} , - {"lve", NULL} + {"lve", PYTABLE_NONE} , - {"lv", NULL} + {"lv", PYTABLE_NONE} , - {"luo", NULL} + {"luo", PYTABLE_NONE} , - {"lun", NULL} + {"lun", PYTABLE_NONE} , - {"lue", NULL} + {"lue", PYTABLE_NONE} , - {"luagn", &fc.bMisstype } + {"luagn", PYTABLE_NG_GN} , - {"luang", &MHPY_C[5].bMode} + {"luang", PYTABLE_UAN_UANG} , - {"luagn", &fc.bMisstype } + {"luagn", PYTABLE_NG_GN} , - {"luang", &MHPY_S[2].bMode} + {"luang", PYTABLE_L_N} , - {"luan", NULL} + {"luan", PYTABLE_NONE} , - {"lu", NULL} + {"lu", PYTABLE_NONE} , - {"lou", NULL} + {"lou", PYTABLE_NONE} , - {"logn", &fc.bMisstype } + {"logn", PYTABLE_NG_GN} , - {"long", NULL} + {"long", PYTABLE_NONE} , - {"lo", NULL} + {"lo", PYTABLE_NONE} , - {"liu", NULL} + {"liu", PYTABLE_NONE} , - {"lign", &fc.bMisstype } + {"lign", PYTABLE_NG_GN} , - {"ling", NULL} + {"ling", PYTABLE_NONE} , - {"lin", NULL} + {"lin", PYTABLE_NONE} , - {"lie", NULL} + {"lie", PYTABLE_NONE} , - {"liao", NULL} + {"liao", PYTABLE_NONE} , - {"liagn", &fc.bMisstype } + {"liagn", PYTABLE_NG_GN} , - {"liang", NULL} + {"liang", PYTABLE_NONE} , - {"lian", NULL} + {"lian", PYTABLE_NONE} , - {"lia", NULL} + {"lia", PYTABLE_NONE} , - {"li", NULL} + {"li", PYTABLE_NONE} , - {"legn", &fc.bMisstype } + {"legn", PYTABLE_NG_GN} , - {"leng", NULL} + {"leng", PYTABLE_NONE} , - {"len", &MHPY_C[1].bMode} + {"len", PYTABLE_EN_ENG} , - {"lei", NULL} + {"lei", PYTABLE_NONE} , - {"le", NULL} + {"le", PYTABLE_NONE} , - {"lao", NULL} + {"lao", PYTABLE_NONE} , - {"lagn", &fc.bMisstype } + {"lagn", PYTABLE_NG_GN} , - {"lang", NULL} + {"lang", PYTABLE_NONE} , - {"lan", NULL} + {"lan", PYTABLE_NONE} , - {"lai", NULL} + {"lai", PYTABLE_NONE} , - {"la", NULL} + {"la", PYTABLE_NONE} , - {"kuo", NULL} + {"kuo", PYTABLE_NONE} , - {"kun", NULL} + {"kun", PYTABLE_NONE} , - {"kui", NULL} + {"kui", PYTABLE_NONE} , - {"kuagn", &fc.bMisstype } + {"kuagn", PYTABLE_NG_GN} , - {"kuang", NULL} + {"kuang", PYTABLE_NONE} , - {"kuan", NULL} + {"kuan", PYTABLE_NONE} , - {"kuai", NULL} + {"kuai", PYTABLE_NONE} , - {"kua", NULL} + {"kua", PYTABLE_NONE} , - {"ku", NULL} + {"ku", PYTABLE_NONE} , - {"kou", NULL} + {"kou", PYTABLE_NONE} , - {"kogn", &fc.bMisstype } + {"kogn", PYTABLE_NG_GN} , - {"kong", NULL} + {"kong", PYTABLE_NONE} , - {"kegn", &fc.bMisstype } + {"kegn", PYTABLE_NG_GN} , - {"keng", NULL} + {"keng", PYTABLE_NONE} , - {"ken", NULL} + {"ken", PYTABLE_NONE} , - {"kei", NULL} + {"kei", PYTABLE_NONE} , - {"ke", NULL} + {"ke", PYTABLE_NONE} , - {"kao", NULL} + {"kao", PYTABLE_NONE} , - {"kagn", &fc.bMisstype } + {"kagn", PYTABLE_NG_GN} , - {"kang", NULL} + {"kang", PYTABLE_NONE} , - {"kan", NULL} + {"kan", PYTABLE_NONE} , - {"kai", NULL} + {"kai", PYTABLE_NONE} , - {"ka", NULL} + {"ka", PYTABLE_NONE} , - {"jun", NULL} + {"jun", PYTABLE_NONE} , - {"jue", NULL} + {"jue", PYTABLE_NONE} , - {"juagn", &fc.bMisstype } + {"juagn", PYTABLE_NG_GN} , - {"juang", &MHPY_C[5].bMode} + {"juang", PYTABLE_UAN_UANG} , - {"juan", NULL} + {"juan", PYTABLE_NONE} , - {"ju", NULL} + {"ju", PYTABLE_NONE} , - {"jiu", NULL} + {"jiu", PYTABLE_NONE} , - {"jiogn", &fc.bMisstype } + {"jiogn", PYTABLE_NG_GN} , - {"jiong", NULL} + {"jiong", PYTABLE_NONE} , - {"jign", &fc.bMisstype } + {"jign", PYTABLE_NG_GN} , - {"jing", NULL} + {"jing", PYTABLE_NONE} , - {"jin", NULL} + {"jin", PYTABLE_NONE} , - {"jie", NULL} + {"jie", PYTABLE_NONE} , - {"jiao", NULL} + {"jiao", PYTABLE_NONE} , - {"jiagn", &fc.bMisstype } + {"jiagn", PYTABLE_NG_GN} , - {"jiang", NULL} + {"jiang", PYTABLE_NONE} , - {"jian", NULL} + {"jian", PYTABLE_NONE} , - {"jia", NULL} + {"jia", PYTABLE_NONE} , - {"ji", NULL} + {"ji", PYTABLE_NONE} , - {"huo", NULL} + {"huo", PYTABLE_NONE} , - {"hun", NULL} + {"hun", PYTABLE_NONE} , - {"hui", NULL} + {"hui", PYTABLE_NONE} , - {"huagn", &fc.bMisstype } + {"huagn", PYTABLE_NG_GN} , - {"huang", NULL} + {"huang", PYTABLE_NONE} , - {"huan", NULL} + {"huan", PYTABLE_NONE} , - {"huai", NULL} + {"huai", PYTABLE_NONE} , - {"hua", NULL} + {"hua", PYTABLE_NONE} , - {"hu", NULL} + {"hu", PYTABLE_NONE} , - {"hou", NULL} + {"hou", PYTABLE_NONE} , - {"hogn", &fc.bMisstype } + {"hogn", PYTABLE_NG_GN} , - {"hong", NULL} + {"hong", PYTABLE_NONE} , - {"hegn", &fc.bMisstype } + {"hegn", PYTABLE_NG_GN} , - {"heng", NULL} + {"heng", PYTABLE_NONE} , - {"hen", NULL} + {"hen", PYTABLE_NONE} , - {"hei", NULL} + {"hei", PYTABLE_NONE} , - {"he", NULL} + {"he", PYTABLE_NONE} , - {"hao", NULL} + {"hao", PYTABLE_NONE} , - {"hagn", &fc.bMisstype } + {"hagn", PYTABLE_NG_GN} , - {"hang", NULL} + {"hang", PYTABLE_NONE} , - {"han", NULL} + {"han", PYTABLE_NONE} , - {"hai", NULL} + {"hai", PYTABLE_NONE} , - {"ha", NULL} + {"ha", PYTABLE_NONE} , - {"guo", NULL} + {"guo", PYTABLE_NONE} , - {"gun", NULL} + {"gun", PYTABLE_NONE} , - {"gui", NULL} + {"gui", PYTABLE_NONE} , - {"guagn", &fc.bMisstype } + {"guagn", PYTABLE_NG_GN} , - {"guang", NULL} + {"guang", PYTABLE_NONE} , - {"guan", NULL} + {"guan", PYTABLE_NONE} , - {"guai", NULL} + {"guai", PYTABLE_NONE} , - {"gua", NULL} + {"gua", PYTABLE_NONE} , - {"gu", NULL} + {"gu", PYTABLE_NONE} , - {"gou", NULL} + {"gou", PYTABLE_NONE} , - {"gogn", &fc.bMisstype } + {"gogn", PYTABLE_NG_GN} , - {"gong", NULL} + {"gong", PYTABLE_NONE} , - {"gegn", &fc.bMisstype } + {"gegn", PYTABLE_NG_GN} , - {"geng", NULL} + {"geng", PYTABLE_NONE} , - {"gen", NULL} + {"gen", PYTABLE_NONE} , - {"gei", NULL} + {"gei", PYTABLE_NONE} , - {"ge", NULL} + {"ge", PYTABLE_NONE} , - {"gao", NULL} + {"gao", PYTABLE_NONE} , - {"gagn", &fc.bMisstype } + {"gagn", PYTABLE_NG_GN} , - {"gang", NULL} + {"gang", PYTABLE_NONE} , - {"gan", NULL} + {"gan", PYTABLE_NONE} , - {"gai", NULL} + {"gai", PYTABLE_NONE} , - {"ga", NULL} + {"ga", PYTABLE_NONE} , - {"fu", NULL} + {"fu", PYTABLE_NONE} , - {"fou", NULL} + {"fou", PYTABLE_NONE} , - {"fo", NULL} + {"fo", PYTABLE_NONE} , - {"fegn", &fc.bMisstype } + {"fegn", PYTABLE_NG_GN} , - {"feng", NULL} + {"feng", PYTABLE_NONE} , - {"fen", NULL} + {"fen", PYTABLE_NONE} , - {"fei", NULL} + {"fei", PYTABLE_NONE} , - {"fagn", &fc.bMisstype } + {"fagn", PYTABLE_NG_GN} , - {"fang", NULL} + {"fang", PYTABLE_NONE} , - {"fan", NULL} + {"fan", PYTABLE_NONE} , - {"fa", NULL} + {"fa", PYTABLE_NONE} , - {"er", NULL} + {"er", PYTABLE_NONE} , - {"egn", &fc.bMisstype } + {"egn", PYTABLE_NG_GN} , - {"eng", &MHPY_C[1].bMode} + {"eng", PYTABLE_EN_ENG} , - {"en", NULL} + {"en", PYTABLE_NONE} , - {"ei", NULL} + {"ei", PYTABLE_NONE} , - {"e", NULL} + {"e", PYTABLE_NONE} , - {"duo", NULL} + {"duo", PYTABLE_NONE} , - {"dun", NULL} + {"dun", PYTABLE_NONE} , - {"dui", NULL} + {"dui", PYTABLE_NONE} , - {"duagn", &fc.bMisstype } + {"duagn", PYTABLE_NG_GN} , - {"duang", &MHPY_C[5].bMode} + {"duang", PYTABLE_UAN_UANG} , - {"duan", NULL} + {"duan", PYTABLE_NONE} , - {"du", NULL} + {"du", PYTABLE_NONE} , - {"dou", NULL} + {"dou", PYTABLE_NONE} , - {"dogn", &fc.bMisstype } + {"dogn", PYTABLE_NG_GN} , - {"dong", NULL} + {"dong", PYTABLE_NONE} , - {"diu", NULL} + {"diu", PYTABLE_NONE} , - {"dign", &fc.bMisstype } + {"dign", PYTABLE_NG_GN} , - {"ding", NULL} + {"ding", PYTABLE_NONE} , - {"din", &MHPY_C[3].bMode} + {"din", PYTABLE_IN_ING} , - {"die", NULL} + {"die", PYTABLE_NONE} , - {"diao", NULL} + {"diao", PYTABLE_NONE} , - {"diagn", &fc.bMisstype } + {"diagn", PYTABLE_NG_GN} , - {"diang", &MHPY_C[2].bMode} + {"diang", PYTABLE_IAN_IANG} , - {"dian", NULL} + {"dian", PYTABLE_NONE} , - {"dia", NULL} + {"dia", PYTABLE_NONE} , - {"di", NULL} + {"di", PYTABLE_NONE} , - {"degn", &fc.bMisstype } + {"degn", PYTABLE_NG_GN} , - {"deng", NULL} + {"deng", PYTABLE_NONE} , - {"den", NULL} + {"den", PYTABLE_NONE} , - {"dei", NULL} + {"dei", PYTABLE_NONE} , - {"de", NULL} + {"de", PYTABLE_NONE} , - {"dao", NULL} + {"dao", PYTABLE_NONE} , - {"dagn", &fc.bMisstype } + {"dagn", PYTABLE_NG_GN} , - {"dang", NULL} + {"dang", PYTABLE_NONE} , - {"dan", NULL} + {"dan", PYTABLE_NONE} , - {"dai", NULL} + {"dai", PYTABLE_NONE} , - {"da", NULL} + {"da", PYTABLE_NONE} , - {"cuo", NULL} + {"cuo", PYTABLE_NONE} , - {"cun", NULL} + {"cun", PYTABLE_NONE} , - {"cui", NULL} + {"cui", PYTABLE_NONE} , - {"cuagn", &fc.bMisstype } + {"cuagn", PYTABLE_NG_GN} , - {"cuang", &MHPY_C[5].bMode} + {"cuang", PYTABLE_UAN_UANG} , - {"cuagn", &fc.bMisstype } + {"cuagn", PYTABLE_NG_GN} , - {"cuang", &MHPY_S[0].bMode} + {"cuang", PYTABLE_C_CH} , - {"cuan", NULL} + {"cuan", PYTABLE_NONE} , - {"cu", NULL} + {"cu", PYTABLE_NONE} , - {"cou", NULL} + {"cou", PYTABLE_NONE} , - {"cogn", &fc.bMisstype } + {"cogn", PYTABLE_NG_GN} , - {"cong", NULL} + {"cong", PYTABLE_NONE} , - {"ci", NULL} + {"ci", PYTABLE_NONE} , - {"chuo", NULL} + {"chuo", PYTABLE_NONE} , - {"chun", NULL} + {"chun", PYTABLE_NONE} , - {"chui", NULL} + {"chui", PYTABLE_NONE} , - {"chuagn", &fc.bMisstype } + {"chuagn", PYTABLE_NG_GN} , - {"chuang", NULL} + {"chuang", PYTABLE_NONE} , - {"chuan", NULL} + {"chuan", PYTABLE_NONE} , - {"chuai", NULL} + {"chuai", PYTABLE_NONE} , - {"chu", NULL} + {"chu", PYTABLE_NONE} , - {"chou", NULL} + {"chou", PYTABLE_NONE} , - {"chogn", &fc.bMisstype } + {"chogn", PYTABLE_NG_GN} , - {"chong", NULL} + {"chong", PYTABLE_NONE} , - {"chi", NULL} + {"chi", PYTABLE_NONE} , - {"chegn", &fc.bMisstype } + {"chegn", PYTABLE_NG_GN} , - {"cheng", NULL} + {"cheng", PYTABLE_NONE} , - {"chen", NULL} + {"chen", PYTABLE_NONE} , - {"che", NULL} + {"che", PYTABLE_NONE} , - {"chao", NULL} + {"chao", PYTABLE_NONE} , - {"chagn", &fc.bMisstype } + {"chagn", PYTABLE_NG_GN} , - {"chang", NULL} + {"chang", PYTABLE_NONE} , - {"chan", NULL} + {"chan", PYTABLE_NONE} , - {"chai", NULL} + {"chai", PYTABLE_NONE} , - {"cha", NULL} + {"cha", PYTABLE_NONE} , - {"cegn", &fc.bMisstype } + {"cegn", PYTABLE_NG_GN} , - {"ceng", NULL} + {"ceng", PYTABLE_NONE} , - {"cen", NULL} + {"cen", PYTABLE_NONE} , - {"ce", NULL} + {"ce", PYTABLE_NONE} , - {"cao", NULL} + {"cao", PYTABLE_NONE} , - {"cagn", &fc.bMisstype } + {"cagn", PYTABLE_NG_GN} , - {"cang", NULL} + {"cang", PYTABLE_NONE} , - {"can", NULL} + {"can", PYTABLE_NONE} , - {"cai", NULL} + {"cai", PYTABLE_NONE} , - {"ca", NULL} + {"ca", PYTABLE_NONE} , - {"bu", NULL} + {"bu", PYTABLE_NONE} , - {"bo", NULL} + {"bo", PYTABLE_NONE} , - {"bign", &fc.bMisstype } + {"bign", PYTABLE_NG_GN} , - {"bing", NULL} + {"bing", PYTABLE_NONE} , - {"bin", NULL} + {"bin", PYTABLE_NONE} , - {"bie", NULL} + {"bie", PYTABLE_NONE} , - {"biao", NULL} + {"biao", PYTABLE_NONE} , - {"biagn", &fc.bMisstype } + {"biagn", PYTABLE_NG_GN} , - {"biang", &MHPY_C[2].bMode} + {"biang", PYTABLE_IAN_IANG} , - {"bian", NULL} + {"bian", PYTABLE_NONE} , - {"bi", NULL} + {"bi", PYTABLE_NONE} , - {"begn", &fc.bMisstype } + {"begn", PYTABLE_NG_GN} , - {"beng", NULL} + {"beng", PYTABLE_NONE} , - {"ben", NULL} + {"ben", PYTABLE_NONE} , - {"bei", NULL} + {"bei", PYTABLE_NONE} , - {"bao", NULL} + {"bao", PYTABLE_NONE} , - {"bagn", &fc.bMisstype } + {"bagn", PYTABLE_NG_GN} , - {"bang", NULL} + {"bang", PYTABLE_NONE} , - {"ban", NULL} + {"ban", PYTABLE_NONE} , - {"bai", NULL} + {"bai", PYTABLE_NONE} , - {"ba", NULL} + {"ba", PYTABLE_NONE} , - {"ao", NULL} + {"ao", PYTABLE_NONE} , - {"agn", &fc.bMisstype } + {"agn", PYTABLE_NG_GN} , - {"ang", NULL} + {"ang", PYTABLE_NONE} , - {"an", NULL} + {"an", PYTABLE_NONE} , - {"ai", NULL} + {"ai", PYTABLE_NONE} , - {"a", NULL} + {"a", PYTABLE_NONE} , - {"\0", NULL} + {"\0", PYTABLE_NONE} }; -int GetMHIndex_C (char map) +int GetMHIndex_C(MHPY* MHPY_C, char map) { int i; - for (i = 0; MHPY_C[i].strMap[0]; i++) { - if (map == MHPY_C[i].strMap[0] || map == MHPY_C[i].strMap[1]) { + for (i = 0; MHPY_C[i].strMap[0]; i++) + { + if (map == MHPY_C[i].strMap[0] || map == MHPY_C[i].strMap[1]) + { if (MHPY_C[i].bMode) return i; else return -1; } } + return -1; } -int GetMHIndex_S (char map, Bool bMode) +int GetMHIndex_S(MHPY* MHPY_S, char map, boolean bMode) { int i; - for (i = 0; MHPY_S[i].strMap[0]; i++) { - if (map == MHPY_S[i].strMap[0] || map == MHPY_S[i].strMap[1]) { + for (i = 0; MHPY_S[i].strMap[0]; i++) + { + if (map == MHPY_S[i].strMap[0] || map == MHPY_S[i].strMap[1]) + { if (MHPY_S[i].bMode || bMode) return i; else @@ -1195,10 +1206,118 @@ } -Bool IsZ_C_S (char map) +boolean IsZ_C_S(char map) { - if (map=='c' || map=='H'|| map=='B') - return True; - return False; + if (map == 'c' || map == 'H' || map == 'B') + return true; + + return false; +} + +void InitMHPY(MHPY** pMHPY, const MHPY_TEMPLATE* MHPYtemplate) +{ + int iBaseCount = 0; + + while (MHPYtemplate[iBaseCount].strMap[0] != '\0') + iBaseCount++; + + iBaseCount++; + + *pMHPY = fcitx_malloc0(sizeof(MHPY) * iBaseCount); + + MHPY *mhpy = *pMHPY; + + iBaseCount = 0; + + while (MHPYtemplate[iBaseCount].strMap[0] != '\0') + { + strcpy(mhpy[iBaseCount].strMap, MHPYtemplate[iBaseCount].strMap); + mhpy[iBaseCount].bMode = false; + iBaseCount++; + } } +void InitPYTable(FcitxPinyinConfig* pyconfig) +{ + + int iBaseCount = 0; + + while (PYTable_template[iBaseCount].strPY[0] != '\0') + iBaseCount++; + + iBaseCount++; + + pyconfig->PYTable = fcitx_malloc0(sizeof(PYTABLE) * iBaseCount); + + iBaseCount = 0; + + while (PYTable_template[iBaseCount].strPY[0] != '\0') + { + strcpy(pyconfig->PYTable[iBaseCount].strPY, PYTable_template[iBaseCount].strPY); + + switch (PYTable_template[iBaseCount].control) + { + + case PYTABLE_NONE: + pyconfig->PYTable[iBaseCount].pMH = NULL; + break; + + case PYTABLE_NG_GN: + pyconfig->PYTable[iBaseCount].pMH = &pyconfig->bMisstype; + break; + + case PYTABLE_AN_ANG: // 0 + pyconfig->PYTable[iBaseCount].pMH = &pyconfig->MHPY_C[0].bMode; + break; + + case PYTABLE_EN_ENG: // 1 + pyconfig->PYTable[iBaseCount].pMH = &pyconfig->MHPY_C[1].bMode; + break; + + case PYTABLE_IAN_IANG: // 2 + pyconfig->PYTable[iBaseCount].pMH = &pyconfig->MHPY_C[2].bMode; + break; + + case PYTABLE_IN_ING: // 3 + pyconfig->PYTable[iBaseCount].pMH = &pyconfig->MHPY_C[3].bMode; + break; + + case PYTABLE_U_OU: // 4 + pyconfig->PYTable[iBaseCount].pMH = &pyconfig->MHPY_C[4].bMode; + break; + + case PYTABLE_UAN_UANG: // 5 + pyconfig->PYTable[iBaseCount].pMH = &pyconfig->MHPY_C[5].bMode; + break; + + case PYTABLE_C_CH: // 0 + pyconfig->PYTable[iBaseCount].pMH = &pyconfig->MHPY_S[0].bMode; + break; + + case PYTABLE_F_H: // 1 + pyconfig->PYTable[iBaseCount].pMH = &pyconfig->MHPY_S[1].bMode; + break; + + case PYTABLE_L_N: // 2 + pyconfig->PYTable[iBaseCount].pMH = &pyconfig->MHPY_S[2].bMode; + break; + + case PYTABLE_S_SH: // 3 + pyconfig->PYTable[iBaseCount].pMH = &pyconfig->MHPY_S[3].bMode; + break; + + case PYTABLE_Z_ZH: // 4 + pyconfig->PYTable[iBaseCount].pMH = &pyconfig->MHPY_S[4].bMode; + break; + + case PYTABLE_AN_ANG_S: //5 + pyconfig->PYTable[iBaseCount].pMH = &pyconfig->MHPY_S[5].bMode; + break; + } + + iBaseCount++; + } +} + + +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/im/pinyin/PYFA.h fcitx-4.1.1/src/im/pinyin/PYFA.h --- fcitx-4.0.1/src/im/pinyin/PYFA.h 2010-11-28 11:55:00.000000000 +0000 +++ fcitx-4.1.1/src/im/pinyin/PYFA.h 2011-09-08 16:00:05.000000000 +0000 @@ -20,26 +20,59 @@ #ifndef _PYFA_H #define _PYFA_H -#include +#include "fcitx-config/fcitx-config.h" +struct _FcitxPinyinConfig; -struct MH_PY { - char *strMap; - Bool bMode; -}; - -#ifndef MHPY_DEFINED -#define MHPY_DEFINED -typedef struct MH_PY MHPY; -#endif +/** + * @brief ... + **/ +typedef struct _MHPY_TEMPLATE { + char strMap[3]; +} MHPY_TEMPLATE; + +typedef struct _MHPY { + char strMap[3]; + boolean bMode; +} MHPY; + +typedef enum _PYTABLE_CONTROL { + PYTABLE_NONE, + PYTABLE_NG_GN, + PYTABLE_AN_ANG, // 0 + PYTABLE_EN_ENG, // 1 + PYTABLE_IAN_IANG, // 2 + PYTABLE_IN_ING, // 3 + PYTABLE_U_OU, // 4 + PYTABLE_UAN_UANG, // 5 + PYTABLE_C_CH, // 0 + PYTABLE_F_H, // 1 + PYTABLE_L_N, // 2 + PYTABLE_S_SH, // 3 + PYTABLE_Z_ZH, // 4struct _FcitxPinyinConfig + PYTABLE_AN_ANG_S //5 +} PYTABLE_CONTROL; + +typedef struct _PYTABLE_TEMPLATE +{ + char strPY[7]; + PYTABLE_CONTROL control; +} PYTABLE_TEMPLATE; -typedef struct { +typedef struct _PYTABLE { char strPY[7]; - int *pMH; + boolean *pMH; } PYTABLE; -int GetMHIndex_C (char map); +int GetMHIndex_C (MHPY* MHPY_C, char map); //在输入词组时,比如,当用户输入“jiu's”时,应该可以出现“就是”这个词,而无论是否打开了模糊拼音 -int GetMHIndex_S (char map, Bool bMode); -Bool IsZ_C_S (char map); - +int GetMHIndex_S (MHPY* MHPY_S, char map, boolean bMode); +boolean IsZ_C_S (char map); +void InitMHPY(MHPY** pMHPY, const MHPY_TEMPLATE* MHPYtemplate); +void InitPYTable(struct _FcitxPinyinConfig* pyconfig); + +extern const PYTABLE_TEMPLATE PYTable_template[]; +extern const MHPY_TEMPLATE MHPY_C_TEMPLATE[]; +extern const MHPY_TEMPLATE MHPY_S_TEMPLATE[]; #endif + +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/im/pinyin/py.h fcitx-4.1.1/src/im/pinyin/py.h --- fcitx-4.0.1/src/im/pinyin/py.h 2010-12-06 11:08:26.000000000 +0000 +++ fcitx-4.1.1/src/im/pinyin/py.h 2011-09-08 16:00:05.000000000 +0000 @@ -20,7 +20,10 @@ #ifndef _PY_H #define _PY_H -#include "core/ime.h" +#include "fcitx/ime.h" +#include "fcitx/fcitx.h" +#include "pyconfig.h" +#include "pyParser.h" #define PY_BASE_FILE "pybase.mb" #define PY_PHRASE_FILE "pyphrase.mb" @@ -29,176 +32,207 @@ #define PY_FREQ_FILE "pyfreq.mb" #define PY_SYMBOL_FILE "pySym.mb" -#define MAX_WORDS_USER_INPUT 32 -#define MAX_PY_PHRASE_LENGTH 10 -#define MAX_PY_LENGTH 6 - #define AUTOSAVE_PHRASE_COUNT 1024 #define AUTOSAVE_ORDER_COUNT 1024 #define AUTOSAVE_FREQ_COUNT 32 -#define strNameOfPinyin __("Pinyin") -#define strIconNameOfPinyin "pinyin" +struct _CandidateWord; +struct _FcitxInstance; +struct _FcitxPinyinState; +struct MHPY; +struct MHPY_TEMPLATE; +struct _FcitxModuleFunctionArg; -typedef enum FIND_MODE { +typedef enum _FIND_MODE { FIND_PHRASE, FIND_BASE, FIND_FREQ, FIND_SYM } FINDMODE; -typedef enum { +typedef enum _PY_CAND_WORD_TYPE { PY_CAND_AUTO, PY_CAND_SYMBOL, PY_CAND_BASE, - PY_CAND_SYMPHRASE, + PY_CAND_SYSPHRASE, PY_CAND_USERPHRASE, PY_CAND_FREQ, - PY_CAND_LEGEND + PY_CAND_REMIND } PY_CAND_WORD_TYPE; typedef struct _HZ { char strHZ[MAX_PY_PHRASE_LENGTH * UTF8_MAX_LENGTH + 1]; int iPYFA; - uint iHit; - uint iIndex; + unsigned int iHit; + unsigned int iIndex; struct _HZ *next; - uint flag:1; } HZ; -typedef struct PYFREQ { +typedef struct _PYFREQ { HZ *HZList; char strPY[MAX_PY_PHRASE_LENGTH * MAX_PY_LENGTH + 1]; - uint iCount; - Bool bIsSym; //For special symbols - struct PYFREQ *next; + unsigned int iCount; + boolean bIsSym; //For special symbols + struct _PYFREQ *next; } PyFreq; -typedef struct PYPHRASE { +typedef struct _PYPHRASE { char *strPhrase; char *strMap; - struct PYPHRASE *next; - uint iIndex; - uint iHit; - uint flag:1; + unsigned int iIndex; + unsigned int iHit; } PyPhrase; -typedef struct PYBASE { +typedef struct _PYUSRPHRASE { + PyPhrase phrase; + struct _PYUSRPHRASE* next; +} PyUsrPhrase; + +#define USER_PHRASE_NEXT(x) (&((PyUsrPhrase*)(x))->next->phrase) + +typedef struct _PYBASE { char strHZ[UTF8_MAX_LENGTH + 1]; - struct PYPHRASE *phrase; + struct _PYPHRASE *phrase; int iPhrase; - struct PYPHRASE *userPhrase; + struct _PYUSRPHRASE *userPhrase; int iUserPhrase; - uint iIndex; - uint iHit; - uint flag:1; + unsigned int iIndex; + unsigned int iHit; } PyBase; typedef struct _PYFA { char strMap[3]; - struct PYBASE *pyBase; + struct _PYBASE *pyBase; int iBase; } PYFA; -typedef struct PYINDEX { - int iPYFA; - int iBase; - int iPhrase; - struct PYINDEXCANDWORD *next; - struct PYINDEXCANDWORD *prev; -} PYIndex; - -typedef struct PYFREQCANDWORD { +typedef struct _PYFREQCANDWORD { HZ *hz; char *strPY; + PyFreq *pyFreq; } PYFreqCandWord; -typedef struct PYPHRASECANDWORD { +typedef struct _PYPHRASECANDWORD { int iPYFA; int iBase; - struct PYPHRASE *phrase; + struct _PYPHRASE *phrase; } PYPhraseCandWord; -typedef struct PYBASECANDWORD { +typedef struct _PYBASECANDWORD { int iPYFA; int iBase; } PYBaseCandWord; -typedef struct PYLEGENDCANDWORD { +typedef struct _PYREMINDCANDWORD { PyPhrase *phrase; int iLength; -} PYLegendCandWord; +} PYRemindCandWord; typedef union { PYFreqCandWord sym; PYFreqCandWord freq; PYBaseCandWord base; PYPhraseCandWord phrase; + PYRemindCandWord remind; } PCand; -typedef struct PYCANDWORD { - PCand cand; - uint iWhich:3; //0->Auto 1->System single HZ 2->System phrase 3->User phrase 4->frequent HZ +typedef struct _PYCANDWORD { + PCand cand; + PY_CAND_WORD_TYPE iWhich; //0->Auto 1->System single HZ 2->System phrase 3->User phrase 4->frequent HZ } PYCandWord; -typedef struct PYCANDINDEX { +typedef struct _PYCANDINDEX { int iPYFA; int iBase; int iPhrase; } PYCandIndex; -typedef struct { +typedef struct _PY_SELECTED { char strPY[(MAX_PY_LENGTH + 1) * MAX_PY_PHRASE_LENGTH + 1]; char strHZ[MAX_PY_PHRASE_LENGTH * UTF8_MAX_LENGTH + 1]; char strMap[MAX_PY_PHRASE_LENGTH * 2 + 1]; } PY_SELECTED; -void PYInit (void); -Bool LoadPYBaseDict (void); -Bool LoadPYOtherDict (void); -void ResetPYStatus (); -int GetBaseIndex (int iPYFA, char *strBase); -INPUT_RETURN_VALUE DoPYInput(unsigned int sym, unsigned int state, int keyCount); -void UpdateCodeInputPY (void); -void UpdateFindString (int val); -void CalculateCursorPosition (void); - -void PYResetFlags (void); -void PYCreateAuto (void); -INPUT_RETURN_VALUE PYGetCandWords (SEARCH_MODE mode); -void PYCreateCandString(void); -void PYGetCandText(int iIndex, char *strText); -char *PYGetCandWord (int iIndex); -void PYGetSymCandWords (SEARCH_MODE mode); -Bool PYAddSymCandWord (HZ * hz, SEARCH_MODE mode); -void PYGetBaseCandWords (SEARCH_MODE mode); -Bool PYAddBaseCandWord (PYCandIndex pos, SEARCH_MODE mode); -void PYGetFreqCandWords (SEARCH_MODE mode); -Bool PYAddFreqCandWord (HZ * hz, char *strPY, SEARCH_MODE mode); -void PYGetPhraseCandWords (SEARCH_MODE mode); -Bool PYAddPhraseCandWord (PYCandIndex pos, PyPhrase * phrase, SEARCH_MODE mode, Bool b); -void PYGetCandWordsForward (void); -void PYGetCandWordsBackward (void); -Bool PYCheckNextCandPage (void); -void PYSetCandWordFlag (int iIndex, Bool flag); -void PYSetCandWordsFlag (Bool flag); -Bool PYAddUserPhrase (char *phrase, char *map); -void PYDelUserPhrase (int iPYFA, int iBase, PyPhrase * phrase); -int GetBaseMapIndex (char *strMap); -void SavePYUserPhrase (void); -void SavePYFreq (void); -void SavePYIndex (void); -void SavePY (void); - -void PYAddFreq (int iIndex); -void PYDelFreq (int iIndex); -Bool PYIsInFreq (char *strHZ); - -INPUT_RETURN_VALUE PYGetLegendCandWords (SEARCH_MODE iMode); -Bool PYAddLengendCandWord (PyPhrase * phrase, SEARCH_MODE mode); -char *PYGetLegendCandWord (int iIndex); -void PYSetLegendCandWordsFlag (Bool flag); -void PYGetPYByHZ(char *strHZ, char *strPY); +typedef struct _FcitxPinyinState +{ + FcitxPinyinConfig pyconfig; + + int iPYFACount; + PYFA *PYFAList; + unsigned int iCounter; + unsigned int iOrigCounter; + boolean bPYBaseDictLoaded; + boolean bPYOtherDictLoaded; + + PyFreq *pyFreq; + unsigned int iPYFreqCount; + + char strFindString[MAX_USER_INPUT + 2]; + ParsePYStruct findMap; + int iPYInsertPoint; + + char strPYRemindSource[MAX_WORDS_USER_INPUT * UTF8_MAX_LENGTH + 1]; + char strPYRemindMap[MAX_WORDS_USER_INPUT * 2 + 1]; + + PY_SELECTED pySelected[MAX_WORDS_USER_INPUT + 1]; + unsigned int iPYSelected; + + char strPYAuto[MAX_WORDS_USER_INPUT * UTF8_MAX_LENGTH + 1]; + char strPYAutoMap[MAX_WORDS_USER_INPUT * 2 + 1]; + + int iNewPYPhraseCount; + int iOrderCount; + int iNewFreqCount; + + int8_t iYCDZ; + + boolean bIsPYAddFreq; + boolean bIsPYDelFreq; + boolean bIsPYDelUserPhr; + + boolean bSP_UseSemicolon; + boolean bSP; + struct _FcitxInstance *owner; +} FcitxPinyinState; + +void *PYCreate(struct _FcitxInstance* instance); +boolean PYInit (void* arg); +boolean LoadPYBaseDict (struct _FcitxPinyinState* pystate); +boolean LoadPYOtherDict (struct _FcitxPinyinState* pystate); +void ResetPYStatus (void* pystate); +int GetBaseIndex (struct _FcitxPinyinState* pystate, int iPYFA, char* strBase); +INPUT_RETURN_VALUE DoPYInput(void* arg, FcitxKeySym sym, unsigned int state); +void UpdateCodeInputPY (struct _FcitxPinyinState* pystate); +void UpdateFindString (struct _FcitxPinyinState* pystate, int val); +void CalculateCursorPosition (struct _FcitxPinyinState* pystate); + +void PYCreateAuto (struct _FcitxPinyinState* pystate); +INPUT_RETURN_VALUE PYGetCandWords (void* arg); +INPUT_RETURN_VALUE PYGetCandWord (void* arg, struct _CandidateWord* pycandWord); +void PYGetSymCandWords (FcitxPinyinState* pystate, PyFreq* pCurFreq); +void PYAddSymCandWord (HZ* hz, PYCandWord* pycandWord); +void PYGetBaseCandWords (FcitxPinyinState* pystate, PyFreq* pCurFreq); +void PYAddBaseCandWord (PYCandIndex pos, PYCandWord* pycandWord); +void PYGetFreqCandWords (struct _FcitxPinyinState* pystate, PyFreq* pyFreq); +void PYAddFreqCandWord (PyFreq* pyFreq, HZ* hz, char* strPY, PYCandWord* pycandWord); +void PYGetPhraseCandWords (struct _FcitxPinyinState* pystate); +boolean PYAddPhraseCandWord (struct _FcitxPinyinState* pystate, PYCandIndex pos, PyPhrase* phrase, boolean b, PYCandWord* pycandWord); +boolean PYAddUserPhrase (FcitxPinyinState* pystate, char* phrase, char* map); +void PYDelUserPhrase (FcitxPinyinState* pystate, int iPYFA, int iBase, PyUsrPhrase* phrase); +int GetBaseMapIndex (struct _FcitxPinyinState* pystate, char *strMap); +void SavePYUserPhrase (struct _FcitxPinyinState* pystate); +void SavePYFreq (struct _FcitxPinyinState* pystate); +void SavePYIndex (struct _FcitxPinyinState* pystate); +void SavePY (void *arg); + +void PYAddFreq (struct _FcitxPinyinState* pystate, PYCandWord* pycandWord); +void PYDelFreq (struct _FcitxPinyinState* pystate, PYCandWord* pycandWord); +boolean PYIsInFreq (PyFreq* pCurFreq, char* strHZ); + +INPUT_RETURN_VALUE PYGetRemindCandWords (void* arg); +void PYAddRemindCandWord (struct _FcitxPinyinState* pystate, PyPhrase * phrase, PYCandWord* pycandWord); +void PYGetPYByHZ(struct _FcitxPinyinState* pystate, char *strHZ, char *strPY); -//void PP (); #endif + +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/im/pinyin/pyMapTable.c fcitx-4.1.1/src/im/pinyin/pyMapTable.c --- fcitx-4.0.1/src/im/pinyin/pyMapTable.c 2010-11-28 11:55:00.000000000 +0000 +++ fcitx-4.1.1/src/im/pinyin/pyMapTable.c 2011-09-08 16:00:05.000000000 +0000 @@ -18,10 +18,11 @@ * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ***************************************************************************/ -#include "core/fcitx.h" +#include "fcitx/fcitx.h" #include "pyMapTable.h" -ConsonantMap consonantMapTable[] = { +const ConsonantMap consonantMapTable[] = +{ {"a", 'A'} , {"ai", 'B'} @@ -93,45 +94,45 @@ , {"ve", 'g'} , -/* {"ve",'A'}, - {"v", 'B'}, - - {"uo", 'C'}, - {"un", 'D'}, - {"ui", 'E'}, - {"ue", 'F'}, - {"uang", 'G'}, - {"uan", 'H'}, - {"uai", 'I'}, - {"ua", 'J'}, - {"u", 'K'}, - - {"ou", 'L'}, - {"ong", 'M'}, - {"o", 'N'}, - - {"iu", 'O'}, - {"iong", 'P'}, - {"ing", 'Q'}, - {"in", 'R'}, - {"ie", 'S'}, - {"iao", 'T'}, - {"iang", 'U'}, - {"ian", 'V'}, - {"ia", 'W'}, - {"i", 'X'}, - - {"eng", 'Y'}, - {"en", 'Z'}, - {"ei", 'a'}, - {"e", 'b'}, - - {"ao", 'c'}, - {"ang", 'd'}, - {"an", 'e'}, - {"ai", 'f'}, - {"a", 'g'}, - */ + /* {"ve",'A'}, + {"v", 'B'}, + + {"uo", 'C'}, + {"un", 'D'}, + {"ui", 'E'}, + {"ue", 'F'}, + {"uang", 'G'}, + {"uan", 'H'}, + {"uai", 'I'}, + {"ua", 'J'}, + {"u", 'K'}, + + {"ou", 'L'}, + {"ong", 'M'}, + {"o", 'N'}, + + {"iu", 'O'}, + {"iong", 'P'}, + {"ing", 'Q'}, + {"in", 'R'}, + {"ie", 'S'}, + {"iao", 'T'}, + {"iang", 'U'}, + {"ian", 'V'}, + {"ia", 'W'}, + {"i", 'X'}, + + {"eng", 'Y'}, + {"en", 'Z'}, + {"ei", 'a'}, + {"e", 'b'}, + + {"ao", 'c'}, + {"ang", 'd'}, + {"an", 'e'}, + {"ai", 'f'}, + {"a", 'g'}, + */ {"\0", '\0'} , }; @@ -139,7 +140,8 @@ /* * 声母 */ -SyllabaryMap syllabaryMapTable[] = { +const SyllabaryMap syllabaryMapTable[] = +{ /*{"b", 'A'}, {"c", 'B'}, {"ch", 'C'}, @@ -237,3 +239,5 @@ {"\0", '\0'} }; + +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/im/pinyin/pyMapTable.h fcitx-4.1.1/src/im/pinyin/pyMapTable.h --- fcitx-4.0.1/src/im/pinyin/pyMapTable.h 2010-11-28 11:55:00.000000000 +0000 +++ fcitx-4.1.1/src/im/pinyin/pyMapTable.h 2011-09-08 16:00:05.000000000 +0000 @@ -20,14 +20,16 @@ #ifndef _PY_MAP_TABLE_H #define _PY_MAP_TABLE_H -typedef struct { +typedef struct _ConsonantMap { char strPY[5]; char cMap; } ConsonantMap; -typedef struct { +typedef struct _SyllabaryMap { char strPY[4]; char cMap; } SyllabaryMap; #endif + +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/im/pinyin/pyParser.c fcitx-4.1.1/src/im/pinyin/pyParser.c --- fcitx-4.0.1/src/im/pinyin/pyParser.c 2010-12-17 04:18:02.000000000 +0000 +++ fcitx-4.1.1/src/im/pinyin/pyParser.c 2011-09-08 16:00:05.000000000 +0000 @@ -21,32 +21,33 @@ #include #include -#include "core/fcitx.h" +#include "fcitx/fcitx.h" -#include "im/pinyin/pyMapTable.h" -#include "im/pinyin/PYFA.h" -#include "im/pinyin/sp.h" -#include "im/pinyin/pyParser.h" -#include "tools/configfile.h" -#include "core/ime.h" - -extern MHPY MHPY_C[]; -extern PYTABLE PYTable[]; -extern ConsonantMap consonantMapTable[]; -extern SyllabaryMap syllabaryMapTable[]; -extern int iIMEIndex; +#include "pyMapTable.h" +#include "PYFA.h" +#include "sp.h" +#include "pyParser.h" +#include "pyconfig.h" +#include "fcitx/ime.h" +#include "py.h" -int IsSyllabary (const char *strPY, Bool bMode) +extern const ConsonantMap consonantMapTable[]; +extern const SyllabaryMap syllabaryMapTable[]; + +int IsSyllabary(const char *strPY, boolean bMode) { register int i; - for (i = 0; syllabaryMapTable[i].cMap; i++) { - if (bMode) { - if (!strncmp (strPY, syllabaryMapTable[i].strPY, strlen (syllabaryMapTable[i].strPY))) + for (i = 0; syllabaryMapTable[i].cMap; i++) + { + if (bMode) + { + if (!strncmp(strPY, syllabaryMapTable[i].strPY, strlen(syllabaryMapTable[i].strPY))) return i; } - else { - if (!strcmp (strPY, syllabaryMapTable[i].strPY)) + else + { + if (!strcmp(strPY, syllabaryMapTable[i].strPY)) return i; } } @@ -54,17 +55,20 @@ return -1; } -int IsConsonant (const char *strPY, Bool bMode) +int IsConsonant(const char *strPY, boolean bMode) { register int i; - for (i = 0; consonantMapTable[i].cMap; i++) { - if (bMode) { - if (!strncmp (strPY, consonantMapTable[i].strPY, strlen (consonantMapTable[i].strPY))) + for (i = 0; consonantMapTable[i].cMap; i++) + { + if (bMode) + { + if (!strncmp(strPY, consonantMapTable[i].strPY, strlen(consonantMapTable[i].strPY))) return i; } - else { - if (!strcmp (strPY, consonantMapTable[i].strPY)) + else + { + if (!strcmp(strPY, consonantMapTable[i].strPY)) return i; } } @@ -72,38 +76,41 @@ return -1; } -int FindPYFAIndex (const char *strPY, Bool bMode) +int FindPYFAIndex(FcitxPinyinConfig *pyconfig, const char *strPY, boolean bMode) { int i; - int iTemp; - iTemp = -1; - for (i = 0; PYTable[i].strPY[0] != '\0'; i++) { + for (i = 0; pyconfig->PYTable[i].strPY[0] != '\0'; i++) + { int cmp; + if (bMode) - cmp = strncmp (strPY, PYTable[i].strPY, strlen (PYTable[i].strPY)); + cmp = strncmp(strPY, pyconfig->PYTable[i].strPY, strlen(pyconfig->PYTable[i].strPY)); else - cmp = strcmp (strPY, PYTable[i].strPY); - if (!cmp) { - if (!PYTable[i].pMH) + cmp = strcmp(strPY, pyconfig->PYTable[i].strPY); + + if (!cmp) + { + if (!pyconfig->PYTable[i].pMH) return i; - else if (*(PYTable[i].pMH)) - { - /* trick: not the kind of misstype */ - if (PYTable[i].pMH != &fc.bMisstype ) - return i; - else - /* fixed pinyin is valid? */ - if (!PYTable[i + 1].pMH || *(PYTable[i + 1].pMH)) + else + if (*(pyconfig->PYTable[i].pMH)) + { + /* trick: not the kind of misstype */ + if (pyconfig->PYTable[i].pMH != &pyconfig->bMisstype) return i; - } + else + /* fixed pinyin is valid? */ + if (!pyconfig->PYTable[i + 1].pMH || *(pyconfig->PYTable[i + 1].pMH)) + return i; + } } } return -1; } -void ParsePY (const char *strPY, ParsePYStruct * parsePY, PYPARSEINPUTMODE mode, Bool bSP) +void ParsePY(FcitxPinyinConfig *pyconfig, const char *strPY, ParsePYStruct * parsePY, PYPARSEINPUTMODE mode, boolean bSP) { const char *strP; int iIndex; @@ -115,130 +122,175 @@ strP = strPY; parsePY->iHZCount = 0; - if (bSP) { + if (bSP) + { char strQP[7]; char strJP[3]; strJP[2] = '\0'; - while (*strP) { + while (*strP) + { strJP[0] = *strP++; strJP[1] = *strP; - SP2QP (strJP, strQP); - MapPY (strQP, str_Map, mode); + SP2QP(pyconfig, strJP, strQP); + MapPY(pyconfig, strQP, str_Map, mode); - if (!*strP) { - strcpy (parsePY->strMap[parsePY->iHZCount], str_Map); - strcpy (parsePY->strPYParsed[parsePY->iHZCount++], strJP); + if (!*strP) + { + strcpy(parsePY->strMap[parsePY->iHZCount], str_Map); + strcpy(parsePY->strPYParsed[parsePY->iHZCount++], strJP); break; } - iIndex = FindPYFAIndex (strQP, 0); - if (iIndex != -1) { - strcpy (parsePY->strMap[parsePY->iHZCount], str_Map); - strcpy (parsePY->strPYParsed[parsePY->iHZCount++], strJP); + iIndex = FindPYFAIndex(pyconfig, strQP, 0); + + if (iIndex != -1) + { + strcpy(parsePY->strMap[parsePY->iHZCount], str_Map); + strcpy(parsePY->strPYParsed[parsePY->iHZCount++], strJP); strP++; } - else { + else + { strJP[1] = '\0'; - SP2QP (strJP, strQP); - if (!MapPY (strQP, str_Map, mode)) - strcpy (parsePY->strMap[parsePY->iHZCount], strJP); + SP2QP(pyconfig, strJP, strQP); + + if (!MapPY(pyconfig, strQP, str_Map, mode)) + strcpy(parsePY->strMap[parsePY->iHZCount], strJP); else - strcpy (parsePY->strMap[parsePY->iHZCount], str_Map); - strcpy (parsePY->strPYParsed[parsePY->iHZCount++], strJP); + strcpy(parsePY->strMap[parsePY->iHZCount], str_Map); + + strcpy(parsePY->strPYParsed[parsePY->iHZCount++], strJP); } - if (*strP == PY_SEPARATOR) { - strcat (parsePY->strPYParsed[parsePY->iHZCount - 1], PY_SEPARATOR_S); - while (*strP == PY_SEPARATOR ) + if (*strP == PY_SEPARATOR) + { + strcat(parsePY->strPYParsed[parsePY->iHZCount - 1], PY_SEPARATOR_S); + + while (*strP == PY_SEPARATOR) strP++; } } } - else { - Bool bSeperator = False; + else + { + boolean bSeperator = false; - do { - iIndex = FindPYFAIndex (strP, 1); - size_t lIndex = strlen (PYTable[iIndex].strPY); + do + { + iIndex = FindPYFAIndex(pyconfig, strP, 1); - if (iIndex != -1) { - strTemp[0] = PYTable[iIndex].strPY[lIndex - 1]; + if (iIndex != -1) + { + size_t lIndex = strlen(pyconfig->PYTable[iIndex].strPY); + strTemp[0] = pyconfig->PYTable[iIndex].strPY[lIndex - 1]; iTemp = -1; - if (strTemp[0] == 'g' || strTemp[0] == 'n') { - strncpy (strTemp, strP, lIndex - 1); + + if (strTemp[0] == 'g' || strTemp[0] == 'n') + { + strncpy(strTemp, strP, lIndex - 1); strTemp[lIndex - 1] = '\0'; - iTemp = FindPYFAIndex (strTemp, 0); - if (iTemp != -1) { - iTemp = FindPYFAIndex (strP + strlen (PYTable[iTemp].strPY), 1); - if (iTemp != -1) { - if (strlen (PYTable[iTemp].strPY) == 1 || !strcmp ("ng", PYTable[iTemp].strPY)) + iTemp = FindPYFAIndex(pyconfig, strTemp, 0); + + if (iTemp != -1) + { + iTemp = FindPYFAIndex(pyconfig, strP + strlen(pyconfig->PYTable[iTemp].strPY), 1); + + if (iTemp != -1) + { + if (strlen(pyconfig->PYTable[iTemp].strPY) == 1 || !strcmp("ng", pyconfig->PYTable[iTemp].strPY)) iTemp = -1; } - if (iTemp != -1) { - strncpy (strTemp, strP, lIndex - 1); + + if (iTemp != -1) + { + strncpy(strTemp, strP, lIndex - 1); strTemp[lIndex - 1] = '\0'; } } } + if (iTemp == -1) - strcpy (strTemp, PYTable[iIndex].strPY); - MapPY (strTemp, str_Map, mode); - strcpy (parsePY->strMap[parsePY->iHZCount], str_Map); - strP += strlen (strTemp); + strcpy(strTemp, pyconfig->PYTable[iIndex].strPY); + + MapPY(pyconfig, strTemp, str_Map, mode); + + strcpy(parsePY->strMap[parsePY->iHZCount], str_Map); - if (bSeperator) { - bSeperator = False; + strP += strlen(strTemp); + + if (bSeperator) + { + bSeperator = false; parsePY->strPYParsed[parsePY->iHZCount][0] = PY_SEPARATOR; parsePY->strPYParsed[parsePY->iHZCount][1] = '\0'; } else parsePY->strPYParsed[parsePY->iHZCount][0] = '\0'; - strcat (parsePY->strPYParsed[parsePY->iHZCount++], strTemp); + + strcat(parsePY->strPYParsed[parsePY->iHZCount++], strTemp); } - else { - if (fc.bFullPY && *strP != PY_SEPARATOR) + else + { + if (pyconfig->bFullPY && *strP != PY_SEPARATOR) parsePY->iMode = PARSE_ERROR; - iIndex = IsConsonant (strP, 1); - if (-1 != iIndex) { + iIndex = IsConsonant(strP, 1); + + if (-1 != iIndex) + { parsePY->iMode = PARSE_ERROR; - if (bSeperator) { - bSeperator = False; + if (bSeperator) + { + bSeperator = false; parsePY->strPYParsed[parsePY->iHZCount][0] = PY_SEPARATOR; parsePY->strPYParsed[parsePY->iHZCount][1] = '\0'; } else parsePY->strPYParsed[parsePY->iHZCount][0] = '\0'; - strcat (parsePY->strPYParsed[parsePY->iHZCount], consonantMapTable[iIndex].strPY); - MapPY (consonantMapTable[iIndex].strPY, str_Map, mode); - strcpy (parsePY->strMap[parsePY->iHZCount++], str_Map); - strP += strlen (consonantMapTable[iIndex].strPY); + + strcat(parsePY->strPYParsed[parsePY->iHZCount], consonantMapTable[iIndex].strPY); + + MapPY(pyconfig, consonantMapTable[iIndex].strPY, str_Map, mode); + + strcpy(parsePY->strMap[parsePY->iHZCount++], str_Map); + + strP += strlen(consonantMapTable[iIndex].strPY); } - else { - iIndex = IsSyllabary (strP, 1); - if (-1 != iIndex) { - if (bSeperator) { - bSeperator = False; + else + { + iIndex = IsSyllabary(strP, 1); + + if (-1 != iIndex) + { + if (bSeperator) + { + bSeperator = false; parsePY->strPYParsed[parsePY->iHZCount][0] = PY_SEPARATOR; parsePY->strPYParsed[parsePY->iHZCount][1] = '\0'; } else parsePY->strPYParsed[parsePY->iHZCount][0] = '\0'; - strcat (parsePY->strPYParsed[parsePY->iHZCount], syllabaryMapTable[iIndex].strPY); - MapPY (syllabaryMapTable[iIndex].strPY, str_Map, mode); - strcpy (parsePY->strMap[parsePY->iHZCount++], str_Map); - strP += strlen (syllabaryMapTable[iIndex].strPY); + strcat(parsePY->strPYParsed[parsePY->iHZCount], syllabaryMapTable[iIndex].strPY); + + MapPY(pyconfig, syllabaryMapTable[iIndex].strPY, str_Map, mode); + + strcpy(parsePY->strMap[parsePY->iHZCount++], str_Map); + + strP += strlen(syllabaryMapTable[iIndex].strPY); + if (parsePY->iMode != PARSE_ERROR) parsePY->iMode = PARSE_ABBR; } - else { //必定是分隔符 + else + { + //必定是分隔符 strP++; - bSeperator = True; + bSeperator = true; parsePY->strPYParsed[parsePY->iHZCount][0] = PY_SEPARATOR; parsePY->strPYParsed[parsePY->iHZCount][1] = '\0'; parsePY->strMap[parsePY->iHZCount][0] = '0'; @@ -247,14 +299,17 @@ } } } - } while (*strP); + } + while (*strP); } - if (strPY[strlen (strPY) - 1] == PY_SEPARATOR && !bSP) + if (strPY[strlen(strPY) - 1] == PY_SEPARATOR && !bSP) parsePY->iHZCount++; - if (parsePY->iMode != PARSE_ERROR) { + if (parsePY->iMode != PARSE_ERROR) + { parsePY->iMode = parsePY->iMode & PARSE_ABBR; + if (parsePY->iHZCount > 1) parsePY->iMode = parsePY->iMode | PARSE_PHRASE; else @@ -264,132 +319,164 @@ /* * 将一个拼音(包括仅为声母或韵母)转换为拼音映射 - * 返回True为转换成功,否则为False(一般是因为strPY不是一个标准的拼音) + * 返回true为转换成功,否则为false(一般是因为strPY不是一个标准的拼音) */ -Bool MapPY (char *strPYorigin, char strMap[3], PYPARSEINPUTMODE mode) +boolean MapPY(FcitxPinyinConfig* pyconfig, const char* strPYorigin, char strMap[3], PYPARSEINPUTMODE mode) { char str[5]; char strPY[7]; int iIndex; - + strcpy(strPY, strPYorigin); - + size_t len = strlen(strPY); - if (fc.bMisstype && strPY[len - 1] == 'n' && strPY[len - 2] == 'g') + + if (pyconfig->bMisstype && strPY[len - 1] == 'n' && strPY[len - 2] == 'g') { strPY[len - 2] = 'n'; strPY[len - 1] = 'g'; } //特殊处理eng - if (!strcmp (strPY, "eng") && MHPY_C[1].bMode) { - strcpy (strMap, "X0"); - return True; + if (!strcmp(strPY, "eng") && pyconfig->MHPY_C[1].bMode) + { + strcpy(strMap, "X0"); + return true; } strMap[2] = '\0'; - iIndex = IsSyllabary (strPY, 0); - if (-1 != iIndex) { + + iIndex = IsSyllabary(strPY, 0); + + if (-1 != iIndex) + { strMap[0] = syllabaryMapTable[iIndex].cMap; strMap[1] = mode; - return True; + return true; } - iIndex = IsConsonant (strPY, 0); - if (-1 != iIndex) { + iIndex = IsConsonant(strPY, 0); + + if (-1 != iIndex) + { strMap[0] = mode; strMap[1] = consonantMapTable[iIndex].cMap; - return True; + return true; } str[0] = strPY[0]; + str[1] = '\0'; - if (strPY[1] == 'h' || strPY[1] == 'g') { + if (strPY[1] == 'h' || strPY[1] == 'g') + { str[0] = strPY[0]; str[1] = strPY[1]; str[2] = '\0'; - iIndex = IsSyllabary (str, 0); + iIndex = IsSyllabary(str, 0); strMap[0] = consonantMapTable[iIndex].cMap; - iIndex = IsConsonant (strPY + 2, 0); + iIndex = IsConsonant(strPY + 2, 0); strMap[1] = consonantMapTable[iIndex].cMap; } - else { + else + { str[0] = strPY[0]; str[1] = '\0'; - iIndex = IsSyllabary (str, 0); + iIndex = IsSyllabary(str, 0); + if (iIndex == -1) - return False; + return false; + strMap[0] = consonantMapTable[iIndex].cMap; - iIndex = IsConsonant (strPY + 1, 0); + + iIndex = IsConsonant(strPY + 1, 0); + if (iIndex == -1) - return False; + return false; + strMap[1] = consonantMapTable[iIndex].cMap; } - return True; + return true; } /* - * 将一个完整的拼音映射转换为拼音,返回False表示失败, + * 将一个完整的拼音映射转换为拼音,返回false表示失败, * 一般原因是拼音映射不正确 */ -Bool MapToPY (char strMap[3], char *strPY) +boolean MapToPY(char strMap[3], char *strPY) { int i; strPY[0] = '\0'; - if (strMap[0] != ' ') { + + if (strMap[0] != ' ') + { i = 0; - while (syllabaryMapTable[i].cMap) { - if (syllabaryMapTable[i].cMap == strMap[0]) { - strcpy (strPY, syllabaryMapTable[i].strPY); + + while (syllabaryMapTable[i].cMap) + { + if (syllabaryMapTable[i].cMap == strMap[0]) + { + strcpy(strPY, syllabaryMapTable[i].strPY); break; } + i++; } - if (!strlen (strPY)) - return False; + + if (!strlen(strPY)) + return false; } - if (strMap[1] != ' ') { + if (strMap[1] != ' ') + { i = 0; - while (consonantMapTable[i].cMap) { - if (consonantMapTable[i].cMap == strMap[1]) { - strcat (strPY, consonantMapTable[i].strPY); - return True; + + while (consonantMapTable[i].cMap) + { + if (consonantMapTable[i].cMap == strMap[1]) + { + strcat(strPY, consonantMapTable[i].strPY); + return true; } + i++; } } else - return True; + return true; - return False; + return false; } /* * 比较一位拼音映射 * 0表示相等 - * b指示是声母还是韵母,True表示声母 + * b指示是声母还是韵母,true表示声母 */ -int Cmp1Map (char map1, char map2, Bool b, Bool bUseMH, Bool bSP) +int Cmp1Map(FcitxPinyinConfig* pyconfig, char map1, char map2, boolean b, boolean bUseMH, boolean bSP) { int iVal1, iVal2; - if (map2 == '0' || map1 == '0') { - if (map1 == ' ' || map2 == ' ' || !fc.bFullPY || bSP) + if (map2 == '0' || map1 == '0') + { + if (map1 == ' ' || map2 == ' ' || !pyconfig->bFullPY || bSP) return 0; } - else { - if (b) { - iVal1 = GetMHIndex_S (map1, bUseMH); - iVal2 = GetMHIndex_S (map2, bUseMH); - } - else { - iVal1 = GetMHIndex_C (map1); - iVal2 = GetMHIndex_C (map2); + else + { + if (b) + { + iVal1 = GetMHIndex_S(pyconfig->MHPY_S, map1, bUseMH); + iVal2 = GetMHIndex_S(pyconfig->MHPY_S, map2, bUseMH); + } + else + { + iVal1 = GetMHIndex_C(pyconfig->MHPY_C, map1); + iVal2 = GetMHIndex_C(pyconfig->MHPY_C, map2); } + if (iVal1 == iVal2) if (iVal1 >= 0) return 0; @@ -404,19 +491,19 @@ * >0表示前者大 * <0表示后者大 */ -int Cmp2Map (char map1[3], char map2[3], Bool bSP) +int Cmp2Map(FcitxPinyinConfig* pyconfig, char map1[3], char map2[3], boolean bSP) { int i; - if (IsZ_C_S(map2[0]) && map2[1]=='0') - i = Cmp1Map (map1[0], map2[0], True, True, bSP); + if (IsZ_C_S(map2[0]) && map2[1] == '0') + i = Cmp1Map(pyconfig, map1[0], map2[0], true, true, bSP); else - i = Cmp1Map (map1[0], map2[0], True, False, bSP); + i = Cmp1Map(pyconfig, map1[0], map2[0], true, false, bSP); if (i) return i; - return Cmp1Map (map1[1], map2[1], False, False, bSP); + return Cmp1Map(pyconfig, map1[1], map2[1], false, false, bSP); } /* @@ -425,18 +512,21 @@ * 否 返回值不为0 * *iMatchedLength 记录了二者能够匹配的长度 */ -int CmpMap (char *strMap1, char *strMap2, int *iMatchedLength, Bool bSP) +int CmpMap(FcitxPinyinConfig* pyconfig, char *strMap1, char *strMap2, int *iMatchedLength, boolean bSP) { int val; *iMatchedLength = 0; - for (;;) { + + for (;;) + { if (!strMap2[*iMatchedLength]) return (strMap1[*iMatchedLength] - strMap2[*iMatchedLength]); - if ( ((*iMatchedLength + 1) % 2) && (IsZ_C_S(strMap2[*iMatchedLength]) && (strMap2[*iMatchedLength + 1]=='0' || !strMap2[*iMatchedLength + 1]) ) ) - val = Cmp1Map (strMap1[*iMatchedLength], strMap2[*iMatchedLength], (*iMatchedLength + 1) % 2, True, bSP); + + if (((*iMatchedLength + 1) % 2) && (IsZ_C_S(strMap2[*iMatchedLength]) && (strMap2[*iMatchedLength + 1] == '0' || !strMap2[*iMatchedLength + 1]))) + val = Cmp1Map(pyconfig, strMap1[*iMatchedLength], strMap2[*iMatchedLength], (*iMatchedLength + 1) % 2, true, bSP); else - val = Cmp1Map (strMap1[*iMatchedLength], strMap2[*iMatchedLength], (*iMatchedLength + 1) % 2, False, bSP); + val = Cmp1Map(pyconfig, strMap1[*iMatchedLength], strMap2[*iMatchedLength], (*iMatchedLength + 1) % 2, false, bSP); if (val) return val; @@ -446,3 +536,5 @@ return 0; } + +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/im/pinyin/pyParser.h fcitx-4.1.1/src/im/pinyin/pyParser.h --- fcitx-4.0.1/src/im/pinyin/pyParser.h 2010-11-28 11:55:00.000000000 +0000 +++ fcitx-4.1.1/src/im/pinyin/pyParser.h 2011-09-08 16:00:05.000000000 +0000 @@ -20,39 +20,46 @@ #ifndef _PY_PARSER_H #define _PY_PARSER_H -#include "py.h" +#include +#include "fcitx/fcitx.h" +#include "fcitx-config/fcitx-config.h" +#include "pydef.h" #define PY_SEPARATOR '\'' #define PY_SEPARATOR_S "'" -typedef enum PARSEPYMODE { +typedef enum _PY_PARSE_INPUT_MODE { PARSE_ERROR = 0, PARSE_SINGLEHZ = 1, PARSE_PHRASE = 2, PARSE_ABBR = 4 } PY_PARSE_INPUT_MODE; -typedef enum { +typedef enum _PYPARSEINPUTMODE { PY_PARSE_INPUT_USER = '0', PY_PARSE_INPUT_SYSTEM = ' ' } PYPARSEINPUTMODE; //这个值不能随意修改 -typedef struct { +typedef struct _ParsePYStruct { char strPYParsed[MAX_WORDS_USER_INPUT + 3][MAX_PY_LENGTH + 2]; char strMap[MAX_WORDS_USER_INPUT + 3][3]; - INT8 iHZCount; - INT8 iMode; + int8_t iHZCount; + char iMode; } ParsePYStruct; -int IsSyllabary (const char *strPY, Bool bMode); -int IsConsonant (const char *strPY, Bool bMode); -int FindPYFAIndex (const char *strPY, Bool bMode); -void ParsePY (const char *strPY, ParsePYStruct * parsePY, PYPARSEINPUTMODE mode, Bool bSP); -Bool MapPY (char *strPY, char strMap[3], PYPARSEINPUTMODE mode); - -Bool MapToPY (char strMap[3], char *strPY); -int CmpMap (char *strMap1, char *strMap2, int *iMatchedLength, Bool bSP); -int Cmp1Map (char map1, char map2, Bool b, Bool bUseMH, Bool bSP); -int Cmp2Map (char map1[3], char map2[3], Bool bSP); +struct _FcitxPinyinConfig; + +int IsSyllabary (const char *strPY, boolean bMode); +int IsConsonant (const char *strPY, boolean bMode); +int FindPYFAIndex (struct _FcitxPinyinConfig* pyconfig, const char *strPY, boolean bMode); +void ParsePY (struct _FcitxPinyinConfig* pyconfig, const char* strPY, ParsePYStruct* parsePY, PYPARSEINPUTMODE mode, boolean bSP); +boolean MapPY (struct _FcitxPinyinConfig* pyconfig, const char* strPYorigin, char strMap[3], PYPARSEINPUTMODE mode); + +boolean MapToPY (char strMap[3], char *strPY); +int CmpMap (struct _FcitxPinyinConfig* pyconfig, char* strMap1, char* strMap2, int* iMatchedLength, boolean bSP); +int Cmp1Map (struct _FcitxPinyinConfig* pyconfig, char map1, char map2, boolean b, boolean bUseMH, boolean bSP); +int Cmp2Map (struct _FcitxPinyinConfig* pyconfig, char map1[3], char map2[3], boolean bSP); #endif + +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/im/pinyin/sp.c fcitx-4.1.1/src/im/pinyin/sp.c --- fcitx-4.0.1/src/im/pinyin/sp.c 2010-12-17 04:18:06.000000000 +0000 +++ fcitx-4.1.1/src/im/pinyin/sp.c 2011-09-08 16:00:05.000000000 +0000 @@ -22,16 +22,18 @@ #include #include -#include "core/fcitx.h" +#include "fcitx/fcitx.h" -#include "im/pinyin/sp.h" -#include "im/pinyin/pyMapTable.h" -#include "im/pinyin/pyParser.h" -#include "ui/MainWindow.h" -#include "tools/configfile.h" +#include "py.h" +#include "sp.h" +#include "pyMapTable.h" +#include "pyParser.h" #include "fcitx-config/xdg.h" +#include "pyconfig.h" +#include -SP_C SPMap_C[] = { +const SP_C SPMap_C_Template[] = +{ {"ai", 'l'} , {"an", 'j'} @@ -95,7 +97,8 @@ {"\0", '\0'} }; -SP_S SPMap_S[] = { +const SP_S SPMap_S_Template[] = +{ {"ch", 'i'} , {"sh", 'u'} @@ -105,278 +108,289 @@ {"\0", '\0'} }; -Bool bSP_UseSemicolon = False; -Bool bSP = False; -char cNonS = 'o'; - -//extern Bool bSingleHZMode; - #define STR_SPCONF_NAME 0 #define cstr(b) (strConstSPConf[STR_SPCONF_##b]) #define cstrlen(b) (strlen(cstr(b))) -char* strConstSPConf[] = { +char* strConstSPConf[] = +{ "方案名称=" }; -void SPInit (void) +boolean SPInit(void *arg) { - bSP = True; - //SingleHZMode = False; + FcitxPinyinState *pystate = (FcitxPinyinState*)arg; + pystate->bSP = true; + FcitxPinyinConfig* pyconfig = &pystate->pyconfig; + memcpy(pyconfig->SPMap_S, SPMap_S_Template, sizeof(SPMap_S_Template)); + memcpy(pyconfig->SPMap_C, SPMap_C_Template, sizeof(SPMap_C_Template)); - LoadSPData (); + LoadSPData(pystate); + return true; } -void LoadSPData (void) +void LoadSPData(FcitxPinyinState *pystate) { FILE *fp; char str[100], strS[5], *pstr; int i; - Bool bIsDefault = False; + boolean bIsDefault = false; + FcitxPinyinConfig* pyconfig = &pystate->pyconfig; + SP_C* SPMap_C = pyconfig->SPMap_C; + SP_S* SPMap_S = pyconfig->SPMap_S; /* reset work around */ i = 0; - while (SPMap_C[i].strQP[0]) { + + while (SPMap_C[i].strQP[0]) + { if (strlen(SPMap_C[i].strQP) == 1) SPMap_C[i].cJP = SPMap_C[i].strQP[0]; + i ++ ; } - fp = GetXDGFileData("sp.dat", "rt", NULL); + fp = GetXDGFileWithPrefix("pinyin", "sp.dat", "rt", NULL); + + while (1) + { + if (!fgets(str, 100, fp)) + break; + + i = strlen(str) - 1; + + while ((i >= 0) && (str[i] == ' ' || str[i] == '\n')) + str[i--] = '\0'; + + pstr = str; + + if (*pstr == ' ' || *pstr == '\t') + pstr++; + + if (!strlen(pstr) || pstr[0] == '#') + continue; + + if (!strncmp(pstr, cstr(NAME), cstrlen(NAME))) + { + pstr += cstrlen(NAME); + + if (*pstr == ' ' || *pstr == '\t') + pstr++; + + bIsDefault = !(strcmp(pyconfig->strDefaultSP, pstr)); + + continue; + } + + if (!bIsDefault) + continue; + + if (pstr[0] == '=') //是零声母设置 + pyconfig->cNonS = tolower(pstr[1]); + else + { + i = 0; + + while (pstr[i]) + { + if (pstr[i] == '=') + { + strncpy(strS, pstr, i); + strS[i] = '\0'; + + pstr += i; + i = GetSPIndexQP_S(pyconfig, strS); - while (1) { - if (!fgets (str, 100, fp)) - break; - - i = strlen (str) - 1; - while ((i >= 0) && (str[i] == ' ' || str[i] == '\n')) - str[i--] = '\0'; - - pstr = str; - if (*pstr == ' ' || *pstr == '\t') - pstr++; - if (!strlen (pstr) || pstr[0] == '#') - continue; - - if (!strncmp (pstr, cstr(NAME), cstrlen(NAME))) { - pstr += cstrlen(NAME); - if (*pstr == ' ' || *pstr == '\t') - pstr++; - bIsDefault = !(strcmp (fc.strDefaultSP, pstr)); - continue; - } - - if (!bIsDefault) - continue; - - if (pstr[0] == '=') //是零声母设置 - cNonS = tolower (pstr[1]); - else { - i = 0; - while (pstr[i]) { - if (pstr[i] == '=') { - strncpy (strS, pstr, i); - strS[i] = '\0'; - - pstr += i; - i = GetSPIndexQP_S (strS); - if (i != -1) - SPMap_S[i].cJP = tolower (pstr[1]); - else { - i = GetSPIndexQP_C (strS); - if (i != -1) - SPMap_C[i].cJP = tolower (pstr[1]); - } - break; - } - i++; - } - } + if (i != -1) + SPMap_S[i].cJP = tolower(pstr[1]); + else + { + i = GetSPIndexQP_C(pyconfig, strS); + + if (i != -1) + SPMap_C[i].cJP = tolower(pstr[1]); + } + + break; + } + + i++; + } + } } - fclose (fp); + fclose(fp); //下面判断是否使用了';' i = 0; - while (SPMap_C[i].strQP[0]) { - if (SPMap_C[i++].cJP == ';') - bSP_UseSemicolon = True; - } - if (!bSP_UseSemicolon) { - i = 0; - while (SPMap_S[i].strQP[0]) { - if (SPMap_S[i++].cJP == ';') - bSP_UseSemicolon = True; - } - } - if (!bSP_UseSemicolon) { - if (cNonS == ';') - bSP_UseSemicolon = True; - } -} -/* - * 将一个全拼转换为双拼 - * strQP只能是一个标准的全拼,本函数不检查错误 - */ -/*void QP2SP (char *strQP, char *strSP) -{ - //IsConsonant - int iIndex; - - strSP[2] = '\0'; - //"ang"是唯一一个可单独使用、长为3的拼音,单独处理 - if (!strcmp (strQP, "ang")) { - strSP[0] = cNonS; - strSP[1] = SPMap_C[GetSPIndexQP_C (strQP)].cJP; - return; - } - if (strlen (strQP) == 1) { - strSP[0] = cNonS; - strSP[1] = *strQP; - return; - } - if (strlen (strQP) == 2) { - iIndex = GetSPIndexQP_C (strQP); - if (iIndex == -1) - strcpy (strSP, strQP); - else { - strSP[0] = cNonS; - strSP[1] = SPMap_C[iIndex].cJP; - } - - return; - } - - iIndex = IsSyllabary (strQP, True); - - strQP += strlen (syllabaryMapTable[iIndex].strPY); - if (*strQP) { - if (strlen (syllabaryMapTable[iIndex].strPY) == 1) - strSP[0] = syllabaryMapTable[iIndex].strPY[0]; - else - strSP[0] = SPMap_S[GetSPIndexQP_S (syllabaryMapTable[iIndex].strPY)].cJP; - if (strlen (strQP) == 1) - strSP[1] = strQP[0]; - else - strSP[1] = SPMap_C[GetSPIndexQP_C (strQP)].cJP; - } - else { - strSP[0] = cNonS; - strSP[1] = SPMap_C[GetSPIndexQP_C (syllabaryMapTable[iIndex].strPY)].cJP; + while (SPMap_C[i].strQP[0]) + { + if (SPMap_C[i++].cJP == ';') + pystate->bSP_UseSemicolon = true; + } + + if (!pystate->bSP_UseSemicolon) + { + i = 0; + + while (SPMap_S[i].strQP[0]) + { + if (SPMap_S[i++].cJP == ';') + pystate->bSP_UseSemicolon = true; + } + } + + if (!pystate->bSP_UseSemicolon) + { + if (pyconfig->cNonS == ';') + pystate->bSP_UseSemicolon = true; } } -*/ + /* * 此处只转换单个双拼,并且不检查错误 */ -void SP2QP (char *strSP, char *strQP) +void SP2QP(FcitxPinyinConfig* pyconfig, char *strSP, char *strQP) { int iIndex1 = 0, iIndex2 = 0; char strTmp[2]; char str_QP[MAX_PY_LENGTH + 1]; + SP_C* SPMap_C = pyconfig->SPMap_C; + SP_S* SPMap_S = pyconfig->SPMap_S; strTmp[1] = '\0'; strQP[0] = '\0'; - if (strSP[0] != cNonS) { - iIndex1 = GetSPIndexJP_S (*strSP); - if (iIndex1 == -1) { - strTmp[0] = strSP[0]; - strcat (strQP, strTmp); - } - else - strcat (strQP, SPMap_S[iIndex1].strQP); - } - else if (!strSP[1]) - strcpy (strQP, strSP); - - if (strSP[1]) { - iIndex2 = -1; - while (1) { - iIndex2 = GetSPIndexJP_C (strSP[1], iIndex2 + 1); - if (iIndex2 == -1) { - strTmp[0] = strSP[1]; - strcat (strQP, strTmp); - break; - } - - strcpy (str_QP, strQP); - strcat (strQP, SPMap_C[iIndex2].strQP); - if (FindPYFAIndex (strQP, False) != -1) - break; + if (strSP[0] != pyconfig->cNonS) + { + iIndex1 = GetSPIndexJP_S(pyconfig, *strSP); + + if (iIndex1 == -1) + { + strTmp[0] = strSP[0]; + strcat(strQP, strTmp); + } + else + strcat(strQP, SPMap_S[iIndex1].strQP); + } + else + if (!strSP[1]) + strcpy(strQP, strSP); + + if (strSP[1]) + { + iIndex2 = -1; + + while (1) + { + iIndex2 = GetSPIndexJP_C(pyconfig, strSP[1], iIndex2 + 1); + + if (iIndex2 == -1) + { + strTmp[0] = strSP[1]; + strcat(strQP, strTmp); + break; + } + + strcpy(str_QP, strQP); + + strcat(strQP, SPMap_C[iIndex2].strQP); + + if (FindPYFAIndex(pyconfig, strQP, false) != -1) + break; - strcpy (strQP, str_QP); - } + strcpy(strQP, str_QP); + } } - if (FindPYFAIndex (strQP, False) != -1) - iIndex2 = 0; //这只是将iIndex2置为非-1,以免后面的判断 + if (FindPYFAIndex(pyconfig, strQP, false) != -1) + iIndex2 = 0; //这只是将iIndex2置为非-1,以免后面的判断 strTmp[0] = strSP[0]; + strTmp[1] = '\0'; - if ((iIndex1 == -1 && !(IsSyllabary (strTmp, 0))) || iIndex2 == -1) { - iIndex1 = FindPYFAIndex (strSP, False); - if (iIndex1 != -1) - strcpy (strQP, strSP); + + if ((iIndex1 == -1 && !(IsSyllabary(strTmp, 0))) || iIndex2 == -1) + { + iIndex1 = FindPYFAIndex(pyconfig, strSP, false); + + if (iIndex1 != -1) + strcpy(strQP, strSP); } } -int GetSPIndexQP_S (char *str) +int GetSPIndexQP_S(FcitxPinyinConfig* pyconfig, char *str) { int i; + SP_S* SPMap_S = pyconfig->SPMap_S; i = 0; - while (SPMap_S[i].strQP[0]) { - if (!strcmp (str, SPMap_S[i].strQP)) - return i; - i++; + while (SPMap_S[i].strQP[0]) + { + if (!strcmp(str, SPMap_S[i].strQP)) + return i; + + i++; } return -1; } -int GetSPIndexQP_C (char *str) +int GetSPIndexQP_C(FcitxPinyinConfig* pyconfig, char *str) { int i; + SP_C* SPMap_C = pyconfig->SPMap_C; i = 0; - while (SPMap_C[i].strQP[0]) { - if (!strcmp (str, SPMap_C[i].strQP)) - return i; - i++; + + while (SPMap_C[i].strQP[0]) + { + if (!strcmp(str, SPMap_C[i].strQP)) + return i; + + i++; } return -1; } -int GetSPIndexJP_S (char c) +int GetSPIndexJP_S(FcitxPinyinConfig* pyconfig, char c) { int i; + SP_S* SPMap_S = pyconfig->SPMap_S; i = 0; - while (SPMap_S[i].strQP[0]) { - if (c == SPMap_S[i].cJP) - return i; - i++; + while (SPMap_S[i].strQP[0]) + { + if (c == SPMap_S[i].cJP) + return i; + + i++; } return -1; } -int GetSPIndexJP_C (char c, int iStart) +int GetSPIndexJP_C(FcitxPinyinConfig* pyconfig, char c, int iStart) { int i; + SP_C* SPMap_C = pyconfig->SPMap_C; i = iStart; - while (SPMap_C[i].strQP[0]) { - if (c == SPMap_C[i].cJP) - return i; - i++; + + while (SPMap_C[i].strQP[0]) + { + if (c == SPMap_C[i].cJP) + return i; + + i++; } return -1; } + +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/im/pinyin/sp.h fcitx-4.1.1/src/im/pinyin/sp.h --- fcitx-4.0.1/src/im/pinyin/sp.h 2010-11-28 11:55:00.000000000 +0000 +++ fcitx-4.1.1/src/im/pinyin/sp.h 2011-09-08 16:00:05.000000000 +0000 @@ -20,10 +20,9 @@ #ifndef _SP_H #define _SP_H -#define strNameOfShuangpin __("Shuangpin") -#define strIconNameOfShuangpin "shuangpin" +#include "fcitx-config/fcitx-config.h" -typedef enum { +typedef enum _SP_FROM { SP_FROM_USER=0, SP_FROM_SYSTEM_CONFIG, SP_FROM_SYSTEM_SP_CONFIG @@ -39,14 +38,19 @@ char cJP; } SP_S; -void SPInit (void); -void LoadSPData (void); +struct _FcitxPinyinConfig; +struct _FcitxPinyinState; + +boolean SPInit (void* arg); +void LoadSPData (struct _FcitxPinyinState* pystate); //void QP2SP (char *strQP, char *strSP); -void SP2QP (char *strSP, char *strQP); -int GetSPIndexQP_C (char *str); -int GetSPIndexQP_S (char *str); -int GetSPIndexJP_C (char c, int iStart); -int GetSPIndexJP_S (char c); +void SP2QP (struct _FcitxPinyinConfig* pyconfig, char* strSP, char* strQP); +int GetSPIndexQP_C (struct _FcitxPinyinConfig* pyconfig, char *str); +int GetSPIndexQP_S (struct _FcitxPinyinConfig* pyconfig, char *str); +int GetSPIndexJP_C (struct _FcitxPinyinConfig* pyconfig, char c, int iStart); +int GetSPIndexJP_S (struct _FcitxPinyinConfig* pyconfig, char c); #endif + +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/im/qw/CMakeLists.txt fcitx-4.1.1/src/im/qw/CMakeLists.txt --- fcitx-4.0.1/src/im/qw/CMakeLists.txt 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/im/qw/CMakeLists.txt 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,7 @@ + +set(FCITX_QUWEI_SOURCES + qw.c +) + +fcitx_add_addon(fcitx-qw ${FCITX_QUWEI_SOURCES}) +fcitx_add_addon_conf_file(fcitx-qw.conf) \ No newline at end of file diff -Nru fcitx-4.0.1/src/im/qw/fcitx-qw.conf.in fcitx-4.1.1/src/im/qw/fcitx-qw.conf.in --- fcitx-4.0.1/src/im/qw/fcitx-qw.conf.in 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/im/qw/fcitx-qw.conf.in 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,8 @@ +[Addon] +Name=fcitx-qw +_GeneralName=Quwei +_Comment=Quwei Input Method for Fcitx +Category=InputMethod +Enabled=False +Library=fcitx-qw.so +Type=SharedLibrary \ No newline at end of file diff -Nru fcitx-4.0.1/src/im/qw/Makefile.am fcitx-4.1.1/src/im/qw/Makefile.am --- fcitx-4.0.1/src/im/qw/Makefile.am 2010-11-28 11:55:00.000000000 +0000 +++ fcitx-4.1.1/src/im/qw/Makefile.am 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -INCLUDES = \ - -I$(top_srcdir)/lib \ - -I$(top_srcdir)/src \ - @CAIRO_XLIB_CFLAGS@ \ - $(NULL) - -noinst_LIBRARIES=libimqw.a -libimqw_a_SOURCES= qw.c qw.h - diff -Nru fcitx-4.0.1/src/im/qw/Makefile.in fcitx-4.1.1/src/im/qw/Makefile.in --- fcitx-4.0.1/src/im/qw/Makefile.in 2010-12-17 04:26:31.000000000 +0000 +++ fcitx-4.1.1/src/im/qw/Makefile.in 1970-01-01 00:00:00.000000000 +0000 @@ -1,537 +0,0 @@ -# Makefile.in generated by automake 1.11.1 from Makefile.am. -# @configure_input@ - -# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, -# Inc. -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - -@SET_MAKE@ - -VPATH = @srcdir@ -pkgdatadir = $(datadir)/@PACKAGE@ -pkgincludedir = $(includedir)/@PACKAGE@ -pkglibdir = $(libdir)/@PACKAGE@ -pkglibexecdir = $(libexecdir)/@PACKAGE@ -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = @build@ -host_triplet = @host@ -subdir = src/im/qw -DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/configure.in -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -mkinstalldirs = $(install_sh) -d -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -CONFIG_CLEAN_VPATH_FILES = -LIBRARIES = $(noinst_LIBRARIES) -ARFLAGS = cru -AM_V_AR = $(am__v_AR_$(V)) -am__v_AR_ = $(am__v_AR_$(AM_DEFAULT_VERBOSITY)) -am__v_AR_0 = @echo " AR " $@; -AM_V_at = $(am__v_at_$(V)) -am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) -am__v_at_0 = @ -libimqw_a_AR = $(AR) $(ARFLAGS) -libimqw_a_LIBADD = -am_libimqw_a_OBJECTS = qw.$(OBJEXT) -libimqw_a_OBJECTS = $(am_libimqw_a_OBJECTS) -DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles -am__mv = mv -f -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -AM_V_lt = $(am__v_lt_$(V)) -am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) -am__v_lt_0 = --silent -LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ - $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ - $(AM_CFLAGS) $(CFLAGS) -AM_V_CC = $(am__v_CC_$(V)) -am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) -am__v_CC_0 = @echo " CC " $@; -CCLD = $(CC) -LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -AM_V_CCLD = $(am__v_CCLD_$(V)) -am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) -am__v_CCLD_0 = @echo " CCLD " $@; -AM_V_GEN = $(am__v_GEN_$(V)) -am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) -am__v_GEN_0 = @echo " GEN " $@; -SOURCES = $(libimqw_a_SOURCES) -DIST_SOURCES = $(libimqw_a_SOURCES) -ETAGS = etags -CTAGS = ctags -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -ACLOCAL = @ACLOCAL@ -ALL_LINGUAS = @ALL_LINGUAS@ -AMTAR = @AMTAR@ -AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ -AR = @AR@ -AUTOCONF = @AUTOCONF@ -AUTOHEADER = @AUTOHEADER@ -AUTOMAKE = @AUTOMAKE@ -AWK = @AWK@ -CAIRO_XLIB_CFLAGS = @CAIRO_XLIB_CFLAGS@ -CAIRO_XLIB_LIBS = @CAIRO_XLIB_LIBS@ -CC = @CC@ -CCDEPMODE = @CCDEPMODE@ -CFLAGS = @CFLAGS@ -CPP = @CPP@ -CPPFLAGS = @CPPFLAGS@ -CYGPATH_W = @CYGPATH_W@ -DATADIRNAME = @DATADIRNAME@ -DBUS_CFLAGS = @DBUS_CFLAGS@ -DBUS_LIBS = @DBUS_LIBS@ -DEFS = @DEFS@ -DEPDIR = @DEPDIR@ -DLLTOOL = @DLLTOOL@ -DSYMUTIL = @DSYMUTIL@ -DUMPBIN = @DUMPBIN@ -ECHO_C = @ECHO_C@ -ECHO_N = @ECHO_N@ -ECHO_T = @ECHO_T@ -EGREP = @EGREP@ -EXEEXT = @EXEEXT@ -FGREP = @FGREP@ -FONTCONFIG_CFLAGS = @FONTCONFIG_CFLAGS@ -FONTCONFIG_LIBS = @FONTCONFIG_LIBS@ -GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ -GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ -GMSGFMT = @GMSGFMT@ -GMSGFMT_015 = @GMSGFMT_015@ -GREP = @GREP@ -HOST_LIBS = @HOST_LIBS@ -INCINTL = @INCINTL@ -INSTALL = @INSTALL@ -INSTALL_DATA = @INSTALL_DATA@ -INSTALL_PROGRAM = @INSTALL_PROGRAM@ -INSTALL_SCRIPT = @INSTALL_SCRIPT@ -INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ -INTLLIBS = @INTLLIBS@ -INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ -INTLTOOL_MERGE = @INTLTOOL_MERGE@ -INTLTOOL_PERL = @INTLTOOL_PERL@ -INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ -INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ -LD = @LD@ -LDFLAGS = @LDFLAGS@ -LIBICONV = @LIBICONV@ -LIBINTL = @LIBINTL@ -LIBOBJS = @LIBOBJS@ -LIBS = @LIBS@ -LIBTOOL = @LIBTOOL@ -LIPO = @LIPO@ -LN_S = @LN_S@ -LTLIBICONV = @LTLIBICONV@ -LTLIBINTL = @LTLIBINTL@ -LTLIBOBJS = @LTLIBOBJS@ -MAKEINFO = @MAKEINFO@ -MANIFEST_TOOL = @MANIFEST_TOOL@ -MD5SUM = @MD5SUM@ -MKDIR_P = @MKDIR_P@ -MSGFMT = @MSGFMT@ -MSGFMT_015 = @MSGFMT_015@ -MSGMERGE = @MSGMERGE@ -NM = @NM@ -NMEDIT = @NMEDIT@ -OBJDUMP = @OBJDUMP@ -OBJEXT = @OBJEXT@ -OTOOL = @OTOOL@ -OTOOL64 = @OTOOL64@ -PACKAGE = @PACKAGE@ -PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ -PACKAGE_NAME = @PACKAGE_NAME@ -PACKAGE_STRING = @PACKAGE_STRING@ -PACKAGE_TARNAME = @PACKAGE_TARNAME@ -PACKAGE_URL = @PACKAGE_URL@ -PACKAGE_VERSION = @PACKAGE_VERSION@ -PANGOCAIRO_CFLAGS = @PANGOCAIRO_CFLAGS@ -PANGOCAIRO_LIBS = @PANGOCAIRO_LIBS@ -PATH_SEPARATOR = @PATH_SEPARATOR@ -PKG_CONFIG = @PKG_CONFIG@ -PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ -PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ -POSUB = @POSUB@ -RANLIB = @RANLIB@ -SED = @SED@ -SET_MAKE = @SET_MAKE@ -SHELL = @SHELL@ -STRIP = @STRIP@ -TAR = @TAR@ -USE_NLS = @USE_NLS@ -VERSION = @VERSION@ -WGET = @WGET@ -XGETTEXT = @XGETTEXT@ -XGETTEXT_015 = @XGETTEXT_015@ -XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ -XMKMF = @XMKMF@ -XRENDER_CFLAGS = @XRENDER_CFLAGS@ -XRENDER_LIBS = @XRENDER_LIBS@ -X_CFLAGS = @X_CFLAGS@ -X_LIBS = @X_LIBS@ -abs_builddir = @abs_builddir@ -abs_srcdir = @abs_srcdir@ -abs_top_builddir = @abs_top_builddir@ -abs_top_srcdir = @abs_top_srcdir@ -ac_ct_AR = @ac_ct_AR@ -ac_ct_CC = @ac_ct_CC@ -ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ -am__include = @am__include@ -am__leading_dot = @am__leading_dot@ -am__quote = @am__quote@ -am__tar = @am__tar@ -am__untar = @am__untar@ -bindir = @bindir@ -build = @build@ -build_alias = @build_alias@ -build_cpu = @build_cpu@ -build_os = @build_os@ -build_vendor = @build_vendor@ -builddir = @builddir@ -datadir = @datadir@ -datarootdir = @datarootdir@ -docdir = @docdir@ -dvidir = @dvidir@ -exec_prefix = @exec_prefix@ -host = @host@ -host_alias = @host_alias@ -host_cpu = @host_cpu@ -host_os = @host_os@ -host_vendor = @host_vendor@ -htmldir = @htmldir@ -includedir = @includedir@ -infodir = @infodir@ -install_sh = @install_sh@ -libdir = @libdir@ -libexecdir = @libexecdir@ -localedir = @localedir@ -localstatedir = @localstatedir@ -mandir = @mandir@ -mkdir_p = @mkdir_p@ -oldincludedir = @oldincludedir@ -pdfdir = @pdfdir@ -prefix = @prefix@ -program_transform_name = @program_transform_name@ -psdir = @psdir@ -sbindir = @sbindir@ -sharedstatedir = @sharedstatedir@ -srcdir = @srcdir@ -sysconfdir = @sysconfdir@ -target_alias = @target_alias@ -top_build_prefix = @top_build_prefix@ -top_builddir = @top_builddir@ -top_srcdir = @top_srcdir@ -INCLUDES = \ - -I$(top_srcdir)/lib \ - -I$(top_srcdir)/src \ - @CAIRO_XLIB_CFLAGS@ \ - $(NULL) - -noinst_LIBRARIES = libimqw.a -libimqw_a_SOURCES = qw.c qw.h -all: all-am - -.SUFFIXES: -.SUFFIXES: .c .lo .o .obj -$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ - && { if test -f $@; then exit 0; else break; fi; }; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/im/qw/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign src/im/qw/Makefile -.PRECIOUS: Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(am__aclocal_m4_deps): - -clean-noinstLIBRARIES: - -test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES) -libimqw.a: $(libimqw_a_OBJECTS) $(libimqw_a_DEPENDENCIES) - $(AM_V_at)-rm -f libimqw.a - $(AM_V_AR)$(libimqw_a_AR) libimqw.a $(libimqw_a_OBJECTS) $(libimqw_a_LIBADD) - $(AM_V_at)$(RANLIB) libimqw.a - -mostlyclean-compile: - -rm -f *.$(OBJEXT) - -distclean-compile: - -rm -f *.tab.c - -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/qw.Po@am__quote@ - -.c.o: -@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c $< - -.c.obj: -@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` - -.c.lo: -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs - -ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - mkid -fID $$unique -tags: TAGS - -TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - set x; \ - here=`pwd`; \ - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: CTAGS -CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d "$(distdir)/$$file"; then \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ - else \ - test -f "$(distdir)/$$file" \ - || cp -p $$d/$$file "$(distdir)/$$file" \ - || exit 1; \ - fi; \ - done -check-am: all-am -check: check-am -all-am: Makefile $(LIBRARIES) -installdirs: -install: install-am -install-exec: install-exec-am -install-data: install-data-am -uninstall: uninstall-am - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-am -install-strip: - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - `test -z '$(STRIP)' || \ - echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install -mostlyclean-generic: - -clean-generic: - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-am - -clean-am: clean-generic clean-libtool clean-noinstLIBRARIES \ - mostlyclean-am - -distclean: distclean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -distclean-am: clean-am distclean-compile distclean-generic \ - distclean-tags - -dvi: dvi-am - -dvi-am: - -html: html-am - -html-am: - -info: info-am - -info-am: - -install-data-am: - -install-dvi: install-dvi-am - -install-dvi-am: - -install-exec-am: - -install-html: install-html-am - -install-html-am: - -install-info: install-info-am - -install-info-am: - -install-man: - -install-pdf: install-pdf-am - -install-pdf-am: - -install-ps: install-ps-am - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-am - -mostlyclean-am: mostlyclean-compile mostlyclean-generic \ - mostlyclean-libtool - -pdf: pdf-am - -pdf-am: - -ps: ps-am - -ps-am: - -uninstall-am: - -.MAKE: install-am install-strip - -.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ - clean-libtool clean-noinstLIBRARIES ctags distclean \ - distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am html html-am info info-am \ - install install-am install-data install-data-am install-dvi \ - install-dvi-am install-exec install-exec-am install-html \ - install-html-am install-info install-info-am install-man \ - install-pdf install-pdf-am install-ps install-ps-am \ - install-strip installcheck installcheck-am installdirs \ - maintainer-clean maintainer-clean-generic mostlyclean \ - mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ - pdf pdf-am ps ps-am tags uninstall uninstall-am - - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff -Nru fcitx-4.0.1/src/im/qw/qw.c fcitx-4.1.1/src/im/qw/qw.c --- fcitx-4.0.1/src/im/qw/qw.c 2010-12-17 04:18:41.000000000 +0000 +++ fcitx-4.1.1/src/im/qw/qw.c 2011-09-08 16:00:05.000000000 +0000 @@ -22,171 +22,181 @@ */ #include #include +#include -#include "core/fcitx.h" -#include "core/keys.h" +#include "fcitx/fcitx.h" +#include "fcitx-utils/utils.h" +#include "fcitx/keys.h" + +#include "fcitx/ui.h" +#include "fcitx/configfile.h" +#include "fcitx/instance.h" +#include "fcitx/candidate.h" + +typedef struct _FcitxQWState { + char strQWHZ[3]; + char strQWHZUTF8[UTF8_MAX_LENGTH + 1]; + FcitxInstance *owner; +} FcitxQWState; + +static void* QWCreate (struct _FcitxInstance* instance); +INPUT_RETURN_VALUE DoQWInput(void* arg, FcitxKeySym sym, unsigned int state); +INPUT_RETURN_VALUE QWGetCandWords (void *arg); +INPUT_RETURN_VALUE QWGetCandWord (void *arg, CandidateWord* candWord); +char *GetQuWei (FcitxQWState* qwstate, int iQu, int iWei); +boolean QWInit(void *arg); + +FCITX_EXPORT_API +FcitxIMClass ime = { + QWCreate, + NULL +}; -#include "im/qw/qw.h" -#include "ui/InputWindow.h" -#include "tools/configfile.h" - -extern char strCodeInput[]; -extern int iCodeInputCount; -extern int iCandWordCount; -extern int iCandPageCount; -extern int iCurrentCandPage; -extern char strStringGet[]; - -char strQWHZ[3]; -char strQWHZUTF8[UTF8_MAX_LENGTH + 1]; +void* QWCreate (struct _FcitxInstance* instance) +{ + FcitxQWState* qwstate = fcitx_malloc0(sizeof(FcitxQWState)); + FcitxRegisterIM( + instance, + qwstate, + _("Quwei"), + "quwei", + QWInit, + NULL, + DoQWInput, + QWGetCandWords, + NULL, + NULL, + NULL, + NULL, + 100 /* make quwei place at last */ + ); + qwstate->owner = instance; + return qwstate; +} + +boolean QWInit(void *arg) +{ + return true; +} -INPUT_RETURN_VALUE DoQWInput(unsigned int sym, unsigned int state, int keyCount) +INPUT_RETURN_VALUE DoQWInput(void* arg, FcitxKeySym sym, unsigned int state) { + FcitxQWState* qwstate = (FcitxQWState*) arg; + FcitxInputState* input = &qwstate->owner->input; INPUT_RETURN_VALUE retVal; retVal = IRV_TO_PROCESS; if (IsHotKeyDigit(sym, state)) { - if ( iCodeInputCount!= 4 ) { - strCodeInput[iCodeInputCount++]=sym; - strCodeInput[iCodeInputCount]='\0'; - if ( iCodeInputCount==4 ) { - strcpy(strStringGet, QWGetCandWord(sym-'0'-1)); - retVal= IRV_GET_CANDWORDS; - } - else if (iCodeInputCount==3) - retVal=QWGetCandWords(SM_FIRST); - else - retVal=IRV_DISPLAY_CANDWORDS; - } - } - else if (IsHotKey(sym, state, FCITX_BACKSPACE)) { - if (!iCodeInputCount) - return IRV_DONOT_PROCESS_CLEAN; - iCodeInputCount--; - strCodeInput[iCodeInputCount] = '\0'; - - if (!iCodeInputCount) - retVal = IRV_CLEAN; - else { - iCandPageCount = 0; - SetMessageCount(&messageDown, 0); - retVal = IRV_DISPLAY_CANDWORDS; - } - } - else if (IsHotKey(sym, state, FCITX_SPACE)) { - if (!iCodeInputCount) - return IRV_TO_PROCESS; - if (iCodeInputCount!=3) - return IRV_DO_NOTHING; - - strcpy(strStringGet, QWGetCandWord(0)); - retVal= IRV_GET_CANDWORDS; - } - else - return IRV_TO_PROCESS; - - SetMessageCount(&messageUp, 0); - AddMessageAtLast(&messageUp, MSG_INPUT, "%s", strCodeInput); - if ( iCodeInputCount!=3 ) - SetMessageCount(&messageDown, 0); - - return retVal; -} - -char *QWGetCandWord (int iIndex) -{ - if ( !iCandPageCount ) - return NULL; - - SetMessageCount(&messageDown, 0); - if ( iIndex==-1 ) - iIndex=9; - return GetQuWei((strCodeInput[0] - '0') * 10 + strCodeInput[1] - '0',iCurrentCandPage * 10+iIndex+1); + if ( input->iCodeInputCount!= 4 ) { + input->strCodeInput[input->iCodeInputCount++]=sym; + input->strCodeInput[input->iCodeInputCount]='\0'; + if ( input->iCodeInputCount==4 ) { + retVal = IRV_TO_PROCESS; + } + else + retVal = IRV_DISPLAY_CANDWORDS; + } + } + else if (IsHotKey(sym, state, FCITX_BACKSPACE)) { + if (!input->iCodeInputCount) + return IRV_DONOT_PROCESS_CLEAN; + input->iCodeInputCount--; + input->strCodeInput[input->iCodeInputCount] = '\0'; + + if (!input->iCodeInputCount) + retVal = IRV_CLEAN; + else { + retVal = IRV_DISPLAY_CANDWORDS; + } + } + else if (IsHotKey(sym, state, FCITX_SPACE)) { + if (!input->iCodeInputCount) + return IRV_TO_PROCESS; + if (input->iCodeInputCount!=3) + return IRV_DO_NOTHING; + + retVal= CandidateWordChooseByIndex(input->candList, 0); + } + else + return IRV_TO_PROCESS; + + + return retVal; +} + +INPUT_RETURN_VALUE QWGetCandWord (void *arg, CandidateWord* candWord) +{ + FcitxQWState* qwstate = (FcitxQWState*) arg; + FcitxInputState* input = &qwstate->owner->input; + + strcpy(GetOutputString(input), + candWord->strWord); + return IRV_COMMIT_STRING; } -INPUT_RETURN_VALUE QWGetCandWords (SEARCH_MODE mode) +INPUT_RETURN_VALUE QWGetCandWords (void *arg) { + FcitxQWState* qwstate = (FcitxQWState*) arg; + FcitxInputState* input = &qwstate->owner->input; int iQu, iWei; int i; - char strTemp[3]; - if ( fc.bPointAfterNumber ) { - strTemp[1] = '.'; - strTemp[2] = '\0'; + CandidateWordSetPageSize(input->candList, 10); + CandidateWordSetChoose(input->candList, DIGIT_STR_CHOOSE); + if ( input->iCodeInputCount == 3 ) + { + iQu = (input->strCodeInput[0] - '0') * 10 + input->strCodeInput[1] - '0'; + iWei = (input->strCodeInput[2]-'0') * 10; + + for (i = 0; i < 10; i++) { + CandidateWord candWord; + candWord.callback = QWGetCandWord; + candWord.owner = qwstate; + candWord.priv = NULL; + candWord.strExtra = NULL; + candWord.strWord = strdup ( GetQuWei (qwstate, iQu, iWei + i + 1) ); + CandidateWordAppend(input->candList, &candWord); + } } - else - strTemp[1]='\0'; + input->iCursorPos = input->iCodeInputCount; + SetMessageCount(input->msgPreedit, 0); + AddMessageAtLast(input->msgPreedit, MSG_INPUT, "%s", input->strCodeInput); - iQu = (strCodeInput[0] - '0') * 10 + strCodeInput[1] - '0'; - - if (mode==SM_FIRST ) { - iCandPageCount = 9; - iCurrentCandPage = strCodeInput[2]-'0'; - } - else { - if ( !iCandPageCount ) - return IRV_TO_PROCESS; - if (mode==SM_NEXT) { - if ( iCurrentCandPage!=iCandPageCount ) - iCurrentCandPage++; - } - else { - if ( iCurrentCandPage ) - iCurrentCandPage--; - } - } - - iWei = iCurrentCandPage * 10; - - SetMessageCount(&messageDown, 0); - for (i = 0; i < 10; i++) { - strTemp[0] = i + 1 + '0'; - if (i == 9) - strTemp[0] = '0'; - AddMessageAtLast(&messageDown, MSG_INDEX, "%s", strTemp); - AddMessageAtLast(&messageDown, (i)? MSG_OTHER:MSG_FIRSTCAND, "%s", GetQuWei (iQu, iWei + i + 1)); - if (i != 9) - MessageConcatLast(&messageDown, " "); - } - - strCodeInput[2]=iCurrentCandPage+'0'; - SetMessageCount(&messageUp, 0); - AddMessageAtLast(&messageUp, MSG_INPUT, "%s", strCodeInput); - return IRV_DISPLAY_CANDWORDS; } -char *GetQuWei (int iQu, int iWei) +char *GetQuWei (FcitxQWState* qwstate, int iQu, int iWei) { + char *inbuf; + char *outbuf; - char *inbuf, *outbuf; - - size_t insize = 2, avail = UTF8_MAX_LENGTH + 1; + size_t insize = 2, avail = UTF8_MAX_LENGTH + 1; - iconv_t convGBK = iconv_open("utf-8", "gb18030"); + iconv_t convGBK = iconv_open("utf-8", "gb18030"); if (iQu >= 95) { /* Process extend Qu 95 and 96 */ - strQWHZ[0] = iQu - 95 + 0xA8; - strQWHZ[1] = iWei + 0x40; + qwstate->strQWHZ[0] = iQu - 95 + 0xA8; + qwstate->strQWHZ[1] = iWei + 0x40; - /* skip 0xa87f and 0xa97f */ - if ((unsigned char) strQWHZ[1] >= 0x7f) - strQWHZ[1]++; + /* skip 0xa87f and 0xa97f */ + if ((unsigned char) qwstate->strQWHZ[1] >= 0x7f) + qwstate->strQWHZ[1]++; } else { - strQWHZ[0] = iQu + 0xa0; - strQWHZ[1] = iWei + 0xa0; + qwstate->strQWHZ[0] = iQu + 0xa0; + qwstate->strQWHZ[1] = iWei + 0xa0; } - strQWHZ[2] = '\0'; + qwstate->strQWHZ[2] = '\0'; - inbuf = strQWHZ; + inbuf = qwstate->strQWHZ; - outbuf = strQWHZUTF8; + outbuf = qwstate->strQWHZUTF8; - iconv(convGBK, &inbuf, &insize, &outbuf, &avail); + iconv(convGBK, &inbuf, &insize, &outbuf, &avail); - iconv_close(convGBK); + iconv_close(convGBK); - return strQWHZUTF8; + return qwstate->strQWHZUTF8; } +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/im/qw/qw.h fcitx-4.1.1/src/im/qw/qw.h --- fcitx-4.0.1/src/im/qw/qw.h 2010-11-28 11:55:00.000000000 +0000 +++ fcitx-4.1.1/src/im/qw/qw.h 1970-01-01 00:00:00.000000000 +0000 @@ -1,33 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2002~2005 by Yuking * - * yuking_net@sohu.com * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * - ***************************************************************************/ -#ifndef _QUWEI_H -#define _QUWEI_H - -#include "core/ime.h" - -#define strNameOfQuwei __("Quwei") -#define strIconNameOfQuwei "quwei" - -INPUT_RETURN_VALUE DoQWInput(unsigned int sym, unsigned int state, int keyCount); -INPUT_RETURN_VALUE QWGetCandWords (SEARCH_MODE mode); -char *QWGetCandWord (int iIndex); -char *GetQuWei (int, int); - -#endif diff -Nru fcitx-4.0.1/src/im/special/AutoEng.c fcitx-4.1.1/src/im/special/AutoEng.c --- fcitx-4.0.1/src/im/special/AutoEng.c 2010-11-28 11:55:00.000000000 +0000 +++ fcitx-4.1.1/src/im/special/AutoEng.c 1970-01-01 00:00:00.000000000 +0000 @@ -1,99 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2002~2005 by Yuking * - * yuking_net@sohu.com * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * - ***************************************************************************/ - -#include "core/fcitx.h" -#include "im/special/AutoEng.h" -#include "tools/tools.h" -#include "fcitx-config/xdg.h" - -#include - -AUTO_ENG *AutoEng = (AUTO_ENG *) NULL; -int iAutoEng; - -/** - * 从用户配置目录中读取AutoEng.dat(如果不存在, - * 则从 /usr/local/share/fcitx/data/AutoEng.dat) - * 读取需要自动转换到英文输入状态的情况的数据。 - * - * @param void - * - * @return void - */ - -void LoadAutoEng (void) -{ - FILE *fp; - char strPath[PATH_MAX]; - - fp = GetXDGFileData("AutoEng.dat", "rt", NULL); - if (!fp) - return; - - iAutoEng = CalculateRecordNumber (fp); - AutoEng = (AUTO_ENG *) malloc (sizeof (AUTO_ENG) * iAutoEng); - - iAutoEng = 0; - while (!feof(fp)) { - fscanf (fp, "%s\n", strPath); - strcpy (AutoEng[iAutoEng++].str, strPath); - } - - fclose (fp); -} - -/** - * 释放相关资源 - * - * @param void - * - * @return void - */ -void FreeAutoEng (void) -{ - if (AutoEng) - free (AutoEng); - - iAutoEng = 0; - AutoEng = (AUTO_ENG *) NULL; -} - - -/** - * @brief 判断是否需要自动转到英文输入状态 - * @exception - * @return Ture则是? False则是? - * @note - * @remarks - * [@deprecated ] - * [@since when(time or version)] - * [@see references{,references}] - */ -Bool SwitchToEng (char *str) -{ - int i; - - for (i = 0; i < iAutoEng; i++) { - if (!strcmp (str, AutoEng[i].str)) - return True; - } - - return False; -} diff -Nru fcitx-4.0.1/src/im/special/AutoEng.h fcitx-4.1.1/src/im/special/AutoEng.h --- fcitx-4.0.1/src/im/special/AutoEng.h 2010-11-28 11:55:00.000000000 +0000 +++ fcitx-4.1.1/src/im/special/AutoEng.h 1970-01-01 00:00:00.000000000 +0000 @@ -1,54 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2002~2005 by Yuking * - * yuking_net@sohu.com * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * - ***************************************************************************/ -/** - * @file AutoEng.h - * @author Yuking yuking_net@sohu.com - * @date 2008-1-16 - * - * @brief 自动切换到英文状态 -* -* -*/ - -#ifndef _AUTOENG_H -#define _AUTOENG_H - -#include "core/xim.h" - -#define MAX_AUTO_TO_ENG 10 - -typedef struct { - char str[MAX_AUTO_TO_ENG + 1]; -} AUTO_ENG; - -/** - * 从 ~/.fcitx/!AutoEng.dat - * (如果不存在,则从 /usr/local/share/fcitx/data/!AutoEng.dat) - * 读取需要自动转换到英文输入状态的情况的数据。 - */ -void LoadAutoEng (void); - -/** - * 释放相关资源 - */ -void FreeAutoEng (void); -Bool SwitchToEng (char *); - -#endif diff -Nru fcitx-4.0.1/src/im/special/Makefile.am fcitx-4.1.1/src/im/special/Makefile.am --- fcitx-4.0.1/src/im/special/Makefile.am 2010-11-28 11:55:00.000000000 +0000 +++ fcitx-4.1.1/src/im/special/Makefile.am 1970-01-01 00:00:00.000000000 +0000 @@ -1,15 +0,0 @@ -INCLUDES = \ - -I$(top_srcdir)/lib \ - -I$(top_srcdir)/src \ - @CAIRO_XLIB_CFLAGS@ \ - @DBUS_CFLAGS@ \ - @PANGOCAIRO_CFLAGS@ \ - $(NULL) -DEFS = -DPKGDATADIR=\"$(pkgdatadir)\" - -noinst_LIBRARIES=libimspecial.a -libimspecial_a_SOURCES= AutoEng.c AutoEng.h \ - punc.c punc.h \ - QuickPhrase.c QuickPhrase.h \ - vk.c vk.h - diff -Nru fcitx-4.0.1/src/im/special/Makefile.in fcitx-4.1.1/src/im/special/Makefile.in --- fcitx-4.0.1/src/im/special/Makefile.in 2010-12-17 04:26:31.000000000 +0000 +++ fcitx-4.1.1/src/im/special/Makefile.in 1970-01-01 00:00:00.000000000 +0000 @@ -1,547 +0,0 @@ -# Makefile.in generated by automake 1.11.1 from Makefile.am. -# @configure_input@ - -# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, -# Inc. -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - -@SET_MAKE@ - -VPATH = @srcdir@ -pkgdatadir = $(datadir)/@PACKAGE@ -pkgincludedir = $(includedir)/@PACKAGE@ -pkglibdir = $(libdir)/@PACKAGE@ -pkglibexecdir = $(libexecdir)/@PACKAGE@ -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = @build@ -host_triplet = @host@ -subdir = src/im/special -DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/configure.in -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -mkinstalldirs = $(install_sh) -d -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -CONFIG_CLEAN_VPATH_FILES = -LIBRARIES = $(noinst_LIBRARIES) -ARFLAGS = cru -AM_V_AR = $(am__v_AR_$(V)) -am__v_AR_ = $(am__v_AR_$(AM_DEFAULT_VERBOSITY)) -am__v_AR_0 = @echo " AR " $@; -AM_V_at = $(am__v_at_$(V)) -am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) -am__v_at_0 = @ -libimspecial_a_AR = $(AR) $(ARFLAGS) -libimspecial_a_LIBADD = -am_libimspecial_a_OBJECTS = AutoEng.$(OBJEXT) punc.$(OBJEXT) \ - QuickPhrase.$(OBJEXT) vk.$(OBJEXT) -libimspecial_a_OBJECTS = $(am_libimspecial_a_OBJECTS) -DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles -am__mv = mv -f -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -AM_V_lt = $(am__v_lt_$(V)) -am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) -am__v_lt_0 = --silent -LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ - $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ - $(AM_CFLAGS) $(CFLAGS) -AM_V_CC = $(am__v_CC_$(V)) -am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) -am__v_CC_0 = @echo " CC " $@; -CCLD = $(CC) -LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -AM_V_CCLD = $(am__v_CCLD_$(V)) -am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) -am__v_CCLD_0 = @echo " CCLD " $@; -AM_V_GEN = $(am__v_GEN_$(V)) -am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) -am__v_GEN_0 = @echo " GEN " $@; -SOURCES = $(libimspecial_a_SOURCES) -DIST_SOURCES = $(libimspecial_a_SOURCES) -ETAGS = etags -CTAGS = ctags -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -ACLOCAL = @ACLOCAL@ -ALL_LINGUAS = @ALL_LINGUAS@ -AMTAR = @AMTAR@ -AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ -AR = @AR@ -AUTOCONF = @AUTOCONF@ -AUTOHEADER = @AUTOHEADER@ -AUTOMAKE = @AUTOMAKE@ -AWK = @AWK@ -CAIRO_XLIB_CFLAGS = @CAIRO_XLIB_CFLAGS@ -CAIRO_XLIB_LIBS = @CAIRO_XLIB_LIBS@ -CC = @CC@ -CCDEPMODE = @CCDEPMODE@ -CFLAGS = @CFLAGS@ -CPP = @CPP@ -CPPFLAGS = @CPPFLAGS@ -CYGPATH_W = @CYGPATH_W@ -DATADIRNAME = @DATADIRNAME@ -DBUS_CFLAGS = @DBUS_CFLAGS@ -DBUS_LIBS = @DBUS_LIBS@ -DEFS = -DPKGDATADIR=\"$(pkgdatadir)\" -DEPDIR = @DEPDIR@ -DLLTOOL = @DLLTOOL@ -DSYMUTIL = @DSYMUTIL@ -DUMPBIN = @DUMPBIN@ -ECHO_C = @ECHO_C@ -ECHO_N = @ECHO_N@ -ECHO_T = @ECHO_T@ -EGREP = @EGREP@ -EXEEXT = @EXEEXT@ -FGREP = @FGREP@ -FONTCONFIG_CFLAGS = @FONTCONFIG_CFLAGS@ -FONTCONFIG_LIBS = @FONTCONFIG_LIBS@ -GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ -GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ -GMSGFMT = @GMSGFMT@ -GMSGFMT_015 = @GMSGFMT_015@ -GREP = @GREP@ -HOST_LIBS = @HOST_LIBS@ -INCINTL = @INCINTL@ -INSTALL = @INSTALL@ -INSTALL_DATA = @INSTALL_DATA@ -INSTALL_PROGRAM = @INSTALL_PROGRAM@ -INSTALL_SCRIPT = @INSTALL_SCRIPT@ -INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ -INTLLIBS = @INTLLIBS@ -INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ -INTLTOOL_MERGE = @INTLTOOL_MERGE@ -INTLTOOL_PERL = @INTLTOOL_PERL@ -INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ -INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ -LD = @LD@ -LDFLAGS = @LDFLAGS@ -LIBICONV = @LIBICONV@ -LIBINTL = @LIBINTL@ -LIBOBJS = @LIBOBJS@ -LIBS = @LIBS@ -LIBTOOL = @LIBTOOL@ -LIPO = @LIPO@ -LN_S = @LN_S@ -LTLIBICONV = @LTLIBICONV@ -LTLIBINTL = @LTLIBINTL@ -LTLIBOBJS = @LTLIBOBJS@ -MAKEINFO = @MAKEINFO@ -MANIFEST_TOOL = @MANIFEST_TOOL@ -MD5SUM = @MD5SUM@ -MKDIR_P = @MKDIR_P@ -MSGFMT = @MSGFMT@ -MSGFMT_015 = @MSGFMT_015@ -MSGMERGE = @MSGMERGE@ -NM = @NM@ -NMEDIT = @NMEDIT@ -OBJDUMP = @OBJDUMP@ -OBJEXT = @OBJEXT@ -OTOOL = @OTOOL@ -OTOOL64 = @OTOOL64@ -PACKAGE = @PACKAGE@ -PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ -PACKAGE_NAME = @PACKAGE_NAME@ -PACKAGE_STRING = @PACKAGE_STRING@ -PACKAGE_TARNAME = @PACKAGE_TARNAME@ -PACKAGE_URL = @PACKAGE_URL@ -PACKAGE_VERSION = @PACKAGE_VERSION@ -PANGOCAIRO_CFLAGS = @PANGOCAIRO_CFLAGS@ -PANGOCAIRO_LIBS = @PANGOCAIRO_LIBS@ -PATH_SEPARATOR = @PATH_SEPARATOR@ -PKG_CONFIG = @PKG_CONFIG@ -PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ -PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ -POSUB = @POSUB@ -RANLIB = @RANLIB@ -SED = @SED@ -SET_MAKE = @SET_MAKE@ -SHELL = @SHELL@ -STRIP = @STRIP@ -TAR = @TAR@ -USE_NLS = @USE_NLS@ -VERSION = @VERSION@ -WGET = @WGET@ -XGETTEXT = @XGETTEXT@ -XGETTEXT_015 = @XGETTEXT_015@ -XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ -XMKMF = @XMKMF@ -XRENDER_CFLAGS = @XRENDER_CFLAGS@ -XRENDER_LIBS = @XRENDER_LIBS@ -X_CFLAGS = @X_CFLAGS@ -X_LIBS = @X_LIBS@ -abs_builddir = @abs_builddir@ -abs_srcdir = @abs_srcdir@ -abs_top_builddir = @abs_top_builddir@ -abs_top_srcdir = @abs_top_srcdir@ -ac_ct_AR = @ac_ct_AR@ -ac_ct_CC = @ac_ct_CC@ -ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ -am__include = @am__include@ -am__leading_dot = @am__leading_dot@ -am__quote = @am__quote@ -am__tar = @am__tar@ -am__untar = @am__untar@ -bindir = @bindir@ -build = @build@ -build_alias = @build_alias@ -build_cpu = @build_cpu@ -build_os = @build_os@ -build_vendor = @build_vendor@ -builddir = @builddir@ -datadir = @datadir@ -datarootdir = @datarootdir@ -docdir = @docdir@ -dvidir = @dvidir@ -exec_prefix = @exec_prefix@ -host = @host@ -host_alias = @host_alias@ -host_cpu = @host_cpu@ -host_os = @host_os@ -host_vendor = @host_vendor@ -htmldir = @htmldir@ -includedir = @includedir@ -infodir = @infodir@ -install_sh = @install_sh@ -libdir = @libdir@ -libexecdir = @libexecdir@ -localedir = @localedir@ -localstatedir = @localstatedir@ -mandir = @mandir@ -mkdir_p = @mkdir_p@ -oldincludedir = @oldincludedir@ -pdfdir = @pdfdir@ -prefix = @prefix@ -program_transform_name = @program_transform_name@ -psdir = @psdir@ -sbindir = @sbindir@ -sharedstatedir = @sharedstatedir@ -srcdir = @srcdir@ -sysconfdir = @sysconfdir@ -target_alias = @target_alias@ -top_build_prefix = @top_build_prefix@ -top_builddir = @top_builddir@ -top_srcdir = @top_srcdir@ -INCLUDES = \ - -I$(top_srcdir)/lib \ - -I$(top_srcdir)/src \ - @CAIRO_XLIB_CFLAGS@ \ - @DBUS_CFLAGS@ \ - @PANGOCAIRO_CFLAGS@ \ - $(NULL) - -noinst_LIBRARIES = libimspecial.a -libimspecial_a_SOURCES = AutoEng.c AutoEng.h \ - punc.c punc.h \ - QuickPhrase.c QuickPhrase.h \ - vk.c vk.h - -all: all-am - -.SUFFIXES: -.SUFFIXES: .c .lo .o .obj -$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ - && { if test -f $@; then exit 0; else break; fi; }; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/im/special/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign src/im/special/Makefile -.PRECIOUS: Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(am__aclocal_m4_deps): - -clean-noinstLIBRARIES: - -test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES) -libimspecial.a: $(libimspecial_a_OBJECTS) $(libimspecial_a_DEPENDENCIES) - $(AM_V_at)-rm -f libimspecial.a - $(AM_V_AR)$(libimspecial_a_AR) libimspecial.a $(libimspecial_a_OBJECTS) $(libimspecial_a_LIBADD) - $(AM_V_at)$(RANLIB) libimspecial.a - -mostlyclean-compile: - -rm -f *.$(OBJEXT) - -distclean-compile: - -rm -f *.tab.c - -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/AutoEng.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/QuickPhrase.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/punc.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/vk.Po@am__quote@ - -.c.o: -@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c $< - -.c.obj: -@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` - -.c.lo: -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs - -ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - mkid -fID $$unique -tags: TAGS - -TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - set x; \ - here=`pwd`; \ - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: CTAGS -CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d "$(distdir)/$$file"; then \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ - else \ - test -f "$(distdir)/$$file" \ - || cp -p $$d/$$file "$(distdir)/$$file" \ - || exit 1; \ - fi; \ - done -check-am: all-am -check: check-am -all-am: Makefile $(LIBRARIES) -installdirs: -install: install-am -install-exec: install-exec-am -install-data: install-data-am -uninstall: uninstall-am - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-am -install-strip: - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - `test -z '$(STRIP)' || \ - echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install -mostlyclean-generic: - -clean-generic: - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-am - -clean-am: clean-generic clean-libtool clean-noinstLIBRARIES \ - mostlyclean-am - -distclean: distclean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -distclean-am: clean-am distclean-compile distclean-generic \ - distclean-tags - -dvi: dvi-am - -dvi-am: - -html: html-am - -html-am: - -info: info-am - -info-am: - -install-data-am: - -install-dvi: install-dvi-am - -install-dvi-am: - -install-exec-am: - -install-html: install-html-am - -install-html-am: - -install-info: install-info-am - -install-info-am: - -install-man: - -install-pdf: install-pdf-am - -install-pdf-am: - -install-ps: install-ps-am - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-am - -mostlyclean-am: mostlyclean-compile mostlyclean-generic \ - mostlyclean-libtool - -pdf: pdf-am - -pdf-am: - -ps: ps-am - -ps-am: - -uninstall-am: - -.MAKE: install-am install-strip - -.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ - clean-libtool clean-noinstLIBRARIES ctags distclean \ - distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am html html-am info info-am \ - install install-am install-data install-data-am install-dvi \ - install-dvi-am install-exec install-exec-am install-html \ - install-html-am install-info install-info-am install-man \ - install-pdf install-pdf-am install-ps install-ps-am \ - install-strip installcheck installcheck-am installdirs \ - maintainer-clean maintainer-clean-generic mostlyclean \ - mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ - pdf pdf-am ps ps-am tags uninstall uninstall-am - - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff -Nru fcitx-4.0.1/src/im/special/punc.c fcitx-4.1.1/src/im/special/punc.c --- fcitx-4.0.1/src/im/special/punc.c 2010-11-28 11:55:00.000000000 +0000 +++ fcitx-4.1.1/src/im/special/punc.c 1970-01-01 00:00:00.000000000 +0000 @@ -1,155 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2002~2005 by Yuking * - * yuking_net@sohu.com * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * - ***************************************************************************/ - -#include -#include -#include -#include - -#include "core/fcitx.h" -#include "tools/tools.h" -#include "im/special/punc.h" -#include "core/ime.h" -#include "fcitx-config/xdg.h" -#include "fcitx-config/cutils.h" - -ChnPunc *chnPunc = (ChnPunc *) NULL; - -extern int iCodeInputCount; - -/** - * @brief 加载标点词典 - * @param void - * @return void - * @note 文件中数据的格式为: 对应的英文符号 中文标点 <中文标点> - * 加载标点词典。标点词典定义了一组标点转换,如输入‘.’就直接转换成‘。’ - */ -int LoadPuncDict (void) -{ - FILE *fpDict; // 词典文件指针 - int iRecordNo; - char strText[4 + MAX_PUNC_LENGTH * UTF8_MAX_LENGTH]; - char *pstr; // 临时指针 - int i; - - fpDict = GetXDGFileData(PUNC_DICT_FILENAME, "rt", NULL); - - if (!fpDict) { - FcitxLog(WARNING, _("Can't open Chinese punc file.")); - return False; - } - - /* 计算词典里面有多少的数据 - * 这个函数非常简单,就是计算该文件有多少行(包含空行)。 - * 因为空行,在下面会略去,所以,这儿存在内存的浪费现象。 - * 没有一个空行就是浪费sizeof (ChnPunc)字节内存*/ - iRecordNo = CalculateRecordNumber (fpDict); - // 申请空间,用来存放这些数据。这儿没有检查是否申请到内存,严格说有小隐患 - // chnPunc是一个全局变量 - chnPunc = (ChnPunc *) malloc (sizeof (ChnPunc) * (iRecordNo + 1)); - - iRecordNo = 0; - - // 下面这个循环,就是一行一行的读入词典文件的数据。并将其放入到chnPunc里面去。 - for (;;) { - if (!fgets (strText, (MAX_PUNC_LENGTH * UTF8_MAX_LENGTH + 3), fpDict)) - break; - i = strlen (strText) - 1; - - // 先找到最后一个字符 - while ((strText[i] == '\n') || (strText[i] == ' ')) { - if (!i) - break; - i--; - } - - // 如果找到,进行出入。当是空行时,肯定找不到。所以,也就略过了空行的处理 - if (i) { - strText[i + 1] = '\0'; // 在字符串的最后加个封口 - pstr = strText; // 将pstr指向第一个非空字符 - while (*pstr == ' ') - pstr++; - chnPunc[iRecordNo].ASCII = *pstr++; // 这个就是中文符号所对应的ASCII码值 - while (*pstr == ' ') // 然后,将pstr指向下一个非空字符 - pstr++; - - chnPunc[iRecordNo].iCount = 0; // 该符号有几个转化,比如英文"就可以转换成“和” - chnPunc[iRecordNo].iWhich = 0; // 标示该符号的输入状态,即处于第几个转换。如",iWhich标示是转换成“还是” - // 依次将该ASCII码所对应的符号放入到结构中 - while (*pstr) { - i = 0; - // 因为中文符号都是多字节(这里读取并不像其他地方是固定两个,所以没有问题)的,所以,要一直往后读,知道空格或者字符串的末尾 - while (*pstr != ' ' && *pstr) { - chnPunc[iRecordNo].strChnPunc[chnPunc[iRecordNo].iCount][i] = *pstr; - i++; - pstr++; - } - - // 每个中文符号用'\0'隔开 - chnPunc[iRecordNo].strChnPunc[chnPunc[iRecordNo].iCount][i] = '\0'; - while (*pstr == ' ') - pstr++; - chnPunc[iRecordNo].iCount++; - } - - iRecordNo++; - } - } - - chnPunc[iRecordNo].ASCII = '\0'; - fclose (fpDict); - - return True; -} - -void FreePunc (void) -{ - if (!chnPunc) - return; - - free (chnPunc); - chnPunc = (ChnPunc *) NULL; -} - -/* - * 根据字符得到相应的标点符号 - * 如果该字符不在标点符号集中,则返回NULL - */ -char *GetPunc (int iKey) -{ - int iIndex = 0; - char *pPunc; - - if (!chnPunc) - return (char *) NULL; - - while (chnPunc[iIndex].ASCII) { - if (chnPunc[iIndex].ASCII == iKey) { - pPunc = chnPunc[iIndex].strChnPunc[chnPunc[iIndex].iWhich]; - chnPunc[iIndex].iWhich++; - if (chnPunc[iIndex].iWhich >= chnPunc[iIndex].iCount) - chnPunc[iIndex].iWhich = 0; - return pPunc; - } - iIndex++; - } - - return (char *) NULL; -} diff -Nru fcitx-4.0.1/src/im/special/punc.h fcitx-4.1.1/src/im/special/punc.h --- fcitx-4.0.1/src/im/special/punc.h 2010-11-28 11:55:00.000000000 +0000 +++ fcitx-4.1.1/src/im/special/punc.h 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2002~2005 by Yuking * - * yuking_net@sohu.com * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * - ***************************************************************************/ -#ifndef _PUNC_H -#define _PUNC_H - -#include -#include "tools/utf8.h" - -#define PUNC_DICT_FILENAME "punc.mb" -#define MAX_PUNC_NO 2 -#define MAX_PUNC_LENGTH 2 - -typedef struct TCHNPUNC { - int ASCII; - char strChnPunc[MAX_PUNC_NO][MAX_PUNC_LENGTH * UTF8_MAX_LENGTH + 1]; - unsigned iCount:2; - unsigned iWhich:2; -} ChnPunc; - -Bool LoadPuncDict (void); -char *GetPunc (int iKey); -void FreePunc (void); - -#endif diff -Nru fcitx-4.0.1/src/im/special/QuickPhrase.c fcitx-4.1.1/src/im/special/QuickPhrase.c --- fcitx-4.0.1/src/im/special/QuickPhrase.c 2010-12-17 04:18:46.000000000 +0000 +++ fcitx-4.1.1/src/im/special/QuickPhrase.c 1970-01-01 00:00:00.000000000 +0000 @@ -1,262 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2002~2005 by Yuking * - * yuking_net@sohu.com * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * - ***************************************************************************/ -#include -#include -#include - -#include "core/fcitx.h" - -#include "tools/tools.h" -#include "im/special/QuickPhrase.h" -#include "ui/InputWindow.h" -#include "tools/utarray.h" -#include "fcitx-config/cutils.h" -#include "fcitx-config/xdg.h" -#include "tools/configfile.h" - -uint uQuickPhraseCount; -UT_array *quickPhrases = NULL; -int iFirstQuickPhrase = -1; -int iLastQuickPhrase; -QUICK_PHRASE *quickPhraseCandWords[MAX_CAND_WORD]; -static UT_icd qp_icd = {sizeof(QUICK_PHRASE), NULL, NULL, NULL}; - -#define MIN(a,b) ((a) < (b)?(a) : (b)) - -extern int iCandPageCount; -extern int iCandWordCount; -extern int iCurrentCandPage; -extern char strCodeInput[]; -extern char strStringGet[]; - -int PhraseCmp(const void* a, const void* b) -{ - return strcmp(((QUICK_PHRASE*)a)->strCode, ((QUICK_PHRASE*)b)->strCode); -} - -int PhraseCmpA(const void* a, const void* b) -{ - int res,len; - len = strlen(((QUICK_PHRASE*)a)->strCode); - res = strncmp(((QUICK_PHRASE*)a)->strCode, ((QUICK_PHRASE*)b)->strCode, len); - if (res) - return res; - else - { - return 1; - } - -} - -/** - * @brief 加载快速输入词典 - * @param void - * @return void - * @note 快速输入是在;的行为定义为2,并且输入;以后才可以使用的。 - * 加载快速输入词典.如:输入“zg”就直接出现“中华人民共和国”等等。 - * 文件中每一行数据的定义为:<字符组合> <短语> - * 如:“zg 中华人民共和国” - */ -void LoadQuickPhrase(void) -{ - FILE *fp; - char *buf = NULL; - size_t len = 0; - char *buf1 = NULL; - - QUICK_PHRASE tempQuickPhrase; - - uQuickPhraseCount=0; - - fp = GetXDGFileData("QuickPhrase.mb", "rt", NULL); - if (!fp) - return; - - // 这儿的处理比较简单。因为是单索引对单值。 - // 应该注意的是,它在内存中是以单链表保存的。 - utarray_new(quickPhrases, &qp_icd); - while (getline(&buf, &len, fp) != -1) - { - if (buf1) - free(buf1); - buf1 = trim(buf); - char *p = buf1; - - while (*p && !isspace(*p)) - p ++; - - if (p == '\0') - continue; - - while (isspace(*p)) - { - *p = '\0'; - p ++; - } - - if (strlen(buf1) >= QUICKPHRASE_CODE_LEN) - continue; - - if (strlen(p) >= QUICKPHRASE_PHRASE_LEN * UTF8_MAX_LENGTH + 1) - continue; - - strcpy(tempQuickPhrase.strCode,buf1); - strcpy(tempQuickPhrase.strPhrase, p); - - utarray_push_back(quickPhrases, &tempQuickPhrase); - } - - if (buf) - free(buf); - if (buf1) - free(buf1); - - if (quickPhrases) - { - utarray_sort(quickPhrases, PhraseCmp); - } - - fclose(fp); -} - -void FreeQuickPhrase(void) -{ - if ( !quickPhrases ) - return; - - utarray_free(quickPhrases); -} - -INPUT_RETURN_VALUE QuickPhraseDoInput (KeySym sym, int state, int iCount) -{ - int retVal; - int iKey; - - iKey = sym; - - if (iKey >= '0' && iKey <= '9') { - if (!iCandWordCount) - return IRV_TO_PROCESS; - - iKey -= '0'; - if (iKey == 0) - iKey = 10; - - if (iKey > iCandWordCount) - retVal = IRV_DO_NOTHING; - else { - strcpy (strStringGet, quickPhraseCandWords[iKey-1]->strPhrase); - retVal = IRV_GET_CANDWORDS; - SetMessageCount(&messageDown, 0); - } - } - else if (iKey==' ') { - if (!iCandWordCount) - retVal = IRV_TO_PROCESS; - else { - strcpy (strStringGet, quickPhraseCandWords[0]->strPhrase); - retVal = IRV_GET_CANDWORDS; - SetMessageCount(&messageDown, 0); - } - } - else - retVal = IRV_TO_PROCESS; - - return retVal; -} - -INPUT_RETURN_VALUE QuickPhraseGetCandWords (SEARCH_MODE mode) -{ - int i, iInputLen; - QUICK_PHRASE searchKey, *pKey, *currentQuickPhrase, *lastQuickPhrase; - char strTemp[2]; - - pKey = &searchKey; - - if ( !quickPhrases ) - return IRV_DISPLAY_MESSAGE; - - iInputLen = strlen(strCodeInput); - if (iInputLen > QUICKPHRASE_CODE_LEN) - return IRV_DISPLAY_MESSAGE; - - strcpy(searchKey.strCode, strCodeInput); - - if (mode==SM_FIRST) { - iCandPageCount=0; - iCurrentCandPage=0; - iCandWordCount=0; - currentQuickPhrase = utarray_custom_bsearch(pKey, quickPhrases, False, PhraseCmp); - iFirstQuickPhrase = utarray_eltidx(quickPhrases, currentQuickPhrase); - lastQuickPhrase = utarray_custom_bsearch(pKey, quickPhrases, False, PhraseCmpA); - iLastQuickPhrase = utarray_eltidx(quickPhrases, lastQuickPhrase); - iCandPageCount = (iLastQuickPhrase - iFirstQuickPhrase + fc.iMaxCandWord - 1) / fc.iMaxCandWord - 1; - if ( !currentQuickPhrase || strncmp(strCodeInput,currentQuickPhrase->strCode,iInputLen) ) { - SetMessageCount(&messageDown, 0); - currentQuickPhrase = NULL; - return IRV_DISPLAY_MESSAGE; - } - } - else if (mode==SM_NEXT) { - if (iCurrentCandPage >= iCandPageCount) - return IRV_DO_NOTHING; - iCandWordCount=0; - iCurrentCandPage++; - } - else { - if (iCurrentCandPage <= 0) - return IRV_DO_NOTHING; - iCandWordCount=0; - iCurrentCandPage--; - } - - for ( currentQuickPhrase = (QUICK_PHRASE*) utarray_eltptr(quickPhrases, iFirstQuickPhrase + iCurrentCandPage * fc.iMaxCandWord); - currentQuickPhrase != NULL; - currentQuickPhrase = (QUICK_PHRASE*) utarray_next(quickPhrases, currentQuickPhrase)) - { - if (!strncmp(strCodeInput,currentQuickPhrase->strCode,iInputLen)) { - quickPhraseCandWords[iCandWordCount++]=currentQuickPhrase; - if (iCandWordCount==fc.iMaxCandWord) { - break; - } - } - } - - if (!iCandWordCount) - return IRV_DISPLAY_MESSAGE; - - SetMessageCount(&messageDown, 0); - strTemp[1]='\0'; - - for (i = 0; i < iCandWordCount; i++) { - strTemp[0] = i + 1 + '0'; - if (i == 9) - strTemp[0] = '0'; - AddMessageAtLast(&messageDown, MSG_INDEX, "%s", strTemp); - AddMessageAtLast(&messageDown, ((i == 0) ? MSG_FIRSTCAND : MSG_OTHER), "%s", quickPhraseCandWords[i]->strPhrase); - - //编码提示 - AddMessageAtLast(&messageDown, MSG_CODE, "%s", quickPhraseCandWords[i]->strCode + iInputLen); - if (i != (iCandWordCount - 1)) - MessageConcatLast(&messageDown, " "); - } - - return IRV_DISPLAY_CANDWORDS; -} diff -Nru fcitx-4.0.1/src/im/special/QuickPhrase.h fcitx-4.1.1/src/im/special/QuickPhrase.h --- fcitx-4.0.1/src/im/special/QuickPhrase.h 2010-12-06 05:59:19.000000000 +0000 +++ fcitx-4.1.1/src/im/special/QuickPhrase.h 1970-01-01 00:00:00.000000000 +0000 @@ -1,38 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2002~2005 by Yuking * - * yuking_net@sohu.com * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * - ***************************************************************************/ -#ifndef _QUICKPHRASE_H -#define _QUICKPHRASE_H - -#include "core/ime.h" - -#define QUICKPHRASE_CODE_LEN 20 -#define QUICKPHRASE_PHRASE_LEN 40 - -typedef struct _QUICK_PHRASE { - char strCode[QUICKPHRASE_CODE_LEN+1]; - char strPhrase[QUICKPHRASE_PHRASE_LEN * UTF8_MAX_LENGTH+1]; -} QUICK_PHRASE; - -void LoadQuickPhrase(void); -void FreeQuickPhrase(void); -INPUT_RETURN_VALUE QuickPhraseDoInput (KeySym sym, int state, int iCount); -INPUT_RETURN_VALUE QuickPhraseGetCandWords (SEARCH_MODE mode); - -#endif diff -Nru fcitx-4.0.1/src/im/special/vk.c fcitx-4.1.1/src/im/special/vk.c --- fcitx-4.0.1/src/im/special/vk.c 2010-12-17 04:19:00.000000000 +0000 +++ fcitx-4.1.1/src/im/special/vk.c 1970-01-01 00:00:00.000000000 +0000 @@ -1,513 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2002~2005 by Yuking * - * yuking_net@sohu.com * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * - ***************************************************************************/ -#include -#include -#include -#include -#include - -#include "core/fcitx.h" -#include "im/special/vk.h" -#include "ui/ui.h" -#include "ui/MainWindow.h" -#include "ui/InputWindow.h" -#include "core/IC.h" -#include "core/xim.h" -#include "fcitx-config/xdg.h" -#include "interface/DBus.h" -#include "tools/profile.h" -#include "tools/configfile.h" - -VKWindow vkWindow; - -int iVKWindowX = 0; -int iVKWindowY = 0; -unsigned char iCurrentVK = 0; -unsigned char iVKCount = 0; - -VKS vks[VK_MAX]; -char vkTable[VK_NUMBERS + 1] = "`1234567890-=qwertyuiop[]\\asdfghjkl;'zxcvbnm,./"; - -char strCharTable[] = "`~1!2@3#4$5%6^7&8*9(0)-_=+[{]}\\|;:'\",<.>/?"; //用于转换上/下档键 - -Bool bShiftPressed = False; -Bool bVKCaps = False; - -extern Display *dpy; -extern int iScreen; - -extern char strStringGet[]; -extern Bool bVK; - -extern XIMS ims; - -extern uint iHZInputed; - -#ifdef _ENABLE_DBUS -extern Property vk_prop; -#endif - -char* sVKHotkey = NULL; - -Bool CreateVKWindow (void) -{ - XSetWindowAttributes attrib; - unsigned long attribmask; - char strWindowName[] = "Fcitx VK Window"; - Colormap cmap; - Visual * vs; - int depth; - - LoadVKImage(); - - vs = FindARGBVisual(dpy, iScreen); - InitWindowAttribute(&vs, &cmap, &attrib, &attribmask, &depth); - - vkWindow.fontSize = 12; - vkWindow.fontColor = sc.skinKeyboard.keyColor; - - vkWindow.window = XCreateWindow (dpy, - DefaultRootWindow (dpy), - 0, 0, - VK_WINDOW_WIDTH, VK_WINDOW_HEIGHT, - 0, depth, InputOutput, vs, attribmask, &attrib); - if (vkWindow.window == (Window) NULL) - return False; - - vkWindow.surface=cairo_xlib_surface_create(dpy, vkWindow.window, vs, VK_WINDOW_WIDTH, VK_WINDOW_HEIGHT); - - XSelectInput (dpy, vkWindow.window, ExposureMask | ButtonPressMask | ButtonReleaseMask | PointerMotionMask ); - - XTextProperty tp; - /* Set the name of the window */ - tp.value = (void *)strWindowName; - tp.encoding = XA_STRING; - tp.format = 16; - tp.nitems = strlen(strWindowName); - XSetWMName (dpy, vkWindow.window, &tp); - - LoadVKMapFile (); - - return True; -} - -void DisplayVKWindow (void) -{ - XMapRaised (dpy, vkWindow.window); -} - -void DestroyVKWindow (void) -{ - cairo_surface_destroy(vkWindow.surface); - XDestroyWindow(dpy, vkWindow.window); -} - -void DrawVKWindow (void) -{ - int i; - int iPos; - cairo_t *cr; - - cr=cairo_create(vkWindow.surface); - cairo_set_source_surface(cr, keyBoard, 0, 0); - cairo_paint(cr); - /* 显示字符 */ - /* 名称 */ - OutputString (cr, vks[iCurrentVK].strName, gs.font, vkWindow.fontSize , (VK_WINDOW_WIDTH - StringWidth (vks[iCurrentVK].strName, gs.font, sc.skinFont.fontSize)) / 2, 6, &vkWindow.fontColor); - - /* 第一排 */ - iPos = 13; - for (i = 0; i < 13; i++) { - OutputString (cr, vks[iCurrentVK].strSymbol[i][1], gs.font, vkWindow.fontSize, iPos, 27, &vkWindow.fontColor); - OutputString (cr, vks[iCurrentVK].strSymbol[i][0], gs.font, vkWindow.fontSize, iPos - 5, 40, &vkWindow.fontColor); - iPos += 24; - } - /* 第二排 */ - iPos = 48; - for (i = 13; i < 26; i++) { - OutputString (cr, vks[iCurrentVK].strSymbol[i][1], gs.font, vkWindow.fontSize, iPos, 55, &vkWindow.fontColor); - OutputString (cr, vks[iCurrentVK].strSymbol[i][0], gs.font, vkWindow.fontSize, iPos - 5, 68, &vkWindow.fontColor); - iPos += 24; - } - /* 第三排 */ - iPos = 55; - for (i = 26; i < 37; i++) { - OutputString (cr, vks[iCurrentVK].strSymbol[i][1], gs.font, vkWindow.fontSize, iPos, 83, &vkWindow.fontColor); - OutputString (cr, vks[iCurrentVK].strSymbol[i][0], gs.font, vkWindow.fontSize, iPos - 5, 96, &vkWindow.fontColor); - iPos += 24; - } - - /* 第四排 */ - iPos = 72; - for (i = 37; i < 47; i++) { - OutputString (cr, vks[iCurrentVK].strSymbol[i][1], gs.font, vkWindow.fontSize, iPos, 111, &vkWindow.fontColor); - OutputString (cr, vks[iCurrentVK].strSymbol[i][0], gs.font, vkWindow.fontSize, iPos - 5, 124, &vkWindow.fontColor); - iPos += 24; - } - - cairo_destroy(cr); -} - -/* - * 处理相关鼠标键 - */ -Bool VKMouseKey (int x, int y) -{ - int iIndex; - IMForwardEventStruct forwardEvent; - char strKey[3]; - char *pstr; - - if (IsInBox (x, y, 1, 1, VK_WINDOW_WIDTH, 16)) - ChangVK (); - else { - if (!CurrentIC || !CurrentIC->id) - return False; - - strKey[1] = '\0'; - pstr = strKey; - if (y >= 28 && y <= 55) { //第一行 - if (x < 4 || x > 348) - return False; - - x -= 4; - if (x >= 313 && x <= 344) { //backspace - MyIMForwardEvent (CurrentIC->connect_id, CurrentIC->id, 22); - return True; - } - else { - iIndex = x / 24; - if (iIndex > 12) //避免出现错误 - iIndex = 12; - pstr = vks[iCurrentVK].strSymbol[iIndex][bShiftPressed ^ bVKCaps]; - if (bShiftPressed) { - bShiftPressed = False; - DrawVKWindow (); - } - } - } - else if (y >= 56 && y <= 83) { //第二行 - if (x < 4 || x > 350) - return False; - - if (x >= 4 && x < 38) { //Tab - MyIMForwardEvent (CurrentIC->connect_id, CurrentIC->id, 23); - return True; - } - else { - iIndex = 13 + (x - 38) / 24; - pstr = vks[iCurrentVK].strSymbol[iIndex][bShiftPressed ^ bVKCaps]; - if (bShiftPressed) { - bShiftPressed = False; - DrawVKWindow (); - } - } - } - else if (y >= 84 && y <= 111) { //第三行 - if (x < 4 || x > 350) - return False; - - if (x >= 4 && x < 44) { //Caps - //改变大写键状态 - bVKCaps = !bVKCaps; - pstr = (char *) NULL; - DrawVKWindow (); - } - else if (x > 308 && x <= 350) //Return - strKey[0] = '\n'; - else { - iIndex = 26 + (x - 44) / 24; - pstr = vks[iCurrentVK].strSymbol[iIndex][bShiftPressed ^ bVKCaps]; - if (bShiftPressed) { - bShiftPressed = False; - DrawVKWindow (); - } - } - } - else if (y >= 112 && y <= 139) { //第四行 - if (x < 4 || x > 302) - return False; - - if (x >= 4 && x < 62) { //SHIFT - //改变SHIFT键状态 - bShiftPressed = !bShiftPressed; - pstr = (char *) NULL; - DrawVKWindow (); - } - else { - iIndex = 37 + (x - 62) / 24; - pstr = vks[iCurrentVK].strSymbol[iIndex][bShiftPressed ^ bVKCaps]; - if (bShiftPressed) { - bShiftPressed = False; - DrawVKWindow (); - } - } - } - else if (y >= 140 && y <= 162) { //第五行 - if (x >= 4 && x < 38) { //Ins - //改变INS键状态 - MyIMForwardEvent (CurrentIC->connect_id, CurrentIC->id, 106); - return True; - } - else if (x >= 61 && x < 98) { //DEL - MyIMForwardEvent (CurrentIC->connect_id, CurrentIC->id, 107); - return True; - } - else if (x >= 99 && x < 270) //空格 - strcpy (strKey, "\xa1\xa1"); - else if (x >= 312 && x <= 350) { //ESC - SwitchVK (); - pstr = (char *) NULL; - } - else - return False; - } - - if (pstr) { - memset (&forwardEvent, 0, sizeof (IMForwardEventStruct)); - forwardEvent.connect_id = CurrentIC->connect_id; - forwardEvent.icid = CurrentIC->id; - SendHZtoClient (&forwardEvent, pstr); - iHZInputed += (int) (utf8_strlen (pstr)); //粗略统计字数 - } - } - - return True; -} - -/* - * 读取虚拟键盘映射文件 - */ -void LoadVKMapFile (void) -{ - int i, j; - FILE *fp; - char strPath[PATH_MAX]; - char *pstr; - - for (j = 0; j < VK_MAX; j++) { - for (i = 0; i < VK_NUMBERS; i++) { - vks[j].strSymbol[i][0][0] = '\0'; - vks[j].strSymbol[i][1][0] = '\0'; - } - vks[j].strName[0] = '\0'; - } - - fp = GetXDGFileData(VK_FILE, "rt", NULL); - - if (!fp) - return; - - iVKCount = 0; - - for (;;) { - if (!fgets (strPath, PATH_MAX, fp)) - break; - pstr = strPath; - while (*pstr == ' ' || *pstr == '\t') - pstr++; - if (pstr[0] == '#') - continue; - - i = strlen (pstr) - 1; - if (pstr[i] == '\n') - pstr[i] = '\0'; - if (!strlen (pstr)) - continue; - - if (!strcmp (pstr, "[VK]")) - iVKCount++; - else if (!strncmp (pstr, "NAME=", 5)) - strcpy (vks[iVKCount - 1].strName, pstr + 5); - else { - if (pstr[1] != '=' && !iVKCount) - continue; - - for (i = 0; i < VK_NUMBERS; i++) { - if (vkTable[i] == tolower (pstr[0])) { - pstr += 2; - while (*pstr == ' ' || *pstr == '\t') - pstr++; - - if (!(*pstr)) - break; - - j = 0; - while (*pstr && (*pstr != ' ' && *pstr != '\t')) - vks[iVKCount - 1].strSymbol[i][0][j++] = *pstr++; - vks[iVKCount - 1].strSymbol[i][0][j] = '\0'; - - j = 0; - while (*pstr == ' ' || *pstr == '\t') - pstr++; - if (*pstr) { - while (*pstr && (*pstr != ' ' && *pstr != '\t')) - vks[iVKCount - 1].strSymbol[i][1][j++] = *pstr++; - vks[iVKCount - 1].strSymbol[i][1][j] = '\0'; - } - - break; - } - } - } - } - - fclose (fp); -} - -/* - * 根据字符查找符号 - */ -char *VKGetSymbol (char cChar) -{ - int i; - - for (i = 0; i < VK_NUMBERS; i++) { - if (MyToUpper (vkTable[i]) == cChar) - return vks[iCurrentVK].strSymbol[i][1]; - if (MyToLower (vkTable[i]) == cChar) - return vks[iCurrentVK].strSymbol[i][0]; - } - - return NULL; -} - -/* - * 上/下档键字符转换,以取代toupper和tolower - */ -int MyToUpper (int iChar) -{ - char *pstr; - - pstr = strCharTable; - while (*pstr) { - if (*pstr == iChar) - return *(pstr + 1); - pstr += 2; - } - - return toupper (iChar); -} - -int MyToLower (int iChar) -{ - char *pstr; - - pstr = strCharTable + 1; - for (;;) { - if (*pstr == iChar) - return *(pstr - 1); - if (!(*(pstr + 1))) - break; - pstr += 2; - } - - return tolower (iChar); -} - -void ChangVK (void) -{ - iCurrentVK++; - if (iCurrentVK == iVKCount) - iCurrentVK = 0; - - bVKCaps = False; - bShiftPressed = False; - - DrawVKWindow (); - SwitchIM (-2); - - if (!fc.bUseDBus) - DrawMainWindow (); -} - -INPUT_RETURN_VALUE DoVKInput (KeySym sym, int state, int iCount) -{ - char *pstr = NULL; - - if (IsHotKeySimple(sym, state)) - pstr = VKGetSymbol (sym); - if (!pstr) - return IRV_TO_PROCESS; - else { - strcpy (strStringGet, pstr); - return IRV_GET_CANDWORDS; - } -} - -void SwitchVK (void) -{ - if (!iVKCount) - return; - - bVK = !bVK; - if (bVK) { - int x, y; - int dwidth, dheight; - GetScreenSize(&dwidth, &dheight); - - if (fc.bUseDBus) - x = dwidth / 2 - VK_WINDOW_WIDTH / 2; - else - x = fcitxProfile.iMainWindowOffsetX; - if ((x + VK_WINDOW_WIDTH) >= dwidth) - x = dwidth - VK_WINDOW_WIDTH - 1; - if (x < 0) - x = 0; - - if (fc.bUseDBus) - y = 0; - else - y = fcitxProfile.iMainWindowOffsetY + sc.skinMainBar.backImg.height + 2; - if ((y + VK_WINDOW_HEIGHT) >= dheight) - y = fcitxProfile.iMainWindowOffsetY - VK_WINDOW_HEIGHT - 2; - if (y < 0) - y = 0; - - XMoveWindow (dpy, vkWindow.window, x, y); - DisplayVKWindow (); - CloseInputWindow(); - - if (CurrentIC && CurrentIC->state == IS_CLOSED) - SetIMState (True); - } - else - XUnmapWindow (dpy, vkWindow.window); - - SwitchIM (-2); - - if ( !fc.bUseDBus ) - DrawMainWindow (); -#ifdef _ENABLE_DBUS - else - updateProperty(&vk_prop); -#endif -} - -/* -*选择指定index的虚拟键盘 -*/ -void SelectVK(int vkidx) -{ - bVK = False; - iCurrentVK=vkidx; - XUnmapWindow (dpy, vkWindow.window); - SwitchVK(); -} diff -Nru fcitx-4.0.1/src/im/special/vk.h fcitx-4.1.1/src/im/special/vk.h --- fcitx-4.0.1/src/im/special/vk.h 2010-12-06 08:44:21.000000000 +0000 +++ fcitx-4.1.1/src/im/special/vk.h 1970-01-01 00:00:00.000000000 +0000 @@ -1,60 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2002~2005 by Yuking * - * yuking_net@sohu.com * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * - ***************************************************************************/ -#ifndef _VK_WINDOW_H -#define _VK_WINDOW_H - -#include -#include "core/ime.h" -#include "ui/skin.h" - -#define VK_FILE "vk.conf" - -#define VK_WINDOW_WIDTH 354 -#define VK_WINDOW_HEIGHT 164 -#define VK_NUMBERS 47 -#define VK_MAX 50 - -typedef struct { - char strSymbol[VK_NUMBERS][2][UTF8_MAX_LENGTH + 1]; //相应的符号 - char strName[MAX_IM_NAME + 1]; -} VKS; - -typedef struct VKWindow -{ - Window window; - ConfigColor fontColor; - int fontSize; - cairo_surface_t* surface; -} VKWindow; - -Bool CreateVKWindow (void); -void DisplayVKWindow (void); -void DrawVKWindow (void); -char *VKGetSymbol (char cChar); -void LoadVKMapFile (void); -void ChangVK (void); -INPUT_RETURN_VALUE DoVKInput (KeySym sym, int state, int iCount); -int MyToLower (int iChar); -int MyToUpper (int iChar); -void SwitchVK (void); -void DestroyVKWindow (void); -Bool VKMouseKey (int x, int y); - -#endif diff -Nru fcitx-4.0.1/src/im/table/CMakeLists.txt fcitx-4.1.1/src/im/table/CMakeLists.txt --- fcitx-4.0.1/src/im/table/CMakeLists.txt 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/im/table/CMakeLists.txt 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,11 @@ + +set(FCITX_TABLE_SOURCES + tabledict.c + tablepinyinwrapper.c + table.c + tableconfig.c +) + +fcitx_add_addon(fcitx-table ${FCITX_TABLE_SOURCES}) +fcitx_add_addon_conf_file(fcitx-table.conf) +fcitx_add_configdesc_file(table.desc) \ No newline at end of file diff -Nru fcitx-4.0.1/src/im/table/fcitx-table.conf.in fcitx-4.1.1/src/im/table/fcitx-table.conf.in --- fcitx-4.0.1/src/im/table/fcitx-table.conf.in 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/im/table/fcitx-table.conf.in 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,10 @@ +[Addon] +Name=fcitx-table +_GeneralName=Table +_Comment=Table Input Method for Fcitx +Category=InputMethod +Enabled=True +Library=fcitx-table.so +Type=SharedLibrary +Dependency=fcitx-pinyin,fcitx-punc +SubConfig=Table:configfile:table/*.conf:table.desc,fcitx:domain diff -Nru fcitx-4.0.1/src/im/table/Makefile.am fcitx-4.1.1/src/im/table/Makefile.am --- fcitx-4.0.1/src/im/table/Makefile.am 2010-11-28 11:55:00.000000000 +0000 +++ fcitx-4.1.1/src/im/table/Makefile.am 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ -INCLUDES = \ - -I$(top_srcdir)/lib \ - -I$(top_srcdir)/src \ - @CAIRO_XLIB_CFLAGS@ \ - $(NULL) -DEFS = -DPKGDATADIR=\"$(pkgdatadir)\" -DDATADIR=\"$(datadir)\" - -noinst_LIBRARIES=libimtable.a -libimtable_a_SOURCES= table.c table.h \ - tableconfig.c - diff -Nru fcitx-4.0.1/src/im/table/Makefile.in fcitx-4.1.1/src/im/table/Makefile.in --- fcitx-4.0.1/src/im/table/Makefile.in 2010-12-17 04:26:31.000000000 +0000 +++ fcitx-4.1.1/src/im/table/Makefile.in 1970-01-01 00:00:00.000000000 +0000 @@ -1,540 +0,0 @@ -# Makefile.in generated by automake 1.11.1 from Makefile.am. -# @configure_input@ - -# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, -# Inc. -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - -@SET_MAKE@ - -VPATH = @srcdir@ -pkgdatadir = $(datadir)/@PACKAGE@ -pkgincludedir = $(includedir)/@PACKAGE@ -pkglibdir = $(libdir)/@PACKAGE@ -pkglibexecdir = $(libexecdir)/@PACKAGE@ -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = @build@ -host_triplet = @host@ -subdir = src/im/table -DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/configure.in -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -mkinstalldirs = $(install_sh) -d -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -CONFIG_CLEAN_VPATH_FILES = -LIBRARIES = $(noinst_LIBRARIES) -ARFLAGS = cru -AM_V_AR = $(am__v_AR_$(V)) -am__v_AR_ = $(am__v_AR_$(AM_DEFAULT_VERBOSITY)) -am__v_AR_0 = @echo " AR " $@; -AM_V_at = $(am__v_at_$(V)) -am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) -am__v_at_0 = @ -libimtable_a_AR = $(AR) $(ARFLAGS) -libimtable_a_LIBADD = -am_libimtable_a_OBJECTS = table.$(OBJEXT) tableconfig.$(OBJEXT) -libimtable_a_OBJECTS = $(am_libimtable_a_OBJECTS) -DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles -am__mv = mv -f -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -AM_V_lt = $(am__v_lt_$(V)) -am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) -am__v_lt_0 = --silent -LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ - $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ - $(AM_CFLAGS) $(CFLAGS) -AM_V_CC = $(am__v_CC_$(V)) -am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) -am__v_CC_0 = @echo " CC " $@; -CCLD = $(CC) -LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -AM_V_CCLD = $(am__v_CCLD_$(V)) -am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) -am__v_CCLD_0 = @echo " CCLD " $@; -AM_V_GEN = $(am__v_GEN_$(V)) -am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) -am__v_GEN_0 = @echo " GEN " $@; -SOURCES = $(libimtable_a_SOURCES) -DIST_SOURCES = $(libimtable_a_SOURCES) -ETAGS = etags -CTAGS = ctags -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -ACLOCAL = @ACLOCAL@ -ALL_LINGUAS = @ALL_LINGUAS@ -AMTAR = @AMTAR@ -AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ -AR = @AR@ -AUTOCONF = @AUTOCONF@ -AUTOHEADER = @AUTOHEADER@ -AUTOMAKE = @AUTOMAKE@ -AWK = @AWK@ -CAIRO_XLIB_CFLAGS = @CAIRO_XLIB_CFLAGS@ -CAIRO_XLIB_LIBS = @CAIRO_XLIB_LIBS@ -CC = @CC@ -CCDEPMODE = @CCDEPMODE@ -CFLAGS = @CFLAGS@ -CPP = @CPP@ -CPPFLAGS = @CPPFLAGS@ -CYGPATH_W = @CYGPATH_W@ -DATADIRNAME = @DATADIRNAME@ -DBUS_CFLAGS = @DBUS_CFLAGS@ -DBUS_LIBS = @DBUS_LIBS@ -DEFS = -DPKGDATADIR=\"$(pkgdatadir)\" -DDATADIR=\"$(datadir)\" -DEPDIR = @DEPDIR@ -DLLTOOL = @DLLTOOL@ -DSYMUTIL = @DSYMUTIL@ -DUMPBIN = @DUMPBIN@ -ECHO_C = @ECHO_C@ -ECHO_N = @ECHO_N@ -ECHO_T = @ECHO_T@ -EGREP = @EGREP@ -EXEEXT = @EXEEXT@ -FGREP = @FGREP@ -FONTCONFIG_CFLAGS = @FONTCONFIG_CFLAGS@ -FONTCONFIG_LIBS = @FONTCONFIG_LIBS@ -GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ -GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ -GMSGFMT = @GMSGFMT@ -GMSGFMT_015 = @GMSGFMT_015@ -GREP = @GREP@ -HOST_LIBS = @HOST_LIBS@ -INCINTL = @INCINTL@ -INSTALL = @INSTALL@ -INSTALL_DATA = @INSTALL_DATA@ -INSTALL_PROGRAM = @INSTALL_PROGRAM@ -INSTALL_SCRIPT = @INSTALL_SCRIPT@ -INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ -INTLLIBS = @INTLLIBS@ -INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ -INTLTOOL_MERGE = @INTLTOOL_MERGE@ -INTLTOOL_PERL = @INTLTOOL_PERL@ -INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ -INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ -LD = @LD@ -LDFLAGS = @LDFLAGS@ -LIBICONV = @LIBICONV@ -LIBINTL = @LIBINTL@ -LIBOBJS = @LIBOBJS@ -LIBS = @LIBS@ -LIBTOOL = @LIBTOOL@ -LIPO = @LIPO@ -LN_S = @LN_S@ -LTLIBICONV = @LTLIBICONV@ -LTLIBINTL = @LTLIBINTL@ -LTLIBOBJS = @LTLIBOBJS@ -MAKEINFO = @MAKEINFO@ -MANIFEST_TOOL = @MANIFEST_TOOL@ -MD5SUM = @MD5SUM@ -MKDIR_P = @MKDIR_P@ -MSGFMT = @MSGFMT@ -MSGFMT_015 = @MSGFMT_015@ -MSGMERGE = @MSGMERGE@ -NM = @NM@ -NMEDIT = @NMEDIT@ -OBJDUMP = @OBJDUMP@ -OBJEXT = @OBJEXT@ -OTOOL = @OTOOL@ -OTOOL64 = @OTOOL64@ -PACKAGE = @PACKAGE@ -PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ -PACKAGE_NAME = @PACKAGE_NAME@ -PACKAGE_STRING = @PACKAGE_STRING@ -PACKAGE_TARNAME = @PACKAGE_TARNAME@ -PACKAGE_URL = @PACKAGE_URL@ -PACKAGE_VERSION = @PACKAGE_VERSION@ -PANGOCAIRO_CFLAGS = @PANGOCAIRO_CFLAGS@ -PANGOCAIRO_LIBS = @PANGOCAIRO_LIBS@ -PATH_SEPARATOR = @PATH_SEPARATOR@ -PKG_CONFIG = @PKG_CONFIG@ -PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ -PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ -POSUB = @POSUB@ -RANLIB = @RANLIB@ -SED = @SED@ -SET_MAKE = @SET_MAKE@ -SHELL = @SHELL@ -STRIP = @STRIP@ -TAR = @TAR@ -USE_NLS = @USE_NLS@ -VERSION = @VERSION@ -WGET = @WGET@ -XGETTEXT = @XGETTEXT@ -XGETTEXT_015 = @XGETTEXT_015@ -XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ -XMKMF = @XMKMF@ -XRENDER_CFLAGS = @XRENDER_CFLAGS@ -XRENDER_LIBS = @XRENDER_LIBS@ -X_CFLAGS = @X_CFLAGS@ -X_LIBS = @X_LIBS@ -abs_builddir = @abs_builddir@ -abs_srcdir = @abs_srcdir@ -abs_top_builddir = @abs_top_builddir@ -abs_top_srcdir = @abs_top_srcdir@ -ac_ct_AR = @ac_ct_AR@ -ac_ct_CC = @ac_ct_CC@ -ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ -am__include = @am__include@ -am__leading_dot = @am__leading_dot@ -am__quote = @am__quote@ -am__tar = @am__tar@ -am__untar = @am__untar@ -bindir = @bindir@ -build = @build@ -build_alias = @build_alias@ -build_cpu = @build_cpu@ -build_os = @build_os@ -build_vendor = @build_vendor@ -builddir = @builddir@ -datadir = @datadir@ -datarootdir = @datarootdir@ -docdir = @docdir@ -dvidir = @dvidir@ -exec_prefix = @exec_prefix@ -host = @host@ -host_alias = @host_alias@ -host_cpu = @host_cpu@ -host_os = @host_os@ -host_vendor = @host_vendor@ -htmldir = @htmldir@ -includedir = @includedir@ -infodir = @infodir@ -install_sh = @install_sh@ -libdir = @libdir@ -libexecdir = @libexecdir@ -localedir = @localedir@ -localstatedir = @localstatedir@ -mandir = @mandir@ -mkdir_p = @mkdir_p@ -oldincludedir = @oldincludedir@ -pdfdir = @pdfdir@ -prefix = @prefix@ -program_transform_name = @program_transform_name@ -psdir = @psdir@ -sbindir = @sbindir@ -sharedstatedir = @sharedstatedir@ -srcdir = @srcdir@ -sysconfdir = @sysconfdir@ -target_alias = @target_alias@ -top_build_prefix = @top_build_prefix@ -top_builddir = @top_builddir@ -top_srcdir = @top_srcdir@ -INCLUDES = \ - -I$(top_srcdir)/lib \ - -I$(top_srcdir)/src \ - @CAIRO_XLIB_CFLAGS@ \ - $(NULL) - -noinst_LIBRARIES = libimtable.a -libimtable_a_SOURCES = table.c table.h \ - tableconfig.c - -all: all-am - -.SUFFIXES: -.SUFFIXES: .c .lo .o .obj -$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ - && { if test -f $@; then exit 0; else break; fi; }; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/im/table/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign src/im/table/Makefile -.PRECIOUS: Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(am__aclocal_m4_deps): - -clean-noinstLIBRARIES: - -test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES) -libimtable.a: $(libimtable_a_OBJECTS) $(libimtable_a_DEPENDENCIES) - $(AM_V_at)-rm -f libimtable.a - $(AM_V_AR)$(libimtable_a_AR) libimtable.a $(libimtable_a_OBJECTS) $(libimtable_a_LIBADD) - $(AM_V_at)$(RANLIB) libimtable.a - -mostlyclean-compile: - -rm -f *.$(OBJEXT) - -distclean-compile: - -rm -f *.tab.c - -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/table.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tableconfig.Po@am__quote@ - -.c.o: -@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c $< - -.c.obj: -@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` - -.c.lo: -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs - -ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - mkid -fID $$unique -tags: TAGS - -TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - set x; \ - here=`pwd`; \ - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: CTAGS -CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d "$(distdir)/$$file"; then \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ - else \ - test -f "$(distdir)/$$file" \ - || cp -p $$d/$$file "$(distdir)/$$file" \ - || exit 1; \ - fi; \ - done -check-am: all-am -check: check-am -all-am: Makefile $(LIBRARIES) -installdirs: -install: install-am -install-exec: install-exec-am -install-data: install-data-am -uninstall: uninstall-am - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-am -install-strip: - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - `test -z '$(STRIP)' || \ - echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install -mostlyclean-generic: - -clean-generic: - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-am - -clean-am: clean-generic clean-libtool clean-noinstLIBRARIES \ - mostlyclean-am - -distclean: distclean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -distclean-am: clean-am distclean-compile distclean-generic \ - distclean-tags - -dvi: dvi-am - -dvi-am: - -html: html-am - -html-am: - -info: info-am - -info-am: - -install-data-am: - -install-dvi: install-dvi-am - -install-dvi-am: - -install-exec-am: - -install-html: install-html-am - -install-html-am: - -install-info: install-info-am - -install-info-am: - -install-man: - -install-pdf: install-pdf-am - -install-pdf-am: - -install-ps: install-ps-am - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-am - -mostlyclean-am: mostlyclean-compile mostlyclean-generic \ - mostlyclean-libtool - -pdf: pdf-am - -pdf-am: - -ps: ps-am - -ps-am: - -uninstall-am: - -.MAKE: install-am install-strip - -.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ - clean-libtool clean-noinstLIBRARIES ctags distclean \ - distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am html html-am info info-am \ - install install-am install-data install-data-am install-dvi \ - install-dvi-am install-exec install-exec-am install-html \ - install-html-am install-info install-info-am install-man \ - install-pdf install-pdf-am install-ps install-ps-am \ - install-strip installcheck installcheck-am installdirs \ - maintainer-clean maintainer-clean-generic mostlyclean \ - mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ - pdf pdf-am ps ps-am tags uninstall uninstall-am - - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff -Nru fcitx-4.0.1/src/im/table/table.c fcitx-4.1.1/src/im/table/table.c --- fcitx-4.0.1/src/im/table/table.c 2010-12-17 04:18:35.000000000 +0000 +++ fcitx-4.1.1/src/im/table/table.c 2011-09-08 16:00:05.000000000 +0000 @@ -17,15 +17,14 @@ * Free Software Foundation, Inc., * * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ***************************************************************************/ -#ifdef HAVE_CONFIG_H -#include +#ifdef FCITX_HAVE_CONFIG_H +#include "config.h" #endif -#include "core/fcitx.h" -#include "tools/tools.h" +#include "fcitx/fcitx.h" +#include "fcitx-utils/utils.h" -#include "im/table/table.h" -#include "im/special/punc.h" +#include "table.h" #include #include @@ -36,68 +35,85 @@ #include #include #include +#include -#include - -#include "core/keys.h" -#include "ui/InputWindow.h" -#include "im/pinyin/py.h" -#include "im/pinyin/pyParser.h" -#include "tools/utarray.h" +#include "im/pinyin/pydef.h" +#include "fcitx/keys.h" +#include "fcitx/ui.h" +#include "fcitx-utils/utarray.h" #include "fcitx-config/xdg.h" -#include "tools/profile.h" -#include "fcitx-config/cutils.h" +#include "fcitx/profile.h" +#include "fcitx-utils/log.h" +#include "fcitx/instance.h" +#include "module/punc/punc.h" +#include "fcitx/module.h" +#include "fcitx/frontend.h" +#include "tablepinyinwrapper.h" +#include static void FreeTableConfig(void *v); -static void FreeTable (INT8 iTableIndex); -UT_icd table_icd = {sizeof(TABLE), NULL ,NULL, FreeTableConfig}; -TableState tbl; - -extern char strPYAuto[]; - -extern INT8 iInternalVersion; - -extern Display *dpy; - -extern char strCodeInput[]; -extern Bool bIsDoInputOnly; -extern int iCandPageCount; -extern int iCurrentCandPage; -extern int iCandWordCount; -extern int iLegendCandWordCount; -extern int iLegendCandPageCount; -extern int iCurrentLegendCandPage; -extern int iCodeInputCount; -extern char strStringGet[]; -extern Bool bIsInLegend; -extern INT8 lastIsSingleHZ; - -extern ADJUSTORDER baseOrder; -extern Bool bSP; -extern Bool bPYBaseDictLoaded; - -extern PYFA *PYFAList; -extern PYCandWord PYCandWords[]; - -extern char strFindString[]; -extern ParsePYStruct findMap; - -ConfigFileDesc* tableConfigDesc = NULL; +const UT_icd table_icd = {sizeof(TableMetaData), NULL ,NULL, FreeTableConfig}; +const UT_icd tableCand_icd = {sizeof(TABLECANDWORD*), NULL, NULL, NULL }; +typedef struct _TableCandWordSortContext { + ADJUSTORDER order; +} TableCandWordSortContext; + +static void *TableCreate(FcitxInstance* instance); +static int TableCandCmp(const void* a, const void* b, void* arg); + +FCITX_EXPORT_API +FcitxIMClass ime = { + TableCreate, + NULL +}; + +void *TableCreate(FcitxInstance* instance) +{ + FcitxTableState *tbl = fcitx_malloc0(sizeof(FcitxTableState)); + tbl->owner = instance; + LoadTableInfo(tbl); + TableMetaData* table; + for (table = (TableMetaData*) utarray_front(tbl->table); + table != NULL; + table = (TableMetaData*) utarray_next(tbl->table, table)) + { + FcitxLog(INFO, table->strName); + FcitxRegisterIM( + instance, + tbl, + table->strName, + table->strIconName, + TableInit, + TableResetStatus, + DoTableInput, + TableGetCandWords, + TablePhraseTips, + SaveTableIM, + NULL, + table, + table->iPriority + ); + } -static INT8 GetTableIMIndex(INT8 index); -int TablePriorityCmp(const void *a, const void *b) -{ - TABLE *ta, *tb; - ta = (TABLE*)a; - tb = (TABLE*)b; - return ta->iPriority - tb->iPriority; + return tbl; +} + +void SaveTableIM (void *arg) +{ + FcitxTableState *tbl = (FcitxTableState*) arg; + TableMetaData* table = (TableMetaData*) utarray_eltptr(tbl->table, tbl->iTableIMIndex); + if (!table->tableDict) + return; + if (table->tableDict && table->tableDict->iTableChanged) + SaveTableDict(table); } + /* * 读取码表输入法的名称和文件路径 */ -void LoadTableInfo (void) +void LoadTableInfo (FcitxTableState *tbl) { char **tablePath; size_t len; @@ -108,24 +124,27 @@ struct stat fileStat; StringHashSet* sset = NULL; - tbl.bTablePhraseTips = False; - tbl.iCurrentTableLoaded = -1; + tbl->bTablePhraseTips = false; + tbl->iCurrentTableLoaded = -1; - if (tbl.table) + if (tbl->table) { - utarray_free(tbl.table); - tbl.table = NULL; + utarray_free(tbl->table); + tbl->table = NULL; } - tbl.hkTableDelPhrase[0].sym = XK_7; tbl.hkTableDelPhrase[0].state = KEY_CTRL_COMP; - tbl.hkTableAdjustOrder[0].sym = XK_6; tbl.hkTableAdjustOrder[0].state = KEY_CTRL_COMP; - tbl.hkTableAddPhrase[0].sym = XK_8; tbl.hkTableAddPhrase[0].state = KEY_CTRL_COMP; + tbl->hkTableDelPhrase[0].sym = Key_7; + tbl->hkTableDelPhrase[0].state = KEY_CTRL_COMP; + tbl->hkTableAdjustOrder[0].sym = Key_6; + tbl->hkTableAdjustOrder[0].state = KEY_CTRL_COMP; + tbl->hkTableAddPhrase[0].sym = Key_8; + tbl->hkTableAddPhrase[0].state = KEY_CTRL_COMP; + + tbl->table = fcitx_malloc0(sizeof(UT_array)); + tbl->iTableCount = 0; + utarray_init(tbl->table, &table_icd); - tbl.table = malloc(sizeof(UT_array)); - tbl.iTableCount = 0; - utarray_init(tbl.table, &table_icd); - - tablePath = GetXDGPath(&len, "XDG_CONFIG_HOME", ".config", "fcitx/table" , DATADIR, "fcitx/data/table" ); + tablePath = GetXDGPath(&len, "XDG_CONFIG_HOME", ".config", PACKAGE "/table" , DATADIR, PACKAGE "/table" ); for (i = 0; i< len; i++) { @@ -158,7 +177,7 @@ if (!string) { char *bStr = strdup(drt->d_name); - string = malloc(sizeof(StringHashSet)); + string = fcitx_malloc0(sizeof(StringHashSet)); memset(string, 0, sizeof(StringHashSet)); string->name = bStr; HASH_ADD_KEYPTR(hh, sset, string->name, strlen(string->name), string); @@ -169,9 +188,9 @@ closedir(dir); } - char **paths = malloc(sizeof(char*) *len); + char **paths = fcitx_malloc0(sizeof(char*) *len); for (i = 0;i < len ;i ++) - paths[i] = malloc(sizeof(char) *PATH_MAX); + paths[i] = fcitx_malloc0(sizeof(char) *PATH_MAX); StringHashSet* string; for (string = sset; string != NULL; @@ -187,24 +206,22 @@ ConfigFile* cfile = ParseMultiConfigFile(paths, len, GetTableConfigDesc()); if (cfile) { - TABLE table; - memset(&table, 0, sizeof(TABLE)); - utarray_push_back(tbl.table, &table); - TABLE *t = (TABLE*)utarray_back(tbl.table); - TABLEConfigBind(t, cfile, GetTableConfigDesc()); + TableMetaData table; + memset(&table, 0, sizeof(TableMetaData)); + utarray_push_back(tbl->table, &table); + TableMetaData *t = (TableMetaData*)utarray_back(tbl->table); + TableMetaDataConfigBind(t, cfile, GetTableConfigDesc()); ConfigBindSync((GenericConfig*)t); FcitxLog(DEBUG, _("Table Config %s is %s"),string->name, (t->bEnabled)?"Enabled":"Disabled"); if (t->bEnabled) - tbl.iTableCount ++; + tbl->iTableCount ++; else { - utarray_pop_back(tbl.table); + utarray_pop_back(tbl->table); } } } - utarray_sort(tbl.table, TablePriorityCmp); - for (i = 0;i < len ;i ++) free(paths[i]); free(paths); @@ -222,699 +239,185 @@ } } -ConfigFileDesc *GetTableConfigDesc() -{ - if (!tableConfigDesc) - { - FILE *tmpfp; - tmpfp = GetXDGFileData("table.desc", "r", NULL); - tableConfigDesc = ParseConfigFileDescFp(tmpfp); - fclose(tmpfp); - } - - return tableConfigDesc; -} - -INT8 GetTableIMIndex(INT8 index) -{ - int i; - for (i = 0; i < tbl.iTableCount; i++) { - TABLE* table =(TABLE*) utarray_eltptr(tbl.table, i); - if (table->iIMIndex == index) - return i; - } - return -1; -} - -Bool LoadTableDict (void) -{ - char strCode[MAX_CODE_LENGTH + 1]; - char strHZ[PHRASE_MAX_LENGTH * UTF8_MAX_LENGTH + 1]; - FILE *fpDict; - RECORD *recTemp; - char strPath[PATH_MAX]; - unsigned int i = 0; - unsigned int iTemp, iTempCount; - char cChar = 0, cTemp; - INT8 iVersion = 1; - int iRecordIndex; - - //读入码表 -#ifdef _DEBUG - FcitxLog(DEBUG, _("Loading Table Dict")); -#endif - - TABLE* table = (TABLE*) utarray_eltptr(tbl.table, tbl.iTableIMIndex); - - { - size_t len; - char *pstr = NULL; - char ** path = GetXDGPath(&len, "XDG_CONFIG_HOME", ".config", "fcitx/table" , DATADIR, "fcitx/data/table" ); - fpDict = GetXDGFile(table->strPath, path, "r", len, &pstr); - FcitxLog(INFO, _("Load Table Dict from %s"), pstr); - free(pstr); - FreeXDGPath(path); - } - - if (!fpDict) { - FcitxLog( DEBUG, _("Cannot load table file: %s"), strPath); - return False; - } - - //先读取码表的信息 - //判断版本信息 - fread (&iTemp, sizeof (unsigned int), 1, fpDict); - if (!iTemp) { - fread (&iVersion, sizeof (INT8), 1, fpDict); - iVersion = (iVersion < iInternalVersion); - fread (&iTemp, sizeof (unsigned int), 1, fpDict); - } - - table->strInputCode = (char *) realloc (table->strInputCode, sizeof (char) * (iTemp + 1)); - fread (table->strInputCode, sizeof (char), iTemp + 1, fpDict); - /* - * 建立索引,加26是为了为拼音编码预留空间 - */ - tbl.recordIndex = (RECORD_INDEX *) malloc ((strlen (table->strInputCode) + 26) * sizeof (RECORD_INDEX)); - for (iTemp = 0; iTemp < strlen (table->strInputCode) + 26; iTemp++) { - tbl.recordIndex[iTemp].cCode = 0; - tbl.recordIndex[iTemp].record = NULL; - } - /* ********************************************************************** */ - - fread (&(table->iCodeLength), sizeof (unsigned char), 1, fpDict); - if (table->iTableAutoSendToClient == -1) - table->iTableAutoSendToClient = table->iCodeLength; - if (table->iTableAutoSendToClientWhenNone == -1) - table->iTableAutoSendToClientWhenNone = table->iCodeLength; - - if (!iVersion) - fread (&(table->iPYCodeLength), sizeof (unsigned char), 1, fpDict); - else - table->iPYCodeLength = table->iCodeLength; - - fread (&iTemp, sizeof (unsigned int), 1, fpDict); - table->strIgnoreChars = (char *) malloc (sizeof (char) * (iTemp + 1)); - fread (table->strIgnoreChars, sizeof (char), iTemp + 1, fpDict); - - fread (&(table->bRule), sizeof (unsigned char), 1, fpDict); - - if (table->bRule) { //表示有组词规则 - table->rule = (RULE *) malloc (sizeof (RULE) * (table->iCodeLength - 1)); - for (i = 0; i < table->iCodeLength - 1; i++) { - fread (&(table->rule[i].iFlag), sizeof (unsigned char), 1, fpDict); - fread (&(table->rule[i].iWords), sizeof (unsigned char), 1, fpDict); - table->rule[i].rule = (RULE_RULE *) malloc (sizeof (RULE_RULE) * table->iCodeLength); - for (iTemp = 0; iTemp < table->iCodeLength; iTemp++) { - fread (&(table->rule[i].rule[iTemp].iFlag), sizeof (unsigned char), 1, fpDict); - fread (&(table->rule[i].rule[iTemp].iWhich), sizeof (unsigned char), 1, fpDict); - fread (&(table->rule[i].rule[iTemp].iIndex), sizeof (unsigned char), 1, fpDict); - } - } - } - - tbl.recordHead = (RECORD *) malloc (sizeof (RECORD)); - tbl.currentRecord = tbl.recordHead; - - fread (&(table->iRecordCount), sizeof (unsigned int), 1, fpDict); - - for (i = 0; i < SINGLE_HZ_COUNT; i++) - tbl.tableSingleHZ[i] = (RECORD *) NULL; - - iRecordIndex = 0; - for (i = 0; i < table->iRecordCount; i++) { - fread (strCode, sizeof (char), table->iPYCodeLength + 1, fpDict); - fread (&iTemp, sizeof (unsigned int), 1, fpDict); - fread (strHZ, sizeof (char), iTemp, fpDict); - recTemp = (RECORD *) malloc (sizeof (RECORD)); - recTemp->strCode = (char *) malloc (sizeof (char) * (table->iPYCodeLength + 1)); - memset(recTemp->strCode, 0, sizeof (char) * (table->iPYCodeLength + 1)); - strcpy (recTemp->strCode, strCode); - recTemp->strHZ = (char *) malloc (sizeof (char) * iTemp); - strcpy (recTemp->strHZ, strHZ); - - if (!iVersion) { - fread (&cTemp, sizeof (char), 1, fpDict); - recTemp->bPinyin = cTemp; - } - - recTemp->flag = 0; - - fread (&(recTemp->iHit), sizeof (unsigned int), 1, fpDict); - fread (&(recTemp->iIndex), sizeof (unsigned int), 1, fpDict); - if (recTemp->iIndex > tbl.iTableIndex) - tbl.iTableIndex = recTemp->iIndex; - - /* 建立索引 */ - if (cChar != recTemp->strCode[0]) { - cChar = recTemp->strCode[0]; - tbl.recordIndex[iRecordIndex].cCode = cChar; - tbl.recordIndex[iRecordIndex].record = recTemp; - iRecordIndex++; - } - /* **************************************************************** */ - /** 为单字生成一个表 */ - if (utf8_strlen (recTemp->strHZ) == 1 && !IsIgnoreChar (strCode[0]) && !recTemp->bPinyin) { - iTemp = CalHZIndex (recTemp->strHZ); - if (iTemp >= 0 && iTemp < SINGLE_HZ_COUNT) { - if (tbl.tableSingleHZ[iTemp]) { - if (strlen (strCode) > strlen (tbl.tableSingleHZ[iTemp]->strCode)) - tbl.tableSingleHZ[iTemp] = recTemp; - } - else - tbl.tableSingleHZ[iTemp] = recTemp; - } - } - - if (recTemp->bPinyin) - table->bHasPinyin = True; - - tbl.currentRecord->next = recTemp; - recTemp->prev = tbl.currentRecord; - tbl.currentRecord = recTemp; - } - - tbl.currentRecord->next = tbl.recordHead; - tbl.recordHead->prev = tbl.currentRecord; - - fclose (fpDict); -#ifdef _DEBUG - FcitxLog(DEBUG, _("Load Table Dict OK")); -#endif - - //读取相应的特殊符号表 - fpDict = GetXDGFileTable(table->strSymbolFile, "rt", NULL, False); - - if (fpDict) { - tbl.iFH = CalculateRecordNumber (fpDict); - tbl.fh = (FH *) malloc (sizeof (FH) * tbl.iFH); - - for (i = 0; i < tbl.iFH; i++) { - if (EOF == fscanf (fpDict, "%s\n", tbl.fh[i].strFH)) - break; - } - tbl.iFH = i; - - fclose (fpDict); - } - - tbl.strNewPhraseCode = (char *) malloc (sizeof (char) * (table->iCodeLength + 1)); - tbl.strNewPhraseCode[table->iCodeLength] = '\0'; - tbl.iCurrentTableLoaded = tbl.iTableIMIndex; - - tbl.iAutoPhrase = 0; - if (table->bAutoPhrase) { - //为自动词组分配空间 - tbl.autoPhrase = (AUTOPHRASE *) malloc (sizeof (AUTOPHRASE) * AUTO_PHRASE_COUNT); - - //读取上次保存的自动词组信息 -#ifdef _DEBUG - FcitxLog(DEBUG, _("Loading Autophrase.")); -#endif - - strcpy (strPath, table->strName); - strcat (strPath, "_LastAutoPhrase.tmp"); - fpDict = GetXDGFileTable(strPath, "rb", NULL, True); - i = 0; - if (fpDict) { - fread (&tbl.iAutoPhrase, sizeof (unsigned int), 1, fpDict); - - for (; i < tbl.iAutoPhrase; i++) { - tbl.autoPhrase[i].strCode = (char *) malloc (sizeof (char) * (table->iCodeLength + 1)); - tbl.autoPhrase[i].strHZ = (char *) malloc (sizeof (char) * (PHRASE_MAX_LENGTH * UTF8_MAX_LENGTH + 1)); - fread (tbl.autoPhrase[i].strCode, table->iCodeLength + 1, 1, fpDict); - fread (tbl.autoPhrase[i].strHZ, PHRASE_MAX_LENGTH * UTF8_MAX_LENGTH + 1, 1, fpDict); - fread (&iTempCount, sizeof (unsigned int), 1, fpDict); - tbl.autoPhrase[i].iSelected = iTempCount; - if (i == AUTO_PHRASE_COUNT - 1) - tbl.autoPhrase[i].next = &tbl.autoPhrase[0]; - else - tbl.autoPhrase[i].next = &tbl.autoPhrase[i + 1]; - } - fclose (fpDict); - } - - for (; i < AUTO_PHRASE_COUNT; i++) { - tbl.autoPhrase[i].strCode = (char *) malloc (sizeof (char) * (table->iCodeLength + 1)); - tbl.autoPhrase[i].strHZ = (char *) malloc (sizeof (char) * (PHRASE_MAX_LENGTH * UTF8_MAX_LENGTH + 1)); - tbl.autoPhrase[i].iSelected = 0; - if (i == AUTO_PHRASE_COUNT - 1) - tbl.autoPhrase[i].next = &tbl.autoPhrase[0]; - else - tbl.autoPhrase[i].next = &tbl.autoPhrase[i + 1]; - } - - if (i == AUTO_PHRASE_COUNT) - tbl.insertPoint = &tbl.autoPhrase[0]; - else - tbl.insertPoint = &tbl.autoPhrase[i - 1]; - -#ifdef _DEBUG - FcitxLog(DEBUG, _("Load Autophrase OK")); -#endif - } - else - tbl.autoPhrase = (AUTOPHRASE *) NULL; - - return True; -} - -void TableInit (void) -{ - bSP = False; - tbl.PYBaseOrder = fc.baseOrder; - strPYAuto[0] = '\0'; -} - -void SaveTableIM (void) -{ - if (!tbl.recordHead) - return; - if (tbl.iTableChanged) - SaveTableDict(); -} - -/* - * 释放当前码表所占用的内存 - * 目的是切换码表时使占用的内存减少 - */ -void FreeTableIM (INT8 i) -{ - INT8 index = GetTableIMIndex(i); - FreeTable(index); -} - -void FreeTable (INT8 iTableIndex) -{ - RECORD *recTemp, *recNext; - INT16 i; - - if (iTableIndex == -1) - return; - - if (!tbl.recordHead) - return; - - if (tbl.iTableChanged) - SaveTableDict (); - - //释放码表 - recTemp = tbl.recordHead->next; - while (recTemp != tbl.recordHead) { - recNext = recTemp->next; - - free (recTemp->strCode); - free (recTemp->strHZ); - free (recTemp); - - recTemp = recNext; - } - - free (tbl.recordHead); - tbl.recordHead = NULL; - - if (tbl.fh) { - free (tbl.fh); - tbl.fh = NULL; - tbl.iFH = 0; - } - - TABLE* table = (TABLE*) utarray_eltptr(tbl.table, iTableIndex); - - table->iRecordCount = 0; - tbl.iCurrentTableLoaded = -1; - - free (tbl.strNewPhraseCode); - - //释放组词规则的空间 - if (table->rule) { - for (i = 0; i < table->iCodeLength - 1; i++) - free (table->rule[i].rule); - free (table->rule); - - table->rule = NULL; - } - - //释放索引的空间 - if (tbl.recordIndex) { - free (tbl.recordIndex); - tbl.recordIndex = NULL; - } - - //释放自动词组的空间 - if (tbl.autoPhrase) { - for (i = 0; i < AUTO_PHRASE_COUNT; i++) { - free (tbl.autoPhrase[i].strCode); - free (tbl.autoPhrase[i].strHZ); - } - free (tbl.autoPhrase); - - tbl.autoPhrase = (AUTOPHRASE *) NULL; - } - - fc.baseOrder = tbl.PYBaseOrder; -} - -void TableResetStatus (void) -{ - tbl.bIsTableAddPhrase = False; - tbl.bIsTableDelPhrase = False; - tbl.bIsTableAdjustOrder = False; - bIsDoInputOnly = False; - //bSingleHZMode = False; -} +CONFIG_DESC_DEFINE(GetTableConfigDesc, "table.desc") -void SaveTableDict (void) +boolean TableInit (void *arg) { - RECORD *recTemp; - char strPathTemp[PATH_MAX]; - char strPath[PATH_MAX]; - char *pstr; - FILE *fpDict; - unsigned int iTemp; - unsigned int i; - char cTemp; - - //先将码表保存在一个临时文件中,如果保存成功,再将该临时文件改名是码表名──这样可以防止码表文件被破坏 - if ( tbl.isSavingTableDic ) - return; - - if (!tbl.iTableChanged) - return; - - if (tbl.iCurrentTableLoaded == -1) - return; - - tbl.isSavingTableDic = True; - - fpDict = GetXDGFileTable(TEMP_FILE, "wb", &pstr, True); - if (!fpDict) { - tbl.isSavingTableDic = False; - FcitxLog(ERROR, _("Cannot create table file: %s"), pstr); - return; - } - strcpy(strPathTemp, pstr); - free(pstr); - - //写入版本号--如果第一个字为0,表示后面那个字节为版本号,为了与老版本兼容 - iTemp = 0; - fwrite (&iTemp, sizeof (unsigned int), 1, fpDict); - fwrite (&iInternalVersion, sizeof (INT8), 1, fpDict); - - TABLE* table = (TABLE*) utarray_eltptr(tbl.table, tbl.iTableIMIndex); - - iTemp = strlen (table->strInputCode); - fwrite (&iTemp, sizeof (unsigned int), 1, fpDict); - fwrite (table->strInputCode, sizeof (char), iTemp + 1, fpDict); - fwrite (&(table->iCodeLength), sizeof (INT8), 1, fpDict); - fwrite (&(table->iPYCodeLength), sizeof (INT8), 1, fpDict); - iTemp = strlen (table->strIgnoreChars); - fwrite (&iTemp, sizeof (unsigned int), 1, fpDict); - fwrite (table->strIgnoreChars, sizeof (char), iTemp + 1, fpDict); - - fwrite (&(table->bRule), sizeof (unsigned char), 1, fpDict); - if (table->bRule) { //表示有组词规则 - for (i = 0; i < table->iCodeLength - 1; i++) { - fwrite (&(table->rule[i].iFlag), sizeof (unsigned char), 1, fpDict); - fwrite (&(table->rule[i].iWords), sizeof (unsigned char), 1, fpDict); - for (iTemp = 0; iTemp < table->iCodeLength; iTemp++) { - fwrite (&(table->rule[i].rule[iTemp].iFlag), sizeof (unsigned char), 1, fpDict); - fwrite (&(table->rule[i].rule[iTemp].iWhich), sizeof (unsigned char), 1, fpDict); - fwrite (&(table->rule[i].rule[iTemp].iIndex), sizeof (unsigned char), 1, fpDict); - } - } - } + FcitxTableState *tbl = (FcitxTableState*) arg; + FcitxAddon* pyaddon = GetAddonByName(&tbl->owner->addons, "fcitx-pinyin"); + tbl->pyaddon = pyaddon; + if (pyaddon == NULL) + return false; + tbl->PYBaseOrder = AD_FREQ; - fwrite (&(table->iRecordCount), sizeof (unsigned int), 1, fpDict); - recTemp = tbl.recordHead->next; - while (recTemp != tbl.recordHead) { - fwrite (recTemp->strCode, sizeof (char), table->iPYCodeLength + 1, fpDict); - - iTemp = strlen (recTemp->strHZ) + 1; - fwrite (&iTemp, sizeof (unsigned int), 1, fpDict); - fwrite (recTemp->strHZ, sizeof (char), iTemp, fpDict); - - cTemp = recTemp->bPinyin; - fwrite (&cTemp, sizeof (char), 1, fpDict); - fwrite (&(recTemp->iHit), sizeof (unsigned int), 1, fpDict); - fwrite (&(recTemp->iIndex), sizeof (unsigned int), 1, fpDict); - recTemp = recTemp->next; - } - - fclose (fpDict); - fpDict = GetXDGFileTable(table->strPath, NULL, &pstr, True); - if (access (pstr, 0)) - unlink (pstr); - rename (strPathTemp, pstr); - free(pstr); - -#ifdef _DEBUG - FcitxLog(DEBUG, _("Rename OK")); -#endif - - tbl.iTableChanged = 0; - - if (tbl.autoPhrase) { - //保存上次的自动词组信息 - fpDict = GetXDGFileTable(TEMP_FILE, "wb", &pstr, True); - strncpy (strPathTemp, pstr, PATH_MAX); - if (fpDict) { - fwrite (&tbl.iAutoPhrase, sizeof (int), 1, fpDict); - for (i = 0; i < tbl.iAutoPhrase; i++) { - fwrite (tbl.autoPhrase[i].strCode, table->iCodeLength + 1, 1, fpDict); - fwrite (tbl.autoPhrase[i].strHZ, PHRASE_MAX_LENGTH * UTF8_MAX_LENGTH + 1, 1, fpDict); - iTemp = tbl.autoPhrase[i].iSelected; - fwrite (&iTemp, sizeof (unsigned int), 1, fpDict); - } - fclose (fpDict); - } - free(pstr); - - strncpy (strPath, table->strName, PATH_MAX); - strncat (strPath, "_LastAutoPhrase.tmp", PATH_MAX); - fpDict = GetXDGFileTable(strPath, NULL, &pstr, True); - if (access (pstr, F_OK)) - unlink (pstr); - rename (strPathTemp, pstr); - free(pstr); - } - - tbl.isSavingTableDic = False; + Table_ResetPY(tbl->pyaddon); + return true; } -Bool IsInputKey (int iKey) +void TableResetStatus (void* arg) { - char *p; - - TABLE* table = (TABLE*) utarray_eltptr(tbl.table, tbl.iTableIMIndex); - p = table->strInputCode; - if (!p) - return False; - - while (*p) { - if (iKey == *p) - return True; - p++; - } - - if (table->bHasPinyin) { - if (iKey >= 'a' && iKey <= 'z') - return True; - } - - return False; + FcitxTableState *tbl = (FcitxTableState*) arg; + FcitxInputState *input = &tbl->owner->input; + tbl->bIsTableAddPhrase = false; + tbl->bIsTableDelPhrase = false; + tbl->bIsTableAdjustOrder = false; + input->bIsDoInputOnly = false; + //bSingleHZMode = false; } -Bool IsEndKey (char cChar) +INPUT_RETURN_VALUE DoTableInput (void* arg, FcitxKeySym sym, unsigned int state) { - char *p; - - TABLE* table = (TABLE*) utarray_eltptr(tbl.table, tbl.iTableIMIndex); - p = table->strEndCode; - if (!p) - return False; - - while (*p) { - if (cChar == *p) - return True; - p++; - } + FcitxTableState *tbl = (FcitxTableState*) arg; + INPUT_RETURN_VALUE retVal; + FcitxInstance *instance = tbl->owner; + FcitxInputState *input = &instance->input; - return False; -} + FcitxIM* currentIM = GetCurrentIM(instance); + TableMetaData* table = (TableMetaData*) currentIM->priv; -Bool IsIgnoreChar (char cChar) -{ - char *p; + CandidateWordSetChoose(input->candList, table->strChoose); + CandidateWordSetPageSize(input->candList, ConfigGetMaxCandWord(instance->config)); - TABLE* table = (TABLE*) utarray_eltptr(tbl.table, tbl.iTableIMIndex); - p = table->strIgnoreChars; - while (*p) { - if (cChar == *p) - return True; - p++; + tbl->iTableIMIndex = utarray_eltidx(tbl->table, currentIM->priv); + if (tbl->iTableIMIndex != tbl->iCurrentTableLoaded) + { + TableMetaData* previousTable = (TableMetaData*) utarray_eltptr(tbl->table, tbl->iCurrentTableLoaded); + if (previousTable) + FreeTableDict(previousTable); + tbl->iCurrentTableLoaded = -1; } - return False; -} - -INT8 IsChooseKey (int iKey) -{ - int i = 0; - - TABLE* table = (TABLE*) utarray_eltptr(tbl.table, tbl.iTableIMIndex); - while (table->strChoose[i]) { - if (iKey == table->strChoose[i]) - return i + 1; - i++; + if (tbl->iCurrentTableLoaded == -1) + { + LoadTableDict (table); + tbl->iCurrentTableLoaded = tbl->iTableIMIndex; } - return 0; -} - -INPUT_RETURN_VALUE DoTableInput (unsigned int sym, unsigned int state, int keyCount) -{ - INPUT_RETURN_VALUE retVal; - TABLECANDWORD* tableCandWord = tbl.tableCandWord; - TABLE* table = (TABLE*) utarray_eltptr(tbl.table, tbl.iTableIMIndex); - if (IsHotKeyModifierCombine(sym, state)) return IRV_TO_PROCESS; - tbl.iTableIMIndex = GetTableIMIndex(gs.iIMIndex); - if (tbl.iTableIMIndex != tbl.iCurrentTableLoaded) - FreeTable(tbl.iCurrentTableLoaded); - - if (tbl.iCurrentTableLoaded == -1) - LoadTableDict (); - - if (tbl.bTablePhraseTips) { + if (tbl->bTablePhraseTips) { if (IsHotKey(sym, state, FCITX_CTRL_DELETE)) { - tbl.bTablePhraseTips = False; - TableDelPhraseByHZ (messageUp.msg[1].strMsg); + tbl->bTablePhraseTips = false; + TableDelPhraseByHZ (table->tableDict, GetMessageString(input->msgAuxUp, 1)); return IRV_CLEAN; } - else if (state == KEY_NONE && (sym != XK_Control_L && sym != XK_Control_R && sym != XK_Shift_L && sym != XK_Shift_R )) { - SetMessageCount(&messageUp, 0); - SetMessageCount(&messageDown, 0); - tbl.bTablePhraseTips = False; - CloseInputWindow(); + else if (state == KEY_NONE && (sym != Key_Control_L && sym != Key_Control_R && sym != Key_Shift_L && sym != Key_Shift_R )) { + CleanInputWindow(instance); + tbl->bTablePhraseTips = false; + CloseInputWindow(instance); } } retVal = IRV_DO_NOTHING; - if (state == KEY_NONE && (IsInputKey (sym) || IsEndKey (sym) || sym == table->cMatchingKey || sym == table->cPinyin)) { - bIsInLegend = False; - - if (!tbl.bIsTableAddPhrase && !tbl.bIsTableDelPhrase && !tbl.bIsTableAdjustOrder) { - if (strCodeInput[0] == table->cPinyin && table->bUsePY) { - if (iCodeInputCount != (MAX_PY_LENGTH * 5 + 1)) { - strCodeInput[iCodeInputCount++] = (char) sym; - strCodeInput[iCodeInputCount] = '\0'; - retVal = TableGetCandWords (SM_FIRST); + if (state == KEY_NONE && (IsInputKey (table->tableDict, sym) || IsEndKey (table, sym) || sym == table->cMatchingKey || sym == table->cPinyin)) { + if (input->bIsInRemind) + CandidateWordReset(input->candList); + input->bIsInRemind = false; + + /* it's not in special state */ + if (!tbl->bIsTableAddPhrase && !tbl->bIsTableDelPhrase && !tbl->bIsTableAdjustOrder) { + /* check we use Pinyin or Not */ + if (input->strCodeInput[0] == table->cPinyin && table->bUsePY) { + if (input->iCodeInputCount != (MAX_PY_LENGTH * 5 + 1)) { + input->strCodeInput[input->iCodeInputCount++] = (char) sym; + input->strCodeInput[input->iCodeInputCount] = '\0'; + retVal = IRV_DISPLAY_CANDWORDS; } else retVal = IRV_DO_NOTHING; } else { - if ((iCodeInputCount < table->iCodeLength) || (table->bHasPinyin && iCodeInputCount < table->iPYCodeLength)) { - strCodeInput[iCodeInputCount++] = (char) sym; - strCodeInput[iCodeInputCount] = '\0'; + /* length is not too large */ + if ((input->iCodeInputCount < table->tableDict->iCodeLength) || (table->tableDict->bHasPinyin && input->iCodeInputCount < table->tableDict->iPYCodeLength)) { + input->strCodeInput[input->iCodeInputCount++] = (char) sym; + input->strCodeInput[input->iCodeInputCount] = '\0'; - if (iCodeInputCount == 1 && strCodeInput[0] == table->cPinyin && table->bUsePY) { - iCandWordCount = 0; + if (input->iCodeInputCount == 1 && input->strCodeInput[0] == table->cPinyin && table->bUsePY) { retVal = IRV_DISPLAY_LAST; } else { char *strTemp; char *strLastFirstCand; CANDTYPE lastFirstCandType; - RECORD *pLastCandRecord = (RECORD *)NULL; - + int lastPageCount = CandidateWordPageCount(input->candList); strLastFirstCand = (char *)NULL; lastFirstCandType = CT_AUTOPHRASE; - if ( iCandWordCount ) { // to realize auto-sending HZ to client - strLastFirstCand = _TableGetCandWord (0,False); - lastFirstCandType = tableCandWord[0].flag; - pLastCandRecord = tbl.pCurCandRecord; + if ( CandidateWordPageCount(input->candList) != 0 ) { + // to realize auto-sending HZ to client + CandidateWord *candWord = NULL; + candWord = CandidateWordGetCurrentWindow(input->candList); + if (candWord->owner == tbl) + { + TABLECANDWORD* tableCandWord = candWord->priv; + lastFirstCandType = tableCandWord->flag; + INPUT_RETURN_VALUE ret = _TableGetCandWord (tbl, tableCandWord, false); + if (ret & IRV_FLAG_PENDING_COMMIT_STRING) + strLastFirstCand = GetOutputString(input); + } } - retVal = TableGetCandWords (SM_FIRST); - strTemp = GetPunc (strCodeInput[0]); - if (IsEndKey (sym)) { - if (iCodeInputCount == 1) + retVal = IRV_DISPLAY_CANDWORDS; + FcitxModuleFunctionArg farg; + int key = input->strCodeInput[0]; + farg.args[0] = &key; + strTemp = InvokeFunction(instance, FCITX_PUNC, GETPUNC, farg); + if (IsEndKey (table, sym)) { + if (input->iCodeInputCount == 1) return IRV_TO_PROCESS; - if (!iCandWordCount) { - iCodeInputCount = 0; + if (CandidateWordPageCount(input->candList) == 0) { + input->iCodeInputCount = 0; return IRV_CLEAN; } - if (iCandWordCount == 1) { - strcpy (strStringGet, TableGetCandWord (0)); - return IRV_GET_CANDWORDS; + if (CandidateWordGetCurrentWindowSize(input->candList) == 1) { + retVal = CandidateWordChooseByIndex(input->candList, 0); + return retVal; } return IRV_DISPLAY_CANDWORDS; } - else if (table->iTableAutoSendToClientWhenNone && (iCodeInputCount == (table->iTableAutoSendToClientWhenNone + 1)) && !iCandWordCount) { + else if (table->iTableAutoSendToClientWhenNone && (input->iCodeInputCount == (table->iTableAutoSendToClientWhenNone + 1)) && lastPageCount == 0) { if ( strLastFirstCand && (lastFirstCandType!=CT_AUTOPHRASE)) { - strcpy (strStringGet, strLastFirstCand); - TableUpdateHitFrequency(pLastCandRecord); - retVal=IRV_GET_CANDWORDS_NEXT; - } - else - retVal = IRV_DISPLAY_CANDWORDS; - iCodeInputCount = 1; - strCodeInput[0] = sym; - strCodeInput[1] = '\0'; - TableGetCandWords (SM_FIRST); - } - else if (table->iTableAutoSendToClient && (iCodeInputCount >= table->iTableAutoSendToClient)) { - if (iCandWordCount == 1 && (tableCandWord[0].flag != CT_AUTOPHRASE || (tableCandWord[0].flag == CT_AUTOPHRASE && !table->iSaveAutoPhraseAfter))) { //如果只有一个候选词,则送到客户程序中 - retVal = IRV_DO_NOTHING; - if (tableCandWord[0].flag == CT_NORMAL) { - if (tableCandWord[0].candWord.record->bPinyin) - retVal = IRV_DISPLAY_CANDWORDS; - } - - if (retVal != IRV_DISPLAY_CANDWORDS) { - strcpy (strStringGet, TableGetCandWord (0)); - iCandWordCount = 0; - if (bIsInLegend) - retVal = IRV_GET_LEGEND; - else - retVal = IRV_GET_CANDWORDS; - } + CommitString(instance, GetCurrentIC(instance), strLastFirstCand); } + retVal = IRV_DISPLAY_CANDWORDS; + input->iCodeInputCount = 1; + input->strCodeInput[0] = sym; + input->strCodeInput[1] = '\0'; } - else if ((iCodeInputCount == 1) && strTemp && !iCandWordCount) { //如果第一个字母是标点,并且没有候选字/词,则当做标点处理──适用于二笔这样的输入法 - strcpy (strStringGet, strTemp); + else if ((input->iCodeInputCount == 1) && strTemp && lastPageCount == 0) { //如果第一个字母是标点,并且没有候选字/词,则当做标点处理──适用于二笔这样的输入法 + strcpy (GetOutputString(input), strTemp); retVal = IRV_PUNC; } } } else { if (table->iTableAutoSendToClient) { - if (iCandWordCount) { - if (tableCandWord[0].flag != CT_AUTOPHRASE) { - strcpy (strStringGet, TableGetCandWord (0)); - retVal = IRV_GET_CANDWORDS_NEXT; + retVal = IRV_DISPLAY_CANDWORDS; + if (CandidateWordPageCount(input->candList)) { + CandidateWord* candWord = CandidateWordGetCurrentWindow(input->candList); + if (candWord->owner == tbl) + { + TABLECANDWORD* tableCandWord = candWord->priv; + if (tableCandWord->flag != CT_AUTOPHRASE) { + INPUT_RETURN_VALUE ret = TableGetCandWord (tbl, candWord); + if (ret & IRV_FLAG_PENDING_COMMIT_STRING) + { + CommitString(instance, GetCurrentIC(instance), GetOutputString(input)); + input->iHZInputed += (int) (utf8_strlen(GetOutputString(input))); + } + } } - else - retVal = IRV_DISPLAY_CANDWORDS; } - else - retVal = IRV_DISPLAY_CANDWORDS; - iCodeInputCount = 1; - strCodeInput[0] = sym; - strCodeInput[1] = '\0'; - bIsInLegend = False; + input->iCodeInputCount = 1; + input->strCodeInput[0] = sym; + input->strCodeInput[1] = '\0'; + input->bIsInRemind = false; - if (retVal != IRV_DISPLAY_CANDWORDS) - TableGetCandWords (SM_FIRST); } else retVal = IRV_DO_NOTHING; @@ -923,33 +426,33 @@ } } else { - if (tbl.bIsTableAddPhrase) { + if (tbl->bIsTableAddPhrase) { if (IsHotKey(sym, state, FCITX_LEFT)) { - if (tbl.iTableNewPhraseHZCount < tbl.iHZLastInputCount && tbl.iTableNewPhraseHZCount < PHRASE_MAX_LENGTH) { - tbl.iTableNewPhraseHZCount++; - TableCreateNewPhrase (); + if (tbl->iTableNewPhraseHZCount < table->tableDict->iHZLastInputCount && tbl->iTableNewPhraseHZCount < PHRASE_MAX_LENGTH) { + tbl->iTableNewPhraseHZCount++; + TableCreateNewPhrase (tbl); } } else if (IsHotKey(sym, state, FCITX_RIGHT)) { - if (tbl.iTableNewPhraseHZCount > 2) { - tbl.iTableNewPhraseHZCount--; - TableCreateNewPhrase (); + if (tbl->iTableNewPhraseHZCount > 2) { + tbl->iTableNewPhraseHZCount--; + TableCreateNewPhrase (tbl); } } else if (IsHotKey(sym, state, FCITX_ENTER)) { - if (!tbl.bCanntFindCode) - TableInsertPhrase (messageDown.msg[1].strMsg, messageDown.msg[0].strMsg); - tbl.bIsTableAddPhrase = False; - bIsDoInputOnly = False; + if (strcmp("????", GetMessageString(input->msgAuxDown, 0)) != 0) + TableInsertPhrase (table->tableDict, GetMessageString(input->msgAuxDown, 1), GetMessageString(input->msgAuxDown, 0)); + tbl->bIsTableAddPhrase = false; + input->bIsDoInputOnly = false; return IRV_CLEAN; } else if (IsHotKey(sym, state, FCITX_ESCAPE)) { - tbl.bIsTableAddPhrase = False; - bIsDoInputOnly = False; + tbl->bIsTableAddPhrase = false; + input->bIsDoInputOnly = false; return IRV_CLEAN; } else { @@ -957,24 +460,24 @@ } return IRV_DISPLAY_MESSAGE; } - if (IsHotKey (sym, state, tbl.hkTableAddPhrase)) { - if (!tbl.bIsTableAddPhrase) { - if (tbl.iHZLastInputCount < 2 || !table->bRule) //词组最少为两个汉字 + if (IsHotKey (sym, state, tbl->hkTableAddPhrase)) { + if (!tbl->bIsTableAddPhrase) { + if (table->tableDict->iHZLastInputCount < 2 || !table->tableDict->bRule) //词组最少为两个汉字 return IRV_DO_NOTHING; - tbl.iTableNewPhraseHZCount = 2; - tbl.bIsTableAddPhrase = True; - bIsDoInputOnly = True; - inputWindow.bShowCursor = False; - - SetMessageCount(&messageUp , 0); - AddMessageAtLast(&messageUp, MSG_TIPS, "左/右键增加/减少,ENTER确定,ESC取消"); - - SetMessageCount(&messageDown , 0); - AddMessageAtLast(&messageDown, MSG_FIRSTCAND, ""); - AddMessageAtLast(&messageDown, MSG_CODE, ""); + tbl->bTablePhraseTips = false; + tbl->iTableNewPhraseHZCount = 2; + tbl->bIsTableAddPhrase = true; + input->bIsDoInputOnly = true; + input->bShowCursor = false; + + CleanInputWindow(instance); + AddMessageAtLast(input->msgAuxUp, MSG_TIPS, _("Left/Right to choose selected character, Press Enter to confirm, Press Escape to Cancel")); - TableCreateNewPhrase (); + AddMessageAtLast(input->msgAuxDown, MSG_FIRSTCAND, ""); + AddMessageAtLast(input->msgAuxDown, MSG_CODE, ""); + + TableCreateNewPhrase (tbl); retVal = IRV_DISPLAY_MESSAGE; } else @@ -982,453 +485,369 @@ return retVal; } - else if (IsHotKey (sym, state, fc.hkGetPY)) { + else if (IsHotKey (sym, state, FCITX_CTRL_ALT_E)) { char strPY[100]; //如果拼音单字字库没有读入,则读入它 - if (!bPYBaseDictLoaded) - LoadPYBaseDict (); + Table_LoadPYBaseDict (tbl->pyaddon); //如果刚刚输入的是个词组,刚不查拼音 - if (utf8_strlen (strStringGet) != 1) + if (utf8_strlen (GetOutputString(input)) != 1) return IRV_DO_NOTHING; - iCodeInputCount = 0; - SetMessageCount(&messageUp, 0); - AddMessageAtLast(&messageUp, MSG_INPUT, "%s", strStringGet); - - SetMessageCount(&messageDown, 0); - AddMessageAtLast(&messageDown, MSG_CODE, "读音:"); - PYGetPYByHZ (strStringGet, strPY); - AddMessageAtLast(&messageDown, MSG_TIPS, (strPY[0]) ? strPY : "无法查到该字读音"); - inputWindow.bShowCursor = False; + input->iCodeInputCount = 0; + + CleanInputWindow(instance); + AddMessageAtLast(input->msgAuxUp, MSG_INPUT, "%s", GetOutputString(input)); + + AddMessageAtLast(input->msgAuxDown, MSG_CODE, _("Pinyin: ")); + Table_PYGetPYByHZ (tbl->pyaddon, GetOutputString(input), strPY); + AddMessageAtLast(input->msgAuxDown, MSG_TIPS, (strPY[0]) ? strPY : _("Cannot found Pinyin")); + input->bShowCursor = false; return IRV_DISPLAY_MESSAGE; } - if (!iCodeInputCount && !bIsInLegend) + if (!input->iCodeInputCount && !input->bIsInRemind) return IRV_TO_PROCESS; if (IsHotKey(sym, state, FCITX_ESCAPE)) { - if (tbl.bIsTableDelPhrase || tbl.bIsTableAdjustOrder) { - TableResetStatus (); + if (tbl->bIsTableDelPhrase || tbl->bIsTableAdjustOrder) { + TableResetStatus (tbl); + CleanInputWindowUp(instance); + AddMessageAtLast(input->msgPreedit, MSG_INPUT, "%s", input->strCodeInput); retVal = IRV_DISPLAY_CANDWORDS; } else return IRV_CLEAN; } - else if (state == KEY_NONE && IsChooseKey(sym)) { + else if (CheckChooseKey(sym, state, table->strChoose) >= 0) { int iKey; - iKey = IsChooseKey(sym); + iKey = CheckChooseKey(sym, state, table->strChoose); - if (!bIsInLegend) { - if (!iCandWordCount) - return IRV_TO_PROCESS; + if (CandidateWordPageCount(input->candList) == 0) + return IRV_TO_PROCESS; - if (iKey > iCandWordCount) - return IRV_DO_NOTHING; - else { - if (tbl.bIsTableDelPhrase) { - TableDelPhraseByIndex (iKey); - retVal = TableGetCandWords (SM_FIRST); - } - else if (tbl.bIsTableAdjustOrder) { - TableAdjustOrderByIndex (iKey); - retVal = TableGetCandWords (SM_FIRST); - } - else { - //如果是拼音,进入快速调整字频方式 - if (strcmp (strCodeInput, table->strSymbol) && strCodeInput[0] == table->cPinyin && table->bUsePY) - PYGetCandWord (iKey - 1); - strcpy (strStringGet, TableGetCandWord (iKey - 1)); - - if (bIsInLegend) - retVal = IRV_GET_LEGEND; - else - retVal = IRV_GET_CANDWORDS; - } - } - } + if (CandidateWordGetByIndex(input->candList, iKey) == NULL) + return IRV_DO_NOTHING; else { - strcpy (strStringGet, TableGetLegendCandWord (iKey - 1)); - retVal = IRV_GET_LEGEND; + CandidateWord* candWord = CandidateWordGetByIndex(input->candList, iKey); + if (candWord->owner == tbl && tbl->bIsTableDelPhrase) { + TableDelPhraseByIndex (tbl, candWord->priv); + tbl->bIsTableDelPhrase = false; + retVal = IRV_DISPLAY_CANDWORDS; + } + else if (candWord->owner == tbl && tbl->bIsTableAdjustOrder) { + TableAdjustOrderByIndex (tbl, candWord->priv); + tbl->bIsTableDelPhrase = false; + retVal = IRV_DISPLAY_CANDWORDS; + } + else + return IRV_TO_PROCESS; } } - else if (!tbl.bIsTableDelPhrase && !tbl.bIsTableAdjustOrder) { - if (IsHotKey (sym, state, tbl.hkTableAdjustOrder)) { - if ((tbl.iTableCandDisplayed == iCandWordCount && iCandWordCount < 2) || bIsInLegend) + else if (!tbl->bIsTableDelPhrase && !tbl->bIsTableAdjustOrder) { + if (IsHotKey (sym, state, tbl->hkTableAdjustOrder)) { + if (CandidateWordGetListSize(input->candList) < 2 || input->bIsInRemind) return IRV_DO_NOTHING; - tbl.bIsTableAdjustOrder = True; - SetMessageCount(&messageUp, 0); - AddMessageAtLast(&messageUp, MSG_TIPS, "选择需要提前的词组序号,ESC结束"); + tbl->bIsTableAdjustOrder = true; + CleanInputWindowUp(instance); + AddMessageAtLast(input->msgAuxUp, MSG_TIPS, _("Choose the phrase to be put in the front, Press Escape to Cancel")); retVal = IRV_DISPLAY_MESSAGE; } - else if (IsHotKey (sym, state, tbl.hkTableDelPhrase)) { - if (!iCandWordCount || bIsInLegend) + else if (IsHotKey (sym, state, tbl->hkTableDelPhrase)) { + if (!CandidateWordPageCount(input->candList) || input->bIsInRemind) return IRV_DO_NOTHING; - tbl.bIsTableDelPhrase = True; - SetMessageCount(&messageUp, 0); - AddMessageAtLast(&messageUp, MSG_TIPS, "选择需要删除的词组序号,ESC取消"); + tbl->bIsTableDelPhrase = true; + CleanInputWindowUp(instance); + AddMessageAtLast(input->msgAuxUp, MSG_TIPS, _("Choose the phrase to be deleted, Press Escape to Cancel")); retVal = IRV_DISPLAY_MESSAGE; } - else if (IsHotKey(sym, state, FCITX_BACKSPACE) || IsHotKey(sym, state, FCITX_CTRL_H)) { - if (!iCodeInputCount) { - bIsInLegend = False; + else if (IsHotKey(sym, state, FCITX_BACKSPACE)) { + if (!input->iCodeInputCount) { + input->bIsInRemind = false; return IRV_DONOT_PROCESS_CLEAN; } - iCodeInputCount--; - strCodeInput[iCodeInputCount] = '\0'; + input->iCodeInputCount--; + input->strCodeInput[input->iCodeInputCount] = '\0'; - if (iCodeInputCount == 1 && strCodeInput[0] == table->cPinyin && table->bUsePY) { - iCandWordCount = 0; + if (input->iCodeInputCount == 1 && input->strCodeInput[0] == table->cPinyin && table->bUsePY) { + CandidateWordReset(input->candList); retVal = IRV_DISPLAY_LAST; } - else if (iCodeInputCount) - retVal = TableGetCandWords (SM_FIRST); + else if (input->iCodeInputCount) + retVal = IRV_DISPLAY_CANDWORDS; else retVal = IRV_CLEAN; } else if (IsHotKey(sym, state, FCITX_SPACE)) { - if (!bIsInLegend) { - if (!(table->bUsePY && iCodeInputCount == 1 && strCodeInput[0] == table->cPinyin)) { - if (strcmp (strCodeInput, table->strSymbol) && strCodeInput[0] == table->cPinyin && table->bUsePY) - PYGetCandWord (0); - - if (!iCandWordCount) { - iCodeInputCount = 0; - return IRV_CLEAN; - } - - strcpy (strStringGet, TableGetCandWord (0)); - } - else - SetMessageCount(&messageDown, 0); - - if (bIsInLegend) - retVal = IRV_GET_LEGEND; - else - retVal = IRV_GET_CANDWORDS; - - } + if (input->iCodeInputCount == 1 && input->strCodeInput[0] == table->cPinyin && table->bUsePY) + retVal = IRV_COMMIT_STRING; else { - strcpy (strStringGet, TableGetLegendCandWord (0)); - retVal = IRV_GET_LEGEND; + retVal = CandidateWordChooseByIndex(input->candList, 0); + if (retVal == IRV_TO_PROCESS) + retVal = IRV_DO_NOTHING; } } else - return IRV_TO_PROCESS; + { + /* friendly to cursor move, don't left cursor move while input text */ + if (input->iCodeInputCount != 0 && + (IsHotKey(sym, state, FCITX_LEFT) || + IsHotKey(sym, state, FCITX_RIGHT) || + IsHotKey(sym, state, FCITX_HOME) || + IsHotKey(sym, state, FCITX_END))) + { + return IRV_DO_NOTHING; + } + else + return IRV_TO_PROCESS; + } } } - if (!bIsInLegend) { - if (!tbl.bIsTableDelPhrase && !tbl.bIsTableAdjustOrder) { - SetMessageCount(&messageUp,0); - if (iCodeInputCount) { - AddMessageAtLast(&messageUp, MSG_INPUT, "%s", strCodeInput); - } - } - else - bIsDoInputOnly = True; + if (!input->bIsInRemind) { + if (tbl->bIsTableDelPhrase || tbl->bIsTableAdjustOrder) + input->bIsDoInputOnly = true; } - if (tbl.bIsTableDelPhrase || tbl.bIsTableAdjustOrder || bIsInLegend) - inputWindow.bShowCursor = False; + if (tbl->bIsTableDelPhrase || tbl->bIsTableAdjustOrder || input->bIsInRemind) + input->bShowCursor = false; else { - inputWindow.bShowCursor = True; - iCursorPos = iCodeInputCount; + input->bShowCursor = true; + input->iCursorPos = strlen(input->strCodeInput); } return retVal; } -char *TableGetCandWord (int iIndex) +INPUT_RETURN_VALUE TableGetCandWord (void* arg, CandidateWord* candWord) { - char *str; - TABLE* table = (TABLE*) utarray_eltptr(tbl.table, tbl.iTableIMIndex); + FcitxTableState *tbl = (FcitxTableState*) arg; + TableMetaData* table = (TableMetaData*) utarray_eltptr(tbl->table, tbl->iTableIMIndex); + FcitxInputState* input = &tbl->owner->input; + TABLECANDWORD* tableCandWord = candWord->priv; + + INPUT_RETURN_VALUE retVal =_TableGetCandWord(tbl, tableCandWord, true); + if (retVal & IRV_FLAG_PENDING_COMMIT_STRING) { + if (table->bAutoPhrase && (utf8_strlen (GetOutputString(input)) == 1 || (utf8_strlen (GetOutputString(input)) > 1 && table->bAutoPhrasePhrase))) + UpdateHZLastInput (tbl, GetOutputString(input)); - str=_TableGetCandWord(iIndex, True); - if (str) { - if (table->bAutoPhrase && (utf8_strlen (str) == 1 || (utf8_strlen (str) > 1 && table->bAutoPhrasePhrase))) - UpdateHZLastInput (str); - - if ( tbl.pCurCandRecord ) - TableUpdateHitFrequency (tbl.pCurCandRecord); + if ( tbl->pCurCandRecord ) + TableUpdateHitFrequency (table->tableDict, tbl->pCurCandRecord); } - return str; -} - -void TableUpdateHitFrequency (RECORD * record) -{ - record->iHit++; - record->iIndex = ++tbl.iTableIndex; + return retVal; } /* * 第二个参数表示是否进入联想模式,实现自动上屏功能时,不能使用联想模式 */ -char *_TableGetCandWord (int iIndex, Bool _bLegend) +INPUT_RETURN_VALUE _TableGetCandWord (FcitxTableState* tbl, TABLECANDWORD* tableCandWord, boolean _bRemind) { char *pCandWord = NULL; - TABLECANDWORD* tableCandWord = tbl.tableCandWord; - TABLE* table = (TABLE*) utarray_eltptr(tbl.table, tbl.iTableIMIndex); - - if (!strcmp (strCodeInput, table->strSymbol)) - return TableGetFHCandWord (iIndex); + TableMetaData* table = (TableMetaData*) utarray_eltptr(tbl->table, tbl->iTableIMIndex); + FcitxInstance *instance = tbl->owner; + FcitxInputState *input = &instance->input; + FcitxProfile *profile = instance->profile; - bIsInLegend = False; + if (!strcmp (input->strCodeInput, table->strSymbol)) + return TableGetFHCandWord (tbl, tableCandWord); - if (!iCandWordCount) - return NULL; + input->bIsInRemind = false; - if (iIndex > (iCandWordCount - 1)) - iIndex = iCandWordCount - 1; - - if (tableCandWord[iIndex].flag == CT_NORMAL) - tbl.pCurCandRecord = tableCandWord[iIndex].candWord.record; + if (tableCandWord->flag == CT_NORMAL) + tbl->pCurCandRecord = tableCandWord->candWord.record; else - tbl.pCurCandRecord = (RECORD *)NULL; + tbl->pCurCandRecord = (RECORD *)NULL; - tbl.iTableChanged++; - if (tbl.iTableChanged >= TABLE_AUTO_SAVE_AFTER) - SaveTableDict (); + table->tableDict->iTableChanged++; + if (table->tableDict->iTableChanged >= TABLE_AUTO_SAVE_AFTER) + SaveTableDict (table); - switch (tableCandWord[iIndex].flag) { + switch (tableCandWord->flag) { case CT_NORMAL: - pCandWord = tableCandWord[iIndex].candWord.record->strHZ; + pCandWord = tableCandWord->candWord.record->strHZ; break; case CT_AUTOPHRASE: if (table->iSaveAutoPhraseAfter) { - /* 当_bLegend为False时,不应该计算自动组词的频度,因此此时实际并没有选择这个词 */ - if (table->iSaveAutoPhraseAfter >= tableCandWord[iIndex].candWord.autoPhrase->iSelected && _bLegend) - tableCandWord[iIndex].candWord.autoPhrase->iSelected++; - if (table->iSaveAutoPhraseAfter == tableCandWord[iIndex].candWord.autoPhrase->iSelected) //保存自动词组 - TableInsertPhrase (tableCandWord[iIndex].candWord.autoPhrase->strCode, tableCandWord[iIndex].candWord.autoPhrase->strHZ); + /* 当_bRemind为false时,不应该计算自动组词的频度,因此此时实际并没有选择这个词 */ + if (table->iSaveAutoPhraseAfter >= tableCandWord->candWord.autoPhrase->iSelected && _bRemind) + tableCandWord->candWord.autoPhrase->iSelected++; + if (table->iSaveAutoPhraseAfter == tableCandWord->candWord.autoPhrase->iSelected) //保存自动词组 + TableInsertPhrase (table->tableDict, tableCandWord->candWord.autoPhrase->strCode, tableCandWord->candWord.autoPhrase->strHZ); } - pCandWord = tableCandWord[iIndex].candWord.autoPhrase->strHZ; + pCandWord = tableCandWord->candWord.autoPhrase->strHZ; break; - case CT_PYPHRASE: - pCandWord = tableCandWord[iIndex].candWord.strPYPhrase; + case CT_FH: + pCandWord = table->tableDict->fh[tableCandWord->candWord.iFHIndex].strFH; break; - default: - ; + case CT_REMIND: + { + strcpy (tbl->strTableRemindSource, tableCandWord->candWord.record->strHZ + strlen (tbl->strTableRemindSource)); + strcpy(GetOutputString(input), tbl->strTableRemindSource); + INPUT_RETURN_VALUE retVal = TableGetRemindCandWords (tbl); + if (retVal == IRV_DISPLAY_CANDWORDS) + return IRV_COMMIT_STRING_REMIND; + else + return IRV_COMMIT_STRING; + } } - if (fcitxProfile.bUseLegend && _bLegend) { - strcpy (tbl.strTableLegendSource, pCandWord); - TableGetLegendCandWords (SM_FIRST); + if (UseRemind(profile) && _bRemind) { + strcpy (tbl->strTableRemindSource, pCandWord); + strcpy(GetOutputString(input), pCandWord); + INPUT_RETURN_VALUE retVal = TableGetRemindCandWords (tbl); + if (retVal == IRV_DISPLAY_CANDWORDS) + return IRV_COMMIT_STRING_REMIND; } else { if (table->bPromptTableCode) { RECORD *temp; - SetMessageCount(&messageUp, 0); - AddMessageAtLast(&messageUp, MSG_INPUT, "%s", strCodeInput); + CleanInputWindow(instance); + AddMessageAtLast(input->msgAuxUp, MSG_INPUT, "%s", input->strCodeInput); - SetMessageCount(&messageDown, 0); - AddMessageAtLast(&messageDown, MSG_TIPS, "%s", pCandWord); - temp = tbl.tableSingleHZ[CalHZIndex (pCandWord)]; + AddMessageAtLast(input->msgAuxDown, MSG_TIPS, "%s", pCandWord); + temp = table->tableDict->tableSingleHZ[CalHZIndex (pCandWord)]; if (temp) { - AddMessageAtLast(&messageDown, MSG_CODE, "%s", temp->strCode); + AddMessageAtLast(input->msgAuxDown, MSG_CODE, "%s", temp->strCode); } } else { - SetMessageCount(&messageDown, 0); - SetMessageCount(&messageUp, 0); + CleanInputWindow(instance); } } if (utf8_strlen (pCandWord) == 1) - lastIsSingleHZ = 1; + input->lastIsSingleHZ = 1; else - lastIsSingleHZ = 0; + input->lastIsSingleHZ = 0; - return pCandWord; + strcpy(GetOutputString(input), pCandWord); + return IRV_COMMIT_STRING; } -INPUT_RETURN_VALUE TableGetPinyinCandWords (SEARCH_MODE mode) +INPUT_RETURN_VALUE TableGetPinyinCandWords (FcitxTableState* tbl) { - int i; - TABLECANDWORD* tableCandWord = tbl.tableCandWord; - TABLE* table = (TABLE*) utarray_eltptr(tbl.table, tbl.iTableIMIndex); + TableMetaData* table = (TableMetaData*) utarray_eltptr(tbl->table, tbl->iTableIMIndex); + FcitxInstance *instance = tbl->owner; + FcitxInputState *input = &instance->input; - if (mode == SM_FIRST) { - strcpy (strFindString, strCodeInput + 1); + strcpy (Table_PYGetFindString(tbl->pyaddon), input->strCodeInput + 1); - DoPYInput (0,0,-1); + Table_DoPYInput (tbl->pyaddon, 0,0); + Table_PYGetCandWords (tbl->pyaddon); - strCodeInput[0] = table->cPinyin; - strCodeInput[1] = '\0'; + input->strCodeInput[0] = table->cPinyin; + input->strCodeInput[1] = '\0'; + + strcat (input->strCodeInput, Table_PYGetFindString(tbl->pyaddon)); + input->iCodeInputCount = strlen (input->strCodeInput); + + CleanInputWindowUp(instance); + AddMessageAtLast(input->msgPreedit, MSG_INPUT, "%s", input->strCodeInput); + input->iCursorPos = input->iCodeInputCount; - strcat (strCodeInput, strFindString); - iCodeInputCount = strlen (strCodeInput); - } - else - PYGetCandWords (mode); //下面将拼音的候选字表转换为码表输入法的样式 - for (i = 0; i < iCandWordCount; i++) { - tableCandWord[i].flag = CT_PYPHRASE; - PYGetCandText (i, tableCandWord[i].candWord.strPYPhrase); + CandidateWord* candWord; + for (candWord = CandidateWordGetFirst(input->candList); + candWord != NULL; + candWord = CandidateWordGetNext(input->candList, candWord)) + { + char* pstr; + if (utf8_strlen (candWord->strWord) == 1) { + RECORD* recTemp = table->tableDict->tableSingleHZ[CalHZIndex (candWord->strWord)]; + if (!recTemp) + pstr = (char *) NULL; + else + pstr = recTemp->strCode; + + } + else + pstr = (char *) NULL; + + if (pstr) + candWord->strExtra = strdup(pstr); + tbl->pygetcandword = candWord->callback; + candWord->callback = Table_PYGetCandWord; + candWord->owner = tbl; } return IRV_DISPLAY_CANDWORDS; } -INPUT_RETURN_VALUE TableGetCandWords (SEARCH_MODE mode) +INPUT_RETURN_VALUE TableGetCandWords (void* arg) { + FcitxTableState *tbl = (FcitxTableState*) arg; int i; - char strTemp[3], *pstr; RECORD *recTemp; - TABLECANDWORD* tableCandWord = tbl.tableCandWord; - TABLE* table = (TABLE*) utarray_eltptr(tbl.table, tbl.iTableIMIndex); + TableMetaData* table = (TableMetaData*) utarray_eltptr(tbl->table, tbl->iTableIMIndex); + FcitxInstance *instance = tbl->owner; + FcitxInputState *input = &instance->input; - if (strCodeInput[0] == '\0') + if (input->strCodeInput[0] == '\0') return IRV_TO_PROCESS; - if (bIsInLegend) - return TableGetLegendCandWords (mode); - if (!strcmp (strCodeInput, table->strSymbol)) - return TableGetFHCandWords (mode); - - if (strCodeInput[0] == table->cPinyin && table->bUsePY) - TableGetPinyinCandWords (mode); - else { - if (mode == SM_FIRST) { - iCandWordCount = 0; - tbl.iTableCandDisplayed = 0; - tbl.iTableTotalCandCount = 0; - iCurrentCandPage = 0; - iCandPageCount = 0; - TableResetFlags (); - if (TableFindFirstMatchCode () == -1 && !tbl.iAutoPhrase) { - SetMessageCount(&messageDown, 0); - return IRV_DISPLAY_CANDWORDS; //Not Found - } - } - else { - if (!iCandWordCount) - return IRV_TO_PROCESS; + if (input->bIsInRemind) + return TableGetRemindCandWords (tbl); - if (mode == SM_NEXT) { - if (tbl.iTableCandDisplayed >= tbl.iTableTotalCandCount) - return IRV_DO_NOTHING; - } - else { - if (tbl.iTableCandDisplayed == iCandWordCount) - return IRV_DO_NOTHING; + if (!strcmp (input->strCodeInput, table->strSymbol)) + return TableGetFHCandWords (tbl); - tbl.iTableCandDisplayed -= iCandWordCount; - TableSetCandWordsFlag (iCandWordCount, False); - } + if (input->strCodeInput[0] == table->cPinyin && table->bUsePY) + return TableGetPinyinCandWords (tbl); - TableFindFirstMatchCode (); + if (TableFindFirstMatchCode (table, input->strCodeInput) == -1 && !table->tableDict->iAutoPhrase) { + if (input->iCodeInputCount) { + SetMessageCount(input->msgPreedit, 0); + AddMessageAtLast(input->msgPreedit, MSG_INPUT, "%s", input->strCodeInput); + input->iCursorPos = strlen(input->strCodeInput); } + //Not Found + return IRV_DISPLAY_CANDWORDS; + } - iCandWordCount = 0; - if (mode == SM_PREV && table->bRule && table->bAutoPhrase && iCodeInputCount == table->iCodeLength) { - for (i = tbl.iAutoPhrase - 1; i >= 0; i--) { - if (!TableCompareCode (strCodeInput, tbl.autoPhrase[i].strCode) && tbl.autoPhrase[i].flag) { - if (TableHasPhrase (tbl.autoPhrase[i].strCode, tbl.autoPhrase[i].strHZ)) - TableAddAutoCandWord (i, mode); - } - } + TableCandWordSortContext context; + context.order = table->tableOrder; + UT_array candTemp; + utarray_init(&candTemp, &tableCand_icd); + + while (table->tableDict->currentRecord && table->tableDict->currentRecord != table->tableDict->recordHead) { + if (!TableCompareCode (table, input->strCodeInput, table->tableDict->currentRecord->strCode)) { + TABLECANDWORD* tableCandWord = fcitx_malloc0(sizeof(TABLECANDWORD)); + TableAddCandWord (table->tableDict->currentRecord, tableCandWord); + utarray_push_back(&candTemp, &tableCandWord); } + table->tableDict->currentRecord = table->tableDict->currentRecord->next; + } - if (iCandWordCount < fc.iMaxCandWord) { - while (tbl.currentRecord && tbl.currentRecord != tbl.recordHead) { - if ((mode == SM_PREV) ^ (!tbl.currentRecord->flag)) { - if (!TableCompareCode (strCodeInput, tbl.currentRecord->strCode)) { - if (mode == SM_FIRST) - tbl.iTableTotalCandCount++; - TableAddCandWord (tbl.currentRecord, mode); - } - } + /* seems AD_NO will go back to n^2, really effect performance */ + if (table->tableOrder != AD_NO) + utarray_sort_r(&candTemp, TableCandCmp, &context); - tbl.currentRecord = tbl.currentRecord->next; - } - } - - if (table->bRule && table->bAutoPhrase && mode != SM_PREV && iCodeInputCount == table->iCodeLength) { - for (i = tbl.iAutoPhrase - 1; i >= 0; i--) { - if (!TableCompareCode (strCodeInput, tbl.autoPhrase[i].strCode) && !tbl.autoPhrase[i].flag) { - if (TableHasPhrase (tbl.autoPhrase[i].strCode, tbl.autoPhrase[i].strHZ)) { - if (mode == SM_FIRST) - tbl.iTableTotalCandCount++; - TableAddAutoCandWord (i, mode); - } - } - } - } - - TableSetCandWordsFlag (iCandWordCount, True); - - if (mode != SM_PREV) - tbl.iTableCandDisplayed += iCandWordCount; - - //由于iCurrentCandPage和iCandPageCount用来指示是否显示上/下翻页图标,因此,此处需要设置一下 - iCurrentCandPage = (tbl.iTableCandDisplayed == iCandWordCount) ? 0 : 1; - iCandPageCount = (tbl.iTableCandDisplayed >= tbl.iTableTotalCandCount) ? 1 : 2; - if (iCandWordCount == tbl.iTableTotalCandCount) - iCandPageCount = 0; - /* **************************************************** */ - } - - if (fc.bPointAfterNumber) { - strTemp[1] = '.'; - strTemp[2] = '\0'; - } - else - strTemp[1] = '\0'; - - SetMessageCount(&messageDown, 0); - for (i = 0; i < iCandWordCount; i++) { - strTemp[0] = i + 1 + '0'; - if (i == 9) - strTemp[0] = '0'; - AddMessageAtLast(&messageDown, MSG_INDEX, "%s", strTemp); - - MSG_TYPE mType; - char* pMsg = NULL; - if (tableCandWord[i].flag == CT_AUTOPHRASE) - mType = MSG_TIPS; - else - mType = ((i == 0) ? MSG_FIRSTCAND : MSG_OTHER); - - switch (tableCandWord[i].flag) { - case CT_NORMAL: - pMsg = tableCandWord[i].candWord.record->strHZ; - break; - case CT_AUTOPHRASE: - pMsg = tableCandWord[i].candWord.autoPhrase->strHZ; - break; - case CT_PYPHRASE: - pMsg = tableCandWord[i].candWord.strPYPhrase; - break; - default: - ; - } - AddMessageAtLast(&messageDown, mType, "%s", pMsg); - - if (tableCandWord[i].flag == CT_PYPHRASE) { - if (utf8_strlen (tableCandWord[i].candWord.strPYPhrase) == 1) { - recTemp = tbl.tableSingleHZ[CalHZIndex (tableCandWord[i].candWord.strPYPhrase)]; - - if (!recTemp) - pstr = (char *) NULL; - else - pstr = recTemp->strCode; - } - else - pstr = (char *) NULL; - } - else if ((tableCandWord[i].flag == CT_NORMAL) && (tableCandWord[i].candWord.record->bPinyin)) { - if (utf8_strlen (tableCandWord[i].candWord.record->strHZ) == 1) { - recTemp = tbl.tableSingleHZ[CalHZIndex (tableCandWord[i].candWord.record->strHZ)]; + TABLECANDWORD** pcand = NULL; + for (pcand = (TABLECANDWORD**) utarray_front(&candTemp); + pcand != NULL; + pcand = (TABLECANDWORD**) utarray_next(&candTemp, pcand)) + { + TABLECANDWORD* tableCandWord = *pcand; + CandidateWord candWord; + candWord.callback = TableGetCandWord; + candWord.owner = tbl; + candWord.priv = tableCandWord; + candWord.strWord = strdup (tableCandWord->candWord.record->strHZ); + candWord.strExtra = NULL; + + const char* pstr = NULL; + if ((tableCandWord->flag == CT_NORMAL) && (tableCandWord->candWord.record->bPinyin)) { + if (utf8_strlen (tableCandWord->candWord.record->strHZ) == 1) { + recTemp = table->tableDict->tableSingleHZ[CalHZIndex (tableCandWord->candWord.record->strHZ)]; if (!recTemp) pstr = (char *) NULL; else @@ -1437,319 +856,116 @@ else pstr = (char *) NULL; } - else if (HasMatchingKey ()) - pstr = (tableCandWord[i].flag == CT_NORMAL) ? tableCandWord[i].candWord.record->strCode : tableCandWord[i].candWord.autoPhrase->strCode; + else if (HasMatchingKey (table, input->strCodeInput)) + pstr = (tableCandWord->flag == CT_NORMAL) ? tableCandWord->candWord.record->strCode : tableCandWord->candWord.autoPhrase->strCode; else - pstr = ((tableCandWord[i].flag == CT_NORMAL) ? tableCandWord[i].candWord.record->strCode : tableCandWord[i].candWord.autoPhrase->strCode) + iCodeInputCount; + pstr = ((tableCandWord->flag == CT_NORMAL) ? tableCandWord->candWord.record->strCode : tableCandWord->candWord.autoPhrase->strCode) + input->iCodeInputCount; if (pstr) - AddMessageAtLast(&messageDown, MSG_CODE, "%s", pstr); - else - AddMessageAtLast(&messageDown, MSG_CODE, ""); + candWord.strExtra = strdup(pstr); - if (i != (iCandWordCount - 1)) { - MessageConcatLast(&messageDown, " "); - } + CandidateWordAppend(input->candList, &candWord); } + utarray_clear(&candTemp); - return IRV_DISPLAY_CANDWORDS; -} - -void TableAddAutoCandWord (INT16 which, SEARCH_MODE mode) -{ - int i, j; - TABLECANDWORD* tableCandWord = tbl.tableCandWord; - - if (mode == SM_PREV) { - if (iCandWordCount == fc.iMaxCandWord) { - i = iCandWordCount - 1; - for (j = 0; j < iCandWordCount - 1; j++) - tableCandWord[j].candWord.autoPhrase = tableCandWord[j + 1].candWord.autoPhrase; - } - else - i = iCandWordCount++; - tableCandWord[i].flag = CT_AUTOPHRASE; - tableCandWord[i].candWord.autoPhrase = &tbl.autoPhrase[which]; - } - else { - if (iCandWordCount == fc.iMaxCandWord) - return; - - tableCandWord[iCandWordCount].flag = CT_AUTOPHRASE; - tableCandWord[iCandWordCount++].candWord.autoPhrase = &tbl.autoPhrase[which]; - } -} - -void TableAddCandWord (RECORD * record, SEARCH_MODE mode) -{ - int i = 0, j; - TABLE* table = (TABLE*) utarray_eltptr(tbl.table, tbl.iTableIMIndex); - TABLECANDWORD* tableCandWord = tbl.tableCandWord; - - switch (table->tableOrder) { - case AD_NO: - if (mode == SM_PREV) { - if (iCandWordCount == fc.iMaxCandWord) - i = iCandWordCount - 1; - else { - for (i = 0; i < iCandWordCount; i++) { - if (tableCandWord[i].flag != CT_NORMAL) - break; - } - } - } - else { - if (iCandWordCount == fc.iMaxCandWord) - return; - tableCandWord[iCandWordCount].flag = CT_NORMAL; - tableCandWord[iCandWordCount++].candWord.record = record; - return; - } - break; - case AD_FREQ: - if (mode == SM_PREV) { - for (i = iCandWordCount - 1; i >= 0; i--) { - if (tableCandWord[i].flag == CT_NORMAL) { - if (strcmp (tableCandWord[i].candWord.record->strCode, record->strCode) < 0 || (strcmp (tableCandWord[i].candWord.record->strCode, record->strCode) == 0 && tableCandWord[i].candWord.record->iHit >= record->iHit)) - break; - } - } - - if (iCandWordCount == fc.iMaxCandWord) { - if (i < 0) - return; - } - else - i++; - } - else { - for (; i < iCandWordCount; i++) { - if (strcmp (tableCandWord[i].candWord.record->strCode, record->strCode) > 0 || (strcmp (tableCandWord[i].candWord.record->strCode, record->strCode) == 0 && tableCandWord[i].candWord.record->iHit < record->iHit)) - break; - } - if (i == fc.iMaxCandWord) - return; - } - break; - - case AD_FAST: - if (mode == SM_PREV) { - for (i = iCandWordCount - 1; i >= 0; i--) { - if (tableCandWord[i].flag == CT_NORMAL) { - if (strcmp (tableCandWord[i].candWord.record->strCode, record->strCode) < 0 || (strcmp (tableCandWord[i].candWord.record->strCode, record->strCode) == 0 && tableCandWord[i].candWord.record->iIndex >= record->iIndex)) - break; + if (table->tableDict->bRule && table->bAutoPhrase && input->iCodeInputCount == table->tableDict->iCodeLength) { + for (i = table->tableDict->iAutoPhrase - 1; i >= 0; i--) { + if (!TableCompareCode (table, input->strCodeInput, table->tableDict->autoPhrase[i].strCode)) { + if (TableHasPhrase (table->tableDict, table->tableDict->autoPhrase[i].strCode, table->tableDict->autoPhrase[i].strHZ)) { + TABLECANDWORD* tableCandWord = fcitx_malloc0(sizeof(TABLECANDWORD)); + TableAddAutoCandWord (tbl, i, tableCandWord); + utarray_push_back(&candTemp, &tableCandWord); } } - - if (iCandWordCount == fc.iMaxCandWord) { - if (i < 0) - return; - } - else - i++; } - else { - for (i = 0; i < iCandWordCount; i++) { - if (strcmp (tableCandWord[i].candWord.record->strCode, record->strCode) > 0 || (strcmp (tableCandWord[i].candWord.record->strCode, record->strCode) == 0 && tableCandWord[i].candWord.record->iIndex < record->iIndex)) - break; - } - - if (i == fc.iMaxCandWord) - return; - } - break; } - if (mode == SM_PREV) { - if (iCandWordCount == fc.iMaxCandWord) { - for (j = 0; j < i; j++) { - tableCandWord[j].flag = tableCandWord[j + 1].flag; - if (tableCandWord[j].flag == CT_NORMAL) - tableCandWord[j].candWord.record = tableCandWord[j + 1].candWord.record; - else - tableCandWord[j].candWord.autoPhrase = tableCandWord[j + 1].candWord.autoPhrase; - } - } - else { - for (j = iCandWordCount; j > i; j--) { - tableCandWord[j].flag = tableCandWord[j - 1].flag; - if (tableCandWord[j].flag == CT_NORMAL) - tableCandWord[j].candWord.record = tableCandWord[j - 1].candWord.record; - else - tableCandWord[j].candWord.autoPhrase = tableCandWord[j - 1].candWord.autoPhrase; - } - } - } - else { - j = iCandWordCount; - if (iCandWordCount == fc.iMaxCandWord) - j--; - for (; j > i; j--) { - tableCandWord[j].flag = tableCandWord[j - 1].flag; - if (tableCandWord[j].flag == CT_NORMAL) - tableCandWord[j].candWord.record = tableCandWord[j - 1].candWord.record; - else - tableCandWord[j].candWord.autoPhrase = tableCandWord[j - 1].candWord.autoPhrase; - } - } - - tableCandWord[i].flag = CT_NORMAL; - tableCandWord[i].candWord.record = record; - - if (iCandWordCount != fc.iMaxCandWord) - iCandWordCount++; -} - -void TableResetFlags (void) -{ - RECORD *record = tbl.recordHead->next; - INT16 i; + for (pcand = (TABLECANDWORD**) utarray_front(&candTemp); + pcand != NULL; + pcand = (TABLECANDWORD**) utarray_next(&candTemp, pcand)) + { + TABLECANDWORD* tableCandWord = *pcand; + CandidateWord candWord; + candWord.callback = TableGetCandWord; + candWord.owner = tbl; + candWord.priv = tableCandWord; + candWord.strWord = strdup (tableCandWord->candWord.autoPhrase->strHZ); + candWord.strExtra = NULL; - while (record != tbl.recordHead) { - record->flag = False; - record = record->next; + CandidateWordAppend(input->candList, &candWord); } - for (i = 0; i < tbl.iAutoPhrase; i++) - tbl.autoPhrase[i].flag = False; -} - -void TableSetCandWordsFlag (int iCount, Bool flag) -{ - int i; - TABLECANDWORD* tableCandWord = tbl.tableCandWord; - for (i = 0; i < iCount; i++) { - if (tableCandWord[i].flag == CT_NORMAL) - tableCandWord[i].candWord.record->flag = flag; - else - tableCandWord[i].candWord.autoPhrase->flag = flag; - } -} -Bool HasMatchingKey (void) -{ - char *str; - TABLE* table = (TABLE*) utarray_eltptr(tbl.table, tbl.iTableIMIndex); + utarray_done(&candTemp); - str = strCodeInput; - while (*str) { - if (*str++ == table->cMatchingKey) - return True; + if (input->iCodeInputCount) { + SetMessageCount(input->msgPreedit, 0); + AddMessageAtLast(input->msgPreedit, MSG_INPUT, "%s", input->strCodeInput); + input->iCursorPos = strlen(input->strCodeInput); } - return False; -} -int TableCompareCode (char *strUser, char *strDict) -{ - int i; - TABLE* table = (TABLE*) utarray_eltptr(tbl.table, tbl.iTableIMIndex); + INPUT_RETURN_VALUE retVal = IRV_DISPLAY_CANDWORDS; - for (i = 0; i < strlen (strUser); i++) { - if (!strDict[i]) - return strUser[i]; - if (strUser[i] != table->cMatchingKey || !table->bUseMatchingKey) { - if (strUser[i] != strDict[i]) - return (strUser[i] - strDict[i]); + if (table->iTableAutoSendToClient && (input->iCodeInputCount >= table->iTableAutoSendToClient)) { + if (CandidateWordGetCurrentWindowSize(input->candList) == 1) { //如果只有一个候选词,则送到客户程序中 + CandidateWord* candWord = CandidateWordGetCurrentWindow(input->candList); + if (candWord->owner == tbl) + { + TABLECANDWORD* tableCandWord = candWord->priv; + if (tableCandWord->flag != CT_AUTOPHRASE || (tableCandWord->flag == CT_AUTOPHRASE && !table->iSaveAutoPhraseAfter)) + if (!(tableCandWord->flag == CT_NORMAL && tableCandWord->candWord.record->bPinyin)) + retVal = CandidateWordChooseByIndex(input->candList, 0); + } } } - if (table->bTableExactMatch) { - if (strlen (strUser) != strlen (strDict)) - return -999; //随意的一个值 - } - return 0; + return retVal; } -int TableFindFirstMatchCode (void) +void TableAddAutoCandWord (FcitxTableState* tbl, short which, TABLECANDWORD* tableCandWord) { - int i = 0; - TABLE* table = (TABLE*) utarray_eltptr(tbl.table, tbl.iTableIMIndex); - - if (!tbl.recordHead) - return -1; - - if (table->bUseMatchingKey && (strCodeInput[0] == table->cMatchingKey)) - i = 0; - else { - while (strCodeInput[0] != tbl.recordIndex[i].cCode) { - if (!tbl.recordIndex[i].cCode) - break; - i++; - } - } - tbl.currentRecord = tbl.recordIndex[i].record; - if (!tbl.currentRecord) - return -1; - - while (tbl.currentRecord != tbl.recordHead) { - if (!TableCompareCode (strCodeInput, tbl.currentRecord->strCode)) { - return i; - } - tbl.currentRecord = tbl.currentRecord->next; - i++; - } + TableMetaData* table = (TableMetaData*) utarray_eltptr(tbl->table, tbl->iTableIMIndex); - return -1; //Not found + tableCandWord->flag = CT_AUTOPHRASE; + tableCandWord->candWord.autoPhrase = &table->tableDict->autoPhrase[which]; } -/* - * 反查编码 - * bMode=True表示用于组词,此时不查一、二级简码。但如果只有二级简码时返回二级简码,不查一级简码 - */ -/*RECORD *TableFindCode (char *strHZ, Bool bMode) +void TableAddCandWord (RECORD * record, TABLECANDWORD* tableCandWord) { - RECORD *recShort = NULL; //记录二级简码的位置 - int i; - - for (i = 0; i < iSingleHZCount; i++) { - if (!strcmp (tableSingleHZ[i]->strHZ, strHZ) && !IsIgnoreChar (tableSingleHZ[i]->strCode[0])) { - if (!bMode) - return tableSingleHZ[i]; - - if (strlen (tableSingleHZ[i]->strCode) == 2) - recShort = tableSingleHZ[i]; - else if (strlen (tableSingleHZ[i]->strCode) > 2) - return tableSingleHZ[i]; - } - } - - return recShort; -}*/ + tableCandWord->flag = CT_NORMAL; + tableCandWord->candWord.record = record; +} /* * 根据序号调整词组顺序,序号从1开始 * 将指定的字/词调整到同样编码的最前面 */ -void TableAdjustOrderByIndex (int iIndex) +void TableAdjustOrderByIndex (FcitxTableState* tbl, TABLECANDWORD* tableCandWord) { RECORD *recTemp; int iTemp; - TABLECANDWORD* tableCandWord = tbl.tableCandWord; - TABLE* table = (TABLE*) utarray_eltptr(tbl.table, tbl.iTableIMIndex); + TableMetaData* table = (TableMetaData*) utarray_eltptr(tbl->table, tbl->iTableIMIndex); - if (tableCandWord[iIndex - 1].flag != CT_NORMAL) - return; - - recTemp = tableCandWord[iIndex - 1].candWord.record; + recTemp = tableCandWord->candWord.record; while (!strcmp (recTemp->strCode, recTemp->prev->strCode)) recTemp = recTemp->prev; - if (recTemp == tableCandWord[iIndex - 1].candWord.record) //说明已经是第一个 + if (recTemp == tableCandWord->candWord.record) //说明已经是第一个 return; //将指定的字/词放到recTemp前 - tableCandWord[iIndex - 1].candWord.record->prev->next = tableCandWord[iIndex - 1].candWord.record->next; - tableCandWord[iIndex - 1].candWord.record->next->prev = tableCandWord[iIndex - 1].candWord.record->prev; - recTemp->prev->next = tableCandWord[iIndex - 1].candWord.record; - tableCandWord[iIndex - 1].candWord.record->prev = recTemp->prev; - recTemp->prev = tableCandWord[iIndex - 1].candWord.record; - tableCandWord[iIndex - 1].candWord.record->next = recTemp; + tableCandWord->candWord.record->prev->next = tableCandWord->candWord.record->next; + tableCandWord->candWord.record->next->prev = tableCandWord->candWord.record->prev; + recTemp->prev->next = tableCandWord->candWord.record; + tableCandWord->candWord.record->prev = recTemp->prev; + recTemp->prev = tableCandWord->candWord.record; + tableCandWord->candWord.record->next = recTemp; - tbl.iTableChanged++; + table->tableDict->iTableChanged++; //需要的话,更新索引 - if (tableCandWord[iIndex - 1].candWord.record->strCode[1] == '\0') { - for (iTemp = 0; iTemp < strlen (table->strInputCode); iTemp++) { - if (tbl.recordIndex[iTemp].cCode == tableCandWord[iIndex - 1].candWord.record->strCode[0]) { - tbl.recordIndex[iTemp].record = tableCandWord[iIndex - 1].candWord.record; + if (tableCandWord->candWord.record->strCode[1] == '\0') { + for (iTemp = 0; iTemp < strlen (table->tableDict->strInputCode); iTemp++) { + if (tbl->recordIndex[iTemp].cCode == tableCandWord->candWord.record->strCode[0]) { + tbl->recordIndex[iTemp].record = tableCandWord->candWord.record; break; } } @@ -1759,563 +975,235 @@ /* * 根据序号删除词组,序号从1开始 */ -void TableDelPhraseByIndex (int iIndex) +void TableDelPhraseByIndex (FcitxTableState* tbl, TABLECANDWORD* tableCandWord) { - TABLECANDWORD *tableCandWord = tbl.tableCandWord; - if (tableCandWord[iIndex - 1].flag != CT_NORMAL) - return; + TableMetaData* table = (TableMetaData*) utarray_eltptr(tbl->table, tbl->iTableIMIndex); - if (utf8_strlen (tableCandWord[iIndex - 1].candWord.record->strHZ) <= 1) + if (tableCandWord->flag != CT_NORMAL) return; - TableDelPhrase (tableCandWord[iIndex - 1].candWord.record); -} - -/* - * 根据字串删除词组 - */ -void TableDelPhraseByHZ (char *strHZ) -{ - RECORD *recTemp; - - recTemp = TableFindPhrase (strHZ); - if (recTemp) - TableDelPhrase (recTemp); -} - -void TableDelPhrase (RECORD * record) -{ - TABLE* table = (TABLE*) utarray_eltptr(tbl.table, tbl.iTableIMIndex); - record->prev->next = record->next; - record->next->prev = record->prev; - - free (record->strCode); - free (record->strHZ); - free (record); - - table->iRecordCount--; -} - -/* - *判断某个词组是不是已经在词库中,有返回NULL,无返回插入点 - */ -RECORD *TableHasPhrase (char *strCode, char *strHZ) -{ - RECORD *recTemp; - int i; - - i = 0; - while (strCode[0] != tbl.recordIndex[i].cCode) - i++; - - recTemp = tbl.recordIndex[i].record; - while (recTemp != tbl.recordHead) { - if (!recTemp->bPinyin) { - if (strcmp (recTemp->strCode, strCode) > 0) - break; - else if (!strcmp (recTemp->strCode, strCode)) { - if (!strcmp (recTemp->strHZ, strHZ)) //该词组已经在词库中 - return NULL; - } - } - recTemp = recTemp->next; - } - - return recTemp; -} - -/* - *根据字串判断词库中是否有某个字/词,注意该函数会忽略拼音词组 - */ -RECORD *TableFindPhrase (char *strHZ) -{ - RECORD *recTemp; - char strTemp[UTF8_MAX_LENGTH + 1]; - int i; - - //首先,先查找第一个汉字的编码 - strncpy(strTemp, strHZ, utf8_char_len(strHZ)); - strTemp[utf8_char_len(strHZ)] = '\0'; - - recTemp = tbl.tableSingleHZ[CalHZIndex (strTemp)]; - if (!recTemp) - return (RECORD *) NULL; - - //然后根据该编码找到检索的起始点 - i = 0; - while (recTemp->strCode[0] != tbl.recordIndex[i].cCode) - i++; - - recTemp = tbl.recordIndex[i].record; - while (recTemp != tbl.recordHead) { - if (recTemp->strCode[0] != tbl.recordIndex[i].cCode) - break; - if (!strcmp (recTemp->strHZ, strHZ)) { - if (!recTemp->bPinyin) - return recTemp; - } - - recTemp = recTemp->next; - } - - return (RECORD *) NULL; -} - -void TableInsertPhrase (char *strCode, char *strHZ) -{ - RECORD *insertPoint, *dictNew; - TABLE* table = (TABLE*) utarray_eltptr(tbl.table, tbl.iTableIMIndex); - - insertPoint = TableHasPhrase (strCode, strHZ); - - if (!insertPoint) + if (utf8_strlen (tableCandWord->candWord.record->strHZ) <= 1) return; - dictNew = (RECORD *) malloc (sizeof (RECORD)); - dictNew->strCode = (char *) malloc (sizeof (char) * (table->iCodeLength + 1)); - strcpy (dictNew->strCode, strCode); - dictNew->strHZ = (char *) malloc (sizeof (char) * (strlen (strHZ) + 1)); - strcpy (dictNew->strHZ, strHZ); - dictNew->iHit = 0; - dictNew->iIndex = tbl.iTableIndex; - - dictNew->prev = insertPoint->prev; - insertPoint->prev->next = dictNew; - insertPoint->prev = dictNew; - dictNew->next = insertPoint; - - table->iRecordCount++; + TableDelPhrase (table->tableDict, tableCandWord->candWord.record); } -void TableCreateNewPhrase (void) +void TableCreateNewPhrase (FcitxTableState* tbl) { int i; + FcitxInstance *instance = tbl->owner; + FcitxInputState* input = &instance->input; + TableMetaData* table = (TableMetaData*) utarray_eltptr(tbl->table, tbl->iTableIMIndex); - SetMessageText(&messageDown, 0, ""); - for (i = tbl.iTableNewPhraseHZCount; i > 0; i--) - MessageConcat(&messageDown , 0 ,tbl.hzLastInput[tbl.iHZLastInputCount - i].strHZ); + SetMessageText(input->msgAuxDown, 0, ""); + for (i = tbl->iTableNewPhraseHZCount; i > 0; i--) + MessageConcat(input->msgAuxDown , 0 ,table->tableDict->hzLastInput[table->tableDict->iHZLastInputCount - i].strHZ); - TableCreatePhraseCode (messageDown.msg[0].strMsg); + boolean bCanntFindCode = TableCreatePhraseCode (table->tableDict, GetMessageString(input->msgAuxDown, 0)); - if (!tbl.bCanntFindCode) - SetMessageText(&messageDown, 1, tbl.strNewPhraseCode); - else - SetMessageText(&messageDown, 0, "????"); -} - -void TableCreatePhraseCode (char *strHZ) -{ - unsigned char i; - unsigned char i1, i2; - size_t iLen; - char strTemp[UTF8_MAX_LENGTH + 1] = {'\0', }; - RECORD *recTemp; - TABLE* table = (TABLE*) utarray_eltptr(tbl.table, tbl.iTableIMIndex); - - tbl.bCanntFindCode = False; - iLen = utf8_strlen (strHZ); - if (iLen >= table->iCodeLength) { - i2 = table->iCodeLength; - i1 = 1; - } - else { - i2 = iLen; - i1 = 0; + if (!bCanntFindCode) + { + SetMessageCount(input->msgAuxDown, 2); + SetMessageText(input->msgAuxDown, 1, table->tableDict->strNewPhraseCode); } - - for (i = 0; i < table->iCodeLength - 1; i++) { - if (table->rule[i].iWords == i2 && table->rule[i].iFlag == i1) - break; + else + { + SetMessageCount(input->msgAuxDown, 1); + SetMessageText(input->msgAuxDown, 0, "????"); } - for (i1 = 0; i1 < table->iCodeLength; i1++) { - int clen; - char* ps; - if (table->rule[i].rule[i1].iFlag) { - ps = utf8_get_nth_char(strHZ, table->rule[i].rule[i1].iWhich - 1); - clen = utf8_char_len(ps); - strncpy(strTemp, ps, clen); - } - else { - ps = utf8_get_nth_char(strHZ, iLen - table->rule[i].rule[i1].iWhich); - clen = utf8_char_len(ps); - strncpy(strTemp, ps, clen); - } - - recTemp = tbl.tableSingleHZ[CalHZIndex (strTemp)]; - - if (!recTemp) { - tbl.bCanntFindCode = True; - break; - } - - tbl.strNewPhraseCode[i1] = recTemp->strCode[table->rule[i].rule[i1].iIndex - 1]; - } } /* * 获取联想候选字列表 */ -INPUT_RETURN_VALUE TableGetLegendCandWords (SEARCH_MODE mode) +INPUT_RETURN_VALUE TableGetRemindCandWords (FcitxTableState* tbl) { - char strTemp[3]; int iLength; - int i; - RECORD *tableLegend = NULL; - unsigned int iTableTotalLengendCandCount = 0; - TABLECANDWORD* tableCandWord = tbl.tableCandWord; + RECORD *tableRemind = NULL; + GenericConfig *fc = &tbl->owner->config->gconfig; + FcitxInstance *instance = tbl->owner; + FcitxInputState *input = &instance->input; + boolean bDisablePagingInRemind = *ConfigGetBindValue(fc, "Output", "RemindModeDisablePaging").boolvalue; + TableMetaData* table = (TableMetaData*) utarray_eltptr(tbl->table, tbl->iTableIMIndex); - if (!tbl.strTableLegendSource[0]) + if (!tbl->strTableRemindSource[0]) return IRV_TO_PROCESS; - iLength = utf8_strlen (tbl.strTableLegendSource); - if (mode == SM_FIRST) { - iCurrentLegendCandPage = 0; - iLegendCandPageCount = 0; - TableResetFlags(); - } - else { - if (!iLegendCandPageCount) - return IRV_TO_PROCESS; - - if (mode == SM_NEXT) { - if (iCurrentLegendCandPage == iLegendCandPageCount) - return IRV_DO_NOTHING; - - iCurrentLegendCandPage++; - } - else { - if (!iCurrentLegendCandPage) - return IRV_DO_NOTHING; - - TableSetCandWordsFlag (iLegendCandWordCount, False); - iCurrentLegendCandPage--; - } - } + input->strCodeInput[0] = '\0'; + input->iCodeInputCount = 0; + CandidateWordReset(input->candList); - iLegendCandWordCount = 0; - tableLegend = tbl.recordHead->next; + iLength = utf8_strlen (tbl->strTableRemindSource); + tableRemind = table->tableDict->recordHead->next; - while (tableLegend != tbl.recordHead) { - if (((mode == SM_PREV) ^ (!tableLegend->flag)) && ((iLength + 1) == utf8_strlen (tableLegend->strHZ))) { - if (!utf8_strncmp (tableLegend->strHZ, tbl.strTableLegendSource, iLength) && utf8_get_nth_char(tableLegend->strHZ, iLength)) { - if (mode == SM_FIRST) - iTableTotalLengendCandCount++; + while (tableRemind != table->tableDict->recordHead) { + if (bDisablePagingInRemind && CandidateWordGetListSize(input->candList) >= CandidateWordGetPageSize(input->candList)) + break; - TableAddLegendCandWord (tableLegend, mode); + if (((iLength + 1) == utf8_strlen (tableRemind->strHZ))) { + if (!utf8_strncmp (tableRemind->strHZ, tbl->strTableRemindSource, iLength) && utf8_get_nth_char(tableRemind->strHZ, iLength)) { + TABLECANDWORD* tableCandWord = fcitx_malloc0(sizeof(TABLECANDWORD)); + TableAddRemindCandWord (tableRemind, tableCandWord); + CandidateWord candWord; + candWord.callback = TableGetCandWord; + candWord.owner = tbl; + candWord.priv = tableCandWord; + candWord.strExtra = NULL; + candWord.strWord = strdup(tableCandWord->candWord.record->strHZ + strlen (tbl->strTableRemindSource)); + CandidateWordAppend(input->candList, &candWord); } } - tableLegend = tableLegend->next; - } - - TableSetCandWordsFlag (iLegendCandWordCount, True); + tableRemind = tableRemind->next; + } + + CleanInputWindowUp(instance); + AddMessageAtLast(input->msgAuxUp, MSG_TIPS, _("Remind:")); + AddMessageAtLast(input->msgAuxUp, MSG_INPUT, "%s", tbl->strTableRemindSource); + input->bIsInRemind = (CandidateWordPageCount(input->candList)); - if (mode == SM_FIRST && fc.bDisablePagingInLegend) - iLegendCandPageCount = iTableTotalLengendCandCount / fc.iMaxCandWord - ((iTableTotalLengendCandCount % fc.iMaxCandWord) ? 0 : 1); - - SetMessageCount(&messageUp, 0); - AddMessageAtLast(&messageUp, MSG_TIPS, "联想:"); - AddMessageAtLast(&messageUp, MSG_INPUT, "%s", tbl.strTableLegendSource); - - if (fc.bPointAfterNumber) { - strTemp[1] = '.'; - strTemp[2] = '\0'; - } + if (input->bIsInRemind) + return IRV_DISPLAY_CANDWORDS; else - strTemp[1] = '\0'; - - SetMessageCount(&messageDown, 0); - for (i = 0; i < iLegendCandWordCount; i++) { - if (i == 9) - strTemp[0] = '0'; - else - strTemp[0] = i + 1 + '0'; - AddMessageAtLast(&messageDown, MSG_INDEX, "%s", strTemp); - - AddMessageAtLast(&messageDown, ((i == 0) ? MSG_FIRSTCAND : MSG_OTHER), "%s", tableCandWord[i].candWord.record->strHZ + strlen (tbl.strTableLegendSource)); - if (i != (iLegendCandWordCount - 1)) { - MessageConcatLast(&messageDown, " "); - } - } - - bIsInLegend = (iLegendCandWordCount != 0); - - return IRV_DISPLAY_CANDWORDS; + return IRV_CLEAN; } -void TableAddLegendCandWord (RECORD * record, SEARCH_MODE mode) +void TableAddRemindCandWord (RECORD * record, TABLECANDWORD* tableCandWord) { - int i, j; - TABLECANDWORD *tableCandWord = tbl.tableCandWord; - - if (mode == SM_PREV) { - for (i = iLegendCandWordCount - 1; i >= 0; i--) { - if (tableCandWord[i].candWord.record->iHit >= record->iHit) - break; - } - - if (iLegendCandWordCount == fc.iMaxCandWord) { - if (i < 0) - return; - } - else - i++; - } - else { - for (i = 0; i < iLegendCandWordCount; i++) { - if (tableCandWord[i].candWord.record->iHit < record->iHit) - break; - } - - if (i == fc.iMaxCandWord) - return; - } - - if (mode == SM_PREV) { - if (iLegendCandWordCount == fc.iMaxCandWord) { - for (j = 0; j < i; j++) - tableCandWord[j].candWord.record = tableCandWord[j + 1].candWord.record; - } - else { - for (j = iLegendCandWordCount; j > i; j--) - tableCandWord[j].candWord.record = tableCandWord[j - 1].candWord.record; - } - } - else { - j = iLegendCandWordCount; - if (iLegendCandWordCount == fc.iMaxCandWord) - j--; - for (; j > i; j--) - tableCandWord[j].candWord.record = tableCandWord[j - 1].candWord.record; - } - - tableCandWord[i].flag = CT_NORMAL; - tableCandWord[i].candWord.record = record; - - if (iLegendCandWordCount != fc.iMaxCandWord) - iLegendCandWordCount++; + tableCandWord->flag = CT_REMIND; + tableCandWord->candWord.record = record; } -char *TableGetLegendCandWord (int iIndex) +INPUT_RETURN_VALUE TableGetRemindCandWord (void* arg, TABLECANDWORD* tableCandWord) { - TABLECANDWORD *tableCandWord = tbl.tableCandWord; - if (iLegendCandWordCount) { - if (iIndex > (iLegendCandWordCount - 1)) - iIndex = iLegendCandWordCount - 1; + FcitxTableState* tbl = (FcitxTableState*) arg; + FcitxInstance *instance = tbl->owner; + FcitxInputState *input = &instance->input; - tableCandWord[iIndex].candWord.record->iHit++; - strcpy (tbl.strTableLegendSource, tableCandWord[iIndex].candWord.record->strHZ + strlen (tbl.strTableLegendSource)); - TableGetLegendCandWords (SM_FIRST); + tableCandWord->candWord.record->iHit++; + strcpy (tbl->strTableRemindSource, tableCandWord->candWord.record->strHZ + strlen (tbl->strTableRemindSource)); + TableGetRemindCandWords (tbl); - return tbl.strTableLegendSource; - } - return NULL; + strcpy(GetOutputString(input), tbl->strTableRemindSource); + return IRV_COMMIT_STRING_REMIND; } -INPUT_RETURN_VALUE TableGetFHCandWords (SEARCH_MODE mode) +INPUT_RETURN_VALUE TableGetFHCandWords (FcitxTableState* tbl) { - char strTemp[3]; int i; + FcitxInstance *instance = tbl->owner; + FcitxInputState *input = &instance->input; + TableMetaData* table = (TableMetaData*) utarray_eltptr(tbl->table, tbl->iTableIMIndex); + + CleanInputWindowUp(instance); + AddMessageAtLast(input->msgPreedit, MSG_INPUT, "%s", input->strCodeInput); + input->iCursorPos = input->iCodeInputCount; - if (!tbl.iFH) + if (!table->tableDict->iFH) return IRV_DISPLAY_MESSAGE; - if (fc.bPointAfterNumber) { - strTemp[1] = '.'; - strTemp[2] = '\0'; - } - else - strTemp[1] = '\0'; - - SetMessageCount(&messageDown, 0); - - if (mode == SM_FIRST) { - iCandPageCount = tbl.iFH / fc.iMaxCandWord - ((tbl.iFH % fc.iMaxCandWord) ? 0 : 1); - iCurrentCandPage = 0; - } - else { - if (!iCandPageCount) - return IRV_TO_PROCESS; - - if (mode == SM_NEXT) { - if (iCurrentCandPage == iCandPageCount) - return IRV_DO_NOTHING; - - iCurrentCandPage++; - } - else { - if (!iCurrentCandPage) - return IRV_DO_NOTHING; - - iCurrentCandPage--; - } - } - - for (i = 0; i < fc.iMaxCandWord; i++) { - strTemp[0] = i + 1 + '0'; - if (i == 9) - strTemp[0] = '0'; - AddMessageAtLast(&messageDown, MSG_INDEX, strTemp); - AddMessageAtLast(&messageDown, ((i == 0) ? MSG_FIRSTCAND : MSG_OTHER), "%s", tbl.fh[iCurrentCandPage * fc.iMaxCandWord + i].strFH); - if (i != (fc.iMaxCandWord - 1)) { - MessageConcatLast(&messageDown, " "); - } - if ((iCurrentCandPage * fc.iMaxCandWord + i) >= (tbl.iFH - 1)) { - i++; - break; - } + for (i = 0; i < table->tableDict->iFH; i++) { + TABLECANDWORD* tableCandWord = fcitx_malloc0(sizeof(TABLECANDWORD)); + tableCandWord->flag = CT_FH; + tableCandWord->candWord.iFHIndex = i; + CandidateWord candWord; + candWord.callback = TableGetCandWord; + candWord.owner = tbl; + candWord.priv = tableCandWord; + candWord.strExtra = NULL; + candWord.strWord = strdup(table->tableDict->fh[i].strFH); + CandidateWordAppend(input->candList, &candWord); } - - iCandWordCount = i; return IRV_DISPLAY_CANDWORDS; } -char *TableGetFHCandWord (int iIndex) +INPUT_RETURN_VALUE TableGetFHCandWord (FcitxTableState* tbl, TABLECANDWORD* tableCandWord) { - SetMessageCount(&messageDown, 0); + FcitxInstance *instance = tbl->owner; + FcitxInputState *input = &instance->input; + TableMetaData* table = (TableMetaData*) utarray_eltptr(tbl->table, tbl->iTableIMIndex); + CleanInputWindowDown(instance); - if (iCandWordCount) { - if (iIndex > (iCandWordCount - 1)) - iIndex = iCandWordCount - 1; - - return tbl.fh[iCurrentCandPage * fc.iMaxCandWord + iIndex].strFH; - } - return NULL; + strcpy(GetOutputString(input), table->tableDict->fh[tableCandWord->candWord.iFHIndex].strFH); + return IRV_COMMIT_STRING; } -Bool TablePhraseTips (void) +boolean TablePhraseTips (void *arg) { + FcitxTableState *tbl = (FcitxTableState*) arg; RECORD *recTemp = NULL; char strTemp[PHRASE_MAX_LENGTH * UTF8_MAX_LENGTH + 1] = "\0", *ps; - INT16 i, j; + short i, j; + FcitxInstance *instance = tbl->owner; + FcitxInputState *input = &instance->input; + TableMetaData* table = (TableMetaData*) utarray_eltptr(tbl->table, tbl->iTableIMIndex); - if (!tbl.recordHead) - return False; + if (!table->tableDict->recordHead) + return false; //如果最近输入了一个词组,这个工作就不需要了 - if (lastIsSingleHZ != 1) - return False; + if (input->lastIsSingleHZ != 1) + return false; - j = (tbl.iHZLastInputCount > PHRASE_MAX_LENGTH) ? tbl.iHZLastInputCount - PHRASE_MAX_LENGTH : 0; - for (i = j; i < tbl.iHZLastInputCount; i++) - strcat (strTemp, tbl.hzLastInput[i].strHZ); + j = (table->tableDict->iHZLastInputCount > PHRASE_MAX_LENGTH) ? table->tableDict->iHZLastInputCount - PHRASE_MAX_LENGTH : 0; + for (i = j; i < table->tableDict->iHZLastInputCount; i++) + strcat (strTemp, table->tableDict->hzLastInput[i].strHZ); //如果只有一个汉字,这个工作也不需要了 if (utf8_strlen (strTemp) < 2) - return False; + return false; //首先要判断是不是已经在词库中 ps = strTemp; - for (i = 0; i < (tbl.iHZLastInputCount - j - 1); i++) { - recTemp = TableFindPhrase (ps); + for (i = 0; i < (table->tableDict->iHZLastInputCount - j - 1); i++) { + recTemp = TableFindPhrase (table->tableDict, ps); if (recTemp) { - SetMessageCount(&messageUp, 0); - AddMessageAtLast(&messageUp, MSG_TIPS, "词库中有词组 "); - AddMessageAtLast(&messageUp, MSG_INPUT, "%s", ps); - - SetMessageCount(&messageDown, 0); - AddMessageAtLast(&messageDown, MSG_FIRSTCAND, "编码为 "); - AddMessageAtLast(&messageDown, MSG_CODE, "%s", recTemp->strCode); - AddMessageAtLast(&messageDown, MSG_TIPS, " ^DEL删除"); - tbl.bTablePhraseTips = True; - inputWindow.bShowCursor = False; + CleanInputWindow(instance); + AddMessageAtLast(input->msgAuxUp, MSG_TIPS, _("Phrase is already in Dict ")); + AddMessageAtLast(input->msgAuxUp, MSG_INPUT, "%s", ps); + + AddMessageAtLast(input->msgAuxDown, MSG_FIRSTCAND, _("Code is ")); + AddMessageAtLast(input->msgAuxDown, MSG_CODE, "%s", recTemp->strCode); + AddMessageAtLast(input->msgAuxDown, MSG_TIPS, _(" Ctrl+Delete To Delete")); + tbl->bTablePhraseTips = true; + input->bShowCursor = false; - return True; + return true; } ps = ps + utf8_char_len(ps); } - return False; -} - -void TableCreateAutoPhrase (INT8 iCount) -{ - char *strHZ; - INT16 i, j, k; - TABLE* table = (TABLE*) utarray_eltptr(tbl.table, tbl.iTableIMIndex); - - if (!tbl.autoPhrase) - return; - - strHZ=(char *)malloc((table->iAutoPhrase * UTF8_MAX_LENGTH + 1)*sizeof(char)); - /* - * 为了提高效率,此处只重新生成新录入字构成的词组 - */ - j = tbl.iHZLastInputCount - table->iAutoPhrase - iCount; - if (j < 0) - j = 0; - - for (; j < tbl.iHZLastInputCount - 1; j++) { - for (i = table->iAutoPhrase; i >= 2; i--) { - if ((j + i - 1) > tbl.iHZLastInputCount) - continue; - - strcpy (strHZ, tbl.hzLastInput[j].strHZ); - for (k = 1; k < i; k++) - strcat (strHZ, tbl.hzLastInput[j + k].strHZ); - - //再去掉重复的词组 - for (k = 0; k < tbl.iAutoPhrase; k++) { - if (!strcmp (tbl.autoPhrase[k].strHZ, strHZ)) - goto _next; - } - //然后去掉系统中已经有的词组 - if (TableFindPhrase (strHZ)) - goto _next; - - TableCreatePhraseCode (strHZ); - if (tbl.iAutoPhrase != AUTO_PHRASE_COUNT) { - tbl.autoPhrase[tbl.iAutoPhrase].flag = False; - strcpy (tbl.autoPhrase[tbl.iAutoPhrase].strCode, tbl.strNewPhraseCode); - strcpy (tbl.autoPhrase[tbl.iAutoPhrase].strHZ, strHZ); - tbl.autoPhrase[tbl.iAutoPhrase].iSelected = 0; - tbl.iAutoPhrase++; - } - else { - tbl.insertPoint->flag = False; - strcpy (tbl.insertPoint->strCode, tbl.strNewPhraseCode); - strcpy (tbl.insertPoint->strHZ, strHZ); - tbl.insertPoint->iSelected = 0; - tbl.insertPoint = tbl.insertPoint->next; - } - -_next: - continue; - } - - } - - free(strHZ); + return false; } -void UpdateHZLastInput (char *str) +void UpdateHZLastInput (FcitxTableState* tbl, char *str) { int i, j; char *pstr; - TABLE* table = (TABLE*) utarray_eltptr(tbl.table, tbl.iTableIMIndex); + TableMetaData* table = (TableMetaData*) utarray_eltptr(tbl->table, tbl->iTableIMIndex); pstr = str; for (i = 0; i < utf8_strlen (str) ; i++) { - if (tbl.iHZLastInputCount < PHRASE_MAX_LENGTH) - tbl.iHZLastInputCount++; + if (table->tableDict->iHZLastInputCount < PHRASE_MAX_LENGTH) + table->tableDict->iHZLastInputCount++; else { - for (j = 0; j < (tbl.iHZLastInputCount - 1); j++) { - strncpy(tbl.hzLastInput[j].strHZ, tbl.hzLastInput[j + 1].strHZ, utf8_char_len(tbl.hzLastInput[j + 1].strHZ)); + for (j = 0; j < (table->tableDict->iHZLastInputCount - 1); j++) { + strncpy(table->tableDict->hzLastInput[j].strHZ, table->tableDict->hzLastInput[j + 1].strHZ, utf8_char_len(table->tableDict->hzLastInput[j + 1].strHZ)); } } - strncpy(tbl.hzLastInput[tbl.iHZLastInputCount - 1].strHZ, pstr, utf8_char_len(pstr)); - tbl.hzLastInput[tbl.iHZLastInputCount - 1].strHZ[utf8_char_len(pstr)] = '\0'; + strncpy(table->tableDict->hzLastInput[table->tableDict->iHZLastInputCount - 1].strHZ, pstr, utf8_char_len(pstr)); + table->tableDict->hzLastInput[table->tableDict->iHZLastInputCount - 1].strHZ[utf8_char_len(pstr)] = '\0'; pstr = pstr + utf8_char_len(pstr); } - if (table->bRule && table->bAutoPhrase) - TableCreateAutoPhrase ((INT8) (utf8_strlen (str))); + if (table->tableDict->bRule && table->bAutoPhrase) + TableCreateAutoPhrase (table, (char) (utf8_strlen (str))); } void FreeTableConfig(void *v) { - TABLE *table = (TABLE*) v; + TableMetaData *table = (TableMetaData*) v; if (!table) return; FreeConfigFile(table->config.configFile); @@ -2323,9 +1211,43 @@ free(table->strSymbolFile); free(table->strName); free(table->strIconName); - free(table->strInputCode); free(table->strEndCode); - free(table->strIgnoreChars); free(table->strSymbol); free(table->strChoose); } + +int TableCandCmp(const void* a, const void* b, void *arg) +{ + TABLECANDWORD* canda = *(TABLECANDWORD**)a; + TABLECANDWORD* candb = *(TABLECANDWORD**)b; + TableCandWordSortContext* context = arg; + + if (candb->candWord.record->bPinyin && !canda->candWord.record->bPinyin) + return -1; + else if (canda->candWord.record->bPinyin && !candb->candWord.record->bPinyin) + return 1; + switch (context->order) + { + case AD_NO: + return 0; + case AD_FAST: + { + int result = strcmp(canda->candWord.record->strCode, candb->candWord.record->strCode); + if (result != 0) + return result; + return candb->candWord.record->iIndex - canda->candWord.record->iIndex; + } + break; + case AD_FREQ: + { + int result = strcmp(canda->candWord.record->strCode, candb->candWord.record->strCode); + if (result != 0) + return result; + return candb->candWord.record->iHit - canda->candWord.record->iHit; + } + break; + } + return 0; +} + +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/im/table/tableconfig.c fcitx-4.1.1/src/im/table/tableconfig.c --- fcitx-4.0.1/src/im/table/tableconfig.c 2010-11-28 11:55:00.000000000 +0000 +++ fcitx-4.1.1/src/im/table/tableconfig.c 2011-09-08 16:00:05.000000000 +0000 @@ -18,32 +18,34 @@ * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ***************************************************************************/ -#include "core/fcitx.h" +#include "fcitx/fcitx.h" -#include "table.h" +#include "tabledict.h" -CONFIG_BINDING_BEGIN(TABLE); -CONFIG_BINDING_REGISTER("CodeTable", "Name", strName); -CONFIG_BINDING_REGISTER("CodeTable", "IconName", strIconName); -CONFIG_BINDING_REGISTER("CodeTable", "File", strPath); -CONFIG_BINDING_REGISTER("CodeTable", "AdjustOrder", tableOrder); -CONFIG_BINDING_REGISTER("CodeTable", "Priority", iPriority); -CONFIG_BINDING_REGISTER("CodeTable", "UsePY", bUsePY); -CONFIG_BINDING_REGISTER("CodeTable", "PYKey", cPinyin); -CONFIG_BINDING_REGISTER("CodeTable", "AutoSend", iTableAutoSendToClient); -CONFIG_BINDING_REGISTER("CodeTable", "NoneMatchAutoSend", iTableAutoSendToClientWhenNone); -CONFIG_BINDING_REGISTER("CodeTable", "EndKey", strEndCode); -CONFIG_BINDING_REGISTER("CodeTable", "UseMatchingKey", bUseMatchingKey); -CONFIG_BINDING_REGISTER("CodeTable", "MatchingKey", cMatchingKey); -CONFIG_BINDING_REGISTER("CodeTable", "ExactMatch", bTableExactMatch); -CONFIG_BINDING_REGISTER("CodeTable", "AutoPhrase", bAutoPhrase); -CONFIG_BINDING_REGISTER("CodeTable", "AutoPhraseLength", iAutoPhrase); -CONFIG_BINDING_REGISTER("CodeTable", "AutoPhrasePhrase", bAutoPhrasePhrase); -CONFIG_BINDING_REGISTER("CodeTable", "SaveAutoPhrase", iSaveAutoPhraseAfter); -CONFIG_BINDING_REGISTER("CodeTable", "PromptTableCode", bPromptTableCode); -CONFIG_BINDING_REGISTER("CodeTable", "Symbol", strSymbol); -CONFIG_BINDING_REGISTER("CodeTable", "SymbolFile", strSymbolFile); -CONFIG_BINDING_REGISTER("CodeTable", "Choose", strChoose); -CONFIG_BINDING_REGISTER("CodeTable", "Enabled", bEnabled); +CONFIG_BINDING_BEGIN(TableMetaData) +CONFIG_BINDING_REGISTER("CodeTable", "Name", strName) +CONFIG_BINDING_REGISTER("CodeTable", "IconName", strIconName) +CONFIG_BINDING_REGISTER("CodeTable", "File", strPath) +CONFIG_BINDING_REGISTER("CodeTable", "AdjustOrder", tableOrder) +CONFIG_BINDING_REGISTER("CodeTable", "Priority", iPriority) +CONFIG_BINDING_REGISTER("CodeTable", "UsePY", bUsePY) +CONFIG_BINDING_REGISTER("CodeTable", "PYKey", cPinyin) +CONFIG_BINDING_REGISTER("CodeTable", "AutoSend", iTableAutoSendToClient) +CONFIG_BINDING_REGISTER("CodeTable", "NoneMatchAutoSend", iTableAutoSendToClientWhenNone) +CONFIG_BINDING_REGISTER("CodeTable", "EndKey", strEndCode) +CONFIG_BINDING_REGISTER("CodeTable", "UseMatchingKey", bUseMatchingKey) +CONFIG_BINDING_REGISTER("CodeTable", "MatchingKey", cMatchingKey) +CONFIG_BINDING_REGISTER("CodeTable", "ExactMatch", bTableExactMatch) +CONFIG_BINDING_REGISTER("CodeTable", "AutoPhrase", bAutoPhrase) +CONFIG_BINDING_REGISTER("CodeTable", "AutoPhraseLength", iAutoPhraseLength) +CONFIG_BINDING_REGISTER("CodeTable", "AutoPhrasePhrase", bAutoPhrasePhrase) +CONFIG_BINDING_REGISTER("CodeTable", "SaveAutoPhrase", iSaveAutoPhraseAfter) +CONFIG_BINDING_REGISTER("CodeTable", "PromptTableCode", bPromptTableCode) +CONFIG_BINDING_REGISTER("CodeTable", "Symbol", strSymbol) +CONFIG_BINDING_REGISTER("CodeTable", "SymbolFile", strSymbolFile) +CONFIG_BINDING_REGISTER("CodeTable", "Choose", strChoose) +CONFIG_BINDING_REGISTER("CodeTable", "Enabled", bEnabled) CONFIG_BINDING_END() + +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/im/table/table.desc fcitx-4.1.1/src/im/table/table.desc --- fcitx-4.0.1/src/im/table/table.desc 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/im/table/table.desc 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,111 @@ +[CodeTable/Name] +Description=Code Table Name +Type=I18NString + +[CodeTable/IconName] +Description=Icon Name +Type=String + +[CodeTable/File] +Description=Code Table File +Type=File + +[CodeTable/AdjustOrder] +Description=Adjust Order +Type=Enum +DefaultValue=AdjustNo +EnumCount=3 +Enum0=AdjustNo +Enum1=AdjustFast +Enum2=AdjustFreq + +[CodeTable/Priority] +Description=Order of Code Table +Type=Integer +DefaultValue=99 + +[CodeTable/UsePY] +Description=Use Pinyin +Type=Boolean +DefaultValue=False + +[CodeTable/PYKey] +Description=Pinyin Key +Type=Char +DefaultValue=@ + +[CodeTable/AutoSend] +Description=Auto Send Candidate Word to Client +Type=Integer +DefaultValue=-1 + +[CodeTable/NoneMatchAutoSend] +Description=Auto Send Candidate Word if no match in Code Table +Type=Integer +DefaultValue=-1 + +[CodeTable/EndKey] +Description=End Key +Type=String +DefaultValue= + +[CodeTable/UseMatchingKey] +Description=Use Matching Key +Type=Boolean +DefaultValue=False + +[CodeTable/MatchingKey] +Description=Matching Key +Type=Char +DefaultValue=~ + +[CodeTable/ExactMatch] +Description=Exact Match +Type=Boolean + +[CodeTable/AutoPhrase] +Description=Auto Phrase +Type=Boolean +DefaultValue=True + +[CodeTable/AutoPhraseLength] +Description=Auto Phrase Length +Type=Integer +DefaultValue=4 + +[CodeTable/AutoPhrasePhrase] +Description=Auto Phrase Phrase +Type=Boolean +DefaultValue=True + +[CodeTable/SaveAutoPhrase] +Description=Save Auto Phrase +Type=Integer +DefaultValue=0 + +[CodeTable/PromptTableCode] +Description=Prompt Table Code +Type=Boolean + +[CodeTable/Symbol] +Description=Symbol +Type=String +DefaultValue= + +[CodeTable/SymbolFile] +Description=Symbol File +Type=File +DefaultValue= + +[CodeTable/Choose] +Description=Choose +Type=String +DefaultValue=1234567890 + +[CodeTable/Enabled] +Description=Enable This Table or Not +Type=Boolean +DefaultValue=True + +[DescriptionFile] +LocaleDomain=fcitx diff -Nru fcitx-4.0.1/src/im/table/tabledict.c fcitx-4.1.1/src/im/table/tabledict.c --- fcitx-4.0.1/src/im/table/tabledict.c 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/im/table/tabledict.c 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,794 @@ +#include +#include +#include +#include "fcitx/fcitx.h" +#include "fcitx-utils/log.h" +#include "fcitx-config/xdg.h" +#include "fcitx-utils/utf8.h" +#include "tabledict.h" +#include + +#define TEMP_FILE "FCITX_TABLE_TEMP" + +const int iInternalVersion = INTERNAL_VERSION; + +boolean LoadTableDict(TableMetaData* tableMetaData) +{ + char strCode[MAX_CODE_LENGTH + 1]; + char strHZ[PHRASE_MAX_LENGTH * UTF8_MAX_LENGTH + 1]; + FILE *fpDict; + RECORD *recTemp; + char strPath[PATH_MAX]; + unsigned int i = 0; + unsigned int iTemp, iTempCount; + char cChar = 0, cTemp; + char iVersion = 1; + int iRecordIndex; + char *pstr; + TableDict *tableDict; + tableMetaData->tableDict = fcitx_malloc0(sizeof(TableDict)); + tableDict = tableMetaData->tableDict; + + //读入码表 + FcitxLog(DEBUG, _("Loading Table Dict")); + + fpDict = GetXDGFileWithPrefix("table", tableMetaData->strPath, "r", &pstr); + FcitxLog(INFO, _("Load Table Dict from %s"), pstr); + free(pstr); + + if (!fpDict) { + FcitxLog( DEBUG, _("Cannot load table file: %s"), strPath); + return false; + } + + //先读取码表的信息 + //判断版本信息 + fread (&iTemp, sizeof (unsigned int), 1, fpDict); + if (!iTemp) { + fread (&iVersion, sizeof (char), 1, fpDict); + iVersion = (iVersion < INTERNAL_VERSION); + fread (&iTemp, sizeof (unsigned int), 1, fpDict); + } + + tableDict->strInputCode = (char *) realloc (tableDict->strInputCode, sizeof (char) * (iTemp + 1)); + fread (tableDict->strInputCode, sizeof (char), iTemp + 1, fpDict); + /* + * 建立索引,加26是为了为拼音编码预留空间 + */ + tableDict->recordIndex = (RECORD_INDEX *) fcitx_malloc0 ((strlen (tableDict->strInputCode) + 26) * sizeof (RECORD_INDEX)); + for (iTemp = 0; iTemp < strlen (tableDict->strInputCode) + 26; iTemp++) { + tableDict->recordIndex[iTemp].cCode = 0; + tableDict->recordIndex[iTemp].record = NULL; + } + /* ********************************************************************** */ + + fread (&(tableDict->iCodeLength), sizeof (unsigned char), 1, fpDict); + if (tableMetaData->iTableAutoSendToClient == -1) + tableMetaData->iTableAutoSendToClient = tableDict->iCodeLength; + if (tableMetaData->iTableAutoSendToClientWhenNone == -1) + tableMetaData->iTableAutoSendToClientWhenNone = tableDict->iCodeLength; + + if (!iVersion) + fread (&(tableDict->iPYCodeLength), sizeof (unsigned char), 1, fpDict); + else + tableDict->iPYCodeLength = tableDict->iCodeLength; + + fread (&iTemp, sizeof (unsigned int), 1, fpDict); + tableDict->strIgnoreChars = (char *) fcitx_malloc0 (sizeof (char) * (iTemp + 1)); + fread (tableDict->strIgnoreChars, sizeof (char), iTemp + 1, fpDict); + + fread (&(tableDict->bRule), sizeof (unsigned char), 1, fpDict); + + if (tableDict->bRule) { //表示有组词规则 + tableDict->rule = (RULE *) fcitx_malloc0 (sizeof (RULE) * (tableDict->iCodeLength - 1)); + for (i = 0; i < tableDict->iCodeLength - 1; i++) { + fread (&(tableDict->rule[i].iFlag), sizeof (unsigned char), 1, fpDict); + fread (&(tableDict->rule[i].iWords), sizeof (unsigned char), 1, fpDict); + tableDict->rule[i].rule = (RULE_RULE *) fcitx_malloc0 (sizeof (RULE_RULE) * tableDict->iCodeLength); + for (iTemp = 0; iTemp < tableDict->iCodeLength; iTemp++) { + fread (&(tableDict->rule[i].rule[iTemp].iFlag), sizeof (unsigned char), 1, fpDict); + fread (&(tableDict->rule[i].rule[iTemp].iWhich), sizeof (unsigned char), 1, fpDict); + fread (&(tableDict->rule[i].rule[iTemp].iIndex), sizeof (unsigned char), 1, fpDict); + } + } + } + + tableDict->recordHead = (RECORD *) fcitx_malloc0 (sizeof (RECORD)); + tableDict->currentRecord = tableDict->recordHead; + + fread (&(tableDict->iRecordCount), sizeof (unsigned int), 1, fpDict); + + for (i = 0; i < SINGLE_HZ_COUNT; i++) + tableDict->tableSingleHZ[i] = (RECORD *) NULL; + + iRecordIndex = 0; + for (i = 0; i < tableDict->iRecordCount; i++) { + fread (strCode, sizeof (char), tableDict->iPYCodeLength + 1, fpDict); + fread (&iTemp, sizeof (unsigned int), 1, fpDict); + fread (strHZ, sizeof (char), iTemp, fpDict); + recTemp = (RECORD *) fcitx_malloc0 (sizeof (RECORD)); + recTemp->strCode = (char *) fcitx_malloc0 (sizeof (char) * (tableDict->iPYCodeLength + 1)); + memset(recTemp->strCode, 0, sizeof (char) * (tableDict->iPYCodeLength + 1)); + strcpy (recTemp->strCode, strCode); + recTemp->strHZ = (char *) fcitx_malloc0 (sizeof (char) * iTemp); + strcpy (recTemp->strHZ, strHZ); + + if (!iVersion) { + fread (&cTemp, sizeof (char), 1, fpDict); + recTemp->bPinyin = cTemp; + } + + fread (&(recTemp->iHit), sizeof (unsigned int), 1, fpDict); + fread (&(recTemp->iIndex), sizeof (unsigned int), 1, fpDict); + if (recTemp->iIndex > tableDict->iTableIndex) + tableDict->iTableIndex = recTemp->iIndex; + + /* 建立索引 */ + if (cChar != recTemp->strCode[0]) { + cChar = recTemp->strCode[0]; + tableDict->recordIndex[iRecordIndex].cCode = cChar; + tableDict->recordIndex[iRecordIndex].record = recTemp; + iRecordIndex++; + } + /* **************************************************************** */ + /** 为单字生成一个表 */ + if (utf8_strlen (recTemp->strHZ) == 1 && !IsIgnoreChar (tableDict, strCode[0]) && !recTemp->bPinyin) { + iTemp = CalHZIndex (recTemp->strHZ); + if (iTemp < SINGLE_HZ_COUNT) { + if (tableDict->tableSingleHZ[iTemp]) { + if (strlen (strCode) > strlen (tableDict->tableSingleHZ[iTemp]->strCode)) + tableDict->tableSingleHZ[iTemp] = recTemp; + } + else + tableDict->tableSingleHZ[iTemp] = recTemp; + } + } + + if (recTemp->bPinyin) + tableDict->bHasPinyin = true; + + tableDict->currentRecord->next = recTemp; + recTemp->prev = tableDict->currentRecord; + tableDict->currentRecord = recTemp; + } + + tableDict->currentRecord->next = tableDict->recordHead; + tableDict->recordHead->prev = tableDict->currentRecord; + + fclose (fpDict); + FcitxLog(DEBUG, _("Load Table Dict OK")); + + //读取相应的特殊符号表 + fpDict = GetXDGFileWithPrefix("table", tableMetaData->strSymbolFile, "rt", NULL); + + if (fpDict) { + tableDict->iFH = CalculateRecordNumber (fpDict); + tableDict->fh = (FH *) fcitx_malloc0 (sizeof (FH) * tableDict->iFH); + + for (i = 0; i < tableDict->iFH; i++) { + if (EOF == fscanf (fpDict, "%s\n", tableDict->fh[i].strFH)) + break; + } + tableDict->iFH = i; + + fclose (fpDict); + } + + tableDict->strNewPhraseCode = (char *) fcitx_malloc0 (sizeof (char) * (tableDict->iCodeLength + 1)); + tableDict->strNewPhraseCode[tableDict->iCodeLength] = '\0'; + + tableDict->iAutoPhrase = 0; + if (tableMetaData->bAutoPhrase) { + //为自动词组分配空间 + tableDict->autoPhrase = (AUTOPHRASE *) fcitx_malloc0 (sizeof (AUTOPHRASE) * AUTO_PHRASE_COUNT); + + //读取上次保存的自动词组信息 + FcitxLog(DEBUG, _("Loading Autophrase.")); + + strcpy (strPath, tableMetaData->strIconName); + strcat (strPath, "_LastAutoPhrase.tmp"); + fpDict = GetXDGFileWithPrefix("table", strPath, "rb", NULL); + i = 0; + if (fpDict) { + fread (&tableDict->iAutoPhrase, sizeof (unsigned int), 1, fpDict); + + for (; i < tableDict->iAutoPhrase; i++) { + tableDict->autoPhrase[i].strCode = (char *) fcitx_malloc0 (sizeof (char) * (tableDict->iCodeLength + 1)); + tableDict->autoPhrase[i].strHZ = (char *) fcitx_malloc0 (sizeof (char) * (PHRASE_MAX_LENGTH * UTF8_MAX_LENGTH + 1)); + fread (tableDict->autoPhrase[i].strCode, tableDict->iCodeLength + 1, 1, fpDict); + fread (tableDict->autoPhrase[i].strHZ, PHRASE_MAX_LENGTH * UTF8_MAX_LENGTH + 1, 1, fpDict); + fread (&iTempCount, sizeof (unsigned int), 1, fpDict); + tableDict->autoPhrase[i].iSelected = iTempCount; + if (i == AUTO_PHRASE_COUNT - 1) + tableDict->autoPhrase[i].next = &tableDict->autoPhrase[0]; + else + tableDict->autoPhrase[i].next = &tableDict->autoPhrase[i + 1]; + } + fclose (fpDict); + } + + for (; i < AUTO_PHRASE_COUNT; i++) { + tableDict->autoPhrase[i].strCode = (char *) fcitx_malloc0 (sizeof (char) * (tableDict->iCodeLength + 1)); + tableDict->autoPhrase[i].strHZ = (char *) fcitx_malloc0 (sizeof (char) * (PHRASE_MAX_LENGTH * UTF8_MAX_LENGTH + 1)); + tableDict->autoPhrase[i].iSelected = 0; + if (i == AUTO_PHRASE_COUNT - 1) + tableDict->autoPhrase[i].next = &tableDict->autoPhrase[0]; + else + tableDict->autoPhrase[i].next = &tableDict->autoPhrase[i + 1]; + } + + if (i == AUTO_PHRASE_COUNT) + tableDict->insertPoint = &tableDict->autoPhrase[0]; + else + tableDict->insertPoint = &tableDict->autoPhrase[i - 1]; + + FcitxLog(DEBUG, _("Load Autophrase OK")); + } + else + tableDict->autoPhrase = (AUTOPHRASE *) NULL; + + return true; +} + +void SaveTableDict (TableMetaData *tableMetaData) +{ + RECORD *recTemp; + char strPathTemp[PATH_MAX]; + char strPath[PATH_MAX]; + char *pstr; + FILE *fpDict; + unsigned int iTemp; + unsigned int i; + char cTemp; + TableDict *tableDict = tableMetaData->tableDict; + + if (!tableDict->iTableChanged) + return; + + fpDict = GetXDGFileUserWithPrefix("table", TEMP_FILE, "wb", &pstr); + strcpy(strPathTemp, pstr); + free(pstr); + + //写入版本号--如果第一个字为0,表示后面那个字节为版本号,为了与老版本兼容 + iTemp = 0; + fwrite (&iTemp, sizeof (unsigned int), 1, fpDict); + fwrite (&iInternalVersion, sizeof (char), 1, fpDict); + + iTemp = strlen (tableDict->strInputCode); + fwrite (&iTemp, sizeof (unsigned int), 1, fpDict); + fwrite (tableDict->strInputCode, sizeof (char), iTemp + 1, fpDict); + fwrite (&(tableDict->iCodeLength), sizeof (char), 1, fpDict); + fwrite (&(tableDict->iPYCodeLength), sizeof (char), 1, fpDict); + iTemp = strlen (tableDict->strIgnoreChars); + fwrite (&iTemp, sizeof (unsigned int), 1, fpDict); + fwrite (tableDict->strIgnoreChars, sizeof (char), iTemp + 1, fpDict); + + fwrite (&(tableDict->bRule), sizeof (unsigned char), 1, fpDict); + if (tableDict->bRule) { //表示有组词规则 + for (i = 0; i < tableDict->iCodeLength - 1; i++) { + fwrite (&(tableDict->rule[i].iFlag), sizeof (unsigned char), 1, fpDict); + fwrite (&(tableDict->rule[i].iWords), sizeof (unsigned char), 1, fpDict); + for (iTemp = 0; iTemp < tableDict->iCodeLength; iTemp++) { + fwrite (&(tableDict->rule[i].rule[iTemp].iFlag), sizeof (unsigned char), 1, fpDict); + fwrite (&(tableDict->rule[i].rule[iTemp].iWhich), sizeof (unsigned char), 1, fpDict); + fwrite (&(tableDict->rule[i].rule[iTemp].iIndex), sizeof (unsigned char), 1, fpDict); + } + } + } + + fwrite (&(tableDict->iRecordCount), sizeof (unsigned int), 1, fpDict); + recTemp = tableDict->recordHead->next; + while (recTemp != tableDict->recordHead) { + fwrite (recTemp->strCode, sizeof (char), tableDict->iPYCodeLength + 1, fpDict); + + iTemp = strlen (recTemp->strHZ) + 1; + fwrite (&iTemp, sizeof (unsigned int), 1, fpDict); + fwrite (recTemp->strHZ, sizeof (char), iTemp, fpDict); + + cTemp = recTemp->bPinyin; + fwrite (&cTemp, sizeof (char), 1, fpDict); + fwrite (&(recTemp->iHit), sizeof (unsigned int), 1, fpDict); + fwrite (&(recTemp->iIndex), sizeof (unsigned int), 1, fpDict); + recTemp = recTemp->next; + } + + fclose (fpDict); + fpDict = GetXDGFileUserWithPrefix("table", tableMetaData->strPath, NULL, &pstr); + if (access (pstr, 0)) + unlink (pstr); + rename (strPathTemp, pstr); + free(pstr); + + FcitxLog(DEBUG, _("Rename OK")); + + tableDict->iTableChanged = 0; + + if (tableDict->autoPhrase) { + //保存上次的自动词组信息 + fpDict = GetXDGFileUserWithPrefix("table", TEMP_FILE, "wb", &pstr); + strncpy (strPathTemp, pstr, PATH_MAX); + if (fpDict) { + fwrite (&tableDict->iAutoPhrase, sizeof (int), 1, fpDict); + for (i = 0; i < tableDict->iAutoPhrase; i++) { + fwrite (tableDict->autoPhrase[i].strCode, tableDict->iCodeLength + 1, 1, fpDict); + fwrite (tableDict->autoPhrase[i].strHZ, PHRASE_MAX_LENGTH * UTF8_MAX_LENGTH + 1, 1, fpDict); + iTemp = tableDict->autoPhrase[i].iSelected; + fwrite (&iTemp, sizeof (unsigned int), 1, fpDict); + } + fclose (fpDict); + } + free(pstr); + + strncpy (strPath, tableMetaData->strName, PATH_MAX); + strncat (strPath, "_LastAutoPhrase.tmp", PATH_MAX); + fpDict = GetXDGFileWithPrefix("table", strPath, NULL, &pstr); + if (access (pstr, F_OK)) + unlink (pstr); + rename (strPathTemp, pstr); + free(pstr); + } +} + +void FreeTableDict (TableMetaData* tableMetaData) +{ + RECORD *recTemp, *recNext; + short i; + TableDict *tableDict = tableMetaData->tableDict; + + if (!tableDict->recordHead) + return; + + if (tableDict->iTableChanged) + SaveTableDict (tableMetaData); + + //释放码表 + recTemp = tableDict->recordHead->next; + while (recTemp != tableDict->recordHead) { + recNext = recTemp->next; + + free (recTemp->strCode); + free (recTemp->strHZ); + free (recTemp); + + recTemp = recNext; + } + + free(tableDict->strIgnoreChars); + tableDict->strIgnoreChars = NULL; + + free(tableDict->strInputCode); + tableDict->strInputCode = NULL; + + free (tableDict->recordHead); + tableDict->recordHead = NULL; + + if (tableDict->fh) { + free (tableDict->fh); + tableDict->fh = NULL; + tableDict->iFH = 0; + } + + tableDict->iRecordCount = 0; + + free (tableDict->strNewPhraseCode); + + //释放组词规则的空间 + if (tableDict->rule) { + for (i = 0; i < tableDict->iCodeLength - 1; i++) + free (tableDict->rule[i].rule); + free (tableDict->rule); + + tableDict->rule = NULL; + } + + //释放索引的空间 + if (tableDict->recordIndex) { + free (tableDict->recordIndex); + tableDict->recordIndex = NULL; + } + + //释放自动词组的空间 + if (tableDict->autoPhrase) { + for (i = 0; i < AUTO_PHRASE_COUNT; i++) { + free (tableDict->autoPhrase[i].strCode); + free (tableDict->autoPhrase[i].strHZ); + } + free (tableDict->autoPhrase); + + tableDict->autoPhrase = (AUTOPHRASE *) NULL; + } + + free(tableDict); + tableMetaData->tableDict = NULL; +} + +/* + *根据字串判断词库中是否有某个字/词,注意该函数会忽略拼音词组 + */ +RECORD *TableFindPhrase (const TableDict* tableDict, const char *strHZ) +{ + RECORD *recTemp; + char strTemp[UTF8_MAX_LENGTH + 1]; + int i; + + //首先,先查找第一个汉字的编码 + strncpy(strTemp, strHZ, utf8_char_len(strHZ)); + strTemp[utf8_char_len(strHZ)] = '\0'; + + recTemp = tableDict->tableSingleHZ[CalHZIndex (strTemp)]; + if (!recTemp) + return (RECORD *) NULL; + + //然后根据该编码找到检索的起始点 + i = 0; + while (recTemp->strCode[0] != tableDict->recordIndex[i].cCode) + i++; + + recTemp = tableDict->recordIndex[i].record; + while (recTemp != tableDict->recordHead) { + if (recTemp->strCode[0] != tableDict->recordIndex[i].cCode) + break; + if (!strcmp (recTemp->strHZ, strHZ)) { + if (!recTemp->bPinyin) + return recTemp; + } + + recTemp = recTemp->next; + } + + return (RECORD *) NULL; +} + +void TableCreateAutoPhrase (TableMetaData* tableMetaData, char iCount) +{ + char *strHZ; + short i, j, k; + TableDict *tableDict = tableMetaData->tableDict; + + if (!tableDict->autoPhrase) + return; + + strHZ=(char *)fcitx_malloc0((tableMetaData->iAutoPhraseLength * UTF8_MAX_LENGTH + 1)*sizeof(char)); + /* + * 为了提高效率,此处只重新生成新录入字构成的词组 + */ + j = tableDict->iHZLastInputCount - tableMetaData->iAutoPhraseLength - iCount; + if (j < 0) + j = 0; + + for (; j < tableDict->iHZLastInputCount - 1; j++) { + for (i = tableMetaData->iAutoPhraseLength; i >= 2; i--) { + if ((j + i - 1) > tableDict->iHZLastInputCount) + continue; + + strcpy (strHZ, tableDict->hzLastInput[j].strHZ); + for (k = 1; k < i; k++) + strcat (strHZ, tableDict->hzLastInput[j + k].strHZ); + + //再去掉重复的词组 + for (k = 0; k < tableDict->iAutoPhrase; k++) { + if (!strcmp (tableDict->autoPhrase[k].strHZ, strHZ)) + goto _next; + } + //然后去掉系统中已经有的词组 + if (TableFindPhrase (tableDict, strHZ)) + goto _next; + + TableCreatePhraseCode (tableDict, strHZ); + if (tableDict->iAutoPhrase != AUTO_PHRASE_COUNT) { + strcpy (tableDict->autoPhrase[tableDict->iAutoPhrase].strCode, tableDict->strNewPhraseCode); + strcpy (tableDict->autoPhrase[tableDict->iAutoPhrase].strHZ, strHZ); + tableDict->autoPhrase[tableDict->iAutoPhrase].iSelected = 0; + tableDict->iAutoPhrase++; + } + else { + strcpy (tableDict->insertPoint->strCode, tableDict->strNewPhraseCode); + strcpy (tableDict->insertPoint->strHZ, strHZ); + tableDict->insertPoint->iSelected = 0; + tableDict->insertPoint = tableDict->insertPoint->next; + } + +_next: + continue; + } + + } + + free(strHZ); +} + +boolean TableCreatePhraseCode (TableDict* tableDict, char *strHZ) +{ + unsigned char i; + unsigned char i1, i2; + size_t iLen; + char strTemp[UTF8_MAX_LENGTH + 1] = {'\0', }; + RECORD *recTemp; + boolean bCanntFindCode = false; + + iLen = utf8_strlen (strHZ); + if (iLen >= tableDict->iCodeLength) { + i2 = tableDict->iCodeLength; + i1 = 1; + } + else { + i2 = iLen; + i1 = 0; + } + + for (i = 0; i < tableDict->iCodeLength - 1; i++) { + if (tableDict->rule[i].iWords == i2 && tableDict->rule[i].iFlag == i1) + break; + } + + for (i1 = 0; i1 < tableDict->iCodeLength; i1++) { + int clen; + char* ps; + if (tableDict->rule[i].rule[i1].iFlag) { + ps = utf8_get_nth_char(strHZ, tableDict->rule[i].rule[i1].iWhich - 1); + clen = utf8_char_len(ps); + strncpy(strTemp, ps, clen); + } + else { + ps = utf8_get_nth_char(strHZ, iLen - tableDict->rule[i].rule[i1].iWhich); + clen = utf8_char_len(ps); + strncpy(strTemp, ps, clen); + } + + recTemp = tableDict->tableSingleHZ[CalHZIndex (strTemp)]; + + if (!recTemp) { + bCanntFindCode = true; + break; + } + + tableDict->strNewPhraseCode[i1] = recTemp->strCode[tableDict->rule[i].rule[i1].iIndex - 1]; + } + + return bCanntFindCode; +} + +/* + *判断某个词组是不是已经在词库中,有返回NULL,无返回插入点 + */ +RECORD *TableHasPhrase (const TableDict* tableDict, const char *strCode, const char *strHZ) +{ + RECORD *recTemp; + int i; + + i = 0; + while (strCode[0] != tableDict->recordIndex[i].cCode) + i++; + + recTemp = tableDict->recordIndex[i].record; + while (recTemp != tableDict->recordHead) { + if (!recTemp->bPinyin) { + if (strcmp (recTemp->strCode, strCode) > 0) + break; + else if (!strcmp (recTemp->strCode, strCode)) { + if (!strcmp (recTemp->strHZ, strHZ)) //该词组已经在词库中 + return NULL; + } + } + recTemp = recTemp->next; + } + + return recTemp; +} + +void TableInsertPhrase (TableDict* tableDict, const char *strCode, const char *strHZ) +{ + RECORD *insertPoint, *dictNew; + + insertPoint = TableHasPhrase (tableDict, strCode, strHZ); + + if (!insertPoint) + return; + + dictNew = (RECORD *) fcitx_malloc0 (sizeof (RECORD)); + dictNew->strCode = (char *) fcitx_malloc0 (sizeof (char) * (tableDict->iCodeLength + 1)); + dictNew->bPinyin = 0; + strcpy (dictNew->strCode, strCode); + dictNew->strHZ = (char *) fcitx_malloc0 (sizeof (char) * (strlen (strHZ) + 1)); + strcpy (dictNew->strHZ, strHZ); + dictNew->iHit = 0; + dictNew->iIndex = tableDict->iTableIndex; + + dictNew->prev = insertPoint->prev; + insertPoint->prev->next = dictNew; + insertPoint->prev = dictNew; + dictNew->next = insertPoint; + + tableDict->iRecordCount++; +} + +/* + * 根据字串删除词组 + */ +void TableDelPhraseByHZ (TableDict* tableDict, const char *strHZ) +{ + RECORD *recTemp; + + recTemp = TableFindPhrase (tableDict, strHZ); + if (recTemp) + TableDelPhrase (tableDict, recTemp); +} + +void TableDelPhrase (TableDict* tableDict, RECORD * record) +{ + record->prev->next = record->next; + record->next->prev = record->prev; + + free (record->strCode); + free (record->strHZ); + free (record); + + tableDict->iRecordCount--; +} + +void TableUpdateHitFrequency (TableDict* tableDict, RECORD * record) +{ + record->iHit++; + record->iIndex = ++tableDict->iTableIndex; +} + +int TableCompareCode (const TableMetaData* tableMetaData, const char *strUser, const char *strDict) +{ + int i; + + for (i = 0; i < strlen (strUser); i++) { + if (!strDict[i]) + return strUser[i]; + if (strUser[i] != tableMetaData->cMatchingKey || !tableMetaData->bUseMatchingKey) { + if (strUser[i] != strDict[i]) + return (strUser[i] - strDict[i]); + } + } + if (tableMetaData->bTableExactMatch) { + if (strlen (strUser) != strlen (strDict)) + return -999; //随意的一个值 + } + + return 0; +} + +int TableFindFirstMatchCode (TableMetaData* tableMetaData, const char* strCodeInput) +{ + int i = 0; + TableDict *tableDict = tableMetaData->tableDict; + + if (!tableDict->recordHead) + return -1; + + if (tableMetaData->bUseMatchingKey && (strCodeInput[0] == tableMetaData->cMatchingKey)) + i = 0; + else { + while (strCodeInput[0] != tableDict->recordIndex[i].cCode) { + if (!tableDict->recordIndex[i].cCode) + break; + i++; + } + } + tableDict->currentRecord = tableDict->recordIndex[i].record; + if (!tableDict->currentRecord) + return -1; + + while (tableDict->currentRecord != tableDict->recordHead) { + if (!TableCompareCode (tableMetaData, strCodeInput, tableDict->currentRecord->strCode)) { + return i; + } + tableDict->currentRecord = tableDict->currentRecord->next; + i++; + } + + return -1; //Not found +} + +boolean IsInputKey (const TableDict* tableDict, int iKey) +{ + char *p; + + p = tableDict->strInputCode; + if (!p) + return false; + + while (*p) { + if (iKey == *p) + return true; + p++; + } + + if (tableDict->bHasPinyin) { + if (iKey >= 'a' && iKey <= 'z') + return true; + } + + return false; +} + +boolean IsEndKey (const TableMetaData* tableMetaData, char cChar) +{ + char *p; + + p = tableMetaData->strEndCode; + if (!p) + return false; + + while (*p) { + if (cChar == *p) + return true; + p++; + } + + return false; +} + +boolean IsIgnoreChar (const TableDict* tableDict, char cChar) +{ + char *p; + + p = tableDict->strIgnoreChars; + while (*p) { + if (cChar == *p) + return true; + p++; + } + + return false; +} + +#include "utf8_in_gb18030.h" + +static int cmpi(const void * a, const void *b) +{ + return (*((int*)a)) - (*((int*)b)); +} + +unsigned int CalHZIndex (char *strHZ) +{ + unsigned int iutf = 0; + int l = utf8_char_len(strHZ); + unsigned char* utf = (unsigned char*) strHZ; + unsigned int *res; + int idx; + + if (l == 2) + { + iutf = *utf++ << 8; + iutf |= *utf++; + } + else if (l == 3) + { + iutf = *utf++ << 16; + iutf |= *utf++ << 8; + iutf |= *utf++; + } + else if (l == 4) + { + iutf = *utf++ << 24; + + iutf |= *utf++ << 16; + iutf |= *utf++ << 8; + iutf |= *utf++; + } + + res = bsearch(&iutf, utf8_in_gb18030, 63360, sizeof(int), cmpi); + if (res) + idx = res - utf8_in_gb18030; + else + idx = 63361; + return idx; +} + +boolean HasMatchingKey (const TableMetaData* tableMetaData, const char* strCodeInput) +{ + const char *str; + + str = strCodeInput; + while (*str) { + if (*str++ == tableMetaData->cMatchingKey) + return true; + } + return false; +} +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/im/table/tabledict.h fcitx-4.1.1/src/im/table/tabledict.h --- fcitx-4.0.1/src/im/table/tabledict.h 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/im/table/tabledict.h 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,141 @@ +#ifndef TABLEDICT_H +#define TABLEDICT_H + +#include +#include + +#define MAX_CODE_LENGTH 30 +#define PHRASE_MAX_LENGTH 10 +#define FH_MAX_LENGTH 10 +#define TABLE_AUTO_SAVE_AFTER 1024 +#define AUTO_PHRASE_COUNT 10000 +#define SINGLE_HZ_COUNT 66000 + +typedef enum _ADJUSTORDER { + AD_NO = 0, + AD_FAST = 1, + AD_FREQ = 2 +} ADJUSTORDER; + +typedef struct _FH { + char strFH[FH_MAX_LENGTH * 2 + 1]; +} FH; + +typedef struct _RULE_RULE { + unsigned char iFlag; // 1 --> 正序 0 --> 逆序 + unsigned char iWhich; //第几个字 + unsigned char iIndex; //第几个编码 +} RULE_RULE; + +typedef struct _RULE { + unsigned char iWords; //多少个字 + unsigned char iFlag; //1 --> 大于等于iWords 0 --> 等于iWords + RULE_RULE *rule; +} RULE; + +typedef struct _RECORD { + char *strCode; + char *strHZ; + struct _RECORD *next; + struct _RECORD *prev; + unsigned int iHit; + unsigned int iIndex; + boolean bPinyin; +} RECORD; + +typedef struct _AUTOPHRASE { + char *strHZ; + char *strCode; + char iSelected; + struct _AUTOPHRASE *next; //构造一个队列 +} AUTOPHRASE; + +/* 根据键码生成一个简单的索引,指向该键码起始的第一个记录 */ +typedef struct _RECORD_INDEX { + RECORD *record; + char cCode; +} RECORD_INDEX; + +typedef struct _SINGLE_HZ { + char strHZ[UTF8_MAX_LENGTH + 1]; +} SINGLE_HZ; + +typedef struct _TableMetaData { + GenericConfig config; + char *strName; + char *strIconName; + char *strPath; + ADJUSTORDER tableOrder; + int iPriority; + boolean bUsePY; + char cPinyin; //输入该键后,表示进入临时拼音状态 + int iTableAutoSendToClient; //自动上屏 + int iTableAutoSendToClientWhenNone; //空码自动上屏 + char *strEndCode; //中止键,按下该键相当于输入该键后再按一个空格 + boolean bUseMatchingKey; //是否模糊匹配 + char cMatchingKey; + boolean bTableExactMatch; //是否只显示精确匹配的候选字/词 + boolean bAutoPhrase; //是否自动造词 + boolean bAutoPhrasePhrase; //词组是否参与造词 + int iAutoPhraseLength; //自动造词长度 + int iSaveAutoPhraseAfter; //选择N次后保存自动词组,0-不保存,1-立即保存 + boolean bPromptTableCode; //输入完毕后是否提示编码 + char *strSymbol; + char *strSymbolFile; + char *strChoose; //设置选择键 + boolean bEnabled; + + struct _TableDict* tableDict; +} TableMetaData; + +typedef struct _TableDict { + + char* strInputCode; + RECORD_INDEX* recordIndex; + unsigned char iCodeLength; + unsigned char iPYCodeLength; + char* strIgnoreChars; + unsigned char bRule; + RULE* rule; + unsigned int iRecordCount; + RECORD* tableSingleHZ[SINGLE_HZ_COUNT]; + unsigned int iTableIndex; + boolean bHasPinyin; + RECORD* currentRecord; + RECORD* recordHead; + int iFH; + FH* fh; + char* strNewPhraseCode; + AUTOPHRASE* autoPhrase; + AUTOPHRASE* insertPoint; + int iAutoPhrase; + int iTableChanged; + int iHZLastInputCount; + SINGLE_HZ hzLastInput[PHRASE_MAX_LENGTH]; //Records last HZ input +} TableDict; + +boolean LoadTableDict(TableMetaData* tableMetaData); +void SaveTableDict (TableMetaData* tableMetaData); +void FreeTableDict (TableMetaData* tableMetaData); + +void TableInsertPhrase (TableDict* tableDict, const char *strCode, const char *strHZ); +RECORD *TableFindPhrase (const TableDict* tableDict, const char *strHZ); +boolean TableCreatePhraseCode (TableDict* tableDict, char* strHZ); +void TableCreateAutoPhrase (TableMetaData* tableMetaData, char iCount); +RECORD *TableHasPhrase (const TableDict* tableDict, const char *strCode, const char *strHZ); +void TableDelPhraseByHZ (TableDict* tableDict, const char *strHZ); +void TableDelPhrase (TableDict* tableDict, RECORD * record); +void TableUpdateHitFrequency (TableDict* tableDict, RECORD * record); +int TableCompareCode (const TableMetaData* tableMetaData, const char *strUser, const char *strDict); +int TableFindFirstMatchCode (TableMetaData* tableMetaData, const char* strCodeInput); +void TableResetFlags (TableDict* tableDict); + +boolean IsInputKey (const TableDict* tableDict, int iKey); +boolean IsEndKey (const TableMetaData* tableMetaData, char cChar); +boolean IsIgnoreChar (const TableDict* tableDict, char cChar); +unsigned int CalHZIndex (char *strHZ); +boolean HasMatchingKey (const TableMetaData* tableMetaData, const char* strCodeInput); +CONFIG_BINDING_DECLARE(TableMetaData); + +#endif +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/im/table/table.h fcitx-4.1.1/src/im/table/table.h --- fcitx-4.0.1/src/im/table/table.h 2010-12-17 04:18:15.000000000 +0000 +++ fcitx-4.1.1/src/im/table/table.h 2011-09-08 16:00:05.000000000 +0000 @@ -20,213 +20,92 @@ #ifndef _TABLE_H #define _TABLE_H -#include +#include "fcitx/configfile.h" +#include "fcitx/ime.h" +#include "fcitx-utils/utarray.h" +#include "tabledict.h" +#include "fcitx/candidate.h" -#include "tools/configfile.h" -#include "core/ime.h" -#include "tools/utarray.h" - -#define MAX_CODE_LENGTH 30 -#define PHRASE_MAX_LENGTH 10 -#define FH_MAX_LENGTH 10 -#define TABLE_AUTO_SAVE_AFTER 1024 -#define AUTO_PHRASE_COUNT 10000 -#define SINGLE_HZ_COUNT 66000 - -typedef struct _RULE_RULE { - unsigned char iFlag; // 1 --> 正序 0 --> 逆序 - unsigned char iWhich; //第几个字 - unsigned char iIndex; //第几个编码 -} RULE_RULE; - -typedef struct _RULE { - unsigned char iWords; //多少个字 - unsigned char iFlag; //1 --> 大于等于iWords 0 --> 等于iWords - RULE_RULE *rule; -} RULE; - -typedef struct _TABLE { - GenericConfig config; - char *strPath; - char *strSymbolFile; - char *strName; - char *strIconName; - char *strInputCode; - unsigned char iCodeLength; - unsigned char iPYCodeLength; - char *strEndCode; //中止键,按下该键相当于输入该键后再按一个空格 - char *strIgnoreChars; - char cMatchingKey; - char *strSymbol; - char cPinyin; //输入该键后,表示进入临时拼音状态 - unsigned char bRule; - - RULE *rule; //组词规则 - int iIMIndex; //记录该码表对应于输入法的顺序 - unsigned int iRecordCount; - ADJUSTORDER tableOrder; - - int iPriority; - Bool bUsePY; //使用拼音 - int iTableAutoSendToClient; //自动上屏 - int iTableAutoSendToClientWhenNone; //空码自动上屏 - Bool bUseMatchingKey; //是否模糊匹配 - Bool bAutoPhrase; //是否自动造词 - int iSaveAutoPhraseAfter; //选择N次后保存自动词组,0-不保存,1-立即保存 - Bool bAutoPhrasePhrase; //词组是否参与造词 - int iAutoPhrase; //自动造词长度 - Bool bTableExactMatch; //是否只显示精确匹配的候选字/词 - Bool bPromptTableCode; //输入完毕后是否提示编码 - - Bool bHasPinyin; //标记该码表中是否有拼音 - char *strChoose; //设置选择键 - Bool bEnabled; -} TABLE; - -typedef struct _RECORD { - char *strCode; - char *strHZ; - struct _RECORD *next; - struct _RECORD *prev; - unsigned int iHit; - unsigned int iIndex; - unsigned int flag:1; - unsigned int bPinyin:1; -} RECORD; +struct _FcitxInstance; -/* 根据键码生成一个简单的索引,指向该键码起始的第一个记录 */ -typedef struct _RECORD_INDEX { - RECORD *record; - char cCode; -} RECORD_INDEX; - -typedef struct _FH { - char strFH[FH_MAX_LENGTH * 2 + 1]; -} FH; - -typedef struct _AUTOPHRASE { - char *strHZ; - char *strCode; - INT8 iSelected; - unsigned int flag:1; - struct _AUTOPHRASE *next; //构造一个队列 -} AUTOPHRASE; - -//用union就会出错,不知道是啥原因 -typedef struct { +typedef union _CANDWORD { AUTOPHRASE *autoPhrase; RECORD *record; - char strPYPhrase[PHRASE_MAX_LENGTH * 2 + 1]; + int iFHIndex; } CANDWORD; -typedef struct _TABLECANDWORD { - unsigned int flag:2; //指示该候选字/词是自动组的词还是正常的字/词 - CANDWORD candWord; -} TABLECANDWORD; - -typedef enum { +typedef enum _CANDTYPE { CT_NORMAL = 0, CT_AUTOPHRASE, - CT_PYPHRASE //临时拼音转换过来的候选字/词 + CT_REMIND, + CT_FH } CANDTYPE; -typedef struct TableState { +typedef struct _TABLECANDWORD { + CANDTYPE flag; //指示该候选字/词是自动组的词还是正常的字/词 + CANDWORD candWord; +} TABLECANDWORD; + +typedef struct _FcitxTableState { UT_array* table; /* 码表 */ - - INT8 iTableIMIndex; - INT8 iTableCount; - - INT8 iCurrentTableLoaded; - - RECORD *currentRecord; - RECORD *recordHead; - - RECORD *tableSingleHZ[SINGLE_HZ_COUNT]; //Records the single characters in table to speed auto phrase + + char iTableIMIndex; + char iTableCount; + + char iCurrentTableLoaded; RECORD *pCurCandRecord; //Records current cand word selected, to update the hit-frequency information - TABLECANDWORD tableCandWord[MAX_CAND_WORD*2]; - + RECORD_INDEX *recordIndex; - - AUTOPHRASE *autoPhrase; - AUTOPHRASE *insertPoint; - - uint iAutoPhrase; - uint iTableCandDisplayed; - uint iTableTotalCandCount; - char strTableLegendSource[PHRASE_MAX_LENGTH * UTF8_MAX_LENGTH + 1]; - - FH *fh; - int iFH ; - unsigned int iTableIndex; - - Bool bIsTableDelPhrase; + + char strTableRemindSource[PHRASE_MAX_LENGTH * UTF8_MAX_LENGTH + 1]; + + boolean bIsTableDelPhrase; HOTKEYS hkTableDelPhrase[HOT_KEY_COUNT]; - Bool bIsTableAdjustOrder; + boolean bIsTableAdjustOrder; HOTKEYS hkTableAdjustOrder[HOT_KEY_COUNT]; - Bool bIsTableAddPhrase; + boolean bIsTableAddPhrase; HOTKEYS hkTableAddPhrase[HOT_KEY_COUNT]; - - INT8 iTableChanged; - INT8 iTableNewPhraseHZCount; - Bool bCanntFindCode; //Records if new phrase has corresponding code - should be always false - char *strNewPhraseCode; - - SINGLE_HZ hzLastInput[PHRASE_MAX_LENGTH]; //Records last HZ input - INT16 iHZLastInputCount ; - Bool bTablePhraseTips; - - ADJUSTORDER PYBaseOrder; - Bool isSavingTableDic; -} TableState; -extern TableState tbl; + char iTableNewPhraseHZCount; -void LoadTableInfo (void); -Bool LoadTableDict (void); -void TableInit (void); -void FreeTableIM (INT8 index); -void SaveTableIM (void); -void SaveTableDict (void); -Bool IsInputKey (int iKey); -Bool IsIgnoreChar (char cChar); -Bool IsEndKey (char cChar); -INT8 IsChooseKey (int iKey); - -INPUT_RETURN_VALUE DoTableInput (unsigned int sym, unsigned int state, int keyCount); -INPUT_RETURN_VALUE TableGetCandWords (SEARCH_MODE mode); -void TableAddCandWord (RECORD * wbRecord, SEARCH_MODE mode); -void TableAddAutoCandWord (INT16 which, SEARCH_MODE mode); -INPUT_RETURN_VALUE TableGetLegendCandWords (SEARCH_MODE mode); -void TableAddLegendCandWord (RECORD * record, SEARCH_MODE mode); -INPUT_RETURN_VALUE TableGetFHCandWords (SEARCH_MODE mode); -INPUT_RETURN_VALUE TableGetPinyinCandWords (SEARCH_MODE mode); -void TableResetStatus (void); -char *TableGetLegendCandWord (int iIndex); -char *TableGetFHCandWord (int iIndex); -Bool HasMatchingKey (void); -int TableCompareCode (char *strUser, char *strDict); -int TableFindFirstMatchCode (void); -void TableAdjustOrderByIndex (int iIndex); -void TableDelPhraseByIndex (int iIndex); -void TableDelPhraseByHZ (char *strHZ); -void TableDelPhrase (RECORD * record); -RECORD *TableHasPhrase (char *strCode, char *strHZ); -RECORD *TableFindPhrase (char *strHZ); -void TableInsertPhrase (char *strCode, char *strHZ); -char *_TableGetCandWord (int iIndex, Bool _bLegend); //Internal -char *TableGetCandWord (int iIndex); -void TableUpdateHitFrequency (RECORD * record); -void TableCreateNewPhrase (void); -void TableCreatePhraseCode (char *strHZ); -Bool TablePhraseTips (void); -void TableSetCandWordsFlag (int iCount, Bool flag); -void TableResetFlags (void); + boolean bTablePhraseTips; -void TableCreateAutoPhrase (INT8 iCount); + ADJUSTORDER PYBaseOrder; + boolean isSavingTableDic; -void UpdateHZLastInput (char *); + struct _FcitxInstance* owner; + struct _FcitxAddon* pyaddon; + CandidateWordCommitCallback pygetcandword; +} FcitxTableState; + +void LoadTableInfo (FcitxTableState* tbl); +boolean TableInit (void* arg); +void FreeTableIM (FcitxTableState* tbl, char i); +void SaveTableIM (void* arg); + +INPUT_RETURN_VALUE DoTableInput (void* arg, FcitxKeySym sym, unsigned int state); +INPUT_RETURN_VALUE TableGetCandWords (); +void TableAddCandWord (RECORD * record, TABLECANDWORD* tableCandWord); +void TableAddAutoCandWord (FcitxTableState* tbl, short int which, TABLECANDWORD* tableCandWord); +INPUT_RETURN_VALUE TableGetRemindCandWords (FcitxTableState* tbl); +void TableAddRemindCandWord (RECORD * record, TABLECANDWORD* tableCandWord); +INPUT_RETURN_VALUE TableGetFHCandWords (FcitxTableState* tbl); +INPUT_RETURN_VALUE TableGetPinyinCandWords (FcitxTableState* tbl); +void TableResetStatus (void* arg); +INPUT_RETURN_VALUE TableGetRemindCandWord (void* arg, TABLECANDWORD* tableCandWord); +INPUT_RETURN_VALUE TableGetFHCandWord (FcitxTableState* tbl, TABLECANDWORD* tableCandWord); +void TableAdjustOrderByIndex (FcitxTableState* tbl, TABLECANDWORD* tableCandWord); +void TableDelPhraseByIndex (FcitxTableState* tbl, TABLECANDWORD* tableCandWord); +void TableCreateNewPhrase (FcitxTableState* tbl); +INPUT_RETURN_VALUE _TableGetCandWord (FcitxTableState* tbl, TABLECANDWORD* tableCandWord, boolean _bRemind); +INPUT_RETURN_VALUE TableGetCandWord (void* arg, CandidateWord* candWord); +boolean TablePhraseTips (void* arg); +void TableSetCandWordsFlag (FcitxTableState* tbl, int iCount, boolean flag); + +void UpdateHZLastInput (FcitxTableState* tbl, char* str); ConfigFileDesc *GetTableConfigDesc(); -CONFIG_BINDING_DECLARE(TABLE); #endif + +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/im/table/tablepinyinwrapper.c fcitx-4.1.1/src/im/table/tablepinyinwrapper.c --- fcitx-4.0.1/src/im/table/tablepinyinwrapper.c 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/im/table/tablepinyinwrapper.c 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,62 @@ + +#include "fcitx/module.h" +#include "fcitx/addon.h" +#include "im/pinyin/pydef.h" +#include "tablepinyinwrapper.h" +#include "table.h" +#include "fcitx/instance.h" + +void Table_LoadPYBaseDict(FcitxAddon* pyaddon) +{ + FcitxModuleFunctionArg args; + InvokeModuleFunction(pyaddon, FCITX_PINYIN_LOADBASEDICT, args); +} + +void Table_PYGetPYByHZ(FcitxAddon* pyaddon, char *a, char* b) +{ + FcitxModuleFunctionArg args; + args.args[0] = a; + args.args[1] = b; + InvokeModuleFunction(pyaddon, FCITX_PINYIN_PYGETPYBYHZ, args); +} + +void Table_DoPYInput(FcitxAddon* pyaddon, FcitxKeySym sym, unsigned int state) +{ + FcitxModuleFunctionArg args; + args.args[0] = &sym; + args.args[1] = &state; + InvokeModuleFunction(pyaddon, FCITX_PINYIN_DOPYINPUT, args); +} + +void Table_PYGetCandWords(FcitxAddon* pyaddon) +{ + FcitxModuleFunctionArg args; + InvokeModuleFunction(pyaddon, FCITX_PINYIN_PYGETCANDWORDS, args); +} + +void Table_ResetPY(FcitxAddon* pyaddon) +{ + FcitxModuleFunctionArg args; + InvokeModuleFunction(pyaddon, FCITX_PINYIN_PYRESET, args); +} + +char* Table_PYGetFindString(FcitxAddon* pyaddon) +{ + FcitxModuleFunctionArg args; + char * str = InvokeModuleFunction(pyaddon, FCITX_PINYIN_PYGETFINDSTRING, args); + return str; +} + +INPUT_RETURN_VALUE Table_PYGetCandWord(void* arg, CandidateWord* candidateWord) +{ + FcitxTableState* tbl = arg; + INPUT_RETURN_VALUE retVal = tbl->pygetcandword(tbl->pyaddon->addonInstance, candidateWord); + Table_ResetPY(tbl->pyaddon); + if (!(retVal & IRV_FLAG_PENDING_COMMIT_STRING)) + { + strcpy(GetOutputString(&tbl->owner->input), candidateWord->strWord); + } + + return IRV_COMMIT_STRING | IRV_FLAG_RESET_INPUT; +} +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/im/table/tablepinyinwrapper.h fcitx-4.1.1/src/im/table/tablepinyinwrapper.h --- fcitx-4.0.1/src/im/table/tablepinyinwrapper.h 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/im/table/tablepinyinwrapper.h 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,19 @@ + +#ifndef TABLEPINYINWRAPPER_H +#define TABLEPINYINWRAPPER_H + +#include "fcitx/addon.h" +#include "fcitx-config/hotkey.h" +#include "fcitx/ime.h" + +struct _CandidateWord; +void Table_LoadPYBaseDict(FcitxAddon* pyaddon); +void Table_PYGetPYByHZ(FcitxAddon* pyaddon, char *a, char* b); +INPUT_RETURN_VALUE Table_PYGetCandWord(void* arg, struct _CandidateWord* candidateWord); +void Table_DoPYInput(FcitxAddon* pyaddon, FcitxKeySym sym, unsigned int state); +void Table_PYGetCandWords(FcitxAddon* pyaddon); +void Table_ResetPY(FcitxAddon* pyaddon); +char* Table_PYGetFindString(FcitxAddon* pyaddon); + +#endif +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/im/table/utf8_in_gb18030.h fcitx-4.1.1/src/im/table/utf8_in_gb18030.h --- fcitx-4.0.1/src/im/table/utf8_in_gb18030.h 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/im/table/utf8_in_gb18030.h 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,63384 @@ +/*************************************************************************** + * Copyright (C) 2010~2010 by CSSlayer * + * wengxt@gmail.com * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +unsigned int utf8_in_gb18030[ 63360 ] = { + 0xc280, + 0xc281, + 0xc282, + 0xc283, + 0xc284, + 0xc285, + 0xc286, + 0xc287, + 0xc288, + 0xc289, + 0xc28a, + 0xc28b, + 0xc28c, + 0xc28d, + 0xc28e, + 0xc28f, + 0xc290, + 0xc291, + 0xc292, + 0xc293, + 0xc294, + 0xc295, + 0xc296, + 0xc297, + 0xc298, + 0xc299, + 0xc29a, + 0xc29b, + 0xc29c, + 0xc29d, + 0xc29e, + 0xc29f, + 0xc2a0, + 0xc2a1, + 0xc2a2, + 0xc2a3, + 0xc2a4, + 0xc2a5, + 0xc2a6, + 0xc2a7, + 0xc2a8, + 0xc2a9, + 0xc2aa, + 0xc2ab, + 0xc2ac, + 0xc2ad, + 0xc2ae, + 0xc2af, + 0xc2b0, + 0xc2b1, + 0xc2b2, + 0xc2b3, + 0xc2b4, + 0xc2b5, + 0xc2b6, + 0xc2b7, + 0xc2b8, + 0xc2b9, + 0xc2ba, + 0xc2bb, + 0xc2bc, + 0xc2bd, + 0xc2be, + 0xc2bf, + 0xc380, + 0xc381, + 0xc382, + 0xc383, + 0xc384, + 0xc385, + 0xc386, + 0xc387, + 0xc388, + 0xc389, + 0xc38a, + 0xc38b, + 0xc38c, + 0xc38d, + 0xc38e, + 0xc38f, + 0xc390, + 0xc391, + 0xc392, + 0xc393, + 0xc394, + 0xc395, + 0xc396, + 0xc397, + 0xc398, + 0xc399, + 0xc39a, + 0xc39b, + 0xc39c, + 0xc39d, + 0xc39e, + 0xc39f, + 0xc3a0, + 0xc3a1, + 0xc3a2, + 0xc3a3, + 0xc3a4, + 0xc3a5, + 0xc3a6, + 0xc3a7, + 0xc3a8, + 0xc3a9, + 0xc3aa, + 0xc3ab, + 0xc3ac, + 0xc3ad, + 0xc3ae, + 0xc3af, + 0xc3b0, + 0xc3b1, + 0xc3b2, + 0xc3b3, + 0xc3b4, + 0xc3b5, + 0xc3b6, + 0xc3b7, + 0xc3b8, + 0xc3b9, + 0xc3ba, + 0xc3bb, + 0xc3bc, + 0xc3bd, + 0xc3be, + 0xc3bf, + 0xc480, + 0xc481, + 0xc482, + 0xc483, + 0xc484, + 0xc485, + 0xc486, + 0xc487, + 0xc488, + 0xc489, + 0xc48a, + 0xc48b, + 0xc48c, + 0xc48d, + 0xc48e, + 0xc48f, + 0xc490, + 0xc491, + 0xc492, + 0xc493, + 0xc494, + 0xc495, + 0xc496, + 0xc497, + 0xc498, + 0xc499, + 0xc49a, + 0xc49b, + 0xc49c, + 0xc49d, + 0xc49e, + 0xc49f, + 0xc4a0, + 0xc4a1, + 0xc4a2, + 0xc4a3, + 0xc4a4, + 0xc4a5, + 0xc4a6, + 0xc4a7, + 0xc4a8, + 0xc4a9, + 0xc4aa, + 0xc4ab, + 0xc4ac, + 0xc4ad, + 0xc4ae, + 0xc4af, + 0xc4b0, + 0xc4b1, + 0xc4b2, + 0xc4b3, + 0xc4b4, + 0xc4b5, + 0xc4b6, + 0xc4b7, + 0xc4b8, + 0xc4b9, + 0xc4ba, + 0xc4bb, + 0xc4bc, + 0xc4bd, + 0xc4be, + 0xc4bf, + 0xc580, + 0xc581, + 0xc582, + 0xc583, + 0xc584, + 0xc585, + 0xc586, + 0xc587, + 0xc588, + 0xc589, + 0xc58a, + 0xc58b, + 0xc58c, + 0xc58d, + 0xc58e, + 0xc58f, + 0xc590, + 0xc591, + 0xc592, + 0xc593, + 0xc594, + 0xc595, + 0xc596, + 0xc597, + 0xc598, + 0xc599, + 0xc59a, + 0xc59b, + 0xc59c, + 0xc59d, + 0xc59e, + 0xc59f, + 0xc5a0, + 0xc5a1, + 0xc5a2, + 0xc5a3, + 0xc5a4, + 0xc5a5, + 0xc5a6, + 0xc5a7, + 0xc5a8, + 0xc5a9, + 0xc5aa, + 0xc5ab, + 0xc5ac, + 0xc5ad, + 0xc5ae, + 0xc5af, + 0xc5b0, + 0xc5b1, + 0xc5b2, + 0xc5b3, + 0xc5b4, + 0xc5b5, + 0xc5b6, + 0xc5b7, + 0xc5b8, + 0xc5b9, + 0xc5ba, + 0xc5bb, + 0xc5bc, + 0xc5bd, + 0xc5be, + 0xc5bf, + 0xc680, + 0xc681, + 0xc682, + 0xc683, + 0xc684, + 0xc685, + 0xc686, + 0xc687, + 0xc688, + 0xc689, + 0xc68a, + 0xc68b, + 0xc68c, + 0xc68d, + 0xc68e, + 0xc68f, + 0xc690, + 0xc691, + 0xc692, + 0xc693, + 0xc694, + 0xc695, + 0xc696, + 0xc697, + 0xc698, + 0xc699, + 0xc69a, + 0xc69b, + 0xc69c, + 0xc69d, + 0xc69e, + 0xc69f, + 0xc6a0, + 0xc6a1, + 0xc6a2, + 0xc6a3, + 0xc6a4, + 0xc6a5, + 0xc6a6, + 0xc6a7, + 0xc6a8, + 0xc6a9, + 0xc6aa, + 0xc6ab, + 0xc6ac, + 0xc6ad, + 0xc6ae, + 0xc6af, + 0xc6b0, + 0xc6b1, + 0xc6b2, + 0xc6b3, + 0xc6b4, + 0xc6b5, + 0xc6b6, + 0xc6b7, + 0xc6b8, + 0xc6b9, + 0xc6ba, + 0xc6bb, + 0xc6bc, + 0xc6bd, + 0xc6be, + 0xc6bf, + 0xc780, + 0xc781, + 0xc782, + 0xc783, + 0xc784, + 0xc785, + 0xc786, + 0xc787, + 0xc788, + 0xc789, + 0xc78a, + 0xc78b, + 0xc78c, + 0xc78d, + 0xc78e, + 0xc78f, + 0xc790, + 0xc791, + 0xc792, + 0xc793, + 0xc794, + 0xc795, + 0xc796, + 0xc797, + 0xc798, + 0xc799, + 0xc79a, + 0xc79b, + 0xc79c, + 0xc79d, + 0xc79e, + 0xc79f, + 0xc7a0, + 0xc7a1, + 0xc7a2, + 0xc7a3, + 0xc7a4, + 0xc7a5, + 0xc7a6, + 0xc7a7, + 0xc7a8, + 0xc7a9, + 0xc7aa, + 0xc7ab, + 0xc7ac, + 0xc7ad, + 0xc7ae, + 0xc7af, + 0xc7b0, + 0xc7b1, + 0xc7b2, + 0xc7b3, + 0xc7b4, + 0xc7b5, + 0xc7b6, + 0xc7b7, + 0xc7b8, + 0xc7b9, + 0xc7ba, + 0xc7bb, + 0xc7bc, + 0xc7bd, + 0xc7be, + 0xc7bf, + 0xc880, + 0xc881, + 0xc882, + 0xc883, + 0xc884, + 0xc885, + 0xc886, + 0xc887, + 0xc888, + 0xc889, + 0xc88a, + 0xc88b, + 0xc88c, + 0xc88d, + 0xc88e, + 0xc88f, + 0xc890, + 0xc891, + 0xc892, + 0xc893, + 0xc894, + 0xc895, + 0xc896, + 0xc897, + 0xc898, + 0xc899, + 0xc89a, + 0xc89b, + 0xc89c, + 0xc89d, + 0xc89e, + 0xc89f, + 0xc8a0, + 0xc8a1, + 0xc8a2, + 0xc8a3, + 0xc8a4, + 0xc8a5, + 0xc8a6, + 0xc8a7, + 0xc8a8, + 0xc8a9, + 0xc8aa, + 0xc8ab, + 0xc8ac, + 0xc8ad, + 0xc8ae, + 0xc8af, + 0xc8b0, + 0xc8b1, + 0xc8b2, + 0xc8b3, + 0xc8b4, + 0xc8b5, + 0xc8b6, + 0xc8b7, + 0xc8b8, + 0xc8b9, + 0xc8ba, + 0xc8bb, + 0xc8bc, + 0xc8bd, + 0xc8be, + 0xc8bf, + 0xc980, + 0xc981, + 0xc982, + 0xc983, + 0xc984, + 0xc985, + 0xc986, + 0xc987, + 0xc988, + 0xc989, + 0xc98a, + 0xc98b, + 0xc98c, + 0xc98d, + 0xc98e, + 0xc98f, + 0xc990, + 0xc991, + 0xc992, + 0xc993, + 0xc994, + 0xc995, + 0xc996, + 0xc997, + 0xc998, + 0xc999, + 0xc99a, + 0xc99b, + 0xc99c, + 0xc99d, + 0xc99e, + 0xc99f, + 0xc9a0, + 0xc9a1, + 0xc9a2, + 0xc9a3, + 0xc9a4, + 0xc9a5, + 0xc9a6, + 0xc9a7, + 0xc9a8, + 0xc9a9, + 0xc9aa, + 0xc9ab, + 0xc9ac, + 0xc9ad, + 0xc9ae, + 0xc9af, + 0xc9b0, + 0xc9b1, + 0xc9b2, + 0xc9b3, + 0xc9b4, + 0xc9b5, + 0xc9b6, + 0xc9b7, + 0xc9b8, + 0xc9b9, + 0xc9ba, + 0xc9bb, + 0xc9bc, + 0xc9bd, + 0xc9be, + 0xc9bf, + 0xca80, + 0xca81, + 0xca82, + 0xca83, + 0xca84, + 0xca85, + 0xca86, + 0xca87, + 0xca88, + 0xca89, + 0xca8a, + 0xca8b, + 0xca8c, + 0xca8d, + 0xca8e, + 0xca8f, + 0xca90, + 0xca91, + 0xca92, + 0xca93, + 0xca94, + 0xca95, + 0xca96, + 0xca97, + 0xca98, + 0xca99, + 0xca9a, + 0xca9b, + 0xca9c, + 0xca9d, + 0xca9e, + 0xca9f, + 0xcaa0, + 0xcaa1, + 0xcaa2, + 0xcaa3, + 0xcaa4, + 0xcaa5, + 0xcaa6, + 0xcaa7, + 0xcaa8, + 0xcaa9, + 0xcaaa, + 0xcaab, + 0xcaac, + 0xcaad, + 0xcaae, + 0xcaaf, + 0xcab0, + 0xcab1, + 0xcab2, + 0xcab3, + 0xcab4, + 0xcab5, + 0xcab6, + 0xcab7, + 0xcab8, + 0xcab9, + 0xcaba, + 0xcabb, + 0xcabc, + 0xcabd, + 0xcabe, + 0xcabf, + 0xcb80, + 0xcb81, + 0xcb82, + 0xcb83, + 0xcb84, + 0xcb85, + 0xcb86, + 0xcb87, + 0xcb88, + 0xcb89, + 0xcb8a, + 0xcb8b, + 0xcb8c, + 0xcb8d, + 0xcb8e, + 0xcb8f, + 0xcb90, + 0xcb91, + 0xcb92, + 0xcb93, + 0xcb94, + 0xcb95, + 0xcb96, + 0xcb97, + 0xcb98, + 0xcb99, + 0xcb9a, + 0xcb9b, + 0xcb9c, + 0xcb9d, + 0xcb9e, + 0xcb9f, + 0xcba0, + 0xcba1, + 0xcba2, + 0xcba3, + 0xcba4, + 0xcba5, + 0xcba6, + 0xcba7, + 0xcba8, + 0xcba9, + 0xcbaa, + 0xcbab, + 0xcbac, + 0xcbad, + 0xcbae, + 0xcbaf, + 0xcbb0, + 0xcbb1, + 0xcbb2, + 0xcbb3, + 0xcbb4, + 0xcbb5, + 0xcbb6, + 0xcbb7, + 0xcbb8, + 0xcbb9, + 0xcbba, + 0xcbbb, + 0xcbbc, + 0xcbbd, + 0xcbbe, + 0xcbbf, + 0xcc80, + 0xcc81, + 0xcc82, + 0xcc83, + 0xcc84, + 0xcc85, + 0xcc86, + 0xcc87, + 0xcc88, + 0xcc89, + 0xcc8a, + 0xcc8b, + 0xcc8c, + 0xcc8d, + 0xcc8e, + 0xcc8f, + 0xcc90, + 0xcc91, + 0xcc92, + 0xcc93, + 0xcc94, + 0xcc95, + 0xcc96, + 0xcc97, + 0xcc98, + 0xcc99, + 0xcc9a, + 0xcc9b, + 0xcc9c, + 0xcc9d, + 0xcc9e, + 0xcc9f, + 0xcca0, + 0xcca1, + 0xcca2, + 0xcca3, + 0xcca4, + 0xcca5, + 0xcca6, + 0xcca7, + 0xcca8, + 0xcca9, + 0xccaa, + 0xccab, + 0xccac, + 0xccad, + 0xccae, + 0xccaf, + 0xccb0, + 0xccb1, + 0xccb2, + 0xccb3, + 0xccb4, + 0xccb5, + 0xccb6, + 0xccb7, + 0xccb8, + 0xccb9, + 0xccba, + 0xccbb, + 0xccbc, + 0xccbd, + 0xccbe, + 0xccbf, + 0xcd80, + 0xcd81, + 0xcd82, + 0xcd83, + 0xcd84, + 0xcd85, + 0xcd86, + 0xcd87, + 0xcd88, + 0xcd89, + 0xcd8a, + 0xcd8b, + 0xcd8c, + 0xcd8d, + 0xcd8e, + 0xcd8f, + 0xcd90, + 0xcd91, + 0xcd92, + 0xcd93, + 0xcd94, + 0xcd95, + 0xcd96, + 0xcd97, + 0xcd98, + 0xcd99, + 0xcd9a, + 0xcd9b, + 0xcd9c, + 0xcd9d, + 0xcd9e, + 0xcd9f, + 0xcda0, + 0xcda1, + 0xcda2, + 0xcda3, + 0xcda4, + 0xcda5, + 0xcda6, + 0xcda7, + 0xcda8, + 0xcda9, + 0xcdaa, + 0xcdab, + 0xcdac, + 0xcdad, + 0xcdae, + 0xcdaf, + 0xcdb0, + 0xcdb1, + 0xcdb2, + 0xcdb3, + 0xcdb4, + 0xcdb5, + 0xcdb6, + 0xcdb7, + 0xcdb8, + 0xcdb9, + 0xcdba, + 0xcdbb, + 0xcdbc, + 0xcdbd, + 0xcdbe, + 0xcdbf, + 0xce80, + 0xce81, + 0xce82, + 0xce83, + 0xce84, + 0xce85, + 0xce86, + 0xce87, + 0xce88, + 0xce89, + 0xce8a, + 0xce8b, + 0xce8c, + 0xce8d, + 0xce8e, + 0xce8f, + 0xce90, + 0xce91, + 0xce92, + 0xce93, + 0xce94, + 0xce95, + 0xce96, + 0xce97, + 0xce98, + 0xce99, + 0xce9a, + 0xce9b, + 0xce9c, + 0xce9d, + 0xce9e, + 0xce9f, + 0xcea0, + 0xcea1, + 0xcea2, + 0xcea3, + 0xcea4, + 0xcea5, + 0xcea6, + 0xcea7, + 0xcea8, + 0xcea9, + 0xceaa, + 0xceab, + 0xceac, + 0xcead, + 0xceae, + 0xceaf, + 0xceb0, + 0xceb1, + 0xceb2, + 0xceb3, + 0xceb4, + 0xceb5, + 0xceb6, + 0xceb7, + 0xceb8, + 0xceb9, + 0xceba, + 0xcebb, + 0xcebc, + 0xcebd, + 0xcebe, + 0xcebf, + 0xcf80, + 0xcf81, + 0xcf82, + 0xcf83, + 0xcf84, + 0xcf85, + 0xcf86, + 0xcf87, + 0xcf88, + 0xcf89, + 0xcf8a, + 0xcf8b, + 0xcf8c, + 0xcf8d, + 0xcf8e, + 0xcf8f, + 0xcf90, + 0xcf91, + 0xcf92, + 0xcf93, + 0xcf94, + 0xcf95, + 0xcf96, + 0xcf97, + 0xcf98, + 0xcf99, + 0xcf9a, + 0xcf9b, + 0xcf9c, + 0xcf9d, + 0xcf9e, + 0xcf9f, + 0xcfa0, + 0xcfa1, + 0xcfa2, + 0xcfa3, + 0xcfa4, + 0xcfa5, + 0xcfa6, + 0xcfa7, + 0xcfa8, + 0xcfa9, + 0xcfaa, + 0xcfab, + 0xcfac, + 0xcfad, + 0xcfae, + 0xcfaf, + 0xcfb0, + 0xcfb1, + 0xcfb2, + 0xcfb3, + 0xcfb4, + 0xcfb5, + 0xcfb6, + 0xcfb7, + 0xcfb8, + 0xcfb9, + 0xcfba, + 0xcfbb, + 0xcfbc, + 0xcfbd, + 0xcfbe, + 0xcfbf, + 0xd080, + 0xd081, + 0xd082, + 0xd083, + 0xd084, + 0xd085, + 0xd086, + 0xd087, + 0xd088, + 0xd089, + 0xd08a, + 0xd08b, + 0xd08c, + 0xd08d, + 0xd08e, + 0xd08f, + 0xd090, + 0xd091, + 0xd092, + 0xd093, + 0xd094, + 0xd095, + 0xd096, + 0xd097, + 0xd098, + 0xd099, + 0xd09a, + 0xd09b, + 0xd09c, + 0xd09d, + 0xd09e, + 0xd09f, + 0xd0a0, + 0xd0a1, + 0xd0a2, + 0xd0a3, + 0xd0a4, + 0xd0a5, + 0xd0a6, + 0xd0a7, + 0xd0a8, + 0xd0a9, + 0xd0aa, + 0xd0ab, + 0xd0ac, + 0xd0ad, + 0xd0ae, + 0xd0af, + 0xd0b0, + 0xd0b1, + 0xd0b2, + 0xd0b3, + 0xd0b4, + 0xd0b5, + 0xd0b6, + 0xd0b7, + 0xd0b8, + 0xd0b9, + 0xd0ba, + 0xd0bb, + 0xd0bc, + 0xd0bd, + 0xd0be, + 0xd0bf, + 0xd180, + 0xd181, + 0xd182, + 0xd183, + 0xd184, + 0xd185, + 0xd186, + 0xd187, + 0xd188, + 0xd189, + 0xd18a, + 0xd18b, + 0xd18c, + 0xd18d, + 0xd18e, + 0xd18f, + 0xd190, + 0xd191, + 0xd192, + 0xd193, + 0xd194, + 0xd195, + 0xd196, + 0xd197, + 0xd198, + 0xd199, + 0xd19a, + 0xd19b, + 0xd19c, + 0xd19d, + 0xd19e, + 0xd19f, + 0xd1a0, + 0xd1a1, + 0xd1a2, + 0xd1a3, + 0xd1a4, + 0xd1a5, + 0xd1a6, + 0xd1a7, + 0xd1a8, + 0xd1a9, + 0xd1aa, + 0xd1ab, + 0xd1ac, + 0xd1ad, + 0xd1ae, + 0xd1af, + 0xd1b0, + 0xd1b1, + 0xd1b2, + 0xd1b3, + 0xd1b4, + 0xd1b5, + 0xd1b6, + 0xd1b7, + 0xd1b8, + 0xd1b9, + 0xd1ba, + 0xd1bb, + 0xd1bc, + 0xd1bd, + 0xd1be, + 0xd1bf, + 0xd280, + 0xd281, + 0xd282, + 0xd283, + 0xd284, + 0xd285, + 0xd286, + 0xd287, + 0xd288, + 0xd289, + 0xd28a, + 0xd28b, + 0xd28c, + 0xd28d, + 0xd28e, + 0xd28f, + 0xd290, + 0xd291, + 0xd292, + 0xd293, + 0xd294, + 0xd295, + 0xd296, + 0xd297, + 0xd298, + 0xd299, + 0xd29a, + 0xd29b, + 0xd29c, + 0xd29d, + 0xd29e, + 0xd29f, + 0xd2a0, + 0xd2a1, + 0xd2a2, + 0xd2a3, + 0xd2a4, + 0xd2a5, + 0xd2a6, + 0xd2a7, + 0xd2a8, + 0xd2a9, + 0xd2aa, + 0xd2ab, + 0xd2ac, + 0xd2ad, + 0xd2ae, + 0xd2af, + 0xd2b0, + 0xd2b1, + 0xd2b2, + 0xd2b3, + 0xd2b4, + 0xd2b5, + 0xd2b6, + 0xd2b7, + 0xd2b8, + 0xd2b9, + 0xd2ba, + 0xd2bb, + 0xd2bc, + 0xd2bd, + 0xd2be, + 0xd2bf, + 0xd380, + 0xd381, + 0xd382, + 0xd383, + 0xd384, + 0xd385, + 0xd386, + 0xd387, + 0xd388, + 0xd389, + 0xd38a, + 0xd38b, + 0xd38c, + 0xd38d, + 0xd38e, + 0xd38f, + 0xd390, + 0xd391, + 0xd392, + 0xd393, + 0xd394, + 0xd395, + 0xd396, + 0xd397, + 0xd398, + 0xd399, + 0xd39a, + 0xd39b, + 0xd39c, + 0xd39d, + 0xd39e, + 0xd39f, + 0xd3a0, + 0xd3a1, + 0xd3a2, + 0xd3a3, + 0xd3a4, + 0xd3a5, + 0xd3a6, + 0xd3a7, + 0xd3a8, + 0xd3a9, + 0xd3aa, + 0xd3ab, + 0xd3ac, + 0xd3ad, + 0xd3ae, + 0xd3af, + 0xd3b0, + 0xd3b1, + 0xd3b2, + 0xd3b3, + 0xd3b4, + 0xd3b5, + 0xd3b6, + 0xd3b7, + 0xd3b8, + 0xd3b9, + 0xd3ba, + 0xd3bb, + 0xd3bc, + 0xd3bd, + 0xd3be, + 0xd3bf, + 0xd480, + 0xd481, + 0xd482, + 0xd483, + 0xd484, + 0xd485, + 0xd486, + 0xd487, + 0xd488, + 0xd489, + 0xd48a, + 0xd48b, + 0xd48c, + 0xd48d, + 0xd48e, + 0xd48f, + 0xd490, + 0xd491, + 0xd492, + 0xd493, + 0xd494, + 0xd495, + 0xd496, + 0xd497, + 0xd498, + 0xd499, + 0xd49a, + 0xd49b, + 0xd49c, + 0xd49d, + 0xd49e, + 0xd49f, + 0xd4a0, + 0xd4a1, + 0xd4a2, + 0xd4a3, + 0xd4a4, + 0xd4a5, + 0xd4a6, + 0xd4a7, + 0xd4a8, + 0xd4a9, + 0xd4aa, + 0xd4ab, + 0xd4ac, + 0xd4ad, + 0xd4ae, + 0xd4af, + 0xd4b0, + 0xd4b1, + 0xd4b2, + 0xd4b3, + 0xd4b4, + 0xd4b5, + 0xd4b6, + 0xd4b7, + 0xd4b8, + 0xd4b9, + 0xd4ba, + 0xd4bb, + 0xd4bc, + 0xd4bd, + 0xd4be, + 0xd4bf, + 0xd580, + 0xd581, + 0xd582, + 0xd583, + 0xd584, + 0xd585, + 0xd586, + 0xd587, + 0xd588, + 0xd589, + 0xd58a, + 0xd58b, + 0xd58c, + 0xd58d, + 0xd58e, + 0xd58f, + 0xd590, + 0xd591, + 0xd592, + 0xd593, + 0xd594, + 0xd595, + 0xd596, + 0xd597, + 0xd598, + 0xd599, + 0xd59a, + 0xd59b, + 0xd59c, + 0xd59d, + 0xd59e, + 0xd59f, + 0xd5a0, + 0xd5a1, + 0xd5a2, + 0xd5a3, + 0xd5a4, + 0xd5a5, + 0xd5a6, + 0xd5a7, + 0xd5a8, + 0xd5a9, + 0xd5aa, + 0xd5ab, + 0xd5ac, + 0xd5ad, + 0xd5ae, + 0xd5af, + 0xd5b0, + 0xd5b1, + 0xd5b2, + 0xd5b3, + 0xd5b4, + 0xd5b5, + 0xd5b6, + 0xd5b7, + 0xd5b8, + 0xd5b9, + 0xd5ba, + 0xd5bb, + 0xd5bc, + 0xd5bd, + 0xd5be, + 0xd5bf, + 0xd680, + 0xd681, + 0xd682, + 0xd683, + 0xd684, + 0xd685, + 0xd686, + 0xd687, + 0xd688, + 0xd689, + 0xd68a, + 0xd68b, + 0xd68c, + 0xd68d, + 0xd68e, + 0xd68f, + 0xd690, + 0xd691, + 0xd692, + 0xd693, + 0xd694, + 0xd695, + 0xd696, + 0xd697, + 0xd698, + 0xd699, + 0xd69a, + 0xd69b, + 0xd69c, + 0xd69d, + 0xd69e, + 0xd69f, + 0xd6a0, + 0xd6a1, + 0xd6a2, + 0xd6a3, + 0xd6a4, + 0xd6a5, + 0xd6a6, + 0xd6a7, + 0xd6a8, + 0xd6a9, + 0xd6aa, + 0xd6ab, + 0xd6ac, + 0xd6ad, + 0xd6ae, + 0xd6af, + 0xd6b0, + 0xd6b1, + 0xd6b2, + 0xd6b3, + 0xd6b4, + 0xd6b5, + 0xd6b6, + 0xd6b7, + 0xd6b8, + 0xd6b9, + 0xd6ba, + 0xd6bb, + 0xd6bc, + 0xd6bd, + 0xd6be, + 0xd6bf, + 0xd780, + 0xd781, + 0xd782, + 0xd783, + 0xd784, + 0xd785, + 0xd786, + 0xd787, + 0xd788, + 0xd789, + 0xd78a, + 0xd78b, + 0xd78c, + 0xd78d, + 0xd78e, + 0xd78f, + 0xd790, + 0xd791, + 0xd792, + 0xd793, + 0xd794, + 0xd795, + 0xd796, + 0xd797, + 0xd798, + 0xd799, + 0xd79a, + 0xd79b, + 0xd79c, + 0xd79d, + 0xd79e, + 0xd79f, + 0xd7a0, + 0xd7a1, + 0xd7a2, + 0xd7a3, + 0xd7a4, + 0xd7a5, + 0xd7a6, + 0xd7a7, + 0xd7a8, + 0xd7a9, + 0xd7aa, + 0xd7ab, + 0xd7ac, + 0xd7ad, + 0xd7ae, + 0xd7af, + 0xd7b0, + 0xd7b1, + 0xd7b2, + 0xd7b3, + 0xd7b4, + 0xd7b5, + 0xd7b6, + 0xd7b7, + 0xd7b8, + 0xd7b9, + 0xd7ba, + 0xd7bb, + 0xd7bc, + 0xd7bd, + 0xd7be, + 0xd7bf, + 0xd880, + 0xd881, + 0xd882, + 0xd883, + 0xd884, + 0xd885, + 0xd886, + 0xd887, + 0xd888, + 0xd889, + 0xd88a, + 0xd88b, + 0xd88c, + 0xd88d, + 0xd88e, + 0xd88f, + 0xd890, + 0xd891, + 0xd892, + 0xd893, + 0xd894, + 0xd895, + 0xd896, + 0xd897, + 0xd898, + 0xd899, + 0xd89a, + 0xd89b, + 0xd89c, + 0xd89d, + 0xd89e, + 0xd89f, + 0xd8a0, + 0xd8a1, + 0xd8a2, + 0xd8a3, + 0xd8a4, + 0xd8a5, + 0xd8a6, + 0xd8a7, + 0xd8a8, + 0xd8a9, + 0xd8aa, + 0xd8ab, + 0xd8ac, + 0xd8ad, + 0xd8ae, + 0xd8af, + 0xd8b0, + 0xd8b1, + 0xd8b2, + 0xd8b3, + 0xd8b4, + 0xd8b5, + 0xd8b6, + 0xd8b7, + 0xd8b8, + 0xd8b9, + 0xd8ba, + 0xd8bb, + 0xd8bc, + 0xd8bd, + 0xd8be, + 0xd8bf, + 0xd980, + 0xd981, + 0xd982, + 0xd983, + 0xd984, + 0xd985, + 0xd986, + 0xd987, + 0xd988, + 0xd989, + 0xd98a, + 0xd98b, + 0xd98c, + 0xd98d, + 0xd98e, + 0xd98f, + 0xd990, + 0xd991, + 0xd992, + 0xd993, + 0xd994, + 0xd995, + 0xd996, + 0xd997, + 0xd998, + 0xd999, + 0xd99a, + 0xd99b, + 0xd99c, + 0xd99d, + 0xd99e, + 0xd99f, + 0xd9a0, + 0xd9a1, + 0xd9a2, + 0xd9a3, + 0xd9a4, + 0xd9a5, + 0xd9a6, + 0xd9a7, + 0xd9a8, + 0xd9a9, + 0xd9aa, + 0xd9ab, + 0xd9ac, + 0xd9ad, + 0xd9ae, + 0xd9af, + 0xd9b0, + 0xd9b1, + 0xd9b2, + 0xd9b3, + 0xd9b4, + 0xd9b5, + 0xd9b6, + 0xd9b7, + 0xd9b8, + 0xd9b9, + 0xd9ba, + 0xd9bb, + 0xd9bc, + 0xd9bd, + 0xd9be, + 0xd9bf, + 0xda80, + 0xda81, + 0xda82, + 0xda83, + 0xda84, + 0xda85, + 0xda86, + 0xda87, + 0xda88, + 0xda89, + 0xda8a, + 0xda8b, + 0xda8c, + 0xda8d, + 0xda8e, + 0xda8f, + 0xda90, + 0xda91, + 0xda92, + 0xda93, + 0xda94, + 0xda95, + 0xda96, + 0xda97, + 0xda98, + 0xda99, + 0xda9a, + 0xda9b, + 0xda9c, + 0xda9d, + 0xda9e, + 0xda9f, + 0xdaa0, + 0xdaa1, + 0xdaa2, + 0xdaa3, + 0xdaa4, + 0xdaa5, + 0xdaa6, + 0xdaa7, + 0xdaa8, + 0xdaa9, + 0xdaaa, + 0xdaab, + 0xdaac, + 0xdaad, + 0xdaae, + 0xdaaf, + 0xdab0, + 0xdab1, + 0xdab2, + 0xdab3, + 0xdab4, + 0xdab5, + 0xdab6, + 0xdab7, + 0xdab8, + 0xdab9, + 0xdaba, + 0xdabb, + 0xdabc, + 0xdabd, + 0xdabe, + 0xdabf, + 0xdb80, + 0xdb81, + 0xdb82, + 0xdb83, + 0xdb84, + 0xdb85, + 0xdb86, + 0xdb87, + 0xdb88, + 0xdb89, + 0xdb8a, + 0xdb8b, + 0xdb8c, + 0xdb8d, + 0xdb8e, + 0xdb8f, + 0xdb90, + 0xdb91, + 0xdb92, + 0xdb93, + 0xdb94, + 0xdb95, + 0xdb96, + 0xdb97, + 0xdb98, + 0xdb99, + 0xdb9a, + 0xdb9b, + 0xdb9c, + 0xdb9d, + 0xdb9e, + 0xdb9f, + 0xdba0, + 0xdba1, + 0xdba2, + 0xdba3, + 0xdba4, + 0xdba5, + 0xdba6, + 0xdba7, + 0xdba8, + 0xdba9, + 0xdbaa, + 0xdbab, + 0xdbac, + 0xdbad, + 0xdbae, + 0xdbaf, + 0xdbb0, + 0xdbb1, + 0xdbb2, + 0xdbb3, + 0xdbb4, + 0xdbb5, + 0xdbb6, + 0xdbb7, + 0xdbb8, + 0xdbb9, + 0xdbba, + 0xdbbb, + 0xdbbc, + 0xdbbd, + 0xdbbe, + 0xdbbf, + 0xdc80, + 0xdc81, + 0xdc82, + 0xdc83, + 0xdc84, + 0xdc85, + 0xdc86, + 0xdc87, + 0xdc88, + 0xdc89, + 0xdc8a, + 0xdc8b, + 0xdc8c, + 0xdc8d, + 0xdc8e, + 0xdc8f, + 0xdc90, + 0xdc91, + 0xdc92, + 0xdc93, + 0xdc94, + 0xdc95, + 0xdc96, + 0xdc97, + 0xdc98, + 0xdc99, + 0xdc9a, + 0xdc9b, + 0xdc9c, + 0xdc9d, + 0xdc9e, + 0xdc9f, + 0xdca0, + 0xdca1, + 0xdca2, + 0xdca3, + 0xdca4, + 0xdca5, + 0xdca6, + 0xdca7, + 0xdca8, + 0xdca9, + 0xdcaa, + 0xdcab, + 0xdcac, + 0xdcad, + 0xdcae, + 0xdcaf, + 0xdcb0, + 0xdcb1, + 0xdcb2, + 0xdcb3, + 0xdcb4, + 0xdcb5, + 0xdcb6, + 0xdcb7, + 0xdcb8, + 0xdcb9, + 0xdcba, + 0xdcbb, + 0xdcbc, + 0xdcbd, + 0xdcbe, + 0xdcbf, + 0xdd80, + 0xdd81, + 0xdd82, + 0xdd83, + 0xdd84, + 0xdd85, + 0xdd86, + 0xdd87, + 0xdd88, + 0xdd89, + 0xdd8a, + 0xdd8b, + 0xdd8c, + 0xdd8d, + 0xdd8e, + 0xdd8f, + 0xdd90, + 0xdd91, + 0xdd92, + 0xdd93, + 0xdd94, + 0xdd95, + 0xdd96, + 0xdd97, + 0xdd98, + 0xdd99, + 0xdd9a, + 0xdd9b, + 0xdd9c, + 0xdd9d, + 0xdd9e, + 0xdd9f, + 0xdda0, + 0xdda1, + 0xdda2, + 0xdda3, + 0xdda4, + 0xdda5, + 0xdda6, + 0xdda7, + 0xdda8, + 0xdda9, + 0xddaa, + 0xddab, + 0xddac, + 0xddad, + 0xddae, + 0xddaf, + 0xddb0, + 0xddb1, + 0xddb2, + 0xddb3, + 0xddb4, + 0xddb5, + 0xddb6, + 0xddb7, + 0xddb8, + 0xddb9, + 0xddba, + 0xddbb, + 0xddbc, + 0xddbd, + 0xddbe, + 0xddbf, + 0xde80, + 0xde81, + 0xde82, + 0xde83, + 0xde84, + 0xde85, + 0xde86, + 0xde87, + 0xde88, + 0xde89, + 0xde8a, + 0xde8b, + 0xde8c, + 0xde8d, + 0xde8e, + 0xde8f, + 0xde90, + 0xde91, + 0xde92, + 0xde93, + 0xde94, + 0xde95, + 0xde96, + 0xde97, + 0xde98, + 0xde99, + 0xde9a, + 0xde9b, + 0xde9c, + 0xde9d, + 0xde9e, + 0xde9f, + 0xdea0, + 0xdea1, + 0xdea2, + 0xdea3, + 0xdea4, + 0xdea5, + 0xdea6, + 0xdea7, + 0xdea8, + 0xdea9, + 0xdeaa, + 0xdeab, + 0xdeac, + 0xdead, + 0xdeae, + 0xdeaf, + 0xdeb0, + 0xdeb1, + 0xdeb2, + 0xdeb3, + 0xdeb4, + 0xdeb5, + 0xdeb6, + 0xdeb7, + 0xdeb8, + 0xdeb9, + 0xdeba, + 0xdebb, + 0xdebc, + 0xdebd, + 0xdebe, + 0xdebf, + 0xdf80, + 0xdf81, + 0xdf82, + 0xdf83, + 0xdf84, + 0xdf85, + 0xdf86, + 0xdf87, + 0xdf88, + 0xdf89, + 0xdf8a, + 0xdf8b, + 0xdf8c, + 0xdf8d, + 0xdf8e, + 0xdf8f, + 0xdf90, + 0xdf91, + 0xdf92, + 0xdf93, + 0xdf94, + 0xdf95, + 0xdf96, + 0xdf97, + 0xdf98, + 0xdf99, + 0xdf9a, + 0xdf9b, + 0xdf9c, + 0xdf9d, + 0xdf9e, + 0xdf9f, + 0xdfa0, + 0xdfa1, + 0xdfa2, + 0xdfa3, + 0xdfa4, + 0xdfa5, + 0xdfa6, + 0xdfa7, + 0xdfa8, + 0xdfa9, + 0xdfaa, + 0xdfab, + 0xdfac, + 0xdfad, + 0xdfae, + 0xdfaf, + 0xdfb0, + 0xdfb1, + 0xdfb2, + 0xdfb3, + 0xdfb4, + 0xdfb5, + 0xdfb6, + 0xdfb7, + 0xdfb8, + 0xdfb9, + 0xdfba, + 0xdfbb, + 0xdfbc, + 0xdfbd, + 0xdfbe, + 0xdfbf, + 0xe0a080, + 0xe0a081, + 0xe0a082, + 0xe0a083, + 0xe0a084, + 0xe0a085, + 0xe0a086, + 0xe0a087, + 0xe0a088, + 0xe0a089, + 0xe0a08a, + 0xe0a08b, + 0xe0a08c, + 0xe0a08d, + 0xe0a08e, + 0xe0a08f, + 0xe0a090, + 0xe0a091, + 0xe0a092, + 0xe0a093, + 0xe0a094, + 0xe0a095, + 0xe0a096, + 0xe0a097, + 0xe0a098, + 0xe0a099, + 0xe0a09a, + 0xe0a09b, + 0xe0a09c, + 0xe0a09d, + 0xe0a09e, + 0xe0a09f, + 0xe0a0a0, + 0xe0a0a1, + 0xe0a0a2, + 0xe0a0a3, + 0xe0a0a4, + 0xe0a0a5, + 0xe0a0a6, + 0xe0a0a7, + 0xe0a0a8, + 0xe0a0a9, + 0xe0a0aa, + 0xe0a0ab, + 0xe0a0ac, + 0xe0a0ad, + 0xe0a0ae, + 0xe0a0af, + 0xe0a0b0, + 0xe0a0b1, + 0xe0a0b2, + 0xe0a0b3, + 0xe0a0b4, + 0xe0a0b5, + 0xe0a0b6, + 0xe0a0b7, + 0xe0a0b8, + 0xe0a0b9, + 0xe0a0ba, + 0xe0a0bb, + 0xe0a0bc, + 0xe0a0bd, + 0xe0a0be, + 0xe0a0bf, + 0xe0a180, + 0xe0a181, + 0xe0a182, + 0xe0a183, + 0xe0a184, + 0xe0a185, + 0xe0a186, + 0xe0a187, + 0xe0a188, + 0xe0a189, + 0xe0a18a, + 0xe0a18b, + 0xe0a18c, + 0xe0a18d, + 0xe0a18e, + 0xe0a18f, + 0xe0a190, + 0xe0a191, + 0xe0a192, + 0xe0a193, + 0xe0a194, + 0xe0a195, + 0xe0a196, + 0xe0a197, + 0xe0a198, + 0xe0a199, + 0xe0a19a, + 0xe0a19b, + 0xe0a19c, + 0xe0a19d, + 0xe0a19e, + 0xe0a19f, + 0xe0a1a0, + 0xe0a1a1, + 0xe0a1a2, + 0xe0a1a3, + 0xe0a1a4, + 0xe0a1a5, + 0xe0a1a6, + 0xe0a1a7, + 0xe0a1a8, + 0xe0a1a9, + 0xe0a1aa, + 0xe0a1ab, + 0xe0a1ac, + 0xe0a1ad, + 0xe0a1ae, + 0xe0a1af, + 0xe0a1b0, + 0xe0a1b1, + 0xe0a1b2, + 0xe0a1b3, + 0xe0a1b4, + 0xe0a1b5, + 0xe0a1b6, + 0xe0a1b7, + 0xe0a1b8, + 0xe0a1b9, + 0xe0a1ba, + 0xe0a1bb, + 0xe0a1bc, + 0xe0a1bd, + 0xe0a1be, + 0xe0a1bf, + 0xe0a280, + 0xe0a281, + 0xe0a282, + 0xe0a283, + 0xe0a284, + 0xe0a285, + 0xe0a286, + 0xe0a287, + 0xe0a288, + 0xe0a289, + 0xe0a28a, + 0xe0a28b, + 0xe0a28c, + 0xe0a28d, + 0xe0a28e, + 0xe0a28f, + 0xe0a290, + 0xe0a291, + 0xe0a292, + 0xe0a293, + 0xe0a294, + 0xe0a295, + 0xe0a296, + 0xe0a297, + 0xe0a298, + 0xe0a299, + 0xe0a29a, + 0xe0a29b, + 0xe0a29c, + 0xe0a29d, + 0xe0a29e, + 0xe0a29f, + 0xe0a2a0, + 0xe0a2a1, + 0xe0a2a2, + 0xe0a2a3, + 0xe0a2a4, + 0xe0a2a5, + 0xe0a2a6, + 0xe0a2a7, + 0xe0a2a8, + 0xe0a2a9, + 0xe0a2aa, + 0xe0a2ab, + 0xe0a2ac, + 0xe0a2ad, + 0xe0a2ae, + 0xe0a2af, + 0xe0a2b0, + 0xe0a2b1, + 0xe0a2b2, + 0xe0a2b3, + 0xe0a2b4, + 0xe0a2b5, + 0xe0a2b6, + 0xe0a2b7, + 0xe0a2b8, + 0xe0a2b9, + 0xe0a2ba, + 0xe0a2bb, + 0xe0a2bc, + 0xe0a2bd, + 0xe0a2be, + 0xe0a2bf, + 0xe0a380, + 0xe0a381, + 0xe0a382, + 0xe0a383, + 0xe0a384, + 0xe0a385, + 0xe0a386, + 0xe0a387, + 0xe0a388, + 0xe0a389, + 0xe0a38a, + 0xe0a38b, + 0xe0a38c, + 0xe0a38d, + 0xe0a38e, + 0xe0a38f, + 0xe0a390, + 0xe0a391, + 0xe0a392, + 0xe0a393, + 0xe0a394, + 0xe0a395, + 0xe0a396, + 0xe0a397, + 0xe0a398, + 0xe0a399, + 0xe0a39a, + 0xe0a39b, + 0xe0a39c, + 0xe0a39d, + 0xe0a39e, + 0xe0a39f, + 0xe0a3a0, + 0xe0a3a1, + 0xe0a3a2, + 0xe0a3a3, + 0xe0a3a4, + 0xe0a3a5, + 0xe0a3a6, + 0xe0a3a7, + 0xe0a3a8, + 0xe0a3a9, + 0xe0a3aa, + 0xe0a3ab, + 0xe0a3ac, + 0xe0a3ad, + 0xe0a3ae, + 0xe0a3af, + 0xe0a3b0, + 0xe0a3b1, + 0xe0a3b2, + 0xe0a3b3, + 0xe0a3b4, + 0xe0a3b5, + 0xe0a3b6, + 0xe0a3b7, + 0xe0a3b8, + 0xe0a3b9, + 0xe0a3ba, + 0xe0a3bb, + 0xe0a3bc, + 0xe0a3bd, + 0xe0a3be, + 0xe0a3bf, + 0xe0a480, + 0xe0a481, + 0xe0a482, + 0xe0a483, + 0xe0a484, + 0xe0a485, + 0xe0a486, + 0xe0a487, + 0xe0a488, + 0xe0a489, + 0xe0a48a, + 0xe0a48b, + 0xe0a48c, + 0xe0a48d, + 0xe0a48e, + 0xe0a48f, + 0xe0a490, + 0xe0a491, + 0xe0a492, + 0xe0a493, + 0xe0a494, + 0xe0a495, + 0xe0a496, + 0xe0a497, + 0xe0a498, + 0xe0a499, + 0xe0a49a, + 0xe0a49b, + 0xe0a49c, + 0xe0a49d, + 0xe0a49e, + 0xe0a49f, + 0xe0a4a0, + 0xe0a4a1, + 0xe0a4a2, + 0xe0a4a3, + 0xe0a4a4, + 0xe0a4a5, + 0xe0a4a6, + 0xe0a4a7, + 0xe0a4a8, + 0xe0a4a9, + 0xe0a4aa, + 0xe0a4ab, + 0xe0a4ac, + 0xe0a4ad, + 0xe0a4ae, + 0xe0a4af, + 0xe0a4b0, + 0xe0a4b1, + 0xe0a4b2, + 0xe0a4b3, + 0xe0a4b4, + 0xe0a4b5, + 0xe0a4b6, + 0xe0a4b7, + 0xe0a4b8, + 0xe0a4b9, + 0xe0a4ba, + 0xe0a4bb, + 0xe0a4bc, + 0xe0a4bd, + 0xe0a4be, + 0xe0a4bf, + 0xe0a580, + 0xe0a581, + 0xe0a582, + 0xe0a583, + 0xe0a584, + 0xe0a585, + 0xe0a586, + 0xe0a587, + 0xe0a588, + 0xe0a589, + 0xe0a58a, + 0xe0a58b, + 0xe0a58c, + 0xe0a58d, + 0xe0a58e, + 0xe0a58f, + 0xe0a590, + 0xe0a591, + 0xe0a592, + 0xe0a593, + 0xe0a594, + 0xe0a595, + 0xe0a596, + 0xe0a597, + 0xe0a598, + 0xe0a599, + 0xe0a59a, + 0xe0a59b, + 0xe0a59c, + 0xe0a59d, + 0xe0a59e, + 0xe0a59f, + 0xe0a5a0, + 0xe0a5a1, + 0xe0a5a2, + 0xe0a5a3, + 0xe0a5a4, + 0xe0a5a5, + 0xe0a5a6, + 0xe0a5a7, + 0xe0a5a8, + 0xe0a5a9, + 0xe0a5aa, + 0xe0a5ab, + 0xe0a5ac, + 0xe0a5ad, + 0xe0a5ae, + 0xe0a5af, + 0xe0a5b0, + 0xe0a5b1, + 0xe0a5b2, + 0xe0a5b3, + 0xe0a5b4, + 0xe0a5b5, + 0xe0a5b6, + 0xe0a5b7, + 0xe0a5b8, + 0xe0a5b9, + 0xe0a5ba, + 0xe0a5bb, + 0xe0a5bc, + 0xe0a5bd, + 0xe0a5be, + 0xe0a5bf, + 0xe0a680, + 0xe0a681, + 0xe0a682, + 0xe0a683, + 0xe0a684, + 0xe0a685, + 0xe0a686, + 0xe0a687, + 0xe0a688, + 0xe0a689, + 0xe0a68a, + 0xe0a68b, + 0xe0a68c, + 0xe0a68d, + 0xe0a68e, + 0xe0a68f, + 0xe0a690, + 0xe0a691, + 0xe0a692, + 0xe0a693, + 0xe0a694, + 0xe0a695, + 0xe0a696, + 0xe0a697, + 0xe0a698, + 0xe0a699, + 0xe0a69a, + 0xe0a69b, + 0xe0a69c, + 0xe0a69d, + 0xe0a69e, + 0xe0a69f, + 0xe0a6a0, + 0xe0a6a1, + 0xe0a6a2, + 0xe0a6a3, + 0xe0a6a4, + 0xe0a6a5, + 0xe0a6a6, + 0xe0a6a7, + 0xe0a6a8, + 0xe0a6a9, + 0xe0a6aa, + 0xe0a6ab, + 0xe0a6ac, + 0xe0a6ad, + 0xe0a6ae, + 0xe0a6af, + 0xe0a6b0, + 0xe0a6b1, + 0xe0a6b2, + 0xe0a6b3, + 0xe0a6b4, + 0xe0a6b5, + 0xe0a6b6, + 0xe0a6b7, + 0xe0a6b8, + 0xe0a6b9, + 0xe0a6ba, + 0xe0a6bb, + 0xe0a6bc, + 0xe0a6bd, + 0xe0a6be, + 0xe0a6bf, + 0xe0a780, + 0xe0a781, + 0xe0a782, + 0xe0a783, + 0xe0a784, + 0xe0a785, + 0xe0a786, + 0xe0a787, + 0xe0a788, + 0xe0a789, + 0xe0a78a, + 0xe0a78b, + 0xe0a78c, + 0xe0a78d, + 0xe0a78e, + 0xe0a78f, + 0xe0a790, + 0xe0a791, + 0xe0a792, + 0xe0a793, + 0xe0a794, + 0xe0a795, + 0xe0a796, + 0xe0a797, + 0xe0a798, + 0xe0a799, + 0xe0a79a, + 0xe0a79b, + 0xe0a79c, + 0xe0a79d, + 0xe0a79e, + 0xe0a79f, + 0xe0a7a0, + 0xe0a7a1, + 0xe0a7a2, + 0xe0a7a3, + 0xe0a7a4, + 0xe0a7a5, + 0xe0a7a6, + 0xe0a7a7, + 0xe0a7a8, + 0xe0a7a9, + 0xe0a7aa, + 0xe0a7ab, + 0xe0a7ac, + 0xe0a7ad, + 0xe0a7ae, + 0xe0a7af, + 0xe0a7b0, + 0xe0a7b1, + 0xe0a7b2, + 0xe0a7b3, + 0xe0a7b4, + 0xe0a7b5, + 0xe0a7b6, + 0xe0a7b7, + 0xe0a7b8, + 0xe0a7b9, + 0xe0a7ba, + 0xe0a7bb, + 0xe0a7bc, + 0xe0a7bd, + 0xe0a7be, + 0xe0a7bf, + 0xe0a880, + 0xe0a881, + 0xe0a882, + 0xe0a883, + 0xe0a884, + 0xe0a885, + 0xe0a886, + 0xe0a887, + 0xe0a888, + 0xe0a889, + 0xe0a88a, + 0xe0a88b, + 0xe0a88c, + 0xe0a88d, + 0xe0a88e, + 0xe0a88f, + 0xe0a890, + 0xe0a891, + 0xe0a892, + 0xe0a893, + 0xe0a894, + 0xe0a895, + 0xe0a896, + 0xe0a897, + 0xe0a898, + 0xe0a899, + 0xe0a89a, + 0xe0a89b, + 0xe0a89c, + 0xe0a89d, + 0xe0a89e, + 0xe0a89f, + 0xe0a8a0, + 0xe0a8a1, + 0xe0a8a2, + 0xe0a8a3, + 0xe0a8a4, + 0xe0a8a5, + 0xe0a8a6, + 0xe0a8a7, + 0xe0a8a8, + 0xe0a8a9, + 0xe0a8aa, + 0xe0a8ab, + 0xe0a8ac, + 0xe0a8ad, + 0xe0a8ae, + 0xe0a8af, + 0xe0a8b0, + 0xe0a8b1, + 0xe0a8b2, + 0xe0a8b3, + 0xe0a8b4, + 0xe0a8b5, + 0xe0a8b6, + 0xe0a8b7, + 0xe0a8b8, + 0xe0a8b9, + 0xe0a8ba, + 0xe0a8bb, + 0xe0a8bc, + 0xe0a8bd, + 0xe0a8be, + 0xe0a8bf, + 0xe0a980, + 0xe0a981, + 0xe0a982, + 0xe0a983, + 0xe0a984, + 0xe0a985, + 0xe0a986, + 0xe0a987, + 0xe0a988, + 0xe0a989, + 0xe0a98a, + 0xe0a98b, + 0xe0a98c, + 0xe0a98d, + 0xe0a98e, + 0xe0a98f, + 0xe0a990, + 0xe0a991, + 0xe0a992, + 0xe0a993, + 0xe0a994, + 0xe0a995, + 0xe0a996, + 0xe0a997, + 0xe0a998, + 0xe0a999, + 0xe0a99a, + 0xe0a99b, + 0xe0a99c, + 0xe0a99d, + 0xe0a99e, + 0xe0a99f, + 0xe0a9a0, + 0xe0a9a1, + 0xe0a9a2, + 0xe0a9a3, + 0xe0a9a4, + 0xe0a9a5, + 0xe0a9a6, + 0xe0a9a7, + 0xe0a9a8, + 0xe0a9a9, + 0xe0a9aa, + 0xe0a9ab, + 0xe0a9ac, + 0xe0a9ad, + 0xe0a9ae, + 0xe0a9af, + 0xe0a9b0, + 0xe0a9b1, + 0xe0a9b2, + 0xe0a9b3, + 0xe0a9b4, + 0xe0a9b5, + 0xe0a9b6, + 0xe0a9b7, + 0xe0a9b8, + 0xe0a9b9, + 0xe0a9ba, + 0xe0a9bb, + 0xe0a9bc, + 0xe0a9bd, + 0xe0a9be, + 0xe0a9bf, + 0xe0aa80, + 0xe0aa81, + 0xe0aa82, + 0xe0aa83, + 0xe0aa84, + 0xe0aa85, + 0xe0aa86, + 0xe0aa87, + 0xe0aa88, + 0xe0aa89, + 0xe0aa8a, + 0xe0aa8b, + 0xe0aa8c, + 0xe0aa8d, + 0xe0aa8e, + 0xe0aa8f, + 0xe0aa90, + 0xe0aa91, + 0xe0aa92, + 0xe0aa93, + 0xe0aa94, + 0xe0aa95, + 0xe0aa96, + 0xe0aa97, + 0xe0aa98, + 0xe0aa99, + 0xe0aa9a, + 0xe0aa9b, + 0xe0aa9c, + 0xe0aa9d, + 0xe0aa9e, + 0xe0aa9f, + 0xe0aaa0, + 0xe0aaa1, + 0xe0aaa2, + 0xe0aaa3, + 0xe0aaa4, + 0xe0aaa5, + 0xe0aaa6, + 0xe0aaa7, + 0xe0aaa8, + 0xe0aaa9, + 0xe0aaaa, + 0xe0aaab, + 0xe0aaac, + 0xe0aaad, + 0xe0aaae, + 0xe0aaaf, + 0xe0aab0, + 0xe0aab1, + 0xe0aab2, + 0xe0aab3, + 0xe0aab4, + 0xe0aab5, + 0xe0aab6, + 0xe0aab7, + 0xe0aab8, + 0xe0aab9, + 0xe0aaba, + 0xe0aabb, + 0xe0aabc, + 0xe0aabd, + 0xe0aabe, + 0xe0aabf, + 0xe0ab80, + 0xe0ab81, + 0xe0ab82, + 0xe0ab83, + 0xe0ab84, + 0xe0ab85, + 0xe0ab86, + 0xe0ab87, + 0xe0ab88, + 0xe0ab89, + 0xe0ab8a, + 0xe0ab8b, + 0xe0ab8c, + 0xe0ab8d, + 0xe0ab8e, + 0xe0ab8f, + 0xe0ab90, + 0xe0ab91, + 0xe0ab92, + 0xe0ab93, + 0xe0ab94, + 0xe0ab95, + 0xe0ab96, + 0xe0ab97, + 0xe0ab98, + 0xe0ab99, + 0xe0ab9a, + 0xe0ab9b, + 0xe0ab9c, + 0xe0ab9d, + 0xe0ab9e, + 0xe0ab9f, + 0xe0aba0, + 0xe0aba1, + 0xe0aba2, + 0xe0aba3, + 0xe0aba4, + 0xe0aba5, + 0xe0aba6, + 0xe0aba7, + 0xe0aba8, + 0xe0aba9, + 0xe0abaa, + 0xe0abab, + 0xe0abac, + 0xe0abad, + 0xe0abae, + 0xe0abaf, + 0xe0abb0, + 0xe0abb1, + 0xe0abb2, + 0xe0abb3, + 0xe0abb4, + 0xe0abb5, + 0xe0abb6, + 0xe0abb7, + 0xe0abb8, + 0xe0abb9, + 0xe0abba, + 0xe0abbb, + 0xe0abbc, + 0xe0abbd, + 0xe0abbe, + 0xe0abbf, + 0xe0ac80, + 0xe0ac81, + 0xe0ac82, + 0xe0ac83, + 0xe0ac84, + 0xe0ac85, + 0xe0ac86, + 0xe0ac87, + 0xe0ac88, + 0xe0ac89, + 0xe0ac8a, + 0xe0ac8b, + 0xe0ac8c, + 0xe0ac8d, + 0xe0ac8e, + 0xe0ac8f, + 0xe0ac90, + 0xe0ac91, + 0xe0ac92, + 0xe0ac93, + 0xe0ac94, + 0xe0ac95, + 0xe0ac96, + 0xe0ac97, + 0xe0ac98, + 0xe0ac99, + 0xe0ac9a, + 0xe0ac9b, + 0xe0ac9c, + 0xe0ac9d, + 0xe0ac9e, + 0xe0ac9f, + 0xe0aca0, + 0xe0aca1, + 0xe0aca2, + 0xe0aca3, + 0xe0aca4, + 0xe0aca5, + 0xe0aca6, + 0xe0aca7, + 0xe0aca8, + 0xe0aca9, + 0xe0acaa, + 0xe0acab, + 0xe0acac, + 0xe0acad, + 0xe0acae, + 0xe0acaf, + 0xe0acb0, + 0xe0acb1, + 0xe0acb2, + 0xe0acb3, + 0xe0acb4, + 0xe0acb5, + 0xe0acb6, + 0xe0acb7, + 0xe0acb8, + 0xe0acb9, + 0xe0acba, + 0xe0acbb, + 0xe0acbc, + 0xe0acbd, + 0xe0acbe, + 0xe0acbf, + 0xe0ad80, + 0xe0ad81, + 0xe0ad82, + 0xe0ad83, + 0xe0ad84, + 0xe0ad85, + 0xe0ad86, + 0xe0ad87, + 0xe0ad88, + 0xe0ad89, + 0xe0ad8a, + 0xe0ad8b, + 0xe0ad8c, + 0xe0ad8d, + 0xe0ad8e, + 0xe0ad8f, + 0xe0ad90, + 0xe0ad91, + 0xe0ad92, + 0xe0ad93, + 0xe0ad94, + 0xe0ad95, + 0xe0ad96, + 0xe0ad97, + 0xe0ad98, + 0xe0ad99, + 0xe0ad9a, + 0xe0ad9b, + 0xe0ad9c, + 0xe0ad9d, + 0xe0ad9e, + 0xe0ad9f, + 0xe0ada0, + 0xe0ada1, + 0xe0ada2, + 0xe0ada3, + 0xe0ada4, + 0xe0ada5, + 0xe0ada6, + 0xe0ada7, + 0xe0ada8, + 0xe0ada9, + 0xe0adaa, + 0xe0adab, + 0xe0adac, + 0xe0adad, + 0xe0adae, + 0xe0adaf, + 0xe0adb0, + 0xe0adb1, + 0xe0adb2, + 0xe0adb3, + 0xe0adb4, + 0xe0adb5, + 0xe0adb6, + 0xe0adb7, + 0xe0adb8, + 0xe0adb9, + 0xe0adba, + 0xe0adbb, + 0xe0adbc, + 0xe0adbd, + 0xe0adbe, + 0xe0adbf, + 0xe0ae80, + 0xe0ae81, + 0xe0ae82, + 0xe0ae83, + 0xe0ae84, + 0xe0ae85, + 0xe0ae86, + 0xe0ae87, + 0xe0ae88, + 0xe0ae89, + 0xe0ae8a, + 0xe0ae8b, + 0xe0ae8c, + 0xe0ae8d, + 0xe0ae8e, + 0xe0ae8f, + 0xe0ae90, + 0xe0ae91, + 0xe0ae92, + 0xe0ae93, + 0xe0ae94, + 0xe0ae95, + 0xe0ae96, + 0xe0ae97, + 0xe0ae98, + 0xe0ae99, + 0xe0ae9a, + 0xe0ae9b, + 0xe0ae9c, + 0xe0ae9d, + 0xe0ae9e, + 0xe0ae9f, + 0xe0aea0, + 0xe0aea1, + 0xe0aea2, + 0xe0aea3, + 0xe0aea4, + 0xe0aea5, + 0xe0aea6, + 0xe0aea7, + 0xe0aea8, + 0xe0aea9, + 0xe0aeaa, + 0xe0aeab, + 0xe0aeac, + 0xe0aead, + 0xe0aeae, + 0xe0aeaf, + 0xe0aeb0, + 0xe0aeb1, + 0xe0aeb2, + 0xe0aeb3, + 0xe0aeb4, + 0xe0aeb5, + 0xe0aeb6, + 0xe0aeb7, + 0xe0aeb8, + 0xe0aeb9, + 0xe0aeba, + 0xe0aebb, + 0xe0aebc, + 0xe0aebd, + 0xe0aebe, + 0xe0aebf, + 0xe0af80, + 0xe0af81, + 0xe0af82, + 0xe0af83, + 0xe0af84, + 0xe0af85, + 0xe0af86, + 0xe0af87, + 0xe0af88, + 0xe0af89, + 0xe0af8a, + 0xe0af8b, + 0xe0af8c, + 0xe0af8d, + 0xe0af8e, + 0xe0af8f, + 0xe0af90, + 0xe0af91, + 0xe0af92, + 0xe0af93, + 0xe0af94, + 0xe0af95, + 0xe0af96, + 0xe0af97, + 0xe0af98, + 0xe0af99, + 0xe0af9a, + 0xe0af9b, + 0xe0af9c, + 0xe0af9d, + 0xe0af9e, + 0xe0af9f, + 0xe0afa0, + 0xe0afa1, + 0xe0afa2, + 0xe0afa3, + 0xe0afa4, + 0xe0afa5, + 0xe0afa6, + 0xe0afa7, + 0xe0afa8, + 0xe0afa9, + 0xe0afaa, + 0xe0afab, + 0xe0afac, + 0xe0afad, + 0xe0afae, + 0xe0afaf, + 0xe0afb0, + 0xe0afb1, + 0xe0afb2, + 0xe0afb3, + 0xe0afb4, + 0xe0afb5, + 0xe0afb6, + 0xe0afb7, + 0xe0afb8, + 0xe0afb9, + 0xe0afba, + 0xe0afbb, + 0xe0afbc, + 0xe0afbd, + 0xe0afbe, + 0xe0afbf, + 0xe0b080, + 0xe0b081, + 0xe0b082, + 0xe0b083, + 0xe0b084, + 0xe0b085, + 0xe0b086, + 0xe0b087, + 0xe0b088, + 0xe0b089, + 0xe0b08a, + 0xe0b08b, + 0xe0b08c, + 0xe0b08d, + 0xe0b08e, + 0xe0b08f, + 0xe0b090, + 0xe0b091, + 0xe0b092, + 0xe0b093, + 0xe0b094, + 0xe0b095, + 0xe0b096, + 0xe0b097, + 0xe0b098, + 0xe0b099, + 0xe0b09a, + 0xe0b09b, + 0xe0b09c, + 0xe0b09d, + 0xe0b09e, + 0xe0b09f, + 0xe0b0a0, + 0xe0b0a1, + 0xe0b0a2, + 0xe0b0a3, + 0xe0b0a4, + 0xe0b0a5, + 0xe0b0a6, + 0xe0b0a7, + 0xe0b0a8, + 0xe0b0a9, + 0xe0b0aa, + 0xe0b0ab, + 0xe0b0ac, + 0xe0b0ad, + 0xe0b0ae, + 0xe0b0af, + 0xe0b0b0, + 0xe0b0b1, + 0xe0b0b2, + 0xe0b0b3, + 0xe0b0b4, + 0xe0b0b5, + 0xe0b0b6, + 0xe0b0b7, + 0xe0b0b8, + 0xe0b0b9, + 0xe0b0ba, + 0xe0b0bb, + 0xe0b0bc, + 0xe0b0bd, + 0xe0b0be, + 0xe0b0bf, + 0xe0b180, + 0xe0b181, + 0xe0b182, + 0xe0b183, + 0xe0b184, + 0xe0b185, + 0xe0b186, + 0xe0b187, + 0xe0b188, + 0xe0b189, + 0xe0b18a, + 0xe0b18b, + 0xe0b18c, + 0xe0b18d, + 0xe0b18e, + 0xe0b18f, + 0xe0b190, + 0xe0b191, + 0xe0b192, + 0xe0b193, + 0xe0b194, + 0xe0b195, + 0xe0b196, + 0xe0b197, + 0xe0b198, + 0xe0b199, + 0xe0b19a, + 0xe0b19b, + 0xe0b19c, + 0xe0b19d, + 0xe0b19e, + 0xe0b19f, + 0xe0b1a0, + 0xe0b1a1, + 0xe0b1a2, + 0xe0b1a3, + 0xe0b1a4, + 0xe0b1a5, + 0xe0b1a6, + 0xe0b1a7, + 0xe0b1a8, + 0xe0b1a9, + 0xe0b1aa, + 0xe0b1ab, + 0xe0b1ac, + 0xe0b1ad, + 0xe0b1ae, + 0xe0b1af, + 0xe0b1b0, + 0xe0b1b1, + 0xe0b1b2, + 0xe0b1b3, + 0xe0b1b4, + 0xe0b1b5, + 0xe0b1b6, + 0xe0b1b7, + 0xe0b1b8, + 0xe0b1b9, + 0xe0b1ba, + 0xe0b1bb, + 0xe0b1bc, + 0xe0b1bd, + 0xe0b1be, + 0xe0b1bf, + 0xe0b280, + 0xe0b281, + 0xe0b282, + 0xe0b283, + 0xe0b284, + 0xe0b285, + 0xe0b286, + 0xe0b287, + 0xe0b288, + 0xe0b289, + 0xe0b28a, + 0xe0b28b, + 0xe0b28c, + 0xe0b28d, + 0xe0b28e, + 0xe0b28f, + 0xe0b290, + 0xe0b291, + 0xe0b292, + 0xe0b293, + 0xe0b294, + 0xe0b295, + 0xe0b296, + 0xe0b297, + 0xe0b298, + 0xe0b299, + 0xe0b29a, + 0xe0b29b, + 0xe0b29c, + 0xe0b29d, + 0xe0b29e, + 0xe0b29f, + 0xe0b2a0, + 0xe0b2a1, + 0xe0b2a2, + 0xe0b2a3, + 0xe0b2a4, + 0xe0b2a5, + 0xe0b2a6, + 0xe0b2a7, + 0xe0b2a8, + 0xe0b2a9, + 0xe0b2aa, + 0xe0b2ab, + 0xe0b2ac, + 0xe0b2ad, + 0xe0b2ae, + 0xe0b2af, + 0xe0b2b0, + 0xe0b2b1, + 0xe0b2b2, + 0xe0b2b3, + 0xe0b2b4, + 0xe0b2b5, + 0xe0b2b6, + 0xe0b2b7, + 0xe0b2b8, + 0xe0b2b9, + 0xe0b2ba, + 0xe0b2bb, + 0xe0b2bc, + 0xe0b2bd, + 0xe0b2be, + 0xe0b2bf, + 0xe0b380, + 0xe0b381, + 0xe0b382, + 0xe0b383, + 0xe0b384, + 0xe0b385, + 0xe0b386, + 0xe0b387, + 0xe0b388, + 0xe0b389, + 0xe0b38a, + 0xe0b38b, + 0xe0b38c, + 0xe0b38d, + 0xe0b38e, + 0xe0b38f, + 0xe0b390, + 0xe0b391, + 0xe0b392, + 0xe0b393, + 0xe0b394, + 0xe0b395, + 0xe0b396, + 0xe0b397, + 0xe0b398, + 0xe0b399, + 0xe0b39a, + 0xe0b39b, + 0xe0b39c, + 0xe0b39d, + 0xe0b39e, + 0xe0b39f, + 0xe0b3a0, + 0xe0b3a1, + 0xe0b3a2, + 0xe0b3a3, + 0xe0b3a4, + 0xe0b3a5, + 0xe0b3a6, + 0xe0b3a7, + 0xe0b3a8, + 0xe0b3a9, + 0xe0b3aa, + 0xe0b3ab, + 0xe0b3ac, + 0xe0b3ad, + 0xe0b3ae, + 0xe0b3af, + 0xe0b3b0, + 0xe0b3b1, + 0xe0b3b2, + 0xe0b3b3, + 0xe0b3b4, + 0xe0b3b5, + 0xe0b3b6, + 0xe0b3b7, + 0xe0b3b8, + 0xe0b3b9, + 0xe0b3ba, + 0xe0b3bb, + 0xe0b3bc, + 0xe0b3bd, + 0xe0b3be, + 0xe0b3bf, + 0xe0b480, + 0xe0b481, + 0xe0b482, + 0xe0b483, + 0xe0b484, + 0xe0b485, + 0xe0b486, + 0xe0b487, + 0xe0b488, + 0xe0b489, + 0xe0b48a, + 0xe0b48b, + 0xe0b48c, + 0xe0b48d, + 0xe0b48e, + 0xe0b48f, + 0xe0b490, + 0xe0b491, + 0xe0b492, + 0xe0b493, + 0xe0b494, + 0xe0b495, + 0xe0b496, + 0xe0b497, + 0xe0b498, + 0xe0b499, + 0xe0b49a, + 0xe0b49b, + 0xe0b49c, + 0xe0b49d, + 0xe0b49e, + 0xe0b49f, + 0xe0b4a0, + 0xe0b4a1, + 0xe0b4a2, + 0xe0b4a3, + 0xe0b4a4, + 0xe0b4a5, + 0xe0b4a6, + 0xe0b4a7, + 0xe0b4a8, + 0xe0b4a9, + 0xe0b4aa, + 0xe0b4ab, + 0xe0b4ac, + 0xe0b4ad, + 0xe0b4ae, + 0xe0b4af, + 0xe0b4b0, + 0xe0b4b1, + 0xe0b4b2, + 0xe0b4b3, + 0xe0b4b4, + 0xe0b4b5, + 0xe0b4b6, + 0xe0b4b7, + 0xe0b4b8, + 0xe0b4b9, + 0xe0b4ba, + 0xe0b4bb, + 0xe0b4bc, + 0xe0b4bd, + 0xe0b4be, + 0xe0b4bf, + 0xe0b580, + 0xe0b581, + 0xe0b582, + 0xe0b583, + 0xe0b584, + 0xe0b585, + 0xe0b586, + 0xe0b587, + 0xe0b588, + 0xe0b589, + 0xe0b58a, + 0xe0b58b, + 0xe0b58c, + 0xe0b58d, + 0xe0b58e, + 0xe0b58f, + 0xe0b590, + 0xe0b591, + 0xe0b592, + 0xe0b593, + 0xe0b594, + 0xe0b595, + 0xe0b596, + 0xe0b597, + 0xe0b598, + 0xe0b599, + 0xe0b59a, + 0xe0b59b, + 0xe0b59c, + 0xe0b59d, + 0xe0b59e, + 0xe0b59f, + 0xe0b5a0, + 0xe0b5a1, + 0xe0b5a2, + 0xe0b5a3, + 0xe0b5a4, + 0xe0b5a5, + 0xe0b5a6, + 0xe0b5a7, + 0xe0b5a8, + 0xe0b5a9, + 0xe0b5aa, + 0xe0b5ab, + 0xe0b5ac, + 0xe0b5ad, + 0xe0b5ae, + 0xe0b5af, + 0xe0b5b0, + 0xe0b5b1, + 0xe0b5b2, + 0xe0b5b3, + 0xe0b5b4, + 0xe0b5b5, + 0xe0b5b6, + 0xe0b5b7, + 0xe0b5b8, + 0xe0b5b9, + 0xe0b5ba, + 0xe0b5bb, + 0xe0b5bc, + 0xe0b5bd, + 0xe0b5be, + 0xe0b5bf, + 0xe0b680, + 0xe0b681, + 0xe0b682, + 0xe0b683, + 0xe0b684, + 0xe0b685, + 0xe0b686, + 0xe0b687, + 0xe0b688, + 0xe0b689, + 0xe0b68a, + 0xe0b68b, + 0xe0b68c, + 0xe0b68d, + 0xe0b68e, + 0xe0b68f, + 0xe0b690, + 0xe0b691, + 0xe0b692, + 0xe0b693, + 0xe0b694, + 0xe0b695, + 0xe0b696, + 0xe0b697, + 0xe0b698, + 0xe0b699, + 0xe0b69a, + 0xe0b69b, + 0xe0b69c, + 0xe0b69d, + 0xe0b69e, + 0xe0b69f, + 0xe0b6a0, + 0xe0b6a1, + 0xe0b6a2, + 0xe0b6a3, + 0xe0b6a4, + 0xe0b6a5, + 0xe0b6a6, + 0xe0b6a7, + 0xe0b6a8, + 0xe0b6a9, + 0xe0b6aa, + 0xe0b6ab, + 0xe0b6ac, + 0xe0b6ad, + 0xe0b6ae, + 0xe0b6af, + 0xe0b6b0, + 0xe0b6b1, + 0xe0b6b2, + 0xe0b6b3, + 0xe0b6b4, + 0xe0b6b5, + 0xe0b6b6, + 0xe0b6b7, + 0xe0b6b8, + 0xe0b6b9, + 0xe0b6ba, + 0xe0b6bb, + 0xe0b6bc, + 0xe0b6bd, + 0xe0b6be, + 0xe0b6bf, + 0xe0b780, + 0xe0b781, + 0xe0b782, + 0xe0b783, + 0xe0b784, + 0xe0b785, + 0xe0b786, + 0xe0b787, + 0xe0b788, + 0xe0b789, + 0xe0b78a, + 0xe0b78b, + 0xe0b78c, + 0xe0b78d, + 0xe0b78e, + 0xe0b78f, + 0xe0b790, + 0xe0b791, + 0xe0b792, + 0xe0b793, + 0xe0b794, + 0xe0b795, + 0xe0b796, + 0xe0b797, + 0xe0b798, + 0xe0b799, + 0xe0b79a, + 0xe0b79b, + 0xe0b79c, + 0xe0b79d, + 0xe0b79e, + 0xe0b79f, + 0xe0b7a0, + 0xe0b7a1, + 0xe0b7a2, + 0xe0b7a3, + 0xe0b7a4, + 0xe0b7a5, + 0xe0b7a6, + 0xe0b7a7, + 0xe0b7a8, + 0xe0b7a9, + 0xe0b7aa, + 0xe0b7ab, + 0xe0b7ac, + 0xe0b7ad, + 0xe0b7ae, + 0xe0b7af, + 0xe0b7b0, + 0xe0b7b1, + 0xe0b7b2, + 0xe0b7b3, + 0xe0b7b4, + 0xe0b7b5, + 0xe0b7b6, + 0xe0b7b7, + 0xe0b7b8, + 0xe0b7b9, + 0xe0b7ba, + 0xe0b7bb, + 0xe0b7bc, + 0xe0b7bd, + 0xe0b7be, + 0xe0b7bf, + 0xe0b880, + 0xe0b881, + 0xe0b882, + 0xe0b883, + 0xe0b884, + 0xe0b885, + 0xe0b886, + 0xe0b887, + 0xe0b888, + 0xe0b889, + 0xe0b88a, + 0xe0b88b, + 0xe0b88c, + 0xe0b88d, + 0xe0b88e, + 0xe0b88f, + 0xe0b890, + 0xe0b891, + 0xe0b892, + 0xe0b893, + 0xe0b894, + 0xe0b895, + 0xe0b896, + 0xe0b897, + 0xe0b898, + 0xe0b899, + 0xe0b89a, + 0xe0b89b, + 0xe0b89c, + 0xe0b89d, + 0xe0b89e, + 0xe0b89f, + 0xe0b8a0, + 0xe0b8a1, + 0xe0b8a2, + 0xe0b8a3, + 0xe0b8a4, + 0xe0b8a5, + 0xe0b8a6, + 0xe0b8a7, + 0xe0b8a8, + 0xe0b8a9, + 0xe0b8aa, + 0xe0b8ab, + 0xe0b8ac, + 0xe0b8ad, + 0xe0b8ae, + 0xe0b8af, + 0xe0b8b0, + 0xe0b8b1, + 0xe0b8b2, + 0xe0b8b3, + 0xe0b8b4, + 0xe0b8b5, + 0xe0b8b6, + 0xe0b8b7, + 0xe0b8b8, + 0xe0b8b9, + 0xe0b8ba, + 0xe0b8bb, + 0xe0b8bc, + 0xe0b8bd, + 0xe0b8be, + 0xe0b8bf, + 0xe0b980, + 0xe0b981, + 0xe0b982, + 0xe0b983, + 0xe0b984, + 0xe0b985, + 0xe0b986, + 0xe0b987, + 0xe0b988, + 0xe0b989, + 0xe0b98a, + 0xe0b98b, + 0xe0b98c, + 0xe0b98d, + 0xe0b98e, + 0xe0b98f, + 0xe0b990, + 0xe0b991, + 0xe0b992, + 0xe0b993, + 0xe0b994, + 0xe0b995, + 0xe0b996, + 0xe0b997, + 0xe0b998, + 0xe0b999, + 0xe0b99a, + 0xe0b99b, + 0xe0b99c, + 0xe0b99d, + 0xe0b99e, + 0xe0b99f, + 0xe0b9a0, + 0xe0b9a1, + 0xe0b9a2, + 0xe0b9a3, + 0xe0b9a4, + 0xe0b9a5, + 0xe0b9a6, + 0xe0b9a7, + 0xe0b9a8, + 0xe0b9a9, + 0xe0b9aa, + 0xe0b9ab, + 0xe0b9ac, + 0xe0b9ad, + 0xe0b9ae, + 0xe0b9af, + 0xe0b9b0, + 0xe0b9b1, + 0xe0b9b2, + 0xe0b9b3, + 0xe0b9b4, + 0xe0b9b5, + 0xe0b9b6, + 0xe0b9b7, + 0xe0b9b8, + 0xe0b9b9, + 0xe0b9ba, + 0xe0b9bb, + 0xe0b9bc, + 0xe0b9bd, + 0xe0b9be, + 0xe0b9bf, + 0xe0ba80, + 0xe0ba81, + 0xe0ba82, + 0xe0ba83, + 0xe0ba84, + 0xe0ba85, + 0xe0ba86, + 0xe0ba87, + 0xe0ba88, + 0xe0ba89, + 0xe0ba8a, + 0xe0ba8b, + 0xe0ba8c, + 0xe0ba8d, + 0xe0ba8e, + 0xe0ba8f, + 0xe0ba90, + 0xe0ba91, + 0xe0ba92, + 0xe0ba93, + 0xe0ba94, + 0xe0ba95, + 0xe0ba96, + 0xe0ba97, + 0xe0ba98, + 0xe0ba99, + 0xe0ba9a, + 0xe0ba9b, + 0xe0ba9c, + 0xe0ba9d, + 0xe0ba9e, + 0xe0ba9f, + 0xe0baa0, + 0xe0baa1, + 0xe0baa2, + 0xe0baa3, + 0xe0baa4, + 0xe0baa5, + 0xe0baa6, + 0xe0baa7, + 0xe0baa8, + 0xe0baa9, + 0xe0baaa, + 0xe0baab, + 0xe0baac, + 0xe0baad, + 0xe0baae, + 0xe0baaf, + 0xe0bab0, + 0xe0bab1, + 0xe0bab2, + 0xe0bab3, + 0xe0bab4, + 0xe0bab5, + 0xe0bab6, + 0xe0bab7, + 0xe0bab8, + 0xe0bab9, + 0xe0baba, + 0xe0babb, + 0xe0babc, + 0xe0babd, + 0xe0babe, + 0xe0babf, + 0xe0bb80, + 0xe0bb81, + 0xe0bb82, + 0xe0bb83, + 0xe0bb84, + 0xe0bb85, + 0xe0bb86, + 0xe0bb87, + 0xe0bb88, + 0xe0bb89, + 0xe0bb8a, + 0xe0bb8b, + 0xe0bb8c, + 0xe0bb8d, + 0xe0bb8e, + 0xe0bb8f, + 0xe0bb90, + 0xe0bb91, + 0xe0bb92, + 0xe0bb93, + 0xe0bb94, + 0xe0bb95, + 0xe0bb96, + 0xe0bb97, + 0xe0bb98, + 0xe0bb99, + 0xe0bb9a, + 0xe0bb9b, + 0xe0bb9c, + 0xe0bb9d, + 0xe0bb9e, + 0xe0bb9f, + 0xe0bba0, + 0xe0bba1, + 0xe0bba2, + 0xe0bba3, + 0xe0bba4, + 0xe0bba5, + 0xe0bba6, + 0xe0bba7, + 0xe0bba8, + 0xe0bba9, + 0xe0bbaa, + 0xe0bbab, + 0xe0bbac, + 0xe0bbad, + 0xe0bbae, + 0xe0bbaf, + 0xe0bbb0, + 0xe0bbb1, + 0xe0bbb2, + 0xe0bbb3, + 0xe0bbb4, + 0xe0bbb5, + 0xe0bbb6, + 0xe0bbb7, + 0xe0bbb8, + 0xe0bbb9, + 0xe0bbba, + 0xe0bbbb, + 0xe0bbbc, + 0xe0bbbd, + 0xe0bbbe, + 0xe0bbbf, + 0xe0bc80, + 0xe0bc81, + 0xe0bc82, + 0xe0bc83, + 0xe0bc84, + 0xe0bc85, + 0xe0bc86, + 0xe0bc87, + 0xe0bc88, + 0xe0bc89, + 0xe0bc8a, + 0xe0bc8b, + 0xe0bc8c, + 0xe0bc8d, + 0xe0bc8e, + 0xe0bc8f, + 0xe0bc90, + 0xe0bc91, + 0xe0bc92, + 0xe0bc93, + 0xe0bc94, + 0xe0bc95, + 0xe0bc96, + 0xe0bc97, + 0xe0bc98, + 0xe0bc99, + 0xe0bc9a, + 0xe0bc9b, + 0xe0bc9c, + 0xe0bc9d, + 0xe0bc9e, + 0xe0bc9f, + 0xe0bca0, + 0xe0bca1, + 0xe0bca2, + 0xe0bca3, + 0xe0bca4, + 0xe0bca5, + 0xe0bca6, + 0xe0bca7, + 0xe0bca8, + 0xe0bca9, + 0xe0bcaa, + 0xe0bcab, + 0xe0bcac, + 0xe0bcad, + 0xe0bcae, + 0xe0bcaf, + 0xe0bcb0, + 0xe0bcb1, + 0xe0bcb2, + 0xe0bcb3, + 0xe0bcb4, + 0xe0bcb5, + 0xe0bcb6, + 0xe0bcb7, + 0xe0bcb8, + 0xe0bcb9, + 0xe0bcba, + 0xe0bcbb, + 0xe0bcbc, + 0xe0bcbd, + 0xe0bcbe, + 0xe0bcbf, + 0xe0bd80, + 0xe0bd81, + 0xe0bd82, + 0xe0bd83, + 0xe0bd84, + 0xe0bd85, + 0xe0bd86, + 0xe0bd87, + 0xe0bd88, + 0xe0bd89, + 0xe0bd8a, + 0xe0bd8b, + 0xe0bd8c, + 0xe0bd8d, + 0xe0bd8e, + 0xe0bd8f, + 0xe0bd90, + 0xe0bd91, + 0xe0bd92, + 0xe0bd93, + 0xe0bd94, + 0xe0bd95, + 0xe0bd96, + 0xe0bd97, + 0xe0bd98, + 0xe0bd99, + 0xe0bd9a, + 0xe0bd9b, + 0xe0bd9c, + 0xe0bd9d, + 0xe0bd9e, + 0xe0bd9f, + 0xe0bda0, + 0xe0bda1, + 0xe0bda2, + 0xe0bda3, + 0xe0bda4, + 0xe0bda5, + 0xe0bda6, + 0xe0bda7, + 0xe0bda8, + 0xe0bda9, + 0xe0bdaa, + 0xe0bdab, + 0xe0bdac, + 0xe0bdad, + 0xe0bdae, + 0xe0bdaf, + 0xe0bdb0, + 0xe0bdb1, + 0xe0bdb2, + 0xe0bdb3, + 0xe0bdb4, + 0xe0bdb5, + 0xe0bdb6, + 0xe0bdb7, + 0xe0bdb8, + 0xe0bdb9, + 0xe0bdba, + 0xe0bdbb, + 0xe0bdbc, + 0xe0bdbd, + 0xe0bdbe, + 0xe0bdbf, + 0xe0be80, + 0xe0be81, + 0xe0be82, + 0xe0be83, + 0xe0be84, + 0xe0be85, + 0xe0be86, + 0xe0be87, + 0xe0be88, + 0xe0be89, + 0xe0be8a, + 0xe0be8b, + 0xe0be8c, + 0xe0be8d, + 0xe0be8e, + 0xe0be8f, + 0xe0be90, + 0xe0be91, + 0xe0be92, + 0xe0be93, + 0xe0be94, + 0xe0be95, + 0xe0be96, + 0xe0be97, + 0xe0be98, + 0xe0be99, + 0xe0be9a, + 0xe0be9b, + 0xe0be9c, + 0xe0be9d, + 0xe0be9e, + 0xe0be9f, + 0xe0bea0, + 0xe0bea1, + 0xe0bea2, + 0xe0bea3, + 0xe0bea4, + 0xe0bea5, + 0xe0bea6, + 0xe0bea7, + 0xe0bea8, + 0xe0bea9, + 0xe0beaa, + 0xe0beab, + 0xe0beac, + 0xe0bead, + 0xe0beae, + 0xe0beaf, + 0xe0beb0, + 0xe0beb1, + 0xe0beb2, + 0xe0beb3, + 0xe0beb4, + 0xe0beb5, + 0xe0beb6, + 0xe0beb7, + 0xe0beb8, + 0xe0beb9, + 0xe0beba, + 0xe0bebb, + 0xe0bebc, + 0xe0bebd, + 0xe0bebe, + 0xe0bebf, + 0xe0bf80, + 0xe0bf81, + 0xe0bf82, + 0xe0bf83, + 0xe0bf84, + 0xe0bf85, + 0xe0bf86, + 0xe0bf87, + 0xe0bf88, + 0xe0bf89, + 0xe0bf8a, + 0xe0bf8b, + 0xe0bf8c, + 0xe0bf8d, + 0xe0bf8e, + 0xe0bf8f, + 0xe0bf90, + 0xe0bf91, + 0xe0bf92, + 0xe0bf93, + 0xe0bf94, + 0xe0bf95, + 0xe0bf96, + 0xe0bf97, + 0xe0bf98, + 0xe0bf99, + 0xe0bf9a, + 0xe0bf9b, + 0xe0bf9c, + 0xe0bf9d, + 0xe0bf9e, + 0xe0bf9f, + 0xe0bfa0, + 0xe0bfa1, + 0xe0bfa2, + 0xe0bfa3, + 0xe0bfa4, + 0xe0bfa5, + 0xe0bfa6, + 0xe0bfa7, + 0xe0bfa8, + 0xe0bfa9, + 0xe0bfaa, + 0xe0bfab, + 0xe0bfac, + 0xe0bfad, + 0xe0bfae, + 0xe0bfaf, + 0xe0bfb0, + 0xe0bfb1, + 0xe0bfb2, + 0xe0bfb3, + 0xe0bfb4, + 0xe0bfb5, + 0xe0bfb6, + 0xe0bfb7, + 0xe0bfb8, + 0xe0bfb9, + 0xe0bfba, + 0xe0bfbb, + 0xe0bfbc, + 0xe0bfbd, + 0xe0bfbe, + 0xe0bfbf, + 0xe18080, + 0xe18081, + 0xe18082, + 0xe18083, + 0xe18084, + 0xe18085, + 0xe18086, + 0xe18087, + 0xe18088, + 0xe18089, + 0xe1808a, + 0xe1808b, + 0xe1808c, + 0xe1808d, + 0xe1808e, + 0xe1808f, + 0xe18090, + 0xe18091, + 0xe18092, + 0xe18093, + 0xe18094, + 0xe18095, + 0xe18096, + 0xe18097, + 0xe18098, + 0xe18099, + 0xe1809a, + 0xe1809b, + 0xe1809c, + 0xe1809d, + 0xe1809e, + 0xe1809f, + 0xe180a0, + 0xe180a1, + 0xe180a2, + 0xe180a3, + 0xe180a4, + 0xe180a5, + 0xe180a6, + 0xe180a7, + 0xe180a8, + 0xe180a9, + 0xe180aa, + 0xe180ab, + 0xe180ac, + 0xe180ad, + 0xe180ae, + 0xe180af, + 0xe180b0, + 0xe180b1, + 0xe180b2, + 0xe180b3, + 0xe180b4, + 0xe180b5, + 0xe180b6, + 0xe180b7, + 0xe180b8, + 0xe180b9, + 0xe180ba, + 0xe180bb, + 0xe180bc, + 0xe180bd, + 0xe180be, + 0xe180bf, + 0xe18180, + 0xe18181, + 0xe18182, + 0xe18183, + 0xe18184, + 0xe18185, + 0xe18186, + 0xe18187, + 0xe18188, + 0xe18189, + 0xe1818a, + 0xe1818b, + 0xe1818c, + 0xe1818d, + 0xe1818e, + 0xe1818f, + 0xe18190, + 0xe18191, + 0xe18192, + 0xe18193, + 0xe18194, + 0xe18195, + 0xe18196, + 0xe18197, + 0xe18198, + 0xe18199, + 0xe1819a, + 0xe1819b, + 0xe1819c, + 0xe1819d, + 0xe1819e, + 0xe1819f, + 0xe181a0, + 0xe181a1, + 0xe181a2, + 0xe181a3, + 0xe181a4, + 0xe181a5, + 0xe181a6, + 0xe181a7, + 0xe181a8, + 0xe181a9, + 0xe181aa, + 0xe181ab, + 0xe181ac, + 0xe181ad, + 0xe181ae, + 0xe181af, + 0xe181b0, + 0xe181b1, + 0xe181b2, + 0xe181b3, + 0xe181b4, + 0xe181b5, + 0xe181b6, + 0xe181b7, + 0xe181b8, + 0xe181b9, + 0xe181ba, + 0xe181bb, + 0xe181bc, + 0xe181bd, + 0xe181be, + 0xe181bf, + 0xe18280, + 0xe18281, + 0xe18282, + 0xe18283, + 0xe18284, + 0xe18285, + 0xe18286, + 0xe18287, + 0xe18288, + 0xe18289, + 0xe1828a, + 0xe1828b, + 0xe1828c, + 0xe1828d, + 0xe1828e, + 0xe1828f, + 0xe18290, + 0xe18291, + 0xe18292, + 0xe18293, + 0xe18294, + 0xe18295, + 0xe18296, + 0xe18297, + 0xe18298, + 0xe18299, + 0xe1829a, + 0xe1829b, + 0xe1829c, + 0xe1829d, + 0xe1829e, + 0xe1829f, + 0xe182a0, + 0xe182a1, + 0xe182a2, + 0xe182a3, + 0xe182a4, + 0xe182a5, + 0xe182a6, + 0xe182a7, + 0xe182a8, + 0xe182a9, + 0xe182aa, + 0xe182ab, + 0xe182ac, + 0xe182ad, + 0xe182ae, + 0xe182af, + 0xe182b0, + 0xe182b1, + 0xe182b2, + 0xe182b3, + 0xe182b4, + 0xe182b5, + 0xe182b6, + 0xe182b7, + 0xe182b8, + 0xe182b9, + 0xe182ba, + 0xe182bb, + 0xe182bc, + 0xe182bd, + 0xe182be, + 0xe182bf, + 0xe18380, + 0xe18381, + 0xe18382, + 0xe18383, + 0xe18384, + 0xe18385, + 0xe18386, + 0xe18387, + 0xe18388, + 0xe18389, + 0xe1838a, + 0xe1838b, + 0xe1838c, + 0xe1838d, + 0xe1838e, + 0xe1838f, + 0xe18390, + 0xe18391, + 0xe18392, + 0xe18393, + 0xe18394, + 0xe18395, + 0xe18396, + 0xe18397, + 0xe18398, + 0xe18399, + 0xe1839a, + 0xe1839b, + 0xe1839c, + 0xe1839d, + 0xe1839e, + 0xe1839f, + 0xe183a0, + 0xe183a1, + 0xe183a2, + 0xe183a3, + 0xe183a4, + 0xe183a5, + 0xe183a6, + 0xe183a7, + 0xe183a8, + 0xe183a9, + 0xe183aa, + 0xe183ab, + 0xe183ac, + 0xe183ad, + 0xe183ae, + 0xe183af, + 0xe183b0, + 0xe183b1, + 0xe183b2, + 0xe183b3, + 0xe183b4, + 0xe183b5, + 0xe183b6, + 0xe183b7, + 0xe183b8, + 0xe183b9, + 0xe183ba, + 0xe183bb, + 0xe183bc, + 0xe183bd, + 0xe183be, + 0xe183bf, + 0xe18480, + 0xe18481, + 0xe18482, + 0xe18483, + 0xe18484, + 0xe18485, + 0xe18486, + 0xe18487, + 0xe18488, + 0xe18489, + 0xe1848a, + 0xe1848b, + 0xe1848c, + 0xe1848d, + 0xe1848e, + 0xe1848f, + 0xe18490, + 0xe18491, + 0xe18492, + 0xe18493, + 0xe18494, + 0xe18495, + 0xe18496, + 0xe18497, + 0xe18498, + 0xe18499, + 0xe1849a, + 0xe1849b, + 0xe1849c, + 0xe1849d, + 0xe1849e, + 0xe1849f, + 0xe184a0, + 0xe184a1, + 0xe184a2, + 0xe184a3, + 0xe184a4, + 0xe184a5, + 0xe184a6, + 0xe184a7, + 0xe184a8, + 0xe184a9, + 0xe184aa, + 0xe184ab, + 0xe184ac, + 0xe184ad, + 0xe184ae, + 0xe184af, + 0xe184b0, + 0xe184b1, + 0xe184b2, + 0xe184b3, + 0xe184b4, + 0xe184b5, + 0xe184b6, + 0xe184b7, + 0xe184b8, + 0xe184b9, + 0xe184ba, + 0xe184bb, + 0xe184bc, + 0xe184bd, + 0xe184be, + 0xe184bf, + 0xe18580, + 0xe18581, + 0xe18582, + 0xe18583, + 0xe18584, + 0xe18585, + 0xe18586, + 0xe18587, + 0xe18588, + 0xe18589, + 0xe1858a, + 0xe1858b, + 0xe1858c, + 0xe1858d, + 0xe1858e, + 0xe1858f, + 0xe18590, + 0xe18591, + 0xe18592, + 0xe18593, + 0xe18594, + 0xe18595, + 0xe18596, + 0xe18597, + 0xe18598, + 0xe18599, + 0xe1859a, + 0xe1859b, + 0xe1859c, + 0xe1859d, + 0xe1859e, + 0xe1859f, + 0xe185a0, + 0xe185a1, + 0xe185a2, + 0xe185a3, + 0xe185a4, + 0xe185a5, + 0xe185a6, + 0xe185a7, + 0xe185a8, + 0xe185a9, + 0xe185aa, + 0xe185ab, + 0xe185ac, + 0xe185ad, + 0xe185ae, + 0xe185af, + 0xe185b0, + 0xe185b1, + 0xe185b2, + 0xe185b3, + 0xe185b4, + 0xe185b5, + 0xe185b6, + 0xe185b7, + 0xe185b8, + 0xe185b9, + 0xe185ba, + 0xe185bb, + 0xe185bc, + 0xe185bd, + 0xe185be, + 0xe185bf, + 0xe18680, + 0xe18681, + 0xe18682, + 0xe18683, + 0xe18684, + 0xe18685, + 0xe18686, + 0xe18687, + 0xe18688, + 0xe18689, + 0xe1868a, + 0xe1868b, + 0xe1868c, + 0xe1868d, + 0xe1868e, + 0xe1868f, + 0xe18690, + 0xe18691, + 0xe18692, + 0xe18693, + 0xe18694, + 0xe18695, + 0xe18696, + 0xe18697, + 0xe18698, + 0xe18699, + 0xe1869a, + 0xe1869b, + 0xe1869c, + 0xe1869d, + 0xe1869e, + 0xe1869f, + 0xe186a0, + 0xe186a1, + 0xe186a2, + 0xe186a3, + 0xe186a4, + 0xe186a5, + 0xe186a6, + 0xe186a7, + 0xe186a8, + 0xe186a9, + 0xe186aa, + 0xe186ab, + 0xe186ac, + 0xe186ad, + 0xe186ae, + 0xe186af, + 0xe186b0, + 0xe186b1, + 0xe186b2, + 0xe186b3, + 0xe186b4, + 0xe186b5, + 0xe186b6, + 0xe186b7, + 0xe186b8, + 0xe186b9, + 0xe186ba, + 0xe186bb, + 0xe186bc, + 0xe186bd, + 0xe186be, + 0xe186bf, + 0xe18780, + 0xe18781, + 0xe18782, + 0xe18783, + 0xe18784, + 0xe18785, + 0xe18786, + 0xe18787, + 0xe18788, + 0xe18789, + 0xe1878a, + 0xe1878b, + 0xe1878c, + 0xe1878d, + 0xe1878e, + 0xe1878f, + 0xe18790, + 0xe18791, + 0xe18792, + 0xe18793, + 0xe18794, + 0xe18795, + 0xe18796, + 0xe18797, + 0xe18798, + 0xe18799, + 0xe1879a, + 0xe1879b, + 0xe1879c, + 0xe1879d, + 0xe1879e, + 0xe1879f, + 0xe187a0, + 0xe187a1, + 0xe187a2, + 0xe187a3, + 0xe187a4, + 0xe187a5, + 0xe187a6, + 0xe187a7, + 0xe187a8, + 0xe187a9, + 0xe187aa, + 0xe187ab, + 0xe187ac, + 0xe187ad, + 0xe187ae, + 0xe187af, + 0xe187b0, + 0xe187b1, + 0xe187b2, + 0xe187b3, + 0xe187b4, + 0xe187b5, + 0xe187b6, + 0xe187b7, + 0xe187b8, + 0xe187b9, + 0xe187ba, + 0xe187bb, + 0xe187bc, + 0xe187bd, + 0xe187be, + 0xe187bf, + 0xe18880, + 0xe18881, + 0xe18882, + 0xe18883, + 0xe18884, + 0xe18885, + 0xe18886, + 0xe18887, + 0xe18888, + 0xe18889, + 0xe1888a, + 0xe1888b, + 0xe1888c, + 0xe1888d, + 0xe1888e, + 0xe1888f, + 0xe18890, + 0xe18891, + 0xe18892, + 0xe18893, + 0xe18894, + 0xe18895, + 0xe18896, + 0xe18897, + 0xe18898, + 0xe18899, + 0xe1889a, + 0xe1889b, + 0xe1889c, + 0xe1889d, + 0xe1889e, + 0xe1889f, + 0xe188a0, + 0xe188a1, + 0xe188a2, + 0xe188a3, + 0xe188a4, + 0xe188a5, + 0xe188a6, + 0xe188a7, + 0xe188a8, + 0xe188a9, + 0xe188aa, + 0xe188ab, + 0xe188ac, + 0xe188ad, + 0xe188ae, + 0xe188af, + 0xe188b0, + 0xe188b1, + 0xe188b2, + 0xe188b3, + 0xe188b4, + 0xe188b5, + 0xe188b6, + 0xe188b7, + 0xe188b8, + 0xe188b9, + 0xe188ba, + 0xe188bb, + 0xe188bc, + 0xe188bd, + 0xe188be, + 0xe188bf, + 0xe18980, + 0xe18981, + 0xe18982, + 0xe18983, + 0xe18984, + 0xe18985, + 0xe18986, + 0xe18987, + 0xe18988, + 0xe18989, + 0xe1898a, + 0xe1898b, + 0xe1898c, + 0xe1898d, + 0xe1898e, + 0xe1898f, + 0xe18990, + 0xe18991, + 0xe18992, + 0xe18993, + 0xe18994, + 0xe18995, + 0xe18996, + 0xe18997, + 0xe18998, + 0xe18999, + 0xe1899a, + 0xe1899b, + 0xe1899c, + 0xe1899d, + 0xe1899e, + 0xe1899f, + 0xe189a0, + 0xe189a1, + 0xe189a2, + 0xe189a3, + 0xe189a4, + 0xe189a5, + 0xe189a6, + 0xe189a7, + 0xe189a8, + 0xe189a9, + 0xe189aa, + 0xe189ab, + 0xe189ac, + 0xe189ad, + 0xe189ae, + 0xe189af, + 0xe189b0, + 0xe189b1, + 0xe189b2, + 0xe189b3, + 0xe189b4, + 0xe189b5, + 0xe189b6, + 0xe189b7, + 0xe189b8, + 0xe189b9, + 0xe189ba, + 0xe189bb, + 0xe189bc, + 0xe189bd, + 0xe189be, + 0xe189bf, + 0xe18a80, + 0xe18a81, + 0xe18a82, + 0xe18a83, + 0xe18a84, + 0xe18a85, + 0xe18a86, + 0xe18a87, + 0xe18a88, + 0xe18a89, + 0xe18a8a, + 0xe18a8b, + 0xe18a8c, + 0xe18a8d, + 0xe18a8e, + 0xe18a8f, + 0xe18a90, + 0xe18a91, + 0xe18a92, + 0xe18a93, + 0xe18a94, + 0xe18a95, + 0xe18a96, + 0xe18a97, + 0xe18a98, + 0xe18a99, + 0xe18a9a, + 0xe18a9b, + 0xe18a9c, + 0xe18a9d, + 0xe18a9e, + 0xe18a9f, + 0xe18aa0, + 0xe18aa1, + 0xe18aa2, + 0xe18aa3, + 0xe18aa4, + 0xe18aa5, + 0xe18aa6, + 0xe18aa7, + 0xe18aa8, + 0xe18aa9, + 0xe18aaa, + 0xe18aab, + 0xe18aac, + 0xe18aad, + 0xe18aae, + 0xe18aaf, + 0xe18ab0, + 0xe18ab1, + 0xe18ab2, + 0xe18ab3, + 0xe18ab4, + 0xe18ab5, + 0xe18ab6, + 0xe18ab7, + 0xe18ab8, + 0xe18ab9, + 0xe18aba, + 0xe18abb, + 0xe18abc, + 0xe18abd, + 0xe18abe, + 0xe18abf, + 0xe18b80, + 0xe18b81, + 0xe18b82, + 0xe18b83, + 0xe18b84, + 0xe18b85, + 0xe18b86, + 0xe18b87, + 0xe18b88, + 0xe18b89, + 0xe18b8a, + 0xe18b8b, + 0xe18b8c, + 0xe18b8d, + 0xe18b8e, + 0xe18b8f, + 0xe18b90, + 0xe18b91, + 0xe18b92, + 0xe18b93, + 0xe18b94, + 0xe18b95, + 0xe18b96, + 0xe18b97, + 0xe18b98, + 0xe18b99, + 0xe18b9a, + 0xe18b9b, + 0xe18b9c, + 0xe18b9d, + 0xe18b9e, + 0xe18b9f, + 0xe18ba0, + 0xe18ba1, + 0xe18ba2, + 0xe18ba3, + 0xe18ba4, + 0xe18ba5, + 0xe18ba6, + 0xe18ba7, + 0xe18ba8, + 0xe18ba9, + 0xe18baa, + 0xe18bab, + 0xe18bac, + 0xe18bad, + 0xe18bae, + 0xe18baf, + 0xe18bb0, + 0xe18bb1, + 0xe18bb2, + 0xe18bb3, + 0xe18bb4, + 0xe18bb5, + 0xe18bb6, + 0xe18bb7, + 0xe18bb8, + 0xe18bb9, + 0xe18bba, + 0xe18bbb, + 0xe18bbc, + 0xe18bbd, + 0xe18bbe, + 0xe18bbf, + 0xe18c80, + 0xe18c81, + 0xe18c82, + 0xe18c83, + 0xe18c84, + 0xe18c85, + 0xe18c86, + 0xe18c87, + 0xe18c88, + 0xe18c89, + 0xe18c8a, + 0xe18c8b, + 0xe18c8c, + 0xe18c8d, + 0xe18c8e, + 0xe18c8f, + 0xe18c90, + 0xe18c91, + 0xe18c92, + 0xe18c93, + 0xe18c94, + 0xe18c95, + 0xe18c96, + 0xe18c97, + 0xe18c98, + 0xe18c99, + 0xe18c9a, + 0xe18c9b, + 0xe18c9c, + 0xe18c9d, + 0xe18c9e, + 0xe18c9f, + 0xe18ca0, + 0xe18ca1, + 0xe18ca2, + 0xe18ca3, + 0xe18ca4, + 0xe18ca5, + 0xe18ca6, + 0xe18ca7, + 0xe18ca8, + 0xe18ca9, + 0xe18caa, + 0xe18cab, + 0xe18cac, + 0xe18cad, + 0xe18cae, + 0xe18caf, + 0xe18cb0, + 0xe18cb1, + 0xe18cb2, + 0xe18cb3, + 0xe18cb4, + 0xe18cb5, + 0xe18cb6, + 0xe18cb7, + 0xe18cb8, + 0xe18cb9, + 0xe18cba, + 0xe18cbb, + 0xe18cbc, + 0xe18cbd, + 0xe18cbe, + 0xe18cbf, + 0xe18d80, + 0xe18d81, + 0xe18d82, + 0xe18d83, + 0xe18d84, + 0xe18d85, + 0xe18d86, + 0xe18d87, + 0xe18d88, + 0xe18d89, + 0xe18d8a, + 0xe18d8b, + 0xe18d8c, + 0xe18d8d, + 0xe18d8e, + 0xe18d8f, + 0xe18d90, + 0xe18d91, + 0xe18d92, + 0xe18d93, + 0xe18d94, + 0xe18d95, + 0xe18d96, + 0xe18d97, + 0xe18d98, + 0xe18d99, + 0xe18d9a, + 0xe18d9b, + 0xe18d9c, + 0xe18d9d, + 0xe18d9e, + 0xe18d9f, + 0xe18da0, + 0xe18da1, + 0xe18da2, + 0xe18da3, + 0xe18da4, + 0xe18da5, + 0xe18da6, + 0xe18da7, + 0xe18da8, + 0xe18da9, + 0xe18daa, + 0xe18dab, + 0xe18dac, + 0xe18dad, + 0xe18dae, + 0xe18daf, + 0xe18db0, + 0xe18db1, + 0xe18db2, + 0xe18db3, + 0xe18db4, + 0xe18db5, + 0xe18db6, + 0xe18db7, + 0xe18db8, + 0xe18db9, + 0xe18dba, + 0xe18dbb, + 0xe18dbc, + 0xe18dbd, + 0xe18dbe, + 0xe18dbf, + 0xe18e80, + 0xe18e81, + 0xe18e82, + 0xe18e83, + 0xe18e84, + 0xe18e85, + 0xe18e86, + 0xe18e87, + 0xe18e88, + 0xe18e89, + 0xe18e8a, + 0xe18e8b, + 0xe18e8c, + 0xe18e8d, + 0xe18e8e, + 0xe18e8f, + 0xe18e90, + 0xe18e91, + 0xe18e92, + 0xe18e93, + 0xe18e94, + 0xe18e95, + 0xe18e96, + 0xe18e97, + 0xe18e98, + 0xe18e99, + 0xe18e9a, + 0xe18e9b, + 0xe18e9c, + 0xe18e9d, + 0xe18e9e, + 0xe18e9f, + 0xe18ea0, + 0xe18ea1, + 0xe18ea2, + 0xe18ea3, + 0xe18ea4, + 0xe18ea5, + 0xe18ea6, + 0xe18ea7, + 0xe18ea8, + 0xe18ea9, + 0xe18eaa, + 0xe18eab, + 0xe18eac, + 0xe18ead, + 0xe18eae, + 0xe18eaf, + 0xe18eb0, + 0xe18eb1, + 0xe18eb2, + 0xe18eb3, + 0xe18eb4, + 0xe18eb5, + 0xe18eb6, + 0xe18eb7, + 0xe18eb8, + 0xe18eb9, + 0xe18eba, + 0xe18ebb, + 0xe18ebc, + 0xe18ebd, + 0xe18ebe, + 0xe18ebf, + 0xe18f80, + 0xe18f81, + 0xe18f82, + 0xe18f83, + 0xe18f84, + 0xe18f85, + 0xe18f86, + 0xe18f87, + 0xe18f88, + 0xe18f89, + 0xe18f8a, + 0xe18f8b, + 0xe18f8c, + 0xe18f8d, + 0xe18f8e, + 0xe18f8f, + 0xe18f90, + 0xe18f91, + 0xe18f92, + 0xe18f93, + 0xe18f94, + 0xe18f95, + 0xe18f96, + 0xe18f97, + 0xe18f98, + 0xe18f99, + 0xe18f9a, + 0xe18f9b, + 0xe18f9c, + 0xe18f9d, + 0xe18f9e, + 0xe18f9f, + 0xe18fa0, + 0xe18fa1, + 0xe18fa2, + 0xe18fa3, + 0xe18fa4, + 0xe18fa5, + 0xe18fa6, + 0xe18fa7, + 0xe18fa8, + 0xe18fa9, + 0xe18faa, + 0xe18fab, + 0xe18fac, + 0xe18fad, + 0xe18fae, + 0xe18faf, + 0xe18fb0, + 0xe18fb1, + 0xe18fb2, + 0xe18fb3, + 0xe18fb4, + 0xe18fb5, + 0xe18fb6, + 0xe18fb7, + 0xe18fb8, + 0xe18fb9, + 0xe18fba, + 0xe18fbb, + 0xe18fbc, + 0xe18fbd, + 0xe18fbe, + 0xe18fbf, + 0xe19080, + 0xe19081, + 0xe19082, + 0xe19083, + 0xe19084, + 0xe19085, + 0xe19086, + 0xe19087, + 0xe19088, + 0xe19089, + 0xe1908a, + 0xe1908b, + 0xe1908c, + 0xe1908d, + 0xe1908e, + 0xe1908f, + 0xe19090, + 0xe19091, + 0xe19092, + 0xe19093, + 0xe19094, + 0xe19095, + 0xe19096, + 0xe19097, + 0xe19098, + 0xe19099, + 0xe1909a, + 0xe1909b, + 0xe1909c, + 0xe1909d, + 0xe1909e, + 0xe1909f, + 0xe190a0, + 0xe190a1, + 0xe190a2, + 0xe190a3, + 0xe190a4, + 0xe190a5, + 0xe190a6, + 0xe190a7, + 0xe190a8, + 0xe190a9, + 0xe190aa, + 0xe190ab, + 0xe190ac, + 0xe190ad, + 0xe190ae, + 0xe190af, + 0xe190b0, + 0xe190b1, + 0xe190b2, + 0xe190b3, + 0xe190b4, + 0xe190b5, + 0xe190b6, + 0xe190b7, + 0xe190b8, + 0xe190b9, + 0xe190ba, + 0xe190bb, + 0xe190bc, + 0xe190bd, + 0xe190be, + 0xe190bf, + 0xe19180, + 0xe19181, + 0xe19182, + 0xe19183, + 0xe19184, + 0xe19185, + 0xe19186, + 0xe19187, + 0xe19188, + 0xe19189, + 0xe1918a, + 0xe1918b, + 0xe1918c, + 0xe1918d, + 0xe1918e, + 0xe1918f, + 0xe19190, + 0xe19191, + 0xe19192, + 0xe19193, + 0xe19194, + 0xe19195, + 0xe19196, + 0xe19197, + 0xe19198, + 0xe19199, + 0xe1919a, + 0xe1919b, + 0xe1919c, + 0xe1919d, + 0xe1919e, + 0xe1919f, + 0xe191a0, + 0xe191a1, + 0xe191a2, + 0xe191a3, + 0xe191a4, + 0xe191a5, + 0xe191a6, + 0xe191a7, + 0xe191a8, + 0xe191a9, + 0xe191aa, + 0xe191ab, + 0xe191ac, + 0xe191ad, + 0xe191ae, + 0xe191af, + 0xe191b0, + 0xe191b1, + 0xe191b2, + 0xe191b3, + 0xe191b4, + 0xe191b5, + 0xe191b6, + 0xe191b7, + 0xe191b8, + 0xe191b9, + 0xe191ba, + 0xe191bb, + 0xe191bc, + 0xe191bd, + 0xe191be, + 0xe191bf, + 0xe19280, + 0xe19281, + 0xe19282, + 0xe19283, + 0xe19284, + 0xe19285, + 0xe19286, + 0xe19287, + 0xe19288, + 0xe19289, + 0xe1928a, + 0xe1928b, + 0xe1928c, + 0xe1928d, + 0xe1928e, + 0xe1928f, + 0xe19290, + 0xe19291, + 0xe19292, + 0xe19293, + 0xe19294, + 0xe19295, + 0xe19296, + 0xe19297, + 0xe19298, + 0xe19299, + 0xe1929a, + 0xe1929b, + 0xe1929c, + 0xe1929d, + 0xe1929e, + 0xe1929f, + 0xe192a0, + 0xe192a1, + 0xe192a2, + 0xe192a3, + 0xe192a4, + 0xe192a5, + 0xe192a6, + 0xe192a7, + 0xe192a8, + 0xe192a9, + 0xe192aa, + 0xe192ab, + 0xe192ac, + 0xe192ad, + 0xe192ae, + 0xe192af, + 0xe192b0, + 0xe192b1, + 0xe192b2, + 0xe192b3, + 0xe192b4, + 0xe192b5, + 0xe192b6, + 0xe192b7, + 0xe192b8, + 0xe192b9, + 0xe192ba, + 0xe192bb, + 0xe192bc, + 0xe192bd, + 0xe192be, + 0xe192bf, + 0xe19380, + 0xe19381, + 0xe19382, + 0xe19383, + 0xe19384, + 0xe19385, + 0xe19386, + 0xe19387, + 0xe19388, + 0xe19389, + 0xe1938a, + 0xe1938b, + 0xe1938c, + 0xe1938d, + 0xe1938e, + 0xe1938f, + 0xe19390, + 0xe19391, + 0xe19392, + 0xe19393, + 0xe19394, + 0xe19395, + 0xe19396, + 0xe19397, + 0xe19398, + 0xe19399, + 0xe1939a, + 0xe1939b, + 0xe1939c, + 0xe1939d, + 0xe1939e, + 0xe1939f, + 0xe193a0, + 0xe193a1, + 0xe193a2, + 0xe193a3, + 0xe193a4, + 0xe193a5, + 0xe193a6, + 0xe193a7, + 0xe193a8, + 0xe193a9, + 0xe193aa, + 0xe193ab, + 0xe193ac, + 0xe193ad, + 0xe193ae, + 0xe193af, + 0xe193b0, + 0xe193b1, + 0xe193b2, + 0xe193b3, + 0xe193b4, + 0xe193b5, + 0xe193b6, + 0xe193b7, + 0xe193b8, + 0xe193b9, + 0xe193ba, + 0xe193bb, + 0xe193bc, + 0xe193bd, + 0xe193be, + 0xe193bf, + 0xe19480, + 0xe19481, + 0xe19482, + 0xe19483, + 0xe19484, + 0xe19485, + 0xe19486, + 0xe19487, + 0xe19488, + 0xe19489, + 0xe1948a, + 0xe1948b, + 0xe1948c, + 0xe1948d, + 0xe1948e, + 0xe1948f, + 0xe19490, + 0xe19491, + 0xe19492, + 0xe19493, + 0xe19494, + 0xe19495, + 0xe19496, + 0xe19497, + 0xe19498, + 0xe19499, + 0xe1949a, + 0xe1949b, + 0xe1949c, + 0xe1949d, + 0xe1949e, + 0xe1949f, + 0xe194a0, + 0xe194a1, + 0xe194a2, + 0xe194a3, + 0xe194a4, + 0xe194a5, + 0xe194a6, + 0xe194a7, + 0xe194a8, + 0xe194a9, + 0xe194aa, + 0xe194ab, + 0xe194ac, + 0xe194ad, + 0xe194ae, + 0xe194af, + 0xe194b0, + 0xe194b1, + 0xe194b2, + 0xe194b3, + 0xe194b4, + 0xe194b5, + 0xe194b6, + 0xe194b7, + 0xe194b8, + 0xe194b9, + 0xe194ba, + 0xe194bb, + 0xe194bc, + 0xe194bd, + 0xe194be, + 0xe194bf, + 0xe19580, + 0xe19581, + 0xe19582, + 0xe19583, + 0xe19584, + 0xe19585, + 0xe19586, + 0xe19587, + 0xe19588, + 0xe19589, + 0xe1958a, + 0xe1958b, + 0xe1958c, + 0xe1958d, + 0xe1958e, + 0xe1958f, + 0xe19590, + 0xe19591, + 0xe19592, + 0xe19593, + 0xe19594, + 0xe19595, + 0xe19596, + 0xe19597, + 0xe19598, + 0xe19599, + 0xe1959a, + 0xe1959b, + 0xe1959c, + 0xe1959d, + 0xe1959e, + 0xe1959f, + 0xe195a0, + 0xe195a1, + 0xe195a2, + 0xe195a3, + 0xe195a4, + 0xe195a5, + 0xe195a6, + 0xe195a7, + 0xe195a8, + 0xe195a9, + 0xe195aa, + 0xe195ab, + 0xe195ac, + 0xe195ad, + 0xe195ae, + 0xe195af, + 0xe195b0, + 0xe195b1, + 0xe195b2, + 0xe195b3, + 0xe195b4, + 0xe195b5, + 0xe195b6, + 0xe195b7, + 0xe195b8, + 0xe195b9, + 0xe195ba, + 0xe195bb, + 0xe195bc, + 0xe195bd, + 0xe195be, + 0xe195bf, + 0xe19680, + 0xe19681, + 0xe19682, + 0xe19683, + 0xe19684, + 0xe19685, + 0xe19686, + 0xe19687, + 0xe19688, + 0xe19689, + 0xe1968a, + 0xe1968b, + 0xe1968c, + 0xe1968d, + 0xe1968e, + 0xe1968f, + 0xe19690, + 0xe19691, + 0xe19692, + 0xe19693, + 0xe19694, + 0xe19695, + 0xe19696, + 0xe19697, + 0xe19698, + 0xe19699, + 0xe1969a, + 0xe1969b, + 0xe1969c, + 0xe1969d, + 0xe1969e, + 0xe1969f, + 0xe196a0, + 0xe196a1, + 0xe196a2, + 0xe196a3, + 0xe196a4, + 0xe196a5, + 0xe196a6, + 0xe196a7, + 0xe196a8, + 0xe196a9, + 0xe196aa, + 0xe196ab, + 0xe196ac, + 0xe196ad, + 0xe196ae, + 0xe196af, + 0xe196b0, + 0xe196b1, + 0xe196b2, + 0xe196b3, + 0xe196b4, + 0xe196b5, + 0xe196b6, + 0xe196b7, + 0xe196b8, + 0xe196b9, + 0xe196ba, + 0xe196bb, + 0xe196bc, + 0xe196bd, + 0xe196be, + 0xe196bf, + 0xe19780, + 0xe19781, + 0xe19782, + 0xe19783, + 0xe19784, + 0xe19785, + 0xe19786, + 0xe19787, + 0xe19788, + 0xe19789, + 0xe1978a, + 0xe1978b, + 0xe1978c, + 0xe1978d, + 0xe1978e, + 0xe1978f, + 0xe19790, + 0xe19791, + 0xe19792, + 0xe19793, + 0xe19794, + 0xe19795, + 0xe19796, + 0xe19797, + 0xe19798, + 0xe19799, + 0xe1979a, + 0xe1979b, + 0xe1979c, + 0xe1979d, + 0xe1979e, + 0xe1979f, + 0xe197a0, + 0xe197a1, + 0xe197a2, + 0xe197a3, + 0xe197a4, + 0xe197a5, + 0xe197a6, + 0xe197a7, + 0xe197a8, + 0xe197a9, + 0xe197aa, + 0xe197ab, + 0xe197ac, + 0xe197ad, + 0xe197ae, + 0xe197af, + 0xe197b0, + 0xe197b1, + 0xe197b2, + 0xe197b3, + 0xe197b4, + 0xe197b5, + 0xe197b6, + 0xe197b7, + 0xe197b8, + 0xe197b9, + 0xe197ba, + 0xe197bb, + 0xe197bc, + 0xe197bd, + 0xe197be, + 0xe197bf, + 0xe19880, + 0xe19881, + 0xe19882, + 0xe19883, + 0xe19884, + 0xe19885, + 0xe19886, + 0xe19887, + 0xe19888, + 0xe19889, + 0xe1988a, + 0xe1988b, + 0xe1988c, + 0xe1988d, + 0xe1988e, + 0xe1988f, + 0xe19890, + 0xe19891, + 0xe19892, + 0xe19893, + 0xe19894, + 0xe19895, + 0xe19896, + 0xe19897, + 0xe19898, + 0xe19899, + 0xe1989a, + 0xe1989b, + 0xe1989c, + 0xe1989d, + 0xe1989e, + 0xe1989f, + 0xe198a0, + 0xe198a1, + 0xe198a2, + 0xe198a3, + 0xe198a4, + 0xe198a5, + 0xe198a6, + 0xe198a7, + 0xe198a8, + 0xe198a9, + 0xe198aa, + 0xe198ab, + 0xe198ac, + 0xe198ad, + 0xe198ae, + 0xe198af, + 0xe198b0, + 0xe198b1, + 0xe198b2, + 0xe198b3, + 0xe198b4, + 0xe198b5, + 0xe198b6, + 0xe198b7, + 0xe198b8, + 0xe198b9, + 0xe198ba, + 0xe198bb, + 0xe198bc, + 0xe198bd, + 0xe198be, + 0xe198bf, + 0xe19980, + 0xe19981, + 0xe19982, + 0xe19983, + 0xe19984, + 0xe19985, + 0xe19986, + 0xe19987, + 0xe19988, + 0xe19989, + 0xe1998a, + 0xe1998b, + 0xe1998c, + 0xe1998d, + 0xe1998e, + 0xe1998f, + 0xe19990, + 0xe19991, + 0xe19992, + 0xe19993, + 0xe19994, + 0xe19995, + 0xe19996, + 0xe19997, + 0xe19998, + 0xe19999, + 0xe1999a, + 0xe1999b, + 0xe1999c, + 0xe1999d, + 0xe1999e, + 0xe1999f, + 0xe199a0, + 0xe199a1, + 0xe199a2, + 0xe199a3, + 0xe199a4, + 0xe199a5, + 0xe199a6, + 0xe199a7, + 0xe199a8, + 0xe199a9, + 0xe199aa, + 0xe199ab, + 0xe199ac, + 0xe199ad, + 0xe199ae, + 0xe199af, + 0xe199b0, + 0xe199b1, + 0xe199b2, + 0xe199b3, + 0xe199b4, + 0xe199b5, + 0xe199b6, + 0xe199b7, + 0xe199b8, + 0xe199b9, + 0xe199ba, + 0xe199bb, + 0xe199bc, + 0xe199bd, + 0xe199be, + 0xe199bf, + 0xe19a80, + 0xe19a81, + 0xe19a82, + 0xe19a83, + 0xe19a84, + 0xe19a85, + 0xe19a86, + 0xe19a87, + 0xe19a88, + 0xe19a89, + 0xe19a8a, + 0xe19a8b, + 0xe19a8c, + 0xe19a8d, + 0xe19a8e, + 0xe19a8f, + 0xe19a90, + 0xe19a91, + 0xe19a92, + 0xe19a93, + 0xe19a94, + 0xe19a95, + 0xe19a96, + 0xe19a97, + 0xe19a98, + 0xe19a99, + 0xe19a9a, + 0xe19a9b, + 0xe19a9c, + 0xe19a9d, + 0xe19a9e, + 0xe19a9f, + 0xe19aa0, + 0xe19aa1, + 0xe19aa2, + 0xe19aa3, + 0xe19aa4, + 0xe19aa5, + 0xe19aa6, + 0xe19aa7, + 0xe19aa8, + 0xe19aa9, + 0xe19aaa, + 0xe19aab, + 0xe19aac, + 0xe19aad, + 0xe19aae, + 0xe19aaf, + 0xe19ab0, + 0xe19ab1, + 0xe19ab2, + 0xe19ab3, + 0xe19ab4, + 0xe19ab5, + 0xe19ab6, + 0xe19ab7, + 0xe19ab8, + 0xe19ab9, + 0xe19aba, + 0xe19abb, + 0xe19abc, + 0xe19abd, + 0xe19abe, + 0xe19abf, + 0xe19b80, + 0xe19b81, + 0xe19b82, + 0xe19b83, + 0xe19b84, + 0xe19b85, + 0xe19b86, + 0xe19b87, + 0xe19b88, + 0xe19b89, + 0xe19b8a, + 0xe19b8b, + 0xe19b8c, + 0xe19b8d, + 0xe19b8e, + 0xe19b8f, + 0xe19b90, + 0xe19b91, + 0xe19b92, + 0xe19b93, + 0xe19b94, + 0xe19b95, + 0xe19b96, + 0xe19b97, + 0xe19b98, + 0xe19b99, + 0xe19b9a, + 0xe19b9b, + 0xe19b9c, + 0xe19b9d, + 0xe19b9e, + 0xe19b9f, + 0xe19ba0, + 0xe19ba1, + 0xe19ba2, + 0xe19ba3, + 0xe19ba4, + 0xe19ba5, + 0xe19ba6, + 0xe19ba7, + 0xe19ba8, + 0xe19ba9, + 0xe19baa, + 0xe19bab, + 0xe19bac, + 0xe19bad, + 0xe19bae, + 0xe19baf, + 0xe19bb0, + 0xe19bb1, + 0xe19bb2, + 0xe19bb3, + 0xe19bb4, + 0xe19bb5, + 0xe19bb6, + 0xe19bb7, + 0xe19bb8, + 0xe19bb9, + 0xe19bba, + 0xe19bbb, + 0xe19bbc, + 0xe19bbd, + 0xe19bbe, + 0xe19bbf, + 0xe19c80, + 0xe19c81, + 0xe19c82, + 0xe19c83, + 0xe19c84, + 0xe19c85, + 0xe19c86, + 0xe19c87, + 0xe19c88, + 0xe19c89, + 0xe19c8a, + 0xe19c8b, + 0xe19c8c, + 0xe19c8d, + 0xe19c8e, + 0xe19c8f, + 0xe19c90, + 0xe19c91, + 0xe19c92, + 0xe19c93, + 0xe19c94, + 0xe19c95, + 0xe19c96, + 0xe19c97, + 0xe19c98, + 0xe19c99, + 0xe19c9a, + 0xe19c9b, + 0xe19c9c, + 0xe19c9d, + 0xe19c9e, + 0xe19c9f, + 0xe19ca0, + 0xe19ca1, + 0xe19ca2, + 0xe19ca3, + 0xe19ca4, + 0xe19ca5, + 0xe19ca6, + 0xe19ca7, + 0xe19ca8, + 0xe19ca9, + 0xe19caa, + 0xe19cab, + 0xe19cac, + 0xe19cad, + 0xe19cae, + 0xe19caf, + 0xe19cb0, + 0xe19cb1, + 0xe19cb2, + 0xe19cb3, + 0xe19cb4, + 0xe19cb5, + 0xe19cb6, + 0xe19cb7, + 0xe19cb8, + 0xe19cb9, + 0xe19cba, + 0xe19cbb, + 0xe19cbc, + 0xe19cbd, + 0xe19cbe, + 0xe19cbf, + 0xe19d80, + 0xe19d81, + 0xe19d82, + 0xe19d83, + 0xe19d84, + 0xe19d85, + 0xe19d86, + 0xe19d87, + 0xe19d88, + 0xe19d89, + 0xe19d8a, + 0xe19d8b, + 0xe19d8c, + 0xe19d8d, + 0xe19d8e, + 0xe19d8f, + 0xe19d90, + 0xe19d91, + 0xe19d92, + 0xe19d93, + 0xe19d94, + 0xe19d95, + 0xe19d96, + 0xe19d97, + 0xe19d98, + 0xe19d99, + 0xe19d9a, + 0xe19d9b, + 0xe19d9c, + 0xe19d9d, + 0xe19d9e, + 0xe19d9f, + 0xe19da0, + 0xe19da1, + 0xe19da2, + 0xe19da3, + 0xe19da4, + 0xe19da5, + 0xe19da6, + 0xe19da7, + 0xe19da8, + 0xe19da9, + 0xe19daa, + 0xe19dab, + 0xe19dac, + 0xe19dad, + 0xe19dae, + 0xe19daf, + 0xe19db0, + 0xe19db1, + 0xe19db2, + 0xe19db3, + 0xe19db4, + 0xe19db5, + 0xe19db6, + 0xe19db7, + 0xe19db8, + 0xe19db9, + 0xe19dba, + 0xe19dbb, + 0xe19dbc, + 0xe19dbd, + 0xe19dbe, + 0xe19dbf, + 0xe19e80, + 0xe19e81, + 0xe19e82, + 0xe19e83, + 0xe19e84, + 0xe19e85, + 0xe19e86, + 0xe19e87, + 0xe19e88, + 0xe19e89, + 0xe19e8a, + 0xe19e8b, + 0xe19e8c, + 0xe19e8d, + 0xe19e8e, + 0xe19e8f, + 0xe19e90, + 0xe19e91, + 0xe19e92, + 0xe19e93, + 0xe19e94, + 0xe19e95, + 0xe19e96, + 0xe19e97, + 0xe19e98, + 0xe19e99, + 0xe19e9a, + 0xe19e9b, + 0xe19e9c, + 0xe19e9d, + 0xe19e9e, + 0xe19e9f, + 0xe19ea0, + 0xe19ea1, + 0xe19ea2, + 0xe19ea3, + 0xe19ea4, + 0xe19ea5, + 0xe19ea6, + 0xe19ea7, + 0xe19ea8, + 0xe19ea9, + 0xe19eaa, + 0xe19eab, + 0xe19eac, + 0xe19ead, + 0xe19eae, + 0xe19eaf, + 0xe19eb0, + 0xe19eb1, + 0xe19eb2, + 0xe19eb3, + 0xe19eb4, + 0xe19eb5, + 0xe19eb6, + 0xe19eb7, + 0xe19eb8, + 0xe19eb9, + 0xe19eba, + 0xe19ebb, + 0xe19ebc, + 0xe19ebd, + 0xe19ebe, + 0xe19ebf, + 0xe19f80, + 0xe19f81, + 0xe19f82, + 0xe19f83, + 0xe19f84, + 0xe19f85, + 0xe19f86, + 0xe19f87, + 0xe19f88, + 0xe19f89, + 0xe19f8a, + 0xe19f8b, + 0xe19f8c, + 0xe19f8d, + 0xe19f8e, + 0xe19f8f, + 0xe19f90, + 0xe19f91, + 0xe19f92, + 0xe19f93, + 0xe19f94, + 0xe19f95, + 0xe19f96, + 0xe19f97, + 0xe19f98, + 0xe19f99, + 0xe19f9a, + 0xe19f9b, + 0xe19f9c, + 0xe19f9d, + 0xe19f9e, + 0xe19f9f, + 0xe19fa0, + 0xe19fa1, + 0xe19fa2, + 0xe19fa3, + 0xe19fa4, + 0xe19fa5, + 0xe19fa6, + 0xe19fa7, + 0xe19fa8, + 0xe19fa9, + 0xe19faa, + 0xe19fab, + 0xe19fac, + 0xe19fad, + 0xe19fae, + 0xe19faf, + 0xe19fb0, + 0xe19fb1, + 0xe19fb2, + 0xe19fb3, + 0xe19fb4, + 0xe19fb5, + 0xe19fb6, + 0xe19fb7, + 0xe19fb8, + 0xe19fb9, + 0xe19fba, + 0xe19fbb, + 0xe19fbc, + 0xe19fbd, + 0xe19fbe, + 0xe19fbf, + 0xe1a080, + 0xe1a081, + 0xe1a082, + 0xe1a083, + 0xe1a084, + 0xe1a085, + 0xe1a086, + 0xe1a087, + 0xe1a088, + 0xe1a089, + 0xe1a08a, + 0xe1a08b, + 0xe1a08c, + 0xe1a08d, + 0xe1a08e, + 0xe1a08f, + 0xe1a090, + 0xe1a091, + 0xe1a092, + 0xe1a093, + 0xe1a094, + 0xe1a095, + 0xe1a096, + 0xe1a097, + 0xe1a098, + 0xe1a099, + 0xe1a09a, + 0xe1a09b, + 0xe1a09c, + 0xe1a09d, + 0xe1a09e, + 0xe1a09f, + 0xe1a0a0, + 0xe1a0a1, + 0xe1a0a2, + 0xe1a0a3, + 0xe1a0a4, + 0xe1a0a5, + 0xe1a0a6, + 0xe1a0a7, + 0xe1a0a8, + 0xe1a0a9, + 0xe1a0aa, + 0xe1a0ab, + 0xe1a0ac, + 0xe1a0ad, + 0xe1a0ae, + 0xe1a0af, + 0xe1a0b0, + 0xe1a0b1, + 0xe1a0b2, + 0xe1a0b3, + 0xe1a0b4, + 0xe1a0b5, + 0xe1a0b6, + 0xe1a0b7, + 0xe1a0b8, + 0xe1a0b9, + 0xe1a0ba, + 0xe1a0bb, + 0xe1a0bc, + 0xe1a0bd, + 0xe1a0be, + 0xe1a0bf, + 0xe1a180, + 0xe1a181, + 0xe1a182, + 0xe1a183, + 0xe1a184, + 0xe1a185, + 0xe1a186, + 0xe1a187, + 0xe1a188, + 0xe1a189, + 0xe1a18a, + 0xe1a18b, + 0xe1a18c, + 0xe1a18d, + 0xe1a18e, + 0xe1a18f, + 0xe1a190, + 0xe1a191, + 0xe1a192, + 0xe1a193, + 0xe1a194, + 0xe1a195, + 0xe1a196, + 0xe1a197, + 0xe1a198, + 0xe1a199, + 0xe1a19a, + 0xe1a19b, + 0xe1a19c, + 0xe1a19d, + 0xe1a19e, + 0xe1a19f, + 0xe1a1a0, + 0xe1a1a1, + 0xe1a1a2, + 0xe1a1a3, + 0xe1a1a4, + 0xe1a1a5, + 0xe1a1a6, + 0xe1a1a7, + 0xe1a1a8, + 0xe1a1a9, + 0xe1a1aa, + 0xe1a1ab, + 0xe1a1ac, + 0xe1a1ad, + 0xe1a1ae, + 0xe1a1af, + 0xe1a1b0, + 0xe1a1b1, + 0xe1a1b2, + 0xe1a1b3, + 0xe1a1b4, + 0xe1a1b5, + 0xe1a1b6, + 0xe1a1b7, + 0xe1a1b8, + 0xe1a1b9, + 0xe1a1ba, + 0xe1a1bb, + 0xe1a1bc, + 0xe1a1bd, + 0xe1a1be, + 0xe1a1bf, + 0xe1a280, + 0xe1a281, + 0xe1a282, + 0xe1a283, + 0xe1a284, + 0xe1a285, + 0xe1a286, + 0xe1a287, + 0xe1a288, + 0xe1a289, + 0xe1a28a, + 0xe1a28b, + 0xe1a28c, + 0xe1a28d, + 0xe1a28e, + 0xe1a28f, + 0xe1a290, + 0xe1a291, + 0xe1a292, + 0xe1a293, + 0xe1a294, + 0xe1a295, + 0xe1a296, + 0xe1a297, + 0xe1a298, + 0xe1a299, + 0xe1a29a, + 0xe1a29b, + 0xe1a29c, + 0xe1a29d, + 0xe1a29e, + 0xe1a29f, + 0xe1a2a0, + 0xe1a2a1, + 0xe1a2a2, + 0xe1a2a3, + 0xe1a2a4, + 0xe1a2a5, + 0xe1a2a6, + 0xe1a2a7, + 0xe1a2a8, + 0xe1a2a9, + 0xe1a2aa, + 0xe1a2ab, + 0xe1a2ac, + 0xe1a2ad, + 0xe1a2ae, + 0xe1a2af, + 0xe1a2b0, + 0xe1a2b1, + 0xe1a2b2, + 0xe1a2b3, + 0xe1a2b4, + 0xe1a2b5, + 0xe1a2b6, + 0xe1a2b7, + 0xe1a2b8, + 0xe1a2b9, + 0xe1a2ba, + 0xe1a2bb, + 0xe1a2bc, + 0xe1a2bd, + 0xe1a2be, + 0xe1a2bf, + 0xe1a380, + 0xe1a381, + 0xe1a382, + 0xe1a383, + 0xe1a384, + 0xe1a385, + 0xe1a386, + 0xe1a387, + 0xe1a388, + 0xe1a389, + 0xe1a38a, + 0xe1a38b, + 0xe1a38c, + 0xe1a38d, + 0xe1a38e, + 0xe1a38f, + 0xe1a390, + 0xe1a391, + 0xe1a392, + 0xe1a393, + 0xe1a394, + 0xe1a395, + 0xe1a396, + 0xe1a397, + 0xe1a398, + 0xe1a399, + 0xe1a39a, + 0xe1a39b, + 0xe1a39c, + 0xe1a39d, + 0xe1a39e, + 0xe1a39f, + 0xe1a3a0, + 0xe1a3a1, + 0xe1a3a2, + 0xe1a3a3, + 0xe1a3a4, + 0xe1a3a5, + 0xe1a3a6, + 0xe1a3a7, + 0xe1a3a8, + 0xe1a3a9, + 0xe1a3aa, + 0xe1a3ab, + 0xe1a3ac, + 0xe1a3ad, + 0xe1a3ae, + 0xe1a3af, + 0xe1a3b0, + 0xe1a3b1, + 0xe1a3b2, + 0xe1a3b3, + 0xe1a3b4, + 0xe1a3b5, + 0xe1a3b6, + 0xe1a3b7, + 0xe1a3b8, + 0xe1a3b9, + 0xe1a3ba, + 0xe1a3bb, + 0xe1a3bc, + 0xe1a3bd, + 0xe1a3be, + 0xe1a3bf, + 0xe1a480, + 0xe1a481, + 0xe1a482, + 0xe1a483, + 0xe1a484, + 0xe1a485, + 0xe1a486, + 0xe1a487, + 0xe1a488, + 0xe1a489, + 0xe1a48a, + 0xe1a48b, + 0xe1a48c, + 0xe1a48d, + 0xe1a48e, + 0xe1a48f, + 0xe1a490, + 0xe1a491, + 0xe1a492, + 0xe1a493, + 0xe1a494, + 0xe1a495, + 0xe1a496, + 0xe1a497, + 0xe1a498, + 0xe1a499, + 0xe1a49a, + 0xe1a49b, + 0xe1a49c, + 0xe1a49d, + 0xe1a49e, + 0xe1a49f, + 0xe1a4a0, + 0xe1a4a1, + 0xe1a4a2, + 0xe1a4a3, + 0xe1a4a4, + 0xe1a4a5, + 0xe1a4a6, + 0xe1a4a7, + 0xe1a4a8, + 0xe1a4a9, + 0xe1a4aa, + 0xe1a4ab, + 0xe1a4ac, + 0xe1a4ad, + 0xe1a4ae, + 0xe1a4af, + 0xe1a4b0, + 0xe1a4b1, + 0xe1a4b2, + 0xe1a4b3, + 0xe1a4b4, + 0xe1a4b5, + 0xe1a4b6, + 0xe1a4b7, + 0xe1a4b8, + 0xe1a4b9, + 0xe1a4ba, + 0xe1a4bb, + 0xe1a4bc, + 0xe1a4bd, + 0xe1a4be, + 0xe1a4bf, + 0xe1a580, + 0xe1a581, + 0xe1a582, + 0xe1a583, + 0xe1a584, + 0xe1a585, + 0xe1a586, + 0xe1a587, + 0xe1a588, + 0xe1a589, + 0xe1a58a, + 0xe1a58b, + 0xe1a58c, + 0xe1a58d, + 0xe1a58e, + 0xe1a58f, + 0xe1a590, + 0xe1a591, + 0xe1a592, + 0xe1a593, + 0xe1a594, + 0xe1a595, + 0xe1a596, + 0xe1a597, + 0xe1a598, + 0xe1a599, + 0xe1a59a, + 0xe1a59b, + 0xe1a59c, + 0xe1a59d, + 0xe1a59e, + 0xe1a59f, + 0xe1a5a0, + 0xe1a5a1, + 0xe1a5a2, + 0xe1a5a3, + 0xe1a5a4, + 0xe1a5a5, + 0xe1a5a6, + 0xe1a5a7, + 0xe1a5a8, + 0xe1a5a9, + 0xe1a5aa, + 0xe1a5ab, + 0xe1a5ac, + 0xe1a5ad, + 0xe1a5ae, + 0xe1a5af, + 0xe1a5b0, + 0xe1a5b1, + 0xe1a5b2, + 0xe1a5b3, + 0xe1a5b4, + 0xe1a5b5, + 0xe1a5b6, + 0xe1a5b7, + 0xe1a5b8, + 0xe1a5b9, + 0xe1a5ba, + 0xe1a5bb, + 0xe1a5bc, + 0xe1a5bd, + 0xe1a5be, + 0xe1a5bf, + 0xe1a680, + 0xe1a681, + 0xe1a682, + 0xe1a683, + 0xe1a684, + 0xe1a685, + 0xe1a686, + 0xe1a687, + 0xe1a688, + 0xe1a689, + 0xe1a68a, + 0xe1a68b, + 0xe1a68c, + 0xe1a68d, + 0xe1a68e, + 0xe1a68f, + 0xe1a690, + 0xe1a691, + 0xe1a692, + 0xe1a693, + 0xe1a694, + 0xe1a695, + 0xe1a696, + 0xe1a697, + 0xe1a698, + 0xe1a699, + 0xe1a69a, + 0xe1a69b, + 0xe1a69c, + 0xe1a69d, + 0xe1a69e, + 0xe1a69f, + 0xe1a6a0, + 0xe1a6a1, + 0xe1a6a2, + 0xe1a6a3, + 0xe1a6a4, + 0xe1a6a5, + 0xe1a6a6, + 0xe1a6a7, + 0xe1a6a8, + 0xe1a6a9, + 0xe1a6aa, + 0xe1a6ab, + 0xe1a6ac, + 0xe1a6ad, + 0xe1a6ae, + 0xe1a6af, + 0xe1a6b0, + 0xe1a6b1, + 0xe1a6b2, + 0xe1a6b3, + 0xe1a6b4, + 0xe1a6b5, + 0xe1a6b6, + 0xe1a6b7, + 0xe1a6b8, + 0xe1a6b9, + 0xe1a6ba, + 0xe1a6bb, + 0xe1a6bc, + 0xe1a6bd, + 0xe1a6be, + 0xe1a6bf, + 0xe1a780, + 0xe1a781, + 0xe1a782, + 0xe1a783, + 0xe1a784, + 0xe1a785, + 0xe1a786, + 0xe1a787, + 0xe1a788, + 0xe1a789, + 0xe1a78a, + 0xe1a78b, + 0xe1a78c, + 0xe1a78d, + 0xe1a78e, + 0xe1a78f, + 0xe1a790, + 0xe1a791, + 0xe1a792, + 0xe1a793, + 0xe1a794, + 0xe1a795, + 0xe1a796, + 0xe1a797, + 0xe1a798, + 0xe1a799, + 0xe1a79a, + 0xe1a79b, + 0xe1a79c, + 0xe1a79d, + 0xe1a79e, + 0xe1a79f, + 0xe1a7a0, + 0xe1a7a1, + 0xe1a7a2, + 0xe1a7a3, + 0xe1a7a4, + 0xe1a7a5, + 0xe1a7a6, + 0xe1a7a7, + 0xe1a7a8, + 0xe1a7a9, + 0xe1a7aa, + 0xe1a7ab, + 0xe1a7ac, + 0xe1a7ad, + 0xe1a7ae, + 0xe1a7af, + 0xe1a7b0, + 0xe1a7b1, + 0xe1a7b2, + 0xe1a7b3, + 0xe1a7b4, + 0xe1a7b5, + 0xe1a7b6, + 0xe1a7b7, + 0xe1a7b8, + 0xe1a7b9, + 0xe1a7ba, + 0xe1a7bb, + 0xe1a7bc, + 0xe1a7bd, + 0xe1a7be, + 0xe1a7bf, + 0xe1a880, + 0xe1a881, + 0xe1a882, + 0xe1a883, + 0xe1a884, + 0xe1a885, + 0xe1a886, + 0xe1a887, + 0xe1a888, + 0xe1a889, + 0xe1a88a, + 0xe1a88b, + 0xe1a88c, + 0xe1a88d, + 0xe1a88e, + 0xe1a88f, + 0xe1a890, + 0xe1a891, + 0xe1a892, + 0xe1a893, + 0xe1a894, + 0xe1a895, + 0xe1a896, + 0xe1a897, + 0xe1a898, + 0xe1a899, + 0xe1a89a, + 0xe1a89b, + 0xe1a89c, + 0xe1a89d, + 0xe1a89e, + 0xe1a89f, + 0xe1a8a0, + 0xe1a8a1, + 0xe1a8a2, + 0xe1a8a3, + 0xe1a8a4, + 0xe1a8a5, + 0xe1a8a6, + 0xe1a8a7, + 0xe1a8a8, + 0xe1a8a9, + 0xe1a8aa, + 0xe1a8ab, + 0xe1a8ac, + 0xe1a8ad, + 0xe1a8ae, + 0xe1a8af, + 0xe1a8b0, + 0xe1a8b1, + 0xe1a8b2, + 0xe1a8b3, + 0xe1a8b4, + 0xe1a8b5, + 0xe1a8b6, + 0xe1a8b7, + 0xe1a8b8, + 0xe1a8b9, + 0xe1a8ba, + 0xe1a8bb, + 0xe1a8bc, + 0xe1a8bd, + 0xe1a8be, + 0xe1a8bf, + 0xe1a980, + 0xe1a981, + 0xe1a982, + 0xe1a983, + 0xe1a984, + 0xe1a985, + 0xe1a986, + 0xe1a987, + 0xe1a988, + 0xe1a989, + 0xe1a98a, + 0xe1a98b, + 0xe1a98c, + 0xe1a98d, + 0xe1a98e, + 0xe1a98f, + 0xe1a990, + 0xe1a991, + 0xe1a992, + 0xe1a993, + 0xe1a994, + 0xe1a995, + 0xe1a996, + 0xe1a997, + 0xe1a998, + 0xe1a999, + 0xe1a99a, + 0xe1a99b, + 0xe1a99c, + 0xe1a99d, + 0xe1a99e, + 0xe1a99f, + 0xe1a9a0, + 0xe1a9a1, + 0xe1a9a2, + 0xe1a9a3, + 0xe1a9a4, + 0xe1a9a5, + 0xe1a9a6, + 0xe1a9a7, + 0xe1a9a8, + 0xe1a9a9, + 0xe1a9aa, + 0xe1a9ab, + 0xe1a9ac, + 0xe1a9ad, + 0xe1a9ae, + 0xe1a9af, + 0xe1a9b0, + 0xe1a9b1, + 0xe1a9b2, + 0xe1a9b3, + 0xe1a9b4, + 0xe1a9b5, + 0xe1a9b6, + 0xe1a9b7, + 0xe1a9b8, + 0xe1a9b9, + 0xe1a9ba, + 0xe1a9bb, + 0xe1a9bc, + 0xe1a9bd, + 0xe1a9be, + 0xe1a9bf, + 0xe1aa80, + 0xe1aa81, + 0xe1aa82, + 0xe1aa83, + 0xe1aa84, + 0xe1aa85, + 0xe1aa86, + 0xe1aa87, + 0xe1aa88, + 0xe1aa89, + 0xe1aa8a, + 0xe1aa8b, + 0xe1aa8c, + 0xe1aa8d, + 0xe1aa8e, + 0xe1aa8f, + 0xe1aa90, + 0xe1aa91, + 0xe1aa92, + 0xe1aa93, + 0xe1aa94, + 0xe1aa95, + 0xe1aa96, + 0xe1aa97, + 0xe1aa98, + 0xe1aa99, + 0xe1aa9a, + 0xe1aa9b, + 0xe1aa9c, + 0xe1aa9d, + 0xe1aa9e, + 0xe1aa9f, + 0xe1aaa0, + 0xe1aaa1, + 0xe1aaa2, + 0xe1aaa3, + 0xe1aaa4, + 0xe1aaa5, + 0xe1aaa6, + 0xe1aaa7, + 0xe1aaa8, + 0xe1aaa9, + 0xe1aaaa, + 0xe1aaab, + 0xe1aaac, + 0xe1aaad, + 0xe1aaae, + 0xe1aaaf, + 0xe1aab0, + 0xe1aab1, + 0xe1aab2, + 0xe1aab3, + 0xe1aab4, + 0xe1aab5, + 0xe1aab6, + 0xe1aab7, + 0xe1aab8, + 0xe1aab9, + 0xe1aaba, + 0xe1aabb, + 0xe1aabc, + 0xe1aabd, + 0xe1aabe, + 0xe1aabf, + 0xe1ab80, + 0xe1ab81, + 0xe1ab82, + 0xe1ab83, + 0xe1ab84, + 0xe1ab85, + 0xe1ab86, + 0xe1ab87, + 0xe1ab88, + 0xe1ab89, + 0xe1ab8a, + 0xe1ab8b, + 0xe1ab8c, + 0xe1ab8d, + 0xe1ab8e, + 0xe1ab8f, + 0xe1ab90, + 0xe1ab91, + 0xe1ab92, + 0xe1ab93, + 0xe1ab94, + 0xe1ab95, + 0xe1ab96, + 0xe1ab97, + 0xe1ab98, + 0xe1ab99, + 0xe1ab9a, + 0xe1ab9b, + 0xe1ab9c, + 0xe1ab9d, + 0xe1ab9e, + 0xe1ab9f, + 0xe1aba0, + 0xe1aba1, + 0xe1aba2, + 0xe1aba3, + 0xe1aba4, + 0xe1aba5, + 0xe1aba6, + 0xe1aba7, + 0xe1aba8, + 0xe1aba9, + 0xe1abaa, + 0xe1abab, + 0xe1abac, + 0xe1abad, + 0xe1abae, + 0xe1abaf, + 0xe1abb0, + 0xe1abb1, + 0xe1abb2, + 0xe1abb3, + 0xe1abb4, + 0xe1abb5, + 0xe1abb6, + 0xe1abb7, + 0xe1abb8, + 0xe1abb9, + 0xe1abba, + 0xe1abbb, + 0xe1abbc, + 0xe1abbd, + 0xe1abbe, + 0xe1abbf, + 0xe1ac80, + 0xe1ac81, + 0xe1ac82, + 0xe1ac83, + 0xe1ac84, + 0xe1ac85, + 0xe1ac86, + 0xe1ac87, + 0xe1ac88, + 0xe1ac89, + 0xe1ac8a, + 0xe1ac8b, + 0xe1ac8c, + 0xe1ac8d, + 0xe1ac8e, + 0xe1ac8f, + 0xe1ac90, + 0xe1ac91, + 0xe1ac92, + 0xe1ac93, + 0xe1ac94, + 0xe1ac95, + 0xe1ac96, + 0xe1ac97, + 0xe1ac98, + 0xe1ac99, + 0xe1ac9a, + 0xe1ac9b, + 0xe1ac9c, + 0xe1ac9d, + 0xe1ac9e, + 0xe1ac9f, + 0xe1aca0, + 0xe1aca1, + 0xe1aca2, + 0xe1aca3, + 0xe1aca4, + 0xe1aca5, + 0xe1aca6, + 0xe1aca7, + 0xe1aca8, + 0xe1aca9, + 0xe1acaa, + 0xe1acab, + 0xe1acac, + 0xe1acad, + 0xe1acae, + 0xe1acaf, + 0xe1acb0, + 0xe1acb1, + 0xe1acb2, + 0xe1acb3, + 0xe1acb4, + 0xe1acb5, + 0xe1acb6, + 0xe1acb7, + 0xe1acb8, + 0xe1acb9, + 0xe1acba, + 0xe1acbb, + 0xe1acbc, + 0xe1acbd, + 0xe1acbe, + 0xe1acbf, + 0xe1ad80, + 0xe1ad81, + 0xe1ad82, + 0xe1ad83, + 0xe1ad84, + 0xe1ad85, + 0xe1ad86, + 0xe1ad87, + 0xe1ad88, + 0xe1ad89, + 0xe1ad8a, + 0xe1ad8b, + 0xe1ad8c, + 0xe1ad8d, + 0xe1ad8e, + 0xe1ad8f, + 0xe1ad90, + 0xe1ad91, + 0xe1ad92, + 0xe1ad93, + 0xe1ad94, + 0xe1ad95, + 0xe1ad96, + 0xe1ad97, + 0xe1ad98, + 0xe1ad99, + 0xe1ad9a, + 0xe1ad9b, + 0xe1ad9c, + 0xe1ad9d, + 0xe1ad9e, + 0xe1ad9f, + 0xe1ada0, + 0xe1ada1, + 0xe1ada2, + 0xe1ada3, + 0xe1ada4, + 0xe1ada5, + 0xe1ada6, + 0xe1ada7, + 0xe1ada8, + 0xe1ada9, + 0xe1adaa, + 0xe1adab, + 0xe1adac, + 0xe1adad, + 0xe1adae, + 0xe1adaf, + 0xe1adb0, + 0xe1adb1, + 0xe1adb2, + 0xe1adb3, + 0xe1adb4, + 0xe1adb5, + 0xe1adb6, + 0xe1adb7, + 0xe1adb8, + 0xe1adb9, + 0xe1adba, + 0xe1adbb, + 0xe1adbc, + 0xe1adbd, + 0xe1adbe, + 0xe1adbf, + 0xe1ae80, + 0xe1ae81, + 0xe1ae82, + 0xe1ae83, + 0xe1ae84, + 0xe1ae85, + 0xe1ae86, + 0xe1ae87, + 0xe1ae88, + 0xe1ae89, + 0xe1ae8a, + 0xe1ae8b, + 0xe1ae8c, + 0xe1ae8d, + 0xe1ae8e, + 0xe1ae8f, + 0xe1ae90, + 0xe1ae91, + 0xe1ae92, + 0xe1ae93, + 0xe1ae94, + 0xe1ae95, + 0xe1ae96, + 0xe1ae97, + 0xe1ae98, + 0xe1ae99, + 0xe1ae9a, + 0xe1ae9b, + 0xe1ae9c, + 0xe1ae9d, + 0xe1ae9e, + 0xe1ae9f, + 0xe1aea0, + 0xe1aea1, + 0xe1aea2, + 0xe1aea3, + 0xe1aea4, + 0xe1aea5, + 0xe1aea6, + 0xe1aea7, + 0xe1aea8, + 0xe1aea9, + 0xe1aeaa, + 0xe1aeab, + 0xe1aeac, + 0xe1aead, + 0xe1aeae, + 0xe1aeaf, + 0xe1aeb0, + 0xe1aeb1, + 0xe1aeb2, + 0xe1aeb3, + 0xe1aeb4, + 0xe1aeb5, + 0xe1aeb6, + 0xe1aeb7, + 0xe1aeb8, + 0xe1aeb9, + 0xe1aeba, + 0xe1aebb, + 0xe1aebc, + 0xe1aebd, + 0xe1aebe, + 0xe1aebf, + 0xe1af80, + 0xe1af81, + 0xe1af82, + 0xe1af83, + 0xe1af84, + 0xe1af85, + 0xe1af86, + 0xe1af87, + 0xe1af88, + 0xe1af89, + 0xe1af8a, + 0xe1af8b, + 0xe1af8c, + 0xe1af8d, + 0xe1af8e, + 0xe1af8f, + 0xe1af90, + 0xe1af91, + 0xe1af92, + 0xe1af93, + 0xe1af94, + 0xe1af95, + 0xe1af96, + 0xe1af97, + 0xe1af98, + 0xe1af99, + 0xe1af9a, + 0xe1af9b, + 0xe1af9c, + 0xe1af9d, + 0xe1af9e, + 0xe1af9f, + 0xe1afa0, + 0xe1afa1, + 0xe1afa2, + 0xe1afa3, + 0xe1afa4, + 0xe1afa5, + 0xe1afa6, + 0xe1afa7, + 0xe1afa8, + 0xe1afa9, + 0xe1afaa, + 0xe1afab, + 0xe1afac, + 0xe1afad, + 0xe1afae, + 0xe1afaf, + 0xe1afb0, + 0xe1afb1, + 0xe1afb2, + 0xe1afb3, + 0xe1afb4, + 0xe1afb5, + 0xe1afb6, + 0xe1afb7, + 0xe1afb8, + 0xe1afb9, + 0xe1afba, + 0xe1afbb, + 0xe1afbc, + 0xe1afbd, + 0xe1afbe, + 0xe1afbf, + 0xe1b080, + 0xe1b081, + 0xe1b082, + 0xe1b083, + 0xe1b084, + 0xe1b085, + 0xe1b086, + 0xe1b087, + 0xe1b088, + 0xe1b089, + 0xe1b08a, + 0xe1b08b, + 0xe1b08c, + 0xe1b08d, + 0xe1b08e, + 0xe1b08f, + 0xe1b090, + 0xe1b091, + 0xe1b092, + 0xe1b093, + 0xe1b094, + 0xe1b095, + 0xe1b096, + 0xe1b097, + 0xe1b098, + 0xe1b099, + 0xe1b09a, + 0xe1b09b, + 0xe1b09c, + 0xe1b09d, + 0xe1b09e, + 0xe1b09f, + 0xe1b0a0, + 0xe1b0a1, + 0xe1b0a2, + 0xe1b0a3, + 0xe1b0a4, + 0xe1b0a5, + 0xe1b0a6, + 0xe1b0a7, + 0xe1b0a8, + 0xe1b0a9, + 0xe1b0aa, + 0xe1b0ab, + 0xe1b0ac, + 0xe1b0ad, + 0xe1b0ae, + 0xe1b0af, + 0xe1b0b0, + 0xe1b0b1, + 0xe1b0b2, + 0xe1b0b3, + 0xe1b0b4, + 0xe1b0b5, + 0xe1b0b6, + 0xe1b0b7, + 0xe1b0b8, + 0xe1b0b9, + 0xe1b0ba, + 0xe1b0bb, + 0xe1b0bc, + 0xe1b0bd, + 0xe1b0be, + 0xe1b0bf, + 0xe1b180, + 0xe1b181, + 0xe1b182, + 0xe1b183, + 0xe1b184, + 0xe1b185, + 0xe1b186, + 0xe1b187, + 0xe1b188, + 0xe1b189, + 0xe1b18a, + 0xe1b18b, + 0xe1b18c, + 0xe1b18d, + 0xe1b18e, + 0xe1b18f, + 0xe1b190, + 0xe1b191, + 0xe1b192, + 0xe1b193, + 0xe1b194, + 0xe1b195, + 0xe1b196, + 0xe1b197, + 0xe1b198, + 0xe1b199, + 0xe1b19a, + 0xe1b19b, + 0xe1b19c, + 0xe1b19d, + 0xe1b19e, + 0xe1b19f, + 0xe1b1a0, + 0xe1b1a1, + 0xe1b1a2, + 0xe1b1a3, + 0xe1b1a4, + 0xe1b1a5, + 0xe1b1a6, + 0xe1b1a7, + 0xe1b1a8, + 0xe1b1a9, + 0xe1b1aa, + 0xe1b1ab, + 0xe1b1ac, + 0xe1b1ad, + 0xe1b1ae, + 0xe1b1af, + 0xe1b1b0, + 0xe1b1b1, + 0xe1b1b2, + 0xe1b1b3, + 0xe1b1b4, + 0xe1b1b5, + 0xe1b1b6, + 0xe1b1b7, + 0xe1b1b8, + 0xe1b1b9, + 0xe1b1ba, + 0xe1b1bb, + 0xe1b1bc, + 0xe1b1bd, + 0xe1b1be, + 0xe1b1bf, + 0xe1b280, + 0xe1b281, + 0xe1b282, + 0xe1b283, + 0xe1b284, + 0xe1b285, + 0xe1b286, + 0xe1b287, + 0xe1b288, + 0xe1b289, + 0xe1b28a, + 0xe1b28b, + 0xe1b28c, + 0xe1b28d, + 0xe1b28e, + 0xe1b28f, + 0xe1b290, + 0xe1b291, + 0xe1b292, + 0xe1b293, + 0xe1b294, + 0xe1b295, + 0xe1b296, + 0xe1b297, + 0xe1b298, + 0xe1b299, + 0xe1b29a, + 0xe1b29b, + 0xe1b29c, + 0xe1b29d, + 0xe1b29e, + 0xe1b29f, + 0xe1b2a0, + 0xe1b2a1, + 0xe1b2a2, + 0xe1b2a3, + 0xe1b2a4, + 0xe1b2a5, + 0xe1b2a6, + 0xe1b2a7, + 0xe1b2a8, + 0xe1b2a9, + 0xe1b2aa, + 0xe1b2ab, + 0xe1b2ac, + 0xe1b2ad, + 0xe1b2ae, + 0xe1b2af, + 0xe1b2b0, + 0xe1b2b1, + 0xe1b2b2, + 0xe1b2b3, + 0xe1b2b4, + 0xe1b2b5, + 0xe1b2b6, + 0xe1b2b7, + 0xe1b2b8, + 0xe1b2b9, + 0xe1b2ba, + 0xe1b2bb, + 0xe1b2bc, + 0xe1b2bd, + 0xe1b2be, + 0xe1b2bf, + 0xe1b380, + 0xe1b381, + 0xe1b382, + 0xe1b383, + 0xe1b384, + 0xe1b385, + 0xe1b386, + 0xe1b387, + 0xe1b388, + 0xe1b389, + 0xe1b38a, + 0xe1b38b, + 0xe1b38c, + 0xe1b38d, + 0xe1b38e, + 0xe1b38f, + 0xe1b390, + 0xe1b391, + 0xe1b392, + 0xe1b393, + 0xe1b394, + 0xe1b395, + 0xe1b396, + 0xe1b397, + 0xe1b398, + 0xe1b399, + 0xe1b39a, + 0xe1b39b, + 0xe1b39c, + 0xe1b39d, + 0xe1b39e, + 0xe1b39f, + 0xe1b3a0, + 0xe1b3a1, + 0xe1b3a2, + 0xe1b3a3, + 0xe1b3a4, + 0xe1b3a5, + 0xe1b3a6, + 0xe1b3a7, + 0xe1b3a8, + 0xe1b3a9, + 0xe1b3aa, + 0xe1b3ab, + 0xe1b3ac, + 0xe1b3ad, + 0xe1b3ae, + 0xe1b3af, + 0xe1b3b0, + 0xe1b3b1, + 0xe1b3b2, + 0xe1b3b3, + 0xe1b3b4, + 0xe1b3b5, + 0xe1b3b6, + 0xe1b3b7, + 0xe1b3b8, + 0xe1b3b9, + 0xe1b3ba, + 0xe1b3bb, + 0xe1b3bc, + 0xe1b3bd, + 0xe1b3be, + 0xe1b3bf, + 0xe1b480, + 0xe1b481, + 0xe1b482, + 0xe1b483, + 0xe1b484, + 0xe1b485, + 0xe1b486, + 0xe1b487, + 0xe1b488, + 0xe1b489, + 0xe1b48a, + 0xe1b48b, + 0xe1b48c, + 0xe1b48d, + 0xe1b48e, + 0xe1b48f, + 0xe1b490, + 0xe1b491, + 0xe1b492, + 0xe1b493, + 0xe1b494, + 0xe1b495, + 0xe1b496, + 0xe1b497, + 0xe1b498, + 0xe1b499, + 0xe1b49a, + 0xe1b49b, + 0xe1b49c, + 0xe1b49d, + 0xe1b49e, + 0xe1b49f, + 0xe1b4a0, + 0xe1b4a1, + 0xe1b4a2, + 0xe1b4a3, + 0xe1b4a4, + 0xe1b4a5, + 0xe1b4a6, + 0xe1b4a7, + 0xe1b4a8, + 0xe1b4a9, + 0xe1b4aa, + 0xe1b4ab, + 0xe1b4ac, + 0xe1b4ad, + 0xe1b4ae, + 0xe1b4af, + 0xe1b4b0, + 0xe1b4b1, + 0xe1b4b2, + 0xe1b4b3, + 0xe1b4b4, + 0xe1b4b5, + 0xe1b4b6, + 0xe1b4b7, + 0xe1b4b8, + 0xe1b4b9, + 0xe1b4ba, + 0xe1b4bb, + 0xe1b4bc, + 0xe1b4bd, + 0xe1b4be, + 0xe1b4bf, + 0xe1b580, + 0xe1b581, + 0xe1b582, + 0xe1b583, + 0xe1b584, + 0xe1b585, + 0xe1b586, + 0xe1b587, + 0xe1b588, + 0xe1b589, + 0xe1b58a, + 0xe1b58b, + 0xe1b58c, + 0xe1b58d, + 0xe1b58e, + 0xe1b58f, + 0xe1b590, + 0xe1b591, + 0xe1b592, + 0xe1b593, + 0xe1b594, + 0xe1b595, + 0xe1b596, + 0xe1b597, + 0xe1b598, + 0xe1b599, + 0xe1b59a, + 0xe1b59b, + 0xe1b59c, + 0xe1b59d, + 0xe1b59e, + 0xe1b59f, + 0xe1b5a0, + 0xe1b5a1, + 0xe1b5a2, + 0xe1b5a3, + 0xe1b5a4, + 0xe1b5a5, + 0xe1b5a6, + 0xe1b5a7, + 0xe1b5a8, + 0xe1b5a9, + 0xe1b5aa, + 0xe1b5ab, + 0xe1b5ac, + 0xe1b5ad, + 0xe1b5ae, + 0xe1b5af, + 0xe1b5b0, + 0xe1b5b1, + 0xe1b5b2, + 0xe1b5b3, + 0xe1b5b4, + 0xe1b5b5, + 0xe1b5b6, + 0xe1b5b7, + 0xe1b5b8, + 0xe1b5b9, + 0xe1b5ba, + 0xe1b5bb, + 0xe1b5bc, + 0xe1b5bd, + 0xe1b5be, + 0xe1b5bf, + 0xe1b680, + 0xe1b681, + 0xe1b682, + 0xe1b683, + 0xe1b684, + 0xe1b685, + 0xe1b686, + 0xe1b687, + 0xe1b688, + 0xe1b689, + 0xe1b68a, + 0xe1b68b, + 0xe1b68c, + 0xe1b68d, + 0xe1b68e, + 0xe1b68f, + 0xe1b690, + 0xe1b691, + 0xe1b692, + 0xe1b693, + 0xe1b694, + 0xe1b695, + 0xe1b696, + 0xe1b697, + 0xe1b698, + 0xe1b699, + 0xe1b69a, + 0xe1b69b, + 0xe1b69c, + 0xe1b69d, + 0xe1b69e, + 0xe1b69f, + 0xe1b6a0, + 0xe1b6a1, + 0xe1b6a2, + 0xe1b6a3, + 0xe1b6a4, + 0xe1b6a5, + 0xe1b6a6, + 0xe1b6a7, + 0xe1b6a8, + 0xe1b6a9, + 0xe1b6aa, + 0xe1b6ab, + 0xe1b6ac, + 0xe1b6ad, + 0xe1b6ae, + 0xe1b6af, + 0xe1b6b0, + 0xe1b6b1, + 0xe1b6b2, + 0xe1b6b3, + 0xe1b6b4, + 0xe1b6b5, + 0xe1b6b6, + 0xe1b6b7, + 0xe1b6b8, + 0xe1b6b9, + 0xe1b6ba, + 0xe1b6bb, + 0xe1b6bc, + 0xe1b6bd, + 0xe1b6be, + 0xe1b6bf, + 0xe1b780, + 0xe1b781, + 0xe1b782, + 0xe1b783, + 0xe1b784, + 0xe1b785, + 0xe1b786, + 0xe1b787, + 0xe1b788, + 0xe1b789, + 0xe1b78a, + 0xe1b78b, + 0xe1b78c, + 0xe1b78d, + 0xe1b78e, + 0xe1b78f, + 0xe1b790, + 0xe1b791, + 0xe1b792, + 0xe1b793, + 0xe1b794, + 0xe1b795, + 0xe1b796, + 0xe1b797, + 0xe1b798, + 0xe1b799, + 0xe1b79a, + 0xe1b79b, + 0xe1b79c, + 0xe1b79d, + 0xe1b79e, + 0xe1b79f, + 0xe1b7a0, + 0xe1b7a1, + 0xe1b7a2, + 0xe1b7a3, + 0xe1b7a4, + 0xe1b7a5, + 0xe1b7a6, + 0xe1b7a7, + 0xe1b7a8, + 0xe1b7a9, + 0xe1b7aa, + 0xe1b7ab, + 0xe1b7ac, + 0xe1b7ad, + 0xe1b7ae, + 0xe1b7af, + 0xe1b7b0, + 0xe1b7b1, + 0xe1b7b2, + 0xe1b7b3, + 0xe1b7b4, + 0xe1b7b5, + 0xe1b7b6, + 0xe1b7b7, + 0xe1b7b8, + 0xe1b7b9, + 0xe1b7ba, + 0xe1b7bb, + 0xe1b7bc, + 0xe1b7bd, + 0xe1b7be, + 0xe1b7bf, + 0xe1b880, + 0xe1b881, + 0xe1b882, + 0xe1b883, + 0xe1b884, + 0xe1b885, + 0xe1b886, + 0xe1b887, + 0xe1b888, + 0xe1b889, + 0xe1b88a, + 0xe1b88b, + 0xe1b88c, + 0xe1b88d, + 0xe1b88e, + 0xe1b88f, + 0xe1b890, + 0xe1b891, + 0xe1b892, + 0xe1b893, + 0xe1b894, + 0xe1b895, + 0xe1b896, + 0xe1b897, + 0xe1b898, + 0xe1b899, + 0xe1b89a, + 0xe1b89b, + 0xe1b89c, + 0xe1b89d, + 0xe1b89e, + 0xe1b89f, + 0xe1b8a0, + 0xe1b8a1, + 0xe1b8a2, + 0xe1b8a3, + 0xe1b8a4, + 0xe1b8a5, + 0xe1b8a6, + 0xe1b8a7, + 0xe1b8a8, + 0xe1b8a9, + 0xe1b8aa, + 0xe1b8ab, + 0xe1b8ac, + 0xe1b8ad, + 0xe1b8ae, + 0xe1b8af, + 0xe1b8b0, + 0xe1b8b1, + 0xe1b8b2, + 0xe1b8b3, + 0xe1b8b4, + 0xe1b8b5, + 0xe1b8b6, + 0xe1b8b7, + 0xe1b8b8, + 0xe1b8b9, + 0xe1b8ba, + 0xe1b8bb, + 0xe1b8bc, + 0xe1b8bd, + 0xe1b8be, + 0xe1b8bf, + 0xe1b980, + 0xe1b981, + 0xe1b982, + 0xe1b983, + 0xe1b984, + 0xe1b985, + 0xe1b986, + 0xe1b987, + 0xe1b988, + 0xe1b989, + 0xe1b98a, + 0xe1b98b, + 0xe1b98c, + 0xe1b98d, + 0xe1b98e, + 0xe1b98f, + 0xe1b990, + 0xe1b991, + 0xe1b992, + 0xe1b993, + 0xe1b994, + 0xe1b995, + 0xe1b996, + 0xe1b997, + 0xe1b998, + 0xe1b999, + 0xe1b99a, + 0xe1b99b, + 0xe1b99c, + 0xe1b99d, + 0xe1b99e, + 0xe1b99f, + 0xe1b9a0, + 0xe1b9a1, + 0xe1b9a2, + 0xe1b9a3, + 0xe1b9a4, + 0xe1b9a5, + 0xe1b9a6, + 0xe1b9a7, + 0xe1b9a8, + 0xe1b9a9, + 0xe1b9aa, + 0xe1b9ab, + 0xe1b9ac, + 0xe1b9ad, + 0xe1b9ae, + 0xe1b9af, + 0xe1b9b0, + 0xe1b9b1, + 0xe1b9b2, + 0xe1b9b3, + 0xe1b9b4, + 0xe1b9b5, + 0xe1b9b6, + 0xe1b9b7, + 0xe1b9b8, + 0xe1b9b9, + 0xe1b9ba, + 0xe1b9bb, + 0xe1b9bc, + 0xe1b9bd, + 0xe1b9be, + 0xe1b9bf, + 0xe1ba80, + 0xe1ba81, + 0xe1ba82, + 0xe1ba83, + 0xe1ba84, + 0xe1ba85, + 0xe1ba86, + 0xe1ba87, + 0xe1ba88, + 0xe1ba89, + 0xe1ba8a, + 0xe1ba8b, + 0xe1ba8c, + 0xe1ba8d, + 0xe1ba8e, + 0xe1ba8f, + 0xe1ba90, + 0xe1ba91, + 0xe1ba92, + 0xe1ba93, + 0xe1ba94, + 0xe1ba95, + 0xe1ba96, + 0xe1ba97, + 0xe1ba98, + 0xe1ba99, + 0xe1ba9a, + 0xe1ba9b, + 0xe1ba9c, + 0xe1ba9d, + 0xe1ba9e, + 0xe1ba9f, + 0xe1baa0, + 0xe1baa1, + 0xe1baa2, + 0xe1baa3, + 0xe1baa4, + 0xe1baa5, + 0xe1baa6, + 0xe1baa7, + 0xe1baa8, + 0xe1baa9, + 0xe1baaa, + 0xe1baab, + 0xe1baac, + 0xe1baad, + 0xe1baae, + 0xe1baaf, + 0xe1bab0, + 0xe1bab1, + 0xe1bab2, + 0xe1bab3, + 0xe1bab4, + 0xe1bab5, + 0xe1bab6, + 0xe1bab7, + 0xe1bab8, + 0xe1bab9, + 0xe1baba, + 0xe1babb, + 0xe1babc, + 0xe1babd, + 0xe1babe, + 0xe1babf, + 0xe1bb80, + 0xe1bb81, + 0xe1bb82, + 0xe1bb83, + 0xe1bb84, + 0xe1bb85, + 0xe1bb86, + 0xe1bb87, + 0xe1bb88, + 0xe1bb89, + 0xe1bb8a, + 0xe1bb8b, + 0xe1bb8c, + 0xe1bb8d, + 0xe1bb8e, + 0xe1bb8f, + 0xe1bb90, + 0xe1bb91, + 0xe1bb92, + 0xe1bb93, + 0xe1bb94, + 0xe1bb95, + 0xe1bb96, + 0xe1bb97, + 0xe1bb98, + 0xe1bb99, + 0xe1bb9a, + 0xe1bb9b, + 0xe1bb9c, + 0xe1bb9d, + 0xe1bb9e, + 0xe1bb9f, + 0xe1bba0, + 0xe1bba1, + 0xe1bba2, + 0xe1bba3, + 0xe1bba4, + 0xe1bba5, + 0xe1bba6, + 0xe1bba7, + 0xe1bba8, + 0xe1bba9, + 0xe1bbaa, + 0xe1bbab, + 0xe1bbac, + 0xe1bbad, + 0xe1bbae, + 0xe1bbaf, + 0xe1bbb0, + 0xe1bbb1, + 0xe1bbb2, + 0xe1bbb3, + 0xe1bbb4, + 0xe1bbb5, + 0xe1bbb6, + 0xe1bbb7, + 0xe1bbb8, + 0xe1bbb9, + 0xe1bbba, + 0xe1bbbb, + 0xe1bbbc, + 0xe1bbbd, + 0xe1bbbe, + 0xe1bbbf, + 0xe1bc80, + 0xe1bc81, + 0xe1bc82, + 0xe1bc83, + 0xe1bc84, + 0xe1bc85, + 0xe1bc86, + 0xe1bc87, + 0xe1bc88, + 0xe1bc89, + 0xe1bc8a, + 0xe1bc8b, + 0xe1bc8c, + 0xe1bc8d, + 0xe1bc8e, + 0xe1bc8f, + 0xe1bc90, + 0xe1bc91, + 0xe1bc92, + 0xe1bc93, + 0xe1bc94, + 0xe1bc95, + 0xe1bc96, + 0xe1bc97, + 0xe1bc98, + 0xe1bc99, + 0xe1bc9a, + 0xe1bc9b, + 0xe1bc9c, + 0xe1bc9d, + 0xe1bc9e, + 0xe1bc9f, + 0xe1bca0, + 0xe1bca1, + 0xe1bca2, + 0xe1bca3, + 0xe1bca4, + 0xe1bca5, + 0xe1bca6, + 0xe1bca7, + 0xe1bca8, + 0xe1bca9, + 0xe1bcaa, + 0xe1bcab, + 0xe1bcac, + 0xe1bcad, + 0xe1bcae, + 0xe1bcaf, + 0xe1bcb0, + 0xe1bcb1, + 0xe1bcb2, + 0xe1bcb3, + 0xe1bcb4, + 0xe1bcb5, + 0xe1bcb6, + 0xe1bcb7, + 0xe1bcb8, + 0xe1bcb9, + 0xe1bcba, + 0xe1bcbb, + 0xe1bcbc, + 0xe1bcbd, + 0xe1bcbe, + 0xe1bcbf, + 0xe1bd80, + 0xe1bd81, + 0xe1bd82, + 0xe1bd83, + 0xe1bd84, + 0xe1bd85, + 0xe1bd86, + 0xe1bd87, + 0xe1bd88, + 0xe1bd89, + 0xe1bd8a, + 0xe1bd8b, + 0xe1bd8c, + 0xe1bd8d, + 0xe1bd8e, + 0xe1bd8f, + 0xe1bd90, + 0xe1bd91, + 0xe1bd92, + 0xe1bd93, + 0xe1bd94, + 0xe1bd95, + 0xe1bd96, + 0xe1bd97, + 0xe1bd98, + 0xe1bd99, + 0xe1bd9a, + 0xe1bd9b, + 0xe1bd9c, + 0xe1bd9d, + 0xe1bd9e, + 0xe1bd9f, + 0xe1bda0, + 0xe1bda1, + 0xe1bda2, + 0xe1bda3, + 0xe1bda4, + 0xe1bda5, + 0xe1bda6, + 0xe1bda7, + 0xe1bda8, + 0xe1bda9, + 0xe1bdaa, + 0xe1bdab, + 0xe1bdac, + 0xe1bdad, + 0xe1bdae, + 0xe1bdaf, + 0xe1bdb0, + 0xe1bdb1, + 0xe1bdb2, + 0xe1bdb3, + 0xe1bdb4, + 0xe1bdb5, + 0xe1bdb6, + 0xe1bdb7, + 0xe1bdb8, + 0xe1bdb9, + 0xe1bdba, + 0xe1bdbb, + 0xe1bdbc, + 0xe1bdbd, + 0xe1bdbe, + 0xe1bdbf, + 0xe1be80, + 0xe1be81, + 0xe1be82, + 0xe1be83, + 0xe1be84, + 0xe1be85, + 0xe1be86, + 0xe1be87, + 0xe1be88, + 0xe1be89, + 0xe1be8a, + 0xe1be8b, + 0xe1be8c, + 0xe1be8d, + 0xe1be8e, + 0xe1be8f, + 0xe1be90, + 0xe1be91, + 0xe1be92, + 0xe1be93, + 0xe1be94, + 0xe1be95, + 0xe1be96, + 0xe1be97, + 0xe1be98, + 0xe1be99, + 0xe1be9a, + 0xe1be9b, + 0xe1be9c, + 0xe1be9d, + 0xe1be9e, + 0xe1be9f, + 0xe1bea0, + 0xe1bea1, + 0xe1bea2, + 0xe1bea3, + 0xe1bea4, + 0xe1bea5, + 0xe1bea6, + 0xe1bea7, + 0xe1bea8, + 0xe1bea9, + 0xe1beaa, + 0xe1beab, + 0xe1beac, + 0xe1bead, + 0xe1beae, + 0xe1beaf, + 0xe1beb0, + 0xe1beb1, + 0xe1beb2, + 0xe1beb3, + 0xe1beb4, + 0xe1beb5, + 0xe1beb6, + 0xe1beb7, + 0xe1beb8, + 0xe1beb9, + 0xe1beba, + 0xe1bebb, + 0xe1bebc, + 0xe1bebd, + 0xe1bebe, + 0xe1bebf, + 0xe1bf80, + 0xe1bf81, + 0xe1bf82, + 0xe1bf83, + 0xe1bf84, + 0xe1bf85, + 0xe1bf86, + 0xe1bf87, + 0xe1bf88, + 0xe1bf89, + 0xe1bf8a, + 0xe1bf8b, + 0xe1bf8c, + 0xe1bf8d, + 0xe1bf8e, + 0xe1bf8f, + 0xe1bf90, + 0xe1bf91, + 0xe1bf92, + 0xe1bf93, + 0xe1bf94, + 0xe1bf95, + 0xe1bf96, + 0xe1bf97, + 0xe1bf98, + 0xe1bf99, + 0xe1bf9a, + 0xe1bf9b, + 0xe1bf9c, + 0xe1bf9d, + 0xe1bf9e, + 0xe1bf9f, + 0xe1bfa0, + 0xe1bfa1, + 0xe1bfa2, + 0xe1bfa3, + 0xe1bfa4, + 0xe1bfa5, + 0xe1bfa6, + 0xe1bfa7, + 0xe1bfa8, + 0xe1bfa9, + 0xe1bfaa, + 0xe1bfab, + 0xe1bfac, + 0xe1bfad, + 0xe1bfae, + 0xe1bfaf, + 0xe1bfb0, + 0xe1bfb1, + 0xe1bfb2, + 0xe1bfb3, + 0xe1bfb4, + 0xe1bfb5, + 0xe1bfb6, + 0xe1bfb7, + 0xe1bfb8, + 0xe1bfb9, + 0xe1bfba, + 0xe1bfbb, + 0xe1bfbc, + 0xe1bfbd, + 0xe1bfbe, + 0xe1bfbf, + 0xe28080, + 0xe28081, + 0xe28082, + 0xe28083, + 0xe28084, + 0xe28085, + 0xe28086, + 0xe28087, + 0xe28088, + 0xe28089, + 0xe2808a, + 0xe2808b, + 0xe2808c, + 0xe2808d, + 0xe2808e, + 0xe2808f, + 0xe28090, + 0xe28091, + 0xe28092, + 0xe28093, + 0xe28094, + 0xe28095, + 0xe28096, + 0xe28097, + 0xe28098, + 0xe28099, + 0xe2809a, + 0xe2809b, + 0xe2809c, + 0xe2809d, + 0xe2809e, + 0xe2809f, + 0xe280a0, + 0xe280a1, + 0xe280a2, + 0xe280a3, + 0xe280a4, + 0xe280a5, + 0xe280a6, + 0xe280a7, + 0xe280a8, + 0xe280a9, + 0xe280aa, + 0xe280ab, + 0xe280ac, + 0xe280ad, + 0xe280ae, + 0xe280af, + 0xe280b0, + 0xe280b1, + 0xe280b2, + 0xe280b3, + 0xe280b4, + 0xe280b5, + 0xe280b6, + 0xe280b7, + 0xe280b8, + 0xe280b9, + 0xe280ba, + 0xe280bb, + 0xe280bc, + 0xe280bd, + 0xe280be, + 0xe280bf, + 0xe28180, + 0xe28181, + 0xe28182, + 0xe28183, + 0xe28184, + 0xe28185, + 0xe28186, + 0xe28187, + 0xe28188, + 0xe28189, + 0xe2818a, + 0xe2818b, + 0xe2818c, + 0xe2818d, + 0xe2818e, + 0xe2818f, + 0xe28190, + 0xe28191, + 0xe28192, + 0xe28193, + 0xe28194, + 0xe28195, + 0xe28196, + 0xe28197, + 0xe28198, + 0xe28199, + 0xe2819a, + 0xe2819b, + 0xe2819c, + 0xe2819d, + 0xe2819e, + 0xe2819f, + 0xe281a0, + 0xe281a1, + 0xe281a2, + 0xe281a3, + 0xe281a4, + 0xe281a5, + 0xe281a6, + 0xe281a7, + 0xe281a8, + 0xe281a9, + 0xe281aa, + 0xe281ab, + 0xe281ac, + 0xe281ad, + 0xe281ae, + 0xe281af, + 0xe281b0, + 0xe281b1, + 0xe281b2, + 0xe281b3, + 0xe281b4, + 0xe281b5, + 0xe281b6, + 0xe281b7, + 0xe281b8, + 0xe281b9, + 0xe281ba, + 0xe281bb, + 0xe281bc, + 0xe281bd, + 0xe281be, + 0xe281bf, + 0xe28280, + 0xe28281, + 0xe28282, + 0xe28283, + 0xe28284, + 0xe28285, + 0xe28286, + 0xe28287, + 0xe28288, + 0xe28289, + 0xe2828a, + 0xe2828b, + 0xe2828c, + 0xe2828d, + 0xe2828e, + 0xe2828f, + 0xe28290, + 0xe28291, + 0xe28292, + 0xe28293, + 0xe28294, + 0xe28295, + 0xe28296, + 0xe28297, + 0xe28298, + 0xe28299, + 0xe2829a, + 0xe2829b, + 0xe2829c, + 0xe2829d, + 0xe2829e, + 0xe2829f, + 0xe282a0, + 0xe282a1, + 0xe282a2, + 0xe282a3, + 0xe282a4, + 0xe282a5, + 0xe282a6, + 0xe282a7, + 0xe282a8, + 0xe282a9, + 0xe282aa, + 0xe282ab, + 0xe282ac, + 0xe282ad, + 0xe282ae, + 0xe282af, + 0xe282b0, + 0xe282b1, + 0xe282b2, + 0xe282b3, + 0xe282b4, + 0xe282b5, + 0xe282b6, + 0xe282b7, + 0xe282b8, + 0xe282b9, + 0xe282ba, + 0xe282bb, + 0xe282bc, + 0xe282bd, + 0xe282be, + 0xe282bf, + 0xe28380, + 0xe28381, + 0xe28382, + 0xe28383, + 0xe28384, + 0xe28385, + 0xe28386, + 0xe28387, + 0xe28388, + 0xe28389, + 0xe2838a, + 0xe2838b, + 0xe2838c, + 0xe2838d, + 0xe2838e, + 0xe2838f, + 0xe28390, + 0xe28391, + 0xe28392, + 0xe28393, + 0xe28394, + 0xe28395, + 0xe28396, + 0xe28397, + 0xe28398, + 0xe28399, + 0xe2839a, + 0xe2839b, + 0xe2839c, + 0xe2839d, + 0xe2839e, + 0xe2839f, + 0xe283a0, + 0xe283a1, + 0xe283a2, + 0xe283a3, + 0xe283a4, + 0xe283a5, + 0xe283a6, + 0xe283a7, + 0xe283a8, + 0xe283a9, + 0xe283aa, + 0xe283ab, + 0xe283ac, + 0xe283ad, + 0xe283ae, + 0xe283af, + 0xe283b0, + 0xe283b1, + 0xe283b2, + 0xe283b3, + 0xe283b4, + 0xe283b5, + 0xe283b6, + 0xe283b7, + 0xe283b8, + 0xe283b9, + 0xe283ba, + 0xe283bb, + 0xe283bc, + 0xe283bd, + 0xe283be, + 0xe283bf, + 0xe28480, + 0xe28481, + 0xe28482, + 0xe28483, + 0xe28484, + 0xe28485, + 0xe28486, + 0xe28487, + 0xe28488, + 0xe28489, + 0xe2848a, + 0xe2848b, + 0xe2848c, + 0xe2848d, + 0xe2848e, + 0xe2848f, + 0xe28490, + 0xe28491, + 0xe28492, + 0xe28493, + 0xe28494, + 0xe28495, + 0xe28496, + 0xe28497, + 0xe28498, + 0xe28499, + 0xe2849a, + 0xe2849b, + 0xe2849c, + 0xe2849d, + 0xe2849e, + 0xe2849f, + 0xe284a0, + 0xe284a1, + 0xe284a2, + 0xe284a3, + 0xe284a4, + 0xe284a5, + 0xe284a6, + 0xe284a7, + 0xe284a8, + 0xe284a9, + 0xe284aa, + 0xe284ab, + 0xe284ac, + 0xe284ad, + 0xe284ae, + 0xe284af, + 0xe284b0, + 0xe284b1, + 0xe284b2, + 0xe284b3, + 0xe284b4, + 0xe284b5, + 0xe284b6, + 0xe284b7, + 0xe284b8, + 0xe284b9, + 0xe284ba, + 0xe284bb, + 0xe284bc, + 0xe284bd, + 0xe284be, + 0xe284bf, + 0xe28580, + 0xe28581, + 0xe28582, + 0xe28583, + 0xe28584, + 0xe28585, + 0xe28586, + 0xe28587, + 0xe28588, + 0xe28589, + 0xe2858a, + 0xe2858b, + 0xe2858c, + 0xe2858d, + 0xe2858e, + 0xe2858f, + 0xe28590, + 0xe28591, + 0xe28592, + 0xe28593, + 0xe28594, + 0xe28595, + 0xe28596, + 0xe28597, + 0xe28598, + 0xe28599, + 0xe2859a, + 0xe2859b, + 0xe2859c, + 0xe2859d, + 0xe2859e, + 0xe2859f, + 0xe285a0, + 0xe285a1, + 0xe285a2, + 0xe285a3, + 0xe285a4, + 0xe285a5, + 0xe285a6, + 0xe285a7, + 0xe285a8, + 0xe285a9, + 0xe285aa, + 0xe285ab, + 0xe285ac, + 0xe285ad, + 0xe285ae, + 0xe285af, + 0xe285b0, + 0xe285b1, + 0xe285b2, + 0xe285b3, + 0xe285b4, + 0xe285b5, + 0xe285b6, + 0xe285b7, + 0xe285b8, + 0xe285b9, + 0xe285ba, + 0xe285bb, + 0xe285bc, + 0xe285bd, + 0xe285be, + 0xe285bf, + 0xe28680, + 0xe28681, + 0xe28682, + 0xe28683, + 0xe28684, + 0xe28685, + 0xe28686, + 0xe28687, + 0xe28688, + 0xe28689, + 0xe2868a, + 0xe2868b, + 0xe2868c, + 0xe2868d, + 0xe2868e, + 0xe2868f, + 0xe28690, + 0xe28691, + 0xe28692, + 0xe28693, + 0xe28694, + 0xe28695, + 0xe28696, + 0xe28697, + 0xe28698, + 0xe28699, + 0xe2869a, + 0xe2869b, + 0xe2869c, + 0xe2869d, + 0xe2869e, + 0xe2869f, + 0xe286a0, + 0xe286a1, + 0xe286a2, + 0xe286a3, + 0xe286a4, + 0xe286a5, + 0xe286a6, + 0xe286a7, + 0xe286a8, + 0xe286a9, + 0xe286aa, + 0xe286ab, + 0xe286ac, + 0xe286ad, + 0xe286ae, + 0xe286af, + 0xe286b0, + 0xe286b1, + 0xe286b2, + 0xe286b3, + 0xe286b4, + 0xe286b5, + 0xe286b6, + 0xe286b7, + 0xe286b8, + 0xe286b9, + 0xe286ba, + 0xe286bb, + 0xe286bc, + 0xe286bd, + 0xe286be, + 0xe286bf, + 0xe28780, + 0xe28781, + 0xe28782, + 0xe28783, + 0xe28784, + 0xe28785, + 0xe28786, + 0xe28787, + 0xe28788, + 0xe28789, + 0xe2878a, + 0xe2878b, + 0xe2878c, + 0xe2878d, + 0xe2878e, + 0xe2878f, + 0xe28790, + 0xe28791, + 0xe28792, + 0xe28793, + 0xe28794, + 0xe28795, + 0xe28796, + 0xe28797, + 0xe28798, + 0xe28799, + 0xe2879a, + 0xe2879b, + 0xe2879c, + 0xe2879d, + 0xe2879e, + 0xe2879f, + 0xe287a0, + 0xe287a1, + 0xe287a2, + 0xe287a3, + 0xe287a4, + 0xe287a5, + 0xe287a6, + 0xe287a7, + 0xe287a8, + 0xe287a9, + 0xe287aa, + 0xe287ab, + 0xe287ac, + 0xe287ad, + 0xe287ae, + 0xe287af, + 0xe287b0, + 0xe287b1, + 0xe287b2, + 0xe287b3, + 0xe287b4, + 0xe287b5, + 0xe287b6, + 0xe287b7, + 0xe287b8, + 0xe287b9, + 0xe287ba, + 0xe287bb, + 0xe287bc, + 0xe287bd, + 0xe287be, + 0xe287bf, + 0xe28880, + 0xe28881, + 0xe28882, + 0xe28883, + 0xe28884, + 0xe28885, + 0xe28886, + 0xe28887, + 0xe28888, + 0xe28889, + 0xe2888a, + 0xe2888b, + 0xe2888c, + 0xe2888d, + 0xe2888e, + 0xe2888f, + 0xe28890, + 0xe28891, + 0xe28892, + 0xe28893, + 0xe28894, + 0xe28895, + 0xe28896, + 0xe28897, + 0xe28898, + 0xe28899, + 0xe2889a, + 0xe2889b, + 0xe2889c, + 0xe2889d, + 0xe2889e, + 0xe2889f, + 0xe288a0, + 0xe288a1, + 0xe288a2, + 0xe288a3, + 0xe288a4, + 0xe288a5, + 0xe288a6, + 0xe288a7, + 0xe288a8, + 0xe288a9, + 0xe288aa, + 0xe288ab, + 0xe288ac, + 0xe288ad, + 0xe288ae, + 0xe288af, + 0xe288b0, + 0xe288b1, + 0xe288b2, + 0xe288b3, + 0xe288b4, + 0xe288b5, + 0xe288b6, + 0xe288b7, + 0xe288b8, + 0xe288b9, + 0xe288ba, + 0xe288bb, + 0xe288bc, + 0xe288bd, + 0xe288be, + 0xe288bf, + 0xe28980, + 0xe28981, + 0xe28982, + 0xe28983, + 0xe28984, + 0xe28985, + 0xe28986, + 0xe28987, + 0xe28988, + 0xe28989, + 0xe2898a, + 0xe2898b, + 0xe2898c, + 0xe2898d, + 0xe2898e, + 0xe2898f, + 0xe28990, + 0xe28991, + 0xe28992, + 0xe28993, + 0xe28994, + 0xe28995, + 0xe28996, + 0xe28997, + 0xe28998, + 0xe28999, + 0xe2899a, + 0xe2899b, + 0xe2899c, + 0xe2899d, + 0xe2899e, + 0xe2899f, + 0xe289a0, + 0xe289a1, + 0xe289a2, + 0xe289a3, + 0xe289a4, + 0xe289a5, + 0xe289a6, + 0xe289a7, + 0xe289a8, + 0xe289a9, + 0xe289aa, + 0xe289ab, + 0xe289ac, + 0xe289ad, + 0xe289ae, + 0xe289af, + 0xe289b0, + 0xe289b1, + 0xe289b2, + 0xe289b3, + 0xe289b4, + 0xe289b5, + 0xe289b6, + 0xe289b7, + 0xe289b8, + 0xe289b9, + 0xe289ba, + 0xe289bb, + 0xe289bc, + 0xe289bd, + 0xe289be, + 0xe289bf, + 0xe28a80, + 0xe28a81, + 0xe28a82, + 0xe28a83, + 0xe28a84, + 0xe28a85, + 0xe28a86, + 0xe28a87, + 0xe28a88, + 0xe28a89, + 0xe28a8a, + 0xe28a8b, + 0xe28a8c, + 0xe28a8d, + 0xe28a8e, + 0xe28a8f, + 0xe28a90, + 0xe28a91, + 0xe28a92, + 0xe28a93, + 0xe28a94, + 0xe28a95, + 0xe28a96, + 0xe28a97, + 0xe28a98, + 0xe28a99, + 0xe28a9a, + 0xe28a9b, + 0xe28a9c, + 0xe28a9d, + 0xe28a9e, + 0xe28a9f, + 0xe28aa0, + 0xe28aa1, + 0xe28aa2, + 0xe28aa3, + 0xe28aa4, + 0xe28aa5, + 0xe28aa6, + 0xe28aa7, + 0xe28aa8, + 0xe28aa9, + 0xe28aaa, + 0xe28aab, + 0xe28aac, + 0xe28aad, + 0xe28aae, + 0xe28aaf, + 0xe28ab0, + 0xe28ab1, + 0xe28ab2, + 0xe28ab3, + 0xe28ab4, + 0xe28ab5, + 0xe28ab6, + 0xe28ab7, + 0xe28ab8, + 0xe28ab9, + 0xe28aba, + 0xe28abb, + 0xe28abc, + 0xe28abd, + 0xe28abe, + 0xe28abf, + 0xe28b80, + 0xe28b81, + 0xe28b82, + 0xe28b83, + 0xe28b84, + 0xe28b85, + 0xe28b86, + 0xe28b87, + 0xe28b88, + 0xe28b89, + 0xe28b8a, + 0xe28b8b, + 0xe28b8c, + 0xe28b8d, + 0xe28b8e, + 0xe28b8f, + 0xe28b90, + 0xe28b91, + 0xe28b92, + 0xe28b93, + 0xe28b94, + 0xe28b95, + 0xe28b96, + 0xe28b97, + 0xe28b98, + 0xe28b99, + 0xe28b9a, + 0xe28b9b, + 0xe28b9c, + 0xe28b9d, + 0xe28b9e, + 0xe28b9f, + 0xe28ba0, + 0xe28ba1, + 0xe28ba2, + 0xe28ba3, + 0xe28ba4, + 0xe28ba5, + 0xe28ba6, + 0xe28ba7, + 0xe28ba8, + 0xe28ba9, + 0xe28baa, + 0xe28bab, + 0xe28bac, + 0xe28bad, + 0xe28bae, + 0xe28baf, + 0xe28bb0, + 0xe28bb1, + 0xe28bb2, + 0xe28bb3, + 0xe28bb4, + 0xe28bb5, + 0xe28bb6, + 0xe28bb7, + 0xe28bb8, + 0xe28bb9, + 0xe28bba, + 0xe28bbb, + 0xe28bbc, + 0xe28bbd, + 0xe28bbe, + 0xe28bbf, + 0xe28c80, + 0xe28c81, + 0xe28c82, + 0xe28c83, + 0xe28c84, + 0xe28c85, + 0xe28c86, + 0xe28c87, + 0xe28c88, + 0xe28c89, + 0xe28c8a, + 0xe28c8b, + 0xe28c8c, + 0xe28c8d, + 0xe28c8e, + 0xe28c8f, + 0xe28c90, + 0xe28c91, + 0xe28c92, + 0xe28c93, + 0xe28c94, + 0xe28c95, + 0xe28c96, + 0xe28c97, + 0xe28c98, + 0xe28c99, + 0xe28c9a, + 0xe28c9b, + 0xe28c9c, + 0xe28c9d, + 0xe28c9e, + 0xe28c9f, + 0xe28ca0, + 0xe28ca1, + 0xe28ca2, + 0xe28ca3, + 0xe28ca4, + 0xe28ca5, + 0xe28ca6, + 0xe28ca7, + 0xe28ca8, + 0xe28ca9, + 0xe28caa, + 0xe28cab, + 0xe28cac, + 0xe28cad, + 0xe28cae, + 0xe28caf, + 0xe28cb0, + 0xe28cb1, + 0xe28cb2, + 0xe28cb3, + 0xe28cb4, + 0xe28cb5, + 0xe28cb6, + 0xe28cb7, + 0xe28cb8, + 0xe28cb9, + 0xe28cba, + 0xe28cbb, + 0xe28cbc, + 0xe28cbd, + 0xe28cbe, + 0xe28cbf, + 0xe28d80, + 0xe28d81, + 0xe28d82, + 0xe28d83, + 0xe28d84, + 0xe28d85, + 0xe28d86, + 0xe28d87, + 0xe28d88, + 0xe28d89, + 0xe28d8a, + 0xe28d8b, + 0xe28d8c, + 0xe28d8d, + 0xe28d8e, + 0xe28d8f, + 0xe28d90, + 0xe28d91, + 0xe28d92, + 0xe28d93, + 0xe28d94, + 0xe28d95, + 0xe28d96, + 0xe28d97, + 0xe28d98, + 0xe28d99, + 0xe28d9a, + 0xe28d9b, + 0xe28d9c, + 0xe28d9d, + 0xe28d9e, + 0xe28d9f, + 0xe28da0, + 0xe28da1, + 0xe28da2, + 0xe28da3, + 0xe28da4, + 0xe28da5, + 0xe28da6, + 0xe28da7, + 0xe28da8, + 0xe28da9, + 0xe28daa, + 0xe28dab, + 0xe28dac, + 0xe28dad, + 0xe28dae, + 0xe28daf, + 0xe28db0, + 0xe28db1, + 0xe28db2, + 0xe28db3, + 0xe28db4, + 0xe28db5, + 0xe28db6, + 0xe28db7, + 0xe28db8, + 0xe28db9, + 0xe28dba, + 0xe28dbb, + 0xe28dbc, + 0xe28dbd, + 0xe28dbe, + 0xe28dbf, + 0xe28e80, + 0xe28e81, + 0xe28e82, + 0xe28e83, + 0xe28e84, + 0xe28e85, + 0xe28e86, + 0xe28e87, + 0xe28e88, + 0xe28e89, + 0xe28e8a, + 0xe28e8b, + 0xe28e8c, + 0xe28e8d, + 0xe28e8e, + 0xe28e8f, + 0xe28e90, + 0xe28e91, + 0xe28e92, + 0xe28e93, + 0xe28e94, + 0xe28e95, + 0xe28e96, + 0xe28e97, + 0xe28e98, + 0xe28e99, + 0xe28e9a, + 0xe28e9b, + 0xe28e9c, + 0xe28e9d, + 0xe28e9e, + 0xe28e9f, + 0xe28ea0, + 0xe28ea1, + 0xe28ea2, + 0xe28ea3, + 0xe28ea4, + 0xe28ea5, + 0xe28ea6, + 0xe28ea7, + 0xe28ea8, + 0xe28ea9, + 0xe28eaa, + 0xe28eab, + 0xe28eac, + 0xe28ead, + 0xe28eae, + 0xe28eaf, + 0xe28eb0, + 0xe28eb1, + 0xe28eb2, + 0xe28eb3, + 0xe28eb4, + 0xe28eb5, + 0xe28eb6, + 0xe28eb7, + 0xe28eb8, + 0xe28eb9, + 0xe28eba, + 0xe28ebb, + 0xe28ebc, + 0xe28ebd, + 0xe28ebe, + 0xe28ebf, + 0xe28f80, + 0xe28f81, + 0xe28f82, + 0xe28f83, + 0xe28f84, + 0xe28f85, + 0xe28f86, + 0xe28f87, + 0xe28f88, + 0xe28f89, + 0xe28f8a, + 0xe28f8b, + 0xe28f8c, + 0xe28f8d, + 0xe28f8e, + 0xe28f8f, + 0xe28f90, + 0xe28f91, + 0xe28f92, + 0xe28f93, + 0xe28f94, + 0xe28f95, + 0xe28f96, + 0xe28f97, + 0xe28f98, + 0xe28f99, + 0xe28f9a, + 0xe28f9b, + 0xe28f9c, + 0xe28f9d, + 0xe28f9e, + 0xe28f9f, + 0xe28fa0, + 0xe28fa1, + 0xe28fa2, + 0xe28fa3, + 0xe28fa4, + 0xe28fa5, + 0xe28fa6, + 0xe28fa7, + 0xe28fa8, + 0xe28fa9, + 0xe28faa, + 0xe28fab, + 0xe28fac, + 0xe28fad, + 0xe28fae, + 0xe28faf, + 0xe28fb0, + 0xe28fb1, + 0xe28fb2, + 0xe28fb3, + 0xe28fb4, + 0xe28fb5, + 0xe28fb6, + 0xe28fb7, + 0xe28fb8, + 0xe28fb9, + 0xe28fba, + 0xe28fbb, + 0xe28fbc, + 0xe28fbd, + 0xe28fbe, + 0xe28fbf, + 0xe29080, + 0xe29081, + 0xe29082, + 0xe29083, + 0xe29084, + 0xe29085, + 0xe29086, + 0xe29087, + 0xe29088, + 0xe29089, + 0xe2908a, + 0xe2908b, + 0xe2908c, + 0xe2908d, + 0xe2908e, + 0xe2908f, + 0xe29090, + 0xe29091, + 0xe29092, + 0xe29093, + 0xe29094, + 0xe29095, + 0xe29096, + 0xe29097, + 0xe29098, + 0xe29099, + 0xe2909a, + 0xe2909b, + 0xe2909c, + 0xe2909d, + 0xe2909e, + 0xe2909f, + 0xe290a0, + 0xe290a1, + 0xe290a2, + 0xe290a3, + 0xe290a4, + 0xe290a5, + 0xe290a6, + 0xe290a7, + 0xe290a8, + 0xe290a9, + 0xe290aa, + 0xe290ab, + 0xe290ac, + 0xe290ad, + 0xe290ae, + 0xe290af, + 0xe290b0, + 0xe290b1, + 0xe290b2, + 0xe290b3, + 0xe290b4, + 0xe290b5, + 0xe290b6, + 0xe290b7, + 0xe290b8, + 0xe290b9, + 0xe290ba, + 0xe290bb, + 0xe290bc, + 0xe290bd, + 0xe290be, + 0xe290bf, + 0xe29180, + 0xe29181, + 0xe29182, + 0xe29183, + 0xe29184, + 0xe29185, + 0xe29186, + 0xe29187, + 0xe29188, + 0xe29189, + 0xe2918a, + 0xe2918b, + 0xe2918c, + 0xe2918d, + 0xe2918e, + 0xe2918f, + 0xe29190, + 0xe29191, + 0xe29192, + 0xe29193, + 0xe29194, + 0xe29195, + 0xe29196, + 0xe29197, + 0xe29198, + 0xe29199, + 0xe2919a, + 0xe2919b, + 0xe2919c, + 0xe2919d, + 0xe2919e, + 0xe2919f, + 0xe291a0, + 0xe291a1, + 0xe291a2, + 0xe291a3, + 0xe291a4, + 0xe291a5, + 0xe291a6, + 0xe291a7, + 0xe291a8, + 0xe291a9, + 0xe291aa, + 0xe291ab, + 0xe291ac, + 0xe291ad, + 0xe291ae, + 0xe291af, + 0xe291b0, + 0xe291b1, + 0xe291b2, + 0xe291b3, + 0xe291b4, + 0xe291b5, + 0xe291b6, + 0xe291b7, + 0xe291b8, + 0xe291b9, + 0xe291ba, + 0xe291bb, + 0xe291bc, + 0xe291bd, + 0xe291be, + 0xe291bf, + 0xe29280, + 0xe29281, + 0xe29282, + 0xe29283, + 0xe29284, + 0xe29285, + 0xe29286, + 0xe29287, + 0xe29288, + 0xe29289, + 0xe2928a, + 0xe2928b, + 0xe2928c, + 0xe2928d, + 0xe2928e, + 0xe2928f, + 0xe29290, + 0xe29291, + 0xe29292, + 0xe29293, + 0xe29294, + 0xe29295, + 0xe29296, + 0xe29297, + 0xe29298, + 0xe29299, + 0xe2929a, + 0xe2929b, + 0xe2929c, + 0xe2929d, + 0xe2929e, + 0xe2929f, + 0xe292a0, + 0xe292a1, + 0xe292a2, + 0xe292a3, + 0xe292a4, + 0xe292a5, + 0xe292a6, + 0xe292a7, + 0xe292a8, + 0xe292a9, + 0xe292aa, + 0xe292ab, + 0xe292ac, + 0xe292ad, + 0xe292ae, + 0xe292af, + 0xe292b0, + 0xe292b1, + 0xe292b2, + 0xe292b3, + 0xe292b4, + 0xe292b5, + 0xe292b6, + 0xe292b7, + 0xe292b8, + 0xe292b9, + 0xe292ba, + 0xe292bb, + 0xe292bc, + 0xe292bd, + 0xe292be, + 0xe292bf, + 0xe29380, + 0xe29381, + 0xe29382, + 0xe29383, + 0xe29384, + 0xe29385, + 0xe29386, + 0xe29387, + 0xe29388, + 0xe29389, + 0xe2938a, + 0xe2938b, + 0xe2938c, + 0xe2938d, + 0xe2938e, + 0xe2938f, + 0xe29390, + 0xe29391, + 0xe29392, + 0xe29393, + 0xe29394, + 0xe29395, + 0xe29396, + 0xe29397, + 0xe29398, + 0xe29399, + 0xe2939a, + 0xe2939b, + 0xe2939c, + 0xe2939d, + 0xe2939e, + 0xe2939f, + 0xe293a0, + 0xe293a1, + 0xe293a2, + 0xe293a3, + 0xe293a4, + 0xe293a5, + 0xe293a6, + 0xe293a7, + 0xe293a8, + 0xe293a9, + 0xe293aa, + 0xe293ab, + 0xe293ac, + 0xe293ad, + 0xe293ae, + 0xe293af, + 0xe293b0, + 0xe293b1, + 0xe293b2, + 0xe293b3, + 0xe293b4, + 0xe293b5, + 0xe293b6, + 0xe293b7, + 0xe293b8, + 0xe293b9, + 0xe293ba, + 0xe293bb, + 0xe293bc, + 0xe293bd, + 0xe293be, + 0xe293bf, + 0xe29480, + 0xe29481, + 0xe29482, + 0xe29483, + 0xe29484, + 0xe29485, + 0xe29486, + 0xe29487, + 0xe29488, + 0xe29489, + 0xe2948a, + 0xe2948b, + 0xe2948c, + 0xe2948d, + 0xe2948e, + 0xe2948f, + 0xe29490, + 0xe29491, + 0xe29492, + 0xe29493, + 0xe29494, + 0xe29495, + 0xe29496, + 0xe29497, + 0xe29498, + 0xe29499, + 0xe2949a, + 0xe2949b, + 0xe2949c, + 0xe2949d, + 0xe2949e, + 0xe2949f, + 0xe294a0, + 0xe294a1, + 0xe294a2, + 0xe294a3, + 0xe294a4, + 0xe294a5, + 0xe294a6, + 0xe294a7, + 0xe294a8, + 0xe294a9, + 0xe294aa, + 0xe294ab, + 0xe294ac, + 0xe294ad, + 0xe294ae, + 0xe294af, + 0xe294b0, + 0xe294b1, + 0xe294b2, + 0xe294b3, + 0xe294b4, + 0xe294b5, + 0xe294b6, + 0xe294b7, + 0xe294b8, + 0xe294b9, + 0xe294ba, + 0xe294bb, + 0xe294bc, + 0xe294bd, + 0xe294be, + 0xe294bf, + 0xe29580, + 0xe29581, + 0xe29582, + 0xe29583, + 0xe29584, + 0xe29585, + 0xe29586, + 0xe29587, + 0xe29588, + 0xe29589, + 0xe2958a, + 0xe2958b, + 0xe2958c, + 0xe2958d, + 0xe2958e, + 0xe2958f, + 0xe29590, + 0xe29591, + 0xe29592, + 0xe29593, + 0xe29594, + 0xe29595, + 0xe29596, + 0xe29597, + 0xe29598, + 0xe29599, + 0xe2959a, + 0xe2959b, + 0xe2959c, + 0xe2959d, + 0xe2959e, + 0xe2959f, + 0xe295a0, + 0xe295a1, + 0xe295a2, + 0xe295a3, + 0xe295a4, + 0xe295a5, + 0xe295a6, + 0xe295a7, + 0xe295a8, + 0xe295a9, + 0xe295aa, + 0xe295ab, + 0xe295ac, + 0xe295ad, + 0xe295ae, + 0xe295af, + 0xe295b0, + 0xe295b1, + 0xe295b2, + 0xe295b3, + 0xe295b4, + 0xe295b5, + 0xe295b6, + 0xe295b7, + 0xe295b8, + 0xe295b9, + 0xe295ba, + 0xe295bb, + 0xe295bc, + 0xe295bd, + 0xe295be, + 0xe295bf, + 0xe29680, + 0xe29681, + 0xe29682, + 0xe29683, + 0xe29684, + 0xe29685, + 0xe29686, + 0xe29687, + 0xe29688, + 0xe29689, + 0xe2968a, + 0xe2968b, + 0xe2968c, + 0xe2968d, + 0xe2968e, + 0xe2968f, + 0xe29690, + 0xe29691, + 0xe29692, + 0xe29693, + 0xe29694, + 0xe29695, + 0xe29696, + 0xe29697, + 0xe29698, + 0xe29699, + 0xe2969a, + 0xe2969b, + 0xe2969c, + 0xe2969d, + 0xe2969e, + 0xe2969f, + 0xe296a0, + 0xe296a1, + 0xe296a2, + 0xe296a3, + 0xe296a4, + 0xe296a5, + 0xe296a6, + 0xe296a7, + 0xe296a8, + 0xe296a9, + 0xe296aa, + 0xe296ab, + 0xe296ac, + 0xe296ad, + 0xe296ae, + 0xe296af, + 0xe296b0, + 0xe296b1, + 0xe296b2, + 0xe296b3, + 0xe296b4, + 0xe296b5, + 0xe296b6, + 0xe296b7, + 0xe296b8, + 0xe296b9, + 0xe296ba, + 0xe296bb, + 0xe296bc, + 0xe296bd, + 0xe296be, + 0xe296bf, + 0xe29780, + 0xe29781, + 0xe29782, + 0xe29783, + 0xe29784, + 0xe29785, + 0xe29786, + 0xe29787, + 0xe29788, + 0xe29789, + 0xe2978a, + 0xe2978b, + 0xe2978c, + 0xe2978d, + 0xe2978e, + 0xe2978f, + 0xe29790, + 0xe29791, + 0xe29792, + 0xe29793, + 0xe29794, + 0xe29795, + 0xe29796, + 0xe29797, + 0xe29798, + 0xe29799, + 0xe2979a, + 0xe2979b, + 0xe2979c, + 0xe2979d, + 0xe2979e, + 0xe2979f, + 0xe297a0, + 0xe297a1, + 0xe297a2, + 0xe297a3, + 0xe297a4, + 0xe297a5, + 0xe297a6, + 0xe297a7, + 0xe297a8, + 0xe297a9, + 0xe297aa, + 0xe297ab, + 0xe297ac, + 0xe297ad, + 0xe297ae, + 0xe297af, + 0xe297b0, + 0xe297b1, + 0xe297b2, + 0xe297b3, + 0xe297b4, + 0xe297b5, + 0xe297b6, + 0xe297b7, + 0xe297b8, + 0xe297b9, + 0xe297ba, + 0xe297bb, + 0xe297bc, + 0xe297bd, + 0xe297be, + 0xe297bf, + 0xe29880, + 0xe29881, + 0xe29882, + 0xe29883, + 0xe29884, + 0xe29885, + 0xe29886, + 0xe29887, + 0xe29888, + 0xe29889, + 0xe2988a, + 0xe2988b, + 0xe2988c, + 0xe2988d, + 0xe2988e, + 0xe2988f, + 0xe29890, + 0xe29891, + 0xe29892, + 0xe29893, + 0xe29894, + 0xe29895, + 0xe29896, + 0xe29897, + 0xe29898, + 0xe29899, + 0xe2989a, + 0xe2989b, + 0xe2989c, + 0xe2989d, + 0xe2989e, + 0xe2989f, + 0xe298a0, + 0xe298a1, + 0xe298a2, + 0xe298a3, + 0xe298a4, + 0xe298a5, + 0xe298a6, + 0xe298a7, + 0xe298a8, + 0xe298a9, + 0xe298aa, + 0xe298ab, + 0xe298ac, + 0xe298ad, + 0xe298ae, + 0xe298af, + 0xe298b0, + 0xe298b1, + 0xe298b2, + 0xe298b3, + 0xe298b4, + 0xe298b5, + 0xe298b6, + 0xe298b7, + 0xe298b8, + 0xe298b9, + 0xe298ba, + 0xe298bb, + 0xe298bc, + 0xe298bd, + 0xe298be, + 0xe298bf, + 0xe29980, + 0xe29981, + 0xe29982, + 0xe29983, + 0xe29984, + 0xe29985, + 0xe29986, + 0xe29987, + 0xe29988, + 0xe29989, + 0xe2998a, + 0xe2998b, + 0xe2998c, + 0xe2998d, + 0xe2998e, + 0xe2998f, + 0xe29990, + 0xe29991, + 0xe29992, + 0xe29993, + 0xe29994, + 0xe29995, + 0xe29996, + 0xe29997, + 0xe29998, + 0xe29999, + 0xe2999a, + 0xe2999b, + 0xe2999c, + 0xe2999d, + 0xe2999e, + 0xe2999f, + 0xe299a0, + 0xe299a1, + 0xe299a2, + 0xe299a3, + 0xe299a4, + 0xe299a5, + 0xe299a6, + 0xe299a7, + 0xe299a8, + 0xe299a9, + 0xe299aa, + 0xe299ab, + 0xe299ac, + 0xe299ad, + 0xe299ae, + 0xe299af, + 0xe299b0, + 0xe299b1, + 0xe299b2, + 0xe299b3, + 0xe299b4, + 0xe299b5, + 0xe299b6, + 0xe299b7, + 0xe299b8, + 0xe299b9, + 0xe299ba, + 0xe299bb, + 0xe299bc, + 0xe299bd, + 0xe299be, + 0xe299bf, + 0xe29a80, + 0xe29a81, + 0xe29a82, + 0xe29a83, + 0xe29a84, + 0xe29a85, + 0xe29a86, + 0xe29a87, + 0xe29a88, + 0xe29a89, + 0xe29a8a, + 0xe29a8b, + 0xe29a8c, + 0xe29a8d, + 0xe29a8e, + 0xe29a8f, + 0xe29a90, + 0xe29a91, + 0xe29a92, + 0xe29a93, + 0xe29a94, + 0xe29a95, + 0xe29a96, + 0xe29a97, + 0xe29a98, + 0xe29a99, + 0xe29a9a, + 0xe29a9b, + 0xe29a9c, + 0xe29a9d, + 0xe29a9e, + 0xe29a9f, + 0xe29aa0, + 0xe29aa1, + 0xe29aa2, + 0xe29aa3, + 0xe29aa4, + 0xe29aa5, + 0xe29aa6, + 0xe29aa7, + 0xe29aa8, + 0xe29aa9, + 0xe29aaa, + 0xe29aab, + 0xe29aac, + 0xe29aad, + 0xe29aae, + 0xe29aaf, + 0xe29ab0, + 0xe29ab1, + 0xe29ab2, + 0xe29ab3, + 0xe29ab4, + 0xe29ab5, + 0xe29ab6, + 0xe29ab7, + 0xe29ab8, + 0xe29ab9, + 0xe29aba, + 0xe29abb, + 0xe29abc, + 0xe29abd, + 0xe29abe, + 0xe29abf, + 0xe29b80, + 0xe29b81, + 0xe29b82, + 0xe29b83, + 0xe29b84, + 0xe29b85, + 0xe29b86, + 0xe29b87, + 0xe29b88, + 0xe29b89, + 0xe29b8a, + 0xe29b8b, + 0xe29b8c, + 0xe29b8d, + 0xe29b8e, + 0xe29b8f, + 0xe29b90, + 0xe29b91, + 0xe29b92, + 0xe29b93, + 0xe29b94, + 0xe29b95, + 0xe29b96, + 0xe29b97, + 0xe29b98, + 0xe29b99, + 0xe29b9a, + 0xe29b9b, + 0xe29b9c, + 0xe29b9d, + 0xe29b9e, + 0xe29b9f, + 0xe29ba0, + 0xe29ba1, + 0xe29ba2, + 0xe29ba3, + 0xe29ba4, + 0xe29ba5, + 0xe29ba6, + 0xe29ba7, + 0xe29ba8, + 0xe29ba9, + 0xe29baa, + 0xe29bab, + 0xe29bac, + 0xe29bad, + 0xe29bae, + 0xe29baf, + 0xe29bb0, + 0xe29bb1, + 0xe29bb2, + 0xe29bb3, + 0xe29bb4, + 0xe29bb5, + 0xe29bb6, + 0xe29bb7, + 0xe29bb8, + 0xe29bb9, + 0xe29bba, + 0xe29bbb, + 0xe29bbc, + 0xe29bbd, + 0xe29bbe, + 0xe29bbf, + 0xe29c80, + 0xe29c81, + 0xe29c82, + 0xe29c83, + 0xe29c84, + 0xe29c85, + 0xe29c86, + 0xe29c87, + 0xe29c88, + 0xe29c89, + 0xe29c8a, + 0xe29c8b, + 0xe29c8c, + 0xe29c8d, + 0xe29c8e, + 0xe29c8f, + 0xe29c90, + 0xe29c91, + 0xe29c92, + 0xe29c93, + 0xe29c94, + 0xe29c95, + 0xe29c96, + 0xe29c97, + 0xe29c98, + 0xe29c99, + 0xe29c9a, + 0xe29c9b, + 0xe29c9c, + 0xe29c9d, + 0xe29c9e, + 0xe29c9f, + 0xe29ca0, + 0xe29ca1, + 0xe29ca2, + 0xe29ca3, + 0xe29ca4, + 0xe29ca5, + 0xe29ca6, + 0xe29ca7, + 0xe29ca8, + 0xe29ca9, + 0xe29caa, + 0xe29cab, + 0xe29cac, + 0xe29cad, + 0xe29cae, + 0xe29caf, + 0xe29cb0, + 0xe29cb1, + 0xe29cb2, + 0xe29cb3, + 0xe29cb4, + 0xe29cb5, + 0xe29cb6, + 0xe29cb7, + 0xe29cb8, + 0xe29cb9, + 0xe29cba, + 0xe29cbb, + 0xe29cbc, + 0xe29cbd, + 0xe29cbe, + 0xe29cbf, + 0xe29d80, + 0xe29d81, + 0xe29d82, + 0xe29d83, + 0xe29d84, + 0xe29d85, + 0xe29d86, + 0xe29d87, + 0xe29d88, + 0xe29d89, + 0xe29d8a, + 0xe29d8b, + 0xe29d8c, + 0xe29d8d, + 0xe29d8e, + 0xe29d8f, + 0xe29d90, + 0xe29d91, + 0xe29d92, + 0xe29d93, + 0xe29d94, + 0xe29d95, + 0xe29d96, + 0xe29d97, + 0xe29d98, + 0xe29d99, + 0xe29d9a, + 0xe29d9b, + 0xe29d9c, + 0xe29d9d, + 0xe29d9e, + 0xe29d9f, + 0xe29da0, + 0xe29da1, + 0xe29da2, + 0xe29da3, + 0xe29da4, + 0xe29da5, + 0xe29da6, + 0xe29da7, + 0xe29da8, + 0xe29da9, + 0xe29daa, + 0xe29dab, + 0xe29dac, + 0xe29dad, + 0xe29dae, + 0xe29daf, + 0xe29db0, + 0xe29db1, + 0xe29db2, + 0xe29db3, + 0xe29db4, + 0xe29db5, + 0xe29db6, + 0xe29db7, + 0xe29db8, + 0xe29db9, + 0xe29dba, + 0xe29dbb, + 0xe29dbc, + 0xe29dbd, + 0xe29dbe, + 0xe29dbf, + 0xe29e80, + 0xe29e81, + 0xe29e82, + 0xe29e83, + 0xe29e84, + 0xe29e85, + 0xe29e86, + 0xe29e87, + 0xe29e88, + 0xe29e89, + 0xe29e8a, + 0xe29e8b, + 0xe29e8c, + 0xe29e8d, + 0xe29e8e, + 0xe29e8f, + 0xe29e90, + 0xe29e91, + 0xe29e92, + 0xe29e93, + 0xe29e94, + 0xe29e95, + 0xe29e96, + 0xe29e97, + 0xe29e98, + 0xe29e99, + 0xe29e9a, + 0xe29e9b, + 0xe29e9c, + 0xe29e9d, + 0xe29e9e, + 0xe29e9f, + 0xe29ea0, + 0xe29ea1, + 0xe29ea2, + 0xe29ea3, + 0xe29ea4, + 0xe29ea5, + 0xe29ea6, + 0xe29ea7, + 0xe29ea8, + 0xe29ea9, + 0xe29eaa, + 0xe29eab, + 0xe29eac, + 0xe29ead, + 0xe29eae, + 0xe29eaf, + 0xe29eb0, + 0xe29eb1, + 0xe29eb2, + 0xe29eb3, + 0xe29eb4, + 0xe29eb5, + 0xe29eb6, + 0xe29eb7, + 0xe29eb8, + 0xe29eb9, + 0xe29eba, + 0xe29ebb, + 0xe29ebc, + 0xe29ebd, + 0xe29ebe, + 0xe29ebf, + 0xe29f80, + 0xe29f81, + 0xe29f82, + 0xe29f83, + 0xe29f84, + 0xe29f85, + 0xe29f86, + 0xe29f87, + 0xe29f88, + 0xe29f89, + 0xe29f8a, + 0xe29f8b, + 0xe29f8c, + 0xe29f8d, + 0xe29f8e, + 0xe29f8f, + 0xe29f90, + 0xe29f91, + 0xe29f92, + 0xe29f93, + 0xe29f94, + 0xe29f95, + 0xe29f96, + 0xe29f97, + 0xe29f98, + 0xe29f99, + 0xe29f9a, + 0xe29f9b, + 0xe29f9c, + 0xe29f9d, + 0xe29f9e, + 0xe29f9f, + 0xe29fa0, + 0xe29fa1, + 0xe29fa2, + 0xe29fa3, + 0xe29fa4, + 0xe29fa5, + 0xe29fa6, + 0xe29fa7, + 0xe29fa8, + 0xe29fa9, + 0xe29faa, + 0xe29fab, + 0xe29fac, + 0xe29fad, + 0xe29fae, + 0xe29faf, + 0xe29fb0, + 0xe29fb1, + 0xe29fb2, + 0xe29fb3, + 0xe29fb4, + 0xe29fb5, + 0xe29fb6, + 0xe29fb7, + 0xe29fb8, + 0xe29fb9, + 0xe29fba, + 0xe29fbb, + 0xe29fbc, + 0xe29fbd, + 0xe29fbe, + 0xe29fbf, + 0xe2a080, + 0xe2a081, + 0xe2a082, + 0xe2a083, + 0xe2a084, + 0xe2a085, + 0xe2a086, + 0xe2a087, + 0xe2a088, + 0xe2a089, + 0xe2a08a, + 0xe2a08b, + 0xe2a08c, + 0xe2a08d, + 0xe2a08e, + 0xe2a08f, + 0xe2a090, + 0xe2a091, + 0xe2a092, + 0xe2a093, + 0xe2a094, + 0xe2a095, + 0xe2a096, + 0xe2a097, + 0xe2a098, + 0xe2a099, + 0xe2a09a, + 0xe2a09b, + 0xe2a09c, + 0xe2a09d, + 0xe2a09e, + 0xe2a09f, + 0xe2a0a0, + 0xe2a0a1, + 0xe2a0a2, + 0xe2a0a3, + 0xe2a0a4, + 0xe2a0a5, + 0xe2a0a6, + 0xe2a0a7, + 0xe2a0a8, + 0xe2a0a9, + 0xe2a0aa, + 0xe2a0ab, + 0xe2a0ac, + 0xe2a0ad, + 0xe2a0ae, + 0xe2a0af, + 0xe2a0b0, + 0xe2a0b1, + 0xe2a0b2, + 0xe2a0b3, + 0xe2a0b4, + 0xe2a0b5, + 0xe2a0b6, + 0xe2a0b7, + 0xe2a0b8, + 0xe2a0b9, + 0xe2a0ba, + 0xe2a0bb, + 0xe2a0bc, + 0xe2a0bd, + 0xe2a0be, + 0xe2a0bf, + 0xe2a180, + 0xe2a181, + 0xe2a182, + 0xe2a183, + 0xe2a184, + 0xe2a185, + 0xe2a186, + 0xe2a187, + 0xe2a188, + 0xe2a189, + 0xe2a18a, + 0xe2a18b, + 0xe2a18c, + 0xe2a18d, + 0xe2a18e, + 0xe2a18f, + 0xe2a190, + 0xe2a191, + 0xe2a192, + 0xe2a193, + 0xe2a194, + 0xe2a195, + 0xe2a196, + 0xe2a197, + 0xe2a198, + 0xe2a199, + 0xe2a19a, + 0xe2a19b, + 0xe2a19c, + 0xe2a19d, + 0xe2a19e, + 0xe2a19f, + 0xe2a1a0, + 0xe2a1a1, + 0xe2a1a2, + 0xe2a1a3, + 0xe2a1a4, + 0xe2a1a5, + 0xe2a1a6, + 0xe2a1a7, + 0xe2a1a8, + 0xe2a1a9, + 0xe2a1aa, + 0xe2a1ab, + 0xe2a1ac, + 0xe2a1ad, + 0xe2a1ae, + 0xe2a1af, + 0xe2a1b0, + 0xe2a1b1, + 0xe2a1b2, + 0xe2a1b3, + 0xe2a1b4, + 0xe2a1b5, + 0xe2a1b6, + 0xe2a1b7, + 0xe2a1b8, + 0xe2a1b9, + 0xe2a1ba, + 0xe2a1bb, + 0xe2a1bc, + 0xe2a1bd, + 0xe2a1be, + 0xe2a1bf, + 0xe2a280, + 0xe2a281, + 0xe2a282, + 0xe2a283, + 0xe2a284, + 0xe2a285, + 0xe2a286, + 0xe2a287, + 0xe2a288, + 0xe2a289, + 0xe2a28a, + 0xe2a28b, + 0xe2a28c, + 0xe2a28d, + 0xe2a28e, + 0xe2a28f, + 0xe2a290, + 0xe2a291, + 0xe2a292, + 0xe2a293, + 0xe2a294, + 0xe2a295, + 0xe2a296, + 0xe2a297, + 0xe2a298, + 0xe2a299, + 0xe2a29a, + 0xe2a29b, + 0xe2a29c, + 0xe2a29d, + 0xe2a29e, + 0xe2a29f, + 0xe2a2a0, + 0xe2a2a1, + 0xe2a2a2, + 0xe2a2a3, + 0xe2a2a4, + 0xe2a2a5, + 0xe2a2a6, + 0xe2a2a7, + 0xe2a2a8, + 0xe2a2a9, + 0xe2a2aa, + 0xe2a2ab, + 0xe2a2ac, + 0xe2a2ad, + 0xe2a2ae, + 0xe2a2af, + 0xe2a2b0, + 0xe2a2b1, + 0xe2a2b2, + 0xe2a2b3, + 0xe2a2b4, + 0xe2a2b5, + 0xe2a2b6, + 0xe2a2b7, + 0xe2a2b8, + 0xe2a2b9, + 0xe2a2ba, + 0xe2a2bb, + 0xe2a2bc, + 0xe2a2bd, + 0xe2a2be, + 0xe2a2bf, + 0xe2a380, + 0xe2a381, + 0xe2a382, + 0xe2a383, + 0xe2a384, + 0xe2a385, + 0xe2a386, + 0xe2a387, + 0xe2a388, + 0xe2a389, + 0xe2a38a, + 0xe2a38b, + 0xe2a38c, + 0xe2a38d, + 0xe2a38e, + 0xe2a38f, + 0xe2a390, + 0xe2a391, + 0xe2a392, + 0xe2a393, + 0xe2a394, + 0xe2a395, + 0xe2a396, + 0xe2a397, + 0xe2a398, + 0xe2a399, + 0xe2a39a, + 0xe2a39b, + 0xe2a39c, + 0xe2a39d, + 0xe2a39e, + 0xe2a39f, + 0xe2a3a0, + 0xe2a3a1, + 0xe2a3a2, + 0xe2a3a3, + 0xe2a3a4, + 0xe2a3a5, + 0xe2a3a6, + 0xe2a3a7, + 0xe2a3a8, + 0xe2a3a9, + 0xe2a3aa, + 0xe2a3ab, + 0xe2a3ac, + 0xe2a3ad, + 0xe2a3ae, + 0xe2a3af, + 0xe2a3b0, + 0xe2a3b1, + 0xe2a3b2, + 0xe2a3b3, + 0xe2a3b4, + 0xe2a3b5, + 0xe2a3b6, + 0xe2a3b7, + 0xe2a3b8, + 0xe2a3b9, + 0xe2a3ba, + 0xe2a3bb, + 0xe2a3bc, + 0xe2a3bd, + 0xe2a3be, + 0xe2a3bf, + 0xe2a480, + 0xe2a481, + 0xe2a482, + 0xe2a483, + 0xe2a484, + 0xe2a485, + 0xe2a486, + 0xe2a487, + 0xe2a488, + 0xe2a489, + 0xe2a48a, + 0xe2a48b, + 0xe2a48c, + 0xe2a48d, + 0xe2a48e, + 0xe2a48f, + 0xe2a490, + 0xe2a491, + 0xe2a492, + 0xe2a493, + 0xe2a494, + 0xe2a495, + 0xe2a496, + 0xe2a497, + 0xe2a498, + 0xe2a499, + 0xe2a49a, + 0xe2a49b, + 0xe2a49c, + 0xe2a49d, + 0xe2a49e, + 0xe2a49f, + 0xe2a4a0, + 0xe2a4a1, + 0xe2a4a2, + 0xe2a4a3, + 0xe2a4a4, + 0xe2a4a5, + 0xe2a4a6, + 0xe2a4a7, + 0xe2a4a8, + 0xe2a4a9, + 0xe2a4aa, + 0xe2a4ab, + 0xe2a4ac, + 0xe2a4ad, + 0xe2a4ae, + 0xe2a4af, + 0xe2a4b0, + 0xe2a4b1, + 0xe2a4b2, + 0xe2a4b3, + 0xe2a4b4, + 0xe2a4b5, + 0xe2a4b6, + 0xe2a4b7, + 0xe2a4b8, + 0xe2a4b9, + 0xe2a4ba, + 0xe2a4bb, + 0xe2a4bc, + 0xe2a4bd, + 0xe2a4be, + 0xe2a4bf, + 0xe2a580, + 0xe2a581, + 0xe2a582, + 0xe2a583, + 0xe2a584, + 0xe2a585, + 0xe2a586, + 0xe2a587, + 0xe2a588, + 0xe2a589, + 0xe2a58a, + 0xe2a58b, + 0xe2a58c, + 0xe2a58d, + 0xe2a58e, + 0xe2a58f, + 0xe2a590, + 0xe2a591, + 0xe2a592, + 0xe2a593, + 0xe2a594, + 0xe2a595, + 0xe2a596, + 0xe2a597, + 0xe2a598, + 0xe2a599, + 0xe2a59a, + 0xe2a59b, + 0xe2a59c, + 0xe2a59d, + 0xe2a59e, + 0xe2a59f, + 0xe2a5a0, + 0xe2a5a1, + 0xe2a5a2, + 0xe2a5a3, + 0xe2a5a4, + 0xe2a5a5, + 0xe2a5a6, + 0xe2a5a7, + 0xe2a5a8, + 0xe2a5a9, + 0xe2a5aa, + 0xe2a5ab, + 0xe2a5ac, + 0xe2a5ad, + 0xe2a5ae, + 0xe2a5af, + 0xe2a5b0, + 0xe2a5b1, + 0xe2a5b2, + 0xe2a5b3, + 0xe2a5b4, + 0xe2a5b5, + 0xe2a5b6, + 0xe2a5b7, + 0xe2a5b8, + 0xe2a5b9, + 0xe2a5ba, + 0xe2a5bb, + 0xe2a5bc, + 0xe2a5bd, + 0xe2a5be, + 0xe2a5bf, + 0xe2a680, + 0xe2a681, + 0xe2a682, + 0xe2a683, + 0xe2a684, + 0xe2a685, + 0xe2a686, + 0xe2a687, + 0xe2a688, + 0xe2a689, + 0xe2a68a, + 0xe2a68b, + 0xe2a68c, + 0xe2a68d, + 0xe2a68e, + 0xe2a68f, + 0xe2a690, + 0xe2a691, + 0xe2a692, + 0xe2a693, + 0xe2a694, + 0xe2a695, + 0xe2a696, + 0xe2a697, + 0xe2a698, + 0xe2a699, + 0xe2a69a, + 0xe2a69b, + 0xe2a69c, + 0xe2a69d, + 0xe2a69e, + 0xe2a69f, + 0xe2a6a0, + 0xe2a6a1, + 0xe2a6a2, + 0xe2a6a3, + 0xe2a6a4, + 0xe2a6a5, + 0xe2a6a6, + 0xe2a6a7, + 0xe2a6a8, + 0xe2a6a9, + 0xe2a6aa, + 0xe2a6ab, + 0xe2a6ac, + 0xe2a6ad, + 0xe2a6ae, + 0xe2a6af, + 0xe2a6b0, + 0xe2a6b1, + 0xe2a6b2, + 0xe2a6b3, + 0xe2a6b4, + 0xe2a6b5, + 0xe2a6b6, + 0xe2a6b7, + 0xe2a6b8, + 0xe2a6b9, + 0xe2a6ba, + 0xe2a6bb, + 0xe2a6bc, + 0xe2a6bd, + 0xe2a6be, + 0xe2a6bf, + 0xe2a780, + 0xe2a781, + 0xe2a782, + 0xe2a783, + 0xe2a784, + 0xe2a785, + 0xe2a786, + 0xe2a787, + 0xe2a788, + 0xe2a789, + 0xe2a78a, + 0xe2a78b, + 0xe2a78c, + 0xe2a78d, + 0xe2a78e, + 0xe2a78f, + 0xe2a790, + 0xe2a791, + 0xe2a792, + 0xe2a793, + 0xe2a794, + 0xe2a795, + 0xe2a796, + 0xe2a797, + 0xe2a798, + 0xe2a799, + 0xe2a79a, + 0xe2a79b, + 0xe2a79c, + 0xe2a79d, + 0xe2a79e, + 0xe2a79f, + 0xe2a7a0, + 0xe2a7a1, + 0xe2a7a2, + 0xe2a7a3, + 0xe2a7a4, + 0xe2a7a5, + 0xe2a7a6, + 0xe2a7a7, + 0xe2a7a8, + 0xe2a7a9, + 0xe2a7aa, + 0xe2a7ab, + 0xe2a7ac, + 0xe2a7ad, + 0xe2a7ae, + 0xe2a7af, + 0xe2a7b0, + 0xe2a7b1, + 0xe2a7b2, + 0xe2a7b3, + 0xe2a7b4, + 0xe2a7b5, + 0xe2a7b6, + 0xe2a7b7, + 0xe2a7b8, + 0xe2a7b9, + 0xe2a7ba, + 0xe2a7bb, + 0xe2a7bc, + 0xe2a7bd, + 0xe2a7be, + 0xe2a7bf, + 0xe2a880, + 0xe2a881, + 0xe2a882, + 0xe2a883, + 0xe2a884, + 0xe2a885, + 0xe2a886, + 0xe2a887, + 0xe2a888, + 0xe2a889, + 0xe2a88a, + 0xe2a88b, + 0xe2a88c, + 0xe2a88d, + 0xe2a88e, + 0xe2a88f, + 0xe2a890, + 0xe2a891, + 0xe2a892, + 0xe2a893, + 0xe2a894, + 0xe2a895, + 0xe2a896, + 0xe2a897, + 0xe2a898, + 0xe2a899, + 0xe2a89a, + 0xe2a89b, + 0xe2a89c, + 0xe2a89d, + 0xe2a89e, + 0xe2a89f, + 0xe2a8a0, + 0xe2a8a1, + 0xe2a8a2, + 0xe2a8a3, + 0xe2a8a4, + 0xe2a8a5, + 0xe2a8a6, + 0xe2a8a7, + 0xe2a8a8, + 0xe2a8a9, + 0xe2a8aa, + 0xe2a8ab, + 0xe2a8ac, + 0xe2a8ad, + 0xe2a8ae, + 0xe2a8af, + 0xe2a8b0, + 0xe2a8b1, + 0xe2a8b2, + 0xe2a8b3, + 0xe2a8b4, + 0xe2a8b5, + 0xe2a8b6, + 0xe2a8b7, + 0xe2a8b8, + 0xe2a8b9, + 0xe2a8ba, + 0xe2a8bb, + 0xe2a8bc, + 0xe2a8bd, + 0xe2a8be, + 0xe2a8bf, + 0xe2a980, + 0xe2a981, + 0xe2a982, + 0xe2a983, + 0xe2a984, + 0xe2a985, + 0xe2a986, + 0xe2a987, + 0xe2a988, + 0xe2a989, + 0xe2a98a, + 0xe2a98b, + 0xe2a98c, + 0xe2a98d, + 0xe2a98e, + 0xe2a98f, + 0xe2a990, + 0xe2a991, + 0xe2a992, + 0xe2a993, + 0xe2a994, + 0xe2a995, + 0xe2a996, + 0xe2a997, + 0xe2a998, + 0xe2a999, + 0xe2a99a, + 0xe2a99b, + 0xe2a99c, + 0xe2a99d, + 0xe2a99e, + 0xe2a99f, + 0xe2a9a0, + 0xe2a9a1, + 0xe2a9a2, + 0xe2a9a3, + 0xe2a9a4, + 0xe2a9a5, + 0xe2a9a6, + 0xe2a9a7, + 0xe2a9a8, + 0xe2a9a9, + 0xe2a9aa, + 0xe2a9ab, + 0xe2a9ac, + 0xe2a9ad, + 0xe2a9ae, + 0xe2a9af, + 0xe2a9b0, + 0xe2a9b1, + 0xe2a9b2, + 0xe2a9b3, + 0xe2a9b4, + 0xe2a9b5, + 0xe2a9b6, + 0xe2a9b7, + 0xe2a9b8, + 0xe2a9b9, + 0xe2a9ba, + 0xe2a9bb, + 0xe2a9bc, + 0xe2a9bd, + 0xe2a9be, + 0xe2a9bf, + 0xe2aa80, + 0xe2aa81, + 0xe2aa82, + 0xe2aa83, + 0xe2aa84, + 0xe2aa85, + 0xe2aa86, + 0xe2aa87, + 0xe2aa88, + 0xe2aa89, + 0xe2aa8a, + 0xe2aa8b, + 0xe2aa8c, + 0xe2aa8d, + 0xe2aa8e, + 0xe2aa8f, + 0xe2aa90, + 0xe2aa91, + 0xe2aa92, + 0xe2aa93, + 0xe2aa94, + 0xe2aa95, + 0xe2aa96, + 0xe2aa97, + 0xe2aa98, + 0xe2aa99, + 0xe2aa9a, + 0xe2aa9b, + 0xe2aa9c, + 0xe2aa9d, + 0xe2aa9e, + 0xe2aa9f, + 0xe2aaa0, + 0xe2aaa1, + 0xe2aaa2, + 0xe2aaa3, + 0xe2aaa4, + 0xe2aaa5, + 0xe2aaa6, + 0xe2aaa7, + 0xe2aaa8, + 0xe2aaa9, + 0xe2aaaa, + 0xe2aaab, + 0xe2aaac, + 0xe2aaad, + 0xe2aaae, + 0xe2aaaf, + 0xe2aab0, + 0xe2aab1, + 0xe2aab2, + 0xe2aab3, + 0xe2aab4, + 0xe2aab5, + 0xe2aab6, + 0xe2aab7, + 0xe2aab8, + 0xe2aab9, + 0xe2aaba, + 0xe2aabb, + 0xe2aabc, + 0xe2aabd, + 0xe2aabe, + 0xe2aabf, + 0xe2ab80, + 0xe2ab81, + 0xe2ab82, + 0xe2ab83, + 0xe2ab84, + 0xe2ab85, + 0xe2ab86, + 0xe2ab87, + 0xe2ab88, + 0xe2ab89, + 0xe2ab8a, + 0xe2ab8b, + 0xe2ab8c, + 0xe2ab8d, + 0xe2ab8e, + 0xe2ab8f, + 0xe2ab90, + 0xe2ab91, + 0xe2ab92, + 0xe2ab93, + 0xe2ab94, + 0xe2ab95, + 0xe2ab96, + 0xe2ab97, + 0xe2ab98, + 0xe2ab99, + 0xe2ab9a, + 0xe2ab9b, + 0xe2ab9c, + 0xe2ab9d, + 0xe2ab9e, + 0xe2ab9f, + 0xe2aba0, + 0xe2aba1, + 0xe2aba2, + 0xe2aba3, + 0xe2aba4, + 0xe2aba5, + 0xe2aba6, + 0xe2aba7, + 0xe2aba8, + 0xe2aba9, + 0xe2abaa, + 0xe2abab, + 0xe2abac, + 0xe2abad, + 0xe2abae, + 0xe2abaf, + 0xe2abb0, + 0xe2abb1, + 0xe2abb2, + 0xe2abb3, + 0xe2abb4, + 0xe2abb5, + 0xe2abb6, + 0xe2abb7, + 0xe2abb8, + 0xe2abb9, + 0xe2abba, + 0xe2abbb, + 0xe2abbc, + 0xe2abbd, + 0xe2abbe, + 0xe2abbf, + 0xe2ac80, + 0xe2ac81, + 0xe2ac82, + 0xe2ac83, + 0xe2ac84, + 0xe2ac85, + 0xe2ac86, + 0xe2ac87, + 0xe2ac88, + 0xe2ac89, + 0xe2ac8a, + 0xe2ac8b, + 0xe2ac8c, + 0xe2ac8d, + 0xe2ac8e, + 0xe2ac8f, + 0xe2ac90, + 0xe2ac91, + 0xe2ac92, + 0xe2ac93, + 0xe2ac94, + 0xe2ac95, + 0xe2ac96, + 0xe2ac97, + 0xe2ac98, + 0xe2ac99, + 0xe2ac9a, + 0xe2ac9b, + 0xe2ac9c, + 0xe2ac9d, + 0xe2ac9e, + 0xe2ac9f, + 0xe2aca0, + 0xe2aca1, + 0xe2aca2, + 0xe2aca3, + 0xe2aca4, + 0xe2aca5, + 0xe2aca6, + 0xe2aca7, + 0xe2aca8, + 0xe2aca9, + 0xe2acaa, + 0xe2acab, + 0xe2acac, + 0xe2acad, + 0xe2acae, + 0xe2acaf, + 0xe2acb0, + 0xe2acb1, + 0xe2acb2, + 0xe2acb3, + 0xe2acb4, + 0xe2acb5, + 0xe2acb6, + 0xe2acb7, + 0xe2acb8, + 0xe2acb9, + 0xe2acba, + 0xe2acbb, + 0xe2acbc, + 0xe2acbd, + 0xe2acbe, + 0xe2acbf, + 0xe2ad80, + 0xe2ad81, + 0xe2ad82, + 0xe2ad83, + 0xe2ad84, + 0xe2ad85, + 0xe2ad86, + 0xe2ad87, + 0xe2ad88, + 0xe2ad89, + 0xe2ad8a, + 0xe2ad8b, + 0xe2ad8c, + 0xe2ad8d, + 0xe2ad8e, + 0xe2ad8f, + 0xe2ad90, + 0xe2ad91, + 0xe2ad92, + 0xe2ad93, + 0xe2ad94, + 0xe2ad95, + 0xe2ad96, + 0xe2ad97, + 0xe2ad98, + 0xe2ad99, + 0xe2ad9a, + 0xe2ad9b, + 0xe2ad9c, + 0xe2ad9d, + 0xe2ad9e, + 0xe2ad9f, + 0xe2ada0, + 0xe2ada1, + 0xe2ada2, + 0xe2ada3, + 0xe2ada4, + 0xe2ada5, + 0xe2ada6, + 0xe2ada7, + 0xe2ada8, + 0xe2ada9, + 0xe2adaa, + 0xe2adab, + 0xe2adac, + 0xe2adad, + 0xe2adae, + 0xe2adaf, + 0xe2adb0, + 0xe2adb1, + 0xe2adb2, + 0xe2adb3, + 0xe2adb4, + 0xe2adb5, + 0xe2adb6, + 0xe2adb7, + 0xe2adb8, + 0xe2adb9, + 0xe2adba, + 0xe2adbb, + 0xe2adbc, + 0xe2adbd, + 0xe2adbe, + 0xe2adbf, + 0xe2ae80, + 0xe2ae81, + 0xe2ae82, + 0xe2ae83, + 0xe2ae84, + 0xe2ae85, + 0xe2ae86, + 0xe2ae87, + 0xe2ae88, + 0xe2ae89, + 0xe2ae8a, + 0xe2ae8b, + 0xe2ae8c, + 0xe2ae8d, + 0xe2ae8e, + 0xe2ae8f, + 0xe2ae90, + 0xe2ae91, + 0xe2ae92, + 0xe2ae93, + 0xe2ae94, + 0xe2ae95, + 0xe2ae96, + 0xe2ae97, + 0xe2ae98, + 0xe2ae99, + 0xe2ae9a, + 0xe2ae9b, + 0xe2ae9c, + 0xe2ae9d, + 0xe2ae9e, + 0xe2ae9f, + 0xe2aea0, + 0xe2aea1, + 0xe2aea2, + 0xe2aea3, + 0xe2aea4, + 0xe2aea5, + 0xe2aea6, + 0xe2aea7, + 0xe2aea8, + 0xe2aea9, + 0xe2aeaa, + 0xe2aeab, + 0xe2aeac, + 0xe2aead, + 0xe2aeae, + 0xe2aeaf, + 0xe2aeb0, + 0xe2aeb1, + 0xe2aeb2, + 0xe2aeb3, + 0xe2aeb4, + 0xe2aeb5, + 0xe2aeb6, + 0xe2aeb7, + 0xe2aeb8, + 0xe2aeb9, + 0xe2aeba, + 0xe2aebb, + 0xe2aebc, + 0xe2aebd, + 0xe2aebe, + 0xe2aebf, + 0xe2af80, + 0xe2af81, + 0xe2af82, + 0xe2af83, + 0xe2af84, + 0xe2af85, + 0xe2af86, + 0xe2af87, + 0xe2af88, + 0xe2af89, + 0xe2af8a, + 0xe2af8b, + 0xe2af8c, + 0xe2af8d, + 0xe2af8e, + 0xe2af8f, + 0xe2af90, + 0xe2af91, + 0xe2af92, + 0xe2af93, + 0xe2af94, + 0xe2af95, + 0xe2af96, + 0xe2af97, + 0xe2af98, + 0xe2af99, + 0xe2af9a, + 0xe2af9b, + 0xe2af9c, + 0xe2af9d, + 0xe2af9e, + 0xe2af9f, + 0xe2afa0, + 0xe2afa1, + 0xe2afa2, + 0xe2afa3, + 0xe2afa4, + 0xe2afa5, + 0xe2afa6, + 0xe2afa7, + 0xe2afa8, + 0xe2afa9, + 0xe2afaa, + 0xe2afab, + 0xe2afac, + 0xe2afad, + 0xe2afae, + 0xe2afaf, + 0xe2afb0, + 0xe2afb1, + 0xe2afb2, + 0xe2afb3, + 0xe2afb4, + 0xe2afb5, + 0xe2afb6, + 0xe2afb7, + 0xe2afb8, + 0xe2afb9, + 0xe2afba, + 0xe2afbb, + 0xe2afbc, + 0xe2afbd, + 0xe2afbe, + 0xe2afbf, + 0xe2b080, + 0xe2b081, + 0xe2b082, + 0xe2b083, + 0xe2b084, + 0xe2b085, + 0xe2b086, + 0xe2b087, + 0xe2b088, + 0xe2b089, + 0xe2b08a, + 0xe2b08b, + 0xe2b08c, + 0xe2b08d, + 0xe2b08e, + 0xe2b08f, + 0xe2b090, + 0xe2b091, + 0xe2b092, + 0xe2b093, + 0xe2b094, + 0xe2b095, + 0xe2b096, + 0xe2b097, + 0xe2b098, + 0xe2b099, + 0xe2b09a, + 0xe2b09b, + 0xe2b09c, + 0xe2b09d, + 0xe2b09e, + 0xe2b09f, + 0xe2b0a0, + 0xe2b0a1, + 0xe2b0a2, + 0xe2b0a3, + 0xe2b0a4, + 0xe2b0a5, + 0xe2b0a6, + 0xe2b0a7, + 0xe2b0a8, + 0xe2b0a9, + 0xe2b0aa, + 0xe2b0ab, + 0xe2b0ac, + 0xe2b0ad, + 0xe2b0ae, + 0xe2b0af, + 0xe2b0b0, + 0xe2b0b1, + 0xe2b0b2, + 0xe2b0b3, + 0xe2b0b4, + 0xe2b0b5, + 0xe2b0b6, + 0xe2b0b7, + 0xe2b0b8, + 0xe2b0b9, + 0xe2b0ba, + 0xe2b0bb, + 0xe2b0bc, + 0xe2b0bd, + 0xe2b0be, + 0xe2b0bf, + 0xe2b180, + 0xe2b181, + 0xe2b182, + 0xe2b183, + 0xe2b184, + 0xe2b185, + 0xe2b186, + 0xe2b187, + 0xe2b188, + 0xe2b189, + 0xe2b18a, + 0xe2b18b, + 0xe2b18c, + 0xe2b18d, + 0xe2b18e, + 0xe2b18f, + 0xe2b190, + 0xe2b191, + 0xe2b192, + 0xe2b193, + 0xe2b194, + 0xe2b195, + 0xe2b196, + 0xe2b197, + 0xe2b198, + 0xe2b199, + 0xe2b19a, + 0xe2b19b, + 0xe2b19c, + 0xe2b19d, + 0xe2b19e, + 0xe2b19f, + 0xe2b1a0, + 0xe2b1a1, + 0xe2b1a2, + 0xe2b1a3, + 0xe2b1a4, + 0xe2b1a5, + 0xe2b1a6, + 0xe2b1a7, + 0xe2b1a8, + 0xe2b1a9, + 0xe2b1aa, + 0xe2b1ab, + 0xe2b1ac, + 0xe2b1ad, + 0xe2b1ae, + 0xe2b1af, + 0xe2b1b0, + 0xe2b1b1, + 0xe2b1b2, + 0xe2b1b3, + 0xe2b1b4, + 0xe2b1b5, + 0xe2b1b6, + 0xe2b1b7, + 0xe2b1b8, + 0xe2b1b9, + 0xe2b1ba, + 0xe2b1bb, + 0xe2b1bc, + 0xe2b1bd, + 0xe2b1be, + 0xe2b1bf, + 0xe2b280, + 0xe2b281, + 0xe2b282, + 0xe2b283, + 0xe2b284, + 0xe2b285, + 0xe2b286, + 0xe2b287, + 0xe2b288, + 0xe2b289, + 0xe2b28a, + 0xe2b28b, + 0xe2b28c, + 0xe2b28d, + 0xe2b28e, + 0xe2b28f, + 0xe2b290, + 0xe2b291, + 0xe2b292, + 0xe2b293, + 0xe2b294, + 0xe2b295, + 0xe2b296, + 0xe2b297, + 0xe2b298, + 0xe2b299, + 0xe2b29a, + 0xe2b29b, + 0xe2b29c, + 0xe2b29d, + 0xe2b29e, + 0xe2b29f, + 0xe2b2a0, + 0xe2b2a1, + 0xe2b2a2, + 0xe2b2a3, + 0xe2b2a4, + 0xe2b2a5, + 0xe2b2a6, + 0xe2b2a7, + 0xe2b2a8, + 0xe2b2a9, + 0xe2b2aa, + 0xe2b2ab, + 0xe2b2ac, + 0xe2b2ad, + 0xe2b2ae, + 0xe2b2af, + 0xe2b2b0, + 0xe2b2b1, + 0xe2b2b2, + 0xe2b2b3, + 0xe2b2b4, + 0xe2b2b5, + 0xe2b2b6, + 0xe2b2b7, + 0xe2b2b8, + 0xe2b2b9, + 0xe2b2ba, + 0xe2b2bb, + 0xe2b2bc, + 0xe2b2bd, + 0xe2b2be, + 0xe2b2bf, + 0xe2b380, + 0xe2b381, + 0xe2b382, + 0xe2b383, + 0xe2b384, + 0xe2b385, + 0xe2b386, + 0xe2b387, + 0xe2b388, + 0xe2b389, + 0xe2b38a, + 0xe2b38b, + 0xe2b38c, + 0xe2b38d, + 0xe2b38e, + 0xe2b38f, + 0xe2b390, + 0xe2b391, + 0xe2b392, + 0xe2b393, + 0xe2b394, + 0xe2b395, + 0xe2b396, + 0xe2b397, + 0xe2b398, + 0xe2b399, + 0xe2b39a, + 0xe2b39b, + 0xe2b39c, + 0xe2b39d, + 0xe2b39e, + 0xe2b39f, + 0xe2b3a0, + 0xe2b3a1, + 0xe2b3a2, + 0xe2b3a3, + 0xe2b3a4, + 0xe2b3a5, + 0xe2b3a6, + 0xe2b3a7, + 0xe2b3a8, + 0xe2b3a9, + 0xe2b3aa, + 0xe2b3ab, + 0xe2b3ac, + 0xe2b3ad, + 0xe2b3ae, + 0xe2b3af, + 0xe2b3b0, + 0xe2b3b1, + 0xe2b3b2, + 0xe2b3b3, + 0xe2b3b4, + 0xe2b3b5, + 0xe2b3b6, + 0xe2b3b7, + 0xe2b3b8, + 0xe2b3b9, + 0xe2b3ba, + 0xe2b3bb, + 0xe2b3bc, + 0xe2b3bd, + 0xe2b3be, + 0xe2b3bf, + 0xe2b480, + 0xe2b481, + 0xe2b482, + 0xe2b483, + 0xe2b484, + 0xe2b485, + 0xe2b486, + 0xe2b487, + 0xe2b488, + 0xe2b489, + 0xe2b48a, + 0xe2b48b, + 0xe2b48c, + 0xe2b48d, + 0xe2b48e, + 0xe2b48f, + 0xe2b490, + 0xe2b491, + 0xe2b492, + 0xe2b493, + 0xe2b494, + 0xe2b495, + 0xe2b496, + 0xe2b497, + 0xe2b498, + 0xe2b499, + 0xe2b49a, + 0xe2b49b, + 0xe2b49c, + 0xe2b49d, + 0xe2b49e, + 0xe2b49f, + 0xe2b4a0, + 0xe2b4a1, + 0xe2b4a2, + 0xe2b4a3, + 0xe2b4a4, + 0xe2b4a5, + 0xe2b4a6, + 0xe2b4a7, + 0xe2b4a8, + 0xe2b4a9, + 0xe2b4aa, + 0xe2b4ab, + 0xe2b4ac, + 0xe2b4ad, + 0xe2b4ae, + 0xe2b4af, + 0xe2b4b0, + 0xe2b4b1, + 0xe2b4b2, + 0xe2b4b3, + 0xe2b4b4, + 0xe2b4b5, + 0xe2b4b6, + 0xe2b4b7, + 0xe2b4b8, + 0xe2b4b9, + 0xe2b4ba, + 0xe2b4bb, + 0xe2b4bc, + 0xe2b4bd, + 0xe2b4be, + 0xe2b4bf, + 0xe2b580, + 0xe2b581, + 0xe2b582, + 0xe2b583, + 0xe2b584, + 0xe2b585, + 0xe2b586, + 0xe2b587, + 0xe2b588, + 0xe2b589, + 0xe2b58a, + 0xe2b58b, + 0xe2b58c, + 0xe2b58d, + 0xe2b58e, + 0xe2b58f, + 0xe2b590, + 0xe2b591, + 0xe2b592, + 0xe2b593, + 0xe2b594, + 0xe2b595, + 0xe2b596, + 0xe2b597, + 0xe2b598, + 0xe2b599, + 0xe2b59a, + 0xe2b59b, + 0xe2b59c, + 0xe2b59d, + 0xe2b59e, + 0xe2b59f, + 0xe2b5a0, + 0xe2b5a1, + 0xe2b5a2, + 0xe2b5a3, + 0xe2b5a4, + 0xe2b5a5, + 0xe2b5a6, + 0xe2b5a7, + 0xe2b5a8, + 0xe2b5a9, + 0xe2b5aa, + 0xe2b5ab, + 0xe2b5ac, + 0xe2b5ad, + 0xe2b5ae, + 0xe2b5af, + 0xe2b5b0, + 0xe2b5b1, + 0xe2b5b2, + 0xe2b5b3, + 0xe2b5b4, + 0xe2b5b5, + 0xe2b5b6, + 0xe2b5b7, + 0xe2b5b8, + 0xe2b5b9, + 0xe2b5ba, + 0xe2b5bb, + 0xe2b5bc, + 0xe2b5bd, + 0xe2b5be, + 0xe2b5bf, + 0xe2b680, + 0xe2b681, + 0xe2b682, + 0xe2b683, + 0xe2b684, + 0xe2b685, + 0xe2b686, + 0xe2b687, + 0xe2b688, + 0xe2b689, + 0xe2b68a, + 0xe2b68b, + 0xe2b68c, + 0xe2b68d, + 0xe2b68e, + 0xe2b68f, + 0xe2b690, + 0xe2b691, + 0xe2b692, + 0xe2b693, + 0xe2b694, + 0xe2b695, + 0xe2b696, + 0xe2b697, + 0xe2b698, + 0xe2b699, + 0xe2b69a, + 0xe2b69b, + 0xe2b69c, + 0xe2b69d, + 0xe2b69e, + 0xe2b69f, + 0xe2b6a0, + 0xe2b6a1, + 0xe2b6a2, + 0xe2b6a3, + 0xe2b6a4, + 0xe2b6a5, + 0xe2b6a6, + 0xe2b6a7, + 0xe2b6a8, + 0xe2b6a9, + 0xe2b6aa, + 0xe2b6ab, + 0xe2b6ac, + 0xe2b6ad, + 0xe2b6ae, + 0xe2b6af, + 0xe2b6b0, + 0xe2b6b1, + 0xe2b6b2, + 0xe2b6b3, + 0xe2b6b4, + 0xe2b6b5, + 0xe2b6b6, + 0xe2b6b7, + 0xe2b6b8, + 0xe2b6b9, + 0xe2b6ba, + 0xe2b6bb, + 0xe2b6bc, + 0xe2b6bd, + 0xe2b6be, + 0xe2b6bf, + 0xe2b780, + 0xe2b781, + 0xe2b782, + 0xe2b783, + 0xe2b784, + 0xe2b785, + 0xe2b786, + 0xe2b787, + 0xe2b788, + 0xe2b789, + 0xe2b78a, + 0xe2b78b, + 0xe2b78c, + 0xe2b78d, + 0xe2b78e, + 0xe2b78f, + 0xe2b790, + 0xe2b791, + 0xe2b792, + 0xe2b793, + 0xe2b794, + 0xe2b795, + 0xe2b796, + 0xe2b797, + 0xe2b798, + 0xe2b799, + 0xe2b79a, + 0xe2b79b, + 0xe2b79c, + 0xe2b79d, + 0xe2b79e, + 0xe2b79f, + 0xe2b7a0, + 0xe2b7a1, + 0xe2b7a2, + 0xe2b7a3, + 0xe2b7a4, + 0xe2b7a5, + 0xe2b7a6, + 0xe2b7a7, + 0xe2b7a8, + 0xe2b7a9, + 0xe2b7aa, + 0xe2b7ab, + 0xe2b7ac, + 0xe2b7ad, + 0xe2b7ae, + 0xe2b7af, + 0xe2b7b0, + 0xe2b7b1, + 0xe2b7b2, + 0xe2b7b3, + 0xe2b7b4, + 0xe2b7b5, + 0xe2b7b6, + 0xe2b7b7, + 0xe2b7b8, + 0xe2b7b9, + 0xe2b7ba, + 0xe2b7bb, + 0xe2b7bc, + 0xe2b7bd, + 0xe2b7be, + 0xe2b7bf, + 0xe2b880, + 0xe2b881, + 0xe2b882, + 0xe2b883, + 0xe2b884, + 0xe2b885, + 0xe2b886, + 0xe2b887, + 0xe2b888, + 0xe2b889, + 0xe2b88a, + 0xe2b88b, + 0xe2b88c, + 0xe2b88d, + 0xe2b88e, + 0xe2b88f, + 0xe2b890, + 0xe2b891, + 0xe2b892, + 0xe2b893, + 0xe2b894, + 0xe2b895, + 0xe2b896, + 0xe2b897, + 0xe2b898, + 0xe2b899, + 0xe2b89a, + 0xe2b89b, + 0xe2b89c, + 0xe2b89d, + 0xe2b89e, + 0xe2b89f, + 0xe2b8a0, + 0xe2b8a1, + 0xe2b8a2, + 0xe2b8a3, + 0xe2b8a4, + 0xe2b8a5, + 0xe2b8a6, + 0xe2b8a7, + 0xe2b8a8, + 0xe2b8a9, + 0xe2b8aa, + 0xe2b8ab, + 0xe2b8ac, + 0xe2b8ad, + 0xe2b8ae, + 0xe2b8af, + 0xe2b8b0, + 0xe2b8b1, + 0xe2b8b2, + 0xe2b8b3, + 0xe2b8b4, + 0xe2b8b5, + 0xe2b8b6, + 0xe2b8b7, + 0xe2b8b8, + 0xe2b8b9, + 0xe2b8ba, + 0xe2b8bb, + 0xe2b8bc, + 0xe2b8bd, + 0xe2b8be, + 0xe2b8bf, + 0xe2b980, + 0xe2b981, + 0xe2b982, + 0xe2b983, + 0xe2b984, + 0xe2b985, + 0xe2b986, + 0xe2b987, + 0xe2b988, + 0xe2b989, + 0xe2b98a, + 0xe2b98b, + 0xe2b98c, + 0xe2b98d, + 0xe2b98e, + 0xe2b98f, + 0xe2b990, + 0xe2b991, + 0xe2b992, + 0xe2b993, + 0xe2b994, + 0xe2b995, + 0xe2b996, + 0xe2b997, + 0xe2b998, + 0xe2b999, + 0xe2b99a, + 0xe2b99b, + 0xe2b99c, + 0xe2b99d, + 0xe2b99e, + 0xe2b99f, + 0xe2b9a0, + 0xe2b9a1, + 0xe2b9a2, + 0xe2b9a3, + 0xe2b9a4, + 0xe2b9a5, + 0xe2b9a6, + 0xe2b9a7, + 0xe2b9a8, + 0xe2b9a9, + 0xe2b9aa, + 0xe2b9ab, + 0xe2b9ac, + 0xe2b9ad, + 0xe2b9ae, + 0xe2b9af, + 0xe2b9b0, + 0xe2b9b1, + 0xe2b9b2, + 0xe2b9b3, + 0xe2b9b4, + 0xe2b9b5, + 0xe2b9b6, + 0xe2b9b7, + 0xe2b9b8, + 0xe2b9b9, + 0xe2b9ba, + 0xe2b9bb, + 0xe2b9bc, + 0xe2b9bd, + 0xe2b9be, + 0xe2b9bf, + 0xe2ba80, + 0xe2ba81, + 0xe2ba82, + 0xe2ba83, + 0xe2ba84, + 0xe2ba85, + 0xe2ba86, + 0xe2ba87, + 0xe2ba88, + 0xe2ba89, + 0xe2ba8a, + 0xe2ba8b, + 0xe2ba8c, + 0xe2ba8d, + 0xe2ba8e, + 0xe2ba8f, + 0xe2ba90, + 0xe2ba91, + 0xe2ba92, + 0xe2ba93, + 0xe2ba94, + 0xe2ba95, + 0xe2ba96, + 0xe2ba97, + 0xe2ba98, + 0xe2ba99, + 0xe2ba9a, + 0xe2ba9b, + 0xe2ba9c, + 0xe2ba9d, + 0xe2ba9e, + 0xe2ba9f, + 0xe2baa0, + 0xe2baa1, + 0xe2baa2, + 0xe2baa3, + 0xe2baa4, + 0xe2baa5, + 0xe2baa6, + 0xe2baa7, + 0xe2baa8, + 0xe2baa9, + 0xe2baaa, + 0xe2baab, + 0xe2baac, + 0xe2baad, + 0xe2baae, + 0xe2baaf, + 0xe2bab0, + 0xe2bab1, + 0xe2bab2, + 0xe2bab3, + 0xe2bab4, + 0xe2bab5, + 0xe2bab6, + 0xe2bab7, + 0xe2bab8, + 0xe2bab9, + 0xe2baba, + 0xe2babb, + 0xe2babc, + 0xe2babd, + 0xe2babe, + 0xe2babf, + 0xe2bb80, + 0xe2bb81, + 0xe2bb82, + 0xe2bb83, + 0xe2bb84, + 0xe2bb85, + 0xe2bb86, + 0xe2bb87, + 0xe2bb88, + 0xe2bb89, + 0xe2bb8a, + 0xe2bb8b, + 0xe2bb8c, + 0xe2bb8d, + 0xe2bb8e, + 0xe2bb8f, + 0xe2bb90, + 0xe2bb91, + 0xe2bb92, + 0xe2bb93, + 0xe2bb94, + 0xe2bb95, + 0xe2bb96, + 0xe2bb97, + 0xe2bb98, + 0xe2bb99, + 0xe2bb9a, + 0xe2bb9b, + 0xe2bb9c, + 0xe2bb9d, + 0xe2bb9e, + 0xe2bb9f, + 0xe2bba0, + 0xe2bba1, + 0xe2bba2, + 0xe2bba3, + 0xe2bba4, + 0xe2bba5, + 0xe2bba6, + 0xe2bba7, + 0xe2bba8, + 0xe2bba9, + 0xe2bbaa, + 0xe2bbab, + 0xe2bbac, + 0xe2bbad, + 0xe2bbae, + 0xe2bbaf, + 0xe2bbb0, + 0xe2bbb1, + 0xe2bbb2, + 0xe2bbb3, + 0xe2bbb4, + 0xe2bbb5, + 0xe2bbb6, + 0xe2bbb7, + 0xe2bbb8, + 0xe2bbb9, + 0xe2bbba, + 0xe2bbbb, + 0xe2bbbc, + 0xe2bbbd, + 0xe2bbbe, + 0xe2bbbf, + 0xe2bc80, + 0xe2bc81, + 0xe2bc82, + 0xe2bc83, + 0xe2bc84, + 0xe2bc85, + 0xe2bc86, + 0xe2bc87, + 0xe2bc88, + 0xe2bc89, + 0xe2bc8a, + 0xe2bc8b, + 0xe2bc8c, + 0xe2bc8d, + 0xe2bc8e, + 0xe2bc8f, + 0xe2bc90, + 0xe2bc91, + 0xe2bc92, + 0xe2bc93, + 0xe2bc94, + 0xe2bc95, + 0xe2bc96, + 0xe2bc97, + 0xe2bc98, + 0xe2bc99, + 0xe2bc9a, + 0xe2bc9b, + 0xe2bc9c, + 0xe2bc9d, + 0xe2bc9e, + 0xe2bc9f, + 0xe2bca0, + 0xe2bca1, + 0xe2bca2, + 0xe2bca3, + 0xe2bca4, + 0xe2bca5, + 0xe2bca6, + 0xe2bca7, + 0xe2bca8, + 0xe2bca9, + 0xe2bcaa, + 0xe2bcab, + 0xe2bcac, + 0xe2bcad, + 0xe2bcae, + 0xe2bcaf, + 0xe2bcb0, + 0xe2bcb1, + 0xe2bcb2, + 0xe2bcb3, + 0xe2bcb4, + 0xe2bcb5, + 0xe2bcb6, + 0xe2bcb7, + 0xe2bcb8, + 0xe2bcb9, + 0xe2bcba, + 0xe2bcbb, + 0xe2bcbc, + 0xe2bcbd, + 0xe2bcbe, + 0xe2bcbf, + 0xe2bd80, + 0xe2bd81, + 0xe2bd82, + 0xe2bd83, + 0xe2bd84, + 0xe2bd85, + 0xe2bd86, + 0xe2bd87, + 0xe2bd88, + 0xe2bd89, + 0xe2bd8a, + 0xe2bd8b, + 0xe2bd8c, + 0xe2bd8d, + 0xe2bd8e, + 0xe2bd8f, + 0xe2bd90, + 0xe2bd91, + 0xe2bd92, + 0xe2bd93, + 0xe2bd94, + 0xe2bd95, + 0xe2bd96, + 0xe2bd97, + 0xe2bd98, + 0xe2bd99, + 0xe2bd9a, + 0xe2bd9b, + 0xe2bd9c, + 0xe2bd9d, + 0xe2bd9e, + 0xe2bd9f, + 0xe2bda0, + 0xe2bda1, + 0xe2bda2, + 0xe2bda3, + 0xe2bda4, + 0xe2bda5, + 0xe2bda6, + 0xe2bda7, + 0xe2bda8, + 0xe2bda9, + 0xe2bdaa, + 0xe2bdab, + 0xe2bdac, + 0xe2bdad, + 0xe2bdae, + 0xe2bdaf, + 0xe2bdb0, + 0xe2bdb1, + 0xe2bdb2, + 0xe2bdb3, + 0xe2bdb4, + 0xe2bdb5, + 0xe2bdb6, + 0xe2bdb7, + 0xe2bdb8, + 0xe2bdb9, + 0xe2bdba, + 0xe2bdbb, + 0xe2bdbc, + 0xe2bdbd, + 0xe2bdbe, + 0xe2bdbf, + 0xe2be80, + 0xe2be81, + 0xe2be82, + 0xe2be83, + 0xe2be84, + 0xe2be85, + 0xe2be86, + 0xe2be87, + 0xe2be88, + 0xe2be89, + 0xe2be8a, + 0xe2be8b, + 0xe2be8c, + 0xe2be8d, + 0xe2be8e, + 0xe2be8f, + 0xe2be90, + 0xe2be91, + 0xe2be92, + 0xe2be93, + 0xe2be94, + 0xe2be95, + 0xe2be96, + 0xe2be97, + 0xe2be98, + 0xe2be99, + 0xe2be9a, + 0xe2be9b, + 0xe2be9c, + 0xe2be9d, + 0xe2be9e, + 0xe2be9f, + 0xe2bea0, + 0xe2bea1, + 0xe2bea2, + 0xe2bea3, + 0xe2bea4, + 0xe2bea5, + 0xe2bea6, + 0xe2bea7, + 0xe2bea8, + 0xe2bea9, + 0xe2beaa, + 0xe2beab, + 0xe2beac, + 0xe2bead, + 0xe2beae, + 0xe2beaf, + 0xe2beb0, + 0xe2beb1, + 0xe2beb2, + 0xe2beb3, + 0xe2beb4, + 0xe2beb5, + 0xe2beb6, + 0xe2beb7, + 0xe2beb8, + 0xe2beb9, + 0xe2beba, + 0xe2bebb, + 0xe2bebc, + 0xe2bebd, + 0xe2bebe, + 0xe2bebf, + 0xe2bf80, + 0xe2bf81, + 0xe2bf82, + 0xe2bf83, + 0xe2bf84, + 0xe2bf85, + 0xe2bf86, + 0xe2bf87, + 0xe2bf88, + 0xe2bf89, + 0xe2bf8a, + 0xe2bf8b, + 0xe2bf8c, + 0xe2bf8d, + 0xe2bf8e, + 0xe2bf8f, + 0xe2bf90, + 0xe2bf91, + 0xe2bf92, + 0xe2bf93, + 0xe2bf94, + 0xe2bf95, + 0xe2bf96, + 0xe2bf97, + 0xe2bf98, + 0xe2bf99, + 0xe2bf9a, + 0xe2bf9b, + 0xe2bf9c, + 0xe2bf9d, + 0xe2bf9e, + 0xe2bf9f, + 0xe2bfa0, + 0xe2bfa1, + 0xe2bfa2, + 0xe2bfa3, + 0xe2bfa4, + 0xe2bfa5, + 0xe2bfa6, + 0xe2bfa7, + 0xe2bfa8, + 0xe2bfa9, + 0xe2bfaa, + 0xe2bfab, + 0xe2bfac, + 0xe2bfad, + 0xe2bfae, + 0xe2bfaf, + 0xe2bfb0, + 0xe2bfb1, + 0xe2bfb2, + 0xe2bfb3, + 0xe2bfb4, + 0xe2bfb5, + 0xe2bfb6, + 0xe2bfb7, + 0xe2bfb8, + 0xe2bfb9, + 0xe2bfba, + 0xe2bfbb, + 0xe2bfbc, + 0xe2bfbd, + 0xe2bfbe, + 0xe2bfbf, + 0xe38080, + 0xe38081, + 0xe38082, + 0xe38083, + 0xe38084, + 0xe38085, + 0xe38086, + 0xe38087, + 0xe38088, + 0xe38089, + 0xe3808a, + 0xe3808b, + 0xe3808c, + 0xe3808d, + 0xe3808e, + 0xe3808f, + 0xe38090, + 0xe38091, + 0xe38092, + 0xe38093, + 0xe38094, + 0xe38095, + 0xe38096, + 0xe38097, + 0xe38098, + 0xe38099, + 0xe3809a, + 0xe3809b, + 0xe3809c, + 0xe3809d, + 0xe3809e, + 0xe3809f, + 0xe380a0, + 0xe380a1, + 0xe380a2, + 0xe380a3, + 0xe380a4, + 0xe380a5, + 0xe380a6, + 0xe380a7, + 0xe380a8, + 0xe380a9, + 0xe380aa, + 0xe380ab, + 0xe380ac, + 0xe380ad, + 0xe380ae, + 0xe380af, + 0xe380b0, + 0xe380b1, + 0xe380b2, + 0xe380b3, + 0xe380b4, + 0xe380b5, + 0xe380b6, + 0xe380b7, + 0xe380b8, + 0xe380b9, + 0xe380ba, + 0xe380bb, + 0xe380bc, + 0xe380bd, + 0xe380be, + 0xe380bf, + 0xe38180, + 0xe38181, + 0xe38182, + 0xe38183, + 0xe38184, + 0xe38185, + 0xe38186, + 0xe38187, + 0xe38188, + 0xe38189, + 0xe3818a, + 0xe3818b, + 0xe3818c, + 0xe3818d, + 0xe3818e, + 0xe3818f, + 0xe38190, + 0xe38191, + 0xe38192, + 0xe38193, + 0xe38194, + 0xe38195, + 0xe38196, + 0xe38197, + 0xe38198, + 0xe38199, + 0xe3819a, + 0xe3819b, + 0xe3819c, + 0xe3819d, + 0xe3819e, + 0xe3819f, + 0xe381a0, + 0xe381a1, + 0xe381a2, + 0xe381a3, + 0xe381a4, + 0xe381a5, + 0xe381a6, + 0xe381a7, + 0xe381a8, + 0xe381a9, + 0xe381aa, + 0xe381ab, + 0xe381ac, + 0xe381ad, + 0xe381ae, + 0xe381af, + 0xe381b0, + 0xe381b1, + 0xe381b2, + 0xe381b3, + 0xe381b4, + 0xe381b5, + 0xe381b6, + 0xe381b7, + 0xe381b8, + 0xe381b9, + 0xe381ba, + 0xe381bb, + 0xe381bc, + 0xe381bd, + 0xe381be, + 0xe381bf, + 0xe38280, + 0xe38281, + 0xe38282, + 0xe38283, + 0xe38284, + 0xe38285, + 0xe38286, + 0xe38287, + 0xe38288, + 0xe38289, + 0xe3828a, + 0xe3828b, + 0xe3828c, + 0xe3828d, + 0xe3828e, + 0xe3828f, + 0xe38290, + 0xe38291, + 0xe38292, + 0xe38293, + 0xe38294, + 0xe38295, + 0xe38296, + 0xe38297, + 0xe38298, + 0xe38299, + 0xe3829a, + 0xe3829b, + 0xe3829c, + 0xe3829d, + 0xe3829e, + 0xe3829f, + 0xe382a0, + 0xe382a1, + 0xe382a2, + 0xe382a3, + 0xe382a4, + 0xe382a5, + 0xe382a6, + 0xe382a7, + 0xe382a8, + 0xe382a9, + 0xe382aa, + 0xe382ab, + 0xe382ac, + 0xe382ad, + 0xe382ae, + 0xe382af, + 0xe382b0, + 0xe382b1, + 0xe382b2, + 0xe382b3, + 0xe382b4, + 0xe382b5, + 0xe382b6, + 0xe382b7, + 0xe382b8, + 0xe382b9, + 0xe382ba, + 0xe382bb, + 0xe382bc, + 0xe382bd, + 0xe382be, + 0xe382bf, + 0xe38380, + 0xe38381, + 0xe38382, + 0xe38383, + 0xe38384, + 0xe38385, + 0xe38386, + 0xe38387, + 0xe38388, + 0xe38389, + 0xe3838a, + 0xe3838b, + 0xe3838c, + 0xe3838d, + 0xe3838e, + 0xe3838f, + 0xe38390, + 0xe38391, + 0xe38392, + 0xe38393, + 0xe38394, + 0xe38395, + 0xe38396, + 0xe38397, + 0xe38398, + 0xe38399, + 0xe3839a, + 0xe3839b, + 0xe3839c, + 0xe3839d, + 0xe3839e, + 0xe3839f, + 0xe383a0, + 0xe383a1, + 0xe383a2, + 0xe383a3, + 0xe383a4, + 0xe383a5, + 0xe383a6, + 0xe383a7, + 0xe383a8, + 0xe383a9, + 0xe383aa, + 0xe383ab, + 0xe383ac, + 0xe383ad, + 0xe383ae, + 0xe383af, + 0xe383b0, + 0xe383b1, + 0xe383b2, + 0xe383b3, + 0xe383b4, + 0xe383b5, + 0xe383b6, + 0xe383b7, + 0xe383b8, + 0xe383b9, + 0xe383ba, + 0xe383bb, + 0xe383bc, + 0xe383bd, + 0xe383be, + 0xe383bf, + 0xe38480, + 0xe38481, + 0xe38482, + 0xe38483, + 0xe38484, + 0xe38485, + 0xe38486, + 0xe38487, + 0xe38488, + 0xe38489, + 0xe3848a, + 0xe3848b, + 0xe3848c, + 0xe3848d, + 0xe3848e, + 0xe3848f, + 0xe38490, + 0xe38491, + 0xe38492, + 0xe38493, + 0xe38494, + 0xe38495, + 0xe38496, + 0xe38497, + 0xe38498, + 0xe38499, + 0xe3849a, + 0xe3849b, + 0xe3849c, + 0xe3849d, + 0xe3849e, + 0xe3849f, + 0xe384a0, + 0xe384a1, + 0xe384a2, + 0xe384a3, + 0xe384a4, + 0xe384a5, + 0xe384a6, + 0xe384a7, + 0xe384a8, + 0xe384a9, + 0xe384aa, + 0xe384ab, + 0xe384ac, + 0xe384ad, + 0xe384ae, + 0xe384af, + 0xe384b0, + 0xe384b1, + 0xe384b2, + 0xe384b3, + 0xe384b4, + 0xe384b5, + 0xe384b6, + 0xe384b7, + 0xe384b8, + 0xe384b9, + 0xe384ba, + 0xe384bb, + 0xe384bc, + 0xe384bd, + 0xe384be, + 0xe384bf, + 0xe38580, + 0xe38581, + 0xe38582, + 0xe38583, + 0xe38584, + 0xe38585, + 0xe38586, + 0xe38587, + 0xe38588, + 0xe38589, + 0xe3858a, + 0xe3858b, + 0xe3858c, + 0xe3858d, + 0xe3858e, + 0xe3858f, + 0xe38590, + 0xe38591, + 0xe38592, + 0xe38593, + 0xe38594, + 0xe38595, + 0xe38596, + 0xe38597, + 0xe38598, + 0xe38599, + 0xe3859a, + 0xe3859b, + 0xe3859c, + 0xe3859d, + 0xe3859e, + 0xe3859f, + 0xe385a0, + 0xe385a1, + 0xe385a2, + 0xe385a3, + 0xe385a4, + 0xe385a5, + 0xe385a6, + 0xe385a7, + 0xe385a8, + 0xe385a9, + 0xe385aa, + 0xe385ab, + 0xe385ac, + 0xe385ad, + 0xe385ae, + 0xe385af, + 0xe385b0, + 0xe385b1, + 0xe385b2, + 0xe385b3, + 0xe385b4, + 0xe385b5, + 0xe385b6, + 0xe385b7, + 0xe385b8, + 0xe385b9, + 0xe385ba, + 0xe385bb, + 0xe385bc, + 0xe385bd, + 0xe385be, + 0xe385bf, + 0xe38680, + 0xe38681, + 0xe38682, + 0xe38683, + 0xe38684, + 0xe38685, + 0xe38686, + 0xe38687, + 0xe38688, + 0xe38689, + 0xe3868a, + 0xe3868b, + 0xe3868c, + 0xe3868d, + 0xe3868e, + 0xe3868f, + 0xe38690, + 0xe38691, + 0xe38692, + 0xe38693, + 0xe38694, + 0xe38695, + 0xe38696, + 0xe38697, + 0xe38698, + 0xe38699, + 0xe3869a, + 0xe3869b, + 0xe3869c, + 0xe3869d, + 0xe3869e, + 0xe3869f, + 0xe386a0, + 0xe386a1, + 0xe386a2, + 0xe386a3, + 0xe386a4, + 0xe386a5, + 0xe386a6, + 0xe386a7, + 0xe386a8, + 0xe386a9, + 0xe386aa, + 0xe386ab, + 0xe386ac, + 0xe386ad, + 0xe386ae, + 0xe386af, + 0xe386b0, + 0xe386b1, + 0xe386b2, + 0xe386b3, + 0xe386b4, + 0xe386b5, + 0xe386b6, + 0xe386b7, + 0xe386b8, + 0xe386b9, + 0xe386ba, + 0xe386bb, + 0xe386bc, + 0xe386bd, + 0xe386be, + 0xe386bf, + 0xe38780, + 0xe38781, + 0xe38782, + 0xe38783, + 0xe38784, + 0xe38785, + 0xe38786, + 0xe38787, + 0xe38788, + 0xe38789, + 0xe3878a, + 0xe3878b, + 0xe3878c, + 0xe3878d, + 0xe3878e, + 0xe3878f, + 0xe38790, + 0xe38791, + 0xe38792, + 0xe38793, + 0xe38794, + 0xe38795, + 0xe38796, + 0xe38797, + 0xe38798, + 0xe38799, + 0xe3879a, + 0xe3879b, + 0xe3879c, + 0xe3879d, + 0xe3879e, + 0xe3879f, + 0xe387a0, + 0xe387a1, + 0xe387a2, + 0xe387a3, + 0xe387a4, + 0xe387a5, + 0xe387a6, + 0xe387a7, + 0xe387a8, + 0xe387a9, + 0xe387aa, + 0xe387ab, + 0xe387ac, + 0xe387ad, + 0xe387ae, + 0xe387af, + 0xe387b0, + 0xe387b1, + 0xe387b2, + 0xe387b3, + 0xe387b4, + 0xe387b5, + 0xe387b6, + 0xe387b7, + 0xe387b8, + 0xe387b9, + 0xe387ba, + 0xe387bb, + 0xe387bc, + 0xe387bd, + 0xe387be, + 0xe387bf, + 0xe38880, + 0xe38881, + 0xe38882, + 0xe38883, + 0xe38884, + 0xe38885, + 0xe38886, + 0xe38887, + 0xe38888, + 0xe38889, + 0xe3888a, + 0xe3888b, + 0xe3888c, + 0xe3888d, + 0xe3888e, + 0xe3888f, + 0xe38890, + 0xe38891, + 0xe38892, + 0xe38893, + 0xe38894, + 0xe38895, + 0xe38896, + 0xe38897, + 0xe38898, + 0xe38899, + 0xe3889a, + 0xe3889b, + 0xe3889c, + 0xe3889d, + 0xe3889e, + 0xe3889f, + 0xe388a0, + 0xe388a1, + 0xe388a2, + 0xe388a3, + 0xe388a4, + 0xe388a5, + 0xe388a6, + 0xe388a7, + 0xe388a8, + 0xe388a9, + 0xe388aa, + 0xe388ab, + 0xe388ac, + 0xe388ad, + 0xe388ae, + 0xe388af, + 0xe388b0, + 0xe388b1, + 0xe388b2, + 0xe388b3, + 0xe388b4, + 0xe388b5, + 0xe388b6, + 0xe388b7, + 0xe388b8, + 0xe388b9, + 0xe388ba, + 0xe388bb, + 0xe388bc, + 0xe388bd, + 0xe388be, + 0xe388bf, + 0xe38980, + 0xe38981, + 0xe38982, + 0xe38983, + 0xe38984, + 0xe38985, + 0xe38986, + 0xe38987, + 0xe38988, + 0xe38989, + 0xe3898a, + 0xe3898b, + 0xe3898c, + 0xe3898d, + 0xe3898e, + 0xe3898f, + 0xe38990, + 0xe38991, + 0xe38992, + 0xe38993, + 0xe38994, + 0xe38995, + 0xe38996, + 0xe38997, + 0xe38998, + 0xe38999, + 0xe3899a, + 0xe3899b, + 0xe3899c, + 0xe3899d, + 0xe3899e, + 0xe3899f, + 0xe389a0, + 0xe389a1, + 0xe389a2, + 0xe389a3, + 0xe389a4, + 0xe389a5, + 0xe389a6, + 0xe389a7, + 0xe389a8, + 0xe389a9, + 0xe389aa, + 0xe389ab, + 0xe389ac, + 0xe389ad, + 0xe389ae, + 0xe389af, + 0xe389b0, + 0xe389b1, + 0xe389b2, + 0xe389b3, + 0xe389b4, + 0xe389b5, + 0xe389b6, + 0xe389b7, + 0xe389b8, + 0xe389b9, + 0xe389ba, + 0xe389bb, + 0xe389bc, + 0xe389bd, + 0xe389be, + 0xe389bf, + 0xe38a80, + 0xe38a81, + 0xe38a82, + 0xe38a83, + 0xe38a84, + 0xe38a85, + 0xe38a86, + 0xe38a87, + 0xe38a88, + 0xe38a89, + 0xe38a8a, + 0xe38a8b, + 0xe38a8c, + 0xe38a8d, + 0xe38a8e, + 0xe38a8f, + 0xe38a90, + 0xe38a91, + 0xe38a92, + 0xe38a93, + 0xe38a94, + 0xe38a95, + 0xe38a96, + 0xe38a97, + 0xe38a98, + 0xe38a99, + 0xe38a9a, + 0xe38a9b, + 0xe38a9c, + 0xe38a9d, + 0xe38a9e, + 0xe38a9f, + 0xe38aa0, + 0xe38aa1, + 0xe38aa2, + 0xe38aa3, + 0xe38aa4, + 0xe38aa5, + 0xe38aa6, + 0xe38aa7, + 0xe38aa8, + 0xe38aa9, + 0xe38aaa, + 0xe38aab, + 0xe38aac, + 0xe38aad, + 0xe38aae, + 0xe38aaf, + 0xe38ab0, + 0xe38ab1, + 0xe38ab2, + 0xe38ab3, + 0xe38ab4, + 0xe38ab5, + 0xe38ab6, + 0xe38ab7, + 0xe38ab8, + 0xe38ab9, + 0xe38aba, + 0xe38abb, + 0xe38abc, + 0xe38abd, + 0xe38abe, + 0xe38abf, + 0xe38b80, + 0xe38b81, + 0xe38b82, + 0xe38b83, + 0xe38b84, + 0xe38b85, + 0xe38b86, + 0xe38b87, + 0xe38b88, + 0xe38b89, + 0xe38b8a, + 0xe38b8b, + 0xe38b8c, + 0xe38b8d, + 0xe38b8e, + 0xe38b8f, + 0xe38b90, + 0xe38b91, + 0xe38b92, + 0xe38b93, + 0xe38b94, + 0xe38b95, + 0xe38b96, + 0xe38b97, + 0xe38b98, + 0xe38b99, + 0xe38b9a, + 0xe38b9b, + 0xe38b9c, + 0xe38b9d, + 0xe38b9e, + 0xe38b9f, + 0xe38ba0, + 0xe38ba1, + 0xe38ba2, + 0xe38ba3, + 0xe38ba4, + 0xe38ba5, + 0xe38ba6, + 0xe38ba7, + 0xe38ba8, + 0xe38ba9, + 0xe38baa, + 0xe38bab, + 0xe38bac, + 0xe38bad, + 0xe38bae, + 0xe38baf, + 0xe38bb0, + 0xe38bb1, + 0xe38bb2, + 0xe38bb3, + 0xe38bb4, + 0xe38bb5, + 0xe38bb6, + 0xe38bb7, + 0xe38bb8, + 0xe38bb9, + 0xe38bba, + 0xe38bbb, + 0xe38bbc, + 0xe38bbd, + 0xe38bbe, + 0xe38bbf, + 0xe38c80, + 0xe38c81, + 0xe38c82, + 0xe38c83, + 0xe38c84, + 0xe38c85, + 0xe38c86, + 0xe38c87, + 0xe38c88, + 0xe38c89, + 0xe38c8a, + 0xe38c8b, + 0xe38c8c, + 0xe38c8d, + 0xe38c8e, + 0xe38c8f, + 0xe38c90, + 0xe38c91, + 0xe38c92, + 0xe38c93, + 0xe38c94, + 0xe38c95, + 0xe38c96, + 0xe38c97, + 0xe38c98, + 0xe38c99, + 0xe38c9a, + 0xe38c9b, + 0xe38c9c, + 0xe38c9d, + 0xe38c9e, + 0xe38c9f, + 0xe38ca0, + 0xe38ca1, + 0xe38ca2, + 0xe38ca3, + 0xe38ca4, + 0xe38ca5, + 0xe38ca6, + 0xe38ca7, + 0xe38ca8, + 0xe38ca9, + 0xe38caa, + 0xe38cab, + 0xe38cac, + 0xe38cad, + 0xe38cae, + 0xe38caf, + 0xe38cb0, + 0xe38cb1, + 0xe38cb2, + 0xe38cb3, + 0xe38cb4, + 0xe38cb5, + 0xe38cb6, + 0xe38cb7, + 0xe38cb8, + 0xe38cb9, + 0xe38cba, + 0xe38cbb, + 0xe38cbc, + 0xe38cbd, + 0xe38cbe, + 0xe38cbf, + 0xe38d80, + 0xe38d81, + 0xe38d82, + 0xe38d83, + 0xe38d84, + 0xe38d85, + 0xe38d86, + 0xe38d87, + 0xe38d88, + 0xe38d89, + 0xe38d8a, + 0xe38d8b, + 0xe38d8c, + 0xe38d8d, + 0xe38d8e, + 0xe38d8f, + 0xe38d90, + 0xe38d91, + 0xe38d92, + 0xe38d93, + 0xe38d94, + 0xe38d95, + 0xe38d96, + 0xe38d97, + 0xe38d98, + 0xe38d99, + 0xe38d9a, + 0xe38d9b, + 0xe38d9c, + 0xe38d9d, + 0xe38d9e, + 0xe38d9f, + 0xe38da0, + 0xe38da1, + 0xe38da2, + 0xe38da3, + 0xe38da4, + 0xe38da5, + 0xe38da6, + 0xe38da7, + 0xe38da8, + 0xe38da9, + 0xe38daa, + 0xe38dab, + 0xe38dac, + 0xe38dad, + 0xe38dae, + 0xe38daf, + 0xe38db0, + 0xe38db1, + 0xe38db2, + 0xe38db3, + 0xe38db4, + 0xe38db5, + 0xe38db6, + 0xe38db7, + 0xe38db8, + 0xe38db9, + 0xe38dba, + 0xe38dbb, + 0xe38dbc, + 0xe38dbd, + 0xe38dbe, + 0xe38dbf, + 0xe38e80, + 0xe38e81, + 0xe38e82, + 0xe38e83, + 0xe38e84, + 0xe38e85, + 0xe38e86, + 0xe38e87, + 0xe38e88, + 0xe38e89, + 0xe38e8a, + 0xe38e8b, + 0xe38e8c, + 0xe38e8d, + 0xe38e8e, + 0xe38e8f, + 0xe38e90, + 0xe38e91, + 0xe38e92, + 0xe38e93, + 0xe38e94, + 0xe38e95, + 0xe38e96, + 0xe38e97, + 0xe38e98, + 0xe38e99, + 0xe38e9a, + 0xe38e9b, + 0xe38e9c, + 0xe38e9d, + 0xe38e9e, + 0xe38e9f, + 0xe38ea0, + 0xe38ea1, + 0xe38ea2, + 0xe38ea3, + 0xe38ea4, + 0xe38ea5, + 0xe38ea6, + 0xe38ea7, + 0xe38ea8, + 0xe38ea9, + 0xe38eaa, + 0xe38eab, + 0xe38eac, + 0xe38ead, + 0xe38eae, + 0xe38eaf, + 0xe38eb0, + 0xe38eb1, + 0xe38eb2, + 0xe38eb3, + 0xe38eb4, + 0xe38eb5, + 0xe38eb6, + 0xe38eb7, + 0xe38eb8, + 0xe38eb9, + 0xe38eba, + 0xe38ebb, + 0xe38ebc, + 0xe38ebd, + 0xe38ebe, + 0xe38ebf, + 0xe38f80, + 0xe38f81, + 0xe38f82, + 0xe38f83, + 0xe38f84, + 0xe38f85, + 0xe38f86, + 0xe38f87, + 0xe38f88, + 0xe38f89, + 0xe38f8a, + 0xe38f8b, + 0xe38f8c, + 0xe38f8d, + 0xe38f8e, + 0xe38f8f, + 0xe38f90, + 0xe38f91, + 0xe38f92, + 0xe38f93, + 0xe38f94, + 0xe38f95, + 0xe38f96, + 0xe38f97, + 0xe38f98, + 0xe38f99, + 0xe38f9a, + 0xe38f9b, + 0xe38f9c, + 0xe38f9d, + 0xe38f9e, + 0xe38f9f, + 0xe38fa0, + 0xe38fa1, + 0xe38fa2, + 0xe38fa3, + 0xe38fa4, + 0xe38fa5, + 0xe38fa6, + 0xe38fa7, + 0xe38fa8, + 0xe38fa9, + 0xe38faa, + 0xe38fab, + 0xe38fac, + 0xe38fad, + 0xe38fae, + 0xe38faf, + 0xe38fb0, + 0xe38fb1, + 0xe38fb2, + 0xe38fb3, + 0xe38fb4, + 0xe38fb5, + 0xe38fb6, + 0xe38fb7, + 0xe38fb8, + 0xe38fb9, + 0xe38fba, + 0xe38fbb, + 0xe38fbc, + 0xe38fbd, + 0xe38fbe, + 0xe38fbf, + 0xe39080, + 0xe39081, + 0xe39082, + 0xe39083, + 0xe39084, + 0xe39085, + 0xe39086, + 0xe39087, + 0xe39088, + 0xe39089, + 0xe3908a, + 0xe3908b, + 0xe3908c, + 0xe3908d, + 0xe3908e, + 0xe3908f, + 0xe39090, + 0xe39091, + 0xe39092, + 0xe39093, + 0xe39094, + 0xe39095, + 0xe39096, + 0xe39097, + 0xe39098, + 0xe39099, + 0xe3909a, + 0xe3909b, + 0xe3909c, + 0xe3909d, + 0xe3909e, + 0xe3909f, + 0xe390a0, + 0xe390a1, + 0xe390a2, + 0xe390a3, + 0xe390a4, + 0xe390a5, + 0xe390a6, + 0xe390a7, + 0xe390a8, + 0xe390a9, + 0xe390aa, + 0xe390ab, + 0xe390ac, + 0xe390ad, + 0xe390ae, + 0xe390af, + 0xe390b0, + 0xe390b1, + 0xe390b2, + 0xe390b3, + 0xe390b4, + 0xe390b5, + 0xe390b6, + 0xe390b7, + 0xe390b8, + 0xe390b9, + 0xe390ba, + 0xe390bb, + 0xe390bc, + 0xe390bd, + 0xe390be, + 0xe390bf, + 0xe39180, + 0xe39181, + 0xe39182, + 0xe39183, + 0xe39184, + 0xe39185, + 0xe39186, + 0xe39187, + 0xe39188, + 0xe39189, + 0xe3918a, + 0xe3918b, + 0xe3918c, + 0xe3918d, + 0xe3918e, + 0xe3918f, + 0xe39190, + 0xe39191, + 0xe39192, + 0xe39193, + 0xe39194, + 0xe39195, + 0xe39196, + 0xe39197, + 0xe39198, + 0xe39199, + 0xe3919a, + 0xe3919b, + 0xe3919c, + 0xe3919d, + 0xe3919e, + 0xe3919f, + 0xe391a0, + 0xe391a1, + 0xe391a2, + 0xe391a3, + 0xe391a4, + 0xe391a5, + 0xe391a6, + 0xe391a7, + 0xe391a8, + 0xe391a9, + 0xe391aa, + 0xe391ab, + 0xe391ac, + 0xe391ad, + 0xe391ae, + 0xe391af, + 0xe391b0, + 0xe391b1, + 0xe391b2, + 0xe391b3, + 0xe391b4, + 0xe391b5, + 0xe391b6, + 0xe391b7, + 0xe391b8, + 0xe391b9, + 0xe391ba, + 0xe391bb, + 0xe391bc, + 0xe391bd, + 0xe391be, + 0xe391bf, + 0xe39280, + 0xe39281, + 0xe39282, + 0xe39283, + 0xe39284, + 0xe39285, + 0xe39286, + 0xe39287, + 0xe39288, + 0xe39289, + 0xe3928a, + 0xe3928b, + 0xe3928c, + 0xe3928d, + 0xe3928e, + 0xe3928f, + 0xe39290, + 0xe39291, + 0xe39292, + 0xe39293, + 0xe39294, + 0xe39295, + 0xe39296, + 0xe39297, + 0xe39298, + 0xe39299, + 0xe3929a, + 0xe3929b, + 0xe3929c, + 0xe3929d, + 0xe3929e, + 0xe3929f, + 0xe392a0, + 0xe392a1, + 0xe392a2, + 0xe392a3, + 0xe392a4, + 0xe392a5, + 0xe392a6, + 0xe392a7, + 0xe392a8, + 0xe392a9, + 0xe392aa, + 0xe392ab, + 0xe392ac, + 0xe392ad, + 0xe392ae, + 0xe392af, + 0xe392b0, + 0xe392b1, + 0xe392b2, + 0xe392b3, + 0xe392b4, + 0xe392b5, + 0xe392b6, + 0xe392b7, + 0xe392b8, + 0xe392b9, + 0xe392ba, + 0xe392bb, + 0xe392bc, + 0xe392bd, + 0xe392be, + 0xe392bf, + 0xe39380, + 0xe39381, + 0xe39382, + 0xe39383, + 0xe39384, + 0xe39385, + 0xe39386, + 0xe39387, + 0xe39388, + 0xe39389, + 0xe3938a, + 0xe3938b, + 0xe3938c, + 0xe3938d, + 0xe3938e, + 0xe3938f, + 0xe39390, + 0xe39391, + 0xe39392, + 0xe39393, + 0xe39394, + 0xe39395, + 0xe39396, + 0xe39397, + 0xe39398, + 0xe39399, + 0xe3939a, + 0xe3939b, + 0xe3939c, + 0xe3939d, + 0xe3939e, + 0xe3939f, + 0xe393a0, + 0xe393a1, + 0xe393a2, + 0xe393a3, + 0xe393a4, + 0xe393a5, + 0xe393a6, + 0xe393a7, + 0xe393a8, + 0xe393a9, + 0xe393aa, + 0xe393ab, + 0xe393ac, + 0xe393ad, + 0xe393ae, + 0xe393af, + 0xe393b0, + 0xe393b1, + 0xe393b2, + 0xe393b3, + 0xe393b4, + 0xe393b5, + 0xe393b6, + 0xe393b7, + 0xe393b8, + 0xe393b9, + 0xe393ba, + 0xe393bb, + 0xe393bc, + 0xe393bd, + 0xe393be, + 0xe393bf, + 0xe39480, + 0xe39481, + 0xe39482, + 0xe39483, + 0xe39484, + 0xe39485, + 0xe39486, + 0xe39487, + 0xe39488, + 0xe39489, + 0xe3948a, + 0xe3948b, + 0xe3948c, + 0xe3948d, + 0xe3948e, + 0xe3948f, + 0xe39490, + 0xe39491, + 0xe39492, + 0xe39493, + 0xe39494, + 0xe39495, + 0xe39496, + 0xe39497, + 0xe39498, + 0xe39499, + 0xe3949a, + 0xe3949b, + 0xe3949c, + 0xe3949d, + 0xe3949e, + 0xe3949f, + 0xe394a0, + 0xe394a1, + 0xe394a2, + 0xe394a3, + 0xe394a4, + 0xe394a5, + 0xe394a6, + 0xe394a7, + 0xe394a8, + 0xe394a9, + 0xe394aa, + 0xe394ab, + 0xe394ac, + 0xe394ad, + 0xe394ae, + 0xe394af, + 0xe394b0, + 0xe394b1, + 0xe394b2, + 0xe394b3, + 0xe394b4, + 0xe394b5, + 0xe394b6, + 0xe394b7, + 0xe394b8, + 0xe394b9, + 0xe394ba, + 0xe394bb, + 0xe394bc, + 0xe394bd, + 0xe394be, + 0xe394bf, + 0xe39580, + 0xe39581, + 0xe39582, + 0xe39583, + 0xe39584, + 0xe39585, + 0xe39586, + 0xe39587, + 0xe39588, + 0xe39589, + 0xe3958a, + 0xe3958b, + 0xe3958c, + 0xe3958d, + 0xe3958e, + 0xe3958f, + 0xe39590, + 0xe39591, + 0xe39592, + 0xe39593, + 0xe39594, + 0xe39595, + 0xe39596, + 0xe39597, + 0xe39598, + 0xe39599, + 0xe3959a, + 0xe3959b, + 0xe3959c, + 0xe3959d, + 0xe3959e, + 0xe3959f, + 0xe395a0, + 0xe395a1, + 0xe395a2, + 0xe395a3, + 0xe395a4, + 0xe395a5, + 0xe395a6, + 0xe395a7, + 0xe395a8, + 0xe395a9, + 0xe395aa, + 0xe395ab, + 0xe395ac, + 0xe395ad, + 0xe395ae, + 0xe395af, + 0xe395b0, + 0xe395b1, + 0xe395b2, + 0xe395b3, + 0xe395b4, + 0xe395b5, + 0xe395b6, + 0xe395b7, + 0xe395b8, + 0xe395b9, + 0xe395ba, + 0xe395bb, + 0xe395bc, + 0xe395bd, + 0xe395be, + 0xe395bf, + 0xe39680, + 0xe39681, + 0xe39682, + 0xe39683, + 0xe39684, + 0xe39685, + 0xe39686, + 0xe39687, + 0xe39688, + 0xe39689, + 0xe3968a, + 0xe3968b, + 0xe3968c, + 0xe3968d, + 0xe3968e, + 0xe3968f, + 0xe39690, + 0xe39691, + 0xe39692, + 0xe39693, + 0xe39694, + 0xe39695, + 0xe39696, + 0xe39697, + 0xe39698, + 0xe39699, + 0xe3969a, + 0xe3969b, + 0xe3969c, + 0xe3969d, + 0xe3969e, + 0xe3969f, + 0xe396a0, + 0xe396a1, + 0xe396a2, + 0xe396a3, + 0xe396a4, + 0xe396a5, + 0xe396a6, + 0xe396a7, + 0xe396a8, + 0xe396a9, + 0xe396aa, + 0xe396ab, + 0xe396ac, + 0xe396ad, + 0xe396ae, + 0xe396af, + 0xe396b0, + 0xe396b1, + 0xe396b2, + 0xe396b3, + 0xe396b4, + 0xe396b5, + 0xe396b6, + 0xe396b7, + 0xe396b8, + 0xe396b9, + 0xe396ba, + 0xe396bb, + 0xe396bc, + 0xe396bd, + 0xe396be, + 0xe396bf, + 0xe39780, + 0xe39781, + 0xe39782, + 0xe39783, + 0xe39784, + 0xe39785, + 0xe39786, + 0xe39787, + 0xe39788, + 0xe39789, + 0xe3978a, + 0xe3978b, + 0xe3978c, + 0xe3978d, + 0xe3978e, + 0xe3978f, + 0xe39790, + 0xe39791, + 0xe39792, + 0xe39793, + 0xe39794, + 0xe39795, + 0xe39796, + 0xe39797, + 0xe39798, + 0xe39799, + 0xe3979a, + 0xe3979b, + 0xe3979c, + 0xe3979d, + 0xe3979e, + 0xe3979f, + 0xe397a0, + 0xe397a1, + 0xe397a2, + 0xe397a3, + 0xe397a4, + 0xe397a5, + 0xe397a6, + 0xe397a7, + 0xe397a8, + 0xe397a9, + 0xe397aa, + 0xe397ab, + 0xe397ac, + 0xe397ad, + 0xe397ae, + 0xe397af, + 0xe397b0, + 0xe397b1, + 0xe397b2, + 0xe397b3, + 0xe397b4, + 0xe397b5, + 0xe397b6, + 0xe397b7, + 0xe397b8, + 0xe397b9, + 0xe397ba, + 0xe397bb, + 0xe397bc, + 0xe397bd, + 0xe397be, + 0xe397bf, + 0xe39880, + 0xe39881, + 0xe39882, + 0xe39883, + 0xe39884, + 0xe39885, + 0xe39886, + 0xe39887, + 0xe39888, + 0xe39889, + 0xe3988a, + 0xe3988b, + 0xe3988c, + 0xe3988d, + 0xe3988e, + 0xe3988f, + 0xe39890, + 0xe39891, + 0xe39892, + 0xe39893, + 0xe39894, + 0xe39895, + 0xe39896, + 0xe39897, + 0xe39898, + 0xe39899, + 0xe3989a, + 0xe3989b, + 0xe3989c, + 0xe3989d, + 0xe3989e, + 0xe3989f, + 0xe398a0, + 0xe398a1, + 0xe398a2, + 0xe398a3, + 0xe398a4, + 0xe398a5, + 0xe398a6, + 0xe398a7, + 0xe398a8, + 0xe398a9, + 0xe398aa, + 0xe398ab, + 0xe398ac, + 0xe398ad, + 0xe398ae, + 0xe398af, + 0xe398b0, + 0xe398b1, + 0xe398b2, + 0xe398b3, + 0xe398b4, + 0xe398b5, + 0xe398b6, + 0xe398b7, + 0xe398b8, + 0xe398b9, + 0xe398ba, + 0xe398bb, + 0xe398bc, + 0xe398bd, + 0xe398be, + 0xe398bf, + 0xe39980, + 0xe39981, + 0xe39982, + 0xe39983, + 0xe39984, + 0xe39985, + 0xe39986, + 0xe39987, + 0xe39988, + 0xe39989, + 0xe3998a, + 0xe3998b, + 0xe3998c, + 0xe3998d, + 0xe3998e, + 0xe3998f, + 0xe39990, + 0xe39991, + 0xe39992, + 0xe39993, + 0xe39994, + 0xe39995, + 0xe39996, + 0xe39997, + 0xe39998, + 0xe39999, + 0xe3999a, + 0xe3999b, + 0xe3999c, + 0xe3999d, + 0xe3999e, + 0xe3999f, + 0xe399a0, + 0xe399a1, + 0xe399a2, + 0xe399a3, + 0xe399a4, + 0xe399a5, + 0xe399a6, + 0xe399a7, + 0xe399a8, + 0xe399a9, + 0xe399aa, + 0xe399ab, + 0xe399ac, + 0xe399ad, + 0xe399ae, + 0xe399af, + 0xe399b0, + 0xe399b1, + 0xe399b2, + 0xe399b3, + 0xe399b4, + 0xe399b5, + 0xe399b6, + 0xe399b7, + 0xe399b8, + 0xe399b9, + 0xe399ba, + 0xe399bb, + 0xe399bc, + 0xe399bd, + 0xe399be, + 0xe399bf, + 0xe39a80, + 0xe39a81, + 0xe39a82, + 0xe39a83, + 0xe39a84, + 0xe39a85, + 0xe39a86, + 0xe39a87, + 0xe39a88, + 0xe39a89, + 0xe39a8a, + 0xe39a8b, + 0xe39a8c, + 0xe39a8d, + 0xe39a8e, + 0xe39a8f, + 0xe39a90, + 0xe39a91, + 0xe39a92, + 0xe39a93, + 0xe39a94, + 0xe39a95, + 0xe39a96, + 0xe39a97, + 0xe39a98, + 0xe39a99, + 0xe39a9a, + 0xe39a9b, + 0xe39a9c, + 0xe39a9d, + 0xe39a9e, + 0xe39a9f, + 0xe39aa0, + 0xe39aa1, + 0xe39aa2, + 0xe39aa3, + 0xe39aa4, + 0xe39aa5, + 0xe39aa6, + 0xe39aa7, + 0xe39aa8, + 0xe39aa9, + 0xe39aaa, + 0xe39aab, + 0xe39aac, + 0xe39aad, + 0xe39aae, + 0xe39aaf, + 0xe39ab0, + 0xe39ab1, + 0xe39ab2, + 0xe39ab3, + 0xe39ab4, + 0xe39ab5, + 0xe39ab6, + 0xe39ab7, + 0xe39ab8, + 0xe39ab9, + 0xe39aba, + 0xe39abb, + 0xe39abc, + 0xe39abd, + 0xe39abe, + 0xe39abf, + 0xe39b80, + 0xe39b81, + 0xe39b82, + 0xe39b83, + 0xe39b84, + 0xe39b85, + 0xe39b86, + 0xe39b87, + 0xe39b88, + 0xe39b89, + 0xe39b8a, + 0xe39b8b, + 0xe39b8c, + 0xe39b8d, + 0xe39b8e, + 0xe39b8f, + 0xe39b90, + 0xe39b91, + 0xe39b92, + 0xe39b93, + 0xe39b94, + 0xe39b95, + 0xe39b96, + 0xe39b97, + 0xe39b98, + 0xe39b99, + 0xe39b9a, + 0xe39b9b, + 0xe39b9c, + 0xe39b9d, + 0xe39b9e, + 0xe39b9f, + 0xe39ba0, + 0xe39ba1, + 0xe39ba2, + 0xe39ba3, + 0xe39ba4, + 0xe39ba5, + 0xe39ba6, + 0xe39ba7, + 0xe39ba8, + 0xe39ba9, + 0xe39baa, + 0xe39bab, + 0xe39bac, + 0xe39bad, + 0xe39bae, + 0xe39baf, + 0xe39bb0, + 0xe39bb1, + 0xe39bb2, + 0xe39bb3, + 0xe39bb4, + 0xe39bb5, + 0xe39bb6, + 0xe39bb7, + 0xe39bb8, + 0xe39bb9, + 0xe39bba, + 0xe39bbb, + 0xe39bbc, + 0xe39bbd, + 0xe39bbe, + 0xe39bbf, + 0xe39c80, + 0xe39c81, + 0xe39c82, + 0xe39c83, + 0xe39c84, + 0xe39c85, + 0xe39c86, + 0xe39c87, + 0xe39c88, + 0xe39c89, + 0xe39c8a, + 0xe39c8b, + 0xe39c8c, + 0xe39c8d, + 0xe39c8e, + 0xe39c8f, + 0xe39c90, + 0xe39c91, + 0xe39c92, + 0xe39c93, + 0xe39c94, + 0xe39c95, + 0xe39c96, + 0xe39c97, + 0xe39c98, + 0xe39c99, + 0xe39c9a, + 0xe39c9b, + 0xe39c9c, + 0xe39c9d, + 0xe39c9e, + 0xe39c9f, + 0xe39ca0, + 0xe39ca1, + 0xe39ca2, + 0xe39ca3, + 0xe39ca4, + 0xe39ca5, + 0xe39ca6, + 0xe39ca7, + 0xe39ca8, + 0xe39ca9, + 0xe39caa, + 0xe39cab, + 0xe39cac, + 0xe39cad, + 0xe39cae, + 0xe39caf, + 0xe39cb0, + 0xe39cb1, + 0xe39cb2, + 0xe39cb3, + 0xe39cb4, + 0xe39cb5, + 0xe39cb6, + 0xe39cb7, + 0xe39cb8, + 0xe39cb9, + 0xe39cba, + 0xe39cbb, + 0xe39cbc, + 0xe39cbd, + 0xe39cbe, + 0xe39cbf, + 0xe39d80, + 0xe39d81, + 0xe39d82, + 0xe39d83, + 0xe39d84, + 0xe39d85, + 0xe39d86, + 0xe39d87, + 0xe39d88, + 0xe39d89, + 0xe39d8a, + 0xe39d8b, + 0xe39d8c, + 0xe39d8d, + 0xe39d8e, + 0xe39d8f, + 0xe39d90, + 0xe39d91, + 0xe39d92, + 0xe39d93, + 0xe39d94, + 0xe39d95, + 0xe39d96, + 0xe39d97, + 0xe39d98, + 0xe39d99, + 0xe39d9a, + 0xe39d9b, + 0xe39d9c, + 0xe39d9d, + 0xe39d9e, + 0xe39d9f, + 0xe39da0, + 0xe39da1, + 0xe39da2, + 0xe39da3, + 0xe39da4, + 0xe39da5, + 0xe39da6, + 0xe39da7, + 0xe39da8, + 0xe39da9, + 0xe39daa, + 0xe39dab, + 0xe39dac, + 0xe39dad, + 0xe39dae, + 0xe39daf, + 0xe39db0, + 0xe39db1, + 0xe39db2, + 0xe39db3, + 0xe39db4, + 0xe39db5, + 0xe39db6, + 0xe39db7, + 0xe39db8, + 0xe39db9, + 0xe39dba, + 0xe39dbb, + 0xe39dbc, + 0xe39dbd, + 0xe39dbe, + 0xe39dbf, + 0xe39e80, + 0xe39e81, + 0xe39e82, + 0xe39e83, + 0xe39e84, + 0xe39e85, + 0xe39e86, + 0xe39e87, + 0xe39e88, + 0xe39e89, + 0xe39e8a, + 0xe39e8b, + 0xe39e8c, + 0xe39e8d, + 0xe39e8e, + 0xe39e8f, + 0xe39e90, + 0xe39e91, + 0xe39e92, + 0xe39e93, + 0xe39e94, + 0xe39e95, + 0xe39e96, + 0xe39e97, + 0xe39e98, + 0xe39e99, + 0xe39e9a, + 0xe39e9b, + 0xe39e9c, + 0xe39e9d, + 0xe39e9e, + 0xe39e9f, + 0xe39ea0, + 0xe39ea1, + 0xe39ea2, + 0xe39ea3, + 0xe39ea4, + 0xe39ea5, + 0xe39ea6, + 0xe39ea7, + 0xe39ea8, + 0xe39ea9, + 0xe39eaa, + 0xe39eab, + 0xe39eac, + 0xe39ead, + 0xe39eae, + 0xe39eaf, + 0xe39eb0, + 0xe39eb1, + 0xe39eb2, + 0xe39eb3, + 0xe39eb4, + 0xe39eb5, + 0xe39eb6, + 0xe39eb7, + 0xe39eb8, + 0xe39eb9, + 0xe39eba, + 0xe39ebb, + 0xe39ebc, + 0xe39ebd, + 0xe39ebe, + 0xe39ebf, + 0xe39f80, + 0xe39f81, + 0xe39f82, + 0xe39f83, + 0xe39f84, + 0xe39f85, + 0xe39f86, + 0xe39f87, + 0xe39f88, + 0xe39f89, + 0xe39f8a, + 0xe39f8b, + 0xe39f8c, + 0xe39f8d, + 0xe39f8e, + 0xe39f8f, + 0xe39f90, + 0xe39f91, + 0xe39f92, + 0xe39f93, + 0xe39f94, + 0xe39f95, + 0xe39f96, + 0xe39f97, + 0xe39f98, + 0xe39f99, + 0xe39f9a, + 0xe39f9b, + 0xe39f9c, + 0xe39f9d, + 0xe39f9e, + 0xe39f9f, + 0xe39fa0, + 0xe39fa1, + 0xe39fa2, + 0xe39fa3, + 0xe39fa4, + 0xe39fa5, + 0xe39fa6, + 0xe39fa7, + 0xe39fa8, + 0xe39fa9, + 0xe39faa, + 0xe39fab, + 0xe39fac, + 0xe39fad, + 0xe39fae, + 0xe39faf, + 0xe39fb0, + 0xe39fb1, + 0xe39fb2, + 0xe39fb3, + 0xe39fb4, + 0xe39fb5, + 0xe39fb6, + 0xe39fb7, + 0xe39fb8, + 0xe39fb9, + 0xe39fba, + 0xe39fbb, + 0xe39fbc, + 0xe39fbd, + 0xe39fbe, + 0xe39fbf, + 0xe3a080, + 0xe3a081, + 0xe3a082, + 0xe3a083, + 0xe3a084, + 0xe3a085, + 0xe3a086, + 0xe3a087, + 0xe3a088, + 0xe3a089, + 0xe3a08a, + 0xe3a08b, + 0xe3a08c, + 0xe3a08d, + 0xe3a08e, + 0xe3a08f, + 0xe3a090, + 0xe3a091, + 0xe3a092, + 0xe3a093, + 0xe3a094, + 0xe3a095, + 0xe3a096, + 0xe3a097, + 0xe3a098, + 0xe3a099, + 0xe3a09a, + 0xe3a09b, + 0xe3a09c, + 0xe3a09d, + 0xe3a09e, + 0xe3a09f, + 0xe3a0a0, + 0xe3a0a1, + 0xe3a0a2, + 0xe3a0a3, + 0xe3a0a4, + 0xe3a0a5, + 0xe3a0a6, + 0xe3a0a7, + 0xe3a0a8, + 0xe3a0a9, + 0xe3a0aa, + 0xe3a0ab, + 0xe3a0ac, + 0xe3a0ad, + 0xe3a0ae, + 0xe3a0af, + 0xe3a0b0, + 0xe3a0b1, + 0xe3a0b2, + 0xe3a0b3, + 0xe3a0b4, + 0xe3a0b5, + 0xe3a0b6, + 0xe3a0b7, + 0xe3a0b8, + 0xe3a0b9, + 0xe3a0ba, + 0xe3a0bb, + 0xe3a0bc, + 0xe3a0bd, + 0xe3a0be, + 0xe3a0bf, + 0xe3a180, + 0xe3a181, + 0xe3a182, + 0xe3a183, + 0xe3a184, + 0xe3a185, + 0xe3a186, + 0xe3a187, + 0xe3a188, + 0xe3a189, + 0xe3a18a, + 0xe3a18b, + 0xe3a18c, + 0xe3a18d, + 0xe3a18e, + 0xe3a18f, + 0xe3a190, + 0xe3a191, + 0xe3a192, + 0xe3a193, + 0xe3a194, + 0xe3a195, + 0xe3a196, + 0xe3a197, + 0xe3a198, + 0xe3a199, + 0xe3a19a, + 0xe3a19b, + 0xe3a19c, + 0xe3a19d, + 0xe3a19e, + 0xe3a19f, + 0xe3a1a0, + 0xe3a1a1, + 0xe3a1a2, + 0xe3a1a3, + 0xe3a1a4, + 0xe3a1a5, + 0xe3a1a6, + 0xe3a1a7, + 0xe3a1a8, + 0xe3a1a9, + 0xe3a1aa, + 0xe3a1ab, + 0xe3a1ac, + 0xe3a1ad, + 0xe3a1ae, + 0xe3a1af, + 0xe3a1b0, + 0xe3a1b1, + 0xe3a1b2, + 0xe3a1b3, + 0xe3a1b4, + 0xe3a1b5, + 0xe3a1b6, + 0xe3a1b7, + 0xe3a1b8, + 0xe3a1b9, + 0xe3a1ba, + 0xe3a1bb, + 0xe3a1bc, + 0xe3a1bd, + 0xe3a1be, + 0xe3a1bf, + 0xe3a280, + 0xe3a281, + 0xe3a282, + 0xe3a283, + 0xe3a284, + 0xe3a285, + 0xe3a286, + 0xe3a287, + 0xe3a288, + 0xe3a289, + 0xe3a28a, + 0xe3a28b, + 0xe3a28c, + 0xe3a28d, + 0xe3a28e, + 0xe3a28f, + 0xe3a290, + 0xe3a291, + 0xe3a292, + 0xe3a293, + 0xe3a294, + 0xe3a295, + 0xe3a296, + 0xe3a297, + 0xe3a298, + 0xe3a299, + 0xe3a29a, + 0xe3a29b, + 0xe3a29c, + 0xe3a29d, + 0xe3a29e, + 0xe3a29f, + 0xe3a2a0, + 0xe3a2a1, + 0xe3a2a2, + 0xe3a2a3, + 0xe3a2a4, + 0xe3a2a5, + 0xe3a2a6, + 0xe3a2a7, + 0xe3a2a8, + 0xe3a2a9, + 0xe3a2aa, + 0xe3a2ab, + 0xe3a2ac, + 0xe3a2ad, + 0xe3a2ae, + 0xe3a2af, + 0xe3a2b0, + 0xe3a2b1, + 0xe3a2b2, + 0xe3a2b3, + 0xe3a2b4, + 0xe3a2b5, + 0xe3a2b6, + 0xe3a2b7, + 0xe3a2b8, + 0xe3a2b9, + 0xe3a2ba, + 0xe3a2bb, + 0xe3a2bc, + 0xe3a2bd, + 0xe3a2be, + 0xe3a2bf, + 0xe3a380, + 0xe3a381, + 0xe3a382, + 0xe3a383, + 0xe3a384, + 0xe3a385, + 0xe3a386, + 0xe3a387, + 0xe3a388, + 0xe3a389, + 0xe3a38a, + 0xe3a38b, + 0xe3a38c, + 0xe3a38d, + 0xe3a38e, + 0xe3a38f, + 0xe3a390, + 0xe3a391, + 0xe3a392, + 0xe3a393, + 0xe3a394, + 0xe3a395, + 0xe3a396, + 0xe3a397, + 0xe3a398, + 0xe3a399, + 0xe3a39a, + 0xe3a39b, + 0xe3a39c, + 0xe3a39d, + 0xe3a39e, + 0xe3a39f, + 0xe3a3a0, + 0xe3a3a1, + 0xe3a3a2, + 0xe3a3a3, + 0xe3a3a4, + 0xe3a3a5, + 0xe3a3a6, + 0xe3a3a7, + 0xe3a3a8, + 0xe3a3a9, + 0xe3a3aa, + 0xe3a3ab, + 0xe3a3ac, + 0xe3a3ad, + 0xe3a3ae, + 0xe3a3af, + 0xe3a3b0, + 0xe3a3b1, + 0xe3a3b2, + 0xe3a3b3, + 0xe3a3b4, + 0xe3a3b5, + 0xe3a3b6, + 0xe3a3b7, + 0xe3a3b8, + 0xe3a3b9, + 0xe3a3ba, + 0xe3a3bb, + 0xe3a3bc, + 0xe3a3bd, + 0xe3a3be, + 0xe3a3bf, + 0xe3a480, + 0xe3a481, + 0xe3a482, + 0xe3a483, + 0xe3a484, + 0xe3a485, + 0xe3a486, + 0xe3a487, + 0xe3a488, + 0xe3a489, + 0xe3a48a, + 0xe3a48b, + 0xe3a48c, + 0xe3a48d, + 0xe3a48e, + 0xe3a48f, + 0xe3a490, + 0xe3a491, + 0xe3a492, + 0xe3a493, + 0xe3a494, + 0xe3a495, + 0xe3a496, + 0xe3a497, + 0xe3a498, + 0xe3a499, + 0xe3a49a, + 0xe3a49b, + 0xe3a49c, + 0xe3a49d, + 0xe3a49e, + 0xe3a49f, + 0xe3a4a0, + 0xe3a4a1, + 0xe3a4a2, + 0xe3a4a3, + 0xe3a4a4, + 0xe3a4a5, + 0xe3a4a6, + 0xe3a4a7, + 0xe3a4a8, + 0xe3a4a9, + 0xe3a4aa, + 0xe3a4ab, + 0xe3a4ac, + 0xe3a4ad, + 0xe3a4ae, + 0xe3a4af, + 0xe3a4b0, + 0xe3a4b1, + 0xe3a4b2, + 0xe3a4b3, + 0xe3a4b4, + 0xe3a4b5, + 0xe3a4b6, + 0xe3a4b7, + 0xe3a4b8, + 0xe3a4b9, + 0xe3a4ba, + 0xe3a4bb, + 0xe3a4bc, + 0xe3a4bd, + 0xe3a4be, + 0xe3a4bf, + 0xe3a580, + 0xe3a581, + 0xe3a582, + 0xe3a583, + 0xe3a584, + 0xe3a585, + 0xe3a586, + 0xe3a587, + 0xe3a588, + 0xe3a589, + 0xe3a58a, + 0xe3a58b, + 0xe3a58c, + 0xe3a58d, + 0xe3a58e, + 0xe3a58f, + 0xe3a590, + 0xe3a591, + 0xe3a592, + 0xe3a593, + 0xe3a594, + 0xe3a595, + 0xe3a596, + 0xe3a597, + 0xe3a598, + 0xe3a599, + 0xe3a59a, + 0xe3a59b, + 0xe3a59c, + 0xe3a59d, + 0xe3a59e, + 0xe3a59f, + 0xe3a5a0, + 0xe3a5a1, + 0xe3a5a2, + 0xe3a5a3, + 0xe3a5a4, + 0xe3a5a5, + 0xe3a5a6, + 0xe3a5a7, + 0xe3a5a8, + 0xe3a5a9, + 0xe3a5aa, + 0xe3a5ab, + 0xe3a5ac, + 0xe3a5ad, + 0xe3a5ae, + 0xe3a5af, + 0xe3a5b0, + 0xe3a5b1, + 0xe3a5b2, + 0xe3a5b3, + 0xe3a5b4, + 0xe3a5b5, + 0xe3a5b6, + 0xe3a5b7, + 0xe3a5b8, + 0xe3a5b9, + 0xe3a5ba, + 0xe3a5bb, + 0xe3a5bc, + 0xe3a5bd, + 0xe3a5be, + 0xe3a5bf, + 0xe3a680, + 0xe3a681, + 0xe3a682, + 0xe3a683, + 0xe3a684, + 0xe3a685, + 0xe3a686, + 0xe3a687, + 0xe3a688, + 0xe3a689, + 0xe3a68a, + 0xe3a68b, + 0xe3a68c, + 0xe3a68d, + 0xe3a68e, + 0xe3a68f, + 0xe3a690, + 0xe3a691, + 0xe3a692, + 0xe3a693, + 0xe3a694, + 0xe3a695, + 0xe3a696, + 0xe3a697, + 0xe3a698, + 0xe3a699, + 0xe3a69a, + 0xe3a69b, + 0xe3a69c, + 0xe3a69d, + 0xe3a69e, + 0xe3a69f, + 0xe3a6a0, + 0xe3a6a1, + 0xe3a6a2, + 0xe3a6a3, + 0xe3a6a4, + 0xe3a6a5, + 0xe3a6a6, + 0xe3a6a7, + 0xe3a6a8, + 0xe3a6a9, + 0xe3a6aa, + 0xe3a6ab, + 0xe3a6ac, + 0xe3a6ad, + 0xe3a6ae, + 0xe3a6af, + 0xe3a6b0, + 0xe3a6b1, + 0xe3a6b2, + 0xe3a6b3, + 0xe3a6b4, + 0xe3a6b5, + 0xe3a6b6, + 0xe3a6b7, + 0xe3a6b8, + 0xe3a6b9, + 0xe3a6ba, + 0xe3a6bb, + 0xe3a6bc, + 0xe3a6bd, + 0xe3a6be, + 0xe3a6bf, + 0xe3a780, + 0xe3a781, + 0xe3a782, + 0xe3a783, + 0xe3a784, + 0xe3a785, + 0xe3a786, + 0xe3a787, + 0xe3a788, + 0xe3a789, + 0xe3a78a, + 0xe3a78b, + 0xe3a78c, + 0xe3a78d, + 0xe3a78e, + 0xe3a78f, + 0xe3a790, + 0xe3a791, + 0xe3a792, + 0xe3a793, + 0xe3a794, + 0xe3a795, + 0xe3a796, + 0xe3a797, + 0xe3a798, + 0xe3a799, + 0xe3a79a, + 0xe3a79b, + 0xe3a79c, + 0xe3a79d, + 0xe3a79e, + 0xe3a79f, + 0xe3a7a0, + 0xe3a7a1, + 0xe3a7a2, + 0xe3a7a3, + 0xe3a7a4, + 0xe3a7a5, + 0xe3a7a6, + 0xe3a7a7, + 0xe3a7a8, + 0xe3a7a9, + 0xe3a7aa, + 0xe3a7ab, + 0xe3a7ac, + 0xe3a7ad, + 0xe3a7ae, + 0xe3a7af, + 0xe3a7b0, + 0xe3a7b1, + 0xe3a7b2, + 0xe3a7b3, + 0xe3a7b4, + 0xe3a7b5, + 0xe3a7b6, + 0xe3a7b7, + 0xe3a7b8, + 0xe3a7b9, + 0xe3a7ba, + 0xe3a7bb, + 0xe3a7bc, + 0xe3a7bd, + 0xe3a7be, + 0xe3a7bf, + 0xe3a880, + 0xe3a881, + 0xe3a882, + 0xe3a883, + 0xe3a884, + 0xe3a885, + 0xe3a886, + 0xe3a887, + 0xe3a888, + 0xe3a889, + 0xe3a88a, + 0xe3a88b, + 0xe3a88c, + 0xe3a88d, + 0xe3a88e, + 0xe3a88f, + 0xe3a890, + 0xe3a891, + 0xe3a892, + 0xe3a893, + 0xe3a894, + 0xe3a895, + 0xe3a896, + 0xe3a897, + 0xe3a898, + 0xe3a899, + 0xe3a89a, + 0xe3a89b, + 0xe3a89c, + 0xe3a89d, + 0xe3a89e, + 0xe3a89f, + 0xe3a8a0, + 0xe3a8a1, + 0xe3a8a2, + 0xe3a8a3, + 0xe3a8a4, + 0xe3a8a5, + 0xe3a8a6, + 0xe3a8a7, + 0xe3a8a8, + 0xe3a8a9, + 0xe3a8aa, + 0xe3a8ab, + 0xe3a8ac, + 0xe3a8ad, + 0xe3a8ae, + 0xe3a8af, + 0xe3a8b0, + 0xe3a8b1, + 0xe3a8b2, + 0xe3a8b3, + 0xe3a8b4, + 0xe3a8b5, + 0xe3a8b6, + 0xe3a8b7, + 0xe3a8b8, + 0xe3a8b9, + 0xe3a8ba, + 0xe3a8bb, + 0xe3a8bc, + 0xe3a8bd, + 0xe3a8be, + 0xe3a8bf, + 0xe3a980, + 0xe3a981, + 0xe3a982, + 0xe3a983, + 0xe3a984, + 0xe3a985, + 0xe3a986, + 0xe3a987, + 0xe3a988, + 0xe3a989, + 0xe3a98a, + 0xe3a98b, + 0xe3a98c, + 0xe3a98d, + 0xe3a98e, + 0xe3a98f, + 0xe3a990, + 0xe3a991, + 0xe3a992, + 0xe3a993, + 0xe3a994, + 0xe3a995, + 0xe3a996, + 0xe3a997, + 0xe3a998, + 0xe3a999, + 0xe3a99a, + 0xe3a99b, + 0xe3a99c, + 0xe3a99d, + 0xe3a99e, + 0xe3a99f, + 0xe3a9a0, + 0xe3a9a1, + 0xe3a9a2, + 0xe3a9a3, + 0xe3a9a4, + 0xe3a9a5, + 0xe3a9a6, + 0xe3a9a7, + 0xe3a9a8, + 0xe3a9a9, + 0xe3a9aa, + 0xe3a9ab, + 0xe3a9ac, + 0xe3a9ad, + 0xe3a9ae, + 0xe3a9af, + 0xe3a9b0, + 0xe3a9b1, + 0xe3a9b2, + 0xe3a9b3, + 0xe3a9b4, + 0xe3a9b5, + 0xe3a9b6, + 0xe3a9b7, + 0xe3a9b8, + 0xe3a9b9, + 0xe3a9ba, + 0xe3a9bb, + 0xe3a9bc, + 0xe3a9bd, + 0xe3a9be, + 0xe3a9bf, + 0xe3aa80, + 0xe3aa81, + 0xe3aa82, + 0xe3aa83, + 0xe3aa84, + 0xe3aa85, + 0xe3aa86, + 0xe3aa87, + 0xe3aa88, + 0xe3aa89, + 0xe3aa8a, + 0xe3aa8b, + 0xe3aa8c, + 0xe3aa8d, + 0xe3aa8e, + 0xe3aa8f, + 0xe3aa90, + 0xe3aa91, + 0xe3aa92, + 0xe3aa93, + 0xe3aa94, + 0xe3aa95, + 0xe3aa96, + 0xe3aa97, + 0xe3aa98, + 0xe3aa99, + 0xe3aa9a, + 0xe3aa9b, + 0xe3aa9c, + 0xe3aa9d, + 0xe3aa9e, + 0xe3aa9f, + 0xe3aaa0, + 0xe3aaa1, + 0xe3aaa2, + 0xe3aaa3, + 0xe3aaa4, + 0xe3aaa5, + 0xe3aaa6, + 0xe3aaa7, + 0xe3aaa8, + 0xe3aaa9, + 0xe3aaaa, + 0xe3aaab, + 0xe3aaac, + 0xe3aaad, + 0xe3aaae, + 0xe3aaaf, + 0xe3aab0, + 0xe3aab1, + 0xe3aab2, + 0xe3aab3, + 0xe3aab4, + 0xe3aab5, + 0xe3aab6, + 0xe3aab7, + 0xe3aab8, + 0xe3aab9, + 0xe3aaba, + 0xe3aabb, + 0xe3aabc, + 0xe3aabd, + 0xe3aabe, + 0xe3aabf, + 0xe3ab80, + 0xe3ab81, + 0xe3ab82, + 0xe3ab83, + 0xe3ab84, + 0xe3ab85, + 0xe3ab86, + 0xe3ab87, + 0xe3ab88, + 0xe3ab89, + 0xe3ab8a, + 0xe3ab8b, + 0xe3ab8c, + 0xe3ab8d, + 0xe3ab8e, + 0xe3ab8f, + 0xe3ab90, + 0xe3ab91, + 0xe3ab92, + 0xe3ab93, + 0xe3ab94, + 0xe3ab95, + 0xe3ab96, + 0xe3ab97, + 0xe3ab98, + 0xe3ab99, + 0xe3ab9a, + 0xe3ab9b, + 0xe3ab9c, + 0xe3ab9d, + 0xe3ab9e, + 0xe3ab9f, + 0xe3aba0, + 0xe3aba1, + 0xe3aba2, + 0xe3aba3, + 0xe3aba4, + 0xe3aba5, + 0xe3aba6, + 0xe3aba7, + 0xe3aba8, + 0xe3aba9, + 0xe3abaa, + 0xe3abab, + 0xe3abac, + 0xe3abad, + 0xe3abae, + 0xe3abaf, + 0xe3abb0, + 0xe3abb1, + 0xe3abb2, + 0xe3abb3, + 0xe3abb4, + 0xe3abb5, + 0xe3abb6, + 0xe3abb7, + 0xe3abb8, + 0xe3abb9, + 0xe3abba, + 0xe3abbb, + 0xe3abbc, + 0xe3abbd, + 0xe3abbe, + 0xe3abbf, + 0xe3ac80, + 0xe3ac81, + 0xe3ac82, + 0xe3ac83, + 0xe3ac84, + 0xe3ac85, + 0xe3ac86, + 0xe3ac87, + 0xe3ac88, + 0xe3ac89, + 0xe3ac8a, + 0xe3ac8b, + 0xe3ac8c, + 0xe3ac8d, + 0xe3ac8e, + 0xe3ac8f, + 0xe3ac90, + 0xe3ac91, + 0xe3ac92, + 0xe3ac93, + 0xe3ac94, + 0xe3ac95, + 0xe3ac96, + 0xe3ac97, + 0xe3ac98, + 0xe3ac99, + 0xe3ac9a, + 0xe3ac9b, + 0xe3ac9c, + 0xe3ac9d, + 0xe3ac9e, + 0xe3ac9f, + 0xe3aca0, + 0xe3aca1, + 0xe3aca2, + 0xe3aca3, + 0xe3aca4, + 0xe3aca5, + 0xe3aca6, + 0xe3aca7, + 0xe3aca8, + 0xe3aca9, + 0xe3acaa, + 0xe3acab, + 0xe3acac, + 0xe3acad, + 0xe3acae, + 0xe3acaf, + 0xe3acb0, + 0xe3acb1, + 0xe3acb2, + 0xe3acb3, + 0xe3acb4, + 0xe3acb5, + 0xe3acb6, + 0xe3acb7, + 0xe3acb8, + 0xe3acb9, + 0xe3acba, + 0xe3acbb, + 0xe3acbc, + 0xe3acbd, + 0xe3acbe, + 0xe3acbf, + 0xe3ad80, + 0xe3ad81, + 0xe3ad82, + 0xe3ad83, + 0xe3ad84, + 0xe3ad85, + 0xe3ad86, + 0xe3ad87, + 0xe3ad88, + 0xe3ad89, + 0xe3ad8a, + 0xe3ad8b, + 0xe3ad8c, + 0xe3ad8d, + 0xe3ad8e, + 0xe3ad8f, + 0xe3ad90, + 0xe3ad91, + 0xe3ad92, + 0xe3ad93, + 0xe3ad94, + 0xe3ad95, + 0xe3ad96, + 0xe3ad97, + 0xe3ad98, + 0xe3ad99, + 0xe3ad9a, + 0xe3ad9b, + 0xe3ad9c, + 0xe3ad9d, + 0xe3ad9e, + 0xe3ad9f, + 0xe3ada0, + 0xe3ada1, + 0xe3ada2, + 0xe3ada3, + 0xe3ada4, + 0xe3ada5, + 0xe3ada6, + 0xe3ada7, + 0xe3ada8, + 0xe3ada9, + 0xe3adaa, + 0xe3adab, + 0xe3adac, + 0xe3adad, + 0xe3adae, + 0xe3adaf, + 0xe3adb0, + 0xe3adb1, + 0xe3adb2, + 0xe3adb3, + 0xe3adb4, + 0xe3adb5, + 0xe3adb6, + 0xe3adb7, + 0xe3adb8, + 0xe3adb9, + 0xe3adba, + 0xe3adbb, + 0xe3adbc, + 0xe3adbd, + 0xe3adbe, + 0xe3adbf, + 0xe3ae80, + 0xe3ae81, + 0xe3ae82, + 0xe3ae83, + 0xe3ae84, + 0xe3ae85, + 0xe3ae86, + 0xe3ae87, + 0xe3ae88, + 0xe3ae89, + 0xe3ae8a, + 0xe3ae8b, + 0xe3ae8c, + 0xe3ae8d, + 0xe3ae8e, + 0xe3ae8f, + 0xe3ae90, + 0xe3ae91, + 0xe3ae92, + 0xe3ae93, + 0xe3ae94, + 0xe3ae95, + 0xe3ae96, + 0xe3ae97, + 0xe3ae98, + 0xe3ae99, + 0xe3ae9a, + 0xe3ae9b, + 0xe3ae9c, + 0xe3ae9d, + 0xe3ae9e, + 0xe3ae9f, + 0xe3aea0, + 0xe3aea1, + 0xe3aea2, + 0xe3aea3, + 0xe3aea4, + 0xe3aea5, + 0xe3aea6, + 0xe3aea7, + 0xe3aea8, + 0xe3aea9, + 0xe3aeaa, + 0xe3aeab, + 0xe3aeac, + 0xe3aead, + 0xe3aeae, + 0xe3aeaf, + 0xe3aeb0, + 0xe3aeb1, + 0xe3aeb2, + 0xe3aeb3, + 0xe3aeb4, + 0xe3aeb5, + 0xe3aeb6, + 0xe3aeb7, + 0xe3aeb8, + 0xe3aeb9, + 0xe3aeba, + 0xe3aebb, + 0xe3aebc, + 0xe3aebd, + 0xe3aebe, + 0xe3aebf, + 0xe3af80, + 0xe3af81, + 0xe3af82, + 0xe3af83, + 0xe3af84, + 0xe3af85, + 0xe3af86, + 0xe3af87, + 0xe3af88, + 0xe3af89, + 0xe3af8a, + 0xe3af8b, + 0xe3af8c, + 0xe3af8d, + 0xe3af8e, + 0xe3af8f, + 0xe3af90, + 0xe3af91, + 0xe3af92, + 0xe3af93, + 0xe3af94, + 0xe3af95, + 0xe3af96, + 0xe3af97, + 0xe3af98, + 0xe3af99, + 0xe3af9a, + 0xe3af9b, + 0xe3af9c, + 0xe3af9d, + 0xe3af9e, + 0xe3af9f, + 0xe3afa0, + 0xe3afa1, + 0xe3afa2, + 0xe3afa3, + 0xe3afa4, + 0xe3afa5, + 0xe3afa6, + 0xe3afa7, + 0xe3afa8, + 0xe3afa9, + 0xe3afaa, + 0xe3afab, + 0xe3afac, + 0xe3afad, + 0xe3afae, + 0xe3afaf, + 0xe3afb0, + 0xe3afb1, + 0xe3afb2, + 0xe3afb3, + 0xe3afb4, + 0xe3afb5, + 0xe3afb6, + 0xe3afb7, + 0xe3afb8, + 0xe3afb9, + 0xe3afba, + 0xe3afbb, + 0xe3afbc, + 0xe3afbd, + 0xe3afbe, + 0xe3afbf, + 0xe3b080, + 0xe3b081, + 0xe3b082, + 0xe3b083, + 0xe3b084, + 0xe3b085, + 0xe3b086, + 0xe3b087, + 0xe3b088, + 0xe3b089, + 0xe3b08a, + 0xe3b08b, + 0xe3b08c, + 0xe3b08d, + 0xe3b08e, + 0xe3b08f, + 0xe3b090, + 0xe3b091, + 0xe3b092, + 0xe3b093, + 0xe3b094, + 0xe3b095, + 0xe3b096, + 0xe3b097, + 0xe3b098, + 0xe3b099, + 0xe3b09a, + 0xe3b09b, + 0xe3b09c, + 0xe3b09d, + 0xe3b09e, + 0xe3b09f, + 0xe3b0a0, + 0xe3b0a1, + 0xe3b0a2, + 0xe3b0a3, + 0xe3b0a4, + 0xe3b0a5, + 0xe3b0a6, + 0xe3b0a7, + 0xe3b0a8, + 0xe3b0a9, + 0xe3b0aa, + 0xe3b0ab, + 0xe3b0ac, + 0xe3b0ad, + 0xe3b0ae, + 0xe3b0af, + 0xe3b0b0, + 0xe3b0b1, + 0xe3b0b2, + 0xe3b0b3, + 0xe3b0b4, + 0xe3b0b5, + 0xe3b0b6, + 0xe3b0b7, + 0xe3b0b8, + 0xe3b0b9, + 0xe3b0ba, + 0xe3b0bb, + 0xe3b0bc, + 0xe3b0bd, + 0xe3b0be, + 0xe3b0bf, + 0xe3b180, + 0xe3b181, + 0xe3b182, + 0xe3b183, + 0xe3b184, + 0xe3b185, + 0xe3b186, + 0xe3b187, + 0xe3b188, + 0xe3b189, + 0xe3b18a, + 0xe3b18b, + 0xe3b18c, + 0xe3b18d, + 0xe3b18e, + 0xe3b18f, + 0xe3b190, + 0xe3b191, + 0xe3b192, + 0xe3b193, + 0xe3b194, + 0xe3b195, + 0xe3b196, + 0xe3b197, + 0xe3b198, + 0xe3b199, + 0xe3b19a, + 0xe3b19b, + 0xe3b19c, + 0xe3b19d, + 0xe3b19e, + 0xe3b19f, + 0xe3b1a0, + 0xe3b1a1, + 0xe3b1a2, + 0xe3b1a3, + 0xe3b1a4, + 0xe3b1a5, + 0xe3b1a6, + 0xe3b1a7, + 0xe3b1a8, + 0xe3b1a9, + 0xe3b1aa, + 0xe3b1ab, + 0xe3b1ac, + 0xe3b1ad, + 0xe3b1ae, + 0xe3b1af, + 0xe3b1b0, + 0xe3b1b1, + 0xe3b1b2, + 0xe3b1b3, + 0xe3b1b4, + 0xe3b1b5, + 0xe3b1b6, + 0xe3b1b7, + 0xe3b1b8, + 0xe3b1b9, + 0xe3b1ba, + 0xe3b1bb, + 0xe3b1bc, + 0xe3b1bd, + 0xe3b1be, + 0xe3b1bf, + 0xe3b280, + 0xe3b281, + 0xe3b282, + 0xe3b283, + 0xe3b284, + 0xe3b285, + 0xe3b286, + 0xe3b287, + 0xe3b288, + 0xe3b289, + 0xe3b28a, + 0xe3b28b, + 0xe3b28c, + 0xe3b28d, + 0xe3b28e, + 0xe3b28f, + 0xe3b290, + 0xe3b291, + 0xe3b292, + 0xe3b293, + 0xe3b294, + 0xe3b295, + 0xe3b296, + 0xe3b297, + 0xe3b298, + 0xe3b299, + 0xe3b29a, + 0xe3b29b, + 0xe3b29c, + 0xe3b29d, + 0xe3b29e, + 0xe3b29f, + 0xe3b2a0, + 0xe3b2a1, + 0xe3b2a2, + 0xe3b2a3, + 0xe3b2a4, + 0xe3b2a5, + 0xe3b2a6, + 0xe3b2a7, + 0xe3b2a8, + 0xe3b2a9, + 0xe3b2aa, + 0xe3b2ab, + 0xe3b2ac, + 0xe3b2ad, + 0xe3b2ae, + 0xe3b2af, + 0xe3b2b0, + 0xe3b2b1, + 0xe3b2b2, + 0xe3b2b3, + 0xe3b2b4, + 0xe3b2b5, + 0xe3b2b6, + 0xe3b2b7, + 0xe3b2b8, + 0xe3b2b9, + 0xe3b2ba, + 0xe3b2bb, + 0xe3b2bc, + 0xe3b2bd, + 0xe3b2be, + 0xe3b2bf, + 0xe3b380, + 0xe3b381, + 0xe3b382, + 0xe3b383, + 0xe3b384, + 0xe3b385, + 0xe3b386, + 0xe3b387, + 0xe3b388, + 0xe3b389, + 0xe3b38a, + 0xe3b38b, + 0xe3b38c, + 0xe3b38d, + 0xe3b38e, + 0xe3b38f, + 0xe3b390, + 0xe3b391, + 0xe3b392, + 0xe3b393, + 0xe3b394, + 0xe3b395, + 0xe3b396, + 0xe3b397, + 0xe3b398, + 0xe3b399, + 0xe3b39a, + 0xe3b39b, + 0xe3b39c, + 0xe3b39d, + 0xe3b39e, + 0xe3b39f, + 0xe3b3a0, + 0xe3b3a1, + 0xe3b3a2, + 0xe3b3a3, + 0xe3b3a4, + 0xe3b3a5, + 0xe3b3a6, + 0xe3b3a7, + 0xe3b3a8, + 0xe3b3a9, + 0xe3b3aa, + 0xe3b3ab, + 0xe3b3ac, + 0xe3b3ad, + 0xe3b3ae, + 0xe3b3af, + 0xe3b3b0, + 0xe3b3b1, + 0xe3b3b2, + 0xe3b3b3, + 0xe3b3b4, + 0xe3b3b5, + 0xe3b3b6, + 0xe3b3b7, + 0xe3b3b8, + 0xe3b3b9, + 0xe3b3ba, + 0xe3b3bb, + 0xe3b3bc, + 0xe3b3bd, + 0xe3b3be, + 0xe3b3bf, + 0xe3b480, + 0xe3b481, + 0xe3b482, + 0xe3b483, + 0xe3b484, + 0xe3b485, + 0xe3b486, + 0xe3b487, + 0xe3b488, + 0xe3b489, + 0xe3b48a, + 0xe3b48b, + 0xe3b48c, + 0xe3b48d, + 0xe3b48e, + 0xe3b48f, + 0xe3b490, + 0xe3b491, + 0xe3b492, + 0xe3b493, + 0xe3b494, + 0xe3b495, + 0xe3b496, + 0xe3b497, + 0xe3b498, + 0xe3b499, + 0xe3b49a, + 0xe3b49b, + 0xe3b49c, + 0xe3b49d, + 0xe3b49e, + 0xe3b49f, + 0xe3b4a0, + 0xe3b4a1, + 0xe3b4a2, + 0xe3b4a3, + 0xe3b4a4, + 0xe3b4a5, + 0xe3b4a6, + 0xe3b4a7, + 0xe3b4a8, + 0xe3b4a9, + 0xe3b4aa, + 0xe3b4ab, + 0xe3b4ac, + 0xe3b4ad, + 0xe3b4ae, + 0xe3b4af, + 0xe3b4b0, + 0xe3b4b1, + 0xe3b4b2, + 0xe3b4b3, + 0xe3b4b4, + 0xe3b4b5, + 0xe3b4b6, + 0xe3b4b7, + 0xe3b4b8, + 0xe3b4b9, + 0xe3b4ba, + 0xe3b4bb, + 0xe3b4bc, + 0xe3b4bd, + 0xe3b4be, + 0xe3b4bf, + 0xe3b580, + 0xe3b581, + 0xe3b582, + 0xe3b583, + 0xe3b584, + 0xe3b585, + 0xe3b586, + 0xe3b587, + 0xe3b588, + 0xe3b589, + 0xe3b58a, + 0xe3b58b, + 0xe3b58c, + 0xe3b58d, + 0xe3b58e, + 0xe3b58f, + 0xe3b590, + 0xe3b591, + 0xe3b592, + 0xe3b593, + 0xe3b594, + 0xe3b595, + 0xe3b596, + 0xe3b597, + 0xe3b598, + 0xe3b599, + 0xe3b59a, + 0xe3b59b, + 0xe3b59c, + 0xe3b59d, + 0xe3b59e, + 0xe3b59f, + 0xe3b5a0, + 0xe3b5a1, + 0xe3b5a2, + 0xe3b5a3, + 0xe3b5a4, + 0xe3b5a5, + 0xe3b5a6, + 0xe3b5a7, + 0xe3b5a8, + 0xe3b5a9, + 0xe3b5aa, + 0xe3b5ab, + 0xe3b5ac, + 0xe3b5ad, + 0xe3b5ae, + 0xe3b5af, + 0xe3b5b0, + 0xe3b5b1, + 0xe3b5b2, + 0xe3b5b3, + 0xe3b5b4, + 0xe3b5b5, + 0xe3b5b6, + 0xe3b5b7, + 0xe3b5b8, + 0xe3b5b9, + 0xe3b5ba, + 0xe3b5bb, + 0xe3b5bc, + 0xe3b5bd, + 0xe3b5be, + 0xe3b5bf, + 0xe3b680, + 0xe3b681, + 0xe3b682, + 0xe3b683, + 0xe3b684, + 0xe3b685, + 0xe3b686, + 0xe3b687, + 0xe3b688, + 0xe3b689, + 0xe3b68a, + 0xe3b68b, + 0xe3b68c, + 0xe3b68d, + 0xe3b68e, + 0xe3b68f, + 0xe3b690, + 0xe3b691, + 0xe3b692, + 0xe3b693, + 0xe3b694, + 0xe3b695, + 0xe3b696, + 0xe3b697, + 0xe3b698, + 0xe3b699, + 0xe3b69a, + 0xe3b69b, + 0xe3b69c, + 0xe3b69d, + 0xe3b69e, + 0xe3b69f, + 0xe3b6a0, + 0xe3b6a1, + 0xe3b6a2, + 0xe3b6a3, + 0xe3b6a4, + 0xe3b6a5, + 0xe3b6a6, + 0xe3b6a7, + 0xe3b6a8, + 0xe3b6a9, + 0xe3b6aa, + 0xe3b6ab, + 0xe3b6ac, + 0xe3b6ad, + 0xe3b6ae, + 0xe3b6af, + 0xe3b6b0, + 0xe3b6b1, + 0xe3b6b2, + 0xe3b6b3, + 0xe3b6b4, + 0xe3b6b5, + 0xe3b6b6, + 0xe3b6b7, + 0xe3b6b8, + 0xe3b6b9, + 0xe3b6ba, + 0xe3b6bb, + 0xe3b6bc, + 0xe3b6bd, + 0xe3b6be, + 0xe3b6bf, + 0xe3b780, + 0xe3b781, + 0xe3b782, + 0xe3b783, + 0xe3b784, + 0xe3b785, + 0xe3b786, + 0xe3b787, + 0xe3b788, + 0xe3b789, + 0xe3b78a, + 0xe3b78b, + 0xe3b78c, + 0xe3b78d, + 0xe3b78e, + 0xe3b78f, + 0xe3b790, + 0xe3b791, + 0xe3b792, + 0xe3b793, + 0xe3b794, + 0xe3b795, + 0xe3b796, + 0xe3b797, + 0xe3b798, + 0xe3b799, + 0xe3b79a, + 0xe3b79b, + 0xe3b79c, + 0xe3b79d, + 0xe3b79e, + 0xe3b79f, + 0xe3b7a0, + 0xe3b7a1, + 0xe3b7a2, + 0xe3b7a3, + 0xe3b7a4, + 0xe3b7a5, + 0xe3b7a6, + 0xe3b7a7, + 0xe3b7a8, + 0xe3b7a9, + 0xe3b7aa, + 0xe3b7ab, + 0xe3b7ac, + 0xe3b7ad, + 0xe3b7ae, + 0xe3b7af, + 0xe3b7b0, + 0xe3b7b1, + 0xe3b7b2, + 0xe3b7b3, + 0xe3b7b4, + 0xe3b7b5, + 0xe3b7b6, + 0xe3b7b7, + 0xe3b7b8, + 0xe3b7b9, + 0xe3b7ba, + 0xe3b7bb, + 0xe3b7bc, + 0xe3b7bd, + 0xe3b7be, + 0xe3b7bf, + 0xe3b880, + 0xe3b881, + 0xe3b882, + 0xe3b883, + 0xe3b884, + 0xe3b885, + 0xe3b886, + 0xe3b887, + 0xe3b888, + 0xe3b889, + 0xe3b88a, + 0xe3b88b, + 0xe3b88c, + 0xe3b88d, + 0xe3b88e, + 0xe3b88f, + 0xe3b890, + 0xe3b891, + 0xe3b892, + 0xe3b893, + 0xe3b894, + 0xe3b895, + 0xe3b896, + 0xe3b897, + 0xe3b898, + 0xe3b899, + 0xe3b89a, + 0xe3b89b, + 0xe3b89c, + 0xe3b89d, + 0xe3b89e, + 0xe3b89f, + 0xe3b8a0, + 0xe3b8a1, + 0xe3b8a2, + 0xe3b8a3, + 0xe3b8a4, + 0xe3b8a5, + 0xe3b8a6, + 0xe3b8a7, + 0xe3b8a8, + 0xe3b8a9, + 0xe3b8aa, + 0xe3b8ab, + 0xe3b8ac, + 0xe3b8ad, + 0xe3b8ae, + 0xe3b8af, + 0xe3b8b0, + 0xe3b8b1, + 0xe3b8b2, + 0xe3b8b3, + 0xe3b8b4, + 0xe3b8b5, + 0xe3b8b6, + 0xe3b8b7, + 0xe3b8b8, + 0xe3b8b9, + 0xe3b8ba, + 0xe3b8bb, + 0xe3b8bc, + 0xe3b8bd, + 0xe3b8be, + 0xe3b8bf, + 0xe3b980, + 0xe3b981, + 0xe3b982, + 0xe3b983, + 0xe3b984, + 0xe3b985, + 0xe3b986, + 0xe3b987, + 0xe3b988, + 0xe3b989, + 0xe3b98a, + 0xe3b98b, + 0xe3b98c, + 0xe3b98d, + 0xe3b98e, + 0xe3b98f, + 0xe3b990, + 0xe3b991, + 0xe3b992, + 0xe3b993, + 0xe3b994, + 0xe3b995, + 0xe3b996, + 0xe3b997, + 0xe3b998, + 0xe3b999, + 0xe3b99a, + 0xe3b99b, + 0xe3b99c, + 0xe3b99d, + 0xe3b99e, + 0xe3b99f, + 0xe3b9a0, + 0xe3b9a1, + 0xe3b9a2, + 0xe3b9a3, + 0xe3b9a4, + 0xe3b9a5, + 0xe3b9a6, + 0xe3b9a7, + 0xe3b9a8, + 0xe3b9a9, + 0xe3b9aa, + 0xe3b9ab, + 0xe3b9ac, + 0xe3b9ad, + 0xe3b9ae, + 0xe3b9af, + 0xe3b9b0, + 0xe3b9b1, + 0xe3b9b2, + 0xe3b9b3, + 0xe3b9b4, + 0xe3b9b5, + 0xe3b9b6, + 0xe3b9b7, + 0xe3b9b8, + 0xe3b9b9, + 0xe3b9ba, + 0xe3b9bb, + 0xe3b9bc, + 0xe3b9bd, + 0xe3b9be, + 0xe3b9bf, + 0xe3ba80, + 0xe3ba81, + 0xe3ba82, + 0xe3ba83, + 0xe3ba84, + 0xe3ba85, + 0xe3ba86, + 0xe3ba87, + 0xe3ba88, + 0xe3ba89, + 0xe3ba8a, + 0xe3ba8b, + 0xe3ba8c, + 0xe3ba8d, + 0xe3ba8e, + 0xe3ba8f, + 0xe3ba90, + 0xe3ba91, + 0xe3ba92, + 0xe3ba93, + 0xe3ba94, + 0xe3ba95, + 0xe3ba96, + 0xe3ba97, + 0xe3ba98, + 0xe3ba99, + 0xe3ba9a, + 0xe3ba9b, + 0xe3ba9c, + 0xe3ba9d, + 0xe3ba9e, + 0xe3ba9f, + 0xe3baa0, + 0xe3baa1, + 0xe3baa2, + 0xe3baa3, + 0xe3baa4, + 0xe3baa5, + 0xe3baa6, + 0xe3baa7, + 0xe3baa8, + 0xe3baa9, + 0xe3baaa, + 0xe3baab, + 0xe3baac, + 0xe3baad, + 0xe3baae, + 0xe3baaf, + 0xe3bab0, + 0xe3bab1, + 0xe3bab2, + 0xe3bab3, + 0xe3bab4, + 0xe3bab5, + 0xe3bab6, + 0xe3bab7, + 0xe3bab8, + 0xe3bab9, + 0xe3baba, + 0xe3babb, + 0xe3babc, + 0xe3babd, + 0xe3babe, + 0xe3babf, + 0xe3bb80, + 0xe3bb81, + 0xe3bb82, + 0xe3bb83, + 0xe3bb84, + 0xe3bb85, + 0xe3bb86, + 0xe3bb87, + 0xe3bb88, + 0xe3bb89, + 0xe3bb8a, + 0xe3bb8b, + 0xe3bb8c, + 0xe3bb8d, + 0xe3bb8e, + 0xe3bb8f, + 0xe3bb90, + 0xe3bb91, + 0xe3bb92, + 0xe3bb93, + 0xe3bb94, + 0xe3bb95, + 0xe3bb96, + 0xe3bb97, + 0xe3bb98, + 0xe3bb99, + 0xe3bb9a, + 0xe3bb9b, + 0xe3bb9c, + 0xe3bb9d, + 0xe3bb9e, + 0xe3bb9f, + 0xe3bba0, + 0xe3bba1, + 0xe3bba2, + 0xe3bba3, + 0xe3bba4, + 0xe3bba5, + 0xe3bba6, + 0xe3bba7, + 0xe3bba8, + 0xe3bba9, + 0xe3bbaa, + 0xe3bbab, + 0xe3bbac, + 0xe3bbad, + 0xe3bbae, + 0xe3bbaf, + 0xe3bbb0, + 0xe3bbb1, + 0xe3bbb2, + 0xe3bbb3, + 0xe3bbb4, + 0xe3bbb5, + 0xe3bbb6, + 0xe3bbb7, + 0xe3bbb8, + 0xe3bbb9, + 0xe3bbba, + 0xe3bbbb, + 0xe3bbbc, + 0xe3bbbd, + 0xe3bbbe, + 0xe3bbbf, + 0xe3bc80, + 0xe3bc81, + 0xe3bc82, + 0xe3bc83, + 0xe3bc84, + 0xe3bc85, + 0xe3bc86, + 0xe3bc87, + 0xe3bc88, + 0xe3bc89, + 0xe3bc8a, + 0xe3bc8b, + 0xe3bc8c, + 0xe3bc8d, + 0xe3bc8e, + 0xe3bc8f, + 0xe3bc90, + 0xe3bc91, + 0xe3bc92, + 0xe3bc93, + 0xe3bc94, + 0xe3bc95, + 0xe3bc96, + 0xe3bc97, + 0xe3bc98, + 0xe3bc99, + 0xe3bc9a, + 0xe3bc9b, + 0xe3bc9c, + 0xe3bc9d, + 0xe3bc9e, + 0xe3bc9f, + 0xe3bca0, + 0xe3bca1, + 0xe3bca2, + 0xe3bca3, + 0xe3bca4, + 0xe3bca5, + 0xe3bca6, + 0xe3bca7, + 0xe3bca8, + 0xe3bca9, + 0xe3bcaa, + 0xe3bcab, + 0xe3bcac, + 0xe3bcad, + 0xe3bcae, + 0xe3bcaf, + 0xe3bcb0, + 0xe3bcb1, + 0xe3bcb2, + 0xe3bcb3, + 0xe3bcb4, + 0xe3bcb5, + 0xe3bcb6, + 0xe3bcb7, + 0xe3bcb8, + 0xe3bcb9, + 0xe3bcba, + 0xe3bcbb, + 0xe3bcbc, + 0xe3bcbd, + 0xe3bcbe, + 0xe3bcbf, + 0xe3bd80, + 0xe3bd81, + 0xe3bd82, + 0xe3bd83, + 0xe3bd84, + 0xe3bd85, + 0xe3bd86, + 0xe3bd87, + 0xe3bd88, + 0xe3bd89, + 0xe3bd8a, + 0xe3bd8b, + 0xe3bd8c, + 0xe3bd8d, + 0xe3bd8e, + 0xe3bd8f, + 0xe3bd90, + 0xe3bd91, + 0xe3bd92, + 0xe3bd93, + 0xe3bd94, + 0xe3bd95, + 0xe3bd96, + 0xe3bd97, + 0xe3bd98, + 0xe3bd99, + 0xe3bd9a, + 0xe3bd9b, + 0xe3bd9c, + 0xe3bd9d, + 0xe3bd9e, + 0xe3bd9f, + 0xe3bda0, + 0xe3bda1, + 0xe3bda2, + 0xe3bda3, + 0xe3bda4, + 0xe3bda5, + 0xe3bda6, + 0xe3bda7, + 0xe3bda8, + 0xe3bda9, + 0xe3bdaa, + 0xe3bdab, + 0xe3bdac, + 0xe3bdad, + 0xe3bdae, + 0xe3bdaf, + 0xe3bdb0, + 0xe3bdb1, + 0xe3bdb2, + 0xe3bdb3, + 0xe3bdb4, + 0xe3bdb5, + 0xe3bdb6, + 0xe3bdb7, + 0xe3bdb8, + 0xe3bdb9, + 0xe3bdba, + 0xe3bdbb, + 0xe3bdbc, + 0xe3bdbd, + 0xe3bdbe, + 0xe3bdbf, + 0xe3be80, + 0xe3be81, + 0xe3be82, + 0xe3be83, + 0xe3be84, + 0xe3be85, + 0xe3be86, + 0xe3be87, + 0xe3be88, + 0xe3be89, + 0xe3be8a, + 0xe3be8b, + 0xe3be8c, + 0xe3be8d, + 0xe3be8e, + 0xe3be8f, + 0xe3be90, + 0xe3be91, + 0xe3be92, + 0xe3be93, + 0xe3be94, + 0xe3be95, + 0xe3be96, + 0xe3be97, + 0xe3be98, + 0xe3be99, + 0xe3be9a, + 0xe3be9b, + 0xe3be9c, + 0xe3be9d, + 0xe3be9e, + 0xe3be9f, + 0xe3bea0, + 0xe3bea1, + 0xe3bea2, + 0xe3bea3, + 0xe3bea4, + 0xe3bea5, + 0xe3bea6, + 0xe3bea7, + 0xe3bea8, + 0xe3bea9, + 0xe3beaa, + 0xe3beab, + 0xe3beac, + 0xe3bead, + 0xe3beae, + 0xe3beaf, + 0xe3beb0, + 0xe3beb1, + 0xe3beb2, + 0xe3beb3, + 0xe3beb4, + 0xe3beb5, + 0xe3beb6, + 0xe3beb7, + 0xe3beb8, + 0xe3beb9, + 0xe3beba, + 0xe3bebb, + 0xe3bebc, + 0xe3bebd, + 0xe3bebe, + 0xe3bebf, + 0xe3bf80, + 0xe3bf81, + 0xe3bf82, + 0xe3bf83, + 0xe3bf84, + 0xe3bf85, + 0xe3bf86, + 0xe3bf87, + 0xe3bf88, + 0xe3bf89, + 0xe3bf8a, + 0xe3bf8b, + 0xe3bf8c, + 0xe3bf8d, + 0xe3bf8e, + 0xe3bf8f, + 0xe3bf90, + 0xe3bf91, + 0xe3bf92, + 0xe3bf93, + 0xe3bf94, + 0xe3bf95, + 0xe3bf96, + 0xe3bf97, + 0xe3bf98, + 0xe3bf99, + 0xe3bf9a, + 0xe3bf9b, + 0xe3bf9c, + 0xe3bf9d, + 0xe3bf9e, + 0xe3bf9f, + 0xe3bfa0, + 0xe3bfa1, + 0xe3bfa2, + 0xe3bfa3, + 0xe3bfa4, + 0xe3bfa5, + 0xe3bfa6, + 0xe3bfa7, + 0xe3bfa8, + 0xe3bfa9, + 0xe3bfaa, + 0xe3bfab, + 0xe3bfac, + 0xe3bfad, + 0xe3bfae, + 0xe3bfaf, + 0xe3bfb0, + 0xe3bfb1, + 0xe3bfb2, + 0xe3bfb3, + 0xe3bfb4, + 0xe3bfb5, + 0xe3bfb6, + 0xe3bfb7, + 0xe3bfb8, + 0xe3bfb9, + 0xe3bfba, + 0xe3bfbb, + 0xe3bfbc, + 0xe3bfbd, + 0xe3bfbe, + 0xe3bfbf, + 0xe48080, + 0xe48081, + 0xe48082, + 0xe48083, + 0xe48084, + 0xe48085, + 0xe48086, + 0xe48087, + 0xe48088, + 0xe48089, + 0xe4808a, + 0xe4808b, + 0xe4808c, + 0xe4808d, + 0xe4808e, + 0xe4808f, + 0xe48090, + 0xe48091, + 0xe48092, + 0xe48093, + 0xe48094, + 0xe48095, + 0xe48096, + 0xe48097, + 0xe48098, + 0xe48099, + 0xe4809a, + 0xe4809b, + 0xe4809c, + 0xe4809d, + 0xe4809e, + 0xe4809f, + 0xe480a0, + 0xe480a1, + 0xe480a2, + 0xe480a3, + 0xe480a4, + 0xe480a5, + 0xe480a6, + 0xe480a7, + 0xe480a8, + 0xe480a9, + 0xe480aa, + 0xe480ab, + 0xe480ac, + 0xe480ad, + 0xe480ae, + 0xe480af, + 0xe480b0, + 0xe480b1, + 0xe480b2, + 0xe480b3, + 0xe480b4, + 0xe480b5, + 0xe480b6, + 0xe480b7, + 0xe480b8, + 0xe480b9, + 0xe480ba, + 0xe480bb, + 0xe480bc, + 0xe480bd, + 0xe480be, + 0xe480bf, + 0xe48180, + 0xe48181, + 0xe48182, + 0xe48183, + 0xe48184, + 0xe48185, + 0xe48186, + 0xe48187, + 0xe48188, + 0xe48189, + 0xe4818a, + 0xe4818b, + 0xe4818c, + 0xe4818d, + 0xe4818e, + 0xe4818f, + 0xe48190, + 0xe48191, + 0xe48192, + 0xe48193, + 0xe48194, + 0xe48195, + 0xe48196, + 0xe48197, + 0xe48198, + 0xe48199, + 0xe4819a, + 0xe4819b, + 0xe4819c, + 0xe4819d, + 0xe4819e, + 0xe4819f, + 0xe481a0, + 0xe481a1, + 0xe481a2, + 0xe481a3, + 0xe481a4, + 0xe481a5, + 0xe481a6, + 0xe481a7, + 0xe481a8, + 0xe481a9, + 0xe481aa, + 0xe481ab, + 0xe481ac, + 0xe481ad, + 0xe481ae, + 0xe481af, + 0xe481b0, + 0xe481b1, + 0xe481b2, + 0xe481b3, + 0xe481b4, + 0xe481b5, + 0xe481b6, + 0xe481b7, + 0xe481b8, + 0xe481b9, + 0xe481ba, + 0xe481bb, + 0xe481bc, + 0xe481bd, + 0xe481be, + 0xe481bf, + 0xe48280, + 0xe48281, + 0xe48282, + 0xe48283, + 0xe48284, + 0xe48285, + 0xe48286, + 0xe48287, + 0xe48288, + 0xe48289, + 0xe4828a, + 0xe4828b, + 0xe4828c, + 0xe4828d, + 0xe4828e, + 0xe4828f, + 0xe48290, + 0xe48291, + 0xe48292, + 0xe48293, + 0xe48294, + 0xe48295, + 0xe48296, + 0xe48297, + 0xe48298, + 0xe48299, + 0xe4829a, + 0xe4829b, + 0xe4829c, + 0xe4829d, + 0xe4829e, + 0xe4829f, + 0xe482a0, + 0xe482a1, + 0xe482a2, + 0xe482a3, + 0xe482a4, + 0xe482a5, + 0xe482a6, + 0xe482a7, + 0xe482a8, + 0xe482a9, + 0xe482aa, + 0xe482ab, + 0xe482ac, + 0xe482ad, + 0xe482ae, + 0xe482af, + 0xe482b0, + 0xe482b1, + 0xe482b2, + 0xe482b3, + 0xe482b4, + 0xe482b5, + 0xe482b6, + 0xe482b7, + 0xe482b8, + 0xe482b9, + 0xe482ba, + 0xe482bb, + 0xe482bc, + 0xe482bd, + 0xe482be, + 0xe482bf, + 0xe48380, + 0xe48381, + 0xe48382, + 0xe48383, + 0xe48384, + 0xe48385, + 0xe48386, + 0xe48387, + 0xe48388, + 0xe48389, + 0xe4838a, + 0xe4838b, + 0xe4838c, + 0xe4838d, + 0xe4838e, + 0xe4838f, + 0xe48390, + 0xe48391, + 0xe48392, + 0xe48393, + 0xe48394, + 0xe48395, + 0xe48396, + 0xe48397, + 0xe48398, + 0xe48399, + 0xe4839a, + 0xe4839b, + 0xe4839c, + 0xe4839d, + 0xe4839e, + 0xe4839f, + 0xe483a0, + 0xe483a1, + 0xe483a2, + 0xe483a3, + 0xe483a4, + 0xe483a5, + 0xe483a6, + 0xe483a7, + 0xe483a8, + 0xe483a9, + 0xe483aa, + 0xe483ab, + 0xe483ac, + 0xe483ad, + 0xe483ae, + 0xe483af, + 0xe483b0, + 0xe483b1, + 0xe483b2, + 0xe483b3, + 0xe483b4, + 0xe483b5, + 0xe483b6, + 0xe483b7, + 0xe483b8, + 0xe483b9, + 0xe483ba, + 0xe483bb, + 0xe483bc, + 0xe483bd, + 0xe483be, + 0xe483bf, + 0xe48480, + 0xe48481, + 0xe48482, + 0xe48483, + 0xe48484, + 0xe48485, + 0xe48486, + 0xe48487, + 0xe48488, + 0xe48489, + 0xe4848a, + 0xe4848b, + 0xe4848c, + 0xe4848d, + 0xe4848e, + 0xe4848f, + 0xe48490, + 0xe48491, + 0xe48492, + 0xe48493, + 0xe48494, + 0xe48495, + 0xe48496, + 0xe48497, + 0xe48498, + 0xe48499, + 0xe4849a, + 0xe4849b, + 0xe4849c, + 0xe4849d, + 0xe4849e, + 0xe4849f, + 0xe484a0, + 0xe484a1, + 0xe484a2, + 0xe484a3, + 0xe484a4, + 0xe484a5, + 0xe484a6, + 0xe484a7, + 0xe484a8, + 0xe484a9, + 0xe484aa, + 0xe484ab, + 0xe484ac, + 0xe484ad, + 0xe484ae, + 0xe484af, + 0xe484b0, + 0xe484b1, + 0xe484b2, + 0xe484b3, + 0xe484b4, + 0xe484b5, + 0xe484b6, + 0xe484b7, + 0xe484b8, + 0xe484b9, + 0xe484ba, + 0xe484bb, + 0xe484bc, + 0xe484bd, + 0xe484be, + 0xe484bf, + 0xe48580, + 0xe48581, + 0xe48582, + 0xe48583, + 0xe48584, + 0xe48585, + 0xe48586, + 0xe48587, + 0xe48588, + 0xe48589, + 0xe4858a, + 0xe4858b, + 0xe4858c, + 0xe4858d, + 0xe4858e, + 0xe4858f, + 0xe48590, + 0xe48591, + 0xe48592, + 0xe48593, + 0xe48594, + 0xe48595, + 0xe48596, + 0xe48597, + 0xe48598, + 0xe48599, + 0xe4859a, + 0xe4859b, + 0xe4859c, + 0xe4859d, + 0xe4859e, + 0xe4859f, + 0xe485a0, + 0xe485a1, + 0xe485a2, + 0xe485a3, + 0xe485a4, + 0xe485a5, + 0xe485a6, + 0xe485a7, + 0xe485a8, + 0xe485a9, + 0xe485aa, + 0xe485ab, + 0xe485ac, + 0xe485ad, + 0xe485ae, + 0xe485af, + 0xe485b0, + 0xe485b1, + 0xe485b2, + 0xe485b3, + 0xe485b4, + 0xe485b5, + 0xe485b6, + 0xe485b7, + 0xe485b8, + 0xe485b9, + 0xe485ba, + 0xe485bb, + 0xe485bc, + 0xe485bd, + 0xe485be, + 0xe485bf, + 0xe48680, + 0xe48681, + 0xe48682, + 0xe48683, + 0xe48684, + 0xe48685, + 0xe48686, + 0xe48687, + 0xe48688, + 0xe48689, + 0xe4868a, + 0xe4868b, + 0xe4868c, + 0xe4868d, + 0xe4868e, + 0xe4868f, + 0xe48690, + 0xe48691, + 0xe48692, + 0xe48693, + 0xe48694, + 0xe48695, + 0xe48696, + 0xe48697, + 0xe48698, + 0xe48699, + 0xe4869a, + 0xe4869b, + 0xe4869c, + 0xe4869d, + 0xe4869e, + 0xe4869f, + 0xe486a0, + 0xe486a1, + 0xe486a2, + 0xe486a3, + 0xe486a4, + 0xe486a5, + 0xe486a6, + 0xe486a7, + 0xe486a8, + 0xe486a9, + 0xe486aa, + 0xe486ab, + 0xe486ac, + 0xe486ad, + 0xe486ae, + 0xe486af, + 0xe486b0, + 0xe486b1, + 0xe486b2, + 0xe486b3, + 0xe486b4, + 0xe486b5, + 0xe486b6, + 0xe486b7, + 0xe486b8, + 0xe486b9, + 0xe486ba, + 0xe486bb, + 0xe486bc, + 0xe486bd, + 0xe486be, + 0xe486bf, + 0xe48780, + 0xe48781, + 0xe48782, + 0xe48783, + 0xe48784, + 0xe48785, + 0xe48786, + 0xe48787, + 0xe48788, + 0xe48789, + 0xe4878a, + 0xe4878b, + 0xe4878c, + 0xe4878d, + 0xe4878e, + 0xe4878f, + 0xe48790, + 0xe48791, + 0xe48792, + 0xe48793, + 0xe48794, + 0xe48795, + 0xe48796, + 0xe48797, + 0xe48798, + 0xe48799, + 0xe4879a, + 0xe4879b, + 0xe4879c, + 0xe4879d, + 0xe4879e, + 0xe4879f, + 0xe487a0, + 0xe487a1, + 0xe487a2, + 0xe487a3, + 0xe487a4, + 0xe487a5, + 0xe487a6, + 0xe487a7, + 0xe487a8, + 0xe487a9, + 0xe487aa, + 0xe487ab, + 0xe487ac, + 0xe487ad, + 0xe487ae, + 0xe487af, + 0xe487b0, + 0xe487b1, + 0xe487b2, + 0xe487b3, + 0xe487b4, + 0xe487b5, + 0xe487b6, + 0xe487b7, + 0xe487b8, + 0xe487b9, + 0xe487ba, + 0xe487bb, + 0xe487bc, + 0xe487bd, + 0xe487be, + 0xe487bf, + 0xe48880, + 0xe48881, + 0xe48882, + 0xe48883, + 0xe48884, + 0xe48885, + 0xe48886, + 0xe48887, + 0xe48888, + 0xe48889, + 0xe4888a, + 0xe4888b, + 0xe4888c, + 0xe4888d, + 0xe4888e, + 0xe4888f, + 0xe48890, + 0xe48891, + 0xe48892, + 0xe48893, + 0xe48894, + 0xe48895, + 0xe48896, + 0xe48897, + 0xe48898, + 0xe48899, + 0xe4889a, + 0xe4889b, + 0xe4889c, + 0xe4889d, + 0xe4889e, + 0xe4889f, + 0xe488a0, + 0xe488a1, + 0xe488a2, + 0xe488a3, + 0xe488a4, + 0xe488a5, + 0xe488a6, + 0xe488a7, + 0xe488a8, + 0xe488a9, + 0xe488aa, + 0xe488ab, + 0xe488ac, + 0xe488ad, + 0xe488ae, + 0xe488af, + 0xe488b0, + 0xe488b1, + 0xe488b2, + 0xe488b3, + 0xe488b4, + 0xe488b5, + 0xe488b6, + 0xe488b7, + 0xe488b8, + 0xe488b9, + 0xe488ba, + 0xe488bb, + 0xe488bc, + 0xe488bd, + 0xe488be, + 0xe488bf, + 0xe48980, + 0xe48981, + 0xe48982, + 0xe48983, + 0xe48984, + 0xe48985, + 0xe48986, + 0xe48987, + 0xe48988, + 0xe48989, + 0xe4898a, + 0xe4898b, + 0xe4898c, + 0xe4898d, + 0xe4898e, + 0xe4898f, + 0xe48990, + 0xe48991, + 0xe48992, + 0xe48993, + 0xe48994, + 0xe48995, + 0xe48996, + 0xe48997, + 0xe48998, + 0xe48999, + 0xe4899a, + 0xe4899b, + 0xe4899c, + 0xe4899d, + 0xe4899e, + 0xe4899f, + 0xe489a0, + 0xe489a1, + 0xe489a2, + 0xe489a3, + 0xe489a4, + 0xe489a5, + 0xe489a6, + 0xe489a7, + 0xe489a8, + 0xe489a9, + 0xe489aa, + 0xe489ab, + 0xe489ac, + 0xe489ad, + 0xe489ae, + 0xe489af, + 0xe489b0, + 0xe489b1, + 0xe489b2, + 0xe489b3, + 0xe489b4, + 0xe489b5, + 0xe489b6, + 0xe489b7, + 0xe489b8, + 0xe489b9, + 0xe489ba, + 0xe489bb, + 0xe489bc, + 0xe489bd, + 0xe489be, + 0xe489bf, + 0xe48a80, + 0xe48a81, + 0xe48a82, + 0xe48a83, + 0xe48a84, + 0xe48a85, + 0xe48a86, + 0xe48a87, + 0xe48a88, + 0xe48a89, + 0xe48a8a, + 0xe48a8b, + 0xe48a8c, + 0xe48a8d, + 0xe48a8e, + 0xe48a8f, + 0xe48a90, + 0xe48a91, + 0xe48a92, + 0xe48a93, + 0xe48a94, + 0xe48a95, + 0xe48a96, + 0xe48a97, + 0xe48a98, + 0xe48a99, + 0xe48a9a, + 0xe48a9b, + 0xe48a9c, + 0xe48a9d, + 0xe48a9e, + 0xe48a9f, + 0xe48aa0, + 0xe48aa1, + 0xe48aa2, + 0xe48aa3, + 0xe48aa4, + 0xe48aa5, + 0xe48aa6, + 0xe48aa7, + 0xe48aa8, + 0xe48aa9, + 0xe48aaa, + 0xe48aab, + 0xe48aac, + 0xe48aad, + 0xe48aae, + 0xe48aaf, + 0xe48ab0, + 0xe48ab1, + 0xe48ab2, + 0xe48ab3, + 0xe48ab4, + 0xe48ab5, + 0xe48ab6, + 0xe48ab7, + 0xe48ab8, + 0xe48ab9, + 0xe48aba, + 0xe48abb, + 0xe48abc, + 0xe48abd, + 0xe48abe, + 0xe48abf, + 0xe48b80, + 0xe48b81, + 0xe48b82, + 0xe48b83, + 0xe48b84, + 0xe48b85, + 0xe48b86, + 0xe48b87, + 0xe48b88, + 0xe48b89, + 0xe48b8a, + 0xe48b8b, + 0xe48b8c, + 0xe48b8d, + 0xe48b8e, + 0xe48b8f, + 0xe48b90, + 0xe48b91, + 0xe48b92, + 0xe48b93, + 0xe48b94, + 0xe48b95, + 0xe48b96, + 0xe48b97, + 0xe48b98, + 0xe48b99, + 0xe48b9a, + 0xe48b9b, + 0xe48b9c, + 0xe48b9d, + 0xe48b9e, + 0xe48b9f, + 0xe48ba0, + 0xe48ba1, + 0xe48ba2, + 0xe48ba3, + 0xe48ba4, + 0xe48ba5, + 0xe48ba6, + 0xe48ba7, + 0xe48ba8, + 0xe48ba9, + 0xe48baa, + 0xe48bab, + 0xe48bac, + 0xe48bad, + 0xe48bae, + 0xe48baf, + 0xe48bb0, + 0xe48bb1, + 0xe48bb2, + 0xe48bb3, + 0xe48bb4, + 0xe48bb5, + 0xe48bb6, + 0xe48bb7, + 0xe48bb8, + 0xe48bb9, + 0xe48bba, + 0xe48bbb, + 0xe48bbc, + 0xe48bbd, + 0xe48bbe, + 0xe48bbf, + 0xe48c80, + 0xe48c81, + 0xe48c82, + 0xe48c83, + 0xe48c84, + 0xe48c85, + 0xe48c86, + 0xe48c87, + 0xe48c88, + 0xe48c89, + 0xe48c8a, + 0xe48c8b, + 0xe48c8c, + 0xe48c8d, + 0xe48c8e, + 0xe48c8f, + 0xe48c90, + 0xe48c91, + 0xe48c92, + 0xe48c93, + 0xe48c94, + 0xe48c95, + 0xe48c96, + 0xe48c97, + 0xe48c98, + 0xe48c99, + 0xe48c9a, + 0xe48c9b, + 0xe48c9c, + 0xe48c9d, + 0xe48c9e, + 0xe48c9f, + 0xe48ca0, + 0xe48ca1, + 0xe48ca2, + 0xe48ca3, + 0xe48ca4, + 0xe48ca5, + 0xe48ca6, + 0xe48ca7, + 0xe48ca8, + 0xe48ca9, + 0xe48caa, + 0xe48cab, + 0xe48cac, + 0xe48cad, + 0xe48cae, + 0xe48caf, + 0xe48cb0, + 0xe48cb1, + 0xe48cb2, + 0xe48cb3, + 0xe48cb4, + 0xe48cb5, + 0xe48cb6, + 0xe48cb7, + 0xe48cb8, + 0xe48cb9, + 0xe48cba, + 0xe48cbb, + 0xe48cbc, + 0xe48cbd, + 0xe48cbe, + 0xe48cbf, + 0xe48d80, + 0xe48d81, + 0xe48d82, + 0xe48d83, + 0xe48d84, + 0xe48d85, + 0xe48d86, + 0xe48d87, + 0xe48d88, + 0xe48d89, + 0xe48d8a, + 0xe48d8b, + 0xe48d8c, + 0xe48d8d, + 0xe48d8e, + 0xe48d8f, + 0xe48d90, + 0xe48d91, + 0xe48d92, + 0xe48d93, + 0xe48d94, + 0xe48d95, + 0xe48d96, + 0xe48d97, + 0xe48d98, + 0xe48d99, + 0xe48d9a, + 0xe48d9b, + 0xe48d9c, + 0xe48d9d, + 0xe48d9e, + 0xe48d9f, + 0xe48da0, + 0xe48da1, + 0xe48da2, + 0xe48da3, + 0xe48da4, + 0xe48da5, + 0xe48da6, + 0xe48da7, + 0xe48da8, + 0xe48da9, + 0xe48daa, + 0xe48dab, + 0xe48dac, + 0xe48dad, + 0xe48dae, + 0xe48daf, + 0xe48db0, + 0xe48db1, + 0xe48db2, + 0xe48db3, + 0xe48db4, + 0xe48db5, + 0xe48db6, + 0xe48db7, + 0xe48db8, + 0xe48db9, + 0xe48dba, + 0xe48dbb, + 0xe48dbc, + 0xe48dbd, + 0xe48dbe, + 0xe48dbf, + 0xe48e80, + 0xe48e81, + 0xe48e82, + 0xe48e83, + 0xe48e84, + 0xe48e85, + 0xe48e86, + 0xe48e87, + 0xe48e88, + 0xe48e89, + 0xe48e8a, + 0xe48e8b, + 0xe48e8c, + 0xe48e8d, + 0xe48e8e, + 0xe48e8f, + 0xe48e90, + 0xe48e91, + 0xe48e92, + 0xe48e93, + 0xe48e94, + 0xe48e95, + 0xe48e96, + 0xe48e97, + 0xe48e98, + 0xe48e99, + 0xe48e9a, + 0xe48e9b, + 0xe48e9c, + 0xe48e9d, + 0xe48e9e, + 0xe48e9f, + 0xe48ea0, + 0xe48ea1, + 0xe48ea2, + 0xe48ea3, + 0xe48ea4, + 0xe48ea5, + 0xe48ea6, + 0xe48ea7, + 0xe48ea8, + 0xe48ea9, + 0xe48eaa, + 0xe48eab, + 0xe48eac, + 0xe48ead, + 0xe48eae, + 0xe48eaf, + 0xe48eb0, + 0xe48eb1, + 0xe48eb2, + 0xe48eb3, + 0xe48eb4, + 0xe48eb5, + 0xe48eb6, + 0xe48eb7, + 0xe48eb8, + 0xe48eb9, + 0xe48eba, + 0xe48ebb, + 0xe48ebc, + 0xe48ebd, + 0xe48ebe, + 0xe48ebf, + 0xe48f80, + 0xe48f81, + 0xe48f82, + 0xe48f83, + 0xe48f84, + 0xe48f85, + 0xe48f86, + 0xe48f87, + 0xe48f88, + 0xe48f89, + 0xe48f8a, + 0xe48f8b, + 0xe48f8c, + 0xe48f8d, + 0xe48f8e, + 0xe48f8f, + 0xe48f90, + 0xe48f91, + 0xe48f92, + 0xe48f93, + 0xe48f94, + 0xe48f95, + 0xe48f96, + 0xe48f97, + 0xe48f98, + 0xe48f99, + 0xe48f9a, + 0xe48f9b, + 0xe48f9c, + 0xe48f9d, + 0xe48f9e, + 0xe48f9f, + 0xe48fa0, + 0xe48fa1, + 0xe48fa2, + 0xe48fa3, + 0xe48fa4, + 0xe48fa5, + 0xe48fa6, + 0xe48fa7, + 0xe48fa8, + 0xe48fa9, + 0xe48faa, + 0xe48fab, + 0xe48fac, + 0xe48fad, + 0xe48fae, + 0xe48faf, + 0xe48fb0, + 0xe48fb1, + 0xe48fb2, + 0xe48fb3, + 0xe48fb4, + 0xe48fb5, + 0xe48fb6, + 0xe48fb7, + 0xe48fb8, + 0xe48fb9, + 0xe48fba, + 0xe48fbb, + 0xe48fbc, + 0xe48fbd, + 0xe48fbe, + 0xe48fbf, + 0xe49080, + 0xe49081, + 0xe49082, + 0xe49083, + 0xe49084, + 0xe49085, + 0xe49086, + 0xe49087, + 0xe49088, + 0xe49089, + 0xe4908a, + 0xe4908b, + 0xe4908c, + 0xe4908d, + 0xe4908e, + 0xe4908f, + 0xe49090, + 0xe49091, + 0xe49092, + 0xe49093, + 0xe49094, + 0xe49095, + 0xe49096, + 0xe49097, + 0xe49098, + 0xe49099, + 0xe4909a, + 0xe4909b, + 0xe4909c, + 0xe4909d, + 0xe4909e, + 0xe4909f, + 0xe490a0, + 0xe490a1, + 0xe490a2, + 0xe490a3, + 0xe490a4, + 0xe490a5, + 0xe490a6, + 0xe490a7, + 0xe490a8, + 0xe490a9, + 0xe490aa, + 0xe490ab, + 0xe490ac, + 0xe490ad, + 0xe490ae, + 0xe490af, + 0xe490b0, + 0xe490b1, + 0xe490b2, + 0xe490b3, + 0xe490b4, + 0xe490b5, + 0xe490b6, + 0xe490b7, + 0xe490b8, + 0xe490b9, + 0xe490ba, + 0xe490bb, + 0xe490bc, + 0xe490bd, + 0xe490be, + 0xe490bf, + 0xe49180, + 0xe49181, + 0xe49182, + 0xe49183, + 0xe49184, + 0xe49185, + 0xe49186, + 0xe49187, + 0xe49188, + 0xe49189, + 0xe4918a, + 0xe4918b, + 0xe4918c, + 0xe4918d, + 0xe4918e, + 0xe4918f, + 0xe49190, + 0xe49191, + 0xe49192, + 0xe49193, + 0xe49194, + 0xe49195, + 0xe49196, + 0xe49197, + 0xe49198, + 0xe49199, + 0xe4919a, + 0xe4919b, + 0xe4919c, + 0xe4919d, + 0xe4919e, + 0xe4919f, + 0xe491a0, + 0xe491a1, + 0xe491a2, + 0xe491a3, + 0xe491a4, + 0xe491a5, + 0xe491a6, + 0xe491a7, + 0xe491a8, + 0xe491a9, + 0xe491aa, + 0xe491ab, + 0xe491ac, + 0xe491ad, + 0xe491ae, + 0xe491af, + 0xe491b0, + 0xe491b1, + 0xe491b2, + 0xe491b3, + 0xe491b4, + 0xe491b5, + 0xe491b6, + 0xe491b7, + 0xe491b8, + 0xe491b9, + 0xe491ba, + 0xe491bb, + 0xe491bc, + 0xe491bd, + 0xe491be, + 0xe491bf, + 0xe49280, + 0xe49281, + 0xe49282, + 0xe49283, + 0xe49284, + 0xe49285, + 0xe49286, + 0xe49287, + 0xe49288, + 0xe49289, + 0xe4928a, + 0xe4928b, + 0xe4928c, + 0xe4928d, + 0xe4928e, + 0xe4928f, + 0xe49290, + 0xe49291, + 0xe49292, + 0xe49293, + 0xe49294, + 0xe49295, + 0xe49296, + 0xe49297, + 0xe49298, + 0xe49299, + 0xe4929a, + 0xe4929b, + 0xe4929c, + 0xe4929d, + 0xe4929e, + 0xe4929f, + 0xe492a0, + 0xe492a1, + 0xe492a2, + 0xe492a3, + 0xe492a4, + 0xe492a5, + 0xe492a6, + 0xe492a7, + 0xe492a8, + 0xe492a9, + 0xe492aa, + 0xe492ab, + 0xe492ac, + 0xe492ad, + 0xe492ae, + 0xe492af, + 0xe492b0, + 0xe492b1, + 0xe492b2, + 0xe492b3, + 0xe492b4, + 0xe492b5, + 0xe492b6, + 0xe492b7, + 0xe492b8, + 0xe492b9, + 0xe492ba, + 0xe492bb, + 0xe492bc, + 0xe492bd, + 0xe492be, + 0xe492bf, + 0xe49380, + 0xe49381, + 0xe49382, + 0xe49383, + 0xe49384, + 0xe49385, + 0xe49386, + 0xe49387, + 0xe49388, + 0xe49389, + 0xe4938a, + 0xe4938b, + 0xe4938c, + 0xe4938d, + 0xe4938e, + 0xe4938f, + 0xe49390, + 0xe49391, + 0xe49392, + 0xe49393, + 0xe49394, + 0xe49395, + 0xe49396, + 0xe49397, + 0xe49398, + 0xe49399, + 0xe4939a, + 0xe4939b, + 0xe4939c, + 0xe4939d, + 0xe4939e, + 0xe4939f, + 0xe493a0, + 0xe493a1, + 0xe493a2, + 0xe493a3, + 0xe493a4, + 0xe493a5, + 0xe493a6, + 0xe493a7, + 0xe493a8, + 0xe493a9, + 0xe493aa, + 0xe493ab, + 0xe493ac, + 0xe493ad, + 0xe493ae, + 0xe493af, + 0xe493b0, + 0xe493b1, + 0xe493b2, + 0xe493b3, + 0xe493b4, + 0xe493b5, + 0xe493b6, + 0xe493b7, + 0xe493b8, + 0xe493b9, + 0xe493ba, + 0xe493bb, + 0xe493bc, + 0xe493bd, + 0xe493be, + 0xe493bf, + 0xe49480, + 0xe49481, + 0xe49482, + 0xe49483, + 0xe49484, + 0xe49485, + 0xe49486, + 0xe49487, + 0xe49488, + 0xe49489, + 0xe4948a, + 0xe4948b, + 0xe4948c, + 0xe4948d, + 0xe4948e, + 0xe4948f, + 0xe49490, + 0xe49491, + 0xe49492, + 0xe49493, + 0xe49494, + 0xe49495, + 0xe49496, + 0xe49497, + 0xe49498, + 0xe49499, + 0xe4949a, + 0xe4949b, + 0xe4949c, + 0xe4949d, + 0xe4949e, + 0xe4949f, + 0xe494a0, + 0xe494a1, + 0xe494a2, + 0xe494a3, + 0xe494a4, + 0xe494a5, + 0xe494a6, + 0xe494a7, + 0xe494a8, + 0xe494a9, + 0xe494aa, + 0xe494ab, + 0xe494ac, + 0xe494ad, + 0xe494ae, + 0xe494af, + 0xe494b0, + 0xe494b1, + 0xe494b2, + 0xe494b3, + 0xe494b4, + 0xe494b5, + 0xe494b6, + 0xe494b7, + 0xe494b8, + 0xe494b9, + 0xe494ba, + 0xe494bb, + 0xe494bc, + 0xe494bd, + 0xe494be, + 0xe494bf, + 0xe49580, + 0xe49581, + 0xe49582, + 0xe49583, + 0xe49584, + 0xe49585, + 0xe49586, + 0xe49587, + 0xe49588, + 0xe49589, + 0xe4958a, + 0xe4958b, + 0xe4958c, + 0xe4958d, + 0xe4958e, + 0xe4958f, + 0xe49590, + 0xe49591, + 0xe49592, + 0xe49593, + 0xe49594, + 0xe49595, + 0xe49596, + 0xe49597, + 0xe49598, + 0xe49599, + 0xe4959a, + 0xe4959b, + 0xe4959c, + 0xe4959d, + 0xe4959e, + 0xe4959f, + 0xe495a0, + 0xe495a1, + 0xe495a2, + 0xe495a3, + 0xe495a4, + 0xe495a5, + 0xe495a6, + 0xe495a7, + 0xe495a8, + 0xe495a9, + 0xe495aa, + 0xe495ab, + 0xe495ac, + 0xe495ad, + 0xe495ae, + 0xe495af, + 0xe495b0, + 0xe495b1, + 0xe495b2, + 0xe495b3, + 0xe495b4, + 0xe495b5, + 0xe495b6, + 0xe495b7, + 0xe495b8, + 0xe495b9, + 0xe495ba, + 0xe495bb, + 0xe495bc, + 0xe495bd, + 0xe495be, + 0xe495bf, + 0xe49680, + 0xe49681, + 0xe49682, + 0xe49683, + 0xe49684, + 0xe49685, + 0xe49686, + 0xe49687, + 0xe49688, + 0xe49689, + 0xe4968a, + 0xe4968b, + 0xe4968c, + 0xe4968d, + 0xe4968e, + 0xe4968f, + 0xe49690, + 0xe49691, + 0xe49692, + 0xe49693, + 0xe49694, + 0xe49695, + 0xe49696, + 0xe49697, + 0xe49698, + 0xe49699, + 0xe4969a, + 0xe4969b, + 0xe4969c, + 0xe4969d, + 0xe4969e, + 0xe4969f, + 0xe496a0, + 0xe496a1, + 0xe496a2, + 0xe496a3, + 0xe496a4, + 0xe496a5, + 0xe496a6, + 0xe496a7, + 0xe496a8, + 0xe496a9, + 0xe496aa, + 0xe496ab, + 0xe496ac, + 0xe496ad, + 0xe496ae, + 0xe496af, + 0xe496b0, + 0xe496b1, + 0xe496b2, + 0xe496b3, + 0xe496b4, + 0xe496b5, + 0xe496b6, + 0xe496b7, + 0xe496b8, + 0xe496b9, + 0xe496ba, + 0xe496bb, + 0xe496bc, + 0xe496bd, + 0xe496be, + 0xe496bf, + 0xe49780, + 0xe49781, + 0xe49782, + 0xe49783, + 0xe49784, + 0xe49785, + 0xe49786, + 0xe49787, + 0xe49788, + 0xe49789, + 0xe4978a, + 0xe4978b, + 0xe4978c, + 0xe4978d, + 0xe4978e, + 0xe4978f, + 0xe49790, + 0xe49791, + 0xe49792, + 0xe49793, + 0xe49794, + 0xe49795, + 0xe49796, + 0xe49797, + 0xe49798, + 0xe49799, + 0xe4979a, + 0xe4979b, + 0xe4979c, + 0xe4979d, + 0xe4979e, + 0xe4979f, + 0xe497a0, + 0xe497a1, + 0xe497a2, + 0xe497a3, + 0xe497a4, + 0xe497a5, + 0xe497a6, + 0xe497a7, + 0xe497a8, + 0xe497a9, + 0xe497aa, + 0xe497ab, + 0xe497ac, + 0xe497ad, + 0xe497ae, + 0xe497af, + 0xe497b0, + 0xe497b1, + 0xe497b2, + 0xe497b3, + 0xe497b4, + 0xe497b5, + 0xe497b6, + 0xe497b7, + 0xe497b8, + 0xe497b9, + 0xe497ba, + 0xe497bb, + 0xe497bc, + 0xe497bd, + 0xe497be, + 0xe497bf, + 0xe49880, + 0xe49881, + 0xe49882, + 0xe49883, + 0xe49884, + 0xe49885, + 0xe49886, + 0xe49887, + 0xe49888, + 0xe49889, + 0xe4988a, + 0xe4988b, + 0xe4988c, + 0xe4988d, + 0xe4988e, + 0xe4988f, + 0xe49890, + 0xe49891, + 0xe49892, + 0xe49893, + 0xe49894, + 0xe49895, + 0xe49896, + 0xe49897, + 0xe49898, + 0xe49899, + 0xe4989a, + 0xe4989b, + 0xe4989c, + 0xe4989d, + 0xe4989e, + 0xe4989f, + 0xe498a0, + 0xe498a1, + 0xe498a2, + 0xe498a3, + 0xe498a4, + 0xe498a5, + 0xe498a6, + 0xe498a7, + 0xe498a8, + 0xe498a9, + 0xe498aa, + 0xe498ab, + 0xe498ac, + 0xe498ad, + 0xe498ae, + 0xe498af, + 0xe498b0, + 0xe498b1, + 0xe498b2, + 0xe498b3, + 0xe498b4, + 0xe498b5, + 0xe498b6, + 0xe498b7, + 0xe498b8, + 0xe498b9, + 0xe498ba, + 0xe498bb, + 0xe498bc, + 0xe498bd, + 0xe498be, + 0xe498bf, + 0xe49980, + 0xe49981, + 0xe49982, + 0xe49983, + 0xe49984, + 0xe49985, + 0xe49986, + 0xe49987, + 0xe49988, + 0xe49989, + 0xe4998a, + 0xe4998b, + 0xe4998c, + 0xe4998d, + 0xe4998e, + 0xe4998f, + 0xe49990, + 0xe49991, + 0xe49992, + 0xe49993, + 0xe49994, + 0xe49995, + 0xe49996, + 0xe49997, + 0xe49998, + 0xe49999, + 0xe4999a, + 0xe4999b, + 0xe4999c, + 0xe4999d, + 0xe4999e, + 0xe4999f, + 0xe499a0, + 0xe499a1, + 0xe499a2, + 0xe499a3, + 0xe499a4, + 0xe499a5, + 0xe499a6, + 0xe499a7, + 0xe499a8, + 0xe499a9, + 0xe499aa, + 0xe499ab, + 0xe499ac, + 0xe499ad, + 0xe499ae, + 0xe499af, + 0xe499b0, + 0xe499b1, + 0xe499b2, + 0xe499b3, + 0xe499b4, + 0xe499b5, + 0xe499b6, + 0xe499b7, + 0xe499b8, + 0xe499b9, + 0xe499ba, + 0xe499bb, + 0xe499bc, + 0xe499bd, + 0xe499be, + 0xe499bf, + 0xe49a80, + 0xe49a81, + 0xe49a82, + 0xe49a83, + 0xe49a84, + 0xe49a85, + 0xe49a86, + 0xe49a87, + 0xe49a88, + 0xe49a89, + 0xe49a8a, + 0xe49a8b, + 0xe49a8c, + 0xe49a8d, + 0xe49a8e, + 0xe49a8f, + 0xe49a90, + 0xe49a91, + 0xe49a92, + 0xe49a93, + 0xe49a94, + 0xe49a95, + 0xe49a96, + 0xe49a97, + 0xe49a98, + 0xe49a99, + 0xe49a9a, + 0xe49a9b, + 0xe49a9c, + 0xe49a9d, + 0xe49a9e, + 0xe49a9f, + 0xe49aa0, + 0xe49aa1, + 0xe49aa2, + 0xe49aa3, + 0xe49aa4, + 0xe49aa5, + 0xe49aa6, + 0xe49aa7, + 0xe49aa8, + 0xe49aa9, + 0xe49aaa, + 0xe49aab, + 0xe49aac, + 0xe49aad, + 0xe49aae, + 0xe49aaf, + 0xe49ab0, + 0xe49ab1, + 0xe49ab2, + 0xe49ab3, + 0xe49ab4, + 0xe49ab5, + 0xe49ab6, + 0xe49ab7, + 0xe49ab8, + 0xe49ab9, + 0xe49aba, + 0xe49abb, + 0xe49abc, + 0xe49abd, + 0xe49abe, + 0xe49abf, + 0xe49b80, + 0xe49b81, + 0xe49b82, + 0xe49b83, + 0xe49b84, + 0xe49b85, + 0xe49b86, + 0xe49b87, + 0xe49b88, + 0xe49b89, + 0xe49b8a, + 0xe49b8b, + 0xe49b8c, + 0xe49b8d, + 0xe49b8e, + 0xe49b8f, + 0xe49b90, + 0xe49b91, + 0xe49b92, + 0xe49b93, + 0xe49b94, + 0xe49b95, + 0xe49b96, + 0xe49b97, + 0xe49b98, + 0xe49b99, + 0xe49b9a, + 0xe49b9b, + 0xe49b9c, + 0xe49b9d, + 0xe49b9e, + 0xe49b9f, + 0xe49ba0, + 0xe49ba1, + 0xe49ba2, + 0xe49ba3, + 0xe49ba4, + 0xe49ba5, + 0xe49ba6, + 0xe49ba7, + 0xe49ba8, + 0xe49ba9, + 0xe49baa, + 0xe49bab, + 0xe49bac, + 0xe49bad, + 0xe49bae, + 0xe49baf, + 0xe49bb0, + 0xe49bb1, + 0xe49bb2, + 0xe49bb3, + 0xe49bb4, + 0xe49bb5, + 0xe49bb6, + 0xe49bb7, + 0xe49bb8, + 0xe49bb9, + 0xe49bba, + 0xe49bbb, + 0xe49bbc, + 0xe49bbd, + 0xe49bbe, + 0xe49bbf, + 0xe49c80, + 0xe49c81, + 0xe49c82, + 0xe49c83, + 0xe49c84, + 0xe49c85, + 0xe49c86, + 0xe49c87, + 0xe49c88, + 0xe49c89, + 0xe49c8a, + 0xe49c8b, + 0xe49c8c, + 0xe49c8d, + 0xe49c8e, + 0xe49c8f, + 0xe49c90, + 0xe49c91, + 0xe49c92, + 0xe49c93, + 0xe49c94, + 0xe49c95, + 0xe49c96, + 0xe49c97, + 0xe49c98, + 0xe49c99, + 0xe49c9a, + 0xe49c9b, + 0xe49c9c, + 0xe49c9d, + 0xe49c9e, + 0xe49c9f, + 0xe49ca0, + 0xe49ca1, + 0xe49ca2, + 0xe49ca3, + 0xe49ca4, + 0xe49ca5, + 0xe49ca6, + 0xe49ca7, + 0xe49ca8, + 0xe49ca9, + 0xe49caa, + 0xe49cab, + 0xe49cac, + 0xe49cad, + 0xe49cae, + 0xe49caf, + 0xe49cb0, + 0xe49cb1, + 0xe49cb2, + 0xe49cb3, + 0xe49cb4, + 0xe49cb5, + 0xe49cb6, + 0xe49cb7, + 0xe49cb8, + 0xe49cb9, + 0xe49cba, + 0xe49cbb, + 0xe49cbc, + 0xe49cbd, + 0xe49cbe, + 0xe49cbf, + 0xe49d80, + 0xe49d81, + 0xe49d82, + 0xe49d83, + 0xe49d84, + 0xe49d85, + 0xe49d86, + 0xe49d87, + 0xe49d88, + 0xe49d89, + 0xe49d8a, + 0xe49d8b, + 0xe49d8c, + 0xe49d8d, + 0xe49d8e, + 0xe49d8f, + 0xe49d90, + 0xe49d91, + 0xe49d92, + 0xe49d93, + 0xe49d94, + 0xe49d95, + 0xe49d96, + 0xe49d97, + 0xe49d98, + 0xe49d99, + 0xe49d9a, + 0xe49d9b, + 0xe49d9c, + 0xe49d9d, + 0xe49d9e, + 0xe49d9f, + 0xe49da0, + 0xe49da1, + 0xe49da2, + 0xe49da3, + 0xe49da4, + 0xe49da5, + 0xe49da6, + 0xe49da7, + 0xe49da8, + 0xe49da9, + 0xe49daa, + 0xe49dab, + 0xe49dac, + 0xe49dad, + 0xe49dae, + 0xe49daf, + 0xe49db0, + 0xe49db1, + 0xe49db2, + 0xe49db3, + 0xe49db4, + 0xe49db5, + 0xe49db6, + 0xe49db7, + 0xe49db8, + 0xe49db9, + 0xe49dba, + 0xe49dbb, + 0xe49dbc, + 0xe49dbd, + 0xe49dbe, + 0xe49dbf, + 0xe49e80, + 0xe49e81, + 0xe49e82, + 0xe49e83, + 0xe49e84, + 0xe49e85, + 0xe49e86, + 0xe49e87, + 0xe49e88, + 0xe49e89, + 0xe49e8a, + 0xe49e8b, + 0xe49e8c, + 0xe49e8d, + 0xe49e8e, + 0xe49e8f, + 0xe49e90, + 0xe49e91, + 0xe49e92, + 0xe49e93, + 0xe49e94, + 0xe49e95, + 0xe49e96, + 0xe49e97, + 0xe49e98, + 0xe49e99, + 0xe49e9a, + 0xe49e9b, + 0xe49e9c, + 0xe49e9d, + 0xe49e9e, + 0xe49e9f, + 0xe49ea0, + 0xe49ea1, + 0xe49ea2, + 0xe49ea3, + 0xe49ea4, + 0xe49ea5, + 0xe49ea6, + 0xe49ea7, + 0xe49ea8, + 0xe49ea9, + 0xe49eaa, + 0xe49eab, + 0xe49eac, + 0xe49ead, + 0xe49eae, + 0xe49eaf, + 0xe49eb0, + 0xe49eb1, + 0xe49eb2, + 0xe49eb3, + 0xe49eb4, + 0xe49eb5, + 0xe49eb6, + 0xe49eb7, + 0xe49eb8, + 0xe49eb9, + 0xe49eba, + 0xe49ebb, + 0xe49ebc, + 0xe49ebd, + 0xe49ebe, + 0xe49ebf, + 0xe49f80, + 0xe49f81, + 0xe49f82, + 0xe49f83, + 0xe49f84, + 0xe49f85, + 0xe49f86, + 0xe49f87, + 0xe49f88, + 0xe49f89, + 0xe49f8a, + 0xe49f8b, + 0xe49f8c, + 0xe49f8d, + 0xe49f8e, + 0xe49f8f, + 0xe49f90, + 0xe49f91, + 0xe49f92, + 0xe49f93, + 0xe49f94, + 0xe49f95, + 0xe49f96, + 0xe49f97, + 0xe49f98, + 0xe49f99, + 0xe49f9a, + 0xe49f9b, + 0xe49f9c, + 0xe49f9d, + 0xe49f9e, + 0xe49f9f, + 0xe49fa0, + 0xe49fa1, + 0xe49fa2, + 0xe49fa3, + 0xe49fa4, + 0xe49fa5, + 0xe49fa6, + 0xe49fa7, + 0xe49fa8, + 0xe49fa9, + 0xe49faa, + 0xe49fab, + 0xe49fac, + 0xe49fad, + 0xe49fae, + 0xe49faf, + 0xe49fb0, + 0xe49fb1, + 0xe49fb2, + 0xe49fb3, + 0xe49fb4, + 0xe49fb5, + 0xe49fb6, + 0xe49fb7, + 0xe49fb8, + 0xe49fb9, + 0xe49fba, + 0xe49fbb, + 0xe49fbc, + 0xe49fbd, + 0xe49fbe, + 0xe49fbf, + 0xe4a080, + 0xe4a081, + 0xe4a082, + 0xe4a083, + 0xe4a084, + 0xe4a085, + 0xe4a086, + 0xe4a087, + 0xe4a088, + 0xe4a089, + 0xe4a08a, + 0xe4a08b, + 0xe4a08c, + 0xe4a08d, + 0xe4a08e, + 0xe4a08f, + 0xe4a090, + 0xe4a091, + 0xe4a092, + 0xe4a093, + 0xe4a094, + 0xe4a095, + 0xe4a096, + 0xe4a097, + 0xe4a098, + 0xe4a099, + 0xe4a09a, + 0xe4a09b, + 0xe4a09c, + 0xe4a09d, + 0xe4a09e, + 0xe4a09f, + 0xe4a0a0, + 0xe4a0a1, + 0xe4a0a2, + 0xe4a0a3, + 0xe4a0a4, + 0xe4a0a5, + 0xe4a0a6, + 0xe4a0a7, + 0xe4a0a8, + 0xe4a0a9, + 0xe4a0aa, + 0xe4a0ab, + 0xe4a0ac, + 0xe4a0ad, + 0xe4a0ae, + 0xe4a0af, + 0xe4a0b0, + 0xe4a0b1, + 0xe4a0b2, + 0xe4a0b3, + 0xe4a0b4, + 0xe4a0b5, + 0xe4a0b6, + 0xe4a0b7, + 0xe4a0b8, + 0xe4a0b9, + 0xe4a0ba, + 0xe4a0bb, + 0xe4a0bc, + 0xe4a0bd, + 0xe4a0be, + 0xe4a0bf, + 0xe4a180, + 0xe4a181, + 0xe4a182, + 0xe4a183, + 0xe4a184, + 0xe4a185, + 0xe4a186, + 0xe4a187, + 0xe4a188, + 0xe4a189, + 0xe4a18a, + 0xe4a18b, + 0xe4a18c, + 0xe4a18d, + 0xe4a18e, + 0xe4a18f, + 0xe4a190, + 0xe4a191, + 0xe4a192, + 0xe4a193, + 0xe4a194, + 0xe4a195, + 0xe4a196, + 0xe4a197, + 0xe4a198, + 0xe4a199, + 0xe4a19a, + 0xe4a19b, + 0xe4a19c, + 0xe4a19d, + 0xe4a19e, + 0xe4a19f, + 0xe4a1a0, + 0xe4a1a1, + 0xe4a1a2, + 0xe4a1a3, + 0xe4a1a4, + 0xe4a1a5, + 0xe4a1a6, + 0xe4a1a7, + 0xe4a1a8, + 0xe4a1a9, + 0xe4a1aa, + 0xe4a1ab, + 0xe4a1ac, + 0xe4a1ad, + 0xe4a1ae, + 0xe4a1af, + 0xe4a1b0, + 0xe4a1b1, + 0xe4a1b2, + 0xe4a1b3, + 0xe4a1b4, + 0xe4a1b5, + 0xe4a1b6, + 0xe4a1b7, + 0xe4a1b8, + 0xe4a1b9, + 0xe4a1ba, + 0xe4a1bb, + 0xe4a1bc, + 0xe4a1bd, + 0xe4a1be, + 0xe4a1bf, + 0xe4a280, + 0xe4a281, + 0xe4a282, + 0xe4a283, + 0xe4a284, + 0xe4a285, + 0xe4a286, + 0xe4a287, + 0xe4a288, + 0xe4a289, + 0xe4a28a, + 0xe4a28b, + 0xe4a28c, + 0xe4a28d, + 0xe4a28e, + 0xe4a28f, + 0xe4a290, + 0xe4a291, + 0xe4a292, + 0xe4a293, + 0xe4a294, + 0xe4a295, + 0xe4a296, + 0xe4a297, + 0xe4a298, + 0xe4a299, + 0xe4a29a, + 0xe4a29b, + 0xe4a29c, + 0xe4a29d, + 0xe4a29e, + 0xe4a29f, + 0xe4a2a0, + 0xe4a2a1, + 0xe4a2a2, + 0xe4a2a3, + 0xe4a2a4, + 0xe4a2a5, + 0xe4a2a6, + 0xe4a2a7, + 0xe4a2a8, + 0xe4a2a9, + 0xe4a2aa, + 0xe4a2ab, + 0xe4a2ac, + 0xe4a2ad, + 0xe4a2ae, + 0xe4a2af, + 0xe4a2b0, + 0xe4a2b1, + 0xe4a2b2, + 0xe4a2b3, + 0xe4a2b4, + 0xe4a2b5, + 0xe4a2b6, + 0xe4a2b7, + 0xe4a2b8, + 0xe4a2b9, + 0xe4a2ba, + 0xe4a2bb, + 0xe4a2bc, + 0xe4a2bd, + 0xe4a2be, + 0xe4a2bf, + 0xe4a380, + 0xe4a381, + 0xe4a382, + 0xe4a383, + 0xe4a384, + 0xe4a385, + 0xe4a386, + 0xe4a387, + 0xe4a388, + 0xe4a389, + 0xe4a38a, + 0xe4a38b, + 0xe4a38c, + 0xe4a38d, + 0xe4a38e, + 0xe4a38f, + 0xe4a390, + 0xe4a391, + 0xe4a392, + 0xe4a393, + 0xe4a394, + 0xe4a395, + 0xe4a396, + 0xe4a397, + 0xe4a398, + 0xe4a399, + 0xe4a39a, + 0xe4a39b, + 0xe4a39c, + 0xe4a39d, + 0xe4a39e, + 0xe4a39f, + 0xe4a3a0, + 0xe4a3a1, + 0xe4a3a2, + 0xe4a3a3, + 0xe4a3a4, + 0xe4a3a5, + 0xe4a3a6, + 0xe4a3a7, + 0xe4a3a8, + 0xe4a3a9, + 0xe4a3aa, + 0xe4a3ab, + 0xe4a3ac, + 0xe4a3ad, + 0xe4a3ae, + 0xe4a3af, + 0xe4a3b0, + 0xe4a3b1, + 0xe4a3b2, + 0xe4a3b3, + 0xe4a3b4, + 0xe4a3b5, + 0xe4a3b6, + 0xe4a3b7, + 0xe4a3b8, + 0xe4a3b9, + 0xe4a3ba, + 0xe4a3bb, + 0xe4a3bc, + 0xe4a3bd, + 0xe4a3be, + 0xe4a3bf, + 0xe4a480, + 0xe4a481, + 0xe4a482, + 0xe4a483, + 0xe4a484, + 0xe4a485, + 0xe4a486, + 0xe4a487, + 0xe4a488, + 0xe4a489, + 0xe4a48a, + 0xe4a48b, + 0xe4a48c, + 0xe4a48d, + 0xe4a48e, + 0xe4a48f, + 0xe4a490, + 0xe4a491, + 0xe4a492, + 0xe4a493, + 0xe4a494, + 0xe4a495, + 0xe4a496, + 0xe4a497, + 0xe4a498, + 0xe4a499, + 0xe4a49a, + 0xe4a49b, + 0xe4a49c, + 0xe4a49d, + 0xe4a49e, + 0xe4a49f, + 0xe4a4a0, + 0xe4a4a1, + 0xe4a4a2, + 0xe4a4a3, + 0xe4a4a4, + 0xe4a4a5, + 0xe4a4a6, + 0xe4a4a7, + 0xe4a4a8, + 0xe4a4a9, + 0xe4a4aa, + 0xe4a4ab, + 0xe4a4ac, + 0xe4a4ad, + 0xe4a4ae, + 0xe4a4af, + 0xe4a4b0, + 0xe4a4b1, + 0xe4a4b2, + 0xe4a4b3, + 0xe4a4b4, + 0xe4a4b5, + 0xe4a4b6, + 0xe4a4b7, + 0xe4a4b8, + 0xe4a4b9, + 0xe4a4ba, + 0xe4a4bb, + 0xe4a4bc, + 0xe4a4bd, + 0xe4a4be, + 0xe4a4bf, + 0xe4a580, + 0xe4a581, + 0xe4a582, + 0xe4a583, + 0xe4a584, + 0xe4a585, + 0xe4a586, + 0xe4a587, + 0xe4a588, + 0xe4a589, + 0xe4a58a, + 0xe4a58b, + 0xe4a58c, + 0xe4a58d, + 0xe4a58e, + 0xe4a58f, + 0xe4a590, + 0xe4a591, + 0xe4a592, + 0xe4a593, + 0xe4a594, + 0xe4a595, + 0xe4a596, + 0xe4a597, + 0xe4a598, + 0xe4a599, + 0xe4a59a, + 0xe4a59b, + 0xe4a59c, + 0xe4a59d, + 0xe4a59e, + 0xe4a59f, + 0xe4a5a0, + 0xe4a5a1, + 0xe4a5a2, + 0xe4a5a3, + 0xe4a5a4, + 0xe4a5a5, + 0xe4a5a6, + 0xe4a5a7, + 0xe4a5a8, + 0xe4a5a9, + 0xe4a5aa, + 0xe4a5ab, + 0xe4a5ac, + 0xe4a5ad, + 0xe4a5ae, + 0xe4a5af, + 0xe4a5b0, + 0xe4a5b1, + 0xe4a5b2, + 0xe4a5b3, + 0xe4a5b4, + 0xe4a5b5, + 0xe4a5b6, + 0xe4a5b7, + 0xe4a5b8, + 0xe4a5b9, + 0xe4a5ba, + 0xe4a5bb, + 0xe4a5bc, + 0xe4a5bd, + 0xe4a5be, + 0xe4a5bf, + 0xe4a680, + 0xe4a681, + 0xe4a682, + 0xe4a683, + 0xe4a684, + 0xe4a685, + 0xe4a686, + 0xe4a687, + 0xe4a688, + 0xe4a689, + 0xe4a68a, + 0xe4a68b, + 0xe4a68c, + 0xe4a68d, + 0xe4a68e, + 0xe4a68f, + 0xe4a690, + 0xe4a691, + 0xe4a692, + 0xe4a693, + 0xe4a694, + 0xe4a695, + 0xe4a696, + 0xe4a697, + 0xe4a698, + 0xe4a699, + 0xe4a69a, + 0xe4a69b, + 0xe4a69c, + 0xe4a69d, + 0xe4a69e, + 0xe4a69f, + 0xe4a6a0, + 0xe4a6a1, + 0xe4a6a2, + 0xe4a6a3, + 0xe4a6a4, + 0xe4a6a5, + 0xe4a6a6, + 0xe4a6a7, + 0xe4a6a8, + 0xe4a6a9, + 0xe4a6aa, + 0xe4a6ab, + 0xe4a6ac, + 0xe4a6ad, + 0xe4a6ae, + 0xe4a6af, + 0xe4a6b0, + 0xe4a6b1, + 0xe4a6b2, + 0xe4a6b3, + 0xe4a6b4, + 0xe4a6b5, + 0xe4a6b6, + 0xe4a6b7, + 0xe4a6b8, + 0xe4a6b9, + 0xe4a6ba, + 0xe4a6bb, + 0xe4a6bc, + 0xe4a6bd, + 0xe4a6be, + 0xe4a6bf, + 0xe4a780, + 0xe4a781, + 0xe4a782, + 0xe4a783, + 0xe4a784, + 0xe4a785, + 0xe4a786, + 0xe4a787, + 0xe4a788, + 0xe4a789, + 0xe4a78a, + 0xe4a78b, + 0xe4a78c, + 0xe4a78d, + 0xe4a78e, + 0xe4a78f, + 0xe4a790, + 0xe4a791, + 0xe4a792, + 0xe4a793, + 0xe4a794, + 0xe4a795, + 0xe4a796, + 0xe4a797, + 0xe4a798, + 0xe4a799, + 0xe4a79a, + 0xe4a79b, + 0xe4a79c, + 0xe4a79d, + 0xe4a79e, + 0xe4a79f, + 0xe4a7a0, + 0xe4a7a1, + 0xe4a7a2, + 0xe4a7a3, + 0xe4a7a4, + 0xe4a7a5, + 0xe4a7a6, + 0xe4a7a7, + 0xe4a7a8, + 0xe4a7a9, + 0xe4a7aa, + 0xe4a7ab, + 0xe4a7ac, + 0xe4a7ad, + 0xe4a7ae, + 0xe4a7af, + 0xe4a7b0, + 0xe4a7b1, + 0xe4a7b2, + 0xe4a7b3, + 0xe4a7b4, + 0xe4a7b5, + 0xe4a7b6, + 0xe4a7b7, + 0xe4a7b8, + 0xe4a7b9, + 0xe4a7ba, + 0xe4a7bb, + 0xe4a7bc, + 0xe4a7bd, + 0xe4a7be, + 0xe4a7bf, + 0xe4a880, + 0xe4a881, + 0xe4a882, + 0xe4a883, + 0xe4a884, + 0xe4a885, + 0xe4a886, + 0xe4a887, + 0xe4a888, + 0xe4a889, + 0xe4a88a, + 0xe4a88b, + 0xe4a88c, + 0xe4a88d, + 0xe4a88e, + 0xe4a88f, + 0xe4a890, + 0xe4a891, + 0xe4a892, + 0xe4a893, + 0xe4a894, + 0xe4a895, + 0xe4a896, + 0xe4a897, + 0xe4a898, + 0xe4a899, + 0xe4a89a, + 0xe4a89b, + 0xe4a89c, + 0xe4a89d, + 0xe4a89e, + 0xe4a89f, + 0xe4a8a0, + 0xe4a8a1, + 0xe4a8a2, + 0xe4a8a3, + 0xe4a8a4, + 0xe4a8a5, + 0xe4a8a6, + 0xe4a8a7, + 0xe4a8a8, + 0xe4a8a9, + 0xe4a8aa, + 0xe4a8ab, + 0xe4a8ac, + 0xe4a8ad, + 0xe4a8ae, + 0xe4a8af, + 0xe4a8b0, + 0xe4a8b1, + 0xe4a8b2, + 0xe4a8b3, + 0xe4a8b4, + 0xe4a8b5, + 0xe4a8b6, + 0xe4a8b7, + 0xe4a8b8, + 0xe4a8b9, + 0xe4a8ba, + 0xe4a8bb, + 0xe4a8bc, + 0xe4a8bd, + 0xe4a8be, + 0xe4a8bf, + 0xe4a980, + 0xe4a981, + 0xe4a982, + 0xe4a983, + 0xe4a984, + 0xe4a985, + 0xe4a986, + 0xe4a987, + 0xe4a988, + 0xe4a989, + 0xe4a98a, + 0xe4a98b, + 0xe4a98c, + 0xe4a98d, + 0xe4a98e, + 0xe4a98f, + 0xe4a990, + 0xe4a991, + 0xe4a992, + 0xe4a993, + 0xe4a994, + 0xe4a995, + 0xe4a996, + 0xe4a997, + 0xe4a998, + 0xe4a999, + 0xe4a99a, + 0xe4a99b, + 0xe4a99c, + 0xe4a99d, + 0xe4a99e, + 0xe4a99f, + 0xe4a9a0, + 0xe4a9a1, + 0xe4a9a2, + 0xe4a9a3, + 0xe4a9a4, + 0xe4a9a5, + 0xe4a9a6, + 0xe4a9a7, + 0xe4a9a8, + 0xe4a9a9, + 0xe4a9aa, + 0xe4a9ab, + 0xe4a9ac, + 0xe4a9ad, + 0xe4a9ae, + 0xe4a9af, + 0xe4a9b0, + 0xe4a9b1, + 0xe4a9b2, + 0xe4a9b3, + 0xe4a9b4, + 0xe4a9b5, + 0xe4a9b6, + 0xe4a9b7, + 0xe4a9b8, + 0xe4a9b9, + 0xe4a9ba, + 0xe4a9bb, + 0xe4a9bc, + 0xe4a9bd, + 0xe4a9be, + 0xe4a9bf, + 0xe4aa80, + 0xe4aa81, + 0xe4aa82, + 0xe4aa83, + 0xe4aa84, + 0xe4aa85, + 0xe4aa86, + 0xe4aa87, + 0xe4aa88, + 0xe4aa89, + 0xe4aa8a, + 0xe4aa8b, + 0xe4aa8c, + 0xe4aa8d, + 0xe4aa8e, + 0xe4aa8f, + 0xe4aa90, + 0xe4aa91, + 0xe4aa92, + 0xe4aa93, + 0xe4aa94, + 0xe4aa95, + 0xe4aa96, + 0xe4aa97, + 0xe4aa98, + 0xe4aa99, + 0xe4aa9a, + 0xe4aa9b, + 0xe4aa9c, + 0xe4aa9d, + 0xe4aa9e, + 0xe4aa9f, + 0xe4aaa0, + 0xe4aaa1, + 0xe4aaa2, + 0xe4aaa3, + 0xe4aaa4, + 0xe4aaa5, + 0xe4aaa6, + 0xe4aaa7, + 0xe4aaa8, + 0xe4aaa9, + 0xe4aaaa, + 0xe4aaab, + 0xe4aaac, + 0xe4aaad, + 0xe4aaae, + 0xe4aaaf, + 0xe4aab0, + 0xe4aab1, + 0xe4aab2, + 0xe4aab3, + 0xe4aab4, + 0xe4aab5, + 0xe4aab6, + 0xe4aab7, + 0xe4aab8, + 0xe4aab9, + 0xe4aaba, + 0xe4aabb, + 0xe4aabc, + 0xe4aabd, + 0xe4aabe, + 0xe4aabf, + 0xe4ab80, + 0xe4ab81, + 0xe4ab82, + 0xe4ab83, + 0xe4ab84, + 0xe4ab85, + 0xe4ab86, + 0xe4ab87, + 0xe4ab88, + 0xe4ab89, + 0xe4ab8a, + 0xe4ab8b, + 0xe4ab8c, + 0xe4ab8d, + 0xe4ab8e, + 0xe4ab8f, + 0xe4ab90, + 0xe4ab91, + 0xe4ab92, + 0xe4ab93, + 0xe4ab94, + 0xe4ab95, + 0xe4ab96, + 0xe4ab97, + 0xe4ab98, + 0xe4ab99, + 0xe4ab9a, + 0xe4ab9b, + 0xe4ab9c, + 0xe4ab9d, + 0xe4ab9e, + 0xe4ab9f, + 0xe4aba0, + 0xe4aba1, + 0xe4aba2, + 0xe4aba3, + 0xe4aba4, + 0xe4aba5, + 0xe4aba6, + 0xe4aba7, + 0xe4aba8, + 0xe4aba9, + 0xe4abaa, + 0xe4abab, + 0xe4abac, + 0xe4abad, + 0xe4abae, + 0xe4abaf, + 0xe4abb0, + 0xe4abb1, + 0xe4abb2, + 0xe4abb3, + 0xe4abb4, + 0xe4abb5, + 0xe4abb6, + 0xe4abb7, + 0xe4abb8, + 0xe4abb9, + 0xe4abba, + 0xe4abbb, + 0xe4abbc, + 0xe4abbd, + 0xe4abbe, + 0xe4abbf, + 0xe4ac80, + 0xe4ac81, + 0xe4ac82, + 0xe4ac83, + 0xe4ac84, + 0xe4ac85, + 0xe4ac86, + 0xe4ac87, + 0xe4ac88, + 0xe4ac89, + 0xe4ac8a, + 0xe4ac8b, + 0xe4ac8c, + 0xe4ac8d, + 0xe4ac8e, + 0xe4ac8f, + 0xe4ac90, + 0xe4ac91, + 0xe4ac92, + 0xe4ac93, + 0xe4ac94, + 0xe4ac95, + 0xe4ac96, + 0xe4ac97, + 0xe4ac98, + 0xe4ac99, + 0xe4ac9a, + 0xe4ac9b, + 0xe4ac9c, + 0xe4ac9d, + 0xe4ac9e, + 0xe4ac9f, + 0xe4aca0, + 0xe4aca1, + 0xe4aca2, + 0xe4aca3, + 0xe4aca4, + 0xe4aca5, + 0xe4aca6, + 0xe4aca7, + 0xe4aca8, + 0xe4aca9, + 0xe4acaa, + 0xe4acab, + 0xe4acac, + 0xe4acad, + 0xe4acae, + 0xe4acaf, + 0xe4acb0, + 0xe4acb1, + 0xe4acb2, + 0xe4acb3, + 0xe4acb4, + 0xe4acb5, + 0xe4acb6, + 0xe4acb7, + 0xe4acb8, + 0xe4acb9, + 0xe4acba, + 0xe4acbb, + 0xe4acbc, + 0xe4acbd, + 0xe4acbe, + 0xe4acbf, + 0xe4ad80, + 0xe4ad81, + 0xe4ad82, + 0xe4ad83, + 0xe4ad84, + 0xe4ad85, + 0xe4ad86, + 0xe4ad87, + 0xe4ad88, + 0xe4ad89, + 0xe4ad8a, + 0xe4ad8b, + 0xe4ad8c, + 0xe4ad8d, + 0xe4ad8e, + 0xe4ad8f, + 0xe4ad90, + 0xe4ad91, + 0xe4ad92, + 0xe4ad93, + 0xe4ad94, + 0xe4ad95, + 0xe4ad96, + 0xe4ad97, + 0xe4ad98, + 0xe4ad99, + 0xe4ad9a, + 0xe4ad9b, + 0xe4ad9c, + 0xe4ad9d, + 0xe4ad9e, + 0xe4ad9f, + 0xe4ada0, + 0xe4ada1, + 0xe4ada2, + 0xe4ada3, + 0xe4ada4, + 0xe4ada5, + 0xe4ada6, + 0xe4ada7, + 0xe4ada8, + 0xe4ada9, + 0xe4adaa, + 0xe4adab, + 0xe4adac, + 0xe4adad, + 0xe4adae, + 0xe4adaf, + 0xe4adb0, + 0xe4adb1, + 0xe4adb2, + 0xe4adb3, + 0xe4adb4, + 0xe4adb5, + 0xe4adb6, + 0xe4adb7, + 0xe4adb8, + 0xe4adb9, + 0xe4adba, + 0xe4adbb, + 0xe4adbc, + 0xe4adbd, + 0xe4adbe, + 0xe4adbf, + 0xe4ae80, + 0xe4ae81, + 0xe4ae82, + 0xe4ae83, + 0xe4ae84, + 0xe4ae85, + 0xe4ae86, + 0xe4ae87, + 0xe4ae88, + 0xe4ae89, + 0xe4ae8a, + 0xe4ae8b, + 0xe4ae8c, + 0xe4ae8d, + 0xe4ae8e, + 0xe4ae8f, + 0xe4ae90, + 0xe4ae91, + 0xe4ae92, + 0xe4ae93, + 0xe4ae94, + 0xe4ae95, + 0xe4ae96, + 0xe4ae97, + 0xe4ae98, + 0xe4ae99, + 0xe4ae9a, + 0xe4ae9b, + 0xe4ae9c, + 0xe4ae9d, + 0xe4ae9e, + 0xe4ae9f, + 0xe4aea0, + 0xe4aea1, + 0xe4aea2, + 0xe4aea3, + 0xe4aea4, + 0xe4aea5, + 0xe4aea6, + 0xe4aea7, + 0xe4aea8, + 0xe4aea9, + 0xe4aeaa, + 0xe4aeab, + 0xe4aeac, + 0xe4aead, + 0xe4aeae, + 0xe4aeaf, + 0xe4aeb0, + 0xe4aeb1, + 0xe4aeb2, + 0xe4aeb3, + 0xe4aeb4, + 0xe4aeb5, + 0xe4aeb6, + 0xe4aeb7, + 0xe4aeb8, + 0xe4aeb9, + 0xe4aeba, + 0xe4aebb, + 0xe4aebc, + 0xe4aebd, + 0xe4aebe, + 0xe4aebf, + 0xe4af80, + 0xe4af81, + 0xe4af82, + 0xe4af83, + 0xe4af84, + 0xe4af85, + 0xe4af86, + 0xe4af87, + 0xe4af88, + 0xe4af89, + 0xe4af8a, + 0xe4af8b, + 0xe4af8c, + 0xe4af8d, + 0xe4af8e, + 0xe4af8f, + 0xe4af90, + 0xe4af91, + 0xe4af92, + 0xe4af93, + 0xe4af94, + 0xe4af95, + 0xe4af96, + 0xe4af97, + 0xe4af98, + 0xe4af99, + 0xe4af9a, + 0xe4af9b, + 0xe4af9c, + 0xe4af9d, + 0xe4af9e, + 0xe4af9f, + 0xe4afa0, + 0xe4afa1, + 0xe4afa2, + 0xe4afa3, + 0xe4afa4, + 0xe4afa5, + 0xe4afa6, + 0xe4afa7, + 0xe4afa8, + 0xe4afa9, + 0xe4afaa, + 0xe4afab, + 0xe4afac, + 0xe4afad, + 0xe4afae, + 0xe4afaf, + 0xe4afb0, + 0xe4afb1, + 0xe4afb2, + 0xe4afb3, + 0xe4afb4, + 0xe4afb5, + 0xe4afb6, + 0xe4afb7, + 0xe4afb8, + 0xe4afb9, + 0xe4afba, + 0xe4afbb, + 0xe4afbc, + 0xe4afbd, + 0xe4afbe, + 0xe4afbf, + 0xe4b080, + 0xe4b081, + 0xe4b082, + 0xe4b083, + 0xe4b084, + 0xe4b085, + 0xe4b086, + 0xe4b087, + 0xe4b088, + 0xe4b089, + 0xe4b08a, + 0xe4b08b, + 0xe4b08c, + 0xe4b08d, + 0xe4b08e, + 0xe4b08f, + 0xe4b090, + 0xe4b091, + 0xe4b092, + 0xe4b093, + 0xe4b094, + 0xe4b095, + 0xe4b096, + 0xe4b097, + 0xe4b098, + 0xe4b099, + 0xe4b09a, + 0xe4b09b, + 0xe4b09c, + 0xe4b09d, + 0xe4b09e, + 0xe4b09f, + 0xe4b0a0, + 0xe4b0a1, + 0xe4b0a2, + 0xe4b0a3, + 0xe4b0a4, + 0xe4b0a5, + 0xe4b0a6, + 0xe4b0a7, + 0xe4b0a8, + 0xe4b0a9, + 0xe4b0aa, + 0xe4b0ab, + 0xe4b0ac, + 0xe4b0ad, + 0xe4b0ae, + 0xe4b0af, + 0xe4b0b0, + 0xe4b0b1, + 0xe4b0b2, + 0xe4b0b3, + 0xe4b0b4, + 0xe4b0b5, + 0xe4b0b6, + 0xe4b0b7, + 0xe4b0b8, + 0xe4b0b9, + 0xe4b0ba, + 0xe4b0bb, + 0xe4b0bc, + 0xe4b0bd, + 0xe4b0be, + 0xe4b0bf, + 0xe4b180, + 0xe4b181, + 0xe4b182, + 0xe4b183, + 0xe4b184, + 0xe4b185, + 0xe4b186, + 0xe4b187, + 0xe4b188, + 0xe4b189, + 0xe4b18a, + 0xe4b18b, + 0xe4b18c, + 0xe4b18d, + 0xe4b18e, + 0xe4b18f, + 0xe4b190, + 0xe4b191, + 0xe4b192, + 0xe4b193, + 0xe4b194, + 0xe4b195, + 0xe4b196, + 0xe4b197, + 0xe4b198, + 0xe4b199, + 0xe4b19a, + 0xe4b19b, + 0xe4b19c, + 0xe4b19d, + 0xe4b19e, + 0xe4b19f, + 0xe4b1a0, + 0xe4b1a1, + 0xe4b1a2, + 0xe4b1a3, + 0xe4b1a4, + 0xe4b1a5, + 0xe4b1a6, + 0xe4b1a7, + 0xe4b1a8, + 0xe4b1a9, + 0xe4b1aa, + 0xe4b1ab, + 0xe4b1ac, + 0xe4b1ad, + 0xe4b1ae, + 0xe4b1af, + 0xe4b1b0, + 0xe4b1b1, + 0xe4b1b2, + 0xe4b1b3, + 0xe4b1b4, + 0xe4b1b5, + 0xe4b1b6, + 0xe4b1b7, + 0xe4b1b8, + 0xe4b1b9, + 0xe4b1ba, + 0xe4b1bb, + 0xe4b1bc, + 0xe4b1bd, + 0xe4b1be, + 0xe4b1bf, + 0xe4b280, + 0xe4b281, + 0xe4b282, + 0xe4b283, + 0xe4b284, + 0xe4b285, + 0xe4b286, + 0xe4b287, + 0xe4b288, + 0xe4b289, + 0xe4b28a, + 0xe4b28b, + 0xe4b28c, + 0xe4b28d, + 0xe4b28e, + 0xe4b28f, + 0xe4b290, + 0xe4b291, + 0xe4b292, + 0xe4b293, + 0xe4b294, + 0xe4b295, + 0xe4b296, + 0xe4b297, + 0xe4b298, + 0xe4b299, + 0xe4b29a, + 0xe4b29b, + 0xe4b29c, + 0xe4b29d, + 0xe4b29e, + 0xe4b29f, + 0xe4b2a0, + 0xe4b2a1, + 0xe4b2a2, + 0xe4b2a3, + 0xe4b2a4, + 0xe4b2a5, + 0xe4b2a6, + 0xe4b2a7, + 0xe4b2a8, + 0xe4b2a9, + 0xe4b2aa, + 0xe4b2ab, + 0xe4b2ac, + 0xe4b2ad, + 0xe4b2ae, + 0xe4b2af, + 0xe4b2b0, + 0xe4b2b1, + 0xe4b2b2, + 0xe4b2b3, + 0xe4b2b4, + 0xe4b2b5, + 0xe4b2b6, + 0xe4b2b7, + 0xe4b2b8, + 0xe4b2b9, + 0xe4b2ba, + 0xe4b2bb, + 0xe4b2bc, + 0xe4b2bd, + 0xe4b2be, + 0xe4b2bf, + 0xe4b380, + 0xe4b381, + 0xe4b382, + 0xe4b383, + 0xe4b384, + 0xe4b385, + 0xe4b386, + 0xe4b387, + 0xe4b388, + 0xe4b389, + 0xe4b38a, + 0xe4b38b, + 0xe4b38c, + 0xe4b38d, + 0xe4b38e, + 0xe4b38f, + 0xe4b390, + 0xe4b391, + 0xe4b392, + 0xe4b393, + 0xe4b394, + 0xe4b395, + 0xe4b396, + 0xe4b397, + 0xe4b398, + 0xe4b399, + 0xe4b39a, + 0xe4b39b, + 0xe4b39c, + 0xe4b39d, + 0xe4b39e, + 0xe4b39f, + 0xe4b3a0, + 0xe4b3a1, + 0xe4b3a2, + 0xe4b3a3, + 0xe4b3a4, + 0xe4b3a5, + 0xe4b3a6, + 0xe4b3a7, + 0xe4b3a8, + 0xe4b3a9, + 0xe4b3aa, + 0xe4b3ab, + 0xe4b3ac, + 0xe4b3ad, + 0xe4b3ae, + 0xe4b3af, + 0xe4b3b0, + 0xe4b3b1, + 0xe4b3b2, + 0xe4b3b3, + 0xe4b3b4, + 0xe4b3b5, + 0xe4b3b6, + 0xe4b3b7, + 0xe4b3b8, + 0xe4b3b9, + 0xe4b3ba, + 0xe4b3bb, + 0xe4b3bc, + 0xe4b3bd, + 0xe4b3be, + 0xe4b3bf, + 0xe4b480, + 0xe4b481, + 0xe4b482, + 0xe4b483, + 0xe4b484, + 0xe4b485, + 0xe4b486, + 0xe4b487, + 0xe4b488, + 0xe4b489, + 0xe4b48a, + 0xe4b48b, + 0xe4b48c, + 0xe4b48d, + 0xe4b48e, + 0xe4b48f, + 0xe4b490, + 0xe4b491, + 0xe4b492, + 0xe4b493, + 0xe4b494, + 0xe4b495, + 0xe4b496, + 0xe4b497, + 0xe4b498, + 0xe4b499, + 0xe4b49a, + 0xe4b49b, + 0xe4b49c, + 0xe4b49d, + 0xe4b49e, + 0xe4b49f, + 0xe4b4a0, + 0xe4b4a1, + 0xe4b4a2, + 0xe4b4a3, + 0xe4b4a4, + 0xe4b4a5, + 0xe4b4a6, + 0xe4b4a7, + 0xe4b4a8, + 0xe4b4a9, + 0xe4b4aa, + 0xe4b4ab, + 0xe4b4ac, + 0xe4b4ad, + 0xe4b4ae, + 0xe4b4af, + 0xe4b4b0, + 0xe4b4b1, + 0xe4b4b2, + 0xe4b4b3, + 0xe4b4b4, + 0xe4b4b5, + 0xe4b4b6, + 0xe4b4b7, + 0xe4b4b8, + 0xe4b4b9, + 0xe4b4ba, + 0xe4b4bb, + 0xe4b4bc, + 0xe4b4bd, + 0xe4b4be, + 0xe4b4bf, + 0xe4b580, + 0xe4b581, + 0xe4b582, + 0xe4b583, + 0xe4b584, + 0xe4b585, + 0xe4b586, + 0xe4b587, + 0xe4b588, + 0xe4b589, + 0xe4b58a, + 0xe4b58b, + 0xe4b58c, + 0xe4b58d, + 0xe4b58e, + 0xe4b58f, + 0xe4b590, + 0xe4b591, + 0xe4b592, + 0xe4b593, + 0xe4b594, + 0xe4b595, + 0xe4b596, + 0xe4b597, + 0xe4b598, + 0xe4b599, + 0xe4b59a, + 0xe4b59b, + 0xe4b59c, + 0xe4b59d, + 0xe4b59e, + 0xe4b59f, + 0xe4b5a0, + 0xe4b5a1, + 0xe4b5a2, + 0xe4b5a3, + 0xe4b5a4, + 0xe4b5a5, + 0xe4b5a6, + 0xe4b5a7, + 0xe4b5a8, + 0xe4b5a9, + 0xe4b5aa, + 0xe4b5ab, + 0xe4b5ac, + 0xe4b5ad, + 0xe4b5ae, + 0xe4b5af, + 0xe4b5b0, + 0xe4b5b1, + 0xe4b5b2, + 0xe4b5b3, + 0xe4b5b4, + 0xe4b5b5, + 0xe4b5b6, + 0xe4b5b7, + 0xe4b5b8, + 0xe4b5b9, + 0xe4b5ba, + 0xe4b5bb, + 0xe4b5bc, + 0xe4b5bd, + 0xe4b5be, + 0xe4b5bf, + 0xe4b680, + 0xe4b681, + 0xe4b682, + 0xe4b683, + 0xe4b684, + 0xe4b685, + 0xe4b686, + 0xe4b687, + 0xe4b688, + 0xe4b689, + 0xe4b68a, + 0xe4b68b, + 0xe4b68c, + 0xe4b68d, + 0xe4b68e, + 0xe4b68f, + 0xe4b690, + 0xe4b691, + 0xe4b692, + 0xe4b693, + 0xe4b694, + 0xe4b695, + 0xe4b696, + 0xe4b697, + 0xe4b698, + 0xe4b699, + 0xe4b69a, + 0xe4b69b, + 0xe4b69c, + 0xe4b69d, + 0xe4b69e, + 0xe4b69f, + 0xe4b6a0, + 0xe4b6a1, + 0xe4b6a2, + 0xe4b6a3, + 0xe4b6a4, + 0xe4b6a5, + 0xe4b6a6, + 0xe4b6a7, + 0xe4b6a8, + 0xe4b6a9, + 0xe4b6aa, + 0xe4b6ab, + 0xe4b6ac, + 0xe4b6ad, + 0xe4b6ae, + 0xe4b6af, + 0xe4b6b0, + 0xe4b6b1, + 0xe4b6b2, + 0xe4b6b3, + 0xe4b6b4, + 0xe4b6b5, + 0xe4b6b6, + 0xe4b6b7, + 0xe4b6b8, + 0xe4b6b9, + 0xe4b6ba, + 0xe4b6bb, + 0xe4b6bc, + 0xe4b6bd, + 0xe4b6be, + 0xe4b6bf, + 0xe4b780, + 0xe4b781, + 0xe4b782, + 0xe4b783, + 0xe4b784, + 0xe4b785, + 0xe4b786, + 0xe4b787, + 0xe4b788, + 0xe4b789, + 0xe4b78a, + 0xe4b78b, + 0xe4b78c, + 0xe4b78d, + 0xe4b78e, + 0xe4b78f, + 0xe4b790, + 0xe4b791, + 0xe4b792, + 0xe4b793, + 0xe4b794, + 0xe4b795, + 0xe4b796, + 0xe4b797, + 0xe4b798, + 0xe4b799, + 0xe4b79a, + 0xe4b79b, + 0xe4b79c, + 0xe4b79d, + 0xe4b79e, + 0xe4b79f, + 0xe4b7a0, + 0xe4b7a1, + 0xe4b7a2, + 0xe4b7a3, + 0xe4b7a4, + 0xe4b7a5, + 0xe4b7a6, + 0xe4b7a7, + 0xe4b7a8, + 0xe4b7a9, + 0xe4b7aa, + 0xe4b7ab, + 0xe4b7ac, + 0xe4b7ad, + 0xe4b7ae, + 0xe4b7af, + 0xe4b7b0, + 0xe4b7b1, + 0xe4b7b2, + 0xe4b7b3, + 0xe4b7b4, + 0xe4b7b5, + 0xe4b7b6, + 0xe4b7b7, + 0xe4b7b8, + 0xe4b7b9, + 0xe4b7ba, + 0xe4b7bb, + 0xe4b7bc, + 0xe4b7bd, + 0xe4b7be, + 0xe4b7bf, + 0xe4b880, + 0xe4b881, + 0xe4b882, + 0xe4b883, + 0xe4b884, + 0xe4b885, + 0xe4b886, + 0xe4b887, + 0xe4b888, + 0xe4b889, + 0xe4b88a, + 0xe4b88b, + 0xe4b88c, + 0xe4b88d, + 0xe4b88e, + 0xe4b88f, + 0xe4b890, + 0xe4b891, + 0xe4b892, + 0xe4b893, + 0xe4b894, + 0xe4b895, + 0xe4b896, + 0xe4b897, + 0xe4b898, + 0xe4b899, + 0xe4b89a, + 0xe4b89b, + 0xe4b89c, + 0xe4b89d, + 0xe4b89e, + 0xe4b89f, + 0xe4b8a0, + 0xe4b8a1, + 0xe4b8a2, + 0xe4b8a3, + 0xe4b8a4, + 0xe4b8a5, + 0xe4b8a6, + 0xe4b8a7, + 0xe4b8a8, + 0xe4b8a9, + 0xe4b8aa, + 0xe4b8ab, + 0xe4b8ac, + 0xe4b8ad, + 0xe4b8ae, + 0xe4b8af, + 0xe4b8b0, + 0xe4b8b1, + 0xe4b8b2, + 0xe4b8b3, + 0xe4b8b4, + 0xe4b8b5, + 0xe4b8b6, + 0xe4b8b7, + 0xe4b8b8, + 0xe4b8b9, + 0xe4b8ba, + 0xe4b8bb, + 0xe4b8bc, + 0xe4b8bd, + 0xe4b8be, + 0xe4b8bf, + 0xe4b980, + 0xe4b981, + 0xe4b982, + 0xe4b983, + 0xe4b984, + 0xe4b985, + 0xe4b986, + 0xe4b987, + 0xe4b988, + 0xe4b989, + 0xe4b98a, + 0xe4b98b, + 0xe4b98c, + 0xe4b98d, + 0xe4b98e, + 0xe4b98f, + 0xe4b990, + 0xe4b991, + 0xe4b992, + 0xe4b993, + 0xe4b994, + 0xe4b995, + 0xe4b996, + 0xe4b997, + 0xe4b998, + 0xe4b999, + 0xe4b99a, + 0xe4b99b, + 0xe4b99c, + 0xe4b99d, + 0xe4b99e, + 0xe4b99f, + 0xe4b9a0, + 0xe4b9a1, + 0xe4b9a2, + 0xe4b9a3, + 0xe4b9a4, + 0xe4b9a5, + 0xe4b9a6, + 0xe4b9a7, + 0xe4b9a8, + 0xe4b9a9, + 0xe4b9aa, + 0xe4b9ab, + 0xe4b9ac, + 0xe4b9ad, + 0xe4b9ae, + 0xe4b9af, + 0xe4b9b0, + 0xe4b9b1, + 0xe4b9b2, + 0xe4b9b3, + 0xe4b9b4, + 0xe4b9b5, + 0xe4b9b6, + 0xe4b9b7, + 0xe4b9b8, + 0xe4b9b9, + 0xe4b9ba, + 0xe4b9bb, + 0xe4b9bc, + 0xe4b9bd, + 0xe4b9be, + 0xe4b9bf, + 0xe4ba80, + 0xe4ba81, + 0xe4ba82, + 0xe4ba83, + 0xe4ba84, + 0xe4ba85, + 0xe4ba86, + 0xe4ba87, + 0xe4ba88, + 0xe4ba89, + 0xe4ba8a, + 0xe4ba8b, + 0xe4ba8c, + 0xe4ba8d, + 0xe4ba8e, + 0xe4ba8f, + 0xe4ba90, + 0xe4ba91, + 0xe4ba92, + 0xe4ba93, + 0xe4ba94, + 0xe4ba95, + 0xe4ba96, + 0xe4ba97, + 0xe4ba98, + 0xe4ba99, + 0xe4ba9a, + 0xe4ba9b, + 0xe4ba9c, + 0xe4ba9d, + 0xe4ba9e, + 0xe4ba9f, + 0xe4baa0, + 0xe4baa1, + 0xe4baa2, + 0xe4baa3, + 0xe4baa4, + 0xe4baa5, + 0xe4baa6, + 0xe4baa7, + 0xe4baa8, + 0xe4baa9, + 0xe4baaa, + 0xe4baab, + 0xe4baac, + 0xe4baad, + 0xe4baae, + 0xe4baaf, + 0xe4bab0, + 0xe4bab1, + 0xe4bab2, + 0xe4bab3, + 0xe4bab4, + 0xe4bab5, + 0xe4bab6, + 0xe4bab7, + 0xe4bab8, + 0xe4bab9, + 0xe4baba, + 0xe4babb, + 0xe4babc, + 0xe4babd, + 0xe4babe, + 0xe4babf, + 0xe4bb80, + 0xe4bb81, + 0xe4bb82, + 0xe4bb83, + 0xe4bb84, + 0xe4bb85, + 0xe4bb86, + 0xe4bb87, + 0xe4bb88, + 0xe4bb89, + 0xe4bb8a, + 0xe4bb8b, + 0xe4bb8c, + 0xe4bb8d, + 0xe4bb8e, + 0xe4bb8f, + 0xe4bb90, + 0xe4bb91, + 0xe4bb92, + 0xe4bb93, + 0xe4bb94, + 0xe4bb95, + 0xe4bb96, + 0xe4bb97, + 0xe4bb98, + 0xe4bb99, + 0xe4bb9a, + 0xe4bb9b, + 0xe4bb9c, + 0xe4bb9d, + 0xe4bb9e, + 0xe4bb9f, + 0xe4bba0, + 0xe4bba1, + 0xe4bba2, + 0xe4bba3, + 0xe4bba4, + 0xe4bba5, + 0xe4bba6, + 0xe4bba7, + 0xe4bba8, + 0xe4bba9, + 0xe4bbaa, + 0xe4bbab, + 0xe4bbac, + 0xe4bbad, + 0xe4bbae, + 0xe4bbaf, + 0xe4bbb0, + 0xe4bbb1, + 0xe4bbb2, + 0xe4bbb3, + 0xe4bbb4, + 0xe4bbb5, + 0xe4bbb6, + 0xe4bbb7, + 0xe4bbb8, + 0xe4bbb9, + 0xe4bbba, + 0xe4bbbb, + 0xe4bbbc, + 0xe4bbbd, + 0xe4bbbe, + 0xe4bbbf, + 0xe4bc80, + 0xe4bc81, + 0xe4bc82, + 0xe4bc83, + 0xe4bc84, + 0xe4bc85, + 0xe4bc86, + 0xe4bc87, + 0xe4bc88, + 0xe4bc89, + 0xe4bc8a, + 0xe4bc8b, + 0xe4bc8c, + 0xe4bc8d, + 0xe4bc8e, + 0xe4bc8f, + 0xe4bc90, + 0xe4bc91, + 0xe4bc92, + 0xe4bc93, + 0xe4bc94, + 0xe4bc95, + 0xe4bc96, + 0xe4bc97, + 0xe4bc98, + 0xe4bc99, + 0xe4bc9a, + 0xe4bc9b, + 0xe4bc9c, + 0xe4bc9d, + 0xe4bc9e, + 0xe4bc9f, + 0xe4bca0, + 0xe4bca1, + 0xe4bca2, + 0xe4bca3, + 0xe4bca4, + 0xe4bca5, + 0xe4bca6, + 0xe4bca7, + 0xe4bca8, + 0xe4bca9, + 0xe4bcaa, + 0xe4bcab, + 0xe4bcac, + 0xe4bcad, + 0xe4bcae, + 0xe4bcaf, + 0xe4bcb0, + 0xe4bcb1, + 0xe4bcb2, + 0xe4bcb3, + 0xe4bcb4, + 0xe4bcb5, + 0xe4bcb6, + 0xe4bcb7, + 0xe4bcb8, + 0xe4bcb9, + 0xe4bcba, + 0xe4bcbb, + 0xe4bcbc, + 0xe4bcbd, + 0xe4bcbe, + 0xe4bcbf, + 0xe4bd80, + 0xe4bd81, + 0xe4bd82, + 0xe4bd83, + 0xe4bd84, + 0xe4bd85, + 0xe4bd86, + 0xe4bd87, + 0xe4bd88, + 0xe4bd89, + 0xe4bd8a, + 0xe4bd8b, + 0xe4bd8c, + 0xe4bd8d, + 0xe4bd8e, + 0xe4bd8f, + 0xe4bd90, + 0xe4bd91, + 0xe4bd92, + 0xe4bd93, + 0xe4bd94, + 0xe4bd95, + 0xe4bd96, + 0xe4bd97, + 0xe4bd98, + 0xe4bd99, + 0xe4bd9a, + 0xe4bd9b, + 0xe4bd9c, + 0xe4bd9d, + 0xe4bd9e, + 0xe4bd9f, + 0xe4bda0, + 0xe4bda1, + 0xe4bda2, + 0xe4bda3, + 0xe4bda4, + 0xe4bda5, + 0xe4bda6, + 0xe4bda7, + 0xe4bda8, + 0xe4bda9, + 0xe4bdaa, + 0xe4bdab, + 0xe4bdac, + 0xe4bdad, + 0xe4bdae, + 0xe4bdaf, + 0xe4bdb0, + 0xe4bdb1, + 0xe4bdb2, + 0xe4bdb3, + 0xe4bdb4, + 0xe4bdb5, + 0xe4bdb6, + 0xe4bdb7, + 0xe4bdb8, + 0xe4bdb9, + 0xe4bdba, + 0xe4bdbb, + 0xe4bdbc, + 0xe4bdbd, + 0xe4bdbe, + 0xe4bdbf, + 0xe4be80, + 0xe4be81, + 0xe4be82, + 0xe4be83, + 0xe4be84, + 0xe4be85, + 0xe4be86, + 0xe4be87, + 0xe4be88, + 0xe4be89, + 0xe4be8a, + 0xe4be8b, + 0xe4be8c, + 0xe4be8d, + 0xe4be8e, + 0xe4be8f, + 0xe4be90, + 0xe4be91, + 0xe4be92, + 0xe4be93, + 0xe4be94, + 0xe4be95, + 0xe4be96, + 0xe4be97, + 0xe4be98, + 0xe4be99, + 0xe4be9a, + 0xe4be9b, + 0xe4be9c, + 0xe4be9d, + 0xe4be9e, + 0xe4be9f, + 0xe4bea0, + 0xe4bea1, + 0xe4bea2, + 0xe4bea3, + 0xe4bea4, + 0xe4bea5, + 0xe4bea6, + 0xe4bea7, + 0xe4bea8, + 0xe4bea9, + 0xe4beaa, + 0xe4beab, + 0xe4beac, + 0xe4bead, + 0xe4beae, + 0xe4beaf, + 0xe4beb0, + 0xe4beb1, + 0xe4beb2, + 0xe4beb3, + 0xe4beb4, + 0xe4beb5, + 0xe4beb6, + 0xe4beb7, + 0xe4beb8, + 0xe4beb9, + 0xe4beba, + 0xe4bebb, + 0xe4bebc, + 0xe4bebd, + 0xe4bebe, + 0xe4bebf, + 0xe4bf80, + 0xe4bf81, + 0xe4bf82, + 0xe4bf83, + 0xe4bf84, + 0xe4bf85, + 0xe4bf86, + 0xe4bf87, + 0xe4bf88, + 0xe4bf89, + 0xe4bf8a, + 0xe4bf8b, + 0xe4bf8c, + 0xe4bf8d, + 0xe4bf8e, + 0xe4bf8f, + 0xe4bf90, + 0xe4bf91, + 0xe4bf92, + 0xe4bf93, + 0xe4bf94, + 0xe4bf95, + 0xe4bf96, + 0xe4bf97, + 0xe4bf98, + 0xe4bf99, + 0xe4bf9a, + 0xe4bf9b, + 0xe4bf9c, + 0xe4bf9d, + 0xe4bf9e, + 0xe4bf9f, + 0xe4bfa0, + 0xe4bfa1, + 0xe4bfa2, + 0xe4bfa3, + 0xe4bfa4, + 0xe4bfa5, + 0xe4bfa6, + 0xe4bfa7, + 0xe4bfa8, + 0xe4bfa9, + 0xe4bfaa, + 0xe4bfab, + 0xe4bfac, + 0xe4bfad, + 0xe4bfae, + 0xe4bfaf, + 0xe4bfb0, + 0xe4bfb1, + 0xe4bfb2, + 0xe4bfb3, + 0xe4bfb4, + 0xe4bfb5, + 0xe4bfb6, + 0xe4bfb7, + 0xe4bfb8, + 0xe4bfb9, + 0xe4bfba, + 0xe4bfbb, + 0xe4bfbc, + 0xe4bfbd, + 0xe4bfbe, + 0xe4bfbf, + 0xe58080, + 0xe58081, + 0xe58082, + 0xe58083, + 0xe58084, + 0xe58085, + 0xe58086, + 0xe58087, + 0xe58088, + 0xe58089, + 0xe5808a, + 0xe5808b, + 0xe5808c, + 0xe5808d, + 0xe5808e, + 0xe5808f, + 0xe58090, + 0xe58091, + 0xe58092, + 0xe58093, + 0xe58094, + 0xe58095, + 0xe58096, + 0xe58097, + 0xe58098, + 0xe58099, + 0xe5809a, + 0xe5809b, + 0xe5809c, + 0xe5809d, + 0xe5809e, + 0xe5809f, + 0xe580a0, + 0xe580a1, + 0xe580a2, + 0xe580a3, + 0xe580a4, + 0xe580a5, + 0xe580a6, + 0xe580a7, + 0xe580a8, + 0xe580a9, + 0xe580aa, + 0xe580ab, + 0xe580ac, + 0xe580ad, + 0xe580ae, + 0xe580af, + 0xe580b0, + 0xe580b1, + 0xe580b2, + 0xe580b3, + 0xe580b4, + 0xe580b5, + 0xe580b6, + 0xe580b7, + 0xe580b8, + 0xe580b9, + 0xe580ba, + 0xe580bb, + 0xe580bc, + 0xe580bd, + 0xe580be, + 0xe580bf, + 0xe58180, + 0xe58181, + 0xe58182, + 0xe58183, + 0xe58184, + 0xe58185, + 0xe58186, + 0xe58187, + 0xe58188, + 0xe58189, + 0xe5818a, + 0xe5818b, + 0xe5818c, + 0xe5818d, + 0xe5818e, + 0xe5818f, + 0xe58190, + 0xe58191, + 0xe58192, + 0xe58193, + 0xe58194, + 0xe58195, + 0xe58196, + 0xe58197, + 0xe58198, + 0xe58199, + 0xe5819a, + 0xe5819b, + 0xe5819c, + 0xe5819d, + 0xe5819e, + 0xe5819f, + 0xe581a0, + 0xe581a1, + 0xe581a2, + 0xe581a3, + 0xe581a4, + 0xe581a5, + 0xe581a6, + 0xe581a7, + 0xe581a8, + 0xe581a9, + 0xe581aa, + 0xe581ab, + 0xe581ac, + 0xe581ad, + 0xe581ae, + 0xe581af, + 0xe581b0, + 0xe581b1, + 0xe581b2, + 0xe581b3, + 0xe581b4, + 0xe581b5, + 0xe581b6, + 0xe581b7, + 0xe581b8, + 0xe581b9, + 0xe581ba, + 0xe581bb, + 0xe581bc, + 0xe581bd, + 0xe581be, + 0xe581bf, + 0xe58280, + 0xe58281, + 0xe58282, + 0xe58283, + 0xe58284, + 0xe58285, + 0xe58286, + 0xe58287, + 0xe58288, + 0xe58289, + 0xe5828a, + 0xe5828b, + 0xe5828c, + 0xe5828d, + 0xe5828e, + 0xe5828f, + 0xe58290, + 0xe58291, + 0xe58292, + 0xe58293, + 0xe58294, + 0xe58295, + 0xe58296, + 0xe58297, + 0xe58298, + 0xe58299, + 0xe5829a, + 0xe5829b, + 0xe5829c, + 0xe5829d, + 0xe5829e, + 0xe5829f, + 0xe582a0, + 0xe582a1, + 0xe582a2, + 0xe582a3, + 0xe582a4, + 0xe582a5, + 0xe582a6, + 0xe582a7, + 0xe582a8, + 0xe582a9, + 0xe582aa, + 0xe582ab, + 0xe582ac, + 0xe582ad, + 0xe582ae, + 0xe582af, + 0xe582b0, + 0xe582b1, + 0xe582b2, + 0xe582b3, + 0xe582b4, + 0xe582b5, + 0xe582b6, + 0xe582b7, + 0xe582b8, + 0xe582b9, + 0xe582ba, + 0xe582bb, + 0xe582bc, + 0xe582bd, + 0xe582be, + 0xe582bf, + 0xe58380, + 0xe58381, + 0xe58382, + 0xe58383, + 0xe58384, + 0xe58385, + 0xe58386, + 0xe58387, + 0xe58388, + 0xe58389, + 0xe5838a, + 0xe5838b, + 0xe5838c, + 0xe5838d, + 0xe5838e, + 0xe5838f, + 0xe58390, + 0xe58391, + 0xe58392, + 0xe58393, + 0xe58394, + 0xe58395, + 0xe58396, + 0xe58397, + 0xe58398, + 0xe58399, + 0xe5839a, + 0xe5839b, + 0xe5839c, + 0xe5839d, + 0xe5839e, + 0xe5839f, + 0xe583a0, + 0xe583a1, + 0xe583a2, + 0xe583a3, + 0xe583a4, + 0xe583a5, + 0xe583a6, + 0xe583a7, + 0xe583a8, + 0xe583a9, + 0xe583aa, + 0xe583ab, + 0xe583ac, + 0xe583ad, + 0xe583ae, + 0xe583af, + 0xe583b0, + 0xe583b1, + 0xe583b2, + 0xe583b3, + 0xe583b4, + 0xe583b5, + 0xe583b6, + 0xe583b7, + 0xe583b8, + 0xe583b9, + 0xe583ba, + 0xe583bb, + 0xe583bc, + 0xe583bd, + 0xe583be, + 0xe583bf, + 0xe58480, + 0xe58481, + 0xe58482, + 0xe58483, + 0xe58484, + 0xe58485, + 0xe58486, + 0xe58487, + 0xe58488, + 0xe58489, + 0xe5848a, + 0xe5848b, + 0xe5848c, + 0xe5848d, + 0xe5848e, + 0xe5848f, + 0xe58490, + 0xe58491, + 0xe58492, + 0xe58493, + 0xe58494, + 0xe58495, + 0xe58496, + 0xe58497, + 0xe58498, + 0xe58499, + 0xe5849a, + 0xe5849b, + 0xe5849c, + 0xe5849d, + 0xe5849e, + 0xe5849f, + 0xe584a0, + 0xe584a1, + 0xe584a2, + 0xe584a3, + 0xe584a4, + 0xe584a5, + 0xe584a6, + 0xe584a7, + 0xe584a8, + 0xe584a9, + 0xe584aa, + 0xe584ab, + 0xe584ac, + 0xe584ad, + 0xe584ae, + 0xe584af, + 0xe584b0, + 0xe584b1, + 0xe584b2, + 0xe584b3, + 0xe584b4, + 0xe584b5, + 0xe584b6, + 0xe584b7, + 0xe584b8, + 0xe584b9, + 0xe584ba, + 0xe584bb, + 0xe584bc, + 0xe584bd, + 0xe584be, + 0xe584bf, + 0xe58580, + 0xe58581, + 0xe58582, + 0xe58583, + 0xe58584, + 0xe58585, + 0xe58586, + 0xe58587, + 0xe58588, + 0xe58589, + 0xe5858a, + 0xe5858b, + 0xe5858c, + 0xe5858d, + 0xe5858e, + 0xe5858f, + 0xe58590, + 0xe58591, + 0xe58592, + 0xe58593, + 0xe58594, + 0xe58595, + 0xe58596, + 0xe58597, + 0xe58598, + 0xe58599, + 0xe5859a, + 0xe5859b, + 0xe5859c, + 0xe5859d, + 0xe5859e, + 0xe5859f, + 0xe585a0, + 0xe585a1, + 0xe585a2, + 0xe585a3, + 0xe585a4, + 0xe585a5, + 0xe585a6, + 0xe585a7, + 0xe585a8, + 0xe585a9, + 0xe585aa, + 0xe585ab, + 0xe585ac, + 0xe585ad, + 0xe585ae, + 0xe585af, + 0xe585b0, + 0xe585b1, + 0xe585b2, + 0xe585b3, + 0xe585b4, + 0xe585b5, + 0xe585b6, + 0xe585b7, + 0xe585b8, + 0xe585b9, + 0xe585ba, + 0xe585bb, + 0xe585bc, + 0xe585bd, + 0xe585be, + 0xe585bf, + 0xe58680, + 0xe58681, + 0xe58682, + 0xe58683, + 0xe58684, + 0xe58685, + 0xe58686, + 0xe58687, + 0xe58688, + 0xe58689, + 0xe5868a, + 0xe5868b, + 0xe5868c, + 0xe5868d, + 0xe5868e, + 0xe5868f, + 0xe58690, + 0xe58691, + 0xe58692, + 0xe58693, + 0xe58694, + 0xe58695, + 0xe58696, + 0xe58697, + 0xe58698, + 0xe58699, + 0xe5869a, + 0xe5869b, + 0xe5869c, + 0xe5869d, + 0xe5869e, + 0xe5869f, + 0xe586a0, + 0xe586a1, + 0xe586a2, + 0xe586a3, + 0xe586a4, + 0xe586a5, + 0xe586a6, + 0xe586a7, + 0xe586a8, + 0xe586a9, + 0xe586aa, + 0xe586ab, + 0xe586ac, + 0xe586ad, + 0xe586ae, + 0xe586af, + 0xe586b0, + 0xe586b1, + 0xe586b2, + 0xe586b3, + 0xe586b4, + 0xe586b5, + 0xe586b6, + 0xe586b7, + 0xe586b8, + 0xe586b9, + 0xe586ba, + 0xe586bb, + 0xe586bc, + 0xe586bd, + 0xe586be, + 0xe586bf, + 0xe58780, + 0xe58781, + 0xe58782, + 0xe58783, + 0xe58784, + 0xe58785, + 0xe58786, + 0xe58787, + 0xe58788, + 0xe58789, + 0xe5878a, + 0xe5878b, + 0xe5878c, + 0xe5878d, + 0xe5878e, + 0xe5878f, + 0xe58790, + 0xe58791, + 0xe58792, + 0xe58793, + 0xe58794, + 0xe58795, + 0xe58796, + 0xe58797, + 0xe58798, + 0xe58799, + 0xe5879a, + 0xe5879b, + 0xe5879c, + 0xe5879d, + 0xe5879e, + 0xe5879f, + 0xe587a0, + 0xe587a1, + 0xe587a2, + 0xe587a3, + 0xe587a4, + 0xe587a5, + 0xe587a6, + 0xe587a7, + 0xe587a8, + 0xe587a9, + 0xe587aa, + 0xe587ab, + 0xe587ac, + 0xe587ad, + 0xe587ae, + 0xe587af, + 0xe587b0, + 0xe587b1, + 0xe587b2, + 0xe587b3, + 0xe587b4, + 0xe587b5, + 0xe587b6, + 0xe587b7, + 0xe587b8, + 0xe587b9, + 0xe587ba, + 0xe587bb, + 0xe587bc, + 0xe587bd, + 0xe587be, + 0xe587bf, + 0xe58880, + 0xe58881, + 0xe58882, + 0xe58883, + 0xe58884, + 0xe58885, + 0xe58886, + 0xe58887, + 0xe58888, + 0xe58889, + 0xe5888a, + 0xe5888b, + 0xe5888c, + 0xe5888d, + 0xe5888e, + 0xe5888f, + 0xe58890, + 0xe58891, + 0xe58892, + 0xe58893, + 0xe58894, + 0xe58895, + 0xe58896, + 0xe58897, + 0xe58898, + 0xe58899, + 0xe5889a, + 0xe5889b, + 0xe5889c, + 0xe5889d, + 0xe5889e, + 0xe5889f, + 0xe588a0, + 0xe588a1, + 0xe588a2, + 0xe588a3, + 0xe588a4, + 0xe588a5, + 0xe588a6, + 0xe588a7, + 0xe588a8, + 0xe588a9, + 0xe588aa, + 0xe588ab, + 0xe588ac, + 0xe588ad, + 0xe588ae, + 0xe588af, + 0xe588b0, + 0xe588b1, + 0xe588b2, + 0xe588b3, + 0xe588b4, + 0xe588b5, + 0xe588b6, + 0xe588b7, + 0xe588b8, + 0xe588b9, + 0xe588ba, + 0xe588bb, + 0xe588bc, + 0xe588bd, + 0xe588be, + 0xe588bf, + 0xe58980, + 0xe58981, + 0xe58982, + 0xe58983, + 0xe58984, + 0xe58985, + 0xe58986, + 0xe58987, + 0xe58988, + 0xe58989, + 0xe5898a, + 0xe5898b, + 0xe5898c, + 0xe5898d, + 0xe5898e, + 0xe5898f, + 0xe58990, + 0xe58991, + 0xe58992, + 0xe58993, + 0xe58994, + 0xe58995, + 0xe58996, + 0xe58997, + 0xe58998, + 0xe58999, + 0xe5899a, + 0xe5899b, + 0xe5899c, + 0xe5899d, + 0xe5899e, + 0xe5899f, + 0xe589a0, + 0xe589a1, + 0xe589a2, + 0xe589a3, + 0xe589a4, + 0xe589a5, + 0xe589a6, + 0xe589a7, + 0xe589a8, + 0xe589a9, + 0xe589aa, + 0xe589ab, + 0xe589ac, + 0xe589ad, + 0xe589ae, + 0xe589af, + 0xe589b0, + 0xe589b1, + 0xe589b2, + 0xe589b3, + 0xe589b4, + 0xe589b5, + 0xe589b6, + 0xe589b7, + 0xe589b8, + 0xe589b9, + 0xe589ba, + 0xe589bb, + 0xe589bc, + 0xe589bd, + 0xe589be, + 0xe589bf, + 0xe58a80, + 0xe58a81, + 0xe58a82, + 0xe58a83, + 0xe58a84, + 0xe58a85, + 0xe58a86, + 0xe58a87, + 0xe58a88, + 0xe58a89, + 0xe58a8a, + 0xe58a8b, + 0xe58a8c, + 0xe58a8d, + 0xe58a8e, + 0xe58a8f, + 0xe58a90, + 0xe58a91, + 0xe58a92, + 0xe58a93, + 0xe58a94, + 0xe58a95, + 0xe58a96, + 0xe58a97, + 0xe58a98, + 0xe58a99, + 0xe58a9a, + 0xe58a9b, + 0xe58a9c, + 0xe58a9d, + 0xe58a9e, + 0xe58a9f, + 0xe58aa0, + 0xe58aa1, + 0xe58aa2, + 0xe58aa3, + 0xe58aa4, + 0xe58aa5, + 0xe58aa6, + 0xe58aa7, + 0xe58aa8, + 0xe58aa9, + 0xe58aaa, + 0xe58aab, + 0xe58aac, + 0xe58aad, + 0xe58aae, + 0xe58aaf, + 0xe58ab0, + 0xe58ab1, + 0xe58ab2, + 0xe58ab3, + 0xe58ab4, + 0xe58ab5, + 0xe58ab6, + 0xe58ab7, + 0xe58ab8, + 0xe58ab9, + 0xe58aba, + 0xe58abb, + 0xe58abc, + 0xe58abd, + 0xe58abe, + 0xe58abf, + 0xe58b80, + 0xe58b81, + 0xe58b82, + 0xe58b83, + 0xe58b84, + 0xe58b85, + 0xe58b86, + 0xe58b87, + 0xe58b88, + 0xe58b89, + 0xe58b8a, + 0xe58b8b, + 0xe58b8c, + 0xe58b8d, + 0xe58b8e, + 0xe58b8f, + 0xe58b90, + 0xe58b91, + 0xe58b92, + 0xe58b93, + 0xe58b94, + 0xe58b95, + 0xe58b96, + 0xe58b97, + 0xe58b98, + 0xe58b99, + 0xe58b9a, + 0xe58b9b, + 0xe58b9c, + 0xe58b9d, + 0xe58b9e, + 0xe58b9f, + 0xe58ba0, + 0xe58ba1, + 0xe58ba2, + 0xe58ba3, + 0xe58ba4, + 0xe58ba5, + 0xe58ba6, + 0xe58ba7, + 0xe58ba8, + 0xe58ba9, + 0xe58baa, + 0xe58bab, + 0xe58bac, + 0xe58bad, + 0xe58bae, + 0xe58baf, + 0xe58bb0, + 0xe58bb1, + 0xe58bb2, + 0xe58bb3, + 0xe58bb4, + 0xe58bb5, + 0xe58bb6, + 0xe58bb7, + 0xe58bb8, + 0xe58bb9, + 0xe58bba, + 0xe58bbb, + 0xe58bbc, + 0xe58bbd, + 0xe58bbe, + 0xe58bbf, + 0xe58c80, + 0xe58c81, + 0xe58c82, + 0xe58c83, + 0xe58c84, + 0xe58c85, + 0xe58c86, + 0xe58c87, + 0xe58c88, + 0xe58c89, + 0xe58c8a, + 0xe58c8b, + 0xe58c8c, + 0xe58c8d, + 0xe58c8e, + 0xe58c8f, + 0xe58c90, + 0xe58c91, + 0xe58c92, + 0xe58c93, + 0xe58c94, + 0xe58c95, + 0xe58c96, + 0xe58c97, + 0xe58c98, + 0xe58c99, + 0xe58c9a, + 0xe58c9b, + 0xe58c9c, + 0xe58c9d, + 0xe58c9e, + 0xe58c9f, + 0xe58ca0, + 0xe58ca1, + 0xe58ca2, + 0xe58ca3, + 0xe58ca4, + 0xe58ca5, + 0xe58ca6, + 0xe58ca7, + 0xe58ca8, + 0xe58ca9, + 0xe58caa, + 0xe58cab, + 0xe58cac, + 0xe58cad, + 0xe58cae, + 0xe58caf, + 0xe58cb0, + 0xe58cb1, + 0xe58cb2, + 0xe58cb3, + 0xe58cb4, + 0xe58cb5, + 0xe58cb6, + 0xe58cb7, + 0xe58cb8, + 0xe58cb9, + 0xe58cba, + 0xe58cbb, + 0xe58cbc, + 0xe58cbd, + 0xe58cbe, + 0xe58cbf, + 0xe58d80, + 0xe58d81, + 0xe58d82, + 0xe58d83, + 0xe58d84, + 0xe58d85, + 0xe58d86, + 0xe58d87, + 0xe58d88, + 0xe58d89, + 0xe58d8a, + 0xe58d8b, + 0xe58d8c, + 0xe58d8d, + 0xe58d8e, + 0xe58d8f, + 0xe58d90, + 0xe58d91, + 0xe58d92, + 0xe58d93, + 0xe58d94, + 0xe58d95, + 0xe58d96, + 0xe58d97, + 0xe58d98, + 0xe58d99, + 0xe58d9a, + 0xe58d9b, + 0xe58d9c, + 0xe58d9d, + 0xe58d9e, + 0xe58d9f, + 0xe58da0, + 0xe58da1, + 0xe58da2, + 0xe58da3, + 0xe58da4, + 0xe58da5, + 0xe58da6, + 0xe58da7, + 0xe58da8, + 0xe58da9, + 0xe58daa, + 0xe58dab, + 0xe58dac, + 0xe58dad, + 0xe58dae, + 0xe58daf, + 0xe58db0, + 0xe58db1, + 0xe58db2, + 0xe58db3, + 0xe58db4, + 0xe58db5, + 0xe58db6, + 0xe58db7, + 0xe58db8, + 0xe58db9, + 0xe58dba, + 0xe58dbb, + 0xe58dbc, + 0xe58dbd, + 0xe58dbe, + 0xe58dbf, + 0xe58e80, + 0xe58e81, + 0xe58e82, + 0xe58e83, + 0xe58e84, + 0xe58e85, + 0xe58e86, + 0xe58e87, + 0xe58e88, + 0xe58e89, + 0xe58e8a, + 0xe58e8b, + 0xe58e8c, + 0xe58e8d, + 0xe58e8e, + 0xe58e8f, + 0xe58e90, + 0xe58e91, + 0xe58e92, + 0xe58e93, + 0xe58e94, + 0xe58e95, + 0xe58e96, + 0xe58e97, + 0xe58e98, + 0xe58e99, + 0xe58e9a, + 0xe58e9b, + 0xe58e9c, + 0xe58e9d, + 0xe58e9e, + 0xe58e9f, + 0xe58ea0, + 0xe58ea1, + 0xe58ea2, + 0xe58ea3, + 0xe58ea4, + 0xe58ea5, + 0xe58ea6, + 0xe58ea7, + 0xe58ea8, + 0xe58ea9, + 0xe58eaa, + 0xe58eab, + 0xe58eac, + 0xe58ead, + 0xe58eae, + 0xe58eaf, + 0xe58eb0, + 0xe58eb1, + 0xe58eb2, + 0xe58eb3, + 0xe58eb4, + 0xe58eb5, + 0xe58eb6, + 0xe58eb7, + 0xe58eb8, + 0xe58eb9, + 0xe58eba, + 0xe58ebb, + 0xe58ebc, + 0xe58ebd, + 0xe58ebe, + 0xe58ebf, + 0xe58f80, + 0xe58f81, + 0xe58f82, + 0xe58f83, + 0xe58f84, + 0xe58f85, + 0xe58f86, + 0xe58f87, + 0xe58f88, + 0xe58f89, + 0xe58f8a, + 0xe58f8b, + 0xe58f8c, + 0xe58f8d, + 0xe58f8e, + 0xe58f8f, + 0xe58f90, + 0xe58f91, + 0xe58f92, + 0xe58f93, + 0xe58f94, + 0xe58f95, + 0xe58f96, + 0xe58f97, + 0xe58f98, + 0xe58f99, + 0xe58f9a, + 0xe58f9b, + 0xe58f9c, + 0xe58f9d, + 0xe58f9e, + 0xe58f9f, + 0xe58fa0, + 0xe58fa1, + 0xe58fa2, + 0xe58fa3, + 0xe58fa4, + 0xe58fa5, + 0xe58fa6, + 0xe58fa7, + 0xe58fa8, + 0xe58fa9, + 0xe58faa, + 0xe58fab, + 0xe58fac, + 0xe58fad, + 0xe58fae, + 0xe58faf, + 0xe58fb0, + 0xe58fb1, + 0xe58fb2, + 0xe58fb3, + 0xe58fb4, + 0xe58fb5, + 0xe58fb6, + 0xe58fb7, + 0xe58fb8, + 0xe58fb9, + 0xe58fba, + 0xe58fbb, + 0xe58fbc, + 0xe58fbd, + 0xe58fbe, + 0xe58fbf, + 0xe59080, + 0xe59081, + 0xe59082, + 0xe59083, + 0xe59084, + 0xe59085, + 0xe59086, + 0xe59087, + 0xe59088, + 0xe59089, + 0xe5908a, + 0xe5908b, + 0xe5908c, + 0xe5908d, + 0xe5908e, + 0xe5908f, + 0xe59090, + 0xe59091, + 0xe59092, + 0xe59093, + 0xe59094, + 0xe59095, + 0xe59096, + 0xe59097, + 0xe59098, + 0xe59099, + 0xe5909a, + 0xe5909b, + 0xe5909c, + 0xe5909d, + 0xe5909e, + 0xe5909f, + 0xe590a0, + 0xe590a1, + 0xe590a2, + 0xe590a3, + 0xe590a4, + 0xe590a5, + 0xe590a6, + 0xe590a7, + 0xe590a8, + 0xe590a9, + 0xe590aa, + 0xe590ab, + 0xe590ac, + 0xe590ad, + 0xe590ae, + 0xe590af, + 0xe590b0, + 0xe590b1, + 0xe590b2, + 0xe590b3, + 0xe590b4, + 0xe590b5, + 0xe590b6, + 0xe590b7, + 0xe590b8, + 0xe590b9, + 0xe590ba, + 0xe590bb, + 0xe590bc, + 0xe590bd, + 0xe590be, + 0xe590bf, + 0xe59180, + 0xe59181, + 0xe59182, + 0xe59183, + 0xe59184, + 0xe59185, + 0xe59186, + 0xe59187, + 0xe59188, + 0xe59189, + 0xe5918a, + 0xe5918b, + 0xe5918c, + 0xe5918d, + 0xe5918e, + 0xe5918f, + 0xe59190, + 0xe59191, + 0xe59192, + 0xe59193, + 0xe59194, + 0xe59195, + 0xe59196, + 0xe59197, + 0xe59198, + 0xe59199, + 0xe5919a, + 0xe5919b, + 0xe5919c, + 0xe5919d, + 0xe5919e, + 0xe5919f, + 0xe591a0, + 0xe591a1, + 0xe591a2, + 0xe591a3, + 0xe591a4, + 0xe591a5, + 0xe591a6, + 0xe591a7, + 0xe591a8, + 0xe591a9, + 0xe591aa, + 0xe591ab, + 0xe591ac, + 0xe591ad, + 0xe591ae, + 0xe591af, + 0xe591b0, + 0xe591b1, + 0xe591b2, + 0xe591b3, + 0xe591b4, + 0xe591b5, + 0xe591b6, + 0xe591b7, + 0xe591b8, + 0xe591b9, + 0xe591ba, + 0xe591bb, + 0xe591bc, + 0xe591bd, + 0xe591be, + 0xe591bf, + 0xe59280, + 0xe59281, + 0xe59282, + 0xe59283, + 0xe59284, + 0xe59285, + 0xe59286, + 0xe59287, + 0xe59288, + 0xe59289, + 0xe5928a, + 0xe5928b, + 0xe5928c, + 0xe5928d, + 0xe5928e, + 0xe5928f, + 0xe59290, + 0xe59291, + 0xe59292, + 0xe59293, + 0xe59294, + 0xe59295, + 0xe59296, + 0xe59297, + 0xe59298, + 0xe59299, + 0xe5929a, + 0xe5929b, + 0xe5929c, + 0xe5929d, + 0xe5929e, + 0xe5929f, + 0xe592a0, + 0xe592a1, + 0xe592a2, + 0xe592a3, + 0xe592a4, + 0xe592a5, + 0xe592a6, + 0xe592a7, + 0xe592a8, + 0xe592a9, + 0xe592aa, + 0xe592ab, + 0xe592ac, + 0xe592ad, + 0xe592ae, + 0xe592af, + 0xe592b0, + 0xe592b1, + 0xe592b2, + 0xe592b3, + 0xe592b4, + 0xe592b5, + 0xe592b6, + 0xe592b7, + 0xe592b8, + 0xe592b9, + 0xe592ba, + 0xe592bb, + 0xe592bc, + 0xe592bd, + 0xe592be, + 0xe592bf, + 0xe59380, + 0xe59381, + 0xe59382, + 0xe59383, + 0xe59384, + 0xe59385, + 0xe59386, + 0xe59387, + 0xe59388, + 0xe59389, + 0xe5938a, + 0xe5938b, + 0xe5938c, + 0xe5938d, + 0xe5938e, + 0xe5938f, + 0xe59390, + 0xe59391, + 0xe59392, + 0xe59393, + 0xe59394, + 0xe59395, + 0xe59396, + 0xe59397, + 0xe59398, + 0xe59399, + 0xe5939a, + 0xe5939b, + 0xe5939c, + 0xe5939d, + 0xe5939e, + 0xe5939f, + 0xe593a0, + 0xe593a1, + 0xe593a2, + 0xe593a3, + 0xe593a4, + 0xe593a5, + 0xe593a6, + 0xe593a7, + 0xe593a8, + 0xe593a9, + 0xe593aa, + 0xe593ab, + 0xe593ac, + 0xe593ad, + 0xe593ae, + 0xe593af, + 0xe593b0, + 0xe593b1, + 0xe593b2, + 0xe593b3, + 0xe593b4, + 0xe593b5, + 0xe593b6, + 0xe593b7, + 0xe593b8, + 0xe593b9, + 0xe593ba, + 0xe593bb, + 0xe593bc, + 0xe593bd, + 0xe593be, + 0xe593bf, + 0xe59480, + 0xe59481, + 0xe59482, + 0xe59483, + 0xe59484, + 0xe59485, + 0xe59486, + 0xe59487, + 0xe59488, + 0xe59489, + 0xe5948a, + 0xe5948b, + 0xe5948c, + 0xe5948d, + 0xe5948e, + 0xe5948f, + 0xe59490, + 0xe59491, + 0xe59492, + 0xe59493, + 0xe59494, + 0xe59495, + 0xe59496, + 0xe59497, + 0xe59498, + 0xe59499, + 0xe5949a, + 0xe5949b, + 0xe5949c, + 0xe5949d, + 0xe5949e, + 0xe5949f, + 0xe594a0, + 0xe594a1, + 0xe594a2, + 0xe594a3, + 0xe594a4, + 0xe594a5, + 0xe594a6, + 0xe594a7, + 0xe594a8, + 0xe594a9, + 0xe594aa, + 0xe594ab, + 0xe594ac, + 0xe594ad, + 0xe594ae, + 0xe594af, + 0xe594b0, + 0xe594b1, + 0xe594b2, + 0xe594b3, + 0xe594b4, + 0xe594b5, + 0xe594b6, + 0xe594b7, + 0xe594b8, + 0xe594b9, + 0xe594ba, + 0xe594bb, + 0xe594bc, + 0xe594bd, + 0xe594be, + 0xe594bf, + 0xe59580, + 0xe59581, + 0xe59582, + 0xe59583, + 0xe59584, + 0xe59585, + 0xe59586, + 0xe59587, + 0xe59588, + 0xe59589, + 0xe5958a, + 0xe5958b, + 0xe5958c, + 0xe5958d, + 0xe5958e, + 0xe5958f, + 0xe59590, + 0xe59591, + 0xe59592, + 0xe59593, + 0xe59594, + 0xe59595, + 0xe59596, + 0xe59597, + 0xe59598, + 0xe59599, + 0xe5959a, + 0xe5959b, + 0xe5959c, + 0xe5959d, + 0xe5959e, + 0xe5959f, + 0xe595a0, + 0xe595a1, + 0xe595a2, + 0xe595a3, + 0xe595a4, + 0xe595a5, + 0xe595a6, + 0xe595a7, + 0xe595a8, + 0xe595a9, + 0xe595aa, + 0xe595ab, + 0xe595ac, + 0xe595ad, + 0xe595ae, + 0xe595af, + 0xe595b0, + 0xe595b1, + 0xe595b2, + 0xe595b3, + 0xe595b4, + 0xe595b5, + 0xe595b6, + 0xe595b7, + 0xe595b8, + 0xe595b9, + 0xe595ba, + 0xe595bb, + 0xe595bc, + 0xe595bd, + 0xe595be, + 0xe595bf, + 0xe59680, + 0xe59681, + 0xe59682, + 0xe59683, + 0xe59684, + 0xe59685, + 0xe59686, + 0xe59687, + 0xe59688, + 0xe59689, + 0xe5968a, + 0xe5968b, + 0xe5968c, + 0xe5968d, + 0xe5968e, + 0xe5968f, + 0xe59690, + 0xe59691, + 0xe59692, + 0xe59693, + 0xe59694, + 0xe59695, + 0xe59696, + 0xe59697, + 0xe59698, + 0xe59699, + 0xe5969a, + 0xe5969b, + 0xe5969c, + 0xe5969d, + 0xe5969e, + 0xe5969f, + 0xe596a0, + 0xe596a1, + 0xe596a2, + 0xe596a3, + 0xe596a4, + 0xe596a5, + 0xe596a6, + 0xe596a7, + 0xe596a8, + 0xe596a9, + 0xe596aa, + 0xe596ab, + 0xe596ac, + 0xe596ad, + 0xe596ae, + 0xe596af, + 0xe596b0, + 0xe596b1, + 0xe596b2, + 0xe596b3, + 0xe596b4, + 0xe596b5, + 0xe596b6, + 0xe596b7, + 0xe596b8, + 0xe596b9, + 0xe596ba, + 0xe596bb, + 0xe596bc, + 0xe596bd, + 0xe596be, + 0xe596bf, + 0xe59780, + 0xe59781, + 0xe59782, + 0xe59783, + 0xe59784, + 0xe59785, + 0xe59786, + 0xe59787, + 0xe59788, + 0xe59789, + 0xe5978a, + 0xe5978b, + 0xe5978c, + 0xe5978d, + 0xe5978e, + 0xe5978f, + 0xe59790, + 0xe59791, + 0xe59792, + 0xe59793, + 0xe59794, + 0xe59795, + 0xe59796, + 0xe59797, + 0xe59798, + 0xe59799, + 0xe5979a, + 0xe5979b, + 0xe5979c, + 0xe5979d, + 0xe5979e, + 0xe5979f, + 0xe597a0, + 0xe597a1, + 0xe597a2, + 0xe597a3, + 0xe597a4, + 0xe597a5, + 0xe597a6, + 0xe597a7, + 0xe597a8, + 0xe597a9, + 0xe597aa, + 0xe597ab, + 0xe597ac, + 0xe597ad, + 0xe597ae, + 0xe597af, + 0xe597b0, + 0xe597b1, + 0xe597b2, + 0xe597b3, + 0xe597b4, + 0xe597b5, + 0xe597b6, + 0xe597b7, + 0xe597b8, + 0xe597b9, + 0xe597ba, + 0xe597bb, + 0xe597bc, + 0xe597bd, + 0xe597be, + 0xe597bf, + 0xe59880, + 0xe59881, + 0xe59882, + 0xe59883, + 0xe59884, + 0xe59885, + 0xe59886, + 0xe59887, + 0xe59888, + 0xe59889, + 0xe5988a, + 0xe5988b, + 0xe5988c, + 0xe5988d, + 0xe5988e, + 0xe5988f, + 0xe59890, + 0xe59891, + 0xe59892, + 0xe59893, + 0xe59894, + 0xe59895, + 0xe59896, + 0xe59897, + 0xe59898, + 0xe59899, + 0xe5989a, + 0xe5989b, + 0xe5989c, + 0xe5989d, + 0xe5989e, + 0xe5989f, + 0xe598a0, + 0xe598a1, + 0xe598a2, + 0xe598a3, + 0xe598a4, + 0xe598a5, + 0xe598a6, + 0xe598a7, + 0xe598a8, + 0xe598a9, + 0xe598aa, + 0xe598ab, + 0xe598ac, + 0xe598ad, + 0xe598ae, + 0xe598af, + 0xe598b0, + 0xe598b1, + 0xe598b2, + 0xe598b3, + 0xe598b4, + 0xe598b5, + 0xe598b6, + 0xe598b7, + 0xe598b8, + 0xe598b9, + 0xe598ba, + 0xe598bb, + 0xe598bc, + 0xe598bd, + 0xe598be, + 0xe598bf, + 0xe59980, + 0xe59981, + 0xe59982, + 0xe59983, + 0xe59984, + 0xe59985, + 0xe59986, + 0xe59987, + 0xe59988, + 0xe59989, + 0xe5998a, + 0xe5998b, + 0xe5998c, + 0xe5998d, + 0xe5998e, + 0xe5998f, + 0xe59990, + 0xe59991, + 0xe59992, + 0xe59993, + 0xe59994, + 0xe59995, + 0xe59996, + 0xe59997, + 0xe59998, + 0xe59999, + 0xe5999a, + 0xe5999b, + 0xe5999c, + 0xe5999d, + 0xe5999e, + 0xe5999f, + 0xe599a0, + 0xe599a1, + 0xe599a2, + 0xe599a3, + 0xe599a4, + 0xe599a5, + 0xe599a6, + 0xe599a7, + 0xe599a8, + 0xe599a9, + 0xe599aa, + 0xe599ab, + 0xe599ac, + 0xe599ad, + 0xe599ae, + 0xe599af, + 0xe599b0, + 0xe599b1, + 0xe599b2, + 0xe599b3, + 0xe599b4, + 0xe599b5, + 0xe599b6, + 0xe599b7, + 0xe599b8, + 0xe599b9, + 0xe599ba, + 0xe599bb, + 0xe599bc, + 0xe599bd, + 0xe599be, + 0xe599bf, + 0xe59a80, + 0xe59a81, + 0xe59a82, + 0xe59a83, + 0xe59a84, + 0xe59a85, + 0xe59a86, + 0xe59a87, + 0xe59a88, + 0xe59a89, + 0xe59a8a, + 0xe59a8b, + 0xe59a8c, + 0xe59a8d, + 0xe59a8e, + 0xe59a8f, + 0xe59a90, + 0xe59a91, + 0xe59a92, + 0xe59a93, + 0xe59a94, + 0xe59a95, + 0xe59a96, + 0xe59a97, + 0xe59a98, + 0xe59a99, + 0xe59a9a, + 0xe59a9b, + 0xe59a9c, + 0xe59a9d, + 0xe59a9e, + 0xe59a9f, + 0xe59aa0, + 0xe59aa1, + 0xe59aa2, + 0xe59aa3, + 0xe59aa4, + 0xe59aa5, + 0xe59aa6, + 0xe59aa7, + 0xe59aa8, + 0xe59aa9, + 0xe59aaa, + 0xe59aab, + 0xe59aac, + 0xe59aad, + 0xe59aae, + 0xe59aaf, + 0xe59ab0, + 0xe59ab1, + 0xe59ab2, + 0xe59ab3, + 0xe59ab4, + 0xe59ab5, + 0xe59ab6, + 0xe59ab7, + 0xe59ab8, + 0xe59ab9, + 0xe59aba, + 0xe59abb, + 0xe59abc, + 0xe59abd, + 0xe59abe, + 0xe59abf, + 0xe59b80, + 0xe59b81, + 0xe59b82, + 0xe59b83, + 0xe59b84, + 0xe59b85, + 0xe59b86, + 0xe59b87, + 0xe59b88, + 0xe59b89, + 0xe59b8a, + 0xe59b8b, + 0xe59b8c, + 0xe59b8d, + 0xe59b8e, + 0xe59b8f, + 0xe59b90, + 0xe59b91, + 0xe59b92, + 0xe59b93, + 0xe59b94, + 0xe59b95, + 0xe59b96, + 0xe59b97, + 0xe59b98, + 0xe59b99, + 0xe59b9a, + 0xe59b9b, + 0xe59b9c, + 0xe59b9d, + 0xe59b9e, + 0xe59b9f, + 0xe59ba0, + 0xe59ba1, + 0xe59ba2, + 0xe59ba3, + 0xe59ba4, + 0xe59ba5, + 0xe59ba6, + 0xe59ba7, + 0xe59ba8, + 0xe59ba9, + 0xe59baa, + 0xe59bab, + 0xe59bac, + 0xe59bad, + 0xe59bae, + 0xe59baf, + 0xe59bb0, + 0xe59bb1, + 0xe59bb2, + 0xe59bb3, + 0xe59bb4, + 0xe59bb5, + 0xe59bb6, + 0xe59bb7, + 0xe59bb8, + 0xe59bb9, + 0xe59bba, + 0xe59bbb, + 0xe59bbc, + 0xe59bbd, + 0xe59bbe, + 0xe59bbf, + 0xe59c80, + 0xe59c81, + 0xe59c82, + 0xe59c83, + 0xe59c84, + 0xe59c85, + 0xe59c86, + 0xe59c87, + 0xe59c88, + 0xe59c89, + 0xe59c8a, + 0xe59c8b, + 0xe59c8c, + 0xe59c8d, + 0xe59c8e, + 0xe59c8f, + 0xe59c90, + 0xe59c91, + 0xe59c92, + 0xe59c93, + 0xe59c94, + 0xe59c95, + 0xe59c96, + 0xe59c97, + 0xe59c98, + 0xe59c99, + 0xe59c9a, + 0xe59c9b, + 0xe59c9c, + 0xe59c9d, + 0xe59c9e, + 0xe59c9f, + 0xe59ca0, + 0xe59ca1, + 0xe59ca2, + 0xe59ca3, + 0xe59ca4, + 0xe59ca5, + 0xe59ca6, + 0xe59ca7, + 0xe59ca8, + 0xe59ca9, + 0xe59caa, + 0xe59cab, + 0xe59cac, + 0xe59cad, + 0xe59cae, + 0xe59caf, + 0xe59cb0, + 0xe59cb1, + 0xe59cb2, + 0xe59cb3, + 0xe59cb4, + 0xe59cb5, + 0xe59cb6, + 0xe59cb7, + 0xe59cb8, + 0xe59cb9, + 0xe59cba, + 0xe59cbb, + 0xe59cbc, + 0xe59cbd, + 0xe59cbe, + 0xe59cbf, + 0xe59d80, + 0xe59d81, + 0xe59d82, + 0xe59d83, + 0xe59d84, + 0xe59d85, + 0xe59d86, + 0xe59d87, + 0xe59d88, + 0xe59d89, + 0xe59d8a, + 0xe59d8b, + 0xe59d8c, + 0xe59d8d, + 0xe59d8e, + 0xe59d8f, + 0xe59d90, + 0xe59d91, + 0xe59d92, + 0xe59d93, + 0xe59d94, + 0xe59d95, + 0xe59d96, + 0xe59d97, + 0xe59d98, + 0xe59d99, + 0xe59d9a, + 0xe59d9b, + 0xe59d9c, + 0xe59d9d, + 0xe59d9e, + 0xe59d9f, + 0xe59da0, + 0xe59da1, + 0xe59da2, + 0xe59da3, + 0xe59da4, + 0xe59da5, + 0xe59da6, + 0xe59da7, + 0xe59da8, + 0xe59da9, + 0xe59daa, + 0xe59dab, + 0xe59dac, + 0xe59dad, + 0xe59dae, + 0xe59daf, + 0xe59db0, + 0xe59db1, + 0xe59db2, + 0xe59db3, + 0xe59db4, + 0xe59db5, + 0xe59db6, + 0xe59db7, + 0xe59db8, + 0xe59db9, + 0xe59dba, + 0xe59dbb, + 0xe59dbc, + 0xe59dbd, + 0xe59dbe, + 0xe59dbf, + 0xe59e80, + 0xe59e81, + 0xe59e82, + 0xe59e83, + 0xe59e84, + 0xe59e85, + 0xe59e86, + 0xe59e87, + 0xe59e88, + 0xe59e89, + 0xe59e8a, + 0xe59e8b, + 0xe59e8c, + 0xe59e8d, + 0xe59e8e, + 0xe59e8f, + 0xe59e90, + 0xe59e91, + 0xe59e92, + 0xe59e93, + 0xe59e94, + 0xe59e95, + 0xe59e96, + 0xe59e97, + 0xe59e98, + 0xe59e99, + 0xe59e9a, + 0xe59e9b, + 0xe59e9c, + 0xe59e9d, + 0xe59e9e, + 0xe59e9f, + 0xe59ea0, + 0xe59ea1, + 0xe59ea2, + 0xe59ea3, + 0xe59ea4, + 0xe59ea5, + 0xe59ea6, + 0xe59ea7, + 0xe59ea8, + 0xe59ea9, + 0xe59eaa, + 0xe59eab, + 0xe59eac, + 0xe59ead, + 0xe59eae, + 0xe59eaf, + 0xe59eb0, + 0xe59eb1, + 0xe59eb2, + 0xe59eb3, + 0xe59eb4, + 0xe59eb5, + 0xe59eb6, + 0xe59eb7, + 0xe59eb8, + 0xe59eb9, + 0xe59eba, + 0xe59ebb, + 0xe59ebc, + 0xe59ebd, + 0xe59ebe, + 0xe59ebf, + 0xe59f80, + 0xe59f81, + 0xe59f82, + 0xe59f83, + 0xe59f84, + 0xe59f85, + 0xe59f86, + 0xe59f87, + 0xe59f88, + 0xe59f89, + 0xe59f8a, + 0xe59f8b, + 0xe59f8c, + 0xe59f8d, + 0xe59f8e, + 0xe59f8f, + 0xe59f90, + 0xe59f91, + 0xe59f92, + 0xe59f93, + 0xe59f94, + 0xe59f95, + 0xe59f96, + 0xe59f97, + 0xe59f98, + 0xe59f99, + 0xe59f9a, + 0xe59f9b, + 0xe59f9c, + 0xe59f9d, + 0xe59f9e, + 0xe59f9f, + 0xe59fa0, + 0xe59fa1, + 0xe59fa2, + 0xe59fa3, + 0xe59fa4, + 0xe59fa5, + 0xe59fa6, + 0xe59fa7, + 0xe59fa8, + 0xe59fa9, + 0xe59faa, + 0xe59fab, + 0xe59fac, + 0xe59fad, + 0xe59fae, + 0xe59faf, + 0xe59fb0, + 0xe59fb1, + 0xe59fb2, + 0xe59fb3, + 0xe59fb4, + 0xe59fb5, + 0xe59fb6, + 0xe59fb7, + 0xe59fb8, + 0xe59fb9, + 0xe59fba, + 0xe59fbb, + 0xe59fbc, + 0xe59fbd, + 0xe59fbe, + 0xe59fbf, + 0xe5a080, + 0xe5a081, + 0xe5a082, + 0xe5a083, + 0xe5a084, + 0xe5a085, + 0xe5a086, + 0xe5a087, + 0xe5a088, + 0xe5a089, + 0xe5a08a, + 0xe5a08b, + 0xe5a08c, + 0xe5a08d, + 0xe5a08e, + 0xe5a08f, + 0xe5a090, + 0xe5a091, + 0xe5a092, + 0xe5a093, + 0xe5a094, + 0xe5a095, + 0xe5a096, + 0xe5a097, + 0xe5a098, + 0xe5a099, + 0xe5a09a, + 0xe5a09b, + 0xe5a09c, + 0xe5a09d, + 0xe5a09e, + 0xe5a09f, + 0xe5a0a0, + 0xe5a0a1, + 0xe5a0a2, + 0xe5a0a3, + 0xe5a0a4, + 0xe5a0a5, + 0xe5a0a6, + 0xe5a0a7, + 0xe5a0a8, + 0xe5a0a9, + 0xe5a0aa, + 0xe5a0ab, + 0xe5a0ac, + 0xe5a0ad, + 0xe5a0ae, + 0xe5a0af, + 0xe5a0b0, + 0xe5a0b1, + 0xe5a0b2, + 0xe5a0b3, + 0xe5a0b4, + 0xe5a0b5, + 0xe5a0b6, + 0xe5a0b7, + 0xe5a0b8, + 0xe5a0b9, + 0xe5a0ba, + 0xe5a0bb, + 0xe5a0bc, + 0xe5a0bd, + 0xe5a0be, + 0xe5a0bf, + 0xe5a180, + 0xe5a181, + 0xe5a182, + 0xe5a183, + 0xe5a184, + 0xe5a185, + 0xe5a186, + 0xe5a187, + 0xe5a188, + 0xe5a189, + 0xe5a18a, + 0xe5a18b, + 0xe5a18c, + 0xe5a18d, + 0xe5a18e, + 0xe5a18f, + 0xe5a190, + 0xe5a191, + 0xe5a192, + 0xe5a193, + 0xe5a194, + 0xe5a195, + 0xe5a196, + 0xe5a197, + 0xe5a198, + 0xe5a199, + 0xe5a19a, + 0xe5a19b, + 0xe5a19c, + 0xe5a19d, + 0xe5a19e, + 0xe5a19f, + 0xe5a1a0, + 0xe5a1a1, + 0xe5a1a2, + 0xe5a1a3, + 0xe5a1a4, + 0xe5a1a5, + 0xe5a1a6, + 0xe5a1a7, + 0xe5a1a8, + 0xe5a1a9, + 0xe5a1aa, + 0xe5a1ab, + 0xe5a1ac, + 0xe5a1ad, + 0xe5a1ae, + 0xe5a1af, + 0xe5a1b0, + 0xe5a1b1, + 0xe5a1b2, + 0xe5a1b3, + 0xe5a1b4, + 0xe5a1b5, + 0xe5a1b6, + 0xe5a1b7, + 0xe5a1b8, + 0xe5a1b9, + 0xe5a1ba, + 0xe5a1bb, + 0xe5a1bc, + 0xe5a1bd, + 0xe5a1be, + 0xe5a1bf, + 0xe5a280, + 0xe5a281, + 0xe5a282, + 0xe5a283, + 0xe5a284, + 0xe5a285, + 0xe5a286, + 0xe5a287, + 0xe5a288, + 0xe5a289, + 0xe5a28a, + 0xe5a28b, + 0xe5a28c, + 0xe5a28d, + 0xe5a28e, + 0xe5a28f, + 0xe5a290, + 0xe5a291, + 0xe5a292, + 0xe5a293, + 0xe5a294, + 0xe5a295, + 0xe5a296, + 0xe5a297, + 0xe5a298, + 0xe5a299, + 0xe5a29a, + 0xe5a29b, + 0xe5a29c, + 0xe5a29d, + 0xe5a29e, + 0xe5a29f, + 0xe5a2a0, + 0xe5a2a1, + 0xe5a2a2, + 0xe5a2a3, + 0xe5a2a4, + 0xe5a2a5, + 0xe5a2a6, + 0xe5a2a7, + 0xe5a2a8, + 0xe5a2a9, + 0xe5a2aa, + 0xe5a2ab, + 0xe5a2ac, + 0xe5a2ad, + 0xe5a2ae, + 0xe5a2af, + 0xe5a2b0, + 0xe5a2b1, + 0xe5a2b2, + 0xe5a2b3, + 0xe5a2b4, + 0xe5a2b5, + 0xe5a2b6, + 0xe5a2b7, + 0xe5a2b8, + 0xe5a2b9, + 0xe5a2ba, + 0xe5a2bb, + 0xe5a2bc, + 0xe5a2bd, + 0xe5a2be, + 0xe5a2bf, + 0xe5a380, + 0xe5a381, + 0xe5a382, + 0xe5a383, + 0xe5a384, + 0xe5a385, + 0xe5a386, + 0xe5a387, + 0xe5a388, + 0xe5a389, + 0xe5a38a, + 0xe5a38b, + 0xe5a38c, + 0xe5a38d, + 0xe5a38e, + 0xe5a38f, + 0xe5a390, + 0xe5a391, + 0xe5a392, + 0xe5a393, + 0xe5a394, + 0xe5a395, + 0xe5a396, + 0xe5a397, + 0xe5a398, + 0xe5a399, + 0xe5a39a, + 0xe5a39b, + 0xe5a39c, + 0xe5a39d, + 0xe5a39e, + 0xe5a39f, + 0xe5a3a0, + 0xe5a3a1, + 0xe5a3a2, + 0xe5a3a3, + 0xe5a3a4, + 0xe5a3a5, + 0xe5a3a6, + 0xe5a3a7, + 0xe5a3a8, + 0xe5a3a9, + 0xe5a3aa, + 0xe5a3ab, + 0xe5a3ac, + 0xe5a3ad, + 0xe5a3ae, + 0xe5a3af, + 0xe5a3b0, + 0xe5a3b1, + 0xe5a3b2, + 0xe5a3b3, + 0xe5a3b4, + 0xe5a3b5, + 0xe5a3b6, + 0xe5a3b7, + 0xe5a3b8, + 0xe5a3b9, + 0xe5a3ba, + 0xe5a3bb, + 0xe5a3bc, + 0xe5a3bd, + 0xe5a3be, + 0xe5a3bf, + 0xe5a480, + 0xe5a481, + 0xe5a482, + 0xe5a483, + 0xe5a484, + 0xe5a485, + 0xe5a486, + 0xe5a487, + 0xe5a488, + 0xe5a489, + 0xe5a48a, + 0xe5a48b, + 0xe5a48c, + 0xe5a48d, + 0xe5a48e, + 0xe5a48f, + 0xe5a490, + 0xe5a491, + 0xe5a492, + 0xe5a493, + 0xe5a494, + 0xe5a495, + 0xe5a496, + 0xe5a497, + 0xe5a498, + 0xe5a499, + 0xe5a49a, + 0xe5a49b, + 0xe5a49c, + 0xe5a49d, + 0xe5a49e, + 0xe5a49f, + 0xe5a4a0, + 0xe5a4a1, + 0xe5a4a2, + 0xe5a4a3, + 0xe5a4a4, + 0xe5a4a5, + 0xe5a4a6, + 0xe5a4a7, + 0xe5a4a8, + 0xe5a4a9, + 0xe5a4aa, + 0xe5a4ab, + 0xe5a4ac, + 0xe5a4ad, + 0xe5a4ae, + 0xe5a4af, + 0xe5a4b0, + 0xe5a4b1, + 0xe5a4b2, + 0xe5a4b3, + 0xe5a4b4, + 0xe5a4b5, + 0xe5a4b6, + 0xe5a4b7, + 0xe5a4b8, + 0xe5a4b9, + 0xe5a4ba, + 0xe5a4bb, + 0xe5a4bc, + 0xe5a4bd, + 0xe5a4be, + 0xe5a4bf, + 0xe5a580, + 0xe5a581, + 0xe5a582, + 0xe5a583, + 0xe5a584, + 0xe5a585, + 0xe5a586, + 0xe5a587, + 0xe5a588, + 0xe5a589, + 0xe5a58a, + 0xe5a58b, + 0xe5a58c, + 0xe5a58d, + 0xe5a58e, + 0xe5a58f, + 0xe5a590, + 0xe5a591, + 0xe5a592, + 0xe5a593, + 0xe5a594, + 0xe5a595, + 0xe5a596, + 0xe5a597, + 0xe5a598, + 0xe5a599, + 0xe5a59a, + 0xe5a59b, + 0xe5a59c, + 0xe5a59d, + 0xe5a59e, + 0xe5a59f, + 0xe5a5a0, + 0xe5a5a1, + 0xe5a5a2, + 0xe5a5a3, + 0xe5a5a4, + 0xe5a5a5, + 0xe5a5a6, + 0xe5a5a7, + 0xe5a5a8, + 0xe5a5a9, + 0xe5a5aa, + 0xe5a5ab, + 0xe5a5ac, + 0xe5a5ad, + 0xe5a5ae, + 0xe5a5af, + 0xe5a5b0, + 0xe5a5b1, + 0xe5a5b2, + 0xe5a5b3, + 0xe5a5b4, + 0xe5a5b5, + 0xe5a5b6, + 0xe5a5b7, + 0xe5a5b8, + 0xe5a5b9, + 0xe5a5ba, + 0xe5a5bb, + 0xe5a5bc, + 0xe5a5bd, + 0xe5a5be, + 0xe5a5bf, + 0xe5a680, + 0xe5a681, + 0xe5a682, + 0xe5a683, + 0xe5a684, + 0xe5a685, + 0xe5a686, + 0xe5a687, + 0xe5a688, + 0xe5a689, + 0xe5a68a, + 0xe5a68b, + 0xe5a68c, + 0xe5a68d, + 0xe5a68e, + 0xe5a68f, + 0xe5a690, + 0xe5a691, + 0xe5a692, + 0xe5a693, + 0xe5a694, + 0xe5a695, + 0xe5a696, + 0xe5a697, + 0xe5a698, + 0xe5a699, + 0xe5a69a, + 0xe5a69b, + 0xe5a69c, + 0xe5a69d, + 0xe5a69e, + 0xe5a69f, + 0xe5a6a0, + 0xe5a6a1, + 0xe5a6a2, + 0xe5a6a3, + 0xe5a6a4, + 0xe5a6a5, + 0xe5a6a6, + 0xe5a6a7, + 0xe5a6a8, + 0xe5a6a9, + 0xe5a6aa, + 0xe5a6ab, + 0xe5a6ac, + 0xe5a6ad, + 0xe5a6ae, + 0xe5a6af, + 0xe5a6b0, + 0xe5a6b1, + 0xe5a6b2, + 0xe5a6b3, + 0xe5a6b4, + 0xe5a6b5, + 0xe5a6b6, + 0xe5a6b7, + 0xe5a6b8, + 0xe5a6b9, + 0xe5a6ba, + 0xe5a6bb, + 0xe5a6bc, + 0xe5a6bd, + 0xe5a6be, + 0xe5a6bf, + 0xe5a780, + 0xe5a781, + 0xe5a782, + 0xe5a783, + 0xe5a784, + 0xe5a785, + 0xe5a786, + 0xe5a787, + 0xe5a788, + 0xe5a789, + 0xe5a78a, + 0xe5a78b, + 0xe5a78c, + 0xe5a78d, + 0xe5a78e, + 0xe5a78f, + 0xe5a790, + 0xe5a791, + 0xe5a792, + 0xe5a793, + 0xe5a794, + 0xe5a795, + 0xe5a796, + 0xe5a797, + 0xe5a798, + 0xe5a799, + 0xe5a79a, + 0xe5a79b, + 0xe5a79c, + 0xe5a79d, + 0xe5a79e, + 0xe5a79f, + 0xe5a7a0, + 0xe5a7a1, + 0xe5a7a2, + 0xe5a7a3, + 0xe5a7a4, + 0xe5a7a5, + 0xe5a7a6, + 0xe5a7a7, + 0xe5a7a8, + 0xe5a7a9, + 0xe5a7aa, + 0xe5a7ab, + 0xe5a7ac, + 0xe5a7ad, + 0xe5a7ae, + 0xe5a7af, + 0xe5a7b0, + 0xe5a7b1, + 0xe5a7b2, + 0xe5a7b3, + 0xe5a7b4, + 0xe5a7b5, + 0xe5a7b6, + 0xe5a7b7, + 0xe5a7b8, + 0xe5a7b9, + 0xe5a7ba, + 0xe5a7bb, + 0xe5a7bc, + 0xe5a7bd, + 0xe5a7be, + 0xe5a7bf, + 0xe5a880, + 0xe5a881, + 0xe5a882, + 0xe5a883, + 0xe5a884, + 0xe5a885, + 0xe5a886, + 0xe5a887, + 0xe5a888, + 0xe5a889, + 0xe5a88a, + 0xe5a88b, + 0xe5a88c, + 0xe5a88d, + 0xe5a88e, + 0xe5a88f, + 0xe5a890, + 0xe5a891, + 0xe5a892, + 0xe5a893, + 0xe5a894, + 0xe5a895, + 0xe5a896, + 0xe5a897, + 0xe5a898, + 0xe5a899, + 0xe5a89a, + 0xe5a89b, + 0xe5a89c, + 0xe5a89d, + 0xe5a89e, + 0xe5a89f, + 0xe5a8a0, + 0xe5a8a1, + 0xe5a8a2, + 0xe5a8a3, + 0xe5a8a4, + 0xe5a8a5, + 0xe5a8a6, + 0xe5a8a7, + 0xe5a8a8, + 0xe5a8a9, + 0xe5a8aa, + 0xe5a8ab, + 0xe5a8ac, + 0xe5a8ad, + 0xe5a8ae, + 0xe5a8af, + 0xe5a8b0, + 0xe5a8b1, + 0xe5a8b2, + 0xe5a8b3, + 0xe5a8b4, + 0xe5a8b5, + 0xe5a8b6, + 0xe5a8b7, + 0xe5a8b8, + 0xe5a8b9, + 0xe5a8ba, + 0xe5a8bb, + 0xe5a8bc, + 0xe5a8bd, + 0xe5a8be, + 0xe5a8bf, + 0xe5a980, + 0xe5a981, + 0xe5a982, + 0xe5a983, + 0xe5a984, + 0xe5a985, + 0xe5a986, + 0xe5a987, + 0xe5a988, + 0xe5a989, + 0xe5a98a, + 0xe5a98b, + 0xe5a98c, + 0xe5a98d, + 0xe5a98e, + 0xe5a98f, + 0xe5a990, + 0xe5a991, + 0xe5a992, + 0xe5a993, + 0xe5a994, + 0xe5a995, + 0xe5a996, + 0xe5a997, + 0xe5a998, + 0xe5a999, + 0xe5a99a, + 0xe5a99b, + 0xe5a99c, + 0xe5a99d, + 0xe5a99e, + 0xe5a99f, + 0xe5a9a0, + 0xe5a9a1, + 0xe5a9a2, + 0xe5a9a3, + 0xe5a9a4, + 0xe5a9a5, + 0xe5a9a6, + 0xe5a9a7, + 0xe5a9a8, + 0xe5a9a9, + 0xe5a9aa, + 0xe5a9ab, + 0xe5a9ac, + 0xe5a9ad, + 0xe5a9ae, + 0xe5a9af, + 0xe5a9b0, + 0xe5a9b1, + 0xe5a9b2, + 0xe5a9b3, + 0xe5a9b4, + 0xe5a9b5, + 0xe5a9b6, + 0xe5a9b7, + 0xe5a9b8, + 0xe5a9b9, + 0xe5a9ba, + 0xe5a9bb, + 0xe5a9bc, + 0xe5a9bd, + 0xe5a9be, + 0xe5a9bf, + 0xe5aa80, + 0xe5aa81, + 0xe5aa82, + 0xe5aa83, + 0xe5aa84, + 0xe5aa85, + 0xe5aa86, + 0xe5aa87, + 0xe5aa88, + 0xe5aa89, + 0xe5aa8a, + 0xe5aa8b, + 0xe5aa8c, + 0xe5aa8d, + 0xe5aa8e, + 0xe5aa8f, + 0xe5aa90, + 0xe5aa91, + 0xe5aa92, + 0xe5aa93, + 0xe5aa94, + 0xe5aa95, + 0xe5aa96, + 0xe5aa97, + 0xe5aa98, + 0xe5aa99, + 0xe5aa9a, + 0xe5aa9b, + 0xe5aa9c, + 0xe5aa9d, + 0xe5aa9e, + 0xe5aa9f, + 0xe5aaa0, + 0xe5aaa1, + 0xe5aaa2, + 0xe5aaa3, + 0xe5aaa4, + 0xe5aaa5, + 0xe5aaa6, + 0xe5aaa7, + 0xe5aaa8, + 0xe5aaa9, + 0xe5aaaa, + 0xe5aaab, + 0xe5aaac, + 0xe5aaad, + 0xe5aaae, + 0xe5aaaf, + 0xe5aab0, + 0xe5aab1, + 0xe5aab2, + 0xe5aab3, + 0xe5aab4, + 0xe5aab5, + 0xe5aab6, + 0xe5aab7, + 0xe5aab8, + 0xe5aab9, + 0xe5aaba, + 0xe5aabb, + 0xe5aabc, + 0xe5aabd, + 0xe5aabe, + 0xe5aabf, + 0xe5ab80, + 0xe5ab81, + 0xe5ab82, + 0xe5ab83, + 0xe5ab84, + 0xe5ab85, + 0xe5ab86, + 0xe5ab87, + 0xe5ab88, + 0xe5ab89, + 0xe5ab8a, + 0xe5ab8b, + 0xe5ab8c, + 0xe5ab8d, + 0xe5ab8e, + 0xe5ab8f, + 0xe5ab90, + 0xe5ab91, + 0xe5ab92, + 0xe5ab93, + 0xe5ab94, + 0xe5ab95, + 0xe5ab96, + 0xe5ab97, + 0xe5ab98, + 0xe5ab99, + 0xe5ab9a, + 0xe5ab9b, + 0xe5ab9c, + 0xe5ab9d, + 0xe5ab9e, + 0xe5ab9f, + 0xe5aba0, + 0xe5aba1, + 0xe5aba2, + 0xe5aba3, + 0xe5aba4, + 0xe5aba5, + 0xe5aba6, + 0xe5aba7, + 0xe5aba8, + 0xe5aba9, + 0xe5abaa, + 0xe5abab, + 0xe5abac, + 0xe5abad, + 0xe5abae, + 0xe5abaf, + 0xe5abb0, + 0xe5abb1, + 0xe5abb2, + 0xe5abb3, + 0xe5abb4, + 0xe5abb5, + 0xe5abb6, + 0xe5abb7, + 0xe5abb8, + 0xe5abb9, + 0xe5abba, + 0xe5abbb, + 0xe5abbc, + 0xe5abbd, + 0xe5abbe, + 0xe5abbf, + 0xe5ac80, + 0xe5ac81, + 0xe5ac82, + 0xe5ac83, + 0xe5ac84, + 0xe5ac85, + 0xe5ac86, + 0xe5ac87, + 0xe5ac88, + 0xe5ac89, + 0xe5ac8a, + 0xe5ac8b, + 0xe5ac8c, + 0xe5ac8d, + 0xe5ac8e, + 0xe5ac8f, + 0xe5ac90, + 0xe5ac91, + 0xe5ac92, + 0xe5ac93, + 0xe5ac94, + 0xe5ac95, + 0xe5ac96, + 0xe5ac97, + 0xe5ac98, + 0xe5ac99, + 0xe5ac9a, + 0xe5ac9b, + 0xe5ac9c, + 0xe5ac9d, + 0xe5ac9e, + 0xe5ac9f, + 0xe5aca0, + 0xe5aca1, + 0xe5aca2, + 0xe5aca3, + 0xe5aca4, + 0xe5aca5, + 0xe5aca6, + 0xe5aca7, + 0xe5aca8, + 0xe5aca9, + 0xe5acaa, + 0xe5acab, + 0xe5acac, + 0xe5acad, + 0xe5acae, + 0xe5acaf, + 0xe5acb0, + 0xe5acb1, + 0xe5acb2, + 0xe5acb3, + 0xe5acb4, + 0xe5acb5, + 0xe5acb6, + 0xe5acb7, + 0xe5acb8, + 0xe5acb9, + 0xe5acba, + 0xe5acbb, + 0xe5acbc, + 0xe5acbd, + 0xe5acbe, + 0xe5acbf, + 0xe5ad80, + 0xe5ad81, + 0xe5ad82, + 0xe5ad83, + 0xe5ad84, + 0xe5ad85, + 0xe5ad86, + 0xe5ad87, + 0xe5ad88, + 0xe5ad89, + 0xe5ad8a, + 0xe5ad8b, + 0xe5ad8c, + 0xe5ad8d, + 0xe5ad8e, + 0xe5ad8f, + 0xe5ad90, + 0xe5ad91, + 0xe5ad92, + 0xe5ad93, + 0xe5ad94, + 0xe5ad95, + 0xe5ad96, + 0xe5ad97, + 0xe5ad98, + 0xe5ad99, + 0xe5ad9a, + 0xe5ad9b, + 0xe5ad9c, + 0xe5ad9d, + 0xe5ad9e, + 0xe5ad9f, + 0xe5ada0, + 0xe5ada1, + 0xe5ada2, + 0xe5ada3, + 0xe5ada4, + 0xe5ada5, + 0xe5ada6, + 0xe5ada7, + 0xe5ada8, + 0xe5ada9, + 0xe5adaa, + 0xe5adab, + 0xe5adac, + 0xe5adad, + 0xe5adae, + 0xe5adaf, + 0xe5adb0, + 0xe5adb1, + 0xe5adb2, + 0xe5adb3, + 0xe5adb4, + 0xe5adb5, + 0xe5adb6, + 0xe5adb7, + 0xe5adb8, + 0xe5adb9, + 0xe5adba, + 0xe5adbb, + 0xe5adbc, + 0xe5adbd, + 0xe5adbe, + 0xe5adbf, + 0xe5ae80, + 0xe5ae81, + 0xe5ae82, + 0xe5ae83, + 0xe5ae84, + 0xe5ae85, + 0xe5ae86, + 0xe5ae87, + 0xe5ae88, + 0xe5ae89, + 0xe5ae8a, + 0xe5ae8b, + 0xe5ae8c, + 0xe5ae8d, + 0xe5ae8e, + 0xe5ae8f, + 0xe5ae90, + 0xe5ae91, + 0xe5ae92, + 0xe5ae93, + 0xe5ae94, + 0xe5ae95, + 0xe5ae96, + 0xe5ae97, + 0xe5ae98, + 0xe5ae99, + 0xe5ae9a, + 0xe5ae9b, + 0xe5ae9c, + 0xe5ae9d, + 0xe5ae9e, + 0xe5ae9f, + 0xe5aea0, + 0xe5aea1, + 0xe5aea2, + 0xe5aea3, + 0xe5aea4, + 0xe5aea5, + 0xe5aea6, + 0xe5aea7, + 0xe5aea8, + 0xe5aea9, + 0xe5aeaa, + 0xe5aeab, + 0xe5aeac, + 0xe5aead, + 0xe5aeae, + 0xe5aeaf, + 0xe5aeb0, + 0xe5aeb1, + 0xe5aeb2, + 0xe5aeb3, + 0xe5aeb4, + 0xe5aeb5, + 0xe5aeb6, + 0xe5aeb7, + 0xe5aeb8, + 0xe5aeb9, + 0xe5aeba, + 0xe5aebb, + 0xe5aebc, + 0xe5aebd, + 0xe5aebe, + 0xe5aebf, + 0xe5af80, + 0xe5af81, + 0xe5af82, + 0xe5af83, + 0xe5af84, + 0xe5af85, + 0xe5af86, + 0xe5af87, + 0xe5af88, + 0xe5af89, + 0xe5af8a, + 0xe5af8b, + 0xe5af8c, + 0xe5af8d, + 0xe5af8e, + 0xe5af8f, + 0xe5af90, + 0xe5af91, + 0xe5af92, + 0xe5af93, + 0xe5af94, + 0xe5af95, + 0xe5af96, + 0xe5af97, + 0xe5af98, + 0xe5af99, + 0xe5af9a, + 0xe5af9b, + 0xe5af9c, + 0xe5af9d, + 0xe5af9e, + 0xe5af9f, + 0xe5afa0, + 0xe5afa1, + 0xe5afa2, + 0xe5afa3, + 0xe5afa4, + 0xe5afa5, + 0xe5afa6, + 0xe5afa7, + 0xe5afa8, + 0xe5afa9, + 0xe5afaa, + 0xe5afab, + 0xe5afac, + 0xe5afad, + 0xe5afae, + 0xe5afaf, + 0xe5afb0, + 0xe5afb1, + 0xe5afb2, + 0xe5afb3, + 0xe5afb4, + 0xe5afb5, + 0xe5afb6, + 0xe5afb7, + 0xe5afb8, + 0xe5afb9, + 0xe5afba, + 0xe5afbb, + 0xe5afbc, + 0xe5afbd, + 0xe5afbe, + 0xe5afbf, + 0xe5b080, + 0xe5b081, + 0xe5b082, + 0xe5b083, + 0xe5b084, + 0xe5b085, + 0xe5b086, + 0xe5b087, + 0xe5b088, + 0xe5b089, + 0xe5b08a, + 0xe5b08b, + 0xe5b08c, + 0xe5b08d, + 0xe5b08e, + 0xe5b08f, + 0xe5b090, + 0xe5b091, + 0xe5b092, + 0xe5b093, + 0xe5b094, + 0xe5b095, + 0xe5b096, + 0xe5b097, + 0xe5b098, + 0xe5b099, + 0xe5b09a, + 0xe5b09b, + 0xe5b09c, + 0xe5b09d, + 0xe5b09e, + 0xe5b09f, + 0xe5b0a0, + 0xe5b0a1, + 0xe5b0a2, + 0xe5b0a3, + 0xe5b0a4, + 0xe5b0a5, + 0xe5b0a6, + 0xe5b0a7, + 0xe5b0a8, + 0xe5b0a9, + 0xe5b0aa, + 0xe5b0ab, + 0xe5b0ac, + 0xe5b0ad, + 0xe5b0ae, + 0xe5b0af, + 0xe5b0b0, + 0xe5b0b1, + 0xe5b0b2, + 0xe5b0b3, + 0xe5b0b4, + 0xe5b0b5, + 0xe5b0b6, + 0xe5b0b7, + 0xe5b0b8, + 0xe5b0b9, + 0xe5b0ba, + 0xe5b0bb, + 0xe5b0bc, + 0xe5b0bd, + 0xe5b0be, + 0xe5b0bf, + 0xe5b180, + 0xe5b181, + 0xe5b182, + 0xe5b183, + 0xe5b184, + 0xe5b185, + 0xe5b186, + 0xe5b187, + 0xe5b188, + 0xe5b189, + 0xe5b18a, + 0xe5b18b, + 0xe5b18c, + 0xe5b18d, + 0xe5b18e, + 0xe5b18f, + 0xe5b190, + 0xe5b191, + 0xe5b192, + 0xe5b193, + 0xe5b194, + 0xe5b195, + 0xe5b196, + 0xe5b197, + 0xe5b198, + 0xe5b199, + 0xe5b19a, + 0xe5b19b, + 0xe5b19c, + 0xe5b19d, + 0xe5b19e, + 0xe5b19f, + 0xe5b1a0, + 0xe5b1a1, + 0xe5b1a2, + 0xe5b1a3, + 0xe5b1a4, + 0xe5b1a5, + 0xe5b1a6, + 0xe5b1a7, + 0xe5b1a8, + 0xe5b1a9, + 0xe5b1aa, + 0xe5b1ab, + 0xe5b1ac, + 0xe5b1ad, + 0xe5b1ae, + 0xe5b1af, + 0xe5b1b0, + 0xe5b1b1, + 0xe5b1b2, + 0xe5b1b3, + 0xe5b1b4, + 0xe5b1b5, + 0xe5b1b6, + 0xe5b1b7, + 0xe5b1b8, + 0xe5b1b9, + 0xe5b1ba, + 0xe5b1bb, + 0xe5b1bc, + 0xe5b1bd, + 0xe5b1be, + 0xe5b1bf, + 0xe5b280, + 0xe5b281, + 0xe5b282, + 0xe5b283, + 0xe5b284, + 0xe5b285, + 0xe5b286, + 0xe5b287, + 0xe5b288, + 0xe5b289, + 0xe5b28a, + 0xe5b28b, + 0xe5b28c, + 0xe5b28d, + 0xe5b28e, + 0xe5b28f, + 0xe5b290, + 0xe5b291, + 0xe5b292, + 0xe5b293, + 0xe5b294, + 0xe5b295, + 0xe5b296, + 0xe5b297, + 0xe5b298, + 0xe5b299, + 0xe5b29a, + 0xe5b29b, + 0xe5b29c, + 0xe5b29d, + 0xe5b29e, + 0xe5b29f, + 0xe5b2a0, + 0xe5b2a1, + 0xe5b2a2, + 0xe5b2a3, + 0xe5b2a4, + 0xe5b2a5, + 0xe5b2a6, + 0xe5b2a7, + 0xe5b2a8, + 0xe5b2a9, + 0xe5b2aa, + 0xe5b2ab, + 0xe5b2ac, + 0xe5b2ad, + 0xe5b2ae, + 0xe5b2af, + 0xe5b2b0, + 0xe5b2b1, + 0xe5b2b2, + 0xe5b2b3, + 0xe5b2b4, + 0xe5b2b5, + 0xe5b2b6, + 0xe5b2b7, + 0xe5b2b8, + 0xe5b2b9, + 0xe5b2ba, + 0xe5b2bb, + 0xe5b2bc, + 0xe5b2bd, + 0xe5b2be, + 0xe5b2bf, + 0xe5b380, + 0xe5b381, + 0xe5b382, + 0xe5b383, + 0xe5b384, + 0xe5b385, + 0xe5b386, + 0xe5b387, + 0xe5b388, + 0xe5b389, + 0xe5b38a, + 0xe5b38b, + 0xe5b38c, + 0xe5b38d, + 0xe5b38e, + 0xe5b38f, + 0xe5b390, + 0xe5b391, + 0xe5b392, + 0xe5b393, + 0xe5b394, + 0xe5b395, + 0xe5b396, + 0xe5b397, + 0xe5b398, + 0xe5b399, + 0xe5b39a, + 0xe5b39b, + 0xe5b39c, + 0xe5b39d, + 0xe5b39e, + 0xe5b39f, + 0xe5b3a0, + 0xe5b3a1, + 0xe5b3a2, + 0xe5b3a3, + 0xe5b3a4, + 0xe5b3a5, + 0xe5b3a6, + 0xe5b3a7, + 0xe5b3a8, + 0xe5b3a9, + 0xe5b3aa, + 0xe5b3ab, + 0xe5b3ac, + 0xe5b3ad, + 0xe5b3ae, + 0xe5b3af, + 0xe5b3b0, + 0xe5b3b1, + 0xe5b3b2, + 0xe5b3b3, + 0xe5b3b4, + 0xe5b3b5, + 0xe5b3b6, + 0xe5b3b7, + 0xe5b3b8, + 0xe5b3b9, + 0xe5b3ba, + 0xe5b3bb, + 0xe5b3bc, + 0xe5b3bd, + 0xe5b3be, + 0xe5b3bf, + 0xe5b480, + 0xe5b481, + 0xe5b482, + 0xe5b483, + 0xe5b484, + 0xe5b485, + 0xe5b486, + 0xe5b487, + 0xe5b488, + 0xe5b489, + 0xe5b48a, + 0xe5b48b, + 0xe5b48c, + 0xe5b48d, + 0xe5b48e, + 0xe5b48f, + 0xe5b490, + 0xe5b491, + 0xe5b492, + 0xe5b493, + 0xe5b494, + 0xe5b495, + 0xe5b496, + 0xe5b497, + 0xe5b498, + 0xe5b499, + 0xe5b49a, + 0xe5b49b, + 0xe5b49c, + 0xe5b49d, + 0xe5b49e, + 0xe5b49f, + 0xe5b4a0, + 0xe5b4a1, + 0xe5b4a2, + 0xe5b4a3, + 0xe5b4a4, + 0xe5b4a5, + 0xe5b4a6, + 0xe5b4a7, + 0xe5b4a8, + 0xe5b4a9, + 0xe5b4aa, + 0xe5b4ab, + 0xe5b4ac, + 0xe5b4ad, + 0xe5b4ae, + 0xe5b4af, + 0xe5b4b0, + 0xe5b4b1, + 0xe5b4b2, + 0xe5b4b3, + 0xe5b4b4, + 0xe5b4b5, + 0xe5b4b6, + 0xe5b4b7, + 0xe5b4b8, + 0xe5b4b9, + 0xe5b4ba, + 0xe5b4bb, + 0xe5b4bc, + 0xe5b4bd, + 0xe5b4be, + 0xe5b4bf, + 0xe5b580, + 0xe5b581, + 0xe5b582, + 0xe5b583, + 0xe5b584, + 0xe5b585, + 0xe5b586, + 0xe5b587, + 0xe5b588, + 0xe5b589, + 0xe5b58a, + 0xe5b58b, + 0xe5b58c, + 0xe5b58d, + 0xe5b58e, + 0xe5b58f, + 0xe5b590, + 0xe5b591, + 0xe5b592, + 0xe5b593, + 0xe5b594, + 0xe5b595, + 0xe5b596, + 0xe5b597, + 0xe5b598, + 0xe5b599, + 0xe5b59a, + 0xe5b59b, + 0xe5b59c, + 0xe5b59d, + 0xe5b59e, + 0xe5b59f, + 0xe5b5a0, + 0xe5b5a1, + 0xe5b5a2, + 0xe5b5a3, + 0xe5b5a4, + 0xe5b5a5, + 0xe5b5a6, + 0xe5b5a7, + 0xe5b5a8, + 0xe5b5a9, + 0xe5b5aa, + 0xe5b5ab, + 0xe5b5ac, + 0xe5b5ad, + 0xe5b5ae, + 0xe5b5af, + 0xe5b5b0, + 0xe5b5b1, + 0xe5b5b2, + 0xe5b5b3, + 0xe5b5b4, + 0xe5b5b5, + 0xe5b5b6, + 0xe5b5b7, + 0xe5b5b8, + 0xe5b5b9, + 0xe5b5ba, + 0xe5b5bb, + 0xe5b5bc, + 0xe5b5bd, + 0xe5b5be, + 0xe5b5bf, + 0xe5b680, + 0xe5b681, + 0xe5b682, + 0xe5b683, + 0xe5b684, + 0xe5b685, + 0xe5b686, + 0xe5b687, + 0xe5b688, + 0xe5b689, + 0xe5b68a, + 0xe5b68b, + 0xe5b68c, + 0xe5b68d, + 0xe5b68e, + 0xe5b68f, + 0xe5b690, + 0xe5b691, + 0xe5b692, + 0xe5b693, + 0xe5b694, + 0xe5b695, + 0xe5b696, + 0xe5b697, + 0xe5b698, + 0xe5b699, + 0xe5b69a, + 0xe5b69b, + 0xe5b69c, + 0xe5b69d, + 0xe5b69e, + 0xe5b69f, + 0xe5b6a0, + 0xe5b6a1, + 0xe5b6a2, + 0xe5b6a3, + 0xe5b6a4, + 0xe5b6a5, + 0xe5b6a6, + 0xe5b6a7, + 0xe5b6a8, + 0xe5b6a9, + 0xe5b6aa, + 0xe5b6ab, + 0xe5b6ac, + 0xe5b6ad, + 0xe5b6ae, + 0xe5b6af, + 0xe5b6b0, + 0xe5b6b1, + 0xe5b6b2, + 0xe5b6b3, + 0xe5b6b4, + 0xe5b6b5, + 0xe5b6b6, + 0xe5b6b7, + 0xe5b6b8, + 0xe5b6b9, + 0xe5b6ba, + 0xe5b6bb, + 0xe5b6bc, + 0xe5b6bd, + 0xe5b6be, + 0xe5b6bf, + 0xe5b780, + 0xe5b781, + 0xe5b782, + 0xe5b783, + 0xe5b784, + 0xe5b785, + 0xe5b786, + 0xe5b787, + 0xe5b788, + 0xe5b789, + 0xe5b78a, + 0xe5b78b, + 0xe5b78c, + 0xe5b78d, + 0xe5b78e, + 0xe5b78f, + 0xe5b790, + 0xe5b791, + 0xe5b792, + 0xe5b793, + 0xe5b794, + 0xe5b795, + 0xe5b796, + 0xe5b797, + 0xe5b798, + 0xe5b799, + 0xe5b79a, + 0xe5b79b, + 0xe5b79c, + 0xe5b79d, + 0xe5b79e, + 0xe5b79f, + 0xe5b7a0, + 0xe5b7a1, + 0xe5b7a2, + 0xe5b7a3, + 0xe5b7a4, + 0xe5b7a5, + 0xe5b7a6, + 0xe5b7a7, + 0xe5b7a8, + 0xe5b7a9, + 0xe5b7aa, + 0xe5b7ab, + 0xe5b7ac, + 0xe5b7ad, + 0xe5b7ae, + 0xe5b7af, + 0xe5b7b0, + 0xe5b7b1, + 0xe5b7b2, + 0xe5b7b3, + 0xe5b7b4, + 0xe5b7b5, + 0xe5b7b6, + 0xe5b7b7, + 0xe5b7b8, + 0xe5b7b9, + 0xe5b7ba, + 0xe5b7bb, + 0xe5b7bc, + 0xe5b7bd, + 0xe5b7be, + 0xe5b7bf, + 0xe5b880, + 0xe5b881, + 0xe5b882, + 0xe5b883, + 0xe5b884, + 0xe5b885, + 0xe5b886, + 0xe5b887, + 0xe5b888, + 0xe5b889, + 0xe5b88a, + 0xe5b88b, + 0xe5b88c, + 0xe5b88d, + 0xe5b88e, + 0xe5b88f, + 0xe5b890, + 0xe5b891, + 0xe5b892, + 0xe5b893, + 0xe5b894, + 0xe5b895, + 0xe5b896, + 0xe5b897, + 0xe5b898, + 0xe5b899, + 0xe5b89a, + 0xe5b89b, + 0xe5b89c, + 0xe5b89d, + 0xe5b89e, + 0xe5b89f, + 0xe5b8a0, + 0xe5b8a1, + 0xe5b8a2, + 0xe5b8a3, + 0xe5b8a4, + 0xe5b8a5, + 0xe5b8a6, + 0xe5b8a7, + 0xe5b8a8, + 0xe5b8a9, + 0xe5b8aa, + 0xe5b8ab, + 0xe5b8ac, + 0xe5b8ad, + 0xe5b8ae, + 0xe5b8af, + 0xe5b8b0, + 0xe5b8b1, + 0xe5b8b2, + 0xe5b8b3, + 0xe5b8b4, + 0xe5b8b5, + 0xe5b8b6, + 0xe5b8b7, + 0xe5b8b8, + 0xe5b8b9, + 0xe5b8ba, + 0xe5b8bb, + 0xe5b8bc, + 0xe5b8bd, + 0xe5b8be, + 0xe5b8bf, + 0xe5b980, + 0xe5b981, + 0xe5b982, + 0xe5b983, + 0xe5b984, + 0xe5b985, + 0xe5b986, + 0xe5b987, + 0xe5b988, + 0xe5b989, + 0xe5b98a, + 0xe5b98b, + 0xe5b98c, + 0xe5b98d, + 0xe5b98e, + 0xe5b98f, + 0xe5b990, + 0xe5b991, + 0xe5b992, + 0xe5b993, + 0xe5b994, + 0xe5b995, + 0xe5b996, + 0xe5b997, + 0xe5b998, + 0xe5b999, + 0xe5b99a, + 0xe5b99b, + 0xe5b99c, + 0xe5b99d, + 0xe5b99e, + 0xe5b99f, + 0xe5b9a0, + 0xe5b9a1, + 0xe5b9a2, + 0xe5b9a3, + 0xe5b9a4, + 0xe5b9a5, + 0xe5b9a6, + 0xe5b9a7, + 0xe5b9a8, + 0xe5b9a9, + 0xe5b9aa, + 0xe5b9ab, + 0xe5b9ac, + 0xe5b9ad, + 0xe5b9ae, + 0xe5b9af, + 0xe5b9b0, + 0xe5b9b1, + 0xe5b9b2, + 0xe5b9b3, + 0xe5b9b4, + 0xe5b9b5, + 0xe5b9b6, + 0xe5b9b7, + 0xe5b9b8, + 0xe5b9b9, + 0xe5b9ba, + 0xe5b9bb, + 0xe5b9bc, + 0xe5b9bd, + 0xe5b9be, + 0xe5b9bf, + 0xe5ba80, + 0xe5ba81, + 0xe5ba82, + 0xe5ba83, + 0xe5ba84, + 0xe5ba85, + 0xe5ba86, + 0xe5ba87, + 0xe5ba88, + 0xe5ba89, + 0xe5ba8a, + 0xe5ba8b, + 0xe5ba8c, + 0xe5ba8d, + 0xe5ba8e, + 0xe5ba8f, + 0xe5ba90, + 0xe5ba91, + 0xe5ba92, + 0xe5ba93, + 0xe5ba94, + 0xe5ba95, + 0xe5ba96, + 0xe5ba97, + 0xe5ba98, + 0xe5ba99, + 0xe5ba9a, + 0xe5ba9b, + 0xe5ba9c, + 0xe5ba9d, + 0xe5ba9e, + 0xe5ba9f, + 0xe5baa0, + 0xe5baa1, + 0xe5baa2, + 0xe5baa3, + 0xe5baa4, + 0xe5baa5, + 0xe5baa6, + 0xe5baa7, + 0xe5baa8, + 0xe5baa9, + 0xe5baaa, + 0xe5baab, + 0xe5baac, + 0xe5baad, + 0xe5baae, + 0xe5baaf, + 0xe5bab0, + 0xe5bab1, + 0xe5bab2, + 0xe5bab3, + 0xe5bab4, + 0xe5bab5, + 0xe5bab6, + 0xe5bab7, + 0xe5bab8, + 0xe5bab9, + 0xe5baba, + 0xe5babb, + 0xe5babc, + 0xe5babd, + 0xe5babe, + 0xe5babf, + 0xe5bb80, + 0xe5bb81, + 0xe5bb82, + 0xe5bb83, + 0xe5bb84, + 0xe5bb85, + 0xe5bb86, + 0xe5bb87, + 0xe5bb88, + 0xe5bb89, + 0xe5bb8a, + 0xe5bb8b, + 0xe5bb8c, + 0xe5bb8d, + 0xe5bb8e, + 0xe5bb8f, + 0xe5bb90, + 0xe5bb91, + 0xe5bb92, + 0xe5bb93, + 0xe5bb94, + 0xe5bb95, + 0xe5bb96, + 0xe5bb97, + 0xe5bb98, + 0xe5bb99, + 0xe5bb9a, + 0xe5bb9b, + 0xe5bb9c, + 0xe5bb9d, + 0xe5bb9e, + 0xe5bb9f, + 0xe5bba0, + 0xe5bba1, + 0xe5bba2, + 0xe5bba3, + 0xe5bba4, + 0xe5bba5, + 0xe5bba6, + 0xe5bba7, + 0xe5bba8, + 0xe5bba9, + 0xe5bbaa, + 0xe5bbab, + 0xe5bbac, + 0xe5bbad, + 0xe5bbae, + 0xe5bbaf, + 0xe5bbb0, + 0xe5bbb1, + 0xe5bbb2, + 0xe5bbb3, + 0xe5bbb4, + 0xe5bbb5, + 0xe5bbb6, + 0xe5bbb7, + 0xe5bbb8, + 0xe5bbb9, + 0xe5bbba, + 0xe5bbbb, + 0xe5bbbc, + 0xe5bbbd, + 0xe5bbbe, + 0xe5bbbf, + 0xe5bc80, + 0xe5bc81, + 0xe5bc82, + 0xe5bc83, + 0xe5bc84, + 0xe5bc85, + 0xe5bc86, + 0xe5bc87, + 0xe5bc88, + 0xe5bc89, + 0xe5bc8a, + 0xe5bc8b, + 0xe5bc8c, + 0xe5bc8d, + 0xe5bc8e, + 0xe5bc8f, + 0xe5bc90, + 0xe5bc91, + 0xe5bc92, + 0xe5bc93, + 0xe5bc94, + 0xe5bc95, + 0xe5bc96, + 0xe5bc97, + 0xe5bc98, + 0xe5bc99, + 0xe5bc9a, + 0xe5bc9b, + 0xe5bc9c, + 0xe5bc9d, + 0xe5bc9e, + 0xe5bc9f, + 0xe5bca0, + 0xe5bca1, + 0xe5bca2, + 0xe5bca3, + 0xe5bca4, + 0xe5bca5, + 0xe5bca6, + 0xe5bca7, + 0xe5bca8, + 0xe5bca9, + 0xe5bcaa, + 0xe5bcab, + 0xe5bcac, + 0xe5bcad, + 0xe5bcae, + 0xe5bcaf, + 0xe5bcb0, + 0xe5bcb1, + 0xe5bcb2, + 0xe5bcb3, + 0xe5bcb4, + 0xe5bcb5, + 0xe5bcb6, + 0xe5bcb7, + 0xe5bcb8, + 0xe5bcb9, + 0xe5bcba, + 0xe5bcbb, + 0xe5bcbc, + 0xe5bcbd, + 0xe5bcbe, + 0xe5bcbf, + 0xe5bd80, + 0xe5bd81, + 0xe5bd82, + 0xe5bd83, + 0xe5bd84, + 0xe5bd85, + 0xe5bd86, + 0xe5bd87, + 0xe5bd88, + 0xe5bd89, + 0xe5bd8a, + 0xe5bd8b, + 0xe5bd8c, + 0xe5bd8d, + 0xe5bd8e, + 0xe5bd8f, + 0xe5bd90, + 0xe5bd91, + 0xe5bd92, + 0xe5bd93, + 0xe5bd94, + 0xe5bd95, + 0xe5bd96, + 0xe5bd97, + 0xe5bd98, + 0xe5bd99, + 0xe5bd9a, + 0xe5bd9b, + 0xe5bd9c, + 0xe5bd9d, + 0xe5bd9e, + 0xe5bd9f, + 0xe5bda0, + 0xe5bda1, + 0xe5bda2, + 0xe5bda3, + 0xe5bda4, + 0xe5bda5, + 0xe5bda6, + 0xe5bda7, + 0xe5bda8, + 0xe5bda9, + 0xe5bdaa, + 0xe5bdab, + 0xe5bdac, + 0xe5bdad, + 0xe5bdae, + 0xe5bdaf, + 0xe5bdb0, + 0xe5bdb1, + 0xe5bdb2, + 0xe5bdb3, + 0xe5bdb4, + 0xe5bdb5, + 0xe5bdb6, + 0xe5bdb7, + 0xe5bdb8, + 0xe5bdb9, + 0xe5bdba, + 0xe5bdbb, + 0xe5bdbc, + 0xe5bdbd, + 0xe5bdbe, + 0xe5bdbf, + 0xe5be80, + 0xe5be81, + 0xe5be82, + 0xe5be83, + 0xe5be84, + 0xe5be85, + 0xe5be86, + 0xe5be87, + 0xe5be88, + 0xe5be89, + 0xe5be8a, + 0xe5be8b, + 0xe5be8c, + 0xe5be8d, + 0xe5be8e, + 0xe5be8f, + 0xe5be90, + 0xe5be91, + 0xe5be92, + 0xe5be93, + 0xe5be94, + 0xe5be95, + 0xe5be96, + 0xe5be97, + 0xe5be98, + 0xe5be99, + 0xe5be9a, + 0xe5be9b, + 0xe5be9c, + 0xe5be9d, + 0xe5be9e, + 0xe5be9f, + 0xe5bea0, + 0xe5bea1, + 0xe5bea2, + 0xe5bea3, + 0xe5bea4, + 0xe5bea5, + 0xe5bea6, + 0xe5bea7, + 0xe5bea8, + 0xe5bea9, + 0xe5beaa, + 0xe5beab, + 0xe5beac, + 0xe5bead, + 0xe5beae, + 0xe5beaf, + 0xe5beb0, + 0xe5beb1, + 0xe5beb2, + 0xe5beb3, + 0xe5beb4, + 0xe5beb5, + 0xe5beb6, + 0xe5beb7, + 0xe5beb8, + 0xe5beb9, + 0xe5beba, + 0xe5bebb, + 0xe5bebc, + 0xe5bebd, + 0xe5bebe, + 0xe5bebf, + 0xe5bf80, + 0xe5bf81, + 0xe5bf82, + 0xe5bf83, + 0xe5bf84, + 0xe5bf85, + 0xe5bf86, + 0xe5bf87, + 0xe5bf88, + 0xe5bf89, + 0xe5bf8a, + 0xe5bf8b, + 0xe5bf8c, + 0xe5bf8d, + 0xe5bf8e, + 0xe5bf8f, + 0xe5bf90, + 0xe5bf91, + 0xe5bf92, + 0xe5bf93, + 0xe5bf94, + 0xe5bf95, + 0xe5bf96, + 0xe5bf97, + 0xe5bf98, + 0xe5bf99, + 0xe5bf9a, + 0xe5bf9b, + 0xe5bf9c, + 0xe5bf9d, + 0xe5bf9e, + 0xe5bf9f, + 0xe5bfa0, + 0xe5bfa1, + 0xe5bfa2, + 0xe5bfa3, + 0xe5bfa4, + 0xe5bfa5, + 0xe5bfa6, + 0xe5bfa7, + 0xe5bfa8, + 0xe5bfa9, + 0xe5bfaa, + 0xe5bfab, + 0xe5bfac, + 0xe5bfad, + 0xe5bfae, + 0xe5bfaf, + 0xe5bfb0, + 0xe5bfb1, + 0xe5bfb2, + 0xe5bfb3, + 0xe5bfb4, + 0xe5bfb5, + 0xe5bfb6, + 0xe5bfb7, + 0xe5bfb8, + 0xe5bfb9, + 0xe5bfba, + 0xe5bfbb, + 0xe5bfbc, + 0xe5bfbd, + 0xe5bfbe, + 0xe5bfbf, + 0xe68080, + 0xe68081, + 0xe68082, + 0xe68083, + 0xe68084, + 0xe68085, + 0xe68086, + 0xe68087, + 0xe68088, + 0xe68089, + 0xe6808a, + 0xe6808b, + 0xe6808c, + 0xe6808d, + 0xe6808e, + 0xe6808f, + 0xe68090, + 0xe68091, + 0xe68092, + 0xe68093, + 0xe68094, + 0xe68095, + 0xe68096, + 0xe68097, + 0xe68098, + 0xe68099, + 0xe6809a, + 0xe6809b, + 0xe6809c, + 0xe6809d, + 0xe6809e, + 0xe6809f, + 0xe680a0, + 0xe680a1, + 0xe680a2, + 0xe680a3, + 0xe680a4, + 0xe680a5, + 0xe680a6, + 0xe680a7, + 0xe680a8, + 0xe680a9, + 0xe680aa, + 0xe680ab, + 0xe680ac, + 0xe680ad, + 0xe680ae, + 0xe680af, + 0xe680b0, + 0xe680b1, + 0xe680b2, + 0xe680b3, + 0xe680b4, + 0xe680b5, + 0xe680b6, + 0xe680b7, + 0xe680b8, + 0xe680b9, + 0xe680ba, + 0xe680bb, + 0xe680bc, + 0xe680bd, + 0xe680be, + 0xe680bf, + 0xe68180, + 0xe68181, + 0xe68182, + 0xe68183, + 0xe68184, + 0xe68185, + 0xe68186, + 0xe68187, + 0xe68188, + 0xe68189, + 0xe6818a, + 0xe6818b, + 0xe6818c, + 0xe6818d, + 0xe6818e, + 0xe6818f, + 0xe68190, + 0xe68191, + 0xe68192, + 0xe68193, + 0xe68194, + 0xe68195, + 0xe68196, + 0xe68197, + 0xe68198, + 0xe68199, + 0xe6819a, + 0xe6819b, + 0xe6819c, + 0xe6819d, + 0xe6819e, + 0xe6819f, + 0xe681a0, + 0xe681a1, + 0xe681a2, + 0xe681a3, + 0xe681a4, + 0xe681a5, + 0xe681a6, + 0xe681a7, + 0xe681a8, + 0xe681a9, + 0xe681aa, + 0xe681ab, + 0xe681ac, + 0xe681ad, + 0xe681ae, + 0xe681af, + 0xe681b0, + 0xe681b1, + 0xe681b2, + 0xe681b3, + 0xe681b4, + 0xe681b5, + 0xe681b6, + 0xe681b7, + 0xe681b8, + 0xe681b9, + 0xe681ba, + 0xe681bb, + 0xe681bc, + 0xe681bd, + 0xe681be, + 0xe681bf, + 0xe68280, + 0xe68281, + 0xe68282, + 0xe68283, + 0xe68284, + 0xe68285, + 0xe68286, + 0xe68287, + 0xe68288, + 0xe68289, + 0xe6828a, + 0xe6828b, + 0xe6828c, + 0xe6828d, + 0xe6828e, + 0xe6828f, + 0xe68290, + 0xe68291, + 0xe68292, + 0xe68293, + 0xe68294, + 0xe68295, + 0xe68296, + 0xe68297, + 0xe68298, + 0xe68299, + 0xe6829a, + 0xe6829b, + 0xe6829c, + 0xe6829d, + 0xe6829e, + 0xe6829f, + 0xe682a0, + 0xe682a1, + 0xe682a2, + 0xe682a3, + 0xe682a4, + 0xe682a5, + 0xe682a6, + 0xe682a7, + 0xe682a8, + 0xe682a9, + 0xe682aa, + 0xe682ab, + 0xe682ac, + 0xe682ad, + 0xe682ae, + 0xe682af, + 0xe682b0, + 0xe682b1, + 0xe682b2, + 0xe682b3, + 0xe682b4, + 0xe682b5, + 0xe682b6, + 0xe682b7, + 0xe682b8, + 0xe682b9, + 0xe682ba, + 0xe682bb, + 0xe682bc, + 0xe682bd, + 0xe682be, + 0xe682bf, + 0xe68380, + 0xe68381, + 0xe68382, + 0xe68383, + 0xe68384, + 0xe68385, + 0xe68386, + 0xe68387, + 0xe68388, + 0xe68389, + 0xe6838a, + 0xe6838b, + 0xe6838c, + 0xe6838d, + 0xe6838e, + 0xe6838f, + 0xe68390, + 0xe68391, + 0xe68392, + 0xe68393, + 0xe68394, + 0xe68395, + 0xe68396, + 0xe68397, + 0xe68398, + 0xe68399, + 0xe6839a, + 0xe6839b, + 0xe6839c, + 0xe6839d, + 0xe6839e, + 0xe6839f, + 0xe683a0, + 0xe683a1, + 0xe683a2, + 0xe683a3, + 0xe683a4, + 0xe683a5, + 0xe683a6, + 0xe683a7, + 0xe683a8, + 0xe683a9, + 0xe683aa, + 0xe683ab, + 0xe683ac, + 0xe683ad, + 0xe683ae, + 0xe683af, + 0xe683b0, + 0xe683b1, + 0xe683b2, + 0xe683b3, + 0xe683b4, + 0xe683b5, + 0xe683b6, + 0xe683b7, + 0xe683b8, + 0xe683b9, + 0xe683ba, + 0xe683bb, + 0xe683bc, + 0xe683bd, + 0xe683be, + 0xe683bf, + 0xe68480, + 0xe68481, + 0xe68482, + 0xe68483, + 0xe68484, + 0xe68485, + 0xe68486, + 0xe68487, + 0xe68488, + 0xe68489, + 0xe6848a, + 0xe6848b, + 0xe6848c, + 0xe6848d, + 0xe6848e, + 0xe6848f, + 0xe68490, + 0xe68491, + 0xe68492, + 0xe68493, + 0xe68494, + 0xe68495, + 0xe68496, + 0xe68497, + 0xe68498, + 0xe68499, + 0xe6849a, + 0xe6849b, + 0xe6849c, + 0xe6849d, + 0xe6849e, + 0xe6849f, + 0xe684a0, + 0xe684a1, + 0xe684a2, + 0xe684a3, + 0xe684a4, + 0xe684a5, + 0xe684a6, + 0xe684a7, + 0xe684a8, + 0xe684a9, + 0xe684aa, + 0xe684ab, + 0xe684ac, + 0xe684ad, + 0xe684ae, + 0xe684af, + 0xe684b0, + 0xe684b1, + 0xe684b2, + 0xe684b3, + 0xe684b4, + 0xe684b5, + 0xe684b6, + 0xe684b7, + 0xe684b8, + 0xe684b9, + 0xe684ba, + 0xe684bb, + 0xe684bc, + 0xe684bd, + 0xe684be, + 0xe684bf, + 0xe68580, + 0xe68581, + 0xe68582, + 0xe68583, + 0xe68584, + 0xe68585, + 0xe68586, + 0xe68587, + 0xe68588, + 0xe68589, + 0xe6858a, + 0xe6858b, + 0xe6858c, + 0xe6858d, + 0xe6858e, + 0xe6858f, + 0xe68590, + 0xe68591, + 0xe68592, + 0xe68593, + 0xe68594, + 0xe68595, + 0xe68596, + 0xe68597, + 0xe68598, + 0xe68599, + 0xe6859a, + 0xe6859b, + 0xe6859c, + 0xe6859d, + 0xe6859e, + 0xe6859f, + 0xe685a0, + 0xe685a1, + 0xe685a2, + 0xe685a3, + 0xe685a4, + 0xe685a5, + 0xe685a6, + 0xe685a7, + 0xe685a8, + 0xe685a9, + 0xe685aa, + 0xe685ab, + 0xe685ac, + 0xe685ad, + 0xe685ae, + 0xe685af, + 0xe685b0, + 0xe685b1, + 0xe685b2, + 0xe685b3, + 0xe685b4, + 0xe685b5, + 0xe685b6, + 0xe685b7, + 0xe685b8, + 0xe685b9, + 0xe685ba, + 0xe685bb, + 0xe685bc, + 0xe685bd, + 0xe685be, + 0xe685bf, + 0xe68680, + 0xe68681, + 0xe68682, + 0xe68683, + 0xe68684, + 0xe68685, + 0xe68686, + 0xe68687, + 0xe68688, + 0xe68689, + 0xe6868a, + 0xe6868b, + 0xe6868c, + 0xe6868d, + 0xe6868e, + 0xe6868f, + 0xe68690, + 0xe68691, + 0xe68692, + 0xe68693, + 0xe68694, + 0xe68695, + 0xe68696, + 0xe68697, + 0xe68698, + 0xe68699, + 0xe6869a, + 0xe6869b, + 0xe6869c, + 0xe6869d, + 0xe6869e, + 0xe6869f, + 0xe686a0, + 0xe686a1, + 0xe686a2, + 0xe686a3, + 0xe686a4, + 0xe686a5, + 0xe686a6, + 0xe686a7, + 0xe686a8, + 0xe686a9, + 0xe686aa, + 0xe686ab, + 0xe686ac, + 0xe686ad, + 0xe686ae, + 0xe686af, + 0xe686b0, + 0xe686b1, + 0xe686b2, + 0xe686b3, + 0xe686b4, + 0xe686b5, + 0xe686b6, + 0xe686b7, + 0xe686b8, + 0xe686b9, + 0xe686ba, + 0xe686bb, + 0xe686bc, + 0xe686bd, + 0xe686be, + 0xe686bf, + 0xe68780, + 0xe68781, + 0xe68782, + 0xe68783, + 0xe68784, + 0xe68785, + 0xe68786, + 0xe68787, + 0xe68788, + 0xe68789, + 0xe6878a, + 0xe6878b, + 0xe6878c, + 0xe6878d, + 0xe6878e, + 0xe6878f, + 0xe68790, + 0xe68791, + 0xe68792, + 0xe68793, + 0xe68794, + 0xe68795, + 0xe68796, + 0xe68797, + 0xe68798, + 0xe68799, + 0xe6879a, + 0xe6879b, + 0xe6879c, + 0xe6879d, + 0xe6879e, + 0xe6879f, + 0xe687a0, + 0xe687a1, + 0xe687a2, + 0xe687a3, + 0xe687a4, + 0xe687a5, + 0xe687a6, + 0xe687a7, + 0xe687a8, + 0xe687a9, + 0xe687aa, + 0xe687ab, + 0xe687ac, + 0xe687ad, + 0xe687ae, + 0xe687af, + 0xe687b0, + 0xe687b1, + 0xe687b2, + 0xe687b3, + 0xe687b4, + 0xe687b5, + 0xe687b6, + 0xe687b7, + 0xe687b8, + 0xe687b9, + 0xe687ba, + 0xe687bb, + 0xe687bc, + 0xe687bd, + 0xe687be, + 0xe687bf, + 0xe68880, + 0xe68881, + 0xe68882, + 0xe68883, + 0xe68884, + 0xe68885, + 0xe68886, + 0xe68887, + 0xe68888, + 0xe68889, + 0xe6888a, + 0xe6888b, + 0xe6888c, + 0xe6888d, + 0xe6888e, + 0xe6888f, + 0xe68890, + 0xe68891, + 0xe68892, + 0xe68893, + 0xe68894, + 0xe68895, + 0xe68896, + 0xe68897, + 0xe68898, + 0xe68899, + 0xe6889a, + 0xe6889b, + 0xe6889c, + 0xe6889d, + 0xe6889e, + 0xe6889f, + 0xe688a0, + 0xe688a1, + 0xe688a2, + 0xe688a3, + 0xe688a4, + 0xe688a5, + 0xe688a6, + 0xe688a7, + 0xe688a8, + 0xe688a9, + 0xe688aa, + 0xe688ab, + 0xe688ac, + 0xe688ad, + 0xe688ae, + 0xe688af, + 0xe688b0, + 0xe688b1, + 0xe688b2, + 0xe688b3, + 0xe688b4, + 0xe688b5, + 0xe688b6, + 0xe688b7, + 0xe688b8, + 0xe688b9, + 0xe688ba, + 0xe688bb, + 0xe688bc, + 0xe688bd, + 0xe688be, + 0xe688bf, + 0xe68980, + 0xe68981, + 0xe68982, + 0xe68983, + 0xe68984, + 0xe68985, + 0xe68986, + 0xe68987, + 0xe68988, + 0xe68989, + 0xe6898a, + 0xe6898b, + 0xe6898c, + 0xe6898d, + 0xe6898e, + 0xe6898f, + 0xe68990, + 0xe68991, + 0xe68992, + 0xe68993, + 0xe68994, + 0xe68995, + 0xe68996, + 0xe68997, + 0xe68998, + 0xe68999, + 0xe6899a, + 0xe6899b, + 0xe6899c, + 0xe6899d, + 0xe6899e, + 0xe6899f, + 0xe689a0, + 0xe689a1, + 0xe689a2, + 0xe689a3, + 0xe689a4, + 0xe689a5, + 0xe689a6, + 0xe689a7, + 0xe689a8, + 0xe689a9, + 0xe689aa, + 0xe689ab, + 0xe689ac, + 0xe689ad, + 0xe689ae, + 0xe689af, + 0xe689b0, + 0xe689b1, + 0xe689b2, + 0xe689b3, + 0xe689b4, + 0xe689b5, + 0xe689b6, + 0xe689b7, + 0xe689b8, + 0xe689b9, + 0xe689ba, + 0xe689bb, + 0xe689bc, + 0xe689bd, + 0xe689be, + 0xe689bf, + 0xe68a80, + 0xe68a81, + 0xe68a82, + 0xe68a83, + 0xe68a84, + 0xe68a85, + 0xe68a86, + 0xe68a87, + 0xe68a88, + 0xe68a89, + 0xe68a8a, + 0xe68a8b, + 0xe68a8c, + 0xe68a8d, + 0xe68a8e, + 0xe68a8f, + 0xe68a90, + 0xe68a91, + 0xe68a92, + 0xe68a93, + 0xe68a94, + 0xe68a95, + 0xe68a96, + 0xe68a97, + 0xe68a98, + 0xe68a99, + 0xe68a9a, + 0xe68a9b, + 0xe68a9c, + 0xe68a9d, + 0xe68a9e, + 0xe68a9f, + 0xe68aa0, + 0xe68aa1, + 0xe68aa2, + 0xe68aa3, + 0xe68aa4, + 0xe68aa5, + 0xe68aa6, + 0xe68aa7, + 0xe68aa8, + 0xe68aa9, + 0xe68aaa, + 0xe68aab, + 0xe68aac, + 0xe68aad, + 0xe68aae, + 0xe68aaf, + 0xe68ab0, + 0xe68ab1, + 0xe68ab2, + 0xe68ab3, + 0xe68ab4, + 0xe68ab5, + 0xe68ab6, + 0xe68ab7, + 0xe68ab8, + 0xe68ab9, + 0xe68aba, + 0xe68abb, + 0xe68abc, + 0xe68abd, + 0xe68abe, + 0xe68abf, + 0xe68b80, + 0xe68b81, + 0xe68b82, + 0xe68b83, + 0xe68b84, + 0xe68b85, + 0xe68b86, + 0xe68b87, + 0xe68b88, + 0xe68b89, + 0xe68b8a, + 0xe68b8b, + 0xe68b8c, + 0xe68b8d, + 0xe68b8e, + 0xe68b8f, + 0xe68b90, + 0xe68b91, + 0xe68b92, + 0xe68b93, + 0xe68b94, + 0xe68b95, + 0xe68b96, + 0xe68b97, + 0xe68b98, + 0xe68b99, + 0xe68b9a, + 0xe68b9b, + 0xe68b9c, + 0xe68b9d, + 0xe68b9e, + 0xe68b9f, + 0xe68ba0, + 0xe68ba1, + 0xe68ba2, + 0xe68ba3, + 0xe68ba4, + 0xe68ba5, + 0xe68ba6, + 0xe68ba7, + 0xe68ba8, + 0xe68ba9, + 0xe68baa, + 0xe68bab, + 0xe68bac, + 0xe68bad, + 0xe68bae, + 0xe68baf, + 0xe68bb0, + 0xe68bb1, + 0xe68bb2, + 0xe68bb3, + 0xe68bb4, + 0xe68bb5, + 0xe68bb6, + 0xe68bb7, + 0xe68bb8, + 0xe68bb9, + 0xe68bba, + 0xe68bbb, + 0xe68bbc, + 0xe68bbd, + 0xe68bbe, + 0xe68bbf, + 0xe68c80, + 0xe68c81, + 0xe68c82, + 0xe68c83, + 0xe68c84, + 0xe68c85, + 0xe68c86, + 0xe68c87, + 0xe68c88, + 0xe68c89, + 0xe68c8a, + 0xe68c8b, + 0xe68c8c, + 0xe68c8d, + 0xe68c8e, + 0xe68c8f, + 0xe68c90, + 0xe68c91, + 0xe68c92, + 0xe68c93, + 0xe68c94, + 0xe68c95, + 0xe68c96, + 0xe68c97, + 0xe68c98, + 0xe68c99, + 0xe68c9a, + 0xe68c9b, + 0xe68c9c, + 0xe68c9d, + 0xe68c9e, + 0xe68c9f, + 0xe68ca0, + 0xe68ca1, + 0xe68ca2, + 0xe68ca3, + 0xe68ca4, + 0xe68ca5, + 0xe68ca6, + 0xe68ca7, + 0xe68ca8, + 0xe68ca9, + 0xe68caa, + 0xe68cab, + 0xe68cac, + 0xe68cad, + 0xe68cae, + 0xe68caf, + 0xe68cb0, + 0xe68cb1, + 0xe68cb2, + 0xe68cb3, + 0xe68cb4, + 0xe68cb5, + 0xe68cb6, + 0xe68cb7, + 0xe68cb8, + 0xe68cb9, + 0xe68cba, + 0xe68cbb, + 0xe68cbc, + 0xe68cbd, + 0xe68cbe, + 0xe68cbf, + 0xe68d80, + 0xe68d81, + 0xe68d82, + 0xe68d83, + 0xe68d84, + 0xe68d85, + 0xe68d86, + 0xe68d87, + 0xe68d88, + 0xe68d89, + 0xe68d8a, + 0xe68d8b, + 0xe68d8c, + 0xe68d8d, + 0xe68d8e, + 0xe68d8f, + 0xe68d90, + 0xe68d91, + 0xe68d92, + 0xe68d93, + 0xe68d94, + 0xe68d95, + 0xe68d96, + 0xe68d97, + 0xe68d98, + 0xe68d99, + 0xe68d9a, + 0xe68d9b, + 0xe68d9c, + 0xe68d9d, + 0xe68d9e, + 0xe68d9f, + 0xe68da0, + 0xe68da1, + 0xe68da2, + 0xe68da3, + 0xe68da4, + 0xe68da5, + 0xe68da6, + 0xe68da7, + 0xe68da8, + 0xe68da9, + 0xe68daa, + 0xe68dab, + 0xe68dac, + 0xe68dad, + 0xe68dae, + 0xe68daf, + 0xe68db0, + 0xe68db1, + 0xe68db2, + 0xe68db3, + 0xe68db4, + 0xe68db5, + 0xe68db6, + 0xe68db7, + 0xe68db8, + 0xe68db9, + 0xe68dba, + 0xe68dbb, + 0xe68dbc, + 0xe68dbd, + 0xe68dbe, + 0xe68dbf, + 0xe68e80, + 0xe68e81, + 0xe68e82, + 0xe68e83, + 0xe68e84, + 0xe68e85, + 0xe68e86, + 0xe68e87, + 0xe68e88, + 0xe68e89, + 0xe68e8a, + 0xe68e8b, + 0xe68e8c, + 0xe68e8d, + 0xe68e8e, + 0xe68e8f, + 0xe68e90, + 0xe68e91, + 0xe68e92, + 0xe68e93, + 0xe68e94, + 0xe68e95, + 0xe68e96, + 0xe68e97, + 0xe68e98, + 0xe68e99, + 0xe68e9a, + 0xe68e9b, + 0xe68e9c, + 0xe68e9d, + 0xe68e9e, + 0xe68e9f, + 0xe68ea0, + 0xe68ea1, + 0xe68ea2, + 0xe68ea3, + 0xe68ea4, + 0xe68ea5, + 0xe68ea6, + 0xe68ea7, + 0xe68ea8, + 0xe68ea9, + 0xe68eaa, + 0xe68eab, + 0xe68eac, + 0xe68ead, + 0xe68eae, + 0xe68eaf, + 0xe68eb0, + 0xe68eb1, + 0xe68eb2, + 0xe68eb3, + 0xe68eb4, + 0xe68eb5, + 0xe68eb6, + 0xe68eb7, + 0xe68eb8, + 0xe68eb9, + 0xe68eba, + 0xe68ebb, + 0xe68ebc, + 0xe68ebd, + 0xe68ebe, + 0xe68ebf, + 0xe68f80, + 0xe68f81, + 0xe68f82, + 0xe68f83, + 0xe68f84, + 0xe68f85, + 0xe68f86, + 0xe68f87, + 0xe68f88, + 0xe68f89, + 0xe68f8a, + 0xe68f8b, + 0xe68f8c, + 0xe68f8d, + 0xe68f8e, + 0xe68f8f, + 0xe68f90, + 0xe68f91, + 0xe68f92, + 0xe68f93, + 0xe68f94, + 0xe68f95, + 0xe68f96, + 0xe68f97, + 0xe68f98, + 0xe68f99, + 0xe68f9a, + 0xe68f9b, + 0xe68f9c, + 0xe68f9d, + 0xe68f9e, + 0xe68f9f, + 0xe68fa0, + 0xe68fa1, + 0xe68fa2, + 0xe68fa3, + 0xe68fa4, + 0xe68fa5, + 0xe68fa6, + 0xe68fa7, + 0xe68fa8, + 0xe68fa9, + 0xe68faa, + 0xe68fab, + 0xe68fac, + 0xe68fad, + 0xe68fae, + 0xe68faf, + 0xe68fb0, + 0xe68fb1, + 0xe68fb2, + 0xe68fb3, + 0xe68fb4, + 0xe68fb5, + 0xe68fb6, + 0xe68fb7, + 0xe68fb8, + 0xe68fb9, + 0xe68fba, + 0xe68fbb, + 0xe68fbc, + 0xe68fbd, + 0xe68fbe, + 0xe68fbf, + 0xe69080, + 0xe69081, + 0xe69082, + 0xe69083, + 0xe69084, + 0xe69085, + 0xe69086, + 0xe69087, + 0xe69088, + 0xe69089, + 0xe6908a, + 0xe6908b, + 0xe6908c, + 0xe6908d, + 0xe6908e, + 0xe6908f, + 0xe69090, + 0xe69091, + 0xe69092, + 0xe69093, + 0xe69094, + 0xe69095, + 0xe69096, + 0xe69097, + 0xe69098, + 0xe69099, + 0xe6909a, + 0xe6909b, + 0xe6909c, + 0xe6909d, + 0xe6909e, + 0xe6909f, + 0xe690a0, + 0xe690a1, + 0xe690a2, + 0xe690a3, + 0xe690a4, + 0xe690a5, + 0xe690a6, + 0xe690a7, + 0xe690a8, + 0xe690a9, + 0xe690aa, + 0xe690ab, + 0xe690ac, + 0xe690ad, + 0xe690ae, + 0xe690af, + 0xe690b0, + 0xe690b1, + 0xe690b2, + 0xe690b3, + 0xe690b4, + 0xe690b5, + 0xe690b6, + 0xe690b7, + 0xe690b8, + 0xe690b9, + 0xe690ba, + 0xe690bb, + 0xe690bc, + 0xe690bd, + 0xe690be, + 0xe690bf, + 0xe69180, + 0xe69181, + 0xe69182, + 0xe69183, + 0xe69184, + 0xe69185, + 0xe69186, + 0xe69187, + 0xe69188, + 0xe69189, + 0xe6918a, + 0xe6918b, + 0xe6918c, + 0xe6918d, + 0xe6918e, + 0xe6918f, + 0xe69190, + 0xe69191, + 0xe69192, + 0xe69193, + 0xe69194, + 0xe69195, + 0xe69196, + 0xe69197, + 0xe69198, + 0xe69199, + 0xe6919a, + 0xe6919b, + 0xe6919c, + 0xe6919d, + 0xe6919e, + 0xe6919f, + 0xe691a0, + 0xe691a1, + 0xe691a2, + 0xe691a3, + 0xe691a4, + 0xe691a5, + 0xe691a6, + 0xe691a7, + 0xe691a8, + 0xe691a9, + 0xe691aa, + 0xe691ab, + 0xe691ac, + 0xe691ad, + 0xe691ae, + 0xe691af, + 0xe691b0, + 0xe691b1, + 0xe691b2, + 0xe691b3, + 0xe691b4, + 0xe691b5, + 0xe691b6, + 0xe691b7, + 0xe691b8, + 0xe691b9, + 0xe691ba, + 0xe691bb, + 0xe691bc, + 0xe691bd, + 0xe691be, + 0xe691bf, + 0xe69280, + 0xe69281, + 0xe69282, + 0xe69283, + 0xe69284, + 0xe69285, + 0xe69286, + 0xe69287, + 0xe69288, + 0xe69289, + 0xe6928a, + 0xe6928b, + 0xe6928c, + 0xe6928d, + 0xe6928e, + 0xe6928f, + 0xe69290, + 0xe69291, + 0xe69292, + 0xe69293, + 0xe69294, + 0xe69295, + 0xe69296, + 0xe69297, + 0xe69298, + 0xe69299, + 0xe6929a, + 0xe6929b, + 0xe6929c, + 0xe6929d, + 0xe6929e, + 0xe6929f, + 0xe692a0, + 0xe692a1, + 0xe692a2, + 0xe692a3, + 0xe692a4, + 0xe692a5, + 0xe692a6, + 0xe692a7, + 0xe692a8, + 0xe692a9, + 0xe692aa, + 0xe692ab, + 0xe692ac, + 0xe692ad, + 0xe692ae, + 0xe692af, + 0xe692b0, + 0xe692b1, + 0xe692b2, + 0xe692b3, + 0xe692b4, + 0xe692b5, + 0xe692b6, + 0xe692b7, + 0xe692b8, + 0xe692b9, + 0xe692ba, + 0xe692bb, + 0xe692bc, + 0xe692bd, + 0xe692be, + 0xe692bf, + 0xe69380, + 0xe69381, + 0xe69382, + 0xe69383, + 0xe69384, + 0xe69385, + 0xe69386, + 0xe69387, + 0xe69388, + 0xe69389, + 0xe6938a, + 0xe6938b, + 0xe6938c, + 0xe6938d, + 0xe6938e, + 0xe6938f, + 0xe69390, + 0xe69391, + 0xe69392, + 0xe69393, + 0xe69394, + 0xe69395, + 0xe69396, + 0xe69397, + 0xe69398, + 0xe69399, + 0xe6939a, + 0xe6939b, + 0xe6939c, + 0xe6939d, + 0xe6939e, + 0xe6939f, + 0xe693a0, + 0xe693a1, + 0xe693a2, + 0xe693a3, + 0xe693a4, + 0xe693a5, + 0xe693a6, + 0xe693a7, + 0xe693a8, + 0xe693a9, + 0xe693aa, + 0xe693ab, + 0xe693ac, + 0xe693ad, + 0xe693ae, + 0xe693af, + 0xe693b0, + 0xe693b1, + 0xe693b2, + 0xe693b3, + 0xe693b4, + 0xe693b5, + 0xe693b6, + 0xe693b7, + 0xe693b8, + 0xe693b9, + 0xe693ba, + 0xe693bb, + 0xe693bc, + 0xe693bd, + 0xe693be, + 0xe693bf, + 0xe69480, + 0xe69481, + 0xe69482, + 0xe69483, + 0xe69484, + 0xe69485, + 0xe69486, + 0xe69487, + 0xe69488, + 0xe69489, + 0xe6948a, + 0xe6948b, + 0xe6948c, + 0xe6948d, + 0xe6948e, + 0xe6948f, + 0xe69490, + 0xe69491, + 0xe69492, + 0xe69493, + 0xe69494, + 0xe69495, + 0xe69496, + 0xe69497, + 0xe69498, + 0xe69499, + 0xe6949a, + 0xe6949b, + 0xe6949c, + 0xe6949d, + 0xe6949e, + 0xe6949f, + 0xe694a0, + 0xe694a1, + 0xe694a2, + 0xe694a3, + 0xe694a4, + 0xe694a5, + 0xe694a6, + 0xe694a7, + 0xe694a8, + 0xe694a9, + 0xe694aa, + 0xe694ab, + 0xe694ac, + 0xe694ad, + 0xe694ae, + 0xe694af, + 0xe694b0, + 0xe694b1, + 0xe694b2, + 0xe694b3, + 0xe694b4, + 0xe694b5, + 0xe694b6, + 0xe694b7, + 0xe694b8, + 0xe694b9, + 0xe694ba, + 0xe694bb, + 0xe694bc, + 0xe694bd, + 0xe694be, + 0xe694bf, + 0xe69580, + 0xe69581, + 0xe69582, + 0xe69583, + 0xe69584, + 0xe69585, + 0xe69586, + 0xe69587, + 0xe69588, + 0xe69589, + 0xe6958a, + 0xe6958b, + 0xe6958c, + 0xe6958d, + 0xe6958e, + 0xe6958f, + 0xe69590, + 0xe69591, + 0xe69592, + 0xe69593, + 0xe69594, + 0xe69595, + 0xe69596, + 0xe69597, + 0xe69598, + 0xe69599, + 0xe6959a, + 0xe6959b, + 0xe6959c, + 0xe6959d, + 0xe6959e, + 0xe6959f, + 0xe695a0, + 0xe695a1, + 0xe695a2, + 0xe695a3, + 0xe695a4, + 0xe695a5, + 0xe695a6, + 0xe695a7, + 0xe695a8, + 0xe695a9, + 0xe695aa, + 0xe695ab, + 0xe695ac, + 0xe695ad, + 0xe695ae, + 0xe695af, + 0xe695b0, + 0xe695b1, + 0xe695b2, + 0xe695b3, + 0xe695b4, + 0xe695b5, + 0xe695b6, + 0xe695b7, + 0xe695b8, + 0xe695b9, + 0xe695ba, + 0xe695bb, + 0xe695bc, + 0xe695bd, + 0xe695be, + 0xe695bf, + 0xe69680, + 0xe69681, + 0xe69682, + 0xe69683, + 0xe69684, + 0xe69685, + 0xe69686, + 0xe69687, + 0xe69688, + 0xe69689, + 0xe6968a, + 0xe6968b, + 0xe6968c, + 0xe6968d, + 0xe6968e, + 0xe6968f, + 0xe69690, + 0xe69691, + 0xe69692, + 0xe69693, + 0xe69694, + 0xe69695, + 0xe69696, + 0xe69697, + 0xe69698, + 0xe69699, + 0xe6969a, + 0xe6969b, + 0xe6969c, + 0xe6969d, + 0xe6969e, + 0xe6969f, + 0xe696a0, + 0xe696a1, + 0xe696a2, + 0xe696a3, + 0xe696a4, + 0xe696a5, + 0xe696a6, + 0xe696a7, + 0xe696a8, + 0xe696a9, + 0xe696aa, + 0xe696ab, + 0xe696ac, + 0xe696ad, + 0xe696ae, + 0xe696af, + 0xe696b0, + 0xe696b1, + 0xe696b2, + 0xe696b3, + 0xe696b4, + 0xe696b5, + 0xe696b6, + 0xe696b7, + 0xe696b8, + 0xe696b9, + 0xe696ba, + 0xe696bb, + 0xe696bc, + 0xe696bd, + 0xe696be, + 0xe696bf, + 0xe69780, + 0xe69781, + 0xe69782, + 0xe69783, + 0xe69784, + 0xe69785, + 0xe69786, + 0xe69787, + 0xe69788, + 0xe69789, + 0xe6978a, + 0xe6978b, + 0xe6978c, + 0xe6978d, + 0xe6978e, + 0xe6978f, + 0xe69790, + 0xe69791, + 0xe69792, + 0xe69793, + 0xe69794, + 0xe69795, + 0xe69796, + 0xe69797, + 0xe69798, + 0xe69799, + 0xe6979a, + 0xe6979b, + 0xe6979c, + 0xe6979d, + 0xe6979e, + 0xe6979f, + 0xe697a0, + 0xe697a1, + 0xe697a2, + 0xe697a3, + 0xe697a4, + 0xe697a5, + 0xe697a6, + 0xe697a7, + 0xe697a8, + 0xe697a9, + 0xe697aa, + 0xe697ab, + 0xe697ac, + 0xe697ad, + 0xe697ae, + 0xe697af, + 0xe697b0, + 0xe697b1, + 0xe697b2, + 0xe697b3, + 0xe697b4, + 0xe697b5, + 0xe697b6, + 0xe697b7, + 0xe697b8, + 0xe697b9, + 0xe697ba, + 0xe697bb, + 0xe697bc, + 0xe697bd, + 0xe697be, + 0xe697bf, + 0xe69880, + 0xe69881, + 0xe69882, + 0xe69883, + 0xe69884, + 0xe69885, + 0xe69886, + 0xe69887, + 0xe69888, + 0xe69889, + 0xe6988a, + 0xe6988b, + 0xe6988c, + 0xe6988d, + 0xe6988e, + 0xe6988f, + 0xe69890, + 0xe69891, + 0xe69892, + 0xe69893, + 0xe69894, + 0xe69895, + 0xe69896, + 0xe69897, + 0xe69898, + 0xe69899, + 0xe6989a, + 0xe6989b, + 0xe6989c, + 0xe6989d, + 0xe6989e, + 0xe6989f, + 0xe698a0, + 0xe698a1, + 0xe698a2, + 0xe698a3, + 0xe698a4, + 0xe698a5, + 0xe698a6, + 0xe698a7, + 0xe698a8, + 0xe698a9, + 0xe698aa, + 0xe698ab, + 0xe698ac, + 0xe698ad, + 0xe698ae, + 0xe698af, + 0xe698b0, + 0xe698b1, + 0xe698b2, + 0xe698b3, + 0xe698b4, + 0xe698b5, + 0xe698b6, + 0xe698b7, + 0xe698b8, + 0xe698b9, + 0xe698ba, + 0xe698bb, + 0xe698bc, + 0xe698bd, + 0xe698be, + 0xe698bf, + 0xe69980, + 0xe69981, + 0xe69982, + 0xe69983, + 0xe69984, + 0xe69985, + 0xe69986, + 0xe69987, + 0xe69988, + 0xe69989, + 0xe6998a, + 0xe6998b, + 0xe6998c, + 0xe6998d, + 0xe6998e, + 0xe6998f, + 0xe69990, + 0xe69991, + 0xe69992, + 0xe69993, + 0xe69994, + 0xe69995, + 0xe69996, + 0xe69997, + 0xe69998, + 0xe69999, + 0xe6999a, + 0xe6999b, + 0xe6999c, + 0xe6999d, + 0xe6999e, + 0xe6999f, + 0xe699a0, + 0xe699a1, + 0xe699a2, + 0xe699a3, + 0xe699a4, + 0xe699a5, + 0xe699a6, + 0xe699a7, + 0xe699a8, + 0xe699a9, + 0xe699aa, + 0xe699ab, + 0xe699ac, + 0xe699ad, + 0xe699ae, + 0xe699af, + 0xe699b0, + 0xe699b1, + 0xe699b2, + 0xe699b3, + 0xe699b4, + 0xe699b5, + 0xe699b6, + 0xe699b7, + 0xe699b8, + 0xe699b9, + 0xe699ba, + 0xe699bb, + 0xe699bc, + 0xe699bd, + 0xe699be, + 0xe699bf, + 0xe69a80, + 0xe69a81, + 0xe69a82, + 0xe69a83, + 0xe69a84, + 0xe69a85, + 0xe69a86, + 0xe69a87, + 0xe69a88, + 0xe69a89, + 0xe69a8a, + 0xe69a8b, + 0xe69a8c, + 0xe69a8d, + 0xe69a8e, + 0xe69a8f, + 0xe69a90, + 0xe69a91, + 0xe69a92, + 0xe69a93, + 0xe69a94, + 0xe69a95, + 0xe69a96, + 0xe69a97, + 0xe69a98, + 0xe69a99, + 0xe69a9a, + 0xe69a9b, + 0xe69a9c, + 0xe69a9d, + 0xe69a9e, + 0xe69a9f, + 0xe69aa0, + 0xe69aa1, + 0xe69aa2, + 0xe69aa3, + 0xe69aa4, + 0xe69aa5, + 0xe69aa6, + 0xe69aa7, + 0xe69aa8, + 0xe69aa9, + 0xe69aaa, + 0xe69aab, + 0xe69aac, + 0xe69aad, + 0xe69aae, + 0xe69aaf, + 0xe69ab0, + 0xe69ab1, + 0xe69ab2, + 0xe69ab3, + 0xe69ab4, + 0xe69ab5, + 0xe69ab6, + 0xe69ab7, + 0xe69ab8, + 0xe69ab9, + 0xe69aba, + 0xe69abb, + 0xe69abc, + 0xe69abd, + 0xe69abe, + 0xe69abf, + 0xe69b80, + 0xe69b81, + 0xe69b82, + 0xe69b83, + 0xe69b84, + 0xe69b85, + 0xe69b86, + 0xe69b87, + 0xe69b88, + 0xe69b89, + 0xe69b8a, + 0xe69b8b, + 0xe69b8c, + 0xe69b8d, + 0xe69b8e, + 0xe69b8f, + 0xe69b90, + 0xe69b91, + 0xe69b92, + 0xe69b93, + 0xe69b94, + 0xe69b95, + 0xe69b96, + 0xe69b97, + 0xe69b98, + 0xe69b99, + 0xe69b9a, + 0xe69b9b, + 0xe69b9c, + 0xe69b9d, + 0xe69b9e, + 0xe69b9f, + 0xe69ba0, + 0xe69ba1, + 0xe69ba2, + 0xe69ba3, + 0xe69ba4, + 0xe69ba5, + 0xe69ba6, + 0xe69ba7, + 0xe69ba8, + 0xe69ba9, + 0xe69baa, + 0xe69bab, + 0xe69bac, + 0xe69bad, + 0xe69bae, + 0xe69baf, + 0xe69bb0, + 0xe69bb1, + 0xe69bb2, + 0xe69bb3, + 0xe69bb4, + 0xe69bb5, + 0xe69bb6, + 0xe69bb7, + 0xe69bb8, + 0xe69bb9, + 0xe69bba, + 0xe69bbb, + 0xe69bbc, + 0xe69bbd, + 0xe69bbe, + 0xe69bbf, + 0xe69c80, + 0xe69c81, + 0xe69c82, + 0xe69c83, + 0xe69c84, + 0xe69c85, + 0xe69c86, + 0xe69c87, + 0xe69c88, + 0xe69c89, + 0xe69c8a, + 0xe69c8b, + 0xe69c8c, + 0xe69c8d, + 0xe69c8e, + 0xe69c8f, + 0xe69c90, + 0xe69c91, + 0xe69c92, + 0xe69c93, + 0xe69c94, + 0xe69c95, + 0xe69c96, + 0xe69c97, + 0xe69c98, + 0xe69c99, + 0xe69c9a, + 0xe69c9b, + 0xe69c9c, + 0xe69c9d, + 0xe69c9e, + 0xe69c9f, + 0xe69ca0, + 0xe69ca1, + 0xe69ca2, + 0xe69ca3, + 0xe69ca4, + 0xe69ca5, + 0xe69ca6, + 0xe69ca7, + 0xe69ca8, + 0xe69ca9, + 0xe69caa, + 0xe69cab, + 0xe69cac, + 0xe69cad, + 0xe69cae, + 0xe69caf, + 0xe69cb0, + 0xe69cb1, + 0xe69cb2, + 0xe69cb3, + 0xe69cb4, + 0xe69cb5, + 0xe69cb6, + 0xe69cb7, + 0xe69cb8, + 0xe69cb9, + 0xe69cba, + 0xe69cbb, + 0xe69cbc, + 0xe69cbd, + 0xe69cbe, + 0xe69cbf, + 0xe69d80, + 0xe69d81, + 0xe69d82, + 0xe69d83, + 0xe69d84, + 0xe69d85, + 0xe69d86, + 0xe69d87, + 0xe69d88, + 0xe69d89, + 0xe69d8a, + 0xe69d8b, + 0xe69d8c, + 0xe69d8d, + 0xe69d8e, + 0xe69d8f, + 0xe69d90, + 0xe69d91, + 0xe69d92, + 0xe69d93, + 0xe69d94, + 0xe69d95, + 0xe69d96, + 0xe69d97, + 0xe69d98, + 0xe69d99, + 0xe69d9a, + 0xe69d9b, + 0xe69d9c, + 0xe69d9d, + 0xe69d9e, + 0xe69d9f, + 0xe69da0, + 0xe69da1, + 0xe69da2, + 0xe69da3, + 0xe69da4, + 0xe69da5, + 0xe69da6, + 0xe69da7, + 0xe69da8, + 0xe69da9, + 0xe69daa, + 0xe69dab, + 0xe69dac, + 0xe69dad, + 0xe69dae, + 0xe69daf, + 0xe69db0, + 0xe69db1, + 0xe69db2, + 0xe69db3, + 0xe69db4, + 0xe69db5, + 0xe69db6, + 0xe69db7, + 0xe69db8, + 0xe69db9, + 0xe69dba, + 0xe69dbb, + 0xe69dbc, + 0xe69dbd, + 0xe69dbe, + 0xe69dbf, + 0xe69e80, + 0xe69e81, + 0xe69e82, + 0xe69e83, + 0xe69e84, + 0xe69e85, + 0xe69e86, + 0xe69e87, + 0xe69e88, + 0xe69e89, + 0xe69e8a, + 0xe69e8b, + 0xe69e8c, + 0xe69e8d, + 0xe69e8e, + 0xe69e8f, + 0xe69e90, + 0xe69e91, + 0xe69e92, + 0xe69e93, + 0xe69e94, + 0xe69e95, + 0xe69e96, + 0xe69e97, + 0xe69e98, + 0xe69e99, + 0xe69e9a, + 0xe69e9b, + 0xe69e9c, + 0xe69e9d, + 0xe69e9e, + 0xe69e9f, + 0xe69ea0, + 0xe69ea1, + 0xe69ea2, + 0xe69ea3, + 0xe69ea4, + 0xe69ea5, + 0xe69ea6, + 0xe69ea7, + 0xe69ea8, + 0xe69ea9, + 0xe69eaa, + 0xe69eab, + 0xe69eac, + 0xe69ead, + 0xe69eae, + 0xe69eaf, + 0xe69eb0, + 0xe69eb1, + 0xe69eb2, + 0xe69eb3, + 0xe69eb4, + 0xe69eb5, + 0xe69eb6, + 0xe69eb7, + 0xe69eb8, + 0xe69eb9, + 0xe69eba, + 0xe69ebb, + 0xe69ebc, + 0xe69ebd, + 0xe69ebe, + 0xe69ebf, + 0xe69f80, + 0xe69f81, + 0xe69f82, + 0xe69f83, + 0xe69f84, + 0xe69f85, + 0xe69f86, + 0xe69f87, + 0xe69f88, + 0xe69f89, + 0xe69f8a, + 0xe69f8b, + 0xe69f8c, + 0xe69f8d, + 0xe69f8e, + 0xe69f8f, + 0xe69f90, + 0xe69f91, + 0xe69f92, + 0xe69f93, + 0xe69f94, + 0xe69f95, + 0xe69f96, + 0xe69f97, + 0xe69f98, + 0xe69f99, + 0xe69f9a, + 0xe69f9b, + 0xe69f9c, + 0xe69f9d, + 0xe69f9e, + 0xe69f9f, + 0xe69fa0, + 0xe69fa1, + 0xe69fa2, + 0xe69fa3, + 0xe69fa4, + 0xe69fa5, + 0xe69fa6, + 0xe69fa7, + 0xe69fa8, + 0xe69fa9, + 0xe69faa, + 0xe69fab, + 0xe69fac, + 0xe69fad, + 0xe69fae, + 0xe69faf, + 0xe69fb0, + 0xe69fb1, + 0xe69fb2, + 0xe69fb3, + 0xe69fb4, + 0xe69fb5, + 0xe69fb6, + 0xe69fb7, + 0xe69fb8, + 0xe69fb9, + 0xe69fba, + 0xe69fbb, + 0xe69fbc, + 0xe69fbd, + 0xe69fbe, + 0xe69fbf, + 0xe6a080, + 0xe6a081, + 0xe6a082, + 0xe6a083, + 0xe6a084, + 0xe6a085, + 0xe6a086, + 0xe6a087, + 0xe6a088, + 0xe6a089, + 0xe6a08a, + 0xe6a08b, + 0xe6a08c, + 0xe6a08d, + 0xe6a08e, + 0xe6a08f, + 0xe6a090, + 0xe6a091, + 0xe6a092, + 0xe6a093, + 0xe6a094, + 0xe6a095, + 0xe6a096, + 0xe6a097, + 0xe6a098, + 0xe6a099, + 0xe6a09a, + 0xe6a09b, + 0xe6a09c, + 0xe6a09d, + 0xe6a09e, + 0xe6a09f, + 0xe6a0a0, + 0xe6a0a1, + 0xe6a0a2, + 0xe6a0a3, + 0xe6a0a4, + 0xe6a0a5, + 0xe6a0a6, + 0xe6a0a7, + 0xe6a0a8, + 0xe6a0a9, + 0xe6a0aa, + 0xe6a0ab, + 0xe6a0ac, + 0xe6a0ad, + 0xe6a0ae, + 0xe6a0af, + 0xe6a0b0, + 0xe6a0b1, + 0xe6a0b2, + 0xe6a0b3, + 0xe6a0b4, + 0xe6a0b5, + 0xe6a0b6, + 0xe6a0b7, + 0xe6a0b8, + 0xe6a0b9, + 0xe6a0ba, + 0xe6a0bb, + 0xe6a0bc, + 0xe6a0bd, + 0xe6a0be, + 0xe6a0bf, + 0xe6a180, + 0xe6a181, + 0xe6a182, + 0xe6a183, + 0xe6a184, + 0xe6a185, + 0xe6a186, + 0xe6a187, + 0xe6a188, + 0xe6a189, + 0xe6a18a, + 0xe6a18b, + 0xe6a18c, + 0xe6a18d, + 0xe6a18e, + 0xe6a18f, + 0xe6a190, + 0xe6a191, + 0xe6a192, + 0xe6a193, + 0xe6a194, + 0xe6a195, + 0xe6a196, + 0xe6a197, + 0xe6a198, + 0xe6a199, + 0xe6a19a, + 0xe6a19b, + 0xe6a19c, + 0xe6a19d, + 0xe6a19e, + 0xe6a19f, + 0xe6a1a0, + 0xe6a1a1, + 0xe6a1a2, + 0xe6a1a3, + 0xe6a1a4, + 0xe6a1a5, + 0xe6a1a6, + 0xe6a1a7, + 0xe6a1a8, + 0xe6a1a9, + 0xe6a1aa, + 0xe6a1ab, + 0xe6a1ac, + 0xe6a1ad, + 0xe6a1ae, + 0xe6a1af, + 0xe6a1b0, + 0xe6a1b1, + 0xe6a1b2, + 0xe6a1b3, + 0xe6a1b4, + 0xe6a1b5, + 0xe6a1b6, + 0xe6a1b7, + 0xe6a1b8, + 0xe6a1b9, + 0xe6a1ba, + 0xe6a1bb, + 0xe6a1bc, + 0xe6a1bd, + 0xe6a1be, + 0xe6a1bf, + 0xe6a280, + 0xe6a281, + 0xe6a282, + 0xe6a283, + 0xe6a284, + 0xe6a285, + 0xe6a286, + 0xe6a287, + 0xe6a288, + 0xe6a289, + 0xe6a28a, + 0xe6a28b, + 0xe6a28c, + 0xe6a28d, + 0xe6a28e, + 0xe6a28f, + 0xe6a290, + 0xe6a291, + 0xe6a292, + 0xe6a293, + 0xe6a294, + 0xe6a295, + 0xe6a296, + 0xe6a297, + 0xe6a298, + 0xe6a299, + 0xe6a29a, + 0xe6a29b, + 0xe6a29c, + 0xe6a29d, + 0xe6a29e, + 0xe6a29f, + 0xe6a2a0, + 0xe6a2a1, + 0xe6a2a2, + 0xe6a2a3, + 0xe6a2a4, + 0xe6a2a5, + 0xe6a2a6, + 0xe6a2a7, + 0xe6a2a8, + 0xe6a2a9, + 0xe6a2aa, + 0xe6a2ab, + 0xe6a2ac, + 0xe6a2ad, + 0xe6a2ae, + 0xe6a2af, + 0xe6a2b0, + 0xe6a2b1, + 0xe6a2b2, + 0xe6a2b3, + 0xe6a2b4, + 0xe6a2b5, + 0xe6a2b6, + 0xe6a2b7, + 0xe6a2b8, + 0xe6a2b9, + 0xe6a2ba, + 0xe6a2bb, + 0xe6a2bc, + 0xe6a2bd, + 0xe6a2be, + 0xe6a2bf, + 0xe6a380, + 0xe6a381, + 0xe6a382, + 0xe6a383, + 0xe6a384, + 0xe6a385, + 0xe6a386, + 0xe6a387, + 0xe6a388, + 0xe6a389, + 0xe6a38a, + 0xe6a38b, + 0xe6a38c, + 0xe6a38d, + 0xe6a38e, + 0xe6a38f, + 0xe6a390, + 0xe6a391, + 0xe6a392, + 0xe6a393, + 0xe6a394, + 0xe6a395, + 0xe6a396, + 0xe6a397, + 0xe6a398, + 0xe6a399, + 0xe6a39a, + 0xe6a39b, + 0xe6a39c, + 0xe6a39d, + 0xe6a39e, + 0xe6a39f, + 0xe6a3a0, + 0xe6a3a1, + 0xe6a3a2, + 0xe6a3a3, + 0xe6a3a4, + 0xe6a3a5, + 0xe6a3a6, + 0xe6a3a7, + 0xe6a3a8, + 0xe6a3a9, + 0xe6a3aa, + 0xe6a3ab, + 0xe6a3ac, + 0xe6a3ad, + 0xe6a3ae, + 0xe6a3af, + 0xe6a3b0, + 0xe6a3b1, + 0xe6a3b2, + 0xe6a3b3, + 0xe6a3b4, + 0xe6a3b5, + 0xe6a3b6, + 0xe6a3b7, + 0xe6a3b8, + 0xe6a3b9, + 0xe6a3ba, + 0xe6a3bb, + 0xe6a3bc, + 0xe6a3bd, + 0xe6a3be, + 0xe6a3bf, + 0xe6a480, + 0xe6a481, + 0xe6a482, + 0xe6a483, + 0xe6a484, + 0xe6a485, + 0xe6a486, + 0xe6a487, + 0xe6a488, + 0xe6a489, + 0xe6a48a, + 0xe6a48b, + 0xe6a48c, + 0xe6a48d, + 0xe6a48e, + 0xe6a48f, + 0xe6a490, + 0xe6a491, + 0xe6a492, + 0xe6a493, + 0xe6a494, + 0xe6a495, + 0xe6a496, + 0xe6a497, + 0xe6a498, + 0xe6a499, + 0xe6a49a, + 0xe6a49b, + 0xe6a49c, + 0xe6a49d, + 0xe6a49e, + 0xe6a49f, + 0xe6a4a0, + 0xe6a4a1, + 0xe6a4a2, + 0xe6a4a3, + 0xe6a4a4, + 0xe6a4a5, + 0xe6a4a6, + 0xe6a4a7, + 0xe6a4a8, + 0xe6a4a9, + 0xe6a4aa, + 0xe6a4ab, + 0xe6a4ac, + 0xe6a4ad, + 0xe6a4ae, + 0xe6a4af, + 0xe6a4b0, + 0xe6a4b1, + 0xe6a4b2, + 0xe6a4b3, + 0xe6a4b4, + 0xe6a4b5, + 0xe6a4b6, + 0xe6a4b7, + 0xe6a4b8, + 0xe6a4b9, + 0xe6a4ba, + 0xe6a4bb, + 0xe6a4bc, + 0xe6a4bd, + 0xe6a4be, + 0xe6a4bf, + 0xe6a580, + 0xe6a581, + 0xe6a582, + 0xe6a583, + 0xe6a584, + 0xe6a585, + 0xe6a586, + 0xe6a587, + 0xe6a588, + 0xe6a589, + 0xe6a58a, + 0xe6a58b, + 0xe6a58c, + 0xe6a58d, + 0xe6a58e, + 0xe6a58f, + 0xe6a590, + 0xe6a591, + 0xe6a592, + 0xe6a593, + 0xe6a594, + 0xe6a595, + 0xe6a596, + 0xe6a597, + 0xe6a598, + 0xe6a599, + 0xe6a59a, + 0xe6a59b, + 0xe6a59c, + 0xe6a59d, + 0xe6a59e, + 0xe6a59f, + 0xe6a5a0, + 0xe6a5a1, + 0xe6a5a2, + 0xe6a5a3, + 0xe6a5a4, + 0xe6a5a5, + 0xe6a5a6, + 0xe6a5a7, + 0xe6a5a8, + 0xe6a5a9, + 0xe6a5aa, + 0xe6a5ab, + 0xe6a5ac, + 0xe6a5ad, + 0xe6a5ae, + 0xe6a5af, + 0xe6a5b0, + 0xe6a5b1, + 0xe6a5b2, + 0xe6a5b3, + 0xe6a5b4, + 0xe6a5b5, + 0xe6a5b6, + 0xe6a5b7, + 0xe6a5b8, + 0xe6a5b9, + 0xe6a5ba, + 0xe6a5bb, + 0xe6a5bc, + 0xe6a5bd, + 0xe6a5be, + 0xe6a5bf, + 0xe6a680, + 0xe6a681, + 0xe6a682, + 0xe6a683, + 0xe6a684, + 0xe6a685, + 0xe6a686, + 0xe6a687, + 0xe6a688, + 0xe6a689, + 0xe6a68a, + 0xe6a68b, + 0xe6a68c, + 0xe6a68d, + 0xe6a68e, + 0xe6a68f, + 0xe6a690, + 0xe6a691, + 0xe6a692, + 0xe6a693, + 0xe6a694, + 0xe6a695, + 0xe6a696, + 0xe6a697, + 0xe6a698, + 0xe6a699, + 0xe6a69a, + 0xe6a69b, + 0xe6a69c, + 0xe6a69d, + 0xe6a69e, + 0xe6a69f, + 0xe6a6a0, + 0xe6a6a1, + 0xe6a6a2, + 0xe6a6a3, + 0xe6a6a4, + 0xe6a6a5, + 0xe6a6a6, + 0xe6a6a7, + 0xe6a6a8, + 0xe6a6a9, + 0xe6a6aa, + 0xe6a6ab, + 0xe6a6ac, + 0xe6a6ad, + 0xe6a6ae, + 0xe6a6af, + 0xe6a6b0, + 0xe6a6b1, + 0xe6a6b2, + 0xe6a6b3, + 0xe6a6b4, + 0xe6a6b5, + 0xe6a6b6, + 0xe6a6b7, + 0xe6a6b8, + 0xe6a6b9, + 0xe6a6ba, + 0xe6a6bb, + 0xe6a6bc, + 0xe6a6bd, + 0xe6a6be, + 0xe6a6bf, + 0xe6a780, + 0xe6a781, + 0xe6a782, + 0xe6a783, + 0xe6a784, + 0xe6a785, + 0xe6a786, + 0xe6a787, + 0xe6a788, + 0xe6a789, + 0xe6a78a, + 0xe6a78b, + 0xe6a78c, + 0xe6a78d, + 0xe6a78e, + 0xe6a78f, + 0xe6a790, + 0xe6a791, + 0xe6a792, + 0xe6a793, + 0xe6a794, + 0xe6a795, + 0xe6a796, + 0xe6a797, + 0xe6a798, + 0xe6a799, + 0xe6a79a, + 0xe6a79b, + 0xe6a79c, + 0xe6a79d, + 0xe6a79e, + 0xe6a79f, + 0xe6a7a0, + 0xe6a7a1, + 0xe6a7a2, + 0xe6a7a3, + 0xe6a7a4, + 0xe6a7a5, + 0xe6a7a6, + 0xe6a7a7, + 0xe6a7a8, + 0xe6a7a9, + 0xe6a7aa, + 0xe6a7ab, + 0xe6a7ac, + 0xe6a7ad, + 0xe6a7ae, + 0xe6a7af, + 0xe6a7b0, + 0xe6a7b1, + 0xe6a7b2, + 0xe6a7b3, + 0xe6a7b4, + 0xe6a7b5, + 0xe6a7b6, + 0xe6a7b7, + 0xe6a7b8, + 0xe6a7b9, + 0xe6a7ba, + 0xe6a7bb, + 0xe6a7bc, + 0xe6a7bd, + 0xe6a7be, + 0xe6a7bf, + 0xe6a880, + 0xe6a881, + 0xe6a882, + 0xe6a883, + 0xe6a884, + 0xe6a885, + 0xe6a886, + 0xe6a887, + 0xe6a888, + 0xe6a889, + 0xe6a88a, + 0xe6a88b, + 0xe6a88c, + 0xe6a88d, + 0xe6a88e, + 0xe6a88f, + 0xe6a890, + 0xe6a891, + 0xe6a892, + 0xe6a893, + 0xe6a894, + 0xe6a895, + 0xe6a896, + 0xe6a897, + 0xe6a898, + 0xe6a899, + 0xe6a89a, + 0xe6a89b, + 0xe6a89c, + 0xe6a89d, + 0xe6a89e, + 0xe6a89f, + 0xe6a8a0, + 0xe6a8a1, + 0xe6a8a2, + 0xe6a8a3, + 0xe6a8a4, + 0xe6a8a5, + 0xe6a8a6, + 0xe6a8a7, + 0xe6a8a8, + 0xe6a8a9, + 0xe6a8aa, + 0xe6a8ab, + 0xe6a8ac, + 0xe6a8ad, + 0xe6a8ae, + 0xe6a8af, + 0xe6a8b0, + 0xe6a8b1, + 0xe6a8b2, + 0xe6a8b3, + 0xe6a8b4, + 0xe6a8b5, + 0xe6a8b6, + 0xe6a8b7, + 0xe6a8b8, + 0xe6a8b9, + 0xe6a8ba, + 0xe6a8bb, + 0xe6a8bc, + 0xe6a8bd, + 0xe6a8be, + 0xe6a8bf, + 0xe6a980, + 0xe6a981, + 0xe6a982, + 0xe6a983, + 0xe6a984, + 0xe6a985, + 0xe6a986, + 0xe6a987, + 0xe6a988, + 0xe6a989, + 0xe6a98a, + 0xe6a98b, + 0xe6a98c, + 0xe6a98d, + 0xe6a98e, + 0xe6a98f, + 0xe6a990, + 0xe6a991, + 0xe6a992, + 0xe6a993, + 0xe6a994, + 0xe6a995, + 0xe6a996, + 0xe6a997, + 0xe6a998, + 0xe6a999, + 0xe6a99a, + 0xe6a99b, + 0xe6a99c, + 0xe6a99d, + 0xe6a99e, + 0xe6a99f, + 0xe6a9a0, + 0xe6a9a1, + 0xe6a9a2, + 0xe6a9a3, + 0xe6a9a4, + 0xe6a9a5, + 0xe6a9a6, + 0xe6a9a7, + 0xe6a9a8, + 0xe6a9a9, + 0xe6a9aa, + 0xe6a9ab, + 0xe6a9ac, + 0xe6a9ad, + 0xe6a9ae, + 0xe6a9af, + 0xe6a9b0, + 0xe6a9b1, + 0xe6a9b2, + 0xe6a9b3, + 0xe6a9b4, + 0xe6a9b5, + 0xe6a9b6, + 0xe6a9b7, + 0xe6a9b8, + 0xe6a9b9, + 0xe6a9ba, + 0xe6a9bb, + 0xe6a9bc, + 0xe6a9bd, + 0xe6a9be, + 0xe6a9bf, + 0xe6aa80, + 0xe6aa81, + 0xe6aa82, + 0xe6aa83, + 0xe6aa84, + 0xe6aa85, + 0xe6aa86, + 0xe6aa87, + 0xe6aa88, + 0xe6aa89, + 0xe6aa8a, + 0xe6aa8b, + 0xe6aa8c, + 0xe6aa8d, + 0xe6aa8e, + 0xe6aa8f, + 0xe6aa90, + 0xe6aa91, + 0xe6aa92, + 0xe6aa93, + 0xe6aa94, + 0xe6aa95, + 0xe6aa96, + 0xe6aa97, + 0xe6aa98, + 0xe6aa99, + 0xe6aa9a, + 0xe6aa9b, + 0xe6aa9c, + 0xe6aa9d, + 0xe6aa9e, + 0xe6aa9f, + 0xe6aaa0, + 0xe6aaa1, + 0xe6aaa2, + 0xe6aaa3, + 0xe6aaa4, + 0xe6aaa5, + 0xe6aaa6, + 0xe6aaa7, + 0xe6aaa8, + 0xe6aaa9, + 0xe6aaaa, + 0xe6aaab, + 0xe6aaac, + 0xe6aaad, + 0xe6aaae, + 0xe6aaaf, + 0xe6aab0, + 0xe6aab1, + 0xe6aab2, + 0xe6aab3, + 0xe6aab4, + 0xe6aab5, + 0xe6aab6, + 0xe6aab7, + 0xe6aab8, + 0xe6aab9, + 0xe6aaba, + 0xe6aabb, + 0xe6aabc, + 0xe6aabd, + 0xe6aabe, + 0xe6aabf, + 0xe6ab80, + 0xe6ab81, + 0xe6ab82, + 0xe6ab83, + 0xe6ab84, + 0xe6ab85, + 0xe6ab86, + 0xe6ab87, + 0xe6ab88, + 0xe6ab89, + 0xe6ab8a, + 0xe6ab8b, + 0xe6ab8c, + 0xe6ab8d, + 0xe6ab8e, + 0xe6ab8f, + 0xe6ab90, + 0xe6ab91, + 0xe6ab92, + 0xe6ab93, + 0xe6ab94, + 0xe6ab95, + 0xe6ab96, + 0xe6ab97, + 0xe6ab98, + 0xe6ab99, + 0xe6ab9a, + 0xe6ab9b, + 0xe6ab9c, + 0xe6ab9d, + 0xe6ab9e, + 0xe6ab9f, + 0xe6aba0, + 0xe6aba1, + 0xe6aba2, + 0xe6aba3, + 0xe6aba4, + 0xe6aba5, + 0xe6aba6, + 0xe6aba7, + 0xe6aba8, + 0xe6aba9, + 0xe6abaa, + 0xe6abab, + 0xe6abac, + 0xe6abad, + 0xe6abae, + 0xe6abaf, + 0xe6abb0, + 0xe6abb1, + 0xe6abb2, + 0xe6abb3, + 0xe6abb4, + 0xe6abb5, + 0xe6abb6, + 0xe6abb7, + 0xe6abb8, + 0xe6abb9, + 0xe6abba, + 0xe6abbb, + 0xe6abbc, + 0xe6abbd, + 0xe6abbe, + 0xe6abbf, + 0xe6ac80, + 0xe6ac81, + 0xe6ac82, + 0xe6ac83, + 0xe6ac84, + 0xe6ac85, + 0xe6ac86, + 0xe6ac87, + 0xe6ac88, + 0xe6ac89, + 0xe6ac8a, + 0xe6ac8b, + 0xe6ac8c, + 0xe6ac8d, + 0xe6ac8e, + 0xe6ac8f, + 0xe6ac90, + 0xe6ac91, + 0xe6ac92, + 0xe6ac93, + 0xe6ac94, + 0xe6ac95, + 0xe6ac96, + 0xe6ac97, + 0xe6ac98, + 0xe6ac99, + 0xe6ac9a, + 0xe6ac9b, + 0xe6ac9c, + 0xe6ac9d, + 0xe6ac9e, + 0xe6ac9f, + 0xe6aca0, + 0xe6aca1, + 0xe6aca2, + 0xe6aca3, + 0xe6aca4, + 0xe6aca5, + 0xe6aca6, + 0xe6aca7, + 0xe6aca8, + 0xe6aca9, + 0xe6acaa, + 0xe6acab, + 0xe6acac, + 0xe6acad, + 0xe6acae, + 0xe6acaf, + 0xe6acb0, + 0xe6acb1, + 0xe6acb2, + 0xe6acb3, + 0xe6acb4, + 0xe6acb5, + 0xe6acb6, + 0xe6acb7, + 0xe6acb8, + 0xe6acb9, + 0xe6acba, + 0xe6acbb, + 0xe6acbc, + 0xe6acbd, + 0xe6acbe, + 0xe6acbf, + 0xe6ad80, + 0xe6ad81, + 0xe6ad82, + 0xe6ad83, + 0xe6ad84, + 0xe6ad85, + 0xe6ad86, + 0xe6ad87, + 0xe6ad88, + 0xe6ad89, + 0xe6ad8a, + 0xe6ad8b, + 0xe6ad8c, + 0xe6ad8d, + 0xe6ad8e, + 0xe6ad8f, + 0xe6ad90, + 0xe6ad91, + 0xe6ad92, + 0xe6ad93, + 0xe6ad94, + 0xe6ad95, + 0xe6ad96, + 0xe6ad97, + 0xe6ad98, + 0xe6ad99, + 0xe6ad9a, + 0xe6ad9b, + 0xe6ad9c, + 0xe6ad9d, + 0xe6ad9e, + 0xe6ad9f, + 0xe6ada0, + 0xe6ada1, + 0xe6ada2, + 0xe6ada3, + 0xe6ada4, + 0xe6ada5, + 0xe6ada6, + 0xe6ada7, + 0xe6ada8, + 0xe6ada9, + 0xe6adaa, + 0xe6adab, + 0xe6adac, + 0xe6adad, + 0xe6adae, + 0xe6adaf, + 0xe6adb0, + 0xe6adb1, + 0xe6adb2, + 0xe6adb3, + 0xe6adb4, + 0xe6adb5, + 0xe6adb6, + 0xe6adb7, + 0xe6adb8, + 0xe6adb9, + 0xe6adba, + 0xe6adbb, + 0xe6adbc, + 0xe6adbd, + 0xe6adbe, + 0xe6adbf, + 0xe6ae80, + 0xe6ae81, + 0xe6ae82, + 0xe6ae83, + 0xe6ae84, + 0xe6ae85, + 0xe6ae86, + 0xe6ae87, + 0xe6ae88, + 0xe6ae89, + 0xe6ae8a, + 0xe6ae8b, + 0xe6ae8c, + 0xe6ae8d, + 0xe6ae8e, + 0xe6ae8f, + 0xe6ae90, + 0xe6ae91, + 0xe6ae92, + 0xe6ae93, + 0xe6ae94, + 0xe6ae95, + 0xe6ae96, + 0xe6ae97, + 0xe6ae98, + 0xe6ae99, + 0xe6ae9a, + 0xe6ae9b, + 0xe6ae9c, + 0xe6ae9d, + 0xe6ae9e, + 0xe6ae9f, + 0xe6aea0, + 0xe6aea1, + 0xe6aea2, + 0xe6aea3, + 0xe6aea4, + 0xe6aea5, + 0xe6aea6, + 0xe6aea7, + 0xe6aea8, + 0xe6aea9, + 0xe6aeaa, + 0xe6aeab, + 0xe6aeac, + 0xe6aead, + 0xe6aeae, + 0xe6aeaf, + 0xe6aeb0, + 0xe6aeb1, + 0xe6aeb2, + 0xe6aeb3, + 0xe6aeb4, + 0xe6aeb5, + 0xe6aeb6, + 0xe6aeb7, + 0xe6aeb8, + 0xe6aeb9, + 0xe6aeba, + 0xe6aebb, + 0xe6aebc, + 0xe6aebd, + 0xe6aebe, + 0xe6aebf, + 0xe6af80, + 0xe6af81, + 0xe6af82, + 0xe6af83, + 0xe6af84, + 0xe6af85, + 0xe6af86, + 0xe6af87, + 0xe6af88, + 0xe6af89, + 0xe6af8a, + 0xe6af8b, + 0xe6af8c, + 0xe6af8d, + 0xe6af8e, + 0xe6af8f, + 0xe6af90, + 0xe6af91, + 0xe6af92, + 0xe6af93, + 0xe6af94, + 0xe6af95, + 0xe6af96, + 0xe6af97, + 0xe6af98, + 0xe6af99, + 0xe6af9a, + 0xe6af9b, + 0xe6af9c, + 0xe6af9d, + 0xe6af9e, + 0xe6af9f, + 0xe6afa0, + 0xe6afa1, + 0xe6afa2, + 0xe6afa3, + 0xe6afa4, + 0xe6afa5, + 0xe6afa6, + 0xe6afa7, + 0xe6afa8, + 0xe6afa9, + 0xe6afaa, + 0xe6afab, + 0xe6afac, + 0xe6afad, + 0xe6afae, + 0xe6afaf, + 0xe6afb0, + 0xe6afb1, + 0xe6afb2, + 0xe6afb3, + 0xe6afb4, + 0xe6afb5, + 0xe6afb6, + 0xe6afb7, + 0xe6afb8, + 0xe6afb9, + 0xe6afba, + 0xe6afbb, + 0xe6afbc, + 0xe6afbd, + 0xe6afbe, + 0xe6afbf, + 0xe6b080, + 0xe6b081, + 0xe6b082, + 0xe6b083, + 0xe6b084, + 0xe6b085, + 0xe6b086, + 0xe6b087, + 0xe6b088, + 0xe6b089, + 0xe6b08a, + 0xe6b08b, + 0xe6b08c, + 0xe6b08d, + 0xe6b08e, + 0xe6b08f, + 0xe6b090, + 0xe6b091, + 0xe6b092, + 0xe6b093, + 0xe6b094, + 0xe6b095, + 0xe6b096, + 0xe6b097, + 0xe6b098, + 0xe6b099, + 0xe6b09a, + 0xe6b09b, + 0xe6b09c, + 0xe6b09d, + 0xe6b09e, + 0xe6b09f, + 0xe6b0a0, + 0xe6b0a1, + 0xe6b0a2, + 0xe6b0a3, + 0xe6b0a4, + 0xe6b0a5, + 0xe6b0a6, + 0xe6b0a7, + 0xe6b0a8, + 0xe6b0a9, + 0xe6b0aa, + 0xe6b0ab, + 0xe6b0ac, + 0xe6b0ad, + 0xe6b0ae, + 0xe6b0af, + 0xe6b0b0, + 0xe6b0b1, + 0xe6b0b2, + 0xe6b0b3, + 0xe6b0b4, + 0xe6b0b5, + 0xe6b0b6, + 0xe6b0b7, + 0xe6b0b8, + 0xe6b0b9, + 0xe6b0ba, + 0xe6b0bb, + 0xe6b0bc, + 0xe6b0bd, + 0xe6b0be, + 0xe6b0bf, + 0xe6b180, + 0xe6b181, + 0xe6b182, + 0xe6b183, + 0xe6b184, + 0xe6b185, + 0xe6b186, + 0xe6b187, + 0xe6b188, + 0xe6b189, + 0xe6b18a, + 0xe6b18b, + 0xe6b18c, + 0xe6b18d, + 0xe6b18e, + 0xe6b18f, + 0xe6b190, + 0xe6b191, + 0xe6b192, + 0xe6b193, + 0xe6b194, + 0xe6b195, + 0xe6b196, + 0xe6b197, + 0xe6b198, + 0xe6b199, + 0xe6b19a, + 0xe6b19b, + 0xe6b19c, + 0xe6b19d, + 0xe6b19e, + 0xe6b19f, + 0xe6b1a0, + 0xe6b1a1, + 0xe6b1a2, + 0xe6b1a3, + 0xe6b1a4, + 0xe6b1a5, + 0xe6b1a6, + 0xe6b1a7, + 0xe6b1a8, + 0xe6b1a9, + 0xe6b1aa, + 0xe6b1ab, + 0xe6b1ac, + 0xe6b1ad, + 0xe6b1ae, + 0xe6b1af, + 0xe6b1b0, + 0xe6b1b1, + 0xe6b1b2, + 0xe6b1b3, + 0xe6b1b4, + 0xe6b1b5, + 0xe6b1b6, + 0xe6b1b7, + 0xe6b1b8, + 0xe6b1b9, + 0xe6b1ba, + 0xe6b1bb, + 0xe6b1bc, + 0xe6b1bd, + 0xe6b1be, + 0xe6b1bf, + 0xe6b280, + 0xe6b281, + 0xe6b282, + 0xe6b283, + 0xe6b284, + 0xe6b285, + 0xe6b286, + 0xe6b287, + 0xe6b288, + 0xe6b289, + 0xe6b28a, + 0xe6b28b, + 0xe6b28c, + 0xe6b28d, + 0xe6b28e, + 0xe6b28f, + 0xe6b290, + 0xe6b291, + 0xe6b292, + 0xe6b293, + 0xe6b294, + 0xe6b295, + 0xe6b296, + 0xe6b297, + 0xe6b298, + 0xe6b299, + 0xe6b29a, + 0xe6b29b, + 0xe6b29c, + 0xe6b29d, + 0xe6b29e, + 0xe6b29f, + 0xe6b2a0, + 0xe6b2a1, + 0xe6b2a2, + 0xe6b2a3, + 0xe6b2a4, + 0xe6b2a5, + 0xe6b2a6, + 0xe6b2a7, + 0xe6b2a8, + 0xe6b2a9, + 0xe6b2aa, + 0xe6b2ab, + 0xe6b2ac, + 0xe6b2ad, + 0xe6b2ae, + 0xe6b2af, + 0xe6b2b0, + 0xe6b2b1, + 0xe6b2b2, + 0xe6b2b3, + 0xe6b2b4, + 0xe6b2b5, + 0xe6b2b6, + 0xe6b2b7, + 0xe6b2b8, + 0xe6b2b9, + 0xe6b2ba, + 0xe6b2bb, + 0xe6b2bc, + 0xe6b2bd, + 0xe6b2be, + 0xe6b2bf, + 0xe6b380, + 0xe6b381, + 0xe6b382, + 0xe6b383, + 0xe6b384, + 0xe6b385, + 0xe6b386, + 0xe6b387, + 0xe6b388, + 0xe6b389, + 0xe6b38a, + 0xe6b38b, + 0xe6b38c, + 0xe6b38d, + 0xe6b38e, + 0xe6b38f, + 0xe6b390, + 0xe6b391, + 0xe6b392, + 0xe6b393, + 0xe6b394, + 0xe6b395, + 0xe6b396, + 0xe6b397, + 0xe6b398, + 0xe6b399, + 0xe6b39a, + 0xe6b39b, + 0xe6b39c, + 0xe6b39d, + 0xe6b39e, + 0xe6b39f, + 0xe6b3a0, + 0xe6b3a1, + 0xe6b3a2, + 0xe6b3a3, + 0xe6b3a4, + 0xe6b3a5, + 0xe6b3a6, + 0xe6b3a7, + 0xe6b3a8, + 0xe6b3a9, + 0xe6b3aa, + 0xe6b3ab, + 0xe6b3ac, + 0xe6b3ad, + 0xe6b3ae, + 0xe6b3af, + 0xe6b3b0, + 0xe6b3b1, + 0xe6b3b2, + 0xe6b3b3, + 0xe6b3b4, + 0xe6b3b5, + 0xe6b3b6, + 0xe6b3b7, + 0xe6b3b8, + 0xe6b3b9, + 0xe6b3ba, + 0xe6b3bb, + 0xe6b3bc, + 0xe6b3bd, + 0xe6b3be, + 0xe6b3bf, + 0xe6b480, + 0xe6b481, + 0xe6b482, + 0xe6b483, + 0xe6b484, + 0xe6b485, + 0xe6b486, + 0xe6b487, + 0xe6b488, + 0xe6b489, + 0xe6b48a, + 0xe6b48b, + 0xe6b48c, + 0xe6b48d, + 0xe6b48e, + 0xe6b48f, + 0xe6b490, + 0xe6b491, + 0xe6b492, + 0xe6b493, + 0xe6b494, + 0xe6b495, + 0xe6b496, + 0xe6b497, + 0xe6b498, + 0xe6b499, + 0xe6b49a, + 0xe6b49b, + 0xe6b49c, + 0xe6b49d, + 0xe6b49e, + 0xe6b49f, + 0xe6b4a0, + 0xe6b4a1, + 0xe6b4a2, + 0xe6b4a3, + 0xe6b4a4, + 0xe6b4a5, + 0xe6b4a6, + 0xe6b4a7, + 0xe6b4a8, + 0xe6b4a9, + 0xe6b4aa, + 0xe6b4ab, + 0xe6b4ac, + 0xe6b4ad, + 0xe6b4ae, + 0xe6b4af, + 0xe6b4b0, + 0xe6b4b1, + 0xe6b4b2, + 0xe6b4b3, + 0xe6b4b4, + 0xe6b4b5, + 0xe6b4b6, + 0xe6b4b7, + 0xe6b4b8, + 0xe6b4b9, + 0xe6b4ba, + 0xe6b4bb, + 0xe6b4bc, + 0xe6b4bd, + 0xe6b4be, + 0xe6b4bf, + 0xe6b580, + 0xe6b581, + 0xe6b582, + 0xe6b583, + 0xe6b584, + 0xe6b585, + 0xe6b586, + 0xe6b587, + 0xe6b588, + 0xe6b589, + 0xe6b58a, + 0xe6b58b, + 0xe6b58c, + 0xe6b58d, + 0xe6b58e, + 0xe6b58f, + 0xe6b590, + 0xe6b591, + 0xe6b592, + 0xe6b593, + 0xe6b594, + 0xe6b595, + 0xe6b596, + 0xe6b597, + 0xe6b598, + 0xe6b599, + 0xe6b59a, + 0xe6b59b, + 0xe6b59c, + 0xe6b59d, + 0xe6b59e, + 0xe6b59f, + 0xe6b5a0, + 0xe6b5a1, + 0xe6b5a2, + 0xe6b5a3, + 0xe6b5a4, + 0xe6b5a5, + 0xe6b5a6, + 0xe6b5a7, + 0xe6b5a8, + 0xe6b5a9, + 0xe6b5aa, + 0xe6b5ab, + 0xe6b5ac, + 0xe6b5ad, + 0xe6b5ae, + 0xe6b5af, + 0xe6b5b0, + 0xe6b5b1, + 0xe6b5b2, + 0xe6b5b3, + 0xe6b5b4, + 0xe6b5b5, + 0xe6b5b6, + 0xe6b5b7, + 0xe6b5b8, + 0xe6b5b9, + 0xe6b5ba, + 0xe6b5bb, + 0xe6b5bc, + 0xe6b5bd, + 0xe6b5be, + 0xe6b5bf, + 0xe6b680, + 0xe6b681, + 0xe6b682, + 0xe6b683, + 0xe6b684, + 0xe6b685, + 0xe6b686, + 0xe6b687, + 0xe6b688, + 0xe6b689, + 0xe6b68a, + 0xe6b68b, + 0xe6b68c, + 0xe6b68d, + 0xe6b68e, + 0xe6b68f, + 0xe6b690, + 0xe6b691, + 0xe6b692, + 0xe6b693, + 0xe6b694, + 0xe6b695, + 0xe6b696, + 0xe6b697, + 0xe6b698, + 0xe6b699, + 0xe6b69a, + 0xe6b69b, + 0xe6b69c, + 0xe6b69d, + 0xe6b69e, + 0xe6b69f, + 0xe6b6a0, + 0xe6b6a1, + 0xe6b6a2, + 0xe6b6a3, + 0xe6b6a4, + 0xe6b6a5, + 0xe6b6a6, + 0xe6b6a7, + 0xe6b6a8, + 0xe6b6a9, + 0xe6b6aa, + 0xe6b6ab, + 0xe6b6ac, + 0xe6b6ad, + 0xe6b6ae, + 0xe6b6af, + 0xe6b6b0, + 0xe6b6b1, + 0xe6b6b2, + 0xe6b6b3, + 0xe6b6b4, + 0xe6b6b5, + 0xe6b6b6, + 0xe6b6b7, + 0xe6b6b8, + 0xe6b6b9, + 0xe6b6ba, + 0xe6b6bb, + 0xe6b6bc, + 0xe6b6bd, + 0xe6b6be, + 0xe6b6bf, + 0xe6b780, + 0xe6b781, + 0xe6b782, + 0xe6b783, + 0xe6b784, + 0xe6b785, + 0xe6b786, + 0xe6b787, + 0xe6b788, + 0xe6b789, + 0xe6b78a, + 0xe6b78b, + 0xe6b78c, + 0xe6b78d, + 0xe6b78e, + 0xe6b78f, + 0xe6b790, + 0xe6b791, + 0xe6b792, + 0xe6b793, + 0xe6b794, + 0xe6b795, + 0xe6b796, + 0xe6b797, + 0xe6b798, + 0xe6b799, + 0xe6b79a, + 0xe6b79b, + 0xe6b79c, + 0xe6b79d, + 0xe6b79e, + 0xe6b79f, + 0xe6b7a0, + 0xe6b7a1, + 0xe6b7a2, + 0xe6b7a3, + 0xe6b7a4, + 0xe6b7a5, + 0xe6b7a6, + 0xe6b7a7, + 0xe6b7a8, + 0xe6b7a9, + 0xe6b7aa, + 0xe6b7ab, + 0xe6b7ac, + 0xe6b7ad, + 0xe6b7ae, + 0xe6b7af, + 0xe6b7b0, + 0xe6b7b1, + 0xe6b7b2, + 0xe6b7b3, + 0xe6b7b4, + 0xe6b7b5, + 0xe6b7b6, + 0xe6b7b7, + 0xe6b7b8, + 0xe6b7b9, + 0xe6b7ba, + 0xe6b7bb, + 0xe6b7bc, + 0xe6b7bd, + 0xe6b7be, + 0xe6b7bf, + 0xe6b880, + 0xe6b881, + 0xe6b882, + 0xe6b883, + 0xe6b884, + 0xe6b885, + 0xe6b886, + 0xe6b887, + 0xe6b888, + 0xe6b889, + 0xe6b88a, + 0xe6b88b, + 0xe6b88c, + 0xe6b88d, + 0xe6b88e, + 0xe6b88f, + 0xe6b890, + 0xe6b891, + 0xe6b892, + 0xe6b893, + 0xe6b894, + 0xe6b895, + 0xe6b896, + 0xe6b897, + 0xe6b898, + 0xe6b899, + 0xe6b89a, + 0xe6b89b, + 0xe6b89c, + 0xe6b89d, + 0xe6b89e, + 0xe6b89f, + 0xe6b8a0, + 0xe6b8a1, + 0xe6b8a2, + 0xe6b8a3, + 0xe6b8a4, + 0xe6b8a5, + 0xe6b8a6, + 0xe6b8a7, + 0xe6b8a8, + 0xe6b8a9, + 0xe6b8aa, + 0xe6b8ab, + 0xe6b8ac, + 0xe6b8ad, + 0xe6b8ae, + 0xe6b8af, + 0xe6b8b0, + 0xe6b8b1, + 0xe6b8b2, + 0xe6b8b3, + 0xe6b8b4, + 0xe6b8b5, + 0xe6b8b6, + 0xe6b8b7, + 0xe6b8b8, + 0xe6b8b9, + 0xe6b8ba, + 0xe6b8bb, + 0xe6b8bc, + 0xe6b8bd, + 0xe6b8be, + 0xe6b8bf, + 0xe6b980, + 0xe6b981, + 0xe6b982, + 0xe6b983, + 0xe6b984, + 0xe6b985, + 0xe6b986, + 0xe6b987, + 0xe6b988, + 0xe6b989, + 0xe6b98a, + 0xe6b98b, + 0xe6b98c, + 0xe6b98d, + 0xe6b98e, + 0xe6b98f, + 0xe6b990, + 0xe6b991, + 0xe6b992, + 0xe6b993, + 0xe6b994, + 0xe6b995, + 0xe6b996, + 0xe6b997, + 0xe6b998, + 0xe6b999, + 0xe6b99a, + 0xe6b99b, + 0xe6b99c, + 0xe6b99d, + 0xe6b99e, + 0xe6b99f, + 0xe6b9a0, + 0xe6b9a1, + 0xe6b9a2, + 0xe6b9a3, + 0xe6b9a4, + 0xe6b9a5, + 0xe6b9a6, + 0xe6b9a7, + 0xe6b9a8, + 0xe6b9a9, + 0xe6b9aa, + 0xe6b9ab, + 0xe6b9ac, + 0xe6b9ad, + 0xe6b9ae, + 0xe6b9af, + 0xe6b9b0, + 0xe6b9b1, + 0xe6b9b2, + 0xe6b9b3, + 0xe6b9b4, + 0xe6b9b5, + 0xe6b9b6, + 0xe6b9b7, + 0xe6b9b8, + 0xe6b9b9, + 0xe6b9ba, + 0xe6b9bb, + 0xe6b9bc, + 0xe6b9bd, + 0xe6b9be, + 0xe6b9bf, + 0xe6ba80, + 0xe6ba81, + 0xe6ba82, + 0xe6ba83, + 0xe6ba84, + 0xe6ba85, + 0xe6ba86, + 0xe6ba87, + 0xe6ba88, + 0xe6ba89, + 0xe6ba8a, + 0xe6ba8b, + 0xe6ba8c, + 0xe6ba8d, + 0xe6ba8e, + 0xe6ba8f, + 0xe6ba90, + 0xe6ba91, + 0xe6ba92, + 0xe6ba93, + 0xe6ba94, + 0xe6ba95, + 0xe6ba96, + 0xe6ba97, + 0xe6ba98, + 0xe6ba99, + 0xe6ba9a, + 0xe6ba9b, + 0xe6ba9c, + 0xe6ba9d, + 0xe6ba9e, + 0xe6ba9f, + 0xe6baa0, + 0xe6baa1, + 0xe6baa2, + 0xe6baa3, + 0xe6baa4, + 0xe6baa5, + 0xe6baa6, + 0xe6baa7, + 0xe6baa8, + 0xe6baa9, + 0xe6baaa, + 0xe6baab, + 0xe6baac, + 0xe6baad, + 0xe6baae, + 0xe6baaf, + 0xe6bab0, + 0xe6bab1, + 0xe6bab2, + 0xe6bab3, + 0xe6bab4, + 0xe6bab5, + 0xe6bab6, + 0xe6bab7, + 0xe6bab8, + 0xe6bab9, + 0xe6baba, + 0xe6babb, + 0xe6babc, + 0xe6babd, + 0xe6babe, + 0xe6babf, + 0xe6bb80, + 0xe6bb81, + 0xe6bb82, + 0xe6bb83, + 0xe6bb84, + 0xe6bb85, + 0xe6bb86, + 0xe6bb87, + 0xe6bb88, + 0xe6bb89, + 0xe6bb8a, + 0xe6bb8b, + 0xe6bb8c, + 0xe6bb8d, + 0xe6bb8e, + 0xe6bb8f, + 0xe6bb90, + 0xe6bb91, + 0xe6bb92, + 0xe6bb93, + 0xe6bb94, + 0xe6bb95, + 0xe6bb96, + 0xe6bb97, + 0xe6bb98, + 0xe6bb99, + 0xe6bb9a, + 0xe6bb9b, + 0xe6bb9c, + 0xe6bb9d, + 0xe6bb9e, + 0xe6bb9f, + 0xe6bba0, + 0xe6bba1, + 0xe6bba2, + 0xe6bba3, + 0xe6bba4, + 0xe6bba5, + 0xe6bba6, + 0xe6bba7, + 0xe6bba8, + 0xe6bba9, + 0xe6bbaa, + 0xe6bbab, + 0xe6bbac, + 0xe6bbad, + 0xe6bbae, + 0xe6bbaf, + 0xe6bbb0, + 0xe6bbb1, + 0xe6bbb2, + 0xe6bbb3, + 0xe6bbb4, + 0xe6bbb5, + 0xe6bbb6, + 0xe6bbb7, + 0xe6bbb8, + 0xe6bbb9, + 0xe6bbba, + 0xe6bbbb, + 0xe6bbbc, + 0xe6bbbd, + 0xe6bbbe, + 0xe6bbbf, + 0xe6bc80, + 0xe6bc81, + 0xe6bc82, + 0xe6bc83, + 0xe6bc84, + 0xe6bc85, + 0xe6bc86, + 0xe6bc87, + 0xe6bc88, + 0xe6bc89, + 0xe6bc8a, + 0xe6bc8b, + 0xe6bc8c, + 0xe6bc8d, + 0xe6bc8e, + 0xe6bc8f, + 0xe6bc90, + 0xe6bc91, + 0xe6bc92, + 0xe6bc93, + 0xe6bc94, + 0xe6bc95, + 0xe6bc96, + 0xe6bc97, + 0xe6bc98, + 0xe6bc99, + 0xe6bc9a, + 0xe6bc9b, + 0xe6bc9c, + 0xe6bc9d, + 0xe6bc9e, + 0xe6bc9f, + 0xe6bca0, + 0xe6bca1, + 0xe6bca2, + 0xe6bca3, + 0xe6bca4, + 0xe6bca5, + 0xe6bca6, + 0xe6bca7, + 0xe6bca8, + 0xe6bca9, + 0xe6bcaa, + 0xe6bcab, + 0xe6bcac, + 0xe6bcad, + 0xe6bcae, + 0xe6bcaf, + 0xe6bcb0, + 0xe6bcb1, + 0xe6bcb2, + 0xe6bcb3, + 0xe6bcb4, + 0xe6bcb5, + 0xe6bcb6, + 0xe6bcb7, + 0xe6bcb8, + 0xe6bcb9, + 0xe6bcba, + 0xe6bcbb, + 0xe6bcbc, + 0xe6bcbd, + 0xe6bcbe, + 0xe6bcbf, + 0xe6bd80, + 0xe6bd81, + 0xe6bd82, + 0xe6bd83, + 0xe6bd84, + 0xe6bd85, + 0xe6bd86, + 0xe6bd87, + 0xe6bd88, + 0xe6bd89, + 0xe6bd8a, + 0xe6bd8b, + 0xe6bd8c, + 0xe6bd8d, + 0xe6bd8e, + 0xe6bd8f, + 0xe6bd90, + 0xe6bd91, + 0xe6bd92, + 0xe6bd93, + 0xe6bd94, + 0xe6bd95, + 0xe6bd96, + 0xe6bd97, + 0xe6bd98, + 0xe6bd99, + 0xe6bd9a, + 0xe6bd9b, + 0xe6bd9c, + 0xe6bd9d, + 0xe6bd9e, + 0xe6bd9f, + 0xe6bda0, + 0xe6bda1, + 0xe6bda2, + 0xe6bda3, + 0xe6bda4, + 0xe6bda5, + 0xe6bda6, + 0xe6bda7, + 0xe6bda8, + 0xe6bda9, + 0xe6bdaa, + 0xe6bdab, + 0xe6bdac, + 0xe6bdad, + 0xe6bdae, + 0xe6bdaf, + 0xe6bdb0, + 0xe6bdb1, + 0xe6bdb2, + 0xe6bdb3, + 0xe6bdb4, + 0xe6bdb5, + 0xe6bdb6, + 0xe6bdb7, + 0xe6bdb8, + 0xe6bdb9, + 0xe6bdba, + 0xe6bdbb, + 0xe6bdbc, + 0xe6bdbd, + 0xe6bdbe, + 0xe6bdbf, + 0xe6be80, + 0xe6be81, + 0xe6be82, + 0xe6be83, + 0xe6be84, + 0xe6be85, + 0xe6be86, + 0xe6be87, + 0xe6be88, + 0xe6be89, + 0xe6be8a, + 0xe6be8b, + 0xe6be8c, + 0xe6be8d, + 0xe6be8e, + 0xe6be8f, + 0xe6be90, + 0xe6be91, + 0xe6be92, + 0xe6be93, + 0xe6be94, + 0xe6be95, + 0xe6be96, + 0xe6be97, + 0xe6be98, + 0xe6be99, + 0xe6be9a, + 0xe6be9b, + 0xe6be9c, + 0xe6be9d, + 0xe6be9e, + 0xe6be9f, + 0xe6bea0, + 0xe6bea1, + 0xe6bea2, + 0xe6bea3, + 0xe6bea4, + 0xe6bea5, + 0xe6bea6, + 0xe6bea7, + 0xe6bea8, + 0xe6bea9, + 0xe6beaa, + 0xe6beab, + 0xe6beac, + 0xe6bead, + 0xe6beae, + 0xe6beaf, + 0xe6beb0, + 0xe6beb1, + 0xe6beb2, + 0xe6beb3, + 0xe6beb4, + 0xe6beb5, + 0xe6beb6, + 0xe6beb7, + 0xe6beb8, + 0xe6beb9, + 0xe6beba, + 0xe6bebb, + 0xe6bebc, + 0xe6bebd, + 0xe6bebe, + 0xe6bebf, + 0xe6bf80, + 0xe6bf81, + 0xe6bf82, + 0xe6bf83, + 0xe6bf84, + 0xe6bf85, + 0xe6bf86, + 0xe6bf87, + 0xe6bf88, + 0xe6bf89, + 0xe6bf8a, + 0xe6bf8b, + 0xe6bf8c, + 0xe6bf8d, + 0xe6bf8e, + 0xe6bf8f, + 0xe6bf90, + 0xe6bf91, + 0xe6bf92, + 0xe6bf93, + 0xe6bf94, + 0xe6bf95, + 0xe6bf96, + 0xe6bf97, + 0xe6bf98, + 0xe6bf99, + 0xe6bf9a, + 0xe6bf9b, + 0xe6bf9c, + 0xe6bf9d, + 0xe6bf9e, + 0xe6bf9f, + 0xe6bfa0, + 0xe6bfa1, + 0xe6bfa2, + 0xe6bfa3, + 0xe6bfa4, + 0xe6bfa5, + 0xe6bfa6, + 0xe6bfa7, + 0xe6bfa8, + 0xe6bfa9, + 0xe6bfaa, + 0xe6bfab, + 0xe6bfac, + 0xe6bfad, + 0xe6bfae, + 0xe6bfaf, + 0xe6bfb0, + 0xe6bfb1, + 0xe6bfb2, + 0xe6bfb3, + 0xe6bfb4, + 0xe6bfb5, + 0xe6bfb6, + 0xe6bfb7, + 0xe6bfb8, + 0xe6bfb9, + 0xe6bfba, + 0xe6bfbb, + 0xe6bfbc, + 0xe6bfbd, + 0xe6bfbe, + 0xe6bfbf, + 0xe78080, + 0xe78081, + 0xe78082, + 0xe78083, + 0xe78084, + 0xe78085, + 0xe78086, + 0xe78087, + 0xe78088, + 0xe78089, + 0xe7808a, + 0xe7808b, + 0xe7808c, + 0xe7808d, + 0xe7808e, + 0xe7808f, + 0xe78090, + 0xe78091, + 0xe78092, + 0xe78093, + 0xe78094, + 0xe78095, + 0xe78096, + 0xe78097, + 0xe78098, + 0xe78099, + 0xe7809a, + 0xe7809b, + 0xe7809c, + 0xe7809d, + 0xe7809e, + 0xe7809f, + 0xe780a0, + 0xe780a1, + 0xe780a2, + 0xe780a3, + 0xe780a4, + 0xe780a5, + 0xe780a6, + 0xe780a7, + 0xe780a8, + 0xe780a9, + 0xe780aa, + 0xe780ab, + 0xe780ac, + 0xe780ad, + 0xe780ae, + 0xe780af, + 0xe780b0, + 0xe780b1, + 0xe780b2, + 0xe780b3, + 0xe780b4, + 0xe780b5, + 0xe780b6, + 0xe780b7, + 0xe780b8, + 0xe780b9, + 0xe780ba, + 0xe780bb, + 0xe780bc, + 0xe780bd, + 0xe780be, + 0xe780bf, + 0xe78180, + 0xe78181, + 0xe78182, + 0xe78183, + 0xe78184, + 0xe78185, + 0xe78186, + 0xe78187, + 0xe78188, + 0xe78189, + 0xe7818a, + 0xe7818b, + 0xe7818c, + 0xe7818d, + 0xe7818e, + 0xe7818f, + 0xe78190, + 0xe78191, + 0xe78192, + 0xe78193, + 0xe78194, + 0xe78195, + 0xe78196, + 0xe78197, + 0xe78198, + 0xe78199, + 0xe7819a, + 0xe7819b, + 0xe7819c, + 0xe7819d, + 0xe7819e, + 0xe7819f, + 0xe781a0, + 0xe781a1, + 0xe781a2, + 0xe781a3, + 0xe781a4, + 0xe781a5, + 0xe781a6, + 0xe781a7, + 0xe781a8, + 0xe781a9, + 0xe781aa, + 0xe781ab, + 0xe781ac, + 0xe781ad, + 0xe781ae, + 0xe781af, + 0xe781b0, + 0xe781b1, + 0xe781b2, + 0xe781b3, + 0xe781b4, + 0xe781b5, + 0xe781b6, + 0xe781b7, + 0xe781b8, + 0xe781b9, + 0xe781ba, + 0xe781bb, + 0xe781bc, + 0xe781bd, + 0xe781be, + 0xe781bf, + 0xe78280, + 0xe78281, + 0xe78282, + 0xe78283, + 0xe78284, + 0xe78285, + 0xe78286, + 0xe78287, + 0xe78288, + 0xe78289, + 0xe7828a, + 0xe7828b, + 0xe7828c, + 0xe7828d, + 0xe7828e, + 0xe7828f, + 0xe78290, + 0xe78291, + 0xe78292, + 0xe78293, + 0xe78294, + 0xe78295, + 0xe78296, + 0xe78297, + 0xe78298, + 0xe78299, + 0xe7829a, + 0xe7829b, + 0xe7829c, + 0xe7829d, + 0xe7829e, + 0xe7829f, + 0xe782a0, + 0xe782a1, + 0xe782a2, + 0xe782a3, + 0xe782a4, + 0xe782a5, + 0xe782a6, + 0xe782a7, + 0xe782a8, + 0xe782a9, + 0xe782aa, + 0xe782ab, + 0xe782ac, + 0xe782ad, + 0xe782ae, + 0xe782af, + 0xe782b0, + 0xe782b1, + 0xe782b2, + 0xe782b3, + 0xe782b4, + 0xe782b5, + 0xe782b6, + 0xe782b7, + 0xe782b8, + 0xe782b9, + 0xe782ba, + 0xe782bb, + 0xe782bc, + 0xe782bd, + 0xe782be, + 0xe782bf, + 0xe78380, + 0xe78381, + 0xe78382, + 0xe78383, + 0xe78384, + 0xe78385, + 0xe78386, + 0xe78387, + 0xe78388, + 0xe78389, + 0xe7838a, + 0xe7838b, + 0xe7838c, + 0xe7838d, + 0xe7838e, + 0xe7838f, + 0xe78390, + 0xe78391, + 0xe78392, + 0xe78393, + 0xe78394, + 0xe78395, + 0xe78396, + 0xe78397, + 0xe78398, + 0xe78399, + 0xe7839a, + 0xe7839b, + 0xe7839c, + 0xe7839d, + 0xe7839e, + 0xe7839f, + 0xe783a0, + 0xe783a1, + 0xe783a2, + 0xe783a3, + 0xe783a4, + 0xe783a5, + 0xe783a6, + 0xe783a7, + 0xe783a8, + 0xe783a9, + 0xe783aa, + 0xe783ab, + 0xe783ac, + 0xe783ad, + 0xe783ae, + 0xe783af, + 0xe783b0, + 0xe783b1, + 0xe783b2, + 0xe783b3, + 0xe783b4, + 0xe783b5, + 0xe783b6, + 0xe783b7, + 0xe783b8, + 0xe783b9, + 0xe783ba, + 0xe783bb, + 0xe783bc, + 0xe783bd, + 0xe783be, + 0xe783bf, + 0xe78480, + 0xe78481, + 0xe78482, + 0xe78483, + 0xe78484, + 0xe78485, + 0xe78486, + 0xe78487, + 0xe78488, + 0xe78489, + 0xe7848a, + 0xe7848b, + 0xe7848c, + 0xe7848d, + 0xe7848e, + 0xe7848f, + 0xe78490, + 0xe78491, + 0xe78492, + 0xe78493, + 0xe78494, + 0xe78495, + 0xe78496, + 0xe78497, + 0xe78498, + 0xe78499, + 0xe7849a, + 0xe7849b, + 0xe7849c, + 0xe7849d, + 0xe7849e, + 0xe7849f, + 0xe784a0, + 0xe784a1, + 0xe784a2, + 0xe784a3, + 0xe784a4, + 0xe784a5, + 0xe784a6, + 0xe784a7, + 0xe784a8, + 0xe784a9, + 0xe784aa, + 0xe784ab, + 0xe784ac, + 0xe784ad, + 0xe784ae, + 0xe784af, + 0xe784b0, + 0xe784b1, + 0xe784b2, + 0xe784b3, + 0xe784b4, + 0xe784b5, + 0xe784b6, + 0xe784b7, + 0xe784b8, + 0xe784b9, + 0xe784ba, + 0xe784bb, + 0xe784bc, + 0xe784bd, + 0xe784be, + 0xe784bf, + 0xe78580, + 0xe78581, + 0xe78582, + 0xe78583, + 0xe78584, + 0xe78585, + 0xe78586, + 0xe78587, + 0xe78588, + 0xe78589, + 0xe7858a, + 0xe7858b, + 0xe7858c, + 0xe7858d, + 0xe7858e, + 0xe7858f, + 0xe78590, + 0xe78591, + 0xe78592, + 0xe78593, + 0xe78594, + 0xe78595, + 0xe78596, + 0xe78597, + 0xe78598, + 0xe78599, + 0xe7859a, + 0xe7859b, + 0xe7859c, + 0xe7859d, + 0xe7859e, + 0xe7859f, + 0xe785a0, + 0xe785a1, + 0xe785a2, + 0xe785a3, + 0xe785a4, + 0xe785a5, + 0xe785a6, + 0xe785a7, + 0xe785a8, + 0xe785a9, + 0xe785aa, + 0xe785ab, + 0xe785ac, + 0xe785ad, + 0xe785ae, + 0xe785af, + 0xe785b0, + 0xe785b1, + 0xe785b2, + 0xe785b3, + 0xe785b4, + 0xe785b5, + 0xe785b6, + 0xe785b7, + 0xe785b8, + 0xe785b9, + 0xe785ba, + 0xe785bb, + 0xe785bc, + 0xe785bd, + 0xe785be, + 0xe785bf, + 0xe78680, + 0xe78681, + 0xe78682, + 0xe78683, + 0xe78684, + 0xe78685, + 0xe78686, + 0xe78687, + 0xe78688, + 0xe78689, + 0xe7868a, + 0xe7868b, + 0xe7868c, + 0xe7868d, + 0xe7868e, + 0xe7868f, + 0xe78690, + 0xe78691, + 0xe78692, + 0xe78693, + 0xe78694, + 0xe78695, + 0xe78696, + 0xe78697, + 0xe78698, + 0xe78699, + 0xe7869a, + 0xe7869b, + 0xe7869c, + 0xe7869d, + 0xe7869e, + 0xe7869f, + 0xe786a0, + 0xe786a1, + 0xe786a2, + 0xe786a3, + 0xe786a4, + 0xe786a5, + 0xe786a6, + 0xe786a7, + 0xe786a8, + 0xe786a9, + 0xe786aa, + 0xe786ab, + 0xe786ac, + 0xe786ad, + 0xe786ae, + 0xe786af, + 0xe786b0, + 0xe786b1, + 0xe786b2, + 0xe786b3, + 0xe786b4, + 0xe786b5, + 0xe786b6, + 0xe786b7, + 0xe786b8, + 0xe786b9, + 0xe786ba, + 0xe786bb, + 0xe786bc, + 0xe786bd, + 0xe786be, + 0xe786bf, + 0xe78780, + 0xe78781, + 0xe78782, + 0xe78783, + 0xe78784, + 0xe78785, + 0xe78786, + 0xe78787, + 0xe78788, + 0xe78789, + 0xe7878a, + 0xe7878b, + 0xe7878c, + 0xe7878d, + 0xe7878e, + 0xe7878f, + 0xe78790, + 0xe78791, + 0xe78792, + 0xe78793, + 0xe78794, + 0xe78795, + 0xe78796, + 0xe78797, + 0xe78798, + 0xe78799, + 0xe7879a, + 0xe7879b, + 0xe7879c, + 0xe7879d, + 0xe7879e, + 0xe7879f, + 0xe787a0, + 0xe787a1, + 0xe787a2, + 0xe787a3, + 0xe787a4, + 0xe787a5, + 0xe787a6, + 0xe787a7, + 0xe787a8, + 0xe787a9, + 0xe787aa, + 0xe787ab, + 0xe787ac, + 0xe787ad, + 0xe787ae, + 0xe787af, + 0xe787b0, + 0xe787b1, + 0xe787b2, + 0xe787b3, + 0xe787b4, + 0xe787b5, + 0xe787b6, + 0xe787b7, + 0xe787b8, + 0xe787b9, + 0xe787ba, + 0xe787bb, + 0xe787bc, + 0xe787bd, + 0xe787be, + 0xe787bf, + 0xe78880, + 0xe78881, + 0xe78882, + 0xe78883, + 0xe78884, + 0xe78885, + 0xe78886, + 0xe78887, + 0xe78888, + 0xe78889, + 0xe7888a, + 0xe7888b, + 0xe7888c, + 0xe7888d, + 0xe7888e, + 0xe7888f, + 0xe78890, + 0xe78891, + 0xe78892, + 0xe78893, + 0xe78894, + 0xe78895, + 0xe78896, + 0xe78897, + 0xe78898, + 0xe78899, + 0xe7889a, + 0xe7889b, + 0xe7889c, + 0xe7889d, + 0xe7889e, + 0xe7889f, + 0xe788a0, + 0xe788a1, + 0xe788a2, + 0xe788a3, + 0xe788a4, + 0xe788a5, + 0xe788a6, + 0xe788a7, + 0xe788a8, + 0xe788a9, + 0xe788aa, + 0xe788ab, + 0xe788ac, + 0xe788ad, + 0xe788ae, + 0xe788af, + 0xe788b0, + 0xe788b1, + 0xe788b2, + 0xe788b3, + 0xe788b4, + 0xe788b5, + 0xe788b6, + 0xe788b7, + 0xe788b8, + 0xe788b9, + 0xe788ba, + 0xe788bb, + 0xe788bc, + 0xe788bd, + 0xe788be, + 0xe788bf, + 0xe78980, + 0xe78981, + 0xe78982, + 0xe78983, + 0xe78984, + 0xe78985, + 0xe78986, + 0xe78987, + 0xe78988, + 0xe78989, + 0xe7898a, + 0xe7898b, + 0xe7898c, + 0xe7898d, + 0xe7898e, + 0xe7898f, + 0xe78990, + 0xe78991, + 0xe78992, + 0xe78993, + 0xe78994, + 0xe78995, + 0xe78996, + 0xe78997, + 0xe78998, + 0xe78999, + 0xe7899a, + 0xe7899b, + 0xe7899c, + 0xe7899d, + 0xe7899e, + 0xe7899f, + 0xe789a0, + 0xe789a1, + 0xe789a2, + 0xe789a3, + 0xe789a4, + 0xe789a5, + 0xe789a6, + 0xe789a7, + 0xe789a8, + 0xe789a9, + 0xe789aa, + 0xe789ab, + 0xe789ac, + 0xe789ad, + 0xe789ae, + 0xe789af, + 0xe789b0, + 0xe789b1, + 0xe789b2, + 0xe789b3, + 0xe789b4, + 0xe789b5, + 0xe789b6, + 0xe789b7, + 0xe789b8, + 0xe789b9, + 0xe789ba, + 0xe789bb, + 0xe789bc, + 0xe789bd, + 0xe789be, + 0xe789bf, + 0xe78a80, + 0xe78a81, + 0xe78a82, + 0xe78a83, + 0xe78a84, + 0xe78a85, + 0xe78a86, + 0xe78a87, + 0xe78a88, + 0xe78a89, + 0xe78a8a, + 0xe78a8b, + 0xe78a8c, + 0xe78a8d, + 0xe78a8e, + 0xe78a8f, + 0xe78a90, + 0xe78a91, + 0xe78a92, + 0xe78a93, + 0xe78a94, + 0xe78a95, + 0xe78a96, + 0xe78a97, + 0xe78a98, + 0xe78a99, + 0xe78a9a, + 0xe78a9b, + 0xe78a9c, + 0xe78a9d, + 0xe78a9e, + 0xe78a9f, + 0xe78aa0, + 0xe78aa1, + 0xe78aa2, + 0xe78aa3, + 0xe78aa4, + 0xe78aa5, + 0xe78aa6, + 0xe78aa7, + 0xe78aa8, + 0xe78aa9, + 0xe78aaa, + 0xe78aab, + 0xe78aac, + 0xe78aad, + 0xe78aae, + 0xe78aaf, + 0xe78ab0, + 0xe78ab1, + 0xe78ab2, + 0xe78ab3, + 0xe78ab4, + 0xe78ab5, + 0xe78ab6, + 0xe78ab7, + 0xe78ab8, + 0xe78ab9, + 0xe78aba, + 0xe78abb, + 0xe78abc, + 0xe78abd, + 0xe78abe, + 0xe78abf, + 0xe78b80, + 0xe78b81, + 0xe78b82, + 0xe78b83, + 0xe78b84, + 0xe78b85, + 0xe78b86, + 0xe78b87, + 0xe78b88, + 0xe78b89, + 0xe78b8a, + 0xe78b8b, + 0xe78b8c, + 0xe78b8d, + 0xe78b8e, + 0xe78b8f, + 0xe78b90, + 0xe78b91, + 0xe78b92, + 0xe78b93, + 0xe78b94, + 0xe78b95, + 0xe78b96, + 0xe78b97, + 0xe78b98, + 0xe78b99, + 0xe78b9a, + 0xe78b9b, + 0xe78b9c, + 0xe78b9d, + 0xe78b9e, + 0xe78b9f, + 0xe78ba0, + 0xe78ba1, + 0xe78ba2, + 0xe78ba3, + 0xe78ba4, + 0xe78ba5, + 0xe78ba6, + 0xe78ba7, + 0xe78ba8, + 0xe78ba9, + 0xe78baa, + 0xe78bab, + 0xe78bac, + 0xe78bad, + 0xe78bae, + 0xe78baf, + 0xe78bb0, + 0xe78bb1, + 0xe78bb2, + 0xe78bb3, + 0xe78bb4, + 0xe78bb5, + 0xe78bb6, + 0xe78bb7, + 0xe78bb8, + 0xe78bb9, + 0xe78bba, + 0xe78bbb, + 0xe78bbc, + 0xe78bbd, + 0xe78bbe, + 0xe78bbf, + 0xe78c80, + 0xe78c81, + 0xe78c82, + 0xe78c83, + 0xe78c84, + 0xe78c85, + 0xe78c86, + 0xe78c87, + 0xe78c88, + 0xe78c89, + 0xe78c8a, + 0xe78c8b, + 0xe78c8c, + 0xe78c8d, + 0xe78c8e, + 0xe78c8f, + 0xe78c90, + 0xe78c91, + 0xe78c92, + 0xe78c93, + 0xe78c94, + 0xe78c95, + 0xe78c96, + 0xe78c97, + 0xe78c98, + 0xe78c99, + 0xe78c9a, + 0xe78c9b, + 0xe78c9c, + 0xe78c9d, + 0xe78c9e, + 0xe78c9f, + 0xe78ca0, + 0xe78ca1, + 0xe78ca2, + 0xe78ca3, + 0xe78ca4, + 0xe78ca5, + 0xe78ca6, + 0xe78ca7, + 0xe78ca8, + 0xe78ca9, + 0xe78caa, + 0xe78cab, + 0xe78cac, + 0xe78cad, + 0xe78cae, + 0xe78caf, + 0xe78cb0, + 0xe78cb1, + 0xe78cb2, + 0xe78cb3, + 0xe78cb4, + 0xe78cb5, + 0xe78cb6, + 0xe78cb7, + 0xe78cb8, + 0xe78cb9, + 0xe78cba, + 0xe78cbb, + 0xe78cbc, + 0xe78cbd, + 0xe78cbe, + 0xe78cbf, + 0xe78d80, + 0xe78d81, + 0xe78d82, + 0xe78d83, + 0xe78d84, + 0xe78d85, + 0xe78d86, + 0xe78d87, + 0xe78d88, + 0xe78d89, + 0xe78d8a, + 0xe78d8b, + 0xe78d8c, + 0xe78d8d, + 0xe78d8e, + 0xe78d8f, + 0xe78d90, + 0xe78d91, + 0xe78d92, + 0xe78d93, + 0xe78d94, + 0xe78d95, + 0xe78d96, + 0xe78d97, + 0xe78d98, + 0xe78d99, + 0xe78d9a, + 0xe78d9b, + 0xe78d9c, + 0xe78d9d, + 0xe78d9e, + 0xe78d9f, + 0xe78da0, + 0xe78da1, + 0xe78da2, + 0xe78da3, + 0xe78da4, + 0xe78da5, + 0xe78da6, + 0xe78da7, + 0xe78da8, + 0xe78da9, + 0xe78daa, + 0xe78dab, + 0xe78dac, + 0xe78dad, + 0xe78dae, + 0xe78daf, + 0xe78db0, + 0xe78db1, + 0xe78db2, + 0xe78db3, + 0xe78db4, + 0xe78db5, + 0xe78db6, + 0xe78db7, + 0xe78db8, + 0xe78db9, + 0xe78dba, + 0xe78dbb, + 0xe78dbc, + 0xe78dbd, + 0xe78dbe, + 0xe78dbf, + 0xe78e80, + 0xe78e81, + 0xe78e82, + 0xe78e83, + 0xe78e84, + 0xe78e85, + 0xe78e86, + 0xe78e87, + 0xe78e88, + 0xe78e89, + 0xe78e8a, + 0xe78e8b, + 0xe78e8c, + 0xe78e8d, + 0xe78e8e, + 0xe78e8f, + 0xe78e90, + 0xe78e91, + 0xe78e92, + 0xe78e93, + 0xe78e94, + 0xe78e95, + 0xe78e96, + 0xe78e97, + 0xe78e98, + 0xe78e99, + 0xe78e9a, + 0xe78e9b, + 0xe78e9c, + 0xe78e9d, + 0xe78e9e, + 0xe78e9f, + 0xe78ea0, + 0xe78ea1, + 0xe78ea2, + 0xe78ea3, + 0xe78ea4, + 0xe78ea5, + 0xe78ea6, + 0xe78ea7, + 0xe78ea8, + 0xe78ea9, + 0xe78eaa, + 0xe78eab, + 0xe78eac, + 0xe78ead, + 0xe78eae, + 0xe78eaf, + 0xe78eb0, + 0xe78eb1, + 0xe78eb2, + 0xe78eb3, + 0xe78eb4, + 0xe78eb5, + 0xe78eb6, + 0xe78eb7, + 0xe78eb8, + 0xe78eb9, + 0xe78eba, + 0xe78ebb, + 0xe78ebc, + 0xe78ebd, + 0xe78ebe, + 0xe78ebf, + 0xe78f80, + 0xe78f81, + 0xe78f82, + 0xe78f83, + 0xe78f84, + 0xe78f85, + 0xe78f86, + 0xe78f87, + 0xe78f88, + 0xe78f89, + 0xe78f8a, + 0xe78f8b, + 0xe78f8c, + 0xe78f8d, + 0xe78f8e, + 0xe78f8f, + 0xe78f90, + 0xe78f91, + 0xe78f92, + 0xe78f93, + 0xe78f94, + 0xe78f95, + 0xe78f96, + 0xe78f97, + 0xe78f98, + 0xe78f99, + 0xe78f9a, + 0xe78f9b, + 0xe78f9c, + 0xe78f9d, + 0xe78f9e, + 0xe78f9f, + 0xe78fa0, + 0xe78fa1, + 0xe78fa2, + 0xe78fa3, + 0xe78fa4, + 0xe78fa5, + 0xe78fa6, + 0xe78fa7, + 0xe78fa8, + 0xe78fa9, + 0xe78faa, + 0xe78fab, + 0xe78fac, + 0xe78fad, + 0xe78fae, + 0xe78faf, + 0xe78fb0, + 0xe78fb1, + 0xe78fb2, + 0xe78fb3, + 0xe78fb4, + 0xe78fb5, + 0xe78fb6, + 0xe78fb7, + 0xe78fb8, + 0xe78fb9, + 0xe78fba, + 0xe78fbb, + 0xe78fbc, + 0xe78fbd, + 0xe78fbe, + 0xe78fbf, + 0xe79080, + 0xe79081, + 0xe79082, + 0xe79083, + 0xe79084, + 0xe79085, + 0xe79086, + 0xe79087, + 0xe79088, + 0xe79089, + 0xe7908a, + 0xe7908b, + 0xe7908c, + 0xe7908d, + 0xe7908e, + 0xe7908f, + 0xe79090, + 0xe79091, + 0xe79092, + 0xe79093, + 0xe79094, + 0xe79095, + 0xe79096, + 0xe79097, + 0xe79098, + 0xe79099, + 0xe7909a, + 0xe7909b, + 0xe7909c, + 0xe7909d, + 0xe7909e, + 0xe7909f, + 0xe790a0, + 0xe790a1, + 0xe790a2, + 0xe790a3, + 0xe790a4, + 0xe790a5, + 0xe790a6, + 0xe790a7, + 0xe790a8, + 0xe790a9, + 0xe790aa, + 0xe790ab, + 0xe790ac, + 0xe790ad, + 0xe790ae, + 0xe790af, + 0xe790b0, + 0xe790b1, + 0xe790b2, + 0xe790b3, + 0xe790b4, + 0xe790b5, + 0xe790b6, + 0xe790b7, + 0xe790b8, + 0xe790b9, + 0xe790ba, + 0xe790bb, + 0xe790bc, + 0xe790bd, + 0xe790be, + 0xe790bf, + 0xe79180, + 0xe79181, + 0xe79182, + 0xe79183, + 0xe79184, + 0xe79185, + 0xe79186, + 0xe79187, + 0xe79188, + 0xe79189, + 0xe7918a, + 0xe7918b, + 0xe7918c, + 0xe7918d, + 0xe7918e, + 0xe7918f, + 0xe79190, + 0xe79191, + 0xe79192, + 0xe79193, + 0xe79194, + 0xe79195, + 0xe79196, + 0xe79197, + 0xe79198, + 0xe79199, + 0xe7919a, + 0xe7919b, + 0xe7919c, + 0xe7919d, + 0xe7919e, + 0xe7919f, + 0xe791a0, + 0xe791a1, + 0xe791a2, + 0xe791a3, + 0xe791a4, + 0xe791a5, + 0xe791a6, + 0xe791a7, + 0xe791a8, + 0xe791a9, + 0xe791aa, + 0xe791ab, + 0xe791ac, + 0xe791ad, + 0xe791ae, + 0xe791af, + 0xe791b0, + 0xe791b1, + 0xe791b2, + 0xe791b3, + 0xe791b4, + 0xe791b5, + 0xe791b6, + 0xe791b7, + 0xe791b8, + 0xe791b9, + 0xe791ba, + 0xe791bb, + 0xe791bc, + 0xe791bd, + 0xe791be, + 0xe791bf, + 0xe79280, + 0xe79281, + 0xe79282, + 0xe79283, + 0xe79284, + 0xe79285, + 0xe79286, + 0xe79287, + 0xe79288, + 0xe79289, + 0xe7928a, + 0xe7928b, + 0xe7928c, + 0xe7928d, + 0xe7928e, + 0xe7928f, + 0xe79290, + 0xe79291, + 0xe79292, + 0xe79293, + 0xe79294, + 0xe79295, + 0xe79296, + 0xe79297, + 0xe79298, + 0xe79299, + 0xe7929a, + 0xe7929b, + 0xe7929c, + 0xe7929d, + 0xe7929e, + 0xe7929f, + 0xe792a0, + 0xe792a1, + 0xe792a2, + 0xe792a3, + 0xe792a4, + 0xe792a5, + 0xe792a6, + 0xe792a7, + 0xe792a8, + 0xe792a9, + 0xe792aa, + 0xe792ab, + 0xe792ac, + 0xe792ad, + 0xe792ae, + 0xe792af, + 0xe792b0, + 0xe792b1, + 0xe792b2, + 0xe792b3, + 0xe792b4, + 0xe792b5, + 0xe792b6, + 0xe792b7, + 0xe792b8, + 0xe792b9, + 0xe792ba, + 0xe792bb, + 0xe792bc, + 0xe792bd, + 0xe792be, + 0xe792bf, + 0xe79380, + 0xe79381, + 0xe79382, + 0xe79383, + 0xe79384, + 0xe79385, + 0xe79386, + 0xe79387, + 0xe79388, + 0xe79389, + 0xe7938a, + 0xe7938b, + 0xe7938c, + 0xe7938d, + 0xe7938e, + 0xe7938f, + 0xe79390, + 0xe79391, + 0xe79392, + 0xe79393, + 0xe79394, + 0xe79395, + 0xe79396, + 0xe79397, + 0xe79398, + 0xe79399, + 0xe7939a, + 0xe7939b, + 0xe7939c, + 0xe7939d, + 0xe7939e, + 0xe7939f, + 0xe793a0, + 0xe793a1, + 0xe793a2, + 0xe793a3, + 0xe793a4, + 0xe793a5, + 0xe793a6, + 0xe793a7, + 0xe793a8, + 0xe793a9, + 0xe793aa, + 0xe793ab, + 0xe793ac, + 0xe793ad, + 0xe793ae, + 0xe793af, + 0xe793b0, + 0xe793b1, + 0xe793b2, + 0xe793b3, + 0xe793b4, + 0xe793b5, + 0xe793b6, + 0xe793b7, + 0xe793b8, + 0xe793b9, + 0xe793ba, + 0xe793bb, + 0xe793bc, + 0xe793bd, + 0xe793be, + 0xe793bf, + 0xe79480, + 0xe79481, + 0xe79482, + 0xe79483, + 0xe79484, + 0xe79485, + 0xe79486, + 0xe79487, + 0xe79488, + 0xe79489, + 0xe7948a, + 0xe7948b, + 0xe7948c, + 0xe7948d, + 0xe7948e, + 0xe7948f, + 0xe79490, + 0xe79491, + 0xe79492, + 0xe79493, + 0xe79494, + 0xe79495, + 0xe79496, + 0xe79497, + 0xe79498, + 0xe79499, + 0xe7949a, + 0xe7949b, + 0xe7949c, + 0xe7949d, + 0xe7949e, + 0xe7949f, + 0xe794a0, + 0xe794a1, + 0xe794a2, + 0xe794a3, + 0xe794a4, + 0xe794a5, + 0xe794a6, + 0xe794a7, + 0xe794a8, + 0xe794a9, + 0xe794aa, + 0xe794ab, + 0xe794ac, + 0xe794ad, + 0xe794ae, + 0xe794af, + 0xe794b0, + 0xe794b1, + 0xe794b2, + 0xe794b3, + 0xe794b4, + 0xe794b5, + 0xe794b6, + 0xe794b7, + 0xe794b8, + 0xe794b9, + 0xe794ba, + 0xe794bb, + 0xe794bc, + 0xe794bd, + 0xe794be, + 0xe794bf, + 0xe79580, + 0xe79581, + 0xe79582, + 0xe79583, + 0xe79584, + 0xe79585, + 0xe79586, + 0xe79587, + 0xe79588, + 0xe79589, + 0xe7958a, + 0xe7958b, + 0xe7958c, + 0xe7958d, + 0xe7958e, + 0xe7958f, + 0xe79590, + 0xe79591, + 0xe79592, + 0xe79593, + 0xe79594, + 0xe79595, + 0xe79596, + 0xe79597, + 0xe79598, + 0xe79599, + 0xe7959a, + 0xe7959b, + 0xe7959c, + 0xe7959d, + 0xe7959e, + 0xe7959f, + 0xe795a0, + 0xe795a1, + 0xe795a2, + 0xe795a3, + 0xe795a4, + 0xe795a5, + 0xe795a6, + 0xe795a7, + 0xe795a8, + 0xe795a9, + 0xe795aa, + 0xe795ab, + 0xe795ac, + 0xe795ad, + 0xe795ae, + 0xe795af, + 0xe795b0, + 0xe795b1, + 0xe795b2, + 0xe795b3, + 0xe795b4, + 0xe795b5, + 0xe795b6, + 0xe795b7, + 0xe795b8, + 0xe795b9, + 0xe795ba, + 0xe795bb, + 0xe795bc, + 0xe795bd, + 0xe795be, + 0xe795bf, + 0xe79680, + 0xe79681, + 0xe79682, + 0xe79683, + 0xe79684, + 0xe79685, + 0xe79686, + 0xe79687, + 0xe79688, + 0xe79689, + 0xe7968a, + 0xe7968b, + 0xe7968c, + 0xe7968d, + 0xe7968e, + 0xe7968f, + 0xe79690, + 0xe79691, + 0xe79692, + 0xe79693, + 0xe79694, + 0xe79695, + 0xe79696, + 0xe79697, + 0xe79698, + 0xe79699, + 0xe7969a, + 0xe7969b, + 0xe7969c, + 0xe7969d, + 0xe7969e, + 0xe7969f, + 0xe796a0, + 0xe796a1, + 0xe796a2, + 0xe796a3, + 0xe796a4, + 0xe796a5, + 0xe796a6, + 0xe796a7, + 0xe796a8, + 0xe796a9, + 0xe796aa, + 0xe796ab, + 0xe796ac, + 0xe796ad, + 0xe796ae, + 0xe796af, + 0xe796b0, + 0xe796b1, + 0xe796b2, + 0xe796b3, + 0xe796b4, + 0xe796b5, + 0xe796b6, + 0xe796b7, + 0xe796b8, + 0xe796b9, + 0xe796ba, + 0xe796bb, + 0xe796bc, + 0xe796bd, + 0xe796be, + 0xe796bf, + 0xe79780, + 0xe79781, + 0xe79782, + 0xe79783, + 0xe79784, + 0xe79785, + 0xe79786, + 0xe79787, + 0xe79788, + 0xe79789, + 0xe7978a, + 0xe7978b, + 0xe7978c, + 0xe7978d, + 0xe7978e, + 0xe7978f, + 0xe79790, + 0xe79791, + 0xe79792, + 0xe79793, + 0xe79794, + 0xe79795, + 0xe79796, + 0xe79797, + 0xe79798, + 0xe79799, + 0xe7979a, + 0xe7979b, + 0xe7979c, + 0xe7979d, + 0xe7979e, + 0xe7979f, + 0xe797a0, + 0xe797a1, + 0xe797a2, + 0xe797a3, + 0xe797a4, + 0xe797a5, + 0xe797a6, + 0xe797a7, + 0xe797a8, + 0xe797a9, + 0xe797aa, + 0xe797ab, + 0xe797ac, + 0xe797ad, + 0xe797ae, + 0xe797af, + 0xe797b0, + 0xe797b1, + 0xe797b2, + 0xe797b3, + 0xe797b4, + 0xe797b5, + 0xe797b6, + 0xe797b7, + 0xe797b8, + 0xe797b9, + 0xe797ba, + 0xe797bb, + 0xe797bc, + 0xe797bd, + 0xe797be, + 0xe797bf, + 0xe79880, + 0xe79881, + 0xe79882, + 0xe79883, + 0xe79884, + 0xe79885, + 0xe79886, + 0xe79887, + 0xe79888, + 0xe79889, + 0xe7988a, + 0xe7988b, + 0xe7988c, + 0xe7988d, + 0xe7988e, + 0xe7988f, + 0xe79890, + 0xe79891, + 0xe79892, + 0xe79893, + 0xe79894, + 0xe79895, + 0xe79896, + 0xe79897, + 0xe79898, + 0xe79899, + 0xe7989a, + 0xe7989b, + 0xe7989c, + 0xe7989d, + 0xe7989e, + 0xe7989f, + 0xe798a0, + 0xe798a1, + 0xe798a2, + 0xe798a3, + 0xe798a4, + 0xe798a5, + 0xe798a6, + 0xe798a7, + 0xe798a8, + 0xe798a9, + 0xe798aa, + 0xe798ab, + 0xe798ac, + 0xe798ad, + 0xe798ae, + 0xe798af, + 0xe798b0, + 0xe798b1, + 0xe798b2, + 0xe798b3, + 0xe798b4, + 0xe798b5, + 0xe798b6, + 0xe798b7, + 0xe798b8, + 0xe798b9, + 0xe798ba, + 0xe798bb, + 0xe798bc, + 0xe798bd, + 0xe798be, + 0xe798bf, + 0xe79980, + 0xe79981, + 0xe79982, + 0xe79983, + 0xe79984, + 0xe79985, + 0xe79986, + 0xe79987, + 0xe79988, + 0xe79989, + 0xe7998a, + 0xe7998b, + 0xe7998c, + 0xe7998d, + 0xe7998e, + 0xe7998f, + 0xe79990, + 0xe79991, + 0xe79992, + 0xe79993, + 0xe79994, + 0xe79995, + 0xe79996, + 0xe79997, + 0xe79998, + 0xe79999, + 0xe7999a, + 0xe7999b, + 0xe7999c, + 0xe7999d, + 0xe7999e, + 0xe7999f, + 0xe799a0, + 0xe799a1, + 0xe799a2, + 0xe799a3, + 0xe799a4, + 0xe799a5, + 0xe799a6, + 0xe799a7, + 0xe799a8, + 0xe799a9, + 0xe799aa, + 0xe799ab, + 0xe799ac, + 0xe799ad, + 0xe799ae, + 0xe799af, + 0xe799b0, + 0xe799b1, + 0xe799b2, + 0xe799b3, + 0xe799b4, + 0xe799b5, + 0xe799b6, + 0xe799b7, + 0xe799b8, + 0xe799b9, + 0xe799ba, + 0xe799bb, + 0xe799bc, + 0xe799bd, + 0xe799be, + 0xe799bf, + 0xe79a80, + 0xe79a81, + 0xe79a82, + 0xe79a83, + 0xe79a84, + 0xe79a85, + 0xe79a86, + 0xe79a87, + 0xe79a88, + 0xe79a89, + 0xe79a8a, + 0xe79a8b, + 0xe79a8c, + 0xe79a8d, + 0xe79a8e, + 0xe79a8f, + 0xe79a90, + 0xe79a91, + 0xe79a92, + 0xe79a93, + 0xe79a94, + 0xe79a95, + 0xe79a96, + 0xe79a97, + 0xe79a98, + 0xe79a99, + 0xe79a9a, + 0xe79a9b, + 0xe79a9c, + 0xe79a9d, + 0xe79a9e, + 0xe79a9f, + 0xe79aa0, + 0xe79aa1, + 0xe79aa2, + 0xe79aa3, + 0xe79aa4, + 0xe79aa5, + 0xe79aa6, + 0xe79aa7, + 0xe79aa8, + 0xe79aa9, + 0xe79aaa, + 0xe79aab, + 0xe79aac, + 0xe79aad, + 0xe79aae, + 0xe79aaf, + 0xe79ab0, + 0xe79ab1, + 0xe79ab2, + 0xe79ab3, + 0xe79ab4, + 0xe79ab5, + 0xe79ab6, + 0xe79ab7, + 0xe79ab8, + 0xe79ab9, + 0xe79aba, + 0xe79abb, + 0xe79abc, + 0xe79abd, + 0xe79abe, + 0xe79abf, + 0xe79b80, + 0xe79b81, + 0xe79b82, + 0xe79b83, + 0xe79b84, + 0xe79b85, + 0xe79b86, + 0xe79b87, + 0xe79b88, + 0xe79b89, + 0xe79b8a, + 0xe79b8b, + 0xe79b8c, + 0xe79b8d, + 0xe79b8e, + 0xe79b8f, + 0xe79b90, + 0xe79b91, + 0xe79b92, + 0xe79b93, + 0xe79b94, + 0xe79b95, + 0xe79b96, + 0xe79b97, + 0xe79b98, + 0xe79b99, + 0xe79b9a, + 0xe79b9b, + 0xe79b9c, + 0xe79b9d, + 0xe79b9e, + 0xe79b9f, + 0xe79ba0, + 0xe79ba1, + 0xe79ba2, + 0xe79ba3, + 0xe79ba4, + 0xe79ba5, + 0xe79ba6, + 0xe79ba7, + 0xe79ba8, + 0xe79ba9, + 0xe79baa, + 0xe79bab, + 0xe79bac, + 0xe79bad, + 0xe79bae, + 0xe79baf, + 0xe79bb0, + 0xe79bb1, + 0xe79bb2, + 0xe79bb3, + 0xe79bb4, + 0xe79bb5, + 0xe79bb6, + 0xe79bb7, + 0xe79bb8, + 0xe79bb9, + 0xe79bba, + 0xe79bbb, + 0xe79bbc, + 0xe79bbd, + 0xe79bbe, + 0xe79bbf, + 0xe79c80, + 0xe79c81, + 0xe79c82, + 0xe79c83, + 0xe79c84, + 0xe79c85, + 0xe79c86, + 0xe79c87, + 0xe79c88, + 0xe79c89, + 0xe79c8a, + 0xe79c8b, + 0xe79c8c, + 0xe79c8d, + 0xe79c8e, + 0xe79c8f, + 0xe79c90, + 0xe79c91, + 0xe79c92, + 0xe79c93, + 0xe79c94, + 0xe79c95, + 0xe79c96, + 0xe79c97, + 0xe79c98, + 0xe79c99, + 0xe79c9a, + 0xe79c9b, + 0xe79c9c, + 0xe79c9d, + 0xe79c9e, + 0xe79c9f, + 0xe79ca0, + 0xe79ca1, + 0xe79ca2, + 0xe79ca3, + 0xe79ca4, + 0xe79ca5, + 0xe79ca6, + 0xe79ca7, + 0xe79ca8, + 0xe79ca9, + 0xe79caa, + 0xe79cab, + 0xe79cac, + 0xe79cad, + 0xe79cae, + 0xe79caf, + 0xe79cb0, + 0xe79cb1, + 0xe79cb2, + 0xe79cb3, + 0xe79cb4, + 0xe79cb5, + 0xe79cb6, + 0xe79cb7, + 0xe79cb8, + 0xe79cb9, + 0xe79cba, + 0xe79cbb, + 0xe79cbc, + 0xe79cbd, + 0xe79cbe, + 0xe79cbf, + 0xe79d80, + 0xe79d81, + 0xe79d82, + 0xe79d83, + 0xe79d84, + 0xe79d85, + 0xe79d86, + 0xe79d87, + 0xe79d88, + 0xe79d89, + 0xe79d8a, + 0xe79d8b, + 0xe79d8c, + 0xe79d8d, + 0xe79d8e, + 0xe79d8f, + 0xe79d90, + 0xe79d91, + 0xe79d92, + 0xe79d93, + 0xe79d94, + 0xe79d95, + 0xe79d96, + 0xe79d97, + 0xe79d98, + 0xe79d99, + 0xe79d9a, + 0xe79d9b, + 0xe79d9c, + 0xe79d9d, + 0xe79d9e, + 0xe79d9f, + 0xe79da0, + 0xe79da1, + 0xe79da2, + 0xe79da3, + 0xe79da4, + 0xe79da5, + 0xe79da6, + 0xe79da7, + 0xe79da8, + 0xe79da9, + 0xe79daa, + 0xe79dab, + 0xe79dac, + 0xe79dad, + 0xe79dae, + 0xe79daf, + 0xe79db0, + 0xe79db1, + 0xe79db2, + 0xe79db3, + 0xe79db4, + 0xe79db5, + 0xe79db6, + 0xe79db7, + 0xe79db8, + 0xe79db9, + 0xe79dba, + 0xe79dbb, + 0xe79dbc, + 0xe79dbd, + 0xe79dbe, + 0xe79dbf, + 0xe79e80, + 0xe79e81, + 0xe79e82, + 0xe79e83, + 0xe79e84, + 0xe79e85, + 0xe79e86, + 0xe79e87, + 0xe79e88, + 0xe79e89, + 0xe79e8a, + 0xe79e8b, + 0xe79e8c, + 0xe79e8d, + 0xe79e8e, + 0xe79e8f, + 0xe79e90, + 0xe79e91, + 0xe79e92, + 0xe79e93, + 0xe79e94, + 0xe79e95, + 0xe79e96, + 0xe79e97, + 0xe79e98, + 0xe79e99, + 0xe79e9a, + 0xe79e9b, + 0xe79e9c, + 0xe79e9d, + 0xe79e9e, + 0xe79e9f, + 0xe79ea0, + 0xe79ea1, + 0xe79ea2, + 0xe79ea3, + 0xe79ea4, + 0xe79ea5, + 0xe79ea6, + 0xe79ea7, + 0xe79ea8, + 0xe79ea9, + 0xe79eaa, + 0xe79eab, + 0xe79eac, + 0xe79ead, + 0xe79eae, + 0xe79eaf, + 0xe79eb0, + 0xe79eb1, + 0xe79eb2, + 0xe79eb3, + 0xe79eb4, + 0xe79eb5, + 0xe79eb6, + 0xe79eb7, + 0xe79eb8, + 0xe79eb9, + 0xe79eba, + 0xe79ebb, + 0xe79ebc, + 0xe79ebd, + 0xe79ebe, + 0xe79ebf, + 0xe79f80, + 0xe79f81, + 0xe79f82, + 0xe79f83, + 0xe79f84, + 0xe79f85, + 0xe79f86, + 0xe79f87, + 0xe79f88, + 0xe79f89, + 0xe79f8a, + 0xe79f8b, + 0xe79f8c, + 0xe79f8d, + 0xe79f8e, + 0xe79f8f, + 0xe79f90, + 0xe79f91, + 0xe79f92, + 0xe79f93, + 0xe79f94, + 0xe79f95, + 0xe79f96, + 0xe79f97, + 0xe79f98, + 0xe79f99, + 0xe79f9a, + 0xe79f9b, + 0xe79f9c, + 0xe79f9d, + 0xe79f9e, + 0xe79f9f, + 0xe79fa0, + 0xe79fa1, + 0xe79fa2, + 0xe79fa3, + 0xe79fa4, + 0xe79fa5, + 0xe79fa6, + 0xe79fa7, + 0xe79fa8, + 0xe79fa9, + 0xe79faa, + 0xe79fab, + 0xe79fac, + 0xe79fad, + 0xe79fae, + 0xe79faf, + 0xe79fb0, + 0xe79fb1, + 0xe79fb2, + 0xe79fb3, + 0xe79fb4, + 0xe79fb5, + 0xe79fb6, + 0xe79fb7, + 0xe79fb8, + 0xe79fb9, + 0xe79fba, + 0xe79fbb, + 0xe79fbc, + 0xe79fbd, + 0xe79fbe, + 0xe79fbf, + 0xe7a080, + 0xe7a081, + 0xe7a082, + 0xe7a083, + 0xe7a084, + 0xe7a085, + 0xe7a086, + 0xe7a087, + 0xe7a088, + 0xe7a089, + 0xe7a08a, + 0xe7a08b, + 0xe7a08c, + 0xe7a08d, + 0xe7a08e, + 0xe7a08f, + 0xe7a090, + 0xe7a091, + 0xe7a092, + 0xe7a093, + 0xe7a094, + 0xe7a095, + 0xe7a096, + 0xe7a097, + 0xe7a098, + 0xe7a099, + 0xe7a09a, + 0xe7a09b, + 0xe7a09c, + 0xe7a09d, + 0xe7a09e, + 0xe7a09f, + 0xe7a0a0, + 0xe7a0a1, + 0xe7a0a2, + 0xe7a0a3, + 0xe7a0a4, + 0xe7a0a5, + 0xe7a0a6, + 0xe7a0a7, + 0xe7a0a8, + 0xe7a0a9, + 0xe7a0aa, + 0xe7a0ab, + 0xe7a0ac, + 0xe7a0ad, + 0xe7a0ae, + 0xe7a0af, + 0xe7a0b0, + 0xe7a0b1, + 0xe7a0b2, + 0xe7a0b3, + 0xe7a0b4, + 0xe7a0b5, + 0xe7a0b6, + 0xe7a0b7, + 0xe7a0b8, + 0xe7a0b9, + 0xe7a0ba, + 0xe7a0bb, + 0xe7a0bc, + 0xe7a0bd, + 0xe7a0be, + 0xe7a0bf, + 0xe7a180, + 0xe7a181, + 0xe7a182, + 0xe7a183, + 0xe7a184, + 0xe7a185, + 0xe7a186, + 0xe7a187, + 0xe7a188, + 0xe7a189, + 0xe7a18a, + 0xe7a18b, + 0xe7a18c, + 0xe7a18d, + 0xe7a18e, + 0xe7a18f, + 0xe7a190, + 0xe7a191, + 0xe7a192, + 0xe7a193, + 0xe7a194, + 0xe7a195, + 0xe7a196, + 0xe7a197, + 0xe7a198, + 0xe7a199, + 0xe7a19a, + 0xe7a19b, + 0xe7a19c, + 0xe7a19d, + 0xe7a19e, + 0xe7a19f, + 0xe7a1a0, + 0xe7a1a1, + 0xe7a1a2, + 0xe7a1a3, + 0xe7a1a4, + 0xe7a1a5, + 0xe7a1a6, + 0xe7a1a7, + 0xe7a1a8, + 0xe7a1a9, + 0xe7a1aa, + 0xe7a1ab, + 0xe7a1ac, + 0xe7a1ad, + 0xe7a1ae, + 0xe7a1af, + 0xe7a1b0, + 0xe7a1b1, + 0xe7a1b2, + 0xe7a1b3, + 0xe7a1b4, + 0xe7a1b5, + 0xe7a1b6, + 0xe7a1b7, + 0xe7a1b8, + 0xe7a1b9, + 0xe7a1ba, + 0xe7a1bb, + 0xe7a1bc, + 0xe7a1bd, + 0xe7a1be, + 0xe7a1bf, + 0xe7a280, + 0xe7a281, + 0xe7a282, + 0xe7a283, + 0xe7a284, + 0xe7a285, + 0xe7a286, + 0xe7a287, + 0xe7a288, + 0xe7a289, + 0xe7a28a, + 0xe7a28b, + 0xe7a28c, + 0xe7a28d, + 0xe7a28e, + 0xe7a28f, + 0xe7a290, + 0xe7a291, + 0xe7a292, + 0xe7a293, + 0xe7a294, + 0xe7a295, + 0xe7a296, + 0xe7a297, + 0xe7a298, + 0xe7a299, + 0xe7a29a, + 0xe7a29b, + 0xe7a29c, + 0xe7a29d, + 0xe7a29e, + 0xe7a29f, + 0xe7a2a0, + 0xe7a2a1, + 0xe7a2a2, + 0xe7a2a3, + 0xe7a2a4, + 0xe7a2a5, + 0xe7a2a6, + 0xe7a2a7, + 0xe7a2a8, + 0xe7a2a9, + 0xe7a2aa, + 0xe7a2ab, + 0xe7a2ac, + 0xe7a2ad, + 0xe7a2ae, + 0xe7a2af, + 0xe7a2b0, + 0xe7a2b1, + 0xe7a2b2, + 0xe7a2b3, + 0xe7a2b4, + 0xe7a2b5, + 0xe7a2b6, + 0xe7a2b7, + 0xe7a2b8, + 0xe7a2b9, + 0xe7a2ba, + 0xe7a2bb, + 0xe7a2bc, + 0xe7a2bd, + 0xe7a2be, + 0xe7a2bf, + 0xe7a380, + 0xe7a381, + 0xe7a382, + 0xe7a383, + 0xe7a384, + 0xe7a385, + 0xe7a386, + 0xe7a387, + 0xe7a388, + 0xe7a389, + 0xe7a38a, + 0xe7a38b, + 0xe7a38c, + 0xe7a38d, + 0xe7a38e, + 0xe7a38f, + 0xe7a390, + 0xe7a391, + 0xe7a392, + 0xe7a393, + 0xe7a394, + 0xe7a395, + 0xe7a396, + 0xe7a397, + 0xe7a398, + 0xe7a399, + 0xe7a39a, + 0xe7a39b, + 0xe7a39c, + 0xe7a39d, + 0xe7a39e, + 0xe7a39f, + 0xe7a3a0, + 0xe7a3a1, + 0xe7a3a2, + 0xe7a3a3, + 0xe7a3a4, + 0xe7a3a5, + 0xe7a3a6, + 0xe7a3a7, + 0xe7a3a8, + 0xe7a3a9, + 0xe7a3aa, + 0xe7a3ab, + 0xe7a3ac, + 0xe7a3ad, + 0xe7a3ae, + 0xe7a3af, + 0xe7a3b0, + 0xe7a3b1, + 0xe7a3b2, + 0xe7a3b3, + 0xe7a3b4, + 0xe7a3b5, + 0xe7a3b6, + 0xe7a3b7, + 0xe7a3b8, + 0xe7a3b9, + 0xe7a3ba, + 0xe7a3bb, + 0xe7a3bc, + 0xe7a3bd, + 0xe7a3be, + 0xe7a3bf, + 0xe7a480, + 0xe7a481, + 0xe7a482, + 0xe7a483, + 0xe7a484, + 0xe7a485, + 0xe7a486, + 0xe7a487, + 0xe7a488, + 0xe7a489, + 0xe7a48a, + 0xe7a48b, + 0xe7a48c, + 0xe7a48d, + 0xe7a48e, + 0xe7a48f, + 0xe7a490, + 0xe7a491, + 0xe7a492, + 0xe7a493, + 0xe7a494, + 0xe7a495, + 0xe7a496, + 0xe7a497, + 0xe7a498, + 0xe7a499, + 0xe7a49a, + 0xe7a49b, + 0xe7a49c, + 0xe7a49d, + 0xe7a49e, + 0xe7a49f, + 0xe7a4a0, + 0xe7a4a1, + 0xe7a4a2, + 0xe7a4a3, + 0xe7a4a4, + 0xe7a4a5, + 0xe7a4a6, + 0xe7a4a7, + 0xe7a4a8, + 0xe7a4a9, + 0xe7a4aa, + 0xe7a4ab, + 0xe7a4ac, + 0xe7a4ad, + 0xe7a4ae, + 0xe7a4af, + 0xe7a4b0, + 0xe7a4b1, + 0xe7a4b2, + 0xe7a4b3, + 0xe7a4b4, + 0xe7a4b5, + 0xe7a4b6, + 0xe7a4b7, + 0xe7a4b8, + 0xe7a4b9, + 0xe7a4ba, + 0xe7a4bb, + 0xe7a4bc, + 0xe7a4bd, + 0xe7a4be, + 0xe7a4bf, + 0xe7a580, + 0xe7a581, + 0xe7a582, + 0xe7a583, + 0xe7a584, + 0xe7a585, + 0xe7a586, + 0xe7a587, + 0xe7a588, + 0xe7a589, + 0xe7a58a, + 0xe7a58b, + 0xe7a58c, + 0xe7a58d, + 0xe7a58e, + 0xe7a58f, + 0xe7a590, + 0xe7a591, + 0xe7a592, + 0xe7a593, + 0xe7a594, + 0xe7a595, + 0xe7a596, + 0xe7a597, + 0xe7a598, + 0xe7a599, + 0xe7a59a, + 0xe7a59b, + 0xe7a59c, + 0xe7a59d, + 0xe7a59e, + 0xe7a59f, + 0xe7a5a0, + 0xe7a5a1, + 0xe7a5a2, + 0xe7a5a3, + 0xe7a5a4, + 0xe7a5a5, + 0xe7a5a6, + 0xe7a5a7, + 0xe7a5a8, + 0xe7a5a9, + 0xe7a5aa, + 0xe7a5ab, + 0xe7a5ac, + 0xe7a5ad, + 0xe7a5ae, + 0xe7a5af, + 0xe7a5b0, + 0xe7a5b1, + 0xe7a5b2, + 0xe7a5b3, + 0xe7a5b4, + 0xe7a5b5, + 0xe7a5b6, + 0xe7a5b7, + 0xe7a5b8, + 0xe7a5b9, + 0xe7a5ba, + 0xe7a5bb, + 0xe7a5bc, + 0xe7a5bd, + 0xe7a5be, + 0xe7a5bf, + 0xe7a680, + 0xe7a681, + 0xe7a682, + 0xe7a683, + 0xe7a684, + 0xe7a685, + 0xe7a686, + 0xe7a687, + 0xe7a688, + 0xe7a689, + 0xe7a68a, + 0xe7a68b, + 0xe7a68c, + 0xe7a68d, + 0xe7a68e, + 0xe7a68f, + 0xe7a690, + 0xe7a691, + 0xe7a692, + 0xe7a693, + 0xe7a694, + 0xe7a695, + 0xe7a696, + 0xe7a697, + 0xe7a698, + 0xe7a699, + 0xe7a69a, + 0xe7a69b, + 0xe7a69c, + 0xe7a69d, + 0xe7a69e, + 0xe7a69f, + 0xe7a6a0, + 0xe7a6a1, + 0xe7a6a2, + 0xe7a6a3, + 0xe7a6a4, + 0xe7a6a5, + 0xe7a6a6, + 0xe7a6a7, + 0xe7a6a8, + 0xe7a6a9, + 0xe7a6aa, + 0xe7a6ab, + 0xe7a6ac, + 0xe7a6ad, + 0xe7a6ae, + 0xe7a6af, + 0xe7a6b0, + 0xe7a6b1, + 0xe7a6b2, + 0xe7a6b3, + 0xe7a6b4, + 0xe7a6b5, + 0xe7a6b6, + 0xe7a6b7, + 0xe7a6b8, + 0xe7a6b9, + 0xe7a6ba, + 0xe7a6bb, + 0xe7a6bc, + 0xe7a6bd, + 0xe7a6be, + 0xe7a6bf, + 0xe7a780, + 0xe7a781, + 0xe7a782, + 0xe7a783, + 0xe7a784, + 0xe7a785, + 0xe7a786, + 0xe7a787, + 0xe7a788, + 0xe7a789, + 0xe7a78a, + 0xe7a78b, + 0xe7a78c, + 0xe7a78d, + 0xe7a78e, + 0xe7a78f, + 0xe7a790, + 0xe7a791, + 0xe7a792, + 0xe7a793, + 0xe7a794, + 0xe7a795, + 0xe7a796, + 0xe7a797, + 0xe7a798, + 0xe7a799, + 0xe7a79a, + 0xe7a79b, + 0xe7a79c, + 0xe7a79d, + 0xe7a79e, + 0xe7a79f, + 0xe7a7a0, + 0xe7a7a1, + 0xe7a7a2, + 0xe7a7a3, + 0xe7a7a4, + 0xe7a7a5, + 0xe7a7a6, + 0xe7a7a7, + 0xe7a7a8, + 0xe7a7a9, + 0xe7a7aa, + 0xe7a7ab, + 0xe7a7ac, + 0xe7a7ad, + 0xe7a7ae, + 0xe7a7af, + 0xe7a7b0, + 0xe7a7b1, + 0xe7a7b2, + 0xe7a7b3, + 0xe7a7b4, + 0xe7a7b5, + 0xe7a7b6, + 0xe7a7b7, + 0xe7a7b8, + 0xe7a7b9, + 0xe7a7ba, + 0xe7a7bb, + 0xe7a7bc, + 0xe7a7bd, + 0xe7a7be, + 0xe7a7bf, + 0xe7a880, + 0xe7a881, + 0xe7a882, + 0xe7a883, + 0xe7a884, + 0xe7a885, + 0xe7a886, + 0xe7a887, + 0xe7a888, + 0xe7a889, + 0xe7a88a, + 0xe7a88b, + 0xe7a88c, + 0xe7a88d, + 0xe7a88e, + 0xe7a88f, + 0xe7a890, + 0xe7a891, + 0xe7a892, + 0xe7a893, + 0xe7a894, + 0xe7a895, + 0xe7a896, + 0xe7a897, + 0xe7a898, + 0xe7a899, + 0xe7a89a, + 0xe7a89b, + 0xe7a89c, + 0xe7a89d, + 0xe7a89e, + 0xe7a89f, + 0xe7a8a0, + 0xe7a8a1, + 0xe7a8a2, + 0xe7a8a3, + 0xe7a8a4, + 0xe7a8a5, + 0xe7a8a6, + 0xe7a8a7, + 0xe7a8a8, + 0xe7a8a9, + 0xe7a8aa, + 0xe7a8ab, + 0xe7a8ac, + 0xe7a8ad, + 0xe7a8ae, + 0xe7a8af, + 0xe7a8b0, + 0xe7a8b1, + 0xe7a8b2, + 0xe7a8b3, + 0xe7a8b4, + 0xe7a8b5, + 0xe7a8b6, + 0xe7a8b7, + 0xe7a8b8, + 0xe7a8b9, + 0xe7a8ba, + 0xe7a8bb, + 0xe7a8bc, + 0xe7a8bd, + 0xe7a8be, + 0xe7a8bf, + 0xe7a980, + 0xe7a981, + 0xe7a982, + 0xe7a983, + 0xe7a984, + 0xe7a985, + 0xe7a986, + 0xe7a987, + 0xe7a988, + 0xe7a989, + 0xe7a98a, + 0xe7a98b, + 0xe7a98c, + 0xe7a98d, + 0xe7a98e, + 0xe7a98f, + 0xe7a990, + 0xe7a991, + 0xe7a992, + 0xe7a993, + 0xe7a994, + 0xe7a995, + 0xe7a996, + 0xe7a997, + 0xe7a998, + 0xe7a999, + 0xe7a99a, + 0xe7a99b, + 0xe7a99c, + 0xe7a99d, + 0xe7a99e, + 0xe7a99f, + 0xe7a9a0, + 0xe7a9a1, + 0xe7a9a2, + 0xe7a9a3, + 0xe7a9a4, + 0xe7a9a5, + 0xe7a9a6, + 0xe7a9a7, + 0xe7a9a8, + 0xe7a9a9, + 0xe7a9aa, + 0xe7a9ab, + 0xe7a9ac, + 0xe7a9ad, + 0xe7a9ae, + 0xe7a9af, + 0xe7a9b0, + 0xe7a9b1, + 0xe7a9b2, + 0xe7a9b3, + 0xe7a9b4, + 0xe7a9b5, + 0xe7a9b6, + 0xe7a9b7, + 0xe7a9b8, + 0xe7a9b9, + 0xe7a9ba, + 0xe7a9bb, + 0xe7a9bc, + 0xe7a9bd, + 0xe7a9be, + 0xe7a9bf, + 0xe7aa80, + 0xe7aa81, + 0xe7aa82, + 0xe7aa83, + 0xe7aa84, + 0xe7aa85, + 0xe7aa86, + 0xe7aa87, + 0xe7aa88, + 0xe7aa89, + 0xe7aa8a, + 0xe7aa8b, + 0xe7aa8c, + 0xe7aa8d, + 0xe7aa8e, + 0xe7aa8f, + 0xe7aa90, + 0xe7aa91, + 0xe7aa92, + 0xe7aa93, + 0xe7aa94, + 0xe7aa95, + 0xe7aa96, + 0xe7aa97, + 0xe7aa98, + 0xe7aa99, + 0xe7aa9a, + 0xe7aa9b, + 0xe7aa9c, + 0xe7aa9d, + 0xe7aa9e, + 0xe7aa9f, + 0xe7aaa0, + 0xe7aaa1, + 0xe7aaa2, + 0xe7aaa3, + 0xe7aaa4, + 0xe7aaa5, + 0xe7aaa6, + 0xe7aaa7, + 0xe7aaa8, + 0xe7aaa9, + 0xe7aaaa, + 0xe7aaab, + 0xe7aaac, + 0xe7aaad, + 0xe7aaae, + 0xe7aaaf, + 0xe7aab0, + 0xe7aab1, + 0xe7aab2, + 0xe7aab3, + 0xe7aab4, + 0xe7aab5, + 0xe7aab6, + 0xe7aab7, + 0xe7aab8, + 0xe7aab9, + 0xe7aaba, + 0xe7aabb, + 0xe7aabc, + 0xe7aabd, + 0xe7aabe, + 0xe7aabf, + 0xe7ab80, + 0xe7ab81, + 0xe7ab82, + 0xe7ab83, + 0xe7ab84, + 0xe7ab85, + 0xe7ab86, + 0xe7ab87, + 0xe7ab88, + 0xe7ab89, + 0xe7ab8a, + 0xe7ab8b, + 0xe7ab8c, + 0xe7ab8d, + 0xe7ab8e, + 0xe7ab8f, + 0xe7ab90, + 0xe7ab91, + 0xe7ab92, + 0xe7ab93, + 0xe7ab94, + 0xe7ab95, + 0xe7ab96, + 0xe7ab97, + 0xe7ab98, + 0xe7ab99, + 0xe7ab9a, + 0xe7ab9b, + 0xe7ab9c, + 0xe7ab9d, + 0xe7ab9e, + 0xe7ab9f, + 0xe7aba0, + 0xe7aba1, + 0xe7aba2, + 0xe7aba3, + 0xe7aba4, + 0xe7aba5, + 0xe7aba6, + 0xe7aba7, + 0xe7aba8, + 0xe7aba9, + 0xe7abaa, + 0xe7abab, + 0xe7abac, + 0xe7abad, + 0xe7abae, + 0xe7abaf, + 0xe7abb0, + 0xe7abb1, + 0xe7abb2, + 0xe7abb3, + 0xe7abb4, + 0xe7abb5, + 0xe7abb6, + 0xe7abb7, + 0xe7abb8, + 0xe7abb9, + 0xe7abba, + 0xe7abbb, + 0xe7abbc, + 0xe7abbd, + 0xe7abbe, + 0xe7abbf, + 0xe7ac80, + 0xe7ac81, + 0xe7ac82, + 0xe7ac83, + 0xe7ac84, + 0xe7ac85, + 0xe7ac86, + 0xe7ac87, + 0xe7ac88, + 0xe7ac89, + 0xe7ac8a, + 0xe7ac8b, + 0xe7ac8c, + 0xe7ac8d, + 0xe7ac8e, + 0xe7ac8f, + 0xe7ac90, + 0xe7ac91, + 0xe7ac92, + 0xe7ac93, + 0xe7ac94, + 0xe7ac95, + 0xe7ac96, + 0xe7ac97, + 0xe7ac98, + 0xe7ac99, + 0xe7ac9a, + 0xe7ac9b, + 0xe7ac9c, + 0xe7ac9d, + 0xe7ac9e, + 0xe7ac9f, + 0xe7aca0, + 0xe7aca1, + 0xe7aca2, + 0xe7aca3, + 0xe7aca4, + 0xe7aca5, + 0xe7aca6, + 0xe7aca7, + 0xe7aca8, + 0xe7aca9, + 0xe7acaa, + 0xe7acab, + 0xe7acac, + 0xe7acad, + 0xe7acae, + 0xe7acaf, + 0xe7acb0, + 0xe7acb1, + 0xe7acb2, + 0xe7acb3, + 0xe7acb4, + 0xe7acb5, + 0xe7acb6, + 0xe7acb7, + 0xe7acb8, + 0xe7acb9, + 0xe7acba, + 0xe7acbb, + 0xe7acbc, + 0xe7acbd, + 0xe7acbe, + 0xe7acbf, + 0xe7ad80, + 0xe7ad81, + 0xe7ad82, + 0xe7ad83, + 0xe7ad84, + 0xe7ad85, + 0xe7ad86, + 0xe7ad87, + 0xe7ad88, + 0xe7ad89, + 0xe7ad8a, + 0xe7ad8b, + 0xe7ad8c, + 0xe7ad8d, + 0xe7ad8e, + 0xe7ad8f, + 0xe7ad90, + 0xe7ad91, + 0xe7ad92, + 0xe7ad93, + 0xe7ad94, + 0xe7ad95, + 0xe7ad96, + 0xe7ad97, + 0xe7ad98, + 0xe7ad99, + 0xe7ad9a, + 0xe7ad9b, + 0xe7ad9c, + 0xe7ad9d, + 0xe7ad9e, + 0xe7ad9f, + 0xe7ada0, + 0xe7ada1, + 0xe7ada2, + 0xe7ada3, + 0xe7ada4, + 0xe7ada5, + 0xe7ada6, + 0xe7ada7, + 0xe7ada8, + 0xe7ada9, + 0xe7adaa, + 0xe7adab, + 0xe7adac, + 0xe7adad, + 0xe7adae, + 0xe7adaf, + 0xe7adb0, + 0xe7adb1, + 0xe7adb2, + 0xe7adb3, + 0xe7adb4, + 0xe7adb5, + 0xe7adb6, + 0xe7adb7, + 0xe7adb8, + 0xe7adb9, + 0xe7adba, + 0xe7adbb, + 0xe7adbc, + 0xe7adbd, + 0xe7adbe, + 0xe7adbf, + 0xe7ae80, + 0xe7ae81, + 0xe7ae82, + 0xe7ae83, + 0xe7ae84, + 0xe7ae85, + 0xe7ae86, + 0xe7ae87, + 0xe7ae88, + 0xe7ae89, + 0xe7ae8a, + 0xe7ae8b, + 0xe7ae8c, + 0xe7ae8d, + 0xe7ae8e, + 0xe7ae8f, + 0xe7ae90, + 0xe7ae91, + 0xe7ae92, + 0xe7ae93, + 0xe7ae94, + 0xe7ae95, + 0xe7ae96, + 0xe7ae97, + 0xe7ae98, + 0xe7ae99, + 0xe7ae9a, + 0xe7ae9b, + 0xe7ae9c, + 0xe7ae9d, + 0xe7ae9e, + 0xe7ae9f, + 0xe7aea0, + 0xe7aea1, + 0xe7aea2, + 0xe7aea3, + 0xe7aea4, + 0xe7aea5, + 0xe7aea6, + 0xe7aea7, + 0xe7aea8, + 0xe7aea9, + 0xe7aeaa, + 0xe7aeab, + 0xe7aeac, + 0xe7aead, + 0xe7aeae, + 0xe7aeaf, + 0xe7aeb0, + 0xe7aeb1, + 0xe7aeb2, + 0xe7aeb3, + 0xe7aeb4, + 0xe7aeb5, + 0xe7aeb6, + 0xe7aeb7, + 0xe7aeb8, + 0xe7aeb9, + 0xe7aeba, + 0xe7aebb, + 0xe7aebc, + 0xe7aebd, + 0xe7aebe, + 0xe7aebf, + 0xe7af80, + 0xe7af81, + 0xe7af82, + 0xe7af83, + 0xe7af84, + 0xe7af85, + 0xe7af86, + 0xe7af87, + 0xe7af88, + 0xe7af89, + 0xe7af8a, + 0xe7af8b, + 0xe7af8c, + 0xe7af8d, + 0xe7af8e, + 0xe7af8f, + 0xe7af90, + 0xe7af91, + 0xe7af92, + 0xe7af93, + 0xe7af94, + 0xe7af95, + 0xe7af96, + 0xe7af97, + 0xe7af98, + 0xe7af99, + 0xe7af9a, + 0xe7af9b, + 0xe7af9c, + 0xe7af9d, + 0xe7af9e, + 0xe7af9f, + 0xe7afa0, + 0xe7afa1, + 0xe7afa2, + 0xe7afa3, + 0xe7afa4, + 0xe7afa5, + 0xe7afa6, + 0xe7afa7, + 0xe7afa8, + 0xe7afa9, + 0xe7afaa, + 0xe7afab, + 0xe7afac, + 0xe7afad, + 0xe7afae, + 0xe7afaf, + 0xe7afb0, + 0xe7afb1, + 0xe7afb2, + 0xe7afb3, + 0xe7afb4, + 0xe7afb5, + 0xe7afb6, + 0xe7afb7, + 0xe7afb8, + 0xe7afb9, + 0xe7afba, + 0xe7afbb, + 0xe7afbc, + 0xe7afbd, + 0xe7afbe, + 0xe7afbf, + 0xe7b080, + 0xe7b081, + 0xe7b082, + 0xe7b083, + 0xe7b084, + 0xe7b085, + 0xe7b086, + 0xe7b087, + 0xe7b088, + 0xe7b089, + 0xe7b08a, + 0xe7b08b, + 0xe7b08c, + 0xe7b08d, + 0xe7b08e, + 0xe7b08f, + 0xe7b090, + 0xe7b091, + 0xe7b092, + 0xe7b093, + 0xe7b094, + 0xe7b095, + 0xe7b096, + 0xe7b097, + 0xe7b098, + 0xe7b099, + 0xe7b09a, + 0xe7b09b, + 0xe7b09c, + 0xe7b09d, + 0xe7b09e, + 0xe7b09f, + 0xe7b0a0, + 0xe7b0a1, + 0xe7b0a2, + 0xe7b0a3, + 0xe7b0a4, + 0xe7b0a5, + 0xe7b0a6, + 0xe7b0a7, + 0xe7b0a8, + 0xe7b0a9, + 0xe7b0aa, + 0xe7b0ab, + 0xe7b0ac, + 0xe7b0ad, + 0xe7b0ae, + 0xe7b0af, + 0xe7b0b0, + 0xe7b0b1, + 0xe7b0b2, + 0xe7b0b3, + 0xe7b0b4, + 0xe7b0b5, + 0xe7b0b6, + 0xe7b0b7, + 0xe7b0b8, + 0xe7b0b9, + 0xe7b0ba, + 0xe7b0bb, + 0xe7b0bc, + 0xe7b0bd, + 0xe7b0be, + 0xe7b0bf, + 0xe7b180, + 0xe7b181, + 0xe7b182, + 0xe7b183, + 0xe7b184, + 0xe7b185, + 0xe7b186, + 0xe7b187, + 0xe7b188, + 0xe7b189, + 0xe7b18a, + 0xe7b18b, + 0xe7b18c, + 0xe7b18d, + 0xe7b18e, + 0xe7b18f, + 0xe7b190, + 0xe7b191, + 0xe7b192, + 0xe7b193, + 0xe7b194, + 0xe7b195, + 0xe7b196, + 0xe7b197, + 0xe7b198, + 0xe7b199, + 0xe7b19a, + 0xe7b19b, + 0xe7b19c, + 0xe7b19d, + 0xe7b19e, + 0xe7b19f, + 0xe7b1a0, + 0xe7b1a1, + 0xe7b1a2, + 0xe7b1a3, + 0xe7b1a4, + 0xe7b1a5, + 0xe7b1a6, + 0xe7b1a7, + 0xe7b1a8, + 0xe7b1a9, + 0xe7b1aa, + 0xe7b1ab, + 0xe7b1ac, + 0xe7b1ad, + 0xe7b1ae, + 0xe7b1af, + 0xe7b1b0, + 0xe7b1b1, + 0xe7b1b2, + 0xe7b1b3, + 0xe7b1b4, + 0xe7b1b5, + 0xe7b1b6, + 0xe7b1b7, + 0xe7b1b8, + 0xe7b1b9, + 0xe7b1ba, + 0xe7b1bb, + 0xe7b1bc, + 0xe7b1bd, + 0xe7b1be, + 0xe7b1bf, + 0xe7b280, + 0xe7b281, + 0xe7b282, + 0xe7b283, + 0xe7b284, + 0xe7b285, + 0xe7b286, + 0xe7b287, + 0xe7b288, + 0xe7b289, + 0xe7b28a, + 0xe7b28b, + 0xe7b28c, + 0xe7b28d, + 0xe7b28e, + 0xe7b28f, + 0xe7b290, + 0xe7b291, + 0xe7b292, + 0xe7b293, + 0xe7b294, + 0xe7b295, + 0xe7b296, + 0xe7b297, + 0xe7b298, + 0xe7b299, + 0xe7b29a, + 0xe7b29b, + 0xe7b29c, + 0xe7b29d, + 0xe7b29e, + 0xe7b29f, + 0xe7b2a0, + 0xe7b2a1, + 0xe7b2a2, + 0xe7b2a3, + 0xe7b2a4, + 0xe7b2a5, + 0xe7b2a6, + 0xe7b2a7, + 0xe7b2a8, + 0xe7b2a9, + 0xe7b2aa, + 0xe7b2ab, + 0xe7b2ac, + 0xe7b2ad, + 0xe7b2ae, + 0xe7b2af, + 0xe7b2b0, + 0xe7b2b1, + 0xe7b2b2, + 0xe7b2b3, + 0xe7b2b4, + 0xe7b2b5, + 0xe7b2b6, + 0xe7b2b7, + 0xe7b2b8, + 0xe7b2b9, + 0xe7b2ba, + 0xe7b2bb, + 0xe7b2bc, + 0xe7b2bd, + 0xe7b2be, + 0xe7b2bf, + 0xe7b380, + 0xe7b381, + 0xe7b382, + 0xe7b383, + 0xe7b384, + 0xe7b385, + 0xe7b386, + 0xe7b387, + 0xe7b388, + 0xe7b389, + 0xe7b38a, + 0xe7b38b, + 0xe7b38c, + 0xe7b38d, + 0xe7b38e, + 0xe7b38f, + 0xe7b390, + 0xe7b391, + 0xe7b392, + 0xe7b393, + 0xe7b394, + 0xe7b395, + 0xe7b396, + 0xe7b397, + 0xe7b398, + 0xe7b399, + 0xe7b39a, + 0xe7b39b, + 0xe7b39c, + 0xe7b39d, + 0xe7b39e, + 0xe7b39f, + 0xe7b3a0, + 0xe7b3a1, + 0xe7b3a2, + 0xe7b3a3, + 0xe7b3a4, + 0xe7b3a5, + 0xe7b3a6, + 0xe7b3a7, + 0xe7b3a8, + 0xe7b3a9, + 0xe7b3aa, + 0xe7b3ab, + 0xe7b3ac, + 0xe7b3ad, + 0xe7b3ae, + 0xe7b3af, + 0xe7b3b0, + 0xe7b3b1, + 0xe7b3b2, + 0xe7b3b3, + 0xe7b3b4, + 0xe7b3b5, + 0xe7b3b6, + 0xe7b3b7, + 0xe7b3b8, + 0xe7b3b9, + 0xe7b3ba, + 0xe7b3bb, + 0xe7b3bc, + 0xe7b3bd, + 0xe7b3be, + 0xe7b3bf, + 0xe7b480, + 0xe7b481, + 0xe7b482, + 0xe7b483, + 0xe7b484, + 0xe7b485, + 0xe7b486, + 0xe7b487, + 0xe7b488, + 0xe7b489, + 0xe7b48a, + 0xe7b48b, + 0xe7b48c, + 0xe7b48d, + 0xe7b48e, + 0xe7b48f, + 0xe7b490, + 0xe7b491, + 0xe7b492, + 0xe7b493, + 0xe7b494, + 0xe7b495, + 0xe7b496, + 0xe7b497, + 0xe7b498, + 0xe7b499, + 0xe7b49a, + 0xe7b49b, + 0xe7b49c, + 0xe7b49d, + 0xe7b49e, + 0xe7b49f, + 0xe7b4a0, + 0xe7b4a1, + 0xe7b4a2, + 0xe7b4a3, + 0xe7b4a4, + 0xe7b4a5, + 0xe7b4a6, + 0xe7b4a7, + 0xe7b4a8, + 0xe7b4a9, + 0xe7b4aa, + 0xe7b4ab, + 0xe7b4ac, + 0xe7b4ad, + 0xe7b4ae, + 0xe7b4af, + 0xe7b4b0, + 0xe7b4b1, + 0xe7b4b2, + 0xe7b4b3, + 0xe7b4b4, + 0xe7b4b5, + 0xe7b4b6, + 0xe7b4b7, + 0xe7b4b8, + 0xe7b4b9, + 0xe7b4ba, + 0xe7b4bb, + 0xe7b4bc, + 0xe7b4bd, + 0xe7b4be, + 0xe7b4bf, + 0xe7b580, + 0xe7b581, + 0xe7b582, + 0xe7b583, + 0xe7b584, + 0xe7b585, + 0xe7b586, + 0xe7b587, + 0xe7b588, + 0xe7b589, + 0xe7b58a, + 0xe7b58b, + 0xe7b58c, + 0xe7b58d, + 0xe7b58e, + 0xe7b58f, + 0xe7b590, + 0xe7b591, + 0xe7b592, + 0xe7b593, + 0xe7b594, + 0xe7b595, + 0xe7b596, + 0xe7b597, + 0xe7b598, + 0xe7b599, + 0xe7b59a, + 0xe7b59b, + 0xe7b59c, + 0xe7b59d, + 0xe7b59e, + 0xe7b59f, + 0xe7b5a0, + 0xe7b5a1, + 0xe7b5a2, + 0xe7b5a3, + 0xe7b5a4, + 0xe7b5a5, + 0xe7b5a6, + 0xe7b5a7, + 0xe7b5a8, + 0xe7b5a9, + 0xe7b5aa, + 0xe7b5ab, + 0xe7b5ac, + 0xe7b5ad, + 0xe7b5ae, + 0xe7b5af, + 0xe7b5b0, + 0xe7b5b1, + 0xe7b5b2, + 0xe7b5b3, + 0xe7b5b4, + 0xe7b5b5, + 0xe7b5b6, + 0xe7b5b7, + 0xe7b5b8, + 0xe7b5b9, + 0xe7b5ba, + 0xe7b5bb, + 0xe7b5bc, + 0xe7b5bd, + 0xe7b5be, + 0xe7b5bf, + 0xe7b680, + 0xe7b681, + 0xe7b682, + 0xe7b683, + 0xe7b684, + 0xe7b685, + 0xe7b686, + 0xe7b687, + 0xe7b688, + 0xe7b689, + 0xe7b68a, + 0xe7b68b, + 0xe7b68c, + 0xe7b68d, + 0xe7b68e, + 0xe7b68f, + 0xe7b690, + 0xe7b691, + 0xe7b692, + 0xe7b693, + 0xe7b694, + 0xe7b695, + 0xe7b696, + 0xe7b697, + 0xe7b698, + 0xe7b699, + 0xe7b69a, + 0xe7b69b, + 0xe7b69c, + 0xe7b69d, + 0xe7b69e, + 0xe7b69f, + 0xe7b6a0, + 0xe7b6a1, + 0xe7b6a2, + 0xe7b6a3, + 0xe7b6a4, + 0xe7b6a5, + 0xe7b6a6, + 0xe7b6a7, + 0xe7b6a8, + 0xe7b6a9, + 0xe7b6aa, + 0xe7b6ab, + 0xe7b6ac, + 0xe7b6ad, + 0xe7b6ae, + 0xe7b6af, + 0xe7b6b0, + 0xe7b6b1, + 0xe7b6b2, + 0xe7b6b3, + 0xe7b6b4, + 0xe7b6b5, + 0xe7b6b6, + 0xe7b6b7, + 0xe7b6b8, + 0xe7b6b9, + 0xe7b6ba, + 0xe7b6bb, + 0xe7b6bc, + 0xe7b6bd, + 0xe7b6be, + 0xe7b6bf, + 0xe7b780, + 0xe7b781, + 0xe7b782, + 0xe7b783, + 0xe7b784, + 0xe7b785, + 0xe7b786, + 0xe7b787, + 0xe7b788, + 0xe7b789, + 0xe7b78a, + 0xe7b78b, + 0xe7b78c, + 0xe7b78d, + 0xe7b78e, + 0xe7b78f, + 0xe7b790, + 0xe7b791, + 0xe7b792, + 0xe7b793, + 0xe7b794, + 0xe7b795, + 0xe7b796, + 0xe7b797, + 0xe7b798, + 0xe7b799, + 0xe7b79a, + 0xe7b79b, + 0xe7b79c, + 0xe7b79d, + 0xe7b79e, + 0xe7b79f, + 0xe7b7a0, + 0xe7b7a1, + 0xe7b7a2, + 0xe7b7a3, + 0xe7b7a4, + 0xe7b7a5, + 0xe7b7a6, + 0xe7b7a7, + 0xe7b7a8, + 0xe7b7a9, + 0xe7b7aa, + 0xe7b7ab, + 0xe7b7ac, + 0xe7b7ad, + 0xe7b7ae, + 0xe7b7af, + 0xe7b7b0, + 0xe7b7b1, + 0xe7b7b2, + 0xe7b7b3, + 0xe7b7b4, + 0xe7b7b5, + 0xe7b7b6, + 0xe7b7b7, + 0xe7b7b8, + 0xe7b7b9, + 0xe7b7ba, + 0xe7b7bb, + 0xe7b7bc, + 0xe7b7bd, + 0xe7b7be, + 0xe7b7bf, + 0xe7b880, + 0xe7b881, + 0xe7b882, + 0xe7b883, + 0xe7b884, + 0xe7b885, + 0xe7b886, + 0xe7b887, + 0xe7b888, + 0xe7b889, + 0xe7b88a, + 0xe7b88b, + 0xe7b88c, + 0xe7b88d, + 0xe7b88e, + 0xe7b88f, + 0xe7b890, + 0xe7b891, + 0xe7b892, + 0xe7b893, + 0xe7b894, + 0xe7b895, + 0xe7b896, + 0xe7b897, + 0xe7b898, + 0xe7b899, + 0xe7b89a, + 0xe7b89b, + 0xe7b89c, + 0xe7b89d, + 0xe7b89e, + 0xe7b89f, + 0xe7b8a0, + 0xe7b8a1, + 0xe7b8a2, + 0xe7b8a3, + 0xe7b8a4, + 0xe7b8a5, + 0xe7b8a6, + 0xe7b8a7, + 0xe7b8a8, + 0xe7b8a9, + 0xe7b8aa, + 0xe7b8ab, + 0xe7b8ac, + 0xe7b8ad, + 0xe7b8ae, + 0xe7b8af, + 0xe7b8b0, + 0xe7b8b1, + 0xe7b8b2, + 0xe7b8b3, + 0xe7b8b4, + 0xe7b8b5, + 0xe7b8b6, + 0xe7b8b7, + 0xe7b8b8, + 0xe7b8b9, + 0xe7b8ba, + 0xe7b8bb, + 0xe7b8bc, + 0xe7b8bd, + 0xe7b8be, + 0xe7b8bf, + 0xe7b980, + 0xe7b981, + 0xe7b982, + 0xe7b983, + 0xe7b984, + 0xe7b985, + 0xe7b986, + 0xe7b987, + 0xe7b988, + 0xe7b989, + 0xe7b98a, + 0xe7b98b, + 0xe7b98c, + 0xe7b98d, + 0xe7b98e, + 0xe7b98f, + 0xe7b990, + 0xe7b991, + 0xe7b992, + 0xe7b993, + 0xe7b994, + 0xe7b995, + 0xe7b996, + 0xe7b997, + 0xe7b998, + 0xe7b999, + 0xe7b99a, + 0xe7b99b, + 0xe7b99c, + 0xe7b99d, + 0xe7b99e, + 0xe7b99f, + 0xe7b9a0, + 0xe7b9a1, + 0xe7b9a2, + 0xe7b9a3, + 0xe7b9a4, + 0xe7b9a5, + 0xe7b9a6, + 0xe7b9a7, + 0xe7b9a8, + 0xe7b9a9, + 0xe7b9aa, + 0xe7b9ab, + 0xe7b9ac, + 0xe7b9ad, + 0xe7b9ae, + 0xe7b9af, + 0xe7b9b0, + 0xe7b9b1, + 0xe7b9b2, + 0xe7b9b3, + 0xe7b9b4, + 0xe7b9b5, + 0xe7b9b6, + 0xe7b9b7, + 0xe7b9b8, + 0xe7b9b9, + 0xe7b9ba, + 0xe7b9bb, + 0xe7b9bc, + 0xe7b9bd, + 0xe7b9be, + 0xe7b9bf, + 0xe7ba80, + 0xe7ba81, + 0xe7ba82, + 0xe7ba83, + 0xe7ba84, + 0xe7ba85, + 0xe7ba86, + 0xe7ba87, + 0xe7ba88, + 0xe7ba89, + 0xe7ba8a, + 0xe7ba8b, + 0xe7ba8c, + 0xe7ba8d, + 0xe7ba8e, + 0xe7ba8f, + 0xe7ba90, + 0xe7ba91, + 0xe7ba92, + 0xe7ba93, + 0xe7ba94, + 0xe7ba95, + 0xe7ba96, + 0xe7ba97, + 0xe7ba98, + 0xe7ba99, + 0xe7ba9a, + 0xe7ba9b, + 0xe7ba9c, + 0xe7ba9d, + 0xe7ba9e, + 0xe7ba9f, + 0xe7baa0, + 0xe7baa1, + 0xe7baa2, + 0xe7baa3, + 0xe7baa4, + 0xe7baa5, + 0xe7baa6, + 0xe7baa7, + 0xe7baa8, + 0xe7baa9, + 0xe7baaa, + 0xe7baab, + 0xe7baac, + 0xe7baad, + 0xe7baae, + 0xe7baaf, + 0xe7bab0, + 0xe7bab1, + 0xe7bab2, + 0xe7bab3, + 0xe7bab4, + 0xe7bab5, + 0xe7bab6, + 0xe7bab7, + 0xe7bab8, + 0xe7bab9, + 0xe7baba, + 0xe7babb, + 0xe7babc, + 0xe7babd, + 0xe7babe, + 0xe7babf, + 0xe7bb80, + 0xe7bb81, + 0xe7bb82, + 0xe7bb83, + 0xe7bb84, + 0xe7bb85, + 0xe7bb86, + 0xe7bb87, + 0xe7bb88, + 0xe7bb89, + 0xe7bb8a, + 0xe7bb8b, + 0xe7bb8c, + 0xe7bb8d, + 0xe7bb8e, + 0xe7bb8f, + 0xe7bb90, + 0xe7bb91, + 0xe7bb92, + 0xe7bb93, + 0xe7bb94, + 0xe7bb95, + 0xe7bb96, + 0xe7bb97, + 0xe7bb98, + 0xe7bb99, + 0xe7bb9a, + 0xe7bb9b, + 0xe7bb9c, + 0xe7bb9d, + 0xe7bb9e, + 0xe7bb9f, + 0xe7bba0, + 0xe7bba1, + 0xe7bba2, + 0xe7bba3, + 0xe7bba4, + 0xe7bba5, + 0xe7bba6, + 0xe7bba7, + 0xe7bba8, + 0xe7bba9, + 0xe7bbaa, + 0xe7bbab, + 0xe7bbac, + 0xe7bbad, + 0xe7bbae, + 0xe7bbaf, + 0xe7bbb0, + 0xe7bbb1, + 0xe7bbb2, + 0xe7bbb3, + 0xe7bbb4, + 0xe7bbb5, + 0xe7bbb6, + 0xe7bbb7, + 0xe7bbb8, + 0xe7bbb9, + 0xe7bbba, + 0xe7bbbb, + 0xe7bbbc, + 0xe7bbbd, + 0xe7bbbe, + 0xe7bbbf, + 0xe7bc80, + 0xe7bc81, + 0xe7bc82, + 0xe7bc83, + 0xe7bc84, + 0xe7bc85, + 0xe7bc86, + 0xe7bc87, + 0xe7bc88, + 0xe7bc89, + 0xe7bc8a, + 0xe7bc8b, + 0xe7bc8c, + 0xe7bc8d, + 0xe7bc8e, + 0xe7bc8f, + 0xe7bc90, + 0xe7bc91, + 0xe7bc92, + 0xe7bc93, + 0xe7bc94, + 0xe7bc95, + 0xe7bc96, + 0xe7bc97, + 0xe7bc98, + 0xe7bc99, + 0xe7bc9a, + 0xe7bc9b, + 0xe7bc9c, + 0xe7bc9d, + 0xe7bc9e, + 0xe7bc9f, + 0xe7bca0, + 0xe7bca1, + 0xe7bca2, + 0xe7bca3, + 0xe7bca4, + 0xe7bca5, + 0xe7bca6, + 0xe7bca7, + 0xe7bca8, + 0xe7bca9, + 0xe7bcaa, + 0xe7bcab, + 0xe7bcac, + 0xe7bcad, + 0xe7bcae, + 0xe7bcaf, + 0xe7bcb0, + 0xe7bcb1, + 0xe7bcb2, + 0xe7bcb3, + 0xe7bcb4, + 0xe7bcb5, + 0xe7bcb6, + 0xe7bcb7, + 0xe7bcb8, + 0xe7bcb9, + 0xe7bcba, + 0xe7bcbb, + 0xe7bcbc, + 0xe7bcbd, + 0xe7bcbe, + 0xe7bcbf, + 0xe7bd80, + 0xe7bd81, + 0xe7bd82, + 0xe7bd83, + 0xe7bd84, + 0xe7bd85, + 0xe7bd86, + 0xe7bd87, + 0xe7bd88, + 0xe7bd89, + 0xe7bd8a, + 0xe7bd8b, + 0xe7bd8c, + 0xe7bd8d, + 0xe7bd8e, + 0xe7bd8f, + 0xe7bd90, + 0xe7bd91, + 0xe7bd92, + 0xe7bd93, + 0xe7bd94, + 0xe7bd95, + 0xe7bd96, + 0xe7bd97, + 0xe7bd98, + 0xe7bd99, + 0xe7bd9a, + 0xe7bd9b, + 0xe7bd9c, + 0xe7bd9d, + 0xe7bd9e, + 0xe7bd9f, + 0xe7bda0, + 0xe7bda1, + 0xe7bda2, + 0xe7bda3, + 0xe7bda4, + 0xe7bda5, + 0xe7bda6, + 0xe7bda7, + 0xe7bda8, + 0xe7bda9, + 0xe7bdaa, + 0xe7bdab, + 0xe7bdac, + 0xe7bdad, + 0xe7bdae, + 0xe7bdaf, + 0xe7bdb0, + 0xe7bdb1, + 0xe7bdb2, + 0xe7bdb3, + 0xe7bdb4, + 0xe7bdb5, + 0xe7bdb6, + 0xe7bdb7, + 0xe7bdb8, + 0xe7bdb9, + 0xe7bdba, + 0xe7bdbb, + 0xe7bdbc, + 0xe7bdbd, + 0xe7bdbe, + 0xe7bdbf, + 0xe7be80, + 0xe7be81, + 0xe7be82, + 0xe7be83, + 0xe7be84, + 0xe7be85, + 0xe7be86, + 0xe7be87, + 0xe7be88, + 0xe7be89, + 0xe7be8a, + 0xe7be8b, + 0xe7be8c, + 0xe7be8d, + 0xe7be8e, + 0xe7be8f, + 0xe7be90, + 0xe7be91, + 0xe7be92, + 0xe7be93, + 0xe7be94, + 0xe7be95, + 0xe7be96, + 0xe7be97, + 0xe7be98, + 0xe7be99, + 0xe7be9a, + 0xe7be9b, + 0xe7be9c, + 0xe7be9d, + 0xe7be9e, + 0xe7be9f, + 0xe7bea0, + 0xe7bea1, + 0xe7bea2, + 0xe7bea3, + 0xe7bea4, + 0xe7bea5, + 0xe7bea6, + 0xe7bea7, + 0xe7bea8, + 0xe7bea9, + 0xe7beaa, + 0xe7beab, + 0xe7beac, + 0xe7bead, + 0xe7beae, + 0xe7beaf, + 0xe7beb0, + 0xe7beb1, + 0xe7beb2, + 0xe7beb3, + 0xe7beb4, + 0xe7beb5, + 0xe7beb6, + 0xe7beb7, + 0xe7beb8, + 0xe7beb9, + 0xe7beba, + 0xe7bebb, + 0xe7bebc, + 0xe7bebd, + 0xe7bebe, + 0xe7bebf, + 0xe7bf80, + 0xe7bf81, + 0xe7bf82, + 0xe7bf83, + 0xe7bf84, + 0xe7bf85, + 0xe7bf86, + 0xe7bf87, + 0xe7bf88, + 0xe7bf89, + 0xe7bf8a, + 0xe7bf8b, + 0xe7bf8c, + 0xe7bf8d, + 0xe7bf8e, + 0xe7bf8f, + 0xe7bf90, + 0xe7bf91, + 0xe7bf92, + 0xe7bf93, + 0xe7bf94, + 0xe7bf95, + 0xe7bf96, + 0xe7bf97, + 0xe7bf98, + 0xe7bf99, + 0xe7bf9a, + 0xe7bf9b, + 0xe7bf9c, + 0xe7bf9d, + 0xe7bf9e, + 0xe7bf9f, + 0xe7bfa0, + 0xe7bfa1, + 0xe7bfa2, + 0xe7bfa3, + 0xe7bfa4, + 0xe7bfa5, + 0xe7bfa6, + 0xe7bfa7, + 0xe7bfa8, + 0xe7bfa9, + 0xe7bfaa, + 0xe7bfab, + 0xe7bfac, + 0xe7bfad, + 0xe7bfae, + 0xe7bfaf, + 0xe7bfb0, + 0xe7bfb1, + 0xe7bfb2, + 0xe7bfb3, + 0xe7bfb4, + 0xe7bfb5, + 0xe7bfb6, + 0xe7bfb7, + 0xe7bfb8, + 0xe7bfb9, + 0xe7bfba, + 0xe7bfbb, + 0xe7bfbc, + 0xe7bfbd, + 0xe7bfbe, + 0xe7bfbf, + 0xe88080, + 0xe88081, + 0xe88082, + 0xe88083, + 0xe88084, + 0xe88085, + 0xe88086, + 0xe88087, + 0xe88088, + 0xe88089, + 0xe8808a, + 0xe8808b, + 0xe8808c, + 0xe8808d, + 0xe8808e, + 0xe8808f, + 0xe88090, + 0xe88091, + 0xe88092, + 0xe88093, + 0xe88094, + 0xe88095, + 0xe88096, + 0xe88097, + 0xe88098, + 0xe88099, + 0xe8809a, + 0xe8809b, + 0xe8809c, + 0xe8809d, + 0xe8809e, + 0xe8809f, + 0xe880a0, + 0xe880a1, + 0xe880a2, + 0xe880a3, + 0xe880a4, + 0xe880a5, + 0xe880a6, + 0xe880a7, + 0xe880a8, + 0xe880a9, + 0xe880aa, + 0xe880ab, + 0xe880ac, + 0xe880ad, + 0xe880ae, + 0xe880af, + 0xe880b0, + 0xe880b1, + 0xe880b2, + 0xe880b3, + 0xe880b4, + 0xe880b5, + 0xe880b6, + 0xe880b7, + 0xe880b8, + 0xe880b9, + 0xe880ba, + 0xe880bb, + 0xe880bc, + 0xe880bd, + 0xe880be, + 0xe880bf, + 0xe88180, + 0xe88181, + 0xe88182, + 0xe88183, + 0xe88184, + 0xe88185, + 0xe88186, + 0xe88187, + 0xe88188, + 0xe88189, + 0xe8818a, + 0xe8818b, + 0xe8818c, + 0xe8818d, + 0xe8818e, + 0xe8818f, + 0xe88190, + 0xe88191, + 0xe88192, + 0xe88193, + 0xe88194, + 0xe88195, + 0xe88196, + 0xe88197, + 0xe88198, + 0xe88199, + 0xe8819a, + 0xe8819b, + 0xe8819c, + 0xe8819d, + 0xe8819e, + 0xe8819f, + 0xe881a0, + 0xe881a1, + 0xe881a2, + 0xe881a3, + 0xe881a4, + 0xe881a5, + 0xe881a6, + 0xe881a7, + 0xe881a8, + 0xe881a9, + 0xe881aa, + 0xe881ab, + 0xe881ac, + 0xe881ad, + 0xe881ae, + 0xe881af, + 0xe881b0, + 0xe881b1, + 0xe881b2, + 0xe881b3, + 0xe881b4, + 0xe881b5, + 0xe881b6, + 0xe881b7, + 0xe881b8, + 0xe881b9, + 0xe881ba, + 0xe881bb, + 0xe881bc, + 0xe881bd, + 0xe881be, + 0xe881bf, + 0xe88280, + 0xe88281, + 0xe88282, + 0xe88283, + 0xe88284, + 0xe88285, + 0xe88286, + 0xe88287, + 0xe88288, + 0xe88289, + 0xe8828a, + 0xe8828b, + 0xe8828c, + 0xe8828d, + 0xe8828e, + 0xe8828f, + 0xe88290, + 0xe88291, + 0xe88292, + 0xe88293, + 0xe88294, + 0xe88295, + 0xe88296, + 0xe88297, + 0xe88298, + 0xe88299, + 0xe8829a, + 0xe8829b, + 0xe8829c, + 0xe8829d, + 0xe8829e, + 0xe8829f, + 0xe882a0, + 0xe882a1, + 0xe882a2, + 0xe882a3, + 0xe882a4, + 0xe882a5, + 0xe882a6, + 0xe882a7, + 0xe882a8, + 0xe882a9, + 0xe882aa, + 0xe882ab, + 0xe882ac, + 0xe882ad, + 0xe882ae, + 0xe882af, + 0xe882b0, + 0xe882b1, + 0xe882b2, + 0xe882b3, + 0xe882b4, + 0xe882b5, + 0xe882b6, + 0xe882b7, + 0xe882b8, + 0xe882b9, + 0xe882ba, + 0xe882bb, + 0xe882bc, + 0xe882bd, + 0xe882be, + 0xe882bf, + 0xe88380, + 0xe88381, + 0xe88382, + 0xe88383, + 0xe88384, + 0xe88385, + 0xe88386, + 0xe88387, + 0xe88388, + 0xe88389, + 0xe8838a, + 0xe8838b, + 0xe8838c, + 0xe8838d, + 0xe8838e, + 0xe8838f, + 0xe88390, + 0xe88391, + 0xe88392, + 0xe88393, + 0xe88394, + 0xe88395, + 0xe88396, + 0xe88397, + 0xe88398, + 0xe88399, + 0xe8839a, + 0xe8839b, + 0xe8839c, + 0xe8839d, + 0xe8839e, + 0xe8839f, + 0xe883a0, + 0xe883a1, + 0xe883a2, + 0xe883a3, + 0xe883a4, + 0xe883a5, + 0xe883a6, + 0xe883a7, + 0xe883a8, + 0xe883a9, + 0xe883aa, + 0xe883ab, + 0xe883ac, + 0xe883ad, + 0xe883ae, + 0xe883af, + 0xe883b0, + 0xe883b1, + 0xe883b2, + 0xe883b3, + 0xe883b4, + 0xe883b5, + 0xe883b6, + 0xe883b7, + 0xe883b8, + 0xe883b9, + 0xe883ba, + 0xe883bb, + 0xe883bc, + 0xe883bd, + 0xe883be, + 0xe883bf, + 0xe88480, + 0xe88481, + 0xe88482, + 0xe88483, + 0xe88484, + 0xe88485, + 0xe88486, + 0xe88487, + 0xe88488, + 0xe88489, + 0xe8848a, + 0xe8848b, + 0xe8848c, + 0xe8848d, + 0xe8848e, + 0xe8848f, + 0xe88490, + 0xe88491, + 0xe88492, + 0xe88493, + 0xe88494, + 0xe88495, + 0xe88496, + 0xe88497, + 0xe88498, + 0xe88499, + 0xe8849a, + 0xe8849b, + 0xe8849c, + 0xe8849d, + 0xe8849e, + 0xe8849f, + 0xe884a0, + 0xe884a1, + 0xe884a2, + 0xe884a3, + 0xe884a4, + 0xe884a5, + 0xe884a6, + 0xe884a7, + 0xe884a8, + 0xe884a9, + 0xe884aa, + 0xe884ab, + 0xe884ac, + 0xe884ad, + 0xe884ae, + 0xe884af, + 0xe884b0, + 0xe884b1, + 0xe884b2, + 0xe884b3, + 0xe884b4, + 0xe884b5, + 0xe884b6, + 0xe884b7, + 0xe884b8, + 0xe884b9, + 0xe884ba, + 0xe884bb, + 0xe884bc, + 0xe884bd, + 0xe884be, + 0xe884bf, + 0xe88580, + 0xe88581, + 0xe88582, + 0xe88583, + 0xe88584, + 0xe88585, + 0xe88586, + 0xe88587, + 0xe88588, + 0xe88589, + 0xe8858a, + 0xe8858b, + 0xe8858c, + 0xe8858d, + 0xe8858e, + 0xe8858f, + 0xe88590, + 0xe88591, + 0xe88592, + 0xe88593, + 0xe88594, + 0xe88595, + 0xe88596, + 0xe88597, + 0xe88598, + 0xe88599, + 0xe8859a, + 0xe8859b, + 0xe8859c, + 0xe8859d, + 0xe8859e, + 0xe8859f, + 0xe885a0, + 0xe885a1, + 0xe885a2, + 0xe885a3, + 0xe885a4, + 0xe885a5, + 0xe885a6, + 0xe885a7, + 0xe885a8, + 0xe885a9, + 0xe885aa, + 0xe885ab, + 0xe885ac, + 0xe885ad, + 0xe885ae, + 0xe885af, + 0xe885b0, + 0xe885b1, + 0xe885b2, + 0xe885b3, + 0xe885b4, + 0xe885b5, + 0xe885b6, + 0xe885b7, + 0xe885b8, + 0xe885b9, + 0xe885ba, + 0xe885bb, + 0xe885bc, + 0xe885bd, + 0xe885be, + 0xe885bf, + 0xe88680, + 0xe88681, + 0xe88682, + 0xe88683, + 0xe88684, + 0xe88685, + 0xe88686, + 0xe88687, + 0xe88688, + 0xe88689, + 0xe8868a, + 0xe8868b, + 0xe8868c, + 0xe8868d, + 0xe8868e, + 0xe8868f, + 0xe88690, + 0xe88691, + 0xe88692, + 0xe88693, + 0xe88694, + 0xe88695, + 0xe88696, + 0xe88697, + 0xe88698, + 0xe88699, + 0xe8869a, + 0xe8869b, + 0xe8869c, + 0xe8869d, + 0xe8869e, + 0xe8869f, + 0xe886a0, + 0xe886a1, + 0xe886a2, + 0xe886a3, + 0xe886a4, + 0xe886a5, + 0xe886a6, + 0xe886a7, + 0xe886a8, + 0xe886a9, + 0xe886aa, + 0xe886ab, + 0xe886ac, + 0xe886ad, + 0xe886ae, + 0xe886af, + 0xe886b0, + 0xe886b1, + 0xe886b2, + 0xe886b3, + 0xe886b4, + 0xe886b5, + 0xe886b6, + 0xe886b7, + 0xe886b8, + 0xe886b9, + 0xe886ba, + 0xe886bb, + 0xe886bc, + 0xe886bd, + 0xe886be, + 0xe886bf, + 0xe88780, + 0xe88781, + 0xe88782, + 0xe88783, + 0xe88784, + 0xe88785, + 0xe88786, + 0xe88787, + 0xe88788, + 0xe88789, + 0xe8878a, + 0xe8878b, + 0xe8878c, + 0xe8878d, + 0xe8878e, + 0xe8878f, + 0xe88790, + 0xe88791, + 0xe88792, + 0xe88793, + 0xe88794, + 0xe88795, + 0xe88796, + 0xe88797, + 0xe88798, + 0xe88799, + 0xe8879a, + 0xe8879b, + 0xe8879c, + 0xe8879d, + 0xe8879e, + 0xe8879f, + 0xe887a0, + 0xe887a1, + 0xe887a2, + 0xe887a3, + 0xe887a4, + 0xe887a5, + 0xe887a6, + 0xe887a7, + 0xe887a8, + 0xe887a9, + 0xe887aa, + 0xe887ab, + 0xe887ac, + 0xe887ad, + 0xe887ae, + 0xe887af, + 0xe887b0, + 0xe887b1, + 0xe887b2, + 0xe887b3, + 0xe887b4, + 0xe887b5, + 0xe887b6, + 0xe887b7, + 0xe887b8, + 0xe887b9, + 0xe887ba, + 0xe887bb, + 0xe887bc, + 0xe887bd, + 0xe887be, + 0xe887bf, + 0xe88880, + 0xe88881, + 0xe88882, + 0xe88883, + 0xe88884, + 0xe88885, + 0xe88886, + 0xe88887, + 0xe88888, + 0xe88889, + 0xe8888a, + 0xe8888b, + 0xe8888c, + 0xe8888d, + 0xe8888e, + 0xe8888f, + 0xe88890, + 0xe88891, + 0xe88892, + 0xe88893, + 0xe88894, + 0xe88895, + 0xe88896, + 0xe88897, + 0xe88898, + 0xe88899, + 0xe8889a, + 0xe8889b, + 0xe8889c, + 0xe8889d, + 0xe8889e, + 0xe8889f, + 0xe888a0, + 0xe888a1, + 0xe888a2, + 0xe888a3, + 0xe888a4, + 0xe888a5, + 0xe888a6, + 0xe888a7, + 0xe888a8, + 0xe888a9, + 0xe888aa, + 0xe888ab, + 0xe888ac, + 0xe888ad, + 0xe888ae, + 0xe888af, + 0xe888b0, + 0xe888b1, + 0xe888b2, + 0xe888b3, + 0xe888b4, + 0xe888b5, + 0xe888b6, + 0xe888b7, + 0xe888b8, + 0xe888b9, + 0xe888ba, + 0xe888bb, + 0xe888bc, + 0xe888bd, + 0xe888be, + 0xe888bf, + 0xe88980, + 0xe88981, + 0xe88982, + 0xe88983, + 0xe88984, + 0xe88985, + 0xe88986, + 0xe88987, + 0xe88988, + 0xe88989, + 0xe8898a, + 0xe8898b, + 0xe8898c, + 0xe8898d, + 0xe8898e, + 0xe8898f, + 0xe88990, + 0xe88991, + 0xe88992, + 0xe88993, + 0xe88994, + 0xe88995, + 0xe88996, + 0xe88997, + 0xe88998, + 0xe88999, + 0xe8899a, + 0xe8899b, + 0xe8899c, + 0xe8899d, + 0xe8899e, + 0xe8899f, + 0xe889a0, + 0xe889a1, + 0xe889a2, + 0xe889a3, + 0xe889a4, + 0xe889a5, + 0xe889a6, + 0xe889a7, + 0xe889a8, + 0xe889a9, + 0xe889aa, + 0xe889ab, + 0xe889ac, + 0xe889ad, + 0xe889ae, + 0xe889af, + 0xe889b0, + 0xe889b1, + 0xe889b2, + 0xe889b3, + 0xe889b4, + 0xe889b5, + 0xe889b6, + 0xe889b7, + 0xe889b8, + 0xe889b9, + 0xe889ba, + 0xe889bb, + 0xe889bc, + 0xe889bd, + 0xe889be, + 0xe889bf, + 0xe88a80, + 0xe88a81, + 0xe88a82, + 0xe88a83, + 0xe88a84, + 0xe88a85, + 0xe88a86, + 0xe88a87, + 0xe88a88, + 0xe88a89, + 0xe88a8a, + 0xe88a8b, + 0xe88a8c, + 0xe88a8d, + 0xe88a8e, + 0xe88a8f, + 0xe88a90, + 0xe88a91, + 0xe88a92, + 0xe88a93, + 0xe88a94, + 0xe88a95, + 0xe88a96, + 0xe88a97, + 0xe88a98, + 0xe88a99, + 0xe88a9a, + 0xe88a9b, + 0xe88a9c, + 0xe88a9d, + 0xe88a9e, + 0xe88a9f, + 0xe88aa0, + 0xe88aa1, + 0xe88aa2, + 0xe88aa3, + 0xe88aa4, + 0xe88aa5, + 0xe88aa6, + 0xe88aa7, + 0xe88aa8, + 0xe88aa9, + 0xe88aaa, + 0xe88aab, + 0xe88aac, + 0xe88aad, + 0xe88aae, + 0xe88aaf, + 0xe88ab0, + 0xe88ab1, + 0xe88ab2, + 0xe88ab3, + 0xe88ab4, + 0xe88ab5, + 0xe88ab6, + 0xe88ab7, + 0xe88ab8, + 0xe88ab9, + 0xe88aba, + 0xe88abb, + 0xe88abc, + 0xe88abd, + 0xe88abe, + 0xe88abf, + 0xe88b80, + 0xe88b81, + 0xe88b82, + 0xe88b83, + 0xe88b84, + 0xe88b85, + 0xe88b86, + 0xe88b87, + 0xe88b88, + 0xe88b89, + 0xe88b8a, + 0xe88b8b, + 0xe88b8c, + 0xe88b8d, + 0xe88b8e, + 0xe88b8f, + 0xe88b90, + 0xe88b91, + 0xe88b92, + 0xe88b93, + 0xe88b94, + 0xe88b95, + 0xe88b96, + 0xe88b97, + 0xe88b98, + 0xe88b99, + 0xe88b9a, + 0xe88b9b, + 0xe88b9c, + 0xe88b9d, + 0xe88b9e, + 0xe88b9f, + 0xe88ba0, + 0xe88ba1, + 0xe88ba2, + 0xe88ba3, + 0xe88ba4, + 0xe88ba5, + 0xe88ba6, + 0xe88ba7, + 0xe88ba8, + 0xe88ba9, + 0xe88baa, + 0xe88bab, + 0xe88bac, + 0xe88bad, + 0xe88bae, + 0xe88baf, + 0xe88bb0, + 0xe88bb1, + 0xe88bb2, + 0xe88bb3, + 0xe88bb4, + 0xe88bb5, + 0xe88bb6, + 0xe88bb7, + 0xe88bb8, + 0xe88bb9, + 0xe88bba, + 0xe88bbb, + 0xe88bbc, + 0xe88bbd, + 0xe88bbe, + 0xe88bbf, + 0xe88c80, + 0xe88c81, + 0xe88c82, + 0xe88c83, + 0xe88c84, + 0xe88c85, + 0xe88c86, + 0xe88c87, + 0xe88c88, + 0xe88c89, + 0xe88c8a, + 0xe88c8b, + 0xe88c8c, + 0xe88c8d, + 0xe88c8e, + 0xe88c8f, + 0xe88c90, + 0xe88c91, + 0xe88c92, + 0xe88c93, + 0xe88c94, + 0xe88c95, + 0xe88c96, + 0xe88c97, + 0xe88c98, + 0xe88c99, + 0xe88c9a, + 0xe88c9b, + 0xe88c9c, + 0xe88c9d, + 0xe88c9e, + 0xe88c9f, + 0xe88ca0, + 0xe88ca1, + 0xe88ca2, + 0xe88ca3, + 0xe88ca4, + 0xe88ca5, + 0xe88ca6, + 0xe88ca7, + 0xe88ca8, + 0xe88ca9, + 0xe88caa, + 0xe88cab, + 0xe88cac, + 0xe88cad, + 0xe88cae, + 0xe88caf, + 0xe88cb0, + 0xe88cb1, + 0xe88cb2, + 0xe88cb3, + 0xe88cb4, + 0xe88cb5, + 0xe88cb6, + 0xe88cb7, + 0xe88cb8, + 0xe88cb9, + 0xe88cba, + 0xe88cbb, + 0xe88cbc, + 0xe88cbd, + 0xe88cbe, + 0xe88cbf, + 0xe88d80, + 0xe88d81, + 0xe88d82, + 0xe88d83, + 0xe88d84, + 0xe88d85, + 0xe88d86, + 0xe88d87, + 0xe88d88, + 0xe88d89, + 0xe88d8a, + 0xe88d8b, + 0xe88d8c, + 0xe88d8d, + 0xe88d8e, + 0xe88d8f, + 0xe88d90, + 0xe88d91, + 0xe88d92, + 0xe88d93, + 0xe88d94, + 0xe88d95, + 0xe88d96, + 0xe88d97, + 0xe88d98, + 0xe88d99, + 0xe88d9a, + 0xe88d9b, + 0xe88d9c, + 0xe88d9d, + 0xe88d9e, + 0xe88d9f, + 0xe88da0, + 0xe88da1, + 0xe88da2, + 0xe88da3, + 0xe88da4, + 0xe88da5, + 0xe88da6, + 0xe88da7, + 0xe88da8, + 0xe88da9, + 0xe88daa, + 0xe88dab, + 0xe88dac, + 0xe88dad, + 0xe88dae, + 0xe88daf, + 0xe88db0, + 0xe88db1, + 0xe88db2, + 0xe88db3, + 0xe88db4, + 0xe88db5, + 0xe88db6, + 0xe88db7, + 0xe88db8, + 0xe88db9, + 0xe88dba, + 0xe88dbb, + 0xe88dbc, + 0xe88dbd, + 0xe88dbe, + 0xe88dbf, + 0xe88e80, + 0xe88e81, + 0xe88e82, + 0xe88e83, + 0xe88e84, + 0xe88e85, + 0xe88e86, + 0xe88e87, + 0xe88e88, + 0xe88e89, + 0xe88e8a, + 0xe88e8b, + 0xe88e8c, + 0xe88e8d, + 0xe88e8e, + 0xe88e8f, + 0xe88e90, + 0xe88e91, + 0xe88e92, + 0xe88e93, + 0xe88e94, + 0xe88e95, + 0xe88e96, + 0xe88e97, + 0xe88e98, + 0xe88e99, + 0xe88e9a, + 0xe88e9b, + 0xe88e9c, + 0xe88e9d, + 0xe88e9e, + 0xe88e9f, + 0xe88ea0, + 0xe88ea1, + 0xe88ea2, + 0xe88ea3, + 0xe88ea4, + 0xe88ea5, + 0xe88ea6, + 0xe88ea7, + 0xe88ea8, + 0xe88ea9, + 0xe88eaa, + 0xe88eab, + 0xe88eac, + 0xe88ead, + 0xe88eae, + 0xe88eaf, + 0xe88eb0, + 0xe88eb1, + 0xe88eb2, + 0xe88eb3, + 0xe88eb4, + 0xe88eb5, + 0xe88eb6, + 0xe88eb7, + 0xe88eb8, + 0xe88eb9, + 0xe88eba, + 0xe88ebb, + 0xe88ebc, + 0xe88ebd, + 0xe88ebe, + 0xe88ebf, + 0xe88f80, + 0xe88f81, + 0xe88f82, + 0xe88f83, + 0xe88f84, + 0xe88f85, + 0xe88f86, + 0xe88f87, + 0xe88f88, + 0xe88f89, + 0xe88f8a, + 0xe88f8b, + 0xe88f8c, + 0xe88f8d, + 0xe88f8e, + 0xe88f8f, + 0xe88f90, + 0xe88f91, + 0xe88f92, + 0xe88f93, + 0xe88f94, + 0xe88f95, + 0xe88f96, + 0xe88f97, + 0xe88f98, + 0xe88f99, + 0xe88f9a, + 0xe88f9b, + 0xe88f9c, + 0xe88f9d, + 0xe88f9e, + 0xe88f9f, + 0xe88fa0, + 0xe88fa1, + 0xe88fa2, + 0xe88fa3, + 0xe88fa4, + 0xe88fa5, + 0xe88fa6, + 0xe88fa7, + 0xe88fa8, + 0xe88fa9, + 0xe88faa, + 0xe88fab, + 0xe88fac, + 0xe88fad, + 0xe88fae, + 0xe88faf, + 0xe88fb0, + 0xe88fb1, + 0xe88fb2, + 0xe88fb3, + 0xe88fb4, + 0xe88fb5, + 0xe88fb6, + 0xe88fb7, + 0xe88fb8, + 0xe88fb9, + 0xe88fba, + 0xe88fbb, + 0xe88fbc, + 0xe88fbd, + 0xe88fbe, + 0xe88fbf, + 0xe89080, + 0xe89081, + 0xe89082, + 0xe89083, + 0xe89084, + 0xe89085, + 0xe89086, + 0xe89087, + 0xe89088, + 0xe89089, + 0xe8908a, + 0xe8908b, + 0xe8908c, + 0xe8908d, + 0xe8908e, + 0xe8908f, + 0xe89090, + 0xe89091, + 0xe89092, + 0xe89093, + 0xe89094, + 0xe89095, + 0xe89096, + 0xe89097, + 0xe89098, + 0xe89099, + 0xe8909a, + 0xe8909b, + 0xe8909c, + 0xe8909d, + 0xe8909e, + 0xe8909f, + 0xe890a0, + 0xe890a1, + 0xe890a2, + 0xe890a3, + 0xe890a4, + 0xe890a5, + 0xe890a6, + 0xe890a7, + 0xe890a8, + 0xe890a9, + 0xe890aa, + 0xe890ab, + 0xe890ac, + 0xe890ad, + 0xe890ae, + 0xe890af, + 0xe890b0, + 0xe890b1, + 0xe890b2, + 0xe890b3, + 0xe890b4, + 0xe890b5, + 0xe890b6, + 0xe890b7, + 0xe890b8, + 0xe890b9, + 0xe890ba, + 0xe890bb, + 0xe890bc, + 0xe890bd, + 0xe890be, + 0xe890bf, + 0xe89180, + 0xe89181, + 0xe89182, + 0xe89183, + 0xe89184, + 0xe89185, + 0xe89186, + 0xe89187, + 0xe89188, + 0xe89189, + 0xe8918a, + 0xe8918b, + 0xe8918c, + 0xe8918d, + 0xe8918e, + 0xe8918f, + 0xe89190, + 0xe89191, + 0xe89192, + 0xe89193, + 0xe89194, + 0xe89195, + 0xe89196, + 0xe89197, + 0xe89198, + 0xe89199, + 0xe8919a, + 0xe8919b, + 0xe8919c, + 0xe8919d, + 0xe8919e, + 0xe8919f, + 0xe891a0, + 0xe891a1, + 0xe891a2, + 0xe891a3, + 0xe891a4, + 0xe891a5, + 0xe891a6, + 0xe891a7, + 0xe891a8, + 0xe891a9, + 0xe891aa, + 0xe891ab, + 0xe891ac, + 0xe891ad, + 0xe891ae, + 0xe891af, + 0xe891b0, + 0xe891b1, + 0xe891b2, + 0xe891b3, + 0xe891b4, + 0xe891b5, + 0xe891b6, + 0xe891b7, + 0xe891b8, + 0xe891b9, + 0xe891ba, + 0xe891bb, + 0xe891bc, + 0xe891bd, + 0xe891be, + 0xe891bf, + 0xe89280, + 0xe89281, + 0xe89282, + 0xe89283, + 0xe89284, + 0xe89285, + 0xe89286, + 0xe89287, + 0xe89288, + 0xe89289, + 0xe8928a, + 0xe8928b, + 0xe8928c, + 0xe8928d, + 0xe8928e, + 0xe8928f, + 0xe89290, + 0xe89291, + 0xe89292, + 0xe89293, + 0xe89294, + 0xe89295, + 0xe89296, + 0xe89297, + 0xe89298, + 0xe89299, + 0xe8929a, + 0xe8929b, + 0xe8929c, + 0xe8929d, + 0xe8929e, + 0xe8929f, + 0xe892a0, + 0xe892a1, + 0xe892a2, + 0xe892a3, + 0xe892a4, + 0xe892a5, + 0xe892a6, + 0xe892a7, + 0xe892a8, + 0xe892a9, + 0xe892aa, + 0xe892ab, + 0xe892ac, + 0xe892ad, + 0xe892ae, + 0xe892af, + 0xe892b0, + 0xe892b1, + 0xe892b2, + 0xe892b3, + 0xe892b4, + 0xe892b5, + 0xe892b6, + 0xe892b7, + 0xe892b8, + 0xe892b9, + 0xe892ba, + 0xe892bb, + 0xe892bc, + 0xe892bd, + 0xe892be, + 0xe892bf, + 0xe89380, + 0xe89381, + 0xe89382, + 0xe89383, + 0xe89384, + 0xe89385, + 0xe89386, + 0xe89387, + 0xe89388, + 0xe89389, + 0xe8938a, + 0xe8938b, + 0xe8938c, + 0xe8938d, + 0xe8938e, + 0xe8938f, + 0xe89390, + 0xe89391, + 0xe89392, + 0xe89393, + 0xe89394, + 0xe89395, + 0xe89396, + 0xe89397, + 0xe89398, + 0xe89399, + 0xe8939a, + 0xe8939b, + 0xe8939c, + 0xe8939d, + 0xe8939e, + 0xe8939f, + 0xe893a0, + 0xe893a1, + 0xe893a2, + 0xe893a3, + 0xe893a4, + 0xe893a5, + 0xe893a6, + 0xe893a7, + 0xe893a8, + 0xe893a9, + 0xe893aa, + 0xe893ab, + 0xe893ac, + 0xe893ad, + 0xe893ae, + 0xe893af, + 0xe893b0, + 0xe893b1, + 0xe893b2, + 0xe893b3, + 0xe893b4, + 0xe893b5, + 0xe893b6, + 0xe893b7, + 0xe893b8, + 0xe893b9, + 0xe893ba, + 0xe893bb, + 0xe893bc, + 0xe893bd, + 0xe893be, + 0xe893bf, + 0xe89480, + 0xe89481, + 0xe89482, + 0xe89483, + 0xe89484, + 0xe89485, + 0xe89486, + 0xe89487, + 0xe89488, + 0xe89489, + 0xe8948a, + 0xe8948b, + 0xe8948c, + 0xe8948d, + 0xe8948e, + 0xe8948f, + 0xe89490, + 0xe89491, + 0xe89492, + 0xe89493, + 0xe89494, + 0xe89495, + 0xe89496, + 0xe89497, + 0xe89498, + 0xe89499, + 0xe8949a, + 0xe8949b, + 0xe8949c, + 0xe8949d, + 0xe8949e, + 0xe8949f, + 0xe894a0, + 0xe894a1, + 0xe894a2, + 0xe894a3, + 0xe894a4, + 0xe894a5, + 0xe894a6, + 0xe894a7, + 0xe894a8, + 0xe894a9, + 0xe894aa, + 0xe894ab, + 0xe894ac, + 0xe894ad, + 0xe894ae, + 0xe894af, + 0xe894b0, + 0xe894b1, + 0xe894b2, + 0xe894b3, + 0xe894b4, + 0xe894b5, + 0xe894b6, + 0xe894b7, + 0xe894b8, + 0xe894b9, + 0xe894ba, + 0xe894bb, + 0xe894bc, + 0xe894bd, + 0xe894be, + 0xe894bf, + 0xe89580, + 0xe89581, + 0xe89582, + 0xe89583, + 0xe89584, + 0xe89585, + 0xe89586, + 0xe89587, + 0xe89588, + 0xe89589, + 0xe8958a, + 0xe8958b, + 0xe8958c, + 0xe8958d, + 0xe8958e, + 0xe8958f, + 0xe89590, + 0xe89591, + 0xe89592, + 0xe89593, + 0xe89594, + 0xe89595, + 0xe89596, + 0xe89597, + 0xe89598, + 0xe89599, + 0xe8959a, + 0xe8959b, + 0xe8959c, + 0xe8959d, + 0xe8959e, + 0xe8959f, + 0xe895a0, + 0xe895a1, + 0xe895a2, + 0xe895a3, + 0xe895a4, + 0xe895a5, + 0xe895a6, + 0xe895a7, + 0xe895a8, + 0xe895a9, + 0xe895aa, + 0xe895ab, + 0xe895ac, + 0xe895ad, + 0xe895ae, + 0xe895af, + 0xe895b0, + 0xe895b1, + 0xe895b2, + 0xe895b3, + 0xe895b4, + 0xe895b5, + 0xe895b6, + 0xe895b7, + 0xe895b8, + 0xe895b9, + 0xe895ba, + 0xe895bb, + 0xe895bc, + 0xe895bd, + 0xe895be, + 0xe895bf, + 0xe89680, + 0xe89681, + 0xe89682, + 0xe89683, + 0xe89684, + 0xe89685, + 0xe89686, + 0xe89687, + 0xe89688, + 0xe89689, + 0xe8968a, + 0xe8968b, + 0xe8968c, + 0xe8968d, + 0xe8968e, + 0xe8968f, + 0xe89690, + 0xe89691, + 0xe89692, + 0xe89693, + 0xe89694, + 0xe89695, + 0xe89696, + 0xe89697, + 0xe89698, + 0xe89699, + 0xe8969a, + 0xe8969b, + 0xe8969c, + 0xe8969d, + 0xe8969e, + 0xe8969f, + 0xe896a0, + 0xe896a1, + 0xe896a2, + 0xe896a3, + 0xe896a4, + 0xe896a5, + 0xe896a6, + 0xe896a7, + 0xe896a8, + 0xe896a9, + 0xe896aa, + 0xe896ab, + 0xe896ac, + 0xe896ad, + 0xe896ae, + 0xe896af, + 0xe896b0, + 0xe896b1, + 0xe896b2, + 0xe896b3, + 0xe896b4, + 0xe896b5, + 0xe896b6, + 0xe896b7, + 0xe896b8, + 0xe896b9, + 0xe896ba, + 0xe896bb, + 0xe896bc, + 0xe896bd, + 0xe896be, + 0xe896bf, + 0xe89780, + 0xe89781, + 0xe89782, + 0xe89783, + 0xe89784, + 0xe89785, + 0xe89786, + 0xe89787, + 0xe89788, + 0xe89789, + 0xe8978a, + 0xe8978b, + 0xe8978c, + 0xe8978d, + 0xe8978e, + 0xe8978f, + 0xe89790, + 0xe89791, + 0xe89792, + 0xe89793, + 0xe89794, + 0xe89795, + 0xe89796, + 0xe89797, + 0xe89798, + 0xe89799, + 0xe8979a, + 0xe8979b, + 0xe8979c, + 0xe8979d, + 0xe8979e, + 0xe8979f, + 0xe897a0, + 0xe897a1, + 0xe897a2, + 0xe897a3, + 0xe897a4, + 0xe897a5, + 0xe897a6, + 0xe897a7, + 0xe897a8, + 0xe897a9, + 0xe897aa, + 0xe897ab, + 0xe897ac, + 0xe897ad, + 0xe897ae, + 0xe897af, + 0xe897b0, + 0xe897b1, + 0xe897b2, + 0xe897b3, + 0xe897b4, + 0xe897b5, + 0xe897b6, + 0xe897b7, + 0xe897b8, + 0xe897b9, + 0xe897ba, + 0xe897bb, + 0xe897bc, + 0xe897bd, + 0xe897be, + 0xe897bf, + 0xe89880, + 0xe89881, + 0xe89882, + 0xe89883, + 0xe89884, + 0xe89885, + 0xe89886, + 0xe89887, + 0xe89888, + 0xe89889, + 0xe8988a, + 0xe8988b, + 0xe8988c, + 0xe8988d, + 0xe8988e, + 0xe8988f, + 0xe89890, + 0xe89891, + 0xe89892, + 0xe89893, + 0xe89894, + 0xe89895, + 0xe89896, + 0xe89897, + 0xe89898, + 0xe89899, + 0xe8989a, + 0xe8989b, + 0xe8989c, + 0xe8989d, + 0xe8989e, + 0xe8989f, + 0xe898a0, + 0xe898a1, + 0xe898a2, + 0xe898a3, + 0xe898a4, + 0xe898a5, + 0xe898a6, + 0xe898a7, + 0xe898a8, + 0xe898a9, + 0xe898aa, + 0xe898ab, + 0xe898ac, + 0xe898ad, + 0xe898ae, + 0xe898af, + 0xe898b0, + 0xe898b1, + 0xe898b2, + 0xe898b3, + 0xe898b4, + 0xe898b5, + 0xe898b6, + 0xe898b7, + 0xe898b8, + 0xe898b9, + 0xe898ba, + 0xe898bb, + 0xe898bc, + 0xe898bd, + 0xe898be, + 0xe898bf, + 0xe89980, + 0xe89981, + 0xe89982, + 0xe89983, + 0xe89984, + 0xe89985, + 0xe89986, + 0xe89987, + 0xe89988, + 0xe89989, + 0xe8998a, + 0xe8998b, + 0xe8998c, + 0xe8998d, + 0xe8998e, + 0xe8998f, + 0xe89990, + 0xe89991, + 0xe89992, + 0xe89993, + 0xe89994, + 0xe89995, + 0xe89996, + 0xe89997, + 0xe89998, + 0xe89999, + 0xe8999a, + 0xe8999b, + 0xe8999c, + 0xe8999d, + 0xe8999e, + 0xe8999f, + 0xe899a0, + 0xe899a1, + 0xe899a2, + 0xe899a3, + 0xe899a4, + 0xe899a5, + 0xe899a6, + 0xe899a7, + 0xe899a8, + 0xe899a9, + 0xe899aa, + 0xe899ab, + 0xe899ac, + 0xe899ad, + 0xe899ae, + 0xe899af, + 0xe899b0, + 0xe899b1, + 0xe899b2, + 0xe899b3, + 0xe899b4, + 0xe899b5, + 0xe899b6, + 0xe899b7, + 0xe899b8, + 0xe899b9, + 0xe899ba, + 0xe899bb, + 0xe899bc, + 0xe899bd, + 0xe899be, + 0xe899bf, + 0xe89a80, + 0xe89a81, + 0xe89a82, + 0xe89a83, + 0xe89a84, + 0xe89a85, + 0xe89a86, + 0xe89a87, + 0xe89a88, + 0xe89a89, + 0xe89a8a, + 0xe89a8b, + 0xe89a8c, + 0xe89a8d, + 0xe89a8e, + 0xe89a8f, + 0xe89a90, + 0xe89a91, + 0xe89a92, + 0xe89a93, + 0xe89a94, + 0xe89a95, + 0xe89a96, + 0xe89a97, + 0xe89a98, + 0xe89a99, + 0xe89a9a, + 0xe89a9b, + 0xe89a9c, + 0xe89a9d, + 0xe89a9e, + 0xe89a9f, + 0xe89aa0, + 0xe89aa1, + 0xe89aa2, + 0xe89aa3, + 0xe89aa4, + 0xe89aa5, + 0xe89aa6, + 0xe89aa7, + 0xe89aa8, + 0xe89aa9, + 0xe89aaa, + 0xe89aab, + 0xe89aac, + 0xe89aad, + 0xe89aae, + 0xe89aaf, + 0xe89ab0, + 0xe89ab1, + 0xe89ab2, + 0xe89ab3, + 0xe89ab4, + 0xe89ab5, + 0xe89ab6, + 0xe89ab7, + 0xe89ab8, + 0xe89ab9, + 0xe89aba, + 0xe89abb, + 0xe89abc, + 0xe89abd, + 0xe89abe, + 0xe89abf, + 0xe89b80, + 0xe89b81, + 0xe89b82, + 0xe89b83, + 0xe89b84, + 0xe89b85, + 0xe89b86, + 0xe89b87, + 0xe89b88, + 0xe89b89, + 0xe89b8a, + 0xe89b8b, + 0xe89b8c, + 0xe89b8d, + 0xe89b8e, + 0xe89b8f, + 0xe89b90, + 0xe89b91, + 0xe89b92, + 0xe89b93, + 0xe89b94, + 0xe89b95, + 0xe89b96, + 0xe89b97, + 0xe89b98, + 0xe89b99, + 0xe89b9a, + 0xe89b9b, + 0xe89b9c, + 0xe89b9d, + 0xe89b9e, + 0xe89b9f, + 0xe89ba0, + 0xe89ba1, + 0xe89ba2, + 0xe89ba3, + 0xe89ba4, + 0xe89ba5, + 0xe89ba6, + 0xe89ba7, + 0xe89ba8, + 0xe89ba9, + 0xe89baa, + 0xe89bab, + 0xe89bac, + 0xe89bad, + 0xe89bae, + 0xe89baf, + 0xe89bb0, + 0xe89bb1, + 0xe89bb2, + 0xe89bb3, + 0xe89bb4, + 0xe89bb5, + 0xe89bb6, + 0xe89bb7, + 0xe89bb8, + 0xe89bb9, + 0xe89bba, + 0xe89bbb, + 0xe89bbc, + 0xe89bbd, + 0xe89bbe, + 0xe89bbf, + 0xe89c80, + 0xe89c81, + 0xe89c82, + 0xe89c83, + 0xe89c84, + 0xe89c85, + 0xe89c86, + 0xe89c87, + 0xe89c88, + 0xe89c89, + 0xe89c8a, + 0xe89c8b, + 0xe89c8c, + 0xe89c8d, + 0xe89c8e, + 0xe89c8f, + 0xe89c90, + 0xe89c91, + 0xe89c92, + 0xe89c93, + 0xe89c94, + 0xe89c95, + 0xe89c96, + 0xe89c97, + 0xe89c98, + 0xe89c99, + 0xe89c9a, + 0xe89c9b, + 0xe89c9c, + 0xe89c9d, + 0xe89c9e, + 0xe89c9f, + 0xe89ca0, + 0xe89ca1, + 0xe89ca2, + 0xe89ca3, + 0xe89ca4, + 0xe89ca5, + 0xe89ca6, + 0xe89ca7, + 0xe89ca8, + 0xe89ca9, + 0xe89caa, + 0xe89cab, + 0xe89cac, + 0xe89cad, + 0xe89cae, + 0xe89caf, + 0xe89cb0, + 0xe89cb1, + 0xe89cb2, + 0xe89cb3, + 0xe89cb4, + 0xe89cb5, + 0xe89cb6, + 0xe89cb7, + 0xe89cb8, + 0xe89cb9, + 0xe89cba, + 0xe89cbb, + 0xe89cbc, + 0xe89cbd, + 0xe89cbe, + 0xe89cbf, + 0xe89d80, + 0xe89d81, + 0xe89d82, + 0xe89d83, + 0xe89d84, + 0xe89d85, + 0xe89d86, + 0xe89d87, + 0xe89d88, + 0xe89d89, + 0xe89d8a, + 0xe89d8b, + 0xe89d8c, + 0xe89d8d, + 0xe89d8e, + 0xe89d8f, + 0xe89d90, + 0xe89d91, + 0xe89d92, + 0xe89d93, + 0xe89d94, + 0xe89d95, + 0xe89d96, + 0xe89d97, + 0xe89d98, + 0xe89d99, + 0xe89d9a, + 0xe89d9b, + 0xe89d9c, + 0xe89d9d, + 0xe89d9e, + 0xe89d9f, + 0xe89da0, + 0xe89da1, + 0xe89da2, + 0xe89da3, + 0xe89da4, + 0xe89da5, + 0xe89da6, + 0xe89da7, + 0xe89da8, + 0xe89da9, + 0xe89daa, + 0xe89dab, + 0xe89dac, + 0xe89dad, + 0xe89dae, + 0xe89daf, + 0xe89db0, + 0xe89db1, + 0xe89db2, + 0xe89db3, + 0xe89db4, + 0xe89db5, + 0xe89db6, + 0xe89db7, + 0xe89db8, + 0xe89db9, + 0xe89dba, + 0xe89dbb, + 0xe89dbc, + 0xe89dbd, + 0xe89dbe, + 0xe89dbf, + 0xe89e80, + 0xe89e81, + 0xe89e82, + 0xe89e83, + 0xe89e84, + 0xe89e85, + 0xe89e86, + 0xe89e87, + 0xe89e88, + 0xe89e89, + 0xe89e8a, + 0xe89e8b, + 0xe89e8c, + 0xe89e8d, + 0xe89e8e, + 0xe89e8f, + 0xe89e90, + 0xe89e91, + 0xe89e92, + 0xe89e93, + 0xe89e94, + 0xe89e95, + 0xe89e96, + 0xe89e97, + 0xe89e98, + 0xe89e99, + 0xe89e9a, + 0xe89e9b, + 0xe89e9c, + 0xe89e9d, + 0xe89e9e, + 0xe89e9f, + 0xe89ea0, + 0xe89ea1, + 0xe89ea2, + 0xe89ea3, + 0xe89ea4, + 0xe89ea5, + 0xe89ea6, + 0xe89ea7, + 0xe89ea8, + 0xe89ea9, + 0xe89eaa, + 0xe89eab, + 0xe89eac, + 0xe89ead, + 0xe89eae, + 0xe89eaf, + 0xe89eb0, + 0xe89eb1, + 0xe89eb2, + 0xe89eb3, + 0xe89eb4, + 0xe89eb5, + 0xe89eb6, + 0xe89eb7, + 0xe89eb8, + 0xe89eb9, + 0xe89eba, + 0xe89ebb, + 0xe89ebc, + 0xe89ebd, + 0xe89ebe, + 0xe89ebf, + 0xe89f80, + 0xe89f81, + 0xe89f82, + 0xe89f83, + 0xe89f84, + 0xe89f85, + 0xe89f86, + 0xe89f87, + 0xe89f88, + 0xe89f89, + 0xe89f8a, + 0xe89f8b, + 0xe89f8c, + 0xe89f8d, + 0xe89f8e, + 0xe89f8f, + 0xe89f90, + 0xe89f91, + 0xe89f92, + 0xe89f93, + 0xe89f94, + 0xe89f95, + 0xe89f96, + 0xe89f97, + 0xe89f98, + 0xe89f99, + 0xe89f9a, + 0xe89f9b, + 0xe89f9c, + 0xe89f9d, + 0xe89f9e, + 0xe89f9f, + 0xe89fa0, + 0xe89fa1, + 0xe89fa2, + 0xe89fa3, + 0xe89fa4, + 0xe89fa5, + 0xe89fa6, + 0xe89fa7, + 0xe89fa8, + 0xe89fa9, + 0xe89faa, + 0xe89fab, + 0xe89fac, + 0xe89fad, + 0xe89fae, + 0xe89faf, + 0xe89fb0, + 0xe89fb1, + 0xe89fb2, + 0xe89fb3, + 0xe89fb4, + 0xe89fb5, + 0xe89fb6, + 0xe89fb7, + 0xe89fb8, + 0xe89fb9, + 0xe89fba, + 0xe89fbb, + 0xe89fbc, + 0xe89fbd, + 0xe89fbe, + 0xe89fbf, + 0xe8a080, + 0xe8a081, + 0xe8a082, + 0xe8a083, + 0xe8a084, + 0xe8a085, + 0xe8a086, + 0xe8a087, + 0xe8a088, + 0xe8a089, + 0xe8a08a, + 0xe8a08b, + 0xe8a08c, + 0xe8a08d, + 0xe8a08e, + 0xe8a08f, + 0xe8a090, + 0xe8a091, + 0xe8a092, + 0xe8a093, + 0xe8a094, + 0xe8a095, + 0xe8a096, + 0xe8a097, + 0xe8a098, + 0xe8a099, + 0xe8a09a, + 0xe8a09b, + 0xe8a09c, + 0xe8a09d, + 0xe8a09e, + 0xe8a09f, + 0xe8a0a0, + 0xe8a0a1, + 0xe8a0a2, + 0xe8a0a3, + 0xe8a0a4, + 0xe8a0a5, + 0xe8a0a6, + 0xe8a0a7, + 0xe8a0a8, + 0xe8a0a9, + 0xe8a0aa, + 0xe8a0ab, + 0xe8a0ac, + 0xe8a0ad, + 0xe8a0ae, + 0xe8a0af, + 0xe8a0b0, + 0xe8a0b1, + 0xe8a0b2, + 0xe8a0b3, + 0xe8a0b4, + 0xe8a0b5, + 0xe8a0b6, + 0xe8a0b7, + 0xe8a0b8, + 0xe8a0b9, + 0xe8a0ba, + 0xe8a0bb, + 0xe8a0bc, + 0xe8a0bd, + 0xe8a0be, + 0xe8a0bf, + 0xe8a180, + 0xe8a181, + 0xe8a182, + 0xe8a183, + 0xe8a184, + 0xe8a185, + 0xe8a186, + 0xe8a187, + 0xe8a188, + 0xe8a189, + 0xe8a18a, + 0xe8a18b, + 0xe8a18c, + 0xe8a18d, + 0xe8a18e, + 0xe8a18f, + 0xe8a190, + 0xe8a191, + 0xe8a192, + 0xe8a193, + 0xe8a194, + 0xe8a195, + 0xe8a196, + 0xe8a197, + 0xe8a198, + 0xe8a199, + 0xe8a19a, + 0xe8a19b, + 0xe8a19c, + 0xe8a19d, + 0xe8a19e, + 0xe8a19f, + 0xe8a1a0, + 0xe8a1a1, + 0xe8a1a2, + 0xe8a1a3, + 0xe8a1a4, + 0xe8a1a5, + 0xe8a1a6, + 0xe8a1a7, + 0xe8a1a8, + 0xe8a1a9, + 0xe8a1aa, + 0xe8a1ab, + 0xe8a1ac, + 0xe8a1ad, + 0xe8a1ae, + 0xe8a1af, + 0xe8a1b0, + 0xe8a1b1, + 0xe8a1b2, + 0xe8a1b3, + 0xe8a1b4, + 0xe8a1b5, + 0xe8a1b6, + 0xe8a1b7, + 0xe8a1b8, + 0xe8a1b9, + 0xe8a1ba, + 0xe8a1bb, + 0xe8a1bc, + 0xe8a1bd, + 0xe8a1be, + 0xe8a1bf, + 0xe8a280, + 0xe8a281, + 0xe8a282, + 0xe8a283, + 0xe8a284, + 0xe8a285, + 0xe8a286, + 0xe8a287, + 0xe8a288, + 0xe8a289, + 0xe8a28a, + 0xe8a28b, + 0xe8a28c, + 0xe8a28d, + 0xe8a28e, + 0xe8a28f, + 0xe8a290, + 0xe8a291, + 0xe8a292, + 0xe8a293, + 0xe8a294, + 0xe8a295, + 0xe8a296, + 0xe8a297, + 0xe8a298, + 0xe8a299, + 0xe8a29a, + 0xe8a29b, + 0xe8a29c, + 0xe8a29d, + 0xe8a29e, + 0xe8a29f, + 0xe8a2a0, + 0xe8a2a1, + 0xe8a2a2, + 0xe8a2a3, + 0xe8a2a4, + 0xe8a2a5, + 0xe8a2a6, + 0xe8a2a7, + 0xe8a2a8, + 0xe8a2a9, + 0xe8a2aa, + 0xe8a2ab, + 0xe8a2ac, + 0xe8a2ad, + 0xe8a2ae, + 0xe8a2af, + 0xe8a2b0, + 0xe8a2b1, + 0xe8a2b2, + 0xe8a2b3, + 0xe8a2b4, + 0xe8a2b5, + 0xe8a2b6, + 0xe8a2b7, + 0xe8a2b8, + 0xe8a2b9, + 0xe8a2ba, + 0xe8a2bb, + 0xe8a2bc, + 0xe8a2bd, + 0xe8a2be, + 0xe8a2bf, + 0xe8a380, + 0xe8a381, + 0xe8a382, + 0xe8a383, + 0xe8a384, + 0xe8a385, + 0xe8a386, + 0xe8a387, + 0xe8a388, + 0xe8a389, + 0xe8a38a, + 0xe8a38b, + 0xe8a38c, + 0xe8a38d, + 0xe8a38e, + 0xe8a38f, + 0xe8a390, + 0xe8a391, + 0xe8a392, + 0xe8a393, + 0xe8a394, + 0xe8a395, + 0xe8a396, + 0xe8a397, + 0xe8a398, + 0xe8a399, + 0xe8a39a, + 0xe8a39b, + 0xe8a39c, + 0xe8a39d, + 0xe8a39e, + 0xe8a39f, + 0xe8a3a0, + 0xe8a3a1, + 0xe8a3a2, + 0xe8a3a3, + 0xe8a3a4, + 0xe8a3a5, + 0xe8a3a6, + 0xe8a3a7, + 0xe8a3a8, + 0xe8a3a9, + 0xe8a3aa, + 0xe8a3ab, + 0xe8a3ac, + 0xe8a3ad, + 0xe8a3ae, + 0xe8a3af, + 0xe8a3b0, + 0xe8a3b1, + 0xe8a3b2, + 0xe8a3b3, + 0xe8a3b4, + 0xe8a3b5, + 0xe8a3b6, + 0xe8a3b7, + 0xe8a3b8, + 0xe8a3b9, + 0xe8a3ba, + 0xe8a3bb, + 0xe8a3bc, + 0xe8a3bd, + 0xe8a3be, + 0xe8a3bf, + 0xe8a480, + 0xe8a481, + 0xe8a482, + 0xe8a483, + 0xe8a484, + 0xe8a485, + 0xe8a486, + 0xe8a487, + 0xe8a488, + 0xe8a489, + 0xe8a48a, + 0xe8a48b, + 0xe8a48c, + 0xe8a48d, + 0xe8a48e, + 0xe8a48f, + 0xe8a490, + 0xe8a491, + 0xe8a492, + 0xe8a493, + 0xe8a494, + 0xe8a495, + 0xe8a496, + 0xe8a497, + 0xe8a498, + 0xe8a499, + 0xe8a49a, + 0xe8a49b, + 0xe8a49c, + 0xe8a49d, + 0xe8a49e, + 0xe8a49f, + 0xe8a4a0, + 0xe8a4a1, + 0xe8a4a2, + 0xe8a4a3, + 0xe8a4a4, + 0xe8a4a5, + 0xe8a4a6, + 0xe8a4a7, + 0xe8a4a8, + 0xe8a4a9, + 0xe8a4aa, + 0xe8a4ab, + 0xe8a4ac, + 0xe8a4ad, + 0xe8a4ae, + 0xe8a4af, + 0xe8a4b0, + 0xe8a4b1, + 0xe8a4b2, + 0xe8a4b3, + 0xe8a4b4, + 0xe8a4b5, + 0xe8a4b6, + 0xe8a4b7, + 0xe8a4b8, + 0xe8a4b9, + 0xe8a4ba, + 0xe8a4bb, + 0xe8a4bc, + 0xe8a4bd, + 0xe8a4be, + 0xe8a4bf, + 0xe8a580, + 0xe8a581, + 0xe8a582, + 0xe8a583, + 0xe8a584, + 0xe8a585, + 0xe8a586, + 0xe8a587, + 0xe8a588, + 0xe8a589, + 0xe8a58a, + 0xe8a58b, + 0xe8a58c, + 0xe8a58d, + 0xe8a58e, + 0xe8a58f, + 0xe8a590, + 0xe8a591, + 0xe8a592, + 0xe8a593, + 0xe8a594, + 0xe8a595, + 0xe8a596, + 0xe8a597, + 0xe8a598, + 0xe8a599, + 0xe8a59a, + 0xe8a59b, + 0xe8a59c, + 0xe8a59d, + 0xe8a59e, + 0xe8a59f, + 0xe8a5a0, + 0xe8a5a1, + 0xe8a5a2, + 0xe8a5a3, + 0xe8a5a4, + 0xe8a5a5, + 0xe8a5a6, + 0xe8a5a7, + 0xe8a5a8, + 0xe8a5a9, + 0xe8a5aa, + 0xe8a5ab, + 0xe8a5ac, + 0xe8a5ad, + 0xe8a5ae, + 0xe8a5af, + 0xe8a5b0, + 0xe8a5b1, + 0xe8a5b2, + 0xe8a5b3, + 0xe8a5b4, + 0xe8a5b5, + 0xe8a5b6, + 0xe8a5b7, + 0xe8a5b8, + 0xe8a5b9, + 0xe8a5ba, + 0xe8a5bb, + 0xe8a5bc, + 0xe8a5bd, + 0xe8a5be, + 0xe8a5bf, + 0xe8a680, + 0xe8a681, + 0xe8a682, + 0xe8a683, + 0xe8a684, + 0xe8a685, + 0xe8a686, + 0xe8a687, + 0xe8a688, + 0xe8a689, + 0xe8a68a, + 0xe8a68b, + 0xe8a68c, + 0xe8a68d, + 0xe8a68e, + 0xe8a68f, + 0xe8a690, + 0xe8a691, + 0xe8a692, + 0xe8a693, + 0xe8a694, + 0xe8a695, + 0xe8a696, + 0xe8a697, + 0xe8a698, + 0xe8a699, + 0xe8a69a, + 0xe8a69b, + 0xe8a69c, + 0xe8a69d, + 0xe8a69e, + 0xe8a69f, + 0xe8a6a0, + 0xe8a6a1, + 0xe8a6a2, + 0xe8a6a3, + 0xe8a6a4, + 0xe8a6a5, + 0xe8a6a6, + 0xe8a6a7, + 0xe8a6a8, + 0xe8a6a9, + 0xe8a6aa, + 0xe8a6ab, + 0xe8a6ac, + 0xe8a6ad, + 0xe8a6ae, + 0xe8a6af, + 0xe8a6b0, + 0xe8a6b1, + 0xe8a6b2, + 0xe8a6b3, + 0xe8a6b4, + 0xe8a6b5, + 0xe8a6b6, + 0xe8a6b7, + 0xe8a6b8, + 0xe8a6b9, + 0xe8a6ba, + 0xe8a6bb, + 0xe8a6bc, + 0xe8a6bd, + 0xe8a6be, + 0xe8a6bf, + 0xe8a780, + 0xe8a781, + 0xe8a782, + 0xe8a783, + 0xe8a784, + 0xe8a785, + 0xe8a786, + 0xe8a787, + 0xe8a788, + 0xe8a789, + 0xe8a78a, + 0xe8a78b, + 0xe8a78c, + 0xe8a78d, + 0xe8a78e, + 0xe8a78f, + 0xe8a790, + 0xe8a791, + 0xe8a792, + 0xe8a793, + 0xe8a794, + 0xe8a795, + 0xe8a796, + 0xe8a797, + 0xe8a798, + 0xe8a799, + 0xe8a79a, + 0xe8a79b, + 0xe8a79c, + 0xe8a79d, + 0xe8a79e, + 0xe8a79f, + 0xe8a7a0, + 0xe8a7a1, + 0xe8a7a2, + 0xe8a7a3, + 0xe8a7a4, + 0xe8a7a5, + 0xe8a7a6, + 0xe8a7a7, + 0xe8a7a8, + 0xe8a7a9, + 0xe8a7aa, + 0xe8a7ab, + 0xe8a7ac, + 0xe8a7ad, + 0xe8a7ae, + 0xe8a7af, + 0xe8a7b0, + 0xe8a7b1, + 0xe8a7b2, + 0xe8a7b3, + 0xe8a7b4, + 0xe8a7b5, + 0xe8a7b6, + 0xe8a7b7, + 0xe8a7b8, + 0xe8a7b9, + 0xe8a7ba, + 0xe8a7bb, + 0xe8a7bc, + 0xe8a7bd, + 0xe8a7be, + 0xe8a7bf, + 0xe8a880, + 0xe8a881, + 0xe8a882, + 0xe8a883, + 0xe8a884, + 0xe8a885, + 0xe8a886, + 0xe8a887, + 0xe8a888, + 0xe8a889, + 0xe8a88a, + 0xe8a88b, + 0xe8a88c, + 0xe8a88d, + 0xe8a88e, + 0xe8a88f, + 0xe8a890, + 0xe8a891, + 0xe8a892, + 0xe8a893, + 0xe8a894, + 0xe8a895, + 0xe8a896, + 0xe8a897, + 0xe8a898, + 0xe8a899, + 0xe8a89a, + 0xe8a89b, + 0xe8a89c, + 0xe8a89d, + 0xe8a89e, + 0xe8a89f, + 0xe8a8a0, + 0xe8a8a1, + 0xe8a8a2, + 0xe8a8a3, + 0xe8a8a4, + 0xe8a8a5, + 0xe8a8a6, + 0xe8a8a7, + 0xe8a8a8, + 0xe8a8a9, + 0xe8a8aa, + 0xe8a8ab, + 0xe8a8ac, + 0xe8a8ad, + 0xe8a8ae, + 0xe8a8af, + 0xe8a8b0, + 0xe8a8b1, + 0xe8a8b2, + 0xe8a8b3, + 0xe8a8b4, + 0xe8a8b5, + 0xe8a8b6, + 0xe8a8b7, + 0xe8a8b8, + 0xe8a8b9, + 0xe8a8ba, + 0xe8a8bb, + 0xe8a8bc, + 0xe8a8bd, + 0xe8a8be, + 0xe8a8bf, + 0xe8a980, + 0xe8a981, + 0xe8a982, + 0xe8a983, + 0xe8a984, + 0xe8a985, + 0xe8a986, + 0xe8a987, + 0xe8a988, + 0xe8a989, + 0xe8a98a, + 0xe8a98b, + 0xe8a98c, + 0xe8a98d, + 0xe8a98e, + 0xe8a98f, + 0xe8a990, + 0xe8a991, + 0xe8a992, + 0xe8a993, + 0xe8a994, + 0xe8a995, + 0xe8a996, + 0xe8a997, + 0xe8a998, + 0xe8a999, + 0xe8a99a, + 0xe8a99b, + 0xe8a99c, + 0xe8a99d, + 0xe8a99e, + 0xe8a99f, + 0xe8a9a0, + 0xe8a9a1, + 0xe8a9a2, + 0xe8a9a3, + 0xe8a9a4, + 0xe8a9a5, + 0xe8a9a6, + 0xe8a9a7, + 0xe8a9a8, + 0xe8a9a9, + 0xe8a9aa, + 0xe8a9ab, + 0xe8a9ac, + 0xe8a9ad, + 0xe8a9ae, + 0xe8a9af, + 0xe8a9b0, + 0xe8a9b1, + 0xe8a9b2, + 0xe8a9b3, + 0xe8a9b4, + 0xe8a9b5, + 0xe8a9b6, + 0xe8a9b7, + 0xe8a9b8, + 0xe8a9b9, + 0xe8a9ba, + 0xe8a9bb, + 0xe8a9bc, + 0xe8a9bd, + 0xe8a9be, + 0xe8a9bf, + 0xe8aa80, + 0xe8aa81, + 0xe8aa82, + 0xe8aa83, + 0xe8aa84, + 0xe8aa85, + 0xe8aa86, + 0xe8aa87, + 0xe8aa88, + 0xe8aa89, + 0xe8aa8a, + 0xe8aa8b, + 0xe8aa8c, + 0xe8aa8d, + 0xe8aa8e, + 0xe8aa8f, + 0xe8aa90, + 0xe8aa91, + 0xe8aa92, + 0xe8aa93, + 0xe8aa94, + 0xe8aa95, + 0xe8aa96, + 0xe8aa97, + 0xe8aa98, + 0xe8aa99, + 0xe8aa9a, + 0xe8aa9b, + 0xe8aa9c, + 0xe8aa9d, + 0xe8aa9e, + 0xe8aa9f, + 0xe8aaa0, + 0xe8aaa1, + 0xe8aaa2, + 0xe8aaa3, + 0xe8aaa4, + 0xe8aaa5, + 0xe8aaa6, + 0xe8aaa7, + 0xe8aaa8, + 0xe8aaa9, + 0xe8aaaa, + 0xe8aaab, + 0xe8aaac, + 0xe8aaad, + 0xe8aaae, + 0xe8aaaf, + 0xe8aab0, + 0xe8aab1, + 0xe8aab2, + 0xe8aab3, + 0xe8aab4, + 0xe8aab5, + 0xe8aab6, + 0xe8aab7, + 0xe8aab8, + 0xe8aab9, + 0xe8aaba, + 0xe8aabb, + 0xe8aabc, + 0xe8aabd, + 0xe8aabe, + 0xe8aabf, + 0xe8ab80, + 0xe8ab81, + 0xe8ab82, + 0xe8ab83, + 0xe8ab84, + 0xe8ab85, + 0xe8ab86, + 0xe8ab87, + 0xe8ab88, + 0xe8ab89, + 0xe8ab8a, + 0xe8ab8b, + 0xe8ab8c, + 0xe8ab8d, + 0xe8ab8e, + 0xe8ab8f, + 0xe8ab90, + 0xe8ab91, + 0xe8ab92, + 0xe8ab93, + 0xe8ab94, + 0xe8ab95, + 0xe8ab96, + 0xe8ab97, + 0xe8ab98, + 0xe8ab99, + 0xe8ab9a, + 0xe8ab9b, + 0xe8ab9c, + 0xe8ab9d, + 0xe8ab9e, + 0xe8ab9f, + 0xe8aba0, + 0xe8aba1, + 0xe8aba2, + 0xe8aba3, + 0xe8aba4, + 0xe8aba5, + 0xe8aba6, + 0xe8aba7, + 0xe8aba8, + 0xe8aba9, + 0xe8abaa, + 0xe8abab, + 0xe8abac, + 0xe8abad, + 0xe8abae, + 0xe8abaf, + 0xe8abb0, + 0xe8abb1, + 0xe8abb2, + 0xe8abb3, + 0xe8abb4, + 0xe8abb5, + 0xe8abb6, + 0xe8abb7, + 0xe8abb8, + 0xe8abb9, + 0xe8abba, + 0xe8abbb, + 0xe8abbc, + 0xe8abbd, + 0xe8abbe, + 0xe8abbf, + 0xe8ac80, + 0xe8ac81, + 0xe8ac82, + 0xe8ac83, + 0xe8ac84, + 0xe8ac85, + 0xe8ac86, + 0xe8ac87, + 0xe8ac88, + 0xe8ac89, + 0xe8ac8a, + 0xe8ac8b, + 0xe8ac8c, + 0xe8ac8d, + 0xe8ac8e, + 0xe8ac8f, + 0xe8ac90, + 0xe8ac91, + 0xe8ac92, + 0xe8ac93, + 0xe8ac94, + 0xe8ac95, + 0xe8ac96, + 0xe8ac97, + 0xe8ac98, + 0xe8ac99, + 0xe8ac9a, + 0xe8ac9b, + 0xe8ac9c, + 0xe8ac9d, + 0xe8ac9e, + 0xe8ac9f, + 0xe8aca0, + 0xe8aca1, + 0xe8aca2, + 0xe8aca3, + 0xe8aca4, + 0xe8aca5, + 0xe8aca6, + 0xe8aca7, + 0xe8aca8, + 0xe8aca9, + 0xe8acaa, + 0xe8acab, + 0xe8acac, + 0xe8acad, + 0xe8acae, + 0xe8acaf, + 0xe8acb0, + 0xe8acb1, + 0xe8acb2, + 0xe8acb3, + 0xe8acb4, + 0xe8acb5, + 0xe8acb6, + 0xe8acb7, + 0xe8acb8, + 0xe8acb9, + 0xe8acba, + 0xe8acbb, + 0xe8acbc, + 0xe8acbd, + 0xe8acbe, + 0xe8acbf, + 0xe8ad80, + 0xe8ad81, + 0xe8ad82, + 0xe8ad83, + 0xe8ad84, + 0xe8ad85, + 0xe8ad86, + 0xe8ad87, + 0xe8ad88, + 0xe8ad89, + 0xe8ad8a, + 0xe8ad8b, + 0xe8ad8c, + 0xe8ad8d, + 0xe8ad8e, + 0xe8ad8f, + 0xe8ad90, + 0xe8ad91, + 0xe8ad92, + 0xe8ad93, + 0xe8ad94, + 0xe8ad95, + 0xe8ad96, + 0xe8ad97, + 0xe8ad98, + 0xe8ad99, + 0xe8ad9a, + 0xe8ad9b, + 0xe8ad9c, + 0xe8ad9d, + 0xe8ad9e, + 0xe8ad9f, + 0xe8ada0, + 0xe8ada1, + 0xe8ada2, + 0xe8ada3, + 0xe8ada4, + 0xe8ada5, + 0xe8ada6, + 0xe8ada7, + 0xe8ada8, + 0xe8ada9, + 0xe8adaa, + 0xe8adab, + 0xe8adac, + 0xe8adad, + 0xe8adae, + 0xe8adaf, + 0xe8adb0, + 0xe8adb1, + 0xe8adb2, + 0xe8adb3, + 0xe8adb4, + 0xe8adb5, + 0xe8adb6, + 0xe8adb7, + 0xe8adb8, + 0xe8adb9, + 0xe8adba, + 0xe8adbb, + 0xe8adbc, + 0xe8adbd, + 0xe8adbe, + 0xe8adbf, + 0xe8ae80, + 0xe8ae81, + 0xe8ae82, + 0xe8ae83, + 0xe8ae84, + 0xe8ae85, + 0xe8ae86, + 0xe8ae87, + 0xe8ae88, + 0xe8ae89, + 0xe8ae8a, + 0xe8ae8b, + 0xe8ae8c, + 0xe8ae8d, + 0xe8ae8e, + 0xe8ae8f, + 0xe8ae90, + 0xe8ae91, + 0xe8ae92, + 0xe8ae93, + 0xe8ae94, + 0xe8ae95, + 0xe8ae96, + 0xe8ae97, + 0xe8ae98, + 0xe8ae99, + 0xe8ae9a, + 0xe8ae9b, + 0xe8ae9c, + 0xe8ae9d, + 0xe8ae9e, + 0xe8ae9f, + 0xe8aea0, + 0xe8aea1, + 0xe8aea2, + 0xe8aea3, + 0xe8aea4, + 0xe8aea5, + 0xe8aea6, + 0xe8aea7, + 0xe8aea8, + 0xe8aea9, + 0xe8aeaa, + 0xe8aeab, + 0xe8aeac, + 0xe8aead, + 0xe8aeae, + 0xe8aeaf, + 0xe8aeb0, + 0xe8aeb1, + 0xe8aeb2, + 0xe8aeb3, + 0xe8aeb4, + 0xe8aeb5, + 0xe8aeb6, + 0xe8aeb7, + 0xe8aeb8, + 0xe8aeb9, + 0xe8aeba, + 0xe8aebb, + 0xe8aebc, + 0xe8aebd, + 0xe8aebe, + 0xe8aebf, + 0xe8af80, + 0xe8af81, + 0xe8af82, + 0xe8af83, + 0xe8af84, + 0xe8af85, + 0xe8af86, + 0xe8af87, + 0xe8af88, + 0xe8af89, + 0xe8af8a, + 0xe8af8b, + 0xe8af8c, + 0xe8af8d, + 0xe8af8e, + 0xe8af8f, + 0xe8af90, + 0xe8af91, + 0xe8af92, + 0xe8af93, + 0xe8af94, + 0xe8af95, + 0xe8af96, + 0xe8af97, + 0xe8af98, + 0xe8af99, + 0xe8af9a, + 0xe8af9b, + 0xe8af9c, + 0xe8af9d, + 0xe8af9e, + 0xe8af9f, + 0xe8afa0, + 0xe8afa1, + 0xe8afa2, + 0xe8afa3, + 0xe8afa4, + 0xe8afa5, + 0xe8afa6, + 0xe8afa7, + 0xe8afa8, + 0xe8afa9, + 0xe8afaa, + 0xe8afab, + 0xe8afac, + 0xe8afad, + 0xe8afae, + 0xe8afaf, + 0xe8afb0, + 0xe8afb1, + 0xe8afb2, + 0xe8afb3, + 0xe8afb4, + 0xe8afb5, + 0xe8afb6, + 0xe8afb7, + 0xe8afb8, + 0xe8afb9, + 0xe8afba, + 0xe8afbb, + 0xe8afbc, + 0xe8afbd, + 0xe8afbe, + 0xe8afbf, + 0xe8b080, + 0xe8b081, + 0xe8b082, + 0xe8b083, + 0xe8b084, + 0xe8b085, + 0xe8b086, + 0xe8b087, + 0xe8b088, + 0xe8b089, + 0xe8b08a, + 0xe8b08b, + 0xe8b08c, + 0xe8b08d, + 0xe8b08e, + 0xe8b08f, + 0xe8b090, + 0xe8b091, + 0xe8b092, + 0xe8b093, + 0xe8b094, + 0xe8b095, + 0xe8b096, + 0xe8b097, + 0xe8b098, + 0xe8b099, + 0xe8b09a, + 0xe8b09b, + 0xe8b09c, + 0xe8b09d, + 0xe8b09e, + 0xe8b09f, + 0xe8b0a0, + 0xe8b0a1, + 0xe8b0a2, + 0xe8b0a3, + 0xe8b0a4, + 0xe8b0a5, + 0xe8b0a6, + 0xe8b0a7, + 0xe8b0a8, + 0xe8b0a9, + 0xe8b0aa, + 0xe8b0ab, + 0xe8b0ac, + 0xe8b0ad, + 0xe8b0ae, + 0xe8b0af, + 0xe8b0b0, + 0xe8b0b1, + 0xe8b0b2, + 0xe8b0b3, + 0xe8b0b4, + 0xe8b0b5, + 0xe8b0b6, + 0xe8b0b7, + 0xe8b0b8, + 0xe8b0b9, + 0xe8b0ba, + 0xe8b0bb, + 0xe8b0bc, + 0xe8b0bd, + 0xe8b0be, + 0xe8b0bf, + 0xe8b180, + 0xe8b181, + 0xe8b182, + 0xe8b183, + 0xe8b184, + 0xe8b185, + 0xe8b186, + 0xe8b187, + 0xe8b188, + 0xe8b189, + 0xe8b18a, + 0xe8b18b, + 0xe8b18c, + 0xe8b18d, + 0xe8b18e, + 0xe8b18f, + 0xe8b190, + 0xe8b191, + 0xe8b192, + 0xe8b193, + 0xe8b194, + 0xe8b195, + 0xe8b196, + 0xe8b197, + 0xe8b198, + 0xe8b199, + 0xe8b19a, + 0xe8b19b, + 0xe8b19c, + 0xe8b19d, + 0xe8b19e, + 0xe8b19f, + 0xe8b1a0, + 0xe8b1a1, + 0xe8b1a2, + 0xe8b1a3, + 0xe8b1a4, + 0xe8b1a5, + 0xe8b1a6, + 0xe8b1a7, + 0xe8b1a8, + 0xe8b1a9, + 0xe8b1aa, + 0xe8b1ab, + 0xe8b1ac, + 0xe8b1ad, + 0xe8b1ae, + 0xe8b1af, + 0xe8b1b0, + 0xe8b1b1, + 0xe8b1b2, + 0xe8b1b3, + 0xe8b1b4, + 0xe8b1b5, + 0xe8b1b6, + 0xe8b1b7, + 0xe8b1b8, + 0xe8b1b9, + 0xe8b1ba, + 0xe8b1bb, + 0xe8b1bc, + 0xe8b1bd, + 0xe8b1be, + 0xe8b1bf, + 0xe8b280, + 0xe8b281, + 0xe8b282, + 0xe8b283, + 0xe8b284, + 0xe8b285, + 0xe8b286, + 0xe8b287, + 0xe8b288, + 0xe8b289, + 0xe8b28a, + 0xe8b28b, + 0xe8b28c, + 0xe8b28d, + 0xe8b28e, + 0xe8b28f, + 0xe8b290, + 0xe8b291, + 0xe8b292, + 0xe8b293, + 0xe8b294, + 0xe8b295, + 0xe8b296, + 0xe8b297, + 0xe8b298, + 0xe8b299, + 0xe8b29a, + 0xe8b29b, + 0xe8b29c, + 0xe8b29d, + 0xe8b29e, + 0xe8b29f, + 0xe8b2a0, + 0xe8b2a1, + 0xe8b2a2, + 0xe8b2a3, + 0xe8b2a4, + 0xe8b2a5, + 0xe8b2a6, + 0xe8b2a7, + 0xe8b2a8, + 0xe8b2a9, + 0xe8b2aa, + 0xe8b2ab, + 0xe8b2ac, + 0xe8b2ad, + 0xe8b2ae, + 0xe8b2af, + 0xe8b2b0, + 0xe8b2b1, + 0xe8b2b2, + 0xe8b2b3, + 0xe8b2b4, + 0xe8b2b5, + 0xe8b2b6, + 0xe8b2b7, + 0xe8b2b8, + 0xe8b2b9, + 0xe8b2ba, + 0xe8b2bb, + 0xe8b2bc, + 0xe8b2bd, + 0xe8b2be, + 0xe8b2bf, + 0xe8b380, + 0xe8b381, + 0xe8b382, + 0xe8b383, + 0xe8b384, + 0xe8b385, + 0xe8b386, + 0xe8b387, + 0xe8b388, + 0xe8b389, + 0xe8b38a, + 0xe8b38b, + 0xe8b38c, + 0xe8b38d, + 0xe8b38e, + 0xe8b38f, + 0xe8b390, + 0xe8b391, + 0xe8b392, + 0xe8b393, + 0xe8b394, + 0xe8b395, + 0xe8b396, + 0xe8b397, + 0xe8b398, + 0xe8b399, + 0xe8b39a, + 0xe8b39b, + 0xe8b39c, + 0xe8b39d, + 0xe8b39e, + 0xe8b39f, + 0xe8b3a0, + 0xe8b3a1, + 0xe8b3a2, + 0xe8b3a3, + 0xe8b3a4, + 0xe8b3a5, + 0xe8b3a6, + 0xe8b3a7, + 0xe8b3a8, + 0xe8b3a9, + 0xe8b3aa, + 0xe8b3ab, + 0xe8b3ac, + 0xe8b3ad, + 0xe8b3ae, + 0xe8b3af, + 0xe8b3b0, + 0xe8b3b1, + 0xe8b3b2, + 0xe8b3b3, + 0xe8b3b4, + 0xe8b3b5, + 0xe8b3b6, + 0xe8b3b7, + 0xe8b3b8, + 0xe8b3b9, + 0xe8b3ba, + 0xe8b3bb, + 0xe8b3bc, + 0xe8b3bd, + 0xe8b3be, + 0xe8b3bf, + 0xe8b480, + 0xe8b481, + 0xe8b482, + 0xe8b483, + 0xe8b484, + 0xe8b485, + 0xe8b486, + 0xe8b487, + 0xe8b488, + 0xe8b489, + 0xe8b48a, + 0xe8b48b, + 0xe8b48c, + 0xe8b48d, + 0xe8b48e, + 0xe8b48f, + 0xe8b490, + 0xe8b491, + 0xe8b492, + 0xe8b493, + 0xe8b494, + 0xe8b495, + 0xe8b496, + 0xe8b497, + 0xe8b498, + 0xe8b499, + 0xe8b49a, + 0xe8b49b, + 0xe8b49c, + 0xe8b49d, + 0xe8b49e, + 0xe8b49f, + 0xe8b4a0, + 0xe8b4a1, + 0xe8b4a2, + 0xe8b4a3, + 0xe8b4a4, + 0xe8b4a5, + 0xe8b4a6, + 0xe8b4a7, + 0xe8b4a8, + 0xe8b4a9, + 0xe8b4aa, + 0xe8b4ab, + 0xe8b4ac, + 0xe8b4ad, + 0xe8b4ae, + 0xe8b4af, + 0xe8b4b0, + 0xe8b4b1, + 0xe8b4b2, + 0xe8b4b3, + 0xe8b4b4, + 0xe8b4b5, + 0xe8b4b6, + 0xe8b4b7, + 0xe8b4b8, + 0xe8b4b9, + 0xe8b4ba, + 0xe8b4bb, + 0xe8b4bc, + 0xe8b4bd, + 0xe8b4be, + 0xe8b4bf, + 0xe8b580, + 0xe8b581, + 0xe8b582, + 0xe8b583, + 0xe8b584, + 0xe8b585, + 0xe8b586, + 0xe8b587, + 0xe8b588, + 0xe8b589, + 0xe8b58a, + 0xe8b58b, + 0xe8b58c, + 0xe8b58d, + 0xe8b58e, + 0xe8b58f, + 0xe8b590, + 0xe8b591, + 0xe8b592, + 0xe8b593, + 0xe8b594, + 0xe8b595, + 0xe8b596, + 0xe8b597, + 0xe8b598, + 0xe8b599, + 0xe8b59a, + 0xe8b59b, + 0xe8b59c, + 0xe8b59d, + 0xe8b59e, + 0xe8b59f, + 0xe8b5a0, + 0xe8b5a1, + 0xe8b5a2, + 0xe8b5a3, + 0xe8b5a4, + 0xe8b5a5, + 0xe8b5a6, + 0xe8b5a7, + 0xe8b5a8, + 0xe8b5a9, + 0xe8b5aa, + 0xe8b5ab, + 0xe8b5ac, + 0xe8b5ad, + 0xe8b5ae, + 0xe8b5af, + 0xe8b5b0, + 0xe8b5b1, + 0xe8b5b2, + 0xe8b5b3, + 0xe8b5b4, + 0xe8b5b5, + 0xe8b5b6, + 0xe8b5b7, + 0xe8b5b8, + 0xe8b5b9, + 0xe8b5ba, + 0xe8b5bb, + 0xe8b5bc, + 0xe8b5bd, + 0xe8b5be, + 0xe8b5bf, + 0xe8b680, + 0xe8b681, + 0xe8b682, + 0xe8b683, + 0xe8b684, + 0xe8b685, + 0xe8b686, + 0xe8b687, + 0xe8b688, + 0xe8b689, + 0xe8b68a, + 0xe8b68b, + 0xe8b68c, + 0xe8b68d, + 0xe8b68e, + 0xe8b68f, + 0xe8b690, + 0xe8b691, + 0xe8b692, + 0xe8b693, + 0xe8b694, + 0xe8b695, + 0xe8b696, + 0xe8b697, + 0xe8b698, + 0xe8b699, + 0xe8b69a, + 0xe8b69b, + 0xe8b69c, + 0xe8b69d, + 0xe8b69e, + 0xe8b69f, + 0xe8b6a0, + 0xe8b6a1, + 0xe8b6a2, + 0xe8b6a3, + 0xe8b6a4, + 0xe8b6a5, + 0xe8b6a6, + 0xe8b6a7, + 0xe8b6a8, + 0xe8b6a9, + 0xe8b6aa, + 0xe8b6ab, + 0xe8b6ac, + 0xe8b6ad, + 0xe8b6ae, + 0xe8b6af, + 0xe8b6b0, + 0xe8b6b1, + 0xe8b6b2, + 0xe8b6b3, + 0xe8b6b4, + 0xe8b6b5, + 0xe8b6b6, + 0xe8b6b7, + 0xe8b6b8, + 0xe8b6b9, + 0xe8b6ba, + 0xe8b6bb, + 0xe8b6bc, + 0xe8b6bd, + 0xe8b6be, + 0xe8b6bf, + 0xe8b780, + 0xe8b781, + 0xe8b782, + 0xe8b783, + 0xe8b784, + 0xe8b785, + 0xe8b786, + 0xe8b787, + 0xe8b788, + 0xe8b789, + 0xe8b78a, + 0xe8b78b, + 0xe8b78c, + 0xe8b78d, + 0xe8b78e, + 0xe8b78f, + 0xe8b790, + 0xe8b791, + 0xe8b792, + 0xe8b793, + 0xe8b794, + 0xe8b795, + 0xe8b796, + 0xe8b797, + 0xe8b798, + 0xe8b799, + 0xe8b79a, + 0xe8b79b, + 0xe8b79c, + 0xe8b79d, + 0xe8b79e, + 0xe8b79f, + 0xe8b7a0, + 0xe8b7a1, + 0xe8b7a2, + 0xe8b7a3, + 0xe8b7a4, + 0xe8b7a5, + 0xe8b7a6, + 0xe8b7a7, + 0xe8b7a8, + 0xe8b7a9, + 0xe8b7aa, + 0xe8b7ab, + 0xe8b7ac, + 0xe8b7ad, + 0xe8b7ae, + 0xe8b7af, + 0xe8b7b0, + 0xe8b7b1, + 0xe8b7b2, + 0xe8b7b3, + 0xe8b7b4, + 0xe8b7b5, + 0xe8b7b6, + 0xe8b7b7, + 0xe8b7b8, + 0xe8b7b9, + 0xe8b7ba, + 0xe8b7bb, + 0xe8b7bc, + 0xe8b7bd, + 0xe8b7be, + 0xe8b7bf, + 0xe8b880, + 0xe8b881, + 0xe8b882, + 0xe8b883, + 0xe8b884, + 0xe8b885, + 0xe8b886, + 0xe8b887, + 0xe8b888, + 0xe8b889, + 0xe8b88a, + 0xe8b88b, + 0xe8b88c, + 0xe8b88d, + 0xe8b88e, + 0xe8b88f, + 0xe8b890, + 0xe8b891, + 0xe8b892, + 0xe8b893, + 0xe8b894, + 0xe8b895, + 0xe8b896, + 0xe8b897, + 0xe8b898, + 0xe8b899, + 0xe8b89a, + 0xe8b89b, + 0xe8b89c, + 0xe8b89d, + 0xe8b89e, + 0xe8b89f, + 0xe8b8a0, + 0xe8b8a1, + 0xe8b8a2, + 0xe8b8a3, + 0xe8b8a4, + 0xe8b8a5, + 0xe8b8a6, + 0xe8b8a7, + 0xe8b8a8, + 0xe8b8a9, + 0xe8b8aa, + 0xe8b8ab, + 0xe8b8ac, + 0xe8b8ad, + 0xe8b8ae, + 0xe8b8af, + 0xe8b8b0, + 0xe8b8b1, + 0xe8b8b2, + 0xe8b8b3, + 0xe8b8b4, + 0xe8b8b5, + 0xe8b8b6, + 0xe8b8b7, + 0xe8b8b8, + 0xe8b8b9, + 0xe8b8ba, + 0xe8b8bb, + 0xe8b8bc, + 0xe8b8bd, + 0xe8b8be, + 0xe8b8bf, + 0xe8b980, + 0xe8b981, + 0xe8b982, + 0xe8b983, + 0xe8b984, + 0xe8b985, + 0xe8b986, + 0xe8b987, + 0xe8b988, + 0xe8b989, + 0xe8b98a, + 0xe8b98b, + 0xe8b98c, + 0xe8b98d, + 0xe8b98e, + 0xe8b98f, + 0xe8b990, + 0xe8b991, + 0xe8b992, + 0xe8b993, + 0xe8b994, + 0xe8b995, + 0xe8b996, + 0xe8b997, + 0xe8b998, + 0xe8b999, + 0xe8b99a, + 0xe8b99b, + 0xe8b99c, + 0xe8b99d, + 0xe8b99e, + 0xe8b99f, + 0xe8b9a0, + 0xe8b9a1, + 0xe8b9a2, + 0xe8b9a3, + 0xe8b9a4, + 0xe8b9a5, + 0xe8b9a6, + 0xe8b9a7, + 0xe8b9a8, + 0xe8b9a9, + 0xe8b9aa, + 0xe8b9ab, + 0xe8b9ac, + 0xe8b9ad, + 0xe8b9ae, + 0xe8b9af, + 0xe8b9b0, + 0xe8b9b1, + 0xe8b9b2, + 0xe8b9b3, + 0xe8b9b4, + 0xe8b9b5, + 0xe8b9b6, + 0xe8b9b7, + 0xe8b9b8, + 0xe8b9b9, + 0xe8b9ba, + 0xe8b9bb, + 0xe8b9bc, + 0xe8b9bd, + 0xe8b9be, + 0xe8b9bf, + 0xe8ba80, + 0xe8ba81, + 0xe8ba82, + 0xe8ba83, + 0xe8ba84, + 0xe8ba85, + 0xe8ba86, + 0xe8ba87, + 0xe8ba88, + 0xe8ba89, + 0xe8ba8a, + 0xe8ba8b, + 0xe8ba8c, + 0xe8ba8d, + 0xe8ba8e, + 0xe8ba8f, + 0xe8ba90, + 0xe8ba91, + 0xe8ba92, + 0xe8ba93, + 0xe8ba94, + 0xe8ba95, + 0xe8ba96, + 0xe8ba97, + 0xe8ba98, + 0xe8ba99, + 0xe8ba9a, + 0xe8ba9b, + 0xe8ba9c, + 0xe8ba9d, + 0xe8ba9e, + 0xe8ba9f, + 0xe8baa0, + 0xe8baa1, + 0xe8baa2, + 0xe8baa3, + 0xe8baa4, + 0xe8baa5, + 0xe8baa6, + 0xe8baa7, + 0xe8baa8, + 0xe8baa9, + 0xe8baaa, + 0xe8baab, + 0xe8baac, + 0xe8baad, + 0xe8baae, + 0xe8baaf, + 0xe8bab0, + 0xe8bab1, + 0xe8bab2, + 0xe8bab3, + 0xe8bab4, + 0xe8bab5, + 0xe8bab6, + 0xe8bab7, + 0xe8bab8, + 0xe8bab9, + 0xe8baba, + 0xe8babb, + 0xe8babc, + 0xe8babd, + 0xe8babe, + 0xe8babf, + 0xe8bb80, + 0xe8bb81, + 0xe8bb82, + 0xe8bb83, + 0xe8bb84, + 0xe8bb85, + 0xe8bb86, + 0xe8bb87, + 0xe8bb88, + 0xe8bb89, + 0xe8bb8a, + 0xe8bb8b, + 0xe8bb8c, + 0xe8bb8d, + 0xe8bb8e, + 0xe8bb8f, + 0xe8bb90, + 0xe8bb91, + 0xe8bb92, + 0xe8bb93, + 0xe8bb94, + 0xe8bb95, + 0xe8bb96, + 0xe8bb97, + 0xe8bb98, + 0xe8bb99, + 0xe8bb9a, + 0xe8bb9b, + 0xe8bb9c, + 0xe8bb9d, + 0xe8bb9e, + 0xe8bb9f, + 0xe8bba0, + 0xe8bba1, + 0xe8bba2, + 0xe8bba3, + 0xe8bba4, + 0xe8bba5, + 0xe8bba6, + 0xe8bba7, + 0xe8bba8, + 0xe8bba9, + 0xe8bbaa, + 0xe8bbab, + 0xe8bbac, + 0xe8bbad, + 0xe8bbae, + 0xe8bbaf, + 0xe8bbb0, + 0xe8bbb1, + 0xe8bbb2, + 0xe8bbb3, + 0xe8bbb4, + 0xe8bbb5, + 0xe8bbb6, + 0xe8bbb7, + 0xe8bbb8, + 0xe8bbb9, + 0xe8bbba, + 0xe8bbbb, + 0xe8bbbc, + 0xe8bbbd, + 0xe8bbbe, + 0xe8bbbf, + 0xe8bc80, + 0xe8bc81, + 0xe8bc82, + 0xe8bc83, + 0xe8bc84, + 0xe8bc85, + 0xe8bc86, + 0xe8bc87, + 0xe8bc88, + 0xe8bc89, + 0xe8bc8a, + 0xe8bc8b, + 0xe8bc8c, + 0xe8bc8d, + 0xe8bc8e, + 0xe8bc8f, + 0xe8bc90, + 0xe8bc91, + 0xe8bc92, + 0xe8bc93, + 0xe8bc94, + 0xe8bc95, + 0xe8bc96, + 0xe8bc97, + 0xe8bc98, + 0xe8bc99, + 0xe8bc9a, + 0xe8bc9b, + 0xe8bc9c, + 0xe8bc9d, + 0xe8bc9e, + 0xe8bc9f, + 0xe8bca0, + 0xe8bca1, + 0xe8bca2, + 0xe8bca3, + 0xe8bca4, + 0xe8bca5, + 0xe8bca6, + 0xe8bca7, + 0xe8bca8, + 0xe8bca9, + 0xe8bcaa, + 0xe8bcab, + 0xe8bcac, + 0xe8bcad, + 0xe8bcae, + 0xe8bcaf, + 0xe8bcb0, + 0xe8bcb1, + 0xe8bcb2, + 0xe8bcb3, + 0xe8bcb4, + 0xe8bcb5, + 0xe8bcb6, + 0xe8bcb7, + 0xe8bcb8, + 0xe8bcb9, + 0xe8bcba, + 0xe8bcbb, + 0xe8bcbc, + 0xe8bcbd, + 0xe8bcbe, + 0xe8bcbf, + 0xe8bd80, + 0xe8bd81, + 0xe8bd82, + 0xe8bd83, + 0xe8bd84, + 0xe8bd85, + 0xe8bd86, + 0xe8bd87, + 0xe8bd88, + 0xe8bd89, + 0xe8bd8a, + 0xe8bd8b, + 0xe8bd8c, + 0xe8bd8d, + 0xe8bd8e, + 0xe8bd8f, + 0xe8bd90, + 0xe8bd91, + 0xe8bd92, + 0xe8bd93, + 0xe8bd94, + 0xe8bd95, + 0xe8bd96, + 0xe8bd97, + 0xe8bd98, + 0xe8bd99, + 0xe8bd9a, + 0xe8bd9b, + 0xe8bd9c, + 0xe8bd9d, + 0xe8bd9e, + 0xe8bd9f, + 0xe8bda0, + 0xe8bda1, + 0xe8bda2, + 0xe8bda3, + 0xe8bda4, + 0xe8bda5, + 0xe8bda6, + 0xe8bda7, + 0xe8bda8, + 0xe8bda9, + 0xe8bdaa, + 0xe8bdab, + 0xe8bdac, + 0xe8bdad, + 0xe8bdae, + 0xe8bdaf, + 0xe8bdb0, + 0xe8bdb1, + 0xe8bdb2, + 0xe8bdb3, + 0xe8bdb4, + 0xe8bdb5, + 0xe8bdb6, + 0xe8bdb7, + 0xe8bdb8, + 0xe8bdb9, + 0xe8bdba, + 0xe8bdbb, + 0xe8bdbc, + 0xe8bdbd, + 0xe8bdbe, + 0xe8bdbf, + 0xe8be80, + 0xe8be81, + 0xe8be82, + 0xe8be83, + 0xe8be84, + 0xe8be85, + 0xe8be86, + 0xe8be87, + 0xe8be88, + 0xe8be89, + 0xe8be8a, + 0xe8be8b, + 0xe8be8c, + 0xe8be8d, + 0xe8be8e, + 0xe8be8f, + 0xe8be90, + 0xe8be91, + 0xe8be92, + 0xe8be93, + 0xe8be94, + 0xe8be95, + 0xe8be96, + 0xe8be97, + 0xe8be98, + 0xe8be99, + 0xe8be9a, + 0xe8be9b, + 0xe8be9c, + 0xe8be9d, + 0xe8be9e, + 0xe8be9f, + 0xe8bea0, + 0xe8bea1, + 0xe8bea2, + 0xe8bea3, + 0xe8bea4, + 0xe8bea5, + 0xe8bea6, + 0xe8bea7, + 0xe8bea8, + 0xe8bea9, + 0xe8beaa, + 0xe8beab, + 0xe8beac, + 0xe8bead, + 0xe8beae, + 0xe8beaf, + 0xe8beb0, + 0xe8beb1, + 0xe8beb2, + 0xe8beb3, + 0xe8beb4, + 0xe8beb5, + 0xe8beb6, + 0xe8beb7, + 0xe8beb8, + 0xe8beb9, + 0xe8beba, + 0xe8bebb, + 0xe8bebc, + 0xe8bebd, + 0xe8bebe, + 0xe8bebf, + 0xe8bf80, + 0xe8bf81, + 0xe8bf82, + 0xe8bf83, + 0xe8bf84, + 0xe8bf85, + 0xe8bf86, + 0xe8bf87, + 0xe8bf88, + 0xe8bf89, + 0xe8bf8a, + 0xe8bf8b, + 0xe8bf8c, + 0xe8bf8d, + 0xe8bf8e, + 0xe8bf8f, + 0xe8bf90, + 0xe8bf91, + 0xe8bf92, + 0xe8bf93, + 0xe8bf94, + 0xe8bf95, + 0xe8bf96, + 0xe8bf97, + 0xe8bf98, + 0xe8bf99, + 0xe8bf9a, + 0xe8bf9b, + 0xe8bf9c, + 0xe8bf9d, + 0xe8bf9e, + 0xe8bf9f, + 0xe8bfa0, + 0xe8bfa1, + 0xe8bfa2, + 0xe8bfa3, + 0xe8bfa4, + 0xe8bfa5, + 0xe8bfa6, + 0xe8bfa7, + 0xe8bfa8, + 0xe8bfa9, + 0xe8bfaa, + 0xe8bfab, + 0xe8bfac, + 0xe8bfad, + 0xe8bfae, + 0xe8bfaf, + 0xe8bfb0, + 0xe8bfb1, + 0xe8bfb2, + 0xe8bfb3, + 0xe8bfb4, + 0xe8bfb5, + 0xe8bfb6, + 0xe8bfb7, + 0xe8bfb8, + 0xe8bfb9, + 0xe8bfba, + 0xe8bfbb, + 0xe8bfbc, + 0xe8bfbd, + 0xe8bfbe, + 0xe8bfbf, + 0xe98080, + 0xe98081, + 0xe98082, + 0xe98083, + 0xe98084, + 0xe98085, + 0xe98086, + 0xe98087, + 0xe98088, + 0xe98089, + 0xe9808a, + 0xe9808b, + 0xe9808c, + 0xe9808d, + 0xe9808e, + 0xe9808f, + 0xe98090, + 0xe98091, + 0xe98092, + 0xe98093, + 0xe98094, + 0xe98095, + 0xe98096, + 0xe98097, + 0xe98098, + 0xe98099, + 0xe9809a, + 0xe9809b, + 0xe9809c, + 0xe9809d, + 0xe9809e, + 0xe9809f, + 0xe980a0, + 0xe980a1, + 0xe980a2, + 0xe980a3, + 0xe980a4, + 0xe980a5, + 0xe980a6, + 0xe980a7, + 0xe980a8, + 0xe980a9, + 0xe980aa, + 0xe980ab, + 0xe980ac, + 0xe980ad, + 0xe980ae, + 0xe980af, + 0xe980b0, + 0xe980b1, + 0xe980b2, + 0xe980b3, + 0xe980b4, + 0xe980b5, + 0xe980b6, + 0xe980b7, + 0xe980b8, + 0xe980b9, + 0xe980ba, + 0xe980bb, + 0xe980bc, + 0xe980bd, + 0xe980be, + 0xe980bf, + 0xe98180, + 0xe98181, + 0xe98182, + 0xe98183, + 0xe98184, + 0xe98185, + 0xe98186, + 0xe98187, + 0xe98188, + 0xe98189, + 0xe9818a, + 0xe9818b, + 0xe9818c, + 0xe9818d, + 0xe9818e, + 0xe9818f, + 0xe98190, + 0xe98191, + 0xe98192, + 0xe98193, + 0xe98194, + 0xe98195, + 0xe98196, + 0xe98197, + 0xe98198, + 0xe98199, + 0xe9819a, + 0xe9819b, + 0xe9819c, + 0xe9819d, + 0xe9819e, + 0xe9819f, + 0xe981a0, + 0xe981a1, + 0xe981a2, + 0xe981a3, + 0xe981a4, + 0xe981a5, + 0xe981a6, + 0xe981a7, + 0xe981a8, + 0xe981a9, + 0xe981aa, + 0xe981ab, + 0xe981ac, + 0xe981ad, + 0xe981ae, + 0xe981af, + 0xe981b0, + 0xe981b1, + 0xe981b2, + 0xe981b3, + 0xe981b4, + 0xe981b5, + 0xe981b6, + 0xe981b7, + 0xe981b8, + 0xe981b9, + 0xe981ba, + 0xe981bb, + 0xe981bc, + 0xe981bd, + 0xe981be, + 0xe981bf, + 0xe98280, + 0xe98281, + 0xe98282, + 0xe98283, + 0xe98284, + 0xe98285, + 0xe98286, + 0xe98287, + 0xe98288, + 0xe98289, + 0xe9828a, + 0xe9828b, + 0xe9828c, + 0xe9828d, + 0xe9828e, + 0xe9828f, + 0xe98290, + 0xe98291, + 0xe98292, + 0xe98293, + 0xe98294, + 0xe98295, + 0xe98296, + 0xe98297, + 0xe98298, + 0xe98299, + 0xe9829a, + 0xe9829b, + 0xe9829c, + 0xe9829d, + 0xe9829e, + 0xe9829f, + 0xe982a0, + 0xe982a1, + 0xe982a2, + 0xe982a3, + 0xe982a4, + 0xe982a5, + 0xe982a6, + 0xe982a7, + 0xe982a8, + 0xe982a9, + 0xe982aa, + 0xe982ab, + 0xe982ac, + 0xe982ad, + 0xe982ae, + 0xe982af, + 0xe982b0, + 0xe982b1, + 0xe982b2, + 0xe982b3, + 0xe982b4, + 0xe982b5, + 0xe982b6, + 0xe982b7, + 0xe982b8, + 0xe982b9, + 0xe982ba, + 0xe982bb, + 0xe982bc, + 0xe982bd, + 0xe982be, + 0xe982bf, + 0xe98380, + 0xe98381, + 0xe98382, + 0xe98383, + 0xe98384, + 0xe98385, + 0xe98386, + 0xe98387, + 0xe98388, + 0xe98389, + 0xe9838a, + 0xe9838b, + 0xe9838c, + 0xe9838d, + 0xe9838e, + 0xe9838f, + 0xe98390, + 0xe98391, + 0xe98392, + 0xe98393, + 0xe98394, + 0xe98395, + 0xe98396, + 0xe98397, + 0xe98398, + 0xe98399, + 0xe9839a, + 0xe9839b, + 0xe9839c, + 0xe9839d, + 0xe9839e, + 0xe9839f, + 0xe983a0, + 0xe983a1, + 0xe983a2, + 0xe983a3, + 0xe983a4, + 0xe983a5, + 0xe983a6, + 0xe983a7, + 0xe983a8, + 0xe983a9, + 0xe983aa, + 0xe983ab, + 0xe983ac, + 0xe983ad, + 0xe983ae, + 0xe983af, + 0xe983b0, + 0xe983b1, + 0xe983b2, + 0xe983b3, + 0xe983b4, + 0xe983b5, + 0xe983b6, + 0xe983b7, + 0xe983b8, + 0xe983b9, + 0xe983ba, + 0xe983bb, + 0xe983bc, + 0xe983bd, + 0xe983be, + 0xe983bf, + 0xe98480, + 0xe98481, + 0xe98482, + 0xe98483, + 0xe98484, + 0xe98485, + 0xe98486, + 0xe98487, + 0xe98488, + 0xe98489, + 0xe9848a, + 0xe9848b, + 0xe9848c, + 0xe9848d, + 0xe9848e, + 0xe9848f, + 0xe98490, + 0xe98491, + 0xe98492, + 0xe98493, + 0xe98494, + 0xe98495, + 0xe98496, + 0xe98497, + 0xe98498, + 0xe98499, + 0xe9849a, + 0xe9849b, + 0xe9849c, + 0xe9849d, + 0xe9849e, + 0xe9849f, + 0xe984a0, + 0xe984a1, + 0xe984a2, + 0xe984a3, + 0xe984a4, + 0xe984a5, + 0xe984a6, + 0xe984a7, + 0xe984a8, + 0xe984a9, + 0xe984aa, + 0xe984ab, + 0xe984ac, + 0xe984ad, + 0xe984ae, + 0xe984af, + 0xe984b0, + 0xe984b1, + 0xe984b2, + 0xe984b3, + 0xe984b4, + 0xe984b5, + 0xe984b6, + 0xe984b7, + 0xe984b8, + 0xe984b9, + 0xe984ba, + 0xe984bb, + 0xe984bc, + 0xe984bd, + 0xe984be, + 0xe984bf, + 0xe98580, + 0xe98581, + 0xe98582, + 0xe98583, + 0xe98584, + 0xe98585, + 0xe98586, + 0xe98587, + 0xe98588, + 0xe98589, + 0xe9858a, + 0xe9858b, + 0xe9858c, + 0xe9858d, + 0xe9858e, + 0xe9858f, + 0xe98590, + 0xe98591, + 0xe98592, + 0xe98593, + 0xe98594, + 0xe98595, + 0xe98596, + 0xe98597, + 0xe98598, + 0xe98599, + 0xe9859a, + 0xe9859b, + 0xe9859c, + 0xe9859d, + 0xe9859e, + 0xe9859f, + 0xe985a0, + 0xe985a1, + 0xe985a2, + 0xe985a3, + 0xe985a4, + 0xe985a5, + 0xe985a6, + 0xe985a7, + 0xe985a8, + 0xe985a9, + 0xe985aa, + 0xe985ab, + 0xe985ac, + 0xe985ad, + 0xe985ae, + 0xe985af, + 0xe985b0, + 0xe985b1, + 0xe985b2, + 0xe985b3, + 0xe985b4, + 0xe985b5, + 0xe985b6, + 0xe985b7, + 0xe985b8, + 0xe985b9, + 0xe985ba, + 0xe985bb, + 0xe985bc, + 0xe985bd, + 0xe985be, + 0xe985bf, + 0xe98680, + 0xe98681, + 0xe98682, + 0xe98683, + 0xe98684, + 0xe98685, + 0xe98686, + 0xe98687, + 0xe98688, + 0xe98689, + 0xe9868a, + 0xe9868b, + 0xe9868c, + 0xe9868d, + 0xe9868e, + 0xe9868f, + 0xe98690, + 0xe98691, + 0xe98692, + 0xe98693, + 0xe98694, + 0xe98695, + 0xe98696, + 0xe98697, + 0xe98698, + 0xe98699, + 0xe9869a, + 0xe9869b, + 0xe9869c, + 0xe9869d, + 0xe9869e, + 0xe9869f, + 0xe986a0, + 0xe986a1, + 0xe986a2, + 0xe986a3, + 0xe986a4, + 0xe986a5, + 0xe986a6, + 0xe986a7, + 0xe986a8, + 0xe986a9, + 0xe986aa, + 0xe986ab, + 0xe986ac, + 0xe986ad, + 0xe986ae, + 0xe986af, + 0xe986b0, + 0xe986b1, + 0xe986b2, + 0xe986b3, + 0xe986b4, + 0xe986b5, + 0xe986b6, + 0xe986b7, + 0xe986b8, + 0xe986b9, + 0xe986ba, + 0xe986bb, + 0xe986bc, + 0xe986bd, + 0xe986be, + 0xe986bf, + 0xe98780, + 0xe98781, + 0xe98782, + 0xe98783, + 0xe98784, + 0xe98785, + 0xe98786, + 0xe98787, + 0xe98788, + 0xe98789, + 0xe9878a, + 0xe9878b, + 0xe9878c, + 0xe9878d, + 0xe9878e, + 0xe9878f, + 0xe98790, + 0xe98791, + 0xe98792, + 0xe98793, + 0xe98794, + 0xe98795, + 0xe98796, + 0xe98797, + 0xe98798, + 0xe98799, + 0xe9879a, + 0xe9879b, + 0xe9879c, + 0xe9879d, + 0xe9879e, + 0xe9879f, + 0xe987a0, + 0xe987a1, + 0xe987a2, + 0xe987a3, + 0xe987a4, + 0xe987a5, + 0xe987a6, + 0xe987a7, + 0xe987a8, + 0xe987a9, + 0xe987aa, + 0xe987ab, + 0xe987ac, + 0xe987ad, + 0xe987ae, + 0xe987af, + 0xe987b0, + 0xe987b1, + 0xe987b2, + 0xe987b3, + 0xe987b4, + 0xe987b5, + 0xe987b6, + 0xe987b7, + 0xe987b8, + 0xe987b9, + 0xe987ba, + 0xe987bb, + 0xe987bc, + 0xe987bd, + 0xe987be, + 0xe987bf, + 0xe98880, + 0xe98881, + 0xe98882, + 0xe98883, + 0xe98884, + 0xe98885, + 0xe98886, + 0xe98887, + 0xe98888, + 0xe98889, + 0xe9888a, + 0xe9888b, + 0xe9888c, + 0xe9888d, + 0xe9888e, + 0xe9888f, + 0xe98890, + 0xe98891, + 0xe98892, + 0xe98893, + 0xe98894, + 0xe98895, + 0xe98896, + 0xe98897, + 0xe98898, + 0xe98899, + 0xe9889a, + 0xe9889b, + 0xe9889c, + 0xe9889d, + 0xe9889e, + 0xe9889f, + 0xe988a0, + 0xe988a1, + 0xe988a2, + 0xe988a3, + 0xe988a4, + 0xe988a5, + 0xe988a6, + 0xe988a7, + 0xe988a8, + 0xe988a9, + 0xe988aa, + 0xe988ab, + 0xe988ac, + 0xe988ad, + 0xe988ae, + 0xe988af, + 0xe988b0, + 0xe988b1, + 0xe988b2, + 0xe988b3, + 0xe988b4, + 0xe988b5, + 0xe988b6, + 0xe988b7, + 0xe988b8, + 0xe988b9, + 0xe988ba, + 0xe988bb, + 0xe988bc, + 0xe988bd, + 0xe988be, + 0xe988bf, + 0xe98980, + 0xe98981, + 0xe98982, + 0xe98983, + 0xe98984, + 0xe98985, + 0xe98986, + 0xe98987, + 0xe98988, + 0xe98989, + 0xe9898a, + 0xe9898b, + 0xe9898c, + 0xe9898d, + 0xe9898e, + 0xe9898f, + 0xe98990, + 0xe98991, + 0xe98992, + 0xe98993, + 0xe98994, + 0xe98995, + 0xe98996, + 0xe98997, + 0xe98998, + 0xe98999, + 0xe9899a, + 0xe9899b, + 0xe9899c, + 0xe9899d, + 0xe9899e, + 0xe9899f, + 0xe989a0, + 0xe989a1, + 0xe989a2, + 0xe989a3, + 0xe989a4, + 0xe989a5, + 0xe989a6, + 0xe989a7, + 0xe989a8, + 0xe989a9, + 0xe989aa, + 0xe989ab, + 0xe989ac, + 0xe989ad, + 0xe989ae, + 0xe989af, + 0xe989b0, + 0xe989b1, + 0xe989b2, + 0xe989b3, + 0xe989b4, + 0xe989b5, + 0xe989b6, + 0xe989b7, + 0xe989b8, + 0xe989b9, + 0xe989ba, + 0xe989bb, + 0xe989bc, + 0xe989bd, + 0xe989be, + 0xe989bf, + 0xe98a80, + 0xe98a81, + 0xe98a82, + 0xe98a83, + 0xe98a84, + 0xe98a85, + 0xe98a86, + 0xe98a87, + 0xe98a88, + 0xe98a89, + 0xe98a8a, + 0xe98a8b, + 0xe98a8c, + 0xe98a8d, + 0xe98a8e, + 0xe98a8f, + 0xe98a90, + 0xe98a91, + 0xe98a92, + 0xe98a93, + 0xe98a94, + 0xe98a95, + 0xe98a96, + 0xe98a97, + 0xe98a98, + 0xe98a99, + 0xe98a9a, + 0xe98a9b, + 0xe98a9c, + 0xe98a9d, + 0xe98a9e, + 0xe98a9f, + 0xe98aa0, + 0xe98aa1, + 0xe98aa2, + 0xe98aa3, + 0xe98aa4, + 0xe98aa5, + 0xe98aa6, + 0xe98aa7, + 0xe98aa8, + 0xe98aa9, + 0xe98aaa, + 0xe98aab, + 0xe98aac, + 0xe98aad, + 0xe98aae, + 0xe98aaf, + 0xe98ab0, + 0xe98ab1, + 0xe98ab2, + 0xe98ab3, + 0xe98ab4, + 0xe98ab5, + 0xe98ab6, + 0xe98ab7, + 0xe98ab8, + 0xe98ab9, + 0xe98aba, + 0xe98abb, + 0xe98abc, + 0xe98abd, + 0xe98abe, + 0xe98abf, + 0xe98b80, + 0xe98b81, + 0xe98b82, + 0xe98b83, + 0xe98b84, + 0xe98b85, + 0xe98b86, + 0xe98b87, + 0xe98b88, + 0xe98b89, + 0xe98b8a, + 0xe98b8b, + 0xe98b8c, + 0xe98b8d, + 0xe98b8e, + 0xe98b8f, + 0xe98b90, + 0xe98b91, + 0xe98b92, + 0xe98b93, + 0xe98b94, + 0xe98b95, + 0xe98b96, + 0xe98b97, + 0xe98b98, + 0xe98b99, + 0xe98b9a, + 0xe98b9b, + 0xe98b9c, + 0xe98b9d, + 0xe98b9e, + 0xe98b9f, + 0xe98ba0, + 0xe98ba1, + 0xe98ba2, + 0xe98ba3, + 0xe98ba4, + 0xe98ba5, + 0xe98ba6, + 0xe98ba7, + 0xe98ba8, + 0xe98ba9, + 0xe98baa, + 0xe98bab, + 0xe98bac, + 0xe98bad, + 0xe98bae, + 0xe98baf, + 0xe98bb0, + 0xe98bb1, + 0xe98bb2, + 0xe98bb3, + 0xe98bb4, + 0xe98bb5, + 0xe98bb6, + 0xe98bb7, + 0xe98bb8, + 0xe98bb9, + 0xe98bba, + 0xe98bbb, + 0xe98bbc, + 0xe98bbd, + 0xe98bbe, + 0xe98bbf, + 0xe98c80, + 0xe98c81, + 0xe98c82, + 0xe98c83, + 0xe98c84, + 0xe98c85, + 0xe98c86, + 0xe98c87, + 0xe98c88, + 0xe98c89, + 0xe98c8a, + 0xe98c8b, + 0xe98c8c, + 0xe98c8d, + 0xe98c8e, + 0xe98c8f, + 0xe98c90, + 0xe98c91, + 0xe98c92, + 0xe98c93, + 0xe98c94, + 0xe98c95, + 0xe98c96, + 0xe98c97, + 0xe98c98, + 0xe98c99, + 0xe98c9a, + 0xe98c9b, + 0xe98c9c, + 0xe98c9d, + 0xe98c9e, + 0xe98c9f, + 0xe98ca0, + 0xe98ca1, + 0xe98ca2, + 0xe98ca3, + 0xe98ca4, + 0xe98ca5, + 0xe98ca6, + 0xe98ca7, + 0xe98ca8, + 0xe98ca9, + 0xe98caa, + 0xe98cab, + 0xe98cac, + 0xe98cad, + 0xe98cae, + 0xe98caf, + 0xe98cb0, + 0xe98cb1, + 0xe98cb2, + 0xe98cb3, + 0xe98cb4, + 0xe98cb5, + 0xe98cb6, + 0xe98cb7, + 0xe98cb8, + 0xe98cb9, + 0xe98cba, + 0xe98cbb, + 0xe98cbc, + 0xe98cbd, + 0xe98cbe, + 0xe98cbf, + 0xe98d80, + 0xe98d81, + 0xe98d82, + 0xe98d83, + 0xe98d84, + 0xe98d85, + 0xe98d86, + 0xe98d87, + 0xe98d88, + 0xe98d89, + 0xe98d8a, + 0xe98d8b, + 0xe98d8c, + 0xe98d8d, + 0xe98d8e, + 0xe98d8f, + 0xe98d90, + 0xe98d91, + 0xe98d92, + 0xe98d93, + 0xe98d94, + 0xe98d95, + 0xe98d96, + 0xe98d97, + 0xe98d98, + 0xe98d99, + 0xe98d9a, + 0xe98d9b, + 0xe98d9c, + 0xe98d9d, + 0xe98d9e, + 0xe98d9f, + 0xe98da0, + 0xe98da1, + 0xe98da2, + 0xe98da3, + 0xe98da4, + 0xe98da5, + 0xe98da6, + 0xe98da7, + 0xe98da8, + 0xe98da9, + 0xe98daa, + 0xe98dab, + 0xe98dac, + 0xe98dad, + 0xe98dae, + 0xe98daf, + 0xe98db0, + 0xe98db1, + 0xe98db2, + 0xe98db3, + 0xe98db4, + 0xe98db5, + 0xe98db6, + 0xe98db7, + 0xe98db8, + 0xe98db9, + 0xe98dba, + 0xe98dbb, + 0xe98dbc, + 0xe98dbd, + 0xe98dbe, + 0xe98dbf, + 0xe98e80, + 0xe98e81, + 0xe98e82, + 0xe98e83, + 0xe98e84, + 0xe98e85, + 0xe98e86, + 0xe98e87, + 0xe98e88, + 0xe98e89, + 0xe98e8a, + 0xe98e8b, + 0xe98e8c, + 0xe98e8d, + 0xe98e8e, + 0xe98e8f, + 0xe98e90, + 0xe98e91, + 0xe98e92, + 0xe98e93, + 0xe98e94, + 0xe98e95, + 0xe98e96, + 0xe98e97, + 0xe98e98, + 0xe98e99, + 0xe98e9a, + 0xe98e9b, + 0xe98e9c, + 0xe98e9d, + 0xe98e9e, + 0xe98e9f, + 0xe98ea0, + 0xe98ea1, + 0xe98ea2, + 0xe98ea3, + 0xe98ea4, + 0xe98ea5, + 0xe98ea6, + 0xe98ea7, + 0xe98ea8, + 0xe98ea9, + 0xe98eaa, + 0xe98eab, + 0xe98eac, + 0xe98ead, + 0xe98eae, + 0xe98eaf, + 0xe98eb0, + 0xe98eb1, + 0xe98eb2, + 0xe98eb3, + 0xe98eb4, + 0xe98eb5, + 0xe98eb6, + 0xe98eb7, + 0xe98eb8, + 0xe98eb9, + 0xe98eba, + 0xe98ebb, + 0xe98ebc, + 0xe98ebd, + 0xe98ebe, + 0xe98ebf, + 0xe98f80, + 0xe98f81, + 0xe98f82, + 0xe98f83, + 0xe98f84, + 0xe98f85, + 0xe98f86, + 0xe98f87, + 0xe98f88, + 0xe98f89, + 0xe98f8a, + 0xe98f8b, + 0xe98f8c, + 0xe98f8d, + 0xe98f8e, + 0xe98f8f, + 0xe98f90, + 0xe98f91, + 0xe98f92, + 0xe98f93, + 0xe98f94, + 0xe98f95, + 0xe98f96, + 0xe98f97, + 0xe98f98, + 0xe98f99, + 0xe98f9a, + 0xe98f9b, + 0xe98f9c, + 0xe98f9d, + 0xe98f9e, + 0xe98f9f, + 0xe98fa0, + 0xe98fa1, + 0xe98fa2, + 0xe98fa3, + 0xe98fa4, + 0xe98fa5, + 0xe98fa6, + 0xe98fa7, + 0xe98fa8, + 0xe98fa9, + 0xe98faa, + 0xe98fab, + 0xe98fac, + 0xe98fad, + 0xe98fae, + 0xe98faf, + 0xe98fb0, + 0xe98fb1, + 0xe98fb2, + 0xe98fb3, + 0xe98fb4, + 0xe98fb5, + 0xe98fb6, + 0xe98fb7, + 0xe98fb8, + 0xe98fb9, + 0xe98fba, + 0xe98fbb, + 0xe98fbc, + 0xe98fbd, + 0xe98fbe, + 0xe98fbf, + 0xe99080, + 0xe99081, + 0xe99082, + 0xe99083, + 0xe99084, + 0xe99085, + 0xe99086, + 0xe99087, + 0xe99088, + 0xe99089, + 0xe9908a, + 0xe9908b, + 0xe9908c, + 0xe9908d, + 0xe9908e, + 0xe9908f, + 0xe99090, + 0xe99091, + 0xe99092, + 0xe99093, + 0xe99094, + 0xe99095, + 0xe99096, + 0xe99097, + 0xe99098, + 0xe99099, + 0xe9909a, + 0xe9909b, + 0xe9909c, + 0xe9909d, + 0xe9909e, + 0xe9909f, + 0xe990a0, + 0xe990a1, + 0xe990a2, + 0xe990a3, + 0xe990a4, + 0xe990a5, + 0xe990a6, + 0xe990a7, + 0xe990a8, + 0xe990a9, + 0xe990aa, + 0xe990ab, + 0xe990ac, + 0xe990ad, + 0xe990ae, + 0xe990af, + 0xe990b0, + 0xe990b1, + 0xe990b2, + 0xe990b3, + 0xe990b4, + 0xe990b5, + 0xe990b6, + 0xe990b7, + 0xe990b8, + 0xe990b9, + 0xe990ba, + 0xe990bb, + 0xe990bc, + 0xe990bd, + 0xe990be, + 0xe990bf, + 0xe99180, + 0xe99181, + 0xe99182, + 0xe99183, + 0xe99184, + 0xe99185, + 0xe99186, + 0xe99187, + 0xe99188, + 0xe99189, + 0xe9918a, + 0xe9918b, + 0xe9918c, + 0xe9918d, + 0xe9918e, + 0xe9918f, + 0xe99190, + 0xe99191, + 0xe99192, + 0xe99193, + 0xe99194, + 0xe99195, + 0xe99196, + 0xe99197, + 0xe99198, + 0xe99199, + 0xe9919a, + 0xe9919b, + 0xe9919c, + 0xe9919d, + 0xe9919e, + 0xe9919f, + 0xe991a0, + 0xe991a1, + 0xe991a2, + 0xe991a3, + 0xe991a4, + 0xe991a5, + 0xe991a6, + 0xe991a7, + 0xe991a8, + 0xe991a9, + 0xe991aa, + 0xe991ab, + 0xe991ac, + 0xe991ad, + 0xe991ae, + 0xe991af, + 0xe991b0, + 0xe991b1, + 0xe991b2, + 0xe991b3, + 0xe991b4, + 0xe991b5, + 0xe991b6, + 0xe991b7, + 0xe991b8, + 0xe991b9, + 0xe991ba, + 0xe991bb, + 0xe991bc, + 0xe991bd, + 0xe991be, + 0xe991bf, + 0xe99280, + 0xe99281, + 0xe99282, + 0xe99283, + 0xe99284, + 0xe99285, + 0xe99286, + 0xe99287, + 0xe99288, + 0xe99289, + 0xe9928a, + 0xe9928b, + 0xe9928c, + 0xe9928d, + 0xe9928e, + 0xe9928f, + 0xe99290, + 0xe99291, + 0xe99292, + 0xe99293, + 0xe99294, + 0xe99295, + 0xe99296, + 0xe99297, + 0xe99298, + 0xe99299, + 0xe9929a, + 0xe9929b, + 0xe9929c, + 0xe9929d, + 0xe9929e, + 0xe9929f, + 0xe992a0, + 0xe992a1, + 0xe992a2, + 0xe992a3, + 0xe992a4, + 0xe992a5, + 0xe992a6, + 0xe992a7, + 0xe992a8, + 0xe992a9, + 0xe992aa, + 0xe992ab, + 0xe992ac, + 0xe992ad, + 0xe992ae, + 0xe992af, + 0xe992b0, + 0xe992b1, + 0xe992b2, + 0xe992b3, + 0xe992b4, + 0xe992b5, + 0xe992b6, + 0xe992b7, + 0xe992b8, + 0xe992b9, + 0xe992ba, + 0xe992bb, + 0xe992bc, + 0xe992bd, + 0xe992be, + 0xe992bf, + 0xe99380, + 0xe99381, + 0xe99382, + 0xe99383, + 0xe99384, + 0xe99385, + 0xe99386, + 0xe99387, + 0xe99388, + 0xe99389, + 0xe9938a, + 0xe9938b, + 0xe9938c, + 0xe9938d, + 0xe9938e, + 0xe9938f, + 0xe99390, + 0xe99391, + 0xe99392, + 0xe99393, + 0xe99394, + 0xe99395, + 0xe99396, + 0xe99397, + 0xe99398, + 0xe99399, + 0xe9939a, + 0xe9939b, + 0xe9939c, + 0xe9939d, + 0xe9939e, + 0xe9939f, + 0xe993a0, + 0xe993a1, + 0xe993a2, + 0xe993a3, + 0xe993a4, + 0xe993a5, + 0xe993a6, + 0xe993a7, + 0xe993a8, + 0xe993a9, + 0xe993aa, + 0xe993ab, + 0xe993ac, + 0xe993ad, + 0xe993ae, + 0xe993af, + 0xe993b0, + 0xe993b1, + 0xe993b2, + 0xe993b3, + 0xe993b4, + 0xe993b5, + 0xe993b6, + 0xe993b7, + 0xe993b8, + 0xe993b9, + 0xe993ba, + 0xe993bb, + 0xe993bc, + 0xe993bd, + 0xe993be, + 0xe993bf, + 0xe99480, + 0xe99481, + 0xe99482, + 0xe99483, + 0xe99484, + 0xe99485, + 0xe99486, + 0xe99487, + 0xe99488, + 0xe99489, + 0xe9948a, + 0xe9948b, + 0xe9948c, + 0xe9948d, + 0xe9948e, + 0xe9948f, + 0xe99490, + 0xe99491, + 0xe99492, + 0xe99493, + 0xe99494, + 0xe99495, + 0xe99496, + 0xe99497, + 0xe99498, + 0xe99499, + 0xe9949a, + 0xe9949b, + 0xe9949c, + 0xe9949d, + 0xe9949e, + 0xe9949f, + 0xe994a0, + 0xe994a1, + 0xe994a2, + 0xe994a3, + 0xe994a4, + 0xe994a5, + 0xe994a6, + 0xe994a7, + 0xe994a8, + 0xe994a9, + 0xe994aa, + 0xe994ab, + 0xe994ac, + 0xe994ad, + 0xe994ae, + 0xe994af, + 0xe994b0, + 0xe994b1, + 0xe994b2, + 0xe994b3, + 0xe994b4, + 0xe994b5, + 0xe994b6, + 0xe994b7, + 0xe994b8, + 0xe994b9, + 0xe994ba, + 0xe994bb, + 0xe994bc, + 0xe994bd, + 0xe994be, + 0xe994bf, + 0xe99580, + 0xe99581, + 0xe99582, + 0xe99583, + 0xe99584, + 0xe99585, + 0xe99586, + 0xe99587, + 0xe99588, + 0xe99589, + 0xe9958a, + 0xe9958b, + 0xe9958c, + 0xe9958d, + 0xe9958e, + 0xe9958f, + 0xe99590, + 0xe99591, + 0xe99592, + 0xe99593, + 0xe99594, + 0xe99595, + 0xe99596, + 0xe99597, + 0xe99598, + 0xe99599, + 0xe9959a, + 0xe9959b, + 0xe9959c, + 0xe9959d, + 0xe9959e, + 0xe9959f, + 0xe995a0, + 0xe995a1, + 0xe995a2, + 0xe995a3, + 0xe995a4, + 0xe995a5, + 0xe995a6, + 0xe995a7, + 0xe995a8, + 0xe995a9, + 0xe995aa, + 0xe995ab, + 0xe995ac, + 0xe995ad, + 0xe995ae, + 0xe995af, + 0xe995b0, + 0xe995b1, + 0xe995b2, + 0xe995b3, + 0xe995b4, + 0xe995b5, + 0xe995b6, + 0xe995b7, + 0xe995b8, + 0xe995b9, + 0xe995ba, + 0xe995bb, + 0xe995bc, + 0xe995bd, + 0xe995be, + 0xe995bf, + 0xe99680, + 0xe99681, + 0xe99682, + 0xe99683, + 0xe99684, + 0xe99685, + 0xe99686, + 0xe99687, + 0xe99688, + 0xe99689, + 0xe9968a, + 0xe9968b, + 0xe9968c, + 0xe9968d, + 0xe9968e, + 0xe9968f, + 0xe99690, + 0xe99691, + 0xe99692, + 0xe99693, + 0xe99694, + 0xe99695, + 0xe99696, + 0xe99697, + 0xe99698, + 0xe99699, + 0xe9969a, + 0xe9969b, + 0xe9969c, + 0xe9969d, + 0xe9969e, + 0xe9969f, + 0xe996a0, + 0xe996a1, + 0xe996a2, + 0xe996a3, + 0xe996a4, + 0xe996a5, + 0xe996a6, + 0xe996a7, + 0xe996a8, + 0xe996a9, + 0xe996aa, + 0xe996ab, + 0xe996ac, + 0xe996ad, + 0xe996ae, + 0xe996af, + 0xe996b0, + 0xe996b1, + 0xe996b2, + 0xe996b3, + 0xe996b4, + 0xe996b5, + 0xe996b6, + 0xe996b7, + 0xe996b8, + 0xe996b9, + 0xe996ba, + 0xe996bb, + 0xe996bc, + 0xe996bd, + 0xe996be, + 0xe996bf, + 0xe99780, + 0xe99781, + 0xe99782, + 0xe99783, + 0xe99784, + 0xe99785, + 0xe99786, + 0xe99787, + 0xe99788, + 0xe99789, + 0xe9978a, + 0xe9978b, + 0xe9978c, + 0xe9978d, + 0xe9978e, + 0xe9978f, + 0xe99790, + 0xe99791, + 0xe99792, + 0xe99793, + 0xe99794, + 0xe99795, + 0xe99796, + 0xe99797, + 0xe99798, + 0xe99799, + 0xe9979a, + 0xe9979b, + 0xe9979c, + 0xe9979d, + 0xe9979e, + 0xe9979f, + 0xe997a0, + 0xe997a1, + 0xe997a2, + 0xe997a3, + 0xe997a4, + 0xe997a5, + 0xe997a6, + 0xe997a7, + 0xe997a8, + 0xe997a9, + 0xe997aa, + 0xe997ab, + 0xe997ac, + 0xe997ad, + 0xe997ae, + 0xe997af, + 0xe997b0, + 0xe997b1, + 0xe997b2, + 0xe997b3, + 0xe997b4, + 0xe997b5, + 0xe997b6, + 0xe997b7, + 0xe997b8, + 0xe997b9, + 0xe997ba, + 0xe997bb, + 0xe997bc, + 0xe997bd, + 0xe997be, + 0xe997bf, + 0xe99880, + 0xe99881, + 0xe99882, + 0xe99883, + 0xe99884, + 0xe99885, + 0xe99886, + 0xe99887, + 0xe99888, + 0xe99889, + 0xe9988a, + 0xe9988b, + 0xe9988c, + 0xe9988d, + 0xe9988e, + 0xe9988f, + 0xe99890, + 0xe99891, + 0xe99892, + 0xe99893, + 0xe99894, + 0xe99895, + 0xe99896, + 0xe99897, + 0xe99898, + 0xe99899, + 0xe9989a, + 0xe9989b, + 0xe9989c, + 0xe9989d, + 0xe9989e, + 0xe9989f, + 0xe998a0, + 0xe998a1, + 0xe998a2, + 0xe998a3, + 0xe998a4, + 0xe998a5, + 0xe998a6, + 0xe998a7, + 0xe998a8, + 0xe998a9, + 0xe998aa, + 0xe998ab, + 0xe998ac, + 0xe998ad, + 0xe998ae, + 0xe998af, + 0xe998b0, + 0xe998b1, + 0xe998b2, + 0xe998b3, + 0xe998b4, + 0xe998b5, + 0xe998b6, + 0xe998b7, + 0xe998b8, + 0xe998b9, + 0xe998ba, + 0xe998bb, + 0xe998bc, + 0xe998bd, + 0xe998be, + 0xe998bf, + 0xe99980, + 0xe99981, + 0xe99982, + 0xe99983, + 0xe99984, + 0xe99985, + 0xe99986, + 0xe99987, + 0xe99988, + 0xe99989, + 0xe9998a, + 0xe9998b, + 0xe9998c, + 0xe9998d, + 0xe9998e, + 0xe9998f, + 0xe99990, + 0xe99991, + 0xe99992, + 0xe99993, + 0xe99994, + 0xe99995, + 0xe99996, + 0xe99997, + 0xe99998, + 0xe99999, + 0xe9999a, + 0xe9999b, + 0xe9999c, + 0xe9999d, + 0xe9999e, + 0xe9999f, + 0xe999a0, + 0xe999a1, + 0xe999a2, + 0xe999a3, + 0xe999a4, + 0xe999a5, + 0xe999a6, + 0xe999a7, + 0xe999a8, + 0xe999a9, + 0xe999aa, + 0xe999ab, + 0xe999ac, + 0xe999ad, + 0xe999ae, + 0xe999af, + 0xe999b0, + 0xe999b1, + 0xe999b2, + 0xe999b3, + 0xe999b4, + 0xe999b5, + 0xe999b6, + 0xe999b7, + 0xe999b8, + 0xe999b9, + 0xe999ba, + 0xe999bb, + 0xe999bc, + 0xe999bd, + 0xe999be, + 0xe999bf, + 0xe99a80, + 0xe99a81, + 0xe99a82, + 0xe99a83, + 0xe99a84, + 0xe99a85, + 0xe99a86, + 0xe99a87, + 0xe99a88, + 0xe99a89, + 0xe99a8a, + 0xe99a8b, + 0xe99a8c, + 0xe99a8d, + 0xe99a8e, + 0xe99a8f, + 0xe99a90, + 0xe99a91, + 0xe99a92, + 0xe99a93, + 0xe99a94, + 0xe99a95, + 0xe99a96, + 0xe99a97, + 0xe99a98, + 0xe99a99, + 0xe99a9a, + 0xe99a9b, + 0xe99a9c, + 0xe99a9d, + 0xe99a9e, + 0xe99a9f, + 0xe99aa0, + 0xe99aa1, + 0xe99aa2, + 0xe99aa3, + 0xe99aa4, + 0xe99aa5, + 0xe99aa6, + 0xe99aa7, + 0xe99aa8, + 0xe99aa9, + 0xe99aaa, + 0xe99aab, + 0xe99aac, + 0xe99aad, + 0xe99aae, + 0xe99aaf, + 0xe99ab0, + 0xe99ab1, + 0xe99ab2, + 0xe99ab3, + 0xe99ab4, + 0xe99ab5, + 0xe99ab6, + 0xe99ab7, + 0xe99ab8, + 0xe99ab9, + 0xe99aba, + 0xe99abb, + 0xe99abc, + 0xe99abd, + 0xe99abe, + 0xe99abf, + 0xe99b80, + 0xe99b81, + 0xe99b82, + 0xe99b83, + 0xe99b84, + 0xe99b85, + 0xe99b86, + 0xe99b87, + 0xe99b88, + 0xe99b89, + 0xe99b8a, + 0xe99b8b, + 0xe99b8c, + 0xe99b8d, + 0xe99b8e, + 0xe99b8f, + 0xe99b90, + 0xe99b91, + 0xe99b92, + 0xe99b93, + 0xe99b94, + 0xe99b95, + 0xe99b96, + 0xe99b97, + 0xe99b98, + 0xe99b99, + 0xe99b9a, + 0xe99b9b, + 0xe99b9c, + 0xe99b9d, + 0xe99b9e, + 0xe99b9f, + 0xe99ba0, + 0xe99ba1, + 0xe99ba2, + 0xe99ba3, + 0xe99ba4, + 0xe99ba5, + 0xe99ba6, + 0xe99ba7, + 0xe99ba8, + 0xe99ba9, + 0xe99baa, + 0xe99bab, + 0xe99bac, + 0xe99bad, + 0xe99bae, + 0xe99baf, + 0xe99bb0, + 0xe99bb1, + 0xe99bb2, + 0xe99bb3, + 0xe99bb4, + 0xe99bb5, + 0xe99bb6, + 0xe99bb7, + 0xe99bb8, + 0xe99bb9, + 0xe99bba, + 0xe99bbb, + 0xe99bbc, + 0xe99bbd, + 0xe99bbe, + 0xe99bbf, + 0xe99c80, + 0xe99c81, + 0xe99c82, + 0xe99c83, + 0xe99c84, + 0xe99c85, + 0xe99c86, + 0xe99c87, + 0xe99c88, + 0xe99c89, + 0xe99c8a, + 0xe99c8b, + 0xe99c8c, + 0xe99c8d, + 0xe99c8e, + 0xe99c8f, + 0xe99c90, + 0xe99c91, + 0xe99c92, + 0xe99c93, + 0xe99c94, + 0xe99c95, + 0xe99c96, + 0xe99c97, + 0xe99c98, + 0xe99c99, + 0xe99c9a, + 0xe99c9b, + 0xe99c9c, + 0xe99c9d, + 0xe99c9e, + 0xe99c9f, + 0xe99ca0, + 0xe99ca1, + 0xe99ca2, + 0xe99ca3, + 0xe99ca4, + 0xe99ca5, + 0xe99ca6, + 0xe99ca7, + 0xe99ca8, + 0xe99ca9, + 0xe99caa, + 0xe99cab, + 0xe99cac, + 0xe99cad, + 0xe99cae, + 0xe99caf, + 0xe99cb0, + 0xe99cb1, + 0xe99cb2, + 0xe99cb3, + 0xe99cb4, + 0xe99cb5, + 0xe99cb6, + 0xe99cb7, + 0xe99cb8, + 0xe99cb9, + 0xe99cba, + 0xe99cbb, + 0xe99cbc, + 0xe99cbd, + 0xe99cbe, + 0xe99cbf, + 0xe99d80, + 0xe99d81, + 0xe99d82, + 0xe99d83, + 0xe99d84, + 0xe99d85, + 0xe99d86, + 0xe99d87, + 0xe99d88, + 0xe99d89, + 0xe99d8a, + 0xe99d8b, + 0xe99d8c, + 0xe99d8d, + 0xe99d8e, + 0xe99d8f, + 0xe99d90, + 0xe99d91, + 0xe99d92, + 0xe99d93, + 0xe99d94, + 0xe99d95, + 0xe99d96, + 0xe99d97, + 0xe99d98, + 0xe99d99, + 0xe99d9a, + 0xe99d9b, + 0xe99d9c, + 0xe99d9d, + 0xe99d9e, + 0xe99d9f, + 0xe99da0, + 0xe99da1, + 0xe99da2, + 0xe99da3, + 0xe99da4, + 0xe99da5, + 0xe99da6, + 0xe99da7, + 0xe99da8, + 0xe99da9, + 0xe99daa, + 0xe99dab, + 0xe99dac, + 0xe99dad, + 0xe99dae, + 0xe99daf, + 0xe99db0, + 0xe99db1, + 0xe99db2, + 0xe99db3, + 0xe99db4, + 0xe99db5, + 0xe99db6, + 0xe99db7, + 0xe99db8, + 0xe99db9, + 0xe99dba, + 0xe99dbb, + 0xe99dbc, + 0xe99dbd, + 0xe99dbe, + 0xe99dbf, + 0xe99e80, + 0xe99e81, + 0xe99e82, + 0xe99e83, + 0xe99e84, + 0xe99e85, + 0xe99e86, + 0xe99e87, + 0xe99e88, + 0xe99e89, + 0xe99e8a, + 0xe99e8b, + 0xe99e8c, + 0xe99e8d, + 0xe99e8e, + 0xe99e8f, + 0xe99e90, + 0xe99e91, + 0xe99e92, + 0xe99e93, + 0xe99e94, + 0xe99e95, + 0xe99e96, + 0xe99e97, + 0xe99e98, + 0xe99e99, + 0xe99e9a, + 0xe99e9b, + 0xe99e9c, + 0xe99e9d, + 0xe99e9e, + 0xe99e9f, + 0xe99ea0, + 0xe99ea1, + 0xe99ea2, + 0xe99ea3, + 0xe99ea4, + 0xe99ea5, + 0xe99ea6, + 0xe99ea7, + 0xe99ea8, + 0xe99ea9, + 0xe99eaa, + 0xe99eab, + 0xe99eac, + 0xe99ead, + 0xe99eae, + 0xe99eaf, + 0xe99eb0, + 0xe99eb1, + 0xe99eb2, + 0xe99eb3, + 0xe99eb4, + 0xe99eb5, + 0xe99eb6, + 0xe99eb7, + 0xe99eb8, + 0xe99eb9, + 0xe99eba, + 0xe99ebb, + 0xe99ebc, + 0xe99ebd, + 0xe99ebe, + 0xe99ebf, + 0xe99f80, + 0xe99f81, + 0xe99f82, + 0xe99f83, + 0xe99f84, + 0xe99f85, + 0xe99f86, + 0xe99f87, + 0xe99f88, + 0xe99f89, + 0xe99f8a, + 0xe99f8b, + 0xe99f8c, + 0xe99f8d, + 0xe99f8e, + 0xe99f8f, + 0xe99f90, + 0xe99f91, + 0xe99f92, + 0xe99f93, + 0xe99f94, + 0xe99f95, + 0xe99f96, + 0xe99f97, + 0xe99f98, + 0xe99f99, + 0xe99f9a, + 0xe99f9b, + 0xe99f9c, + 0xe99f9d, + 0xe99f9e, + 0xe99f9f, + 0xe99fa0, + 0xe99fa1, + 0xe99fa2, + 0xe99fa3, + 0xe99fa4, + 0xe99fa5, + 0xe99fa6, + 0xe99fa7, + 0xe99fa8, + 0xe99fa9, + 0xe99faa, + 0xe99fab, + 0xe99fac, + 0xe99fad, + 0xe99fae, + 0xe99faf, + 0xe99fb0, + 0xe99fb1, + 0xe99fb2, + 0xe99fb3, + 0xe99fb4, + 0xe99fb5, + 0xe99fb6, + 0xe99fb7, + 0xe99fb8, + 0xe99fb9, + 0xe99fba, + 0xe99fbb, + 0xe99fbc, + 0xe99fbd, + 0xe99fbe, + 0xe99fbf, + 0xe9a080, + 0xe9a081, + 0xe9a082, + 0xe9a083, + 0xe9a084, + 0xe9a085, + 0xe9a086, + 0xe9a087, + 0xe9a088, + 0xe9a089, + 0xe9a08a, + 0xe9a08b, + 0xe9a08c, + 0xe9a08d, + 0xe9a08e, + 0xe9a08f, + 0xe9a090, + 0xe9a091, + 0xe9a092, + 0xe9a093, + 0xe9a094, + 0xe9a095, + 0xe9a096, + 0xe9a097, + 0xe9a098, + 0xe9a099, + 0xe9a09a, + 0xe9a09b, + 0xe9a09c, + 0xe9a09d, + 0xe9a09e, + 0xe9a09f, + 0xe9a0a0, + 0xe9a0a1, + 0xe9a0a2, + 0xe9a0a3, + 0xe9a0a4, + 0xe9a0a5, + 0xe9a0a6, + 0xe9a0a7, + 0xe9a0a8, + 0xe9a0a9, + 0xe9a0aa, + 0xe9a0ab, + 0xe9a0ac, + 0xe9a0ad, + 0xe9a0ae, + 0xe9a0af, + 0xe9a0b0, + 0xe9a0b1, + 0xe9a0b2, + 0xe9a0b3, + 0xe9a0b4, + 0xe9a0b5, + 0xe9a0b6, + 0xe9a0b7, + 0xe9a0b8, + 0xe9a0b9, + 0xe9a0ba, + 0xe9a0bb, + 0xe9a0bc, + 0xe9a0bd, + 0xe9a0be, + 0xe9a0bf, + 0xe9a180, + 0xe9a181, + 0xe9a182, + 0xe9a183, + 0xe9a184, + 0xe9a185, + 0xe9a186, + 0xe9a187, + 0xe9a188, + 0xe9a189, + 0xe9a18a, + 0xe9a18b, + 0xe9a18c, + 0xe9a18d, + 0xe9a18e, + 0xe9a18f, + 0xe9a190, + 0xe9a191, + 0xe9a192, + 0xe9a193, + 0xe9a194, + 0xe9a195, + 0xe9a196, + 0xe9a197, + 0xe9a198, + 0xe9a199, + 0xe9a19a, + 0xe9a19b, + 0xe9a19c, + 0xe9a19d, + 0xe9a19e, + 0xe9a19f, + 0xe9a1a0, + 0xe9a1a1, + 0xe9a1a2, + 0xe9a1a3, + 0xe9a1a4, + 0xe9a1a5, + 0xe9a1a6, + 0xe9a1a7, + 0xe9a1a8, + 0xe9a1a9, + 0xe9a1aa, + 0xe9a1ab, + 0xe9a1ac, + 0xe9a1ad, + 0xe9a1ae, + 0xe9a1af, + 0xe9a1b0, + 0xe9a1b1, + 0xe9a1b2, + 0xe9a1b3, + 0xe9a1b4, + 0xe9a1b5, + 0xe9a1b6, + 0xe9a1b7, + 0xe9a1b8, + 0xe9a1b9, + 0xe9a1ba, + 0xe9a1bb, + 0xe9a1bc, + 0xe9a1bd, + 0xe9a1be, + 0xe9a1bf, + 0xe9a280, + 0xe9a281, + 0xe9a282, + 0xe9a283, + 0xe9a284, + 0xe9a285, + 0xe9a286, + 0xe9a287, + 0xe9a288, + 0xe9a289, + 0xe9a28a, + 0xe9a28b, + 0xe9a28c, + 0xe9a28d, + 0xe9a28e, + 0xe9a28f, + 0xe9a290, + 0xe9a291, + 0xe9a292, + 0xe9a293, + 0xe9a294, + 0xe9a295, + 0xe9a296, + 0xe9a297, + 0xe9a298, + 0xe9a299, + 0xe9a29a, + 0xe9a29b, + 0xe9a29c, + 0xe9a29d, + 0xe9a29e, + 0xe9a29f, + 0xe9a2a0, + 0xe9a2a1, + 0xe9a2a2, + 0xe9a2a3, + 0xe9a2a4, + 0xe9a2a5, + 0xe9a2a6, + 0xe9a2a7, + 0xe9a2a8, + 0xe9a2a9, + 0xe9a2aa, + 0xe9a2ab, + 0xe9a2ac, + 0xe9a2ad, + 0xe9a2ae, + 0xe9a2af, + 0xe9a2b0, + 0xe9a2b1, + 0xe9a2b2, + 0xe9a2b3, + 0xe9a2b4, + 0xe9a2b5, + 0xe9a2b6, + 0xe9a2b7, + 0xe9a2b8, + 0xe9a2b9, + 0xe9a2ba, + 0xe9a2bb, + 0xe9a2bc, + 0xe9a2bd, + 0xe9a2be, + 0xe9a2bf, + 0xe9a380, + 0xe9a381, + 0xe9a382, + 0xe9a383, + 0xe9a384, + 0xe9a385, + 0xe9a386, + 0xe9a387, + 0xe9a388, + 0xe9a389, + 0xe9a38a, + 0xe9a38b, + 0xe9a38c, + 0xe9a38d, + 0xe9a38e, + 0xe9a38f, + 0xe9a390, + 0xe9a391, + 0xe9a392, + 0xe9a393, + 0xe9a394, + 0xe9a395, + 0xe9a396, + 0xe9a397, + 0xe9a398, + 0xe9a399, + 0xe9a39a, + 0xe9a39b, + 0xe9a39c, + 0xe9a39d, + 0xe9a39e, + 0xe9a39f, + 0xe9a3a0, + 0xe9a3a1, + 0xe9a3a2, + 0xe9a3a3, + 0xe9a3a4, + 0xe9a3a5, + 0xe9a3a6, + 0xe9a3a7, + 0xe9a3a8, + 0xe9a3a9, + 0xe9a3aa, + 0xe9a3ab, + 0xe9a3ac, + 0xe9a3ad, + 0xe9a3ae, + 0xe9a3af, + 0xe9a3b0, + 0xe9a3b1, + 0xe9a3b2, + 0xe9a3b3, + 0xe9a3b4, + 0xe9a3b5, + 0xe9a3b6, + 0xe9a3b7, + 0xe9a3b8, + 0xe9a3b9, + 0xe9a3ba, + 0xe9a3bb, + 0xe9a3bc, + 0xe9a3bd, + 0xe9a3be, + 0xe9a3bf, + 0xe9a480, + 0xe9a481, + 0xe9a482, + 0xe9a483, + 0xe9a484, + 0xe9a485, + 0xe9a486, + 0xe9a487, + 0xe9a488, + 0xe9a489, + 0xe9a48a, + 0xe9a48b, + 0xe9a48c, + 0xe9a48d, + 0xe9a48e, + 0xe9a48f, + 0xe9a490, + 0xe9a491, + 0xe9a492, + 0xe9a493, + 0xe9a494, + 0xe9a495, + 0xe9a496, + 0xe9a497, + 0xe9a498, + 0xe9a499, + 0xe9a49a, + 0xe9a49b, + 0xe9a49c, + 0xe9a49d, + 0xe9a49e, + 0xe9a49f, + 0xe9a4a0, + 0xe9a4a1, + 0xe9a4a2, + 0xe9a4a3, + 0xe9a4a4, + 0xe9a4a5, + 0xe9a4a6, + 0xe9a4a7, + 0xe9a4a8, + 0xe9a4a9, + 0xe9a4aa, + 0xe9a4ab, + 0xe9a4ac, + 0xe9a4ad, + 0xe9a4ae, + 0xe9a4af, + 0xe9a4b0, + 0xe9a4b1, + 0xe9a4b2, + 0xe9a4b3, + 0xe9a4b4, + 0xe9a4b5, + 0xe9a4b6, + 0xe9a4b7, + 0xe9a4b8, + 0xe9a4b9, + 0xe9a4ba, + 0xe9a4bb, + 0xe9a4bc, + 0xe9a4bd, + 0xe9a4be, + 0xe9a4bf, + 0xe9a580, + 0xe9a581, + 0xe9a582, + 0xe9a583, + 0xe9a584, + 0xe9a585, + 0xe9a586, + 0xe9a587, + 0xe9a588, + 0xe9a589, + 0xe9a58a, + 0xe9a58b, + 0xe9a58c, + 0xe9a58d, + 0xe9a58e, + 0xe9a58f, + 0xe9a590, + 0xe9a591, + 0xe9a592, + 0xe9a593, + 0xe9a594, + 0xe9a595, + 0xe9a596, + 0xe9a597, + 0xe9a598, + 0xe9a599, + 0xe9a59a, + 0xe9a59b, + 0xe9a59c, + 0xe9a59d, + 0xe9a59e, + 0xe9a59f, + 0xe9a5a0, + 0xe9a5a1, + 0xe9a5a2, + 0xe9a5a3, + 0xe9a5a4, + 0xe9a5a5, + 0xe9a5a6, + 0xe9a5a7, + 0xe9a5a8, + 0xe9a5a9, + 0xe9a5aa, + 0xe9a5ab, + 0xe9a5ac, + 0xe9a5ad, + 0xe9a5ae, + 0xe9a5af, + 0xe9a5b0, + 0xe9a5b1, + 0xe9a5b2, + 0xe9a5b3, + 0xe9a5b4, + 0xe9a5b5, + 0xe9a5b6, + 0xe9a5b7, + 0xe9a5b8, + 0xe9a5b9, + 0xe9a5ba, + 0xe9a5bb, + 0xe9a5bc, + 0xe9a5bd, + 0xe9a5be, + 0xe9a5bf, + 0xe9a680, + 0xe9a681, + 0xe9a682, + 0xe9a683, + 0xe9a684, + 0xe9a685, + 0xe9a686, + 0xe9a687, + 0xe9a688, + 0xe9a689, + 0xe9a68a, + 0xe9a68b, + 0xe9a68c, + 0xe9a68d, + 0xe9a68e, + 0xe9a68f, + 0xe9a690, + 0xe9a691, + 0xe9a692, + 0xe9a693, + 0xe9a694, + 0xe9a695, + 0xe9a696, + 0xe9a697, + 0xe9a698, + 0xe9a699, + 0xe9a69a, + 0xe9a69b, + 0xe9a69c, + 0xe9a69d, + 0xe9a69e, + 0xe9a69f, + 0xe9a6a0, + 0xe9a6a1, + 0xe9a6a2, + 0xe9a6a3, + 0xe9a6a4, + 0xe9a6a5, + 0xe9a6a6, + 0xe9a6a7, + 0xe9a6a8, + 0xe9a6a9, + 0xe9a6aa, + 0xe9a6ab, + 0xe9a6ac, + 0xe9a6ad, + 0xe9a6ae, + 0xe9a6af, + 0xe9a6b0, + 0xe9a6b1, + 0xe9a6b2, + 0xe9a6b3, + 0xe9a6b4, + 0xe9a6b5, + 0xe9a6b6, + 0xe9a6b7, + 0xe9a6b8, + 0xe9a6b9, + 0xe9a6ba, + 0xe9a6bb, + 0xe9a6bc, + 0xe9a6bd, + 0xe9a6be, + 0xe9a6bf, + 0xe9a780, + 0xe9a781, + 0xe9a782, + 0xe9a783, + 0xe9a784, + 0xe9a785, + 0xe9a786, + 0xe9a787, + 0xe9a788, + 0xe9a789, + 0xe9a78a, + 0xe9a78b, + 0xe9a78c, + 0xe9a78d, + 0xe9a78e, + 0xe9a78f, + 0xe9a790, + 0xe9a791, + 0xe9a792, + 0xe9a793, + 0xe9a794, + 0xe9a795, + 0xe9a796, + 0xe9a797, + 0xe9a798, + 0xe9a799, + 0xe9a79a, + 0xe9a79b, + 0xe9a79c, + 0xe9a79d, + 0xe9a79e, + 0xe9a79f, + 0xe9a7a0, + 0xe9a7a1, + 0xe9a7a2, + 0xe9a7a3, + 0xe9a7a4, + 0xe9a7a5, + 0xe9a7a6, + 0xe9a7a7, + 0xe9a7a8, + 0xe9a7a9, + 0xe9a7aa, + 0xe9a7ab, + 0xe9a7ac, + 0xe9a7ad, + 0xe9a7ae, + 0xe9a7af, + 0xe9a7b0, + 0xe9a7b1, + 0xe9a7b2, + 0xe9a7b3, + 0xe9a7b4, + 0xe9a7b5, + 0xe9a7b6, + 0xe9a7b7, + 0xe9a7b8, + 0xe9a7b9, + 0xe9a7ba, + 0xe9a7bb, + 0xe9a7bc, + 0xe9a7bd, + 0xe9a7be, + 0xe9a7bf, + 0xe9a880, + 0xe9a881, + 0xe9a882, + 0xe9a883, + 0xe9a884, + 0xe9a885, + 0xe9a886, + 0xe9a887, + 0xe9a888, + 0xe9a889, + 0xe9a88a, + 0xe9a88b, + 0xe9a88c, + 0xe9a88d, + 0xe9a88e, + 0xe9a88f, + 0xe9a890, + 0xe9a891, + 0xe9a892, + 0xe9a893, + 0xe9a894, + 0xe9a895, + 0xe9a896, + 0xe9a897, + 0xe9a898, + 0xe9a899, + 0xe9a89a, + 0xe9a89b, + 0xe9a89c, + 0xe9a89d, + 0xe9a89e, + 0xe9a89f, + 0xe9a8a0, + 0xe9a8a1, + 0xe9a8a2, + 0xe9a8a3, + 0xe9a8a4, + 0xe9a8a5, + 0xe9a8a6, + 0xe9a8a7, + 0xe9a8a8, + 0xe9a8a9, + 0xe9a8aa, + 0xe9a8ab, + 0xe9a8ac, + 0xe9a8ad, + 0xe9a8ae, + 0xe9a8af, + 0xe9a8b0, + 0xe9a8b1, + 0xe9a8b2, + 0xe9a8b3, + 0xe9a8b4, + 0xe9a8b5, + 0xe9a8b6, + 0xe9a8b7, + 0xe9a8b8, + 0xe9a8b9, + 0xe9a8ba, + 0xe9a8bb, + 0xe9a8bc, + 0xe9a8bd, + 0xe9a8be, + 0xe9a8bf, + 0xe9a980, + 0xe9a981, + 0xe9a982, + 0xe9a983, + 0xe9a984, + 0xe9a985, + 0xe9a986, + 0xe9a987, + 0xe9a988, + 0xe9a989, + 0xe9a98a, + 0xe9a98b, + 0xe9a98c, + 0xe9a98d, + 0xe9a98e, + 0xe9a98f, + 0xe9a990, + 0xe9a991, + 0xe9a992, + 0xe9a993, + 0xe9a994, + 0xe9a995, + 0xe9a996, + 0xe9a997, + 0xe9a998, + 0xe9a999, + 0xe9a99a, + 0xe9a99b, + 0xe9a99c, + 0xe9a99d, + 0xe9a99e, + 0xe9a99f, + 0xe9a9a0, + 0xe9a9a1, + 0xe9a9a2, + 0xe9a9a3, + 0xe9a9a4, + 0xe9a9a5, + 0xe9a9a6, + 0xe9a9a7, + 0xe9a9a8, + 0xe9a9a9, + 0xe9a9aa, + 0xe9a9ab, + 0xe9a9ac, + 0xe9a9ad, + 0xe9a9ae, + 0xe9a9af, + 0xe9a9b0, + 0xe9a9b1, + 0xe9a9b2, + 0xe9a9b3, + 0xe9a9b4, + 0xe9a9b5, + 0xe9a9b6, + 0xe9a9b7, + 0xe9a9b8, + 0xe9a9b9, + 0xe9a9ba, + 0xe9a9bb, + 0xe9a9bc, + 0xe9a9bd, + 0xe9a9be, + 0xe9a9bf, + 0xe9aa80, + 0xe9aa81, + 0xe9aa82, + 0xe9aa83, + 0xe9aa84, + 0xe9aa85, + 0xe9aa86, + 0xe9aa87, + 0xe9aa88, + 0xe9aa89, + 0xe9aa8a, + 0xe9aa8b, + 0xe9aa8c, + 0xe9aa8d, + 0xe9aa8e, + 0xe9aa8f, + 0xe9aa90, + 0xe9aa91, + 0xe9aa92, + 0xe9aa93, + 0xe9aa94, + 0xe9aa95, + 0xe9aa96, + 0xe9aa97, + 0xe9aa98, + 0xe9aa99, + 0xe9aa9a, + 0xe9aa9b, + 0xe9aa9c, + 0xe9aa9d, + 0xe9aa9e, + 0xe9aa9f, + 0xe9aaa0, + 0xe9aaa1, + 0xe9aaa2, + 0xe9aaa3, + 0xe9aaa4, + 0xe9aaa5, + 0xe9aaa6, + 0xe9aaa7, + 0xe9aaa8, + 0xe9aaa9, + 0xe9aaaa, + 0xe9aaab, + 0xe9aaac, + 0xe9aaad, + 0xe9aaae, + 0xe9aaaf, + 0xe9aab0, + 0xe9aab1, + 0xe9aab2, + 0xe9aab3, + 0xe9aab4, + 0xe9aab5, + 0xe9aab6, + 0xe9aab7, + 0xe9aab8, + 0xe9aab9, + 0xe9aaba, + 0xe9aabb, + 0xe9aabc, + 0xe9aabd, + 0xe9aabe, + 0xe9aabf, + 0xe9ab80, + 0xe9ab81, + 0xe9ab82, + 0xe9ab83, + 0xe9ab84, + 0xe9ab85, + 0xe9ab86, + 0xe9ab87, + 0xe9ab88, + 0xe9ab89, + 0xe9ab8a, + 0xe9ab8b, + 0xe9ab8c, + 0xe9ab8d, + 0xe9ab8e, + 0xe9ab8f, + 0xe9ab90, + 0xe9ab91, + 0xe9ab92, + 0xe9ab93, + 0xe9ab94, + 0xe9ab95, + 0xe9ab96, + 0xe9ab97, + 0xe9ab98, + 0xe9ab99, + 0xe9ab9a, + 0xe9ab9b, + 0xe9ab9c, + 0xe9ab9d, + 0xe9ab9e, + 0xe9ab9f, + 0xe9aba0, + 0xe9aba1, + 0xe9aba2, + 0xe9aba3, + 0xe9aba4, + 0xe9aba5, + 0xe9aba6, + 0xe9aba7, + 0xe9aba8, + 0xe9aba9, + 0xe9abaa, + 0xe9abab, + 0xe9abac, + 0xe9abad, + 0xe9abae, + 0xe9abaf, + 0xe9abb0, + 0xe9abb1, + 0xe9abb2, + 0xe9abb3, + 0xe9abb4, + 0xe9abb5, + 0xe9abb6, + 0xe9abb7, + 0xe9abb8, + 0xe9abb9, + 0xe9abba, + 0xe9abbb, + 0xe9abbc, + 0xe9abbd, + 0xe9abbe, + 0xe9abbf, + 0xe9ac80, + 0xe9ac81, + 0xe9ac82, + 0xe9ac83, + 0xe9ac84, + 0xe9ac85, + 0xe9ac86, + 0xe9ac87, + 0xe9ac88, + 0xe9ac89, + 0xe9ac8a, + 0xe9ac8b, + 0xe9ac8c, + 0xe9ac8d, + 0xe9ac8e, + 0xe9ac8f, + 0xe9ac90, + 0xe9ac91, + 0xe9ac92, + 0xe9ac93, + 0xe9ac94, + 0xe9ac95, + 0xe9ac96, + 0xe9ac97, + 0xe9ac98, + 0xe9ac99, + 0xe9ac9a, + 0xe9ac9b, + 0xe9ac9c, + 0xe9ac9d, + 0xe9ac9e, + 0xe9ac9f, + 0xe9aca0, + 0xe9aca1, + 0xe9aca2, + 0xe9aca3, + 0xe9aca4, + 0xe9aca5, + 0xe9aca6, + 0xe9aca7, + 0xe9aca8, + 0xe9aca9, + 0xe9acaa, + 0xe9acab, + 0xe9acac, + 0xe9acad, + 0xe9acae, + 0xe9acaf, + 0xe9acb0, + 0xe9acb1, + 0xe9acb2, + 0xe9acb3, + 0xe9acb4, + 0xe9acb5, + 0xe9acb6, + 0xe9acb7, + 0xe9acb8, + 0xe9acb9, + 0xe9acba, + 0xe9acbb, + 0xe9acbc, + 0xe9acbd, + 0xe9acbe, + 0xe9acbf, + 0xe9ad80, + 0xe9ad81, + 0xe9ad82, + 0xe9ad83, + 0xe9ad84, + 0xe9ad85, + 0xe9ad86, + 0xe9ad87, + 0xe9ad88, + 0xe9ad89, + 0xe9ad8a, + 0xe9ad8b, + 0xe9ad8c, + 0xe9ad8d, + 0xe9ad8e, + 0xe9ad8f, + 0xe9ad90, + 0xe9ad91, + 0xe9ad92, + 0xe9ad93, + 0xe9ad94, + 0xe9ad95, + 0xe9ad96, + 0xe9ad97, + 0xe9ad98, + 0xe9ad99, + 0xe9ad9a, + 0xe9ad9b, + 0xe9ad9c, + 0xe9ad9d, + 0xe9ad9e, + 0xe9ad9f, + 0xe9ada0, + 0xe9ada1, + 0xe9ada2, + 0xe9ada3, + 0xe9ada4, + 0xe9ada5, + 0xe9ada6, + 0xe9ada7, + 0xe9ada8, + 0xe9ada9, + 0xe9adaa, + 0xe9adab, + 0xe9adac, + 0xe9adad, + 0xe9adae, + 0xe9adaf, + 0xe9adb0, + 0xe9adb1, + 0xe9adb2, + 0xe9adb3, + 0xe9adb4, + 0xe9adb5, + 0xe9adb6, + 0xe9adb7, + 0xe9adb8, + 0xe9adb9, + 0xe9adba, + 0xe9adbb, + 0xe9adbc, + 0xe9adbd, + 0xe9adbe, + 0xe9adbf, + 0xe9ae80, + 0xe9ae81, + 0xe9ae82, + 0xe9ae83, + 0xe9ae84, + 0xe9ae85, + 0xe9ae86, + 0xe9ae87, + 0xe9ae88, + 0xe9ae89, + 0xe9ae8a, + 0xe9ae8b, + 0xe9ae8c, + 0xe9ae8d, + 0xe9ae8e, + 0xe9ae8f, + 0xe9ae90, + 0xe9ae91, + 0xe9ae92, + 0xe9ae93, + 0xe9ae94, + 0xe9ae95, + 0xe9ae96, + 0xe9ae97, + 0xe9ae98, + 0xe9ae99, + 0xe9ae9a, + 0xe9ae9b, + 0xe9ae9c, + 0xe9ae9d, + 0xe9ae9e, + 0xe9ae9f, + 0xe9aea0, + 0xe9aea1, + 0xe9aea2, + 0xe9aea3, + 0xe9aea4, + 0xe9aea5, + 0xe9aea6, + 0xe9aea7, + 0xe9aea8, + 0xe9aea9, + 0xe9aeaa, + 0xe9aeab, + 0xe9aeac, + 0xe9aead, + 0xe9aeae, + 0xe9aeaf, + 0xe9aeb0, + 0xe9aeb1, + 0xe9aeb2, + 0xe9aeb3, + 0xe9aeb4, + 0xe9aeb5, + 0xe9aeb6, + 0xe9aeb7, + 0xe9aeb8, + 0xe9aeb9, + 0xe9aeba, + 0xe9aebb, + 0xe9aebc, + 0xe9aebd, + 0xe9aebe, + 0xe9aebf, + 0xe9af80, + 0xe9af81, + 0xe9af82, + 0xe9af83, + 0xe9af84, + 0xe9af85, + 0xe9af86, + 0xe9af87, + 0xe9af88, + 0xe9af89, + 0xe9af8a, + 0xe9af8b, + 0xe9af8c, + 0xe9af8d, + 0xe9af8e, + 0xe9af8f, + 0xe9af90, + 0xe9af91, + 0xe9af92, + 0xe9af93, + 0xe9af94, + 0xe9af95, + 0xe9af96, + 0xe9af97, + 0xe9af98, + 0xe9af99, + 0xe9af9a, + 0xe9af9b, + 0xe9af9c, + 0xe9af9d, + 0xe9af9e, + 0xe9af9f, + 0xe9afa0, + 0xe9afa1, + 0xe9afa2, + 0xe9afa3, + 0xe9afa4, + 0xe9afa5, + 0xe9afa6, + 0xe9afa7, + 0xe9afa8, + 0xe9afa9, + 0xe9afaa, + 0xe9afab, + 0xe9afac, + 0xe9afad, + 0xe9afae, + 0xe9afaf, + 0xe9afb0, + 0xe9afb1, + 0xe9afb2, + 0xe9afb3, + 0xe9afb4, + 0xe9afb5, + 0xe9afb6, + 0xe9afb7, + 0xe9afb8, + 0xe9afb9, + 0xe9afba, + 0xe9afbb, + 0xe9afbc, + 0xe9afbd, + 0xe9afbe, + 0xe9afbf, + 0xe9b080, + 0xe9b081, + 0xe9b082, + 0xe9b083, + 0xe9b084, + 0xe9b085, + 0xe9b086, + 0xe9b087, + 0xe9b088, + 0xe9b089, + 0xe9b08a, + 0xe9b08b, + 0xe9b08c, + 0xe9b08d, + 0xe9b08e, + 0xe9b08f, + 0xe9b090, + 0xe9b091, + 0xe9b092, + 0xe9b093, + 0xe9b094, + 0xe9b095, + 0xe9b096, + 0xe9b097, + 0xe9b098, + 0xe9b099, + 0xe9b09a, + 0xe9b09b, + 0xe9b09c, + 0xe9b09d, + 0xe9b09e, + 0xe9b09f, + 0xe9b0a0, + 0xe9b0a1, + 0xe9b0a2, + 0xe9b0a3, + 0xe9b0a4, + 0xe9b0a5, + 0xe9b0a6, + 0xe9b0a7, + 0xe9b0a8, + 0xe9b0a9, + 0xe9b0aa, + 0xe9b0ab, + 0xe9b0ac, + 0xe9b0ad, + 0xe9b0ae, + 0xe9b0af, + 0xe9b0b0, + 0xe9b0b1, + 0xe9b0b2, + 0xe9b0b3, + 0xe9b0b4, + 0xe9b0b5, + 0xe9b0b6, + 0xe9b0b7, + 0xe9b0b8, + 0xe9b0b9, + 0xe9b0ba, + 0xe9b0bb, + 0xe9b0bc, + 0xe9b0bd, + 0xe9b0be, + 0xe9b0bf, + 0xe9b180, + 0xe9b181, + 0xe9b182, + 0xe9b183, + 0xe9b184, + 0xe9b185, + 0xe9b186, + 0xe9b187, + 0xe9b188, + 0xe9b189, + 0xe9b18a, + 0xe9b18b, + 0xe9b18c, + 0xe9b18d, + 0xe9b18e, + 0xe9b18f, + 0xe9b190, + 0xe9b191, + 0xe9b192, + 0xe9b193, + 0xe9b194, + 0xe9b195, + 0xe9b196, + 0xe9b197, + 0xe9b198, + 0xe9b199, + 0xe9b19a, + 0xe9b19b, + 0xe9b19c, + 0xe9b19d, + 0xe9b19e, + 0xe9b19f, + 0xe9b1a0, + 0xe9b1a1, + 0xe9b1a2, + 0xe9b1a3, + 0xe9b1a4, + 0xe9b1a5, + 0xe9b1a6, + 0xe9b1a7, + 0xe9b1a8, + 0xe9b1a9, + 0xe9b1aa, + 0xe9b1ab, + 0xe9b1ac, + 0xe9b1ad, + 0xe9b1ae, + 0xe9b1af, + 0xe9b1b0, + 0xe9b1b1, + 0xe9b1b2, + 0xe9b1b3, + 0xe9b1b4, + 0xe9b1b5, + 0xe9b1b6, + 0xe9b1b7, + 0xe9b1b8, + 0xe9b1b9, + 0xe9b1ba, + 0xe9b1bb, + 0xe9b1bc, + 0xe9b1bd, + 0xe9b1be, + 0xe9b1bf, + 0xe9b280, + 0xe9b281, + 0xe9b282, + 0xe9b283, + 0xe9b284, + 0xe9b285, + 0xe9b286, + 0xe9b287, + 0xe9b288, + 0xe9b289, + 0xe9b28a, + 0xe9b28b, + 0xe9b28c, + 0xe9b28d, + 0xe9b28e, + 0xe9b28f, + 0xe9b290, + 0xe9b291, + 0xe9b292, + 0xe9b293, + 0xe9b294, + 0xe9b295, + 0xe9b296, + 0xe9b297, + 0xe9b298, + 0xe9b299, + 0xe9b29a, + 0xe9b29b, + 0xe9b29c, + 0xe9b29d, + 0xe9b29e, + 0xe9b29f, + 0xe9b2a0, + 0xe9b2a1, + 0xe9b2a2, + 0xe9b2a3, + 0xe9b2a4, + 0xe9b2a5, + 0xe9b2a6, + 0xe9b2a7, + 0xe9b2a8, + 0xe9b2a9, + 0xe9b2aa, + 0xe9b2ab, + 0xe9b2ac, + 0xe9b2ad, + 0xe9b2ae, + 0xe9b2af, + 0xe9b2b0, + 0xe9b2b1, + 0xe9b2b2, + 0xe9b2b3, + 0xe9b2b4, + 0xe9b2b5, + 0xe9b2b6, + 0xe9b2b7, + 0xe9b2b8, + 0xe9b2b9, + 0xe9b2ba, + 0xe9b2bb, + 0xe9b2bc, + 0xe9b2bd, + 0xe9b2be, + 0xe9b2bf, + 0xe9b380, + 0xe9b381, + 0xe9b382, + 0xe9b383, + 0xe9b384, + 0xe9b385, + 0xe9b386, + 0xe9b387, + 0xe9b388, + 0xe9b389, + 0xe9b38a, + 0xe9b38b, + 0xe9b38c, + 0xe9b38d, + 0xe9b38e, + 0xe9b38f, + 0xe9b390, + 0xe9b391, + 0xe9b392, + 0xe9b393, + 0xe9b394, + 0xe9b395, + 0xe9b396, + 0xe9b397, + 0xe9b398, + 0xe9b399, + 0xe9b39a, + 0xe9b39b, + 0xe9b39c, + 0xe9b39d, + 0xe9b39e, + 0xe9b39f, + 0xe9b3a0, + 0xe9b3a1, + 0xe9b3a2, + 0xe9b3a3, + 0xe9b3a4, + 0xe9b3a5, + 0xe9b3a6, + 0xe9b3a7, + 0xe9b3a8, + 0xe9b3a9, + 0xe9b3aa, + 0xe9b3ab, + 0xe9b3ac, + 0xe9b3ad, + 0xe9b3ae, + 0xe9b3af, + 0xe9b3b0, + 0xe9b3b1, + 0xe9b3b2, + 0xe9b3b3, + 0xe9b3b4, + 0xe9b3b5, + 0xe9b3b6, + 0xe9b3b7, + 0xe9b3b8, + 0xe9b3b9, + 0xe9b3ba, + 0xe9b3bb, + 0xe9b3bc, + 0xe9b3bd, + 0xe9b3be, + 0xe9b3bf, + 0xe9b480, + 0xe9b481, + 0xe9b482, + 0xe9b483, + 0xe9b484, + 0xe9b485, + 0xe9b486, + 0xe9b487, + 0xe9b488, + 0xe9b489, + 0xe9b48a, + 0xe9b48b, + 0xe9b48c, + 0xe9b48d, + 0xe9b48e, + 0xe9b48f, + 0xe9b490, + 0xe9b491, + 0xe9b492, + 0xe9b493, + 0xe9b494, + 0xe9b495, + 0xe9b496, + 0xe9b497, + 0xe9b498, + 0xe9b499, + 0xe9b49a, + 0xe9b49b, + 0xe9b49c, + 0xe9b49d, + 0xe9b49e, + 0xe9b49f, + 0xe9b4a0, + 0xe9b4a1, + 0xe9b4a2, + 0xe9b4a3, + 0xe9b4a4, + 0xe9b4a5, + 0xe9b4a6, + 0xe9b4a7, + 0xe9b4a8, + 0xe9b4a9, + 0xe9b4aa, + 0xe9b4ab, + 0xe9b4ac, + 0xe9b4ad, + 0xe9b4ae, + 0xe9b4af, + 0xe9b4b0, + 0xe9b4b1, + 0xe9b4b2, + 0xe9b4b3, + 0xe9b4b4, + 0xe9b4b5, + 0xe9b4b6, + 0xe9b4b7, + 0xe9b4b8, + 0xe9b4b9, + 0xe9b4ba, + 0xe9b4bb, + 0xe9b4bc, + 0xe9b4bd, + 0xe9b4be, + 0xe9b4bf, + 0xe9b580, + 0xe9b581, + 0xe9b582, + 0xe9b583, + 0xe9b584, + 0xe9b585, + 0xe9b586, + 0xe9b587, + 0xe9b588, + 0xe9b589, + 0xe9b58a, + 0xe9b58b, + 0xe9b58c, + 0xe9b58d, + 0xe9b58e, + 0xe9b58f, + 0xe9b590, + 0xe9b591, + 0xe9b592, + 0xe9b593, + 0xe9b594, + 0xe9b595, + 0xe9b596, + 0xe9b597, + 0xe9b598, + 0xe9b599, + 0xe9b59a, + 0xe9b59b, + 0xe9b59c, + 0xe9b59d, + 0xe9b59e, + 0xe9b59f, + 0xe9b5a0, + 0xe9b5a1, + 0xe9b5a2, + 0xe9b5a3, + 0xe9b5a4, + 0xe9b5a5, + 0xe9b5a6, + 0xe9b5a7, + 0xe9b5a8, + 0xe9b5a9, + 0xe9b5aa, + 0xe9b5ab, + 0xe9b5ac, + 0xe9b5ad, + 0xe9b5ae, + 0xe9b5af, + 0xe9b5b0, + 0xe9b5b1, + 0xe9b5b2, + 0xe9b5b3, + 0xe9b5b4, + 0xe9b5b5, + 0xe9b5b6, + 0xe9b5b7, + 0xe9b5b8, + 0xe9b5b9, + 0xe9b5ba, + 0xe9b5bb, + 0xe9b5bc, + 0xe9b5bd, + 0xe9b5be, + 0xe9b5bf, + 0xe9b680, + 0xe9b681, + 0xe9b682, + 0xe9b683, + 0xe9b684, + 0xe9b685, + 0xe9b686, + 0xe9b687, + 0xe9b688, + 0xe9b689, + 0xe9b68a, + 0xe9b68b, + 0xe9b68c, + 0xe9b68d, + 0xe9b68e, + 0xe9b68f, + 0xe9b690, + 0xe9b691, + 0xe9b692, + 0xe9b693, + 0xe9b694, + 0xe9b695, + 0xe9b696, + 0xe9b697, + 0xe9b698, + 0xe9b699, + 0xe9b69a, + 0xe9b69b, + 0xe9b69c, + 0xe9b69d, + 0xe9b69e, + 0xe9b69f, + 0xe9b6a0, + 0xe9b6a1, + 0xe9b6a2, + 0xe9b6a3, + 0xe9b6a4, + 0xe9b6a5, + 0xe9b6a6, + 0xe9b6a7, + 0xe9b6a8, + 0xe9b6a9, + 0xe9b6aa, + 0xe9b6ab, + 0xe9b6ac, + 0xe9b6ad, + 0xe9b6ae, + 0xe9b6af, + 0xe9b6b0, + 0xe9b6b1, + 0xe9b6b2, + 0xe9b6b3, + 0xe9b6b4, + 0xe9b6b5, + 0xe9b6b6, + 0xe9b6b7, + 0xe9b6b8, + 0xe9b6b9, + 0xe9b6ba, + 0xe9b6bb, + 0xe9b6bc, + 0xe9b6bd, + 0xe9b6be, + 0xe9b6bf, + 0xe9b780, + 0xe9b781, + 0xe9b782, + 0xe9b783, + 0xe9b784, + 0xe9b785, + 0xe9b786, + 0xe9b787, + 0xe9b788, + 0xe9b789, + 0xe9b78a, + 0xe9b78b, + 0xe9b78c, + 0xe9b78d, + 0xe9b78e, + 0xe9b78f, + 0xe9b790, + 0xe9b791, + 0xe9b792, + 0xe9b793, + 0xe9b794, + 0xe9b795, + 0xe9b796, + 0xe9b797, + 0xe9b798, + 0xe9b799, + 0xe9b79a, + 0xe9b79b, + 0xe9b79c, + 0xe9b79d, + 0xe9b79e, + 0xe9b79f, + 0xe9b7a0, + 0xe9b7a1, + 0xe9b7a2, + 0xe9b7a3, + 0xe9b7a4, + 0xe9b7a5, + 0xe9b7a6, + 0xe9b7a7, + 0xe9b7a8, + 0xe9b7a9, + 0xe9b7aa, + 0xe9b7ab, + 0xe9b7ac, + 0xe9b7ad, + 0xe9b7ae, + 0xe9b7af, + 0xe9b7b0, + 0xe9b7b1, + 0xe9b7b2, + 0xe9b7b3, + 0xe9b7b4, + 0xe9b7b5, + 0xe9b7b6, + 0xe9b7b7, + 0xe9b7b8, + 0xe9b7b9, + 0xe9b7ba, + 0xe9b7bb, + 0xe9b7bc, + 0xe9b7bd, + 0xe9b7be, + 0xe9b7bf, + 0xe9b880, + 0xe9b881, + 0xe9b882, + 0xe9b883, + 0xe9b884, + 0xe9b885, + 0xe9b886, + 0xe9b887, + 0xe9b888, + 0xe9b889, + 0xe9b88a, + 0xe9b88b, + 0xe9b88c, + 0xe9b88d, + 0xe9b88e, + 0xe9b88f, + 0xe9b890, + 0xe9b891, + 0xe9b892, + 0xe9b893, + 0xe9b894, + 0xe9b895, + 0xe9b896, + 0xe9b897, + 0xe9b898, + 0xe9b899, + 0xe9b89a, + 0xe9b89b, + 0xe9b89c, + 0xe9b89d, + 0xe9b89e, + 0xe9b89f, + 0xe9b8a0, + 0xe9b8a1, + 0xe9b8a2, + 0xe9b8a3, + 0xe9b8a4, + 0xe9b8a5, + 0xe9b8a6, + 0xe9b8a7, + 0xe9b8a8, + 0xe9b8a9, + 0xe9b8aa, + 0xe9b8ab, + 0xe9b8ac, + 0xe9b8ad, + 0xe9b8ae, + 0xe9b8af, + 0xe9b8b0, + 0xe9b8b1, + 0xe9b8b2, + 0xe9b8b3, + 0xe9b8b4, + 0xe9b8b5, + 0xe9b8b6, + 0xe9b8b7, + 0xe9b8b8, + 0xe9b8b9, + 0xe9b8ba, + 0xe9b8bb, + 0xe9b8bc, + 0xe9b8bd, + 0xe9b8be, + 0xe9b8bf, + 0xe9b980, + 0xe9b981, + 0xe9b982, + 0xe9b983, + 0xe9b984, + 0xe9b985, + 0xe9b986, + 0xe9b987, + 0xe9b988, + 0xe9b989, + 0xe9b98a, + 0xe9b98b, + 0xe9b98c, + 0xe9b98d, + 0xe9b98e, + 0xe9b98f, + 0xe9b990, + 0xe9b991, + 0xe9b992, + 0xe9b993, + 0xe9b994, + 0xe9b995, + 0xe9b996, + 0xe9b997, + 0xe9b998, + 0xe9b999, + 0xe9b99a, + 0xe9b99b, + 0xe9b99c, + 0xe9b99d, + 0xe9b99e, + 0xe9b99f, + 0xe9b9a0, + 0xe9b9a1, + 0xe9b9a2, + 0xe9b9a3, + 0xe9b9a4, + 0xe9b9a5, + 0xe9b9a6, + 0xe9b9a7, + 0xe9b9a8, + 0xe9b9a9, + 0xe9b9aa, + 0xe9b9ab, + 0xe9b9ac, + 0xe9b9ad, + 0xe9b9ae, + 0xe9b9af, + 0xe9b9b0, + 0xe9b9b1, + 0xe9b9b2, + 0xe9b9b3, + 0xe9b9b4, + 0xe9b9b5, + 0xe9b9b6, + 0xe9b9b7, + 0xe9b9b8, + 0xe9b9b9, + 0xe9b9ba, + 0xe9b9bb, + 0xe9b9bc, + 0xe9b9bd, + 0xe9b9be, + 0xe9b9bf, + 0xe9ba80, + 0xe9ba81, + 0xe9ba82, + 0xe9ba83, + 0xe9ba84, + 0xe9ba85, + 0xe9ba86, + 0xe9ba87, + 0xe9ba88, + 0xe9ba89, + 0xe9ba8a, + 0xe9ba8b, + 0xe9ba8c, + 0xe9ba8d, + 0xe9ba8e, + 0xe9ba8f, + 0xe9ba90, + 0xe9ba91, + 0xe9ba92, + 0xe9ba93, + 0xe9ba94, + 0xe9ba95, + 0xe9ba96, + 0xe9ba97, + 0xe9ba98, + 0xe9ba99, + 0xe9ba9a, + 0xe9ba9b, + 0xe9ba9c, + 0xe9ba9d, + 0xe9ba9e, + 0xe9ba9f, + 0xe9baa0, + 0xe9baa1, + 0xe9baa2, + 0xe9baa3, + 0xe9baa4, + 0xe9baa5, + 0xe9baa6, + 0xe9baa7, + 0xe9baa8, + 0xe9baa9, + 0xe9baaa, + 0xe9baab, + 0xe9baac, + 0xe9baad, + 0xe9baae, + 0xe9baaf, + 0xe9bab0, + 0xe9bab1, + 0xe9bab2, + 0xe9bab3, + 0xe9bab4, + 0xe9bab5, + 0xe9bab6, + 0xe9bab7, + 0xe9bab8, + 0xe9bab9, + 0xe9baba, + 0xe9babb, + 0xe9babc, + 0xe9babd, + 0xe9babe, + 0xe9babf, + 0xe9bb80, + 0xe9bb81, + 0xe9bb82, + 0xe9bb83, + 0xe9bb84, + 0xe9bb85, + 0xe9bb86, + 0xe9bb87, + 0xe9bb88, + 0xe9bb89, + 0xe9bb8a, + 0xe9bb8b, + 0xe9bb8c, + 0xe9bb8d, + 0xe9bb8e, + 0xe9bb8f, + 0xe9bb90, + 0xe9bb91, + 0xe9bb92, + 0xe9bb93, + 0xe9bb94, + 0xe9bb95, + 0xe9bb96, + 0xe9bb97, + 0xe9bb98, + 0xe9bb99, + 0xe9bb9a, + 0xe9bb9b, + 0xe9bb9c, + 0xe9bb9d, + 0xe9bb9e, + 0xe9bb9f, + 0xe9bba0, + 0xe9bba1, + 0xe9bba2, + 0xe9bba3, + 0xe9bba4, + 0xe9bba5, + 0xe9bba6, + 0xe9bba7, + 0xe9bba8, + 0xe9bba9, + 0xe9bbaa, + 0xe9bbab, + 0xe9bbac, + 0xe9bbad, + 0xe9bbae, + 0xe9bbaf, + 0xe9bbb0, + 0xe9bbb1, + 0xe9bbb2, + 0xe9bbb3, + 0xe9bbb4, + 0xe9bbb5, + 0xe9bbb6, + 0xe9bbb7, + 0xe9bbb8, + 0xe9bbb9, + 0xe9bbba, + 0xe9bbbb, + 0xe9bbbc, + 0xe9bbbd, + 0xe9bbbe, + 0xe9bbbf, + 0xe9bc80, + 0xe9bc81, + 0xe9bc82, + 0xe9bc83, + 0xe9bc84, + 0xe9bc85, + 0xe9bc86, + 0xe9bc87, + 0xe9bc88, + 0xe9bc89, + 0xe9bc8a, + 0xe9bc8b, + 0xe9bc8c, + 0xe9bc8d, + 0xe9bc8e, + 0xe9bc8f, + 0xe9bc90, + 0xe9bc91, + 0xe9bc92, + 0xe9bc93, + 0xe9bc94, + 0xe9bc95, + 0xe9bc96, + 0xe9bc97, + 0xe9bc98, + 0xe9bc99, + 0xe9bc9a, + 0xe9bc9b, + 0xe9bc9c, + 0xe9bc9d, + 0xe9bc9e, + 0xe9bc9f, + 0xe9bca0, + 0xe9bca1, + 0xe9bca2, + 0xe9bca3, + 0xe9bca4, + 0xe9bca5, + 0xe9bca6, + 0xe9bca7, + 0xe9bca8, + 0xe9bca9, + 0xe9bcaa, + 0xe9bcab, + 0xe9bcac, + 0xe9bcad, + 0xe9bcae, + 0xe9bcaf, + 0xe9bcb0, + 0xe9bcb1, + 0xe9bcb2, + 0xe9bcb3, + 0xe9bcb4, + 0xe9bcb5, + 0xe9bcb6, + 0xe9bcb7, + 0xe9bcb8, + 0xe9bcb9, + 0xe9bcba, + 0xe9bcbb, + 0xe9bcbc, + 0xe9bcbd, + 0xe9bcbe, + 0xe9bcbf, + 0xe9bd80, + 0xe9bd81, + 0xe9bd82, + 0xe9bd83, + 0xe9bd84, + 0xe9bd85, + 0xe9bd86, + 0xe9bd87, + 0xe9bd88, + 0xe9bd89, + 0xe9bd8a, + 0xe9bd8b, + 0xe9bd8c, + 0xe9bd8d, + 0xe9bd8e, + 0xe9bd8f, + 0xe9bd90, + 0xe9bd91, + 0xe9bd92, + 0xe9bd93, + 0xe9bd94, + 0xe9bd95, + 0xe9bd96, + 0xe9bd97, + 0xe9bd98, + 0xe9bd99, + 0xe9bd9a, + 0xe9bd9b, + 0xe9bd9c, + 0xe9bd9d, + 0xe9bd9e, + 0xe9bd9f, + 0xe9bda0, + 0xe9bda1, + 0xe9bda2, + 0xe9bda3, + 0xe9bda4, + 0xe9bda5, + 0xe9bda6, + 0xe9bda7, + 0xe9bda8, + 0xe9bda9, + 0xe9bdaa, + 0xe9bdab, + 0xe9bdac, + 0xe9bdad, + 0xe9bdae, + 0xe9bdaf, + 0xe9bdb0, + 0xe9bdb1, + 0xe9bdb2, + 0xe9bdb3, + 0xe9bdb4, + 0xe9bdb5, + 0xe9bdb6, + 0xe9bdb7, + 0xe9bdb8, + 0xe9bdb9, + 0xe9bdba, + 0xe9bdbb, + 0xe9bdbc, + 0xe9bdbd, + 0xe9bdbe, + 0xe9bdbf, + 0xe9be80, + 0xe9be81, + 0xe9be82, + 0xe9be83, + 0xe9be84, + 0xe9be85, + 0xe9be86, + 0xe9be87, + 0xe9be88, + 0xe9be89, + 0xe9be8a, + 0xe9be8b, + 0xe9be8c, + 0xe9be8d, + 0xe9be8e, + 0xe9be8f, + 0xe9be90, + 0xe9be91, + 0xe9be92, + 0xe9be93, + 0xe9be94, + 0xe9be95, + 0xe9be96, + 0xe9be97, + 0xe9be98, + 0xe9be99, + 0xe9be9a, + 0xe9be9b, + 0xe9be9c, + 0xe9be9d, + 0xe9be9e, + 0xe9be9f, + 0xe9bea0, + 0xe9bea1, + 0xe9bea2, + 0xe9bea3, + 0xe9bea4, + 0xe9bea5, + 0xe9bea6, + 0xe9bea7, + 0xe9bea8, + 0xe9bea9, + 0xe9beaa, + 0xe9beab, + 0xe9beac, + 0xe9bead, + 0xe9beae, + 0xe9beaf, + 0xe9beb0, + 0xe9beb1, + 0xe9beb2, + 0xe9beb3, + 0xe9beb4, + 0xe9beb5, + 0xe9beb6, + 0xe9beb7, + 0xe9beb8, + 0xe9beb9, + 0xe9beba, + 0xe9bebb, + 0xe9bebc, + 0xe9bebd, + 0xe9bebe, + 0xe9bebf, + 0xe9bf80, + 0xe9bf81, + 0xe9bf82, + 0xe9bf83, + 0xe9bf84, + 0xe9bf85, + 0xe9bf86, + 0xe9bf87, + 0xe9bf88, + 0xe9bf89, + 0xe9bf8a, + 0xe9bf8b, + 0xe9bf8c, + 0xe9bf8d, + 0xe9bf8e, + 0xe9bf8f, + 0xe9bf90, + 0xe9bf91, + 0xe9bf92, + 0xe9bf93, + 0xe9bf94, + 0xe9bf95, + 0xe9bf96, + 0xe9bf97, + 0xe9bf98, + 0xe9bf99, + 0xe9bf9a, + 0xe9bf9b, + 0xe9bf9c, + 0xe9bf9d, + 0xe9bf9e, + 0xe9bf9f, + 0xe9bfa0, + 0xe9bfa1, + 0xe9bfa2, + 0xe9bfa3, + 0xe9bfa4, + 0xe9bfa5, + 0xe9bfa6, + 0xe9bfa7, + 0xe9bfa8, + 0xe9bfa9, + 0xe9bfaa, + 0xe9bfab, + 0xe9bfac, + 0xe9bfad, + 0xe9bfae, + 0xe9bfaf, + 0xe9bfb0, + 0xe9bfb1, + 0xe9bfb2, + 0xe9bfb3, + 0xe9bfb4, + 0xe9bfb5, + 0xe9bfb6, + 0xe9bfb7, + 0xe9bfb8, + 0xe9bfb9, + 0xe9bfba, + 0xe9bfbb, + 0xe9bfbc, + 0xe9bfbd, + 0xe9bfbe, + 0xe9bfbf, + 0xea8080, + 0xea8081, + 0xea8082, + 0xea8083, + 0xea8084, + 0xea8085, + 0xea8086, + 0xea8087, + 0xea8088, + 0xea8089, + 0xea808a, + 0xea808b, + 0xea808c, + 0xea808d, + 0xea808e, + 0xea808f, + 0xea8090, + 0xea8091, + 0xea8092, + 0xea8093, + 0xea8094, + 0xea8095, + 0xea8096, + 0xea8097, + 0xea8098, + 0xea8099, + 0xea809a, + 0xea809b, + 0xea809c, + 0xea809d, + 0xea809e, + 0xea809f, + 0xea80a0, + 0xea80a1, + 0xea80a2, + 0xea80a3, + 0xea80a4, + 0xea80a5, + 0xea80a6, + 0xea80a7, + 0xea80a8, + 0xea80a9, + 0xea80aa, + 0xea80ab, + 0xea80ac, + 0xea80ad, + 0xea80ae, + 0xea80af, + 0xea80b0, + 0xea80b1, + 0xea80b2, + 0xea80b3, + 0xea80b4, + 0xea80b5, + 0xea80b6, + 0xea80b7, + 0xea80b8, + 0xea80b9, + 0xea80ba, + 0xea80bb, + 0xea80bc, + 0xea80bd, + 0xea80be, + 0xea80bf, + 0xea8180, + 0xea8181, + 0xea8182, + 0xea8183, + 0xea8184, + 0xea8185, + 0xea8186, + 0xea8187, + 0xea8188, + 0xea8189, + 0xea818a, + 0xea818b, + 0xea818c, + 0xea818d, + 0xea818e, + 0xea818f, + 0xea8190, + 0xea8191, + 0xea8192, + 0xea8193, + 0xea8194, + 0xea8195, + 0xea8196, + 0xea8197, + 0xea8198, + 0xea8199, + 0xea819a, + 0xea819b, + 0xea819c, + 0xea819d, + 0xea819e, + 0xea819f, + 0xea81a0, + 0xea81a1, + 0xea81a2, + 0xea81a3, + 0xea81a4, + 0xea81a5, + 0xea81a6, + 0xea81a7, + 0xea81a8, + 0xea81a9, + 0xea81aa, + 0xea81ab, + 0xea81ac, + 0xea81ad, + 0xea81ae, + 0xea81af, + 0xea81b0, + 0xea81b1, + 0xea81b2, + 0xea81b3, + 0xea81b4, + 0xea81b5, + 0xea81b6, + 0xea81b7, + 0xea81b8, + 0xea81b9, + 0xea81ba, + 0xea81bb, + 0xea81bc, + 0xea81bd, + 0xea81be, + 0xea81bf, + 0xea8280, + 0xea8281, + 0xea8282, + 0xea8283, + 0xea8284, + 0xea8285, + 0xea8286, + 0xea8287, + 0xea8288, + 0xea8289, + 0xea828a, + 0xea828b, + 0xea828c, + 0xea828d, + 0xea828e, + 0xea828f, + 0xea8290, + 0xea8291, + 0xea8292, + 0xea8293, + 0xea8294, + 0xea8295, + 0xea8296, + 0xea8297, + 0xea8298, + 0xea8299, + 0xea829a, + 0xea829b, + 0xea829c, + 0xea829d, + 0xea829e, + 0xea829f, + 0xea82a0, + 0xea82a1, + 0xea82a2, + 0xea82a3, + 0xea82a4, + 0xea82a5, + 0xea82a6, + 0xea82a7, + 0xea82a8, + 0xea82a9, + 0xea82aa, + 0xea82ab, + 0xea82ac, + 0xea82ad, + 0xea82ae, + 0xea82af, + 0xea82b0, + 0xea82b1, + 0xea82b2, + 0xea82b3, + 0xea82b4, + 0xea82b5, + 0xea82b6, + 0xea82b7, + 0xea82b8, + 0xea82b9, + 0xea82ba, + 0xea82bb, + 0xea82bc, + 0xea82bd, + 0xea82be, + 0xea82bf, + 0xea8380, + 0xea8381, + 0xea8382, + 0xea8383, + 0xea8384, + 0xea8385, + 0xea8386, + 0xea8387, + 0xea8388, + 0xea8389, + 0xea838a, + 0xea838b, + 0xea838c, + 0xea838d, + 0xea838e, + 0xea838f, + 0xea8390, + 0xea8391, + 0xea8392, + 0xea8393, + 0xea8394, + 0xea8395, + 0xea8396, + 0xea8397, + 0xea8398, + 0xea8399, + 0xea839a, + 0xea839b, + 0xea839c, + 0xea839d, + 0xea839e, + 0xea839f, + 0xea83a0, + 0xea83a1, + 0xea83a2, + 0xea83a3, + 0xea83a4, + 0xea83a5, + 0xea83a6, + 0xea83a7, + 0xea83a8, + 0xea83a9, + 0xea83aa, + 0xea83ab, + 0xea83ac, + 0xea83ad, + 0xea83ae, + 0xea83af, + 0xea83b0, + 0xea83b1, + 0xea83b2, + 0xea83b3, + 0xea83b4, + 0xea83b5, + 0xea83b6, + 0xea83b7, + 0xea83b8, + 0xea83b9, + 0xea83ba, + 0xea83bb, + 0xea83bc, + 0xea83bd, + 0xea83be, + 0xea83bf, + 0xea8480, + 0xea8481, + 0xea8482, + 0xea8483, + 0xea8484, + 0xea8485, + 0xea8486, + 0xea8487, + 0xea8488, + 0xea8489, + 0xea848a, + 0xea848b, + 0xea848c, + 0xea848d, + 0xea848e, + 0xea848f, + 0xea8490, + 0xea8491, + 0xea8492, + 0xea8493, + 0xea8494, + 0xea8495, + 0xea8496, + 0xea8497, + 0xea8498, + 0xea8499, + 0xea849a, + 0xea849b, + 0xea849c, + 0xea849d, + 0xea849e, + 0xea849f, + 0xea84a0, + 0xea84a1, + 0xea84a2, + 0xea84a3, + 0xea84a4, + 0xea84a5, + 0xea84a6, + 0xea84a7, + 0xea84a8, + 0xea84a9, + 0xea84aa, + 0xea84ab, + 0xea84ac, + 0xea84ad, + 0xea84ae, + 0xea84af, + 0xea84b0, + 0xea84b1, + 0xea84b2, + 0xea84b3, + 0xea84b4, + 0xea84b5, + 0xea84b6, + 0xea84b7, + 0xea84b8, + 0xea84b9, + 0xea84ba, + 0xea84bb, + 0xea84bc, + 0xea84bd, + 0xea84be, + 0xea84bf, + 0xea8580, + 0xea8581, + 0xea8582, + 0xea8583, + 0xea8584, + 0xea8585, + 0xea8586, + 0xea8587, + 0xea8588, + 0xea8589, + 0xea858a, + 0xea858b, + 0xea858c, + 0xea858d, + 0xea858e, + 0xea858f, + 0xea8590, + 0xea8591, + 0xea8592, + 0xea8593, + 0xea8594, + 0xea8595, + 0xea8596, + 0xea8597, + 0xea8598, + 0xea8599, + 0xea859a, + 0xea859b, + 0xea859c, + 0xea859d, + 0xea859e, + 0xea859f, + 0xea85a0, + 0xea85a1, + 0xea85a2, + 0xea85a3, + 0xea85a4, + 0xea85a5, + 0xea85a6, + 0xea85a7, + 0xea85a8, + 0xea85a9, + 0xea85aa, + 0xea85ab, + 0xea85ac, + 0xea85ad, + 0xea85ae, + 0xea85af, + 0xea85b0, + 0xea85b1, + 0xea85b2, + 0xea85b3, + 0xea85b4, + 0xea85b5, + 0xea85b6, + 0xea85b7, + 0xea85b8, + 0xea85b9, + 0xea85ba, + 0xea85bb, + 0xea85bc, + 0xea85bd, + 0xea85be, + 0xea85bf, + 0xea8680, + 0xea8681, + 0xea8682, + 0xea8683, + 0xea8684, + 0xea8685, + 0xea8686, + 0xea8687, + 0xea8688, + 0xea8689, + 0xea868a, + 0xea868b, + 0xea868c, + 0xea868d, + 0xea868e, + 0xea868f, + 0xea8690, + 0xea8691, + 0xea8692, + 0xea8693, + 0xea8694, + 0xea8695, + 0xea8696, + 0xea8697, + 0xea8698, + 0xea8699, + 0xea869a, + 0xea869b, + 0xea869c, + 0xea869d, + 0xea869e, + 0xea869f, + 0xea86a0, + 0xea86a1, + 0xea86a2, + 0xea86a3, + 0xea86a4, + 0xea86a5, + 0xea86a6, + 0xea86a7, + 0xea86a8, + 0xea86a9, + 0xea86aa, + 0xea86ab, + 0xea86ac, + 0xea86ad, + 0xea86ae, + 0xea86af, + 0xea86b0, + 0xea86b1, + 0xea86b2, + 0xea86b3, + 0xea86b4, + 0xea86b5, + 0xea86b6, + 0xea86b7, + 0xea86b8, + 0xea86b9, + 0xea86ba, + 0xea86bb, + 0xea86bc, + 0xea86bd, + 0xea86be, + 0xea86bf, + 0xea8780, + 0xea8781, + 0xea8782, + 0xea8783, + 0xea8784, + 0xea8785, + 0xea8786, + 0xea8787, + 0xea8788, + 0xea8789, + 0xea878a, + 0xea878b, + 0xea878c, + 0xea878d, + 0xea878e, + 0xea878f, + 0xea8790, + 0xea8791, + 0xea8792, + 0xea8793, + 0xea8794, + 0xea8795, + 0xea8796, + 0xea8797, + 0xea8798, + 0xea8799, + 0xea879a, + 0xea879b, + 0xea879c, + 0xea879d, + 0xea879e, + 0xea879f, + 0xea87a0, + 0xea87a1, + 0xea87a2, + 0xea87a3, + 0xea87a4, + 0xea87a5, + 0xea87a6, + 0xea87a7, + 0xea87a8, + 0xea87a9, + 0xea87aa, + 0xea87ab, + 0xea87ac, + 0xea87ad, + 0xea87ae, + 0xea87af, + 0xea87b0, + 0xea87b1, + 0xea87b2, + 0xea87b3, + 0xea87b4, + 0xea87b5, + 0xea87b6, + 0xea87b7, + 0xea87b8, + 0xea87b9, + 0xea87ba, + 0xea87bb, + 0xea87bc, + 0xea87bd, + 0xea87be, + 0xea87bf, + 0xea8880, + 0xea8881, + 0xea8882, + 0xea8883, + 0xea8884, + 0xea8885, + 0xea8886, + 0xea8887, + 0xea8888, + 0xea8889, + 0xea888a, + 0xea888b, + 0xea888c, + 0xea888d, + 0xea888e, + 0xea888f, + 0xea8890, + 0xea8891, + 0xea8892, + 0xea8893, + 0xea8894, + 0xea8895, + 0xea8896, + 0xea8897, + 0xea8898, + 0xea8899, + 0xea889a, + 0xea889b, + 0xea889c, + 0xea889d, + 0xea889e, + 0xea889f, + 0xea88a0, + 0xea88a1, + 0xea88a2, + 0xea88a3, + 0xea88a4, + 0xea88a5, + 0xea88a6, + 0xea88a7, + 0xea88a8, + 0xea88a9, + 0xea88aa, + 0xea88ab, + 0xea88ac, + 0xea88ad, + 0xea88ae, + 0xea88af, + 0xea88b0, + 0xea88b1, + 0xea88b2, + 0xea88b3, + 0xea88b4, + 0xea88b5, + 0xea88b6, + 0xea88b7, + 0xea88b8, + 0xea88b9, + 0xea88ba, + 0xea88bb, + 0xea88bc, + 0xea88bd, + 0xea88be, + 0xea88bf, + 0xea8980, + 0xea8981, + 0xea8982, + 0xea8983, + 0xea8984, + 0xea8985, + 0xea8986, + 0xea8987, + 0xea8988, + 0xea8989, + 0xea898a, + 0xea898b, + 0xea898c, + 0xea898d, + 0xea898e, + 0xea898f, + 0xea8990, + 0xea8991, + 0xea8992, + 0xea8993, + 0xea8994, + 0xea8995, + 0xea8996, + 0xea8997, + 0xea8998, + 0xea8999, + 0xea899a, + 0xea899b, + 0xea899c, + 0xea899d, + 0xea899e, + 0xea899f, + 0xea89a0, + 0xea89a1, + 0xea89a2, + 0xea89a3, + 0xea89a4, + 0xea89a5, + 0xea89a6, + 0xea89a7, + 0xea89a8, + 0xea89a9, + 0xea89aa, + 0xea89ab, + 0xea89ac, + 0xea89ad, + 0xea89ae, + 0xea89af, + 0xea89b0, + 0xea89b1, + 0xea89b2, + 0xea89b3, + 0xea89b4, + 0xea89b5, + 0xea89b6, + 0xea89b7, + 0xea89b8, + 0xea89b9, + 0xea89ba, + 0xea89bb, + 0xea89bc, + 0xea89bd, + 0xea89be, + 0xea89bf, + 0xea8a80, + 0xea8a81, + 0xea8a82, + 0xea8a83, + 0xea8a84, + 0xea8a85, + 0xea8a86, + 0xea8a87, + 0xea8a88, + 0xea8a89, + 0xea8a8a, + 0xea8a8b, + 0xea8a8c, + 0xea8a8d, + 0xea8a8e, + 0xea8a8f, + 0xea8a90, + 0xea8a91, + 0xea8a92, + 0xea8a93, + 0xea8a94, + 0xea8a95, + 0xea8a96, + 0xea8a97, + 0xea8a98, + 0xea8a99, + 0xea8a9a, + 0xea8a9b, + 0xea8a9c, + 0xea8a9d, + 0xea8a9e, + 0xea8a9f, + 0xea8aa0, + 0xea8aa1, + 0xea8aa2, + 0xea8aa3, + 0xea8aa4, + 0xea8aa5, + 0xea8aa6, + 0xea8aa7, + 0xea8aa8, + 0xea8aa9, + 0xea8aaa, + 0xea8aab, + 0xea8aac, + 0xea8aad, + 0xea8aae, + 0xea8aaf, + 0xea8ab0, + 0xea8ab1, + 0xea8ab2, + 0xea8ab3, + 0xea8ab4, + 0xea8ab5, + 0xea8ab6, + 0xea8ab7, + 0xea8ab8, + 0xea8ab9, + 0xea8aba, + 0xea8abb, + 0xea8abc, + 0xea8abd, + 0xea8abe, + 0xea8abf, + 0xea8b80, + 0xea8b81, + 0xea8b82, + 0xea8b83, + 0xea8b84, + 0xea8b85, + 0xea8b86, + 0xea8b87, + 0xea8b88, + 0xea8b89, + 0xea8b8a, + 0xea8b8b, + 0xea8b8c, + 0xea8b8d, + 0xea8b8e, + 0xea8b8f, + 0xea8b90, + 0xea8b91, + 0xea8b92, + 0xea8b93, + 0xea8b94, + 0xea8b95, + 0xea8b96, + 0xea8b97, + 0xea8b98, + 0xea8b99, + 0xea8b9a, + 0xea8b9b, + 0xea8b9c, + 0xea8b9d, + 0xea8b9e, + 0xea8b9f, + 0xea8ba0, + 0xea8ba1, + 0xea8ba2, + 0xea8ba3, + 0xea8ba4, + 0xea8ba5, + 0xea8ba6, + 0xea8ba7, + 0xea8ba8, + 0xea8ba9, + 0xea8baa, + 0xea8bab, + 0xea8bac, + 0xea8bad, + 0xea8bae, + 0xea8baf, + 0xea8bb0, + 0xea8bb1, + 0xea8bb2, + 0xea8bb3, + 0xea8bb4, + 0xea8bb5, + 0xea8bb6, + 0xea8bb7, + 0xea8bb8, + 0xea8bb9, + 0xea8bba, + 0xea8bbb, + 0xea8bbc, + 0xea8bbd, + 0xea8bbe, + 0xea8bbf, + 0xea8c80, + 0xea8c81, + 0xea8c82, + 0xea8c83, + 0xea8c84, + 0xea8c85, + 0xea8c86, + 0xea8c87, + 0xea8c88, + 0xea8c89, + 0xea8c8a, + 0xea8c8b, + 0xea8c8c, + 0xea8c8d, + 0xea8c8e, + 0xea8c8f, + 0xea8c90, + 0xea8c91, + 0xea8c92, + 0xea8c93, + 0xea8c94, + 0xea8c95, + 0xea8c96, + 0xea8c97, + 0xea8c98, + 0xea8c99, + 0xea8c9a, + 0xea8c9b, + 0xea8c9c, + 0xea8c9d, + 0xea8c9e, + 0xea8c9f, + 0xea8ca0, + 0xea8ca1, + 0xea8ca2, + 0xea8ca3, + 0xea8ca4, + 0xea8ca5, + 0xea8ca6, + 0xea8ca7, + 0xea8ca8, + 0xea8ca9, + 0xea8caa, + 0xea8cab, + 0xea8cac, + 0xea8cad, + 0xea8cae, + 0xea8caf, + 0xea8cb0, + 0xea8cb1, + 0xea8cb2, + 0xea8cb3, + 0xea8cb4, + 0xea8cb5, + 0xea8cb6, + 0xea8cb7, + 0xea8cb8, + 0xea8cb9, + 0xea8cba, + 0xea8cbb, + 0xea8cbc, + 0xea8cbd, + 0xea8cbe, + 0xea8cbf, + 0xea8d80, + 0xea8d81, + 0xea8d82, + 0xea8d83, + 0xea8d84, + 0xea8d85, + 0xea8d86, + 0xea8d87, + 0xea8d88, + 0xea8d89, + 0xea8d8a, + 0xea8d8b, + 0xea8d8c, + 0xea8d8d, + 0xea8d8e, + 0xea8d8f, + 0xea8d90, + 0xea8d91, + 0xea8d92, + 0xea8d93, + 0xea8d94, + 0xea8d95, + 0xea8d96, + 0xea8d97, + 0xea8d98, + 0xea8d99, + 0xea8d9a, + 0xea8d9b, + 0xea8d9c, + 0xea8d9d, + 0xea8d9e, + 0xea8d9f, + 0xea8da0, + 0xea8da1, + 0xea8da2, + 0xea8da3, + 0xea8da4, + 0xea8da5, + 0xea8da6, + 0xea8da7, + 0xea8da8, + 0xea8da9, + 0xea8daa, + 0xea8dab, + 0xea8dac, + 0xea8dad, + 0xea8dae, + 0xea8daf, + 0xea8db0, + 0xea8db1, + 0xea8db2, + 0xea8db3, + 0xea8db4, + 0xea8db5, + 0xea8db6, + 0xea8db7, + 0xea8db8, + 0xea8db9, + 0xea8dba, + 0xea8dbb, + 0xea8dbc, + 0xea8dbd, + 0xea8dbe, + 0xea8dbf, + 0xea8e80, + 0xea8e81, + 0xea8e82, + 0xea8e83, + 0xea8e84, + 0xea8e85, + 0xea8e86, + 0xea8e87, + 0xea8e88, + 0xea8e89, + 0xea8e8a, + 0xea8e8b, + 0xea8e8c, + 0xea8e8d, + 0xea8e8e, + 0xea8e8f, + 0xea8e90, + 0xea8e91, + 0xea8e92, + 0xea8e93, + 0xea8e94, + 0xea8e95, + 0xea8e96, + 0xea8e97, + 0xea8e98, + 0xea8e99, + 0xea8e9a, + 0xea8e9b, + 0xea8e9c, + 0xea8e9d, + 0xea8e9e, + 0xea8e9f, + 0xea8ea0, + 0xea8ea1, + 0xea8ea2, + 0xea8ea3, + 0xea8ea4, + 0xea8ea5, + 0xea8ea6, + 0xea8ea7, + 0xea8ea8, + 0xea8ea9, + 0xea8eaa, + 0xea8eab, + 0xea8eac, + 0xea8ead, + 0xea8eae, + 0xea8eaf, + 0xea8eb0, + 0xea8eb1, + 0xea8eb2, + 0xea8eb3, + 0xea8eb4, + 0xea8eb5, + 0xea8eb6, + 0xea8eb7, + 0xea8eb8, + 0xea8eb9, + 0xea8eba, + 0xea8ebb, + 0xea8ebc, + 0xea8ebd, + 0xea8ebe, + 0xea8ebf, + 0xea8f80, + 0xea8f81, + 0xea8f82, + 0xea8f83, + 0xea8f84, + 0xea8f85, + 0xea8f86, + 0xea8f87, + 0xea8f88, + 0xea8f89, + 0xea8f8a, + 0xea8f8b, + 0xea8f8c, + 0xea8f8d, + 0xea8f8e, + 0xea8f8f, + 0xea8f90, + 0xea8f91, + 0xea8f92, + 0xea8f93, + 0xea8f94, + 0xea8f95, + 0xea8f96, + 0xea8f97, + 0xea8f98, + 0xea8f99, + 0xea8f9a, + 0xea8f9b, + 0xea8f9c, + 0xea8f9d, + 0xea8f9e, + 0xea8f9f, + 0xea8fa0, + 0xea8fa1, + 0xea8fa2, + 0xea8fa3, + 0xea8fa4, + 0xea8fa5, + 0xea8fa6, + 0xea8fa7, + 0xea8fa8, + 0xea8fa9, + 0xea8faa, + 0xea8fab, + 0xea8fac, + 0xea8fad, + 0xea8fae, + 0xea8faf, + 0xea8fb0, + 0xea8fb1, + 0xea8fb2, + 0xea8fb3, + 0xea8fb4, + 0xea8fb5, + 0xea8fb6, + 0xea8fb7, + 0xea8fb8, + 0xea8fb9, + 0xea8fba, + 0xea8fbb, + 0xea8fbc, + 0xea8fbd, + 0xea8fbe, + 0xea8fbf, + 0xea9080, + 0xea9081, + 0xea9082, + 0xea9083, + 0xea9084, + 0xea9085, + 0xea9086, + 0xea9087, + 0xea9088, + 0xea9089, + 0xea908a, + 0xea908b, + 0xea908c, + 0xea908d, + 0xea908e, + 0xea908f, + 0xea9090, + 0xea9091, + 0xea9092, + 0xea9093, + 0xea9094, + 0xea9095, + 0xea9096, + 0xea9097, + 0xea9098, + 0xea9099, + 0xea909a, + 0xea909b, + 0xea909c, + 0xea909d, + 0xea909e, + 0xea909f, + 0xea90a0, + 0xea90a1, + 0xea90a2, + 0xea90a3, + 0xea90a4, + 0xea90a5, + 0xea90a6, + 0xea90a7, + 0xea90a8, + 0xea90a9, + 0xea90aa, + 0xea90ab, + 0xea90ac, + 0xea90ad, + 0xea90ae, + 0xea90af, + 0xea90b0, + 0xea90b1, + 0xea90b2, + 0xea90b3, + 0xea90b4, + 0xea90b5, + 0xea90b6, + 0xea90b7, + 0xea90b8, + 0xea90b9, + 0xea90ba, + 0xea90bb, + 0xea90bc, + 0xea90bd, + 0xea90be, + 0xea90bf, + 0xea9180, + 0xea9181, + 0xea9182, + 0xea9183, + 0xea9184, + 0xea9185, + 0xea9186, + 0xea9187, + 0xea9188, + 0xea9189, + 0xea918a, + 0xea918b, + 0xea918c, + 0xea918d, + 0xea918e, + 0xea918f, + 0xea9190, + 0xea9191, + 0xea9192, + 0xea9193, + 0xea9194, + 0xea9195, + 0xea9196, + 0xea9197, + 0xea9198, + 0xea9199, + 0xea919a, + 0xea919b, + 0xea919c, + 0xea919d, + 0xea919e, + 0xea919f, + 0xea91a0, + 0xea91a1, + 0xea91a2, + 0xea91a3, + 0xea91a4, + 0xea91a5, + 0xea91a6, + 0xea91a7, + 0xea91a8, + 0xea91a9, + 0xea91aa, + 0xea91ab, + 0xea91ac, + 0xea91ad, + 0xea91ae, + 0xea91af, + 0xea91b0, + 0xea91b1, + 0xea91b2, + 0xea91b3, + 0xea91b4, + 0xea91b5, + 0xea91b6, + 0xea91b7, + 0xea91b8, + 0xea91b9, + 0xea91ba, + 0xea91bb, + 0xea91bc, + 0xea91bd, + 0xea91be, + 0xea91bf, + 0xea9280, + 0xea9281, + 0xea9282, + 0xea9283, + 0xea9284, + 0xea9285, + 0xea9286, + 0xea9287, + 0xea9288, + 0xea9289, + 0xea928a, + 0xea928b, + 0xea928c, + 0xea928d, + 0xea928e, + 0xea928f, + 0xea9290, + 0xea9291, + 0xea9292, + 0xea9293, + 0xea9294, + 0xea9295, + 0xea9296, + 0xea9297, + 0xea9298, + 0xea9299, + 0xea929a, + 0xea929b, + 0xea929c, + 0xea929d, + 0xea929e, + 0xea929f, + 0xea92a0, + 0xea92a1, + 0xea92a2, + 0xea92a3, + 0xea92a4, + 0xea92a5, + 0xea92a6, + 0xea92a7, + 0xea92a8, + 0xea92a9, + 0xea92aa, + 0xea92ab, + 0xea92ac, + 0xea92ad, + 0xea92ae, + 0xea92af, + 0xea92b0, + 0xea92b1, + 0xea92b2, + 0xea92b3, + 0xea92b4, + 0xea92b5, + 0xea92b6, + 0xea92b7, + 0xea92b8, + 0xea92b9, + 0xea92ba, + 0xea92bb, + 0xea92bc, + 0xea92bd, + 0xea92be, + 0xea92bf, + 0xea9380, + 0xea9381, + 0xea9382, + 0xea9383, + 0xea9384, + 0xea9385, + 0xea9386, + 0xea9387, + 0xea9388, + 0xea9389, + 0xea938a, + 0xea938b, + 0xea938c, + 0xea938d, + 0xea938e, + 0xea938f, + 0xea9390, + 0xea9391, + 0xea9392, + 0xea9393, + 0xea9394, + 0xea9395, + 0xea9396, + 0xea9397, + 0xea9398, + 0xea9399, + 0xea939a, + 0xea939b, + 0xea939c, + 0xea939d, + 0xea939e, + 0xea939f, + 0xea93a0, + 0xea93a1, + 0xea93a2, + 0xea93a3, + 0xea93a4, + 0xea93a5, + 0xea93a6, + 0xea93a7, + 0xea93a8, + 0xea93a9, + 0xea93aa, + 0xea93ab, + 0xea93ac, + 0xea93ad, + 0xea93ae, + 0xea93af, + 0xea93b0, + 0xea93b1, + 0xea93b2, + 0xea93b3, + 0xea93b4, + 0xea93b5, + 0xea93b6, + 0xea93b7, + 0xea93b8, + 0xea93b9, + 0xea93ba, + 0xea93bb, + 0xea93bc, + 0xea93bd, + 0xea93be, + 0xea93bf, + 0xea9480, + 0xea9481, + 0xea9482, + 0xea9483, + 0xea9484, + 0xea9485, + 0xea9486, + 0xea9487, + 0xea9488, + 0xea9489, + 0xea948a, + 0xea948b, + 0xea948c, + 0xea948d, + 0xea948e, + 0xea948f, + 0xea9490, + 0xea9491, + 0xea9492, + 0xea9493, + 0xea9494, + 0xea9495, + 0xea9496, + 0xea9497, + 0xea9498, + 0xea9499, + 0xea949a, + 0xea949b, + 0xea949c, + 0xea949d, + 0xea949e, + 0xea949f, + 0xea94a0, + 0xea94a1, + 0xea94a2, + 0xea94a3, + 0xea94a4, + 0xea94a5, + 0xea94a6, + 0xea94a7, + 0xea94a8, + 0xea94a9, + 0xea94aa, + 0xea94ab, + 0xea94ac, + 0xea94ad, + 0xea94ae, + 0xea94af, + 0xea94b0, + 0xea94b1, + 0xea94b2, + 0xea94b3, + 0xea94b4, + 0xea94b5, + 0xea94b6, + 0xea94b7, + 0xea94b8, + 0xea94b9, + 0xea94ba, + 0xea94bb, + 0xea94bc, + 0xea94bd, + 0xea94be, + 0xea94bf, + 0xea9580, + 0xea9581, + 0xea9582, + 0xea9583, + 0xea9584, + 0xea9585, + 0xea9586, + 0xea9587, + 0xea9588, + 0xea9589, + 0xea958a, + 0xea958b, + 0xea958c, + 0xea958d, + 0xea958e, + 0xea958f, + 0xea9590, + 0xea9591, + 0xea9592, + 0xea9593, + 0xea9594, + 0xea9595, + 0xea9596, + 0xea9597, + 0xea9598, + 0xea9599, + 0xea959a, + 0xea959b, + 0xea959c, + 0xea959d, + 0xea959e, + 0xea959f, + 0xea95a0, + 0xea95a1, + 0xea95a2, + 0xea95a3, + 0xea95a4, + 0xea95a5, + 0xea95a6, + 0xea95a7, + 0xea95a8, + 0xea95a9, + 0xea95aa, + 0xea95ab, + 0xea95ac, + 0xea95ad, + 0xea95ae, + 0xea95af, + 0xea95b0, + 0xea95b1, + 0xea95b2, + 0xea95b3, + 0xea95b4, + 0xea95b5, + 0xea95b6, + 0xea95b7, + 0xea95b8, + 0xea95b9, + 0xea95ba, + 0xea95bb, + 0xea95bc, + 0xea95bd, + 0xea95be, + 0xea95bf, + 0xea9680, + 0xea9681, + 0xea9682, + 0xea9683, + 0xea9684, + 0xea9685, + 0xea9686, + 0xea9687, + 0xea9688, + 0xea9689, + 0xea968a, + 0xea968b, + 0xea968c, + 0xea968d, + 0xea968e, + 0xea968f, + 0xea9690, + 0xea9691, + 0xea9692, + 0xea9693, + 0xea9694, + 0xea9695, + 0xea9696, + 0xea9697, + 0xea9698, + 0xea9699, + 0xea969a, + 0xea969b, + 0xea969c, + 0xea969d, + 0xea969e, + 0xea969f, + 0xea96a0, + 0xea96a1, + 0xea96a2, + 0xea96a3, + 0xea96a4, + 0xea96a5, + 0xea96a6, + 0xea96a7, + 0xea96a8, + 0xea96a9, + 0xea96aa, + 0xea96ab, + 0xea96ac, + 0xea96ad, + 0xea96ae, + 0xea96af, + 0xea96b0, + 0xea96b1, + 0xea96b2, + 0xea96b3, + 0xea96b4, + 0xea96b5, + 0xea96b6, + 0xea96b7, + 0xea96b8, + 0xea96b9, + 0xea96ba, + 0xea96bb, + 0xea96bc, + 0xea96bd, + 0xea96be, + 0xea96bf, + 0xea9780, + 0xea9781, + 0xea9782, + 0xea9783, + 0xea9784, + 0xea9785, + 0xea9786, + 0xea9787, + 0xea9788, + 0xea9789, + 0xea978a, + 0xea978b, + 0xea978c, + 0xea978d, + 0xea978e, + 0xea978f, + 0xea9790, + 0xea9791, + 0xea9792, + 0xea9793, + 0xea9794, + 0xea9795, + 0xea9796, + 0xea9797, + 0xea9798, + 0xea9799, + 0xea979a, + 0xea979b, + 0xea979c, + 0xea979d, + 0xea979e, + 0xea979f, + 0xea97a0, + 0xea97a1, + 0xea97a2, + 0xea97a3, + 0xea97a4, + 0xea97a5, + 0xea97a6, + 0xea97a7, + 0xea97a8, + 0xea97a9, + 0xea97aa, + 0xea97ab, + 0xea97ac, + 0xea97ad, + 0xea97ae, + 0xea97af, + 0xea97b0, + 0xea97b1, + 0xea97b2, + 0xea97b3, + 0xea97b4, + 0xea97b5, + 0xea97b6, + 0xea97b7, + 0xea97b8, + 0xea97b9, + 0xea97ba, + 0xea97bb, + 0xea97bc, + 0xea97bd, + 0xea97be, + 0xea97bf, + 0xea9880, + 0xea9881, + 0xea9882, + 0xea9883, + 0xea9884, + 0xea9885, + 0xea9886, + 0xea9887, + 0xea9888, + 0xea9889, + 0xea988a, + 0xea988b, + 0xea988c, + 0xea988d, + 0xea988e, + 0xea988f, + 0xea9890, + 0xea9891, + 0xea9892, + 0xea9893, + 0xea9894, + 0xea9895, + 0xea9896, + 0xea9897, + 0xea9898, + 0xea9899, + 0xea989a, + 0xea989b, + 0xea989c, + 0xea989d, + 0xea989e, + 0xea989f, + 0xea98a0, + 0xea98a1, + 0xea98a2, + 0xea98a3, + 0xea98a4, + 0xea98a5, + 0xea98a6, + 0xea98a7, + 0xea98a8, + 0xea98a9, + 0xea98aa, + 0xea98ab, + 0xea98ac, + 0xea98ad, + 0xea98ae, + 0xea98af, + 0xea98b0, + 0xea98b1, + 0xea98b2, + 0xea98b3, + 0xea98b4, + 0xea98b5, + 0xea98b6, + 0xea98b7, + 0xea98b8, + 0xea98b9, + 0xea98ba, + 0xea98bb, + 0xea98bc, + 0xea98bd, + 0xea98be, + 0xea98bf, + 0xea9980, + 0xea9981, + 0xea9982, + 0xea9983, + 0xea9984, + 0xea9985, + 0xea9986, + 0xea9987, + 0xea9988, + 0xea9989, + 0xea998a, + 0xea998b, + 0xea998c, + 0xea998d, + 0xea998e, + 0xea998f, + 0xea9990, + 0xea9991, + 0xea9992, + 0xea9993, + 0xea9994, + 0xea9995, + 0xea9996, + 0xea9997, + 0xea9998, + 0xea9999, + 0xea999a, + 0xea999b, + 0xea999c, + 0xea999d, + 0xea999e, + 0xea999f, + 0xea99a0, + 0xea99a1, + 0xea99a2, + 0xea99a3, + 0xea99a4, + 0xea99a5, + 0xea99a6, + 0xea99a7, + 0xea99a8, + 0xea99a9, + 0xea99aa, + 0xea99ab, + 0xea99ac, + 0xea99ad, + 0xea99ae, + 0xea99af, + 0xea99b0, + 0xea99b1, + 0xea99b2, + 0xea99b3, + 0xea99b4, + 0xea99b5, + 0xea99b6, + 0xea99b7, + 0xea99b8, + 0xea99b9, + 0xea99ba, + 0xea99bb, + 0xea99bc, + 0xea99bd, + 0xea99be, + 0xea99bf, + 0xea9a80, + 0xea9a81, + 0xea9a82, + 0xea9a83, + 0xea9a84, + 0xea9a85, + 0xea9a86, + 0xea9a87, + 0xea9a88, + 0xea9a89, + 0xea9a8a, + 0xea9a8b, + 0xea9a8c, + 0xea9a8d, + 0xea9a8e, + 0xea9a8f, + 0xea9a90, + 0xea9a91, + 0xea9a92, + 0xea9a93, + 0xea9a94, + 0xea9a95, + 0xea9a96, + 0xea9a97, + 0xea9a98, + 0xea9a99, + 0xea9a9a, + 0xea9a9b, + 0xea9a9c, + 0xea9a9d, + 0xea9a9e, + 0xea9a9f, + 0xea9aa0, + 0xea9aa1, + 0xea9aa2, + 0xea9aa3, + 0xea9aa4, + 0xea9aa5, + 0xea9aa6, + 0xea9aa7, + 0xea9aa8, + 0xea9aa9, + 0xea9aaa, + 0xea9aab, + 0xea9aac, + 0xea9aad, + 0xea9aae, + 0xea9aaf, + 0xea9ab0, + 0xea9ab1, + 0xea9ab2, + 0xea9ab3, + 0xea9ab4, + 0xea9ab5, + 0xea9ab6, + 0xea9ab7, + 0xea9ab8, + 0xea9ab9, + 0xea9aba, + 0xea9abb, + 0xea9abc, + 0xea9abd, + 0xea9abe, + 0xea9abf, + 0xea9b80, + 0xea9b81, + 0xea9b82, + 0xea9b83, + 0xea9b84, + 0xea9b85, + 0xea9b86, + 0xea9b87, + 0xea9b88, + 0xea9b89, + 0xea9b8a, + 0xea9b8b, + 0xea9b8c, + 0xea9b8d, + 0xea9b8e, + 0xea9b8f, + 0xea9b90, + 0xea9b91, + 0xea9b92, + 0xea9b93, + 0xea9b94, + 0xea9b95, + 0xea9b96, + 0xea9b97, + 0xea9b98, + 0xea9b99, + 0xea9b9a, + 0xea9b9b, + 0xea9b9c, + 0xea9b9d, + 0xea9b9e, + 0xea9b9f, + 0xea9ba0, + 0xea9ba1, + 0xea9ba2, + 0xea9ba3, + 0xea9ba4, + 0xea9ba5, + 0xea9ba6, + 0xea9ba7, + 0xea9ba8, + 0xea9ba9, + 0xea9baa, + 0xea9bab, + 0xea9bac, + 0xea9bad, + 0xea9bae, + 0xea9baf, + 0xea9bb0, + 0xea9bb1, + 0xea9bb2, + 0xea9bb3, + 0xea9bb4, + 0xea9bb5, + 0xea9bb6, + 0xea9bb7, + 0xea9bb8, + 0xea9bb9, + 0xea9bba, + 0xea9bbb, + 0xea9bbc, + 0xea9bbd, + 0xea9bbe, + 0xea9bbf, + 0xea9c80, + 0xea9c81, + 0xea9c82, + 0xea9c83, + 0xea9c84, + 0xea9c85, + 0xea9c86, + 0xea9c87, + 0xea9c88, + 0xea9c89, + 0xea9c8a, + 0xea9c8b, + 0xea9c8c, + 0xea9c8d, + 0xea9c8e, + 0xea9c8f, + 0xea9c90, + 0xea9c91, + 0xea9c92, + 0xea9c93, + 0xea9c94, + 0xea9c95, + 0xea9c96, + 0xea9c97, + 0xea9c98, + 0xea9c99, + 0xea9c9a, + 0xea9c9b, + 0xea9c9c, + 0xea9c9d, + 0xea9c9e, + 0xea9c9f, + 0xea9ca0, + 0xea9ca1, + 0xea9ca2, + 0xea9ca3, + 0xea9ca4, + 0xea9ca5, + 0xea9ca6, + 0xea9ca7, + 0xea9ca8, + 0xea9ca9, + 0xea9caa, + 0xea9cab, + 0xea9cac, + 0xea9cad, + 0xea9cae, + 0xea9caf, + 0xea9cb0, + 0xea9cb1, + 0xea9cb2, + 0xea9cb3, + 0xea9cb4, + 0xea9cb5, + 0xea9cb6, + 0xea9cb7, + 0xea9cb8, + 0xea9cb9, + 0xea9cba, + 0xea9cbb, + 0xea9cbc, + 0xea9cbd, + 0xea9cbe, + 0xea9cbf, + 0xea9d80, + 0xea9d81, + 0xea9d82, + 0xea9d83, + 0xea9d84, + 0xea9d85, + 0xea9d86, + 0xea9d87, + 0xea9d88, + 0xea9d89, + 0xea9d8a, + 0xea9d8b, + 0xea9d8c, + 0xea9d8d, + 0xea9d8e, + 0xea9d8f, + 0xea9d90, + 0xea9d91, + 0xea9d92, + 0xea9d93, + 0xea9d94, + 0xea9d95, + 0xea9d96, + 0xea9d97, + 0xea9d98, + 0xea9d99, + 0xea9d9a, + 0xea9d9b, + 0xea9d9c, + 0xea9d9d, + 0xea9d9e, + 0xea9d9f, + 0xea9da0, + 0xea9da1, + 0xea9da2, + 0xea9da3, + 0xea9da4, + 0xea9da5, + 0xea9da6, + 0xea9da7, + 0xea9da8, + 0xea9da9, + 0xea9daa, + 0xea9dab, + 0xea9dac, + 0xea9dad, + 0xea9dae, + 0xea9daf, + 0xea9db0, + 0xea9db1, + 0xea9db2, + 0xea9db3, + 0xea9db4, + 0xea9db5, + 0xea9db6, + 0xea9db7, + 0xea9db8, + 0xea9db9, + 0xea9dba, + 0xea9dbb, + 0xea9dbc, + 0xea9dbd, + 0xea9dbe, + 0xea9dbf, + 0xea9e80, + 0xea9e81, + 0xea9e82, + 0xea9e83, + 0xea9e84, + 0xea9e85, + 0xea9e86, + 0xea9e87, + 0xea9e88, + 0xea9e89, + 0xea9e8a, + 0xea9e8b, + 0xea9e8c, + 0xea9e8d, + 0xea9e8e, + 0xea9e8f, + 0xea9e90, + 0xea9e91, + 0xea9e92, + 0xea9e93, + 0xea9e94, + 0xea9e95, + 0xea9e96, + 0xea9e97, + 0xea9e98, + 0xea9e99, + 0xea9e9a, + 0xea9e9b, + 0xea9e9c, + 0xea9e9d, + 0xea9e9e, + 0xea9e9f, + 0xea9ea0, + 0xea9ea1, + 0xea9ea2, + 0xea9ea3, + 0xea9ea4, + 0xea9ea5, + 0xea9ea6, + 0xea9ea7, + 0xea9ea8, + 0xea9ea9, + 0xea9eaa, + 0xea9eab, + 0xea9eac, + 0xea9ead, + 0xea9eae, + 0xea9eaf, + 0xea9eb0, + 0xea9eb1, + 0xea9eb2, + 0xea9eb3, + 0xea9eb4, + 0xea9eb5, + 0xea9eb6, + 0xea9eb7, + 0xea9eb8, + 0xea9eb9, + 0xea9eba, + 0xea9ebb, + 0xea9ebc, + 0xea9ebd, + 0xea9ebe, + 0xea9ebf, + 0xea9f80, + 0xea9f81, + 0xea9f82, + 0xea9f83, + 0xea9f84, + 0xea9f85, + 0xea9f86, + 0xea9f87, + 0xea9f88, + 0xea9f89, + 0xea9f8a, + 0xea9f8b, + 0xea9f8c, + 0xea9f8d, + 0xea9f8e, + 0xea9f8f, + 0xea9f90, + 0xea9f91, + 0xea9f92, + 0xea9f93, + 0xea9f94, + 0xea9f95, + 0xea9f96, + 0xea9f97, + 0xea9f98, + 0xea9f99, + 0xea9f9a, + 0xea9f9b, + 0xea9f9c, + 0xea9f9d, + 0xea9f9e, + 0xea9f9f, + 0xea9fa0, + 0xea9fa1, + 0xea9fa2, + 0xea9fa3, + 0xea9fa4, + 0xea9fa5, + 0xea9fa6, + 0xea9fa7, + 0xea9fa8, + 0xea9fa9, + 0xea9faa, + 0xea9fab, + 0xea9fac, + 0xea9fad, + 0xea9fae, + 0xea9faf, + 0xea9fb0, + 0xea9fb1, + 0xea9fb2, + 0xea9fb3, + 0xea9fb4, + 0xea9fb5, + 0xea9fb6, + 0xea9fb7, + 0xea9fb8, + 0xea9fb9, + 0xea9fba, + 0xea9fbb, + 0xea9fbc, + 0xea9fbd, + 0xea9fbe, + 0xea9fbf, + 0xeaa080, + 0xeaa081, + 0xeaa082, + 0xeaa083, + 0xeaa084, + 0xeaa085, + 0xeaa086, + 0xeaa087, + 0xeaa088, + 0xeaa089, + 0xeaa08a, + 0xeaa08b, + 0xeaa08c, + 0xeaa08d, + 0xeaa08e, + 0xeaa08f, + 0xeaa090, + 0xeaa091, + 0xeaa092, + 0xeaa093, + 0xeaa094, + 0xeaa095, + 0xeaa096, + 0xeaa097, + 0xeaa098, + 0xeaa099, + 0xeaa09a, + 0xeaa09b, + 0xeaa09c, + 0xeaa09d, + 0xeaa09e, + 0xeaa09f, + 0xeaa0a0, + 0xeaa0a1, + 0xeaa0a2, + 0xeaa0a3, + 0xeaa0a4, + 0xeaa0a5, + 0xeaa0a6, + 0xeaa0a7, + 0xeaa0a8, + 0xeaa0a9, + 0xeaa0aa, + 0xeaa0ab, + 0xeaa0ac, + 0xeaa0ad, + 0xeaa0ae, + 0xeaa0af, + 0xeaa0b0, + 0xeaa0b1, + 0xeaa0b2, + 0xeaa0b3, + 0xeaa0b4, + 0xeaa0b5, + 0xeaa0b6, + 0xeaa0b7, + 0xeaa0b8, + 0xeaa0b9, + 0xeaa0ba, + 0xeaa0bb, + 0xeaa0bc, + 0xeaa0bd, + 0xeaa0be, + 0xeaa0bf, + 0xeaa180, + 0xeaa181, + 0xeaa182, + 0xeaa183, + 0xeaa184, + 0xeaa185, + 0xeaa186, + 0xeaa187, + 0xeaa188, + 0xeaa189, + 0xeaa18a, + 0xeaa18b, + 0xeaa18c, + 0xeaa18d, + 0xeaa18e, + 0xeaa18f, + 0xeaa190, + 0xeaa191, + 0xeaa192, + 0xeaa193, + 0xeaa194, + 0xeaa195, + 0xeaa196, + 0xeaa197, + 0xeaa198, + 0xeaa199, + 0xeaa19a, + 0xeaa19b, + 0xeaa19c, + 0xeaa19d, + 0xeaa19e, + 0xeaa19f, + 0xeaa1a0, + 0xeaa1a1, + 0xeaa1a2, + 0xeaa1a3, + 0xeaa1a4, + 0xeaa1a5, + 0xeaa1a6, + 0xeaa1a7, + 0xeaa1a8, + 0xeaa1a9, + 0xeaa1aa, + 0xeaa1ab, + 0xeaa1ac, + 0xeaa1ad, + 0xeaa1ae, + 0xeaa1af, + 0xeaa1b0, + 0xeaa1b1, + 0xeaa1b2, + 0xeaa1b3, + 0xeaa1b4, + 0xeaa1b5, + 0xeaa1b6, + 0xeaa1b7, + 0xeaa1b8, + 0xeaa1b9, + 0xeaa1ba, + 0xeaa1bb, + 0xeaa1bc, + 0xeaa1bd, + 0xeaa1be, + 0xeaa1bf, + 0xeaa280, + 0xeaa281, + 0xeaa282, + 0xeaa283, + 0xeaa284, + 0xeaa285, + 0xeaa286, + 0xeaa287, + 0xeaa288, + 0xeaa289, + 0xeaa28a, + 0xeaa28b, + 0xeaa28c, + 0xeaa28d, + 0xeaa28e, + 0xeaa28f, + 0xeaa290, + 0xeaa291, + 0xeaa292, + 0xeaa293, + 0xeaa294, + 0xeaa295, + 0xeaa296, + 0xeaa297, + 0xeaa298, + 0xeaa299, + 0xeaa29a, + 0xeaa29b, + 0xeaa29c, + 0xeaa29d, + 0xeaa29e, + 0xeaa29f, + 0xeaa2a0, + 0xeaa2a1, + 0xeaa2a2, + 0xeaa2a3, + 0xeaa2a4, + 0xeaa2a5, + 0xeaa2a6, + 0xeaa2a7, + 0xeaa2a8, + 0xeaa2a9, + 0xeaa2aa, + 0xeaa2ab, + 0xeaa2ac, + 0xeaa2ad, + 0xeaa2ae, + 0xeaa2af, + 0xeaa2b0, + 0xeaa2b1, + 0xeaa2b2, + 0xeaa2b3, + 0xeaa2b4, + 0xeaa2b5, + 0xeaa2b6, + 0xeaa2b7, + 0xeaa2b8, + 0xeaa2b9, + 0xeaa2ba, + 0xeaa2bb, + 0xeaa2bc, + 0xeaa2bd, + 0xeaa2be, + 0xeaa2bf, + 0xeaa380, + 0xeaa381, + 0xeaa382, + 0xeaa383, + 0xeaa384, + 0xeaa385, + 0xeaa386, + 0xeaa387, + 0xeaa388, + 0xeaa389, + 0xeaa38a, + 0xeaa38b, + 0xeaa38c, + 0xeaa38d, + 0xeaa38e, + 0xeaa38f, + 0xeaa390, + 0xeaa391, + 0xeaa392, + 0xeaa393, + 0xeaa394, + 0xeaa395, + 0xeaa396, + 0xeaa397, + 0xeaa398, + 0xeaa399, + 0xeaa39a, + 0xeaa39b, + 0xeaa39c, + 0xeaa39d, + 0xeaa39e, + 0xeaa39f, + 0xeaa3a0, + 0xeaa3a1, + 0xeaa3a2, + 0xeaa3a3, + 0xeaa3a4, + 0xeaa3a5, + 0xeaa3a6, + 0xeaa3a7, + 0xeaa3a8, + 0xeaa3a9, + 0xeaa3aa, + 0xeaa3ab, + 0xeaa3ac, + 0xeaa3ad, + 0xeaa3ae, + 0xeaa3af, + 0xeaa3b0, + 0xeaa3b1, + 0xeaa3b2, + 0xeaa3b3, + 0xeaa3b4, + 0xeaa3b5, + 0xeaa3b6, + 0xeaa3b7, + 0xeaa3b8, + 0xeaa3b9, + 0xeaa3ba, + 0xeaa3bb, + 0xeaa3bc, + 0xeaa3bd, + 0xeaa3be, + 0xeaa3bf, + 0xeaa480, + 0xeaa481, + 0xeaa482, + 0xeaa483, + 0xeaa484, + 0xeaa485, + 0xeaa486, + 0xeaa487, + 0xeaa488, + 0xeaa489, + 0xeaa48a, + 0xeaa48b, + 0xeaa48c, + 0xeaa48d, + 0xeaa48e, + 0xeaa48f, + 0xeaa490, + 0xeaa491, + 0xeaa492, + 0xeaa493, + 0xeaa494, + 0xeaa495, + 0xeaa496, + 0xeaa497, + 0xeaa498, + 0xeaa499, + 0xeaa49a, + 0xeaa49b, + 0xeaa49c, + 0xeaa49d, + 0xeaa49e, + 0xeaa49f, + 0xeaa4a0, + 0xeaa4a1, + 0xeaa4a2, + 0xeaa4a3, + 0xeaa4a4, + 0xeaa4a5, + 0xeaa4a6, + 0xeaa4a7, + 0xeaa4a8, + 0xeaa4a9, + 0xeaa4aa, + 0xeaa4ab, + 0xeaa4ac, + 0xeaa4ad, + 0xeaa4ae, + 0xeaa4af, + 0xeaa4b0, + 0xeaa4b1, + 0xeaa4b2, + 0xeaa4b3, + 0xeaa4b4, + 0xeaa4b5, + 0xeaa4b6, + 0xeaa4b7, + 0xeaa4b8, + 0xeaa4b9, + 0xeaa4ba, + 0xeaa4bb, + 0xeaa4bc, + 0xeaa4bd, + 0xeaa4be, + 0xeaa4bf, + 0xeaa580, + 0xeaa581, + 0xeaa582, + 0xeaa583, + 0xeaa584, + 0xeaa585, + 0xeaa586, + 0xeaa587, + 0xeaa588, + 0xeaa589, + 0xeaa58a, + 0xeaa58b, + 0xeaa58c, + 0xeaa58d, + 0xeaa58e, + 0xeaa58f, + 0xeaa590, + 0xeaa591, + 0xeaa592, + 0xeaa593, + 0xeaa594, + 0xeaa595, + 0xeaa596, + 0xeaa597, + 0xeaa598, + 0xeaa599, + 0xeaa59a, + 0xeaa59b, + 0xeaa59c, + 0xeaa59d, + 0xeaa59e, + 0xeaa59f, + 0xeaa5a0, + 0xeaa5a1, + 0xeaa5a2, + 0xeaa5a3, + 0xeaa5a4, + 0xeaa5a5, + 0xeaa5a6, + 0xeaa5a7, + 0xeaa5a8, + 0xeaa5a9, + 0xeaa5aa, + 0xeaa5ab, + 0xeaa5ac, + 0xeaa5ad, + 0xeaa5ae, + 0xeaa5af, + 0xeaa5b0, + 0xeaa5b1, + 0xeaa5b2, + 0xeaa5b3, + 0xeaa5b4, + 0xeaa5b5, + 0xeaa5b6, + 0xeaa5b7, + 0xeaa5b8, + 0xeaa5b9, + 0xeaa5ba, + 0xeaa5bb, + 0xeaa5bc, + 0xeaa5bd, + 0xeaa5be, + 0xeaa5bf, + 0xeaa680, + 0xeaa681, + 0xeaa682, + 0xeaa683, + 0xeaa684, + 0xeaa685, + 0xeaa686, + 0xeaa687, + 0xeaa688, + 0xeaa689, + 0xeaa68a, + 0xeaa68b, + 0xeaa68c, + 0xeaa68d, + 0xeaa68e, + 0xeaa68f, + 0xeaa690, + 0xeaa691, + 0xeaa692, + 0xeaa693, + 0xeaa694, + 0xeaa695, + 0xeaa696, + 0xeaa697, + 0xeaa698, + 0xeaa699, + 0xeaa69a, + 0xeaa69b, + 0xeaa69c, + 0xeaa69d, + 0xeaa69e, + 0xeaa69f, + 0xeaa6a0, + 0xeaa6a1, + 0xeaa6a2, + 0xeaa6a3, + 0xeaa6a4, + 0xeaa6a5, + 0xeaa6a6, + 0xeaa6a7, + 0xeaa6a8, + 0xeaa6a9, + 0xeaa6aa, + 0xeaa6ab, + 0xeaa6ac, + 0xeaa6ad, + 0xeaa6ae, + 0xeaa6af, + 0xeaa6b0, + 0xeaa6b1, + 0xeaa6b2, + 0xeaa6b3, + 0xeaa6b4, + 0xeaa6b5, + 0xeaa6b6, + 0xeaa6b7, + 0xeaa6b8, + 0xeaa6b9, + 0xeaa6ba, + 0xeaa6bb, + 0xeaa6bc, + 0xeaa6bd, + 0xeaa6be, + 0xeaa6bf, + 0xeaa780, + 0xeaa781, + 0xeaa782, + 0xeaa783, + 0xeaa784, + 0xeaa785, + 0xeaa786, + 0xeaa787, + 0xeaa788, + 0xeaa789, + 0xeaa78a, + 0xeaa78b, + 0xeaa78c, + 0xeaa78d, + 0xeaa78e, + 0xeaa78f, + 0xeaa790, + 0xeaa791, + 0xeaa792, + 0xeaa793, + 0xeaa794, + 0xeaa795, + 0xeaa796, + 0xeaa797, + 0xeaa798, + 0xeaa799, + 0xeaa79a, + 0xeaa79b, + 0xeaa79c, + 0xeaa79d, + 0xeaa79e, + 0xeaa79f, + 0xeaa7a0, + 0xeaa7a1, + 0xeaa7a2, + 0xeaa7a3, + 0xeaa7a4, + 0xeaa7a5, + 0xeaa7a6, + 0xeaa7a7, + 0xeaa7a8, + 0xeaa7a9, + 0xeaa7aa, + 0xeaa7ab, + 0xeaa7ac, + 0xeaa7ad, + 0xeaa7ae, + 0xeaa7af, + 0xeaa7b0, + 0xeaa7b1, + 0xeaa7b2, + 0xeaa7b3, + 0xeaa7b4, + 0xeaa7b5, + 0xeaa7b6, + 0xeaa7b7, + 0xeaa7b8, + 0xeaa7b9, + 0xeaa7ba, + 0xeaa7bb, + 0xeaa7bc, + 0xeaa7bd, + 0xeaa7be, + 0xeaa7bf, + 0xeaa880, + 0xeaa881, + 0xeaa882, + 0xeaa883, + 0xeaa884, + 0xeaa885, + 0xeaa886, + 0xeaa887, + 0xeaa888, + 0xeaa889, + 0xeaa88a, + 0xeaa88b, + 0xeaa88c, + 0xeaa88d, + 0xeaa88e, + 0xeaa88f, + 0xeaa890, + 0xeaa891, + 0xeaa892, + 0xeaa893, + 0xeaa894, + 0xeaa895, + 0xeaa896, + 0xeaa897, + 0xeaa898, + 0xeaa899, + 0xeaa89a, + 0xeaa89b, + 0xeaa89c, + 0xeaa89d, + 0xeaa89e, + 0xeaa89f, + 0xeaa8a0, + 0xeaa8a1, + 0xeaa8a2, + 0xeaa8a3, + 0xeaa8a4, + 0xeaa8a5, + 0xeaa8a6, + 0xeaa8a7, + 0xeaa8a8, + 0xeaa8a9, + 0xeaa8aa, + 0xeaa8ab, + 0xeaa8ac, + 0xeaa8ad, + 0xeaa8ae, + 0xeaa8af, + 0xeaa8b0, + 0xeaa8b1, + 0xeaa8b2, + 0xeaa8b3, + 0xeaa8b4, + 0xeaa8b5, + 0xeaa8b6, + 0xeaa8b7, + 0xeaa8b8, + 0xeaa8b9, + 0xeaa8ba, + 0xeaa8bb, + 0xeaa8bc, + 0xeaa8bd, + 0xeaa8be, + 0xeaa8bf, + 0xeaa980, + 0xeaa981, + 0xeaa982, + 0xeaa983, + 0xeaa984, + 0xeaa985, + 0xeaa986, + 0xeaa987, + 0xeaa988, + 0xeaa989, + 0xeaa98a, + 0xeaa98b, + 0xeaa98c, + 0xeaa98d, + 0xeaa98e, + 0xeaa98f, + 0xeaa990, + 0xeaa991, + 0xeaa992, + 0xeaa993, + 0xeaa994, + 0xeaa995, + 0xeaa996, + 0xeaa997, + 0xeaa998, + 0xeaa999, + 0xeaa99a, + 0xeaa99b, + 0xeaa99c, + 0xeaa99d, + 0xeaa99e, + 0xeaa99f, + 0xeaa9a0, + 0xeaa9a1, + 0xeaa9a2, + 0xeaa9a3, + 0xeaa9a4, + 0xeaa9a5, + 0xeaa9a6, + 0xeaa9a7, + 0xeaa9a8, + 0xeaa9a9, + 0xeaa9aa, + 0xeaa9ab, + 0xeaa9ac, + 0xeaa9ad, + 0xeaa9ae, + 0xeaa9af, + 0xeaa9b0, + 0xeaa9b1, + 0xeaa9b2, + 0xeaa9b3, + 0xeaa9b4, + 0xeaa9b5, + 0xeaa9b6, + 0xeaa9b7, + 0xeaa9b8, + 0xeaa9b9, + 0xeaa9ba, + 0xeaa9bb, + 0xeaa9bc, + 0xeaa9bd, + 0xeaa9be, + 0xeaa9bf, + 0xeaaa80, + 0xeaaa81, + 0xeaaa82, + 0xeaaa83, + 0xeaaa84, + 0xeaaa85, + 0xeaaa86, + 0xeaaa87, + 0xeaaa88, + 0xeaaa89, + 0xeaaa8a, + 0xeaaa8b, + 0xeaaa8c, + 0xeaaa8d, + 0xeaaa8e, + 0xeaaa8f, + 0xeaaa90, + 0xeaaa91, + 0xeaaa92, + 0xeaaa93, + 0xeaaa94, + 0xeaaa95, + 0xeaaa96, + 0xeaaa97, + 0xeaaa98, + 0xeaaa99, + 0xeaaa9a, + 0xeaaa9b, + 0xeaaa9c, + 0xeaaa9d, + 0xeaaa9e, + 0xeaaa9f, + 0xeaaaa0, + 0xeaaaa1, + 0xeaaaa2, + 0xeaaaa3, + 0xeaaaa4, + 0xeaaaa5, + 0xeaaaa6, + 0xeaaaa7, + 0xeaaaa8, + 0xeaaaa9, + 0xeaaaaa, + 0xeaaaab, + 0xeaaaac, + 0xeaaaad, + 0xeaaaae, + 0xeaaaaf, + 0xeaaab0, + 0xeaaab1, + 0xeaaab2, + 0xeaaab3, + 0xeaaab4, + 0xeaaab5, + 0xeaaab6, + 0xeaaab7, + 0xeaaab8, + 0xeaaab9, + 0xeaaaba, + 0xeaaabb, + 0xeaaabc, + 0xeaaabd, + 0xeaaabe, + 0xeaaabf, + 0xeaab80, + 0xeaab81, + 0xeaab82, + 0xeaab83, + 0xeaab84, + 0xeaab85, + 0xeaab86, + 0xeaab87, + 0xeaab88, + 0xeaab89, + 0xeaab8a, + 0xeaab8b, + 0xeaab8c, + 0xeaab8d, + 0xeaab8e, + 0xeaab8f, + 0xeaab90, + 0xeaab91, + 0xeaab92, + 0xeaab93, + 0xeaab94, + 0xeaab95, + 0xeaab96, + 0xeaab97, + 0xeaab98, + 0xeaab99, + 0xeaab9a, + 0xeaab9b, + 0xeaab9c, + 0xeaab9d, + 0xeaab9e, + 0xeaab9f, + 0xeaaba0, + 0xeaaba1, + 0xeaaba2, + 0xeaaba3, + 0xeaaba4, + 0xeaaba5, + 0xeaaba6, + 0xeaaba7, + 0xeaaba8, + 0xeaaba9, + 0xeaabaa, + 0xeaabab, + 0xeaabac, + 0xeaabad, + 0xeaabae, + 0xeaabaf, + 0xeaabb0, + 0xeaabb1, + 0xeaabb2, + 0xeaabb3, + 0xeaabb4, + 0xeaabb5, + 0xeaabb6, + 0xeaabb7, + 0xeaabb8, + 0xeaabb9, + 0xeaabba, + 0xeaabbb, + 0xeaabbc, + 0xeaabbd, + 0xeaabbe, + 0xeaabbf, + 0xeaac80, + 0xeaac81, + 0xeaac82, + 0xeaac83, + 0xeaac84, + 0xeaac85, + 0xeaac86, + 0xeaac87, + 0xeaac88, + 0xeaac89, + 0xeaac8a, + 0xeaac8b, + 0xeaac8c, + 0xeaac8d, + 0xeaac8e, + 0xeaac8f, + 0xeaac90, + 0xeaac91, + 0xeaac92, + 0xeaac93, + 0xeaac94, + 0xeaac95, + 0xeaac96, + 0xeaac97, + 0xeaac98, + 0xeaac99, + 0xeaac9a, + 0xeaac9b, + 0xeaac9c, + 0xeaac9d, + 0xeaac9e, + 0xeaac9f, + 0xeaaca0, + 0xeaaca1, + 0xeaaca2, + 0xeaaca3, + 0xeaaca4, + 0xeaaca5, + 0xeaaca6, + 0xeaaca7, + 0xeaaca8, + 0xeaaca9, + 0xeaacaa, + 0xeaacab, + 0xeaacac, + 0xeaacad, + 0xeaacae, + 0xeaacaf, + 0xeaacb0, + 0xeaacb1, + 0xeaacb2, + 0xeaacb3, + 0xeaacb4, + 0xeaacb5, + 0xeaacb6, + 0xeaacb7, + 0xeaacb8, + 0xeaacb9, + 0xeaacba, + 0xeaacbb, + 0xeaacbc, + 0xeaacbd, + 0xeaacbe, + 0xeaacbf, + 0xeaad80, + 0xeaad81, + 0xeaad82, + 0xeaad83, + 0xeaad84, + 0xeaad85, + 0xeaad86, + 0xeaad87, + 0xeaad88, + 0xeaad89, + 0xeaad8a, + 0xeaad8b, + 0xeaad8c, + 0xeaad8d, + 0xeaad8e, + 0xeaad8f, + 0xeaad90, + 0xeaad91, + 0xeaad92, + 0xeaad93, + 0xeaad94, + 0xeaad95, + 0xeaad96, + 0xeaad97, + 0xeaad98, + 0xeaad99, + 0xeaad9a, + 0xeaad9b, + 0xeaad9c, + 0xeaad9d, + 0xeaad9e, + 0xeaad9f, + 0xeaada0, + 0xeaada1, + 0xeaada2, + 0xeaada3, + 0xeaada4, + 0xeaada5, + 0xeaada6, + 0xeaada7, + 0xeaada8, + 0xeaada9, + 0xeaadaa, + 0xeaadab, + 0xeaadac, + 0xeaadad, + 0xeaadae, + 0xeaadaf, + 0xeaadb0, + 0xeaadb1, + 0xeaadb2, + 0xeaadb3, + 0xeaadb4, + 0xeaadb5, + 0xeaadb6, + 0xeaadb7, + 0xeaadb8, + 0xeaadb9, + 0xeaadba, + 0xeaadbb, + 0xeaadbc, + 0xeaadbd, + 0xeaadbe, + 0xeaadbf, + 0xeaae80, + 0xeaae81, + 0xeaae82, + 0xeaae83, + 0xeaae84, + 0xeaae85, + 0xeaae86, + 0xeaae87, + 0xeaae88, + 0xeaae89, + 0xeaae8a, + 0xeaae8b, + 0xeaae8c, + 0xeaae8d, + 0xeaae8e, + 0xeaae8f, + 0xeaae90, + 0xeaae91, + 0xeaae92, + 0xeaae93, + 0xeaae94, + 0xeaae95, + 0xeaae96, + 0xeaae97, + 0xeaae98, + 0xeaae99, + 0xeaae9a, + 0xeaae9b, + 0xeaae9c, + 0xeaae9d, + 0xeaae9e, + 0xeaae9f, + 0xeaaea0, + 0xeaaea1, + 0xeaaea2, + 0xeaaea3, + 0xeaaea4, + 0xeaaea5, + 0xeaaea6, + 0xeaaea7, + 0xeaaea8, + 0xeaaea9, + 0xeaaeaa, + 0xeaaeab, + 0xeaaeac, + 0xeaaead, + 0xeaaeae, + 0xeaaeaf, + 0xeaaeb0, + 0xeaaeb1, + 0xeaaeb2, + 0xeaaeb3, + 0xeaaeb4, + 0xeaaeb5, + 0xeaaeb6, + 0xeaaeb7, + 0xeaaeb8, + 0xeaaeb9, + 0xeaaeba, + 0xeaaebb, + 0xeaaebc, + 0xeaaebd, + 0xeaaebe, + 0xeaaebf, + 0xeaaf80, + 0xeaaf81, + 0xeaaf82, + 0xeaaf83, + 0xeaaf84, + 0xeaaf85, + 0xeaaf86, + 0xeaaf87, + 0xeaaf88, + 0xeaaf89, + 0xeaaf8a, + 0xeaaf8b, + 0xeaaf8c, + 0xeaaf8d, + 0xeaaf8e, + 0xeaaf8f, + 0xeaaf90, + 0xeaaf91, + 0xeaaf92, + 0xeaaf93, + 0xeaaf94, + 0xeaaf95, + 0xeaaf96, + 0xeaaf97, + 0xeaaf98, + 0xeaaf99, + 0xeaaf9a, + 0xeaaf9b, + 0xeaaf9c, + 0xeaaf9d, + 0xeaaf9e, + 0xeaaf9f, + 0xeaafa0, + 0xeaafa1, + 0xeaafa2, + 0xeaafa3, + 0xeaafa4, + 0xeaafa5, + 0xeaafa6, + 0xeaafa7, + 0xeaafa8, + 0xeaafa9, + 0xeaafaa, + 0xeaafab, + 0xeaafac, + 0xeaafad, + 0xeaafae, + 0xeaafaf, + 0xeaafb0, + 0xeaafb1, + 0xeaafb2, + 0xeaafb3, + 0xeaafb4, + 0xeaafb5, + 0xeaafb6, + 0xeaafb7, + 0xeaafb8, + 0xeaafb9, + 0xeaafba, + 0xeaafbb, + 0xeaafbc, + 0xeaafbd, + 0xeaafbe, + 0xeaafbf, + 0xeab080, + 0xeab081, + 0xeab082, + 0xeab083, + 0xeab084, + 0xeab085, + 0xeab086, + 0xeab087, + 0xeab088, + 0xeab089, + 0xeab08a, + 0xeab08b, + 0xeab08c, + 0xeab08d, + 0xeab08e, + 0xeab08f, + 0xeab090, + 0xeab091, + 0xeab092, + 0xeab093, + 0xeab094, + 0xeab095, + 0xeab096, + 0xeab097, + 0xeab098, + 0xeab099, + 0xeab09a, + 0xeab09b, + 0xeab09c, + 0xeab09d, + 0xeab09e, + 0xeab09f, + 0xeab0a0, + 0xeab0a1, + 0xeab0a2, + 0xeab0a3, + 0xeab0a4, + 0xeab0a5, + 0xeab0a6, + 0xeab0a7, + 0xeab0a8, + 0xeab0a9, + 0xeab0aa, + 0xeab0ab, + 0xeab0ac, + 0xeab0ad, + 0xeab0ae, + 0xeab0af, + 0xeab0b0, + 0xeab0b1, + 0xeab0b2, + 0xeab0b3, + 0xeab0b4, + 0xeab0b5, + 0xeab0b6, + 0xeab0b7, + 0xeab0b8, + 0xeab0b9, + 0xeab0ba, + 0xeab0bb, + 0xeab0bc, + 0xeab0bd, + 0xeab0be, + 0xeab0bf, + 0xeab180, + 0xeab181, + 0xeab182, + 0xeab183, + 0xeab184, + 0xeab185, + 0xeab186, + 0xeab187, + 0xeab188, + 0xeab189, + 0xeab18a, + 0xeab18b, + 0xeab18c, + 0xeab18d, + 0xeab18e, + 0xeab18f, + 0xeab190, + 0xeab191, + 0xeab192, + 0xeab193, + 0xeab194, + 0xeab195, + 0xeab196, + 0xeab197, + 0xeab198, + 0xeab199, + 0xeab19a, + 0xeab19b, + 0xeab19c, + 0xeab19d, + 0xeab19e, + 0xeab19f, + 0xeab1a0, + 0xeab1a1, + 0xeab1a2, + 0xeab1a3, + 0xeab1a4, + 0xeab1a5, + 0xeab1a6, + 0xeab1a7, + 0xeab1a8, + 0xeab1a9, + 0xeab1aa, + 0xeab1ab, + 0xeab1ac, + 0xeab1ad, + 0xeab1ae, + 0xeab1af, + 0xeab1b0, + 0xeab1b1, + 0xeab1b2, + 0xeab1b3, + 0xeab1b4, + 0xeab1b5, + 0xeab1b6, + 0xeab1b7, + 0xeab1b8, + 0xeab1b9, + 0xeab1ba, + 0xeab1bb, + 0xeab1bc, + 0xeab1bd, + 0xeab1be, + 0xeab1bf, + 0xeab280, + 0xeab281, + 0xeab282, + 0xeab283, + 0xeab284, + 0xeab285, + 0xeab286, + 0xeab287, + 0xeab288, + 0xeab289, + 0xeab28a, + 0xeab28b, + 0xeab28c, + 0xeab28d, + 0xeab28e, + 0xeab28f, + 0xeab290, + 0xeab291, + 0xeab292, + 0xeab293, + 0xeab294, + 0xeab295, + 0xeab296, + 0xeab297, + 0xeab298, + 0xeab299, + 0xeab29a, + 0xeab29b, + 0xeab29c, + 0xeab29d, + 0xeab29e, + 0xeab29f, + 0xeab2a0, + 0xeab2a1, + 0xeab2a2, + 0xeab2a3, + 0xeab2a4, + 0xeab2a5, + 0xeab2a6, + 0xeab2a7, + 0xeab2a8, + 0xeab2a9, + 0xeab2aa, + 0xeab2ab, + 0xeab2ac, + 0xeab2ad, + 0xeab2ae, + 0xeab2af, + 0xeab2b0, + 0xeab2b1, + 0xeab2b2, + 0xeab2b3, + 0xeab2b4, + 0xeab2b5, + 0xeab2b6, + 0xeab2b7, + 0xeab2b8, + 0xeab2b9, + 0xeab2ba, + 0xeab2bb, + 0xeab2bc, + 0xeab2bd, + 0xeab2be, + 0xeab2bf, + 0xeab380, + 0xeab381, + 0xeab382, + 0xeab383, + 0xeab384, + 0xeab385, + 0xeab386, + 0xeab387, + 0xeab388, + 0xeab389, + 0xeab38a, + 0xeab38b, + 0xeab38c, + 0xeab38d, + 0xeab38e, + 0xeab38f, + 0xeab390, + 0xeab391, + 0xeab392, + 0xeab393, + 0xeab394, + 0xeab395, + 0xeab396, + 0xeab397, + 0xeab398, + 0xeab399, + 0xeab39a, + 0xeab39b, + 0xeab39c, + 0xeab39d, + 0xeab39e, + 0xeab39f, + 0xeab3a0, + 0xeab3a1, + 0xeab3a2, + 0xeab3a3, + 0xeab3a4, + 0xeab3a5, + 0xeab3a6, + 0xeab3a7, + 0xeab3a8, + 0xeab3a9, + 0xeab3aa, + 0xeab3ab, + 0xeab3ac, + 0xeab3ad, + 0xeab3ae, + 0xeab3af, + 0xeab3b0, + 0xeab3b1, + 0xeab3b2, + 0xeab3b3, + 0xeab3b4, + 0xeab3b5, + 0xeab3b6, + 0xeab3b7, + 0xeab3b8, + 0xeab3b9, + 0xeab3ba, + 0xeab3bb, + 0xeab3bc, + 0xeab3bd, + 0xeab3be, + 0xeab3bf, + 0xeab480, + 0xeab481, + 0xeab482, + 0xeab483, + 0xeab484, + 0xeab485, + 0xeab486, + 0xeab487, + 0xeab488, + 0xeab489, + 0xeab48a, + 0xeab48b, + 0xeab48c, + 0xeab48d, + 0xeab48e, + 0xeab48f, + 0xeab490, + 0xeab491, + 0xeab492, + 0xeab493, + 0xeab494, + 0xeab495, + 0xeab496, + 0xeab497, + 0xeab498, + 0xeab499, + 0xeab49a, + 0xeab49b, + 0xeab49c, + 0xeab49d, + 0xeab49e, + 0xeab49f, + 0xeab4a0, + 0xeab4a1, + 0xeab4a2, + 0xeab4a3, + 0xeab4a4, + 0xeab4a5, + 0xeab4a6, + 0xeab4a7, + 0xeab4a8, + 0xeab4a9, + 0xeab4aa, + 0xeab4ab, + 0xeab4ac, + 0xeab4ad, + 0xeab4ae, + 0xeab4af, + 0xeab4b0, + 0xeab4b1, + 0xeab4b2, + 0xeab4b3, + 0xeab4b4, + 0xeab4b5, + 0xeab4b6, + 0xeab4b7, + 0xeab4b8, + 0xeab4b9, + 0xeab4ba, + 0xeab4bb, + 0xeab4bc, + 0xeab4bd, + 0xeab4be, + 0xeab4bf, + 0xeab580, + 0xeab581, + 0xeab582, + 0xeab583, + 0xeab584, + 0xeab585, + 0xeab586, + 0xeab587, + 0xeab588, + 0xeab589, + 0xeab58a, + 0xeab58b, + 0xeab58c, + 0xeab58d, + 0xeab58e, + 0xeab58f, + 0xeab590, + 0xeab591, + 0xeab592, + 0xeab593, + 0xeab594, + 0xeab595, + 0xeab596, + 0xeab597, + 0xeab598, + 0xeab599, + 0xeab59a, + 0xeab59b, + 0xeab59c, + 0xeab59d, + 0xeab59e, + 0xeab59f, + 0xeab5a0, + 0xeab5a1, + 0xeab5a2, + 0xeab5a3, + 0xeab5a4, + 0xeab5a5, + 0xeab5a6, + 0xeab5a7, + 0xeab5a8, + 0xeab5a9, + 0xeab5aa, + 0xeab5ab, + 0xeab5ac, + 0xeab5ad, + 0xeab5ae, + 0xeab5af, + 0xeab5b0, + 0xeab5b1, + 0xeab5b2, + 0xeab5b3, + 0xeab5b4, + 0xeab5b5, + 0xeab5b6, + 0xeab5b7, + 0xeab5b8, + 0xeab5b9, + 0xeab5ba, + 0xeab5bb, + 0xeab5bc, + 0xeab5bd, + 0xeab5be, + 0xeab5bf, + 0xeab680, + 0xeab681, + 0xeab682, + 0xeab683, + 0xeab684, + 0xeab685, + 0xeab686, + 0xeab687, + 0xeab688, + 0xeab689, + 0xeab68a, + 0xeab68b, + 0xeab68c, + 0xeab68d, + 0xeab68e, + 0xeab68f, + 0xeab690, + 0xeab691, + 0xeab692, + 0xeab693, + 0xeab694, + 0xeab695, + 0xeab696, + 0xeab697, + 0xeab698, + 0xeab699, + 0xeab69a, + 0xeab69b, + 0xeab69c, + 0xeab69d, + 0xeab69e, + 0xeab69f, + 0xeab6a0, + 0xeab6a1, + 0xeab6a2, + 0xeab6a3, + 0xeab6a4, + 0xeab6a5, + 0xeab6a6, + 0xeab6a7, + 0xeab6a8, + 0xeab6a9, + 0xeab6aa, + 0xeab6ab, + 0xeab6ac, + 0xeab6ad, + 0xeab6ae, + 0xeab6af, + 0xeab6b0, + 0xeab6b1, + 0xeab6b2, + 0xeab6b3, + 0xeab6b4, + 0xeab6b5, + 0xeab6b6, + 0xeab6b7, + 0xeab6b8, + 0xeab6b9, + 0xeab6ba, + 0xeab6bb, + 0xeab6bc, + 0xeab6bd, + 0xeab6be, + 0xeab6bf, + 0xeab780, + 0xeab781, + 0xeab782, + 0xeab783, + 0xeab784, + 0xeab785, + 0xeab786, + 0xeab787, + 0xeab788, + 0xeab789, + 0xeab78a, + 0xeab78b, + 0xeab78c, + 0xeab78d, + 0xeab78e, + 0xeab78f, + 0xeab790, + 0xeab791, + 0xeab792, + 0xeab793, + 0xeab794, + 0xeab795, + 0xeab796, + 0xeab797, + 0xeab798, + 0xeab799, + 0xeab79a, + 0xeab79b, + 0xeab79c, + 0xeab79d, + 0xeab79e, + 0xeab79f, + 0xeab7a0, + 0xeab7a1, + 0xeab7a2, + 0xeab7a3, + 0xeab7a4, + 0xeab7a5, + 0xeab7a6, + 0xeab7a7, + 0xeab7a8, + 0xeab7a9, + 0xeab7aa, + 0xeab7ab, + 0xeab7ac, + 0xeab7ad, + 0xeab7ae, + 0xeab7af, + 0xeab7b0, + 0xeab7b1, + 0xeab7b2, + 0xeab7b3, + 0xeab7b4, + 0xeab7b5, + 0xeab7b6, + 0xeab7b7, + 0xeab7b8, + 0xeab7b9, + 0xeab7ba, + 0xeab7bb, + 0xeab7bc, + 0xeab7bd, + 0xeab7be, + 0xeab7bf, + 0xeab880, + 0xeab881, + 0xeab882, + 0xeab883, + 0xeab884, + 0xeab885, + 0xeab886, + 0xeab887, + 0xeab888, + 0xeab889, + 0xeab88a, + 0xeab88b, + 0xeab88c, + 0xeab88d, + 0xeab88e, + 0xeab88f, + 0xeab890, + 0xeab891, + 0xeab892, + 0xeab893, + 0xeab894, + 0xeab895, + 0xeab896, + 0xeab897, + 0xeab898, + 0xeab899, + 0xeab89a, + 0xeab89b, + 0xeab89c, + 0xeab89d, + 0xeab89e, + 0xeab89f, + 0xeab8a0, + 0xeab8a1, + 0xeab8a2, + 0xeab8a3, + 0xeab8a4, + 0xeab8a5, + 0xeab8a6, + 0xeab8a7, + 0xeab8a8, + 0xeab8a9, + 0xeab8aa, + 0xeab8ab, + 0xeab8ac, + 0xeab8ad, + 0xeab8ae, + 0xeab8af, + 0xeab8b0, + 0xeab8b1, + 0xeab8b2, + 0xeab8b3, + 0xeab8b4, + 0xeab8b5, + 0xeab8b6, + 0xeab8b7, + 0xeab8b8, + 0xeab8b9, + 0xeab8ba, + 0xeab8bb, + 0xeab8bc, + 0xeab8bd, + 0xeab8be, + 0xeab8bf, + 0xeab980, + 0xeab981, + 0xeab982, + 0xeab983, + 0xeab984, + 0xeab985, + 0xeab986, + 0xeab987, + 0xeab988, + 0xeab989, + 0xeab98a, + 0xeab98b, + 0xeab98c, + 0xeab98d, + 0xeab98e, + 0xeab98f, + 0xeab990, + 0xeab991, + 0xeab992, + 0xeab993, + 0xeab994, + 0xeab995, + 0xeab996, + 0xeab997, + 0xeab998, + 0xeab999, + 0xeab99a, + 0xeab99b, + 0xeab99c, + 0xeab99d, + 0xeab99e, + 0xeab99f, + 0xeab9a0, + 0xeab9a1, + 0xeab9a2, + 0xeab9a3, + 0xeab9a4, + 0xeab9a5, + 0xeab9a6, + 0xeab9a7, + 0xeab9a8, + 0xeab9a9, + 0xeab9aa, + 0xeab9ab, + 0xeab9ac, + 0xeab9ad, + 0xeab9ae, + 0xeab9af, + 0xeab9b0, + 0xeab9b1, + 0xeab9b2, + 0xeab9b3, + 0xeab9b4, + 0xeab9b5, + 0xeab9b6, + 0xeab9b7, + 0xeab9b8, + 0xeab9b9, + 0xeab9ba, + 0xeab9bb, + 0xeab9bc, + 0xeab9bd, + 0xeab9be, + 0xeab9bf, + 0xeaba80, + 0xeaba81, + 0xeaba82, + 0xeaba83, + 0xeaba84, + 0xeaba85, + 0xeaba86, + 0xeaba87, + 0xeaba88, + 0xeaba89, + 0xeaba8a, + 0xeaba8b, + 0xeaba8c, + 0xeaba8d, + 0xeaba8e, + 0xeaba8f, + 0xeaba90, + 0xeaba91, + 0xeaba92, + 0xeaba93, + 0xeaba94, + 0xeaba95, + 0xeaba96, + 0xeaba97, + 0xeaba98, + 0xeaba99, + 0xeaba9a, + 0xeaba9b, + 0xeaba9c, + 0xeaba9d, + 0xeaba9e, + 0xeaba9f, + 0xeabaa0, + 0xeabaa1, + 0xeabaa2, + 0xeabaa3, + 0xeabaa4, + 0xeabaa5, + 0xeabaa6, + 0xeabaa7, + 0xeabaa8, + 0xeabaa9, + 0xeabaaa, + 0xeabaab, + 0xeabaac, + 0xeabaad, + 0xeabaae, + 0xeabaaf, + 0xeabab0, + 0xeabab1, + 0xeabab2, + 0xeabab3, + 0xeabab4, + 0xeabab5, + 0xeabab6, + 0xeabab7, + 0xeabab8, + 0xeabab9, + 0xeababa, + 0xeababb, + 0xeababc, + 0xeababd, + 0xeababe, + 0xeababf, + 0xeabb80, + 0xeabb81, + 0xeabb82, + 0xeabb83, + 0xeabb84, + 0xeabb85, + 0xeabb86, + 0xeabb87, + 0xeabb88, + 0xeabb89, + 0xeabb8a, + 0xeabb8b, + 0xeabb8c, + 0xeabb8d, + 0xeabb8e, + 0xeabb8f, + 0xeabb90, + 0xeabb91, + 0xeabb92, + 0xeabb93, + 0xeabb94, + 0xeabb95, + 0xeabb96, + 0xeabb97, + 0xeabb98, + 0xeabb99, + 0xeabb9a, + 0xeabb9b, + 0xeabb9c, + 0xeabb9d, + 0xeabb9e, + 0xeabb9f, + 0xeabba0, + 0xeabba1, + 0xeabba2, + 0xeabba3, + 0xeabba4, + 0xeabba5, + 0xeabba6, + 0xeabba7, + 0xeabba8, + 0xeabba9, + 0xeabbaa, + 0xeabbab, + 0xeabbac, + 0xeabbad, + 0xeabbae, + 0xeabbaf, + 0xeabbb0, + 0xeabbb1, + 0xeabbb2, + 0xeabbb3, + 0xeabbb4, + 0xeabbb5, + 0xeabbb6, + 0xeabbb7, + 0xeabbb8, + 0xeabbb9, + 0xeabbba, + 0xeabbbb, + 0xeabbbc, + 0xeabbbd, + 0xeabbbe, + 0xeabbbf, + 0xeabc80, + 0xeabc81, + 0xeabc82, + 0xeabc83, + 0xeabc84, + 0xeabc85, + 0xeabc86, + 0xeabc87, + 0xeabc88, + 0xeabc89, + 0xeabc8a, + 0xeabc8b, + 0xeabc8c, + 0xeabc8d, + 0xeabc8e, + 0xeabc8f, + 0xeabc90, + 0xeabc91, + 0xeabc92, + 0xeabc93, + 0xeabc94, + 0xeabc95, + 0xeabc96, + 0xeabc97, + 0xeabc98, + 0xeabc99, + 0xeabc9a, + 0xeabc9b, + 0xeabc9c, + 0xeabc9d, + 0xeabc9e, + 0xeabc9f, + 0xeabca0, + 0xeabca1, + 0xeabca2, + 0xeabca3, + 0xeabca4, + 0xeabca5, + 0xeabca6, + 0xeabca7, + 0xeabca8, + 0xeabca9, + 0xeabcaa, + 0xeabcab, + 0xeabcac, + 0xeabcad, + 0xeabcae, + 0xeabcaf, + 0xeabcb0, + 0xeabcb1, + 0xeabcb2, + 0xeabcb3, + 0xeabcb4, + 0xeabcb5, + 0xeabcb6, + 0xeabcb7, + 0xeabcb8, + 0xeabcb9, + 0xeabcba, + 0xeabcbb, + 0xeabcbc, + 0xeabcbd, + 0xeabcbe, + 0xeabcbf, + 0xeabd80, + 0xeabd81, + 0xeabd82, + 0xeabd83, + 0xeabd84, + 0xeabd85, + 0xeabd86, + 0xeabd87, + 0xeabd88, + 0xeabd89, + 0xeabd8a, + 0xeabd8b, + 0xeabd8c, + 0xeabd8d, + 0xeabd8e, + 0xeabd8f, + 0xeabd90, + 0xeabd91, + 0xeabd92, + 0xeabd93, + 0xeabd94, + 0xeabd95, + 0xeabd96, + 0xeabd97, + 0xeabd98, + 0xeabd99, + 0xeabd9a, + 0xeabd9b, + 0xeabd9c, + 0xeabd9d, + 0xeabd9e, + 0xeabd9f, + 0xeabda0, + 0xeabda1, + 0xeabda2, + 0xeabda3, + 0xeabda4, + 0xeabda5, + 0xeabda6, + 0xeabda7, + 0xeabda8, + 0xeabda9, + 0xeabdaa, + 0xeabdab, + 0xeabdac, + 0xeabdad, + 0xeabdae, + 0xeabdaf, + 0xeabdb0, + 0xeabdb1, + 0xeabdb2, + 0xeabdb3, + 0xeabdb4, + 0xeabdb5, + 0xeabdb6, + 0xeabdb7, + 0xeabdb8, + 0xeabdb9, + 0xeabdba, + 0xeabdbb, + 0xeabdbc, + 0xeabdbd, + 0xeabdbe, + 0xeabdbf, + 0xeabe80, + 0xeabe81, + 0xeabe82, + 0xeabe83, + 0xeabe84, + 0xeabe85, + 0xeabe86, + 0xeabe87, + 0xeabe88, + 0xeabe89, + 0xeabe8a, + 0xeabe8b, + 0xeabe8c, + 0xeabe8d, + 0xeabe8e, + 0xeabe8f, + 0xeabe90, + 0xeabe91, + 0xeabe92, + 0xeabe93, + 0xeabe94, + 0xeabe95, + 0xeabe96, + 0xeabe97, + 0xeabe98, + 0xeabe99, + 0xeabe9a, + 0xeabe9b, + 0xeabe9c, + 0xeabe9d, + 0xeabe9e, + 0xeabe9f, + 0xeabea0, + 0xeabea1, + 0xeabea2, + 0xeabea3, + 0xeabea4, + 0xeabea5, + 0xeabea6, + 0xeabea7, + 0xeabea8, + 0xeabea9, + 0xeabeaa, + 0xeabeab, + 0xeabeac, + 0xeabead, + 0xeabeae, + 0xeabeaf, + 0xeabeb0, + 0xeabeb1, + 0xeabeb2, + 0xeabeb3, + 0xeabeb4, + 0xeabeb5, + 0xeabeb6, + 0xeabeb7, + 0xeabeb8, + 0xeabeb9, + 0xeabeba, + 0xeabebb, + 0xeabebc, + 0xeabebd, + 0xeabebe, + 0xeabebf, + 0xeabf80, + 0xeabf81, + 0xeabf82, + 0xeabf83, + 0xeabf84, + 0xeabf85, + 0xeabf86, + 0xeabf87, + 0xeabf88, + 0xeabf89, + 0xeabf8a, + 0xeabf8b, + 0xeabf8c, + 0xeabf8d, + 0xeabf8e, + 0xeabf8f, + 0xeabf90, + 0xeabf91, + 0xeabf92, + 0xeabf93, + 0xeabf94, + 0xeabf95, + 0xeabf96, + 0xeabf97, + 0xeabf98, + 0xeabf99, + 0xeabf9a, + 0xeabf9b, + 0xeabf9c, + 0xeabf9d, + 0xeabf9e, + 0xeabf9f, + 0xeabfa0, + 0xeabfa1, + 0xeabfa2, + 0xeabfa3, + 0xeabfa4, + 0xeabfa5, + 0xeabfa6, + 0xeabfa7, + 0xeabfa8, + 0xeabfa9, + 0xeabfaa, + 0xeabfab, + 0xeabfac, + 0xeabfad, + 0xeabfae, + 0xeabfaf, + 0xeabfb0, + 0xeabfb1, + 0xeabfb2, + 0xeabfb3, + 0xeabfb4, + 0xeabfb5, + 0xeabfb6, + 0xeabfb7, + 0xeabfb8, + 0xeabfb9, + 0xeabfba, + 0xeabfbb, + 0xeabfbc, + 0xeabfbd, + 0xeabfbe, + 0xeabfbf, + 0xeb8080, + 0xeb8081, + 0xeb8082, + 0xeb8083, + 0xeb8084, + 0xeb8085, + 0xeb8086, + 0xeb8087, + 0xeb8088, + 0xeb8089, + 0xeb808a, + 0xeb808b, + 0xeb808c, + 0xeb808d, + 0xeb808e, + 0xeb808f, + 0xeb8090, + 0xeb8091, + 0xeb8092, + 0xeb8093, + 0xeb8094, + 0xeb8095, + 0xeb8096, + 0xeb8097, + 0xeb8098, + 0xeb8099, + 0xeb809a, + 0xeb809b, + 0xeb809c, + 0xeb809d, + 0xeb809e, + 0xeb809f, + 0xeb80a0, + 0xeb80a1, + 0xeb80a2, + 0xeb80a3, + 0xeb80a4, + 0xeb80a5, + 0xeb80a6, + 0xeb80a7, + 0xeb80a8, + 0xeb80a9, + 0xeb80aa, + 0xeb80ab, + 0xeb80ac, + 0xeb80ad, + 0xeb80ae, + 0xeb80af, + 0xeb80b0, + 0xeb80b1, + 0xeb80b2, + 0xeb80b3, + 0xeb80b4, + 0xeb80b5, + 0xeb80b6, + 0xeb80b7, + 0xeb80b8, + 0xeb80b9, + 0xeb80ba, + 0xeb80bb, + 0xeb80bc, + 0xeb80bd, + 0xeb80be, + 0xeb80bf, + 0xeb8180, + 0xeb8181, + 0xeb8182, + 0xeb8183, + 0xeb8184, + 0xeb8185, + 0xeb8186, + 0xeb8187, + 0xeb8188, + 0xeb8189, + 0xeb818a, + 0xeb818b, + 0xeb818c, + 0xeb818d, + 0xeb818e, + 0xeb818f, + 0xeb8190, + 0xeb8191, + 0xeb8192, + 0xeb8193, + 0xeb8194, + 0xeb8195, + 0xeb8196, + 0xeb8197, + 0xeb8198, + 0xeb8199, + 0xeb819a, + 0xeb819b, + 0xeb819c, + 0xeb819d, + 0xeb819e, + 0xeb819f, + 0xeb81a0, + 0xeb81a1, + 0xeb81a2, + 0xeb81a3, + 0xeb81a4, + 0xeb81a5, + 0xeb81a6, + 0xeb81a7, + 0xeb81a8, + 0xeb81a9, + 0xeb81aa, + 0xeb81ab, + 0xeb81ac, + 0xeb81ad, + 0xeb81ae, + 0xeb81af, + 0xeb81b0, + 0xeb81b1, + 0xeb81b2, + 0xeb81b3, + 0xeb81b4, + 0xeb81b5, + 0xeb81b6, + 0xeb81b7, + 0xeb81b8, + 0xeb81b9, + 0xeb81ba, + 0xeb81bb, + 0xeb81bc, + 0xeb81bd, + 0xeb81be, + 0xeb81bf, + 0xeb8280, + 0xeb8281, + 0xeb8282, + 0xeb8283, + 0xeb8284, + 0xeb8285, + 0xeb8286, + 0xeb8287, + 0xeb8288, + 0xeb8289, + 0xeb828a, + 0xeb828b, + 0xeb828c, + 0xeb828d, + 0xeb828e, + 0xeb828f, + 0xeb8290, + 0xeb8291, + 0xeb8292, + 0xeb8293, + 0xeb8294, + 0xeb8295, + 0xeb8296, + 0xeb8297, + 0xeb8298, + 0xeb8299, + 0xeb829a, + 0xeb829b, + 0xeb829c, + 0xeb829d, + 0xeb829e, + 0xeb829f, + 0xeb82a0, + 0xeb82a1, + 0xeb82a2, + 0xeb82a3, + 0xeb82a4, + 0xeb82a5, + 0xeb82a6, + 0xeb82a7, + 0xeb82a8, + 0xeb82a9, + 0xeb82aa, + 0xeb82ab, + 0xeb82ac, + 0xeb82ad, + 0xeb82ae, + 0xeb82af, + 0xeb82b0, + 0xeb82b1, + 0xeb82b2, + 0xeb82b3, + 0xeb82b4, + 0xeb82b5, + 0xeb82b6, + 0xeb82b7, + 0xeb82b8, + 0xeb82b9, + 0xeb82ba, + 0xeb82bb, + 0xeb82bc, + 0xeb82bd, + 0xeb82be, + 0xeb82bf, + 0xeb8380, + 0xeb8381, + 0xeb8382, + 0xeb8383, + 0xeb8384, + 0xeb8385, + 0xeb8386, + 0xeb8387, + 0xeb8388, + 0xeb8389, + 0xeb838a, + 0xeb838b, + 0xeb838c, + 0xeb838d, + 0xeb838e, + 0xeb838f, + 0xeb8390, + 0xeb8391, + 0xeb8392, + 0xeb8393, + 0xeb8394, + 0xeb8395, + 0xeb8396, + 0xeb8397, + 0xeb8398, + 0xeb8399, + 0xeb839a, + 0xeb839b, + 0xeb839c, + 0xeb839d, + 0xeb839e, + 0xeb839f, + 0xeb83a0, + 0xeb83a1, + 0xeb83a2, + 0xeb83a3, + 0xeb83a4, + 0xeb83a5, + 0xeb83a6, + 0xeb83a7, + 0xeb83a8, + 0xeb83a9, + 0xeb83aa, + 0xeb83ab, + 0xeb83ac, + 0xeb83ad, + 0xeb83ae, + 0xeb83af, + 0xeb83b0, + 0xeb83b1, + 0xeb83b2, + 0xeb83b3, + 0xeb83b4, + 0xeb83b5, + 0xeb83b6, + 0xeb83b7, + 0xeb83b8, + 0xeb83b9, + 0xeb83ba, + 0xeb83bb, + 0xeb83bc, + 0xeb83bd, + 0xeb83be, + 0xeb83bf, + 0xeb8480, + 0xeb8481, + 0xeb8482, + 0xeb8483, + 0xeb8484, + 0xeb8485, + 0xeb8486, + 0xeb8487, + 0xeb8488, + 0xeb8489, + 0xeb848a, + 0xeb848b, + 0xeb848c, + 0xeb848d, + 0xeb848e, + 0xeb848f, + 0xeb8490, + 0xeb8491, + 0xeb8492, + 0xeb8493, + 0xeb8494, + 0xeb8495, + 0xeb8496, + 0xeb8497, + 0xeb8498, + 0xeb8499, + 0xeb849a, + 0xeb849b, + 0xeb849c, + 0xeb849d, + 0xeb849e, + 0xeb849f, + 0xeb84a0, + 0xeb84a1, + 0xeb84a2, + 0xeb84a3, + 0xeb84a4, + 0xeb84a5, + 0xeb84a6, + 0xeb84a7, + 0xeb84a8, + 0xeb84a9, + 0xeb84aa, + 0xeb84ab, + 0xeb84ac, + 0xeb84ad, + 0xeb84ae, + 0xeb84af, + 0xeb84b0, + 0xeb84b1, + 0xeb84b2, + 0xeb84b3, + 0xeb84b4, + 0xeb84b5, + 0xeb84b6, + 0xeb84b7, + 0xeb84b8, + 0xeb84b9, + 0xeb84ba, + 0xeb84bb, + 0xeb84bc, + 0xeb84bd, + 0xeb84be, + 0xeb84bf, + 0xeb8580, + 0xeb8581, + 0xeb8582, + 0xeb8583, + 0xeb8584, + 0xeb8585, + 0xeb8586, + 0xeb8587, + 0xeb8588, + 0xeb8589, + 0xeb858a, + 0xeb858b, + 0xeb858c, + 0xeb858d, + 0xeb858e, + 0xeb858f, + 0xeb8590, + 0xeb8591, + 0xeb8592, + 0xeb8593, + 0xeb8594, + 0xeb8595, + 0xeb8596, + 0xeb8597, + 0xeb8598, + 0xeb8599, + 0xeb859a, + 0xeb859b, + 0xeb859c, + 0xeb859d, + 0xeb859e, + 0xeb859f, + 0xeb85a0, + 0xeb85a1, + 0xeb85a2, + 0xeb85a3, + 0xeb85a4, + 0xeb85a5, + 0xeb85a6, + 0xeb85a7, + 0xeb85a8, + 0xeb85a9, + 0xeb85aa, + 0xeb85ab, + 0xeb85ac, + 0xeb85ad, + 0xeb85ae, + 0xeb85af, + 0xeb85b0, + 0xeb85b1, + 0xeb85b2, + 0xeb85b3, + 0xeb85b4, + 0xeb85b5, + 0xeb85b6, + 0xeb85b7, + 0xeb85b8, + 0xeb85b9, + 0xeb85ba, + 0xeb85bb, + 0xeb85bc, + 0xeb85bd, + 0xeb85be, + 0xeb85bf, + 0xeb8680, + 0xeb8681, + 0xeb8682, + 0xeb8683, + 0xeb8684, + 0xeb8685, + 0xeb8686, + 0xeb8687, + 0xeb8688, + 0xeb8689, + 0xeb868a, + 0xeb868b, + 0xeb868c, + 0xeb868d, + 0xeb868e, + 0xeb868f, + 0xeb8690, + 0xeb8691, + 0xeb8692, + 0xeb8693, + 0xeb8694, + 0xeb8695, + 0xeb8696, + 0xeb8697, + 0xeb8698, + 0xeb8699, + 0xeb869a, + 0xeb869b, + 0xeb869c, + 0xeb869d, + 0xeb869e, + 0xeb869f, + 0xeb86a0, + 0xeb86a1, + 0xeb86a2, + 0xeb86a3, + 0xeb86a4, + 0xeb86a5, + 0xeb86a6, + 0xeb86a7, + 0xeb86a8, + 0xeb86a9, + 0xeb86aa, + 0xeb86ab, + 0xeb86ac, + 0xeb86ad, + 0xeb86ae, + 0xeb86af, + 0xeb86b0, + 0xeb86b1, + 0xeb86b2, + 0xeb86b3, + 0xeb86b4, + 0xeb86b5, + 0xeb86b6, + 0xeb86b7, + 0xeb86b8, + 0xeb86b9, + 0xeb86ba, + 0xeb86bb, + 0xeb86bc, + 0xeb86bd, + 0xeb86be, + 0xeb86bf, + 0xeb8780, + 0xeb8781, + 0xeb8782, + 0xeb8783, + 0xeb8784, + 0xeb8785, + 0xeb8786, + 0xeb8787, + 0xeb8788, + 0xeb8789, + 0xeb878a, + 0xeb878b, + 0xeb878c, + 0xeb878d, + 0xeb878e, + 0xeb878f, + 0xeb8790, + 0xeb8791, + 0xeb8792, + 0xeb8793, + 0xeb8794, + 0xeb8795, + 0xeb8796, + 0xeb8797, + 0xeb8798, + 0xeb8799, + 0xeb879a, + 0xeb879b, + 0xeb879c, + 0xeb879d, + 0xeb879e, + 0xeb879f, + 0xeb87a0, + 0xeb87a1, + 0xeb87a2, + 0xeb87a3, + 0xeb87a4, + 0xeb87a5, + 0xeb87a6, + 0xeb87a7, + 0xeb87a8, + 0xeb87a9, + 0xeb87aa, + 0xeb87ab, + 0xeb87ac, + 0xeb87ad, + 0xeb87ae, + 0xeb87af, + 0xeb87b0, + 0xeb87b1, + 0xeb87b2, + 0xeb87b3, + 0xeb87b4, + 0xeb87b5, + 0xeb87b6, + 0xeb87b7, + 0xeb87b8, + 0xeb87b9, + 0xeb87ba, + 0xeb87bb, + 0xeb87bc, + 0xeb87bd, + 0xeb87be, + 0xeb87bf, + 0xeb8880, + 0xeb8881, + 0xeb8882, + 0xeb8883, + 0xeb8884, + 0xeb8885, + 0xeb8886, + 0xeb8887, + 0xeb8888, + 0xeb8889, + 0xeb888a, + 0xeb888b, + 0xeb888c, + 0xeb888d, + 0xeb888e, + 0xeb888f, + 0xeb8890, + 0xeb8891, + 0xeb8892, + 0xeb8893, + 0xeb8894, + 0xeb8895, + 0xeb8896, + 0xeb8897, + 0xeb8898, + 0xeb8899, + 0xeb889a, + 0xeb889b, + 0xeb889c, + 0xeb889d, + 0xeb889e, + 0xeb889f, + 0xeb88a0, + 0xeb88a1, + 0xeb88a2, + 0xeb88a3, + 0xeb88a4, + 0xeb88a5, + 0xeb88a6, + 0xeb88a7, + 0xeb88a8, + 0xeb88a9, + 0xeb88aa, + 0xeb88ab, + 0xeb88ac, + 0xeb88ad, + 0xeb88ae, + 0xeb88af, + 0xeb88b0, + 0xeb88b1, + 0xeb88b2, + 0xeb88b3, + 0xeb88b4, + 0xeb88b5, + 0xeb88b6, + 0xeb88b7, + 0xeb88b8, + 0xeb88b9, + 0xeb88ba, + 0xeb88bb, + 0xeb88bc, + 0xeb88bd, + 0xeb88be, + 0xeb88bf, + 0xeb8980, + 0xeb8981, + 0xeb8982, + 0xeb8983, + 0xeb8984, + 0xeb8985, + 0xeb8986, + 0xeb8987, + 0xeb8988, + 0xeb8989, + 0xeb898a, + 0xeb898b, + 0xeb898c, + 0xeb898d, + 0xeb898e, + 0xeb898f, + 0xeb8990, + 0xeb8991, + 0xeb8992, + 0xeb8993, + 0xeb8994, + 0xeb8995, + 0xeb8996, + 0xeb8997, + 0xeb8998, + 0xeb8999, + 0xeb899a, + 0xeb899b, + 0xeb899c, + 0xeb899d, + 0xeb899e, + 0xeb899f, + 0xeb89a0, + 0xeb89a1, + 0xeb89a2, + 0xeb89a3, + 0xeb89a4, + 0xeb89a5, + 0xeb89a6, + 0xeb89a7, + 0xeb89a8, + 0xeb89a9, + 0xeb89aa, + 0xeb89ab, + 0xeb89ac, + 0xeb89ad, + 0xeb89ae, + 0xeb89af, + 0xeb89b0, + 0xeb89b1, + 0xeb89b2, + 0xeb89b3, + 0xeb89b4, + 0xeb89b5, + 0xeb89b6, + 0xeb89b7, + 0xeb89b8, + 0xeb89b9, + 0xeb89ba, + 0xeb89bb, + 0xeb89bc, + 0xeb89bd, + 0xeb89be, + 0xeb89bf, + 0xeb8a80, + 0xeb8a81, + 0xeb8a82, + 0xeb8a83, + 0xeb8a84, + 0xeb8a85, + 0xeb8a86, + 0xeb8a87, + 0xeb8a88, + 0xeb8a89, + 0xeb8a8a, + 0xeb8a8b, + 0xeb8a8c, + 0xeb8a8d, + 0xeb8a8e, + 0xeb8a8f, + 0xeb8a90, + 0xeb8a91, + 0xeb8a92, + 0xeb8a93, + 0xeb8a94, + 0xeb8a95, + 0xeb8a96, + 0xeb8a97, + 0xeb8a98, + 0xeb8a99, + 0xeb8a9a, + 0xeb8a9b, + 0xeb8a9c, + 0xeb8a9d, + 0xeb8a9e, + 0xeb8a9f, + 0xeb8aa0, + 0xeb8aa1, + 0xeb8aa2, + 0xeb8aa3, + 0xeb8aa4, + 0xeb8aa5, + 0xeb8aa6, + 0xeb8aa7, + 0xeb8aa8, + 0xeb8aa9, + 0xeb8aaa, + 0xeb8aab, + 0xeb8aac, + 0xeb8aad, + 0xeb8aae, + 0xeb8aaf, + 0xeb8ab0, + 0xeb8ab1, + 0xeb8ab2, + 0xeb8ab3, + 0xeb8ab4, + 0xeb8ab5, + 0xeb8ab6, + 0xeb8ab7, + 0xeb8ab8, + 0xeb8ab9, + 0xeb8aba, + 0xeb8abb, + 0xeb8abc, + 0xeb8abd, + 0xeb8abe, + 0xeb8abf, + 0xeb8b80, + 0xeb8b81, + 0xeb8b82, + 0xeb8b83, + 0xeb8b84, + 0xeb8b85, + 0xeb8b86, + 0xeb8b87, + 0xeb8b88, + 0xeb8b89, + 0xeb8b8a, + 0xeb8b8b, + 0xeb8b8c, + 0xeb8b8d, + 0xeb8b8e, + 0xeb8b8f, + 0xeb8b90, + 0xeb8b91, + 0xeb8b92, + 0xeb8b93, + 0xeb8b94, + 0xeb8b95, + 0xeb8b96, + 0xeb8b97, + 0xeb8b98, + 0xeb8b99, + 0xeb8b9a, + 0xeb8b9b, + 0xeb8b9c, + 0xeb8b9d, + 0xeb8b9e, + 0xeb8b9f, + 0xeb8ba0, + 0xeb8ba1, + 0xeb8ba2, + 0xeb8ba3, + 0xeb8ba4, + 0xeb8ba5, + 0xeb8ba6, + 0xeb8ba7, + 0xeb8ba8, + 0xeb8ba9, + 0xeb8baa, + 0xeb8bab, + 0xeb8bac, + 0xeb8bad, + 0xeb8bae, + 0xeb8baf, + 0xeb8bb0, + 0xeb8bb1, + 0xeb8bb2, + 0xeb8bb3, + 0xeb8bb4, + 0xeb8bb5, + 0xeb8bb6, + 0xeb8bb7, + 0xeb8bb8, + 0xeb8bb9, + 0xeb8bba, + 0xeb8bbb, + 0xeb8bbc, + 0xeb8bbd, + 0xeb8bbe, + 0xeb8bbf, + 0xeb8c80, + 0xeb8c81, + 0xeb8c82, + 0xeb8c83, + 0xeb8c84, + 0xeb8c85, + 0xeb8c86, + 0xeb8c87, + 0xeb8c88, + 0xeb8c89, + 0xeb8c8a, + 0xeb8c8b, + 0xeb8c8c, + 0xeb8c8d, + 0xeb8c8e, + 0xeb8c8f, + 0xeb8c90, + 0xeb8c91, + 0xeb8c92, + 0xeb8c93, + 0xeb8c94, + 0xeb8c95, + 0xeb8c96, + 0xeb8c97, + 0xeb8c98, + 0xeb8c99, + 0xeb8c9a, + 0xeb8c9b, + 0xeb8c9c, + 0xeb8c9d, + 0xeb8c9e, + 0xeb8c9f, + 0xeb8ca0, + 0xeb8ca1, + 0xeb8ca2, + 0xeb8ca3, + 0xeb8ca4, + 0xeb8ca5, + 0xeb8ca6, + 0xeb8ca7, + 0xeb8ca8, + 0xeb8ca9, + 0xeb8caa, + 0xeb8cab, + 0xeb8cac, + 0xeb8cad, + 0xeb8cae, + 0xeb8caf, + 0xeb8cb0, + 0xeb8cb1, + 0xeb8cb2, + 0xeb8cb3, + 0xeb8cb4, + 0xeb8cb5, + 0xeb8cb6, + 0xeb8cb7, + 0xeb8cb8, + 0xeb8cb9, + 0xeb8cba, + 0xeb8cbb, + 0xeb8cbc, + 0xeb8cbd, + 0xeb8cbe, + 0xeb8cbf, + 0xeb8d80, + 0xeb8d81, + 0xeb8d82, + 0xeb8d83, + 0xeb8d84, + 0xeb8d85, + 0xeb8d86, + 0xeb8d87, + 0xeb8d88, + 0xeb8d89, + 0xeb8d8a, + 0xeb8d8b, + 0xeb8d8c, + 0xeb8d8d, + 0xeb8d8e, + 0xeb8d8f, + 0xeb8d90, + 0xeb8d91, + 0xeb8d92, + 0xeb8d93, + 0xeb8d94, + 0xeb8d95, + 0xeb8d96, + 0xeb8d97, + 0xeb8d98, + 0xeb8d99, + 0xeb8d9a, + 0xeb8d9b, + 0xeb8d9c, + 0xeb8d9d, + 0xeb8d9e, + 0xeb8d9f, + 0xeb8da0, + 0xeb8da1, + 0xeb8da2, + 0xeb8da3, + 0xeb8da4, + 0xeb8da5, + 0xeb8da6, + 0xeb8da7, + 0xeb8da8, + 0xeb8da9, + 0xeb8daa, + 0xeb8dab, + 0xeb8dac, + 0xeb8dad, + 0xeb8dae, + 0xeb8daf, + 0xeb8db0, + 0xeb8db1, + 0xeb8db2, + 0xeb8db3, + 0xeb8db4, + 0xeb8db5, + 0xeb8db6, + 0xeb8db7, + 0xeb8db8, + 0xeb8db9, + 0xeb8dba, + 0xeb8dbb, + 0xeb8dbc, + 0xeb8dbd, + 0xeb8dbe, + 0xeb8dbf, + 0xeb8e80, + 0xeb8e81, + 0xeb8e82, + 0xeb8e83, + 0xeb8e84, + 0xeb8e85, + 0xeb8e86, + 0xeb8e87, + 0xeb8e88, + 0xeb8e89, + 0xeb8e8a, + 0xeb8e8b, + 0xeb8e8c, + 0xeb8e8d, + 0xeb8e8e, + 0xeb8e8f, + 0xeb8e90, + 0xeb8e91, + 0xeb8e92, + 0xeb8e93, + 0xeb8e94, + 0xeb8e95, + 0xeb8e96, + 0xeb8e97, + 0xeb8e98, + 0xeb8e99, + 0xeb8e9a, + 0xeb8e9b, + 0xeb8e9c, + 0xeb8e9d, + 0xeb8e9e, + 0xeb8e9f, + 0xeb8ea0, + 0xeb8ea1, + 0xeb8ea2, + 0xeb8ea3, + 0xeb8ea4, + 0xeb8ea5, + 0xeb8ea6, + 0xeb8ea7, + 0xeb8ea8, + 0xeb8ea9, + 0xeb8eaa, + 0xeb8eab, + 0xeb8eac, + 0xeb8ead, + 0xeb8eae, + 0xeb8eaf, + 0xeb8eb0, + 0xeb8eb1, + 0xeb8eb2, + 0xeb8eb3, + 0xeb8eb4, + 0xeb8eb5, + 0xeb8eb6, + 0xeb8eb7, + 0xeb8eb8, + 0xeb8eb9, + 0xeb8eba, + 0xeb8ebb, + 0xeb8ebc, + 0xeb8ebd, + 0xeb8ebe, + 0xeb8ebf, + 0xeb8f80, + 0xeb8f81, + 0xeb8f82, + 0xeb8f83, + 0xeb8f84, + 0xeb8f85, + 0xeb8f86, + 0xeb8f87, + 0xeb8f88, + 0xeb8f89, + 0xeb8f8a, + 0xeb8f8b, + 0xeb8f8c, + 0xeb8f8d, + 0xeb8f8e, + 0xeb8f8f, + 0xeb8f90, + 0xeb8f91, + 0xeb8f92, + 0xeb8f93, + 0xeb8f94, + 0xeb8f95, + 0xeb8f96, + 0xeb8f97, + 0xeb8f98, + 0xeb8f99, + 0xeb8f9a, + 0xeb8f9b, + 0xeb8f9c, + 0xeb8f9d, + 0xeb8f9e, + 0xeb8f9f, + 0xeb8fa0, + 0xeb8fa1, + 0xeb8fa2, + 0xeb8fa3, + 0xeb8fa4, + 0xeb8fa5, + 0xeb8fa6, + 0xeb8fa7, + 0xeb8fa8, + 0xeb8fa9, + 0xeb8faa, + 0xeb8fab, + 0xeb8fac, + 0xeb8fad, + 0xeb8fae, + 0xeb8faf, + 0xeb8fb0, + 0xeb8fb1, + 0xeb8fb2, + 0xeb8fb3, + 0xeb8fb4, + 0xeb8fb5, + 0xeb8fb6, + 0xeb8fb7, + 0xeb8fb8, + 0xeb8fb9, + 0xeb8fba, + 0xeb8fbb, + 0xeb8fbc, + 0xeb8fbd, + 0xeb8fbe, + 0xeb8fbf, + 0xeb9080, + 0xeb9081, + 0xeb9082, + 0xeb9083, + 0xeb9084, + 0xeb9085, + 0xeb9086, + 0xeb9087, + 0xeb9088, + 0xeb9089, + 0xeb908a, + 0xeb908b, + 0xeb908c, + 0xeb908d, + 0xeb908e, + 0xeb908f, + 0xeb9090, + 0xeb9091, + 0xeb9092, + 0xeb9093, + 0xeb9094, + 0xeb9095, + 0xeb9096, + 0xeb9097, + 0xeb9098, + 0xeb9099, + 0xeb909a, + 0xeb909b, + 0xeb909c, + 0xeb909d, + 0xeb909e, + 0xeb909f, + 0xeb90a0, + 0xeb90a1, + 0xeb90a2, + 0xeb90a3, + 0xeb90a4, + 0xeb90a5, + 0xeb90a6, + 0xeb90a7, + 0xeb90a8, + 0xeb90a9, + 0xeb90aa, + 0xeb90ab, + 0xeb90ac, + 0xeb90ad, + 0xeb90ae, + 0xeb90af, + 0xeb90b0, + 0xeb90b1, + 0xeb90b2, + 0xeb90b3, + 0xeb90b4, + 0xeb90b5, + 0xeb90b6, + 0xeb90b7, + 0xeb90b8, + 0xeb90b9, + 0xeb90ba, + 0xeb90bb, + 0xeb90bc, + 0xeb90bd, + 0xeb90be, + 0xeb90bf, + 0xeb9180, + 0xeb9181, + 0xeb9182, + 0xeb9183, + 0xeb9184, + 0xeb9185, + 0xeb9186, + 0xeb9187, + 0xeb9188, + 0xeb9189, + 0xeb918a, + 0xeb918b, + 0xeb918c, + 0xeb918d, + 0xeb918e, + 0xeb918f, + 0xeb9190, + 0xeb9191, + 0xeb9192, + 0xeb9193, + 0xeb9194, + 0xeb9195, + 0xeb9196, + 0xeb9197, + 0xeb9198, + 0xeb9199, + 0xeb919a, + 0xeb919b, + 0xeb919c, + 0xeb919d, + 0xeb919e, + 0xeb919f, + 0xeb91a0, + 0xeb91a1, + 0xeb91a2, + 0xeb91a3, + 0xeb91a4, + 0xeb91a5, + 0xeb91a6, + 0xeb91a7, + 0xeb91a8, + 0xeb91a9, + 0xeb91aa, + 0xeb91ab, + 0xeb91ac, + 0xeb91ad, + 0xeb91ae, + 0xeb91af, + 0xeb91b0, + 0xeb91b1, + 0xeb91b2, + 0xeb91b3, + 0xeb91b4, + 0xeb91b5, + 0xeb91b6, + 0xeb91b7, + 0xeb91b8, + 0xeb91b9, + 0xeb91ba, + 0xeb91bb, + 0xeb91bc, + 0xeb91bd, + 0xeb91be, + 0xeb91bf, + 0xeb9280, + 0xeb9281, + 0xeb9282, + 0xeb9283, + 0xeb9284, + 0xeb9285, + 0xeb9286, + 0xeb9287, + 0xeb9288, + 0xeb9289, + 0xeb928a, + 0xeb928b, + 0xeb928c, + 0xeb928d, + 0xeb928e, + 0xeb928f, + 0xeb9290, + 0xeb9291, + 0xeb9292, + 0xeb9293, + 0xeb9294, + 0xeb9295, + 0xeb9296, + 0xeb9297, + 0xeb9298, + 0xeb9299, + 0xeb929a, + 0xeb929b, + 0xeb929c, + 0xeb929d, + 0xeb929e, + 0xeb929f, + 0xeb92a0, + 0xeb92a1, + 0xeb92a2, + 0xeb92a3, + 0xeb92a4, + 0xeb92a5, + 0xeb92a6, + 0xeb92a7, + 0xeb92a8, + 0xeb92a9, + 0xeb92aa, + 0xeb92ab, + 0xeb92ac, + 0xeb92ad, + 0xeb92ae, + 0xeb92af, + 0xeb92b0, + 0xeb92b1, + 0xeb92b2, + 0xeb92b3, + 0xeb92b4, + 0xeb92b5, + 0xeb92b6, + 0xeb92b7, + 0xeb92b8, + 0xeb92b9, + 0xeb92ba, + 0xeb92bb, + 0xeb92bc, + 0xeb92bd, + 0xeb92be, + 0xeb92bf, + 0xeb9380, + 0xeb9381, + 0xeb9382, + 0xeb9383, + 0xeb9384, + 0xeb9385, + 0xeb9386, + 0xeb9387, + 0xeb9388, + 0xeb9389, + 0xeb938a, + 0xeb938b, + 0xeb938c, + 0xeb938d, + 0xeb938e, + 0xeb938f, + 0xeb9390, + 0xeb9391, + 0xeb9392, + 0xeb9393, + 0xeb9394, + 0xeb9395, + 0xeb9396, + 0xeb9397, + 0xeb9398, + 0xeb9399, + 0xeb939a, + 0xeb939b, + 0xeb939c, + 0xeb939d, + 0xeb939e, + 0xeb939f, + 0xeb93a0, + 0xeb93a1, + 0xeb93a2, + 0xeb93a3, + 0xeb93a4, + 0xeb93a5, + 0xeb93a6, + 0xeb93a7, + 0xeb93a8, + 0xeb93a9, + 0xeb93aa, + 0xeb93ab, + 0xeb93ac, + 0xeb93ad, + 0xeb93ae, + 0xeb93af, + 0xeb93b0, + 0xeb93b1, + 0xeb93b2, + 0xeb93b3, + 0xeb93b4, + 0xeb93b5, + 0xeb93b6, + 0xeb93b7, + 0xeb93b8, + 0xeb93b9, + 0xeb93ba, + 0xeb93bb, + 0xeb93bc, + 0xeb93bd, + 0xeb93be, + 0xeb93bf, + 0xeb9480, + 0xeb9481, + 0xeb9482, + 0xeb9483, + 0xeb9484, + 0xeb9485, + 0xeb9486, + 0xeb9487, + 0xeb9488, + 0xeb9489, + 0xeb948a, + 0xeb948b, + 0xeb948c, + 0xeb948d, + 0xeb948e, + 0xeb948f, + 0xeb9490, + 0xeb9491, + 0xeb9492, + 0xeb9493, + 0xeb9494, + 0xeb9495, + 0xeb9496, + 0xeb9497, + 0xeb9498, + 0xeb9499, + 0xeb949a, + 0xeb949b, + 0xeb949c, + 0xeb949d, + 0xeb949e, + 0xeb949f, + 0xeb94a0, + 0xeb94a1, + 0xeb94a2, + 0xeb94a3, + 0xeb94a4, + 0xeb94a5, + 0xeb94a6, + 0xeb94a7, + 0xeb94a8, + 0xeb94a9, + 0xeb94aa, + 0xeb94ab, + 0xeb94ac, + 0xeb94ad, + 0xeb94ae, + 0xeb94af, + 0xeb94b0, + 0xeb94b1, + 0xeb94b2, + 0xeb94b3, + 0xeb94b4, + 0xeb94b5, + 0xeb94b6, + 0xeb94b7, + 0xeb94b8, + 0xeb94b9, + 0xeb94ba, + 0xeb94bb, + 0xeb94bc, + 0xeb94bd, + 0xeb94be, + 0xeb94bf, + 0xeb9580, + 0xeb9581, + 0xeb9582, + 0xeb9583, + 0xeb9584, + 0xeb9585, + 0xeb9586, + 0xeb9587, + 0xeb9588, + 0xeb9589, + 0xeb958a, + 0xeb958b, + 0xeb958c, + 0xeb958d, + 0xeb958e, + 0xeb958f, + 0xeb9590, + 0xeb9591, + 0xeb9592, + 0xeb9593, + 0xeb9594, + 0xeb9595, + 0xeb9596, + 0xeb9597, + 0xeb9598, + 0xeb9599, + 0xeb959a, + 0xeb959b, + 0xeb959c, + 0xeb959d, + 0xeb959e, + 0xeb959f, + 0xeb95a0, + 0xeb95a1, + 0xeb95a2, + 0xeb95a3, + 0xeb95a4, + 0xeb95a5, + 0xeb95a6, + 0xeb95a7, + 0xeb95a8, + 0xeb95a9, + 0xeb95aa, + 0xeb95ab, + 0xeb95ac, + 0xeb95ad, + 0xeb95ae, + 0xeb95af, + 0xeb95b0, + 0xeb95b1, + 0xeb95b2, + 0xeb95b3, + 0xeb95b4, + 0xeb95b5, + 0xeb95b6, + 0xeb95b7, + 0xeb95b8, + 0xeb95b9, + 0xeb95ba, + 0xeb95bb, + 0xeb95bc, + 0xeb95bd, + 0xeb95be, + 0xeb95bf, + 0xeb9680, + 0xeb9681, + 0xeb9682, + 0xeb9683, + 0xeb9684, + 0xeb9685, + 0xeb9686, + 0xeb9687, + 0xeb9688, + 0xeb9689, + 0xeb968a, + 0xeb968b, + 0xeb968c, + 0xeb968d, + 0xeb968e, + 0xeb968f, + 0xeb9690, + 0xeb9691, + 0xeb9692, + 0xeb9693, + 0xeb9694, + 0xeb9695, + 0xeb9696, + 0xeb9697, + 0xeb9698, + 0xeb9699, + 0xeb969a, + 0xeb969b, + 0xeb969c, + 0xeb969d, + 0xeb969e, + 0xeb969f, + 0xeb96a0, + 0xeb96a1, + 0xeb96a2, + 0xeb96a3, + 0xeb96a4, + 0xeb96a5, + 0xeb96a6, + 0xeb96a7, + 0xeb96a8, + 0xeb96a9, + 0xeb96aa, + 0xeb96ab, + 0xeb96ac, + 0xeb96ad, + 0xeb96ae, + 0xeb96af, + 0xeb96b0, + 0xeb96b1, + 0xeb96b2, + 0xeb96b3, + 0xeb96b4, + 0xeb96b5, + 0xeb96b6, + 0xeb96b7, + 0xeb96b8, + 0xeb96b9, + 0xeb96ba, + 0xeb96bb, + 0xeb96bc, + 0xeb96bd, + 0xeb96be, + 0xeb96bf, + 0xeb9780, + 0xeb9781, + 0xeb9782, + 0xeb9783, + 0xeb9784, + 0xeb9785, + 0xeb9786, + 0xeb9787, + 0xeb9788, + 0xeb9789, + 0xeb978a, + 0xeb978b, + 0xeb978c, + 0xeb978d, + 0xeb978e, + 0xeb978f, + 0xeb9790, + 0xeb9791, + 0xeb9792, + 0xeb9793, + 0xeb9794, + 0xeb9795, + 0xeb9796, + 0xeb9797, + 0xeb9798, + 0xeb9799, + 0xeb979a, + 0xeb979b, + 0xeb979c, + 0xeb979d, + 0xeb979e, + 0xeb979f, + 0xeb97a0, + 0xeb97a1, + 0xeb97a2, + 0xeb97a3, + 0xeb97a4, + 0xeb97a5, + 0xeb97a6, + 0xeb97a7, + 0xeb97a8, + 0xeb97a9, + 0xeb97aa, + 0xeb97ab, + 0xeb97ac, + 0xeb97ad, + 0xeb97ae, + 0xeb97af, + 0xeb97b0, + 0xeb97b1, + 0xeb97b2, + 0xeb97b3, + 0xeb97b4, + 0xeb97b5, + 0xeb97b6, + 0xeb97b7, + 0xeb97b8, + 0xeb97b9, + 0xeb97ba, + 0xeb97bb, + 0xeb97bc, + 0xeb97bd, + 0xeb97be, + 0xeb97bf, + 0xeb9880, + 0xeb9881, + 0xeb9882, + 0xeb9883, + 0xeb9884, + 0xeb9885, + 0xeb9886, + 0xeb9887, + 0xeb9888, + 0xeb9889, + 0xeb988a, + 0xeb988b, + 0xeb988c, + 0xeb988d, + 0xeb988e, + 0xeb988f, + 0xeb9890, + 0xeb9891, + 0xeb9892, + 0xeb9893, + 0xeb9894, + 0xeb9895, + 0xeb9896, + 0xeb9897, + 0xeb9898, + 0xeb9899, + 0xeb989a, + 0xeb989b, + 0xeb989c, + 0xeb989d, + 0xeb989e, + 0xeb989f, + 0xeb98a0, + 0xeb98a1, + 0xeb98a2, + 0xeb98a3, + 0xeb98a4, + 0xeb98a5, + 0xeb98a6, + 0xeb98a7, + 0xeb98a8, + 0xeb98a9, + 0xeb98aa, + 0xeb98ab, + 0xeb98ac, + 0xeb98ad, + 0xeb98ae, + 0xeb98af, + 0xeb98b0, + 0xeb98b1, + 0xeb98b2, + 0xeb98b3, + 0xeb98b4, + 0xeb98b5, + 0xeb98b6, + 0xeb98b7, + 0xeb98b8, + 0xeb98b9, + 0xeb98ba, + 0xeb98bb, + 0xeb98bc, + 0xeb98bd, + 0xeb98be, + 0xeb98bf, + 0xeb9980, + 0xeb9981, + 0xeb9982, + 0xeb9983, + 0xeb9984, + 0xeb9985, + 0xeb9986, + 0xeb9987, + 0xeb9988, + 0xeb9989, + 0xeb998a, + 0xeb998b, + 0xeb998c, + 0xeb998d, + 0xeb998e, + 0xeb998f, + 0xeb9990, + 0xeb9991, + 0xeb9992, + 0xeb9993, + 0xeb9994, + 0xeb9995, + 0xeb9996, + 0xeb9997, + 0xeb9998, + 0xeb9999, + 0xeb999a, + 0xeb999b, + 0xeb999c, + 0xeb999d, + 0xeb999e, + 0xeb999f, + 0xeb99a0, + 0xeb99a1, + 0xeb99a2, + 0xeb99a3, + 0xeb99a4, + 0xeb99a5, + 0xeb99a6, + 0xeb99a7, + 0xeb99a8, + 0xeb99a9, + 0xeb99aa, + 0xeb99ab, + 0xeb99ac, + 0xeb99ad, + 0xeb99ae, + 0xeb99af, + 0xeb99b0, + 0xeb99b1, + 0xeb99b2, + 0xeb99b3, + 0xeb99b4, + 0xeb99b5, + 0xeb99b6, + 0xeb99b7, + 0xeb99b8, + 0xeb99b9, + 0xeb99ba, + 0xeb99bb, + 0xeb99bc, + 0xeb99bd, + 0xeb99be, + 0xeb99bf, + 0xeb9a80, + 0xeb9a81, + 0xeb9a82, + 0xeb9a83, + 0xeb9a84, + 0xeb9a85, + 0xeb9a86, + 0xeb9a87, + 0xeb9a88, + 0xeb9a89, + 0xeb9a8a, + 0xeb9a8b, + 0xeb9a8c, + 0xeb9a8d, + 0xeb9a8e, + 0xeb9a8f, + 0xeb9a90, + 0xeb9a91, + 0xeb9a92, + 0xeb9a93, + 0xeb9a94, + 0xeb9a95, + 0xeb9a96, + 0xeb9a97, + 0xeb9a98, + 0xeb9a99, + 0xeb9a9a, + 0xeb9a9b, + 0xeb9a9c, + 0xeb9a9d, + 0xeb9a9e, + 0xeb9a9f, + 0xeb9aa0, + 0xeb9aa1, + 0xeb9aa2, + 0xeb9aa3, + 0xeb9aa4, + 0xeb9aa5, + 0xeb9aa6, + 0xeb9aa7, + 0xeb9aa8, + 0xeb9aa9, + 0xeb9aaa, + 0xeb9aab, + 0xeb9aac, + 0xeb9aad, + 0xeb9aae, + 0xeb9aaf, + 0xeb9ab0, + 0xeb9ab1, + 0xeb9ab2, + 0xeb9ab3, + 0xeb9ab4, + 0xeb9ab5, + 0xeb9ab6, + 0xeb9ab7, + 0xeb9ab8, + 0xeb9ab9, + 0xeb9aba, + 0xeb9abb, + 0xeb9abc, + 0xeb9abd, + 0xeb9abe, + 0xeb9abf, + 0xeb9b80, + 0xeb9b81, + 0xeb9b82, + 0xeb9b83, + 0xeb9b84, + 0xeb9b85, + 0xeb9b86, + 0xeb9b87, + 0xeb9b88, + 0xeb9b89, + 0xeb9b8a, + 0xeb9b8b, + 0xeb9b8c, + 0xeb9b8d, + 0xeb9b8e, + 0xeb9b8f, + 0xeb9b90, + 0xeb9b91, + 0xeb9b92, + 0xeb9b93, + 0xeb9b94, + 0xeb9b95, + 0xeb9b96, + 0xeb9b97, + 0xeb9b98, + 0xeb9b99, + 0xeb9b9a, + 0xeb9b9b, + 0xeb9b9c, + 0xeb9b9d, + 0xeb9b9e, + 0xeb9b9f, + 0xeb9ba0, + 0xeb9ba1, + 0xeb9ba2, + 0xeb9ba3, + 0xeb9ba4, + 0xeb9ba5, + 0xeb9ba6, + 0xeb9ba7, + 0xeb9ba8, + 0xeb9ba9, + 0xeb9baa, + 0xeb9bab, + 0xeb9bac, + 0xeb9bad, + 0xeb9bae, + 0xeb9baf, + 0xeb9bb0, + 0xeb9bb1, + 0xeb9bb2, + 0xeb9bb3, + 0xeb9bb4, + 0xeb9bb5, + 0xeb9bb6, + 0xeb9bb7, + 0xeb9bb8, + 0xeb9bb9, + 0xeb9bba, + 0xeb9bbb, + 0xeb9bbc, + 0xeb9bbd, + 0xeb9bbe, + 0xeb9bbf, + 0xeb9c80, + 0xeb9c81, + 0xeb9c82, + 0xeb9c83, + 0xeb9c84, + 0xeb9c85, + 0xeb9c86, + 0xeb9c87, + 0xeb9c88, + 0xeb9c89, + 0xeb9c8a, + 0xeb9c8b, + 0xeb9c8c, + 0xeb9c8d, + 0xeb9c8e, + 0xeb9c8f, + 0xeb9c90, + 0xeb9c91, + 0xeb9c92, + 0xeb9c93, + 0xeb9c94, + 0xeb9c95, + 0xeb9c96, + 0xeb9c97, + 0xeb9c98, + 0xeb9c99, + 0xeb9c9a, + 0xeb9c9b, + 0xeb9c9c, + 0xeb9c9d, + 0xeb9c9e, + 0xeb9c9f, + 0xeb9ca0, + 0xeb9ca1, + 0xeb9ca2, + 0xeb9ca3, + 0xeb9ca4, + 0xeb9ca5, + 0xeb9ca6, + 0xeb9ca7, + 0xeb9ca8, + 0xeb9ca9, + 0xeb9caa, + 0xeb9cab, + 0xeb9cac, + 0xeb9cad, + 0xeb9cae, + 0xeb9caf, + 0xeb9cb0, + 0xeb9cb1, + 0xeb9cb2, + 0xeb9cb3, + 0xeb9cb4, + 0xeb9cb5, + 0xeb9cb6, + 0xeb9cb7, + 0xeb9cb8, + 0xeb9cb9, + 0xeb9cba, + 0xeb9cbb, + 0xeb9cbc, + 0xeb9cbd, + 0xeb9cbe, + 0xeb9cbf, + 0xeb9d80, + 0xeb9d81, + 0xeb9d82, + 0xeb9d83, + 0xeb9d84, + 0xeb9d85, + 0xeb9d86, + 0xeb9d87, + 0xeb9d88, + 0xeb9d89, + 0xeb9d8a, + 0xeb9d8b, + 0xeb9d8c, + 0xeb9d8d, + 0xeb9d8e, + 0xeb9d8f, + 0xeb9d90, + 0xeb9d91, + 0xeb9d92, + 0xeb9d93, + 0xeb9d94, + 0xeb9d95, + 0xeb9d96, + 0xeb9d97, + 0xeb9d98, + 0xeb9d99, + 0xeb9d9a, + 0xeb9d9b, + 0xeb9d9c, + 0xeb9d9d, + 0xeb9d9e, + 0xeb9d9f, + 0xeb9da0, + 0xeb9da1, + 0xeb9da2, + 0xeb9da3, + 0xeb9da4, + 0xeb9da5, + 0xeb9da6, + 0xeb9da7, + 0xeb9da8, + 0xeb9da9, + 0xeb9daa, + 0xeb9dab, + 0xeb9dac, + 0xeb9dad, + 0xeb9dae, + 0xeb9daf, + 0xeb9db0, + 0xeb9db1, + 0xeb9db2, + 0xeb9db3, + 0xeb9db4, + 0xeb9db5, + 0xeb9db6, + 0xeb9db7, + 0xeb9db8, + 0xeb9db9, + 0xeb9dba, + 0xeb9dbb, + 0xeb9dbc, + 0xeb9dbd, + 0xeb9dbe, + 0xeb9dbf, + 0xeb9e80, + 0xeb9e81, + 0xeb9e82, + 0xeb9e83, + 0xeb9e84, + 0xeb9e85, + 0xeb9e86, + 0xeb9e87, + 0xeb9e88, + 0xeb9e89, + 0xeb9e8a, + 0xeb9e8b, + 0xeb9e8c, + 0xeb9e8d, + 0xeb9e8e, + 0xeb9e8f, + 0xeb9e90, + 0xeb9e91, + 0xeb9e92, + 0xeb9e93, + 0xeb9e94, + 0xeb9e95, + 0xeb9e96, + 0xeb9e97, + 0xeb9e98, + 0xeb9e99, + 0xeb9e9a, + 0xeb9e9b, + 0xeb9e9c, + 0xeb9e9d, + 0xeb9e9e, + 0xeb9e9f, + 0xeb9ea0, + 0xeb9ea1, + 0xeb9ea2, + 0xeb9ea3, + 0xeb9ea4, + 0xeb9ea5, + 0xeb9ea6, + 0xeb9ea7, + 0xeb9ea8, + 0xeb9ea9, + 0xeb9eaa, + 0xeb9eab, + 0xeb9eac, + 0xeb9ead, + 0xeb9eae, + 0xeb9eaf, + 0xeb9eb0, + 0xeb9eb1, + 0xeb9eb2, + 0xeb9eb3, + 0xeb9eb4, + 0xeb9eb5, + 0xeb9eb6, + 0xeb9eb7, + 0xeb9eb8, + 0xeb9eb9, + 0xeb9eba, + 0xeb9ebb, + 0xeb9ebc, + 0xeb9ebd, + 0xeb9ebe, + 0xeb9ebf, + 0xeb9f80, + 0xeb9f81, + 0xeb9f82, + 0xeb9f83, + 0xeb9f84, + 0xeb9f85, + 0xeb9f86, + 0xeb9f87, + 0xeb9f88, + 0xeb9f89, + 0xeb9f8a, + 0xeb9f8b, + 0xeb9f8c, + 0xeb9f8d, + 0xeb9f8e, + 0xeb9f8f, + 0xeb9f90, + 0xeb9f91, + 0xeb9f92, + 0xeb9f93, + 0xeb9f94, + 0xeb9f95, + 0xeb9f96, + 0xeb9f97, + 0xeb9f98, + 0xeb9f99, + 0xeb9f9a, + 0xeb9f9b, + 0xeb9f9c, + 0xeb9f9d, + 0xeb9f9e, + 0xeb9f9f, + 0xeb9fa0, + 0xeb9fa1, + 0xeb9fa2, + 0xeb9fa3, + 0xeb9fa4, + 0xeb9fa5, + 0xeb9fa6, + 0xeb9fa7, + 0xeb9fa8, + 0xeb9fa9, + 0xeb9faa, + 0xeb9fab, + 0xeb9fac, + 0xeb9fad, + 0xeb9fae, + 0xeb9faf, + 0xeb9fb0, + 0xeb9fb1, + 0xeb9fb2, + 0xeb9fb3, + 0xeb9fb4, + 0xeb9fb5, + 0xeb9fb6, + 0xeb9fb7, + 0xeb9fb8, + 0xeb9fb9, + 0xeb9fba, + 0xeb9fbb, + 0xeb9fbc, + 0xeb9fbd, + 0xeb9fbe, + 0xeb9fbf, + 0xeba080, + 0xeba081, + 0xeba082, + 0xeba083, + 0xeba084, + 0xeba085, + 0xeba086, + 0xeba087, + 0xeba088, + 0xeba089, + 0xeba08a, + 0xeba08b, + 0xeba08c, + 0xeba08d, + 0xeba08e, + 0xeba08f, + 0xeba090, + 0xeba091, + 0xeba092, + 0xeba093, + 0xeba094, + 0xeba095, + 0xeba096, + 0xeba097, + 0xeba098, + 0xeba099, + 0xeba09a, + 0xeba09b, + 0xeba09c, + 0xeba09d, + 0xeba09e, + 0xeba09f, + 0xeba0a0, + 0xeba0a1, + 0xeba0a2, + 0xeba0a3, + 0xeba0a4, + 0xeba0a5, + 0xeba0a6, + 0xeba0a7, + 0xeba0a8, + 0xeba0a9, + 0xeba0aa, + 0xeba0ab, + 0xeba0ac, + 0xeba0ad, + 0xeba0ae, + 0xeba0af, + 0xeba0b0, + 0xeba0b1, + 0xeba0b2, + 0xeba0b3, + 0xeba0b4, + 0xeba0b5, + 0xeba0b6, + 0xeba0b7, + 0xeba0b8, + 0xeba0b9, + 0xeba0ba, + 0xeba0bb, + 0xeba0bc, + 0xeba0bd, + 0xeba0be, + 0xeba0bf, + 0xeba180, + 0xeba181, + 0xeba182, + 0xeba183, + 0xeba184, + 0xeba185, + 0xeba186, + 0xeba187, + 0xeba188, + 0xeba189, + 0xeba18a, + 0xeba18b, + 0xeba18c, + 0xeba18d, + 0xeba18e, + 0xeba18f, + 0xeba190, + 0xeba191, + 0xeba192, + 0xeba193, + 0xeba194, + 0xeba195, + 0xeba196, + 0xeba197, + 0xeba198, + 0xeba199, + 0xeba19a, + 0xeba19b, + 0xeba19c, + 0xeba19d, + 0xeba19e, + 0xeba19f, + 0xeba1a0, + 0xeba1a1, + 0xeba1a2, + 0xeba1a3, + 0xeba1a4, + 0xeba1a5, + 0xeba1a6, + 0xeba1a7, + 0xeba1a8, + 0xeba1a9, + 0xeba1aa, + 0xeba1ab, + 0xeba1ac, + 0xeba1ad, + 0xeba1ae, + 0xeba1af, + 0xeba1b0, + 0xeba1b1, + 0xeba1b2, + 0xeba1b3, + 0xeba1b4, + 0xeba1b5, + 0xeba1b6, + 0xeba1b7, + 0xeba1b8, + 0xeba1b9, + 0xeba1ba, + 0xeba1bb, + 0xeba1bc, + 0xeba1bd, + 0xeba1be, + 0xeba1bf, + 0xeba280, + 0xeba281, + 0xeba282, + 0xeba283, + 0xeba284, + 0xeba285, + 0xeba286, + 0xeba287, + 0xeba288, + 0xeba289, + 0xeba28a, + 0xeba28b, + 0xeba28c, + 0xeba28d, + 0xeba28e, + 0xeba28f, + 0xeba290, + 0xeba291, + 0xeba292, + 0xeba293, + 0xeba294, + 0xeba295, + 0xeba296, + 0xeba297, + 0xeba298, + 0xeba299, + 0xeba29a, + 0xeba29b, + 0xeba29c, + 0xeba29d, + 0xeba29e, + 0xeba29f, + 0xeba2a0, + 0xeba2a1, + 0xeba2a2, + 0xeba2a3, + 0xeba2a4, + 0xeba2a5, + 0xeba2a6, + 0xeba2a7, + 0xeba2a8, + 0xeba2a9, + 0xeba2aa, + 0xeba2ab, + 0xeba2ac, + 0xeba2ad, + 0xeba2ae, + 0xeba2af, + 0xeba2b0, + 0xeba2b1, + 0xeba2b2, + 0xeba2b3, + 0xeba2b4, + 0xeba2b5, + 0xeba2b6, + 0xeba2b7, + 0xeba2b8, + 0xeba2b9, + 0xeba2ba, + 0xeba2bb, + 0xeba2bc, + 0xeba2bd, + 0xeba2be, + 0xeba2bf, + 0xeba380, + 0xeba381, + 0xeba382, + 0xeba383, + 0xeba384, + 0xeba385, + 0xeba386, + 0xeba387, + 0xeba388, + 0xeba389, + 0xeba38a, + 0xeba38b, + 0xeba38c, + 0xeba38d, + 0xeba38e, + 0xeba38f, + 0xeba390, + 0xeba391, + 0xeba392, + 0xeba393, + 0xeba394, + 0xeba395, + 0xeba396, + 0xeba397, + 0xeba398, + 0xeba399, + 0xeba39a, + 0xeba39b, + 0xeba39c, + 0xeba39d, + 0xeba39e, + 0xeba39f, + 0xeba3a0, + 0xeba3a1, + 0xeba3a2, + 0xeba3a3, + 0xeba3a4, + 0xeba3a5, + 0xeba3a6, + 0xeba3a7, + 0xeba3a8, + 0xeba3a9, + 0xeba3aa, + 0xeba3ab, + 0xeba3ac, + 0xeba3ad, + 0xeba3ae, + 0xeba3af, + 0xeba3b0, + 0xeba3b1, + 0xeba3b2, + 0xeba3b3, + 0xeba3b4, + 0xeba3b5, + 0xeba3b6, + 0xeba3b7, + 0xeba3b8, + 0xeba3b9, + 0xeba3ba, + 0xeba3bb, + 0xeba3bc, + 0xeba3bd, + 0xeba3be, + 0xeba3bf, + 0xeba480, + 0xeba481, + 0xeba482, + 0xeba483, + 0xeba484, + 0xeba485, + 0xeba486, + 0xeba487, + 0xeba488, + 0xeba489, + 0xeba48a, + 0xeba48b, + 0xeba48c, + 0xeba48d, + 0xeba48e, + 0xeba48f, + 0xeba490, + 0xeba491, + 0xeba492, + 0xeba493, + 0xeba494, + 0xeba495, + 0xeba496, + 0xeba497, + 0xeba498, + 0xeba499, + 0xeba49a, + 0xeba49b, + 0xeba49c, + 0xeba49d, + 0xeba49e, + 0xeba49f, + 0xeba4a0, + 0xeba4a1, + 0xeba4a2, + 0xeba4a3, + 0xeba4a4, + 0xeba4a5, + 0xeba4a6, + 0xeba4a7, + 0xeba4a8, + 0xeba4a9, + 0xeba4aa, + 0xeba4ab, + 0xeba4ac, + 0xeba4ad, + 0xeba4ae, + 0xeba4af, + 0xeba4b0, + 0xeba4b1, + 0xeba4b2, + 0xeba4b3, + 0xeba4b4, + 0xeba4b5, + 0xeba4b6, + 0xeba4b7, + 0xeba4b8, + 0xeba4b9, + 0xeba4ba, + 0xeba4bb, + 0xeba4bc, + 0xeba4bd, + 0xeba4be, + 0xeba4bf, + 0xeba580, + 0xeba581, + 0xeba582, + 0xeba583, + 0xeba584, + 0xeba585, + 0xeba586, + 0xeba587, + 0xeba588, + 0xeba589, + 0xeba58a, + 0xeba58b, + 0xeba58c, + 0xeba58d, + 0xeba58e, + 0xeba58f, + 0xeba590, + 0xeba591, + 0xeba592, + 0xeba593, + 0xeba594, + 0xeba595, + 0xeba596, + 0xeba597, + 0xeba598, + 0xeba599, + 0xeba59a, + 0xeba59b, + 0xeba59c, + 0xeba59d, + 0xeba59e, + 0xeba59f, + 0xeba5a0, + 0xeba5a1, + 0xeba5a2, + 0xeba5a3, + 0xeba5a4, + 0xeba5a5, + 0xeba5a6, + 0xeba5a7, + 0xeba5a8, + 0xeba5a9, + 0xeba5aa, + 0xeba5ab, + 0xeba5ac, + 0xeba5ad, + 0xeba5ae, + 0xeba5af, + 0xeba5b0, + 0xeba5b1, + 0xeba5b2, + 0xeba5b3, + 0xeba5b4, + 0xeba5b5, + 0xeba5b6, + 0xeba5b7, + 0xeba5b8, + 0xeba5b9, + 0xeba5ba, + 0xeba5bb, + 0xeba5bc, + 0xeba5bd, + 0xeba5be, + 0xeba5bf, + 0xeba680, + 0xeba681, + 0xeba682, + 0xeba683, + 0xeba684, + 0xeba685, + 0xeba686, + 0xeba687, + 0xeba688, + 0xeba689, + 0xeba68a, + 0xeba68b, + 0xeba68c, + 0xeba68d, + 0xeba68e, + 0xeba68f, + 0xeba690, + 0xeba691, + 0xeba692, + 0xeba693, + 0xeba694, + 0xeba695, + 0xeba696, + 0xeba697, + 0xeba698, + 0xeba699, + 0xeba69a, + 0xeba69b, + 0xeba69c, + 0xeba69d, + 0xeba69e, + 0xeba69f, + 0xeba6a0, + 0xeba6a1, + 0xeba6a2, + 0xeba6a3, + 0xeba6a4, + 0xeba6a5, + 0xeba6a6, + 0xeba6a7, + 0xeba6a8, + 0xeba6a9, + 0xeba6aa, + 0xeba6ab, + 0xeba6ac, + 0xeba6ad, + 0xeba6ae, + 0xeba6af, + 0xeba6b0, + 0xeba6b1, + 0xeba6b2, + 0xeba6b3, + 0xeba6b4, + 0xeba6b5, + 0xeba6b6, + 0xeba6b7, + 0xeba6b8, + 0xeba6b9, + 0xeba6ba, + 0xeba6bb, + 0xeba6bc, + 0xeba6bd, + 0xeba6be, + 0xeba6bf, + 0xeba780, + 0xeba781, + 0xeba782, + 0xeba783, + 0xeba784, + 0xeba785, + 0xeba786, + 0xeba787, + 0xeba788, + 0xeba789, + 0xeba78a, + 0xeba78b, + 0xeba78c, + 0xeba78d, + 0xeba78e, + 0xeba78f, + 0xeba790, + 0xeba791, + 0xeba792, + 0xeba793, + 0xeba794, + 0xeba795, + 0xeba796, + 0xeba797, + 0xeba798, + 0xeba799, + 0xeba79a, + 0xeba79b, + 0xeba79c, + 0xeba79d, + 0xeba79e, + 0xeba79f, + 0xeba7a0, + 0xeba7a1, + 0xeba7a2, + 0xeba7a3, + 0xeba7a4, + 0xeba7a5, + 0xeba7a6, + 0xeba7a7, + 0xeba7a8, + 0xeba7a9, + 0xeba7aa, + 0xeba7ab, + 0xeba7ac, + 0xeba7ad, + 0xeba7ae, + 0xeba7af, + 0xeba7b0, + 0xeba7b1, + 0xeba7b2, + 0xeba7b3, + 0xeba7b4, + 0xeba7b5, + 0xeba7b6, + 0xeba7b7, + 0xeba7b8, + 0xeba7b9, + 0xeba7ba, + 0xeba7bb, + 0xeba7bc, + 0xeba7bd, + 0xeba7be, + 0xeba7bf, + 0xeba880, + 0xeba881, + 0xeba882, + 0xeba883, + 0xeba884, + 0xeba885, + 0xeba886, + 0xeba887, + 0xeba888, + 0xeba889, + 0xeba88a, + 0xeba88b, + 0xeba88c, + 0xeba88d, + 0xeba88e, + 0xeba88f, + 0xeba890, + 0xeba891, + 0xeba892, + 0xeba893, + 0xeba894, + 0xeba895, + 0xeba896, + 0xeba897, + 0xeba898, + 0xeba899, + 0xeba89a, + 0xeba89b, + 0xeba89c, + 0xeba89d, + 0xeba89e, + 0xeba89f, + 0xeba8a0, + 0xeba8a1, + 0xeba8a2, + 0xeba8a3, + 0xeba8a4, + 0xeba8a5, + 0xeba8a6, + 0xeba8a7, + 0xeba8a8, + 0xeba8a9, + 0xeba8aa, + 0xeba8ab, + 0xeba8ac, + 0xeba8ad, + 0xeba8ae, + 0xeba8af, + 0xeba8b0, + 0xeba8b1, + 0xeba8b2, + 0xeba8b3, + 0xeba8b4, + 0xeba8b5, + 0xeba8b6, + 0xeba8b7, + 0xeba8b8, + 0xeba8b9, + 0xeba8ba, + 0xeba8bb, + 0xeba8bc, + 0xeba8bd, + 0xeba8be, + 0xeba8bf, + 0xeba980, + 0xeba981, + 0xeba982, + 0xeba983, + 0xeba984, + 0xeba985, + 0xeba986, + 0xeba987, + 0xeba988, + 0xeba989, + 0xeba98a, + 0xeba98b, + 0xeba98c, + 0xeba98d, + 0xeba98e, + 0xeba98f, + 0xeba990, + 0xeba991, + 0xeba992, + 0xeba993, + 0xeba994, + 0xeba995, + 0xeba996, + 0xeba997, + 0xeba998, + 0xeba999, + 0xeba99a, + 0xeba99b, + 0xeba99c, + 0xeba99d, + 0xeba99e, + 0xeba99f, + 0xeba9a0, + 0xeba9a1, + 0xeba9a2, + 0xeba9a3, + 0xeba9a4, + 0xeba9a5, + 0xeba9a6, + 0xeba9a7, + 0xeba9a8, + 0xeba9a9, + 0xeba9aa, + 0xeba9ab, + 0xeba9ac, + 0xeba9ad, + 0xeba9ae, + 0xeba9af, + 0xeba9b0, + 0xeba9b1, + 0xeba9b2, + 0xeba9b3, + 0xeba9b4, + 0xeba9b5, + 0xeba9b6, + 0xeba9b7, + 0xeba9b8, + 0xeba9b9, + 0xeba9ba, + 0xeba9bb, + 0xeba9bc, + 0xeba9bd, + 0xeba9be, + 0xeba9bf, + 0xebaa80, + 0xebaa81, + 0xebaa82, + 0xebaa83, + 0xebaa84, + 0xebaa85, + 0xebaa86, + 0xebaa87, + 0xebaa88, + 0xebaa89, + 0xebaa8a, + 0xebaa8b, + 0xebaa8c, + 0xebaa8d, + 0xebaa8e, + 0xebaa8f, + 0xebaa90, + 0xebaa91, + 0xebaa92, + 0xebaa93, + 0xebaa94, + 0xebaa95, + 0xebaa96, + 0xebaa97, + 0xebaa98, + 0xebaa99, + 0xebaa9a, + 0xebaa9b, + 0xebaa9c, + 0xebaa9d, + 0xebaa9e, + 0xebaa9f, + 0xebaaa0, + 0xebaaa1, + 0xebaaa2, + 0xebaaa3, + 0xebaaa4, + 0xebaaa5, + 0xebaaa6, + 0xebaaa7, + 0xebaaa8, + 0xebaaa9, + 0xebaaaa, + 0xebaaab, + 0xebaaac, + 0xebaaad, + 0xebaaae, + 0xebaaaf, + 0xebaab0, + 0xebaab1, + 0xebaab2, + 0xebaab3, + 0xebaab4, + 0xebaab5, + 0xebaab6, + 0xebaab7, + 0xebaab8, + 0xebaab9, + 0xebaaba, + 0xebaabb, + 0xebaabc, + 0xebaabd, + 0xebaabe, + 0xebaabf, + 0xebab80, + 0xebab81, + 0xebab82, + 0xebab83, + 0xebab84, + 0xebab85, + 0xebab86, + 0xebab87, + 0xebab88, + 0xebab89, + 0xebab8a, + 0xebab8b, + 0xebab8c, + 0xebab8d, + 0xebab8e, + 0xebab8f, + 0xebab90, + 0xebab91, + 0xebab92, + 0xebab93, + 0xebab94, + 0xebab95, + 0xebab96, + 0xebab97, + 0xebab98, + 0xebab99, + 0xebab9a, + 0xebab9b, + 0xebab9c, + 0xebab9d, + 0xebab9e, + 0xebab9f, + 0xebaba0, + 0xebaba1, + 0xebaba2, + 0xebaba3, + 0xebaba4, + 0xebaba5, + 0xebaba6, + 0xebaba7, + 0xebaba8, + 0xebaba9, + 0xebabaa, + 0xebabab, + 0xebabac, + 0xebabad, + 0xebabae, + 0xebabaf, + 0xebabb0, + 0xebabb1, + 0xebabb2, + 0xebabb3, + 0xebabb4, + 0xebabb5, + 0xebabb6, + 0xebabb7, + 0xebabb8, + 0xebabb9, + 0xebabba, + 0xebabbb, + 0xebabbc, + 0xebabbd, + 0xebabbe, + 0xebabbf, + 0xebac80, + 0xebac81, + 0xebac82, + 0xebac83, + 0xebac84, + 0xebac85, + 0xebac86, + 0xebac87, + 0xebac88, + 0xebac89, + 0xebac8a, + 0xebac8b, + 0xebac8c, + 0xebac8d, + 0xebac8e, + 0xebac8f, + 0xebac90, + 0xebac91, + 0xebac92, + 0xebac93, + 0xebac94, + 0xebac95, + 0xebac96, + 0xebac97, + 0xebac98, + 0xebac99, + 0xebac9a, + 0xebac9b, + 0xebac9c, + 0xebac9d, + 0xebac9e, + 0xebac9f, + 0xebaca0, + 0xebaca1, + 0xebaca2, + 0xebaca3, + 0xebaca4, + 0xebaca5, + 0xebaca6, + 0xebaca7, + 0xebaca8, + 0xebaca9, + 0xebacaa, + 0xebacab, + 0xebacac, + 0xebacad, + 0xebacae, + 0xebacaf, + 0xebacb0, + 0xebacb1, + 0xebacb2, + 0xebacb3, + 0xebacb4, + 0xebacb5, + 0xebacb6, + 0xebacb7, + 0xebacb8, + 0xebacb9, + 0xebacba, + 0xebacbb, + 0xebacbc, + 0xebacbd, + 0xebacbe, + 0xebacbf, + 0xebad80, + 0xebad81, + 0xebad82, + 0xebad83, + 0xebad84, + 0xebad85, + 0xebad86, + 0xebad87, + 0xebad88, + 0xebad89, + 0xebad8a, + 0xebad8b, + 0xebad8c, + 0xebad8d, + 0xebad8e, + 0xebad8f, + 0xebad90, + 0xebad91, + 0xebad92, + 0xebad93, + 0xebad94, + 0xebad95, + 0xebad96, + 0xebad97, + 0xebad98, + 0xebad99, + 0xebad9a, + 0xebad9b, + 0xebad9c, + 0xebad9d, + 0xebad9e, + 0xebad9f, + 0xebada0, + 0xebada1, + 0xebada2, + 0xebada3, + 0xebada4, + 0xebada5, + 0xebada6, + 0xebada7, + 0xebada8, + 0xebada9, + 0xebadaa, + 0xebadab, + 0xebadac, + 0xebadad, + 0xebadae, + 0xebadaf, + 0xebadb0, + 0xebadb1, + 0xebadb2, + 0xebadb3, + 0xebadb4, + 0xebadb5, + 0xebadb6, + 0xebadb7, + 0xebadb8, + 0xebadb9, + 0xebadba, + 0xebadbb, + 0xebadbc, + 0xebadbd, + 0xebadbe, + 0xebadbf, + 0xebae80, + 0xebae81, + 0xebae82, + 0xebae83, + 0xebae84, + 0xebae85, + 0xebae86, + 0xebae87, + 0xebae88, + 0xebae89, + 0xebae8a, + 0xebae8b, + 0xebae8c, + 0xebae8d, + 0xebae8e, + 0xebae8f, + 0xebae90, + 0xebae91, + 0xebae92, + 0xebae93, + 0xebae94, + 0xebae95, + 0xebae96, + 0xebae97, + 0xebae98, + 0xebae99, + 0xebae9a, + 0xebae9b, + 0xebae9c, + 0xebae9d, + 0xebae9e, + 0xebae9f, + 0xebaea0, + 0xebaea1, + 0xebaea2, + 0xebaea3, + 0xebaea4, + 0xebaea5, + 0xebaea6, + 0xebaea7, + 0xebaea8, + 0xebaea9, + 0xebaeaa, + 0xebaeab, + 0xebaeac, + 0xebaead, + 0xebaeae, + 0xebaeaf, + 0xebaeb0, + 0xebaeb1, + 0xebaeb2, + 0xebaeb3, + 0xebaeb4, + 0xebaeb5, + 0xebaeb6, + 0xebaeb7, + 0xebaeb8, + 0xebaeb9, + 0xebaeba, + 0xebaebb, + 0xebaebc, + 0xebaebd, + 0xebaebe, + 0xebaebf, + 0xebaf80, + 0xebaf81, + 0xebaf82, + 0xebaf83, + 0xebaf84, + 0xebaf85, + 0xebaf86, + 0xebaf87, + 0xebaf88, + 0xebaf89, + 0xebaf8a, + 0xebaf8b, + 0xebaf8c, + 0xebaf8d, + 0xebaf8e, + 0xebaf8f, + 0xebaf90, + 0xebaf91, + 0xebaf92, + 0xebaf93, + 0xebaf94, + 0xebaf95, + 0xebaf96, + 0xebaf97, + 0xebaf98, + 0xebaf99, + 0xebaf9a, + 0xebaf9b, + 0xebaf9c, + 0xebaf9d, + 0xebaf9e, + 0xebaf9f, + 0xebafa0, + 0xebafa1, + 0xebafa2, + 0xebafa3, + 0xebafa4, + 0xebafa5, + 0xebafa6, + 0xebafa7, + 0xebafa8, + 0xebafa9, + 0xebafaa, + 0xebafab, + 0xebafac, + 0xebafad, + 0xebafae, + 0xebafaf, + 0xebafb0, + 0xebafb1, + 0xebafb2, + 0xebafb3, + 0xebafb4, + 0xebafb5, + 0xebafb6, + 0xebafb7, + 0xebafb8, + 0xebafb9, + 0xebafba, + 0xebafbb, + 0xebafbc, + 0xebafbd, + 0xebafbe, + 0xebafbf, + 0xebb080, + 0xebb081, + 0xebb082, + 0xebb083, + 0xebb084, + 0xebb085, + 0xebb086, + 0xebb087, + 0xebb088, + 0xebb089, + 0xebb08a, + 0xebb08b, + 0xebb08c, + 0xebb08d, + 0xebb08e, + 0xebb08f, + 0xebb090, + 0xebb091, + 0xebb092, + 0xebb093, + 0xebb094, + 0xebb095, + 0xebb096, + 0xebb097, + 0xebb098, + 0xebb099, + 0xebb09a, + 0xebb09b, + 0xebb09c, + 0xebb09d, + 0xebb09e, + 0xebb09f, + 0xebb0a0, + 0xebb0a1, + 0xebb0a2, + 0xebb0a3, + 0xebb0a4, + 0xebb0a5, + 0xebb0a6, + 0xebb0a7, + 0xebb0a8, + 0xebb0a9, + 0xebb0aa, + 0xebb0ab, + 0xebb0ac, + 0xebb0ad, + 0xebb0ae, + 0xebb0af, + 0xebb0b0, + 0xebb0b1, + 0xebb0b2, + 0xebb0b3, + 0xebb0b4, + 0xebb0b5, + 0xebb0b6, + 0xebb0b7, + 0xebb0b8, + 0xebb0b9, + 0xebb0ba, + 0xebb0bb, + 0xebb0bc, + 0xebb0bd, + 0xebb0be, + 0xebb0bf, + 0xebb180, + 0xebb181, + 0xebb182, + 0xebb183, + 0xebb184, + 0xebb185, + 0xebb186, + 0xebb187, + 0xebb188, + 0xebb189, + 0xebb18a, + 0xebb18b, + 0xebb18c, + 0xebb18d, + 0xebb18e, + 0xebb18f, + 0xebb190, + 0xebb191, + 0xebb192, + 0xebb193, + 0xebb194, + 0xebb195, + 0xebb196, + 0xebb197, + 0xebb198, + 0xebb199, + 0xebb19a, + 0xebb19b, + 0xebb19c, + 0xebb19d, + 0xebb19e, + 0xebb19f, + 0xebb1a0, + 0xebb1a1, + 0xebb1a2, + 0xebb1a3, + 0xebb1a4, + 0xebb1a5, + 0xebb1a6, + 0xebb1a7, + 0xebb1a8, + 0xebb1a9, + 0xebb1aa, + 0xebb1ab, + 0xebb1ac, + 0xebb1ad, + 0xebb1ae, + 0xebb1af, + 0xebb1b0, + 0xebb1b1, + 0xebb1b2, + 0xebb1b3, + 0xebb1b4, + 0xebb1b5, + 0xebb1b6, + 0xebb1b7, + 0xebb1b8, + 0xebb1b9, + 0xebb1ba, + 0xebb1bb, + 0xebb1bc, + 0xebb1bd, + 0xebb1be, + 0xebb1bf, + 0xebb280, + 0xebb281, + 0xebb282, + 0xebb283, + 0xebb284, + 0xebb285, + 0xebb286, + 0xebb287, + 0xebb288, + 0xebb289, + 0xebb28a, + 0xebb28b, + 0xebb28c, + 0xebb28d, + 0xebb28e, + 0xebb28f, + 0xebb290, + 0xebb291, + 0xebb292, + 0xebb293, + 0xebb294, + 0xebb295, + 0xebb296, + 0xebb297, + 0xebb298, + 0xebb299, + 0xebb29a, + 0xebb29b, + 0xebb29c, + 0xebb29d, + 0xebb29e, + 0xebb29f, + 0xebb2a0, + 0xebb2a1, + 0xebb2a2, + 0xebb2a3, + 0xebb2a4, + 0xebb2a5, + 0xebb2a6, + 0xebb2a7, + 0xebb2a8, + 0xebb2a9, + 0xebb2aa, + 0xebb2ab, + 0xebb2ac, + 0xebb2ad, + 0xebb2ae, + 0xebb2af, + 0xebb2b0, + 0xebb2b1, + 0xebb2b2, + 0xebb2b3, + 0xebb2b4, + 0xebb2b5, + 0xebb2b6, + 0xebb2b7, + 0xebb2b8, + 0xebb2b9, + 0xebb2ba, + 0xebb2bb, + 0xebb2bc, + 0xebb2bd, + 0xebb2be, + 0xebb2bf, + 0xebb380, + 0xebb381, + 0xebb382, + 0xebb383, + 0xebb384, + 0xebb385, + 0xebb386, + 0xebb387, + 0xebb388, + 0xebb389, + 0xebb38a, + 0xebb38b, + 0xebb38c, + 0xebb38d, + 0xebb38e, + 0xebb38f, + 0xebb390, + 0xebb391, + 0xebb392, + 0xebb393, + 0xebb394, + 0xebb395, + 0xebb396, + 0xebb397, + 0xebb398, + 0xebb399, + 0xebb39a, + 0xebb39b, + 0xebb39c, + 0xebb39d, + 0xebb39e, + 0xebb39f, + 0xebb3a0, + 0xebb3a1, + 0xebb3a2, + 0xebb3a3, + 0xebb3a4, + 0xebb3a5, + 0xebb3a6, + 0xebb3a7, + 0xebb3a8, + 0xebb3a9, + 0xebb3aa, + 0xebb3ab, + 0xebb3ac, + 0xebb3ad, + 0xebb3ae, + 0xebb3af, + 0xebb3b0, + 0xebb3b1, + 0xebb3b2, + 0xebb3b3, + 0xebb3b4, + 0xebb3b5, + 0xebb3b6, + 0xebb3b7, + 0xebb3b8, + 0xebb3b9, + 0xebb3ba, + 0xebb3bb, + 0xebb3bc, + 0xebb3bd, + 0xebb3be, + 0xebb3bf, + 0xebb480, + 0xebb481, + 0xebb482, + 0xebb483, + 0xebb484, + 0xebb485, + 0xebb486, + 0xebb487, + 0xebb488, + 0xebb489, + 0xebb48a, + 0xebb48b, + 0xebb48c, + 0xebb48d, + 0xebb48e, + 0xebb48f, + 0xebb490, + 0xebb491, + 0xebb492, + 0xebb493, + 0xebb494, + 0xebb495, + 0xebb496, + 0xebb497, + 0xebb498, + 0xebb499, + 0xebb49a, + 0xebb49b, + 0xebb49c, + 0xebb49d, + 0xebb49e, + 0xebb49f, + 0xebb4a0, + 0xebb4a1, + 0xebb4a2, + 0xebb4a3, + 0xebb4a4, + 0xebb4a5, + 0xebb4a6, + 0xebb4a7, + 0xebb4a8, + 0xebb4a9, + 0xebb4aa, + 0xebb4ab, + 0xebb4ac, + 0xebb4ad, + 0xebb4ae, + 0xebb4af, + 0xebb4b0, + 0xebb4b1, + 0xebb4b2, + 0xebb4b3, + 0xebb4b4, + 0xebb4b5, + 0xebb4b6, + 0xebb4b7, + 0xebb4b8, + 0xebb4b9, + 0xebb4ba, + 0xebb4bb, + 0xebb4bc, + 0xebb4bd, + 0xebb4be, + 0xebb4bf, + 0xebb580, + 0xebb581, + 0xebb582, + 0xebb583, + 0xebb584, + 0xebb585, + 0xebb586, + 0xebb587, + 0xebb588, + 0xebb589, + 0xebb58a, + 0xebb58b, + 0xebb58c, + 0xebb58d, + 0xebb58e, + 0xebb58f, + 0xebb590, + 0xebb591, + 0xebb592, + 0xebb593, + 0xebb594, + 0xebb595, + 0xebb596, + 0xebb597, + 0xebb598, + 0xebb599, + 0xebb59a, + 0xebb59b, + 0xebb59c, + 0xebb59d, + 0xebb59e, + 0xebb59f, + 0xebb5a0, + 0xebb5a1, + 0xebb5a2, + 0xebb5a3, + 0xebb5a4, + 0xebb5a5, + 0xebb5a6, + 0xebb5a7, + 0xebb5a8, + 0xebb5a9, + 0xebb5aa, + 0xebb5ab, + 0xebb5ac, + 0xebb5ad, + 0xebb5ae, + 0xebb5af, + 0xebb5b0, + 0xebb5b1, + 0xebb5b2, + 0xebb5b3, + 0xebb5b4, + 0xebb5b5, + 0xebb5b6, + 0xebb5b7, + 0xebb5b8, + 0xebb5b9, + 0xebb5ba, + 0xebb5bb, + 0xebb5bc, + 0xebb5bd, + 0xebb5be, + 0xebb5bf, + 0xebb680, + 0xebb681, + 0xebb682, + 0xebb683, + 0xebb684, + 0xebb685, + 0xebb686, + 0xebb687, + 0xebb688, + 0xebb689, + 0xebb68a, + 0xebb68b, + 0xebb68c, + 0xebb68d, + 0xebb68e, + 0xebb68f, + 0xebb690, + 0xebb691, + 0xebb692, + 0xebb693, + 0xebb694, + 0xebb695, + 0xebb696, + 0xebb697, + 0xebb698, + 0xebb699, + 0xebb69a, + 0xebb69b, + 0xebb69c, + 0xebb69d, + 0xebb69e, + 0xebb69f, + 0xebb6a0, + 0xebb6a1, + 0xebb6a2, + 0xebb6a3, + 0xebb6a4, + 0xebb6a5, + 0xebb6a6, + 0xebb6a7, + 0xebb6a8, + 0xebb6a9, + 0xebb6aa, + 0xebb6ab, + 0xebb6ac, + 0xebb6ad, + 0xebb6ae, + 0xebb6af, + 0xebb6b0, + 0xebb6b1, + 0xebb6b2, + 0xebb6b3, + 0xebb6b4, + 0xebb6b5, + 0xebb6b6, + 0xebb6b7, + 0xebb6b8, + 0xebb6b9, + 0xebb6ba, + 0xebb6bb, + 0xebb6bc, + 0xebb6bd, + 0xebb6be, + 0xebb6bf, + 0xebb780, + 0xebb781, + 0xebb782, + 0xebb783, + 0xebb784, + 0xebb785, + 0xebb786, + 0xebb787, + 0xebb788, + 0xebb789, + 0xebb78a, + 0xebb78b, + 0xebb78c, + 0xebb78d, + 0xebb78e, + 0xebb78f, + 0xebb790, + 0xebb791, + 0xebb792, + 0xebb793, + 0xebb794, + 0xebb795, + 0xebb796, + 0xebb797, + 0xebb798, + 0xebb799, + 0xebb79a, + 0xebb79b, + 0xebb79c, + 0xebb79d, + 0xebb79e, + 0xebb79f, + 0xebb7a0, + 0xebb7a1, + 0xebb7a2, + 0xebb7a3, + 0xebb7a4, + 0xebb7a5, + 0xebb7a6, + 0xebb7a7, + 0xebb7a8, + 0xebb7a9, + 0xebb7aa, + 0xebb7ab, + 0xebb7ac, + 0xebb7ad, + 0xebb7ae, + 0xebb7af, + 0xebb7b0, + 0xebb7b1, + 0xebb7b2, + 0xebb7b3, + 0xebb7b4, + 0xebb7b5, + 0xebb7b6, + 0xebb7b7, + 0xebb7b8, + 0xebb7b9, + 0xebb7ba, + 0xebb7bb, + 0xebb7bc, + 0xebb7bd, + 0xebb7be, + 0xebb7bf, + 0xebb880, + 0xebb881, + 0xebb882, + 0xebb883, + 0xebb884, + 0xebb885, + 0xebb886, + 0xebb887, + 0xebb888, + 0xebb889, + 0xebb88a, + 0xebb88b, + 0xebb88c, + 0xebb88d, + 0xebb88e, + 0xebb88f, + 0xebb890, + 0xebb891, + 0xebb892, + 0xebb893, + 0xebb894, + 0xebb895, + 0xebb896, + 0xebb897, + 0xebb898, + 0xebb899, + 0xebb89a, + 0xebb89b, + 0xebb89c, + 0xebb89d, + 0xebb89e, + 0xebb89f, + 0xebb8a0, + 0xebb8a1, + 0xebb8a2, + 0xebb8a3, + 0xebb8a4, + 0xebb8a5, + 0xebb8a6, + 0xebb8a7, + 0xebb8a8, + 0xebb8a9, + 0xebb8aa, + 0xebb8ab, + 0xebb8ac, + 0xebb8ad, + 0xebb8ae, + 0xebb8af, + 0xebb8b0, + 0xebb8b1, + 0xebb8b2, + 0xebb8b3, + 0xebb8b4, + 0xebb8b5, + 0xebb8b6, + 0xebb8b7, + 0xebb8b8, + 0xebb8b9, + 0xebb8ba, + 0xebb8bb, + 0xebb8bc, + 0xebb8bd, + 0xebb8be, + 0xebb8bf, + 0xebb980, + 0xebb981, + 0xebb982, + 0xebb983, + 0xebb984, + 0xebb985, + 0xebb986, + 0xebb987, + 0xebb988, + 0xebb989, + 0xebb98a, + 0xebb98b, + 0xebb98c, + 0xebb98d, + 0xebb98e, + 0xebb98f, + 0xebb990, + 0xebb991, + 0xebb992, + 0xebb993, + 0xebb994, + 0xebb995, + 0xebb996, + 0xebb997, + 0xebb998, + 0xebb999, + 0xebb99a, + 0xebb99b, + 0xebb99c, + 0xebb99d, + 0xebb99e, + 0xebb99f, + 0xebb9a0, + 0xebb9a1, + 0xebb9a2, + 0xebb9a3, + 0xebb9a4, + 0xebb9a5, + 0xebb9a6, + 0xebb9a7, + 0xebb9a8, + 0xebb9a9, + 0xebb9aa, + 0xebb9ab, + 0xebb9ac, + 0xebb9ad, + 0xebb9ae, + 0xebb9af, + 0xebb9b0, + 0xebb9b1, + 0xebb9b2, + 0xebb9b3, + 0xebb9b4, + 0xebb9b5, + 0xebb9b6, + 0xebb9b7, + 0xebb9b8, + 0xebb9b9, + 0xebb9ba, + 0xebb9bb, + 0xebb9bc, + 0xebb9bd, + 0xebb9be, + 0xebb9bf, + 0xebba80, + 0xebba81, + 0xebba82, + 0xebba83, + 0xebba84, + 0xebba85, + 0xebba86, + 0xebba87, + 0xebba88, + 0xebba89, + 0xebba8a, + 0xebba8b, + 0xebba8c, + 0xebba8d, + 0xebba8e, + 0xebba8f, + 0xebba90, + 0xebba91, + 0xebba92, + 0xebba93, + 0xebba94, + 0xebba95, + 0xebba96, + 0xebba97, + 0xebba98, + 0xebba99, + 0xebba9a, + 0xebba9b, + 0xebba9c, + 0xebba9d, + 0xebba9e, + 0xebba9f, + 0xebbaa0, + 0xebbaa1, + 0xebbaa2, + 0xebbaa3, + 0xebbaa4, + 0xebbaa5, + 0xebbaa6, + 0xebbaa7, + 0xebbaa8, + 0xebbaa9, + 0xebbaaa, + 0xebbaab, + 0xebbaac, + 0xebbaad, + 0xebbaae, + 0xebbaaf, + 0xebbab0, + 0xebbab1, + 0xebbab2, + 0xebbab3, + 0xebbab4, + 0xebbab5, + 0xebbab6, + 0xebbab7, + 0xebbab8, + 0xebbab9, + 0xebbaba, + 0xebbabb, + 0xebbabc, + 0xebbabd, + 0xebbabe, + 0xebbabf, + 0xebbb80, + 0xebbb81, + 0xebbb82, + 0xebbb83, + 0xebbb84, + 0xebbb85, + 0xebbb86, + 0xebbb87, + 0xebbb88, + 0xebbb89, + 0xebbb8a, + 0xebbb8b, + 0xebbb8c, + 0xebbb8d, + 0xebbb8e, + 0xebbb8f, + 0xebbb90, + 0xebbb91, + 0xebbb92, + 0xebbb93, + 0xebbb94, + 0xebbb95, + 0xebbb96, + 0xebbb97, + 0xebbb98, + 0xebbb99, + 0xebbb9a, + 0xebbb9b, + 0xebbb9c, + 0xebbb9d, + 0xebbb9e, + 0xebbb9f, + 0xebbba0, + 0xebbba1, + 0xebbba2, + 0xebbba3, + 0xebbba4, + 0xebbba5, + 0xebbba6, + 0xebbba7, + 0xebbba8, + 0xebbba9, + 0xebbbaa, + 0xebbbab, + 0xebbbac, + 0xebbbad, + 0xebbbae, + 0xebbbaf, + 0xebbbb0, + 0xebbbb1, + 0xebbbb2, + 0xebbbb3, + 0xebbbb4, + 0xebbbb5, + 0xebbbb6, + 0xebbbb7, + 0xebbbb8, + 0xebbbb9, + 0xebbbba, + 0xebbbbb, + 0xebbbbc, + 0xebbbbd, + 0xebbbbe, + 0xebbbbf, + 0xebbc80, + 0xebbc81, + 0xebbc82, + 0xebbc83, + 0xebbc84, + 0xebbc85, + 0xebbc86, + 0xebbc87, + 0xebbc88, + 0xebbc89, + 0xebbc8a, + 0xebbc8b, + 0xebbc8c, + 0xebbc8d, + 0xebbc8e, + 0xebbc8f, + 0xebbc90, + 0xebbc91, + 0xebbc92, + 0xebbc93, + 0xebbc94, + 0xebbc95, + 0xebbc96, + 0xebbc97, + 0xebbc98, + 0xebbc99, + 0xebbc9a, + 0xebbc9b, + 0xebbc9c, + 0xebbc9d, + 0xebbc9e, + 0xebbc9f, + 0xebbca0, + 0xebbca1, + 0xebbca2, + 0xebbca3, + 0xebbca4, + 0xebbca5, + 0xebbca6, + 0xebbca7, + 0xebbca8, + 0xebbca9, + 0xebbcaa, + 0xebbcab, + 0xebbcac, + 0xebbcad, + 0xebbcae, + 0xebbcaf, + 0xebbcb0, + 0xebbcb1, + 0xebbcb2, + 0xebbcb3, + 0xebbcb4, + 0xebbcb5, + 0xebbcb6, + 0xebbcb7, + 0xebbcb8, + 0xebbcb9, + 0xebbcba, + 0xebbcbb, + 0xebbcbc, + 0xebbcbd, + 0xebbcbe, + 0xebbcbf, + 0xebbd80, + 0xebbd81, + 0xebbd82, + 0xebbd83, + 0xebbd84, + 0xebbd85, + 0xebbd86, + 0xebbd87, + 0xebbd88, + 0xebbd89, + 0xebbd8a, + 0xebbd8b, + 0xebbd8c, + 0xebbd8d, + 0xebbd8e, + 0xebbd8f, + 0xebbd90, + 0xebbd91, + 0xebbd92, + 0xebbd93, + 0xebbd94, + 0xebbd95, + 0xebbd96, + 0xebbd97, + 0xebbd98, + 0xebbd99, + 0xebbd9a, + 0xebbd9b, + 0xebbd9c, + 0xebbd9d, + 0xebbd9e, + 0xebbd9f, + 0xebbda0, + 0xebbda1, + 0xebbda2, + 0xebbda3, + 0xebbda4, + 0xebbda5, + 0xebbda6, + 0xebbda7, + 0xebbda8, + 0xebbda9, + 0xebbdaa, + 0xebbdab, + 0xebbdac, + 0xebbdad, + 0xebbdae, + 0xebbdaf, + 0xebbdb0, + 0xebbdb1, + 0xebbdb2, + 0xebbdb3, + 0xebbdb4, + 0xebbdb5, + 0xebbdb6, + 0xebbdb7, + 0xebbdb8, + 0xebbdb9, + 0xebbdba, + 0xebbdbb, + 0xebbdbc, + 0xebbdbd, + 0xebbdbe, + 0xebbdbf, + 0xebbe80, + 0xebbe81, + 0xebbe82, + 0xebbe83, + 0xebbe84, + 0xebbe85, + 0xebbe86, + 0xebbe87, + 0xebbe88, + 0xebbe89, + 0xebbe8a, + 0xebbe8b, + 0xebbe8c, + 0xebbe8d, + 0xebbe8e, + 0xebbe8f, + 0xebbe90, + 0xebbe91, + 0xebbe92, + 0xebbe93, + 0xebbe94, + 0xebbe95, + 0xebbe96, + 0xebbe97, + 0xebbe98, + 0xebbe99, + 0xebbe9a, + 0xebbe9b, + 0xebbe9c, + 0xebbe9d, + 0xebbe9e, + 0xebbe9f, + 0xebbea0, + 0xebbea1, + 0xebbea2, + 0xebbea3, + 0xebbea4, + 0xebbea5, + 0xebbea6, + 0xebbea7, + 0xebbea8, + 0xebbea9, + 0xebbeaa, + 0xebbeab, + 0xebbeac, + 0xebbead, + 0xebbeae, + 0xebbeaf, + 0xebbeb0, + 0xebbeb1, + 0xebbeb2, + 0xebbeb3, + 0xebbeb4, + 0xebbeb5, + 0xebbeb6, + 0xebbeb7, + 0xebbeb8, + 0xebbeb9, + 0xebbeba, + 0xebbebb, + 0xebbebc, + 0xebbebd, + 0xebbebe, + 0xebbebf, + 0xebbf80, + 0xebbf81, + 0xebbf82, + 0xebbf83, + 0xebbf84, + 0xebbf85, + 0xebbf86, + 0xebbf87, + 0xebbf88, + 0xebbf89, + 0xebbf8a, + 0xebbf8b, + 0xebbf8c, + 0xebbf8d, + 0xebbf8e, + 0xebbf8f, + 0xebbf90, + 0xebbf91, + 0xebbf92, + 0xebbf93, + 0xebbf94, + 0xebbf95, + 0xebbf96, + 0xebbf97, + 0xebbf98, + 0xebbf99, + 0xebbf9a, + 0xebbf9b, + 0xebbf9c, + 0xebbf9d, + 0xebbf9e, + 0xebbf9f, + 0xebbfa0, + 0xebbfa1, + 0xebbfa2, + 0xebbfa3, + 0xebbfa4, + 0xebbfa5, + 0xebbfa6, + 0xebbfa7, + 0xebbfa8, + 0xebbfa9, + 0xebbfaa, + 0xebbfab, + 0xebbfac, + 0xebbfad, + 0xebbfae, + 0xebbfaf, + 0xebbfb0, + 0xebbfb1, + 0xebbfb2, + 0xebbfb3, + 0xebbfb4, + 0xebbfb5, + 0xebbfb6, + 0xebbfb7, + 0xebbfb8, + 0xebbfb9, + 0xebbfba, + 0xebbfbb, + 0xebbfbc, + 0xebbfbd, + 0xebbfbe, + 0xebbfbf, + 0xec8080, + 0xec8081, + 0xec8082, + 0xec8083, + 0xec8084, + 0xec8085, + 0xec8086, + 0xec8087, + 0xec8088, + 0xec8089, + 0xec808a, + 0xec808b, + 0xec808c, + 0xec808d, + 0xec808e, + 0xec808f, + 0xec8090, + 0xec8091, + 0xec8092, + 0xec8093, + 0xec8094, + 0xec8095, + 0xec8096, + 0xec8097, + 0xec8098, + 0xec8099, + 0xec809a, + 0xec809b, + 0xec809c, + 0xec809d, + 0xec809e, + 0xec809f, + 0xec80a0, + 0xec80a1, + 0xec80a2, + 0xec80a3, + 0xec80a4, + 0xec80a5, + 0xec80a6, + 0xec80a7, + 0xec80a8, + 0xec80a9, + 0xec80aa, + 0xec80ab, + 0xec80ac, + 0xec80ad, + 0xec80ae, + 0xec80af, + 0xec80b0, + 0xec80b1, + 0xec80b2, + 0xec80b3, + 0xec80b4, + 0xec80b5, + 0xec80b6, + 0xec80b7, + 0xec80b8, + 0xec80b9, + 0xec80ba, + 0xec80bb, + 0xec80bc, + 0xec80bd, + 0xec80be, + 0xec80bf, + 0xec8180, + 0xec8181, + 0xec8182, + 0xec8183, + 0xec8184, + 0xec8185, + 0xec8186, + 0xec8187, + 0xec8188, + 0xec8189, + 0xec818a, + 0xec818b, + 0xec818c, + 0xec818d, + 0xec818e, + 0xec818f, + 0xec8190, + 0xec8191, + 0xec8192, + 0xec8193, + 0xec8194, + 0xec8195, + 0xec8196, + 0xec8197, + 0xec8198, + 0xec8199, + 0xec819a, + 0xec819b, + 0xec819c, + 0xec819d, + 0xec819e, + 0xec819f, + 0xec81a0, + 0xec81a1, + 0xec81a2, + 0xec81a3, + 0xec81a4, + 0xec81a5, + 0xec81a6, + 0xec81a7, + 0xec81a8, + 0xec81a9, + 0xec81aa, + 0xec81ab, + 0xec81ac, + 0xec81ad, + 0xec81ae, + 0xec81af, + 0xec81b0, + 0xec81b1, + 0xec81b2, + 0xec81b3, + 0xec81b4, + 0xec81b5, + 0xec81b6, + 0xec81b7, + 0xec81b8, + 0xec81b9, + 0xec81ba, + 0xec81bb, + 0xec81bc, + 0xec81bd, + 0xec81be, + 0xec81bf, + 0xec8280, + 0xec8281, + 0xec8282, + 0xec8283, + 0xec8284, + 0xec8285, + 0xec8286, + 0xec8287, + 0xec8288, + 0xec8289, + 0xec828a, + 0xec828b, + 0xec828c, + 0xec828d, + 0xec828e, + 0xec828f, + 0xec8290, + 0xec8291, + 0xec8292, + 0xec8293, + 0xec8294, + 0xec8295, + 0xec8296, + 0xec8297, + 0xec8298, + 0xec8299, + 0xec829a, + 0xec829b, + 0xec829c, + 0xec829d, + 0xec829e, + 0xec829f, + 0xec82a0, + 0xec82a1, + 0xec82a2, + 0xec82a3, + 0xec82a4, + 0xec82a5, + 0xec82a6, + 0xec82a7, + 0xec82a8, + 0xec82a9, + 0xec82aa, + 0xec82ab, + 0xec82ac, + 0xec82ad, + 0xec82ae, + 0xec82af, + 0xec82b0, + 0xec82b1, + 0xec82b2, + 0xec82b3, + 0xec82b4, + 0xec82b5, + 0xec82b6, + 0xec82b7, + 0xec82b8, + 0xec82b9, + 0xec82ba, + 0xec82bb, + 0xec82bc, + 0xec82bd, + 0xec82be, + 0xec82bf, + 0xec8380, + 0xec8381, + 0xec8382, + 0xec8383, + 0xec8384, + 0xec8385, + 0xec8386, + 0xec8387, + 0xec8388, + 0xec8389, + 0xec838a, + 0xec838b, + 0xec838c, + 0xec838d, + 0xec838e, + 0xec838f, + 0xec8390, + 0xec8391, + 0xec8392, + 0xec8393, + 0xec8394, + 0xec8395, + 0xec8396, + 0xec8397, + 0xec8398, + 0xec8399, + 0xec839a, + 0xec839b, + 0xec839c, + 0xec839d, + 0xec839e, + 0xec839f, + 0xec83a0, + 0xec83a1, + 0xec83a2, + 0xec83a3, + 0xec83a4, + 0xec83a5, + 0xec83a6, + 0xec83a7, + 0xec83a8, + 0xec83a9, + 0xec83aa, + 0xec83ab, + 0xec83ac, + 0xec83ad, + 0xec83ae, + 0xec83af, + 0xec83b0, + 0xec83b1, + 0xec83b2, + 0xec83b3, + 0xec83b4, + 0xec83b5, + 0xec83b6, + 0xec83b7, + 0xec83b8, + 0xec83b9, + 0xec83ba, + 0xec83bb, + 0xec83bc, + 0xec83bd, + 0xec83be, + 0xec83bf, + 0xec8480, + 0xec8481, + 0xec8482, + 0xec8483, + 0xec8484, + 0xec8485, + 0xec8486, + 0xec8487, + 0xec8488, + 0xec8489, + 0xec848a, + 0xec848b, + 0xec848c, + 0xec848d, + 0xec848e, + 0xec848f, + 0xec8490, + 0xec8491, + 0xec8492, + 0xec8493, + 0xec8494, + 0xec8495, + 0xec8496, + 0xec8497, + 0xec8498, + 0xec8499, + 0xec849a, + 0xec849b, + 0xec849c, + 0xec849d, + 0xec849e, + 0xec849f, + 0xec84a0, + 0xec84a1, + 0xec84a2, + 0xec84a3, + 0xec84a4, + 0xec84a5, + 0xec84a6, + 0xec84a7, + 0xec84a8, + 0xec84a9, + 0xec84aa, + 0xec84ab, + 0xec84ac, + 0xec84ad, + 0xec84ae, + 0xec84af, + 0xec84b0, + 0xec84b1, + 0xec84b2, + 0xec84b3, + 0xec84b4, + 0xec84b5, + 0xec84b6, + 0xec84b7, + 0xec84b8, + 0xec84b9, + 0xec84ba, + 0xec84bb, + 0xec84bc, + 0xec84bd, + 0xec84be, + 0xec84bf, + 0xec8580, + 0xec8581, + 0xec8582, + 0xec8583, + 0xec8584, + 0xec8585, + 0xec8586, + 0xec8587, + 0xec8588, + 0xec8589, + 0xec858a, + 0xec858b, + 0xec858c, + 0xec858d, + 0xec858e, + 0xec858f, + 0xec8590, + 0xec8591, + 0xec8592, + 0xec8593, + 0xec8594, + 0xec8595, + 0xec8596, + 0xec8597, + 0xec8598, + 0xec8599, + 0xec859a, + 0xec859b, + 0xec859c, + 0xec859d, + 0xec859e, + 0xec859f, + 0xec85a0, + 0xec85a1, + 0xec85a2, + 0xec85a3, + 0xec85a4, + 0xec85a5, + 0xec85a6, + 0xec85a7, + 0xec85a8, + 0xec85a9, + 0xec85aa, + 0xec85ab, + 0xec85ac, + 0xec85ad, + 0xec85ae, + 0xec85af, + 0xec85b0, + 0xec85b1, + 0xec85b2, + 0xec85b3, + 0xec85b4, + 0xec85b5, + 0xec85b6, + 0xec85b7, + 0xec85b8, + 0xec85b9, + 0xec85ba, + 0xec85bb, + 0xec85bc, + 0xec85bd, + 0xec85be, + 0xec85bf, + 0xec8680, + 0xec8681, + 0xec8682, + 0xec8683, + 0xec8684, + 0xec8685, + 0xec8686, + 0xec8687, + 0xec8688, + 0xec8689, + 0xec868a, + 0xec868b, + 0xec868c, + 0xec868d, + 0xec868e, + 0xec868f, + 0xec8690, + 0xec8691, + 0xec8692, + 0xec8693, + 0xec8694, + 0xec8695, + 0xec8696, + 0xec8697, + 0xec8698, + 0xec8699, + 0xec869a, + 0xec869b, + 0xec869c, + 0xec869d, + 0xec869e, + 0xec869f, + 0xec86a0, + 0xec86a1, + 0xec86a2, + 0xec86a3, + 0xec86a4, + 0xec86a5, + 0xec86a6, + 0xec86a7, + 0xec86a8, + 0xec86a9, + 0xec86aa, + 0xec86ab, + 0xec86ac, + 0xec86ad, + 0xec86ae, + 0xec86af, + 0xec86b0, + 0xec86b1, + 0xec86b2, + 0xec86b3, + 0xec86b4, + 0xec86b5, + 0xec86b6, + 0xec86b7, + 0xec86b8, + 0xec86b9, + 0xec86ba, + 0xec86bb, + 0xec86bc, + 0xec86bd, + 0xec86be, + 0xec86bf, + 0xec8780, + 0xec8781, + 0xec8782, + 0xec8783, + 0xec8784, + 0xec8785, + 0xec8786, + 0xec8787, + 0xec8788, + 0xec8789, + 0xec878a, + 0xec878b, + 0xec878c, + 0xec878d, + 0xec878e, + 0xec878f, + 0xec8790, + 0xec8791, + 0xec8792, + 0xec8793, + 0xec8794, + 0xec8795, + 0xec8796, + 0xec8797, + 0xec8798, + 0xec8799, + 0xec879a, + 0xec879b, + 0xec879c, + 0xec879d, + 0xec879e, + 0xec879f, + 0xec87a0, + 0xec87a1, + 0xec87a2, + 0xec87a3, + 0xec87a4, + 0xec87a5, + 0xec87a6, + 0xec87a7, + 0xec87a8, + 0xec87a9, + 0xec87aa, + 0xec87ab, + 0xec87ac, + 0xec87ad, + 0xec87ae, + 0xec87af, + 0xec87b0, + 0xec87b1, + 0xec87b2, + 0xec87b3, + 0xec87b4, + 0xec87b5, + 0xec87b6, + 0xec87b7, + 0xec87b8, + 0xec87b9, + 0xec87ba, + 0xec87bb, + 0xec87bc, + 0xec87bd, + 0xec87be, + 0xec87bf, + 0xec8880, + 0xec8881, + 0xec8882, + 0xec8883, + 0xec8884, + 0xec8885, + 0xec8886, + 0xec8887, + 0xec8888, + 0xec8889, + 0xec888a, + 0xec888b, + 0xec888c, + 0xec888d, + 0xec888e, + 0xec888f, + 0xec8890, + 0xec8891, + 0xec8892, + 0xec8893, + 0xec8894, + 0xec8895, + 0xec8896, + 0xec8897, + 0xec8898, + 0xec8899, + 0xec889a, + 0xec889b, + 0xec889c, + 0xec889d, + 0xec889e, + 0xec889f, + 0xec88a0, + 0xec88a1, + 0xec88a2, + 0xec88a3, + 0xec88a4, + 0xec88a5, + 0xec88a6, + 0xec88a7, + 0xec88a8, + 0xec88a9, + 0xec88aa, + 0xec88ab, + 0xec88ac, + 0xec88ad, + 0xec88ae, + 0xec88af, + 0xec88b0, + 0xec88b1, + 0xec88b2, + 0xec88b3, + 0xec88b4, + 0xec88b5, + 0xec88b6, + 0xec88b7, + 0xec88b8, + 0xec88b9, + 0xec88ba, + 0xec88bb, + 0xec88bc, + 0xec88bd, + 0xec88be, + 0xec88bf, + 0xec8980, + 0xec8981, + 0xec8982, + 0xec8983, + 0xec8984, + 0xec8985, + 0xec8986, + 0xec8987, + 0xec8988, + 0xec8989, + 0xec898a, + 0xec898b, + 0xec898c, + 0xec898d, + 0xec898e, + 0xec898f, + 0xec8990, + 0xec8991, + 0xec8992, + 0xec8993, + 0xec8994, + 0xec8995, + 0xec8996, + 0xec8997, + 0xec8998, + 0xec8999, + 0xec899a, + 0xec899b, + 0xec899c, + 0xec899d, + 0xec899e, + 0xec899f, + 0xec89a0, + 0xec89a1, + 0xec89a2, + 0xec89a3, + 0xec89a4, + 0xec89a5, + 0xec89a6, + 0xec89a7, + 0xec89a8, + 0xec89a9, + 0xec89aa, + 0xec89ab, + 0xec89ac, + 0xec89ad, + 0xec89ae, + 0xec89af, + 0xec89b0, + 0xec89b1, + 0xec89b2, + 0xec89b3, + 0xec89b4, + 0xec89b5, + 0xec89b6, + 0xec89b7, + 0xec89b8, + 0xec89b9, + 0xec89ba, + 0xec89bb, + 0xec89bc, + 0xec89bd, + 0xec89be, + 0xec89bf, + 0xec8a80, + 0xec8a81, + 0xec8a82, + 0xec8a83, + 0xec8a84, + 0xec8a85, + 0xec8a86, + 0xec8a87, + 0xec8a88, + 0xec8a89, + 0xec8a8a, + 0xec8a8b, + 0xec8a8c, + 0xec8a8d, + 0xec8a8e, + 0xec8a8f, + 0xec8a90, + 0xec8a91, + 0xec8a92, + 0xec8a93, + 0xec8a94, + 0xec8a95, + 0xec8a96, + 0xec8a97, + 0xec8a98, + 0xec8a99, + 0xec8a9a, + 0xec8a9b, + 0xec8a9c, + 0xec8a9d, + 0xec8a9e, + 0xec8a9f, + 0xec8aa0, + 0xec8aa1, + 0xec8aa2, + 0xec8aa3, + 0xec8aa4, + 0xec8aa5, + 0xec8aa6, + 0xec8aa7, + 0xec8aa8, + 0xec8aa9, + 0xec8aaa, + 0xec8aab, + 0xec8aac, + 0xec8aad, + 0xec8aae, + 0xec8aaf, + 0xec8ab0, + 0xec8ab1, + 0xec8ab2, + 0xec8ab3, + 0xec8ab4, + 0xec8ab5, + 0xec8ab6, + 0xec8ab7, + 0xec8ab8, + 0xec8ab9, + 0xec8aba, + 0xec8abb, + 0xec8abc, + 0xec8abd, + 0xec8abe, + 0xec8abf, + 0xec8b80, + 0xec8b81, + 0xec8b82, + 0xec8b83, + 0xec8b84, + 0xec8b85, + 0xec8b86, + 0xec8b87, + 0xec8b88, + 0xec8b89, + 0xec8b8a, + 0xec8b8b, + 0xec8b8c, + 0xec8b8d, + 0xec8b8e, + 0xec8b8f, + 0xec8b90, + 0xec8b91, + 0xec8b92, + 0xec8b93, + 0xec8b94, + 0xec8b95, + 0xec8b96, + 0xec8b97, + 0xec8b98, + 0xec8b99, + 0xec8b9a, + 0xec8b9b, + 0xec8b9c, + 0xec8b9d, + 0xec8b9e, + 0xec8b9f, + 0xec8ba0, + 0xec8ba1, + 0xec8ba2, + 0xec8ba3, + 0xec8ba4, + 0xec8ba5, + 0xec8ba6, + 0xec8ba7, + 0xec8ba8, + 0xec8ba9, + 0xec8baa, + 0xec8bab, + 0xec8bac, + 0xec8bad, + 0xec8bae, + 0xec8baf, + 0xec8bb0, + 0xec8bb1, + 0xec8bb2, + 0xec8bb3, + 0xec8bb4, + 0xec8bb5, + 0xec8bb6, + 0xec8bb7, + 0xec8bb8, + 0xec8bb9, + 0xec8bba, + 0xec8bbb, + 0xec8bbc, + 0xec8bbd, + 0xec8bbe, + 0xec8bbf, + 0xec8c80, + 0xec8c81, + 0xec8c82, + 0xec8c83, + 0xec8c84, + 0xec8c85, + 0xec8c86, + 0xec8c87, + 0xec8c88, + 0xec8c89, + 0xec8c8a, + 0xec8c8b, + 0xec8c8c, + 0xec8c8d, + 0xec8c8e, + 0xec8c8f, + 0xec8c90, + 0xec8c91, + 0xec8c92, + 0xec8c93, + 0xec8c94, + 0xec8c95, + 0xec8c96, + 0xec8c97, + 0xec8c98, + 0xec8c99, + 0xec8c9a, + 0xec8c9b, + 0xec8c9c, + 0xec8c9d, + 0xec8c9e, + 0xec8c9f, + 0xec8ca0, + 0xec8ca1, + 0xec8ca2, + 0xec8ca3, + 0xec8ca4, + 0xec8ca5, + 0xec8ca6, + 0xec8ca7, + 0xec8ca8, + 0xec8ca9, + 0xec8caa, + 0xec8cab, + 0xec8cac, + 0xec8cad, + 0xec8cae, + 0xec8caf, + 0xec8cb0, + 0xec8cb1, + 0xec8cb2, + 0xec8cb3, + 0xec8cb4, + 0xec8cb5, + 0xec8cb6, + 0xec8cb7, + 0xec8cb8, + 0xec8cb9, + 0xec8cba, + 0xec8cbb, + 0xec8cbc, + 0xec8cbd, + 0xec8cbe, + 0xec8cbf, + 0xec8d80, + 0xec8d81, + 0xec8d82, + 0xec8d83, + 0xec8d84, + 0xec8d85, + 0xec8d86, + 0xec8d87, + 0xec8d88, + 0xec8d89, + 0xec8d8a, + 0xec8d8b, + 0xec8d8c, + 0xec8d8d, + 0xec8d8e, + 0xec8d8f, + 0xec8d90, + 0xec8d91, + 0xec8d92, + 0xec8d93, + 0xec8d94, + 0xec8d95, + 0xec8d96, + 0xec8d97, + 0xec8d98, + 0xec8d99, + 0xec8d9a, + 0xec8d9b, + 0xec8d9c, + 0xec8d9d, + 0xec8d9e, + 0xec8d9f, + 0xec8da0, + 0xec8da1, + 0xec8da2, + 0xec8da3, + 0xec8da4, + 0xec8da5, + 0xec8da6, + 0xec8da7, + 0xec8da8, + 0xec8da9, + 0xec8daa, + 0xec8dab, + 0xec8dac, + 0xec8dad, + 0xec8dae, + 0xec8daf, + 0xec8db0, + 0xec8db1, + 0xec8db2, + 0xec8db3, + 0xec8db4, + 0xec8db5, + 0xec8db6, + 0xec8db7, + 0xec8db8, + 0xec8db9, + 0xec8dba, + 0xec8dbb, + 0xec8dbc, + 0xec8dbd, + 0xec8dbe, + 0xec8dbf, + 0xec8e80, + 0xec8e81, + 0xec8e82, + 0xec8e83, + 0xec8e84, + 0xec8e85, + 0xec8e86, + 0xec8e87, + 0xec8e88, + 0xec8e89, + 0xec8e8a, + 0xec8e8b, + 0xec8e8c, + 0xec8e8d, + 0xec8e8e, + 0xec8e8f, + 0xec8e90, + 0xec8e91, + 0xec8e92, + 0xec8e93, + 0xec8e94, + 0xec8e95, + 0xec8e96, + 0xec8e97, + 0xec8e98, + 0xec8e99, + 0xec8e9a, + 0xec8e9b, + 0xec8e9c, + 0xec8e9d, + 0xec8e9e, + 0xec8e9f, + 0xec8ea0, + 0xec8ea1, + 0xec8ea2, + 0xec8ea3, + 0xec8ea4, + 0xec8ea5, + 0xec8ea6, + 0xec8ea7, + 0xec8ea8, + 0xec8ea9, + 0xec8eaa, + 0xec8eab, + 0xec8eac, + 0xec8ead, + 0xec8eae, + 0xec8eaf, + 0xec8eb0, + 0xec8eb1, + 0xec8eb2, + 0xec8eb3, + 0xec8eb4, + 0xec8eb5, + 0xec8eb6, + 0xec8eb7, + 0xec8eb8, + 0xec8eb9, + 0xec8eba, + 0xec8ebb, + 0xec8ebc, + 0xec8ebd, + 0xec8ebe, + 0xec8ebf, + 0xec8f80, + 0xec8f81, + 0xec8f82, + 0xec8f83, + 0xec8f84, + 0xec8f85, + 0xec8f86, + 0xec8f87, + 0xec8f88, + 0xec8f89, + 0xec8f8a, + 0xec8f8b, + 0xec8f8c, + 0xec8f8d, + 0xec8f8e, + 0xec8f8f, + 0xec8f90, + 0xec8f91, + 0xec8f92, + 0xec8f93, + 0xec8f94, + 0xec8f95, + 0xec8f96, + 0xec8f97, + 0xec8f98, + 0xec8f99, + 0xec8f9a, + 0xec8f9b, + 0xec8f9c, + 0xec8f9d, + 0xec8f9e, + 0xec8f9f, + 0xec8fa0, + 0xec8fa1, + 0xec8fa2, + 0xec8fa3, + 0xec8fa4, + 0xec8fa5, + 0xec8fa6, + 0xec8fa7, + 0xec8fa8, + 0xec8fa9, + 0xec8faa, + 0xec8fab, + 0xec8fac, + 0xec8fad, + 0xec8fae, + 0xec8faf, + 0xec8fb0, + 0xec8fb1, + 0xec8fb2, + 0xec8fb3, + 0xec8fb4, + 0xec8fb5, + 0xec8fb6, + 0xec8fb7, + 0xec8fb8, + 0xec8fb9, + 0xec8fba, + 0xec8fbb, + 0xec8fbc, + 0xec8fbd, + 0xec8fbe, + 0xec8fbf, + 0xec9080, + 0xec9081, + 0xec9082, + 0xec9083, + 0xec9084, + 0xec9085, + 0xec9086, + 0xec9087, + 0xec9088, + 0xec9089, + 0xec908a, + 0xec908b, + 0xec908c, + 0xec908d, + 0xec908e, + 0xec908f, + 0xec9090, + 0xec9091, + 0xec9092, + 0xec9093, + 0xec9094, + 0xec9095, + 0xec9096, + 0xec9097, + 0xec9098, + 0xec9099, + 0xec909a, + 0xec909b, + 0xec909c, + 0xec909d, + 0xec909e, + 0xec909f, + 0xec90a0, + 0xec90a1, + 0xec90a2, + 0xec90a3, + 0xec90a4, + 0xec90a5, + 0xec90a6, + 0xec90a7, + 0xec90a8, + 0xec90a9, + 0xec90aa, + 0xec90ab, + 0xec90ac, + 0xec90ad, + 0xec90ae, + 0xec90af, + 0xec90b0, + 0xec90b1, + 0xec90b2, + 0xec90b3, + 0xec90b4, + 0xec90b5, + 0xec90b6, + 0xec90b7, + 0xec90b8, + 0xec90b9, + 0xec90ba, + 0xec90bb, + 0xec90bc, + 0xec90bd, + 0xec90be, + 0xec90bf, + 0xec9180, + 0xec9181, + 0xec9182, + 0xec9183, + 0xec9184, + 0xec9185, + 0xec9186, + 0xec9187, + 0xec9188, + 0xec9189, + 0xec918a, + 0xec918b, + 0xec918c, + 0xec918d, + 0xec918e, + 0xec918f, + 0xec9190, + 0xec9191, + 0xec9192, + 0xec9193, + 0xec9194, + 0xec9195, + 0xec9196, + 0xec9197, + 0xec9198, + 0xec9199, + 0xec919a, + 0xec919b, + 0xec919c, + 0xec919d, + 0xec919e, + 0xec919f, + 0xec91a0, + 0xec91a1, + 0xec91a2, + 0xec91a3, + 0xec91a4, + 0xec91a5, + 0xec91a6, + 0xec91a7, + 0xec91a8, + 0xec91a9, + 0xec91aa, + 0xec91ab, + 0xec91ac, + 0xec91ad, + 0xec91ae, + 0xec91af, + 0xec91b0, + 0xec91b1, + 0xec91b2, + 0xec91b3, + 0xec91b4, + 0xec91b5, + 0xec91b6, + 0xec91b7, + 0xec91b8, + 0xec91b9, + 0xec91ba, + 0xec91bb, + 0xec91bc, + 0xec91bd, + 0xec91be, + 0xec91bf, + 0xec9280, + 0xec9281, + 0xec9282, + 0xec9283, + 0xec9284, + 0xec9285, + 0xec9286, + 0xec9287, + 0xec9288, + 0xec9289, + 0xec928a, + 0xec928b, + 0xec928c, + 0xec928d, + 0xec928e, + 0xec928f, + 0xec9290, + 0xec9291, + 0xec9292, + 0xec9293, + 0xec9294, + 0xec9295, + 0xec9296, + 0xec9297, + 0xec9298, + 0xec9299, + 0xec929a, + 0xec929b, + 0xec929c, + 0xec929d, + 0xec929e, + 0xec929f, + 0xec92a0, + 0xec92a1, + 0xec92a2, + 0xec92a3, + 0xec92a4, + 0xec92a5, + 0xec92a6, + 0xec92a7, + 0xec92a8, + 0xec92a9, + 0xec92aa, + 0xec92ab, + 0xec92ac, + 0xec92ad, + 0xec92ae, + 0xec92af, + 0xec92b0, + 0xec92b1, + 0xec92b2, + 0xec92b3, + 0xec92b4, + 0xec92b5, + 0xec92b6, + 0xec92b7, + 0xec92b8, + 0xec92b9, + 0xec92ba, + 0xec92bb, + 0xec92bc, + 0xec92bd, + 0xec92be, + 0xec92bf, + 0xec9380, + 0xec9381, + 0xec9382, + 0xec9383, + 0xec9384, + 0xec9385, + 0xec9386, + 0xec9387, + 0xec9388, + 0xec9389, + 0xec938a, + 0xec938b, + 0xec938c, + 0xec938d, + 0xec938e, + 0xec938f, + 0xec9390, + 0xec9391, + 0xec9392, + 0xec9393, + 0xec9394, + 0xec9395, + 0xec9396, + 0xec9397, + 0xec9398, + 0xec9399, + 0xec939a, + 0xec939b, + 0xec939c, + 0xec939d, + 0xec939e, + 0xec939f, + 0xec93a0, + 0xec93a1, + 0xec93a2, + 0xec93a3, + 0xec93a4, + 0xec93a5, + 0xec93a6, + 0xec93a7, + 0xec93a8, + 0xec93a9, + 0xec93aa, + 0xec93ab, + 0xec93ac, + 0xec93ad, + 0xec93ae, + 0xec93af, + 0xec93b0, + 0xec93b1, + 0xec93b2, + 0xec93b3, + 0xec93b4, + 0xec93b5, + 0xec93b6, + 0xec93b7, + 0xec93b8, + 0xec93b9, + 0xec93ba, + 0xec93bb, + 0xec93bc, + 0xec93bd, + 0xec93be, + 0xec93bf, + 0xec9480, + 0xec9481, + 0xec9482, + 0xec9483, + 0xec9484, + 0xec9485, + 0xec9486, + 0xec9487, + 0xec9488, + 0xec9489, + 0xec948a, + 0xec948b, + 0xec948c, + 0xec948d, + 0xec948e, + 0xec948f, + 0xec9490, + 0xec9491, + 0xec9492, + 0xec9493, + 0xec9494, + 0xec9495, + 0xec9496, + 0xec9497, + 0xec9498, + 0xec9499, + 0xec949a, + 0xec949b, + 0xec949c, + 0xec949d, + 0xec949e, + 0xec949f, + 0xec94a0, + 0xec94a1, + 0xec94a2, + 0xec94a3, + 0xec94a4, + 0xec94a5, + 0xec94a6, + 0xec94a7, + 0xec94a8, + 0xec94a9, + 0xec94aa, + 0xec94ab, + 0xec94ac, + 0xec94ad, + 0xec94ae, + 0xec94af, + 0xec94b0, + 0xec94b1, + 0xec94b2, + 0xec94b3, + 0xec94b4, + 0xec94b5, + 0xec94b6, + 0xec94b7, + 0xec94b8, + 0xec94b9, + 0xec94ba, + 0xec94bb, + 0xec94bc, + 0xec94bd, + 0xec94be, + 0xec94bf, + 0xec9580, + 0xec9581, + 0xec9582, + 0xec9583, + 0xec9584, + 0xec9585, + 0xec9586, + 0xec9587, + 0xec9588, + 0xec9589, + 0xec958a, + 0xec958b, + 0xec958c, + 0xec958d, + 0xec958e, + 0xec958f, + 0xec9590, + 0xec9591, + 0xec9592, + 0xec9593, + 0xec9594, + 0xec9595, + 0xec9596, + 0xec9597, + 0xec9598, + 0xec9599, + 0xec959a, + 0xec959b, + 0xec959c, + 0xec959d, + 0xec959e, + 0xec959f, + 0xec95a0, + 0xec95a1, + 0xec95a2, + 0xec95a3, + 0xec95a4, + 0xec95a5, + 0xec95a6, + 0xec95a7, + 0xec95a8, + 0xec95a9, + 0xec95aa, + 0xec95ab, + 0xec95ac, + 0xec95ad, + 0xec95ae, + 0xec95af, + 0xec95b0, + 0xec95b1, + 0xec95b2, + 0xec95b3, + 0xec95b4, + 0xec95b5, + 0xec95b6, + 0xec95b7, + 0xec95b8, + 0xec95b9, + 0xec95ba, + 0xec95bb, + 0xec95bc, + 0xec95bd, + 0xec95be, + 0xec95bf, + 0xec9680, + 0xec9681, + 0xec9682, + 0xec9683, + 0xec9684, + 0xec9685, + 0xec9686, + 0xec9687, + 0xec9688, + 0xec9689, + 0xec968a, + 0xec968b, + 0xec968c, + 0xec968d, + 0xec968e, + 0xec968f, + 0xec9690, + 0xec9691, + 0xec9692, + 0xec9693, + 0xec9694, + 0xec9695, + 0xec9696, + 0xec9697, + 0xec9698, + 0xec9699, + 0xec969a, + 0xec969b, + 0xec969c, + 0xec969d, + 0xec969e, + 0xec969f, + 0xec96a0, + 0xec96a1, + 0xec96a2, + 0xec96a3, + 0xec96a4, + 0xec96a5, + 0xec96a6, + 0xec96a7, + 0xec96a8, + 0xec96a9, + 0xec96aa, + 0xec96ab, + 0xec96ac, + 0xec96ad, + 0xec96ae, + 0xec96af, + 0xec96b0, + 0xec96b1, + 0xec96b2, + 0xec96b3, + 0xec96b4, + 0xec96b5, + 0xec96b6, + 0xec96b7, + 0xec96b8, + 0xec96b9, + 0xec96ba, + 0xec96bb, + 0xec96bc, + 0xec96bd, + 0xec96be, + 0xec96bf, + 0xec9780, + 0xec9781, + 0xec9782, + 0xec9783, + 0xec9784, + 0xec9785, + 0xec9786, + 0xec9787, + 0xec9788, + 0xec9789, + 0xec978a, + 0xec978b, + 0xec978c, + 0xec978d, + 0xec978e, + 0xec978f, + 0xec9790, + 0xec9791, + 0xec9792, + 0xec9793, + 0xec9794, + 0xec9795, + 0xec9796, + 0xec9797, + 0xec9798, + 0xec9799, + 0xec979a, + 0xec979b, + 0xec979c, + 0xec979d, + 0xec979e, + 0xec979f, + 0xec97a0, + 0xec97a1, + 0xec97a2, + 0xec97a3, + 0xec97a4, + 0xec97a5, + 0xec97a6, + 0xec97a7, + 0xec97a8, + 0xec97a9, + 0xec97aa, + 0xec97ab, + 0xec97ac, + 0xec97ad, + 0xec97ae, + 0xec97af, + 0xec97b0, + 0xec97b1, + 0xec97b2, + 0xec97b3, + 0xec97b4, + 0xec97b5, + 0xec97b6, + 0xec97b7, + 0xec97b8, + 0xec97b9, + 0xec97ba, + 0xec97bb, + 0xec97bc, + 0xec97bd, + 0xec97be, + 0xec97bf, + 0xec9880, + 0xec9881, + 0xec9882, + 0xec9883, + 0xec9884, + 0xec9885, + 0xec9886, + 0xec9887, + 0xec9888, + 0xec9889, + 0xec988a, + 0xec988b, + 0xec988c, + 0xec988d, + 0xec988e, + 0xec988f, + 0xec9890, + 0xec9891, + 0xec9892, + 0xec9893, + 0xec9894, + 0xec9895, + 0xec9896, + 0xec9897, + 0xec9898, + 0xec9899, + 0xec989a, + 0xec989b, + 0xec989c, + 0xec989d, + 0xec989e, + 0xec989f, + 0xec98a0, + 0xec98a1, + 0xec98a2, + 0xec98a3, + 0xec98a4, + 0xec98a5, + 0xec98a6, + 0xec98a7, + 0xec98a8, + 0xec98a9, + 0xec98aa, + 0xec98ab, + 0xec98ac, + 0xec98ad, + 0xec98ae, + 0xec98af, + 0xec98b0, + 0xec98b1, + 0xec98b2, + 0xec98b3, + 0xec98b4, + 0xec98b5, + 0xec98b6, + 0xec98b7, + 0xec98b8, + 0xec98b9, + 0xec98ba, + 0xec98bb, + 0xec98bc, + 0xec98bd, + 0xec98be, + 0xec98bf, + 0xec9980, + 0xec9981, + 0xec9982, + 0xec9983, + 0xec9984, + 0xec9985, + 0xec9986, + 0xec9987, + 0xec9988, + 0xec9989, + 0xec998a, + 0xec998b, + 0xec998c, + 0xec998d, + 0xec998e, + 0xec998f, + 0xec9990, + 0xec9991, + 0xec9992, + 0xec9993, + 0xec9994, + 0xec9995, + 0xec9996, + 0xec9997, + 0xec9998, + 0xec9999, + 0xec999a, + 0xec999b, + 0xec999c, + 0xec999d, + 0xec999e, + 0xec999f, + 0xec99a0, + 0xec99a1, + 0xec99a2, + 0xec99a3, + 0xec99a4, + 0xec99a5, + 0xec99a6, + 0xec99a7, + 0xec99a8, + 0xec99a9, + 0xec99aa, + 0xec99ab, + 0xec99ac, + 0xec99ad, + 0xec99ae, + 0xec99af, + 0xec99b0, + 0xec99b1, + 0xec99b2, + 0xec99b3, + 0xec99b4, + 0xec99b5, + 0xec99b6, + 0xec99b7, + 0xec99b8, + 0xec99b9, + 0xec99ba, + 0xec99bb, + 0xec99bc, + 0xec99bd, + 0xec99be, + 0xec99bf, + 0xec9a80, + 0xec9a81, + 0xec9a82, + 0xec9a83, + 0xec9a84, + 0xec9a85, + 0xec9a86, + 0xec9a87, + 0xec9a88, + 0xec9a89, + 0xec9a8a, + 0xec9a8b, + 0xec9a8c, + 0xec9a8d, + 0xec9a8e, + 0xec9a8f, + 0xec9a90, + 0xec9a91, + 0xec9a92, + 0xec9a93, + 0xec9a94, + 0xec9a95, + 0xec9a96, + 0xec9a97, + 0xec9a98, + 0xec9a99, + 0xec9a9a, + 0xec9a9b, + 0xec9a9c, + 0xec9a9d, + 0xec9a9e, + 0xec9a9f, + 0xec9aa0, + 0xec9aa1, + 0xec9aa2, + 0xec9aa3, + 0xec9aa4, + 0xec9aa5, + 0xec9aa6, + 0xec9aa7, + 0xec9aa8, + 0xec9aa9, + 0xec9aaa, + 0xec9aab, + 0xec9aac, + 0xec9aad, + 0xec9aae, + 0xec9aaf, + 0xec9ab0, + 0xec9ab1, + 0xec9ab2, + 0xec9ab3, + 0xec9ab4, + 0xec9ab5, + 0xec9ab6, + 0xec9ab7, + 0xec9ab8, + 0xec9ab9, + 0xec9aba, + 0xec9abb, + 0xec9abc, + 0xec9abd, + 0xec9abe, + 0xec9abf, + 0xec9b80, + 0xec9b81, + 0xec9b82, + 0xec9b83, + 0xec9b84, + 0xec9b85, + 0xec9b86, + 0xec9b87, + 0xec9b88, + 0xec9b89, + 0xec9b8a, + 0xec9b8b, + 0xec9b8c, + 0xec9b8d, + 0xec9b8e, + 0xec9b8f, + 0xec9b90, + 0xec9b91, + 0xec9b92, + 0xec9b93, + 0xec9b94, + 0xec9b95, + 0xec9b96, + 0xec9b97, + 0xec9b98, + 0xec9b99, + 0xec9b9a, + 0xec9b9b, + 0xec9b9c, + 0xec9b9d, + 0xec9b9e, + 0xec9b9f, + 0xec9ba0, + 0xec9ba1, + 0xec9ba2, + 0xec9ba3, + 0xec9ba4, + 0xec9ba5, + 0xec9ba6, + 0xec9ba7, + 0xec9ba8, + 0xec9ba9, + 0xec9baa, + 0xec9bab, + 0xec9bac, + 0xec9bad, + 0xec9bae, + 0xec9baf, + 0xec9bb0, + 0xec9bb1, + 0xec9bb2, + 0xec9bb3, + 0xec9bb4, + 0xec9bb5, + 0xec9bb6, + 0xec9bb7, + 0xec9bb8, + 0xec9bb9, + 0xec9bba, + 0xec9bbb, + 0xec9bbc, + 0xec9bbd, + 0xec9bbe, + 0xec9bbf, + 0xec9c80, + 0xec9c81, + 0xec9c82, + 0xec9c83, + 0xec9c84, + 0xec9c85, + 0xec9c86, + 0xec9c87, + 0xec9c88, + 0xec9c89, + 0xec9c8a, + 0xec9c8b, + 0xec9c8c, + 0xec9c8d, + 0xec9c8e, + 0xec9c8f, + 0xec9c90, + 0xec9c91, + 0xec9c92, + 0xec9c93, + 0xec9c94, + 0xec9c95, + 0xec9c96, + 0xec9c97, + 0xec9c98, + 0xec9c99, + 0xec9c9a, + 0xec9c9b, + 0xec9c9c, + 0xec9c9d, + 0xec9c9e, + 0xec9c9f, + 0xec9ca0, + 0xec9ca1, + 0xec9ca2, + 0xec9ca3, + 0xec9ca4, + 0xec9ca5, + 0xec9ca6, + 0xec9ca7, + 0xec9ca8, + 0xec9ca9, + 0xec9caa, + 0xec9cab, + 0xec9cac, + 0xec9cad, + 0xec9cae, + 0xec9caf, + 0xec9cb0, + 0xec9cb1, + 0xec9cb2, + 0xec9cb3, + 0xec9cb4, + 0xec9cb5, + 0xec9cb6, + 0xec9cb7, + 0xec9cb8, + 0xec9cb9, + 0xec9cba, + 0xec9cbb, + 0xec9cbc, + 0xec9cbd, + 0xec9cbe, + 0xec9cbf, + 0xec9d80, + 0xec9d81, + 0xec9d82, + 0xec9d83, + 0xec9d84, + 0xec9d85, + 0xec9d86, + 0xec9d87, + 0xec9d88, + 0xec9d89, + 0xec9d8a, + 0xec9d8b, + 0xec9d8c, + 0xec9d8d, + 0xec9d8e, + 0xec9d8f, + 0xec9d90, + 0xec9d91, + 0xec9d92, + 0xec9d93, + 0xec9d94, + 0xec9d95, + 0xec9d96, + 0xec9d97, + 0xec9d98, + 0xec9d99, + 0xec9d9a, + 0xec9d9b, + 0xec9d9c, + 0xec9d9d, + 0xec9d9e, + 0xec9d9f, + 0xec9da0, + 0xec9da1, + 0xec9da2, + 0xec9da3, + 0xec9da4, + 0xec9da5, + 0xec9da6, + 0xec9da7, + 0xec9da8, + 0xec9da9, + 0xec9daa, + 0xec9dab, + 0xec9dac, + 0xec9dad, + 0xec9dae, + 0xec9daf, + 0xec9db0, + 0xec9db1, + 0xec9db2, + 0xec9db3, + 0xec9db4, + 0xec9db5, + 0xec9db6, + 0xec9db7, + 0xec9db8, + 0xec9db9, + 0xec9dba, + 0xec9dbb, + 0xec9dbc, + 0xec9dbd, + 0xec9dbe, + 0xec9dbf, + 0xec9e80, + 0xec9e81, + 0xec9e82, + 0xec9e83, + 0xec9e84, + 0xec9e85, + 0xec9e86, + 0xec9e87, + 0xec9e88, + 0xec9e89, + 0xec9e8a, + 0xec9e8b, + 0xec9e8c, + 0xec9e8d, + 0xec9e8e, + 0xec9e8f, + 0xec9e90, + 0xec9e91, + 0xec9e92, + 0xec9e93, + 0xec9e94, + 0xec9e95, + 0xec9e96, + 0xec9e97, + 0xec9e98, + 0xec9e99, + 0xec9e9a, + 0xec9e9b, + 0xec9e9c, + 0xec9e9d, + 0xec9e9e, + 0xec9e9f, + 0xec9ea0, + 0xec9ea1, + 0xec9ea2, + 0xec9ea3, + 0xec9ea4, + 0xec9ea5, + 0xec9ea6, + 0xec9ea7, + 0xec9ea8, + 0xec9ea9, + 0xec9eaa, + 0xec9eab, + 0xec9eac, + 0xec9ead, + 0xec9eae, + 0xec9eaf, + 0xec9eb0, + 0xec9eb1, + 0xec9eb2, + 0xec9eb3, + 0xec9eb4, + 0xec9eb5, + 0xec9eb6, + 0xec9eb7, + 0xec9eb8, + 0xec9eb9, + 0xec9eba, + 0xec9ebb, + 0xec9ebc, + 0xec9ebd, + 0xec9ebe, + 0xec9ebf, + 0xec9f80, + 0xec9f81, + 0xec9f82, + 0xec9f83, + 0xec9f84, + 0xec9f85, + 0xec9f86, + 0xec9f87, + 0xec9f88, + 0xec9f89, + 0xec9f8a, + 0xec9f8b, + 0xec9f8c, + 0xec9f8d, + 0xec9f8e, + 0xec9f8f, + 0xec9f90, + 0xec9f91, + 0xec9f92, + 0xec9f93, + 0xec9f94, + 0xec9f95, + 0xec9f96, + 0xec9f97, + 0xec9f98, + 0xec9f99, + 0xec9f9a, + 0xec9f9b, + 0xec9f9c, + 0xec9f9d, + 0xec9f9e, + 0xec9f9f, + 0xec9fa0, + 0xec9fa1, + 0xec9fa2, + 0xec9fa3, + 0xec9fa4, + 0xec9fa5, + 0xec9fa6, + 0xec9fa7, + 0xec9fa8, + 0xec9fa9, + 0xec9faa, + 0xec9fab, + 0xec9fac, + 0xec9fad, + 0xec9fae, + 0xec9faf, + 0xec9fb0, + 0xec9fb1, + 0xec9fb2, + 0xec9fb3, + 0xec9fb4, + 0xec9fb5, + 0xec9fb6, + 0xec9fb7, + 0xec9fb8, + 0xec9fb9, + 0xec9fba, + 0xec9fbb, + 0xec9fbc, + 0xec9fbd, + 0xec9fbe, + 0xec9fbf, + 0xeca080, + 0xeca081, + 0xeca082, + 0xeca083, + 0xeca084, + 0xeca085, + 0xeca086, + 0xeca087, + 0xeca088, + 0xeca089, + 0xeca08a, + 0xeca08b, + 0xeca08c, + 0xeca08d, + 0xeca08e, + 0xeca08f, + 0xeca090, + 0xeca091, + 0xeca092, + 0xeca093, + 0xeca094, + 0xeca095, + 0xeca096, + 0xeca097, + 0xeca098, + 0xeca099, + 0xeca09a, + 0xeca09b, + 0xeca09c, + 0xeca09d, + 0xeca09e, + 0xeca09f, + 0xeca0a0, + 0xeca0a1, + 0xeca0a2, + 0xeca0a3, + 0xeca0a4, + 0xeca0a5, + 0xeca0a6, + 0xeca0a7, + 0xeca0a8, + 0xeca0a9, + 0xeca0aa, + 0xeca0ab, + 0xeca0ac, + 0xeca0ad, + 0xeca0ae, + 0xeca0af, + 0xeca0b0, + 0xeca0b1, + 0xeca0b2, + 0xeca0b3, + 0xeca0b4, + 0xeca0b5, + 0xeca0b6, + 0xeca0b7, + 0xeca0b8, + 0xeca0b9, + 0xeca0ba, + 0xeca0bb, + 0xeca0bc, + 0xeca0bd, + 0xeca0be, + 0xeca0bf, + 0xeca180, + 0xeca181, + 0xeca182, + 0xeca183, + 0xeca184, + 0xeca185, + 0xeca186, + 0xeca187, + 0xeca188, + 0xeca189, + 0xeca18a, + 0xeca18b, + 0xeca18c, + 0xeca18d, + 0xeca18e, + 0xeca18f, + 0xeca190, + 0xeca191, + 0xeca192, + 0xeca193, + 0xeca194, + 0xeca195, + 0xeca196, + 0xeca197, + 0xeca198, + 0xeca199, + 0xeca19a, + 0xeca19b, + 0xeca19c, + 0xeca19d, + 0xeca19e, + 0xeca19f, + 0xeca1a0, + 0xeca1a1, + 0xeca1a2, + 0xeca1a3, + 0xeca1a4, + 0xeca1a5, + 0xeca1a6, + 0xeca1a7, + 0xeca1a8, + 0xeca1a9, + 0xeca1aa, + 0xeca1ab, + 0xeca1ac, + 0xeca1ad, + 0xeca1ae, + 0xeca1af, + 0xeca1b0, + 0xeca1b1, + 0xeca1b2, + 0xeca1b3, + 0xeca1b4, + 0xeca1b5, + 0xeca1b6, + 0xeca1b7, + 0xeca1b8, + 0xeca1b9, + 0xeca1ba, + 0xeca1bb, + 0xeca1bc, + 0xeca1bd, + 0xeca1be, + 0xeca1bf, + 0xeca280, + 0xeca281, + 0xeca282, + 0xeca283, + 0xeca284, + 0xeca285, + 0xeca286, + 0xeca287, + 0xeca288, + 0xeca289, + 0xeca28a, + 0xeca28b, + 0xeca28c, + 0xeca28d, + 0xeca28e, + 0xeca28f, + 0xeca290, + 0xeca291, + 0xeca292, + 0xeca293, + 0xeca294, + 0xeca295, + 0xeca296, + 0xeca297, + 0xeca298, + 0xeca299, + 0xeca29a, + 0xeca29b, + 0xeca29c, + 0xeca29d, + 0xeca29e, + 0xeca29f, + 0xeca2a0, + 0xeca2a1, + 0xeca2a2, + 0xeca2a3, + 0xeca2a4, + 0xeca2a5, + 0xeca2a6, + 0xeca2a7, + 0xeca2a8, + 0xeca2a9, + 0xeca2aa, + 0xeca2ab, + 0xeca2ac, + 0xeca2ad, + 0xeca2ae, + 0xeca2af, + 0xeca2b0, + 0xeca2b1, + 0xeca2b2, + 0xeca2b3, + 0xeca2b4, + 0xeca2b5, + 0xeca2b6, + 0xeca2b7, + 0xeca2b8, + 0xeca2b9, + 0xeca2ba, + 0xeca2bb, + 0xeca2bc, + 0xeca2bd, + 0xeca2be, + 0xeca2bf, + 0xeca380, + 0xeca381, + 0xeca382, + 0xeca383, + 0xeca384, + 0xeca385, + 0xeca386, + 0xeca387, + 0xeca388, + 0xeca389, + 0xeca38a, + 0xeca38b, + 0xeca38c, + 0xeca38d, + 0xeca38e, + 0xeca38f, + 0xeca390, + 0xeca391, + 0xeca392, + 0xeca393, + 0xeca394, + 0xeca395, + 0xeca396, + 0xeca397, + 0xeca398, + 0xeca399, + 0xeca39a, + 0xeca39b, + 0xeca39c, + 0xeca39d, + 0xeca39e, + 0xeca39f, + 0xeca3a0, + 0xeca3a1, + 0xeca3a2, + 0xeca3a3, + 0xeca3a4, + 0xeca3a5, + 0xeca3a6, + 0xeca3a7, + 0xeca3a8, + 0xeca3a9, + 0xeca3aa, + 0xeca3ab, + 0xeca3ac, + 0xeca3ad, + 0xeca3ae, + 0xeca3af, + 0xeca3b0, + 0xeca3b1, + 0xeca3b2, + 0xeca3b3, + 0xeca3b4, + 0xeca3b5, + 0xeca3b6, + 0xeca3b7, + 0xeca3b8, + 0xeca3b9, + 0xeca3ba, + 0xeca3bb, + 0xeca3bc, + 0xeca3bd, + 0xeca3be, + 0xeca3bf, + 0xeca480, + 0xeca481, + 0xeca482, + 0xeca483, + 0xeca484, + 0xeca485, + 0xeca486, + 0xeca487, + 0xeca488, + 0xeca489, + 0xeca48a, + 0xeca48b, + 0xeca48c, + 0xeca48d, + 0xeca48e, + 0xeca48f, + 0xeca490, + 0xeca491, + 0xeca492, + 0xeca493, + 0xeca494, + 0xeca495, + 0xeca496, + 0xeca497, + 0xeca498, + 0xeca499, + 0xeca49a, + 0xeca49b, + 0xeca49c, + 0xeca49d, + 0xeca49e, + 0xeca49f, + 0xeca4a0, + 0xeca4a1, + 0xeca4a2, + 0xeca4a3, + 0xeca4a4, + 0xeca4a5, + 0xeca4a6, + 0xeca4a7, + 0xeca4a8, + 0xeca4a9, + 0xeca4aa, + 0xeca4ab, + 0xeca4ac, + 0xeca4ad, + 0xeca4ae, + 0xeca4af, + 0xeca4b0, + 0xeca4b1, + 0xeca4b2, + 0xeca4b3, + 0xeca4b4, + 0xeca4b5, + 0xeca4b6, + 0xeca4b7, + 0xeca4b8, + 0xeca4b9, + 0xeca4ba, + 0xeca4bb, + 0xeca4bc, + 0xeca4bd, + 0xeca4be, + 0xeca4bf, + 0xeca580, + 0xeca581, + 0xeca582, + 0xeca583, + 0xeca584, + 0xeca585, + 0xeca586, + 0xeca587, + 0xeca588, + 0xeca589, + 0xeca58a, + 0xeca58b, + 0xeca58c, + 0xeca58d, + 0xeca58e, + 0xeca58f, + 0xeca590, + 0xeca591, + 0xeca592, + 0xeca593, + 0xeca594, + 0xeca595, + 0xeca596, + 0xeca597, + 0xeca598, + 0xeca599, + 0xeca59a, + 0xeca59b, + 0xeca59c, + 0xeca59d, + 0xeca59e, + 0xeca59f, + 0xeca5a0, + 0xeca5a1, + 0xeca5a2, + 0xeca5a3, + 0xeca5a4, + 0xeca5a5, + 0xeca5a6, + 0xeca5a7, + 0xeca5a8, + 0xeca5a9, + 0xeca5aa, + 0xeca5ab, + 0xeca5ac, + 0xeca5ad, + 0xeca5ae, + 0xeca5af, + 0xeca5b0, + 0xeca5b1, + 0xeca5b2, + 0xeca5b3, + 0xeca5b4, + 0xeca5b5, + 0xeca5b6, + 0xeca5b7, + 0xeca5b8, + 0xeca5b9, + 0xeca5ba, + 0xeca5bb, + 0xeca5bc, + 0xeca5bd, + 0xeca5be, + 0xeca5bf, + 0xeca680, + 0xeca681, + 0xeca682, + 0xeca683, + 0xeca684, + 0xeca685, + 0xeca686, + 0xeca687, + 0xeca688, + 0xeca689, + 0xeca68a, + 0xeca68b, + 0xeca68c, + 0xeca68d, + 0xeca68e, + 0xeca68f, + 0xeca690, + 0xeca691, + 0xeca692, + 0xeca693, + 0xeca694, + 0xeca695, + 0xeca696, + 0xeca697, + 0xeca698, + 0xeca699, + 0xeca69a, + 0xeca69b, + 0xeca69c, + 0xeca69d, + 0xeca69e, + 0xeca69f, + 0xeca6a0, + 0xeca6a1, + 0xeca6a2, + 0xeca6a3, + 0xeca6a4, + 0xeca6a5, + 0xeca6a6, + 0xeca6a7, + 0xeca6a8, + 0xeca6a9, + 0xeca6aa, + 0xeca6ab, + 0xeca6ac, + 0xeca6ad, + 0xeca6ae, + 0xeca6af, + 0xeca6b0, + 0xeca6b1, + 0xeca6b2, + 0xeca6b3, + 0xeca6b4, + 0xeca6b5, + 0xeca6b6, + 0xeca6b7, + 0xeca6b8, + 0xeca6b9, + 0xeca6ba, + 0xeca6bb, + 0xeca6bc, + 0xeca6bd, + 0xeca6be, + 0xeca6bf, + 0xeca780, + 0xeca781, + 0xeca782, + 0xeca783, + 0xeca784, + 0xeca785, + 0xeca786, + 0xeca787, + 0xeca788, + 0xeca789, + 0xeca78a, + 0xeca78b, + 0xeca78c, + 0xeca78d, + 0xeca78e, + 0xeca78f, + 0xeca790, + 0xeca791, + 0xeca792, + 0xeca793, + 0xeca794, + 0xeca795, + 0xeca796, + 0xeca797, + 0xeca798, + 0xeca799, + 0xeca79a, + 0xeca79b, + 0xeca79c, + 0xeca79d, + 0xeca79e, + 0xeca79f, + 0xeca7a0, + 0xeca7a1, + 0xeca7a2, + 0xeca7a3, + 0xeca7a4, + 0xeca7a5, + 0xeca7a6, + 0xeca7a7, + 0xeca7a8, + 0xeca7a9, + 0xeca7aa, + 0xeca7ab, + 0xeca7ac, + 0xeca7ad, + 0xeca7ae, + 0xeca7af, + 0xeca7b0, + 0xeca7b1, + 0xeca7b2, + 0xeca7b3, + 0xeca7b4, + 0xeca7b5, + 0xeca7b6, + 0xeca7b7, + 0xeca7b8, + 0xeca7b9, + 0xeca7ba, + 0xeca7bb, + 0xeca7bc, + 0xeca7bd, + 0xeca7be, + 0xeca7bf, + 0xeca880, + 0xeca881, + 0xeca882, + 0xeca883, + 0xeca884, + 0xeca885, + 0xeca886, + 0xeca887, + 0xeca888, + 0xeca889, + 0xeca88a, + 0xeca88b, + 0xeca88c, + 0xeca88d, + 0xeca88e, + 0xeca88f, + 0xeca890, + 0xeca891, + 0xeca892, + 0xeca893, + 0xeca894, + 0xeca895, + 0xeca896, + 0xeca897, + 0xeca898, + 0xeca899, + 0xeca89a, + 0xeca89b, + 0xeca89c, + 0xeca89d, + 0xeca89e, + 0xeca89f, + 0xeca8a0, + 0xeca8a1, + 0xeca8a2, + 0xeca8a3, + 0xeca8a4, + 0xeca8a5, + 0xeca8a6, + 0xeca8a7, + 0xeca8a8, + 0xeca8a9, + 0xeca8aa, + 0xeca8ab, + 0xeca8ac, + 0xeca8ad, + 0xeca8ae, + 0xeca8af, + 0xeca8b0, + 0xeca8b1, + 0xeca8b2, + 0xeca8b3, + 0xeca8b4, + 0xeca8b5, + 0xeca8b6, + 0xeca8b7, + 0xeca8b8, + 0xeca8b9, + 0xeca8ba, + 0xeca8bb, + 0xeca8bc, + 0xeca8bd, + 0xeca8be, + 0xeca8bf, + 0xeca980, + 0xeca981, + 0xeca982, + 0xeca983, + 0xeca984, + 0xeca985, + 0xeca986, + 0xeca987, + 0xeca988, + 0xeca989, + 0xeca98a, + 0xeca98b, + 0xeca98c, + 0xeca98d, + 0xeca98e, + 0xeca98f, + 0xeca990, + 0xeca991, + 0xeca992, + 0xeca993, + 0xeca994, + 0xeca995, + 0xeca996, + 0xeca997, + 0xeca998, + 0xeca999, + 0xeca99a, + 0xeca99b, + 0xeca99c, + 0xeca99d, + 0xeca99e, + 0xeca99f, + 0xeca9a0, + 0xeca9a1, + 0xeca9a2, + 0xeca9a3, + 0xeca9a4, + 0xeca9a5, + 0xeca9a6, + 0xeca9a7, + 0xeca9a8, + 0xeca9a9, + 0xeca9aa, + 0xeca9ab, + 0xeca9ac, + 0xeca9ad, + 0xeca9ae, + 0xeca9af, + 0xeca9b0, + 0xeca9b1, + 0xeca9b2, + 0xeca9b3, + 0xeca9b4, + 0xeca9b5, + 0xeca9b6, + 0xeca9b7, + 0xeca9b8, + 0xeca9b9, + 0xeca9ba, + 0xeca9bb, + 0xeca9bc, + 0xeca9bd, + 0xeca9be, + 0xeca9bf, + 0xecaa80, + 0xecaa81, + 0xecaa82, + 0xecaa83, + 0xecaa84, + 0xecaa85, + 0xecaa86, + 0xecaa87, + 0xecaa88, + 0xecaa89, + 0xecaa8a, + 0xecaa8b, + 0xecaa8c, + 0xecaa8d, + 0xecaa8e, + 0xecaa8f, + 0xecaa90, + 0xecaa91, + 0xecaa92, + 0xecaa93, + 0xecaa94, + 0xecaa95, + 0xecaa96, + 0xecaa97, + 0xecaa98, + 0xecaa99, + 0xecaa9a, + 0xecaa9b, + 0xecaa9c, + 0xecaa9d, + 0xecaa9e, + 0xecaa9f, + 0xecaaa0, + 0xecaaa1, + 0xecaaa2, + 0xecaaa3, + 0xecaaa4, + 0xecaaa5, + 0xecaaa6, + 0xecaaa7, + 0xecaaa8, + 0xecaaa9, + 0xecaaaa, + 0xecaaab, + 0xecaaac, + 0xecaaad, + 0xecaaae, + 0xecaaaf, + 0xecaab0, + 0xecaab1, + 0xecaab2, + 0xecaab3, + 0xecaab4, + 0xecaab5, + 0xecaab6, + 0xecaab7, + 0xecaab8, + 0xecaab9, + 0xecaaba, + 0xecaabb, + 0xecaabc, + 0xecaabd, + 0xecaabe, + 0xecaabf, + 0xecab80, + 0xecab81, + 0xecab82, + 0xecab83, + 0xecab84, + 0xecab85, + 0xecab86, + 0xecab87, + 0xecab88, + 0xecab89, + 0xecab8a, + 0xecab8b, + 0xecab8c, + 0xecab8d, + 0xecab8e, + 0xecab8f, + 0xecab90, + 0xecab91, + 0xecab92, + 0xecab93, + 0xecab94, + 0xecab95, + 0xecab96, + 0xecab97, + 0xecab98, + 0xecab99, + 0xecab9a, + 0xecab9b, + 0xecab9c, + 0xecab9d, + 0xecab9e, + 0xecab9f, + 0xecaba0, + 0xecaba1, + 0xecaba2, + 0xecaba3, + 0xecaba4, + 0xecaba5, + 0xecaba6, + 0xecaba7, + 0xecaba8, + 0xecaba9, + 0xecabaa, + 0xecabab, + 0xecabac, + 0xecabad, + 0xecabae, + 0xecabaf, + 0xecabb0, + 0xecabb1, + 0xecabb2, + 0xecabb3, + 0xecabb4, + 0xecabb5, + 0xecabb6, + 0xecabb7, + 0xecabb8, + 0xecabb9, + 0xecabba, + 0xecabbb, + 0xecabbc, + 0xecabbd, + 0xecabbe, + 0xecabbf, + 0xecac80, + 0xecac81, + 0xecac82, + 0xecac83, + 0xecac84, + 0xecac85, + 0xecac86, + 0xecac87, + 0xecac88, + 0xecac89, + 0xecac8a, + 0xecac8b, + 0xecac8c, + 0xecac8d, + 0xecac8e, + 0xecac8f, + 0xecac90, + 0xecac91, + 0xecac92, + 0xecac93, + 0xecac94, + 0xecac95, + 0xecac96, + 0xecac97, + 0xecac98, + 0xecac99, + 0xecac9a, + 0xecac9b, + 0xecac9c, + 0xecac9d, + 0xecac9e, + 0xecac9f, + 0xecaca0, + 0xecaca1, + 0xecaca2, + 0xecaca3, + 0xecaca4, + 0xecaca5, + 0xecaca6, + 0xecaca7, + 0xecaca8, + 0xecaca9, + 0xecacaa, + 0xecacab, + 0xecacac, + 0xecacad, + 0xecacae, + 0xecacaf, + 0xecacb0, + 0xecacb1, + 0xecacb2, + 0xecacb3, + 0xecacb4, + 0xecacb5, + 0xecacb6, + 0xecacb7, + 0xecacb8, + 0xecacb9, + 0xecacba, + 0xecacbb, + 0xecacbc, + 0xecacbd, + 0xecacbe, + 0xecacbf, + 0xecad80, + 0xecad81, + 0xecad82, + 0xecad83, + 0xecad84, + 0xecad85, + 0xecad86, + 0xecad87, + 0xecad88, + 0xecad89, + 0xecad8a, + 0xecad8b, + 0xecad8c, + 0xecad8d, + 0xecad8e, + 0xecad8f, + 0xecad90, + 0xecad91, + 0xecad92, + 0xecad93, + 0xecad94, + 0xecad95, + 0xecad96, + 0xecad97, + 0xecad98, + 0xecad99, + 0xecad9a, + 0xecad9b, + 0xecad9c, + 0xecad9d, + 0xecad9e, + 0xecad9f, + 0xecada0, + 0xecada1, + 0xecada2, + 0xecada3, + 0xecada4, + 0xecada5, + 0xecada6, + 0xecada7, + 0xecada8, + 0xecada9, + 0xecadaa, + 0xecadab, + 0xecadac, + 0xecadad, + 0xecadae, + 0xecadaf, + 0xecadb0, + 0xecadb1, + 0xecadb2, + 0xecadb3, + 0xecadb4, + 0xecadb5, + 0xecadb6, + 0xecadb7, + 0xecadb8, + 0xecadb9, + 0xecadba, + 0xecadbb, + 0xecadbc, + 0xecadbd, + 0xecadbe, + 0xecadbf, + 0xecae80, + 0xecae81, + 0xecae82, + 0xecae83, + 0xecae84, + 0xecae85, + 0xecae86, + 0xecae87, + 0xecae88, + 0xecae89, + 0xecae8a, + 0xecae8b, + 0xecae8c, + 0xecae8d, + 0xecae8e, + 0xecae8f, + 0xecae90, + 0xecae91, + 0xecae92, + 0xecae93, + 0xecae94, + 0xecae95, + 0xecae96, + 0xecae97, + 0xecae98, + 0xecae99, + 0xecae9a, + 0xecae9b, + 0xecae9c, + 0xecae9d, + 0xecae9e, + 0xecae9f, + 0xecaea0, + 0xecaea1, + 0xecaea2, + 0xecaea3, + 0xecaea4, + 0xecaea5, + 0xecaea6, + 0xecaea7, + 0xecaea8, + 0xecaea9, + 0xecaeaa, + 0xecaeab, + 0xecaeac, + 0xecaead, + 0xecaeae, + 0xecaeaf, + 0xecaeb0, + 0xecaeb1, + 0xecaeb2, + 0xecaeb3, + 0xecaeb4, + 0xecaeb5, + 0xecaeb6, + 0xecaeb7, + 0xecaeb8, + 0xecaeb9, + 0xecaeba, + 0xecaebb, + 0xecaebc, + 0xecaebd, + 0xecaebe, + 0xecaebf, + 0xecaf80, + 0xecaf81, + 0xecaf82, + 0xecaf83, + 0xecaf84, + 0xecaf85, + 0xecaf86, + 0xecaf87, + 0xecaf88, + 0xecaf89, + 0xecaf8a, + 0xecaf8b, + 0xecaf8c, + 0xecaf8d, + 0xecaf8e, + 0xecaf8f, + 0xecaf90, + 0xecaf91, + 0xecaf92, + 0xecaf93, + 0xecaf94, + 0xecaf95, + 0xecaf96, + 0xecaf97, + 0xecaf98, + 0xecaf99, + 0xecaf9a, + 0xecaf9b, + 0xecaf9c, + 0xecaf9d, + 0xecaf9e, + 0xecaf9f, + 0xecafa0, + 0xecafa1, + 0xecafa2, + 0xecafa3, + 0xecafa4, + 0xecafa5, + 0xecafa6, + 0xecafa7, + 0xecafa8, + 0xecafa9, + 0xecafaa, + 0xecafab, + 0xecafac, + 0xecafad, + 0xecafae, + 0xecafaf, + 0xecafb0, + 0xecafb1, + 0xecafb2, + 0xecafb3, + 0xecafb4, + 0xecafb5, + 0xecafb6, + 0xecafb7, + 0xecafb8, + 0xecafb9, + 0xecafba, + 0xecafbb, + 0xecafbc, + 0xecafbd, + 0xecafbe, + 0xecafbf, + 0xecb080, + 0xecb081, + 0xecb082, + 0xecb083, + 0xecb084, + 0xecb085, + 0xecb086, + 0xecb087, + 0xecb088, + 0xecb089, + 0xecb08a, + 0xecb08b, + 0xecb08c, + 0xecb08d, + 0xecb08e, + 0xecb08f, + 0xecb090, + 0xecb091, + 0xecb092, + 0xecb093, + 0xecb094, + 0xecb095, + 0xecb096, + 0xecb097, + 0xecb098, + 0xecb099, + 0xecb09a, + 0xecb09b, + 0xecb09c, + 0xecb09d, + 0xecb09e, + 0xecb09f, + 0xecb0a0, + 0xecb0a1, + 0xecb0a2, + 0xecb0a3, + 0xecb0a4, + 0xecb0a5, + 0xecb0a6, + 0xecb0a7, + 0xecb0a8, + 0xecb0a9, + 0xecb0aa, + 0xecb0ab, + 0xecb0ac, + 0xecb0ad, + 0xecb0ae, + 0xecb0af, + 0xecb0b0, + 0xecb0b1, + 0xecb0b2, + 0xecb0b3, + 0xecb0b4, + 0xecb0b5, + 0xecb0b6, + 0xecb0b7, + 0xecb0b8, + 0xecb0b9, + 0xecb0ba, + 0xecb0bb, + 0xecb0bc, + 0xecb0bd, + 0xecb0be, + 0xecb0bf, + 0xecb180, + 0xecb181, + 0xecb182, + 0xecb183, + 0xecb184, + 0xecb185, + 0xecb186, + 0xecb187, + 0xecb188, + 0xecb189, + 0xecb18a, + 0xecb18b, + 0xecb18c, + 0xecb18d, + 0xecb18e, + 0xecb18f, + 0xecb190, + 0xecb191, + 0xecb192, + 0xecb193, + 0xecb194, + 0xecb195, + 0xecb196, + 0xecb197, + 0xecb198, + 0xecb199, + 0xecb19a, + 0xecb19b, + 0xecb19c, + 0xecb19d, + 0xecb19e, + 0xecb19f, + 0xecb1a0, + 0xecb1a1, + 0xecb1a2, + 0xecb1a3, + 0xecb1a4, + 0xecb1a5, + 0xecb1a6, + 0xecb1a7, + 0xecb1a8, + 0xecb1a9, + 0xecb1aa, + 0xecb1ab, + 0xecb1ac, + 0xecb1ad, + 0xecb1ae, + 0xecb1af, + 0xecb1b0, + 0xecb1b1, + 0xecb1b2, + 0xecb1b3, + 0xecb1b4, + 0xecb1b5, + 0xecb1b6, + 0xecb1b7, + 0xecb1b8, + 0xecb1b9, + 0xecb1ba, + 0xecb1bb, + 0xecb1bc, + 0xecb1bd, + 0xecb1be, + 0xecb1bf, + 0xecb280, + 0xecb281, + 0xecb282, + 0xecb283, + 0xecb284, + 0xecb285, + 0xecb286, + 0xecb287, + 0xecb288, + 0xecb289, + 0xecb28a, + 0xecb28b, + 0xecb28c, + 0xecb28d, + 0xecb28e, + 0xecb28f, + 0xecb290, + 0xecb291, + 0xecb292, + 0xecb293, + 0xecb294, + 0xecb295, + 0xecb296, + 0xecb297, + 0xecb298, + 0xecb299, + 0xecb29a, + 0xecb29b, + 0xecb29c, + 0xecb29d, + 0xecb29e, + 0xecb29f, + 0xecb2a0, + 0xecb2a1, + 0xecb2a2, + 0xecb2a3, + 0xecb2a4, + 0xecb2a5, + 0xecb2a6, + 0xecb2a7, + 0xecb2a8, + 0xecb2a9, + 0xecb2aa, + 0xecb2ab, + 0xecb2ac, + 0xecb2ad, + 0xecb2ae, + 0xecb2af, + 0xecb2b0, + 0xecb2b1, + 0xecb2b2, + 0xecb2b3, + 0xecb2b4, + 0xecb2b5, + 0xecb2b6, + 0xecb2b7, + 0xecb2b8, + 0xecb2b9, + 0xecb2ba, + 0xecb2bb, + 0xecb2bc, + 0xecb2bd, + 0xecb2be, + 0xecb2bf, + 0xecb380, + 0xecb381, + 0xecb382, + 0xecb383, + 0xecb384, + 0xecb385, + 0xecb386, + 0xecb387, + 0xecb388, + 0xecb389, + 0xecb38a, + 0xecb38b, + 0xecb38c, + 0xecb38d, + 0xecb38e, + 0xecb38f, + 0xecb390, + 0xecb391, + 0xecb392, + 0xecb393, + 0xecb394, + 0xecb395, + 0xecb396, + 0xecb397, + 0xecb398, + 0xecb399, + 0xecb39a, + 0xecb39b, + 0xecb39c, + 0xecb39d, + 0xecb39e, + 0xecb39f, + 0xecb3a0, + 0xecb3a1, + 0xecb3a2, + 0xecb3a3, + 0xecb3a4, + 0xecb3a5, + 0xecb3a6, + 0xecb3a7, + 0xecb3a8, + 0xecb3a9, + 0xecb3aa, + 0xecb3ab, + 0xecb3ac, + 0xecb3ad, + 0xecb3ae, + 0xecb3af, + 0xecb3b0, + 0xecb3b1, + 0xecb3b2, + 0xecb3b3, + 0xecb3b4, + 0xecb3b5, + 0xecb3b6, + 0xecb3b7, + 0xecb3b8, + 0xecb3b9, + 0xecb3ba, + 0xecb3bb, + 0xecb3bc, + 0xecb3bd, + 0xecb3be, + 0xecb3bf, + 0xecb480, + 0xecb481, + 0xecb482, + 0xecb483, + 0xecb484, + 0xecb485, + 0xecb486, + 0xecb487, + 0xecb488, + 0xecb489, + 0xecb48a, + 0xecb48b, + 0xecb48c, + 0xecb48d, + 0xecb48e, + 0xecb48f, + 0xecb490, + 0xecb491, + 0xecb492, + 0xecb493, + 0xecb494, + 0xecb495, + 0xecb496, + 0xecb497, + 0xecb498, + 0xecb499, + 0xecb49a, + 0xecb49b, + 0xecb49c, + 0xecb49d, + 0xecb49e, + 0xecb49f, + 0xecb4a0, + 0xecb4a1, + 0xecb4a2, + 0xecb4a3, + 0xecb4a4, + 0xecb4a5, + 0xecb4a6, + 0xecb4a7, + 0xecb4a8, + 0xecb4a9, + 0xecb4aa, + 0xecb4ab, + 0xecb4ac, + 0xecb4ad, + 0xecb4ae, + 0xecb4af, + 0xecb4b0, + 0xecb4b1, + 0xecb4b2, + 0xecb4b3, + 0xecb4b4, + 0xecb4b5, + 0xecb4b6, + 0xecb4b7, + 0xecb4b8, + 0xecb4b9, + 0xecb4ba, + 0xecb4bb, + 0xecb4bc, + 0xecb4bd, + 0xecb4be, + 0xecb4bf, + 0xecb580, + 0xecb581, + 0xecb582, + 0xecb583, + 0xecb584, + 0xecb585, + 0xecb586, + 0xecb587, + 0xecb588, + 0xecb589, + 0xecb58a, + 0xecb58b, + 0xecb58c, + 0xecb58d, + 0xecb58e, + 0xecb58f, + 0xecb590, + 0xecb591, + 0xecb592, + 0xecb593, + 0xecb594, + 0xecb595, + 0xecb596, + 0xecb597, + 0xecb598, + 0xecb599, + 0xecb59a, + 0xecb59b, + 0xecb59c, + 0xecb59d, + 0xecb59e, + 0xecb59f, + 0xecb5a0, + 0xecb5a1, + 0xecb5a2, + 0xecb5a3, + 0xecb5a4, + 0xecb5a5, + 0xecb5a6, + 0xecb5a7, + 0xecb5a8, + 0xecb5a9, + 0xecb5aa, + 0xecb5ab, + 0xecb5ac, + 0xecb5ad, + 0xecb5ae, + 0xecb5af, + 0xecb5b0, + 0xecb5b1, + 0xecb5b2, + 0xecb5b3, + 0xecb5b4, + 0xecb5b5, + 0xecb5b6, + 0xecb5b7, + 0xecb5b8, + 0xecb5b9, + 0xecb5ba, + 0xecb5bb, + 0xecb5bc, + 0xecb5bd, + 0xecb5be, + 0xecb5bf, + 0xecb680, + 0xecb681, + 0xecb682, + 0xecb683, + 0xecb684, + 0xecb685, + 0xecb686, + 0xecb687, + 0xecb688, + 0xecb689, + 0xecb68a, + 0xecb68b, + 0xecb68c, + 0xecb68d, + 0xecb68e, + 0xecb68f, + 0xecb690, + 0xecb691, + 0xecb692, + 0xecb693, + 0xecb694, + 0xecb695, + 0xecb696, + 0xecb697, + 0xecb698, + 0xecb699, + 0xecb69a, + 0xecb69b, + 0xecb69c, + 0xecb69d, + 0xecb69e, + 0xecb69f, + 0xecb6a0, + 0xecb6a1, + 0xecb6a2, + 0xecb6a3, + 0xecb6a4, + 0xecb6a5, + 0xecb6a6, + 0xecb6a7, + 0xecb6a8, + 0xecb6a9, + 0xecb6aa, + 0xecb6ab, + 0xecb6ac, + 0xecb6ad, + 0xecb6ae, + 0xecb6af, + 0xecb6b0, + 0xecb6b1, + 0xecb6b2, + 0xecb6b3, + 0xecb6b4, + 0xecb6b5, + 0xecb6b6, + 0xecb6b7, + 0xecb6b8, + 0xecb6b9, + 0xecb6ba, + 0xecb6bb, + 0xecb6bc, + 0xecb6bd, + 0xecb6be, + 0xecb6bf, + 0xecb780, + 0xecb781, + 0xecb782, + 0xecb783, + 0xecb784, + 0xecb785, + 0xecb786, + 0xecb787, + 0xecb788, + 0xecb789, + 0xecb78a, + 0xecb78b, + 0xecb78c, + 0xecb78d, + 0xecb78e, + 0xecb78f, + 0xecb790, + 0xecb791, + 0xecb792, + 0xecb793, + 0xecb794, + 0xecb795, + 0xecb796, + 0xecb797, + 0xecb798, + 0xecb799, + 0xecb79a, + 0xecb79b, + 0xecb79c, + 0xecb79d, + 0xecb79e, + 0xecb79f, + 0xecb7a0, + 0xecb7a1, + 0xecb7a2, + 0xecb7a3, + 0xecb7a4, + 0xecb7a5, + 0xecb7a6, + 0xecb7a7, + 0xecb7a8, + 0xecb7a9, + 0xecb7aa, + 0xecb7ab, + 0xecb7ac, + 0xecb7ad, + 0xecb7ae, + 0xecb7af, + 0xecb7b0, + 0xecb7b1, + 0xecb7b2, + 0xecb7b3, + 0xecb7b4, + 0xecb7b5, + 0xecb7b6, + 0xecb7b7, + 0xecb7b8, + 0xecb7b9, + 0xecb7ba, + 0xecb7bb, + 0xecb7bc, + 0xecb7bd, + 0xecb7be, + 0xecb7bf, + 0xecb880, + 0xecb881, + 0xecb882, + 0xecb883, + 0xecb884, + 0xecb885, + 0xecb886, + 0xecb887, + 0xecb888, + 0xecb889, + 0xecb88a, + 0xecb88b, + 0xecb88c, + 0xecb88d, + 0xecb88e, + 0xecb88f, + 0xecb890, + 0xecb891, + 0xecb892, + 0xecb893, + 0xecb894, + 0xecb895, + 0xecb896, + 0xecb897, + 0xecb898, + 0xecb899, + 0xecb89a, + 0xecb89b, + 0xecb89c, + 0xecb89d, + 0xecb89e, + 0xecb89f, + 0xecb8a0, + 0xecb8a1, + 0xecb8a2, + 0xecb8a3, + 0xecb8a4, + 0xecb8a5, + 0xecb8a6, + 0xecb8a7, + 0xecb8a8, + 0xecb8a9, + 0xecb8aa, + 0xecb8ab, + 0xecb8ac, + 0xecb8ad, + 0xecb8ae, + 0xecb8af, + 0xecb8b0, + 0xecb8b1, + 0xecb8b2, + 0xecb8b3, + 0xecb8b4, + 0xecb8b5, + 0xecb8b6, + 0xecb8b7, + 0xecb8b8, + 0xecb8b9, + 0xecb8ba, + 0xecb8bb, + 0xecb8bc, + 0xecb8bd, + 0xecb8be, + 0xecb8bf, + 0xecb980, + 0xecb981, + 0xecb982, + 0xecb983, + 0xecb984, + 0xecb985, + 0xecb986, + 0xecb987, + 0xecb988, + 0xecb989, + 0xecb98a, + 0xecb98b, + 0xecb98c, + 0xecb98d, + 0xecb98e, + 0xecb98f, + 0xecb990, + 0xecb991, + 0xecb992, + 0xecb993, + 0xecb994, + 0xecb995, + 0xecb996, + 0xecb997, + 0xecb998, + 0xecb999, + 0xecb99a, + 0xecb99b, + 0xecb99c, + 0xecb99d, + 0xecb99e, + 0xecb99f, + 0xecb9a0, + 0xecb9a1, + 0xecb9a2, + 0xecb9a3, + 0xecb9a4, + 0xecb9a5, + 0xecb9a6, + 0xecb9a7, + 0xecb9a8, + 0xecb9a9, + 0xecb9aa, + 0xecb9ab, + 0xecb9ac, + 0xecb9ad, + 0xecb9ae, + 0xecb9af, + 0xecb9b0, + 0xecb9b1, + 0xecb9b2, + 0xecb9b3, + 0xecb9b4, + 0xecb9b5, + 0xecb9b6, + 0xecb9b7, + 0xecb9b8, + 0xecb9b9, + 0xecb9ba, + 0xecb9bb, + 0xecb9bc, + 0xecb9bd, + 0xecb9be, + 0xecb9bf, + 0xecba80, + 0xecba81, + 0xecba82, + 0xecba83, + 0xecba84, + 0xecba85, + 0xecba86, + 0xecba87, + 0xecba88, + 0xecba89, + 0xecba8a, + 0xecba8b, + 0xecba8c, + 0xecba8d, + 0xecba8e, + 0xecba8f, + 0xecba90, + 0xecba91, + 0xecba92, + 0xecba93, + 0xecba94, + 0xecba95, + 0xecba96, + 0xecba97, + 0xecba98, + 0xecba99, + 0xecba9a, + 0xecba9b, + 0xecba9c, + 0xecba9d, + 0xecba9e, + 0xecba9f, + 0xecbaa0, + 0xecbaa1, + 0xecbaa2, + 0xecbaa3, + 0xecbaa4, + 0xecbaa5, + 0xecbaa6, + 0xecbaa7, + 0xecbaa8, + 0xecbaa9, + 0xecbaaa, + 0xecbaab, + 0xecbaac, + 0xecbaad, + 0xecbaae, + 0xecbaaf, + 0xecbab0, + 0xecbab1, + 0xecbab2, + 0xecbab3, + 0xecbab4, + 0xecbab5, + 0xecbab6, + 0xecbab7, + 0xecbab8, + 0xecbab9, + 0xecbaba, + 0xecbabb, + 0xecbabc, + 0xecbabd, + 0xecbabe, + 0xecbabf, + 0xecbb80, + 0xecbb81, + 0xecbb82, + 0xecbb83, + 0xecbb84, + 0xecbb85, + 0xecbb86, + 0xecbb87, + 0xecbb88, + 0xecbb89, + 0xecbb8a, + 0xecbb8b, + 0xecbb8c, + 0xecbb8d, + 0xecbb8e, + 0xecbb8f, + 0xecbb90, + 0xecbb91, + 0xecbb92, + 0xecbb93, + 0xecbb94, + 0xecbb95, + 0xecbb96, + 0xecbb97, + 0xecbb98, + 0xecbb99, + 0xecbb9a, + 0xecbb9b, + 0xecbb9c, + 0xecbb9d, + 0xecbb9e, + 0xecbb9f, + 0xecbba0, + 0xecbba1, + 0xecbba2, + 0xecbba3, + 0xecbba4, + 0xecbba5, + 0xecbba6, + 0xecbba7, + 0xecbba8, + 0xecbba9, + 0xecbbaa, + 0xecbbab, + 0xecbbac, + 0xecbbad, + 0xecbbae, + 0xecbbaf, + 0xecbbb0, + 0xecbbb1, + 0xecbbb2, + 0xecbbb3, + 0xecbbb4, + 0xecbbb5, + 0xecbbb6, + 0xecbbb7, + 0xecbbb8, + 0xecbbb9, + 0xecbbba, + 0xecbbbb, + 0xecbbbc, + 0xecbbbd, + 0xecbbbe, + 0xecbbbf, + 0xecbc80, + 0xecbc81, + 0xecbc82, + 0xecbc83, + 0xecbc84, + 0xecbc85, + 0xecbc86, + 0xecbc87, + 0xecbc88, + 0xecbc89, + 0xecbc8a, + 0xecbc8b, + 0xecbc8c, + 0xecbc8d, + 0xecbc8e, + 0xecbc8f, + 0xecbc90, + 0xecbc91, + 0xecbc92, + 0xecbc93, + 0xecbc94, + 0xecbc95, + 0xecbc96, + 0xecbc97, + 0xecbc98, + 0xecbc99, + 0xecbc9a, + 0xecbc9b, + 0xecbc9c, + 0xecbc9d, + 0xecbc9e, + 0xecbc9f, + 0xecbca0, + 0xecbca1, + 0xecbca2, + 0xecbca3, + 0xecbca4, + 0xecbca5, + 0xecbca6, + 0xecbca7, + 0xecbca8, + 0xecbca9, + 0xecbcaa, + 0xecbcab, + 0xecbcac, + 0xecbcad, + 0xecbcae, + 0xecbcaf, + 0xecbcb0, + 0xecbcb1, + 0xecbcb2, + 0xecbcb3, + 0xecbcb4, + 0xecbcb5, + 0xecbcb6, + 0xecbcb7, + 0xecbcb8, + 0xecbcb9, + 0xecbcba, + 0xecbcbb, + 0xecbcbc, + 0xecbcbd, + 0xecbcbe, + 0xecbcbf, + 0xecbd80, + 0xecbd81, + 0xecbd82, + 0xecbd83, + 0xecbd84, + 0xecbd85, + 0xecbd86, + 0xecbd87, + 0xecbd88, + 0xecbd89, + 0xecbd8a, + 0xecbd8b, + 0xecbd8c, + 0xecbd8d, + 0xecbd8e, + 0xecbd8f, + 0xecbd90, + 0xecbd91, + 0xecbd92, + 0xecbd93, + 0xecbd94, + 0xecbd95, + 0xecbd96, + 0xecbd97, + 0xecbd98, + 0xecbd99, + 0xecbd9a, + 0xecbd9b, + 0xecbd9c, + 0xecbd9d, + 0xecbd9e, + 0xecbd9f, + 0xecbda0, + 0xecbda1, + 0xecbda2, + 0xecbda3, + 0xecbda4, + 0xecbda5, + 0xecbda6, + 0xecbda7, + 0xecbda8, + 0xecbda9, + 0xecbdaa, + 0xecbdab, + 0xecbdac, + 0xecbdad, + 0xecbdae, + 0xecbdaf, + 0xecbdb0, + 0xecbdb1, + 0xecbdb2, + 0xecbdb3, + 0xecbdb4, + 0xecbdb5, + 0xecbdb6, + 0xecbdb7, + 0xecbdb8, + 0xecbdb9, + 0xecbdba, + 0xecbdbb, + 0xecbdbc, + 0xecbdbd, + 0xecbdbe, + 0xecbdbf, + 0xecbe80, + 0xecbe81, + 0xecbe82, + 0xecbe83, + 0xecbe84, + 0xecbe85, + 0xecbe86, + 0xecbe87, + 0xecbe88, + 0xecbe89, + 0xecbe8a, + 0xecbe8b, + 0xecbe8c, + 0xecbe8d, + 0xecbe8e, + 0xecbe8f, + 0xecbe90, + 0xecbe91, + 0xecbe92, + 0xecbe93, + 0xecbe94, + 0xecbe95, + 0xecbe96, + 0xecbe97, + 0xecbe98, + 0xecbe99, + 0xecbe9a, + 0xecbe9b, + 0xecbe9c, + 0xecbe9d, + 0xecbe9e, + 0xecbe9f, + 0xecbea0, + 0xecbea1, + 0xecbea2, + 0xecbea3, + 0xecbea4, + 0xecbea5, + 0xecbea6, + 0xecbea7, + 0xecbea8, + 0xecbea9, + 0xecbeaa, + 0xecbeab, + 0xecbeac, + 0xecbead, + 0xecbeae, + 0xecbeaf, + 0xecbeb0, + 0xecbeb1, + 0xecbeb2, + 0xecbeb3, + 0xecbeb4, + 0xecbeb5, + 0xecbeb6, + 0xecbeb7, + 0xecbeb8, + 0xecbeb9, + 0xecbeba, + 0xecbebb, + 0xecbebc, + 0xecbebd, + 0xecbebe, + 0xecbebf, + 0xecbf80, + 0xecbf81, + 0xecbf82, + 0xecbf83, + 0xecbf84, + 0xecbf85, + 0xecbf86, + 0xecbf87, + 0xecbf88, + 0xecbf89, + 0xecbf8a, + 0xecbf8b, + 0xecbf8c, + 0xecbf8d, + 0xecbf8e, + 0xecbf8f, + 0xecbf90, + 0xecbf91, + 0xecbf92, + 0xecbf93, + 0xecbf94, + 0xecbf95, + 0xecbf96, + 0xecbf97, + 0xecbf98, + 0xecbf99, + 0xecbf9a, + 0xecbf9b, + 0xecbf9c, + 0xecbf9d, + 0xecbf9e, + 0xecbf9f, + 0xecbfa0, + 0xecbfa1, + 0xecbfa2, + 0xecbfa3, + 0xecbfa4, + 0xecbfa5, + 0xecbfa6, + 0xecbfa7, + 0xecbfa8, + 0xecbfa9, + 0xecbfaa, + 0xecbfab, + 0xecbfac, + 0xecbfad, + 0xecbfae, + 0xecbfaf, + 0xecbfb0, + 0xecbfb1, + 0xecbfb2, + 0xecbfb3, + 0xecbfb4, + 0xecbfb5, + 0xecbfb6, + 0xecbfb7, + 0xecbfb8, + 0xecbfb9, + 0xecbfba, + 0xecbfbb, + 0xecbfbc, + 0xecbfbd, + 0xecbfbe, + 0xecbfbf, + 0xed8080, + 0xed8081, + 0xed8082, + 0xed8083, + 0xed8084, + 0xed8085, + 0xed8086, + 0xed8087, + 0xed8088, + 0xed8089, + 0xed808a, + 0xed808b, + 0xed808c, + 0xed808d, + 0xed808e, + 0xed808f, + 0xed8090, + 0xed8091, + 0xed8092, + 0xed8093, + 0xed8094, + 0xed8095, + 0xed8096, + 0xed8097, + 0xed8098, + 0xed8099, + 0xed809a, + 0xed809b, + 0xed809c, + 0xed809d, + 0xed809e, + 0xed809f, + 0xed80a0, + 0xed80a1, + 0xed80a2, + 0xed80a3, + 0xed80a4, + 0xed80a5, + 0xed80a6, + 0xed80a7, + 0xed80a8, + 0xed80a9, + 0xed80aa, + 0xed80ab, + 0xed80ac, + 0xed80ad, + 0xed80ae, + 0xed80af, + 0xed80b0, + 0xed80b1, + 0xed80b2, + 0xed80b3, + 0xed80b4, + 0xed80b5, + 0xed80b6, + 0xed80b7, + 0xed80b8, + 0xed80b9, + 0xed80ba, + 0xed80bb, + 0xed80bc, + 0xed80bd, + 0xed80be, + 0xed80bf, + 0xed8180, + 0xed8181, + 0xed8182, + 0xed8183, + 0xed8184, + 0xed8185, + 0xed8186, + 0xed8187, + 0xed8188, + 0xed8189, + 0xed818a, + 0xed818b, + 0xed818c, + 0xed818d, + 0xed818e, + 0xed818f, + 0xed8190, + 0xed8191, + 0xed8192, + 0xed8193, + 0xed8194, + 0xed8195, + 0xed8196, + 0xed8197, + 0xed8198, + 0xed8199, + 0xed819a, + 0xed819b, + 0xed819c, + 0xed819d, + 0xed819e, + 0xed819f, + 0xed81a0, + 0xed81a1, + 0xed81a2, + 0xed81a3, + 0xed81a4, + 0xed81a5, + 0xed81a6, + 0xed81a7, + 0xed81a8, + 0xed81a9, + 0xed81aa, + 0xed81ab, + 0xed81ac, + 0xed81ad, + 0xed81ae, + 0xed81af, + 0xed81b0, + 0xed81b1, + 0xed81b2, + 0xed81b3, + 0xed81b4, + 0xed81b5, + 0xed81b6, + 0xed81b7, + 0xed81b8, + 0xed81b9, + 0xed81ba, + 0xed81bb, + 0xed81bc, + 0xed81bd, + 0xed81be, + 0xed81bf, + 0xed8280, + 0xed8281, + 0xed8282, + 0xed8283, + 0xed8284, + 0xed8285, + 0xed8286, + 0xed8287, + 0xed8288, + 0xed8289, + 0xed828a, + 0xed828b, + 0xed828c, + 0xed828d, + 0xed828e, + 0xed828f, + 0xed8290, + 0xed8291, + 0xed8292, + 0xed8293, + 0xed8294, + 0xed8295, + 0xed8296, + 0xed8297, + 0xed8298, + 0xed8299, + 0xed829a, + 0xed829b, + 0xed829c, + 0xed829d, + 0xed829e, + 0xed829f, + 0xed82a0, + 0xed82a1, + 0xed82a2, + 0xed82a3, + 0xed82a4, + 0xed82a5, + 0xed82a6, + 0xed82a7, + 0xed82a8, + 0xed82a9, + 0xed82aa, + 0xed82ab, + 0xed82ac, + 0xed82ad, + 0xed82ae, + 0xed82af, + 0xed82b0, + 0xed82b1, + 0xed82b2, + 0xed82b3, + 0xed82b4, + 0xed82b5, + 0xed82b6, + 0xed82b7, + 0xed82b8, + 0xed82b9, + 0xed82ba, + 0xed82bb, + 0xed82bc, + 0xed82bd, + 0xed82be, + 0xed82bf, + 0xed8380, + 0xed8381, + 0xed8382, + 0xed8383, + 0xed8384, + 0xed8385, + 0xed8386, + 0xed8387, + 0xed8388, + 0xed8389, + 0xed838a, + 0xed838b, + 0xed838c, + 0xed838d, + 0xed838e, + 0xed838f, + 0xed8390, + 0xed8391, + 0xed8392, + 0xed8393, + 0xed8394, + 0xed8395, + 0xed8396, + 0xed8397, + 0xed8398, + 0xed8399, + 0xed839a, + 0xed839b, + 0xed839c, + 0xed839d, + 0xed839e, + 0xed839f, + 0xed83a0, + 0xed83a1, + 0xed83a2, + 0xed83a3, + 0xed83a4, + 0xed83a5, + 0xed83a6, + 0xed83a7, + 0xed83a8, + 0xed83a9, + 0xed83aa, + 0xed83ab, + 0xed83ac, + 0xed83ad, + 0xed83ae, + 0xed83af, + 0xed83b0, + 0xed83b1, + 0xed83b2, + 0xed83b3, + 0xed83b4, + 0xed83b5, + 0xed83b6, + 0xed83b7, + 0xed83b8, + 0xed83b9, + 0xed83ba, + 0xed83bb, + 0xed83bc, + 0xed83bd, + 0xed83be, + 0xed83bf, + 0xed8480, + 0xed8481, + 0xed8482, + 0xed8483, + 0xed8484, + 0xed8485, + 0xed8486, + 0xed8487, + 0xed8488, + 0xed8489, + 0xed848a, + 0xed848b, + 0xed848c, + 0xed848d, + 0xed848e, + 0xed848f, + 0xed8490, + 0xed8491, + 0xed8492, + 0xed8493, + 0xed8494, + 0xed8495, + 0xed8496, + 0xed8497, + 0xed8498, + 0xed8499, + 0xed849a, + 0xed849b, + 0xed849c, + 0xed849d, + 0xed849e, + 0xed849f, + 0xed84a0, + 0xed84a1, + 0xed84a2, + 0xed84a3, + 0xed84a4, + 0xed84a5, + 0xed84a6, + 0xed84a7, + 0xed84a8, + 0xed84a9, + 0xed84aa, + 0xed84ab, + 0xed84ac, + 0xed84ad, + 0xed84ae, + 0xed84af, + 0xed84b0, + 0xed84b1, + 0xed84b2, + 0xed84b3, + 0xed84b4, + 0xed84b5, + 0xed84b6, + 0xed84b7, + 0xed84b8, + 0xed84b9, + 0xed84ba, + 0xed84bb, + 0xed84bc, + 0xed84bd, + 0xed84be, + 0xed84bf, + 0xed8580, + 0xed8581, + 0xed8582, + 0xed8583, + 0xed8584, + 0xed8585, + 0xed8586, + 0xed8587, + 0xed8588, + 0xed8589, + 0xed858a, + 0xed858b, + 0xed858c, + 0xed858d, + 0xed858e, + 0xed858f, + 0xed8590, + 0xed8591, + 0xed8592, + 0xed8593, + 0xed8594, + 0xed8595, + 0xed8596, + 0xed8597, + 0xed8598, + 0xed8599, + 0xed859a, + 0xed859b, + 0xed859c, + 0xed859d, + 0xed859e, + 0xed859f, + 0xed85a0, + 0xed85a1, + 0xed85a2, + 0xed85a3, + 0xed85a4, + 0xed85a5, + 0xed85a6, + 0xed85a7, + 0xed85a8, + 0xed85a9, + 0xed85aa, + 0xed85ab, + 0xed85ac, + 0xed85ad, + 0xed85ae, + 0xed85af, + 0xed85b0, + 0xed85b1, + 0xed85b2, + 0xed85b3, + 0xed85b4, + 0xed85b5, + 0xed85b6, + 0xed85b7, + 0xed85b8, + 0xed85b9, + 0xed85ba, + 0xed85bb, + 0xed85bc, + 0xed85bd, + 0xed85be, + 0xed85bf, + 0xed8680, + 0xed8681, + 0xed8682, + 0xed8683, + 0xed8684, + 0xed8685, + 0xed8686, + 0xed8687, + 0xed8688, + 0xed8689, + 0xed868a, + 0xed868b, + 0xed868c, + 0xed868d, + 0xed868e, + 0xed868f, + 0xed8690, + 0xed8691, + 0xed8692, + 0xed8693, + 0xed8694, + 0xed8695, + 0xed8696, + 0xed8697, + 0xed8698, + 0xed8699, + 0xed869a, + 0xed869b, + 0xed869c, + 0xed869d, + 0xed869e, + 0xed869f, + 0xed86a0, + 0xed86a1, + 0xed86a2, + 0xed86a3, + 0xed86a4, + 0xed86a5, + 0xed86a6, + 0xed86a7, + 0xed86a8, + 0xed86a9, + 0xed86aa, + 0xed86ab, + 0xed86ac, + 0xed86ad, + 0xed86ae, + 0xed86af, + 0xed86b0, + 0xed86b1, + 0xed86b2, + 0xed86b3, + 0xed86b4, + 0xed86b5, + 0xed86b6, + 0xed86b7, + 0xed86b8, + 0xed86b9, + 0xed86ba, + 0xed86bb, + 0xed86bc, + 0xed86bd, + 0xed86be, + 0xed86bf, + 0xed8780, + 0xed8781, + 0xed8782, + 0xed8783, + 0xed8784, + 0xed8785, + 0xed8786, + 0xed8787, + 0xed8788, + 0xed8789, + 0xed878a, + 0xed878b, + 0xed878c, + 0xed878d, + 0xed878e, + 0xed878f, + 0xed8790, + 0xed8791, + 0xed8792, + 0xed8793, + 0xed8794, + 0xed8795, + 0xed8796, + 0xed8797, + 0xed8798, + 0xed8799, + 0xed879a, + 0xed879b, + 0xed879c, + 0xed879d, + 0xed879e, + 0xed879f, + 0xed87a0, + 0xed87a1, + 0xed87a2, + 0xed87a3, + 0xed87a4, + 0xed87a5, + 0xed87a6, + 0xed87a7, + 0xed87a8, + 0xed87a9, + 0xed87aa, + 0xed87ab, + 0xed87ac, + 0xed87ad, + 0xed87ae, + 0xed87af, + 0xed87b0, + 0xed87b1, + 0xed87b2, + 0xed87b3, + 0xed87b4, + 0xed87b5, + 0xed87b6, + 0xed87b7, + 0xed87b8, + 0xed87b9, + 0xed87ba, + 0xed87bb, + 0xed87bc, + 0xed87bd, + 0xed87be, + 0xed87bf, + 0xed8880, + 0xed8881, + 0xed8882, + 0xed8883, + 0xed8884, + 0xed8885, + 0xed8886, + 0xed8887, + 0xed8888, + 0xed8889, + 0xed888a, + 0xed888b, + 0xed888c, + 0xed888d, + 0xed888e, + 0xed888f, + 0xed8890, + 0xed8891, + 0xed8892, + 0xed8893, + 0xed8894, + 0xed8895, + 0xed8896, + 0xed8897, + 0xed8898, + 0xed8899, + 0xed889a, + 0xed889b, + 0xed889c, + 0xed889d, + 0xed889e, + 0xed889f, + 0xed88a0, + 0xed88a1, + 0xed88a2, + 0xed88a3, + 0xed88a4, + 0xed88a5, + 0xed88a6, + 0xed88a7, + 0xed88a8, + 0xed88a9, + 0xed88aa, + 0xed88ab, + 0xed88ac, + 0xed88ad, + 0xed88ae, + 0xed88af, + 0xed88b0, + 0xed88b1, + 0xed88b2, + 0xed88b3, + 0xed88b4, + 0xed88b5, + 0xed88b6, + 0xed88b7, + 0xed88b8, + 0xed88b9, + 0xed88ba, + 0xed88bb, + 0xed88bc, + 0xed88bd, + 0xed88be, + 0xed88bf, + 0xed8980, + 0xed8981, + 0xed8982, + 0xed8983, + 0xed8984, + 0xed8985, + 0xed8986, + 0xed8987, + 0xed8988, + 0xed8989, + 0xed898a, + 0xed898b, + 0xed898c, + 0xed898d, + 0xed898e, + 0xed898f, + 0xed8990, + 0xed8991, + 0xed8992, + 0xed8993, + 0xed8994, + 0xed8995, + 0xed8996, + 0xed8997, + 0xed8998, + 0xed8999, + 0xed899a, + 0xed899b, + 0xed899c, + 0xed899d, + 0xed899e, + 0xed899f, + 0xed89a0, + 0xed89a1, + 0xed89a2, + 0xed89a3, + 0xed89a4, + 0xed89a5, + 0xed89a6, + 0xed89a7, + 0xed89a8, + 0xed89a9, + 0xed89aa, + 0xed89ab, + 0xed89ac, + 0xed89ad, + 0xed89ae, + 0xed89af, + 0xed89b0, + 0xed89b1, + 0xed89b2, + 0xed89b3, + 0xed89b4, + 0xed89b5, + 0xed89b6, + 0xed89b7, + 0xed89b8, + 0xed89b9, + 0xed89ba, + 0xed89bb, + 0xed89bc, + 0xed89bd, + 0xed89be, + 0xed89bf, + 0xed8a80, + 0xed8a81, + 0xed8a82, + 0xed8a83, + 0xed8a84, + 0xed8a85, + 0xed8a86, + 0xed8a87, + 0xed8a88, + 0xed8a89, + 0xed8a8a, + 0xed8a8b, + 0xed8a8c, + 0xed8a8d, + 0xed8a8e, + 0xed8a8f, + 0xed8a90, + 0xed8a91, + 0xed8a92, + 0xed8a93, + 0xed8a94, + 0xed8a95, + 0xed8a96, + 0xed8a97, + 0xed8a98, + 0xed8a99, + 0xed8a9a, + 0xed8a9b, + 0xed8a9c, + 0xed8a9d, + 0xed8a9e, + 0xed8a9f, + 0xed8aa0, + 0xed8aa1, + 0xed8aa2, + 0xed8aa3, + 0xed8aa4, + 0xed8aa5, + 0xed8aa6, + 0xed8aa7, + 0xed8aa8, + 0xed8aa9, + 0xed8aaa, + 0xed8aab, + 0xed8aac, + 0xed8aad, + 0xed8aae, + 0xed8aaf, + 0xed8ab0, + 0xed8ab1, + 0xed8ab2, + 0xed8ab3, + 0xed8ab4, + 0xed8ab5, + 0xed8ab6, + 0xed8ab7, + 0xed8ab8, + 0xed8ab9, + 0xed8aba, + 0xed8abb, + 0xed8abc, + 0xed8abd, + 0xed8abe, + 0xed8abf, + 0xed8b80, + 0xed8b81, + 0xed8b82, + 0xed8b83, + 0xed8b84, + 0xed8b85, + 0xed8b86, + 0xed8b87, + 0xed8b88, + 0xed8b89, + 0xed8b8a, + 0xed8b8b, + 0xed8b8c, + 0xed8b8d, + 0xed8b8e, + 0xed8b8f, + 0xed8b90, + 0xed8b91, + 0xed8b92, + 0xed8b93, + 0xed8b94, + 0xed8b95, + 0xed8b96, + 0xed8b97, + 0xed8b98, + 0xed8b99, + 0xed8b9a, + 0xed8b9b, + 0xed8b9c, + 0xed8b9d, + 0xed8b9e, + 0xed8b9f, + 0xed8ba0, + 0xed8ba1, + 0xed8ba2, + 0xed8ba3, + 0xed8ba4, + 0xed8ba5, + 0xed8ba6, + 0xed8ba7, + 0xed8ba8, + 0xed8ba9, + 0xed8baa, + 0xed8bab, + 0xed8bac, + 0xed8bad, + 0xed8bae, + 0xed8baf, + 0xed8bb0, + 0xed8bb1, + 0xed8bb2, + 0xed8bb3, + 0xed8bb4, + 0xed8bb5, + 0xed8bb6, + 0xed8bb7, + 0xed8bb8, + 0xed8bb9, + 0xed8bba, + 0xed8bbb, + 0xed8bbc, + 0xed8bbd, + 0xed8bbe, + 0xed8bbf, + 0xed8c80, + 0xed8c81, + 0xed8c82, + 0xed8c83, + 0xed8c84, + 0xed8c85, + 0xed8c86, + 0xed8c87, + 0xed8c88, + 0xed8c89, + 0xed8c8a, + 0xed8c8b, + 0xed8c8c, + 0xed8c8d, + 0xed8c8e, + 0xed8c8f, + 0xed8c90, + 0xed8c91, + 0xed8c92, + 0xed8c93, + 0xed8c94, + 0xed8c95, + 0xed8c96, + 0xed8c97, + 0xed8c98, + 0xed8c99, + 0xed8c9a, + 0xed8c9b, + 0xed8c9c, + 0xed8c9d, + 0xed8c9e, + 0xed8c9f, + 0xed8ca0, + 0xed8ca1, + 0xed8ca2, + 0xed8ca3, + 0xed8ca4, + 0xed8ca5, + 0xed8ca6, + 0xed8ca7, + 0xed8ca8, + 0xed8ca9, + 0xed8caa, + 0xed8cab, + 0xed8cac, + 0xed8cad, + 0xed8cae, + 0xed8caf, + 0xed8cb0, + 0xed8cb1, + 0xed8cb2, + 0xed8cb3, + 0xed8cb4, + 0xed8cb5, + 0xed8cb6, + 0xed8cb7, + 0xed8cb8, + 0xed8cb9, + 0xed8cba, + 0xed8cbb, + 0xed8cbc, + 0xed8cbd, + 0xed8cbe, + 0xed8cbf, + 0xed8d80, + 0xed8d81, + 0xed8d82, + 0xed8d83, + 0xed8d84, + 0xed8d85, + 0xed8d86, + 0xed8d87, + 0xed8d88, + 0xed8d89, + 0xed8d8a, + 0xed8d8b, + 0xed8d8c, + 0xed8d8d, + 0xed8d8e, + 0xed8d8f, + 0xed8d90, + 0xed8d91, + 0xed8d92, + 0xed8d93, + 0xed8d94, + 0xed8d95, + 0xed8d96, + 0xed8d97, + 0xed8d98, + 0xed8d99, + 0xed8d9a, + 0xed8d9b, + 0xed8d9c, + 0xed8d9d, + 0xed8d9e, + 0xed8d9f, + 0xed8da0, + 0xed8da1, + 0xed8da2, + 0xed8da3, + 0xed8da4, + 0xed8da5, + 0xed8da6, + 0xed8da7, + 0xed8da8, + 0xed8da9, + 0xed8daa, + 0xed8dab, + 0xed8dac, + 0xed8dad, + 0xed8dae, + 0xed8daf, + 0xed8db0, + 0xed8db1, + 0xed8db2, + 0xed8db3, + 0xed8db4, + 0xed8db5, + 0xed8db6, + 0xed8db7, + 0xed8db8, + 0xed8db9, + 0xed8dba, + 0xed8dbb, + 0xed8dbc, + 0xed8dbd, + 0xed8dbe, + 0xed8dbf, + 0xed8e80, + 0xed8e81, + 0xed8e82, + 0xed8e83, + 0xed8e84, + 0xed8e85, + 0xed8e86, + 0xed8e87, + 0xed8e88, + 0xed8e89, + 0xed8e8a, + 0xed8e8b, + 0xed8e8c, + 0xed8e8d, + 0xed8e8e, + 0xed8e8f, + 0xed8e90, + 0xed8e91, + 0xed8e92, + 0xed8e93, + 0xed8e94, + 0xed8e95, + 0xed8e96, + 0xed8e97, + 0xed8e98, + 0xed8e99, + 0xed8e9a, + 0xed8e9b, + 0xed8e9c, + 0xed8e9d, + 0xed8e9e, + 0xed8e9f, + 0xed8ea0, + 0xed8ea1, + 0xed8ea2, + 0xed8ea3, + 0xed8ea4, + 0xed8ea5, + 0xed8ea6, + 0xed8ea7, + 0xed8ea8, + 0xed8ea9, + 0xed8eaa, + 0xed8eab, + 0xed8eac, + 0xed8ead, + 0xed8eae, + 0xed8eaf, + 0xed8eb0, + 0xed8eb1, + 0xed8eb2, + 0xed8eb3, + 0xed8eb4, + 0xed8eb5, + 0xed8eb6, + 0xed8eb7, + 0xed8eb8, + 0xed8eb9, + 0xed8eba, + 0xed8ebb, + 0xed8ebc, + 0xed8ebd, + 0xed8ebe, + 0xed8ebf, + 0xed8f80, + 0xed8f81, + 0xed8f82, + 0xed8f83, + 0xed8f84, + 0xed8f85, + 0xed8f86, + 0xed8f87, + 0xed8f88, + 0xed8f89, + 0xed8f8a, + 0xed8f8b, + 0xed8f8c, + 0xed8f8d, + 0xed8f8e, + 0xed8f8f, + 0xed8f90, + 0xed8f91, + 0xed8f92, + 0xed8f93, + 0xed8f94, + 0xed8f95, + 0xed8f96, + 0xed8f97, + 0xed8f98, + 0xed8f99, + 0xed8f9a, + 0xed8f9b, + 0xed8f9c, + 0xed8f9d, + 0xed8f9e, + 0xed8f9f, + 0xed8fa0, + 0xed8fa1, + 0xed8fa2, + 0xed8fa3, + 0xed8fa4, + 0xed8fa5, + 0xed8fa6, + 0xed8fa7, + 0xed8fa8, + 0xed8fa9, + 0xed8faa, + 0xed8fab, + 0xed8fac, + 0xed8fad, + 0xed8fae, + 0xed8faf, + 0xed8fb0, + 0xed8fb1, + 0xed8fb2, + 0xed8fb3, + 0xed8fb4, + 0xed8fb5, + 0xed8fb6, + 0xed8fb7, + 0xed8fb8, + 0xed8fb9, + 0xed8fba, + 0xed8fbb, + 0xed8fbc, + 0xed8fbd, + 0xed8fbe, + 0xed8fbf, + 0xed9080, + 0xed9081, + 0xed9082, + 0xed9083, + 0xed9084, + 0xed9085, + 0xed9086, + 0xed9087, + 0xed9088, + 0xed9089, + 0xed908a, + 0xed908b, + 0xed908c, + 0xed908d, + 0xed908e, + 0xed908f, + 0xed9090, + 0xed9091, + 0xed9092, + 0xed9093, + 0xed9094, + 0xed9095, + 0xed9096, + 0xed9097, + 0xed9098, + 0xed9099, + 0xed909a, + 0xed909b, + 0xed909c, + 0xed909d, + 0xed909e, + 0xed909f, + 0xed90a0, + 0xed90a1, + 0xed90a2, + 0xed90a3, + 0xed90a4, + 0xed90a5, + 0xed90a6, + 0xed90a7, + 0xed90a8, + 0xed90a9, + 0xed90aa, + 0xed90ab, + 0xed90ac, + 0xed90ad, + 0xed90ae, + 0xed90af, + 0xed90b0, + 0xed90b1, + 0xed90b2, + 0xed90b3, + 0xed90b4, + 0xed90b5, + 0xed90b6, + 0xed90b7, + 0xed90b8, + 0xed90b9, + 0xed90ba, + 0xed90bb, + 0xed90bc, + 0xed90bd, + 0xed90be, + 0xed90bf, + 0xed9180, + 0xed9181, + 0xed9182, + 0xed9183, + 0xed9184, + 0xed9185, + 0xed9186, + 0xed9187, + 0xed9188, + 0xed9189, + 0xed918a, + 0xed918b, + 0xed918c, + 0xed918d, + 0xed918e, + 0xed918f, + 0xed9190, + 0xed9191, + 0xed9192, + 0xed9193, + 0xed9194, + 0xed9195, + 0xed9196, + 0xed9197, + 0xed9198, + 0xed9199, + 0xed919a, + 0xed919b, + 0xed919c, + 0xed919d, + 0xed919e, + 0xed919f, + 0xed91a0, + 0xed91a1, + 0xed91a2, + 0xed91a3, + 0xed91a4, + 0xed91a5, + 0xed91a6, + 0xed91a7, + 0xed91a8, + 0xed91a9, + 0xed91aa, + 0xed91ab, + 0xed91ac, + 0xed91ad, + 0xed91ae, + 0xed91af, + 0xed91b0, + 0xed91b1, + 0xed91b2, + 0xed91b3, + 0xed91b4, + 0xed91b5, + 0xed91b6, + 0xed91b7, + 0xed91b8, + 0xed91b9, + 0xed91ba, + 0xed91bb, + 0xed91bc, + 0xed91bd, + 0xed91be, + 0xed91bf, + 0xed9280, + 0xed9281, + 0xed9282, + 0xed9283, + 0xed9284, + 0xed9285, + 0xed9286, + 0xed9287, + 0xed9288, + 0xed9289, + 0xed928a, + 0xed928b, + 0xed928c, + 0xed928d, + 0xed928e, + 0xed928f, + 0xed9290, + 0xed9291, + 0xed9292, + 0xed9293, + 0xed9294, + 0xed9295, + 0xed9296, + 0xed9297, + 0xed9298, + 0xed9299, + 0xed929a, + 0xed929b, + 0xed929c, + 0xed929d, + 0xed929e, + 0xed929f, + 0xed92a0, + 0xed92a1, + 0xed92a2, + 0xed92a3, + 0xed92a4, + 0xed92a5, + 0xed92a6, + 0xed92a7, + 0xed92a8, + 0xed92a9, + 0xed92aa, + 0xed92ab, + 0xed92ac, + 0xed92ad, + 0xed92ae, + 0xed92af, + 0xed92b0, + 0xed92b1, + 0xed92b2, + 0xed92b3, + 0xed92b4, + 0xed92b5, + 0xed92b6, + 0xed92b7, + 0xed92b8, + 0xed92b9, + 0xed92ba, + 0xed92bb, + 0xed92bc, + 0xed92bd, + 0xed92be, + 0xed92bf, + 0xed9380, + 0xed9381, + 0xed9382, + 0xed9383, + 0xed9384, + 0xed9385, + 0xed9386, + 0xed9387, + 0xed9388, + 0xed9389, + 0xed938a, + 0xed938b, + 0xed938c, + 0xed938d, + 0xed938e, + 0xed938f, + 0xed9390, + 0xed9391, + 0xed9392, + 0xed9393, + 0xed9394, + 0xed9395, + 0xed9396, + 0xed9397, + 0xed9398, + 0xed9399, + 0xed939a, + 0xed939b, + 0xed939c, + 0xed939d, + 0xed939e, + 0xed939f, + 0xed93a0, + 0xed93a1, + 0xed93a2, + 0xed93a3, + 0xed93a4, + 0xed93a5, + 0xed93a6, + 0xed93a7, + 0xed93a8, + 0xed93a9, + 0xed93aa, + 0xed93ab, + 0xed93ac, + 0xed93ad, + 0xed93ae, + 0xed93af, + 0xed93b0, + 0xed93b1, + 0xed93b2, + 0xed93b3, + 0xed93b4, + 0xed93b5, + 0xed93b6, + 0xed93b7, + 0xed93b8, + 0xed93b9, + 0xed93ba, + 0xed93bb, + 0xed93bc, + 0xed93bd, + 0xed93be, + 0xed93bf, + 0xed9480, + 0xed9481, + 0xed9482, + 0xed9483, + 0xed9484, + 0xed9485, + 0xed9486, + 0xed9487, + 0xed9488, + 0xed9489, + 0xed948a, + 0xed948b, + 0xed948c, + 0xed948d, + 0xed948e, + 0xed948f, + 0xed9490, + 0xed9491, + 0xed9492, + 0xed9493, + 0xed9494, + 0xed9495, + 0xed9496, + 0xed9497, + 0xed9498, + 0xed9499, + 0xed949a, + 0xed949b, + 0xed949c, + 0xed949d, + 0xed949e, + 0xed949f, + 0xed94a0, + 0xed94a1, + 0xed94a2, + 0xed94a3, + 0xed94a4, + 0xed94a5, + 0xed94a6, + 0xed94a7, + 0xed94a8, + 0xed94a9, + 0xed94aa, + 0xed94ab, + 0xed94ac, + 0xed94ad, + 0xed94ae, + 0xed94af, + 0xed94b0, + 0xed94b1, + 0xed94b2, + 0xed94b3, + 0xed94b4, + 0xed94b5, + 0xed94b6, + 0xed94b7, + 0xed94b8, + 0xed94b9, + 0xed94ba, + 0xed94bb, + 0xed94bc, + 0xed94bd, + 0xed94be, + 0xed94bf, + 0xed9580, + 0xed9581, + 0xed9582, + 0xed9583, + 0xed9584, + 0xed9585, + 0xed9586, + 0xed9587, + 0xed9588, + 0xed9589, + 0xed958a, + 0xed958b, + 0xed958c, + 0xed958d, + 0xed958e, + 0xed958f, + 0xed9590, + 0xed9591, + 0xed9592, + 0xed9593, + 0xed9594, + 0xed9595, + 0xed9596, + 0xed9597, + 0xed9598, + 0xed9599, + 0xed959a, + 0xed959b, + 0xed959c, + 0xed959d, + 0xed959e, + 0xed959f, + 0xed95a0, + 0xed95a1, + 0xed95a2, + 0xed95a3, + 0xed95a4, + 0xed95a5, + 0xed95a6, + 0xed95a7, + 0xed95a8, + 0xed95a9, + 0xed95aa, + 0xed95ab, + 0xed95ac, + 0xed95ad, + 0xed95ae, + 0xed95af, + 0xed95b0, + 0xed95b1, + 0xed95b2, + 0xed95b3, + 0xed95b4, + 0xed95b5, + 0xed95b6, + 0xed95b7, + 0xed95b8, + 0xed95b9, + 0xed95ba, + 0xed95bb, + 0xed95bc, + 0xed95bd, + 0xed95be, + 0xed95bf, + 0xed9680, + 0xed9681, + 0xed9682, + 0xed9683, + 0xed9684, + 0xed9685, + 0xed9686, + 0xed9687, + 0xed9688, + 0xed9689, + 0xed968a, + 0xed968b, + 0xed968c, + 0xed968d, + 0xed968e, + 0xed968f, + 0xed9690, + 0xed9691, + 0xed9692, + 0xed9693, + 0xed9694, + 0xed9695, + 0xed9696, + 0xed9697, + 0xed9698, + 0xed9699, + 0xed969a, + 0xed969b, + 0xed969c, + 0xed969d, + 0xed969e, + 0xed969f, + 0xed96a0, + 0xed96a1, + 0xed96a2, + 0xed96a3, + 0xed96a4, + 0xed96a5, + 0xed96a6, + 0xed96a7, + 0xed96a8, + 0xed96a9, + 0xed96aa, + 0xed96ab, + 0xed96ac, + 0xed96ad, + 0xed96ae, + 0xed96af, + 0xed96b0, + 0xed96b1, + 0xed96b2, + 0xed96b3, + 0xed96b4, + 0xed96b5, + 0xed96b6, + 0xed96b7, + 0xed96b8, + 0xed96b9, + 0xed96ba, + 0xed96bb, + 0xed96bc, + 0xed96bd, + 0xed96be, + 0xed96bf, + 0xed9780, + 0xed9781, + 0xed9782, + 0xed9783, + 0xed9784, + 0xed9785, + 0xed9786, + 0xed9787, + 0xed9788, + 0xed9789, + 0xed978a, + 0xed978b, + 0xed978c, + 0xed978d, + 0xed978e, + 0xed978f, + 0xed9790, + 0xed9791, + 0xed9792, + 0xed9793, + 0xed9794, + 0xed9795, + 0xed9796, + 0xed9797, + 0xed9798, + 0xed9799, + 0xed979a, + 0xed979b, + 0xed979c, + 0xed979d, + 0xed979e, + 0xed979f, + 0xed97a0, + 0xed97a1, + 0xed97a2, + 0xed97a3, + 0xed97a4, + 0xed97a5, + 0xed97a6, + 0xed97a7, + 0xed97a8, + 0xed97a9, + 0xed97aa, + 0xed97ab, + 0xed97ac, + 0xed97ad, + 0xed97ae, + 0xed97af, + 0xed97b0, + 0xed97b1, + 0xed97b2, + 0xed97b3, + 0xed97b4, + 0xed97b5, + 0xed97b6, + 0xed97b7, + 0xed97b8, + 0xed97b9, + 0xed97ba, + 0xed97bb, + 0xed97bc, + 0xed97bd, + 0xed97be, + 0xed97bf, + 0xed9880, + 0xed9881, + 0xed9882, + 0xed9883, + 0xed9884, + 0xed9885, + 0xed9886, + 0xed9887, + 0xed9888, + 0xed9889, + 0xed988a, + 0xed988b, + 0xed988c, + 0xed988d, + 0xed988e, + 0xed988f, + 0xed9890, + 0xed9891, + 0xed9892, + 0xed9893, + 0xed9894, + 0xed9895, + 0xed9896, + 0xed9897, + 0xed9898, + 0xed9899, + 0xed989a, + 0xed989b, + 0xed989c, + 0xed989d, + 0xed989e, + 0xed989f, + 0xed98a0, + 0xed98a1, + 0xed98a2, + 0xed98a3, + 0xed98a4, + 0xed98a5, + 0xed98a6, + 0xed98a7, + 0xed98a8, + 0xed98a9, + 0xed98aa, + 0xed98ab, + 0xed98ac, + 0xed98ad, + 0xed98ae, + 0xed98af, + 0xed98b0, + 0xed98b1, + 0xed98b2, + 0xed98b3, + 0xed98b4, + 0xed98b5, + 0xed98b6, + 0xed98b7, + 0xed98b8, + 0xed98b9, + 0xed98ba, + 0xed98bb, + 0xed98bc, + 0xed98bd, + 0xed98be, + 0xed98bf, + 0xed9980, + 0xed9981, + 0xed9982, + 0xed9983, + 0xed9984, + 0xed9985, + 0xed9986, + 0xed9987, + 0xed9988, + 0xed9989, + 0xed998a, + 0xed998b, + 0xed998c, + 0xed998d, + 0xed998e, + 0xed998f, + 0xed9990, + 0xed9991, + 0xed9992, + 0xed9993, + 0xed9994, + 0xed9995, + 0xed9996, + 0xed9997, + 0xed9998, + 0xed9999, + 0xed999a, + 0xed999b, + 0xed999c, + 0xed999d, + 0xed999e, + 0xed999f, + 0xed99a0, + 0xed99a1, + 0xed99a2, + 0xed99a3, + 0xed99a4, + 0xed99a5, + 0xed99a6, + 0xed99a7, + 0xed99a8, + 0xed99a9, + 0xed99aa, + 0xed99ab, + 0xed99ac, + 0xed99ad, + 0xed99ae, + 0xed99af, + 0xed99b0, + 0xed99b1, + 0xed99b2, + 0xed99b3, + 0xed99b4, + 0xed99b5, + 0xed99b6, + 0xed99b7, + 0xed99b8, + 0xed99b9, + 0xed99ba, + 0xed99bb, + 0xed99bc, + 0xed99bd, + 0xed99be, + 0xed99bf, + 0xed9a80, + 0xed9a81, + 0xed9a82, + 0xed9a83, + 0xed9a84, + 0xed9a85, + 0xed9a86, + 0xed9a87, + 0xed9a88, + 0xed9a89, + 0xed9a8a, + 0xed9a8b, + 0xed9a8c, + 0xed9a8d, + 0xed9a8e, + 0xed9a8f, + 0xed9a90, + 0xed9a91, + 0xed9a92, + 0xed9a93, + 0xed9a94, + 0xed9a95, + 0xed9a96, + 0xed9a97, + 0xed9a98, + 0xed9a99, + 0xed9a9a, + 0xed9a9b, + 0xed9a9c, + 0xed9a9d, + 0xed9a9e, + 0xed9a9f, + 0xed9aa0, + 0xed9aa1, + 0xed9aa2, + 0xed9aa3, + 0xed9aa4, + 0xed9aa5, + 0xed9aa6, + 0xed9aa7, + 0xed9aa8, + 0xed9aa9, + 0xed9aaa, + 0xed9aab, + 0xed9aac, + 0xed9aad, + 0xed9aae, + 0xed9aaf, + 0xed9ab0, + 0xed9ab1, + 0xed9ab2, + 0xed9ab3, + 0xed9ab4, + 0xed9ab5, + 0xed9ab6, + 0xed9ab7, + 0xed9ab8, + 0xed9ab9, + 0xed9aba, + 0xed9abb, + 0xed9abc, + 0xed9abd, + 0xed9abe, + 0xed9abf, + 0xed9b80, + 0xed9b81, + 0xed9b82, + 0xed9b83, + 0xed9b84, + 0xed9b85, + 0xed9b86, + 0xed9b87, + 0xed9b88, + 0xed9b89, + 0xed9b8a, + 0xed9b8b, + 0xed9b8c, + 0xed9b8d, + 0xed9b8e, + 0xed9b8f, + 0xed9b90, + 0xed9b91, + 0xed9b92, + 0xed9b93, + 0xed9b94, + 0xed9b95, + 0xed9b96, + 0xed9b97, + 0xed9b98, + 0xed9b99, + 0xed9b9a, + 0xed9b9b, + 0xed9b9c, + 0xed9b9d, + 0xed9b9e, + 0xed9b9f, + 0xed9ba0, + 0xed9ba1, + 0xed9ba2, + 0xed9ba3, + 0xed9ba4, + 0xed9ba5, + 0xed9ba6, + 0xed9ba7, + 0xed9ba8, + 0xed9ba9, + 0xed9baa, + 0xed9bab, + 0xed9bac, + 0xed9bad, + 0xed9bae, + 0xed9baf, + 0xed9bb0, + 0xed9bb1, + 0xed9bb2, + 0xed9bb3, + 0xed9bb4, + 0xed9bb5, + 0xed9bb6, + 0xed9bb7, + 0xed9bb8, + 0xed9bb9, + 0xed9bba, + 0xed9bbb, + 0xed9bbc, + 0xed9bbd, + 0xed9bbe, + 0xed9bbf, + 0xed9c80, + 0xed9c81, + 0xed9c82, + 0xed9c83, + 0xed9c84, + 0xed9c85, + 0xed9c86, + 0xed9c87, + 0xed9c88, + 0xed9c89, + 0xed9c8a, + 0xed9c8b, + 0xed9c8c, + 0xed9c8d, + 0xed9c8e, + 0xed9c8f, + 0xed9c90, + 0xed9c91, + 0xed9c92, + 0xed9c93, + 0xed9c94, + 0xed9c95, + 0xed9c96, + 0xed9c97, + 0xed9c98, + 0xed9c99, + 0xed9c9a, + 0xed9c9b, + 0xed9c9c, + 0xed9c9d, + 0xed9c9e, + 0xed9c9f, + 0xed9ca0, + 0xed9ca1, + 0xed9ca2, + 0xed9ca3, + 0xed9ca4, + 0xed9ca5, + 0xed9ca6, + 0xed9ca7, + 0xed9ca8, + 0xed9ca9, + 0xed9caa, + 0xed9cab, + 0xed9cac, + 0xed9cad, + 0xed9cae, + 0xed9caf, + 0xed9cb0, + 0xed9cb1, + 0xed9cb2, + 0xed9cb3, + 0xed9cb4, + 0xed9cb5, + 0xed9cb6, + 0xed9cb7, + 0xed9cb8, + 0xed9cb9, + 0xed9cba, + 0xed9cbb, + 0xed9cbc, + 0xed9cbd, + 0xed9cbe, + 0xed9cbf, + 0xed9d80, + 0xed9d81, + 0xed9d82, + 0xed9d83, + 0xed9d84, + 0xed9d85, + 0xed9d86, + 0xed9d87, + 0xed9d88, + 0xed9d89, + 0xed9d8a, + 0xed9d8b, + 0xed9d8c, + 0xed9d8d, + 0xed9d8e, + 0xed9d8f, + 0xed9d90, + 0xed9d91, + 0xed9d92, + 0xed9d93, + 0xed9d94, + 0xed9d95, + 0xed9d96, + 0xed9d97, + 0xed9d98, + 0xed9d99, + 0xed9d9a, + 0xed9d9b, + 0xed9d9c, + 0xed9d9d, + 0xed9d9e, + 0xed9d9f, + 0xed9da0, + 0xed9da1, + 0xed9da2, + 0xed9da3, + 0xed9da4, + 0xed9da5, + 0xed9da6, + 0xed9da7, + 0xed9da8, + 0xed9da9, + 0xed9daa, + 0xed9dab, + 0xed9dac, + 0xed9dad, + 0xed9dae, + 0xed9daf, + 0xed9db0, + 0xed9db1, + 0xed9db2, + 0xed9db3, + 0xed9db4, + 0xed9db5, + 0xed9db6, + 0xed9db7, + 0xed9db8, + 0xed9db9, + 0xed9dba, + 0xed9dbb, + 0xed9dbc, + 0xed9dbd, + 0xed9dbe, + 0xed9dbf, + 0xed9e80, + 0xed9e81, + 0xed9e82, + 0xed9e83, + 0xed9e84, + 0xed9e85, + 0xed9e86, + 0xed9e87, + 0xed9e88, + 0xed9e89, + 0xed9e8a, + 0xed9e8b, + 0xed9e8c, + 0xed9e8d, + 0xed9e8e, + 0xed9e8f, + 0xed9e90, + 0xed9e91, + 0xed9e92, + 0xed9e93, + 0xed9e94, + 0xed9e95, + 0xed9e96, + 0xed9e97, + 0xed9e98, + 0xed9e99, + 0xed9e9a, + 0xed9e9b, + 0xed9e9c, + 0xed9e9d, + 0xed9e9e, + 0xed9e9f, + 0xed9ea0, + 0xed9ea1, + 0xed9ea2, + 0xed9ea3, + 0xed9ea4, + 0xed9ea5, + 0xed9ea6, + 0xed9ea7, + 0xed9ea8, + 0xed9ea9, + 0xed9eaa, + 0xed9eab, + 0xed9eac, + 0xed9ead, + 0xed9eae, + 0xed9eaf, + 0xed9eb0, + 0xed9eb1, + 0xed9eb2, + 0xed9eb3, + 0xed9eb4, + 0xed9eb5, + 0xed9eb6, + 0xed9eb7, + 0xed9eb8, + 0xed9eb9, + 0xed9eba, + 0xed9ebb, + 0xed9ebc, + 0xed9ebd, + 0xed9ebe, + 0xed9ebf, + 0xed9f80, + 0xed9f81, + 0xed9f82, + 0xed9f83, + 0xed9f84, + 0xed9f85, + 0xed9f86, + 0xed9f87, + 0xed9f88, + 0xed9f89, + 0xed9f8a, + 0xed9f8b, + 0xed9f8c, + 0xed9f8d, + 0xed9f8e, + 0xed9f8f, + 0xed9f90, + 0xed9f91, + 0xed9f92, + 0xed9f93, + 0xed9f94, + 0xed9f95, + 0xed9f96, + 0xed9f97, + 0xed9f98, + 0xed9f99, + 0xed9f9a, + 0xed9f9b, + 0xed9f9c, + 0xed9f9d, + 0xed9f9e, + 0xed9f9f, + 0xed9fa0, + 0xed9fa1, + 0xed9fa2, + 0xed9fa3, + 0xed9fa4, + 0xed9fa5, + 0xed9fa6, + 0xed9fa7, + 0xed9fa8, + 0xed9fa9, + 0xed9faa, + 0xed9fab, + 0xed9fac, + 0xed9fad, + 0xed9fae, + 0xed9faf, + 0xed9fb0, + 0xed9fb1, + 0xed9fb2, + 0xed9fb3, + 0xed9fb4, + 0xed9fb5, + 0xed9fb6, + 0xed9fb7, + 0xed9fb8, + 0xed9fb9, + 0xed9fba, + 0xed9fbb, + 0xed9fbc, + 0xed9fbd, + 0xed9fbe, + 0xed9fbf, + 0xee8080, + 0xee8081, + 0xee8082, + 0xee8083, + 0xee8084, + 0xee8085, + 0xee8086, + 0xee8087, + 0xee8088, + 0xee8089, + 0xee808a, + 0xee808b, + 0xee808c, + 0xee808d, + 0xee808e, + 0xee808f, + 0xee8090, + 0xee8091, + 0xee8092, + 0xee8093, + 0xee8094, + 0xee8095, + 0xee8096, + 0xee8097, + 0xee8098, + 0xee8099, + 0xee809a, + 0xee809b, + 0xee809c, + 0xee809d, + 0xee809e, + 0xee809f, + 0xee80a0, + 0xee80a1, + 0xee80a2, + 0xee80a3, + 0xee80a4, + 0xee80a5, + 0xee80a6, + 0xee80a7, + 0xee80a8, + 0xee80a9, + 0xee80aa, + 0xee80ab, + 0xee80ac, + 0xee80ad, + 0xee80ae, + 0xee80af, + 0xee80b0, + 0xee80b1, + 0xee80b2, + 0xee80b3, + 0xee80b4, + 0xee80b5, + 0xee80b6, + 0xee80b7, + 0xee80b8, + 0xee80b9, + 0xee80ba, + 0xee80bb, + 0xee80bc, + 0xee80bd, + 0xee80be, + 0xee80bf, + 0xee8180, + 0xee8181, + 0xee8182, + 0xee8183, + 0xee8184, + 0xee8185, + 0xee8186, + 0xee8187, + 0xee8188, + 0xee8189, + 0xee818a, + 0xee818b, + 0xee818c, + 0xee818d, + 0xee818e, + 0xee818f, + 0xee8190, + 0xee8191, + 0xee8192, + 0xee8193, + 0xee8194, + 0xee8195, + 0xee8196, + 0xee8197, + 0xee8198, + 0xee8199, + 0xee819a, + 0xee819b, + 0xee819c, + 0xee819d, + 0xee819e, + 0xee819f, + 0xee81a0, + 0xee81a1, + 0xee81a2, + 0xee81a3, + 0xee81a4, + 0xee81a5, + 0xee81a6, + 0xee81a7, + 0xee81a8, + 0xee81a9, + 0xee81aa, + 0xee81ab, + 0xee81ac, + 0xee81ad, + 0xee81ae, + 0xee81af, + 0xee81b0, + 0xee81b1, + 0xee81b2, + 0xee81b3, + 0xee81b4, + 0xee81b5, + 0xee81b6, + 0xee81b7, + 0xee81b8, + 0xee81b9, + 0xee81ba, + 0xee81bb, + 0xee81bc, + 0xee81bd, + 0xee81be, + 0xee81bf, + 0xee8280, + 0xee8281, + 0xee8282, + 0xee8283, + 0xee8284, + 0xee8285, + 0xee8286, + 0xee8287, + 0xee8288, + 0xee8289, + 0xee828a, + 0xee828b, + 0xee828c, + 0xee828d, + 0xee828e, + 0xee828f, + 0xee8290, + 0xee8291, + 0xee8292, + 0xee8293, + 0xee8294, + 0xee8295, + 0xee8296, + 0xee8297, + 0xee8298, + 0xee8299, + 0xee829a, + 0xee829b, + 0xee829c, + 0xee829d, + 0xee829e, + 0xee829f, + 0xee82a0, + 0xee82a1, + 0xee82a2, + 0xee82a3, + 0xee82a4, + 0xee82a5, + 0xee82a6, + 0xee82a7, + 0xee82a8, + 0xee82a9, + 0xee82aa, + 0xee82ab, + 0xee82ac, + 0xee82ad, + 0xee82ae, + 0xee82af, + 0xee82b0, + 0xee82b1, + 0xee82b2, + 0xee82b3, + 0xee82b4, + 0xee82b5, + 0xee82b6, + 0xee82b7, + 0xee82b8, + 0xee82b9, + 0xee82ba, + 0xee82bb, + 0xee82bc, + 0xee82bd, + 0xee82be, + 0xee82bf, + 0xee8380, + 0xee8381, + 0xee8382, + 0xee8383, + 0xee8384, + 0xee8385, + 0xee8386, + 0xee8387, + 0xee8388, + 0xee8389, + 0xee838a, + 0xee838b, + 0xee838c, + 0xee838d, + 0xee838e, + 0xee838f, + 0xee8390, + 0xee8391, + 0xee8392, + 0xee8393, + 0xee8394, + 0xee8395, + 0xee8396, + 0xee8397, + 0xee8398, + 0xee8399, + 0xee839a, + 0xee839b, + 0xee839c, + 0xee839d, + 0xee839e, + 0xee839f, + 0xee83a0, + 0xee83a1, + 0xee83a2, + 0xee83a3, + 0xee83a4, + 0xee83a5, + 0xee83a6, + 0xee83a7, + 0xee83a8, + 0xee83a9, + 0xee83aa, + 0xee83ab, + 0xee83ac, + 0xee83ad, + 0xee83ae, + 0xee83af, + 0xee83b0, + 0xee83b1, + 0xee83b2, + 0xee83b3, + 0xee83b4, + 0xee83b5, + 0xee83b6, + 0xee83b7, + 0xee83b8, + 0xee83b9, + 0xee83ba, + 0xee83bb, + 0xee83bc, + 0xee83bd, + 0xee83be, + 0xee83bf, + 0xee8480, + 0xee8481, + 0xee8482, + 0xee8483, + 0xee8484, + 0xee8485, + 0xee8486, + 0xee8487, + 0xee8488, + 0xee8489, + 0xee848a, + 0xee848b, + 0xee848c, + 0xee848d, + 0xee848e, + 0xee848f, + 0xee8490, + 0xee8491, + 0xee8492, + 0xee8493, + 0xee8494, + 0xee8495, + 0xee8496, + 0xee8497, + 0xee8498, + 0xee8499, + 0xee849a, + 0xee849b, + 0xee849c, + 0xee849d, + 0xee849e, + 0xee849f, + 0xee84a0, + 0xee84a1, + 0xee84a2, + 0xee84a3, + 0xee84a4, + 0xee84a5, + 0xee84a6, + 0xee84a7, + 0xee84a8, + 0xee84a9, + 0xee84aa, + 0xee84ab, + 0xee84ac, + 0xee84ad, + 0xee84ae, + 0xee84af, + 0xee84b0, + 0xee84b1, + 0xee84b2, + 0xee84b3, + 0xee84b4, + 0xee84b5, + 0xee84b6, + 0xee84b7, + 0xee84b8, + 0xee84b9, + 0xee84ba, + 0xee84bb, + 0xee84bc, + 0xee84bd, + 0xee84be, + 0xee84bf, + 0xee8580, + 0xee8581, + 0xee8582, + 0xee8583, + 0xee8584, + 0xee8585, + 0xee8586, + 0xee8587, + 0xee8588, + 0xee8589, + 0xee858a, + 0xee858b, + 0xee858c, + 0xee858d, + 0xee858e, + 0xee858f, + 0xee8590, + 0xee8591, + 0xee8592, + 0xee8593, + 0xee8594, + 0xee8595, + 0xee8596, + 0xee8597, + 0xee8598, + 0xee8599, + 0xee859a, + 0xee859b, + 0xee859c, + 0xee859d, + 0xee859e, + 0xee859f, + 0xee85a0, + 0xee85a1, + 0xee85a2, + 0xee85a3, + 0xee85a4, + 0xee85a5, + 0xee85a6, + 0xee85a7, + 0xee85a8, + 0xee85a9, + 0xee85aa, + 0xee85ab, + 0xee85ac, + 0xee85ad, + 0xee85ae, + 0xee85af, + 0xee85b0, + 0xee85b1, + 0xee85b2, + 0xee85b3, + 0xee85b4, + 0xee85b5, + 0xee85b6, + 0xee85b7, + 0xee85b8, + 0xee85b9, + 0xee85ba, + 0xee85bb, + 0xee85bc, + 0xee85bd, + 0xee85be, + 0xee85bf, + 0xee8680, + 0xee8681, + 0xee8682, + 0xee8683, + 0xee8684, + 0xee8685, + 0xee8686, + 0xee8687, + 0xee8688, + 0xee8689, + 0xee868a, + 0xee868b, + 0xee868c, + 0xee868d, + 0xee868e, + 0xee868f, + 0xee8690, + 0xee8691, + 0xee8692, + 0xee8693, + 0xee8694, + 0xee8695, + 0xee8696, + 0xee8697, + 0xee8698, + 0xee8699, + 0xee869a, + 0xee869b, + 0xee869c, + 0xee869d, + 0xee869e, + 0xee869f, + 0xee86a0, + 0xee86a1, + 0xee86a2, + 0xee86a3, + 0xee86a4, + 0xee86a5, + 0xee86a6, + 0xee86a7, + 0xee86a8, + 0xee86a9, + 0xee86aa, + 0xee86ab, + 0xee86ac, + 0xee86ad, + 0xee86ae, + 0xee86af, + 0xee86b0, + 0xee86b1, + 0xee86b2, + 0xee86b3, + 0xee86b4, + 0xee86b5, + 0xee86b6, + 0xee86b7, + 0xee86b8, + 0xee86b9, + 0xee86ba, + 0xee86bb, + 0xee86bc, + 0xee86bd, + 0xee86be, + 0xee86bf, + 0xee8780, + 0xee8781, + 0xee8782, + 0xee8783, + 0xee8784, + 0xee8785, + 0xee8786, + 0xee8787, + 0xee8788, + 0xee8789, + 0xee878a, + 0xee878b, + 0xee878c, + 0xee878d, + 0xee878e, + 0xee878f, + 0xee8790, + 0xee8791, + 0xee8792, + 0xee8793, + 0xee8794, + 0xee8795, + 0xee8796, + 0xee8797, + 0xee8798, + 0xee8799, + 0xee879a, + 0xee879b, + 0xee879c, + 0xee879d, + 0xee879e, + 0xee879f, + 0xee87a0, + 0xee87a1, + 0xee87a2, + 0xee87a3, + 0xee87a4, + 0xee87a5, + 0xee87a6, + 0xee87a7, + 0xee87a8, + 0xee87a9, + 0xee87aa, + 0xee87ab, + 0xee87ac, + 0xee87ad, + 0xee87ae, + 0xee87af, + 0xee87b0, + 0xee87b1, + 0xee87b2, + 0xee87b3, + 0xee87b4, + 0xee87b5, + 0xee87b6, + 0xee87b7, + 0xee87b8, + 0xee87b9, + 0xee87ba, + 0xee87bb, + 0xee87bc, + 0xee87bd, + 0xee87be, + 0xee87bf, + 0xee8880, + 0xee8881, + 0xee8882, + 0xee8883, + 0xee8884, + 0xee8885, + 0xee8886, + 0xee8887, + 0xee8888, + 0xee8889, + 0xee888a, + 0xee888b, + 0xee888c, + 0xee888d, + 0xee888e, + 0xee888f, + 0xee8890, + 0xee8891, + 0xee8892, + 0xee8893, + 0xee8894, + 0xee8895, + 0xee8896, + 0xee8897, + 0xee8898, + 0xee8899, + 0xee889a, + 0xee889b, + 0xee889c, + 0xee889d, + 0xee889e, + 0xee889f, + 0xee88a0, + 0xee88a1, + 0xee88a2, + 0xee88a3, + 0xee88a4, + 0xee88a5, + 0xee88a6, + 0xee88a7, + 0xee88a8, + 0xee88a9, + 0xee88aa, + 0xee88ab, + 0xee88ac, + 0xee88ad, + 0xee88ae, + 0xee88af, + 0xee88b0, + 0xee88b1, + 0xee88b2, + 0xee88b3, + 0xee88b4, + 0xee88b5, + 0xee88b6, + 0xee88b7, + 0xee88b8, + 0xee88b9, + 0xee88ba, + 0xee88bb, + 0xee88bc, + 0xee88bd, + 0xee88be, + 0xee88bf, + 0xee8980, + 0xee8981, + 0xee8982, + 0xee8983, + 0xee8984, + 0xee8985, + 0xee8986, + 0xee8987, + 0xee8988, + 0xee8989, + 0xee898a, + 0xee898b, + 0xee898c, + 0xee898d, + 0xee898e, + 0xee898f, + 0xee8990, + 0xee8991, + 0xee8992, + 0xee8993, + 0xee8994, + 0xee8995, + 0xee8996, + 0xee8997, + 0xee8998, + 0xee8999, + 0xee899a, + 0xee899b, + 0xee899c, + 0xee899d, + 0xee899e, + 0xee899f, + 0xee89a0, + 0xee89a1, + 0xee89a2, + 0xee89a3, + 0xee89a4, + 0xee89a5, + 0xee89a6, + 0xee89a7, + 0xee89a8, + 0xee89a9, + 0xee89aa, + 0xee89ab, + 0xee89ac, + 0xee89ad, + 0xee89ae, + 0xee89af, + 0xee89b0, + 0xee89b1, + 0xee89b2, + 0xee89b3, + 0xee89b4, + 0xee89b5, + 0xee89b6, + 0xee89b7, + 0xee89b8, + 0xee89b9, + 0xee89ba, + 0xee89bb, + 0xee89bc, + 0xee89bd, + 0xee89be, + 0xee89bf, + 0xee8a80, + 0xee8a81, + 0xee8a82, + 0xee8a83, + 0xee8a84, + 0xee8a85, + 0xee8a86, + 0xee8a87, + 0xee8a88, + 0xee8a89, + 0xee8a8a, + 0xee8a8b, + 0xee8a8c, + 0xee8a8d, + 0xee8a8e, + 0xee8a8f, + 0xee8a90, + 0xee8a91, + 0xee8a92, + 0xee8a93, + 0xee8a94, + 0xee8a95, + 0xee8a96, + 0xee8a97, + 0xee8a98, + 0xee8a99, + 0xee8a9a, + 0xee8a9b, + 0xee8a9c, + 0xee8a9d, + 0xee8a9e, + 0xee8a9f, + 0xee8aa0, + 0xee8aa1, + 0xee8aa2, + 0xee8aa3, + 0xee8aa4, + 0xee8aa5, + 0xee8aa6, + 0xee8aa7, + 0xee8aa8, + 0xee8aa9, + 0xee8aaa, + 0xee8aab, + 0xee8aac, + 0xee8aad, + 0xee8aae, + 0xee8aaf, + 0xee8ab0, + 0xee8ab1, + 0xee8ab2, + 0xee8ab3, + 0xee8ab4, + 0xee8ab5, + 0xee8ab6, + 0xee8ab7, + 0xee8ab8, + 0xee8ab9, + 0xee8aba, + 0xee8abb, + 0xee8abc, + 0xee8abd, + 0xee8abe, + 0xee8abf, + 0xee8b80, + 0xee8b81, + 0xee8b82, + 0xee8b83, + 0xee8b84, + 0xee8b85, + 0xee8b86, + 0xee8b87, + 0xee8b88, + 0xee8b89, + 0xee8b8a, + 0xee8b8b, + 0xee8b8c, + 0xee8b8d, + 0xee8b8e, + 0xee8b8f, + 0xee8b90, + 0xee8b91, + 0xee8b92, + 0xee8b93, + 0xee8b94, + 0xee8b95, + 0xee8b96, + 0xee8b97, + 0xee8b98, + 0xee8b99, + 0xee8b9a, + 0xee8b9b, + 0xee8b9c, + 0xee8b9d, + 0xee8b9e, + 0xee8b9f, + 0xee8ba0, + 0xee8ba1, + 0xee8ba2, + 0xee8ba3, + 0xee8ba4, + 0xee8ba5, + 0xee8ba6, + 0xee8ba7, + 0xee8ba8, + 0xee8ba9, + 0xee8baa, + 0xee8bab, + 0xee8bac, + 0xee8bad, + 0xee8bae, + 0xee8baf, + 0xee8bb0, + 0xee8bb1, + 0xee8bb2, + 0xee8bb3, + 0xee8bb4, + 0xee8bb5, + 0xee8bb6, + 0xee8bb7, + 0xee8bb8, + 0xee8bb9, + 0xee8bba, + 0xee8bbb, + 0xee8bbc, + 0xee8bbd, + 0xee8bbe, + 0xee8bbf, + 0xee8c80, + 0xee8c81, + 0xee8c82, + 0xee8c83, + 0xee8c84, + 0xee8c85, + 0xee8c86, + 0xee8c87, + 0xee8c88, + 0xee8c89, + 0xee8c8a, + 0xee8c8b, + 0xee8c8c, + 0xee8c8d, + 0xee8c8e, + 0xee8c8f, + 0xee8c90, + 0xee8c91, + 0xee8c92, + 0xee8c93, + 0xee8c94, + 0xee8c95, + 0xee8c96, + 0xee8c97, + 0xee8c98, + 0xee8c99, + 0xee8c9a, + 0xee8c9b, + 0xee8c9c, + 0xee8c9d, + 0xee8c9e, + 0xee8c9f, + 0xee8ca0, + 0xee8ca1, + 0xee8ca2, + 0xee8ca3, + 0xee8ca4, + 0xee8ca5, + 0xee8ca6, + 0xee8ca7, + 0xee8ca8, + 0xee8ca9, + 0xee8caa, + 0xee8cab, + 0xee8cac, + 0xee8cad, + 0xee8cae, + 0xee8caf, + 0xee8cb0, + 0xee8cb1, + 0xee8cb2, + 0xee8cb3, + 0xee8cb4, + 0xee8cb5, + 0xee8cb6, + 0xee8cb7, + 0xee8cb8, + 0xee8cb9, + 0xee8cba, + 0xee8cbb, + 0xee8cbc, + 0xee8cbd, + 0xee8cbe, + 0xee8cbf, + 0xee8d80, + 0xee8d81, + 0xee8d82, + 0xee8d83, + 0xee8d84, + 0xee8d85, + 0xee8d86, + 0xee8d87, + 0xee8d88, + 0xee8d89, + 0xee8d8a, + 0xee8d8b, + 0xee8d8c, + 0xee8d8d, + 0xee8d8e, + 0xee8d8f, + 0xee8d90, + 0xee8d91, + 0xee8d92, + 0xee8d93, + 0xee8d94, + 0xee8d95, + 0xee8d96, + 0xee8d97, + 0xee8d98, + 0xee8d99, + 0xee8d9a, + 0xee8d9b, + 0xee8d9c, + 0xee8d9d, + 0xee8d9e, + 0xee8d9f, + 0xee8da0, + 0xee8da1, + 0xee8da2, + 0xee8da3, + 0xee8da4, + 0xee8da5, + 0xee8da6, + 0xee8da7, + 0xee8da8, + 0xee8da9, + 0xee8daa, + 0xee8dab, + 0xee8dac, + 0xee8dad, + 0xee8dae, + 0xee8daf, + 0xee8db0, + 0xee8db1, + 0xee8db2, + 0xee8db3, + 0xee8db4, + 0xee8db5, + 0xee8db6, + 0xee8db7, + 0xee8db8, + 0xee8db9, + 0xee8dba, + 0xee8dbb, + 0xee8dbc, + 0xee8dbd, + 0xee8dbe, + 0xee8dbf, + 0xee8e80, + 0xee8e81, + 0xee8e82, + 0xee8e83, + 0xee8e84, + 0xee8e85, + 0xee8e86, + 0xee8e87, + 0xee8e88, + 0xee8e89, + 0xee8e8a, + 0xee8e8b, + 0xee8e8c, + 0xee8e8d, + 0xee8e8e, + 0xee8e8f, + 0xee8e90, + 0xee8e91, + 0xee8e92, + 0xee8e93, + 0xee8e94, + 0xee8e95, + 0xee8e96, + 0xee8e97, + 0xee8e98, + 0xee8e99, + 0xee8e9a, + 0xee8e9b, + 0xee8e9c, + 0xee8e9d, + 0xee8e9e, + 0xee8e9f, + 0xee8ea0, + 0xee8ea1, + 0xee8ea2, + 0xee8ea3, + 0xee8ea4, + 0xee8ea5, + 0xee8ea6, + 0xee8ea7, + 0xee8ea8, + 0xee8ea9, + 0xee8eaa, + 0xee8eab, + 0xee8eac, + 0xee8ead, + 0xee8eae, + 0xee8eaf, + 0xee8eb0, + 0xee8eb1, + 0xee8eb2, + 0xee8eb3, + 0xee8eb4, + 0xee8eb5, + 0xee8eb6, + 0xee8eb7, + 0xee8eb8, + 0xee8eb9, + 0xee8eba, + 0xee8ebb, + 0xee8ebc, + 0xee8ebd, + 0xee8ebe, + 0xee8ebf, + 0xee8f80, + 0xee8f81, + 0xee8f82, + 0xee8f83, + 0xee8f84, + 0xee8f85, + 0xee8f86, + 0xee8f87, + 0xee8f88, + 0xee8f89, + 0xee8f8a, + 0xee8f8b, + 0xee8f8c, + 0xee8f8d, + 0xee8f8e, + 0xee8f8f, + 0xee8f90, + 0xee8f91, + 0xee8f92, + 0xee8f93, + 0xee8f94, + 0xee8f95, + 0xee8f96, + 0xee8f97, + 0xee8f98, + 0xee8f99, + 0xee8f9a, + 0xee8f9b, + 0xee8f9c, + 0xee8f9d, + 0xee8f9e, + 0xee8f9f, + 0xee8fa0, + 0xee8fa1, + 0xee8fa2, + 0xee8fa3, + 0xee8fa4, + 0xee8fa5, + 0xee8fa6, + 0xee8fa7, + 0xee8fa8, + 0xee8fa9, + 0xee8faa, + 0xee8fab, + 0xee8fac, + 0xee8fad, + 0xee8fae, + 0xee8faf, + 0xee8fb0, + 0xee8fb1, + 0xee8fb2, + 0xee8fb3, + 0xee8fb4, + 0xee8fb5, + 0xee8fb6, + 0xee8fb7, + 0xee8fb8, + 0xee8fb9, + 0xee8fba, + 0xee8fbb, + 0xee8fbc, + 0xee8fbd, + 0xee8fbe, + 0xee8fbf, + 0xee9080, + 0xee9081, + 0xee9082, + 0xee9083, + 0xee9084, + 0xee9085, + 0xee9086, + 0xee9087, + 0xee9088, + 0xee9089, + 0xee908a, + 0xee908b, + 0xee908c, + 0xee908d, + 0xee908e, + 0xee908f, + 0xee9090, + 0xee9091, + 0xee9092, + 0xee9093, + 0xee9094, + 0xee9095, + 0xee9096, + 0xee9097, + 0xee9098, + 0xee9099, + 0xee909a, + 0xee909b, + 0xee909c, + 0xee909d, + 0xee909e, + 0xee909f, + 0xee90a0, + 0xee90a1, + 0xee90a2, + 0xee90a3, + 0xee90a4, + 0xee90a5, + 0xee90a6, + 0xee90a7, + 0xee90a8, + 0xee90a9, + 0xee90aa, + 0xee90ab, + 0xee90ac, + 0xee90ad, + 0xee90ae, + 0xee90af, + 0xee90b0, + 0xee90b1, + 0xee90b2, + 0xee90b3, + 0xee90b4, + 0xee90b5, + 0xee90b6, + 0xee90b7, + 0xee90b8, + 0xee90b9, + 0xee90ba, + 0xee90bb, + 0xee90bc, + 0xee90bd, + 0xee90be, + 0xee90bf, + 0xee9180, + 0xee9181, + 0xee9182, + 0xee9183, + 0xee9184, + 0xee9185, + 0xee9186, + 0xee9187, + 0xee9188, + 0xee9189, + 0xee918a, + 0xee918b, + 0xee918c, + 0xee918d, + 0xee918e, + 0xee918f, + 0xee9190, + 0xee9191, + 0xee9192, + 0xee9193, + 0xee9194, + 0xee9195, + 0xee9196, + 0xee9197, + 0xee9198, + 0xee9199, + 0xee919a, + 0xee919b, + 0xee919c, + 0xee919d, + 0xee919e, + 0xee919f, + 0xee91a0, + 0xee91a1, + 0xee91a2, + 0xee91a3, + 0xee91a4, + 0xee91a5, + 0xee91a6, + 0xee91a7, + 0xee91a8, + 0xee91a9, + 0xee91aa, + 0xee91ab, + 0xee91ac, + 0xee91ad, + 0xee91ae, + 0xee91af, + 0xee91b0, + 0xee91b1, + 0xee91b2, + 0xee91b3, + 0xee91b4, + 0xee91b5, + 0xee91b6, + 0xee91b7, + 0xee91b8, + 0xee91b9, + 0xee91ba, + 0xee91bb, + 0xee91bc, + 0xee91bd, + 0xee91be, + 0xee91bf, + 0xee9280, + 0xee9281, + 0xee9282, + 0xee9283, + 0xee9284, + 0xee9285, + 0xee9286, + 0xee9287, + 0xee9288, + 0xee9289, + 0xee928a, + 0xee928b, + 0xee928c, + 0xee928d, + 0xee928e, + 0xee928f, + 0xee9290, + 0xee9291, + 0xee9292, + 0xee9293, + 0xee9294, + 0xee9295, + 0xee9296, + 0xee9297, + 0xee9298, + 0xee9299, + 0xee929a, + 0xee929b, + 0xee929c, + 0xee929d, + 0xee929e, + 0xee929f, + 0xee92a0, + 0xee92a1, + 0xee92a2, + 0xee92a3, + 0xee92a4, + 0xee92a5, + 0xee92a6, + 0xee92a7, + 0xee92a8, + 0xee92a9, + 0xee92aa, + 0xee92ab, + 0xee92ac, + 0xee92ad, + 0xee92ae, + 0xee92af, + 0xee92b0, + 0xee92b1, + 0xee92b2, + 0xee92b3, + 0xee92b4, + 0xee92b5, + 0xee92b6, + 0xee92b7, + 0xee92b8, + 0xee92b9, + 0xee92ba, + 0xee92bb, + 0xee92bc, + 0xee92bd, + 0xee92be, + 0xee92bf, + 0xee9380, + 0xee9381, + 0xee9382, + 0xee9383, + 0xee9384, + 0xee9385, + 0xee9386, + 0xee9387, + 0xee9388, + 0xee9389, + 0xee938a, + 0xee938b, + 0xee938c, + 0xee938d, + 0xee938e, + 0xee938f, + 0xee9390, + 0xee9391, + 0xee9392, + 0xee9393, + 0xee9394, + 0xee9395, + 0xee9396, + 0xee9397, + 0xee9398, + 0xee9399, + 0xee939a, + 0xee939b, + 0xee939c, + 0xee939d, + 0xee939e, + 0xee939f, + 0xee93a0, + 0xee93a1, + 0xee93a2, + 0xee93a3, + 0xee93a4, + 0xee93a5, + 0xee93a6, + 0xee93a7, + 0xee93a8, + 0xee93a9, + 0xee93aa, + 0xee93ab, + 0xee93ac, + 0xee93ad, + 0xee93ae, + 0xee93af, + 0xee93b0, + 0xee93b1, + 0xee93b2, + 0xee93b3, + 0xee93b4, + 0xee93b5, + 0xee93b6, + 0xee93b7, + 0xee93b8, + 0xee93b9, + 0xee93ba, + 0xee93bb, + 0xee93bc, + 0xee93bd, + 0xee93be, + 0xee93bf, + 0xee9480, + 0xee9481, + 0xee9482, + 0xee9483, + 0xee9484, + 0xee9485, + 0xee9486, + 0xee9487, + 0xee9488, + 0xee9489, + 0xee948a, + 0xee948b, + 0xee948c, + 0xee948d, + 0xee948e, + 0xee948f, + 0xee9490, + 0xee9491, + 0xee9492, + 0xee9493, + 0xee9494, + 0xee9495, + 0xee9496, + 0xee9497, + 0xee9498, + 0xee9499, + 0xee949a, + 0xee949b, + 0xee949c, + 0xee949d, + 0xee949e, + 0xee949f, + 0xee94a0, + 0xee94a1, + 0xee94a2, + 0xee94a3, + 0xee94a4, + 0xee94a5, + 0xee94a6, + 0xee94a7, + 0xee94a8, + 0xee94a9, + 0xee94aa, + 0xee94ab, + 0xee94ac, + 0xee94ad, + 0xee94ae, + 0xee94af, + 0xee94b0, + 0xee94b1, + 0xee94b2, + 0xee94b3, + 0xee94b4, + 0xee94b5, + 0xee94b6, + 0xee94b7, + 0xee94b8, + 0xee94b9, + 0xee94ba, + 0xee94bb, + 0xee94bc, + 0xee94bd, + 0xee94be, + 0xee94bf, + 0xee9580, + 0xee9581, + 0xee9582, + 0xee9583, + 0xee9584, + 0xee9585, + 0xee9586, + 0xee9587, + 0xee9588, + 0xee9589, + 0xee958a, + 0xee958b, + 0xee958c, + 0xee958d, + 0xee958e, + 0xee958f, + 0xee9590, + 0xee9591, + 0xee9592, + 0xee9593, + 0xee9594, + 0xee9595, + 0xee9596, + 0xee9597, + 0xee9598, + 0xee9599, + 0xee959a, + 0xee959b, + 0xee959c, + 0xee959d, + 0xee959e, + 0xee959f, + 0xee95a0, + 0xee95a1, + 0xee95a2, + 0xee95a3, + 0xee95a4, + 0xee95a5, + 0xee95a6, + 0xee95a7, + 0xee95a8, + 0xee95a9, + 0xee95aa, + 0xee95ab, + 0xee95ac, + 0xee95ad, + 0xee95ae, + 0xee95af, + 0xee95b0, + 0xee95b1, + 0xee95b2, + 0xee95b3, + 0xee95b4, + 0xee95b5, + 0xee95b6, + 0xee95b7, + 0xee95b8, + 0xee95b9, + 0xee95ba, + 0xee95bb, + 0xee95bc, + 0xee95bd, + 0xee95be, + 0xee95bf, + 0xee9680, + 0xee9681, + 0xee9682, + 0xee9683, + 0xee9684, + 0xee9685, + 0xee9686, + 0xee9687, + 0xee9688, + 0xee9689, + 0xee968a, + 0xee968b, + 0xee968c, + 0xee968d, + 0xee968e, + 0xee968f, + 0xee9690, + 0xee9691, + 0xee9692, + 0xee9693, + 0xee9694, + 0xee9695, + 0xee9696, + 0xee9697, + 0xee9698, + 0xee9699, + 0xee969a, + 0xee969b, + 0xee969c, + 0xee969d, + 0xee969e, + 0xee969f, + 0xee96a0, + 0xee96a1, + 0xee96a2, + 0xee96a3, + 0xee96a4, + 0xee96a5, + 0xee96a6, + 0xee96a7, + 0xee96a8, + 0xee96a9, + 0xee96aa, + 0xee96ab, + 0xee96ac, + 0xee96ad, + 0xee96ae, + 0xee96af, + 0xee96b0, + 0xee96b1, + 0xee96b2, + 0xee96b3, + 0xee96b4, + 0xee96b5, + 0xee96b6, + 0xee96b7, + 0xee96b8, + 0xee96b9, + 0xee96ba, + 0xee96bb, + 0xee96bc, + 0xee96bd, + 0xee96be, + 0xee96bf, + 0xee9780, + 0xee9781, + 0xee9782, + 0xee9783, + 0xee9784, + 0xee9785, + 0xee9786, + 0xee9787, + 0xee9788, + 0xee9789, + 0xee978a, + 0xee978b, + 0xee978c, + 0xee978d, + 0xee978e, + 0xee978f, + 0xee9790, + 0xee9791, + 0xee9792, + 0xee9793, + 0xee9794, + 0xee9795, + 0xee9796, + 0xee9797, + 0xee9798, + 0xee9799, + 0xee979a, + 0xee979b, + 0xee979c, + 0xee979d, + 0xee979e, + 0xee979f, + 0xee97a0, + 0xee97a1, + 0xee97a2, + 0xee97a3, + 0xee97a4, + 0xee97a5, + 0xee97a6, + 0xee97a7, + 0xee97a8, + 0xee97a9, + 0xee97aa, + 0xee97ab, + 0xee97ac, + 0xee97ad, + 0xee97ae, + 0xee97af, + 0xee97b0, + 0xee97b1, + 0xee97b2, + 0xee97b3, + 0xee97b4, + 0xee97b5, + 0xee97b6, + 0xee97b7, + 0xee97b8, + 0xee97b9, + 0xee97ba, + 0xee97bb, + 0xee97bc, + 0xee97bd, + 0xee97be, + 0xee97bf, + 0xee9880, + 0xee9881, + 0xee9882, + 0xee9883, + 0xee9884, + 0xee9885, + 0xee9886, + 0xee9887, + 0xee9888, + 0xee9889, + 0xee988a, + 0xee988b, + 0xee988c, + 0xee988d, + 0xee988e, + 0xee988f, + 0xee9890, + 0xee9891, + 0xee9892, + 0xee9893, + 0xee9894, + 0xee9895, + 0xee9896, + 0xee9897, + 0xee9898, + 0xee9899, + 0xee989a, + 0xee989b, + 0xee989c, + 0xee989d, + 0xee989e, + 0xee989f, + 0xee98a0, + 0xee98a1, + 0xee98a2, + 0xee98a3, + 0xee98a4, + 0xee98a5, + 0xee98a6, + 0xee98a7, + 0xee98a8, + 0xee98a9, + 0xee98aa, + 0xee98ab, + 0xee98ac, + 0xee98ad, + 0xee98ae, + 0xee98af, + 0xee98b0, + 0xee98b1, + 0xee98b2, + 0xee98b3, + 0xee98b4, + 0xee98b5, + 0xee98b6, + 0xee98b7, + 0xee98b8, + 0xee98b9, + 0xee98ba, + 0xee98bb, + 0xee98bc, + 0xee98bd, + 0xee98be, + 0xee98bf, + 0xee9980, + 0xee9981, + 0xee9982, + 0xee9983, + 0xee9984, + 0xee9985, + 0xee9986, + 0xee9987, + 0xee9988, + 0xee9989, + 0xee998a, + 0xee998b, + 0xee998c, + 0xee998d, + 0xee998e, + 0xee998f, + 0xee9990, + 0xee9991, + 0xee9992, + 0xee9993, + 0xee9994, + 0xee9995, + 0xee9996, + 0xee9997, + 0xee9998, + 0xee9999, + 0xee999a, + 0xee999b, + 0xee999c, + 0xee999d, + 0xee999e, + 0xee999f, + 0xee99a0, + 0xee99a1, + 0xee99a2, + 0xee99a3, + 0xee99a4, + 0xee99a5, + 0xee99a6, + 0xee99a7, + 0xee99a8, + 0xee99a9, + 0xee99aa, + 0xee99ab, + 0xee99ac, + 0xee99ad, + 0xee99ae, + 0xee99af, + 0xee99b0, + 0xee99b1, + 0xee99b2, + 0xee99b3, + 0xee99b4, + 0xee99b5, + 0xee99b6, + 0xee99b7, + 0xee99b8, + 0xee99b9, + 0xee99ba, + 0xee99bb, + 0xee99bc, + 0xee99bd, + 0xee99be, + 0xee99bf, + 0xee9a80, + 0xee9a81, + 0xee9a82, + 0xee9a83, + 0xee9a84, + 0xee9a85, + 0xee9a86, + 0xee9a87, + 0xee9a88, + 0xee9a89, + 0xee9a8a, + 0xee9a8b, + 0xee9a8c, + 0xee9a8d, + 0xee9a8e, + 0xee9a8f, + 0xee9a90, + 0xee9a91, + 0xee9a92, + 0xee9a93, + 0xee9a94, + 0xee9a95, + 0xee9a96, + 0xee9a97, + 0xee9a98, + 0xee9a99, + 0xee9a9a, + 0xee9a9b, + 0xee9a9c, + 0xee9a9d, + 0xee9a9e, + 0xee9a9f, + 0xee9aa0, + 0xee9aa1, + 0xee9aa2, + 0xee9aa3, + 0xee9aa4, + 0xee9aa5, + 0xee9aa6, + 0xee9aa7, + 0xee9aa8, + 0xee9aa9, + 0xee9aaa, + 0xee9aab, + 0xee9aac, + 0xee9aad, + 0xee9aae, + 0xee9aaf, + 0xee9ab0, + 0xee9ab1, + 0xee9ab2, + 0xee9ab3, + 0xee9ab4, + 0xee9ab5, + 0xee9ab6, + 0xee9ab7, + 0xee9ab8, + 0xee9ab9, + 0xee9aba, + 0xee9abb, + 0xee9abc, + 0xee9abd, + 0xee9abe, + 0xee9abf, + 0xee9b80, + 0xee9b81, + 0xee9b82, + 0xee9b83, + 0xee9b84, + 0xee9b85, + 0xee9b86, + 0xee9b87, + 0xee9b88, + 0xee9b89, + 0xee9b8a, + 0xee9b8b, + 0xee9b8c, + 0xee9b8d, + 0xee9b8e, + 0xee9b8f, + 0xee9b90, + 0xee9b91, + 0xee9b92, + 0xee9b93, + 0xee9b94, + 0xee9b95, + 0xee9b96, + 0xee9b97, + 0xee9b98, + 0xee9b99, + 0xee9b9a, + 0xee9b9b, + 0xee9b9c, + 0xee9b9d, + 0xee9b9e, + 0xee9b9f, + 0xee9ba0, + 0xee9ba1, + 0xee9ba2, + 0xee9ba3, + 0xee9ba4, + 0xee9ba5, + 0xee9ba6, + 0xee9ba7, + 0xee9ba8, + 0xee9ba9, + 0xee9baa, + 0xee9bab, + 0xee9bac, + 0xee9bad, + 0xee9bae, + 0xee9baf, + 0xee9bb0, + 0xee9bb1, + 0xee9bb2, + 0xee9bb3, + 0xee9bb4, + 0xee9bb5, + 0xee9bb6, + 0xee9bb7, + 0xee9bb8, + 0xee9bb9, + 0xee9bba, + 0xee9bbb, + 0xee9bbc, + 0xee9bbd, + 0xee9bbe, + 0xee9bbf, + 0xee9c80, + 0xee9c81, + 0xee9c82, + 0xee9c83, + 0xee9c84, + 0xee9c85, + 0xee9c86, + 0xee9c87, + 0xee9c88, + 0xee9c89, + 0xee9c8a, + 0xee9c8b, + 0xee9c8c, + 0xee9c8d, + 0xee9c8e, + 0xee9c8f, + 0xee9c90, + 0xee9c91, + 0xee9c92, + 0xee9c93, + 0xee9c94, + 0xee9c95, + 0xee9c96, + 0xee9c97, + 0xee9c98, + 0xee9c99, + 0xee9c9a, + 0xee9c9b, + 0xee9c9c, + 0xee9c9d, + 0xee9c9e, + 0xee9c9f, + 0xee9ca0, + 0xee9ca1, + 0xee9ca2, + 0xee9ca3, + 0xee9ca4, + 0xee9ca5, + 0xee9ca6, + 0xee9ca7, + 0xee9ca8, + 0xee9ca9, + 0xee9caa, + 0xee9cab, + 0xee9cac, + 0xee9cad, + 0xee9cae, + 0xee9caf, + 0xee9cb0, + 0xee9cb1, + 0xee9cb2, + 0xee9cb3, + 0xee9cb4, + 0xee9cb5, + 0xee9cb6, + 0xee9cb7, + 0xee9cb8, + 0xee9cb9, + 0xee9cba, + 0xee9cbb, + 0xee9cbc, + 0xee9cbd, + 0xee9cbe, + 0xee9cbf, + 0xee9d80, + 0xee9d81, + 0xee9d82, + 0xee9d83, + 0xee9d84, + 0xee9d85, + 0xee9d86, + 0xee9d87, + 0xee9d88, + 0xee9d89, + 0xee9d8a, + 0xee9d8b, + 0xee9d8c, + 0xee9d8d, + 0xee9d8e, + 0xee9d8f, + 0xee9d90, + 0xee9d91, + 0xee9d92, + 0xee9d93, + 0xee9d94, + 0xee9d95, + 0xee9d96, + 0xee9d97, + 0xee9d98, + 0xee9d99, + 0xee9d9a, + 0xee9d9b, + 0xee9d9c, + 0xee9d9d, + 0xee9d9e, + 0xee9d9f, + 0xee9da0, + 0xee9da1, + 0xee9da2, + 0xee9da3, + 0xee9da4, + 0xee9da5, + 0xee9da6, + 0xee9da7, + 0xee9da8, + 0xee9da9, + 0xee9daa, + 0xee9dab, + 0xee9dac, + 0xee9dad, + 0xee9dae, + 0xee9daf, + 0xee9db0, + 0xee9db1, + 0xee9db2, + 0xee9db3, + 0xee9db4, + 0xee9db5, + 0xee9db6, + 0xee9db7, + 0xee9db8, + 0xee9db9, + 0xee9dba, + 0xee9dbb, + 0xee9dbc, + 0xee9dbd, + 0xee9dbe, + 0xee9dbf, + 0xee9e80, + 0xee9e81, + 0xee9e82, + 0xee9e83, + 0xee9e84, + 0xee9e85, + 0xee9e86, + 0xee9e87, + 0xee9e88, + 0xee9e89, + 0xee9e8a, + 0xee9e8b, + 0xee9e8c, + 0xee9e8d, + 0xee9e8e, + 0xee9e8f, + 0xee9e90, + 0xee9e91, + 0xee9e92, + 0xee9e93, + 0xee9e94, + 0xee9e95, + 0xee9e96, + 0xee9e97, + 0xee9e98, + 0xee9e99, + 0xee9e9a, + 0xee9e9b, + 0xee9e9c, + 0xee9e9d, + 0xee9e9e, + 0xee9e9f, + 0xee9ea0, + 0xee9ea1, + 0xee9ea2, + 0xee9ea3, + 0xee9ea4, + 0xee9ea5, + 0xee9ea6, + 0xee9ea7, + 0xee9ea8, + 0xee9ea9, + 0xee9eaa, + 0xee9eab, + 0xee9eac, + 0xee9ead, + 0xee9eae, + 0xee9eaf, + 0xee9eb0, + 0xee9eb1, + 0xee9eb2, + 0xee9eb3, + 0xee9eb4, + 0xee9eb5, + 0xee9eb6, + 0xee9eb7, + 0xee9eb8, + 0xee9eb9, + 0xee9eba, + 0xee9ebb, + 0xee9ebc, + 0xee9ebd, + 0xee9ebe, + 0xee9ebf, + 0xee9f80, + 0xee9f81, + 0xee9f82, + 0xee9f83, + 0xee9f84, + 0xee9f85, + 0xee9f86, + 0xee9f87, + 0xee9f88, + 0xee9f89, + 0xee9f8a, + 0xee9f8b, + 0xee9f8c, + 0xee9f8d, + 0xee9f8e, + 0xee9f8f, + 0xee9f90, + 0xee9f91, + 0xee9f92, + 0xee9f93, + 0xee9f94, + 0xee9f95, + 0xee9f96, + 0xee9f97, + 0xee9f98, + 0xee9f99, + 0xee9f9a, + 0xee9f9b, + 0xee9f9c, + 0xee9f9d, + 0xee9f9e, + 0xee9f9f, + 0xee9fa0, + 0xee9fa1, + 0xee9fa2, + 0xee9fa3, + 0xee9fa4, + 0xee9fa5, + 0xee9fa6, + 0xee9fa7, + 0xee9fa8, + 0xee9fa9, + 0xee9faa, + 0xee9fab, + 0xee9fac, + 0xee9fad, + 0xee9fae, + 0xee9faf, + 0xee9fb0, + 0xee9fb1, + 0xee9fb2, + 0xee9fb3, + 0xee9fb4, + 0xee9fb5, + 0xee9fb6, + 0xee9fb7, + 0xee9fb8, + 0xee9fb9, + 0xee9fba, + 0xee9fbb, + 0xee9fbc, + 0xee9fbd, + 0xee9fbe, + 0xee9fbf, + 0xeea080, + 0xeea081, + 0xeea082, + 0xeea083, + 0xeea084, + 0xeea085, + 0xeea086, + 0xeea087, + 0xeea088, + 0xeea089, + 0xeea08a, + 0xeea08b, + 0xeea08c, + 0xeea08d, + 0xeea08e, + 0xeea08f, + 0xeea090, + 0xeea091, + 0xeea092, + 0xeea093, + 0xeea094, + 0xeea095, + 0xeea096, + 0xeea097, + 0xeea098, + 0xeea099, + 0xeea09a, + 0xeea09b, + 0xeea09c, + 0xeea09d, + 0xeea09e, + 0xeea09f, + 0xeea0a0, + 0xeea0a1, + 0xeea0a2, + 0xeea0a3, + 0xeea0a4, + 0xeea0a5, + 0xeea0a6, + 0xeea0a7, + 0xeea0a8, + 0xeea0a9, + 0xeea0aa, + 0xeea0ab, + 0xeea0ac, + 0xeea0ad, + 0xeea0ae, + 0xeea0af, + 0xeea0b0, + 0xeea0b1, + 0xeea0b2, + 0xeea0b3, + 0xeea0b4, + 0xeea0b5, + 0xeea0b6, + 0xeea0b7, + 0xeea0b8, + 0xeea0b9, + 0xeea0ba, + 0xeea0bb, + 0xeea0bc, + 0xeea0bd, + 0xeea0be, + 0xeea0bf, + 0xeea180, + 0xeea181, + 0xeea182, + 0xeea183, + 0xeea184, + 0xeea185, + 0xeea186, + 0xeea187, + 0xeea188, + 0xeea189, + 0xeea18a, + 0xeea18b, + 0xeea18c, + 0xeea18d, + 0xeea18e, + 0xeea18f, + 0xeea190, + 0xeea191, + 0xeea192, + 0xeea193, + 0xeea194, + 0xeea195, + 0xeea196, + 0xeea197, + 0xeea198, + 0xeea199, + 0xeea19a, + 0xeea19b, + 0xeea19c, + 0xeea19d, + 0xeea19e, + 0xeea19f, + 0xeea1a0, + 0xeea1a1, + 0xeea1a2, + 0xeea1a3, + 0xeea1a4, + 0xeea1a5, + 0xeea1a6, + 0xeea1a7, + 0xeea1a8, + 0xeea1a9, + 0xeea1aa, + 0xeea1ab, + 0xeea1ac, + 0xeea1ad, + 0xeea1ae, + 0xeea1af, + 0xeea1b0, + 0xeea1b1, + 0xeea1b2, + 0xeea1b3, + 0xeea1b4, + 0xeea1b5, + 0xeea1b6, + 0xeea1b7, + 0xeea1b8, + 0xeea1b9, + 0xeea1ba, + 0xeea1bb, + 0xeea1bc, + 0xeea1bd, + 0xeea1be, + 0xeea1bf, + 0xeea280, + 0xeea281, + 0xeea282, + 0xeea283, + 0xeea284, + 0xeea285, + 0xeea286, + 0xeea287, + 0xeea288, + 0xeea289, + 0xeea28a, + 0xeea28b, + 0xeea28c, + 0xeea28d, + 0xeea28e, + 0xeea28f, + 0xeea290, + 0xeea291, + 0xeea292, + 0xeea293, + 0xeea294, + 0xeea295, + 0xeea296, + 0xeea297, + 0xeea298, + 0xeea299, + 0xeea29a, + 0xeea29b, + 0xeea29c, + 0xeea29d, + 0xeea29e, + 0xeea29f, + 0xeea2a0, + 0xeea2a1, + 0xeea2a2, + 0xeea2a3, + 0xeea2a4, + 0xeea2a5, + 0xeea2a6, + 0xeea2a7, + 0xeea2a8, + 0xeea2a9, + 0xeea2aa, + 0xeea2ab, + 0xeea2ac, + 0xeea2ad, + 0xeea2ae, + 0xeea2af, + 0xeea2b0, + 0xeea2b1, + 0xeea2b2, + 0xeea2b3, + 0xeea2b4, + 0xeea2b5, + 0xeea2b6, + 0xeea2b7, + 0xeea2b8, + 0xeea2b9, + 0xeea2ba, + 0xeea2bb, + 0xeea2bc, + 0xeea2bd, + 0xeea2be, + 0xeea2bf, + 0xeea380, + 0xeea381, + 0xeea382, + 0xeea383, + 0xeea384, + 0xeea385, + 0xeea386, + 0xeea387, + 0xeea388, + 0xeea389, + 0xeea38a, + 0xeea38b, + 0xeea38c, + 0xeea38d, + 0xeea38e, + 0xeea38f, + 0xeea390, + 0xeea391, + 0xeea392, + 0xeea393, + 0xeea394, + 0xeea395, + 0xeea396, + 0xeea397, + 0xeea398, + 0xeea399, + 0xeea39a, + 0xeea39b, + 0xeea39c, + 0xeea39d, + 0xeea39e, + 0xeea39f, + 0xeea3a0, + 0xeea3a1, + 0xeea3a2, + 0xeea3a3, + 0xeea3a4, + 0xeea3a5, + 0xeea3a6, + 0xeea3a7, + 0xeea3a8, + 0xeea3a9, + 0xeea3aa, + 0xeea3ab, + 0xeea3ac, + 0xeea3ad, + 0xeea3ae, + 0xeea3af, + 0xeea3b0, + 0xeea3b1, + 0xeea3b2, + 0xeea3b3, + 0xeea3b4, + 0xeea3b5, + 0xeea3b6, + 0xeea3b7, + 0xeea3b8, + 0xeea3b9, + 0xeea3ba, + 0xeea3bb, + 0xeea3bc, + 0xeea3bd, + 0xeea3be, + 0xeea3bf, + 0xeea480, + 0xeea481, + 0xeea482, + 0xeea483, + 0xeea484, + 0xeea485, + 0xeea486, + 0xeea487, + 0xeea488, + 0xeea489, + 0xeea48a, + 0xeea48b, + 0xeea48c, + 0xeea48d, + 0xeea48e, + 0xeea48f, + 0xeea490, + 0xeea491, + 0xeea492, + 0xeea493, + 0xeea494, + 0xeea495, + 0xeea496, + 0xeea497, + 0xeea498, + 0xeea499, + 0xeea49a, + 0xeea49b, + 0xeea49c, + 0xeea49d, + 0xeea49e, + 0xeea49f, + 0xeea4a0, + 0xeea4a1, + 0xeea4a2, + 0xeea4a3, + 0xeea4a4, + 0xeea4a5, + 0xeea4a6, + 0xeea4a7, + 0xeea4a8, + 0xeea4a9, + 0xeea4aa, + 0xeea4ab, + 0xeea4ac, + 0xeea4ad, + 0xeea4ae, + 0xeea4af, + 0xeea4b0, + 0xeea4b1, + 0xeea4b2, + 0xeea4b3, + 0xeea4b4, + 0xeea4b5, + 0xeea4b6, + 0xeea4b7, + 0xeea4b8, + 0xeea4b9, + 0xeea4ba, + 0xeea4bb, + 0xeea4bc, + 0xeea4bd, + 0xeea4be, + 0xeea4bf, + 0xeea580, + 0xeea581, + 0xeea582, + 0xeea583, + 0xeea584, + 0xeea585, + 0xeea586, + 0xeea587, + 0xeea588, + 0xeea589, + 0xeea58a, + 0xeea58b, + 0xeea58c, + 0xeea58d, + 0xeea58e, + 0xeea58f, + 0xeea590, + 0xeea591, + 0xeea592, + 0xeea593, + 0xeea594, + 0xeea595, + 0xeea596, + 0xeea597, + 0xeea598, + 0xeea599, + 0xeea59a, + 0xeea59b, + 0xeea59c, + 0xeea59d, + 0xeea59e, + 0xeea59f, + 0xeea5a0, + 0xeea5a1, + 0xeea5a2, + 0xeea5a3, + 0xeea5a4, + 0xeea5a5, + 0xeea5a6, + 0xeea5a7, + 0xeea5a8, + 0xeea5a9, + 0xeea5aa, + 0xeea5ab, + 0xeea5ac, + 0xeea5ad, + 0xeea5ae, + 0xeea5af, + 0xeea5b0, + 0xeea5b1, + 0xeea5b2, + 0xeea5b3, + 0xeea5b4, + 0xeea5b5, + 0xeea5b6, + 0xeea5b7, + 0xeea5b8, + 0xeea5b9, + 0xeea5ba, + 0xeea5bb, + 0xeea5bc, + 0xeea5bd, + 0xeea5be, + 0xeea5bf, + 0xeea680, + 0xeea681, + 0xeea682, + 0xeea683, + 0xeea684, + 0xeea685, + 0xeea686, + 0xeea687, + 0xeea688, + 0xeea689, + 0xeea68a, + 0xeea68b, + 0xeea68c, + 0xeea68d, + 0xeea68e, + 0xeea68f, + 0xeea690, + 0xeea691, + 0xeea692, + 0xeea693, + 0xeea694, + 0xeea695, + 0xeea696, + 0xeea697, + 0xeea698, + 0xeea699, + 0xeea69a, + 0xeea69b, + 0xeea69c, + 0xeea69d, + 0xeea69e, + 0xeea69f, + 0xeea6a0, + 0xeea6a1, + 0xeea6a2, + 0xeea6a3, + 0xeea6a4, + 0xeea6a5, + 0xeea6a6, + 0xeea6a7, + 0xeea6a8, + 0xeea6a9, + 0xeea6aa, + 0xeea6ab, + 0xeea6ac, + 0xeea6ad, + 0xeea6ae, + 0xeea6af, + 0xeea6b0, + 0xeea6b1, + 0xeea6b2, + 0xeea6b3, + 0xeea6b4, + 0xeea6b5, + 0xeea6b6, + 0xeea6b7, + 0xeea6b8, + 0xeea6b9, + 0xeea6ba, + 0xeea6bb, + 0xeea6bc, + 0xeea6bd, + 0xeea6be, + 0xeea6bf, + 0xeea780, + 0xeea781, + 0xeea782, + 0xeea783, + 0xeea784, + 0xeea785, + 0xeea786, + 0xeea787, + 0xeea788, + 0xeea789, + 0xeea78a, + 0xeea78b, + 0xeea78c, + 0xeea78d, + 0xeea78e, + 0xeea78f, + 0xeea790, + 0xeea791, + 0xeea792, + 0xeea793, + 0xeea794, + 0xeea795, + 0xeea796, + 0xeea797, + 0xeea798, + 0xeea799, + 0xeea79a, + 0xeea79b, + 0xeea79c, + 0xeea79d, + 0xeea79e, + 0xeea79f, + 0xeea7a0, + 0xeea7a1, + 0xeea7a2, + 0xeea7a3, + 0xeea7a4, + 0xeea7a5, + 0xeea7a6, + 0xeea7a7, + 0xeea7a8, + 0xeea7a9, + 0xeea7aa, + 0xeea7ab, + 0xeea7ac, + 0xeea7ad, + 0xeea7ae, + 0xeea7af, + 0xeea7b0, + 0xeea7b1, + 0xeea7b2, + 0xeea7b3, + 0xeea7b4, + 0xeea7b5, + 0xeea7b6, + 0xeea7b7, + 0xeea7b8, + 0xeea7b9, + 0xeea7ba, + 0xeea7bb, + 0xeea7bc, + 0xeea7bd, + 0xeea7be, + 0xeea7bf, + 0xeea880, + 0xeea881, + 0xeea882, + 0xeea883, + 0xeea884, + 0xeea885, + 0xeea886, + 0xeea887, + 0xeea888, + 0xeea889, + 0xeea88a, + 0xeea88b, + 0xeea88c, + 0xeea88d, + 0xeea88e, + 0xeea88f, + 0xeea890, + 0xeea891, + 0xeea892, + 0xeea893, + 0xeea894, + 0xeea895, + 0xeea896, + 0xeea897, + 0xeea898, + 0xeea899, + 0xeea89a, + 0xeea89b, + 0xeea89c, + 0xeea89d, + 0xeea89e, + 0xeea89f, + 0xeea8a0, + 0xeea8a1, + 0xeea8a2, + 0xeea8a3, + 0xeea8a4, + 0xeea8a5, + 0xeea8a6, + 0xeea8a7, + 0xeea8a8, + 0xeea8a9, + 0xeea8aa, + 0xeea8ab, + 0xeea8ac, + 0xeea8ad, + 0xeea8ae, + 0xeea8af, + 0xeea8b0, + 0xeea8b1, + 0xeea8b2, + 0xeea8b3, + 0xeea8b4, + 0xeea8b5, + 0xeea8b6, + 0xeea8b7, + 0xeea8b8, + 0xeea8b9, + 0xeea8ba, + 0xeea8bb, + 0xeea8bc, + 0xeea8bd, + 0xeea8be, + 0xeea8bf, + 0xeea980, + 0xeea981, + 0xeea982, + 0xeea983, + 0xeea984, + 0xeea985, + 0xeea986, + 0xeea987, + 0xeea988, + 0xeea989, + 0xeea98a, + 0xeea98b, + 0xeea98c, + 0xeea98d, + 0xeea98e, + 0xeea98f, + 0xeea990, + 0xeea991, + 0xeea992, + 0xeea993, + 0xeea994, + 0xeea995, + 0xeea996, + 0xeea997, + 0xeea998, + 0xeea999, + 0xeea99a, + 0xeea99b, + 0xeea99c, + 0xeea99d, + 0xeea99e, + 0xeea99f, + 0xeea9a0, + 0xeea9a1, + 0xeea9a2, + 0xeea9a3, + 0xeea9a4, + 0xeea9a5, + 0xeea9a6, + 0xeea9a7, + 0xeea9a8, + 0xeea9a9, + 0xeea9aa, + 0xeea9ab, + 0xeea9ac, + 0xeea9ad, + 0xeea9ae, + 0xeea9af, + 0xeea9b0, + 0xeea9b1, + 0xeea9b2, + 0xeea9b3, + 0xeea9b4, + 0xeea9b5, + 0xeea9b6, + 0xeea9b7, + 0xeea9b8, + 0xeea9b9, + 0xeea9ba, + 0xeea9bb, + 0xeea9bc, + 0xeea9bd, + 0xeea9be, + 0xeea9bf, + 0xeeaa80, + 0xeeaa81, + 0xeeaa82, + 0xeeaa83, + 0xeeaa84, + 0xeeaa85, + 0xeeaa86, + 0xeeaa87, + 0xeeaa88, + 0xeeaa89, + 0xeeaa8a, + 0xeeaa8b, + 0xeeaa8c, + 0xeeaa8d, + 0xeeaa8e, + 0xeeaa8f, + 0xeeaa90, + 0xeeaa91, + 0xeeaa92, + 0xeeaa93, + 0xeeaa94, + 0xeeaa95, + 0xeeaa96, + 0xeeaa97, + 0xeeaa98, + 0xeeaa99, + 0xeeaa9a, + 0xeeaa9b, + 0xeeaa9c, + 0xeeaa9d, + 0xeeaa9e, + 0xeeaa9f, + 0xeeaaa0, + 0xeeaaa1, + 0xeeaaa2, + 0xeeaaa3, + 0xeeaaa4, + 0xeeaaa5, + 0xeeaaa6, + 0xeeaaa7, + 0xeeaaa8, + 0xeeaaa9, + 0xeeaaaa, + 0xeeaaab, + 0xeeaaac, + 0xeeaaad, + 0xeeaaae, + 0xeeaaaf, + 0xeeaab0, + 0xeeaab1, + 0xeeaab2, + 0xeeaab3, + 0xeeaab4, + 0xeeaab5, + 0xeeaab6, + 0xeeaab7, + 0xeeaab8, + 0xeeaab9, + 0xeeaaba, + 0xeeaabb, + 0xeeaabc, + 0xeeaabd, + 0xeeaabe, + 0xeeaabf, + 0xeeab80, + 0xeeab81, + 0xeeab82, + 0xeeab83, + 0xeeab84, + 0xeeab85, + 0xeeab86, + 0xeeab87, + 0xeeab88, + 0xeeab89, + 0xeeab8a, + 0xeeab8b, + 0xeeab8c, + 0xeeab8d, + 0xeeab8e, + 0xeeab8f, + 0xeeab90, + 0xeeab91, + 0xeeab92, + 0xeeab93, + 0xeeab94, + 0xeeab95, + 0xeeab96, + 0xeeab97, + 0xeeab98, + 0xeeab99, + 0xeeab9a, + 0xeeab9b, + 0xeeab9c, + 0xeeab9d, + 0xeeab9e, + 0xeeab9f, + 0xeeaba0, + 0xeeaba1, + 0xeeaba2, + 0xeeaba3, + 0xeeaba4, + 0xeeaba5, + 0xeeaba6, + 0xeeaba7, + 0xeeaba8, + 0xeeaba9, + 0xeeabaa, + 0xeeabab, + 0xeeabac, + 0xeeabad, + 0xeeabae, + 0xeeabaf, + 0xeeabb0, + 0xeeabb1, + 0xeeabb2, + 0xeeabb3, + 0xeeabb4, + 0xeeabb5, + 0xeeabb6, + 0xeeabb7, + 0xeeabb8, + 0xeeabb9, + 0xeeabba, + 0xeeabbb, + 0xeeabbc, + 0xeeabbd, + 0xeeabbe, + 0xeeabbf, + 0xeeac80, + 0xeeac81, + 0xeeac82, + 0xeeac83, + 0xeeac84, + 0xeeac85, + 0xeeac86, + 0xeeac87, + 0xeeac88, + 0xeeac89, + 0xeeac8a, + 0xeeac8b, + 0xeeac8c, + 0xeeac8d, + 0xeeac8e, + 0xeeac8f, + 0xeeac90, + 0xeeac91, + 0xeeac92, + 0xeeac93, + 0xeeac94, + 0xeeac95, + 0xeeac96, + 0xeeac97, + 0xeeac98, + 0xeeac99, + 0xeeac9a, + 0xeeac9b, + 0xeeac9c, + 0xeeac9d, + 0xeeac9e, + 0xeeac9f, + 0xeeaca0, + 0xeeaca1, + 0xeeaca2, + 0xeeaca3, + 0xeeaca4, + 0xeeaca5, + 0xeeaca6, + 0xeeaca7, + 0xeeaca8, + 0xeeaca9, + 0xeeacaa, + 0xeeacab, + 0xeeacac, + 0xeeacad, + 0xeeacae, + 0xeeacaf, + 0xeeacb0, + 0xeeacb1, + 0xeeacb2, + 0xeeacb3, + 0xeeacb4, + 0xeeacb5, + 0xeeacb6, + 0xeeacb7, + 0xeeacb8, + 0xeeacb9, + 0xeeacba, + 0xeeacbb, + 0xeeacbc, + 0xeeacbd, + 0xeeacbe, + 0xeeacbf, + 0xeead80, + 0xeead81, + 0xeead82, + 0xeead83, + 0xeead84, + 0xeead85, + 0xeead86, + 0xeead87, + 0xeead88, + 0xeead89, + 0xeead8a, + 0xeead8b, + 0xeead8c, + 0xeead8d, + 0xeead8e, + 0xeead8f, + 0xeead90, + 0xeead91, + 0xeead92, + 0xeead93, + 0xeead94, + 0xeead95, + 0xeead96, + 0xeead97, + 0xeead98, + 0xeead99, + 0xeead9a, + 0xeead9b, + 0xeead9c, + 0xeead9d, + 0xeead9e, + 0xeead9f, + 0xeeada0, + 0xeeada1, + 0xeeada2, + 0xeeada3, + 0xeeada4, + 0xeeada5, + 0xeeada6, + 0xeeada7, + 0xeeada8, + 0xeeada9, + 0xeeadaa, + 0xeeadab, + 0xeeadac, + 0xeeadad, + 0xeeadae, + 0xeeadaf, + 0xeeadb0, + 0xeeadb1, + 0xeeadb2, + 0xeeadb3, + 0xeeadb4, + 0xeeadb5, + 0xeeadb6, + 0xeeadb7, + 0xeeadb8, + 0xeeadb9, + 0xeeadba, + 0xeeadbb, + 0xeeadbc, + 0xeeadbd, + 0xeeadbe, + 0xeeadbf, + 0xeeae80, + 0xeeae81, + 0xeeae82, + 0xeeae83, + 0xeeae84, + 0xeeae85, + 0xeeae86, + 0xeeae87, + 0xeeae88, + 0xeeae89, + 0xeeae8a, + 0xeeae8b, + 0xeeae8c, + 0xeeae8d, + 0xeeae8e, + 0xeeae8f, + 0xeeae90, + 0xeeae91, + 0xeeae92, + 0xeeae93, + 0xeeae94, + 0xeeae95, + 0xeeae96, + 0xeeae97, + 0xeeae98, + 0xeeae99, + 0xeeae9a, + 0xeeae9b, + 0xeeae9c, + 0xeeae9d, + 0xeeae9e, + 0xeeae9f, + 0xeeaea0, + 0xeeaea1, + 0xeeaea2, + 0xeeaea3, + 0xeeaea4, + 0xeeaea5, + 0xeeaea6, + 0xeeaea7, + 0xeeaea8, + 0xeeaea9, + 0xeeaeaa, + 0xeeaeab, + 0xeeaeac, + 0xeeaead, + 0xeeaeae, + 0xeeaeaf, + 0xeeaeb0, + 0xeeaeb1, + 0xeeaeb2, + 0xeeaeb3, + 0xeeaeb4, + 0xeeaeb5, + 0xeeaeb6, + 0xeeaeb7, + 0xeeaeb8, + 0xeeaeb9, + 0xeeaeba, + 0xeeaebb, + 0xeeaebc, + 0xeeaebd, + 0xeeaebe, + 0xeeaebf, + 0xeeaf80, + 0xeeaf81, + 0xeeaf82, + 0xeeaf83, + 0xeeaf84, + 0xeeaf85, + 0xeeaf86, + 0xeeaf87, + 0xeeaf88, + 0xeeaf89, + 0xeeaf8a, + 0xeeaf8b, + 0xeeaf8c, + 0xeeaf8d, + 0xeeaf8e, + 0xeeaf8f, + 0xeeaf90, + 0xeeaf91, + 0xeeaf92, + 0xeeaf93, + 0xeeaf94, + 0xeeaf95, + 0xeeaf96, + 0xeeaf97, + 0xeeaf98, + 0xeeaf99, + 0xeeaf9a, + 0xeeaf9b, + 0xeeaf9c, + 0xeeaf9d, + 0xeeaf9e, + 0xeeaf9f, + 0xeeafa0, + 0xeeafa1, + 0xeeafa2, + 0xeeafa3, + 0xeeafa4, + 0xeeafa5, + 0xeeafa6, + 0xeeafa7, + 0xeeafa8, + 0xeeafa9, + 0xeeafaa, + 0xeeafab, + 0xeeafac, + 0xeeafad, + 0xeeafae, + 0xeeafaf, + 0xeeafb0, + 0xeeafb1, + 0xeeafb2, + 0xeeafb3, + 0xeeafb4, + 0xeeafb5, + 0xeeafb6, + 0xeeafb7, + 0xeeafb8, + 0xeeafb9, + 0xeeafba, + 0xeeafbb, + 0xeeafbc, + 0xeeafbd, + 0xeeafbe, + 0xeeafbf, + 0xeeb080, + 0xeeb081, + 0xeeb082, + 0xeeb083, + 0xeeb084, + 0xeeb085, + 0xeeb086, + 0xeeb087, + 0xeeb088, + 0xeeb089, + 0xeeb08a, + 0xeeb08b, + 0xeeb08c, + 0xeeb08d, + 0xeeb08e, + 0xeeb08f, + 0xeeb090, + 0xeeb091, + 0xeeb092, + 0xeeb093, + 0xeeb094, + 0xeeb095, + 0xeeb096, + 0xeeb097, + 0xeeb098, + 0xeeb099, + 0xeeb09a, + 0xeeb09b, + 0xeeb09c, + 0xeeb09d, + 0xeeb09e, + 0xeeb09f, + 0xeeb0a0, + 0xeeb0a1, + 0xeeb0a2, + 0xeeb0a3, + 0xeeb0a4, + 0xeeb0a5, + 0xeeb0a6, + 0xeeb0a7, + 0xeeb0a8, + 0xeeb0a9, + 0xeeb0aa, + 0xeeb0ab, + 0xeeb0ac, + 0xeeb0ad, + 0xeeb0ae, + 0xeeb0af, + 0xeeb0b0, + 0xeeb0b1, + 0xeeb0b2, + 0xeeb0b3, + 0xeeb0b4, + 0xeeb0b5, + 0xeeb0b6, + 0xeeb0b7, + 0xeeb0b8, + 0xeeb0b9, + 0xeeb0ba, + 0xeeb0bb, + 0xeeb0bc, + 0xeeb0bd, + 0xeeb0be, + 0xeeb0bf, + 0xeeb180, + 0xeeb181, + 0xeeb182, + 0xeeb183, + 0xeeb184, + 0xeeb185, + 0xeeb186, + 0xeeb187, + 0xeeb188, + 0xeeb189, + 0xeeb18a, + 0xeeb18b, + 0xeeb18c, + 0xeeb18d, + 0xeeb18e, + 0xeeb18f, + 0xeeb190, + 0xeeb191, + 0xeeb192, + 0xeeb193, + 0xeeb194, + 0xeeb195, + 0xeeb196, + 0xeeb197, + 0xeeb198, + 0xeeb199, + 0xeeb19a, + 0xeeb19b, + 0xeeb19c, + 0xeeb19d, + 0xeeb19e, + 0xeeb19f, + 0xeeb1a0, + 0xeeb1a1, + 0xeeb1a2, + 0xeeb1a3, + 0xeeb1a4, + 0xeeb1a5, + 0xeeb1a6, + 0xeeb1a7, + 0xeeb1a8, + 0xeeb1a9, + 0xeeb1aa, + 0xeeb1ab, + 0xeeb1ac, + 0xeeb1ad, + 0xeeb1ae, + 0xeeb1af, + 0xeeb1b0, + 0xeeb1b1, + 0xeeb1b2, + 0xeeb1b3, + 0xeeb1b4, + 0xeeb1b5, + 0xeeb1b6, + 0xeeb1b7, + 0xeeb1b8, + 0xeeb1b9, + 0xeeb1ba, + 0xeeb1bb, + 0xeeb1bc, + 0xeeb1bd, + 0xeeb1be, + 0xeeb1bf, + 0xeeb280, + 0xeeb281, + 0xeeb282, + 0xeeb283, + 0xeeb284, + 0xeeb285, + 0xeeb286, + 0xeeb287, + 0xeeb288, + 0xeeb289, + 0xeeb28a, + 0xeeb28b, + 0xeeb28c, + 0xeeb28d, + 0xeeb28e, + 0xeeb28f, + 0xeeb290, + 0xeeb291, + 0xeeb292, + 0xeeb293, + 0xeeb294, + 0xeeb295, + 0xeeb296, + 0xeeb297, + 0xeeb298, + 0xeeb299, + 0xeeb29a, + 0xeeb29b, + 0xeeb29c, + 0xeeb29d, + 0xeeb29e, + 0xeeb29f, + 0xeeb2a0, + 0xeeb2a1, + 0xeeb2a2, + 0xeeb2a3, + 0xeeb2a4, + 0xeeb2a5, + 0xeeb2a6, + 0xeeb2a7, + 0xeeb2a8, + 0xeeb2a9, + 0xeeb2aa, + 0xeeb2ab, + 0xeeb2ac, + 0xeeb2ad, + 0xeeb2ae, + 0xeeb2af, + 0xeeb2b0, + 0xeeb2b1, + 0xeeb2b2, + 0xeeb2b3, + 0xeeb2b4, + 0xeeb2b5, + 0xeeb2b6, + 0xeeb2b7, + 0xeeb2b8, + 0xeeb2b9, + 0xeeb2ba, + 0xeeb2bb, + 0xeeb2bc, + 0xeeb2bd, + 0xeeb2be, + 0xeeb2bf, + 0xeeb380, + 0xeeb381, + 0xeeb382, + 0xeeb383, + 0xeeb384, + 0xeeb385, + 0xeeb386, + 0xeeb387, + 0xeeb388, + 0xeeb389, + 0xeeb38a, + 0xeeb38b, + 0xeeb38c, + 0xeeb38d, + 0xeeb38e, + 0xeeb38f, + 0xeeb390, + 0xeeb391, + 0xeeb392, + 0xeeb393, + 0xeeb394, + 0xeeb395, + 0xeeb396, + 0xeeb397, + 0xeeb398, + 0xeeb399, + 0xeeb39a, + 0xeeb39b, + 0xeeb39c, + 0xeeb39d, + 0xeeb39e, + 0xeeb39f, + 0xeeb3a0, + 0xeeb3a1, + 0xeeb3a2, + 0xeeb3a3, + 0xeeb3a4, + 0xeeb3a5, + 0xeeb3a6, + 0xeeb3a7, + 0xeeb3a8, + 0xeeb3a9, + 0xeeb3aa, + 0xeeb3ab, + 0xeeb3ac, + 0xeeb3ad, + 0xeeb3ae, + 0xeeb3af, + 0xeeb3b0, + 0xeeb3b1, + 0xeeb3b2, + 0xeeb3b3, + 0xeeb3b4, + 0xeeb3b5, + 0xeeb3b6, + 0xeeb3b7, + 0xeeb3b8, + 0xeeb3b9, + 0xeeb3ba, + 0xeeb3bb, + 0xeeb3bc, + 0xeeb3bd, + 0xeeb3be, + 0xeeb3bf, + 0xeeb480, + 0xeeb481, + 0xeeb482, + 0xeeb483, + 0xeeb484, + 0xeeb485, + 0xeeb486, + 0xeeb487, + 0xeeb488, + 0xeeb489, + 0xeeb48a, + 0xeeb48b, + 0xeeb48c, + 0xeeb48d, + 0xeeb48e, + 0xeeb48f, + 0xeeb490, + 0xeeb491, + 0xeeb492, + 0xeeb493, + 0xeeb494, + 0xeeb495, + 0xeeb496, + 0xeeb497, + 0xeeb498, + 0xeeb499, + 0xeeb49a, + 0xeeb49b, + 0xeeb49c, + 0xeeb49d, + 0xeeb49e, + 0xeeb49f, + 0xeeb4a0, + 0xeeb4a1, + 0xeeb4a2, + 0xeeb4a3, + 0xeeb4a4, + 0xeeb4a5, + 0xeeb4a6, + 0xeeb4a7, + 0xeeb4a8, + 0xeeb4a9, + 0xeeb4aa, + 0xeeb4ab, + 0xeeb4ac, + 0xeeb4ad, + 0xeeb4ae, + 0xeeb4af, + 0xeeb4b0, + 0xeeb4b1, + 0xeeb4b2, + 0xeeb4b3, + 0xeeb4b4, + 0xeeb4b5, + 0xeeb4b6, + 0xeeb4b7, + 0xeeb4b8, + 0xeeb4b9, + 0xeeb4ba, + 0xeeb4bb, + 0xeeb4bc, + 0xeeb4bd, + 0xeeb4be, + 0xeeb4bf, + 0xeeb580, + 0xeeb581, + 0xeeb582, + 0xeeb583, + 0xeeb584, + 0xeeb585, + 0xeeb586, + 0xeeb587, + 0xeeb588, + 0xeeb589, + 0xeeb58a, + 0xeeb58b, + 0xeeb58c, + 0xeeb58d, + 0xeeb58e, + 0xeeb58f, + 0xeeb590, + 0xeeb591, + 0xeeb592, + 0xeeb593, + 0xeeb594, + 0xeeb595, + 0xeeb596, + 0xeeb597, + 0xeeb598, + 0xeeb599, + 0xeeb59a, + 0xeeb59b, + 0xeeb59c, + 0xeeb59d, + 0xeeb59e, + 0xeeb59f, + 0xeeb5a0, + 0xeeb5a1, + 0xeeb5a2, + 0xeeb5a3, + 0xeeb5a4, + 0xeeb5a5, + 0xeeb5a6, + 0xeeb5a7, + 0xeeb5a8, + 0xeeb5a9, + 0xeeb5aa, + 0xeeb5ab, + 0xeeb5ac, + 0xeeb5ad, + 0xeeb5ae, + 0xeeb5af, + 0xeeb5b0, + 0xeeb5b1, + 0xeeb5b2, + 0xeeb5b3, + 0xeeb5b4, + 0xeeb5b5, + 0xeeb5b6, + 0xeeb5b7, + 0xeeb5b8, + 0xeeb5b9, + 0xeeb5ba, + 0xeeb5bb, + 0xeeb5bc, + 0xeeb5bd, + 0xeeb5be, + 0xeeb5bf, + 0xeeb680, + 0xeeb681, + 0xeeb682, + 0xeeb683, + 0xeeb684, + 0xeeb685, + 0xeeb686, + 0xeeb687, + 0xeeb688, + 0xeeb689, + 0xeeb68a, + 0xeeb68b, + 0xeeb68c, + 0xeeb68d, + 0xeeb68e, + 0xeeb68f, + 0xeeb690, + 0xeeb691, + 0xeeb692, + 0xeeb693, + 0xeeb694, + 0xeeb695, + 0xeeb696, + 0xeeb697, + 0xeeb698, + 0xeeb699, + 0xeeb69a, + 0xeeb69b, + 0xeeb69c, + 0xeeb69d, + 0xeeb69e, + 0xeeb69f, + 0xeeb6a0, + 0xeeb6a1, + 0xeeb6a2, + 0xeeb6a3, + 0xeeb6a4, + 0xeeb6a5, + 0xeeb6a6, + 0xeeb6a7, + 0xeeb6a8, + 0xeeb6a9, + 0xeeb6aa, + 0xeeb6ab, + 0xeeb6ac, + 0xeeb6ad, + 0xeeb6ae, + 0xeeb6af, + 0xeeb6b0, + 0xeeb6b1, + 0xeeb6b2, + 0xeeb6b3, + 0xeeb6b4, + 0xeeb6b5, + 0xeeb6b6, + 0xeeb6b7, + 0xeeb6b8, + 0xeeb6b9, + 0xeeb6ba, + 0xeeb6bb, + 0xeeb6bc, + 0xeeb6bd, + 0xeeb6be, + 0xeeb6bf, + 0xeeb780, + 0xeeb781, + 0xeeb782, + 0xeeb783, + 0xeeb784, + 0xeeb785, + 0xeeb786, + 0xeeb787, + 0xeeb788, + 0xeeb789, + 0xeeb78a, + 0xeeb78b, + 0xeeb78c, + 0xeeb78d, + 0xeeb78e, + 0xeeb78f, + 0xeeb790, + 0xeeb791, + 0xeeb792, + 0xeeb793, + 0xeeb794, + 0xeeb795, + 0xeeb796, + 0xeeb797, + 0xeeb798, + 0xeeb799, + 0xeeb79a, + 0xeeb79b, + 0xeeb79c, + 0xeeb79d, + 0xeeb79e, + 0xeeb79f, + 0xeeb7a0, + 0xeeb7a1, + 0xeeb7a2, + 0xeeb7a3, + 0xeeb7a4, + 0xeeb7a5, + 0xeeb7a6, + 0xeeb7a7, + 0xeeb7a8, + 0xeeb7a9, + 0xeeb7aa, + 0xeeb7ab, + 0xeeb7ac, + 0xeeb7ad, + 0xeeb7ae, + 0xeeb7af, + 0xeeb7b0, + 0xeeb7b1, + 0xeeb7b2, + 0xeeb7b3, + 0xeeb7b4, + 0xeeb7b5, + 0xeeb7b6, + 0xeeb7b7, + 0xeeb7b8, + 0xeeb7b9, + 0xeeb7ba, + 0xeeb7bb, + 0xeeb7bc, + 0xeeb7bd, + 0xeeb7be, + 0xeeb7bf, + 0xeeb880, + 0xeeb881, + 0xeeb882, + 0xeeb883, + 0xeeb884, + 0xeeb885, + 0xeeb886, + 0xeeb887, + 0xeeb888, + 0xeeb889, + 0xeeb88a, + 0xeeb88b, + 0xeeb88c, + 0xeeb88d, + 0xeeb88e, + 0xeeb88f, + 0xeeb890, + 0xeeb891, + 0xeeb892, + 0xeeb893, + 0xeeb894, + 0xeeb895, + 0xeeb896, + 0xeeb897, + 0xeeb898, + 0xeeb899, + 0xeeb89a, + 0xeeb89b, + 0xeeb89c, + 0xeeb89d, + 0xeeb89e, + 0xeeb89f, + 0xeeb8a0, + 0xeeb8a1, + 0xeeb8a2, + 0xeeb8a3, + 0xeeb8a4, + 0xeeb8a5, + 0xeeb8a6, + 0xeeb8a7, + 0xeeb8a8, + 0xeeb8a9, + 0xeeb8aa, + 0xeeb8ab, + 0xeeb8ac, + 0xeeb8ad, + 0xeeb8ae, + 0xeeb8af, + 0xeeb8b0, + 0xeeb8b1, + 0xeeb8b2, + 0xeeb8b3, + 0xeeb8b4, + 0xeeb8b5, + 0xeeb8b6, + 0xeeb8b7, + 0xeeb8b8, + 0xeeb8b9, + 0xeeb8ba, + 0xeeb8bb, + 0xeeb8bc, + 0xeeb8bd, + 0xeeb8be, + 0xeeb8bf, + 0xeeb980, + 0xeeb981, + 0xeeb982, + 0xeeb983, + 0xeeb984, + 0xeeb985, + 0xeeb986, + 0xeeb987, + 0xeeb988, + 0xeeb989, + 0xeeb98a, + 0xeeb98b, + 0xeeb98c, + 0xeeb98d, + 0xeeb98e, + 0xeeb98f, + 0xeeb990, + 0xeeb991, + 0xeeb992, + 0xeeb993, + 0xeeb994, + 0xeeb995, + 0xeeb996, + 0xeeb997, + 0xeeb998, + 0xeeb999, + 0xeeb99a, + 0xeeb99b, + 0xeeb99c, + 0xeeb99d, + 0xeeb99e, + 0xeeb99f, + 0xeeb9a0, + 0xeeb9a1, + 0xeeb9a2, + 0xeeb9a3, + 0xeeb9a4, + 0xeeb9a5, + 0xeeb9a6, + 0xeeb9a7, + 0xeeb9a8, + 0xeeb9a9, + 0xeeb9aa, + 0xeeb9ab, + 0xeeb9ac, + 0xeeb9ad, + 0xeeb9ae, + 0xeeb9af, + 0xeeb9b0, + 0xeeb9b1, + 0xeeb9b2, + 0xeeb9b3, + 0xeeb9b4, + 0xeeb9b5, + 0xeeb9b6, + 0xeeb9b7, + 0xeeb9b8, + 0xeeb9b9, + 0xeeb9ba, + 0xeeb9bb, + 0xeeb9bc, + 0xeeb9bd, + 0xeeb9be, + 0xeeb9bf, + 0xeeba80, + 0xeeba81, + 0xeeba82, + 0xeeba83, + 0xeeba84, + 0xeeba85, + 0xeeba86, + 0xeeba87, + 0xeeba88, + 0xeeba89, + 0xeeba8a, + 0xeeba8b, + 0xeeba8c, + 0xeeba8d, + 0xeeba8e, + 0xeeba8f, + 0xeeba90, + 0xeeba91, + 0xeeba92, + 0xeeba93, + 0xeeba94, + 0xeeba95, + 0xeeba96, + 0xeeba97, + 0xeeba98, + 0xeeba99, + 0xeeba9a, + 0xeeba9b, + 0xeeba9c, + 0xeeba9d, + 0xeeba9e, + 0xeeba9f, + 0xeebaa0, + 0xeebaa1, + 0xeebaa2, + 0xeebaa3, + 0xeebaa4, + 0xeebaa5, + 0xeebaa6, + 0xeebaa7, + 0xeebaa8, + 0xeebaa9, + 0xeebaaa, + 0xeebaab, + 0xeebaac, + 0xeebaad, + 0xeebaae, + 0xeebaaf, + 0xeebab0, + 0xeebab1, + 0xeebab2, + 0xeebab3, + 0xeebab4, + 0xeebab5, + 0xeebab6, + 0xeebab7, + 0xeebab8, + 0xeebab9, + 0xeebaba, + 0xeebabb, + 0xeebabc, + 0xeebabd, + 0xeebabe, + 0xeebabf, + 0xeebb80, + 0xeebb81, + 0xeebb82, + 0xeebb83, + 0xeebb84, + 0xeebb85, + 0xeebb86, + 0xeebb87, + 0xeebb88, + 0xeebb89, + 0xeebb8a, + 0xeebb8b, + 0xeebb8c, + 0xeebb8d, + 0xeebb8e, + 0xeebb8f, + 0xeebb90, + 0xeebb91, + 0xeebb92, + 0xeebb93, + 0xeebb94, + 0xeebb95, + 0xeebb96, + 0xeebb97, + 0xeebb98, + 0xeebb99, + 0xeebb9a, + 0xeebb9b, + 0xeebb9c, + 0xeebb9d, + 0xeebb9e, + 0xeebb9f, + 0xeebba0, + 0xeebba1, + 0xeebba2, + 0xeebba3, + 0xeebba4, + 0xeebba5, + 0xeebba6, + 0xeebba7, + 0xeebba8, + 0xeebba9, + 0xeebbaa, + 0xeebbab, + 0xeebbac, + 0xeebbad, + 0xeebbae, + 0xeebbaf, + 0xeebbb0, + 0xeebbb1, + 0xeebbb2, + 0xeebbb3, + 0xeebbb4, + 0xeebbb5, + 0xeebbb6, + 0xeebbb7, + 0xeebbb8, + 0xeebbb9, + 0xeebbba, + 0xeebbbb, + 0xeebbbc, + 0xeebbbd, + 0xeebbbe, + 0xeebbbf, + 0xeebc80, + 0xeebc81, + 0xeebc82, + 0xeebc83, + 0xeebc84, + 0xeebc85, + 0xeebc86, + 0xeebc87, + 0xeebc88, + 0xeebc89, + 0xeebc8a, + 0xeebc8b, + 0xeebc8c, + 0xeebc8d, + 0xeebc8e, + 0xeebc8f, + 0xeebc90, + 0xeebc91, + 0xeebc92, + 0xeebc93, + 0xeebc94, + 0xeebc95, + 0xeebc96, + 0xeebc97, + 0xeebc98, + 0xeebc99, + 0xeebc9a, + 0xeebc9b, + 0xeebc9c, + 0xeebc9d, + 0xeebc9e, + 0xeebc9f, + 0xeebca0, + 0xeebca1, + 0xeebca2, + 0xeebca3, + 0xeebca4, + 0xeebca5, + 0xeebca6, + 0xeebca7, + 0xeebca8, + 0xeebca9, + 0xeebcaa, + 0xeebcab, + 0xeebcac, + 0xeebcad, + 0xeebcae, + 0xeebcaf, + 0xeebcb0, + 0xeebcb1, + 0xeebcb2, + 0xeebcb3, + 0xeebcb4, + 0xeebcb5, + 0xeebcb6, + 0xeebcb7, + 0xeebcb8, + 0xeebcb9, + 0xeebcba, + 0xeebcbb, + 0xeebcbc, + 0xeebcbd, + 0xeebcbe, + 0xeebcbf, + 0xeebd80, + 0xeebd81, + 0xeebd82, + 0xeebd83, + 0xeebd84, + 0xeebd85, + 0xeebd86, + 0xeebd87, + 0xeebd88, + 0xeebd89, + 0xeebd8a, + 0xeebd8b, + 0xeebd8c, + 0xeebd8d, + 0xeebd8e, + 0xeebd8f, + 0xeebd90, + 0xeebd91, + 0xeebd92, + 0xeebd93, + 0xeebd94, + 0xeebd95, + 0xeebd96, + 0xeebd97, + 0xeebd98, + 0xeebd99, + 0xeebd9a, + 0xeebd9b, + 0xeebd9c, + 0xeebd9d, + 0xeebd9e, + 0xeebd9f, + 0xeebda0, + 0xeebda1, + 0xeebda2, + 0xeebda3, + 0xeebda4, + 0xeebda5, + 0xeebda6, + 0xeebda7, + 0xeebda8, + 0xeebda9, + 0xeebdaa, + 0xeebdab, + 0xeebdac, + 0xeebdad, + 0xeebdae, + 0xeebdaf, + 0xeebdb0, + 0xeebdb1, + 0xeebdb2, + 0xeebdb3, + 0xeebdb4, + 0xeebdb5, + 0xeebdb6, + 0xeebdb7, + 0xeebdb8, + 0xeebdb9, + 0xeebdba, + 0xeebdbb, + 0xeebdbc, + 0xeebdbd, + 0xeebdbe, + 0xeebdbf, + 0xeebe80, + 0xeebe81, + 0xeebe82, + 0xeebe83, + 0xeebe84, + 0xeebe85, + 0xeebe86, + 0xeebe87, + 0xeebe88, + 0xeebe89, + 0xeebe8a, + 0xeebe8b, + 0xeebe8c, + 0xeebe8d, + 0xeebe8e, + 0xeebe8f, + 0xeebe90, + 0xeebe91, + 0xeebe92, + 0xeebe93, + 0xeebe94, + 0xeebe95, + 0xeebe96, + 0xeebe97, + 0xeebe98, + 0xeebe99, + 0xeebe9a, + 0xeebe9b, + 0xeebe9c, + 0xeebe9d, + 0xeebe9e, + 0xeebe9f, + 0xeebea0, + 0xeebea1, + 0xeebea2, + 0xeebea3, + 0xeebea4, + 0xeebea5, + 0xeebea6, + 0xeebea7, + 0xeebea8, + 0xeebea9, + 0xeebeaa, + 0xeebeab, + 0xeebeac, + 0xeebead, + 0xeebeae, + 0xeebeaf, + 0xeebeb0, + 0xeebeb1, + 0xeebeb2, + 0xeebeb3, + 0xeebeb4, + 0xeebeb5, + 0xeebeb6, + 0xeebeb7, + 0xeebeb8, + 0xeebeb9, + 0xeebeba, + 0xeebebb, + 0xeebebc, + 0xeebebd, + 0xeebebe, + 0xeebebf, + 0xeebf80, + 0xeebf81, + 0xeebf82, + 0xeebf83, + 0xeebf84, + 0xeebf85, + 0xeebf86, + 0xeebf87, + 0xeebf88, + 0xeebf89, + 0xeebf8a, + 0xeebf8b, + 0xeebf8c, + 0xeebf8d, + 0xeebf8e, + 0xeebf8f, + 0xeebf90, + 0xeebf91, + 0xeebf92, + 0xeebf93, + 0xeebf94, + 0xeebf95, + 0xeebf96, + 0xeebf97, + 0xeebf98, + 0xeebf99, + 0xeebf9a, + 0xeebf9b, + 0xeebf9c, + 0xeebf9d, + 0xeebf9e, + 0xeebf9f, + 0xeebfa0, + 0xeebfa1, + 0xeebfa2, + 0xeebfa3, + 0xeebfa4, + 0xeebfa5, + 0xeebfa6, + 0xeebfa7, + 0xeebfa8, + 0xeebfa9, + 0xeebfaa, + 0xeebfab, + 0xeebfac, + 0xeebfad, + 0xeebfae, + 0xeebfaf, + 0xeebfb0, + 0xeebfb1, + 0xeebfb2, + 0xeebfb3, + 0xeebfb4, + 0xeebfb5, + 0xeebfb6, + 0xeebfb7, + 0xeebfb8, + 0xeebfb9, + 0xeebfba, + 0xeebfbb, + 0xeebfbc, + 0xeebfbd, + 0xeebfbe, + 0xeebfbf, + 0xef8080, + 0xef8081, + 0xef8082, + 0xef8083, + 0xef8084, + 0xef8085, + 0xef8086, + 0xef8087, + 0xef8088, + 0xef8089, + 0xef808a, + 0xef808b, + 0xef808c, + 0xef808d, + 0xef808e, + 0xef808f, + 0xef8090, + 0xef8091, + 0xef8092, + 0xef8093, + 0xef8094, + 0xef8095, + 0xef8096, + 0xef8097, + 0xef8098, + 0xef8099, + 0xef809a, + 0xef809b, + 0xef809c, + 0xef809d, + 0xef809e, + 0xef809f, + 0xef80a0, + 0xef80a1, + 0xef80a2, + 0xef80a3, + 0xef80a4, + 0xef80a5, + 0xef80a6, + 0xef80a7, + 0xef80a8, + 0xef80a9, + 0xef80aa, + 0xef80ab, + 0xef80ac, + 0xef80ad, + 0xef80ae, + 0xef80af, + 0xef80b0, + 0xef80b1, + 0xef80b2, + 0xef80b3, + 0xef80b4, + 0xef80b5, + 0xef80b6, + 0xef80b7, + 0xef80b8, + 0xef80b9, + 0xef80ba, + 0xef80bb, + 0xef80bc, + 0xef80bd, + 0xef80be, + 0xef80bf, + 0xef8180, + 0xef8181, + 0xef8182, + 0xef8183, + 0xef8184, + 0xef8185, + 0xef8186, + 0xef8187, + 0xef8188, + 0xef8189, + 0xef818a, + 0xef818b, + 0xef818c, + 0xef818d, + 0xef818e, + 0xef818f, + 0xef8190, + 0xef8191, + 0xef8192, + 0xef8193, + 0xef8194, + 0xef8195, + 0xef8196, + 0xef8197, + 0xef8198, + 0xef8199, + 0xef819a, + 0xef819b, + 0xef819c, + 0xef819d, + 0xef819e, + 0xef819f, + 0xef81a0, + 0xef81a1, + 0xef81a2, + 0xef81a3, + 0xef81a4, + 0xef81a5, + 0xef81a6, + 0xef81a7, + 0xef81a8, + 0xef81a9, + 0xef81aa, + 0xef81ab, + 0xef81ac, + 0xef81ad, + 0xef81ae, + 0xef81af, + 0xef81b0, + 0xef81b1, + 0xef81b2, + 0xef81b3, + 0xef81b4, + 0xef81b5, + 0xef81b6, + 0xef81b7, + 0xef81b8, + 0xef81b9, + 0xef81ba, + 0xef81bb, + 0xef81bc, + 0xef81bd, + 0xef81be, + 0xef81bf, + 0xef8280, + 0xef8281, + 0xef8282, + 0xef8283, + 0xef8284, + 0xef8285, + 0xef8286, + 0xef8287, + 0xef8288, + 0xef8289, + 0xef828a, + 0xef828b, + 0xef828c, + 0xef828d, + 0xef828e, + 0xef828f, + 0xef8290, + 0xef8291, + 0xef8292, + 0xef8293, + 0xef8294, + 0xef8295, + 0xef8296, + 0xef8297, + 0xef8298, + 0xef8299, + 0xef829a, + 0xef829b, + 0xef829c, + 0xef829d, + 0xef829e, + 0xef829f, + 0xef82a0, + 0xef82a1, + 0xef82a2, + 0xef82a3, + 0xef82a4, + 0xef82a5, + 0xef82a6, + 0xef82a7, + 0xef82a8, + 0xef82a9, + 0xef82aa, + 0xef82ab, + 0xef82ac, + 0xef82ad, + 0xef82ae, + 0xef82af, + 0xef82b0, + 0xef82b1, + 0xef82b2, + 0xef82b3, + 0xef82b4, + 0xef82b5, + 0xef82b6, + 0xef82b7, + 0xef82b8, + 0xef82b9, + 0xef82ba, + 0xef82bb, + 0xef82bc, + 0xef82bd, + 0xef82be, + 0xef82bf, + 0xef8380, + 0xef8381, + 0xef8382, + 0xef8383, + 0xef8384, + 0xef8385, + 0xef8386, + 0xef8387, + 0xef8388, + 0xef8389, + 0xef838a, + 0xef838b, + 0xef838c, + 0xef838d, + 0xef838e, + 0xef838f, + 0xef8390, + 0xef8391, + 0xef8392, + 0xef8393, + 0xef8394, + 0xef8395, + 0xef8396, + 0xef8397, + 0xef8398, + 0xef8399, + 0xef839a, + 0xef839b, + 0xef839c, + 0xef839d, + 0xef839e, + 0xef839f, + 0xef83a0, + 0xef83a1, + 0xef83a2, + 0xef83a3, + 0xef83a4, + 0xef83a5, + 0xef83a6, + 0xef83a7, + 0xef83a8, + 0xef83a9, + 0xef83aa, + 0xef83ab, + 0xef83ac, + 0xef83ad, + 0xef83ae, + 0xef83af, + 0xef83b0, + 0xef83b1, + 0xef83b2, + 0xef83b3, + 0xef83b4, + 0xef83b5, + 0xef83b6, + 0xef83b7, + 0xef83b8, + 0xef83b9, + 0xef83ba, + 0xef83bb, + 0xef83bc, + 0xef83bd, + 0xef83be, + 0xef83bf, + 0xef8480, + 0xef8481, + 0xef8482, + 0xef8483, + 0xef8484, + 0xef8485, + 0xef8486, + 0xef8487, + 0xef8488, + 0xef8489, + 0xef848a, + 0xef848b, + 0xef848c, + 0xef848d, + 0xef848e, + 0xef848f, + 0xef8490, + 0xef8491, + 0xef8492, + 0xef8493, + 0xef8494, + 0xef8495, + 0xef8496, + 0xef8497, + 0xef8498, + 0xef8499, + 0xef849a, + 0xef849b, + 0xef849c, + 0xef849d, + 0xef849e, + 0xef849f, + 0xef84a0, + 0xef84a1, + 0xef84a2, + 0xef84a3, + 0xef84a4, + 0xef84a5, + 0xef84a6, + 0xef84a7, + 0xef84a8, + 0xef84a9, + 0xef84aa, + 0xef84ab, + 0xef84ac, + 0xef84ad, + 0xef84ae, + 0xef84af, + 0xef84b0, + 0xef84b1, + 0xef84b2, + 0xef84b3, + 0xef84b4, + 0xef84b5, + 0xef84b6, + 0xef84b7, + 0xef84b8, + 0xef84b9, + 0xef84ba, + 0xef84bb, + 0xef84bc, + 0xef84bd, + 0xef84be, + 0xef84bf, + 0xef8580, + 0xef8581, + 0xef8582, + 0xef8583, + 0xef8584, + 0xef8585, + 0xef8586, + 0xef8587, + 0xef8588, + 0xef8589, + 0xef858a, + 0xef858b, + 0xef858c, + 0xef858d, + 0xef858e, + 0xef858f, + 0xef8590, + 0xef8591, + 0xef8592, + 0xef8593, + 0xef8594, + 0xef8595, + 0xef8596, + 0xef8597, + 0xef8598, + 0xef8599, + 0xef859a, + 0xef859b, + 0xef859c, + 0xef859d, + 0xef859e, + 0xef859f, + 0xef85a0, + 0xef85a1, + 0xef85a2, + 0xef85a3, + 0xef85a4, + 0xef85a5, + 0xef85a6, + 0xef85a7, + 0xef85a8, + 0xef85a9, + 0xef85aa, + 0xef85ab, + 0xef85ac, + 0xef85ad, + 0xef85ae, + 0xef85af, + 0xef85b0, + 0xef85b1, + 0xef85b2, + 0xef85b3, + 0xef85b4, + 0xef85b5, + 0xef85b6, + 0xef85b7, + 0xef85b8, + 0xef85b9, + 0xef85ba, + 0xef85bb, + 0xef85bc, + 0xef85bd, + 0xef85be, + 0xef85bf, + 0xef8680, + 0xef8681, + 0xef8682, + 0xef8683, + 0xef8684, + 0xef8685, + 0xef8686, + 0xef8687, + 0xef8688, + 0xef8689, + 0xef868a, + 0xef868b, + 0xef868c, + 0xef868d, + 0xef868e, + 0xef868f, + 0xef8690, + 0xef8691, + 0xef8692, + 0xef8693, + 0xef8694, + 0xef8695, + 0xef8696, + 0xef8697, + 0xef8698, + 0xef8699, + 0xef869a, + 0xef869b, + 0xef869c, + 0xef869d, + 0xef869e, + 0xef869f, + 0xef86a0, + 0xef86a1, + 0xef86a2, + 0xef86a3, + 0xef86a4, + 0xef86a5, + 0xef86a6, + 0xef86a7, + 0xef86a8, + 0xef86a9, + 0xef86aa, + 0xef86ab, + 0xef86ac, + 0xef86ad, + 0xef86ae, + 0xef86af, + 0xef86b0, + 0xef86b1, + 0xef86b2, + 0xef86b3, + 0xef86b4, + 0xef86b5, + 0xef86b6, + 0xef86b7, + 0xef86b8, + 0xef86b9, + 0xef86ba, + 0xef86bb, + 0xef86bc, + 0xef86bd, + 0xef86be, + 0xef86bf, + 0xef8780, + 0xef8781, + 0xef8782, + 0xef8783, + 0xef8784, + 0xef8785, + 0xef8786, + 0xef8787, + 0xef8788, + 0xef8789, + 0xef878a, + 0xef878b, + 0xef878c, + 0xef878d, + 0xef878e, + 0xef878f, + 0xef8790, + 0xef8791, + 0xef8792, + 0xef8793, + 0xef8794, + 0xef8795, + 0xef8796, + 0xef8797, + 0xef8798, + 0xef8799, + 0xef879a, + 0xef879b, + 0xef879c, + 0xef879d, + 0xef879e, + 0xef879f, + 0xef87a0, + 0xef87a1, + 0xef87a2, + 0xef87a3, + 0xef87a4, + 0xef87a5, + 0xef87a6, + 0xef87a7, + 0xef87a8, + 0xef87a9, + 0xef87aa, + 0xef87ab, + 0xef87ac, + 0xef87ad, + 0xef87ae, + 0xef87af, + 0xef87b0, + 0xef87b1, + 0xef87b2, + 0xef87b3, + 0xef87b4, + 0xef87b5, + 0xef87b6, + 0xef87b7, + 0xef87b8, + 0xef87b9, + 0xef87ba, + 0xef87bb, + 0xef87bc, + 0xef87bd, + 0xef87be, + 0xef87bf, + 0xef8880, + 0xef8881, + 0xef8882, + 0xef8883, + 0xef8884, + 0xef8885, + 0xef8886, + 0xef8887, + 0xef8888, + 0xef8889, + 0xef888a, + 0xef888b, + 0xef888c, + 0xef888d, + 0xef888e, + 0xef888f, + 0xef8890, + 0xef8891, + 0xef8892, + 0xef8893, + 0xef8894, + 0xef8895, + 0xef8896, + 0xef8897, + 0xef8898, + 0xef8899, + 0xef889a, + 0xef889b, + 0xef889c, + 0xef889d, + 0xef889e, + 0xef889f, + 0xef88a0, + 0xef88a1, + 0xef88a2, + 0xef88a3, + 0xef88a4, + 0xef88a5, + 0xef88a6, + 0xef88a7, + 0xef88a8, + 0xef88a9, + 0xef88aa, + 0xef88ab, + 0xef88ac, + 0xef88ad, + 0xef88ae, + 0xef88af, + 0xef88b0, + 0xef88b1, + 0xef88b2, + 0xef88b3, + 0xef88b4, + 0xef88b5, + 0xef88b6, + 0xef88b7, + 0xef88b8, + 0xef88b9, + 0xef88ba, + 0xef88bb, + 0xef88bc, + 0xef88bd, + 0xef88be, + 0xef88bf, + 0xef8980, + 0xef8981, + 0xef8982, + 0xef8983, + 0xef8984, + 0xef8985, + 0xef8986, + 0xef8987, + 0xef8988, + 0xef8989, + 0xef898a, + 0xef898b, + 0xef898c, + 0xef898d, + 0xef898e, + 0xef898f, + 0xef8990, + 0xef8991, + 0xef8992, + 0xef8993, + 0xef8994, + 0xef8995, + 0xef8996, + 0xef8997, + 0xef8998, + 0xef8999, + 0xef899a, + 0xef899b, + 0xef899c, + 0xef899d, + 0xef899e, + 0xef899f, + 0xef89a0, + 0xef89a1, + 0xef89a2, + 0xef89a3, + 0xef89a4, + 0xef89a5, + 0xef89a6, + 0xef89a7, + 0xef89a8, + 0xef89a9, + 0xef89aa, + 0xef89ab, + 0xef89ac, + 0xef89ad, + 0xef89ae, + 0xef89af, + 0xef89b0, + 0xef89b1, + 0xef89b2, + 0xef89b3, + 0xef89b4, + 0xef89b5, + 0xef89b6, + 0xef89b7, + 0xef89b8, + 0xef89b9, + 0xef89ba, + 0xef89bb, + 0xef89bc, + 0xef89bd, + 0xef89be, + 0xef89bf, + 0xef8a80, + 0xef8a81, + 0xef8a82, + 0xef8a83, + 0xef8a84, + 0xef8a85, + 0xef8a86, + 0xef8a87, + 0xef8a88, + 0xef8a89, + 0xef8a8a, + 0xef8a8b, + 0xef8a8c, + 0xef8a8d, + 0xef8a8e, + 0xef8a8f, + 0xef8a90, + 0xef8a91, + 0xef8a92, + 0xef8a93, + 0xef8a94, + 0xef8a95, + 0xef8a96, + 0xef8a97, + 0xef8a98, + 0xef8a99, + 0xef8a9a, + 0xef8a9b, + 0xef8a9c, + 0xef8a9d, + 0xef8a9e, + 0xef8a9f, + 0xef8aa0, + 0xef8aa1, + 0xef8aa2, + 0xef8aa3, + 0xef8aa4, + 0xef8aa5, + 0xef8aa6, + 0xef8aa7, + 0xef8aa8, + 0xef8aa9, + 0xef8aaa, + 0xef8aab, + 0xef8aac, + 0xef8aad, + 0xef8aae, + 0xef8aaf, + 0xef8ab0, + 0xef8ab1, + 0xef8ab2, + 0xef8ab3, + 0xef8ab4, + 0xef8ab5, + 0xef8ab6, + 0xef8ab7, + 0xef8ab8, + 0xef8ab9, + 0xef8aba, + 0xef8abb, + 0xef8abc, + 0xef8abd, + 0xef8abe, + 0xef8abf, + 0xef8b80, + 0xef8b81, + 0xef8b82, + 0xef8b83, + 0xef8b84, + 0xef8b85, + 0xef8b86, + 0xef8b87, + 0xef8b88, + 0xef8b89, + 0xef8b8a, + 0xef8b8b, + 0xef8b8c, + 0xef8b8d, + 0xef8b8e, + 0xef8b8f, + 0xef8b90, + 0xef8b91, + 0xef8b92, + 0xef8b93, + 0xef8b94, + 0xef8b95, + 0xef8b96, + 0xef8b97, + 0xef8b98, + 0xef8b99, + 0xef8b9a, + 0xef8b9b, + 0xef8b9c, + 0xef8b9d, + 0xef8b9e, + 0xef8b9f, + 0xef8ba0, + 0xef8ba1, + 0xef8ba2, + 0xef8ba3, + 0xef8ba4, + 0xef8ba5, + 0xef8ba6, + 0xef8ba7, + 0xef8ba8, + 0xef8ba9, + 0xef8baa, + 0xef8bab, + 0xef8bac, + 0xef8bad, + 0xef8bae, + 0xef8baf, + 0xef8bb0, + 0xef8bb1, + 0xef8bb2, + 0xef8bb3, + 0xef8bb4, + 0xef8bb5, + 0xef8bb6, + 0xef8bb7, + 0xef8bb8, + 0xef8bb9, + 0xef8bba, + 0xef8bbb, + 0xef8bbc, + 0xef8bbd, + 0xef8bbe, + 0xef8bbf, + 0xef8c80, + 0xef8c81, + 0xef8c82, + 0xef8c83, + 0xef8c84, + 0xef8c85, + 0xef8c86, + 0xef8c87, + 0xef8c88, + 0xef8c89, + 0xef8c8a, + 0xef8c8b, + 0xef8c8c, + 0xef8c8d, + 0xef8c8e, + 0xef8c8f, + 0xef8c90, + 0xef8c91, + 0xef8c92, + 0xef8c93, + 0xef8c94, + 0xef8c95, + 0xef8c96, + 0xef8c97, + 0xef8c98, + 0xef8c99, + 0xef8c9a, + 0xef8c9b, + 0xef8c9c, + 0xef8c9d, + 0xef8c9e, + 0xef8c9f, + 0xef8ca0, + 0xef8ca1, + 0xef8ca2, + 0xef8ca3, + 0xef8ca4, + 0xef8ca5, + 0xef8ca6, + 0xef8ca7, + 0xef8ca8, + 0xef8ca9, + 0xef8caa, + 0xef8cab, + 0xef8cac, + 0xef8cad, + 0xef8cae, + 0xef8caf, + 0xef8cb0, + 0xef8cb1, + 0xef8cb2, + 0xef8cb3, + 0xef8cb4, + 0xef8cb5, + 0xef8cb6, + 0xef8cb7, + 0xef8cb8, + 0xef8cb9, + 0xef8cba, + 0xef8cbb, + 0xef8cbc, + 0xef8cbd, + 0xef8cbe, + 0xef8cbf, + 0xef8d80, + 0xef8d81, + 0xef8d82, + 0xef8d83, + 0xef8d84, + 0xef8d85, + 0xef8d86, + 0xef8d87, + 0xef8d88, + 0xef8d89, + 0xef8d8a, + 0xef8d8b, + 0xef8d8c, + 0xef8d8d, + 0xef8d8e, + 0xef8d8f, + 0xef8d90, + 0xef8d91, + 0xef8d92, + 0xef8d93, + 0xef8d94, + 0xef8d95, + 0xef8d96, + 0xef8d97, + 0xef8d98, + 0xef8d99, + 0xef8d9a, + 0xef8d9b, + 0xef8d9c, + 0xef8d9d, + 0xef8d9e, + 0xef8d9f, + 0xef8da0, + 0xef8da1, + 0xef8da2, + 0xef8da3, + 0xef8da4, + 0xef8da5, + 0xef8da6, + 0xef8da7, + 0xef8da8, + 0xef8da9, + 0xef8daa, + 0xef8dab, + 0xef8dac, + 0xef8dad, + 0xef8dae, + 0xef8daf, + 0xef8db0, + 0xef8db1, + 0xef8db2, + 0xef8db3, + 0xef8db4, + 0xef8db5, + 0xef8db6, + 0xef8db7, + 0xef8db8, + 0xef8db9, + 0xef8dba, + 0xef8dbb, + 0xef8dbc, + 0xef8dbd, + 0xef8dbe, + 0xef8dbf, + 0xef8e80, + 0xef8e81, + 0xef8e82, + 0xef8e83, + 0xef8e84, + 0xef8e85, + 0xef8e86, + 0xef8e87, + 0xef8e88, + 0xef8e89, + 0xef8e8a, + 0xef8e8b, + 0xef8e8c, + 0xef8e8d, + 0xef8e8e, + 0xef8e8f, + 0xef8e90, + 0xef8e91, + 0xef8e92, + 0xef8e93, + 0xef8e94, + 0xef8e95, + 0xef8e96, + 0xef8e97, + 0xef8e98, + 0xef8e99, + 0xef8e9a, + 0xef8e9b, + 0xef8e9c, + 0xef8e9d, + 0xef8e9e, + 0xef8e9f, + 0xef8ea0, + 0xef8ea1, + 0xef8ea2, + 0xef8ea3, + 0xef8ea4, + 0xef8ea5, + 0xef8ea6, + 0xef8ea7, + 0xef8ea8, + 0xef8ea9, + 0xef8eaa, + 0xef8eab, + 0xef8eac, + 0xef8ead, + 0xef8eae, + 0xef8eaf, + 0xef8eb0, + 0xef8eb1, + 0xef8eb2, + 0xef8eb3, + 0xef8eb4, + 0xef8eb5, + 0xef8eb6, + 0xef8eb7, + 0xef8eb8, + 0xef8eb9, + 0xef8eba, + 0xef8ebb, + 0xef8ebc, + 0xef8ebd, + 0xef8ebe, + 0xef8ebf, + 0xef8f80, + 0xef8f81, + 0xef8f82, + 0xef8f83, + 0xef8f84, + 0xef8f85, + 0xef8f86, + 0xef8f87, + 0xef8f88, + 0xef8f89, + 0xef8f8a, + 0xef8f8b, + 0xef8f8c, + 0xef8f8d, + 0xef8f8e, + 0xef8f8f, + 0xef8f90, + 0xef8f91, + 0xef8f92, + 0xef8f93, + 0xef8f94, + 0xef8f95, + 0xef8f96, + 0xef8f97, + 0xef8f98, + 0xef8f99, + 0xef8f9a, + 0xef8f9b, + 0xef8f9c, + 0xef8f9d, + 0xef8f9e, + 0xef8f9f, + 0xef8fa0, + 0xef8fa1, + 0xef8fa2, + 0xef8fa3, + 0xef8fa4, + 0xef8fa5, + 0xef8fa6, + 0xef8fa7, + 0xef8fa8, + 0xef8fa9, + 0xef8faa, + 0xef8fab, + 0xef8fac, + 0xef8fad, + 0xef8fae, + 0xef8faf, + 0xef8fb0, + 0xef8fb1, + 0xef8fb2, + 0xef8fb3, + 0xef8fb4, + 0xef8fb5, + 0xef8fb6, + 0xef8fb7, + 0xef8fb8, + 0xef8fb9, + 0xef8fba, + 0xef8fbb, + 0xef8fbc, + 0xef8fbd, + 0xef8fbe, + 0xef8fbf, + 0xef9080, + 0xef9081, + 0xef9082, + 0xef9083, + 0xef9084, + 0xef9085, + 0xef9086, + 0xef9087, + 0xef9088, + 0xef9089, + 0xef908a, + 0xef908b, + 0xef908c, + 0xef908d, + 0xef908e, + 0xef908f, + 0xef9090, + 0xef9091, + 0xef9092, + 0xef9093, + 0xef9094, + 0xef9095, + 0xef9096, + 0xef9097, + 0xef9098, + 0xef9099, + 0xef909a, + 0xef909b, + 0xef909c, + 0xef909d, + 0xef909e, + 0xef909f, + 0xef90a0, + 0xef90a1, + 0xef90a2, + 0xef90a3, + 0xef90a4, + 0xef90a5, + 0xef90a6, + 0xef90a7, + 0xef90a8, + 0xef90a9, + 0xef90aa, + 0xef90ab, + 0xef90ac, + 0xef90ad, + 0xef90ae, + 0xef90af, + 0xef90b0, + 0xef90b1, + 0xef90b2, + 0xef90b3, + 0xef90b4, + 0xef90b5, + 0xef90b6, + 0xef90b7, + 0xef90b8, + 0xef90b9, + 0xef90ba, + 0xef90bb, + 0xef90bc, + 0xef90bd, + 0xef90be, + 0xef90bf, + 0xef9180, + 0xef9181, + 0xef9182, + 0xef9183, + 0xef9184, + 0xef9185, + 0xef9186, + 0xef9187, + 0xef9188, + 0xef9189, + 0xef918a, + 0xef918b, + 0xef918c, + 0xef918d, + 0xef918e, + 0xef918f, + 0xef9190, + 0xef9191, + 0xef9192, + 0xef9193, + 0xef9194, + 0xef9195, + 0xef9196, + 0xef9197, + 0xef9198, + 0xef9199, + 0xef919a, + 0xef919b, + 0xef919c, + 0xef919d, + 0xef919e, + 0xef919f, + 0xef91a0, + 0xef91a1, + 0xef91a2, + 0xef91a3, + 0xef91a4, + 0xef91a5, + 0xef91a6, + 0xef91a7, + 0xef91a8, + 0xef91a9, + 0xef91aa, + 0xef91ab, + 0xef91ac, + 0xef91ad, + 0xef91ae, + 0xef91af, + 0xef91b0, + 0xef91b1, + 0xef91b2, + 0xef91b3, + 0xef91b4, + 0xef91b5, + 0xef91b6, + 0xef91b7, + 0xef91b8, + 0xef91b9, + 0xef91ba, + 0xef91bb, + 0xef91bc, + 0xef91bd, + 0xef91be, + 0xef91bf, + 0xef9280, + 0xef9281, + 0xef9282, + 0xef9283, + 0xef9284, + 0xef9285, + 0xef9286, + 0xef9287, + 0xef9288, + 0xef9289, + 0xef928a, + 0xef928b, + 0xef928c, + 0xef928d, + 0xef928e, + 0xef928f, + 0xef9290, + 0xef9291, + 0xef9292, + 0xef9293, + 0xef9294, + 0xef9295, + 0xef9296, + 0xef9297, + 0xef9298, + 0xef9299, + 0xef929a, + 0xef929b, + 0xef929c, + 0xef929d, + 0xef929e, + 0xef929f, + 0xef92a0, + 0xef92a1, + 0xef92a2, + 0xef92a3, + 0xef92a4, + 0xef92a5, + 0xef92a6, + 0xef92a7, + 0xef92a8, + 0xef92a9, + 0xef92aa, + 0xef92ab, + 0xef92ac, + 0xef92ad, + 0xef92ae, + 0xef92af, + 0xef92b0, + 0xef92b1, + 0xef92b2, + 0xef92b3, + 0xef92b4, + 0xef92b5, + 0xef92b6, + 0xef92b7, + 0xef92b8, + 0xef92b9, + 0xef92ba, + 0xef92bb, + 0xef92bc, + 0xef92bd, + 0xef92be, + 0xef92bf, + 0xef9380, + 0xef9381, + 0xef9382, + 0xef9383, + 0xef9384, + 0xef9385, + 0xef9386, + 0xef9387, + 0xef9388, + 0xef9389, + 0xef938a, + 0xef938b, + 0xef938c, + 0xef938d, + 0xef938e, + 0xef938f, + 0xef9390, + 0xef9391, + 0xef9392, + 0xef9393, + 0xef9394, + 0xef9395, + 0xef9396, + 0xef9397, + 0xef9398, + 0xef9399, + 0xef939a, + 0xef939b, + 0xef939c, + 0xef939d, + 0xef939e, + 0xef939f, + 0xef93a0, + 0xef93a1, + 0xef93a2, + 0xef93a3, + 0xef93a4, + 0xef93a5, + 0xef93a6, + 0xef93a7, + 0xef93a8, + 0xef93a9, + 0xef93aa, + 0xef93ab, + 0xef93ac, + 0xef93ad, + 0xef93ae, + 0xef93af, + 0xef93b0, + 0xef93b1, + 0xef93b2, + 0xef93b3, + 0xef93b4, + 0xef93b5, + 0xef93b6, + 0xef93b7, + 0xef93b8, + 0xef93b9, + 0xef93ba, + 0xef93bb, + 0xef93bc, + 0xef93bd, + 0xef93be, + 0xef93bf, + 0xef9480, + 0xef9481, + 0xef9482, + 0xef9483, + 0xef9484, + 0xef9485, + 0xef9486, + 0xef9487, + 0xef9488, + 0xef9489, + 0xef948a, + 0xef948b, + 0xef948c, + 0xef948d, + 0xef948e, + 0xef948f, + 0xef9490, + 0xef9491, + 0xef9492, + 0xef9493, + 0xef9494, + 0xef9495, + 0xef9496, + 0xef9497, + 0xef9498, + 0xef9499, + 0xef949a, + 0xef949b, + 0xef949c, + 0xef949d, + 0xef949e, + 0xef949f, + 0xef94a0, + 0xef94a1, + 0xef94a2, + 0xef94a3, + 0xef94a4, + 0xef94a5, + 0xef94a6, + 0xef94a7, + 0xef94a8, + 0xef94a9, + 0xef94aa, + 0xef94ab, + 0xef94ac, + 0xef94ad, + 0xef94ae, + 0xef94af, + 0xef94b0, + 0xef94b1, + 0xef94b2, + 0xef94b3, + 0xef94b4, + 0xef94b5, + 0xef94b6, + 0xef94b7, + 0xef94b8, + 0xef94b9, + 0xef94ba, + 0xef94bb, + 0xef94bc, + 0xef94bd, + 0xef94be, + 0xef94bf, + 0xef9580, + 0xef9581, + 0xef9582, + 0xef9583, + 0xef9584, + 0xef9585, + 0xef9586, + 0xef9587, + 0xef9588, + 0xef9589, + 0xef958a, + 0xef958b, + 0xef958c, + 0xef958d, + 0xef958e, + 0xef958f, + 0xef9590, + 0xef9591, + 0xef9592, + 0xef9593, + 0xef9594, + 0xef9595, + 0xef9596, + 0xef9597, + 0xef9598, + 0xef9599, + 0xef959a, + 0xef959b, + 0xef959c, + 0xef959d, + 0xef959e, + 0xef959f, + 0xef95a0, + 0xef95a1, + 0xef95a2, + 0xef95a3, + 0xef95a4, + 0xef95a5, + 0xef95a6, + 0xef95a7, + 0xef95a8, + 0xef95a9, + 0xef95aa, + 0xef95ab, + 0xef95ac, + 0xef95ad, + 0xef95ae, + 0xef95af, + 0xef95b0, + 0xef95b1, + 0xef95b2, + 0xef95b3, + 0xef95b4, + 0xef95b5, + 0xef95b6, + 0xef95b7, + 0xef95b8, + 0xef95b9, + 0xef95ba, + 0xef95bb, + 0xef95bc, + 0xef95bd, + 0xef95be, + 0xef95bf, + 0xef9680, + 0xef9681, + 0xef9682, + 0xef9683, + 0xef9684, + 0xef9685, + 0xef9686, + 0xef9687, + 0xef9688, + 0xef9689, + 0xef968a, + 0xef968b, + 0xef968c, + 0xef968d, + 0xef968e, + 0xef968f, + 0xef9690, + 0xef9691, + 0xef9692, + 0xef9693, + 0xef9694, + 0xef9695, + 0xef9696, + 0xef9697, + 0xef9698, + 0xef9699, + 0xef969a, + 0xef969b, + 0xef969c, + 0xef969d, + 0xef969e, + 0xef969f, + 0xef96a0, + 0xef96a1, + 0xef96a2, + 0xef96a3, + 0xef96a4, + 0xef96a5, + 0xef96a6, + 0xef96a7, + 0xef96a8, + 0xef96a9, + 0xef96aa, + 0xef96ab, + 0xef96ac, + 0xef96ad, + 0xef96ae, + 0xef96af, + 0xef96b0, + 0xef96b1, + 0xef96b2, + 0xef96b3, + 0xef96b4, + 0xef96b5, + 0xef96b6, + 0xef96b7, + 0xef96b8, + 0xef96b9, + 0xef96ba, + 0xef96bb, + 0xef96bc, + 0xef96bd, + 0xef96be, + 0xef96bf, + 0xef9780, + 0xef9781, + 0xef9782, + 0xef9783, + 0xef9784, + 0xef9785, + 0xef9786, + 0xef9787, + 0xef9788, + 0xef9789, + 0xef978a, + 0xef978b, + 0xef978c, + 0xef978d, + 0xef978e, + 0xef978f, + 0xef9790, + 0xef9791, + 0xef9792, + 0xef9793, + 0xef9794, + 0xef9795, + 0xef9796, + 0xef9797, + 0xef9798, + 0xef9799, + 0xef979a, + 0xef979b, + 0xef979c, + 0xef979d, + 0xef979e, + 0xef979f, + 0xef97a0, + 0xef97a1, + 0xef97a2, + 0xef97a3, + 0xef97a4, + 0xef97a5, + 0xef97a6, + 0xef97a7, + 0xef97a8, + 0xef97a9, + 0xef97aa, + 0xef97ab, + 0xef97ac, + 0xef97ad, + 0xef97ae, + 0xef97af, + 0xef97b0, + 0xef97b1, + 0xef97b2, + 0xef97b3, + 0xef97b4, + 0xef97b5, + 0xef97b6, + 0xef97b7, + 0xef97b8, + 0xef97b9, + 0xef97ba, + 0xef97bb, + 0xef97bc, + 0xef97bd, + 0xef97be, + 0xef97bf, + 0xef9880, + 0xef9881, + 0xef9882, + 0xef9883, + 0xef9884, + 0xef9885, + 0xef9886, + 0xef9887, + 0xef9888, + 0xef9889, + 0xef988a, + 0xef988b, + 0xef988c, + 0xef988d, + 0xef988e, + 0xef988f, + 0xef9890, + 0xef9891, + 0xef9892, + 0xef9893, + 0xef9894, + 0xef9895, + 0xef9896, + 0xef9897, + 0xef9898, + 0xef9899, + 0xef989a, + 0xef989b, + 0xef989c, + 0xef989d, + 0xef989e, + 0xef989f, + 0xef98a0, + 0xef98a1, + 0xef98a2, + 0xef98a3, + 0xef98a4, + 0xef98a5, + 0xef98a6, + 0xef98a7, + 0xef98a8, + 0xef98a9, + 0xef98aa, + 0xef98ab, + 0xef98ac, + 0xef98ad, + 0xef98ae, + 0xef98af, + 0xef98b0, + 0xef98b1, + 0xef98b2, + 0xef98b3, + 0xef98b4, + 0xef98b5, + 0xef98b6, + 0xef98b7, + 0xef98b8, + 0xef98b9, + 0xef98ba, + 0xef98bb, + 0xef98bc, + 0xef98bd, + 0xef98be, + 0xef98bf, + 0xef9980, + 0xef9981, + 0xef9982, + 0xef9983, + 0xef9984, + 0xef9985, + 0xef9986, + 0xef9987, + 0xef9988, + 0xef9989, + 0xef998a, + 0xef998b, + 0xef998c, + 0xef998d, + 0xef998e, + 0xef998f, + 0xef9990, + 0xef9991, + 0xef9992, + 0xef9993, + 0xef9994, + 0xef9995, + 0xef9996, + 0xef9997, + 0xef9998, + 0xef9999, + 0xef999a, + 0xef999b, + 0xef999c, + 0xef999d, + 0xef999e, + 0xef999f, + 0xef99a0, + 0xef99a1, + 0xef99a2, + 0xef99a3, + 0xef99a4, + 0xef99a5, + 0xef99a6, + 0xef99a7, + 0xef99a8, + 0xef99a9, + 0xef99aa, + 0xef99ab, + 0xef99ac, + 0xef99ad, + 0xef99ae, + 0xef99af, + 0xef99b0, + 0xef99b1, + 0xef99b2, + 0xef99b3, + 0xef99b4, + 0xef99b5, + 0xef99b6, + 0xef99b7, + 0xef99b8, + 0xef99b9, + 0xef99ba, + 0xef99bb, + 0xef99bc, + 0xef99bd, + 0xef99be, + 0xef99bf, + 0xef9a80, + 0xef9a81, + 0xef9a82, + 0xef9a83, + 0xef9a84, + 0xef9a85, + 0xef9a86, + 0xef9a87, + 0xef9a88, + 0xef9a89, + 0xef9a8a, + 0xef9a8b, + 0xef9a8c, + 0xef9a8d, + 0xef9a8e, + 0xef9a8f, + 0xef9a90, + 0xef9a91, + 0xef9a92, + 0xef9a93, + 0xef9a94, + 0xef9a95, + 0xef9a96, + 0xef9a97, + 0xef9a98, + 0xef9a99, + 0xef9a9a, + 0xef9a9b, + 0xef9a9c, + 0xef9a9d, + 0xef9a9e, + 0xef9a9f, + 0xef9aa0, + 0xef9aa1, + 0xef9aa2, + 0xef9aa3, + 0xef9aa4, + 0xef9aa5, + 0xef9aa6, + 0xef9aa7, + 0xef9aa8, + 0xef9aa9, + 0xef9aaa, + 0xef9aab, + 0xef9aac, + 0xef9aad, + 0xef9aae, + 0xef9aaf, + 0xef9ab0, + 0xef9ab1, + 0xef9ab2, + 0xef9ab3, + 0xef9ab4, + 0xef9ab5, + 0xef9ab6, + 0xef9ab7, + 0xef9ab8, + 0xef9ab9, + 0xef9aba, + 0xef9abb, + 0xef9abc, + 0xef9abd, + 0xef9abe, + 0xef9abf, + 0xef9b80, + 0xef9b81, + 0xef9b82, + 0xef9b83, + 0xef9b84, + 0xef9b85, + 0xef9b86, + 0xef9b87, + 0xef9b88, + 0xef9b89, + 0xef9b8a, + 0xef9b8b, + 0xef9b8c, + 0xef9b8d, + 0xef9b8e, + 0xef9b8f, + 0xef9b90, + 0xef9b91, + 0xef9b92, + 0xef9b93, + 0xef9b94, + 0xef9b95, + 0xef9b96, + 0xef9b97, + 0xef9b98, + 0xef9b99, + 0xef9b9a, + 0xef9b9b, + 0xef9b9c, + 0xef9b9d, + 0xef9b9e, + 0xef9b9f, + 0xef9ba0, + 0xef9ba1, + 0xef9ba2, + 0xef9ba3, + 0xef9ba4, + 0xef9ba5, + 0xef9ba6, + 0xef9ba7, + 0xef9ba8, + 0xef9ba9, + 0xef9baa, + 0xef9bab, + 0xef9bac, + 0xef9bad, + 0xef9bae, + 0xef9baf, + 0xef9bb0, + 0xef9bb1, + 0xef9bb2, + 0xef9bb3, + 0xef9bb4, + 0xef9bb5, + 0xef9bb6, + 0xef9bb7, + 0xef9bb8, + 0xef9bb9, + 0xef9bba, + 0xef9bbb, + 0xef9bbc, + 0xef9bbd, + 0xef9bbe, + 0xef9bbf, + 0xef9c80, + 0xef9c81, + 0xef9c82, + 0xef9c83, + 0xef9c84, + 0xef9c85, + 0xef9c86, + 0xef9c87, + 0xef9c88, + 0xef9c89, + 0xef9c8a, + 0xef9c8b, + 0xef9c8c, + 0xef9c8d, + 0xef9c8e, + 0xef9c8f, + 0xef9c90, + 0xef9c91, + 0xef9c92, + 0xef9c93, + 0xef9c94, + 0xef9c95, + 0xef9c96, + 0xef9c97, + 0xef9c98, + 0xef9c99, + 0xef9c9a, + 0xef9c9b, + 0xef9c9c, + 0xef9c9d, + 0xef9c9e, + 0xef9c9f, + 0xef9ca0, + 0xef9ca1, + 0xef9ca2, + 0xef9ca3, + 0xef9ca4, + 0xef9ca5, + 0xef9ca6, + 0xef9ca7, + 0xef9ca8, + 0xef9ca9, + 0xef9caa, + 0xef9cab, + 0xef9cac, + 0xef9cad, + 0xef9cae, + 0xef9caf, + 0xef9cb0, + 0xef9cb1, + 0xef9cb2, + 0xef9cb3, + 0xef9cb4, + 0xef9cb5, + 0xef9cb6, + 0xef9cb7, + 0xef9cb8, + 0xef9cb9, + 0xef9cba, + 0xef9cbb, + 0xef9cbc, + 0xef9cbd, + 0xef9cbe, + 0xef9cbf, + 0xef9d80, + 0xef9d81, + 0xef9d82, + 0xef9d83, + 0xef9d84, + 0xef9d85, + 0xef9d86, + 0xef9d87, + 0xef9d88, + 0xef9d89, + 0xef9d8a, + 0xef9d8b, + 0xef9d8c, + 0xef9d8d, + 0xef9d8e, + 0xef9d8f, + 0xef9d90, + 0xef9d91, + 0xef9d92, + 0xef9d93, + 0xef9d94, + 0xef9d95, + 0xef9d96, + 0xef9d97, + 0xef9d98, + 0xef9d99, + 0xef9d9a, + 0xef9d9b, + 0xef9d9c, + 0xef9d9d, + 0xef9d9e, + 0xef9d9f, + 0xef9da0, + 0xef9da1, + 0xef9da2, + 0xef9da3, + 0xef9da4, + 0xef9da5, + 0xef9da6, + 0xef9da7, + 0xef9da8, + 0xef9da9, + 0xef9daa, + 0xef9dab, + 0xef9dac, + 0xef9dad, + 0xef9dae, + 0xef9daf, + 0xef9db0, + 0xef9db1, + 0xef9db2, + 0xef9db3, + 0xef9db4, + 0xef9db5, + 0xef9db6, + 0xef9db7, + 0xef9db8, + 0xef9db9, + 0xef9dba, + 0xef9dbb, + 0xef9dbc, + 0xef9dbd, + 0xef9dbe, + 0xef9dbf, + 0xef9e80, + 0xef9e81, + 0xef9e82, + 0xef9e83, + 0xef9e84, + 0xef9e85, + 0xef9e86, + 0xef9e87, + 0xef9e88, + 0xef9e89, + 0xef9e8a, + 0xef9e8b, + 0xef9e8c, + 0xef9e8d, + 0xef9e8e, + 0xef9e8f, + 0xef9e90, + 0xef9e91, + 0xef9e92, + 0xef9e93, + 0xef9e94, + 0xef9e95, + 0xef9e96, + 0xef9e97, + 0xef9e98, + 0xef9e99, + 0xef9e9a, + 0xef9e9b, + 0xef9e9c, + 0xef9e9d, + 0xef9e9e, + 0xef9e9f, + 0xef9ea0, + 0xef9ea1, + 0xef9ea2, + 0xef9ea3, + 0xef9ea4, + 0xef9ea5, + 0xef9ea6, + 0xef9ea7, + 0xef9ea8, + 0xef9ea9, + 0xef9eaa, + 0xef9eab, + 0xef9eac, + 0xef9ead, + 0xef9eae, + 0xef9eaf, + 0xef9eb0, + 0xef9eb1, + 0xef9eb2, + 0xef9eb3, + 0xef9eb4, + 0xef9eb5, + 0xef9eb6, + 0xef9eb7, + 0xef9eb8, + 0xef9eb9, + 0xef9eba, + 0xef9ebb, + 0xef9ebc, + 0xef9ebd, + 0xef9ebe, + 0xef9ebf, + 0xef9f80, + 0xef9f81, + 0xef9f82, + 0xef9f83, + 0xef9f84, + 0xef9f85, + 0xef9f86, + 0xef9f87, + 0xef9f88, + 0xef9f89, + 0xef9f8a, + 0xef9f8b, + 0xef9f8c, + 0xef9f8d, + 0xef9f8e, + 0xef9f8f, + 0xef9f90, + 0xef9f91, + 0xef9f92, + 0xef9f93, + 0xef9f94, + 0xef9f95, + 0xef9f96, + 0xef9f97, + 0xef9f98, + 0xef9f99, + 0xef9f9a, + 0xef9f9b, + 0xef9f9c, + 0xef9f9d, + 0xef9f9e, + 0xef9f9f, + 0xef9fa0, + 0xef9fa1, + 0xef9fa2, + 0xef9fa3, + 0xef9fa4, + 0xef9fa5, + 0xef9fa6, + 0xef9fa7, + 0xef9fa8, + 0xef9fa9, + 0xef9faa, + 0xef9fab, + 0xef9fac, + 0xef9fad, + 0xef9fae, + 0xef9faf, + 0xef9fb0, + 0xef9fb1, + 0xef9fb2, + 0xef9fb3, + 0xef9fb4, + 0xef9fb5, + 0xef9fb6, + 0xef9fb7, + 0xef9fb8, + 0xef9fb9, + 0xef9fba, + 0xef9fbb, + 0xef9fbc, + 0xef9fbd, + 0xef9fbe, + 0xef9fbf, + 0xefa080, + 0xefa081, + 0xefa082, + 0xefa083, + 0xefa084, + 0xefa085, + 0xefa086, + 0xefa087, + 0xefa088, + 0xefa089, + 0xefa08a, + 0xefa08b, + 0xefa08c, + 0xefa08d, + 0xefa08e, + 0xefa08f, + 0xefa090, + 0xefa091, + 0xefa092, + 0xefa093, + 0xefa094, + 0xefa095, + 0xefa096, + 0xefa097, + 0xefa098, + 0xefa099, + 0xefa09a, + 0xefa09b, + 0xefa09c, + 0xefa09d, + 0xefa09e, + 0xefa09f, + 0xefa0a0, + 0xefa0a1, + 0xefa0a2, + 0xefa0a3, + 0xefa0a4, + 0xefa0a5, + 0xefa0a6, + 0xefa0a7, + 0xefa0a8, + 0xefa0a9, + 0xefa0aa, + 0xefa0ab, + 0xefa0ac, + 0xefa0ad, + 0xefa0ae, + 0xefa0af, + 0xefa0b0, + 0xefa0b1, + 0xefa0b2, + 0xefa0b3, + 0xefa0b4, + 0xefa0b5, + 0xefa0b6, + 0xefa0b7, + 0xefa0b8, + 0xefa0b9, + 0xefa0ba, + 0xefa0bb, + 0xefa0bc, + 0xefa0bd, + 0xefa0be, + 0xefa0bf, + 0xefa180, + 0xefa181, + 0xefa182, + 0xefa183, + 0xefa184, + 0xefa185, + 0xefa186, + 0xefa187, + 0xefa188, + 0xefa189, + 0xefa18a, + 0xefa18b, + 0xefa18c, + 0xefa18d, + 0xefa18e, + 0xefa18f, + 0xefa190, + 0xefa191, + 0xefa192, + 0xefa193, + 0xefa194, + 0xefa195, + 0xefa196, + 0xefa197, + 0xefa198, + 0xefa199, + 0xefa19a, + 0xefa19b, + 0xefa19c, + 0xefa19d, + 0xefa19e, + 0xefa19f, + 0xefa1a0, + 0xefa1a1, + 0xefa1a2, + 0xefa1a3, + 0xefa1a4, + 0xefa1a5, + 0xefa1a6, + 0xefa1a7, + 0xefa1a8, + 0xefa1a9, + 0xefa1aa, + 0xefa1ab, + 0xefa1ac, + 0xefa1ad, + 0xefa1ae, + 0xefa1af, + 0xefa1b0, + 0xefa1b1, + 0xefa1b2, + 0xefa1b3, + 0xefa1b4, + 0xefa1b5, + 0xefa1b6, + 0xefa1b7, + 0xefa1b8, + 0xefa1b9, + 0xefa1ba, + 0xefa1bb, + 0xefa1bc, + 0xefa1bd, + 0xefa1be, + 0xefa1bf, + 0xefa280, + 0xefa281, + 0xefa282, + 0xefa283, + 0xefa284, + 0xefa285, + 0xefa286, + 0xefa287, + 0xefa288, + 0xefa289, + 0xefa28a, + 0xefa28b, + 0xefa28c, + 0xefa28d, + 0xefa28e, + 0xefa28f, + 0xefa290, + 0xefa291, + 0xefa292, + 0xefa293, + 0xefa294, + 0xefa295, + 0xefa296, + 0xefa297, + 0xefa298, + 0xefa299, + 0xefa29a, + 0xefa29b, + 0xefa29c, + 0xefa29d, + 0xefa29e, + 0xefa29f, + 0xefa2a0, + 0xefa2a1, + 0xefa2a2, + 0xefa2a3, + 0xefa2a4, + 0xefa2a5, + 0xefa2a6, + 0xefa2a7, + 0xefa2a8, + 0xefa2a9, + 0xefa2aa, + 0xefa2ab, + 0xefa2ac, + 0xefa2ad, + 0xefa2ae, + 0xefa2af, + 0xefa2b0, + 0xefa2b1, + 0xefa2b2, + 0xefa2b3, + 0xefa2b4, + 0xefa2b5, + 0xefa2b6, + 0xefa2b7, + 0xefa2b8, + 0xefa2b9, + 0xefa2ba, + 0xefa2bb, + 0xefa2bc, + 0xefa2bd, + 0xefa2be, + 0xefa2bf, + 0xefa380, + 0xefa381, + 0xefa382, + 0xefa383, + 0xefa384, + 0xefa385, + 0xefa386, + 0xefa387, + 0xefa388, + 0xefa389, + 0xefa38a, + 0xefa38b, + 0xefa38c, + 0xefa38d, + 0xefa38e, + 0xefa38f, + 0xefa390, + 0xefa391, + 0xefa392, + 0xefa393, + 0xefa394, + 0xefa395, + 0xefa396, + 0xefa397, + 0xefa398, + 0xefa399, + 0xefa39a, + 0xefa39b, + 0xefa39c, + 0xefa39d, + 0xefa39e, + 0xefa39f, + 0xefa3a0, + 0xefa3a1, + 0xefa3a2, + 0xefa3a3, + 0xefa3a4, + 0xefa3a5, + 0xefa3a6, + 0xefa3a7, + 0xefa3a8, + 0xefa3a9, + 0xefa3aa, + 0xefa3ab, + 0xefa3ac, + 0xefa3ad, + 0xefa3ae, + 0xefa3af, + 0xefa3b0, + 0xefa3b1, + 0xefa3b2, + 0xefa3b3, + 0xefa3b4, + 0xefa3b5, + 0xefa3b6, + 0xefa3b7, + 0xefa3b8, + 0xefa3b9, + 0xefa3ba, + 0xefa3bb, + 0xefa3bc, + 0xefa3bd, + 0xefa3be, + 0xefa3bf, + 0xefa480, + 0xefa481, + 0xefa482, + 0xefa483, + 0xefa484, + 0xefa485, + 0xefa486, + 0xefa487, + 0xefa488, + 0xefa489, + 0xefa48a, + 0xefa48b, + 0xefa48c, + 0xefa48d, + 0xefa48e, + 0xefa48f, + 0xefa490, + 0xefa491, + 0xefa492, + 0xefa493, + 0xefa494, + 0xefa495, + 0xefa496, + 0xefa497, + 0xefa498, + 0xefa499, + 0xefa49a, + 0xefa49b, + 0xefa49c, + 0xefa49d, + 0xefa49e, + 0xefa49f, + 0xefa4a0, + 0xefa4a1, + 0xefa4a2, + 0xefa4a3, + 0xefa4a4, + 0xefa4a5, + 0xefa4a6, + 0xefa4a7, + 0xefa4a8, + 0xefa4a9, + 0xefa4aa, + 0xefa4ab, + 0xefa4ac, + 0xefa4ad, + 0xefa4ae, + 0xefa4af, + 0xefa4b0, + 0xefa4b1, + 0xefa4b2, + 0xefa4b3, + 0xefa4b4, + 0xefa4b5, + 0xefa4b6, + 0xefa4b7, + 0xefa4b8, + 0xefa4b9, + 0xefa4ba, + 0xefa4bb, + 0xefa4bc, + 0xefa4bd, + 0xefa4be, + 0xefa4bf, + 0xefa580, + 0xefa581, + 0xefa582, + 0xefa583, + 0xefa584, + 0xefa585, + 0xefa586, + 0xefa587, + 0xefa588, + 0xefa589, + 0xefa58a, + 0xefa58b, + 0xefa58c, + 0xefa58d, + 0xefa58e, + 0xefa58f, + 0xefa590, + 0xefa591, + 0xefa592, + 0xefa593, + 0xefa594, + 0xefa595, + 0xefa596, + 0xefa597, + 0xefa598, + 0xefa599, + 0xefa59a, + 0xefa59b, + 0xefa59c, + 0xefa59d, + 0xefa59e, + 0xefa59f, + 0xefa5a0, + 0xefa5a1, + 0xefa5a2, + 0xefa5a3, + 0xefa5a4, + 0xefa5a5, + 0xefa5a6, + 0xefa5a7, + 0xefa5a8, + 0xefa5a9, + 0xefa5aa, + 0xefa5ab, + 0xefa5ac, + 0xefa5ad, + 0xefa5ae, + 0xefa5af, + 0xefa5b0, + 0xefa5b1, + 0xefa5b2, + 0xefa5b3, + 0xefa5b4, + 0xefa5b5, + 0xefa5b6, + 0xefa5b7, + 0xefa5b8, + 0xefa5b9, + 0xefa5ba, + 0xefa5bb, + 0xefa5bc, + 0xefa5bd, + 0xefa5be, + 0xefa5bf, + 0xefa680, + 0xefa681, + 0xefa682, + 0xefa683, + 0xefa684, + 0xefa685, + 0xefa686, + 0xefa687, + 0xefa688, + 0xefa689, + 0xefa68a, + 0xefa68b, + 0xefa68c, + 0xefa68d, + 0xefa68e, + 0xefa68f, + 0xefa690, + 0xefa691, + 0xefa692, + 0xefa693, + 0xefa694, + 0xefa695, + 0xefa696, + 0xefa697, + 0xefa698, + 0xefa699, + 0xefa69a, + 0xefa69b, + 0xefa69c, + 0xefa69d, + 0xefa69e, + 0xefa69f, + 0xefa6a0, + 0xefa6a1, + 0xefa6a2, + 0xefa6a3, + 0xefa6a4, + 0xefa6a5, + 0xefa6a6, + 0xefa6a7, + 0xefa6a8, + 0xefa6a9, + 0xefa6aa, + 0xefa6ab, + 0xefa6ac, + 0xefa6ad, + 0xefa6ae, + 0xefa6af, + 0xefa6b0, + 0xefa6b1, + 0xefa6b2, + 0xefa6b3, + 0xefa6b4, + 0xefa6b5, + 0xefa6b6, + 0xefa6b7, + 0xefa6b8, + 0xefa6b9, + 0xefa6ba, + 0xefa6bb, + 0xefa6bc, + 0xefa6bd, + 0xefa6be, + 0xefa6bf, + 0xefa780, + 0xefa781, + 0xefa782, + 0xefa783, + 0xefa784, + 0xefa785, + 0xefa786, + 0xefa787, + 0xefa788, + 0xefa789, + 0xefa78a, + 0xefa78b, + 0xefa78c, + 0xefa78d, + 0xefa78e, + 0xefa78f, + 0xefa790, + 0xefa791, + 0xefa792, + 0xefa793, + 0xefa794, + 0xefa795, + 0xefa796, + 0xefa797, + 0xefa798, + 0xefa799, + 0xefa79a, + 0xefa79b, + 0xefa79c, + 0xefa79d, + 0xefa79e, + 0xefa79f, + 0xefa7a0, + 0xefa7a1, + 0xefa7a2, + 0xefa7a3, + 0xefa7a4, + 0xefa7a5, + 0xefa7a6, + 0xefa7a7, + 0xefa7a8, + 0xefa7a9, + 0xefa7aa, + 0xefa7ab, + 0xefa7ac, + 0xefa7ad, + 0xefa7ae, + 0xefa7af, + 0xefa7b0, + 0xefa7b1, + 0xefa7b2, + 0xefa7b3, + 0xefa7b4, + 0xefa7b5, + 0xefa7b6, + 0xefa7b7, + 0xefa7b8, + 0xefa7b9, + 0xefa7ba, + 0xefa7bb, + 0xefa7bc, + 0xefa7bd, + 0xefa7be, + 0xefa7bf, + 0xefa880, + 0xefa881, + 0xefa882, + 0xefa883, + 0xefa884, + 0xefa885, + 0xefa886, + 0xefa887, + 0xefa888, + 0xefa889, + 0xefa88a, + 0xefa88b, + 0xefa88c, + 0xefa88d, + 0xefa88e, + 0xefa88f, + 0xefa890, + 0xefa891, + 0xefa892, + 0xefa893, + 0xefa894, + 0xefa895, + 0xefa896, + 0xefa897, + 0xefa898, + 0xefa899, + 0xefa89a, + 0xefa89b, + 0xefa89c, + 0xefa89d, + 0xefa89e, + 0xefa89f, + 0xefa8a0, + 0xefa8a1, + 0xefa8a2, + 0xefa8a3, + 0xefa8a4, + 0xefa8a5, + 0xefa8a6, + 0xefa8a7, + 0xefa8a8, + 0xefa8a9, + 0xefa8aa, + 0xefa8ab, + 0xefa8ac, + 0xefa8ad, + 0xefa8ae, + 0xefa8af, + 0xefa8b0, + 0xefa8b1, + 0xefa8b2, + 0xefa8b3, + 0xefa8b4, + 0xefa8b5, + 0xefa8b6, + 0xefa8b7, + 0xefa8b8, + 0xefa8b9, + 0xefa8ba, + 0xefa8bb, + 0xefa8bc, + 0xefa8bd, + 0xefa8be, + 0xefa8bf, + 0xefa980, + 0xefa981, + 0xefa982, + 0xefa983, + 0xefa984, + 0xefa985, + 0xefa986, + 0xefa987, + 0xefa988, + 0xefa989, + 0xefa98a, + 0xefa98b, + 0xefa98c, + 0xefa98d, + 0xefa98e, + 0xefa98f, + 0xefa990, + 0xefa991, + 0xefa992, + 0xefa993, + 0xefa994, + 0xefa995, + 0xefa996, + 0xefa997, + 0xefa998, + 0xefa999, + 0xefa99a, + 0xefa99b, + 0xefa99c, + 0xefa99d, + 0xefa99e, + 0xefa99f, + 0xefa9a0, + 0xefa9a1, + 0xefa9a2, + 0xefa9a3, + 0xefa9a4, + 0xefa9a5, + 0xefa9a6, + 0xefa9a7, + 0xefa9a8, + 0xefa9a9, + 0xefa9aa, + 0xefa9ab, + 0xefa9ac, + 0xefa9ad, + 0xefa9ae, + 0xefa9af, + 0xefa9b0, + 0xefa9b1, + 0xefa9b2, + 0xefa9b3, + 0xefa9b4, + 0xefa9b5, + 0xefa9b6, + 0xefa9b7, + 0xefa9b8, + 0xefa9b9, + 0xefa9ba, + 0xefa9bb, + 0xefa9bc, + 0xefa9bd, + 0xefa9be, + 0xefa9bf, + 0xefaa80, + 0xefaa81, + 0xefaa82, + 0xefaa83, + 0xefaa84, + 0xefaa85, + 0xefaa86, + 0xefaa87, + 0xefaa88, + 0xefaa89, + 0xefaa8a, + 0xefaa8b, + 0xefaa8c, + 0xefaa8d, + 0xefaa8e, + 0xefaa8f, + 0xefaa90, + 0xefaa91, + 0xefaa92, + 0xefaa93, + 0xefaa94, + 0xefaa95, + 0xefaa96, + 0xefaa97, + 0xefaa98, + 0xefaa99, + 0xefaa9a, + 0xefaa9b, + 0xefaa9c, + 0xefaa9d, + 0xefaa9e, + 0xefaa9f, + 0xefaaa0, + 0xefaaa1, + 0xefaaa2, + 0xefaaa3, + 0xefaaa4, + 0xefaaa5, + 0xefaaa6, + 0xefaaa7, + 0xefaaa8, + 0xefaaa9, + 0xefaaaa, + 0xefaaab, + 0xefaaac, + 0xefaaad, + 0xefaaae, + 0xefaaaf, + 0xefaab0, + 0xefaab1, + 0xefaab2, + 0xefaab3, + 0xefaab4, + 0xefaab5, + 0xefaab6, + 0xefaab7, + 0xefaab8, + 0xefaab9, + 0xefaaba, + 0xefaabb, + 0xefaabc, + 0xefaabd, + 0xefaabe, + 0xefaabf, + 0xefab80, + 0xefab81, + 0xefab82, + 0xefab83, + 0xefab84, + 0xefab85, + 0xefab86, + 0xefab87, + 0xefab88, + 0xefab89, + 0xefab8a, + 0xefab8b, + 0xefab8c, + 0xefab8d, + 0xefab8e, + 0xefab8f, + 0xefab90, + 0xefab91, + 0xefab92, + 0xefab93, + 0xefab94, + 0xefab95, + 0xefab96, + 0xefab97, + 0xefab98, + 0xefab99, + 0xefab9a, + 0xefab9b, + 0xefab9c, + 0xefab9d, + 0xefab9e, + 0xefab9f, + 0xefaba0, + 0xefaba1, + 0xefaba2, + 0xefaba3, + 0xefaba4, + 0xefaba5, + 0xefaba6, + 0xefaba7, + 0xefaba8, + 0xefaba9, + 0xefabaa, + 0xefabab, + 0xefabac, + 0xefabad, + 0xefabae, + 0xefabaf, + 0xefabb0, + 0xefabb1, + 0xefabb2, + 0xefabb3, + 0xefabb4, + 0xefabb5, + 0xefabb6, + 0xefabb7, + 0xefabb8, + 0xefabb9, + 0xefabba, + 0xefabbb, + 0xefabbc, + 0xefabbd, + 0xefabbe, + 0xefabbf, + 0xefac80, + 0xefac81, + 0xefac82, + 0xefac83, + 0xefac84, + 0xefac85, + 0xefac86, + 0xefac87, + 0xefac88, + 0xefac89, + 0xefac8a, + 0xefac8b, + 0xefac8c, + 0xefac8d, + 0xefac8e, + 0xefac8f, + 0xefac90, + 0xefac91, + 0xefac92, + 0xefac93, + 0xefac94, + 0xefac95, + 0xefac96, + 0xefac97, + 0xefac98, + 0xefac99, + 0xefac9a, + 0xefac9b, + 0xefac9c, + 0xefac9d, + 0xefac9e, + 0xefac9f, + 0xefaca0, + 0xefaca1, + 0xefaca2, + 0xefaca3, + 0xefaca4, + 0xefaca5, + 0xefaca6, + 0xefaca7, + 0xefaca8, + 0xefaca9, + 0xefacaa, + 0xefacab, + 0xefacac, + 0xefacad, + 0xefacae, + 0xefacaf, + 0xefacb0, + 0xefacb1, + 0xefacb2, + 0xefacb3, + 0xefacb4, + 0xefacb5, + 0xefacb6, + 0xefacb7, + 0xefacb8, + 0xefacb9, + 0xefacba, + 0xefacbb, + 0xefacbc, + 0xefacbd, + 0xefacbe, + 0xefacbf, + 0xefad80, + 0xefad81, + 0xefad82, + 0xefad83, + 0xefad84, + 0xefad85, + 0xefad86, + 0xefad87, + 0xefad88, + 0xefad89, + 0xefad8a, + 0xefad8b, + 0xefad8c, + 0xefad8d, + 0xefad8e, + 0xefad8f, + 0xefad90, + 0xefad91, + 0xefad92, + 0xefad93, + 0xefad94, + 0xefad95, + 0xefad96, + 0xefad97, + 0xefad98, + 0xefad99, + 0xefad9a, + 0xefad9b, + 0xefad9c, + 0xefad9d, + 0xefad9e, + 0xefad9f, + 0xefada0, + 0xefada1, + 0xefada2, + 0xefada3, + 0xefada4, + 0xefada5, + 0xefada6, + 0xefada7, + 0xefada8, + 0xefada9, + 0xefadaa, + 0xefadab, + 0xefadac, + 0xefadad, + 0xefadae, + 0xefadaf, + 0xefadb0, + 0xefadb1, + 0xefadb2, + 0xefadb3, + 0xefadb4, + 0xefadb5, + 0xefadb6, + 0xefadb7, + 0xefadb8, + 0xefadb9, + 0xefadba, + 0xefadbb, + 0xefadbc, + 0xefadbd, + 0xefadbe, + 0xefadbf, + 0xefae80, + 0xefae81, + 0xefae82, + 0xefae83, + 0xefae84, + 0xefae85, + 0xefae86, + 0xefae87, + 0xefae88, + 0xefae89, + 0xefae8a, + 0xefae8b, + 0xefae8c, + 0xefae8d, + 0xefae8e, + 0xefae8f, + 0xefae90, + 0xefae91, + 0xefae92, + 0xefae93, + 0xefae94, + 0xefae95, + 0xefae96, + 0xefae97, + 0xefae98, + 0xefae99, + 0xefae9a, + 0xefae9b, + 0xefae9c, + 0xefae9d, + 0xefae9e, + 0xefae9f, + 0xefaea0, + 0xefaea1, + 0xefaea2, + 0xefaea3, + 0xefaea4, + 0xefaea5, + 0xefaea6, + 0xefaea7, + 0xefaea8, + 0xefaea9, + 0xefaeaa, + 0xefaeab, + 0xefaeac, + 0xefaead, + 0xefaeae, + 0xefaeaf, + 0xefaeb0, + 0xefaeb1, + 0xefaeb2, + 0xefaeb3, + 0xefaeb4, + 0xefaeb5, + 0xefaeb6, + 0xefaeb7, + 0xefaeb8, + 0xefaeb9, + 0xefaeba, + 0xefaebb, + 0xefaebc, + 0xefaebd, + 0xefaebe, + 0xefaebf, + 0xefaf80, + 0xefaf81, + 0xefaf82, + 0xefaf83, + 0xefaf84, + 0xefaf85, + 0xefaf86, + 0xefaf87, + 0xefaf88, + 0xefaf89, + 0xefaf8a, + 0xefaf8b, + 0xefaf8c, + 0xefaf8d, + 0xefaf8e, + 0xefaf8f, + 0xefaf90, + 0xefaf91, + 0xefaf92, + 0xefaf93, + 0xefaf94, + 0xefaf95, + 0xefaf96, + 0xefaf97, + 0xefaf98, + 0xefaf99, + 0xefaf9a, + 0xefaf9b, + 0xefaf9c, + 0xefaf9d, + 0xefaf9e, + 0xefaf9f, + 0xefafa0, + 0xefafa1, + 0xefafa2, + 0xefafa3, + 0xefafa4, + 0xefafa5, + 0xefafa6, + 0xefafa7, + 0xefafa8, + 0xefafa9, + 0xefafaa, + 0xefafab, + 0xefafac, + 0xefafad, + 0xefafae, + 0xefafaf, + 0xefafb0, + 0xefafb1, + 0xefafb2, + 0xefafb3, + 0xefafb4, + 0xefafb5, + 0xefafb6, + 0xefafb7, + 0xefafb8, + 0xefafb9, + 0xefafba, + 0xefafbb, + 0xefafbc, + 0xefafbd, + 0xefafbe, + 0xefafbf, + 0xefb080, + 0xefb081, + 0xefb082, + 0xefb083, + 0xefb084, + 0xefb085, + 0xefb086, + 0xefb087, + 0xefb088, + 0xefb089, + 0xefb08a, + 0xefb08b, + 0xefb08c, + 0xefb08d, + 0xefb08e, + 0xefb08f, + 0xefb090, + 0xefb091, + 0xefb092, + 0xefb093, + 0xefb094, + 0xefb095, + 0xefb096, + 0xefb097, + 0xefb098, + 0xefb099, + 0xefb09a, + 0xefb09b, + 0xefb09c, + 0xefb09d, + 0xefb09e, + 0xefb09f, + 0xefb0a0, + 0xefb0a1, + 0xefb0a2, + 0xefb0a3, + 0xefb0a4, + 0xefb0a5, + 0xefb0a6, + 0xefb0a7, + 0xefb0a8, + 0xefb0a9, + 0xefb0aa, + 0xefb0ab, + 0xefb0ac, + 0xefb0ad, + 0xefb0ae, + 0xefb0af, + 0xefb0b0, + 0xefb0b1, + 0xefb0b2, + 0xefb0b3, + 0xefb0b4, + 0xefb0b5, + 0xefb0b6, + 0xefb0b7, + 0xefb0b8, + 0xefb0b9, + 0xefb0ba, + 0xefb0bb, + 0xefb0bc, + 0xefb0bd, + 0xefb0be, + 0xefb0bf, + 0xefb180, + 0xefb181, + 0xefb182, + 0xefb183, + 0xefb184, + 0xefb185, + 0xefb186, + 0xefb187, + 0xefb188, + 0xefb189, + 0xefb18a, + 0xefb18b, + 0xefb18c, + 0xefb18d, + 0xefb18e, + 0xefb18f, + 0xefb190, + 0xefb191, + 0xefb192, + 0xefb193, + 0xefb194, + 0xefb195, + 0xefb196, + 0xefb197, + 0xefb198, + 0xefb199, + 0xefb19a, + 0xefb19b, + 0xefb19c, + 0xefb19d, + 0xefb19e, + 0xefb19f, + 0xefb1a0, + 0xefb1a1, + 0xefb1a2, + 0xefb1a3, + 0xefb1a4, + 0xefb1a5, + 0xefb1a6, + 0xefb1a7, + 0xefb1a8, + 0xefb1a9, + 0xefb1aa, + 0xefb1ab, + 0xefb1ac, + 0xefb1ad, + 0xefb1ae, + 0xefb1af, + 0xefb1b0, + 0xefb1b1, + 0xefb1b2, + 0xefb1b3, + 0xefb1b4, + 0xefb1b5, + 0xefb1b6, + 0xefb1b7, + 0xefb1b8, + 0xefb1b9, + 0xefb1ba, + 0xefb1bb, + 0xefb1bc, + 0xefb1bd, + 0xefb1be, + 0xefb1bf, + 0xefb280, + 0xefb281, + 0xefb282, + 0xefb283, + 0xefb284, + 0xefb285, + 0xefb286, + 0xefb287, + 0xefb288, + 0xefb289, + 0xefb28a, + 0xefb28b, + 0xefb28c, + 0xefb28d, + 0xefb28e, + 0xefb28f, + 0xefb290, + 0xefb291, + 0xefb292, + 0xefb293, + 0xefb294, + 0xefb295, + 0xefb296, + 0xefb297, + 0xefb298, + 0xefb299, + 0xefb29a, + 0xefb29b, + 0xefb29c, + 0xefb29d, + 0xefb29e, + 0xefb29f, + 0xefb2a0, + 0xefb2a1, + 0xefb2a2, + 0xefb2a3, + 0xefb2a4, + 0xefb2a5, + 0xefb2a6, + 0xefb2a7, + 0xefb2a8, + 0xefb2a9, + 0xefb2aa, + 0xefb2ab, + 0xefb2ac, + 0xefb2ad, + 0xefb2ae, + 0xefb2af, + 0xefb2b0, + 0xefb2b1, + 0xefb2b2, + 0xefb2b3, + 0xefb2b4, + 0xefb2b5, + 0xefb2b6, + 0xefb2b7, + 0xefb2b8, + 0xefb2b9, + 0xefb2ba, + 0xefb2bb, + 0xefb2bc, + 0xefb2bd, + 0xefb2be, + 0xefb2bf, + 0xefb380, + 0xefb381, + 0xefb382, + 0xefb383, + 0xefb384, + 0xefb385, + 0xefb386, + 0xefb387, + 0xefb388, + 0xefb389, + 0xefb38a, + 0xefb38b, + 0xefb38c, + 0xefb38d, + 0xefb38e, + 0xefb38f, + 0xefb390, + 0xefb391, + 0xefb392, + 0xefb393, + 0xefb394, + 0xefb395, + 0xefb396, + 0xefb397, + 0xefb398, + 0xefb399, + 0xefb39a, + 0xefb39b, + 0xefb39c, + 0xefb39d, + 0xefb39e, + 0xefb39f, + 0xefb3a0, + 0xefb3a1, + 0xefb3a2, + 0xefb3a3, + 0xefb3a4, + 0xefb3a5, + 0xefb3a6, + 0xefb3a7, + 0xefb3a8, + 0xefb3a9, + 0xefb3aa, + 0xefb3ab, + 0xefb3ac, + 0xefb3ad, + 0xefb3ae, + 0xefb3af, + 0xefb3b0, + 0xefb3b1, + 0xefb3b2, + 0xefb3b3, + 0xefb3b4, + 0xefb3b5, + 0xefb3b6, + 0xefb3b7, + 0xefb3b8, + 0xefb3b9, + 0xefb3ba, + 0xefb3bb, + 0xefb3bc, + 0xefb3bd, + 0xefb3be, + 0xefb3bf, + 0xefb480, + 0xefb481, + 0xefb482, + 0xefb483, + 0xefb484, + 0xefb485, + 0xefb486, + 0xefb487, + 0xefb488, + 0xefb489, + 0xefb48a, + 0xefb48b, + 0xefb48c, + 0xefb48d, + 0xefb48e, + 0xefb48f, + 0xefb490, + 0xefb491, + 0xefb492, + 0xefb493, + 0xefb494, + 0xefb495, + 0xefb496, + 0xefb497, + 0xefb498, + 0xefb499, + 0xefb49a, + 0xefb49b, + 0xefb49c, + 0xefb49d, + 0xefb49e, + 0xefb49f, + 0xefb4a0, + 0xefb4a1, + 0xefb4a2, + 0xefb4a3, + 0xefb4a4, + 0xefb4a5, + 0xefb4a6, + 0xefb4a7, + 0xefb4a8, + 0xefb4a9, + 0xefb4aa, + 0xefb4ab, + 0xefb4ac, + 0xefb4ad, + 0xefb4ae, + 0xefb4af, + 0xefb4b0, + 0xefb4b1, + 0xefb4b2, + 0xefb4b3, + 0xefb4b4, + 0xefb4b5, + 0xefb4b6, + 0xefb4b7, + 0xefb4b8, + 0xefb4b9, + 0xefb4ba, + 0xefb4bb, + 0xefb4bc, + 0xefb4bd, + 0xefb4be, + 0xefb4bf, + 0xefb580, + 0xefb581, + 0xefb582, + 0xefb583, + 0xefb584, + 0xefb585, + 0xefb586, + 0xefb587, + 0xefb588, + 0xefb589, + 0xefb58a, + 0xefb58b, + 0xefb58c, + 0xefb58d, + 0xefb58e, + 0xefb58f, + 0xefb590, + 0xefb591, + 0xefb592, + 0xefb593, + 0xefb594, + 0xefb595, + 0xefb596, + 0xefb597, + 0xefb598, + 0xefb599, + 0xefb59a, + 0xefb59b, + 0xefb59c, + 0xefb59d, + 0xefb59e, + 0xefb59f, + 0xefb5a0, + 0xefb5a1, + 0xefb5a2, + 0xefb5a3, + 0xefb5a4, + 0xefb5a5, + 0xefb5a6, + 0xefb5a7, + 0xefb5a8, + 0xefb5a9, + 0xefb5aa, + 0xefb5ab, + 0xefb5ac, + 0xefb5ad, + 0xefb5ae, + 0xefb5af, + 0xefb5b0, + 0xefb5b1, + 0xefb5b2, + 0xefb5b3, + 0xefb5b4, + 0xefb5b5, + 0xefb5b6, + 0xefb5b7, + 0xefb5b8, + 0xefb5b9, + 0xefb5ba, + 0xefb5bb, + 0xefb5bc, + 0xefb5bd, + 0xefb5be, + 0xefb5bf, + 0xefb680, + 0xefb681, + 0xefb682, + 0xefb683, + 0xefb684, + 0xefb685, + 0xefb686, + 0xefb687, + 0xefb688, + 0xefb689, + 0xefb68a, + 0xefb68b, + 0xefb68c, + 0xefb68d, + 0xefb68e, + 0xefb68f, + 0xefb690, + 0xefb691, + 0xefb692, + 0xefb693, + 0xefb694, + 0xefb695, + 0xefb696, + 0xefb697, + 0xefb698, + 0xefb699, + 0xefb69a, + 0xefb69b, + 0xefb69c, + 0xefb69d, + 0xefb69e, + 0xefb69f, + 0xefb6a0, + 0xefb6a1, + 0xefb6a2, + 0xefb6a3, + 0xefb6a4, + 0xefb6a5, + 0xefb6a6, + 0xefb6a7, + 0xefb6a8, + 0xefb6a9, + 0xefb6aa, + 0xefb6ab, + 0xefb6ac, + 0xefb6ad, + 0xefb6ae, + 0xefb6af, + 0xefb6b0, + 0xefb6b1, + 0xefb6b2, + 0xefb6b3, + 0xefb6b4, + 0xefb6b5, + 0xefb6b6, + 0xefb6b7, + 0xefb6b8, + 0xefb6b9, + 0xefb6ba, + 0xefb6bb, + 0xefb6bc, + 0xefb6bd, + 0xefb6be, + 0xefb6bf, + 0xefb780, + 0xefb781, + 0xefb782, + 0xefb783, + 0xefb784, + 0xefb785, + 0xefb786, + 0xefb787, + 0xefb788, + 0xefb789, + 0xefb78a, + 0xefb78b, + 0xefb78c, + 0xefb78d, + 0xefb78e, + 0xefb78f, + 0xefb790, + 0xefb791, + 0xefb792, + 0xefb793, + 0xefb794, + 0xefb795, + 0xefb796, + 0xefb797, + 0xefb798, + 0xefb799, + 0xefb79a, + 0xefb79b, + 0xefb79c, + 0xefb79d, + 0xefb79e, + 0xefb79f, + 0xefb7a0, + 0xefb7a1, + 0xefb7a2, + 0xefb7a3, + 0xefb7a4, + 0xefb7a5, + 0xefb7a6, + 0xefb7a7, + 0xefb7a8, + 0xefb7a9, + 0xefb7aa, + 0xefb7ab, + 0xefb7ac, + 0xefb7ad, + 0xefb7ae, + 0xefb7af, + 0xefb7b0, + 0xefb7b1, + 0xefb7b2, + 0xefb7b3, + 0xefb7b4, + 0xefb7b5, + 0xefb7b6, + 0xefb7b7, + 0xefb7b8, + 0xefb7b9, + 0xefb7ba, + 0xefb7bb, + 0xefb7bc, + 0xefb7bd, + 0xefb7be, + 0xefb7bf, + 0xefb880, + 0xefb881, + 0xefb882, + 0xefb883, + 0xefb884, + 0xefb885, + 0xefb886, + 0xefb887, + 0xefb888, + 0xefb889, + 0xefb88a, + 0xefb88b, + 0xefb88c, + 0xefb88d, + 0xefb88e, + 0xefb88f, + 0xefb890, + 0xefb891, + 0xefb892, + 0xefb893, + 0xefb894, + 0xefb895, + 0xefb896, + 0xefb897, + 0xefb898, + 0xefb899, + 0xefb89a, + 0xefb89b, + 0xefb89c, + 0xefb89d, + 0xefb89e, + 0xefb89f, + 0xefb8a0, + 0xefb8a1, + 0xefb8a2, + 0xefb8a3, + 0xefb8a4, + 0xefb8a5, + 0xefb8a6, + 0xefb8a7, + 0xefb8a8, + 0xefb8a9, + 0xefb8aa, + 0xefb8ab, + 0xefb8ac, + 0xefb8ad, + 0xefb8ae, + 0xefb8af, + 0xefb8b0, + 0xefb8b1, + 0xefb8b2, + 0xefb8b3, + 0xefb8b4, + 0xefb8b5, + 0xefb8b6, + 0xefb8b7, + 0xefb8b8, + 0xefb8b9, + 0xefb8ba, + 0xefb8bb, + 0xefb8bc, + 0xefb8bd, + 0xefb8be, + 0xefb8bf, + 0xefb980, + 0xefb981, + 0xefb982, + 0xefb983, + 0xefb984, + 0xefb985, + 0xefb986, + 0xefb987, + 0xefb988, + 0xefb989, + 0xefb98a, + 0xefb98b, + 0xefb98c, + 0xefb98d, + 0xefb98e, + 0xefb98f, + 0xefb990, + 0xefb991, + 0xefb992, + 0xefb993, + 0xefb994, + 0xefb995, + 0xefb996, + 0xefb997, + 0xefb998, + 0xefb999, + 0xefb99a, + 0xefb99b, + 0xefb99c, + 0xefb99d, + 0xefb99e, + 0xefb99f, + 0xefb9a0, + 0xefb9a1, + 0xefb9a2, + 0xefb9a3, + 0xefb9a4, + 0xefb9a5, + 0xefb9a6, + 0xefb9a7, + 0xefb9a8, + 0xefb9a9, + 0xefb9aa, + 0xefb9ab, + 0xefb9ac, + 0xefb9ad, + 0xefb9ae, + 0xefb9af, + 0xefb9b0, + 0xefb9b1, + 0xefb9b2, + 0xefb9b3, + 0xefb9b4, + 0xefb9b5, + 0xefb9b6, + 0xefb9b7, + 0xefb9b8, + 0xefb9b9, + 0xefb9ba, + 0xefb9bb, + 0xefb9bc, + 0xefb9bd, + 0xefb9be, + 0xefb9bf, + 0xefba80, + 0xefba81, + 0xefba82, + 0xefba83, + 0xefba84, + 0xefba85, + 0xefba86, + 0xefba87, + 0xefba88, + 0xefba89, + 0xefba8a, + 0xefba8b, + 0xefba8c, + 0xefba8d, + 0xefba8e, + 0xefba8f, + 0xefba90, + 0xefba91, + 0xefba92, + 0xefba93, + 0xefba94, + 0xefba95, + 0xefba96, + 0xefba97, + 0xefba98, + 0xefba99, + 0xefba9a, + 0xefba9b, + 0xefba9c, + 0xefba9d, + 0xefba9e, + 0xefba9f, + 0xefbaa0, + 0xefbaa1, + 0xefbaa2, + 0xefbaa3, + 0xefbaa4, + 0xefbaa5, + 0xefbaa6, + 0xefbaa7, + 0xefbaa8, + 0xefbaa9, + 0xefbaaa, + 0xefbaab, + 0xefbaac, + 0xefbaad, + 0xefbaae, + 0xefbaaf, + 0xefbab0, + 0xefbab1, + 0xefbab2, + 0xefbab3, + 0xefbab4, + 0xefbab5, + 0xefbab6, + 0xefbab7, + 0xefbab8, + 0xefbab9, + 0xefbaba, + 0xefbabb, + 0xefbabc, + 0xefbabd, + 0xefbabe, + 0xefbabf, + 0xefbb80, + 0xefbb81, + 0xefbb82, + 0xefbb83, + 0xefbb84, + 0xefbb85, + 0xefbb86, + 0xefbb87, + 0xefbb88, + 0xefbb89, + 0xefbb8a, + 0xefbb8b, + 0xefbb8c, + 0xefbb8d, + 0xefbb8e, + 0xefbb8f, + 0xefbb90, + 0xefbb91, + 0xefbb92, + 0xefbb93, + 0xefbb94, + 0xefbb95, + 0xefbb96, + 0xefbb97, + 0xefbb98, + 0xefbb99, + 0xefbb9a, + 0xefbb9b, + 0xefbb9c, + 0xefbb9d, + 0xefbb9e, + 0xefbb9f, + 0xefbba0, + 0xefbba1, + 0xefbba2, + 0xefbba3, + 0xefbba4, + 0xefbba5, + 0xefbba6, + 0xefbba7, + 0xefbba8, + 0xefbba9, + 0xefbbaa, + 0xefbbab, + 0xefbbac, + 0xefbbad, + 0xefbbae, + 0xefbbaf, + 0xefbbb0, + 0xefbbb1, + 0xefbbb2, + 0xefbbb3, + 0xefbbb4, + 0xefbbb5, + 0xefbbb6, + 0xefbbb7, + 0xefbbb8, + 0xefbbb9, + 0xefbbba, + 0xefbbbb, + 0xefbbbc, + 0xefbbbd, + 0xefbbbe, + 0xefbbbf, + 0xefbc80, + 0xefbc81, + 0xefbc82, + 0xefbc83, + 0xefbc84, + 0xefbc85, + 0xefbc86, + 0xefbc87, + 0xefbc88, + 0xefbc89, + 0xefbc8a, + 0xefbc8b, + 0xefbc8c, + 0xefbc8d, + 0xefbc8e, + 0xefbc8f, + 0xefbc90, + 0xefbc91, + 0xefbc92, + 0xefbc93, + 0xefbc94, + 0xefbc95, + 0xefbc96, + 0xefbc97, + 0xefbc98, + 0xefbc99, + 0xefbc9a, + 0xefbc9b, + 0xefbc9c, + 0xefbc9d, + 0xefbc9e, + 0xefbc9f, + 0xefbca0, + 0xefbca1, + 0xefbca2, + 0xefbca3, + 0xefbca4, + 0xefbca5, + 0xefbca6, + 0xefbca7, + 0xefbca8, + 0xefbca9, + 0xefbcaa, + 0xefbcab, + 0xefbcac, + 0xefbcad, + 0xefbcae, + 0xefbcaf, + 0xefbcb0, + 0xefbcb1, + 0xefbcb2, + 0xefbcb3, + 0xefbcb4, + 0xefbcb5, + 0xefbcb6, + 0xefbcb7, + 0xefbcb8, + 0xefbcb9, + 0xefbcba, + 0xefbcbb, + 0xefbcbc, + 0xefbcbd, + 0xefbcbe, + 0xefbcbf, + 0xefbd80, + 0xefbd81, + 0xefbd82, + 0xefbd83, + 0xefbd84, + 0xefbd85, + 0xefbd86, + 0xefbd87, + 0xefbd88, + 0xefbd89, + 0xefbd8a, + 0xefbd8b, + 0xefbd8c, + 0xefbd8d, + 0xefbd8e, + 0xefbd8f, + 0xefbd90, + 0xefbd91, + 0xefbd92, + 0xefbd93, + 0xefbd94, + 0xefbd95, + 0xefbd96, + 0xefbd97, + 0xefbd98, + 0xefbd99, + 0xefbd9a, + 0xefbd9b, + 0xefbd9c, + 0xefbd9d, + 0xefbd9e, + 0xefbd9f, + 0xefbda0, + 0xefbda1, + 0xefbda2, + 0xefbda3, + 0xefbda4, + 0xefbda5, + 0xefbda6, + 0xefbda7, + 0xefbda8, + 0xefbda9, + 0xefbdaa, + 0xefbdab, + 0xefbdac, + 0xefbdad, + 0xefbdae, + 0xefbdaf, + 0xefbdb0, + 0xefbdb1, + 0xefbdb2, + 0xefbdb3, + 0xefbdb4, + 0xefbdb5, + 0xefbdb6, + 0xefbdb7, + 0xefbdb8, + 0xefbdb9, + 0xefbdba, + 0xefbdbb, + 0xefbdbc, + 0xefbdbd, + 0xefbdbe, + 0xefbdbf, + 0xefbe80, + 0xefbe81, + 0xefbe82, + 0xefbe83, + 0xefbe84, + 0xefbe85, + 0xefbe86, + 0xefbe87, + 0xefbe88, + 0xefbe89, + 0xefbe8a, + 0xefbe8b, + 0xefbe8c, + 0xefbe8d, + 0xefbe8e, + 0xefbe8f, + 0xefbe90, + 0xefbe91, + 0xefbe92, + 0xefbe93, + 0xefbe94, + 0xefbe95, + 0xefbe96, + 0xefbe97, + 0xefbe98, + 0xefbe99, + 0xefbe9a, + 0xefbe9b, + 0xefbe9c, + 0xefbe9d, + 0xefbe9e, + 0xefbe9f, + 0xefbea0, + 0xefbea1, + 0xefbea2, + 0xefbea3, + 0xefbea4, + 0xefbea5, + 0xefbea6, + 0xefbea7, + 0xefbea8, + 0xefbea9, + 0xefbeaa, + 0xefbeab, + 0xefbeac, + 0xefbead, + 0xefbeae, + 0xefbeaf, + 0xefbeb0, + 0xefbeb1, + 0xefbeb2, + 0xefbeb3, + 0xefbeb4, + 0xefbeb5, + 0xefbeb6, + 0xefbeb7, + 0xefbeb8, + 0xefbeb9, + 0xefbeba, + 0xefbebb, + 0xefbebc, + 0xefbebd, + 0xefbebe, + 0xefbebf, + 0xefbf80, + 0xefbf81, + 0xefbf82, + 0xefbf83, + 0xefbf84, + 0xefbf85, + 0xefbf86, + 0xefbf87, + 0xefbf88, + 0xefbf89, + 0xefbf8a, + 0xefbf8b, + 0xefbf8c, + 0xefbf8d, + 0xefbf8e, + 0xefbf8f, + 0xefbf90, + 0xefbf91, + 0xefbf92, + 0xefbf93, + 0xefbf94, + 0xefbf95, + 0xefbf96, + 0xefbf97, + 0xefbf98, + 0xefbf99, + 0xefbf9a, + 0xefbf9b, + 0xefbf9c, + 0xefbf9d, + 0xefbf9e, + 0xefbf9f, + 0xefbfa0, + 0xefbfa1, + 0xefbfa2, + 0xefbfa3, + 0xefbfa4, + 0xefbfa5, + 0xefbfa6, + 0xefbfa7, + 0xefbfa8, + 0xefbfa9, + 0xefbfaa, + 0xefbfab, + 0xefbfac, + 0xefbfad, + 0xefbfae, + 0xefbfaf, + 0xefbfb0, + 0xefbfb1, + 0xefbfb2, + 0xefbfb3, + 0xefbfb4, + 0xefbfb5, + 0xefbfb6, + 0xefbfb7, + 0xefbfb8, + 0xefbfb9, + 0xefbfba, + 0xefbfbb, + 0xefbfbc, + 0xefbfbd, + 0xefbfbe, + 0xefbfbf +}; + +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/interface/DBus.c fcitx-4.1.1/src/interface/DBus.c --- fcitx-4.0.1/src/interface/DBus.c 2010-12-17 04:20:41.000000000 +0000 +++ fcitx-4.1.1/src/interface/DBus.c 1970-01-01 00:00:00.000000000 +0000 @@ -1,1247 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2008~2010 by Zealot.Hoi * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * - ***************************************************************************/ -#include -#include -#include -#include -#include -#include // bzero() -#include -#include - -#include "tools/tools.h" -#include "ui/InputWindow.h" -#include "im/special/vk.h" -#include "core/ime.h" -#include "core/xim.h" -#include "interface/DBus.h" -#include "tools/profile.h" - -#ifdef _ENABLE_DBUS -DBusConnection *conn; -int ret; - -Property logo_prop; -Property state_prop; -Property punc_prop; -Property corner_prop; -Property vk_prop; -Property gbkt_prop; -Property legend_prop; - -char sVKmsg[PATH_MAX] = ""; - -#define TOOLTIP_STATE_ENG "英语" -#define TOOLTIP_STATE_CHN "中文" -#define TOOLTIP_PUNK_CHN "UP" -#define TOOLTIP_PUNK_ENG "NP" -#define TOOLTIP_CORNER_ENABLE "全角" -#define TOOLTIP_CORNER_DISABLE "半角" -#define TOOLTIP_VK_ENABLE "VK-ON" -#define TOOLTIP_VK_DISABLE "VK-OFF" -#define TOOLTIP_GBKT_ENABLE "繁体" -#define TOOLTIP_GBKT_DISABLE "简体" -#define TOOLTIP_LEGEND_ENABLE "联想" -#define TOOLTIP_LEGEND_DISABLE "无联" - -//extern IMProtocol * current_call_data; -extern INT8 iIMCount; -extern Bool bIsInLegend; -extern int iLegendCandWordCount; -extern int iCurrentCandPage; -extern int iCurrentLegendCandPage; -extern int iCandPageCount; -extern int iLegendCandPageCount; -extern char *sVKHotkey; - -void fixProperty(Property *prop); -char* convertMessage(char* in); -int calKIMCursorPos(); - -char sLogoLabel[MAX_IM_NAME * 2 + 1]; - -//#define DEBUG_DBUS - -#ifdef DEBUG_DBUS -#define debug_dbus(fmt,arg...) \ - FcitxLog(DEBUG,fmt,##arg) -#else -static int /* inline */ debug_dbus(const char* fmt, ...) -__attribute__((format(printf, 1, 2))); - -static int /* inline */ debug_dbus(const char* fmt, ...) -{ - return 0; -} -#endif - -Bool InitDBus() -{ - DBusError err; - // first init dbus - dbus_error_init(&err); - conn = dbus_bus_get(DBUS_BUS_SESSION, &err); - if (dbus_error_is_set(&err)) { - debug_dbus(_("Connection Error (%s)"), err.message); - dbus_error_free(&err); - } - if (NULL == conn) { - return False; - } - - // request a name on the bus - ret = dbus_bus_request_name(conn, "org.kde.fcitx", - DBUS_NAME_FLAG_REPLACE_EXISTING, - &err); - if (dbus_error_is_set(&err)) { - debug_dbus( _("Name Error (%s)"), err.message); - dbus_error_free(&err); - } - if (DBUS_REQUEST_NAME_REPLY_PRIMARY_OWNER != ret) { - return False; - } - - dbus_connection_flush(conn); - // add a rule to receive signals from kimpanel - dbus_bus_add_match(conn, - "type='signal',interface='org.kde.impanel'", - &err); - dbus_connection_flush(conn); - if (dbus_error_is_set(&err)) { - debug_dbus(_("Match Error (%s)"), err.message); - return False; - } - - logo_prop.label = sLogoLabel; - - return True; -} - -void TestSendSignal() -{ -} - -void DBusLoop(void *val) -{ - MyDBusEventHandler(); -} - -void MyDBusEventHandler() -{ - DBusMessage *msg; - DBusMessageIter args; - - int int0; - char *s0; - - for (;;) { - dbus_connection_read_write(conn, 0); - msg = dbus_connection_pop_message(conn); - if ( NULL == msg) { - usleep(300); - continue; - } - FcitxLock(); - if (dbus_message_is_signal(msg, "org.kde.impanel", "MovePreeditCaret")) { - debug_dbus(_("MovePreeditCaret")); - // read the parameters - if (!dbus_message_iter_init(msg, &args)) - debug_dbus(_("Message has no arguments!")); - else if (DBUS_TYPE_INT32 != dbus_message_iter_get_arg_type(&args)) - debug_dbus(_("Argument is not INT32!")); - else { - dbus_message_iter_get_basic(&args, &int0); - debug_dbus(_("Got Signal with value %d"), int0); - } - } - if (dbus_message_is_signal(msg, "org.kde.impanel", "SelectCandidate")) { - debug_dbus(_("SelectCandidate: ")); - // read the parameters - if (!dbus_message_iter_init(msg, &args)) - debug_dbus( _("Message has no arguments!")); - else if (DBUS_TYPE_INT32 != dbus_message_iter_get_arg_type(&args)) - debug_dbus(_("Argument is not INT32!")); - else { - dbus_message_iter_get_basic(&args, &int0); - - char *pstr; - - if (!bIsInLegend) { - pstr = im[gs.iIMIndex].GetCandWord(int0); - if (pstr) { - SendHZtoClient(0, pstr); - if (!fcitxProfile.bUseLegend) { - ResetInput(); - } - } - updateMessages(); - } else { - pstr = im[gs.iIMIndex].GetLegendCandWord(int0); - if (pstr) { - SendHZtoClient(0, pstr); - if (!iLegendCandWordCount) { - ResetInput (); - } - } - updateMessages(); - } - debug_dbus(_("%d:%s"), int0,pstr); - } - } - if (dbus_message_is_signal(msg, "org.kde.impanel", "LookupTablePageUp")) { - debug_dbus(_("LookupTablePageUp")); - im[gs.iIMIndex].GetCandWords (SM_PREV); - updateMessages(); - } - if (dbus_message_is_signal(msg, "org.kde.impanel", "LookupTablePageDown")) { - debug_dbus(_("LookupTablePageDown")); - im[gs.iIMIndex].GetCandWords (SM_NEXT); - updateMessages(); - } - if (dbus_message_is_signal(msg, "org.kde.impanel", "TriggerProperty")) { - debug_dbus(_("TriggerProperty: ")); - // read the parameters - if (!dbus_message_iter_init(msg, &args)) - debug_dbus(_("Message has no arguments!")); - else if (DBUS_TYPE_STRING != dbus_message_iter_get_arg_type(&args)) - debug_dbus(_("Argument is not STRING!")); - else { - dbus_message_iter_get_basic(&args, &s0); - debug_dbus(_("%s"), s0); - - triggerProperty(s0); - } - } - if (dbus_message_is_signal(msg, "org.kde.impanel", "PanelCreated")) { - debug_dbus(_("PanelCreated")); - registerProperties(); - } - if (dbus_message_is_signal(msg, "org.kde.impanel", "Exit")) { - debug_dbus(_("Exit")); - } - if (dbus_message_is_signal(msg, "org.kde.impanel", "ReloadConfig")) { - debug_dbus(_("ReloadConfig")); - } - // free the message - dbus_message_unref(msg); - FcitxUnlock(); - } -} - - -void KIMExecDialog(char *prop) -{ - - dbus_uint32_t serial = 0; // unique number to associate replies with requests - DBusMessage* msg; - DBusMessageIter args; - - // create a signal and check for errors - msg = dbus_message_new_signal("/fcitx", // object name of the signal - "org.kde.fcitx", // interface name of the signal - "ExecDialog"); // name of the signal - if (NULL == msg) - { - debug_dbus(_("Message Null")); - return; - } - - // append arguments onto signal - dbus_message_iter_init_append(msg, &args); - if (!dbus_message_iter_append_basic(&args, DBUS_TYPE_STRING, &prop)) { - debug_dbus(_("Out Of Memory!")); - } - - // send the message and flush the connection - if (!dbus_connection_send(conn, msg, &serial)) { - debug_dbus(_("Out Of Memory!")); - } - dbus_connection_flush(conn); - - // free the message - dbus_message_unref(msg); - -} - -void KIMExecMenu(char *props[],int n) -{ - - dbus_uint32_t serial = 0; // unique number to associate replies with requests - DBusMessage* msg; - DBusMessageIter args; - - // create a signal and check for errors - msg = dbus_message_new_signal("/fcitx", // object name of the signal - "org.kde.fcitx", // interface name of the signal - "ExecMenu"); // name of the signal - if (NULL == msg) - { - debug_dbus(_("Message Null")); - return; - } - - if (n == -1) { - n = 0; - while (*(props[n])!= 0) { - n++; - } - } - - int i; - // append arguments onto signal - dbus_message_iter_init_append(msg, &args); - DBusMessageIter sub; - dbus_message_iter_open_container(&args,DBUS_TYPE_ARRAY,"s",&sub); - for (i = 0; i < n; i++) { - if (!dbus_message_iter_append_basic(&sub, DBUS_TYPE_STRING, &props[i])) { - debug_dbus(_("Out Of Memory!")); - } - } - dbus_message_iter_close_container(&args,&sub); - - // send the message and flush the connection - if (!dbus_connection_send(conn, msg, &serial)) { - debug_dbus(_("Out Of Memory!")); - } - dbus_connection_flush(conn); - - // free the message - dbus_message_unref(msg); - -} - -void KIMRegisterProperties(char *props[], int n) -{ - - dbus_uint32_t serial = 0; // unique number to associate replies with requests - DBusMessage* msg; - DBusMessageIter args; - - // create a signal and check for errors - msg = dbus_message_new_signal("/fcitx", // object name of the signal - "org.kde.fcitx", // interface name of the signal - "RegisterProperties"); // name of the signal - if (NULL == msg) - { - debug_dbus(_("Message Null")); - return; - } - - if (n == -1) { - n = 0; - while (*(props[n])!= 0) { - n++; - } - } - - int i; - // append arguments onto signal - dbus_message_iter_init_append(msg, &args); - DBusMessageIter sub; - dbus_message_iter_open_container(&args,DBUS_TYPE_ARRAY,"s",&sub); - for (i = 0; i < n; i++) { - if (!dbus_message_iter_append_basic(&sub, DBUS_TYPE_STRING, &props[i])) { - debug_dbus(_("Out Of Memory!")); - } - } - dbus_message_iter_close_container(&args,&sub); - - // send the message and flush the connection - if (!dbus_connection_send(conn, msg, &serial)) { - debug_dbus(_("Out Of Memory!")); - } - dbus_connection_flush(conn); - - // free the message - dbus_message_unref(msg); - -} - -void KIMUpdateProperty(char *prop) -{ - - dbus_uint32_t serial = 0; // unique number to associate replies with requests - DBusMessage* msg; - DBusMessageIter args; - - // create a signal and check for errors - msg = dbus_message_new_signal("/fcitx", // object name of the signal - "org.kde.fcitx", // interface name of the signal - "UpdateProperty"); // name of the signal - if (NULL == msg) - { - debug_dbus(_("Message Null")); - return; - } - - // append arguments onto signal - dbus_message_iter_init_append(msg, &args); - if (!dbus_message_iter_append_basic(&args, DBUS_TYPE_STRING, &prop)) { - debug_dbus(_("Out Of Memory!")); - } - - // send the message and flush the connection - if (!dbus_connection_send(conn, msg, &serial)) { - debug_dbus(_("Out Of Memory!")); - } - dbus_connection_flush(conn); - - // free the message - dbus_message_unref(msg); - -} - -void KIMRemoveProperty(char *prop) -{ - - dbus_uint32_t serial = 0; // unique number to associate replies with requests - DBusMessage* msg; - DBusMessageIter args; - - // create a signal and check for errors - msg = dbus_message_new_signal("/fcitx", // object name of the signal - "org.kde.fcitx", // interface name of the signal - "RemoveProperty"); // name of the signal - if (NULL == msg) - { - debug_dbus(_("Message Null")); - return; - } - - // append arguments onto signal - dbus_message_iter_init_append(msg, &args); - if (!dbus_message_iter_append_basic(&args, DBUS_TYPE_STRING, &prop)) { - debug_dbus(_("Out Of Memory!")); - } - - // send the message and flush the connection - if (!dbus_connection_send(conn, msg, &serial)) { - debug_dbus(_("Out Of Memory!")); - } - dbus_connection_flush(conn); - - // free the message - dbus_message_unref(msg); - -} - -void KIMEnable(Bool toEnable) -{ - - dbus_uint32_t serial = 0; // unique number to associate replies with requests - DBusMessage* msg; - DBusMessageIter args; - - // create a signal and check for errors - msg = dbus_message_new_signal("/fcitx", // object name of the signal - "org.kde.fcitx", // interface name of the signal - "Enable"); // name of the signal - if (NULL == msg) - { - debug_dbus(_("Message Null")); - return; - } - - // append arguments onto signal - dbus_message_iter_init_append(msg, &args); - if (!dbus_message_iter_append_basic(&args, DBUS_TYPE_BOOLEAN, &toEnable)) { - debug_dbus(_("Out Of Memory!")); - } - - // send the message and flush the connection - if (!dbus_connection_send(conn, msg, &serial)) { - debug_dbus(_("Out Of Memory!")); - } - dbus_connection_flush(conn); - - // free the message - dbus_message_unref(msg); - -} - -void KIMShowAux(Bool toShow) -{ - - dbus_uint32_t serial = 0; // unique number to associate replies with requests - DBusMessage* msg; - DBusMessageIter args; - - // create a signal and check for errors - msg = dbus_message_new_signal("/fcitx", // object name of the signal - "org.kde.fcitx", // interface name of the signal - "ShowAux"); // name of the signal - if (NULL == msg) - { - debug_dbus(_("Message Null")); - return; - } - - // append arguments onto signal - dbus_message_iter_init_append(msg, &args); - if (!dbus_message_iter_append_basic(&args, DBUS_TYPE_BOOLEAN, &toShow)) { - debug_dbus(_("Out Of Memory!")); - } - - // send the message and flush the connection - if (!dbus_connection_send(conn, msg, &serial)) { - debug_dbus(_("Out Of Memory!")); - } - dbus_connection_flush(conn); - - // free the message - dbus_message_unref(msg); - -} - -void KIMShowPreedit(Bool toShow) -{ - - dbus_uint32_t serial = 0; // unique number to associate replies with requests - DBusMessage* msg; - DBusMessageIter args; - - // create a signal and check for errors - msg = dbus_message_new_signal("/fcitx", // object name of the signal - "org.kde.fcitx", // interface name of the signal - "ShowPreedit"); // name of the signal - if (NULL == msg) - { - debug_dbus(_("Message Null")); - return; - } - - // append arguments onto signal - dbus_message_iter_init_append(msg, &args); - if (!dbus_message_iter_append_basic(&args, DBUS_TYPE_BOOLEAN, &toShow)) { - debug_dbus(_("Out Of Memory!")); - } - - // send the message and flush the connection - if (!dbus_connection_send(conn, msg, &serial)) { - debug_dbus(_("Out Of Memory!")); - } - dbus_connection_flush(conn); - - // free the message - dbus_message_unref(msg); - -} - -void KIMShowLookupTable(Bool toShow) -{ - - dbus_uint32_t serial = 0; // unique number to associate replies with requests - DBusMessage* msg; - DBusMessageIter args; - - // create a signal and check for errors - msg = dbus_message_new_signal("/fcitx", // object name of the signal - "org.kde.fcitx", // interface name of the signal - "ShowLookupTable"); // name of the signal - if (NULL == msg) - { - debug_dbus(_("Message Null")); - return; - } - - // append arguments onto signal - dbus_message_iter_init_append(msg, &args); - if (!dbus_message_iter_append_basic(&args, DBUS_TYPE_BOOLEAN, &toShow)) { - debug_dbus(_("Out Of Memory!")); - } - - // send the message and flush the connection - if (!dbus_connection_send(conn, msg, &serial)) { - debug_dbus(_("Out Of Memory!")); - } - dbus_connection_flush(conn); - - // free the message - dbus_message_unref(msg); - -} - -void KIMUpdateLookupTable(char *labels[], int nLabel, char *texts[], int nText, Bool has_prev, Bool has_next) -{ - - dbus_uint32_t serial = 0; // unique number to associate replies with requests - DBusMessage* msg; - DBusMessageIter args; - - // create a signal and check for errors - msg = dbus_message_new_signal("/fcitx", // object name of the signal - "org.kde.fcitx", // interface name of the signal - "UpdateLookupTable"); // name of the signal - if (NULL == msg) - { - debug_dbus(_("Message Null")); - return; - } - - int i; - DBusMessageIter subLabel; - DBusMessageIter subText; - DBusMessageIter subAttrs; - // append arguments onto signal - dbus_message_iter_init_append(msg, &args); - dbus_message_iter_open_container(&args,DBUS_TYPE_ARRAY,"s",&subLabel); - for (i = 0; i < nLabel; i++) { - if (!dbus_message_iter_append_basic(&subLabel, DBUS_TYPE_STRING, &labels[i])) { - debug_dbus(_("Out Of Memory!")); - } - } - dbus_message_iter_close_container(&args,&subLabel); - - dbus_message_iter_open_container(&args,DBUS_TYPE_ARRAY,"s",&subText); - for (i = 0; i < nText; i++) { - if (!dbus_message_iter_append_basic(&subText, DBUS_TYPE_STRING, &texts[i])) { - debug_dbus(_("Out Of Memory!")); - } - } - dbus_message_iter_close_container(&args,&subText); - - char *attr = ""; - dbus_message_iter_open_container(&args,DBUS_TYPE_ARRAY,"s",&subAttrs); - for (i = 0; i < nLabel; i++) { - if (!dbus_message_iter_append_basic(&subAttrs, DBUS_TYPE_STRING, &attr)) { - debug_dbus(_("Out Of Memory!")); - } - } - dbus_message_iter_close_container(&args,&subAttrs); - - dbus_message_iter_append_basic(&args, DBUS_TYPE_BOOLEAN, &has_prev); - dbus_message_iter_append_basic(&args, DBUS_TYPE_BOOLEAN, &has_next); - - // send the message and flush the connection - if (!dbus_connection_send(conn, msg, &serial)) { - debug_dbus(_("Out Of Memory!")); - } - dbus_connection_flush(conn); - - // free the message - dbus_message_unref(msg); - -} - -void KIMUpdatePreeditCaret(int position) -{ - - dbus_uint32_t serial = 0; // unique number to associate replies with requests - DBusMessage* msg; - DBusMessageIter args; - - // create a signal and check for errors - msg = dbus_message_new_signal("/fcitx", // object name of the signal - "org.kde.fcitx", // interface name of the signal - "UpdatePreeditCaret"); // name of the signal - if (NULL == msg) - { - debug_dbus(_("Message Null")); - return; - } - - // append arguments onto signal - dbus_message_iter_init_append(msg, &args); - if (!dbus_message_iter_append_basic(&args, DBUS_TYPE_INT32, &position)) { - debug_dbus(_("Out Of Memory!")); - } - - // send the message and flush the connection - if (!dbus_connection_send(conn, msg, &serial)) { - debug_dbus(_("Out Of Memory!")); - } - dbus_connection_flush(conn); - - // free the message - dbus_message_unref(msg); - -} - -void KIMUpdatePreeditText(char *text) -{ - - dbus_uint32_t serial = 0; // unique number to associate replies with requests - DBusMessage* msg; - DBusMessageIter args; - - // create a signal and check for errors - msg = dbus_message_new_signal("/fcitx", // object name of the signal - "org.kde.fcitx", // interface name of the signal - "UpdatePreeditText"); // name of the signal - if (NULL == msg) - { - debug_dbus(_("Message Null")); - return; - } - - char *attr = ""; - // append arguments onto signal - dbus_message_iter_init_append(msg, &args); - if (!dbus_message_iter_append_basic(&args, DBUS_TYPE_STRING, &text)) { - debug_dbus(_("Out Of Memory!")); - } - if (!dbus_message_iter_append_basic(&args, DBUS_TYPE_STRING, &attr)) { - debug_dbus(_("Out Of Memory!")); - } - - // send the message and flush the connection - if (!dbus_connection_send(conn, msg, &serial)) { - debug_dbus(_("Out Of Memory!")); - } - dbus_connection_flush(conn); - - // free the message - dbus_message_unref(msg); - -} - -void KIMUpdateAux(char *text) -{ - - dbus_uint32_t serial = 0; // unique number to associate replies with requests - DBusMessage* msg; - DBusMessageIter args; - - // create a signal and check for errors - msg = dbus_message_new_signal("/fcitx", // object name of the signal - "org.kde.fcitx", // interface name of the signal - "UpdateAux"); // name of the signal - if (NULL == msg) - { - debug_dbus(_("Message Null")); - return; - } - - char *attr = ""; - - // append arguments onto signal - dbus_message_iter_init_append(msg, &args); - if (!dbus_message_iter_append_basic(&args, DBUS_TYPE_STRING, &text)) { - debug_dbus(_("Out Of Memory!")); - } - if (!dbus_message_iter_append_basic(&args, DBUS_TYPE_STRING, &attr)) { - debug_dbus(_("Out Of Memory!")); - } - - // send the message and flush the connection - if (!dbus_connection_send(conn, msg, &serial)) { - debug_dbus(_("Out Of Memory!")); - } - dbus_connection_flush(conn); - - // free the message - dbus_message_unref(msg); - -} - -void KIMUpdateSpotLocation(int x,int y) -{ - - dbus_uint32_t serial = 0; // unique number to associate replies with requests - DBusMessage* msg; - DBusMessageIter args; - - // create a signal and check for errors - msg = dbus_message_new_signal("/fcitx", // object name of the signal - "org.kde.fcitx", // interface name of the signal - "UpdateSpotLocation"); // name of the signal - if (NULL == msg) - { - debug_dbus(_("Message Null")); - return; - } - - // append arguments onto signal - dbus_message_iter_init_append(msg, &args); - if (!dbus_message_iter_append_basic(&args, DBUS_TYPE_INT32, &x)) { - debug_dbus(_("Out Of Memory!")); - } - if (!dbus_message_iter_append_basic(&args, DBUS_TYPE_INT32, &y)) { - debug_dbus(_("Out Of Memory!")); - } - - // send the message and flush the connection - if (!dbus_connection_send(conn, msg, &serial)) { - debug_dbus(_("Out Of Memory!")); - } - dbus_connection_flush(conn); - - // free the message - dbus_message_unref(msg); - -} - -void KIMUpdateScreen(int id) -{ - - dbus_uint32_t serial = 0; // unique number to associate replies with requests - DBusMessage* msg; - DBusMessageIter args; - - // create a signal and check for errors - msg = dbus_message_new_signal("/fcitx", // object name of the signal - "org.kde.fcitx", // interface name of the signal - "UpdateScreen"); // name of the signal - if (NULL == msg) - { - debug_dbus(_("Message Null")); - return; - } - - // append arguments onto signal - dbus_message_iter_init_append(msg, &args); - if (!dbus_message_iter_append_basic(&args, DBUS_TYPE_INT32, &id)) { - debug_dbus(_("Out Of Memory!")); - } - - // send the message and flush the connection - if (!dbus_connection_send(conn, msg, &serial)) { - debug_dbus(_("Out Of Memory!")); - } - dbus_connection_flush(conn); - - // free the message - dbus_message_unref(msg); - -} - -void updateMessages() -{ - inputWindow.bShowPrev = inputWindow.bShowNext = False; - - int n = messageDown.msgCount; - int nLabels = 0; - int nTexts = 0; - char *label[33]; - char *text[33]; - char cmb[100] = ""; - int i; - - if (n) { - for (i=0;i 0) - inputWindow.bShowPrev = True; - if (iCurrentLegendCandPage < iLegendCandPageCount) - inputWindow.bShowNext = True; - } else { - if (iCurrentCandPage > 0) - inputWindow.bShowPrev = True; - if (iCurrentCandPage < iCandPageCount) - inputWindow.bShowNext = True; - } - KIMUpdateLookupTable(label,nLabels,text,nTexts,inputWindow.bShowPrev,inputWindow.bShowNext); - KIMShowLookupTable(True); - } - for (i = 0; i < nTexts; i++) - free(text[i]); - for (i = 0; i < nLabels; i++) - free(label[i]); - } else { - KIMUpdateLookupTable(NULL,0,NULL,0,inputWindow.bShowPrev,inputWindow.bShowNext); - KIMShowLookupTable(False); - } - - n = messageUp.msgCount; - char aux[MESSAGE_MAX_LENGTH] = ""; - char empty[MESSAGE_MAX_LENGTH] = ""; - if (n) { - char* strGBKT; - // FIXME: buffer overflow - for (i=0;ilabel = (GetCurrentState() == IS_CHN) ? TOOLTIP_STATE_CHN: TOOLTIP_STATE_ENG; - if (GetCurrentState() == IS_CHN) { - prop->icon = "fcitx-chn"; - } else { - prop->icon = "fcitx-eng"; - } - } - if (prop == &punc_prop) { - prop->label = fcitxProfile.bChnPunc ? TOOLTIP_PUNK_CHN : TOOLTIP_PUNK_ENG; - if (fcitxProfile.bChnPunc) { - prop->icon = "fcitx-full-punct"; - } else { - prop->icon = "fcitx-half-punct"; - } - } - if (prop == &corner_prop) { - prop->label = fcitxProfile.bCorner ? TOOLTIP_CORNER_ENABLE : TOOLTIP_CORNER_DISABLE; - if (fcitxProfile.bCorner) { - prop->icon = "fcitx-full-letter"; - } else { - prop->icon = "fcitx-half-letter"; - } - } - if (prop == &vk_prop) { - prop->label = bVK ? TOOLTIP_VK_ENABLE : TOOLTIP_VK_DISABLE; - if (bVK) { - prop->icon = "fcitx-vkon"; - } else { - prop->icon = "fcitx-vkoff"; - } - } - if (prop == &gbkt_prop) { - prop->label = fcitxProfile.bUseGBKT ? TOOLTIP_GBKT_ENABLE : TOOLTIP_GBKT_DISABLE; - if (fcitxProfile.bUseGBKT) { - prop->icon = "fcitx-trad"; - } else { - prop->icon = "fcitx-simp"; - } - } - if (prop == &legend_prop) { - prop->label = fcitxProfile.bUseLegend ? TOOLTIP_LEGEND_ENABLE : TOOLTIP_LEGEND_DISABLE; - if (fcitxProfile.bUseLegend) { - prop->icon = "fcitx-legend"; - } else { - prop->icon = "fcitx-nolegend"; - } - } - char* need_free; - KIMUpdateProperty((need_free = property2string(prop))); - free(need_free); -} - -void triggerProperty(char *propKey) -{ - char *menu[32]; - char *name; - int i; - bzero(menu,32); - if (strcmp(propKey,logo_prop.key) == 0) { - for (i = 0; i < iIMCount; i++) { - name = im[i].strName; - //menu[i] = (char *)malloc(100*sizeof(char)); - Property prop; - prop.key = (char *)malloc(100*sizeof(char)); - prop.icon = ""; - sprintf(prop.key,"/Fcitx/Logo/%d",i); - prop.label = name; - prop.tip = name; - // strcat(prop.tip,"输入法"); - fixProperty(&prop); - menu[i] = property2string(&prop); - free(prop.key); - } - KIMExecMenu(menu,iIMCount); - for (i = 0;i < iIMCount; i++) { - free(menu[i]); - } - } else { - if (strstr(propKey,logo_prop.key) == propKey) { - i = atoi(strrchr(propKey,'/') + 1); - /* - if (ConnectIDGetState (connect_id) == IS_CLOSED) { - SetConnectID (connect_id, IS_CHN); - icidSetIMState(ConnectIDGetICID(connect_id), IS_CHN); - EnterChineseMode (False); - } else if (ConnectIDGetState (connect_id) == IS_ENG) { - ChangeIMState(connect_id); - EnterChineseMode (False); - }*/ - SwitchIM(i); - } - } - - if (strcmp(propKey,state_prop.key) == 0) { - ChangeIMState(); - } - if (strcmp(propKey,punc_prop.key) == 0) { - ChangePunc(); - } - if (strcmp(propKey,corner_prop.key) == 0) { - ChangeCorner(); - } - if (strcmp(propKey,vk_prop.key) == 0) { -// SwitchVK(); - } - if (strcmp(propKey,gbkt_prop.key) == 0) { - ChangeGBKT(); - } - if (strcmp(propKey,legend_prop.key) == 0) { - ChangeLegend(); - } -} - -char* property2string(Property *prop) -{ - int len; - char *result = NULL; - - len = strlen(prop->key) - + strlen(prop->label) - + strlen(prop->icon) - + strlen(prop->tip) - + 3 + 1; - result = malloc(len * sizeof(char)); - - bzero(result,len*sizeof(char)); - strcat(result,prop->key); - strcat(result,":"); - strcat(result,prop->label); - strcat(result,":"); - strcat(result,prop->icon); - strcat(result,":"); - strcat(result,prop->tip); - return result; -} - -void fixProperty(Property *prop) -{ - if (strcmp(prop->label,"Fcitx") == 0) { - prop->icon = "fcitx"; - } - if (strcmp(prop->label,"智能拼音") == 0) { - prop->icon = "fcitx-pinyin"; - } - if (strcmp(prop->label,"智能双拼") == 0) { - prop->icon = ""; - } - if (strcmp(prop->label,"区位") == 0) { - prop->icon = ""; - } - if (strcmp(prop->label,"五笔字型") == 0) { - prop->icon = "fcitx-wubi"; - } - if (strcmp(prop->label,"五笔拼音") == 0) { - prop->icon = "fcitx-wubi"; - } - if (strcmp(prop->label,"二笔") == 0) { - prop->icon = "fcitx-erbi"; - } - if (strcmp(prop->label,"仓颉") == 0) { - prop->icon = "fcitx-cangjie"; - } - if (strcmp(prop->label,"晚风") == 0) { - prop->icon = ""; - } - if (strcmp(prop->label,"冰蟾全息") == 0) { - prop->icon = ""; - } - if (strcmp(prop->label,"自然码") == 0) { - prop->icon = "fcitx-ziranma"; - } - if (strcmp(prop->label,"电报码") == 0) { - prop->icon = ""; - } -} - -void updatePropertyByState() { - int iIndex = GetCurrentState(); - switch (iIndex) { - case IS_CLOSED: - iState = IS_ENG; - strcpy(logo_prop.label, "Fcitx"); - updateProperty(&logo_prop); - updateProperty(&state_prop); - break; - case IS_CHN: - iState = IS_CHN; - strcpy(logo_prop.label, im[gs.iIMIndex].strName); - updateProperty(&logo_prop); - updateProperty(&state_prop); - break; - case IS_ENG: - iState = IS_ENG; - strcpy(logo_prop.label, im[gs.iIMIndex].strName); - updateProperty(&logo_prop); - updateProperty(&state_prop); - break; - } -} - -int calKIMCursorPos() -{ - int i = 0; - int iChar; - int iCount = 0; - - const char *p1; - const char *pivot; - - iChar = iCursorPos; - - for (i = 0; i < messageUp.msgCount ; i++) { - if (inputWindow.bShowCursor && iChar) { - p1 = pivot = messageUp.msg[i].strMsg; - while (*p1 && p1 < pivot + iChar) { - p1 = p1 + utf8_char_len(p1); - iCount ++; - } - if (strlen (messageUp.msg[i].strMsg) > iChar) { - iChar = 0; - } - else { - iChar -= strlen (messageUp.msg[i].strMsg); - } - } - } - - return iCount; -} -// vim: sw=4 sts=4 et tw=100 -#endif // DBUS_C diff -Nru fcitx-4.0.1/src/interface/DBus.h fcitx-4.1.1/src/interface/DBus.h --- fcitx-4.0.1/src/interface/DBus.h 2010-11-28 11:54:51.000000000 +0000 +++ fcitx-4.1.1/src/interface/DBus.h 1970-01-01 00:00:00.000000000 +0000 @@ -1,76 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2008~2010 by Zealot.Hoi * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * - ***************************************************************************/ - -#ifdef _ENABLE_DBUS - -#include -#include "ui/InputWindow.h" -#include "core/ime.h" -#include "core/xim.h" - -extern IM *im; - -extern INT8 iState; -extern Bool bVK; -extern Bool bUseAA; -extern Bool bUseMatchingKey; -extern Bool bUsePinyin; -extern Bool bUseBold; - -typedef struct Property_ { - char *key; - char *label; - char *icon; - char *tip; -} Property; - -extern DBusConnection *conn; - -Bool InitDBus(); - -void KIMExecDialog(char *prop); -void KIMExecMenu(char *props[],int n); -void KIMRegisterProperties(char *props[],int n); -void KIMUpdateProperty(char *prop); -void KIMRemoveProperty(char *prop); -void KIMEnable(Bool toEnable); -void KIMShowAux(Bool toShow); -void KIMShowPreedit(Bool toShow); -void KIMShowLookupTable(Bool toShow); -void KIMUpdateLookupTable(char *labels[], int nLabel, char *texts[], int nText, Bool has_prev, Bool has_next); -void KIMUpdatePreeditCaret(int position); -void KIMUpdatePreeditText(char *text); -void KIMUpdateAux(char *text); -void KIMUpdateSpotLocation(int x,int y); -void KIMUpdateScreen(int id); - -void updateMessages(); - -void registerProperties(); -void updateProperty(Property *prop); -void triggerProperty(char *propKey); - -char* property2string(Property *prop); - -void updatePropertyByState(); - -void DBusLoop(void *val); -void MyDBusEventHandler(); - -#endif diff -Nru fcitx-4.0.1/src/interface/ImeRemote.c fcitx-4.1.1/src/interface/ImeRemote.c --- fcitx-4.0.1/src/interface/ImeRemote.c 2010-12-17 04:20:46.000000000 +0000 +++ fcitx-4.1.1/src/interface/ImeRemote.c 1970-01-01 00:00:00.000000000 +0000 @@ -1,174 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2008~2010 by wind (xihe) * - * xihels@gmail.com * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * - ***************************************************************************/ -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -#include "core/fcitx.h" - -#include "tools/tools.h" -#include "core/xim.h" -#include "ui/MainWindow.h" -#include "ui/TrayWindow.h" -#include "tools/configfile.h" -#include "fcitx-config/cutils.h" -#include "im/pinyin/sp.h" -#include "im/special/QuickPhrase.h" -#include "im/special/AutoEng.h" -#include "im/special/punc.h" -#include "ui/AboutWindow.h" -#ifdef _ENABLE_DBUS -#include "interface/DBus.h" -extern Property state_prop; -#endif -extern Display* dpy; -char socketfile[PATH_MAX]=""; - -int create_socket(const char *name) -{ - int fd; - int r; - struct sockaddr_un uds_addr; - - /* JIC */ - unlink(name); - - fd = socket(AF_UNIX, SOCK_STREAM, 0); - if (fd < 0) { - return fd; - } - - /* setup address struct */ - memset(&uds_addr, 0, sizeof(uds_addr)); - uds_addr.sun_family = AF_UNIX; - strcpy(uds_addr.sun_path, name); - - /* bind it to the socket */ - r = bind(fd, (struct sockaddr *)&uds_addr, sizeof(uds_addr)); - if (r < 0) { - return r; - } - - - /* listen - allow 10 to queue */ - r = listen(fd, 10); - if (r < 0) { - return r; - } - - return fd; -} - - -int ud_accept(int listenfd) -{ - for (;;) { - int newsock = 0; - struct sockaddr_un cliaddr; - socklen_t len = sizeof(struct sockaddr_un); - - newsock = accept(listenfd, (struct sockaddr *)&cliaddr, &len); - if (newsock < 0) { - if (errno == EINTR) { - continue; /* signal */ - } - } - - return newsock; - } -} - -static void send_ime_state(int fd) -{ - IME_STATE r = GetCurrentState(); - write(fd, &r, sizeof(r)); -} - -static void main_loop (int socket_fd) -{ - unsigned int O; // 低16位, 0 = get, 1 = set; - // 高16位, 只用于 set, 0 关闭输入法, 1 打开输入法. - for (;;) { - int client_fd = ud_accept(socket_fd); - read(client_fd, &O, sizeof(int)); - unsigned int cmd = O & 0xFFFF; - unsigned int arg = (O >> 16) & 0xFFFF; - FcitxLock(); - switch (cmd) - { - /// {{{ - case 0: - send_ime_state(client_fd); - break; - case 1: - SetIMState(arg); - if (!fc.bUseDBus) { - DisplayMainWindow(); - DrawMainWindow(); - } -#ifdef _ENABLE_DBUS - if (fc.bUseDBus) - updateProperty(&state_prop); -#endif -#ifdef _ENABLE_TRAY - if (!fc.bUseDBus) { - if (GetCurrentState() == IS_CHN) - DrawTrayWindow (ACTIVE_ICON, 0, 0, tray.size, tray.size ); - else - DrawTrayWindow (INACTIVE_ICON, 0, 0, tray.size, tray.size ); - } -#endif - break; - case 2: - ReloadConfig(); - break; - default: - break; - /// }}} - } - FcitxUnlock(); - close(client_fd); - } -} - -void* remoteThread (void* val) -{ - sprintf(socketfile, "/tmp/fcitx-socket-%s", DisplayString(dpy)); - int socket_fd = create_socket(socketfile); - if (socket_fd < 0) { - FcitxLog(ERROR, _("Can't open socket %s: %s"), socketfile, strerror(errno)); - return 0; - } - - fcntl(socket_fd, F_SETFD, FD_CLOEXEC); - chmod(socketfile, 0666); - main_loop(socket_fd); - close(socket_fd); - return 0; -} /* ---------- end of function main ---------- */ - diff -Nru fcitx-4.0.1/src/interface/Makefile.am fcitx-4.1.1/src/interface/Makefile.am --- fcitx-4.0.1/src/interface/Makefile.am 2010-11-28 11:55:00.000000000 +0000 +++ fcitx-4.1.1/src/interface/Makefile.am 1970-01-01 00:00:00.000000000 +0000 @@ -1,13 +0,0 @@ -INCLUDES = \ - -I$(top_srcdir)/lib \ - -I$(top_srcdir)/src \ - @CAIRO_XLIB_CFLAGS@ \ - @DBUS_CFLAGS@ \ - @PANGOCAIRO_CFLAGS@ \ - $(NULL) -DEFS = -DPKGDATADIR=\"$(pkgdatadir)\" - -noinst_LIBRARIES=libinterface.a -libinterface_a_SOURCES= DBus.c DBus.h \ - ImeRemote.c - diff -Nru fcitx-4.0.1/src/interface/Makefile.in fcitx-4.1.1/src/interface/Makefile.in --- fcitx-4.0.1/src/interface/Makefile.in 2010-12-17 04:26:31.000000000 +0000 +++ fcitx-4.1.1/src/interface/Makefile.in 1970-01-01 00:00:00.000000000 +0000 @@ -1,542 +0,0 @@ -# Makefile.in generated by automake 1.11.1 from Makefile.am. -# @configure_input@ - -# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, -# Inc. -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - -@SET_MAKE@ - -VPATH = @srcdir@ -pkgdatadir = $(datadir)/@PACKAGE@ -pkgincludedir = $(includedir)/@PACKAGE@ -pkglibdir = $(libdir)/@PACKAGE@ -pkglibexecdir = $(libexecdir)/@PACKAGE@ -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = @build@ -host_triplet = @host@ -subdir = src/interface -DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/configure.in -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -mkinstalldirs = $(install_sh) -d -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -CONFIG_CLEAN_VPATH_FILES = -LIBRARIES = $(noinst_LIBRARIES) -ARFLAGS = cru -AM_V_AR = $(am__v_AR_$(V)) -am__v_AR_ = $(am__v_AR_$(AM_DEFAULT_VERBOSITY)) -am__v_AR_0 = @echo " AR " $@; -AM_V_at = $(am__v_at_$(V)) -am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) -am__v_at_0 = @ -libinterface_a_AR = $(AR) $(ARFLAGS) -libinterface_a_LIBADD = -am_libinterface_a_OBJECTS = DBus.$(OBJEXT) ImeRemote.$(OBJEXT) -libinterface_a_OBJECTS = $(am_libinterface_a_OBJECTS) -DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles -am__mv = mv -f -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -AM_V_lt = $(am__v_lt_$(V)) -am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) -am__v_lt_0 = --silent -LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ - $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ - $(AM_CFLAGS) $(CFLAGS) -AM_V_CC = $(am__v_CC_$(V)) -am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) -am__v_CC_0 = @echo " CC " $@; -CCLD = $(CC) -LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -AM_V_CCLD = $(am__v_CCLD_$(V)) -am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) -am__v_CCLD_0 = @echo " CCLD " $@; -AM_V_GEN = $(am__v_GEN_$(V)) -am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) -am__v_GEN_0 = @echo " GEN " $@; -SOURCES = $(libinterface_a_SOURCES) -DIST_SOURCES = $(libinterface_a_SOURCES) -ETAGS = etags -CTAGS = ctags -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -ACLOCAL = @ACLOCAL@ -ALL_LINGUAS = @ALL_LINGUAS@ -AMTAR = @AMTAR@ -AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ -AR = @AR@ -AUTOCONF = @AUTOCONF@ -AUTOHEADER = @AUTOHEADER@ -AUTOMAKE = @AUTOMAKE@ -AWK = @AWK@ -CAIRO_XLIB_CFLAGS = @CAIRO_XLIB_CFLAGS@ -CAIRO_XLIB_LIBS = @CAIRO_XLIB_LIBS@ -CC = @CC@ -CCDEPMODE = @CCDEPMODE@ -CFLAGS = @CFLAGS@ -CPP = @CPP@ -CPPFLAGS = @CPPFLAGS@ -CYGPATH_W = @CYGPATH_W@ -DATADIRNAME = @DATADIRNAME@ -DBUS_CFLAGS = @DBUS_CFLAGS@ -DBUS_LIBS = @DBUS_LIBS@ -DEFS = -DPKGDATADIR=\"$(pkgdatadir)\" -DEPDIR = @DEPDIR@ -DLLTOOL = @DLLTOOL@ -DSYMUTIL = @DSYMUTIL@ -DUMPBIN = @DUMPBIN@ -ECHO_C = @ECHO_C@ -ECHO_N = @ECHO_N@ -ECHO_T = @ECHO_T@ -EGREP = @EGREP@ -EXEEXT = @EXEEXT@ -FGREP = @FGREP@ -FONTCONFIG_CFLAGS = @FONTCONFIG_CFLAGS@ -FONTCONFIG_LIBS = @FONTCONFIG_LIBS@ -GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ -GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ -GMSGFMT = @GMSGFMT@ -GMSGFMT_015 = @GMSGFMT_015@ -GREP = @GREP@ -HOST_LIBS = @HOST_LIBS@ -INCINTL = @INCINTL@ -INSTALL = @INSTALL@ -INSTALL_DATA = @INSTALL_DATA@ -INSTALL_PROGRAM = @INSTALL_PROGRAM@ -INSTALL_SCRIPT = @INSTALL_SCRIPT@ -INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ -INTLLIBS = @INTLLIBS@ -INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ -INTLTOOL_MERGE = @INTLTOOL_MERGE@ -INTLTOOL_PERL = @INTLTOOL_PERL@ -INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ -INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ -LD = @LD@ -LDFLAGS = @LDFLAGS@ -LIBICONV = @LIBICONV@ -LIBINTL = @LIBINTL@ -LIBOBJS = @LIBOBJS@ -LIBS = @LIBS@ -LIBTOOL = @LIBTOOL@ -LIPO = @LIPO@ -LN_S = @LN_S@ -LTLIBICONV = @LTLIBICONV@ -LTLIBINTL = @LTLIBINTL@ -LTLIBOBJS = @LTLIBOBJS@ -MAKEINFO = @MAKEINFO@ -MANIFEST_TOOL = @MANIFEST_TOOL@ -MD5SUM = @MD5SUM@ -MKDIR_P = @MKDIR_P@ -MSGFMT = @MSGFMT@ -MSGFMT_015 = @MSGFMT_015@ -MSGMERGE = @MSGMERGE@ -NM = @NM@ -NMEDIT = @NMEDIT@ -OBJDUMP = @OBJDUMP@ -OBJEXT = @OBJEXT@ -OTOOL = @OTOOL@ -OTOOL64 = @OTOOL64@ -PACKAGE = @PACKAGE@ -PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ -PACKAGE_NAME = @PACKAGE_NAME@ -PACKAGE_STRING = @PACKAGE_STRING@ -PACKAGE_TARNAME = @PACKAGE_TARNAME@ -PACKAGE_URL = @PACKAGE_URL@ -PACKAGE_VERSION = @PACKAGE_VERSION@ -PANGOCAIRO_CFLAGS = @PANGOCAIRO_CFLAGS@ -PANGOCAIRO_LIBS = @PANGOCAIRO_LIBS@ -PATH_SEPARATOR = @PATH_SEPARATOR@ -PKG_CONFIG = @PKG_CONFIG@ -PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ -PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ -POSUB = @POSUB@ -RANLIB = @RANLIB@ -SED = @SED@ -SET_MAKE = @SET_MAKE@ -SHELL = @SHELL@ -STRIP = @STRIP@ -TAR = @TAR@ -USE_NLS = @USE_NLS@ -VERSION = @VERSION@ -WGET = @WGET@ -XGETTEXT = @XGETTEXT@ -XGETTEXT_015 = @XGETTEXT_015@ -XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ -XMKMF = @XMKMF@ -XRENDER_CFLAGS = @XRENDER_CFLAGS@ -XRENDER_LIBS = @XRENDER_LIBS@ -X_CFLAGS = @X_CFLAGS@ -X_LIBS = @X_LIBS@ -abs_builddir = @abs_builddir@ -abs_srcdir = @abs_srcdir@ -abs_top_builddir = @abs_top_builddir@ -abs_top_srcdir = @abs_top_srcdir@ -ac_ct_AR = @ac_ct_AR@ -ac_ct_CC = @ac_ct_CC@ -ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ -am__include = @am__include@ -am__leading_dot = @am__leading_dot@ -am__quote = @am__quote@ -am__tar = @am__tar@ -am__untar = @am__untar@ -bindir = @bindir@ -build = @build@ -build_alias = @build_alias@ -build_cpu = @build_cpu@ -build_os = @build_os@ -build_vendor = @build_vendor@ -builddir = @builddir@ -datadir = @datadir@ -datarootdir = @datarootdir@ -docdir = @docdir@ -dvidir = @dvidir@ -exec_prefix = @exec_prefix@ -host = @host@ -host_alias = @host_alias@ -host_cpu = @host_cpu@ -host_os = @host_os@ -host_vendor = @host_vendor@ -htmldir = @htmldir@ -includedir = @includedir@ -infodir = @infodir@ -install_sh = @install_sh@ -libdir = @libdir@ -libexecdir = @libexecdir@ -localedir = @localedir@ -localstatedir = @localstatedir@ -mandir = @mandir@ -mkdir_p = @mkdir_p@ -oldincludedir = @oldincludedir@ -pdfdir = @pdfdir@ -prefix = @prefix@ -program_transform_name = @program_transform_name@ -psdir = @psdir@ -sbindir = @sbindir@ -sharedstatedir = @sharedstatedir@ -srcdir = @srcdir@ -sysconfdir = @sysconfdir@ -target_alias = @target_alias@ -top_build_prefix = @top_build_prefix@ -top_builddir = @top_builddir@ -top_srcdir = @top_srcdir@ -INCLUDES = \ - -I$(top_srcdir)/lib \ - -I$(top_srcdir)/src \ - @CAIRO_XLIB_CFLAGS@ \ - @DBUS_CFLAGS@ \ - @PANGOCAIRO_CFLAGS@ \ - $(NULL) - -noinst_LIBRARIES = libinterface.a -libinterface_a_SOURCES = DBus.c DBus.h \ - ImeRemote.c - -all: all-am - -.SUFFIXES: -.SUFFIXES: .c .lo .o .obj -$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ - && { if test -f $@; then exit 0; else break; fi; }; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/interface/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign src/interface/Makefile -.PRECIOUS: Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(am__aclocal_m4_deps): - -clean-noinstLIBRARIES: - -test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES) -libinterface.a: $(libinterface_a_OBJECTS) $(libinterface_a_DEPENDENCIES) - $(AM_V_at)-rm -f libinterface.a - $(AM_V_AR)$(libinterface_a_AR) libinterface.a $(libinterface_a_OBJECTS) $(libinterface_a_LIBADD) - $(AM_V_at)$(RANLIB) libinterface.a - -mostlyclean-compile: - -rm -f *.$(OBJEXT) - -distclean-compile: - -rm -f *.tab.c - -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/DBus.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ImeRemote.Po@am__quote@ - -.c.o: -@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c $< - -.c.obj: -@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` - -.c.lo: -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs - -ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - mkid -fID $$unique -tags: TAGS - -TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - set x; \ - here=`pwd`; \ - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: CTAGS -CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d "$(distdir)/$$file"; then \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ - else \ - test -f "$(distdir)/$$file" \ - || cp -p $$d/$$file "$(distdir)/$$file" \ - || exit 1; \ - fi; \ - done -check-am: all-am -check: check-am -all-am: Makefile $(LIBRARIES) -installdirs: -install: install-am -install-exec: install-exec-am -install-data: install-data-am -uninstall: uninstall-am - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-am -install-strip: - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - `test -z '$(STRIP)' || \ - echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install -mostlyclean-generic: - -clean-generic: - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-am - -clean-am: clean-generic clean-libtool clean-noinstLIBRARIES \ - mostlyclean-am - -distclean: distclean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -distclean-am: clean-am distclean-compile distclean-generic \ - distclean-tags - -dvi: dvi-am - -dvi-am: - -html: html-am - -html-am: - -info: info-am - -info-am: - -install-data-am: - -install-dvi: install-dvi-am - -install-dvi-am: - -install-exec-am: - -install-html: install-html-am - -install-html-am: - -install-info: install-info-am - -install-info-am: - -install-man: - -install-pdf: install-pdf-am - -install-pdf-am: - -install-ps: install-ps-am - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-am - -mostlyclean-am: mostlyclean-compile mostlyclean-generic \ - mostlyclean-libtool - -pdf: pdf-am - -pdf-am: - -ps: ps-am - -ps-am: - -uninstall-am: - -.MAKE: install-am install-strip - -.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ - clean-libtool clean-noinstLIBRARIES ctags distclean \ - distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am html html-am info info-am \ - install install-am install-data install-data-am install-dvi \ - install-dvi-am install-exec install-exec-am install-html \ - install-html-am install-info install-info-am install-man \ - install-pdf install-pdf-am install-ps install-ps-am \ - install-strip installcheck installcheck-am installdirs \ - maintainer-clean maintainer-clean-generic mostlyclean \ - mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ - pdf pdf-am ps ps-am tags uninstall uninstall-am - - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff -Nru fcitx-4.0.1/src/lib/CMakeLists.txt fcitx-4.1.1/src/lib/CMakeLists.txt --- fcitx-4.0.1/src/lib/CMakeLists.txt 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/lib/CMakeLists.txt 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,3 @@ +add_subdirectory(fcitx-config) +add_subdirectory(fcitx-utils) +add_subdirectory(fcitx) \ No newline at end of file diff -Nru fcitx-4.0.1/src/lib/fcitx/addon.c fcitx-4.1.1/src/lib/fcitx/addon.c --- fcitx-4.0.1/src/lib/fcitx/addon.c 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/lib/fcitx/addon.c 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,293 @@ +/*************************************************************************** + * Copyright (C) 2010~2010 by CSSlayer * + * wengxt@gmail.com * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +/** + * @file addon.c + * @brief Addon Support for fcitx + * @author CSSlayer wengxt@gmail.com + */ + +#include +#include +#include +#include + +#include "fcitx/fcitx.h" +#include "addon.h" +#include "fcitx-config/xdg.h" +#include "fcitx-utils/log.h" +#include "fcitx-utils/utils.h" +#include "instance.h" + +CONFIG_BINDING_BEGIN(FcitxAddon) +CONFIG_BINDING_REGISTER("Addon", "Name", name) +CONFIG_BINDING_REGISTER("Addon", "GeneralName", generalname) +CONFIG_BINDING_REGISTER("Addon", "Comment", comment) +CONFIG_BINDING_REGISTER("Addon", "Category", category) +CONFIG_BINDING_REGISTER("Addon", "Enabled", bEnabled) +CONFIG_BINDING_REGISTER("Addon", "Library", library) +CONFIG_BINDING_REGISTER("Addon", "Type", type) +CONFIG_BINDING_REGISTER("Addon", "Dependency", depend) +CONFIG_BINDING_REGISTER("Addon", "Priority", priority) +CONFIG_BINDING_REGISTER("Addon", "SubConfig", subconfig) +CONFIG_BINDING_END() + +static const UT_icd function_icd = {sizeof(void*), 0, 0 ,0}; +static const UT_icd addon_icd = {sizeof(FcitxAddon), NULL ,NULL, FreeAddon}; +static int AddonPriorityCmp(const void* a, const void* b) +{ + FcitxAddon *aa = (FcitxAddon*)a, *ab = (FcitxAddon*)b; + return aa->priority - ab->priority; +} + +FCITX_EXPORT_API +void InitFcitxAddons(UT_array* addons) +{ + utarray_init(addons, &addon_icd); +} + +/** + * @brief Load Addon Info + */ +FCITX_EXPORT_API +void LoadAddonInfo(UT_array* addons) +{ + char **addonPath; + size_t len; + char pathBuf[PATH_MAX]; + size_t i = 0; + DIR *dir; + struct dirent *drt; + struct stat fileStat; + utarray_clear(addons); + + StringHashSet* sset = NULL; + + addonPath = GetXDGPath(&len, "XDG_CONFIG_HOME", ".config", PACKAGE "/addon" , DATADIR, PACKAGE "/addon" ); + + for (i = 0; i< len; i++) + { + snprintf(pathBuf, sizeof(pathBuf), "%s", addonPath[i]); + pathBuf[sizeof(pathBuf) - 1] = '\0'; + + dir = opendir(pathBuf); + if (dir == NULL) + continue; + + /* collect all *.conf files */ + while ((drt = readdir(dir)) != NULL) + { + size_t nameLen = strlen(drt->d_name); + if (nameLen <= strlen(".conf") ) + continue; + memset(pathBuf,0,sizeof(pathBuf)); + + if (strcmp(drt->d_name + nameLen -strlen(".conf"), ".conf") != 0) + continue; + snprintf(pathBuf, sizeof(pathBuf), "%s/%s", addonPath[i], drt->d_name ); + + if (stat(pathBuf, &fileStat) == -1) + continue; + + if (fileStat.st_mode & S_IFREG) + { + StringHashSet *string; + HASH_FIND_STR(sset, drt->d_name, string); + if (!string) + { + char *bStr = strdup(drt->d_name); + string = malloc(sizeof(StringHashSet)); + memset(string, 0, sizeof(StringHashSet)); + string->name = bStr; + HASH_ADD_KEYPTR(hh, sset, string->name, strlen(string->name), string); + } + } + } + + closedir(dir); + } + + char **paths = malloc(sizeof(char*) *len); + for (i = 0;i < len ;i ++) + paths[i] = malloc(sizeof(char) *PATH_MAX); + StringHashSet* string; + for (string = sset; + string != NULL; + string = (StringHashSet*)string->hh.next) + { + int i = 0; + for (i = len -1; i >= 0; i--) + { + snprintf(paths[i], PATH_MAX, "%s/%s", addonPath[len - i - 1], string->name); + FcitxLog(DEBUG, "Load Addon Config File:%s", paths[i]); + } + FcitxLog(INFO, _("Load Addon Config File:%s"), string->name); + ConfigFile* cfile = ParseMultiConfigFile(paths, len, GetAddonConfigDesc()); + if (cfile) + { + FcitxAddon addon; + memset(&addon, 0, sizeof(FcitxAddon)); + utarray_push_back(addons, &addon); + FcitxAddon *a = (FcitxAddon*) utarray_back(addons); + utarray_init(&a->functionList, &function_icd); + FcitxAddonConfigBind(a, cfile, GetAddonConfigDesc()); + ConfigBindSync((GenericConfig*)a); + FcitxLog(DEBUG, _("Addon Config %s is %s"),string->name, (a->bEnabled)?"Enabled":"Disabled"); + } + } + + for (i = 0;i < len ;i ++) + free(paths[i]); + free(paths); + + FreeXDGPath(addonPath); + + StringHashSet *curStr; + while (sset) + { + curStr = sset; + HASH_DEL(sset, curStr); + free(curStr->name); + free(curStr); + } + + utarray_sort(addons, AddonPriorityCmp); +} + +FCITX_EXPORT_API +void AddonResolveDependency(FcitxInstance* instance) +{ + UT_array* addons = &instance->addons; + boolean remove = true; + FcitxAddon *addon; + + /* choose ui */ + boolean founduiflag = false; + for ( addon = (FcitxAddon *) utarray_front(addons); + addon != NULL; + addon = (FcitxAddon *) utarray_next(addons, addon)) + { + if (addon->category == AC_UI) + { + if (instance->uiname == NULL) + { + if (addon->bEnabled) + { + if (!founduiflag) + founduiflag = true; + else + addon->bEnabled = false; + } + } + else + { + if (strcmp(instance->uiname, addon->name) != 0) + addon->bEnabled = false; + else + addon->bEnabled = true; + } + } + } + + while (remove) + { + remove = false; + for ( addon = (FcitxAddon *) utarray_front(addons); + addon != NULL; + addon = (FcitxAddon *) utarray_next(addons, addon)) + { + if (!addon->bEnabled) + continue; + UT_array* dependlist = SplitString(addon->depend, ','); + boolean valid = true; + char **depend = NULL; + for (depend = (char **) utarray_front(dependlist); + depend != NULL; + depend = (char **) utarray_next(dependlist, depend)) + { + if (!AddonIsAvailable(addons, *depend)) + { + valid = false; + break; + } + } + + utarray_free(dependlist); + if (!valid) + { + FcitxLog(WARNING, _("Disable addon %s, dependency %s can not be satisfied."), addon->name, addon->depend); + addon->bEnabled = false; + } + } + } +} + +FCITX_EXPORT_API +boolean AddonIsAvailable(UT_array* addons, const char* name) +{ + FcitxAddon *addon; + for ( addon = (FcitxAddon *) utarray_front(addons); + addon != NULL; + addon = (FcitxAddon *) utarray_next(addons, addon)) + { + if (addon->bEnabled && strcmp(name, addon->name) == 0) + return true; + } + return false; +} + +FCITX_EXPORT_API +FcitxAddon* GetAddonByName(UT_array* addons, const char* name) +{ + FcitxAddon *addon; + for ( addon = (FcitxAddon *) utarray_front(addons); + addon != NULL; + addon = (FcitxAddon *) utarray_next(addons, addon)) + { + if (addon->bEnabled && strcmp(name, addon->name) == 0) + return addon; + } + return NULL; +} + +/** + * @brief Load addon.desc file + * + * @return the description of addon configure. + */ +FCITX_EXPORT_API +CONFIG_DESC_DEFINE(GetAddonConfigDesc, "addon.desc") + +FCITX_EXPORT_API +void FreeAddon(void *v) +{ + FcitxAddon *addon = (FcitxAddon*) v; + if (!addon) + return ; + FreeConfigFile(addon->config.configFile); + free(addon->name); + free(addon->library); + free(addon->comment); + free(addon->generalname); + free(addon->depend); + free(addon->subconfig); +} + +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/lib/fcitx/addon.h fcitx-4.1.1/src/lib/fcitx/addon.h --- fcitx-4.0.1/src/lib/fcitx/addon.h 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/lib/fcitx/addon.h 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,154 @@ +/*************************************************************************** + * Copyright (C) 2010~2010 by CSSlayer * + * wengxt@gmail.com * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +/** + * @file addon.h + * @brief Header Addon Support for fcitx + * @author CSSlayer wengxt@gmail.com + */ + +#ifndef _FCITX_ADDON_H_ +#define _FCITX_ADDON_H_ + +#include +#include + +#ifdef __cplusplus +extern "C" { +#endif + + struct _FcitxInstance; + /** + * @brief Addon Category Definition + **/ + typedef enum _AddonCategory + { + /** + * @brief Input method + **/ + AC_INPUTMETHOD = 0, + /** + * @brief Input frontend, like xim + **/ + AC_FRONTEND, + /** + * @brief General module, can be implemented in a quite extensive way + **/ + AC_MODULE, + /** + * @brief User Interface, only one of it can be enabled currently. + **/ + AC_UI + } AddonCategory; + + /** + * @brief Supported Addon Type, Currently only sharedlibrary + **/ + typedef enum _AddonType + { + AT_SHAREDLIBRARY = 0 + } AddonType; + + /** + * @brief Addon Instance in Fcitx + **/ + typedef struct _FcitxAddon + { + GenericConfig config; + char *name; + char *generalname; + char *comment; + boolean bEnabled; + AddonCategory category; + AddonType type; + char *library; + char *depend; + int priority; + char *subconfig; + union { + struct _FcitxFrontend *frontend; + struct _FcitxModule *module; + struct _FcitxIMClass* imclass; + struct _FcitxUI* ui; + }; + void *addonInstance; + UT_array functionList; + } FcitxAddon; + + /** + * @brief Init utarray for addon + * + * @return void + **/ + void InitFcitxAddons(UT_array* addons); + + /** + * @brief Free one addon info + * + * @param v addon info + */ + void FreeAddon(void *v); + + /** + * @brief Load all addon of fcitx during initialize + * + * @return void + **/ + void LoadAddonInfo(UT_array* addons); + + /** + * @brief Resolve addon dependency, in order to make every addon works + * + * @return void + **/ + void AddonResolveDependency(struct _FcitxInstance* instance); + + /** + * @brief Check whether an addon is enabled or not by addon name + * + * @param addons addon array + * @param name addon name + * @return boolean + **/ + boolean AddonIsAvailable(UT_array* addons, const char* name); + + /** + * @brief Get addon instance by addon name + * + * @param addons addon array + * @param name addon name + * @return FcitxAddon* + **/ + FcitxAddon* GetAddonByName(UT_array* addons, const char* name); + + /** + * @brief Load addon.desc file + * + * @return ConfigFileDesc* + **/ + ConfigFileDesc* GetAddonConfigDesc(); + +#ifdef __cplusplus +} +#endif + +#endif + +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/lib/fcitx/candidate.c fcitx-4.1.1/src/lib/fcitx/candidate.c --- fcitx-4.0.1/src/lib/fcitx/candidate.c 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/lib/fcitx/candidate.c 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,226 @@ +/*************************************************************************** + * Copyright (C) 2011~2011 by CSSlayer * + * wengxt@gmail.com * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +#include "candidate.h" + +typedef struct _CandidateWordList +{ + UT_array candWords; + char strChoose[MAX_CAND_WORD + 1]; + int currentPage; + int wordPerPage; +} CandidateWordList; + +const UT_icd cand_icd = { sizeof(CandidateWord), NULL, NULL, CandidateWordFree }; + +FCITX_EXPORT_API +CandidateWordList* CandidateWordInit() +{ + CandidateWordList* candList = fcitx_malloc0(sizeof(CandidateWordList)); + + utarray_init(&candList->candWords, &cand_icd); + utarray_reserve(&candList->candWords, 128); + candList->wordPerPage = 5; /* anyway put a default value for safety */ + strncpy(candList->strChoose, DIGIT_STR_CHOOSE, MAX_CAND_WORD); + + return candList; +} + +FCITX_EXPORT_API +void CandidateWordInsert(CandidateWordList* candList, CandidateWord* candWord, int position) +{ + utarray_insert(&candList->candWords, candWord, position); +} + +FCITX_EXPORT_API +void CandidateWordReset(CandidateWordList* candList) +{ + utarray_clear(&candList->candWords); + candList->currentPage = 0; +} + +FCITX_EXPORT_API +CandidateWord* CandidateWordGetCurrentWindow(CandidateWordList* candList) +{ + return (CandidateWord*) utarray_eltptr(&candList->candWords, candList->currentPage * candList->wordPerPage); +} + +FCITX_EXPORT_API +CandidateWord* CandidateWordGetCurrentWindowNext(CandidateWordList* candList, CandidateWord* candWord) +{ + CandidateWord* nextCandWord = (CandidateWord*) utarray_next(&candList->candWords, candWord); + CandidateWord* startCandWord = CandidateWordGetCurrentWindow(candList); + if (nextCandWord == NULL) + return NULL; + int delta = utarray_eltidx(&candList->candWords, nextCandWord) - utarray_eltidx(&candList->candWords, startCandWord); + if (delta < 0 || delta >= candList->wordPerPage) + return NULL; + return nextCandWord; +} + +FCITX_EXPORT_API +CandidateWord* CandidateWordGetByIndex(CandidateWordList* candList, int index) +{ + if (index < candList->wordPerPage && index >= 0) + return (CandidateWord*) utarray_eltptr(&candList->candWords, candList->currentPage * candList->wordPerPage + index); + return NULL; +} + +FCITX_EXPORT_API +INPUT_RETURN_VALUE CandidateWordChooseByIndex(CandidateWordList* candList, int index) +{ + CandidateWord* candWord = CandidateWordGetByIndex(candList, index); + if (candWord == NULL) + return IRV_TO_PROCESS; + else + return candWord->callback(candWord->owner, candWord); +} + +FCITX_EXPORT_API +boolean CandidateWordHasPrev(CandidateWordList* candList) +{ + if (candList->currentPage > 0) + return true; + else + return false; +} + +FCITX_EXPORT_API +boolean CandidateWordHasNext(CandidateWordList* candList) +{ + if (candList->currentPage + 1 < CandidateWordPageCount(candList)) + return true; + else + return false; +} + +FCITX_EXPORT_API +int CandidateWordPageCount(CandidateWordList* candList) +{ + return ( utarray_len(&candList->candWords) + candList->wordPerPage - 1 ) / candList->wordPerPage; +} + +FCITX_EXPORT_API +void CandidateWordFree(void* arg) +{ + CandidateWord* candWord = (CandidateWord*) arg; + if (candWord->strWord) + free(candWord->strWord); + if (candWord->strExtra) + free(candWord->strExtra); + if (candWord->priv) + free(candWord->priv); +} + +FCITX_EXPORT_API +void CandidateWordAppend(CandidateWordList* candList, CandidateWord* candWord) +{ + utarray_push_back(&candList->candWords, candWord); +} + +FCITX_EXPORT_API +boolean CandidateWordGoPrevPage(CandidateWordList* candList) +{ + if (!CandidateWordPageCount(candList)) + return false; + if (CandidateWordHasPrev(candList)) + candList->currentPage -- ; + return true; +} + +FCITX_EXPORT_API +boolean CandidateWordGoNextPage(CandidateWordList* candList) +{ + if (!CandidateWordPageCount(candList)) + return false; + if (CandidateWordHasNext(candList)) + candList->currentPage ++ ; + return true; +} + +FCITX_EXPORT_API +void CandidateWordSetChoose(CandidateWordList* candList, const char* strChoose) +{ + strncpy(candList->strChoose, strChoose, MAX_CAND_WORD); +} + +FCITX_EXPORT_API +const char* CandidateWordGetChoose(CandidateWordList* candList) +{ + return candList->strChoose; +} + +FCITX_EXPORT_API +int CandidateWordGetCurrentPage(CandidateWordList* candList) +{ + return candList->currentPage; +} + +FCITX_EXPORT_API +void CandidateWordResize(CandidateWordList* candList, int length) +{ + utarray_resize(&candList->candWords, length); +} + +FCITX_EXPORT_API +int CandidateWordGetPageSize(CandidateWordList* candList) +{ + return candList->wordPerPage; +} + +FCITX_EXPORT_API +void CandidateWordSetPageSize(CandidateWordList* candList, int size) +{ + candList->wordPerPage = size; +} + +FCITX_EXPORT_API +int CandidateWordGetCurrentWindowSize(CandidateWordList* candList) +{ + if (utarray_len(&candList->candWords) == 0) + return 0; + /* last page */ + if (candList->currentPage + 1 == CandidateWordPageCount(candList)) + { + int size = utarray_len(&candList->candWords) % candList->wordPerPage; + if (size != 0) + return size; + } + return candList->wordPerPage; +} + +FCITX_EXPORT_API +int CandidateWordGetListSize(CandidateWordList* candList) +{ + return utarray_len(&candList->candWords); +} + +FCITX_EXPORT_API +CandidateWord* CandidateWordGetFirst(CandidateWordList* candList) +{ + return (CandidateWord*) utarray_front(&candList->candWords); +} + +FCITX_EXPORT_API +CandidateWord* CandidateWordGetNext(CandidateWordList* candList, CandidateWord* candWord) +{ + return (CandidateWord*) utarray_next(&candList->candWords, candWord); +} +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/lib/fcitx/candidate.h fcitx-4.1.1/src/lib/fcitx/candidate.h --- fcitx-4.0.1/src/lib/fcitx/candidate.h 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/lib/fcitx/candidate.h 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,272 @@ +/*************************************************************************** + * Copyright (C) 2011~2011 by CSSlayer * + * wengxt@gmail.com * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +#ifndef FCITX_CANDIDATE_H +#define FCITX_CANDIDATE_H +#include +#include +#include + +#ifdef __cplusplus +extern "C" { +#endif + + struct _CandidateWord; + struct _CandidateWordList; + + typedef INPUT_RETURN_VALUE (*CandidateWordCommitCallback)(void* arg, struct _CandidateWord* candWord); + + /** + * @brief A Single Candidate Word + **/ + typedef struct _CandidateWord + { + /** + * @brief String display in the front + **/ + char* strWord; + /** + * @brief String display before strWord + **/ + char* strExtra; + /** + * @brief Callback when string is going to commit + **/ + CandidateWordCommitCallback callback; + /** + * @brief Pointer can identify where the candidatework come from + **/ + void* owner; + /** + * @brief Store a candidateWord Specific data, usually index of input method data + **/ + void* priv; + } CandidateWord; + + /** + * @brief Initialize a word list, should only used by runtime + * + * @return _CandidateWordList* + **/ + struct _CandidateWordList* CandidateWordInit(); + + /** + * @brief Insert a candidate to position + * + * @param candList candidate word list + * @param candWord candidate word + * @param position position to insert + * @return void + **/ + + void CandidateWordInsert(struct _CandidateWordList* candList, CandidateWord* candWord, int position); + /** + * @brief add a candidate word at last + * + * @param candList candidate word list + * @param candWord candidate word + * @return void + **/ + void CandidateWordAppend(struct _CandidateWordList* candList, CandidateWord* candWord); + + /** + * @brief Get first of current page + * + * @param candList candidate word list + * @return CandidateWord* first candidate word of current page + **/ + CandidateWord* CandidateWordGetCurrentWindow(struct _CandidateWordList* candList); + + /** + * @brief get next word of current page, useful when you want to iteration over current candidate words + * + * @param candList candidate word list + * @param candWord current cand word + * @return CandidateWord* next cand word + **/ + CandidateWord* CandidateWordGetCurrentWindowNext(struct _CandidateWordList* candList, CandidateWord* candWord); + + /** + * @brief get candidate word by index + * + * @param candList candidate word list + * @param index index of current page + * @return CandidateWord* + **/ + CandidateWord* CandidateWordGetByIndex(struct _CandidateWordList* candList, int index); + + /** + * @brief do the candidate word selection, will trigger the candidate word callback + * + * @param candList candidate word list + * @param index index of current page + * @return INPUT_RETURN_VALUE + **/ + INPUT_RETURN_VALUE CandidateWordChooseByIndex(struct _CandidateWordList* candList, int index); + + /** + * @brief Free a candidate word, used by utarray + * + * @param arg candidateWord + * @return void + **/ + void CandidateWordFree(void* arg); + + /** + * @brief check candidate word has next page or not + * + * @param candList candidate word list + * @return boolean + **/ + boolean CandidateWordHasNext(struct _CandidateWordList* candList); + + /** + * @brief check candidate word has prev page or not + * + * @param candList candidate word list + * @return boolean + **/ + boolean CandidateWordHasPrev(struct _CandidateWordList* candList); + + /** + * @brief get number of total page + * + * @param candList candidate word list + * @return int + **/ + int CandidateWordPageCount(struct _CandidateWordList* candList); + + /** + * @brief clear all candidate words + * + * @param candList candidate word list + * @return void + **/ + void CandidateWordReset(struct _CandidateWordList* candList); + + /** + * @brief go to prev page, return operation successful or not + * + * @param candList candidate word list + * @return boolean + **/ + boolean CandidateWordGoPrevPage(struct _CandidateWordList* candList); + + /** + * @brief go to next page, return operation successful or not + * + * @param candList candidate word list + * @return boolean + **/ + boolean CandidateWordGoNextPage(struct _CandidateWordList* candList); + + /** + * @brief set the select key string, length up to 10, usually "1234567890" + * + * @param candList candidate word list + * @param strChoose select key string + * @return void + **/ + void CandidateWordSetChoose(struct _CandidateWordList* candList, const char* strChoose); + + /** + * @brief get the select key string + * + * @param candList candidate word list + * @return void + **/ + const char* CandidateWordGetChoose(struct _CandidateWordList* candList); + + /** + * @brief resize the candidate word length + * + * @param candList candidate word list + * @param length new length + * @return void + **/ + void CandidateWordResize(struct _CandidateWordList* candList, int length); + + /** + * @brief Get current page size of candidate list + * + * @param candList candidate word list + * @return int + **/ + int CandidateWordGetPageSize(struct _CandidateWordList* candList); + + /** + * @brief Set current page size of candidate list + * + * @param candList candidate word list + * @param size new page size + * @return void + **/ + void CandidateWordSetPageSize(struct _CandidateWordList* candList, int size); + + /** + * @brief get current page number + * + * @param candList candidate word list + * @return int + **/ + int CandidateWordGetCurrentPage(struct _CandidateWordList* candList); + + /** + * @brief get current page window size, may less than max page size + * + * @param candList candidate word list + * @return int + **/ + int CandidateWordGetCurrentWindowSize(struct _CandidateWordList* candList); + + /** + * @brief get total candidate word count + * + * @param candList candidate word list + * @return int + **/ + + int CandidateWordGetListSize(struct _CandidateWordList* candList); + + /** + * @brief get first candidate word + * + * @param candList candidate word list + * @return CandidateWord* + **/ + CandidateWord* CandidateWordGetFirst(struct _CandidateWordList* candList); + + /** + * @brief get next candidate word, useful when want to iterate over whole list + * + * @param candList candidate word list + * @param candWord current candidate word + * @return CandidateWord* + **/ + CandidateWord* CandidateWordGetNext(struct _CandidateWordList* candList, CandidateWord* candWord); + +#define DIGIT_STR_CHOOSE "1234567890" + +#ifdef __cplusplus +} +#endif + +#endif +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/lib/fcitx/CMakeLists.txt fcitx-4.1.1/src/lib/fcitx/CMakeLists.txt --- fcitx-4.0.1/src/lib/fcitx/CMakeLists.txt 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/lib/fcitx/CMakeLists.txt 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,59 @@ +set(LIBFCITX_SOURCES + candidate.c + configfile.c + profile.c + addon.c + frontend.c + hook.c + ime.c + ui.c + instance.c + module.c + keys.c +) + +set(FCITX_HEADERS + candidate.h + ime.h + ui.h + hook.h + configfile.h + profile.h + module.h + instance.h + addon.h + frontend.h + fcitx.h + keys.h +) + +link_directories(${DL_LIBRARY_DIRS} ${PTHREAD_LIBRARY_DIRS}) + +add_library(fcitx-core SHARED ${LIBFCITX_SOURCES}) +set_target_properties(fcitx-core + PROPERTIES VERSION 0.1.0 + SOVERSION 0.1 + COMPILE_FLAGS "-fvisibility=hidden" + LINK_FLAGS "-Wl,--no-undefined" +) +target_link_libraries(fcitx-core fcitx-config) +configure_file(fcitx.pc.in ${CMAKE_CURRENT_BINARY_DIR}/fcitx.pc) + +target_link_libraries(fcitx-core fcitx-config fcitx-utils ${DL_LIBRARIES} ${PTHREAD_LIBRARIES}) +install(TARGETS fcitx-core LIBRARY DESTINATION "${libdir}") +install(FILES ${CMAKE_CURRENT_BINARY_DIR}/fcitx.pc DESTINATION "${libdir}/pkgconfig") +install(FILES ${FCITX_HEADERS} DESTINATION "${includedir}/fcitx") + +if (ENABLE_STATIC) + +add_library(fcitx-core-static STATIC ${LIBFCITX_SOURCES}) +set_target_properties(fcitx-core-static PROPERTIES + OUTPUT_NAME "fcitx-core" + PREFIX "lib" +) + +install(TARGETS fcitx-core-static + LIBRARY DESTINATION ${libdir} + ARCHIVE DESTINATION ${libdir} +) +endif (ENABLE_STATIC) diff -Nru fcitx-4.0.1/src/lib/fcitx/configfile.c fcitx-4.1.1/src/lib/fcitx/configfile.c --- fcitx-4.0.1/src/lib/fcitx/configfile.c 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/lib/fcitx/configfile.c 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,204 @@ +/*************************************************************************** + * Copyright (C) 2010~2010 by CSSlayer * + * wengxt@gmail.com * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +#include +#include +#include +#include + +#include "fcitx/fcitx.h" +#include "configfile.h" +#include "fcitx-config/xdg.h" +#include "fcitx-utils/log.h" +#include "fcitx/keys.h" +#include "instance.h" + +static ConfigFileDesc* GetConfigDesc(); +static void FilterSwitchKey(GenericConfig* config, ConfigGroup *group, ConfigOption *option, void* value, ConfigSync sync, void* arg); +static void Filter2nd3rdKey(GenericConfig* config, ConfigGroup* group, ConfigOption* option, void* value, ConfigSync sync, void* arg); + +CONFIG_BINDING_BEGIN(FcitxConfig) +CONFIG_BINDING_REGISTER("Program", "DelayStart", iDelayStart) +CONFIG_BINDING_REGISTER("Program", "FirstRun", bFirstRun) +CONFIG_BINDING_REGISTER("Output", "HalfPuncAfterNumber", bEngPuncAfterNumber) +CONFIG_BINDING_REGISTER("Output", "EnterAction", enterToDo) +CONFIG_BINDING_REGISTER("Output", "RemindModeDisablePaging", bDisablePagingInRemind) +CONFIG_BINDING_REGISTER("Output", "SendTextWhenSwitchEng", bSendTextWhenSwitchEng) +CONFIG_BINDING_REGISTER("Output", "CandidateWordNumber", iMaxCandWord) +CONFIG_BINDING_REGISTER("Output", "PhraseTips", bPhraseTips) +CONFIG_BINDING_REGISTER("Appearance", "ShowInputWindowAfterTriggering", bShowInputWindowTriggering) +CONFIG_BINDING_REGISTER("Appearance", "ShowPointAfterIndex", bPointAfterNumber) +CONFIG_BINDING_REGISTER("Appearance", "ShowInputSpeed", bShowUserSpeed) +CONFIG_BINDING_REGISTER("Appearance", "ShowVersion", bShowVersion) +CONFIG_BINDING_REGISTER("Appearance", "HideInputWindowWhenOnlyPreeditString", bHideInputWindowWhenOnlyPreeditString); +CONFIG_BINDING_REGISTER("Appearance", "HideInputWindowWhenOnlyOneCandidate", bHideInputWindowWhenOnlyOneCandidate); +CONFIG_BINDING_REGISTER("Hotkey", "TriggerKey", hkTrigger) +CONFIG_BINDING_REGISTER_WITH_FILTER("Hotkey", "SwitchKey", iSwitchKey, FilterSwitchKey) +CONFIG_BINDING_REGISTER("Hotkey", "DoubleSwitchKey", bDoubleSwitchKey) +CONFIG_BINDING_REGISTER("Hotkey", "TimeInterval", iTimeInterval) +CONFIG_BINDING_REGISTER("Hotkey", "VKSwitchKey", hkVK) +CONFIG_BINDING_REGISTER("Hotkey", "RemindSwitchKey", hkRemind) +CONFIG_BINDING_REGISTER("Hotkey", "FullWidthSwitchKey", hkFullWidthChar) +CONFIG_BINDING_REGISTER("Hotkey", "PuncSwitchKey", hkPunc) +CONFIG_BINDING_REGISTER("Hotkey", "PrevPageKey", hkPrevPage) +CONFIG_BINDING_REGISTER("Hotkey", "NextPageKey", hkNextPage) +CONFIG_BINDING_REGISTER_WITH_FILTER("Hotkey", "SecondThirdCandWordKey", str2nd3rdCand, Filter2nd3rdKey) +CONFIG_BINDING_REGISTER("Hotkey", "SaveAllKey", hkSaveAll) +CONFIG_BINDING_REGISTER("Hotkey", "SwitchPreedit", hkSwitchEmbeddedPreedit); +CONFIG_BINDING_END() + +void Filter2nd3rdKey(GenericConfig* config, ConfigGroup *group, ConfigOption *option, void* value, ConfigSync sync, void* arg) +{ + FCITX_UNUSED(group); + FCITX_UNUSED(option); + FCITX_UNUSED(arg); + FcitxConfig* fc = (FcitxConfig*) config; + char *pstr = *(char**) value; + + if (sync == Raw2Value) { + if (!strcasecmp (pstr, "SHIFT")) { + fc->i2ndSelectKey[0].sym = fc->i2ndSelectKey[1].sym = Key_Shift_L; //左SHIFT的扫描码 + fc->i2ndSelectKey[0].state = KEY_SHIFT_COMP ; //左SHIFT的扫描码 + fc->i2ndSelectKey[1].state = KEY_NONE ; //左SHIFT的扫描码 + fc->i3rdSelectKey[0].sym = fc->i3rdSelectKey[1].sym = Key_Shift_R; //右SHIFT的扫描码 + fc->i3rdSelectKey[0].state = KEY_SHIFT_COMP ; //左SHIFT的扫描码 + fc->i3rdSelectKey[1].state = KEY_NONE; + } + else if (!strcasecmp (pstr, "CTRL")) { + fc->i2ndSelectKey[0].sym = fc->i2ndSelectKey[1].sym = Key_Control_L; //左CTRL的扫描码 + fc->i2ndSelectKey[0].state = KEY_CTRL_COMP ; //左SHIFT的扫描码 + fc->i2ndSelectKey[1].state = KEY_NONE ; //左SHIFT的扫描码 + fc->i3rdSelectKey[0].sym = fc->i3rdSelectKey[1].sym = Key_Control_R; //右CTRL的扫描码 + fc->i3rdSelectKey[0].state = KEY_CTRL_COMP ; //左SHIFT的扫描码 + fc->i3rdSelectKey[1].state = KEY_NONE; + } + else { + if (pstr[0] && pstr[0]!='0') + { + fc->i2ndSelectKey[0].sym = pstr[0] & 0xFF; + fc->i2ndSelectKey[0].state = KEY_NONE; + } + else + { + fc->i2ndSelectKey[0].sym = 0; + fc->i2ndSelectKey[0].state = KEY_NONE; + } + if (pstr[1] && pstr[1]!='0') + { + fc->i3rdSelectKey[0].sym = pstr[1] & 0xFF; + fc->i3rdSelectKey[0].state = KEY_NONE; + } + else + { + fc->i3rdSelectKey[0].sym = 0; + fc->i3rdSelectKey[0].state = KEY_NONE; + } + } + } +} + +void FilterSwitchKey(GenericConfig* config, ConfigGroup* group, ConfigOption* option, void* value, ConfigSync sync, void* arg) +{ + FCITX_UNUSED(group); + FCITX_UNUSED(option); + FCITX_UNUSED(arg); + FcitxConfig* fc = (FcitxConfig*) config; + HOTKEYS* hkey = NULL; + if (sync == Raw2Value) + { + SWITCHKEY *s = (SWITCHKEY*)value; + switch (*s) + { + case S_R_CTRL: + hkey = FCITX_RCTRL; + break; + case S_R_SHIFT: + hkey = FCITX_RSHIFT; + break; + case S_L_SHIFT: + hkey = FCITX_LSHIFT; + break; + case S_L_CTRL: + hkey = FCITX_LCTRL; + break; + } + } + if (hkey != NULL) + { + fc->switchKey[0] = hkey[0]; + fc->switchKey[1] = hkey[1]; + } +} + +FCITX_EXPORT_API +boolean LoadConfig(FcitxConfig* fc) +{ + ConfigFileDesc* configDesc = GetConfigDesc(); + + if (configDesc == NULL) + return false; + + FILE *fp; + char *file; + fp = GetXDGFileUserWithPrefix("", "config", "rt", &file); + FcitxLog(DEBUG, "Load Config File %s", file); + free(file); + if (!fp) { + if (errno == ENOENT) + SaveConfig(fc); + } + + ConfigFile *cfile = ParseConfigFileFp(fp, configDesc); + + FcitxConfigConfigBind(fc, cfile, configDesc); + ConfigBindSync((GenericConfig*)fc); + + if (fp) + fclose(fp); + return true; +} + +CONFIG_DESC_DEFINE(GetConfigDesc, "config.desc") + +FCITX_EXPORT_API +void SaveConfig(FcitxConfig* fc) +{ + ConfigFileDesc* configDesc = GetConfigDesc(); + char *file; + FILE *fp = GetXDGFileUserWithPrefix("", "config", "wt", &file); + FcitxLog(DEBUG, "Save Config to %s", file); + SaveConfigFileFp(fp, &fc->gconfig, configDesc); + free(file); + if (fp) + fclose(fp); +} + +FCITX_EXPORT_API +int ConfigGetMaxCandWord(FcitxConfig* fc) +{ + return fc->iMaxCandWord; +} + +FCITX_EXPORT_API +boolean ConfigGetPointAfterNumber(FcitxConfig* fc) +{ + return fc->bPointAfterNumber; +} +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/lib/fcitx/configfile.h fcitx-4.1.1/src/lib/fcitx/configfile.h --- fcitx-4.0.1/src/lib/fcitx/configfile.h 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/lib/fcitx/configfile.h 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,226 @@ +/*************************************************************************** + * Copyright (C) 2010~2010 by CSSlayer * + * wengxt@gmail.com * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ +#ifndef _FCITX_CONFIGFILE_H_ +#define _FCITX_CONFIGFILE_H_ + +#include +#include + +#ifdef __cplusplus +extern "C" { +#endif + + typedef enum _SWITCHKEY { + S_R_CTRL = 0, + S_R_SHIFT = 1, + S_L_SHIFT = 2, + S_L_CTRL = 3 + } SWITCHKEY; + + typedef enum _ENTER_TO_DO { + K_ENTER_NOTHING = 0, + K_ENTER_CLEAN = 1, + K_ENTER_SEND = 2 + } ENTER_TO_DO; + + typedef enum _SEMICOLON_TO_DO { + K_SEMICOLON_NOCHANGE = 0, + K_SEMICOLON_ENG = 1, + K_SEMICOLON_QUICKPHRASE = 2 + } SEMICOLON_TO_DO; + + /** + * @brief struct opposite to ~/.config/fcitx/config + **/ + typedef struct _FcitxConfig + { + /** + * @brief derives GenericConfig + **/ + GenericConfig gconfig; + /* program config */ + /** + * @brief delay start seconds + **/ + int iDelayStart; + /** + * @brief is the first run + **/ + boolean bFirstRun; + + /* output config */ + /** + * @brief input eng punc after input number + **/ + boolean bEngPuncAfterNumber; + /** + * @brief enter key action + **/ + ENTER_TO_DO enterToDo; + /** + * @brief Remind mode can has multipage + **/ + boolean bDisablePagingInRemind; + /** + * @brief switch to english with switch key commit string or not + **/ + boolean bSendTextWhenSwitchEng; + /** + * @brief max candidate word number + **/ + int iMaxCandWord; + /** + * @brief phrase tips + **/ + boolean bPhraseTips; + + /* appearance config */ + /** + * @brief show input window after trigger on + **/ + boolean bShowInputWindowTriggering; + /** + * @brief index number follow with a '.' + **/ + boolean bPointAfterNumber; + /** + * @brief show user input speed + **/ + boolean bShowUserSpeed; + /** + * @brief show fcitx version + **/ + boolean bShowVersion; + + /* hotkey config */ + /** + * @brief trigger key + **/ + HOTKEYS hkTrigger[2]; + /** + * @brief switch key + **/ + SWITCHKEY iSwitchKey; + /** + * @brief hotkey format of switch key + **/ + HOTKEYS switchKey[2]; + /** + * @brief enable double press switch action + **/ + boolean bDoubleSwitchKey; + /** + * @brief key hit interval + **/ + int iTimeInterval; + /** + * @brief hotkey for switch VK + **/ + HOTKEYS hkVK[2]; + /** + * @brief hotkey for switch remind mode + **/ + HOTKEYS hkRemind[2]; + /** + * @brief hotkey for switch full width char + **/ + HOTKEYS hkFullWidthChar[2]; + /** + * @brief hotkey for switch punc + **/ + HOTKEYS hkPunc[2]; + /** + * @brief prev page + **/ + HOTKEYS hkPrevPage[2]; + /** + * @brief next page + **/ + HOTKEYS hkNextPage[2]; + /** + * @brief 2nd 3rd candidate select key + **/ + HOTKEYS str2nd3rdCand[2]; + /** + * @brief save all key + **/ + HOTKEYS hkSaveAll[2]; + + /** + * @brief hotkey format for 2nd select key + **/ + HOTKEYS i2ndSelectKey[2]; + /** + * @brief hotkey format for 3rd select key + **/ + HOTKEYS i3rdSelectKey[2]; + + /** + * @brief hide input window when there is only preedit string + **/ + boolean bHideInputWindowWhenOnlyPreeditString; + + /** + * @brief hide input window when there is only one candidate word + **/ + boolean bHideInputWindowWhenOnlyOneCandidate; + + /** + * @brief switch the preedit should show in client window or not + **/ + HOTKEYS hkSwitchEmbeddedPreedit[2]; + } FcitxConfig; + + /** + * @brief load config + * + * @param fc config instance + * @return boolean load success or not + **/ + boolean LoadConfig(FcitxConfig* fc); + /** + * @brief save config + * + * @param fc config instance + * @return void + **/ + void SaveConfig(FcitxConfig* fc); + /** + * @brief get max candidate word number + * + * @param fc config instance + * @return int number + **/ + int ConfigGetMaxCandWord(FcitxConfig* fc); + /** + * @brief get bPointAfterNumber + * + * @param fc config instance + * @return boolean bPointAfterNumber + **/ + boolean ConfigGetPointAfterNumber(FcitxConfig* fc); + +#ifdef __cplusplus +} +#endif + +#endif + +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/lib/fcitx/fcitx.h fcitx-4.1.1/src/lib/fcitx/fcitx.h --- fcitx-4.0.1/src/lib/fcitx/fcitx.h 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/lib/fcitx/fcitx.h 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,56 @@ +/*************************************************************************** + * Copyright (C) 2002~2005 by Yuking * + * yuking_net@sohu.com * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ +#ifndef _FCITX_H_ +#define _FCITX_H_ + +/** + * @mainpage Fcitx + * fcitx is a lightweight Input Method Framework, written by C. + * It can be used under X11 to support international input. + * + */ + +/** + * @file fcitx.h + * @author CS Slayer + * @brief some misc definition for Fcitx + */ + +#ifdef __cplusplus +extern "C" { +#endif + +#if defined(FCITX_HAVE_CONFIG_H) +#include "config.h" +#define _(msgid) gettext(msgid) +#define __(msgid) (msgid) +#endif + +#define FCITX_EXPORT_API __attribute__ ((visibility("default"))) + +#define FCITX_UNUSED(x) (void)(x) + +#ifdef __cplusplus +} +#endif + +#endif/*_FCITX_H_*/ + +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/lib/fcitx/fcitx.pc.in fcitx-4.1.1/src/lib/fcitx/fcitx.pc.in --- fcitx-4.0.1/src/lib/fcitx/fcitx.pc.in 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/lib/fcitx/fcitx.pc.in 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,11 @@ +prefix=@prefix@ +exec_prefix=@exec_prefix@ +libdir=@libdir@ +includedir=@includedir@ + +Name: fcitx +Description: Fcitx - Free Chinese Input Toy of X +Version: @version@ +Requires: fcitx-config +Cflags: -I${includedir} +Libs: -L${libdir} -lfcitx-core diff -Nru fcitx-4.0.1/src/lib/fcitx/frontend.c fcitx-4.1.1/src/lib/fcitx/frontend.c --- fcitx-4.0.1/src/lib/fcitx/frontend.c 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/lib/fcitx/frontend.c 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,357 @@ +/*************************************************************************** + * Copyright (C) 2010~2010 by CSSlayer * + * wengxt@gmail.com * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +#include +#include +#include + +#include "fcitx-utils/utarray.h" +#include "frontend.h" +#include "addon.h" +#include "ime-internal.h" +#include "fcitx-config/xdg.h" +#include "fcitx-utils/log.h" +#include "ui.h" +#include "hook.h" +#include "hook-internal.h" +#include "instance.h" + +static const UT_icd frontend_icd = {sizeof(FcitxAddon*), NULL, NULL, NULL }; + +FCITX_EXPORT_API +FcitxInputContext* GetCurrentIC(FcitxInstance* instance) +{ + return instance->CurrentIC; +} + +FCITX_EXPORT_API +boolean SetCurrentIC(FcitxInstance* instance, FcitxInputContext* ic) +{ + boolean changed = (instance->CurrentIC != ic); + instance->CurrentIC = ic; + return changed; +} + +FCITX_EXPORT_API +void InitFcitxFrontends(UT_array* frontends) +{ + utarray_init(frontends, &frontend_icd); +} + +FCITX_EXPORT_API +FcitxInputContext* CreateIC(FcitxInstance* instance, int frontendid, void * priv) +{ + UT_array* frontends = &instance->frontends; + FcitxAddon** pfrontend =(FcitxAddon**) utarray_eltptr(frontends, frontendid); + if (pfrontend == NULL) + return NULL; + FcitxFrontend* frontend = (*pfrontend)->frontend; + + FcitxInputContext *rec; + if (instance->free_list != NULL) + { + rec = instance->free_list; + instance->free_list = instance->free_list->next; + } + else + rec = malloc(sizeof(FcitxInputContext)); + + memset (rec, 0, sizeof(FcitxInputContext)); + rec->frontendid = frontendid; + rec->offset_x = -1; + rec->offset_y = -1; + rec->state = IS_CLOSED; + + frontend->CreateIC((*pfrontend)->addonInstance, rec, priv); + + rec->next = instance->ic_list; + instance->ic_list = rec; + + return rec; +} + +FCITX_EXPORT_API +FcitxInputContext* FindIC(FcitxInstance* instance, int frontendid, void *filter) +{ + UT_array* frontends = &instance->frontends; + FcitxAddon** pfrontend = (FcitxAddon**) utarray_eltptr(frontends, frontendid); + if (pfrontend == NULL) + return NULL; + FcitxFrontend* frontend = (*pfrontend)->frontend; + FcitxInputContext *rec = instance->ic_list; + while (rec != NULL) + { + if (rec->frontendid == frontendid && frontend->CheckIC((*pfrontend)->addonInstance, rec, filter)) + return rec; + rec = rec->next; + } + return NULL; +} + +FCITX_EXPORT_API +void DestroyIC(FcitxInstance* instance, int frontendid, void* filter) +{ + FcitxInputContext *rec, *last; + UT_array* frontends = &instance->frontends; + FcitxAddon** pfrontend = (FcitxAddon**) utarray_eltptr(frontends, frontendid); + if (pfrontend == NULL) + return; + FcitxFrontend* frontend = (*pfrontend)->frontend; + + last = NULL; + + for (rec = instance->ic_list; rec != NULL; last = rec, rec = rec->next) { + if (rec->frontendid == frontendid && frontend->CheckIC((*pfrontend)->addonInstance, rec, filter)) { + if (last != NULL) + last->next = rec->next; + else + instance->ic_list = rec->next; + + rec->next = instance->free_list; + instance->free_list = rec; + + if (rec == GetCurrentIC(instance)) + { + CloseInputWindow(instance); + OnInputUnFocus(instance); + SetCurrentIC(instance, NULL); + } + + frontend->DestroyIC((*pfrontend)->addonInstance, rec); + return; + } + } + + return; +} + +FCITX_EXPORT_API +void CloseIM(FcitxInstance* instance, FcitxInputContext* ic) +{ + if (ic == NULL) + return ; + UT_array* frontends = &instance->frontends; + FcitxAddon** pfrontend = (FcitxAddon**) utarray_eltptr(frontends, ic->frontendid); + if (pfrontend == NULL) + return; + FcitxFrontend* frontend = (*pfrontend)->frontend; + ic->state = IS_CLOSED; + frontend->CloseIM((*pfrontend)->addonInstance, ic); + + if (ic == GetCurrentIC(instance)) + { + OnTriggerOff(instance); + CloseInputWindow(instance); + } +} + +/** + * @brief 更改输入法状态 + * + * @param _connect_id + */ +FCITX_EXPORT_API +void ChangeIMState(FcitxInstance* instance, FcitxInputContext* ic) +{ + if (!ic) + return; + if (ic->state == IS_ENG) { + ic->state = IS_ACTIVE; + ResetInput(instance); + } else { + ic->state = IS_ENG; + ResetInput(instance); + CloseInputWindow(instance); + } +} + +FCITX_EXPORT_API +IME_STATE GetCurrentState(FcitxInstance* instance) +{ + if (instance->CurrentIC) + return instance->CurrentIC->state; + else + return IS_CLOSED; +} + +FCITX_EXPORT_API +CapacityFlags GetCurrentCapacity(FcitxInstance* instance) +{ + if (instance->CurrentIC) + return instance->CurrentIC->contextCaps; + else + return CAPACITY_NONE; +} + +FCITX_EXPORT_API +void CommitString(FcitxInstance* instance, FcitxInputContext* ic, char* str) +{ + if (str == NULL) + return ; + + if (ic == NULL) + return; + + UT_array* frontends = &instance->frontends; + + char *pstr = ProcessOutputFilter(instance, str); + if (pstr != NULL) + str = pstr; + + FcitxAddon** pfrontend = (FcitxAddon**) utarray_eltptr(frontends, ic->frontendid); + if (pfrontend == NULL) + return; + FcitxFrontend* frontend = (*pfrontend)->frontend; + frontend->CommitString((*pfrontend)->addonInstance, ic, str); + + if (pstr) + free(pstr); +} + +FCITX_EXPORT_API +void UpdatePreedit(FcitxInstance* instance, FcitxInputContext* ic) +{ + if (!instance->profile->bUsePreedit) + return; + + if (ic == NULL) + return; + + if (!(ic->contextCaps & CAPACITY_PREEDIT)) + return; + + UT_array* frontends = &instance->frontends; + + FcitxAddon** pfrontend = (FcitxAddon**) utarray_eltptr(frontends, ic->frontendid); + if (pfrontend == NULL) + return; + FcitxFrontend* frontend = (*pfrontend)->frontend; + frontend->UpdatePreedit((*pfrontend)->addonInstance, ic); +} + +FCITX_EXPORT_API +void UpdateClientSideUI(FcitxInstance* instance, FcitxInputContext* ic) +{ + if (ic == NULL) + return; + + if (!(ic->contextCaps & CAPACITY_CLIENT_SIDE_UI)) + return; + + UT_array* frontends = &instance->frontends; + + FcitxAddon** pfrontend = (FcitxAddon**) utarray_eltptr(frontends, ic->frontendid); + if (pfrontend == NULL) + return; + FcitxFrontend* frontend = (*pfrontend)->frontend; + if (frontend->UpdateClientSideUI) + frontend->UpdateClientSideUI((*pfrontend)->addonInstance, ic); +} + +FCITX_EXPORT_API +void SetWindowOffset(FcitxInstance* instance, FcitxInputContext *ic, int x, int y) +{ + UT_array* frontends = &instance->frontends; + FcitxAddon** pfrontend = (FcitxAddon**) utarray_eltptr(frontends, ic->frontendid); + if (pfrontend == NULL) + return; + FcitxFrontend* frontend = (*pfrontend)->frontend; + if (frontend->SetWindowOffset) + frontend->SetWindowOffset((*pfrontend)->addonInstance, ic, x, y); +} + +FCITX_EXPORT_API +void GetWindowPosition(FcitxInstance* instance, FcitxInputContext* ic, int* x, int* y) +{ + if (ic == NULL) + return; + + UT_array* frontends = &instance->frontends; + FcitxAddon** pfrontend = (FcitxAddon**) utarray_eltptr(frontends, ic->frontendid); + if (pfrontend == NULL) + return; + FcitxFrontend* frontend = (*pfrontend)->frontend; + if (frontend->GetWindowPosition) + frontend->GetWindowPosition((*pfrontend)->addonInstance, ic, x, y); +} + +FCITX_EXPORT_API +boolean LoadFrontend(FcitxInstance* instance) +{ + UT_array* addons = &instance->addons; + UT_array* frontends = &instance->frontends; + FcitxAddon *addon; + int frontendindex = 0; + utarray_clear(frontends); + for ( addon = (FcitxAddon *) utarray_front(addons); + addon != NULL; + addon = (FcitxAddon *) utarray_next(addons, addon)) + { + if (addon->bEnabled && addon->category == AC_FRONTEND) + { + char *modulePath; + switch (addon->type) + { + case AT_SHAREDLIBRARY: + { + FILE *fp = GetLibFile(addon->library, "r", &modulePath); + void *handle; + FcitxFrontend* frontend; + if (!fp) + break; + fclose(fp); + handle = dlopen(modulePath, RTLD_LAZY | RTLD_GLOBAL); + if (!handle) + { + FcitxLog(ERROR, _("Frontend: open %s fail %s") ,modulePath ,dlerror()); + break; + } + frontend=dlsym(handle,"frontend"); + if (!frontend || !frontend->Create) + { + FcitxLog(ERROR, _("Frontend: bad frontend")); + dlclose(handle); + break; + } + if ((addon->addonInstance = frontend->Create(instance, frontendindex)) == NULL) + { + dlclose(handle); + break; + } + addon->frontend = frontend; + frontendindex ++; + utarray_push_back(frontends, &addon); + } + break; + default: + break; + } + free(modulePath); + } + } + + if (utarray_len(&instance->frontends) <= 0) + { + FcitxLog(ERROR, _("No available frontend")); + return false; + } + return true; +} +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/lib/fcitx/frontend.h fcitx-4.1.1/src/lib/fcitx/frontend.h --- fcitx-4.0.1/src/lib/fcitx/frontend.h 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/lib/fcitx/frontend.h 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,238 @@ +/*************************************************************************** + * Copyright (C) 2010~2010 by CSSlayer * + * wengxt@gmail.com * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +#ifndef _FCITX_FRONTEND_H_ +#define _FCITX_FRONTEND_H_ + +#include +#include +#include +#include + +#ifdef __cplusplus +extern "C" { +#endif + + struct _FcitxInstance; + + /** + * @brief Input Method State + **/ + typedef enum _IME_STATE { + IS_CLOSED = 0, + IS_ENG, + IS_ACTIVE + } IME_STATE; + + typedef enum _CapacityFlags { + CAPACITY_NONE = 0, + CAPACITY_CLIENT_SIDE_UI = (1 << 0), + CAPACITY_PREEDIT = (1 << 1) + } CapacityFlags; + + /** + * @brief Input Context, normally one for one program + **/ + typedef struct _FcitxInputContext + { + IME_STATE state; /* im state */ + int offset_x, offset_y; + int frontendid; + void *privateic; + CapacityFlags contextCaps; + struct _FcitxInputContext* next; + } FcitxInputContext; + + /** + * @brief Program IM Module Frontend + **/ + typedef struct _FcitxFrontend + { + void* (*Create)(struct _FcitxInstance*, int frontendindex); + boolean (*Destroy)(void *arg); + void (*CreateIC)(void* arg, FcitxInputContext*, void* priv); + boolean (*CheckIC)(void* arg, FcitxInputContext* arg1, void* arg2); + void (*DestroyIC) (void* arg, FcitxInputContext *context); + void (*EnableIM)(void* arg, FcitxInputContext* arg1); + void (*CloseIM)(void* arg, FcitxInputContext* arg1); + void (*CommitString)(void* arg, FcitxInputContext* arg1, char* arg2); + void (*ForwardKey)(void* arg, FcitxInputContext* arg1, FcitxKeyEventType event, FcitxKeySym sym, unsigned int state); + void (*SetWindowOffset)(void* arg, FcitxInputContext* ic, int x, int y); + void (*GetWindowPosition)(void* arg, FcitxInputContext* ic, int* x, int* y); + void (*UpdatePreedit)(void* arg, FcitxInputContext* ic); + void (*UpdateClientSideUI)(void* arg, FcitxInputContext* ic); + void (*padding2)(); + void (*padding3)(); + void (*padding4)(); + } FcitxFrontend; + + /** + * @brief Get Current Input Context + * + * @param instance + * @return FcitxInputContext* + **/ + FcitxInputContext* GetCurrentIC(struct _FcitxInstance* instance); + + /** + * @brief Set Current Input Context + * + * @param instance + * @param ic new input context + * @return current ic changed + **/ + boolean SetCurrentIC(struct _FcitxInstance* instance, FcitxInputContext* ic); + + /** + * @brief Initial frontends array + * + * @param frontends array + * @return void + **/ + void InitFcitxFrontends(UT_array* ); + + /** + * @brief Find Input Context By Frontend Specific filter + * + * @param instance + * @param frontendid frontend id + * @param filter frontend specfic filter + * @return FcitxInputContext* + **/ + FcitxInputContext* FindIC(struct _FcitxInstance* instance, int frontendid, void* filter); + + /** + * @brief Creat New Input Context + * + * @param instance + * @param frontendid frontend id + * @param priv frontend specfic data + * @return FcitxInputContext* + **/ + FcitxInputContext* CreateIC(struct _FcitxInstance* instance, int frontendid, void* priv); + + /** + * @brief Destroy Input context + * + * @param instance + * @param frontendid frontend id + * @param filter frontend specfic filter + * @return void + **/ + void DestroyIC(struct _FcitxInstance* instance, int frontendid, void* filter); + + /** + * @brief Load All frontend + * + * @param instance + * @return void + **/ + boolean LoadFrontend(struct _FcitxInstance* instance ); + + /** + * @brief End Input + * + * @param instance + * @param ic input context + * @return void + **/ + void CloseIM(struct _FcitxInstance* instance, FcitxInputContext* ic); + + /** + * @brief Commit String to Client + * + * @param instance + * @param ic input context + * @param str String to commit + * @return void + **/ + void CommitString(struct _FcitxInstance* instance, FcitxInputContext* ic, char* str); + + /** + * @brief ... + * + * @param ... + * @param ic ... + * @return void + **/ + void ChangeIMState (struct _FcitxInstance*, FcitxInputContext* ic); + + /** + * @brief Set Cursor Position + * + * @param ... + * @param ic input context + * @param x xpos + * @param y ypos + * @return void + **/ + void SetWindowOffset(struct _FcitxInstance*, FcitxInputContext* ic, int x, int y); + + /** + * @brief Get Cursor Position + * + * @param ... + * @param ic input context + * @param x xpos + * @param y ypos + * @return void + **/ + void GetWindowPosition(struct _FcitxInstance*, FcitxInputContext *ic, int* x, int* y); + + /** + * @brief Update preedit text to client window + * + * @param instance fcitx instance + * @param ic input context + * @return void + **/ + void UpdatePreedit(struct _FcitxInstance* instance, FcitxInputContext* ic); + + /** + * @brief Update all user interface element to client (Aux Text, Preedit, Candidate Word) + * + * @param instance fcitx instance + * @param ic input context + * @return void + **/ + void UpdateClientSideUI(struct _FcitxInstance* instance, FcitxInputContext* ic); + + /** + * @brief Get Current State, if only want to get state, this function is better, because it will handle the case that Input Context is NULL. + * + * @param instance fcitx instance + * @return IME_STATE + **/ + IME_STATE GetCurrentState(struct _FcitxInstance* instance); + + /** + * @brief get current ic capacity flag, if only want to get capacity, this function is better, because it will handle the case that Input Context is NULL. + * + * @param instance fcitx instance + * @return CapacityFlags + **/ + CapacityFlags GetCurrentCapacity(struct _FcitxInstance* instance); + +#ifdef __cplusplus +} +#endif + +#endif +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/lib/fcitx/hook.c fcitx-4.1.1/src/lib/fcitx/hook.c --- fcitx-4.0.1/src/lib/fcitx/hook.c 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/lib/fcitx/hook.c 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,205 @@ +/*************************************************************************** + * Copyright (C) 2010~2010 by CSSlayer * + * wengxt@gmail.com * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +#include "fcitx/hook.h" +#include "fcitx-utils/log.h" +#include "ime.h" +#include "fcitx-config/hotkey.h" +#include "instance.h" +#include "fcitx/hook-internal.h" +#include "fcitx-utils/utils.h" + +/** + * @file hook.c + * @brief A list for a stack of processing + **/ + + +/** + * @brief hook stack + **/ +typedef struct _HookStack { + union { + KeyFilterHook keyfilter; + StringFilterHook stringfilter; + FcitxIMEventHook eventhook; + HotkeyHook hotkey; + }; + /** + * @brief stack next + **/ + struct _HookStack* next; +} HookStack; + +/** + * @brief internal macro to define a hook + */ +#define DEFINE_HOOK(name, type, field) \ +static HookStack* Get##name(FcitxInstance* instance); \ +HookStack* Get##name(FcitxInstance* instance) \ +{ \ + if (instance->hook##name == NULL) \ + { \ + instance->hook##name = fcitx_malloc0(sizeof(HookStack)); \ + } \ + return instance->hook##name; \ +} \ +FCITX_EXPORT_API \ +void Register##name(FcitxInstance* instance, type value) \ +{ \ + HookStack* head = Get##name(instance); \ + while(head->next != NULL) \ + head = head->next; \ + head->next = fcitx_malloc0(sizeof(HookStack)); \ + head = head->next; \ + head->field = value; \ +} + +DEFINE_HOOK(PreInputFilter, KeyFilterHook, keyfilter) +DEFINE_HOOK(PostInputFilter, KeyFilterHook, keyfilter) +DEFINE_HOOK(OutputFilter, StringFilterHook, stringfilter) +DEFINE_HOOK(HotkeyFilter, HotkeyHook, hotkey) +DEFINE_HOOK(ResetInputHook, FcitxIMEventHook, eventhook); +DEFINE_HOOK(TriggerOnHook, FcitxIMEventHook, eventhook); +DEFINE_HOOK(TriggerOffHook, FcitxIMEventHook, eventhook); +DEFINE_HOOK(InputFocusHook, FcitxIMEventHook, eventhook); +DEFINE_HOOK(InputUnFocusHook, FcitxIMEventHook, eventhook); +DEFINE_HOOK(UpdateCandidateWordHook, FcitxIMEventHook, eventhook); + +void ProcessPreInputFilter(FcitxInstance* instance, FcitxKeySym sym, unsigned int state, INPUT_RETURN_VALUE* retval) +{ + HookStack* stack = GetPreInputFilter(instance); + stack = stack->next; + *retval = IRV_TO_PROCESS; + while (stack) + { + if (stack->keyfilter.func(stack->keyfilter.arg, sym, state, retval)) + break; + stack = stack->next; + } +} + +void ProcessPostInputFilter(FcitxInstance* instance, FcitxKeySym sym, unsigned int state, INPUT_RETURN_VALUE* retval) +{ + HookStack* stack = GetPostInputFilter(instance); + stack = stack->next; + while (stack) + { + if (stack->keyfilter.func(stack->keyfilter.arg, sym, state, retval)) + break; + stack = stack->next; + } +} + +void ProcessUpdateCandidates(FcitxInstance* instance) +{ + HookStack* stack = GetUpdateCandidateWordHook(instance); + stack = stack->next; + while (stack) + { + stack->eventhook.func(stack->keyfilter.arg); + stack = stack->next; + } +} + +FCITX_EXPORT_API +char* ProcessOutputFilter(FcitxInstance* instance, char *in) +{ + HookStack* stack = GetOutputFilter(instance); + stack = stack->next; + char *out = NULL; + while (stack) + { + if ((out = stack->stringfilter.func(stack->stringfilter.arg, in)) != NULL) + break; + stack = stack->next; + } + return out; +} + +void ResetInputHook(FcitxInstance* instance) +{ + HookStack* stack = GetResetInputHook(instance); + stack = stack->next; + while (stack) + { + stack->eventhook.func(stack->eventhook.arg); + stack = stack->next; + } +} + +void TriggerOffHook(FcitxInstance* instance) +{ + HookStack* stack = GetTriggerOffHook(instance); + stack = stack->next; + while (stack) + { + stack->eventhook.func(stack->eventhook.arg); + stack = stack->next; + } +} +void TriggerOnHook(FcitxInstance* instance) +{ + HookStack* stack = GetTriggerOnHook(instance); + stack = stack->next; + while (stack) + { + stack->eventhook.func(stack->eventhook.arg); + stack = stack->next; + } +} +void InputFocusHook(FcitxInstance* instance) +{ + HookStack* stack = GetInputFocusHook(instance); + stack = stack->next; + while (stack) + { + stack->eventhook.func(stack->eventhook.arg); + stack = stack->next; + } +} +void InputUnFocusHook(FcitxInstance* instance) +{ + HookStack* stack = GetInputUnFocusHook(instance); + stack = stack->next; + while (stack) + { + stack->eventhook.func(stack->eventhook.arg); + stack = stack->next; + } +} + +INPUT_RETURN_VALUE CheckHotkey(FcitxInstance* instance, FcitxKeySym keysym, unsigned int state) +{ + HookStack* stack = GetHotkeyFilter(instance); + stack = stack->next; + INPUT_RETURN_VALUE out = IRV_TO_PROCESS; + while (stack) + { + if (IsHotKey(keysym, state, stack->hotkey.hotkey)) + { + out = stack->hotkey.hotkeyhandle(stack->hotkey.arg); + break; + } + stack = stack->next; + } + return out; +} +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/lib/fcitx/hook.h fcitx-4.1.1/src/lib/fcitx/hook.h --- fcitx-4.0.1/src/lib/fcitx/hook.h 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/lib/fcitx/hook.h 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,211 @@ +/*************************************************************************** + * Copyright (C) 2010~2010 by CSSlayer * + * wengxt@gmail.com * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +/** + * @file hook.h + * @brief Register function to be called automatically. + */ + +#ifndef _HOOK_H +#define _HOOK_H +#include +#include +#include + +#ifdef __cplusplus +extern "C" { +#endif + + /** + * @brief key filter function + **/ + typedef boolean (*FcitxKeyFilter)(void* arg, FcitxKeySym sym, + unsigned int state, + INPUT_RETURN_VALUE *retval + ); + + /** + * @brief string filter function + **/ + + typedef char* (*FcitxStringFilter)(void* arg, const char* in); + + /** + * @brief ime event hook function + **/ + typedef void (*FcitxIMEventHookFunc)(void* arg); + + /** + * @brief Hotkey process struct + **/ + typedef struct _HotkeyHook { + /** + * @brief Pointer to fcitx hotkeys, fcitx hotkey is length 2 array. + **/ + HOTKEYS* hotkey; + /** + * @brief Function to be called while hotkey is pressed. + * + * @return INPUT_RETURN_VALUE* + **/ + INPUT_RETURN_VALUE (*hotkeyhandle)(void*); + /** + * @brief Argument + **/ + void* arg; + } HotkeyHook; + + /** + * @brief Key filter hook + **/ + typedef struct _KeyFilterHook + { + /** + * @brief Key filter function + **/ + FcitxKeyFilter func; + /** + * @brief extra argument for filter function + **/ + void *arg; + } KeyFilterHook; + + /** + * @brief Hook for string filter, this hook can change the output string. + **/ + typedef struct _StringFilterHook + { + /** + * @brief Filter function + **/ + FcitxStringFilter func; + /** + * @brief Extra argument for the filter function. + **/ + void *arg; + } StringFilterHook; + + /** + * @brief IME Event hook for Reset, Trigger On/Off, Focus/Unfocus + **/ + typedef struct _FcitxIMEventHook + { + FcitxIMEventHookFunc func; + void *arg; + } FcitxIMEventHook; + + /** + * @brief register pre input filter + * + * @param instance fcitx instance + * @param hook new hook + * @return void + **/ + void RegisterPreInputFilter(struct _FcitxInstance* instance, KeyFilterHook hook) ; + /** + * @brief register post input filter + * + * @param instance fcitx instance + * @param hook new hook + * @return void + **/ + void RegisterPostInputFilter(struct _FcitxInstance* instance, KeyFilterHook hook); + /** + * @brief register ouput string filter + * + * @param instance fcitx instance + * @param hook new hook + * @return void + **/ + void RegisterOutputFilter(struct _FcitxInstance* instance, StringFilterHook hook); + /** + * @brief register hotkey + * + * @param instance fcitx instance + * @param hook new hook + * @return void + **/ + void RegisterHotkeyFilter(struct _FcitxInstance* instance, HotkeyHook hook); + /** + * @brief register reset input hook + * + * @param instance fcitx instance + * @param hook new hook + * @return void + **/ + void RegisterResetInputHook(struct _FcitxInstance* instance, FcitxIMEventHook hook); + /** + * @brief register trigger on hook + * + * @param instance fcitx instance + * @param hook new hook + * @return void + **/ + void RegisterTriggerOnHook(struct _FcitxInstance* instance, FcitxIMEventHook hook); + /** + * @brief register trigger off hook + * + * @param instance fcitx instance + * @param hook new hook + * @return void + **/ + void RegisterTriggerOffHook(struct _FcitxInstance* instance, FcitxIMEventHook hook); + /** + * @brief register focus in hook + * + * @param instance fcitx instance + * @param hook new hook + * @return void + **/ + void RegisterInputFocusHook(struct _FcitxInstance* instance, FcitxIMEventHook hook); + /** + * @brief register focus out hook + * + * @param instance fcitx instance + * @param hook new hook + * @return void + **/ + void RegisterInputUnFocusHook(struct _FcitxInstance* instance, FcitxIMEventHook hook); + + /** + * @brief register update candidate word hook + * + * @param instance fcitx instance + * @param hook new hook + * @return void + **/ + void RegisterUpdateCandidateWordHook(struct _FcitxInstance* instance, FcitxIMEventHook hook); + + /** + * @brief process output filter, return string is malloced + * + * @param instance fcitx instance + * @param in input string + * @return char* + **/ + char* ProcessOutputFilter(struct _FcitxInstance* instance, char *in); + + +#ifdef __cplusplus +} +#endif + +#endif +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/lib/fcitx/hook-internal.h fcitx-4.1.1/src/lib/fcitx/hook-internal.h --- fcitx-4.0.1/src/lib/fcitx/hook-internal.h 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/lib/fcitx/hook-internal.h 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,107 @@ +/*************************************************************************** + * Copyright (C) 2010~2010 by CSSlayer * + * wengxt@gmail.com * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +/** + * @file hook-internal.h + * @brief private header of hook + */ + +struct _FcitxInstance; + +/** + * @brief do the preinput phase + * + * @param instance fcitx instance + * @param sym keysym + * @param state keystate + * @param retval input return val + * @return void + **/ +void ProcessPreInputFilter(struct _FcitxInstance* instance, FcitxKeySym sym, unsigned int state, INPUT_RETURN_VALUE* retval); + +/** + * @brief do the postinput phase + * + * @param instance fcitx instance + * @param sym keysym + * @param state keystate + * @param retval input return val + * @return void + **/ +void ProcessPostInputFilter(struct _FcitxInstance* instance, FcitxKeySym sym, unsigned int state, INPUT_RETURN_VALUE* retval); + +/** + * @brief process hotkey phase + * + * @param instance fcitx instance + * @param sym keysym + * @param state keystate + * @return INPUT_RETURN_VALUE + **/ +INPUT_RETURN_VALUE CheckHotkey(struct _FcitxInstance* instance, FcitxKeySym keysym, unsigned int state); + +/** + * @brief process reset input + * + * @param instance fcitx instance + * @return void + **/ +void ResetInputHook(struct _FcitxInstance* instance); + +/** + * @brief process trigger off event + * + * @param instance fcitx instance + * @return void + **/ +void TriggerOffHook(struct _FcitxInstance* instance); + +/** + * @brief process trigger on event + * + * @param instance fcitx instance + * @return void + **/ +void TriggerOnHook(struct _FcitxInstance* instance); + +/** + * @brief process focus in event + * + * @param instance fcitx instance + * @return void + **/ +void InputFocusHook(struct _FcitxInstance* instance); +/** + * @brief process focus out event + * + * @param instance fcitx instance + * @return void + **/ +void InputUnFocusHook(struct _FcitxInstance* instance); + +/** + * @brief process update candidates event + * + * @param instance fcitx instance + * @return void + **/ +void ProcessUpdateCandidates(struct _FcitxInstance* instance); + +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/lib/fcitx/ime.c fcitx-4.1.1/src/lib/fcitx/ime.c --- fcitx-4.0.1/src/lib/fcitx/ime.c 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/lib/fcitx/ime.c 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,857 @@ +/*************************************************************************** + * Copyright (C) 2002~2005 by Yuking * + * yuking_net@sohu.com * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +/** + * @file ime.c + * @author Yuking yuking_net@sohu.com + * @date 2008-1-16 + * + * @brief Process Keyboard Event and Input Method + * + */ +#include +#include +#include +#include "ime.h" +#include "addon.h" +#include "fcitx-config/xdg.h" +#include "fcitx-utils/log.h" +#include "fcitx-config/hotkey.h" +#include "fcitx/configfile.h" +#include "fcitx/keys.h" +#include "fcitx/profile.h" +#include "ime-internal.h" +#include "ui.h" +#include "fcitx-utils/utils.h" +#include "hook.h" +#include "frontend.h" +#include "hook-internal.h" +#include "instance.h" +#include "module.h" +#include "candidate.h" + +static void UnloadIM(FcitxAddon* pim); +static const char* GetStateName(INPUT_RETURN_VALUE retVal); +static const UT_icd ime_icd = {sizeof(FcitxIM), NULL ,NULL, NULL}; +static const UT_icd imclass_icd = {sizeof(FcitxAddon*), NULL ,NULL, NULL}; +static int IMPriorityCmp(const void *a, const void *b); +static boolean IMMenuAction(FcitxUIMenu* menu, int index); +static void UpdateIMMenuShell(FcitxUIMenu *menu); + +int IMPriorityCmp(const void *a, const void *b) +{ + FcitxIM *ta, *tb; + ta = (FcitxIM*)a; + tb = (FcitxIM*)b; + int delta = ta->iPriority - tb->iPriority; + if ( delta != 0 ) + return delta; + else + return strcmp(ta->strIconName, tb->strIconName); +} + +void InitBuiltInHotkey(FcitxInstance *instance) +{ + HotkeyHook hk; + hk.hotkey = FCITX_CTRL_5; + hk.hotkeyhandle = ImProcessReload; + hk.arg = instance; + RegisterHotkeyFilter(instance, hk); + + hk.hotkey = FCITX_ENTER; + hk.hotkeyhandle = ImProcessEnter; + hk.arg = instance; + RegisterHotkeyFilter(instance, hk); + + hk.hotkey = FCITX_ESCAPE; + hk.hotkeyhandle = ImProcessEscape; + hk.arg = instance; + RegisterHotkeyFilter(instance, hk); + + hk.hotkey = instance->config->hkRemind; + hk.hotkeyhandle = ImProcessRemind; + hk.arg = instance; + RegisterHotkeyFilter(instance, hk); + + hk.hotkey = instance->config->hkSaveAll; + hk.hotkeyhandle = ImProcessSaveAll; + hk.arg = instance; + RegisterHotkeyFilter(instance, hk); + + hk.hotkey = instance->config->hkSwitchEmbeddedPreedit; + hk.hotkeyhandle = ImSwitchEmbeddedPreedit; + hk.arg = instance; + RegisterHotkeyFilter(instance, hk); +} + +void InitFcitxIM(FcitxInstance* instance) +{ + utarray_init(&instance->imes, &ime_icd); + utarray_init(&instance->imeclasses, &imclass_icd); +} + +FCITX_EXPORT_API +void SaveAllIM(FcitxInstance* instance) +{ + UT_array* imes = &instance->imes; + FcitxIM *pim; + for ( pim = (FcitxIM *) utarray_front(imes); + pim != NULL; + pim = (FcitxIM *) utarray_next(imes, pim)) + { + if ((pim)->Save) + (pim)->Save(pim->klass); + } +} + +void UnloadAllIM(UT_array* ims) +{ + FcitxAddon **pim; + for ( pim = (FcitxAddon **) utarray_front(ims); + pim != NULL; + pim = (FcitxAddon **) utarray_next(ims, pim)) + { + FcitxAddon *im = *pim; + UnloadIM(im); + } + utarray_clear(ims); +} + +static const char* GetStateName(INPUT_RETURN_VALUE retVal) +{ + + return "unknown"; +} + +void UnloadIM(FcitxAddon* pim) +{ + FcitxIMClass *im = pim->imclass; + if (im->Destroy) + im->Destroy(pim->addonInstance); +} + +FCITX_EXPORT_API +void FcitxRegisterIM(FcitxInstance *instance, + void *addonInstance, + const char* name, + const char* iconName, + FcitxIMInit Init, + FcitxIMResetIM ResetIM, + FcitxIMDoInput DoInput, + FcitxIMGetCandWords GetCandWords, + FcitxIMPhraseTips PhraseTips, + FcitxIMSave Save, + FcitxIMReloadConfig ReloadConfig, + void *priv, + int priority + ) +{ + if (priority <= 0) + return ; + UT_array* imes = &instance->imes ; + FcitxIM newime; + strncpy(newime.strName, name, MAX_IM_NAME); + strncpy(newime.strIconName, iconName, MAX_IM_NAME); + newime.Init = Init; + newime.ResetIM = ResetIM; + newime.DoInput = DoInput; + newime.GetCandWords = GetCandWords; + newime.PhraseTips = PhraseTips; + newime.Save = Save; + newime.ReloadConfig = ReloadConfig; + newime.klass = addonInstance; + newime.iPriority = priority; + newime.priv = priv; + + utarray_push_back(imes, &newime); +} + +boolean LoadAllIM(FcitxInstance* instance) +{ + UT_array* addons = &instance->addons; + UT_array* ims = &instance->imeclasses; + FcitxAddon *addon; + for ( addon = (FcitxAddon *) utarray_front(addons); + addon != NULL; + addon = (FcitxAddon *) utarray_next(addons, addon)) + { + if (addon->bEnabled && addon->category == AC_INPUTMETHOD) + { + char *modulePath; + switch (addon->type) + { + case AT_SHAREDLIBRARY: + { + FILE *fp = GetLibFile(addon->library, "r", &modulePath); + void *handle; + FcitxIMClass * imclass; + if (!fp) + break; + fclose(fp); + handle = dlopen(modulePath,RTLD_LAZY | RTLD_GLOBAL); + if (!handle) + { + FcitxLog(ERROR, _("IM: open %s fail %s") , modulePath ,dlerror()); + break; + } + imclass=dlsym(handle,"ime"); + if (!imclass || !imclass->Create) + { + FcitxLog(ERROR, _("IM: bad im %s"), addon->name); + dlclose(handle); + break; + } + if ((addon->addonInstance = imclass->Create(instance)) == NULL) + { + dlclose(handle); + break; + } + addon->imclass = imclass; + utarray_push_back(ims, &addon); + } + default: + break; + } + free(modulePath); + } + } + if (instance->profile->iIMIndex < 0) + instance->profile->iIMIndex = 0; + if (instance->profile->iIMIndex > utarray_len(&instance->imes)) + instance->profile->iIMIndex = utarray_len(&instance->imes) - 1; + if (utarray_len(&instance->imes) <= 0) + { + FcitxLog(ERROR, _("No available Input Method")); + return false; + } + utarray_sort(&instance->imes, IMPriorityCmp); + return true; +} + +FCITX_EXPORT_API +boolean IsHotKey(FcitxKeySym sym, int state, HOTKEYS * hotkey) +{ + state &= KEY_CTRL_ALT_SHIFT_COMP; + if (hotkey[0].sym && sym == hotkey[0].sym && (hotkey[0].state == state) ) + return true; + if (hotkey[1].sym && sym == hotkey[1].sym && (hotkey[1].state == state) ) + return true; + return false; +} + +FCITX_EXPORT_API +INPUT_RETURN_VALUE ProcessKey( + FcitxInstance* instance, + FcitxKeyEventType event, + long unsigned int timestamp, + FcitxKeySym sym, + unsigned int state) +{ + if (sym == 0) { + return IRV_DONOT_PROCESS; + } + + INPUT_RETURN_VALUE retVal = IRV_TO_PROCESS; + FcitxIM* currentIM = GetCurrentIM(instance); + FcitxInputState *input = &instance->input; + + FcitxConfig *fc = instance->config; + + /* + * for following reason, we cannot just process switch key, 2nd, 3rd key as other simple hotkey + * because ctrl, shift, alt are compose key, so hotkey like ctrl+a will also produce a key + * release event for ctrl key, so we must make sure the key release right now is the key just + * pressed. + */ + if (GetCurrentIC(instance) == NULL) + return IRV_TO_PROCESS; + + /* process keyrelease event for switch key and 2nd, 3rd key */ + if (event == FCITX_RELEASE_KEY ) { + if (GetCurrentIC(instance)->state != IS_CLOSED) { + if ((timestamp - input->lastKeyPressedTime) < 500 && (!input->bIsDoInputOnly)) { + if (IsHotKey(sym, state, FCITX_LCTRL_LSHIFT)) { + if (GetCurrentIC(instance)->state == IS_ACTIVE) + { + if (input->keyReleased == KR_CTRL_SHIFT) + SwitchIM(instance, -1); + } + else if (IsHotKey(sym, state, fc->hkTrigger)) + CloseIM(instance, GetCurrentIC(instance)); + } else if (IsHotKey(sym, state, fc->switchKey) && input->keyReleased == KR_CTRL && !fc->bDoubleSwitchKey) { + retVal = IRV_DONOT_PROCESS; + if (fc->bSendTextWhenSwitchEng) { + if (input->iCodeInputCount != 0) { + strcpy(GetOutputString(input), input->strCodeInput); + retVal = IRV_ENG; + } + } + input->keyReleased = KR_OTHER; + if (GetCurrentState(instance) == IS_ENG) + ShowInputSpeed(instance); + ChangeIMState(instance, GetCurrentIC(instance)); + } else if (IsHotKey(sym, state, fc->i2ndSelectKey) && input->keyReleased == KR_2ND_SELECTKEY) { + if (!input->bIsInRemind) { + retVal = CandidateWordChooseByIndex(input->candList, 1); + } else { + strcpy(GetOutputString(input), " "); + retVal = IRV_COMMIT_STRING; + } + input->keyReleased = KR_OTHER; + } else if (IsHotKey(sym, state, fc->i3rdSelectKey) && input->keyReleased == KR_3RD_SELECTKEY) { + if (!input->bIsInRemind) { + retVal = CandidateWordChooseByIndex(input->candList, 2); + } else { + strcpy(GetOutputString(input), " "); + retVal = IRV_COMMIT_STRING; + } + + input->keyReleased = KR_OTHER; + } + } + } + } + + /* Added by hubert_star AT forum.ubuntu.com.cn */ + if (event == FCITX_RELEASE_KEY + && IsHotKeySimple(sym, state) + && retVal == IRV_TO_PROCESS) + return IRV_DO_NOTHING; + + if (retVal == IRV_TO_PROCESS) { + /* process key event for switch key */ + if (event == FCITX_PRESS_KEY) { + if (!IsHotKey(sym, state, fc->switchKey)) + input->keyReleased = KR_OTHER; + else { + if ((input->keyReleased == KR_CTRL) + && (timestamp - input->lastKeyPressedTime < fc->iTimeInterval) + && fc->bDoubleSwitchKey) { + CommitString(instance, GetCurrentIC(instance), input->strCodeInput); + ChangeIMState(instance, GetCurrentIC(instance)); + } + } + + input->lastKeyPressedTime = timestamp; + if (IsHotKey(sym, state, fc->switchKey)) { + input->keyReleased = KR_CTRL; + retVal = IRV_DO_NOTHING; + } + else if (IsHotKey(sym, state, FCITX_LCTRL_LSHIFT) || IsHotKey(sym, state, FCITX_LCTRL_LSHIFT2)) { + input->keyReleased = KR_CTRL_SHIFT; + retVal = IRV_DO_NOTHING; + } else if (IsHotKey(sym, state, fc->hkTrigger)) { + /* trigger key has the highest priority, so we check it first */ + if (GetCurrentIC(instance)->state == IS_ENG) { + ChangeIMState(instance, GetCurrentIC(instance)); + ShowInputSpeed(instance); + } else + CloseIM(instance, GetCurrentIC(instance)); + + retVal = IRV_DO_NOTHING; + } + } + } + + if (retVal == IRV_TO_PROCESS && event != FCITX_PRESS_KEY) + retVal = IRV_DONOT_PROCESS; + + /* the key processed before this phase is very important, we don't let any interrupt */ + if (GetCurrentIC(instance)->state == IS_ACTIVE + && retVal == IRV_TO_PROCESS + ) { + if (!input->bIsDoInputOnly) { + ProcessPreInputFilter(instance, sym, state, &retVal); + } + + if (retVal == IRV_TO_PROCESS) + { + if (IsHotKey(sym, state, fc->i2ndSelectKey)) { + if (CandidateWordGetByIndex(input->candList, 1) != NULL) + { + input->keyReleased = KR_2ND_SELECTKEY; + return IRV_DO_NOTHING; + } + } else if (IsHotKey(sym, state, fc->i3rdSelectKey)) { + if (CandidateWordGetByIndex(input->candList, 2) != NULL) + { + input->keyReleased = KR_3RD_SELECTKEY; + return IRV_DO_NOTHING; + } + } + + if (!IsHotKey(sym, state, FCITX_LCTRL_LSHIFT)) { + retVal = currentIM->DoInput(currentIM->klass, sym, state); + } + } + + /* check choose key first, because it might trigger update candidates */ + if (!input->bIsDoInputOnly && retVal == IRV_TO_PROCESS) + { + int index = CheckChooseKey (sym, state, CandidateWordGetChoose(input->candList)); + if (index >= 0) + retVal = CandidateWordChooseByIndex(input->candList, index); + } + } + + if (GetCurrentIC(instance)->state == IS_ACTIVE && (retVal & IRV_FLAG_UPDATE_CANDIDATE_WORDS)) + { + CleanInputWindow(instance); + retVal = currentIM->GetCandWords(currentIM->klass); + ProcessUpdateCandidates(instance); + } + + /* + * since all candidate word are cached in candList, so we don't need to trigger + * GetCandWords after go for another page, simply update input window is ok. + */ + if (GetCurrentIC(instance)->state == IS_ACTIVE && !input->bIsDoInputOnly && retVal == IRV_TO_PROCESS) + { + if (IsHotKey(sym, state, fc->hkPrevPage)) + { + if (CandidateWordGoPrevPage(input->candList)) + retVal = IRV_DISPLAY_CANDWORDS; + } + else if (IsHotKey(sym, state, fc->hkNextPage)) + { + if (CandidateWordGoNextPage(input->candList)) + retVal = IRV_DISPLAY_CANDWORDS; + } + } + + if (GetCurrentIC(instance)->state == IS_ACTIVE && !input->bIsDoInputOnly && retVal == IRV_TO_PROCESS) + { + ProcessPostInputFilter(instance, sym, state, &retVal); + } + + if (retVal == IRV_TO_PROCESS) { + retVal = CheckHotkey(instance, sym, state); + } + + FcitxLog(DEBUG, "ProcessKey Return State: %s", GetStateName(retVal)); + + ProcessInputReturnValue(instance, retVal); + + return retVal; +} + +FCITX_EXPORT_API +void ProcessInputReturnValue( + FcitxInstance* instance, + INPUT_RETURN_VALUE retVal +) +{ + FcitxIM* currentIM = GetCurrentIM(instance); + FcitxInputState *input = &instance->input; + FcitxConfig *fc = instance->config; + + if (retVal & IRV_FLAG_PENDING_COMMIT_STRING) + { + CommitString(instance, GetCurrentIC(instance), GetOutputString(input)); + input->iHZInputed += (int) (utf8_strlen(GetOutputString(input))); + } + + if (retVal & IRV_FLAG_DO_PHRASE_TIPS) + { + CleanInputWindow(instance); + if (fc->bPhraseTips && currentIM->PhraseTips) + DoPhraseTips(instance); + UpdateInputWindow(instance); + + ResetInput(instance); + input->lastIsSingleHZ = 0; + } + + if (retVal & IRV_FLAG_RESET_INPUT) + { + ResetInput(instance); + CloseInputWindow(instance); + } + + if (retVal & IRV_FLAG_DISPLAY_LAST) + { + CleanInputWindow(instance); + AddMessageAtLast(input->msgAuxUp, MSG_INPUT, "%c", input->strCodeInput[0]); + AddMessageAtLast(input->msgAuxDown, MSG_TIPS, "%s", GetOutputString(input)); + } + + if (retVal & IRV_FLAG_UPDATE_INPUT_WINDOW) + UpdateInputWindow(instance); + + if (retVal & IRV_FLAG_UPDATE_INPUT_WINDOW) { + if (!input->bStartRecordType) + { + input->bStartRecordType = true; + input->timeStart = time (NULL); + } + } +} + +FCITX_EXPORT_API +void ForwardKey(FcitxInstance* instance, FcitxInputContext *ic, FcitxKeyEventType event, FcitxKeySym sym, unsigned int state) +{ + if (ic == NULL) + return; + UT_array* frontends = &instance->frontends; + FcitxAddon** pfrontend = (FcitxAddon**) utarray_eltptr(frontends, ic->frontendid); + if (pfrontend == NULL) + return; + FcitxFrontend* frontend = (*pfrontend)->frontend; + frontend->ForwardKey((*pfrontend)->addonInstance, ic, event, sym, state); +} + +FCITX_EXPORT_API +void SwitchIM(FcitxInstance* instance, int index) +{ + UT_array* imes = &instance->imes; + int iIMCount = utarray_len(imes); + + CleanInputWindow(instance); + ResetInput(instance); + UpdateInputWindow(instance); + + FcitxIM* lastIM, *newIM; + + if (instance->profile->iIMIndex >= iIMCount || instance->profile->iIMIndex < 0) + lastIM = NULL; + else + { + lastIM = (FcitxIM*) utarray_eltptr(imes, instance->profile->iIMIndex); + } + + if (index >= iIMCount) + instance->profile->iIMIndex = iIMCount - 1; + else if (index < -1) + instance->profile->iIMIndex = 0; + else if (index == -1) { + if (instance->profile->iIMIndex >= (iIMCount - 1)) + instance->profile->iIMIndex = 0; + else + instance->profile->iIMIndex++; + } + else if (index >= 0) + instance->profile->iIMIndex = index; + + if (instance->profile->iIMIndex >= iIMCount || instance->profile->iIMIndex < 0) + newIM = NULL; + else + { + newIM = (FcitxIM*) utarray_eltptr(imes, instance->profile->iIMIndex); + } + + if (lastIM && lastIM->Save) + lastIM->Save(lastIM->klass); + if (newIM && newIM->Init) + newIM->Init(newIM->klass); + + ResetInput(instance); + SaveProfile(instance->profile); +} + +/** + * @brief 重置输入状态 + */ +FCITX_EXPORT_API +void ResetInput(FcitxInstance* instance) +{ + FcitxInputState *input = &instance->input; + CandidateWordReset(input->candList); + input->iCursorPos = 0; + + input->strCodeInput[0] = '\0'; + input->iCodeInputCount = 0; + + input->bIsDoInputOnly = false; + input->bIsInRemind = false; + + UT_array* ims = &instance->imes; + + FcitxIM* currentIM = (FcitxIM*) utarray_eltptr(ims, instance->profile->iIMIndex); + + if (currentIM && currentIM->ResetIM) + currentIM->ResetIM(currentIM->klass); + + ResetInputHook(instance); +} + +void DoPhraseTips(FcitxInstance* instance) +{ + UT_array* ims = &instance->imes; + FcitxIM* currentIM = (FcitxIM*) utarray_eltptr(ims, instance->profile->iIMIndex); + FcitxInputState *input = &instance->input; + + if (currentIM->PhraseTips && currentIM->PhraseTips(currentIM->klass)) + input->lastIsSingleHZ = -1; + else + input->lastIsSingleHZ = 0; +} + +INPUT_RETURN_VALUE ImProcessEnter(void *arg) +{ + FcitxInstance *instance = (FcitxInstance *)arg; + INPUT_RETURN_VALUE retVal = IRV_TO_PROCESS; + FcitxInputState *input = &instance->input; + FcitxConfig *fc = instance->config; + + if (!input->iCodeInputCount) + retVal = IRV_DONOT_PROCESS; + else { + switch (fc->enterToDo) { + case K_ENTER_NOTHING: + retVal = IRV_DO_NOTHING; + break; + case K_ENTER_CLEAN: + retVal = IRV_CLEAN; + break; + case K_ENTER_SEND: + CleanInputWindow(instance); + strcpy(GetOutputString(input), input->strCodeInput); + retVal = IRV_ENG; + break; + } + } + return retVal; +} + +INPUT_RETURN_VALUE ImProcessEscape(void* arg) +{ + FcitxInstance *instance = (FcitxInstance*) arg; + FcitxInputState *input = &instance->input; + if (input->iCodeInputCount || input->bIsInRemind) + return IRV_CLEAN; + else + return IRV_DONOT_PROCESS; +} + +INPUT_RETURN_VALUE ImProcessRemind(void* arg) +{ + FcitxInstance *instance = (FcitxInstance*) arg; + UpdateStatus(instance, "remind"); + return IRV_DONOT_PROCESS; +} + +INPUT_RETURN_VALUE ImProcessReload(void *arg) +{ + FcitxInstance *instance = (FcitxInstance*) arg; + ReloadConfig(instance); + return IRV_DO_NOTHING; +} + +FCITX_EXPORT_API +void ReloadConfig(FcitxInstance *instance) +{ + if (!LoadConfig(instance->config)) + EndInstance(instance); + + CandidateWordSetPageSize(instance->input.candList, instance->config->iMaxCandWord); + + /* Reload All IM, Module, and UI Config */ + UT_array* addons = &instance->addons; + + FcitxAddon *addon; + for ( addon = (FcitxAddon *) utarray_front(addons); + addon != NULL; + addon = (FcitxAddon *) utarray_next(addons, addon)) + { + if (addon->category == AC_MODULE && + addon->bEnabled && + addon->addonInstance) + { + if (addon->module->ReloadConfig) + addon->module->ReloadConfig(addon->addonInstance); + } + } + + + UT_array* imes = &instance->imes; + FcitxIM* pim; + for (pim = (FcitxIM *) utarray_front(imes); + pim != NULL; + pim = (FcitxIM *) utarray_next(imes, pim)) + { + if (pim->ReloadConfig) + pim->ReloadConfig(pim->klass); + } + + if (instance->ui && instance->ui->ui->ReloadConfig) + instance->ui->ui->ReloadConfig(instance->ui->addonInstance); +} + +FCITX_EXPORT_API +char* GetOutputString(FcitxInputState* input) +{ + return input->strStringGet; +} + +FCITX_EXPORT_API +FcitxIM* GetCurrentIM(FcitxInstance* instance) +{ + UT_array* imes = &instance->imes; + FcitxIM* pcurrentIM = (FcitxIM*) utarray_eltptr(imes, instance->profile->iIMIndex); + return pcurrentIM; +} + +FCITX_EXPORT_API +void EnableIM(FcitxInstance* instance, FcitxInputContext* ic, boolean keepState) +{ + if (ic == NULL) + return ; + UT_array* frontends = &instance->frontends; + FcitxAddon** pfrontend = (FcitxAddon**) utarray_eltptr(frontends, ic->frontendid); + if (pfrontend == NULL) + return; + FcitxFrontend* frontend = (*pfrontend)->frontend; + IME_STATE oldstate = ic->state; + ic->state = IS_ACTIVE; + if (oldstate == IS_CLOSED) + { + frontend->EnableIM((*pfrontend)->addonInstance, ic); + OnTriggerOn(instance); + } + if (!keepState) + ResetInput(instance); +} + +void InitIMMenu(FcitxInstance* instance) +{ + strcpy(instance->imMenu.candStatusBind, "im"); + strcpy(instance->imMenu.name, _("Input Method")); + FcitxIM* pim; + UT_array* imes = &instance->imes; + utarray_init(&instance->imMenu.shell, &menuICD); + for ( pim = (FcitxIM *) utarray_front(imes); + pim != NULL; + pim = (FcitxIM *) utarray_next(imes, pim)) + AddMenuShell(&instance->imMenu, pim->strName, MENUTYPE_SIMPLE, NULL); + + instance->imMenu.UpdateMenuShell = UpdateIMMenuShell; + instance->imMenu.MenuAction = IMMenuAction; + instance->imMenu.priv = instance; + instance->imMenu.isSubMenu = false; +} + +boolean IMMenuAction(FcitxUIMenu *menu, int index) +{ + FcitxInstance* instance = (FcitxInstance*) menu->priv; + SwitchIM(instance, index); + return true; +} + +void UpdateIMMenuShell(FcitxUIMenu *menu) +{ + FcitxInstance* instance = (FcitxInstance*) menu->priv; + + menu->mark = instance->profile->iIMIndex; +} + +void ShowInputSpeed(FcitxInstance* instance) +{ + FcitxInputState* input = &instance->input; + + if (!instance->config->bShowInputWindowTriggering) + return; + + input->bShowCursor = false; + + CleanInputWindow(instance); + if (instance->config->bShowVersion) { + AddMessageAtLast(input->msgAuxUp, MSG_TIPS, "FCITX " VERSION); + } + + //显示打字速度 + if (instance->config->bShowUserSpeed) { + double timePassed; + + timePassed = difftime (time (NULL), input->timeStart); + if (((int) timePassed) == 0) + timePassed = 1.0; + + SetMessageCount(input->msgAuxDown, 0); + AddMessageAtLast(input->msgAuxDown, MSG_OTHER, _("Input Speed: ")); + AddMessageAtLast(input->msgAuxDown, MSG_CODE, "%d", (int) ( input->iHZInputed * 60 / timePassed)); + AddMessageAtLast(input->msgAuxDown, MSG_OTHER, _("/min Time Used: ")); + AddMessageAtLast(input->msgAuxDown, MSG_CODE, "%d", (int) timePassed / 60); + AddMessageAtLast(input->msgAuxDown, MSG_OTHER, _("min Num of Characters: ")); + AddMessageAtLast(input->msgAuxDown, MSG_CODE, "%u", input->iHZInputed); + + } + + UpdateInputWindow(instance); +} + +INPUT_RETURN_VALUE ImProcessSaveAll(void *arg) +{ + FcitxInstance *instance = (FcitxInstance*) arg; + SaveAllIM(instance); + return IRV_DO_NOTHING; +} + + +INPUT_RETURN_VALUE ImSwitchEmbeddedPreedit(void *arg) +{ + FcitxInstance *instance = (FcitxInstance*) arg; + instance->profile->bUsePreedit = !instance->profile->bUsePreedit; + SaveProfile(instance->profile); + UpdateInputWindow(instance); + return IRV_DO_NOTHING; +} + +FCITX_EXPORT_API +void CleanInputWindow(FcitxInstance *instance) +{ + CleanInputWindowUp(instance); + CleanInputWindowDown(instance); +} + +FCITX_EXPORT_API +void CleanInputWindowUp(FcitxInstance *instance) +{ + FcitxInputState* input = &instance->input; + SetMessageCount(input->msgAuxUp, 0); + SetMessageCount(input->msgPreedit, 0); +} + +FCITX_EXPORT_API +void CleanInputWindowDown(FcitxInstance* instance) +{ + FcitxInputState* input = &instance->input; + CandidateWordReset(input->candList); + SetMessageCount(input->msgAuxDown, 0); +} + +FCITX_EXPORT_API +int CheckChooseKey (FcitxKeySym sym, int state, const char* strChoose) +{ + if (state != 0) + return -1; + + sym = KeyPadToMain(sym); + + int i = 0; + + while (strChoose[i]) { + if (sym == strChoose[i]) + return i; + i++; + } + + return -1; +} +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/lib/fcitx/ime.h fcitx-4.1.1/src/lib/fcitx/ime.h --- fcitx-4.0.1/src/lib/fcitx/ime.h 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/lib/fcitx/ime.h 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,377 @@ +/*************************************************************************** + * Copyright (C) 2010~2010 by CSSlayer * + * wengxt@gmail.com * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +/** + * @file ime.h + * @author Yuking yuking_net@sohu.com + * @date 2008-1-16 + * + * @brief Public Header for Input Method Develop + * + */ +#ifndef _FCITX_IME_H_ +#define _FCITX_IME_H_ + +#include +#include +#include +#include + +#ifdef __cplusplus +extern "C" { +#endif + +#define MAX_CODE_LEN 63 + +#define MAX_IM_NAME (8 * UTF8_MAX_LENGTH) + +#define MAX_CAND_LEN 127 +#define MAX_TIPS_LEN 9 + +#define MAX_CAND_WORD 10 +#define MAX_USER_INPUT 300 + +#define HOT_KEY_COUNT 2 + + struct _FcitxInputContext; + struct _FcitxInstance; + struct _FcitxAddon; + + typedef enum _KEY_RELEASED { + KR_OTHER = 0, + KR_CTRL, + KR_2ND_SELECTKEY, + KR_3RD_SELECTKEY, + KR_CTRL_SHIFT + } KEY_RELEASED; + + typedef enum _INPUT_RETURN_VALUE { + IRV_TO_PROCESS = 0, /* do something */ + IRV_FLAG_BLOCK_FOLLOWING_PROCESS = 1 << 0, /* nothing to do, actually non-zero is blocking, but you need a flag for do nothing */ + IRV_FLAG_FORWARD_KEY = 1 << 1, /* the key will be forwarded */ + IRV_FLAG_RESET_INPUT = 1 << 2, /* reset input */ + IRV_FLAG_PENDING_COMMIT_STRING = 1 << 3, /* there is something in input strStringGet buffer, commit it */ + IRV_FLAG_UPDATE_INPUT_WINDOW = 1 << 4, /* something updated in input window, let the UI update */ + IRV_FLAG_UPDATE_CANDIDATE_WORDS = 1 << 5, /* update the candidate words */ + IRV_FLAG_ENG = 1 << 6, /* special */ + IRV_FLAG_PUNC = 1 << 7, /* special */ + IRV_FLAG_DISPLAY_LAST = 1 << 8, /* special */ + IRV_FLAG_DO_PHRASE_TIPS = 1 << 9, /* special */ + /* compatible */ + IRV_DONOT_PROCESS = IRV_FLAG_FORWARD_KEY, + IRV_COMMIT_STRING = IRV_FLAG_PENDING_COMMIT_STRING | IRV_FLAG_DO_PHRASE_TIPS, + IRV_DO_NOTHING = IRV_FLAG_BLOCK_FOLLOWING_PROCESS, + IRV_CLEAN = IRV_FLAG_RESET_INPUT, + IRV_COMMIT_STRING_REMIND = IRV_FLAG_PENDING_COMMIT_STRING | IRV_FLAG_UPDATE_INPUT_WINDOW, + IRV_DISPLAY_CANDWORDS = IRV_FLAG_UPDATE_INPUT_WINDOW | IRV_FLAG_UPDATE_CANDIDATE_WORDS, + IRV_DONOT_PROCESS_CLEAN = IRV_FLAG_FORWARD_KEY | IRV_FLAG_RESET_INPUT, + IRV_COMMIT_STRING_NEXT = IRV_FLAG_PENDING_COMMIT_STRING | IRV_FLAG_UPDATE_INPUT_WINDOW, + IRV_DISPLAY_MESSAGE = IRV_FLAG_UPDATE_INPUT_WINDOW, + IRV_ENG = IRV_FLAG_PENDING_COMMIT_STRING | IRV_FLAG_ENG | IRV_FLAG_RESET_INPUT, + IRV_PUNC = IRV_FLAG_PENDING_COMMIT_STRING | IRV_FLAG_PUNC | IRV_FLAG_RESET_INPUT, + IRV_DISPLAY_LAST = IRV_FLAG_UPDATE_INPUT_WINDOW | IRV_FLAG_DISPLAY_LAST + } INPUT_RETURN_VALUE; + + /** + * @brief Fcitx Input Method class, it can register more than one input + * method in create function + **/ + typedef struct _FcitxIMClass { + void* (*Create) (struct _FcitxInstance* instance); + void (*Destroy) (void *arg); + } FcitxIMClass; + + typedef boolean (*FcitxIMInit) (void *arg); + typedef void (*FcitxIMResetIM) (void *arg); + typedef INPUT_RETURN_VALUE (*FcitxIMDoInput) (void *arg, FcitxKeySym, unsigned int); + typedef INPUT_RETURN_VALUE (*FcitxIMGetCandWords) (void *arg); + typedef boolean (*FcitxIMPhraseTips) (void *arg); + typedef void (*FcitxIMSave) (void *arg); + typedef void (*FcitxIMReloadConfig) (void *arg); + + /** + * @brief Fcitx Input method instance + **/ + typedef struct _FcitxIM { + /** + * @brief The name that can be display on the UI + **/ + char strName[MAX_IM_NAME + 1]; + /** + * @brief icon name used to find icon + **/ + char strIconName[MAX_IM_NAME + 1]; + /** + * @brief reset im status + **/ + FcitxIMResetIM ResetIM; + /** + * @brief process key input + **/ + FcitxIMDoInput DoInput; + /** + * @brief update candidate works function + **/ + FcitxIMGetCandWords GetCandWords; + /** + * @brief phrase tips function + **/ + FcitxIMPhraseTips PhraseTips; + /** + * @brief save function + **/ + FcitxIMSave Save; + /** + * @brief init function + **/ + FcitxIMInit Init; + /** + * @brief reload config function + **/ + FcitxIMReloadConfig ReloadConfig; + /** + * @brief private data can be set by UI implementation + **/ + void* uiprivate; + /** + * @brief the pointer to im class + **/ + void* klass; + /** + * @brief the priority order + **/ + int iPriority; + /** + * @brief private data for this input method + **/ + void* priv; + } FcitxIM; + + typedef enum _FcitxKeyEventType { + FCITX_PRESS_KEY, + FCITX_RELEASE_KEY + } FcitxKeyEventType; + + /** + * @brief Global Input State, including displayed message. + **/ + typedef struct _FcitxInputState { + long unsigned int lastKeyPressedTime; + boolean bIsDoInputOnly; + KEY_RELEASED keyReleased; + int iCodeInputCount; + char strCodeInput[MAX_USER_INPUT + 1]; + char strStringGet[MAX_USER_INPUT + 1]; //保存输入法返回的需要送到客户程序中的字串 + boolean bIsInRemind; + + time_t timeStart; + int iCursorPos; + boolean bShowCursor; + int iHZInputed; + int lastIsSingleHZ; + boolean bLastIsNumber; + boolean bStartRecordType; + + /* the ui message part, if there is something in it, then it will be shown */ + struct _CandidateWordList* candList; + Messages* msgPreedit; + Messages* msgAuxUp; + Messages* msgAuxDown; + } FcitxInputState; + + /** + * @brief check the key is this hotkey or not + * + * @param sym keysym + * @param state key state + * @param hotkey hotkey + * @return boolean + **/ + boolean IsHotKey(FcitxKeySym sym, int state, HOTKEYS * hotkey); + + /** + * @brief the string pending commit + * + * @param input input state + * @return char* + **/ + char* GetOutputString(FcitxInputState* input); + + /** + * @brief get current input method + * + * @param instance fcitx instance + * @return _FcitxIM* + **/ + struct _FcitxIM* GetCurrentIM(struct _FcitxInstance *instance); + + /** + * @brief enable im + * + * @param instance fcitx instance + * @param ic input context + * @param keepState keep current state or not + * @return void + **/ + void EnableIM(struct _FcitxInstance* instance, struct _FcitxInputContext* ic, boolean keepState); + + /** + * @brief reset input state + * + * @param instance fcitx instance + * @return void + **/ + void ResetInput (struct _FcitxInstance* instance); + + /** + * @brief clean whole input window + * + * @param instance fcitx instance + * @return void + **/ + void CleanInputWindow(struct _FcitxInstance *instance); + + /** + * @brief clean preedit string and aux up + * + * @param instance fcitx instance + * @return void + **/ + void CleanInputWindowUp(struct _FcitxInstance *instance); + + /** + * @brief clean candidate word list and aux down + * + * @param instance fcitx instance + * @return void + **/ + void CleanInputWindowDown(struct _FcitxInstance *instance); + + /** + * @brief Sometimes, we use INPUT_RETURN_VALUE not from ProcessKey, so use this function to do the correct thing. + * + * @param instance fcitx instance + * @param retVal input return val + * @return void + **/ + void ProcessInputReturnValue( + struct _FcitxInstance* instance, + INPUT_RETURN_VALUE retVal + ); + + /** + * @brief register a new input method + * + * @param instance fcitx instance + * @param addonInstance instance of addon + * @param name input method name + * @param iconName icon name + * @param Init init callback + * @param ResetIM reset callback + * @param DoInput do input callback + * @param GetCandWords get candidate words callback + * @param PhraseTips phrase tips callback + * @param Save save callback + * @param ReloadConfig reload config callback + * @param priv private data for this input method. + * @param priority order of this input method + * @return void + **/ + void FcitxRegisterIM(struct _FcitxInstance *instance, + void *addonInstance, + const char* name, + const char* iconName, + FcitxIMInit Init, + FcitxIMResetIM ResetIM, + FcitxIMDoInput DoInput, + FcitxIMGetCandWords GetCandWords, + FcitxIMPhraseTips PhraseTips, + FcitxIMSave Save, + FcitxIMReloadConfig ReloadConfig, + void *priv, + int priority + ); + + /** + * @brief process a key event, should only used by frontend + * + * @param instance fcitx instance + * @param event event type + * @param timestamp timestamp + * @param sym keysym + * @param state key state + * @return INPUT_RETURN_VALUE + **/ + INPUT_RETURN_VALUE ProcessKey(struct _FcitxInstance* instance, FcitxKeyEventType event, long unsigned int timestamp, FcitxKeySym sym, unsigned int state); + + /** + * @brief send a new key event to client + * + * @param instance fcitx instance + * @param ic input context + * @param event event tpye + * @param sym keysym + * @param state key state + * @return void + **/ + void ForwardKey(struct _FcitxInstance* instance, struct _FcitxInputContext* ic, FcitxKeyEventType event, FcitxKeySym sym, unsigned int state); + + /** + * @brief save all input method data + * + * @param instance fcitx instance + * @return void + **/ + void SaveAllIM (struct _FcitxInstance* instance); + + /** + * @brief reload all config + * + * @param instance fcitx instance + * @return void + **/ + void ReloadConfig(struct _FcitxInstance* instance); + + /** + * @brief switch to input method by index + * + * @param instance fcitx instance + * @param index input method index + * @return void + **/ + void SwitchIM (struct _FcitxInstance* instance, int index); + + /** + * @brief check is choose key or not, if so, return the choose index + * + * @param sym keysym + * @param state keystate + * @param strChoose choose key string + * @return int + **/ + int CheckChooseKey (FcitxKeySym sym, int state, const char* strChoose); + +#ifdef __cplusplus +} +#endif + +#endif + +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/lib/fcitx/ime-internal.h fcitx-4.1.1/src/lib/fcitx/ime-internal.h --- fcitx-4.0.1/src/lib/fcitx/ime-internal.h 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/lib/fcitx/ime-internal.h 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,144 @@ +/*************************************************************************** + * Copyright (C) 2002~2005 by Yuking * + * yuking_net@sohu.com * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ +/** + * @file ime-internal.h + * @date 2008-1-16 + * + * @brief Private Header for Input Method + * + */ + +#ifndef _FCITX_IME_INTERNAL_H_ +#define _FCITX_IME_INTERNAL_H_ + +#include "fcitx-config/hotkey.h" +#include "ime.h" +#include "fcitx-utils/utarray.h" + +struct _FcitxInputContext; +struct _FcitxInstance; + +/** + * @brief init fcitx im array + * + * @param instance instance + * @return void + **/ +void InitFcitxIM(struct _FcitxInstance* instance); + +/** + * @brief init builtin hotkey (ESC, ENTER) + * + * @param instance instance + * @return void + **/ +void InitBuiltInHotkey(struct _FcitxInstance* instance); + +/** + * @brief generat phrase tips + * + * @param instance fcitx instance + * @return void + **/ +void DoPhraseTips (struct _FcitxInstance* instance); + +/** + * @brief unload all input method + * + * @param ims im array + * @return void + **/ +void UnloadAllIM(UT_array* ims); + +/** + * @brief load all im from addons + * + * @param instance instance + * @return boolean + **/ +boolean LoadAllIM (struct _FcitxInstance* instance); + +/** + * @brief init builtin im menu + * + * @param instance instance + * @return void + **/ +void InitIMMenu(struct _FcitxInstance* instance); + +/** + * @brief show input speed + * + * @param instance instance + * @return void + **/ +void ShowInputSpeed(struct _FcitxInstance* instance); + +/** + * @brief process enter action + * + * @param arg instance + * @return INPUT_RETURN_VALUE + **/ +INPUT_RETURN_VALUE ImProcessEnter(void *arg); + +/** + * @brief process escape action + * + * @param arg instance + * @return INPUT_RETURN_VALUE + **/ +INPUT_RETURN_VALUE ImProcessEscape(void *arg); + +/** + * @brief process hkRemind + * + * @param arg instance + * @return INPUT_RETURN_VALUE + **/ +INPUT_RETURN_VALUE ImProcessRemind(void *arg); + +/** + * @brief process reload key + * + * @param arg instance + * @return INPUT_RETURN_VALUE + **/ +INPUT_RETURN_VALUE ImProcessReload(void *arg); + +/** + * @brief process hkSaveAll + * + * @param arg instance + * @return INPUT_RETURN_VALUE + **/ +INPUT_RETURN_VALUE ImProcessSaveAll(void *arg); + +/** + * @brief switch between "on the spot" and "over the spot" + * + * @param arg instance + * @return INPUT_RETURN_VALUE + **/ +INPUT_RETURN_VALUE ImSwitchEmbeddedPreedit(void *arg); + +#endif + +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/lib/fcitx/instance.c fcitx-4.1.1/src/lib/fcitx/instance.c --- fcitx-4.0.1/src/lib/fcitx/instance.c 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/lib/fcitx/instance.c 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,374 @@ +/*************************************************************************** + * Copyright (C) 2010~2010 by CSSlayer * + * wengxt@gmail.com * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +#include +#include +#include +#include +#include +#include +#include + +#include "instance.h" +#include "fcitx-utils/log.h" +#include "ime-internal.h" +#include "ui.h" +#include "addon.h" +#include "module.h" +#include "frontend.h" +#include "fcitx-utils/utils.h" +#include "candidate.h" +#include "ui-internal.h" + +#define CHECK_ENV(env, value, icase) (!getenv(env) \ + || (icase ? \ + (0 != strcmp(getenv(env), (value))) \ + : (0 != strcasecmp(getenv(env), (value))))) + +const UT_icd stat_icd = {sizeof(FcitxUIStatus), 0, 0, 0}; +const UT_icd menup_icd = {sizeof(FcitxUIMenu*), 0, 0, 0}; +static void FcitxInitThread(FcitxInstance* inst); +static void ToggleRemindState(void* arg); +static boolean GetRemindEnabled(void* arg); +static boolean ProcessOption(FcitxInstance* instance, int argc, char* argv[]); +static void Usage(); +static void Version(); +static void* RunInstance(void* arg); + +/** + * @brief 显示命令行参数 + */ +void Usage () +{ + printf("Usage: fcitx [OPTION]\n" + "\t-d\t\t\trun as daemon(default)\n" + "\t-D\t\t\tdon't run as daemon\n" + "\t-s[sleep time]\t\toverride delay start time in config file, 0 for immediate start\n" + "\t-v\t\t\tdisplay the version information and exit\n" + "\t-u, --ui\t\tspecify the user interface to use\n" + "\t-h, --help\t\tdisplay this help and exit\n"); +} + +/** + * @brief 显示版本 + */ +void Version () +{ + printf ("fcitx version: %s\n", VERSION); +} + +FCITX_EXPORT_API +FcitxInstance* CreateFcitxInstance(sem_t *sem, int argc, char* argv[]) +{ + FcitxInstance* instance = fcitx_malloc0(sizeof(FcitxInstance)); + InitFcitxAddons(&instance->addons); + InitFcitxIM(instance); + InitFcitxFrontends(&instance->frontends); + InitFcitxModules(&instance->eventmodules); + utarray_init(&instance->uistats, &stat_icd); + utarray_init(&instance->uimenus, &menup_icd); + instance->input.msgAuxUp = InitMessages(); + instance->input.msgAuxDown = InitMessages(); + instance->input.msgPreedit = InitMessages(); + instance->input.candList = CandidateWordInit(); + instance->sem = sem; + instance->config = fcitx_malloc0(sizeof(FcitxConfig)); + instance->profile = fcitx_malloc0(sizeof(FcitxProfile)); + + if (!LoadConfig(instance->config)) + goto error_exit; + + CandidateWordSetPageSize(instance->input.candList, instance->config->iMaxCandWord); + + if (!ProcessOption(instance, argc, argv)) + goto error_exit; + + instance->input.timeStart = time(NULL); + + FcitxInitThread(instance); + if (!LoadProfile(instance->profile)) + goto error_exit; + if (GetAddonConfigDesc() == NULL) + goto error_exit; + + LoadAddonInfo(&instance->addons); + AddonResolveDependency(instance); + InitBuiltInHotkey(instance); + LoadModule(instance); + if (!LoadAllIM(instance)) + { + EndInstance(instance); + return instance; + } + + InitIMMenu(instance); + RegisterMenu(instance, &instance->imMenu); + RegisterStatus(instance, instance, "remind", "Remind", "Remind", ToggleRemindState, GetRemindEnabled); + + LoadUserInterface(instance); + + SwitchIM(instance, instance->profile->iIMIndex); + + if (!LoadFrontend(instance)) + { + EndInstance(instance); + return instance; + } + + if (instance->config->bFirstRun) + { + instance->config->bFirstRun = false; + SaveConfig(instance->config); + + const char *imname = "fcitx"; + char strTemp[PATH_MAX]; + snprintf(strTemp, PATH_MAX, "@im=%s", imname); + strTemp[PATH_MAX - 1] = '\0'; + + if ((getenv("XMODIFIERS") != NULL && CHECK_ENV("XMODIFIERS", strTemp, true)) || + (CHECK_ENV("GTK_IM_MODULE", "xim", false) && CHECK_ENV("GTK_IM_MODULE", "fcitx", false)) + || (CHECK_ENV("QT_IM_MODULE", "xim", false) && CHECK_ENV("QT_IM_MODULE", "fcitx", false))) { + char *msg[12]; + msg[0] = _("Please check your environment varibles."); + msg[1] = _("You can use tools provided by your distribution."); + msg[2] = _("Or You may need to set environment varibles below to make fcitx work correctly."); + msg[3] = "export XMODIFIERS=\"@im=fcitx\""; + msg[4] = "export QT_IM_MODULE=xim"; + msg[5] = "export GTK_IM_MODULE=xim"; + msg[6] = _("Or (Depends on you install im module or not)"); + msg[7] = "export XMODIFIERS=\"@im=fcitx\""; + msg[8] = "export QT_IM_MODULE=fcitx"; + msg[9] = "export GTK_IM_MODULE=fcitx"; + msg[10] = _("If you use login manager like gdm or kdm, put those lines in your ~/.xprofile."); + msg[11] = _("If you use ~/.xinitrc and startx, put those lines in ~/.xinitrc."); + + DisplayMessage(instance, _("Setting Hint"), msg, 12); + } + } + /* make in order to use block X, query is not good here */ + pthread_create(&instance->pid, NULL, RunInstance, instance); + + return instance; + +error_exit: + EndInstance(instance); + return instance; + +} + +void* RunInstance(void* arg) +{ + FcitxInstance* instance = (FcitxInstance*) arg; + while (1) + { + FcitxAddon** pmodule; + do { + instance->uiflag = UI_NONE; + for (pmodule = (FcitxAddon**) utarray_front(&instance->eventmodules); + pmodule != NULL; + pmodule = (FcitxAddon**) utarray_next(&instance->eventmodules, pmodule)) + { + FcitxModule* module = (*pmodule)->module; + module->ProcessEvent((*pmodule)->addonInstance); + } + + if (instance->uiflag & UI_MOVE) + MoveInputWindowReal(instance); + + if (instance->uiflag & UI_UPDATE) + UpdateInputWindowReal(instance); + } while (instance->uiflag != UI_NONE); + + FD_ZERO(&instance->rfds); + FD_ZERO(&instance->wfds); + FD_ZERO(&instance->efds); + + instance->maxfd = 0; + for (pmodule = (FcitxAddon**) utarray_front(&instance->eventmodules); + pmodule != NULL; + pmodule = (FcitxAddon**) utarray_next(&instance->eventmodules, pmodule)) + { + FcitxModule* module = (*pmodule)->module; + module->SetFD((*pmodule)->addonInstance); + } + if (instance->maxfd == 0) + break; + select(instance->maxfd + 1, &instance->rfds, &instance->wfds, &instance->efds, NULL); + } + return NULL; +} + +FCITX_EXPORT_API +void EndInstance(FcitxInstance* instance) +{ + SaveAllIM(instance); + + /* handle exit */ + FcitxAddon** pimclass; + FcitxAddon** pfrontend; + FcitxFrontend* frontend; + FcitxInputContext* rec = NULL; + + for (pimclass = (FcitxAddon**) utarray_front(&instance->imeclasses); + pimclass != NULL; + pimclass = (FcitxAddon**) utarray_next(&instance->imeclasses, pimclass) + ) + { + if ((*pimclass)->imclass->Destroy) + (*pimclass)->imclass->Destroy((*pimclass)->addonInstance); + } + + for (rec = instance->ic_list; rec != NULL; rec = rec->next) { + pfrontend = (FcitxAddon**) utarray_eltptr(&instance->frontends, rec->frontendid); + frontend = (*pfrontend)->frontend; + frontend->CloseIM((*pfrontend)->addonInstance, rec); + } + + for (rec = instance->ic_list; rec != NULL; rec = rec->next) { + pfrontend = (FcitxAddon**) utarray_eltptr(&instance->frontends, rec->frontendid); + frontend = (*pfrontend)->frontend; + frontend->DestroyIC((*pfrontend)->addonInstance, rec); + } + + int frontendid = 0; + for (pfrontend = (FcitxAddon**) utarray_front(&instance->frontends); + pfrontend != NULL; + pfrontend = (FcitxAddon**) utarray_next(&instance->frontends, pfrontend) + ) + { + if (pfrontend == NULL) + return; + FcitxFrontend* frontend = (*pfrontend)->frontend; + frontend->Destroy((*pfrontend)->addonInstance); + frontendid++; + } + + sem_post(instance->sem); +} + +void FcitxInitThread(FcitxInstance* inst) +{ + int rc; + rc = pthread_mutex_init(&inst->fcitxMutex, NULL); + if (rc != 0) + FcitxLog(ERROR, _("pthread mutex init failed")); +} + +FCITX_EXPORT_API +int FcitxLock(FcitxInstance* inst) +{ + if (inst->bMutexInited) + return pthread_mutex_lock(&inst->fcitxMutex); + return 0; +} + +FCITX_EXPORT_API +int FcitxUnlock(FcitxInstance* inst) +{ + if (inst->bMutexInited) + return pthread_mutex_unlock(&inst->fcitxMutex); + return 0; +} + +void ToggleRemindState(void* arg) +{ + FcitxInstance* instance = (FcitxInstance*) arg; + instance->profile->bUseRemind = !instance->profile->bUseRemind; + SaveProfile(instance->profile); +} + +boolean GetRemindEnabled(void* arg) +{ + FcitxInstance* instance = (FcitxInstance*) arg; + return instance->profile->bUseRemind; +} + +boolean ProcessOption(FcitxInstance* instance, int argc, char* argv[]) +{ + struct option longOptions[] ={ + {"ui", 1, 0, 0}, + {"help", 0, 0, 0} + }; + + int optionIndex = 0; + int c; + char* uiname = NULL; + boolean runasdaemon = true; + int overrideDelay = -1; + while ((c = getopt_long(argc, argv, "u:dDs:hv", longOptions, &optionIndex)) != EOF) + { + switch (c) + { + case 0: + { + switch (optionIndex) + { + case 0: + uiname = strdup(optarg); + break; + default: + Usage(); + return false; + } + } + break; + case 'u': + uiname = strdup(optarg); + break; + case 'd': + runasdaemon = true; + break; + case 'D': + runasdaemon = false; + break; + case 's': + overrideDelay = atoi(optarg); + break; + case 'h': + Usage(); + return false; + case 'v': + Version(); + return false; + break; + default: + Usage(); + return false; + } + } + + if (uiname) + instance->uiname = uiname; + else + instance->uiname = NULL; + + if (runasdaemon) + InitAsDaemon(); + + if (overrideDelay < 0) + overrideDelay = instance->config->iDelayStart; + + if (overrideDelay > 0) + sleep(overrideDelay); + + return true; +} + +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/lib/fcitx/instance.h fcitx-4.1.1/src/lib/fcitx/instance.h --- fcitx-4.0.1/src/lib/fcitx/instance.h 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/lib/fcitx/instance.h 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,126 @@ +/*************************************************************************** + * Copyright (C) 2010~2010 by CSSlayer * + * wengxt@gmail.com * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ +#ifndef __FCITX_INSTANCE_H__ +#define __FCITX_INSTANCE_H__ + +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#ifdef __cplusplus +extern "C" { +#endif + + struct _HookStack; + struct _FcitxInputContext; + + /** + * @brief Fcitx Instance, including all global settings + **/ + typedef struct _FcitxInstance { + pthread_mutex_t fcitxMutex; + UT_array uistats; + UT_array uimenus; + FcitxAddon* ui; + FcitxInputState input; + boolean bMutexInited; + FcitxUIMenu imMenu; + + /* Fcitx is not good at multi process, so put a readonlyMode in it */ + boolean readonlyMode; + + /* config file */ + FcitxConfig* config; + FcitxProfile* profile; + UT_array addons; + UT_array imeclasses; + UT_array imes; + UT_array frontends; + UT_array eventmodules; + + struct _FcitxInputContext *CurrentIC; + struct _FcitxInputContext *ic_list; + struct _FcitxInputContext *free_list; + sem_t* sem; + pthread_t pid; + fd_set rfds, wfds, efds; + int maxfd; + char* uiname; + + struct _HookStack* hookPreInputFilter; + struct _HookStack* hookPostInputFilter; + struct _HookStack* hookOutputFilter; + struct _HookStack* hookHotkeyFilter; + struct _HookStack* hookResetInputHook; + struct _HookStack* hookTriggerOnHook; + struct _HookStack* hookTriggerOffHook; + struct _HookStack* hookInputFocusHook; + struct _HookStack* hookInputUnFocusHook; + struct _HookStack* hookUpdateCandidateWordHook; + + FcitxUIFlag uiflag; + } FcitxInstance; + + /** + * @brief create new fcitx instance + * + * @param sem semaphore to notify the instance is end + * @param argc argc + * @param argv argv + * @return FcitxInstance* + **/ + FcitxInstance* CreateFcitxInstance(sem_t *sem, int argc, char* argv[]); + + /** + * @brief lock the instance + * + * @param instance fcitx instance + * @return int + **/ + int FcitxLock(FcitxInstance* instance); + + /** + * @brief lock the instance + * + * @param instance fcitx instance + * @return int + **/ + int FcitxUnlock(FcitxInstance* instance); + + /** + * @brief notify the instance is end + * + * @param instance fcitx instance + * @return void + **/ + void EndInstance(FcitxInstance* instance); + +#ifdef __cplusplus +} +#endif + +#endif +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/lib/fcitx/keys.c fcitx-4.1.1/src/lib/fcitx/keys.c --- fcitx-4.0.1/src/lib/fcitx/keys.c 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/lib/fcitx/keys.c 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,195 @@ +/*************************************************************************** + * Copyright (C) 2010~2010 by CSSlayer * + * wengxt@gmail.com * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +/* + * Define const keys that will be used in code + */ + +#include "fcitx/fcitx.h" +#include "fcitx/keys.h" + +FCITX_EXPORT_API +HOTKEYS FCITX_DELETE[2] = +{ + {NULL, Key_Delete, 0}, + {NULL, Key_KP_Delete, 0}, +}; + +FCITX_EXPORT_API +HOTKEYS FCITX_CTRL_DELETE[2] = +{ + {NULL, Key_Delete, KEY_CTRL_COMP}, + {NULL, 0, 0}, +}; + +FCITX_EXPORT_API +HOTKEYS FCITX_BACKSPACE[2] = +{ + {NULL, Key_BackSpace, 0}, + {NULL, 0, 0}, +}; + +FCITX_EXPORT_API +HOTKEYS FCITX_HOME[2] = +{ + {NULL, Key_Home, 0}, + {NULL, Key_KP_Home, 0}, +}; + +FCITX_EXPORT_API +HOTKEYS FCITX_END[2] = +{ + {NULL, Key_End, 0}, + {NULL, Key_KP_End, 0}, +}; + +FCITX_EXPORT_API +HOTKEYS FCITX_RIGHT[2] = +{ + {NULL, Key_Right, 0}, + {NULL, Key_KP_Right, 0}, +}; + +FCITX_EXPORT_API +HOTKEYS FCITX_LEFT[2] = +{ + {NULL, Key_Left, 0}, + {NULL, Key_KP_Left, 0}, +}; + +FCITX_EXPORT_API +HOTKEYS FCITX_ESCAPE[2] = +{ + {NULL, Key_Escape, 0}, + {NULL, 0, 0}, +}; + +FCITX_EXPORT_API +HOTKEYS FCITX_ENTER[2] = +{ + {NULL, Key_Return, 0}, + {NULL, Key_KP_Enter, 0}, +}; + +FCITX_EXPORT_API +HOTKEYS FCITX_LCTRL_LSHIFT[2] = +{ + {NULL, Key_Shift_L, KEY_CTRL_SHIFT_COMP}, + {NULL, Key_Control_L, KEY_CTRL_SHIFT_COMP}, +}; + +FCITX_EXPORT_API +HOTKEYS FCITX_LCTRL_LSHIFT2[2] = +{ + {NULL, Key_Shift_L, KEY_CTRL_COMP}, + {NULL, 0, 0}, +}; + + +FCITX_EXPORT_API +HOTKEYS FCITX_SEMICOLON[2] = +{ + {NULL, Key_semicolon, KEY_NONE}, + {NULL, 0, 0}, +}; + +FCITX_EXPORT_API +HOTKEYS FCITX_SEPARATOR[2] = +{ + {NULL, Key_apostrophe, KEY_NONE}, + {NULL, 0, 0}, +}; + +FCITX_EXPORT_API +HOTKEYS FCITX_COMMA[2] = +{ + {NULL, Key_comma, KEY_NONE}, + {NULL, 0, 0}, +}; + +FCITX_EXPORT_API +HOTKEYS FCITX_PERIOD[2] = +{ + {NULL, Key_period, KEY_NONE}, + {NULL, 0, 0}, +}; + +FCITX_EXPORT_API +HOTKEYS FCITX_SPACE[2] = +{ + {NULL, Key_space, KEY_NONE}, + {NULL, 0, 0}, +}; + +FCITX_EXPORT_API +HOTKEYS FCITX_CTRL_5[2] = +{ + {NULL, Key_5, KEY_CTRL_COMP}, + {NULL, 0, 0}, +}; + +FCITX_EXPORT_API +HOTKEYS FCITX_CTRL_ALT_E[2] = +{ + {NULL, Key_E, KEY_CTRL_ALT_COMP}, + {NULL, 0, 0}, +}; + +FCITX_EXPORT_API +HOTKEYS FCITX_LCTRL[2] = +{ + {NULL, Key_Control_L, KEY_NONE}, + {NULL, Key_Control_L, KEY_CTRL_COMP}, +}; + +FCITX_EXPORT_API +HOTKEYS FCITX_LSHIFT[2] = +{ + {NULL, Key_Shift_L, KEY_NONE}, + {NULL, Key_Shift_L, KEY_SHIFT_COMP}, +}; + +FCITX_EXPORT_API +HOTKEYS FCITX_RCTRL[2] = +{ + {NULL, Key_Control_R, KEY_NONE}, + {NULL, Key_Control_R, KEY_CTRL_COMP}, +}; + +FCITX_EXPORT_API +HOTKEYS FCITX_RSHIFT[2] = +{ + {NULL, Key_Shift_R, KEY_NONE}, + {NULL, Key_Shift_R, KEY_SHIFT_COMP}, +}; + +FCITX_EXPORT_API +boolean IsHotKeyModifierCombine(FcitxKeySym sym, int state) +{ + if (sym == Key_Control_L + || sym == Key_Control_R + || sym == Key_Shift_L + || sym == Key_Shift_R ) + return true; + + return false; +} + +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/lib/fcitx/keys.h fcitx-4.1.1/src/lib/fcitx/keys.h --- fcitx-4.0.1/src/lib/fcitx/keys.h 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/lib/fcitx/keys.h 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,66 @@ +/*************************************************************************** + * Copyright (C) 2010~2010 by CSSlayer * + * wengxt@gmail.com * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +#ifndef _FCITX_KEYS_H_ +#define _FCITX_KEYS_H_ + +#include + +#ifdef __cplusplus +extern "C" { +#endif + + /* + * Define const keys that will be used in code + */ + + boolean IsHotKeyModifierCombine(FcitxKeySym sym, int state); + + extern HOTKEYS FCITX_DELETE[2]; + extern HOTKEYS FCITX_CTRL_DELETE[2]; + extern HOTKEYS FCITX_BACKSPACE[2]; + extern HOTKEYS FCITX_HOME[2]; + extern HOTKEYS FCITX_END[2]; + extern HOTKEYS FCITX_RIGHT[2]; + extern HOTKEYS FCITX_LEFT[2]; + extern HOTKEYS FCITX_ESCAPE[2]; + extern HOTKEYS FCITX_ENTER[2]; + extern HOTKEYS FCITX_LCTRL_LSHIFT[2]; + extern HOTKEYS FCITX_LCTRL_LSHIFT2[2]; + extern HOTKEYS FCITX_SEMICOLON[2]; + extern HOTKEYS FCITX_SPACE[2]; + extern HOTKEYS FCITX_COMMA[2]; + extern HOTKEYS FCITX_PERIOD[2]; + extern HOTKEYS FCITX_CTRL_5[2]; + extern HOTKEYS FCITX_SEPARATOR[2]; + extern HOTKEYS FCITX_CTRL_ALT_E[2]; + extern HOTKEYS FCITX_LCTRL[2]; + extern HOTKEYS FCITX_LSHIFT[2]; + extern HOTKEYS FCITX_RCTRL[2]; + extern HOTKEYS FCITX_RSHIFT[2]; + extern HOTKEYS FCITX_LSUPER[2]; + extern HOTKEYS FCITX_RSUPER[2]; + +#ifdef __cplusplus +} +#endif + +#endif +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/lib/fcitx/module.c fcitx-4.1.1/src/lib/fcitx/module.c --- fcitx-4.0.1/src/lib/fcitx/module.c 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/lib/fcitx/module.c 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,123 @@ +/*************************************************************************** + * Copyright (C) 2010~2010 by CSSlayer * + * wengxt@gmail.com * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +#include +#include +#include + +#include "fcitx/fcitx.h" +#include "module.h" +#include "addon.h" +#include "fcitx-config/xdg.h" +#include "fcitx-utils/log.h" +#include "instance.h" + +static UT_icd module_icd = {sizeof(FcitxModule*), NULL, NULL, NULL}; +typedef void*(*FcitxModuleFunction)(void *arg, FcitxModuleFunctionArg); + +FCITX_EXPORT_API +void InitFcitxModules(UT_array* modules) +{ + utarray_init(modules, &module_icd); +} + +FCITX_EXPORT_API +void LoadModule(FcitxInstance* instance) +{ + UT_array* addons = &instance->addons; + FcitxAddon *addon; + for ( addon = (FcitxAddon *) utarray_front(addons); + addon != NULL; + addon = (FcitxAddon *) utarray_next(addons, addon)) + { + if (addon->bEnabled && addon->category == AC_MODULE) + { + char *modulePath; + switch (addon->type) + { + case AT_SHAREDLIBRARY: + { + FILE *fp = GetLibFile(addon->library, "r", &modulePath); + void *handle; + FcitxModule* module; + void* moduleinstance = NULL; + if (!fp) + break; + fclose(fp); + handle = dlopen(modulePath,RTLD_LAZY | RTLD_GLOBAL); + if (!handle) + { + FcitxLog(ERROR, _("Module: open %s fail %s") ,modulePath ,dlerror()); + break; + } + module=dlsym(handle,"module"); + if (!module || !module->Create) + { + FcitxLog(ERROR, _("Module: bad module")); + dlclose(handle); + break; + } + if ((moduleinstance = module->Create(instance)) == NULL) + { + dlclose(handle); + break; + } + addon->module = module; + addon->addonInstance = moduleinstance; + if (module->ProcessEvent && module->SetFD) + utarray_push_back(&instance->eventmodules, &addon); + } + break; + default: + break; + } + free(modulePath); + } + } +} + +FCITX_EXPORT_API +void* InvokeModuleFunction(FcitxAddon* addon, int functionId, FcitxModuleFunctionArg args) +{ + if (addon == NULL) + { + FcitxLog(ERROR, "addon is not valid"); + return NULL; + } + FcitxModuleFunction* func =(FcitxModuleFunction*) utarray_eltptr(&addon->functionList, functionId); + if (func == NULL) + { + FcitxLog(ERROR, "addon %s doesn't have function with id %d", addon->name, functionId); + return NULL; + } + void* result = (*func)(addon->addonInstance, args); + return result; +} + +FCITX_EXPORT_API +void* InvokeModuleFunctionWithName(FcitxInstance* instance, const char* name, int functionId, FcitxModuleFunctionArg args) +{ + FcitxAddon* module = GetAddonByName(&instance->addons, name); + if (module == NULL) + return NULL; + else + return InvokeModuleFunction(module, functionId, args); +} +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/lib/fcitx/module.h fcitx-4.1.1/src/lib/fcitx/module.h --- fcitx-4.0.1/src/lib/fcitx/module.h 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/lib/fcitx/module.h 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,123 @@ +/*************************************************************************** + * Copyright (C) 2010~2010 by CSSlayer * + * wengxt@gmail.com * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +#ifndef _FCITX_MODULE_H +#define _FCITX_MODULE_H +#include +#include + +#ifdef __cplusplus +extern "C" { +#endif + + struct _FcitxInstance; + struct _FcitxAddon; + + /** + * @brief A misc module in Fcitx, it can register hook, or add it's own event + * to Fcitx main loop. + **/ + typedef struct _FcitxModule + { + /** + * @brief construction function + */ + void* (*Create)(struct _FcitxInstance* instance); + /** + * @brief set main loop watch fd, no need to implement + */ + void (*SetFD)(void*); + /** + * @brief main loop event handle, no need to implement + */ + void (*ProcessEvent)(void*); + /** + * @brief destruct function + */ + void (*Destroy)(void*); + /** + * @brief reload config, no need to implement + */ + void (*ReloadConfig)(void*); + } FcitxModule; + + /** + * @brief the argument to invoke module function + **/ + typedef struct _FcitxModuleFunctionArg + { + /** + * @brief arguments + **/ + void* args[10]; + } FcitxModuleFunctionArg; + + /** + * @brief init module array + * + * @param modules module array + * @return void + **/ + void InitFcitxModules(UT_array* modules); + + /** + * @brief load all modules + * + * @param instance fcitx instance + * @return void + **/ + void LoadModule(struct _FcitxInstance* instance); + + /** + * @brief invode inter module function wiht addon pointer, returns NULL when fails (the function itself can also return NULL) + * + * @param addon addon + * @param functionId function index + * @param args arguments + * @return void* + **/ + void* InvokeModuleFunction(struct _FcitxAddon* addon, int functionId, FcitxModuleFunctionArg args); + + /** + * @brief invoke inter module function with addon name, returns NULL when fails (the function itself can also return NULL) + * + * @param instance fcitx instance + * @param name addon name + * @param functionId function index + * @param args arguments + * @return void* + **/ + void* InvokeModuleFunctionWithName(struct _FcitxInstance* instance, const char* name, int functionId, FcitxModuleFunctionArg args); + +#define InvokeFunction(INST, MODULE, FUNC, ARG) \ + ((MODULE##_##FUNC##_RETURNTYPE) InvokeModuleFunctionWithName(INST, MODULE##_NAME, MODULE##_##FUNC, ARG)) + +#define AddFunction(ADDON, Realname) \ + do { \ + void *temp = Realname; \ + utarray_push_back(&ADDON->functionList, &temp); \ + } while(0) + +#ifdef __cplusplus +} +#endif + +#endif +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/lib/fcitx/profile.c fcitx-4.1.1/src/lib/fcitx/profile.c --- fcitx-4.0.1/src/lib/fcitx/profile.c 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/lib/fcitx/profile.c 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,84 @@ +/*************************************************************************** + * Copyright (C) 2010~2010 by CSSlayer * + * wengxt@gmail.com * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +#include +#include + +#include "fcitx.h" +#include "fcitx-utils/log.h" +#include "profile.h" +#include "fcitx-config/xdg.h" + +static ConfigFileDesc* GetProfileDesc(); + +CONFIG_BINDING_BEGIN(FcitxProfile) +CONFIG_BINDING_REGISTER("Profile", "FullWidth", bUseFullWidthChar) +CONFIG_BINDING_REGISTER("Profile", "UseRemind", bUseRemind) +CONFIG_BINDING_REGISTER("Profile", "IMIndex", iIMIndex) +CONFIG_BINDING_REGISTER("Profile", "WidePunc", bUseWidePunc) +CONFIG_BINDING_REGISTER("Profile", "PreeditStringInClientWindow", bUsePreedit) +CONFIG_BINDING_END() + +/** + * @brief 加载配置文件 + */ +FCITX_EXPORT_API +boolean LoadProfile(FcitxProfile* profile) +{ + ConfigFileDesc* profileDesc = GetProfileDesc(); + if (!profileDesc) + return false; + + FILE *fp; + fp = GetXDGFileUserWithPrefix("", "profile", "rt", NULL); + if (!fp) { + if (errno == ENOENT) + SaveProfile(profile); + } + + ConfigFile *cfile = ParseConfigFileFp(fp, profileDesc); + + FcitxProfileConfigBind(profile, cfile, profileDesc); + ConfigBindSync(&profile->gconfig); + + if (fp) + fclose(fp); + + return true; +} + +CONFIG_DESC_DEFINE(GetProfileDesc, "profile.desc") + +FCITX_EXPORT_API +void SaveProfile(FcitxProfile* profile) +{ + ConfigFileDesc* profileDesc = GetProfileDesc(); + FILE* fp = GetXDGFileUserWithPrefix("", "profile", "wt", NULL); + SaveConfigFileFp(fp, &profile->gconfig, profileDesc); + if (fp) + fclose(fp); +} + +FCITX_EXPORT_API +boolean UseRemind(FcitxProfile* profile) +{ + return profile->bUseRemind; +} +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/lib/fcitx/profile.h fcitx-4.1.1/src/lib/fcitx/profile.h --- fcitx-4.0.1/src/lib/fcitx/profile.h 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/lib/fcitx/profile.h 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,96 @@ +/*************************************************************************** + * Copyright (C) 2010~2010 by CSSlayer * + * wengxt@gmail.com * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +#ifndef _FCITX_PROFILE_H_ +#define _FCITX_PROFILE_H_ + +#include + +#ifdef __cplusplus +extern "C" { +#endif + + /** + * @file profile.h + * + * @brief define and function for ~/.config/fcitx/profile + */ + + /** + * @brief struct for ~/.config/fcitx/profile + **/ + typedef struct _FcitxProfile + { + /** + * @brief derives from GenericConfig + **/ + GenericConfig gconfig; + /** + * @brief use remind mode + **/ + boolean bUseRemind; + /** + * @brief current im index + **/ + int iIMIndex; + /** + * @brief use full width punc + **/ + boolean bUseWidePunc; + /** + * @brief use full width char + **/ + boolean bUseFullWidthChar; + + /** + * @brief show preedit string in client or not + **/ + boolean bUsePreedit; + } FcitxProfile; + + /** + * @brief load profile + * + * @param profile profile instance + * @return boolean loading successful + **/ + boolean LoadProfile(FcitxProfile* profile); + /** + * @brief save profile + * + * @param profile profile instance + * @return void + **/ + void SaveProfile(FcitxProfile* profile); + /** + * @brief get bUseRemind + * + * @param profile profile instance + * @return boolean bUseRemind + **/ + boolean UseRemind(FcitxProfile* profile); + +#ifdef __cplusplus +} +#endif + +#endif + +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/lib/fcitx/ui.c fcitx-4.1.1/src/lib/fcitx/ui.c --- fcitx-4.0.1/src/lib/fcitx/ui.c 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/lib/fcitx/ui.c 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,673 @@ +/*************************************************************************** + * Copyright (C) 2010~2010 by CSSlayer * + * wengxt@gmail.com * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +#include +#include +#include + +#include "ui.h" +#include "addon.h" +#include "fcitx-utils/utarray.h" +#include "fcitx-config/xdg.h" +#include "fcitx-utils/log.h" +#include +#include "fcitx-utils/utils.h" +#include "instance.h" +#include "hook-internal.h" +#include "ime-internal.h" +#include "candidate.h" +#include "frontend.h" + +/** + * @file ui.c + * + * @brief user interface related function. + */ + +/** + * @brief a single string message + **/ + +struct _MESSAGE +{ + /** + * @brief The string of the message + **/ + char strMsg[MESSAGE_MAX_LENGTH + 1]; + /** + * @brief the type of the message + **/ + MSG_TYPE type; +} ; + +/** + * @brief Messages to display on the input bar, this cannot be accessed directly + **/ + +struct _Messages +{ + /** + * @brief array of message strings + **/ + MESSAGE msg[MAX_MESSAGE_COUNT]; + /** + * @brief number of message strings + **/ + uint msgCount; + /** + * @brief the messages is updated or not + **/ + boolean changed; +}; + +#define UI_FUNC_IS_VALID(funcname) (!(GetCurrentCapacity(instance) & CAPACITY_CLIENT_SIDE_UI) && instance->ui && instance->ui->ui->funcname) + +static void ShowInputWindow(FcitxInstance* instance); + +FCITX_EXPORT_API +Messages* InitMessages() +{ + return fcitx_malloc0(sizeof(Messages)); +} + +FCITX_EXPORT_API +void SetMessageCount(Messages* m, int s) +{ + if ((s) <= MAX_MESSAGE_COUNT && s >= 0) + ((m)->msgCount = (s)); + + (m)->changed = true; +} + +FCITX_EXPORT_API +int GetMessageCount(Messages* m) +{ + return m->msgCount; +} + +FCITX_EXPORT_API +boolean IsMessageChanged(Messages* m) +{ + return m->changed; +} + +FCITX_EXPORT_API +char* GetMessageString(Messages* m, int index) +{ + return m->msg[index].strMsg; +} + +FCITX_EXPORT_API +MSG_TYPE GetMessageType(Messages* m, int index) +{ + return m->msg[index].type; +} + +FCITX_EXPORT_API +void SetMessageChanged(Messages* m, boolean changed) +{ + m->changed = changed; +} + +FCITX_EXPORT_API +void LoadUserInterface(FcitxInstance* instance) +{ + UT_array* addons = &instance->addons; + FcitxAddon *addon; + + for (addon = (FcitxAddon *) utarray_front(addons); + addon != NULL; + addon = (FcitxAddon *) utarray_next(addons, addon)) + { + if (addon->bEnabled && addon->category == AC_UI) + { + char *modulePath; + + switch (addon->type) + { + + case AT_SHAREDLIBRARY: + { + FILE *fp = GetLibFile(addon->library, "r", &modulePath); + void *handle; + + if (!fp) + break; + + fclose(fp); + + handle = dlopen(modulePath, RTLD_LAZY | RTLD_GLOBAL); + + if (!handle) + { + FcitxLog(ERROR, _("UI: open %s fail %s") , modulePath , dlerror()); + break; + } + + addon->ui = dlsym(handle, "ui"); + + if (!addon->ui || !addon->ui->Create) + { + FcitxLog(ERROR, _("UI: bad ui")); + dlclose(handle); + break; + } + + if ((addon->addonInstance = addon->ui->Create(instance)) == NULL) + { + dlclose(handle); + return; + } + + /* some may register before ui load, so load it here */ + if (addon->ui->RegisterStatus) + { + UT_array* uistats = &instance->uistats; + FcitxUIStatus *status; + + for (status = (FcitxUIStatus *) utarray_front(uistats); + status != NULL; + status = (FcitxUIStatus *) utarray_next(uistats, status)) + addon->ui->RegisterStatus(addon->addonInstance, status); + } + + if (addon->ui->RegisterMenu) + { + UT_array* uimenus = &instance->uimenus; + FcitxUIMenu **menupp; + + for (menupp = (FcitxUIMenu **) utarray_front(uimenus); + menupp != NULL; + menupp = (FcitxUIMenu **) utarray_next(uimenus, menupp)) + addon->ui->RegisterMenu(addon->addonInstance, *menupp); + } + + instance->ui = addon; + } + + break; + + default: + break; + } + + free(modulePath); + + if (instance->ui != NULL) + break; + } + } + + if (instance->ui == NULL) + FcitxLog(ERROR, "no usable user interface."); +} + +FCITX_EXPORT_API +void AddMessageAtLast(Messages* message, MSG_TYPE type, const char *fmt, ...) +{ + + if (message->msgCount < MAX_MESSAGE_COUNT) + { + va_list ap; + va_start(ap, fmt); + SetMessageV(message, message->msgCount, type, fmt, ap); + va_end(ap); + message->msgCount ++; + message->changed = true; + } +} + +FCITX_EXPORT_API +void SetMessage(Messages* message, int position, MSG_TYPE type, const char* fmt, ...) +{ + va_list ap; + va_start(ap, fmt); + SetMessageV(message, position, type, fmt, ap); + va_end(ap); +} + +FCITX_EXPORT_API +void SetMessageText(Messages* message, int position, const char* fmt, ...) +{ + va_list ap; + va_start(ap, fmt); + SetMessageV(message, position, message->msg[position].type, fmt, ap); + va_end(ap); +} + +FCITX_EXPORT_API +void SetMessageV(Messages* message, int position, MSG_TYPE type, const char* fmt, va_list ap) +{ + if (position < MAX_MESSAGE_COUNT) + { + vsnprintf(message->msg[position].strMsg, MESSAGE_MAX_LENGTH, fmt, ap); + message->msg[position].type = type; + message->changed = true; + } +} + +FCITX_EXPORT_API +void MessageConcatLast(Messages* message, const char* text) +{ + strncat(message->msg[message->msgCount - 1].strMsg, text, MESSAGE_MAX_LENGTH); + message->changed = true; +} + +FCITX_EXPORT_API +void MessageConcat(Messages* message, int position, const char* text) +{ + strncat(message->msg[position].strMsg, text, MESSAGE_MAX_LENGTH); + message->changed = true; +} + +FCITX_EXPORT_API +void CloseInputWindow(FcitxInstance* instance) +{ + CleanInputWindow(instance); + FcitxInputContext* ic = GetCurrentIC(instance); + if (ic) + { + if (ic->contextCaps & CAPACITY_CLIENT_SIDE_UI) + UpdateClientSideUI(instance, ic); + + if (ic->contextCaps & CAPACITY_PREEDIT) + UpdatePreedit(instance, GetCurrentIC(instance)); + } + + if (UI_FUNC_IS_VALID(CloseInputWindow )) + instance->ui->ui->CloseInputWindow(instance->ui->addonInstance); +} + +FCITX_EXPORT_API +void UpdateInputWindow(FcitxInstance *instance) +{ + instance->uiflag |= UI_UPDATE; + + if (IsMessageChanged(instance->input.msgPreedit)) + UpdatePreedit(instance, GetCurrentIC(instance)); +} + +void ShowInputWindow(FcitxInstance* instance) +{ + if (UI_FUNC_IS_VALID(ShowInputWindow)) + instance->ui->ui->ShowInputWindow(instance->ui->addonInstance); +} + +FCITX_EXPORT_API +void MoveInputWindow(FcitxInstance* instance) +{ + instance->uiflag |= UI_MOVE; +} + +FCITX_EXPORT_API +FcitxUIStatus *GetUIStatus(FcitxInstance* instance, const char* name) +{ + UT_array* uistats = &instance->uistats; + FcitxUIStatus *status; + + for (status = (FcitxUIStatus *) utarray_front(uistats); + status != NULL; + status = (FcitxUIStatus *) utarray_next(uistats, status)) + if (strcmp(status->name, name) == 0) + break; + + return status; +} + +FCITX_EXPORT_API +void UpdateStatus(FcitxInstance* instance, const char* name) +{ + FcitxLog(DEBUG, "Update Status for %s", name); + + FcitxUIStatus *status = GetUIStatus(instance, name); + + if (status != NULL) + { + status->toggleStatus(status->arg); + + if (UI_FUNC_IS_VALID(UpdateStatus)) + instance->ui->ui->UpdateStatus(instance->ui->addonInstance , status); + } +} + +FCITX_EXPORT_API +void RegisterStatus(struct _FcitxInstance* instance, void* arg, const char* name, const char* shortDesc, const char* longDesc, void (*toggleStatus)(void *arg), boolean(*getStatus)(void *arg)) +{ + FcitxUIStatus status; + + if (strlen(name) > MAX_STATUS_NAME) + return; + + memset(&status, 0 , sizeof(FcitxUIStatus)); + + strncpy(status.name, name, MAX_STATUS_NAME); + + strncpy(status.shortDescription, shortDesc, MAX_STATUS_NAME); + + strncpy(status.longDescription, longDesc, MAX_STATUS_NAME); + + status.getCurrentStatus = getStatus; + + status.toggleStatus = toggleStatus; + + status.arg = arg; + + UT_array* uistats = &instance->uistats; + + utarray_push_back(uistats, &status); +} + +FCITX_EXPORT_API +void RegisterMenu(FcitxInstance* instance, FcitxUIMenu* menu) +{ + UT_array* uimenus = &instance->uimenus; + + if (!menu) + return ; + + menu->mark = -1; + + utarray_push_back(uimenus, &menu); +} + +FCITX_EXPORT_API +void AddMenuShell(FcitxUIMenu* menu, char* string, MenuShellType type, FcitxUIMenu* subMenu) +{ + MenuShell shell; + memset(&shell, 0, sizeof(MenuShell)); + + if (string) + { + if (strlen(string) > MAX_MENU_STRING_LENGTH) + return; + else + strncpy(shell.tipstr, string, MAX_MENU_STRING_LENGTH); + } + + shell.type = type; + + shell.isselect = false; + + if (type == MENUTYPE_SUBMENU) + shell.subMenu = subMenu; + + utarray_push_back(&menu->shell, &shell); +} + +FCITX_EXPORT_API +void ClearMenuShell(FcitxUIMenu* menu) +{ + utarray_clear(&menu->shell); +} + +FCITX_EXPORT_API +void OnInputFocus(FcitxInstance* instance) +{ + if (UI_FUNC_IS_VALID(OnInputFocus)) + instance->ui->ui->OnInputFocus(instance->ui->addonInstance); + + InputFocusHook(instance); + + ResetInput(instance); + + CloseInputWindow(instance); +} + +FCITX_EXPORT_API +void OnInputUnFocus(struct _FcitxInstance* instance) +{ + if (UI_FUNC_IS_VALID(OnInputUnFocus)) + instance->ui->ui->OnInputUnFocus(instance->ui->addonInstance); + + InputUnFocusHook(instance); +} + +FCITX_EXPORT_API +void OnTriggerOn(FcitxInstance* instance) +{ + if (UI_FUNC_IS_VALID(OnTriggerOn)) + instance->ui->ui->OnTriggerOn(instance->ui->addonInstance); + + TriggerOnHook(instance); + + ShowInputSpeed(instance); +} + +FCITX_EXPORT_API +void DisplayMessage(FcitxInstance *instance, char *title, char **msg, int length) +{ + if (UI_FUNC_IS_VALID(DisplayMessage)) + instance->ui->ui->DisplayMessage(instance->ui->addonInstance, title, msg, length); +} + +FCITX_EXPORT_API +void OnTriggerOff(FcitxInstance* instance) +{ + if (UI_FUNC_IS_VALID(OnTriggerOff)) + instance->ui->ui->OnTriggerOff(instance->ui->addonInstance); + + TriggerOffHook(instance); +} + +FCITX_EXPORT_API +void UpdateMenuShell(FcitxUIMenu* menu) +{ + if (menu && menu->UpdateMenuShell) + { + menu->UpdateMenuShell(menu); + } +} + +/* + * 判断鼠标点击处是否处于指定的区域内 + */ +FCITX_EXPORT_API +boolean +IsInBox(int x0, int y0, int x1, int y1, int w, int h) +{ + if (x0 >= x1 && x0 <= x1 + w && y0 >= y1 && y0 <= y1 + h) + return true; + + return false; +} + +FCITX_EXPORT_API +boolean UISupportMainWindow(FcitxInstance* instance) +{ + if (UI_FUNC_IS_VALID(MainWindowSizeHint)) + return true; + else + return false; +} + +FCITX_EXPORT_API +void GetMainWindowSize(FcitxInstance* instance, int* x, int* y, int* w, int* h) +{ + if (UI_FUNC_IS_VALID(MainWindowSizeHint)) + instance->ui->ui->MainWindowSizeHint(instance->ui->addonInstance, x, y, w, h); +} + +FCITX_EXPORT_API +int NewMessageToOldStyleMessage(FcitxInstance* instance, Messages* msgUp, Messages* msgDown) +{ + int i = 0; + FcitxInputState* input = &instance->input; + int extraLength = input->iCursorPos; + SetMessageCount(msgUp, 0); + SetMessageCount(msgDown, 0); + + for (i = 0; i < GetMessageCount(input->msgAuxUp) ; i ++) + { + AddMessageAtLast(msgUp, GetMessageType(input->msgAuxUp, i), GetMessageString(input->msgAuxUp, i)); + extraLength += strlen(GetMessageString(input->msgAuxUp, i)); + } + + for (i = 0; i < GetMessageCount(input->msgPreedit) ; i ++) + AddMessageAtLast(msgUp, GetMessageType(input->msgPreedit, i), GetMessageString(input->msgPreedit, i)); + + for (i = 0; i < GetMessageCount(input->msgAuxDown) ; i ++) + AddMessageAtLast(msgDown, GetMessageType(input->msgAuxDown, i), GetMessageString(input->msgAuxDown, i)); + + CandidateWord* candWord = NULL; + + for (candWord = CandidateWordGetCurrentWindow(input->candList), i = 0; + candWord != NULL; + candWord = CandidateWordGetCurrentWindowNext(input->candList, candWord), i ++) + { + char strTemp[3] = { '\0', '\0', '\0' }; + strTemp[0] = CandidateWordGetChoose(input->candList)[i]; + + if (ConfigGetPointAfterNumber(instance->config)) + strTemp[1] = '.'; + + AddMessageAtLast(msgDown, MSG_INDEX, strTemp); + + MSG_TYPE type = MSG_OTHER; + + if (i == 0 && CandidateWordGetCurrentPage(input->candList) == 0) + type = MSG_FIRSTCAND; + + AddMessageAtLast(msgDown, type, candWord->strWord); + + if (candWord->strExtra && strlen(candWord->strExtra) != 0) + AddMessageAtLast(msgDown, MSG_CODE, candWord->strExtra); + + AddMessageAtLast(msgDown, MSG_OTHER, " "); + } + + return extraLength; +} + +FCITX_EXPORT_API +char* MessagesToCString(Messages* messages) +{ + int length = 0; + int i = 0; + + for (i = 0; i < GetMessageCount(messages) ; i ++) + length += strlen(GetMessageString(messages, i)); + + char* str = fcitx_malloc0(sizeof(char) * (length + 1)); + + for (i = 0; i < GetMessageCount(messages) ; i ++) + strcat(str, GetMessageString(messages, i)); + + return str; +} + +FCITX_EXPORT_API +char* CandidateWordToCString(FcitxInstance* instance) +{ + size_t len = 0; + int i; + FcitxInputState* input = &instance->input; + CandidateWord* candWord; + for (candWord = CandidateWordGetCurrentWindow(input->candList), i = 0; + candWord != NULL; + candWord = CandidateWordGetCurrentWindowNext(input->candList, candWord), i ++) + { + char strTemp[3] = { '\0', '\0', '\0' }; + strTemp[0] = CandidateWordGetChoose(input->candList)[i]; + + if (ConfigGetPointAfterNumber(instance->config)) + strTemp[1] = '.'; + + len += strlen(strTemp); + len += strlen(candWord->strWord); + + if (candWord->strExtra && strlen(candWord->strExtra) != 0) + len += strlen(candWord->strExtra); + + len ++; + } + + char *result = fcitx_malloc0(sizeof(char) * (len + 1)); + + for (candWord = CandidateWordGetCurrentWindow(input->candList), i = 0; + candWord != NULL; + candWord = CandidateWordGetCurrentWindowNext(input->candList, candWord), i ++) + { + char strTemp[3] = { '\0', '\0', '\0' }; + strTemp[0] = CandidateWordGetChoose(input->candList)[i]; + + if (ConfigGetPointAfterNumber(instance->config)) + strTemp[1] = '.'; + + strcat(result, strTemp); + strcat(result, candWord->strWord); + + if (candWord->strExtra && strlen(candWord->strExtra) != 0) + strcat(result, candWord->strExtra); + + strcat(result, " "); + } + + return result; +} + +void UpdateInputWindowReal(FcitxInstance *instance) +{ + FcitxInputState* input = &instance->input; + FcitxInputContext* ic = GetCurrentIC(instance); + CapacityFlags flags = CAPACITY_NONE; + if (ic != NULL) + flags = ic->contextCaps; + + if (flags & CAPACITY_CLIENT_SIDE_UI) + { + UpdateClientSideUI(instance, ic); + return; + } + + boolean toshow = false; + + if (GetMessageCount(input->msgAuxUp) != 0 + || GetMessageCount(input->msgAuxDown) != 0) + toshow = true; + + if (CandidateWordGetListSize(input->candList) > 1) + toshow = true; + + if (CandidateWordGetListSize(input->candList) == 1 + && (!instance->config->bHideInputWindowWhenOnlyPreeditString + || !instance->config->bHideInputWindowWhenOnlyOneCandidate)) + toshow = true; + + if (GetMessageCount(input->msgPreedit) != 0 + && !((flags & CAPACITY_PREEDIT ) && instance->config->bHideInputWindowWhenOnlyPreeditString && instance->profile->bUsePreedit)) + toshow = true; + + if (!toshow) + { + UpdatePreedit(instance, ic); + if (UI_FUNC_IS_VALID(CloseInputWindow)) + instance->ui->ui->CloseInputWindow(instance->ui->addonInstance); + } + else + ShowInputWindow(instance); +} + +void MoveInputWindowReal(FcitxInstance *instance) +{ + if (UI_FUNC_IS_VALID(MoveInputWindow)) + instance->ui->ui->MoveInputWindow(instance->ui->addonInstance); +} + +// kate: indent-mode cstyle; space-indent on; indent-width 4; diff -Nru fcitx-4.0.1/src/lib/fcitx/ui.h fcitx-4.1.1/src/lib/fcitx/ui.h --- fcitx-4.0.1/src/lib/fcitx/ui.h 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/lib/fcitx/ui.h 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,586 @@ +/*************************************************************************** + * Copyright (C) 2010~2010 by CSSlayer * + * wengxt@gmail.com * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +#ifndef _FCITX_UI_H_ +#define _FCITX_UI_H_ + +#include +#include +#include +#include + +#ifdef __cplusplus +extern "C" { +#endif + +#define INPUTWND_START_POS_DOWN 8 +#define MESSAGE_MAX_CHARNUM (150) //输入条上显示的最长字数 + +#define MESSAGE_MAX_LENGTH (MESSAGE_MAX_CHARNUM*UTF8_MAX_LENGTH) //输入条上显示的最长长度,以字符计 + + /* 将输入条上显示的内容分为以下几类 */ +#define MESSAGE_TYPE_COUNT 7 + + typedef enum _FcitxUIFlag { + UI_NONE = 0, + UI_MOVE = (1 << 1), + UI_UPDATE = (1 << 2), + } FcitxUIFlag; + + struct _FcitxInstance; + typedef enum _MSG_TYPE { + MSG_TIPS = 0, //提示文本 + MSG_INPUT = 1, //用户的输入 + MSG_INDEX = 2, //候选字前面的序号 + MSG_FIRSTCAND = 3, //第一个候选字 + MSG_USERPHR = 4, //用户词组 + MSG_CODE = 5, //显示的编码 + MSG_OTHER = 6, //其它文本 + } MSG_TYPE; + +#define MAX_MESSAGE_COUNT 64 + typedef struct _MESSAGE MESSAGE; + typedef struct _Messages Messages; + +#define MESSAGE_IS_NOT_EMPTY (messageUp.msgCount || messageDown.msgCount) +#define MESSAGE_IS_EMPTY (!MESSAGE_IS_NOT_EMPTY) +#define MESSAGE_TYPE_IS(msg, t) ((msg).type == (t)) +#define LAST_MESSAGE(m) ((m).msg[(m).msgCount - 1]) +#define DecMessageCount(m) \ + do { \ + if ((m)->msgCount > 0) \ + ((m)->msgCount--); \ + (m)->changed = True; \ + } while(0) + +#define MAX_STATUS_NAME 32 +#define MAX_MENU_STRING_LENGTH 32 +#define MAX_STATUS_SDESC 32 +#define MAX_STATUS_LDESC 32 + + /** + * @brief Fcitx Status icon to be displayed on the UI + **/ + typedef struct _FcitxUIStatus { + /** + * @brief status name, will not displayed on the UI. + **/ + char name[MAX_STATUS_NAME + 1]; + /** + * @brief short desription for this status, can be displayed on the UI + **/ + char shortDescription[MAX_STATUS_SDESC + 1]; + /** + * @brief long description for this status, can be displayed on the UI + **/ + char longDescription[MAX_STATUS_LDESC + 1]; + /** + * @brief toogle function + **/ + void (*toggleStatus)(void *arg); + /** + * @brief get current value function + **/ + boolean (*getCurrentStatus)(void *arg); + /** + * @brief private data for the UI implementation + **/ + void *priv; + /** + * @brief extra argument for tooglefunction + **/ + void* arg; + } FcitxUIStatus; + + typedef enum _MenuState + { + MENU_ACTIVE = 0, + MENU_INACTIVE = 1 + } MenuState; + + typedef enum _MenuShellType + { + MENUTYPE_SIMPLE, + MENUTYPE_SUBMENU, + MENUTYPE_DIVLINE + } MenuShellType; + + struct _FcitxUIMenu; + + /** + * @brief a menu entry in a menu. + **/ + typedef struct _MenuShell + { + /** + * @brief The displayed string + **/ + char tipstr[MAX_MENU_STRING_LENGTH + 1]; + /** + * @brief Can be used by ui to mark it's selected or not. + **/ + int isselect; + /** + * @brief The type of menu shell + **/ + MenuShellType type; + /** + * @brief the submenu to this entry + **/ + struct _FcitxUIMenu *subMenu; + } MenuShell; + + typedef boolean (*MenuActionFunction)(struct _FcitxUIMenu *arg, int index); + typedef void (*UpdateMenuShellFunction)(struct _FcitxUIMenu *arg); + + /** + * @brief Fcitx Menu Component, a UI doesn't need to support it, + * This struct is used by other module to register a menu. + **/ + typedef struct _FcitxUIMenu { + /** + * @brief shell entries for this menu + **/ + UT_array shell; + /** + * @brief menu name, can be displayed on the ui + **/ + char name[MAX_MENU_STRING_LENGTH + 1]; + /** + * @brief you might want to bind the menu on a status icon, but this is only a hint, + * depends on the ui implementation + **/ + char candStatusBind[MAX_STATUS_NAME + 1]; + /** + * @brief update the menu content + **/ + UpdateMenuShellFunction UpdateMenuShell; + /** + * @brief function for process click on a menu entry + **/ + MenuActionFunction MenuAction; + /** + * @brief private data for this menu + **/ + void *priv; + /** + * @brief ui implementation private + **/ + void *uipriv; + /** + * @brief this is sub menu or not + **/ + boolean isSubMenu; + /** + * @brief mark of this menu + **/ + int mark; + } FcitxUIMenu; + + /** + * @brief user interface implementation + **/ + typedef struct _FcitxUI + { + /** + * @brief construct function for this ui + */ + void* (*Create)(struct _FcitxInstance*); + /** + * @brief close the input window + */ + void (*CloseInputWindow)(void *arg); + /** + * @brief show the input window + */ + void (*ShowInputWindow)(void *arg); + /** + * @brief move the input window + */ + void (*MoveInputWindow)(void *arg); + /** + * @brief action on update status + */ + void (*UpdateStatus)(void *arg, FcitxUIStatus* ); + /** + * @brief action on register status + */ + void (*RegisterStatus)(void *arg, FcitxUIStatus* ); + /** + * @brief action on register menu + */ + void (*RegisterMenu)(void *arg, FcitxUIMenu* ); + /** + * @brief action on focus + */ + void (*OnInputFocus)(void *arg); + /** + * @brief action on unfocus + */ + void (*OnInputUnFocus)(void *arg); + /** + * @brief action on trigger on + */ + void (*OnTriggerOn)(void *arg); + /** + * @brief action on trigger off + */ + void (*OnTriggerOff)(void *arg); + /** + * @brief display a message is ui support it + */ + void (*DisplayMessage)(void *arg, char *title, char **msg, int length); + /** + * @brief get the main window size if ui support it + */ + void (*MainWindowSizeHint)(void *arg, int* x, int* y, int* w, int* h); + /** + * @brief reload config + */ + void (*ReloadConfig)(void*); + } FcitxUI; + + /** + * @brief load user interface module + * + * @param instance fcitx instance + * @return void + **/ + void LoadUserInterface(struct _FcitxInstance* instance); + + /** + * @brief init messages + * + * @return Messages* + **/ + Messages* InitMessages(); + + /** + * @brief add a message string at last + * + * @param message message + * @param type message type + * @param fmt printf fmt + * @param ... + * @return void + **/ + void AddMessageAtLast(Messages* message, MSG_TYPE type, const char *fmt, ...); + + /** + * @brief set a message string at position + * + * @param message message + * @param position position + * @param type message type + * @param fmt printf fmt + * @param ... + * @return void + **/ + void SetMessage(Messages* message, int position, MSG_TYPE type, const char* fmt, ...); + /** + * @brief set only message string + * + * @param message message + * @param position position + * @param fmt printf format + * @param ... + * @return void + **/ + void SetMessageText(Messages* message, int position, const char* fmt, ...); + /** + * @brief concat a string to message string at position + * + * @param message message + * @param position position + * @param text string + * @return void + **/ + void MessageConcat(Messages* message, int position, const char* text); + /** + * @brief concat a string to message string at last + * + * @param message message + * @param text string + * @return void + **/ + void MessageConcatLast(Messages* message, const char* text); + /** + * @brief set message string vprintf version + * + * @param message message + * @param position position + * @param type message type + * @param fmt printf format + * @param ap arguments + * @return void + **/ + void SetMessageV(Messages* message, int position, MSG_TYPE type, const char* fmt, va_list ap); + /** + * @brief set message count + * + * @param m message + * @param s count + * @return void + **/ + void SetMessageCount(Messages* m, int s); + /** + * @brief get message count + * + * @param m message + * @return int + **/ + int GetMessageCount(Messages* m); + /** + * @brief get message string at index + * + * @param m message + * @param index index + * @return char* + **/ + char* GetMessageString(Messages* m, int index); + /** + * @brief get message type at index + * + * @param m message + * @param index index + * @return MSG_TYPE + **/ + MSG_TYPE GetMessageType(Messages* m, int index); + /** + * @brief check whether message is changed + * + * @param m message + * @return boolean + **/ + boolean IsMessageChanged(Messages* m); + /** + * @brief set message is changed or not + * + * @param m message + * @param changed changed or not + * @return void + **/ + void SetMessageChanged(Messages* m, boolean changed); + /** + * @brief add a new menu shell + * + * @param menu menu + * @param string menu text + * @param type menu type + * @param subMenu submenu pointer + * @return void + **/ + void AddMenuShell(FcitxUIMenu* menu, char* string, MenuShellType type, FcitxUIMenu* subMenu); + /** + * @brief clear all menu shell + * + * @param menu menu + * @return void + **/ + void ClearMenuShell(FcitxUIMenu* menu); + + /** + * @brief move input to cursor position + * + * @param instance fcitx instance + * @return void + **/ + void MoveInputWindow(struct _FcitxInstance* instance); + + /** + * @brief close input window + * + * @param instance fcitx instance + * @return void + **/ + void CloseInputWindow(struct _FcitxInstance* instance); + /** + * @brief toggle a user interface status + * + * @param instance fcitx instance + * @param name status name + * @return void + **/ + void UpdateStatus(struct _FcitxInstance* instance, const char* name); + /** + * @brief register a new ui status + * + * @param instance fcitx instance + * @param arg private data, pass to callback + * @param name name + * @param shortDesc short description + * @param longDesc long description + * @param toggleStatus callback for toggle status + * @param getStatus get current status + * @return void + **/ + void RegisterStatus(struct _FcitxInstance* instance, + void* arg, + const char* name, + const char* shortDesc, + const char* longDesc, + void (*toggleStatus)(void *arg), + boolean (*getStatus)(void *arg)); + /** + * @brief register a new menu + * + * @param instance fcitx instance + * @param menu menu + * @return void + **/ + void RegisterMenu(struct _FcitxInstance* instance, FcitxUIMenu* menu); + + /** + * @brief process focus in event + * + * @param instance fcitx instance + * @return void + **/ + void OnInputFocus(struct _FcitxInstance* instance); + + /** + * @brief process focus out event + * + * @param instance fcitx instance + * @return void + **/ + void OnInputUnFocus(struct _FcitxInstance* instance); + + /** + * @brief process trigger on event + * + * @param instance fcitx instance + * @return void + **/ + void OnTriggerOn(struct _FcitxInstance* instance); + + /** + * @brief process trigger off event + * + * @param instance fcitx instance + * @return void + **/ + void OnTriggerOff(struct _FcitxInstance* instance); + + /** + * @brief if user interface support, display a message window on the screen + * + * @param instance fcitx instance + * @param title window title + * @param msg message + * @param length length or message + * @return void + **/ + void DisplayMessage(struct _FcitxInstance *instance, char *title, char **msg, int length); + + /** + * @brief get status by status name + * + * @param instance fcitx instance + * @param name status name + * @return FcitxUIStatus* + **/ + FcitxUIStatus *GetUIStatus(struct _FcitxInstance* instance, const char* name); + + /** + * @brief update menu shell of a menu + * + * @param menu menu + * @return void + **/ + void UpdateMenuShell(FcitxUIMenu* menu); + + /** + * @brief check point is in rectangle or not + * + * @param x0 point x + * @param y0 point y + * @param x1 rectangle x + * @param y1 rectangle y + * @param w rectangle width + * @param h rectangle height + * @return boolean + **/ + boolean IsInBox(int x0, int y0, int x1, int y1, int w, int h); + + /** + * @brief check user interface support main window or not + * + * @param instance fcitx instance + * @return boolean + **/ + boolean UISupportMainWindow(struct _FcitxInstance* instance); + + /** + * @brief get main window geometry property if there is a main window + * + * @param instance fcitx instance + * @param x x + * @param y y + * @param w w + * @param h h + * @return void + **/ + void GetMainWindowSize(struct _FcitxInstance* instance, int* x, int* y, int* w, int* h); + + /** + * @brief convert new messages to old up and down style messages, return the new cursos pos + * + * @param instance fcitx instance + * @param msgUp messages up + * @param msgDown messages up + * @return int + **/ + int NewMessageToOldStyleMessage(struct _FcitxInstance* instance, Messages* msgUp, Messages* msgDown); + + /** + * @brief convert messages to pure c string + * + * @param messages messages + * @return char* + **/ + char* MessagesToCString(Messages* messages); + + /** + * @brief convert candidate words to a string which can direct displayed + * + * @param instance fcitx instance + * @return char* + **/ + + char* CandidateWordToCString(struct _FcitxInstance* instance); + + /** + * @brief mark input window should update + * + * @param instance fcitx instance + * @return void + **/ + void UpdateInputWindow(struct _FcitxInstance* instance); + + static const UT_icd menuICD = {sizeof(MenuShell), NULL, NULL, NULL}; + +#ifdef __cplusplus +} +#endif + +#endif + +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/lib/fcitx/ui-internal.h fcitx-4.1.1/src/lib/fcitx/ui-internal.h --- fcitx-4.0.1/src/lib/fcitx/ui-internal.h 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/lib/fcitx/ui-internal.h 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,45 @@ +/*************************************************************************** + * Copyright (C) 2011~2011 by CSSlayer * + * yuking_net@sohu.com * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ +/** + * @file ui-internal.h + * + * @brief Private Header for UI + * + */ + +#ifndef _FCITX_UI_INTERNAL_H_ +#define _FCITX_UI_INTERNAL_H_ + +/** + * @brief real input window updates, will trigger user interface module to redraw + * + * @param instance fcitx instance + * @return void + **/ +void UpdateInputWindowReal(FcitxInstance *instance); +/** + * @brief real move input window, will trigger user interface module to move + * + * @param instance fcitx instance + * @return void + **/ +void MoveInputWindowReal(FcitxInstance *instance); + +#endif \ No newline at end of file diff -Nru fcitx-4.0.1/src/lib/fcitx-config/CMakeLists.txt fcitx-4.1.1/src/lib/fcitx-config/CMakeLists.txt --- fcitx-4.0.1/src/lib/fcitx-config/CMakeLists.txt 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/lib/fcitx-config/CMakeLists.txt 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,41 @@ +set(FCITX_CONFIG_SOURCES + fcitx-config.c + hotkey.c + sprintf.c + xdg.c +) + +set(FCITX_CONFIG_HEADERS + fcitx-config.h + hotkey.h + xdg.h +) + +add_library(fcitx-config SHARED ${FCITX_CONFIG_SOURCES}) +target_link_libraries(fcitx-config fcitx-utils) +set_target_properties(fcitx-config + PROPERTIES VERSION 4.1.0 + SOVERSION 4.1 + COMPILE_FLAGS "-fvisibility=hidden" + LINK_FLAGS "-Wl,--no-undefined" +) + +configure_file(fcitx-config.pc.in ${CMAKE_CURRENT_BINARY_DIR}/fcitx-config.pc) + +install(TARGETS fcitx-config DESTINATION ${libdir}) +install(FILES ${CMAKE_CURRENT_BINARY_DIR}/fcitx-config.pc DESTINATION "${libdir}/pkgconfig") +install(FILES ${FCITX_CONFIG_HEADERS} DESTINATION "${includedir}/fcitx-config") + +if (ENABLE_STATIC) + +add_library(fcitx-config-static STATIC ${FCITX_CONFIG_SOURCES}) +set_target_properties(fcitx-config-static PROPERTIES + OUTPUT_NAME "fcitx-config" + PREFIX "lib" +) + +install(TARGETS fcitx-config-static + LIBRARY DESTINATION ${libdir} + ARCHIVE DESTINATION ${libdir} +) +endif (ENABLE_STATIC) diff -Nru fcitx-4.0.1/src/lib/fcitx-config/fcitx-config.c fcitx-4.1.1/src/lib/fcitx-config/fcitx-config.c --- fcitx-4.0.1/src/lib/fcitx-config/fcitx-config.c 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/lib/fcitx-config/fcitx-config.c 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,1401 @@ +/*************************************************************************** + * Copyright (C) 2010~2010 by CSSlayer * + * wengxt@gmail.com * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +/** + * @file fcitx-config.c + * @author CSSlayer wengxt@gmail.com + * @date 2010-04-30 + * + * @brief ini style config file + */ +#include +#include +#include +#include + +#include "fcitx/fcitx.h" +#include "fcitx-config.h" +#include "fcitx-utils/log.h" +#include "hotkey.h" +#include +#include + +/** + * @brief Config Option parse function + **/ +typedef ConfigSyncResult(*ConfigOptionFunc)(ConfigOption *, ConfigSync); + +static ConfigSyncResult ConfigOptionInteger(ConfigOption *option, ConfigSync sync); +static ConfigSyncResult ConfigOptionBoolean(ConfigOption *option, ConfigSync sync); +static ConfigSyncResult ConfigOptionEnum(ConfigOption *option, ConfigSync sync); +static ConfigSyncResult ConfigOptionColor(ConfigOption *option, ConfigSync sync); +static ConfigSyncResult ConfigOptionString(ConfigOption *option, ConfigSync sync); +static ConfigSyncResult ConfigOptionHotkey(ConfigOption *option, ConfigSync sync); +static ConfigSyncResult ConfigOptionChar(ConfigOption *option, ConfigSync sync); +static ConfigSyncResult ConfigOptionI18NString(ConfigOption *option, ConfigSync sync); + +/** + * @brief File type is basically a string, but can be a hint for config tool + */ +#define ConfigOptionFile ConfigOptionString + +/** + * @brief Font type is basically a string, but can be a hint for config tool + */ +#define ConfigOptionFont ConfigOptionString + +FCITX_EXPORT_API +ConfigFile *ParseConfigFile(char *filename, ConfigFileDesc* fileDesc) +{ + FILE* fp = fopen(filename, "r"); + + if (!fp) + return NULL; + + ConfigFile *cf = ParseConfigFileFp(fp, fileDesc); + + fclose(fp); + + return cf; +} + +FCITX_EXPORT_API +ConfigFile *ParseMultiConfigFile(char **filename, int len, ConfigFileDesc*fileDesc) +{ + FILE **fp = malloc(sizeof(FILE*) * len); + int i = 0; + + for (i = 0 ;i < len ; i++) + { + fp[i] = NULL; + fp[i] = fopen(filename[i], "r"); + } + + ConfigFile *cf = ParseMultiConfigFileFp(fp, len, fileDesc); + + for (i = 0 ;i < len ; i++) + if (fp[i]) + fclose(fp[i]); + + free(fp); + + return cf; +} + +FCITX_EXPORT_API +ConfigFile *ParseMultiConfigFileFp(FILE **fp, int len, ConfigFileDesc* fileDesc) +{ + ConfigFile* cfile = NULL; + int i = 0; + + for (i = 0 ; i < len ;i ++) + cfile = ParseIniFp(fp[i], cfile); + + /* create a empty one, CheckConfig will do other thing for us */ + if (cfile == NULL) + cfile = (ConfigFile*) fcitx_malloc0(sizeof(ConfigFile)); + + if (CheckConfig(cfile, fileDesc)) + { + return cfile; + } + + FreeConfigFile(cfile); + + return NULL; + +} + +FCITX_EXPORT_API +ConfigFile *ParseConfigFileFp(FILE *fp, ConfigFileDesc* fileDesc) +{ + ConfigFile *cfile = ParseIniFp(fp, NULL); + + /* create a empty one, CheckConfig will do other thing for us */ + + if (cfile == NULL) + cfile = (ConfigFile*) fcitx_malloc0(sizeof(ConfigFile)); + + if (CheckConfig(cfile, fileDesc)) + { + return cfile; + } + + FreeConfigFile(cfile); + + return NULL; +} + +FCITX_EXPORT_API +boolean CheckConfig(ConfigFile *cfile, ConfigFileDesc* cfdesc) +{ + if (!cfile) + return false; + + ConfigGroupDesc *cgdesc = NULL; + + for (cgdesc = cfdesc->groupsDesc; + cgdesc != NULL; + cgdesc = (ConfigGroupDesc*)cgdesc->hh.next) + { + ConfigOptionDesc *codesc = NULL; + ConfigGroup* group; + HASH_FIND_STR(cfile->groups, cgdesc->groupName, group); + + if (!group) + { + group = fcitx_malloc0(sizeof(ConfigGroup)); + group->groupName = strdup(cgdesc->groupName); + group->groupDesc = cgdesc; + group->options = NULL; + HASH_ADD_KEYPTR(hh, cfile->groups, group->groupName, strlen(group->groupName), group); + } + + for (codesc = cgdesc->optionsDesc; + codesc != NULL; + codesc = (ConfigOptionDesc*)codesc->hh.next) + { + ConfigOption *option; + HASH_FIND_STR(group->options, codesc->optionName, option); + + if (!option) + { + if (!codesc->rawDefaultValue) + { + FcitxLog(WARNING, "missing value: %s", codesc->optionName); + return false; + } + + option = fcitx_malloc0(sizeof(ConfigOption)); + + option->optionName = strdup(codesc->optionName); + option->rawValue = strdup(codesc->rawDefaultValue); + HASH_ADD_KEYPTR(hh, group->options, option->optionName, strlen(option->optionName), option); + } + + option->optionDesc = codesc; + } + } + + cfile->fileDesc = cfdesc; + + return true; +} + +/** + * @brief + * + * @param filename + * + * @return + */ +FCITX_EXPORT_API +ConfigFileDesc *ParseConfigFileDesc(char* filename) +{ + FILE* fp = fopen(filename, "r"); + + if (!fp) + return NULL; + + ConfigFileDesc *cfdesc = ParseConfigFileDescFp(fp); + + fclose(fp); + + return cfdesc; +} + +/** + * @brief + * + * @param fp + * + * @return + */ +FCITX_EXPORT_API +ConfigFileDesc *ParseConfigFileDescFp(FILE *fp) +{ + ConfigFile *cfile = ParseIniFp(fp, NULL); + + if (!cfile) + return NULL; + + ConfigFileDesc *cfdesc = fcitx_malloc0(sizeof(ConfigFileDesc)); + + ConfigGroup* group; + + for (group = cfile->groups; + group != NULL; + group = (ConfigGroup*)group->hh.next) + { + ConfigGroupDesc *cgdesc = NULL; + ConfigOption *options = group->options, *option = NULL; + + if (strcmp(group->groupName, "DescriptionFile") == 0) + { + HASH_FIND_STR(options, "LocaleDomain", option); + cfdesc->domain = strdup(option->rawValue); + continue; + } + + char * p = strchr(group->groupName, '/'); + + if (p == NULL) + continue; + + int groupNameLen = p - group->groupName; + + int optionNameLen = strlen(p + 1); + + if (groupNameLen == 0 || optionNameLen == 0) + continue; + + char *groupName = malloc(sizeof(char) * (groupNameLen + 1)); + + strncpy(groupName, group->groupName, groupNameLen); + + groupName[groupNameLen] = '\0'; + + char *optionName = strdup(p + 1); + + HASH_FIND_STR(cfdesc->groupsDesc, groupName, cgdesc); + + if (!cgdesc) + { + cgdesc = fcitx_malloc0(sizeof(ConfigGroupDesc)); + cgdesc->groupName = groupName; + cgdesc->optionsDesc = NULL; + HASH_ADD_KEYPTR(hh, cfdesc->groupsDesc, cgdesc->groupName, groupNameLen, cgdesc); + } + else + free(groupName); + + ConfigOptionDesc *codesc = fcitx_malloc0(sizeof(ConfigOptionDesc)); + + codesc->optionName = optionName; + + codesc->rawDefaultValue = NULL; + + HASH_ADD_KEYPTR(hh, cgdesc->optionsDesc, codesc->optionName, optionNameLen, codesc); + + HASH_FIND_STR(options, "Description", option); + + if (option) + codesc->desc = strdup(option->rawValue); + else + codesc->desc = strdup(""); + + /* Processing Type */ + HASH_FIND_STR(options, "Type", option); + + if (option) + { + if (!strcmp(option->rawValue, "Integer")) + codesc->type = T_Integer; + else if (!strcmp(option->rawValue, "Color")) + codesc->type = T_Color; + else if (!strcmp(option->rawValue, "Char")) + codesc->type = T_Char; + else if (!strcmp(option->rawValue, "String")) + codesc->type = T_String; + else if (!strcmp(option->rawValue, "I18NString")) + codesc->type = T_I18NString; + else if (!strcmp(option->rawValue, "Boolean")) + codesc->type = T_Boolean; + else if (!strcmp(option->rawValue, "File")) + codesc->type = T_File; + else if (!strcmp(option->rawValue, "Font")) + codesc->type = T_Font; + else if (!strcmp(option->rawValue, "Hotkey")) + codesc->type = T_Hotkey; + else if (!strcmp(option->rawValue, "Enum")) + { + ConfigOption *eoption; + codesc->type = T_Enum; + HASH_FIND_STR(options, "EnumCount", eoption); + boolean enumError = false; + int i = 0; + + if (eoption) + { + int ecount = atoi(eoption->rawValue); + + if (ecount > 0) + { + /* 10个选项基本足够了,以后有需求再添加 */ + if (ecount > 10) + ecount = 10; + + char *enumname = strdup("Enum0"); + + codesc->configEnum.enumDesc = malloc(sizeof(char*) * ecount); + + codesc->configEnum.enumCount = ecount; + + size_t nel = 0; + + for (i = 0; i < ecount; i++) + { + enumname[4] = '0' + i; + HASH_FIND_STR(options, enumname, eoption); + + if (eoption) + { + void* entry = lfind(eoption->rawValue, codesc->configEnum.enumDesc, &nel, sizeof(char*), (int (*)(const void *, const void *)) strcmp); + + if (entry) + { + FcitxLog(WARNING, _("Enum option duplicated.")); + } + + codesc->configEnum.enumDesc[i] = strdup(eoption->rawValue); + } + else + { + enumError = true; + free(enumname); + goto config_enum_final; + } + } + + free(enumname); + } + else + { + FcitxLog(WARNING, _("Enum option number must larger than 0")); + enumError = true; + goto config_enum_final; + } + } + + config_enum_final: + + if (enumError) + { + int j = 0; + + for (;j < i;i++) + free(codesc->configEnum.enumDesc[j]); + + FcitxLog(WARNING, _("Enum Option is invalid, take it as string")); + + codesc->type = T_String; + } + + } + else + { + FcitxLog(WARNING, _("Unknown type, take it as string: %s"), option->rawValue); + codesc->type = T_String; + } + } + else + { + FcitxLog(WARNING, _("Missing type, take it as string")); + codesc->type = T_String; + } + + /* processing default value */ + HASH_FIND_STR(options, "DefaultValue", option); + + if (option) + codesc->rawDefaultValue = strdup(option->rawValue); + } + + FreeConfigFile(cfile); + + return cfdesc; +} + +ConfigSyncResult ConfigOptionInteger(ConfigOption *option, ConfigSync sync) +{ + if (!option->value.integer) + return SyncNoBinding; + + switch (sync) + { + + case Raw2Value: + *option->value.integer = atoi(option->rawValue); + return SyncSuccess; + + case Value2Raw: + + if (option->rawValue) + free(option->rawValue); + + asprintf(&option->rawValue, "%d", *option->value.integer); + + return SyncSuccess; + } + + return SyncInvalid; +} + +ConfigSyncResult ConfigOptionBoolean(ConfigOption *option, ConfigSync sync) +{ + if (!option->value.boolvalue) + return SyncNoBinding; + + switch (sync) + { + + case Raw2Value: + + if (strcmp(option->rawValue, "True") == 0) + *option->value.boolvalue = true; + else + *option->value.boolvalue = false; + + return SyncSuccess; + + case Value2Raw: + if (option->rawValue) + free(option->rawValue); + + if (*option->value.boolvalue) + option->rawValue = strdup("True"); + else + option->rawValue = strdup("False"); + + return SyncSuccess; + } + + return SyncInvalid; +} + +ConfigSyncResult ConfigOptionEnum(ConfigOption *option, ConfigSync sync) +{ + if (!option->value.enumerate || !option->optionDesc) + return SyncNoBinding; + + ConfigOptionDesc *codesc = option->optionDesc; + + ConfigEnum* cenum = &codesc->configEnum; + + int i = 0; + + switch (sync) + { + + case Raw2Value: + + for (i = 0; i < cenum->enumCount; i++) + { + if (strcmp(cenum->enumDesc[i], option->rawValue) == 0) + { + *option->value.enumerate = i; + return SyncSuccess; + } + } + + return SyncInvalid; + + case Value2Raw: + + if (*option->value.enumerate < 0 || *option->value.enumerate >= cenum->enumCount) + return SyncInvalid; + + if (option->rawValue) + free(option->rawValue); + + option->rawValue = strdup(cenum->enumDesc[*option->value.enumerate]); + + return SyncSuccess; + } + + return SyncInvalid; +} + +ConfigSyncResult ConfigOptionColor(ConfigOption *option, ConfigSync sync) +{ + if (!option->value.color) + return SyncNoBinding; + + ConfigColor *color = option->value.color; + + int r = 0, g = 0, b = 0; + + switch (sync) + { + + case Raw2Value: + + if (sscanf(option->rawValue, "%d %d %d", &r, &g, &b) != 3) + return SyncInvalid; + + if (IsColorValid(r) && IsColorValid(g) && IsColorValid(b)) + { + color->r = r / 255.0; + color->g = g / 255.0; + color->b = b / 255.0; + return SyncSuccess; + } + + return SyncInvalid; + + case Value2Raw: + r = (int)(color->r * 255); + g = (int)(color->g * 255); + b = (int)(color->b * 255); + r = RoundColor(r); + g = RoundColor(g); + b = RoundColor(b); + + if (option->rawValue) + free(option->rawValue); + + option->rawValue = NULL; + + asprintf(&option->rawValue, "%d %d %d", r, g , b); + + return SyncSuccess; + } + + return SyncInvalid; + +} + +ConfigSyncResult ConfigOptionString(ConfigOption *option, ConfigSync sync) +{ + if (!option->value.string) + return SyncNoBinding; + + switch (sync) + { + + case Raw2Value: + + if (*option->value.string) + free(*option->value.string); + + *option->value.string = strdup(option->rawValue); + + return SyncSuccess; + + case Value2Raw: + if (option->rawValue) + free(option->rawValue); + + option->rawValue = strdup(*option->value.string); + + return SyncSuccess; + } + + return SyncInvalid; +} + +ConfigSyncResult ConfigOptionI18NString(ConfigOption *option, ConfigSync sync) +{ + if (!option->value.string) + return SyncNoBinding; + + switch (sync) + { + + case Raw2Value: + + if (*option->value.string) + free(*option->value.string); + + *option->value.string = strdup(ConfigOptionGetLocaleString(option)); + + return SyncSuccess; + + case Value2Raw: + /* read only */ + return SyncSuccess; + } + + return SyncInvalid; +} + +const char* ConfigOptionGetLocaleString(ConfigOption* option) +{ + char* locale = setlocale(LC_MESSAGES, NULL); + char buf[40]; + char *p; + size_t len; + + if ((p = strchr(locale, '.')) != NULL) + len = p - locale; + else + len = strlen(locale); + + if (len > sizeof(buf)) + return option->rawValue; + + strncpy(buf, locale, len); + + buf[len] = '\0'; + + ConfigOptionSubkey* subkey = NULL; + + HASH_FIND_STR(option->subkey, buf, subkey); + + if (subkey) + return subkey->rawValue; + else + return option->rawValue; +} + +ConfigSyncResult ConfigOptionChar(ConfigOption *option, ConfigSync sync) +{ + if (!option->value.chr) + return SyncNoBinding; + + switch (sync) + { + + case Raw2Value: + + if (strlen(option->rawValue) == 0) + *option->value.chr = '\0'; + else + *option->value.chr = option->rawValue[0]; + + return SyncSuccess; + + case Value2Raw: + if (option->rawValue) + free(option->rawValue); + + asprintf(&option->rawValue, "%c", *option->value.chr); + + return SyncSuccess; + } + + return SyncInvalid; +} + +ConfigSyncResult ConfigOptionHotkey(ConfigOption *option, ConfigSync sync) +{ + /* we assume all hotkey can have 2 candiate key */ + if (!option->value.hotkey) + return SyncNoBinding; + + switch (sync) + { + + case Raw2Value: + + if (option->value.hotkey[0].desc) + { + free(option->value.hotkey[0].desc); + option->value.hotkey[0].desc = NULL; + } + + if (option->value.hotkey[1].desc) + { + free(option->value.hotkey[1].desc); + option->value.hotkey[0].desc = NULL; + } + + SetHotKey(option->rawValue, option->value.hotkey); + + return SyncSuccess; + + case Value2Raw: + + if (option->rawValue) + free(option->rawValue); + + if (option->value.hotkey[1].desc) + asprintf(&option->rawValue, "%s %s", option->value.hotkey[0].desc, option->value.hotkey[1].desc); + else + if (option->value.hotkey[0].desc) + { + option->rawValue = strdup(option->value.hotkey[0].desc); + } + else + option->rawValue = strdup(""); + + return SyncSuccess; + } + + return SyncInvalid; +} + +FCITX_EXPORT_API +void FreeConfigFile(ConfigFile* cfile) +{ + if (!cfile) + return; + + ConfigGroup *groups = cfile->groups, *curGroup; + + while (groups) + { + curGroup = groups; + HASH_DEL(groups, curGroup); + FreeConfigGroup(curGroup); + } + + free(cfile); +} + +FCITX_EXPORT_API +void FreeConfigFileDesc(ConfigFileDesc* cfdesc) +{ + if (!cfdesc) + return; + + ConfigGroupDesc *cgdesc = cfdesc->groupsDesc, *curGroup; + + while (cgdesc) + { + curGroup = cgdesc; + HASH_DEL(cgdesc, curGroup); + FreeConfigGroupDesc(curGroup); + } + + if (cfdesc->domain) + free(cfdesc->domain); + free(cfdesc); +} + +FCITX_EXPORT_API +void FreeConfigGroup(ConfigGroup *group) +{ + ConfigOption *option = group->options, *curOption; + + while (option) + { + curOption = option; + HASH_DEL(option, curOption); + FreeConfigOption(curOption); + } + + free(group->groupName); + + free(group); +} + +FCITX_EXPORT_API +void FreeConfigGroupDesc(ConfigGroupDesc *cgdesc) +{ + ConfigOptionDesc *codesc = cgdesc->optionsDesc, *curOption; + + while (codesc) + { + curOption = codesc; + HASH_DEL(codesc, curOption); + FreeConfigOptionDesc(curOption); + } + + free(cgdesc->groupName); + + free(cgdesc); +} + +FCITX_EXPORT_API +void FreeConfigOption(ConfigOption *option) +{ + free(option->optionName); + + ConfigOptionSubkey* item = option->subkey; + while(item) + { + ConfigOptionSubkey* curitem = item; + HASH_DEL(item, curitem); + free(curitem->rawValue); + free(curitem->subkeyName); + free(curitem); + } + + if (option->rawValue) + free(option->rawValue); + + free(option); +} + +FCITX_EXPORT_API +void FreeConfigOptionDesc(ConfigOptionDesc *codesc) +{ + free(codesc->optionName); + + if (codesc->configEnum.enumCount > 0) + { + int i = 0; + + for (i = 0 ;i < codesc->configEnum.enumCount; i ++) + { + free(codesc->configEnum.enumDesc[i]); + } + + free(codesc->configEnum.enumDesc); + } + + if (codesc->rawDefaultValue) + free(codesc->rawDefaultValue); + + free(codesc->desc); + + free(codesc); +} + +FCITX_EXPORT_API +ConfigFile* ParseIni(char* filename, ConfigFile* reuse) +{ + FILE* fp = fopen(filename, "r"); + + if (!fp) + return NULL; + + ConfigFile *cf = ParseIniFp(fp, reuse); + + fclose(fp); + + return cf; +} + +FCITX_EXPORT_API +ConfigFile* ParseIniFp(FILE *fp, ConfigFile* reuse) +{ + char *line = NULL, *buf = NULL; + size_t len = 0; + int lineLen = 0; + ConfigFile* cfile; + + if (!fp) + { + if (reuse) + return reuse; + else + return NULL; + } + + if (reuse) + cfile = reuse; + else + cfile = fcitx_malloc0(sizeof(ConfigFile)); + + ConfigGroup* curGroup = NULL; + + int lineNo = 0; + + while (getline(&buf, &len, fp) != -1) + { + lineNo ++; + + if (line) + free(line); + + line = fcitx_trim(buf); + + lineLen = strlen(line); + + if (lineLen == 0 || line[0] == '#') + continue; + + if (line[0] == '[') + { + if (!(line[lineLen - 1] == ']' && lineLen != 2)) + { + FcitxLog(ERROR, _("Configure group name error: line %d"), lineNo); + return NULL; + } + + char *groupName; + + groupName = malloc(sizeof(char) * (lineLen - 2 + 1)); + strncpy(groupName, line + 1, lineLen - 2); + groupName[lineLen - 2] = '\0'; + HASH_FIND_STR(cfile->groups, groupName, curGroup); + + if (curGroup) + { + FcitxLog(DEBUG, _("Duplicate group name, merge with the previous: %s :line %d"), groupName, lineNo); + free(groupName); + continue; + } + + curGroup = fcitx_malloc0(sizeof(ConfigGroup)); + + curGroup->groupName = groupName; + curGroup->options = NULL; + curGroup->groupDesc = NULL; + HASH_ADD_KEYPTR(hh, cfile->groups, curGroup->groupName, strlen(curGroup->groupName), curGroup); + } + else + { + if (curGroup == NULL) + continue; + + char *value = strchr(line, '='); + + if (!value) + { + FcitxLog(WARNING, _("Invalid Entry: line %d missing '='"), lineNo); + goto next_line; + } + + if (line == value) + goto next_line; + + *value = '\0'; + + value ++; + + char *name = line; + + /* check subkey */ + char *subkeyname = NULL; + + if ((subkeyname = strchr(name, '[')) != NULL) + { + size_t namelen = strlen(name); + + if (name[namelen - 1] == ']') + { + /* there is a subkey */ + *subkeyname = '\0'; + subkeyname++; + name[namelen -1] = '\0'; + } + } + + ConfigOption *option; + + HASH_FIND_STR(curGroup->options, name, option); + + if (option) + { + if (subkeyname) + { + ConfigOptionSubkey* subkey = NULL; + HASH_FIND_STR(option->subkey, subkeyname, subkey); + + if (subkey) + { + free(subkey->rawValue); + subkey->rawValue = strdup(value); + } + else + { + subkey = fcitx_malloc0(sizeof(ConfigOptionSubkey)); + subkey->subkeyName = strdup(subkeyname); + subkey->rawValue = strdup(value); + HASH_ADD_KEYPTR(hh, option->subkey, subkey->subkeyName, strlen(subkey->subkeyName), subkey); + } + } + else + { + FcitxLog(DEBUG, _("Duplicate option, overwrite: line %d"), lineNo); + free(option->rawValue); + option->rawValue = strdup(value); + } + } + else + { + option = fcitx_malloc0(sizeof(ConfigOption)); + option->optionName = strdup(name); + option->rawValue = strdup(value); + HASH_ADD_KEYPTR(hh, curGroup->options, option->optionName, strlen(option->optionName), option); + + /* if the subkey is new, and no default key exists, so we can assign it to default value */ + + if (subkeyname) + { + ConfigOptionSubkey* subkey = NULL; + subkey = fcitx_malloc0(sizeof(ConfigOptionSubkey)); + subkey->subkeyName = strdup(subkeyname); + subkey->rawValue = strdup(value); + HASH_ADD_KEYPTR(hh, option->subkey, subkey->subkeyName, strlen(subkey->subkeyName), subkey); + } + } + } + + next_line: + + continue; + } + + if (line) + free(line); + + if (buf) + free(buf); + + return cfile; +} + +FCITX_EXPORT_API +boolean SaveConfigFile(char *filename, GenericConfig *cfile, ConfigFileDesc* cdesc) +{ + FILE* fp = fopen(filename, "w"); + + if (!fp) + return false; + + boolean result = SaveConfigFileFp(fp, cfile, cdesc); + + fclose(fp); + + return result; +} + +FCITX_EXPORT_API +void ConfigBindSync(GenericConfig* config) +{ + ConfigFile *cfile = config->configFile; + ConfigFileDesc *cdesc = NULL; + ConfigGroupDesc* groupdesc = NULL; + + if (!cfile) + return; + + cdesc = cfile->fileDesc; + + for (groupdesc = cdesc->groupsDesc; + groupdesc != NULL; + groupdesc = (ConfigGroupDesc*)groupdesc->hh.next) + { + ConfigOptionDesc *optiondesc; + ConfigGroup *group = NULL; + HASH_FIND_STR(cfile->groups, groupdesc->groupName, group); + + for (optiondesc = groupdesc->optionsDesc; + optiondesc != NULL; + optiondesc = (ConfigOptionDesc*)optiondesc->hh.next) + { + ConfigOption *option = NULL; + + if (group) + HASH_FIND_STR(group->options, optiondesc->optionName, option); + + ConfigSyncValue(config, group, option, Raw2Value); + } + } +} + +FCITX_EXPORT_API +void ConfigSyncValue(GenericConfig* config, ConfigGroup* group, ConfigOption *option, ConfigSync sync) +{ + ConfigOptionDesc *codesc = option->optionDesc; + + ConfigOptionFunc f = NULL; + + if (codesc == NULL) + return; + + if (sync == Value2Raw) + if (option->filter) + option->filter(config, group, option, option->value.untype, sync, option->filterArg); + + switch (codesc->type) + { + + case T_Integer: + f = ConfigOptionInteger; + break; + + case T_Color: + f = ConfigOptionColor; + break; + + case T_Boolean: + f = ConfigOptionBoolean; + break; + + case T_Enum: + f = ConfigOptionEnum; + break; + + case T_String: + f = ConfigOptionString; + break; + + case T_I18NString: + f = ConfigOptionI18NString; + break; + + case T_Hotkey: + f = ConfigOptionHotkey; + break; + + case T_File: + f = ConfigOptionFile; + break; + + case T_Font: + f = ConfigOptionFont; + break; + + case T_Char: + f = ConfigOptionChar; + break; + } + + ConfigSyncResult r = SyncNoBinding; + + if (f) + r = f(option, sync); + + if (r == SyncInvalid) + { + if (codesc->rawDefaultValue) + { + FcitxLog(WARNING, _("Option %s is Invalid, Use Default Value %s"), option->optionName, codesc->rawDefaultValue); + + if (option->rawValue) + free(option->rawValue); + + option->rawValue = strdup(codesc->rawDefaultValue); + + if (sync == Raw2Value) + f(option, sync); + } + else + { + FcitxLog(ERROR, _("Option %s is Invalid."), option->optionName); + } + } + + if (sync == Raw2Value) + if (option->filter) + option->filter(config, group, option, option->value.untype, sync, option->filterArg); +} + +FCITX_EXPORT_API +boolean SaveConfigFileFp(FILE* fp, GenericConfig *config, ConfigFileDesc* cdesc) +{ + if (!fp) + return false; + + ConfigFile* cfile = config->configFile; + + ConfigGroupDesc* groupdesc = NULL; + + for (groupdesc = cdesc->groupsDesc; + groupdesc != NULL; + groupdesc = (ConfigGroupDesc*)groupdesc->hh.next) + { + ConfigOptionDesc *optiondesc; + fprintf(fp, "[%s]\n", groupdesc->groupName); + + ConfigGroup *group = NULL; + + if (cfile) + HASH_FIND_STR(cfile->groups, groupdesc->groupName, group); + + for (optiondesc = groupdesc->optionsDesc; + optiondesc != NULL; + optiondesc = (ConfigOptionDesc*)optiondesc->hh.next) + { + ConfigOption *option = NULL; + + if (group) + HASH_FIND_STR(group->options, optiondesc->optionName, option); + + if (optiondesc->desc && strlen(optiondesc->desc) != 0) + fprintf(fp, "# %s\n", dgettext(cdesc->domain, optiondesc->desc)); + + if (!option) + { + if (optiondesc->rawDefaultValue) + fprintf(fp, "%s=%s\n", optiondesc->optionName, optiondesc->rawDefaultValue); + else + FcitxLog(FATAL, _("no default option for %s/%s"), groupdesc->groupName, optiondesc->optionName); + } + else + { + ConfigSyncValue(config, group, option, Value2Raw); + fprintf(fp, "%s=%s\n", option->optionName, option->rawValue); + ConfigOptionSubkey* subkey; + + for (subkey = option->subkey; + subkey != NULL; + subkey = subkey->hh.next) + { + fprintf(fp, "%s[%s]=%s\n", option->optionName, subkey->subkeyName, subkey->rawValue); + } + } + } + + fprintf(fp, "\n"); + } + + return true; +} + +FCITX_EXPORT_API +void ConfigBindValue(ConfigFile* cfile, const char *groupName, const char *optionName, void* var, SyncFilter filter, void *arg) +{ + ConfigGroup *group = NULL; + HASH_FIND_STR(cfile->groups, groupName, group); + + if (group) + { + ConfigOption *option = NULL; + HASH_FIND_STR(group->options, optionName, option); + + if (option) + { + ConfigOptionDesc* codesc = option->optionDesc; + option->filter = filter; + option->filterArg = arg; + + if (!codesc) + { + FcitxLog(WARNING, "Unknown Option: %s/%s", groupName, optionName); + return; + } + + switch (codesc->type) + { + + case T_Char: + option->value.chr = (char*) var; + break; + + case T_Integer: + option->value.integer = (int*) var; + break; + + case T_Color: + option->value.color = (ConfigColor*) var; + break; + + case T_Boolean: + option->value.boolvalue = (boolean*) var; + break; + + case T_Hotkey: + option->value.hotkey = (HOTKEYS*) var; + break; + + case T_Enum: + option->value.enumerate = (int*) var; + break; + + case T_I18NString: + + case T_String: + + case T_File: + + case T_Font: + option->value.string = (char**) var; + break; + } + } + } +} + +FCITX_EXPORT_API +ConfigValueType ConfigGetBindValue(GenericConfig *config, const char *groupName, const char* optionName) +{ + ConfigFile* cfile = config->configFile; + ConfigGroup *group = NULL; + ConfigValueType null; + memset(&null, 0, sizeof(ConfigValueType)); + HASH_FIND_STR(cfile->groups, groupName, group); + + if (group) + { + ConfigOption *option = NULL; + HASH_FIND_STR(group->options, optionName, option); + + if (option) + { + return option->value; + } + } + + return null; + +} + +FCITX_EXPORT_API +const ConfigOptionDesc* ConfigDescGetOptionDesc(ConfigFileDesc* cfdesc, const char* groupName, const char* optionName) +{ + ConfigGroupDesc* groupDesc; + HASH_FIND_STR(cfdesc->groupsDesc, groupName, groupDesc); + + if (groupDesc) + { + ConfigOptionDesc *optionDesc = NULL; + HASH_FIND_STR(groupDesc->optionsDesc, optionName, optionDesc); + + if (optionDesc) + { + return optionDesc; + } + } + + return NULL; +} + +FCITX_EXPORT_API +void ResetConfigToDefaultValue(GenericConfig* config) +{ + ConfigFile* cfile = config->configFile; + + if (!cfile) + return; + + ConfigFileDesc* cfdesc = cfile->fileDesc; + + if (!cfdesc) + return; + + ConfigGroupDesc *cgdesc = NULL; + + for (cgdesc = cfdesc->groupsDesc; + cgdesc != NULL; + cgdesc = (ConfigGroupDesc*)cgdesc->hh.next) + { + ConfigOptionDesc *codesc = NULL; + ConfigGroup* group; + HASH_FIND_STR(cfile->groups, cgdesc->groupName, group); + + if (!group) + { + /* should not happen */ + continue; + } + + for (codesc = cgdesc->optionsDesc; + codesc != NULL; + codesc = (ConfigOptionDesc*)codesc->hh.next) + { + ConfigOption *option; + HASH_FIND_STR(group->options, codesc->optionName, option); + + if (!option) + { + /* should not happen */ + continue; + } + + if (!codesc->rawDefaultValue) + { + /* ignore it, actually if it doesn't have a default value, the reset is meaning less */ + continue; + } + + if (option->rawValue) + free(option->rawValue); + + option->rawValue = strdup(codesc->rawDefaultValue); + } + } +} +// kate: indent-mode cstyle; space-indent on; indent-width 4; diff -Nru fcitx-4.0.1/src/lib/fcitx-config/fcitx-config.h fcitx-4.1.1/src/lib/fcitx-config/fcitx-config.h --- fcitx-4.0.1/src/lib/fcitx-config/fcitx-config.h 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/lib/fcitx-config/fcitx-config.h 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,592 @@ +/*************************************************************************** + * Copyright (C) 2010~2010 by CSSlayer * + * wengxt@gmail.com * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +/** + * @file fcitx-config.h + * @author CSSlayer wengxt@gmail.com + * @date 2010-04-30 + * + * @brief Fcitx configure file read-write + */ + +#ifndef _FCITX_FCITX_CONFIG_H_ +#define _FCITX_FCITX_CONFIG_H_ + +#include +#include +#include +#include + +struct _HOTKEYS; +/** + * @brief fcitx boolean + **/ +typedef int32_t boolean; +/** + * @brief fcitx true + */ +#define true (1) +/** + * @brief fcitx true + */ +#define false (0) + +#ifdef __cplusplus +extern "C" +{ +#endif + + /** + * @brief The Color type in config file + **/ + + typedef struct _ConfigColor + { + double r; + double g; + double b; + } ConfigColor; + + /** + * @brief config value type + **/ + typedef enum _ConfigType + { + T_Integer, + T_Color, + T_String, + T_Char, + T_Boolean, + T_Enum, + T_File, + T_Hotkey, + T_Font, + T_I18NString + } ConfigType; + + /** + * @brief The sync direction + **/ + typedef enum _ConfigSync + { + Raw2Value, + Value2Raw + } ConfigSync; + + /** + * @brief Sync result + **/ + typedef enum _ConfigSyncResult + { + SyncSuccess, + SyncNoBinding, + SyncInvalid + } ConfigSyncResult; + + /** + * @brief The value of config + **/ + typedef union _ConfigValueType + { + void *untype; + int *integer; + boolean *boolvalue; + + struct _HOTKEYS *hotkey; + ConfigColor *color; + int *enumerate; + char **string; + char *chr; + } ConfigValueType; + + typedef struct _ConfigGroup ConfigGroup; + + typedef struct _ConfigOption ConfigOption; + + typedef struct _ConfigFileDesc ConfigFileDesc; + + typedef struct _ConfigGroupDesc ConfigGroupDesc; + + typedef struct _ConfigOptionDesc ConfigOptionDesc; + + typedef struct _GenericConfig GenericConfig; + + typedef struct _ConfigOptionSubkey ConfigOptionSubkey; + + /** + * @brief sync filter function + **/ + typedef void (*SyncFilter)(GenericConfig* config, ConfigGroup *group, ConfigOption *option, void* value, ConfigSync sync, void* arg); + + /** + * @brief Enum value type description + **/ + + typedef struct _ConfigEnum + { + char **enumDesc; + int enumCount; + } ConfigEnum; + + /** + * @brief Config file contains multiple config groups, and the opposite config file description + **/ + + typedef struct _ConfigFile + { + ConfigFileDesc *fileDesc; + ConfigGroup* groups; + } ConfigFile; + + + /** + * @brief A generic config struct, config struct can derive from it. + * Like:
+ * struct TestConfig {
+ * GenericConfig gconfig;
+ * int own_value;
+ * }; + **/ + + struct _GenericConfig + { + /** + * @brief config file pointer + **/ + ConfigFile *configFile; + }; + + /** + * @brief Config Option Description, it describe a Key=Value entry in config file. + **/ + + struct _ConfigOptionDesc + { + char *optionName; + char *desc; + ConfigType type; + char *rawDefaultValue; + ConfigEnum configEnum; + + UT_hash_handle hh; + }; + + /** + * @brief Config Group Description, it describe a [Gruop] in config file + **/ + + struct _ConfigGroupDesc + { + /** + * @brief Group Name + **/ + char *groupName; + /** + * @brief Hash table for option description + **/ + ConfigOptionDesc *optionsDesc; + UT_hash_handle hh; + }; + + /** + * @brief Description of a config file + **/ + + struct _ConfigFileDesc + { + ConfigGroupDesc *groupsDesc; + char* domain; + }; + + /** + * @brief Config Option in config file, Key=Value entry + **/ + + struct _ConfigOption + { + char *optionName; + char *rawValue; + ConfigValueType value; + SyncFilter filter; + void *filterArg; + ConfigOptionDesc *optionDesc; + ConfigOptionSubkey *subkey; + UT_hash_handle hh; + } ; + + /** + * @brief Config Option subkey in config file, Key[Subkey]=Value entry + **/ + + struct _ConfigOptionSubkey + { + char *subkeyName; + char *rawValue; + UT_hash_handle hh; + }; + + /** + * @brief Config group in config file, [Group] Entry + **/ + + struct _ConfigGroup + { + /** + * @brief Group Name, unique in ConfigFile + **/ + char *groupName; + /** + * @brief Group Description + **/ + ConfigGroupDesc *groupDesc; + /** + * @brief Option store with a hash table + **/ + ConfigOption* options; + /** + * @brief UTHash handler + **/ + UT_hash_handle hh; + }; + + /** + * @brief declare the binding function + **/ +#define CONFIG_BINDING_DECLARE(config_type) \ + void config_type##ConfigBind(config_type* config, ConfigFile* cfile, ConfigFileDesc* cfdesc); + + /** + * @brief define the binding function + * each binding group for a config file will define a new function + * the structure is like:
+ * CONFIG_BINDING_BEGIN
+ * CONFIG_BINDING_REGISTER
+ * ....
+ * CONFIG_BINDING_REGISTER
+ * CONFIG_BINDING_END + **/ +#define CONFIG_BINDING_BEGIN(config_type) \ + void config_type##ConfigBind(config_type* config, ConfigFile* cfile, ConfigFileDesc* cfdesc) { \ + (void) cfdesc; \ + GenericConfig *gconfig = (GenericConfig*) config; \ + if (gconfig->configFile) { \ + FreeConfigFile(gconfig->configFile); \ + } \ + gconfig->configFile = cfile; + + /** + * @brief register a binding + **/ +#define CONFIG_BINDING_REGISTER(g, o, var) \ + do { \ + ConfigBindValue(cfile, g, o, &config->var, NULL, NULL); \ + } while(0); + + /** + * @brief register a binding with filter + **/ +#define CONFIG_BINDING_REGISTER_WITH_FILTER(g, o, var, filter_func) \ + do { \ + ConfigBindValue(cfile, g, o, &config->var, filter_func, NULL); \ + } while(0); + + /** + * @brief register a binding with filter and extra argument + **/ +#define CONFIG_BINDING_REGISTER_WITH_FILTER_ARG(g, o, var, filter_func, arg) \ + do { \ + ConfigBindValue(cfile, g, o, &config->var, filter_func, arg); \ + } while(0); + + /** + * @brief binding group end + **/ +#define CONFIG_BINDING_END() } + + /** + * @brief define a singleton function to load config file description + **/ +#define CONFIG_DESC_DEFINE(funcname, path) \ + ConfigFileDesc *funcname() \ + { \ + static ConfigFileDesc *configDesc = NULL; \ + if (!configDesc) \ + { \ + FILE *tmpfp; \ + tmpfp = GetXDGFileWithPrefix("configdesc", path, "r", NULL); \ + if (tmpfp == NULL) \ + { \ + FcitxLog(ERROR, _("Load Config Description File %s Erorr, Please Check your install."), path); \ + return NULL; \ + } \ + configDesc = ParseConfigFileDescFp(tmpfp); \ + fclose(tmpfp); \ + } \ + return configDesc; \ + } + + /** + * @brief check the rgb within 0 - 255 or not + **/ +#define IsColorValid(c) ((c) >=0 && (c) <= 255) + + /** + * @brief round the color within 0 - 255 + **/ +#define RoundColor(c) ((c)>=0?((c)<=255?c:255):0) + + /** + * @brief parse a config file with file name. + * even the file cannot be read, or with wrong format, + * it will try to return a usable ConfigFile (missing + * entry with defaul value). + * + * @param filename file name of a configfile + * @param cfdesc config file description + * @return ConfigFile* + **/ + ConfigFile *ParseConfigFile(char *filename, ConfigFileDesc* cfdesc); + + /** + * @brief parse multi config file, the main difference + * between ParseConfigFile is that it parse multiple file + * and the duplicate entry will be overwritten with the + * file behind the previous one. + * + * @see ParseConfigFile + * @param filename filenames + * @param len len of filenames + * @param cfdesc config file description + * @return ConfigFile* + **/ + ConfigFile *ParseMultiConfigFile(char **filename, int len, ConfigFileDesc* cfdesc); + + /** + * @brief same with ParseConfigFile, the input is FILE* + * + * @see ParseConfigFile + * @param fp file pointer + * @param fileDesc config file description + * @return ConfigFile* + **/ + ConfigFile *ParseConfigFileFp(FILE* fp, ConfigFileDesc* fileDesc); + + /** + * @brief same with ParseMultiConfigFileFp, the input is array of FILE* + * + * @see ParseMultiConfigFileFp + * @param fp array of file pointers + * @param len lenght of fp + * @param fileDesc config file description + * @return ConfigFile* + **/ + ConfigFile *ParseMultiConfigFileFp(FILE **fp, int len, ConfigFileDesc* fileDesc); + + /** + * @brief Check the raw ConfigFile and try to fill the default value + * + * @param configFile config file + * @param fileDesc config file description + * @return boolean + **/ + boolean CheckConfig(ConfigFile *configFile, ConfigFileDesc* fileDesc); + + /** + * @brief parse config file description from file + * + * @param filename filename + * @return ConfigFileDesc* + **/ + ConfigFileDesc *ParseConfigFileDesc(char* filename); + + /** + * @brief parse config file description from file pointer + * + * @see ParseConfigFileDesc + * @param fp file pointer + * @return ConfigFileDesc* + **/ + ConfigFileDesc *ParseConfigFileDescFp(FILE* fp); + + /** + * @brief internal raw file parse, it can merge the config to existing config file + * + * @param filename file + * @param reuse NULL or existing config file + * @return ConfigFile* + **/ + ConfigFile* ParseIni(char* filename, ConfigFile* reuse); + + /** + * @brief internal raw file parse, it can merge the config to existing config file + * + * @see ParseIni + * @param fp file pointer + * @param reuse NULL or existing config file + * @return ConfigFile* + **/ + ConfigFile* ParseIniFp(FILE* fp, ConfigFile* reuse); + + /** + * @brief free a config file + * + * @param cfile config file + * @return void + **/ + void FreeConfigFile(ConfigFile* cfile); + + /** + * @brief free a config file description + * + * @param cfdesc config file description + * @return void + **/ + void FreeConfigFileDesc(ConfigFileDesc* cfdesc); + + /** + * @brief free a config group + * + * @param group config group + * @return void + **/ + void FreeConfigGroup(ConfigGroup *group); + + /** + * @brief free a config group description + * + * @param cgdesc config group description + * @return void + **/ + void FreeConfigGroupDesc(ConfigGroupDesc *cgdesc); + + /** + * @brief free a config option + * + * @param option config option + * @return void + **/ + void FreeConfigOption(ConfigOption *option); + + /** + * @brief free a config option description + * + * @param codesc config option description + * @return void + **/ + void FreeConfigOptionDesc(ConfigOptionDesc *codesc); + + /** + * @brief Save config file to fp, it will do the Value2Raw sync + * + * @param filename file name + * @param cfile config + * @param cdesc config file description + * @return boolean + **/ + boolean SaveConfigFile(char *filename, GenericConfig *cfile, ConfigFileDesc* cdesc); + + /** + * @brief Save config file to fp + * + * @see SaveConfigFile + * @param fp file pointer + * @param cfile config + * @param cdesc config file dsecription + * @return boolean + **/ + boolean SaveConfigFileFp(FILE* fp, GenericConfig *cfile, ConfigFileDesc* cdesc); + + /** + * @brief sync a single value + * + * @param config config + * @param group config group + * @param option config option + * @param sync sync direction + * @return Svoid + **/ + void ConfigSyncValue(GenericConfig* config, ConfigGroup* group, ConfigOption* option, ConfigSync sync); + + /** + * @brief Get the binded value type + * + * @param config config + * @param group group name + * @param option option name + * @return ConfigValueType + **/ + ConfigValueType ConfigGetBindValue(GenericConfig *config, const char *group, const char* option); + + /** + * @brief Get a option description from config file description, return NULL if not found. + * + * @param cfdesc config file description + * @param groupName gropu name + * @param optionName option name + * @return const ConfigOptionDesc* + **/ + const ConfigOptionDesc* ConfigDescGetOptionDesc(ConfigFileDesc* cfdesc, const char* groupName, const char* optionName); + + /** + * @brief Get the I18NString value from current locale + * + * @param option config option + * @return const char* + **/ + const char* ConfigOptionGetLocaleString(ConfigOption* option); + + /** + * @brief do the Raw2Value sync for config + * + * @param config config + * @return void + **/ + void ConfigBindSync(GenericConfig* config); + + /** + * @brief reset a config to default value + * + * @param config config + * @return Svoid + **/ + void ResetConfigToDefaultValue(GenericConfig* config); + + /** + * @brief bind a value with a struct, normally you should use + * CONFIG_BINDING_ series macro, not directly this function. + * + * @param cfile config file + * @param groupName group name + * @param optionName option name + * @param var pointer to value + * @param filter filter function + * @param arg extra argument + * @return void + **/ + void ConfigBindValue(ConfigFile* cfile, const char *groupName, const char *optionName, void* var, SyncFilter filter, void *arg); + +#ifdef __cplusplus +} + +#endif + +#endif + +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/lib/fcitx-config/fcitx-config.pc.in fcitx-4.1.1/src/lib/fcitx-config/fcitx-config.pc.in --- fcitx-4.0.1/src/lib/fcitx-config/fcitx-config.pc.in 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/lib/fcitx-config/fcitx-config.pc.in 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,11 @@ +prefix=@prefix@ +exec_prefix=@exec_prefix@ +libdir=@libdir@ +includedir=@includedir@ + +Name: fcitx-config +Description: Fcitx Config Library +Version: @version@ +Requires: fcitx-utils +Cflags: -I${includedir} +Libs: -L${libdir} -lfcitx-config diff -Nru fcitx-4.0.1/src/lib/fcitx-config/hotkey.c fcitx-4.1.1/src/lib/fcitx-config/hotkey.c --- fcitx-4.0.1/src/lib/fcitx-config/hotkey.c 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/lib/fcitx-config/hotkey.c 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,395 @@ +/*************************************************************************** + * Copyright (C) 2002~2005 by Yuking * + * yuking_net@sohu.com * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +#include +#include + +#include "fcitx/fcitx.h" +#include "hotkey.h" +#include "fcitx-utils/log.h" +#include "fcitx-utils/utils.h" + +/** + * @brief String to key list. + **/ + +typedef struct _KEY_LIST +{ + /** + * @brief string name for the key in fcitx + **/ + char *strKey; + /** + * @brief the keyval for the key. + **/ + FcitxKeySym code; +} KEY_LIST; + +/* fcitx key name translist */ +KEY_LIST keyList[] = +{ + {"TAB", Key_Tab}, + {"ENTER", Key_Return}, + {"LCTRL", Key_Control_L}, + {"LSHIFT", Key_Shift_L}, + {"LALT", Key_Alt_L}, + {"RCTRL", Key_Control_R}, + {"RSHIFT", Key_Shift_R}, + {"RALT", Key_Alt_R}, + {"INSERT", Key_Insert}, + {"HOME", Key_Home}, + {"PGUP", Key_Page_Up}, + {"END", Key_End}, + {"PGDN", Key_Page_Down}, + {"ESCAPE", Key_Escape}, + {"SPACE", Key_space}, + {"DELETE", Key_Delete}, + {"\0", 0} +}; + +static int GetKeyList(char *strKey); +static char *GetKeyListString(int key); + +FCITX_EXPORT_API +boolean IsHotKeyDigit(FcitxKeySym sym, int state) +{ + if (state) + return false; + + if (sym >= Key_0 && sym <= Key_9) + return true; + + return false; +} + +FCITX_EXPORT_API +boolean IsHotKeyUAZ(FcitxKeySym sym, int state) +{ + if (state) + return false; + + if (sym >= Key_A && sym <= Key_Z) + return true; + + return false; +} + +FCITX_EXPORT_API +boolean IsHotKeySimple(FcitxKeySym sym, int state) +{ + if (state) + return false; + + if (sym >= Key_space && sym <= Key_asciitilde) + return true; + + return false; +} + +FCITX_EXPORT_API +boolean IsHotKeyLAZ(FcitxKeySym sym, int state) +{ + if (state) + return false; + + if (sym >= Key_a && sym <= Key_z) + return true; + + return false; +} + +/* + * Do some custom process + */ +FCITX_EXPORT_API +void GetKey(FcitxKeySym keysym, unsigned int iKeyState, FcitxKeySym* outk, unsigned int* outs) +{ + if (iKeyState) + { + if (IsHotKeyLAZ(keysym, 0)) + keysym = keysym + Key_A - Key_a; + + if (iKeyState == KEY_SHIFT_COMP) + if ((IsHotKeySimple(keysym, 0) && keysym != Key_space) + || (keysym >= Key_KP_0 && keysym <= Key_KP_9) ) + iKeyState = KEY_NONE; + } + + *outk = keysym; + + *outs = iKeyState; +} + + +FCITX_EXPORT_API +char* GetKeyString(FcitxKeySym sym, unsigned int state) +{ + char *str; + size_t len = 0; + + if (state & KEY_CTRL_COMP) + len += strlen("CTRL_"); + + if (state & KEY_ALT_COMP) + len += strlen("ALT_"); + + if (state & KEY_SHIFT_COMP) + len += strlen("SHIFT_"); + + char *key = GetKeyListString(sym); + + if (!key) + return NULL; + + len += strlen(key); + + str = fcitx_malloc0(sizeof(char) * (len + 1)); + + if (state & KEY_CTRL_COMP) + strcat(str, "CTRL_"); + + if (state & KEY_ALT_COMP) + strcat(str, "ALT_"); + + if (state & KEY_SHIFT_COMP) + strcat(str, "SHIFT_"); + + strcat(str, key); + + free(key); + + return str; +} + +/* + * 根据字串来判断键 + * 主要用于从设置文件中读取热键设定 + * 返回-1表示用户设置的热键不支持,一般是因为拼写错误或该热键不在列表中 + */ +FCITX_EXPORT_API +boolean ParseKey(char *strKey, FcitxKeySym* sym, int* state) +{ + char *p; + int iKey; + int iKeyState = 0; + + p = strKey; + + if (strstr(p, "CTRL_")) + { + iKeyState |= KEY_CTRL_COMP; + p += strlen("CTRL_"); + } + + if (strstr(p, "ALT_")) + { + iKeyState |= KEY_ALT_COMP; + p += strlen("ALT_"); + } + + if (strstr(strKey, "SHIFT_")) + { + iKeyState |= KEY_SHIFT_COMP; + p += strlen("SHIFT_"); + } + + iKey = GetKeyList(p); + + if (iKey == -1) + return false; + + *sym = iKey; + + *state = iKeyState; + + return true; +} + +FCITX_EXPORT_API +int GetKeyList(char *strKey) +{ + int i; + + i = 0; + + for (;;) + { + if (!keyList[i].code) + break; + + if (!strcmp(strKey, keyList[i].strKey)) + return keyList[i].code; + + i++; + } + + if (strlen(strKey) == 1) + return strKey[0]; + + return -1; +} + +char *GetKeyListString(int key) +{ + if (key > Key_space && key <= Key_asciitilde) + { + char *p; + p = malloc(sizeof(char) * 2); + p[0] = key; + p[1] = '\0'; + return p; + } + + int i; + + i = 0; + + for (;;) + { + if (!keyList[i].code) + break; + + if (keyList[i].code == key) + return strdup(keyList[i].strKey); + + i++; + } + + return NULL; + +} + +FCITX_EXPORT_API +void SetHotKey(char *strKeys, HOTKEYS * hotkey) +{ + char *p; + char *strKey; + int i = 0, j = 0, k; + + strKeys = fcitx_trim(strKeys); + p = strKeys; + + for (k = 0; k < 2; k++) + { + FcitxKeySym sym; + int state; + i = 0; + + while (p[i] != ' ' && p[i] != '\0') + i++; + + strKey = strndup(p, i); + + strKey[i] = '\0'; + + if (ParseKey(strKey, &sym, &state)) + { + hotkey[j].sym = sym; + hotkey[j].state = state; + hotkey[j].desc = fcitx_trim(strKey); + j ++; + } + + free(strKey); + + if (p[i] == '\0') + break; + + p = &p[i + 1]; + } + + for (; j < 2; j++) + { + hotkey[j].sym = 0; + hotkey[j].state = 0; + hotkey[j].desc = NULL; + } + + free(strKeys); +} + +struct KeyPadTable { + FcitxKeySym keypad; + FcitxKeySym keymain; +}; + +static int key_table_cmp(const void* a, const void* b) +{ + const struct KeyPadTable* ka = a; + const struct KeyPadTable* kb = b; + return ka->keypad - kb->keypad; +} + +FCITX_EXPORT_API +FcitxKeySym KeyPadToMain(FcitxKeySym sym) +{ + static struct KeyPadTable keytable[] = + { + {Key_KP_Space, Key_space}, + {Key_KP_Tab, Key_Tab}, + {Key_KP_Enter, Key_Return}, + {Key_KP_F1, Key_F1}, + {Key_KP_F2, Key_F2}, + {Key_KP_F3, Key_F3}, + {Key_KP_F4, Key_F4}, + {Key_KP_Home, Key_Home}, + {Key_KP_Left, Key_Left}, + {Key_KP_Up, Key_Up}, + {Key_KP_Right, Key_Right}, + {Key_KP_Down, Key_Down}, + {Key_KP_Prior, Key_Prior}, + {Key_KP_Page_Up, Key_Page_Up}, + {Key_KP_Next, Key_Next}, + {Key_KP_Page_Down, Key_Page_Down}, + {Key_KP_End, Key_End}, + {Key_KP_Begin, Key_Begin}, + {Key_KP_Insert, Key_Insert}, + {Key_KP_Delete, Key_Delete}, + {Key_KP_Equal, Key_equal}, + {Key_KP_Multiply, Key_asterisk}, + {Key_KP_Add, Key_plus}, + {Key_KP_Separator, Key_comma}, + {Key_KP_Subtract, Key_minus}, + {Key_KP_Decimal, Key_period}, + {Key_KP_Divide, Key_slash}, + + {Key_KP_0, Key_0}, + {Key_KP_1, Key_1}, + {Key_KP_2, Key_2}, + {Key_KP_3, Key_3}, + {Key_KP_4, Key_4}, + {Key_KP_5, Key_5}, + {Key_KP_6, Key_6}, + {Key_KP_7, Key_7}, + {Key_KP_8, Key_8}, + {Key_KP_9, Key_9}, + }; + + struct KeyPadTable key = { sym, Key_None }; + + struct KeyPadTable *result = bsearch(&key, keytable, sizeof(keytable) / sizeof(struct KeyPadTable) , sizeof (struct KeyPadTable), key_table_cmp); + if (result == NULL) + return sym; + else + return result->keymain; +} + + +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/lib/fcitx-config/hotkey.h fcitx-4.1.1/src/lib/fcitx-config/hotkey.h --- fcitx-4.0.1/src/lib/fcitx-config/hotkey.h 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/lib/fcitx-config/hotkey.h 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,2544 @@ +/*************************************************************************** + * Copyright (C) 2002~2005 by Yuking * + * yuking_net@sohu.com * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ +/** + * @file hotkey.h + * @author Yuking yuking_net@sohu.com CS Slayer wengxt@gmail.com + * @date 2008-1-16 + * + * @brief hotkey related config and functions + * + */ + +#ifndef _FCITX_HOTKEY_H_ +#define _FCITX_HOTKEY_H_ + +#include + +#ifdef __cplusplus +extern "C" +{ +#endif + + + + /** + * @brief mainly come from X11/keysymdef.h + **/ + typedef enum _FcitxKeySym + { + Key_None = 0x0, + Key_VoidSymbol = 0xffffff, /* Void symbol */ + + + /* + * TTY function keys, cleverly chosen to map to ASCII, for convenience of + * programming, but could have been arbitrary (at the cost of lookup + * tables in client code). + */ + + Key_BackSpace = 0xff08, /* Back space, back char */ + Key_Tab = 0xff09, + Key_Linefeed = 0xff0a, /* Linefeed, LF */ + Key_Clear = 0xff0b, + Key_Return = 0xff0d, /* Return, enter */ + Key_Pause = 0xff13, /* Pause, hold */ + Key_Scroll_Lock = 0xff14, + Key_Sys_Req = 0xff15, + Key_Escape = 0xff1b, + Key_Delete = 0xffff, /* Delete, rubout */ + + + + /* International & multi-key character composition */ + + Key_Multi_key = 0xff20, /* Multi-key character compose */ + Key_Codeinput = 0xff37, + Key_SingleCandidate = 0xff3c, + Key_MultipleCandidate = 0xff3d, + Key_PreviousCandidate = 0xff3e, + + /* Japanese keyboard support */ + + Key_Kanji = 0xff21, /* Kanji, Kanji convert */ + Key_Muhenkan = 0xff22, /* Cancel Conversion */ + Key_Henkan_Mode = 0xff23, /* Start/Stop Conversion */ + Key_Henkan = 0xff23, /* Alias for Henkan_Mode */ + Key_Romaji = 0xff24, /* to Romaji */ + Key_Hiragana = 0xff25, /* to Hiragana */ + Key_Katakana = 0xff26, /* to Katakana */ + Key_Hiragana_Katakana = 0xff27, /* Hiragana/Katakana toggle */ + Key_Zenkaku = 0xff28, /* to Zenkaku */ + Key_Hankaku = 0xff29, /* to Hankaku */ + Key_Zenkaku_Hankaku = 0xff2a, /* Zenkaku/Hankaku toggle */ + Key_Touroku = 0xff2b, /* Add to Dictionary */ + Key_Massyo = 0xff2c, /* Delete from Dictionary */ + Key_Kana_Lock = 0xff2d, /* Kana Lock */ + Key_Kana_Shift = 0xff2e, /* Kana Shift */ + Key_Eisu_Shift = 0xff2f, /* Alphanumeric Shift */ + Key_Eisu_toggle = 0xff30, /* Alphanumeric toggle */ + Key_Kanji_Bangou = 0xff37, /* Codeinput */ + Key_Zen_Koho = 0xff3d, /* Multiple/All Candidate(s) */ + Key_Mae_Koho = 0xff3e, /* Previous Candidate */ + + /* = 0xff31, thru = 0xff3f, are under Key_KOREAN */ + + /* Cursor control & motion */ + + Key_Home = 0xff50, + Key_Left = 0xff51, /* Move left, left arrow */ + Key_Up = 0xff52, /* Move up, up arrow */ + Key_Right = 0xff53, /* Move right, right arrow */ + Key_Down = 0xff54, /* Move down, down arrow */ + Key_Prior = 0xff55, /* Prior, previous */ + Key_Page_Up = 0xff55, + Key_Next = 0xff56, /* Next */ + Key_Page_Down = 0xff56, + Key_End = 0xff57, /* EOL */ + Key_Begin = 0xff58, /* BOL */ + + + /* Misc functions */ + + Key_Select = 0xff60, /* Select, mark */ + Key_Print = 0xff61, + Key_Execute = 0xff62, /* Execute, run, do */ + Key_Insert = 0xff63, /* Insert, insert here */ + Key_Undo = 0xff65, + Key_Redo = 0xff66, /* Redo, again */ + Key_Menu = 0xff67, + Key_Find = 0xff68, /* Find, search */ + Key_Cancel = 0xff69, /* Cancel, stop, abort, exit */ + Key_Help = 0xff6a, /* Help */ + Key_Break = 0xff6b, + Key_Mode_switch = 0xff7e, /* Character set switch */ + Key_script_switch = 0xff7e, /* Alias for mode_switch */ + Key_Num_Lock = 0xff7f, + + /* Keypad functions, keypad numbers cleverly chosen to map to ASCII */ + + Key_KP_Space = 0xff80, /* Space */ + Key_KP_Tab = 0xff89, + Key_KP_Enter = 0xff8d, /* Enter */ + Key_KP_F1 = 0xff91, /* PF1, KP_A, ... */ + Key_KP_F2 = 0xff92, + Key_KP_F3 = 0xff93, + Key_KP_F4 = 0xff94, + Key_KP_Home = 0xff95, + Key_KP_Left = 0xff96, + Key_KP_Up = 0xff97, + Key_KP_Right = 0xff98, + Key_KP_Down = 0xff99, + Key_KP_Prior = 0xff9a, + Key_KP_Page_Up = 0xff9a, + Key_KP_Next = 0xff9b, + Key_KP_Page_Down = 0xff9b, + Key_KP_End = 0xff9c, + Key_KP_Begin = 0xff9d, + Key_KP_Insert = 0xff9e, + Key_KP_Delete = 0xff9f, + Key_KP_Equal = 0xffbd, /* Equals */ + Key_KP_Multiply = 0xffaa, + Key_KP_Add = 0xffab, + Key_KP_Separator = 0xffac, /* Separator, often comma */ + Key_KP_Subtract = 0xffad, + Key_KP_Decimal = 0xffae, + Key_KP_Divide = 0xffaf, + + Key_KP_0 = 0xffb0, + Key_KP_1 = 0xffb1, + Key_KP_2 = 0xffb2, + Key_KP_3 = 0xffb3, + Key_KP_4 = 0xffb4, + Key_KP_5 = 0xffb5, + Key_KP_6 = 0xffb6, + Key_KP_7 = 0xffb7, + Key_KP_8 = 0xffb8, + Key_KP_9 = 0xffb9, + + + + /* + * Auxiliary functions; note the duplicate definitions for left and right + * function keys; Sun keyboards and a few other manufacturers have such + * function key groups on the left and/or right sides of the keyboard. + * We've not found a keyboard with more than 35 function keys total. + */ + + Key_F1 = 0xffbe, + Key_F2 = 0xffbf, + Key_F3 = 0xffc0, + Key_F4 = 0xffc1, + Key_F5 = 0xffc2, + Key_F6 = 0xffc3, + Key_F7 = 0xffc4, + Key_F8 = 0xffc5, + Key_F9 = 0xffc6, + Key_F10 = 0xffc7, + Key_F11 = 0xffc8, + Key_L1 = 0xffc8, + Key_F12 = 0xffc9, + Key_L2 = 0xffc9, + Key_F13 = 0xffca, + Key_L3 = 0xffca, + Key_F14 = 0xffcb, + Key_L4 = 0xffcb, + Key_F15 = 0xffcc, + Key_L5 = 0xffcc, + Key_F16 = 0xffcd, + Key_L6 = 0xffcd, + Key_F17 = 0xffce, + Key_L7 = 0xffce, + Key_F18 = 0xffcf, + Key_L8 = 0xffcf, + Key_F19 = 0xffd0, + Key_L9 = 0xffd0, + Key_F20 = 0xffd1, + Key_L10 = 0xffd1, + Key_F21 = 0xffd2, + Key_R1 = 0xffd2, + Key_F22 = 0xffd3, + Key_R2 = 0xffd3, + Key_F23 = 0xffd4, + Key_R3 = 0xffd4, + Key_F24 = 0xffd5, + Key_R4 = 0xffd5, + Key_F25 = 0xffd6, + Key_R5 = 0xffd6, + Key_F26 = 0xffd7, + Key_R6 = 0xffd7, + Key_F27 = 0xffd8, + Key_R7 = 0xffd8, + Key_F28 = 0xffd9, + Key_R8 = 0xffd9, + Key_F29 = 0xffda, + Key_R9 = 0xffda, + Key_F30 = 0xffdb, + Key_R10 = 0xffdb, + Key_F31 = 0xffdc, + Key_R11 = 0xffdc, + Key_F32 = 0xffdd, + Key_R12 = 0xffdd, + Key_F33 = 0xffde, + Key_R13 = 0xffde, + Key_F34 = 0xffdf, + Key_R14 = 0xffdf, + Key_F35 = 0xffe0, + Key_R15 = 0xffe0, + + /* Modifiers */ + + Key_Shift_L = 0xffe1, /* Left shift */ + Key_Shift_R = 0xffe2, /* Right shift */ + Key_Control_L = 0xffe3, /* Left control */ + Key_Control_R = 0xffe4, /* Right control */ + Key_Caps_Lock = 0xffe5, /* Caps lock */ + Key_Shift_Lock = 0xffe6, /* Shift lock */ + + Key_Meta_L = 0xffe7, /* Left meta */ + Key_Meta_R = 0xffe8, /* Right meta */ + Key_Alt_L = 0xffe9, /* Left alt */ + Key_Alt_R = 0xffea, /* Right alt */ + Key_Super_L = 0xffeb, /* Left super */ + Key_Super_R = 0xffec, /* Right super */ + Key_Hyper_L = 0xffed, /* Left hyper */ + Key_Hyper_R = 0xffee, /* Right hyper */ + + + /* + * Keyboard (XKB) Extension function and modifier keys + * (from Appendix C of "The X Keyboard Extension: Protocol Specification") + * Byte 3 = = 0xfe, + */ + + + Key_ISO_Lock = 0xfe01, + Key_ISO_Level2_Latch = 0xfe02, + Key_ISO_Level3_Shift = 0xfe03, + Key_ISO_Level3_Latch = 0xfe04, + Key_ISO_Level3_Lock = 0xfe05, + Key_ISO_Level5_Shift = 0xfe11, + Key_ISO_Level5_Latch = 0xfe12, + Key_ISO_Level5_Lock = 0xfe13, + Key_ISO_Group_Shift = 0xff7e, /* Alias for mode_switch */ + Key_ISO_Group_Latch = 0xfe06, + Key_ISO_Group_Lock = 0xfe07, + Key_ISO_Next_Group = 0xfe08, + Key_ISO_Next_Group_Lock = 0xfe09, + Key_ISO_Prev_Group = 0xfe0a, + Key_ISO_Prev_Group_Lock = 0xfe0b, + Key_ISO_First_Group = 0xfe0c, + Key_ISO_First_Group_Lock = 0xfe0d, + Key_ISO_Last_Group = 0xfe0e, + Key_ISO_Last_Group_Lock = 0xfe0f, + + Key_ISO_Left_Tab = 0xfe20, + Key_ISO_Move_Line_Up = 0xfe21, + Key_ISO_Move_Line_Down = 0xfe22, + Key_ISO_Partial_Line_Up = 0xfe23, + Key_ISO_Partial_Line_Down = 0xfe24, + Key_ISO_Partial_Space_Left = 0xfe25, + Key_ISO_Partial_Space_Right = 0xfe26, + Key_ISO_Set_Margin_Left = 0xfe27, + Key_ISO_Set_Margin_Right = 0xfe28, + Key_ISO_Release_Margin_Left = 0xfe29, + Key_ISO_Release_Margin_Right = 0xfe2a, + Key_ISO_Release_Both_Margins = 0xfe2b, + Key_ISO_Fast_Cursor_Left = 0xfe2c, + Key_ISO_Fast_Cursor_Right = 0xfe2d, + Key_ISO_Fast_Cursor_Up = 0xfe2e, + Key_ISO_Fast_Cursor_Down = 0xfe2f, + Key_ISO_Continuous_Underline = 0xfe30, + Key_ISO_Discontinuous_Underline = 0xfe31, + Key_ISO_Emphasize = 0xfe32, + Key_ISO_Center_Object = 0xfe33, + Key_ISO_Enter = 0xfe34, + + Key_dead_grave = 0xfe50, + Key_dead_acute = 0xfe51, + Key_dead_circumflex = 0xfe52, + Key_dead_tilde = 0xfe53, + Key_dead_perispomeni = 0xfe53, /* alias for dead_tilde */ + Key_dead_macron = 0xfe54, + Key_dead_breve = 0xfe55, + Key_dead_abovedot = 0xfe56, + Key_dead_diaeresis = 0xfe57, + Key_dead_abovering = 0xfe58, + Key_dead_doubleacute = 0xfe59, + Key_dead_caron = 0xfe5a, + Key_dead_cedilla = 0xfe5b, + Key_dead_ogonek = 0xfe5c, + Key_dead_iota = 0xfe5d, + Key_dead_voiced_sound = 0xfe5e, + Key_dead_semivoiced_sound = 0xfe5f, + Key_dead_belowdot = 0xfe60, + Key_dead_hook = 0xfe61, + Key_dead_horn = 0xfe62, + Key_dead_stroke = 0xfe63, + Key_dead_abovecomma = 0xfe64, + Key_dead_psili = 0xfe64, /* alias for dead_abovecomma */ + Key_dead_abovereversedcomma = 0xfe65, + Key_dead_dasia = 0xfe65, /* alias for dead_abovereversedcomma */ + Key_dead_doublegrave = 0xfe66, + Key_dead_belowring = 0xfe67, + Key_dead_belowmacron = 0xfe68, + Key_dead_belowcircumflex = 0xfe69, + Key_dead_belowtilde = 0xfe6a, + Key_dead_belowbreve = 0xfe6b, + Key_dead_belowdiaeresis = 0xfe6c, + Key_dead_invertedbreve = 0xfe6d, + Key_dead_belowcomma = 0xfe6e, + Key_dead_currency = 0xfe6f, + + /* dead vowels for universal syllable entry */ + Key_dead_a = 0xfe80, + Key_dead_A = 0xfe81, + Key_dead_e = 0xfe82, + Key_dead_E = 0xfe83, + Key_dead_i = 0xfe84, + Key_dead_I = 0xfe85, + Key_dead_o = 0xfe86, + Key_dead_O = 0xfe87, + Key_dead_u = 0xfe88, + Key_dead_U = 0xfe89, + Key_dead_small_schwa = 0xfe8a, + Key_dead_capital_schwa = 0xfe8b, + + Key_First_Virtual_Screen = 0xfed0, + Key_Prev_Virtual_Screen = 0xfed1, + Key_Next_Virtual_Screen = 0xfed2, + Key_Last_Virtual_Screen = 0xfed4, + Key_Terminate_Server = 0xfed5, + + Key_AccessX_Enable = 0xfe70, + Key_AccessX_Feedback_Enable = 0xfe71, + Key_RepeatKeys_Enable = 0xfe72, + Key_SlowKeys_Enable = 0xfe73, + Key_BounceKeys_Enable = 0xfe74, + Key_StickyKeys_Enable = 0xfe75, + Key_MouseKeys_Enable = 0xfe76, + Key_MouseKeys_Accel_Enable = 0xfe77, + Key_Overlay1_Enable = 0xfe78, + Key_Overlay2_Enable = 0xfe79, + Key_AudibleBell_Enable = 0xfe7a, + + Key_Pointer_Left = 0xfee0, + Key_Pointer_Right = 0xfee1, + Key_Pointer_Up = 0xfee2, + Key_Pointer_Down = 0xfee3, + Key_Pointer_UpLeft = 0xfee4, + Key_Pointer_UpRight = 0xfee5, + Key_Pointer_DownLeft = 0xfee6, + Key_Pointer_DownRight = 0xfee7, + Key_Pointer_Button_Dflt = 0xfee8, + Key_Pointer_Button1 = 0xfee9, + Key_Pointer_Button2 = 0xfeea, + Key_Pointer_Button3 = 0xfeeb, + Key_Pointer_Button4 = 0xfeec, + Key_Pointer_Button5 = 0xfeed, + Key_Pointer_DblClick_Dflt = 0xfeee, + Key_Pointer_DblClick1 = 0xfeef, + Key_Pointer_DblClick2 = 0xfef0, + Key_Pointer_DblClick3 = 0xfef1, + Key_Pointer_DblClick4 = 0xfef2, + Key_Pointer_DblClick5 = 0xfef3, + Key_Pointer_Drag_Dflt = 0xfef4, + Key_Pointer_Drag1 = 0xfef5, + Key_Pointer_Drag2 = 0xfef6, + Key_Pointer_Drag3 = 0xfef7, + Key_Pointer_Drag4 = 0xfef8, + Key_Pointer_Drag5 = 0xfefd, + + Key_Pointer_EnableKeys = 0xfef9, + Key_Pointer_Accelerate = 0xfefa, + Key_Pointer_DfltBtnNext = 0xfefb, + Key_Pointer_DfltBtnPrev = 0xfefc, + + + + /* + * 3270 Terminal Keys + * Byte 3 = = 0xfd, + */ + + + Key_3270_Duplicate = 0xfd01, + Key_3270_FieldMark = 0xfd02, + Key_3270_Right2 = 0xfd03, + Key_3270_Left2 = 0xfd04, + Key_3270_BackTab = 0xfd05, + Key_3270_EraseEOF = 0xfd06, + Key_3270_EraseInput = 0xfd07, + Key_3270_Reset = 0xfd08, + Key_3270_Quit = 0xfd09, + Key_3270_PA1 = 0xfd0a, + Key_3270_PA2 = 0xfd0b, + Key_3270_PA3 = 0xfd0c, + Key_3270_Test = 0xfd0d, + Key_3270_Attn = 0xfd0e, + Key_3270_CursorBlink = 0xfd0f, + Key_3270_AltCursor = 0xfd10, + Key_3270_KeyClick = 0xfd11, + Key_3270_Jump = 0xfd12, + Key_3270_Ident = 0xfd13, + Key_3270_Rule = 0xfd14, + Key_3270_Copy = 0xfd15, + Key_3270_Play = 0xfd16, + Key_3270_Setup = 0xfd17, + Key_3270_Record = 0xfd18, + Key_3270_ChangeScreen = 0xfd19, + Key_3270_DeleteWord = 0xfd1a, + Key_3270_ExSelect = 0xfd1b, + Key_3270_CursorSelect = 0xfd1c, + Key_3270_PrintScreen = 0xfd1d, + Key_3270_Enter = 0xfd1e, + + + /* + * Latin 1 + * (ISO/IEC 8859-1 = Unicode U+0020..U+00FF) + * Byte 3 = 0 + */ + + Key_space = 0x0020, /* U+0020 SPACE */ + Key_exclam = 0x0021, /* U+0021 EXCLAMATION MARK */ + Key_quotedbl = 0x0022, /* U+0022 QUOTATION MARK */ + Key_numbersign = 0x0023, /* U+0023 NUMBER SIGN */ + Key_dollar = 0x0024, /* U+0024 DOLLAR SIGN */ + Key_percent = 0x0025, /* U+0025 PERCENT SIGN */ + Key_ampersand = 0x0026, /* U+0026 AMPERSAND */ + Key_apostrophe = 0x0027, /* U+0027 APOSTROPHE */ + Key_quoteright = 0x0027, /* deprecated */ + Key_parenleft = 0x0028, /* U+0028 LEFT PARENTHESIS */ + Key_parenright = 0x0029, /* U+0029 RIGHT PARENTHESIS */ + Key_asterisk = 0x002a, /* U+002A ASTERISK */ + Key_plus = 0x002b, /* U+002B PLUS SIGN */ + Key_comma = 0x002c, /* U+002C COMMA */ + Key_minus = 0x002d, /* U+002D HYPHEN-MINUS */ + Key_period = 0x002e, /* U+002E FULL STOP */ + Key_slash = 0x002f, /* U+002F SOLIDUS */ + Key_0 = 0x0030, /* U+0030 DIGIT ZERO */ + Key_1 = 0x0031, /* U+0031 DIGIT ONE */ + Key_2 = 0x0032, /* U+0032 DIGIT TWO */ + Key_3 = 0x0033, /* U+0033 DIGIT THREE */ + Key_4 = 0x0034, /* U+0034 DIGIT FOUR */ + Key_5 = 0x0035, /* U+0035 DIGIT FIVE */ + Key_6 = 0x0036, /* U+0036 DIGIT SIX */ + Key_7 = 0x0037, /* U+0037 DIGIT SEVEN */ + Key_8 = 0x0038, /* U+0038 DIGIT EIGHT */ + Key_9 = 0x0039, /* U+0039 DIGIT NINE */ + Key_colon = 0x003a, /* U+003A COLON */ + Key_semicolon = 0x003b, /* U+003B SEMICOLON */ + Key_less = 0x003c, /* U+003C LESS-THAN SIGN */ + Key_equal = 0x003d, /* U+003D EQUALS SIGN */ + Key_greater = 0x003e, /* U+003E GREATER-THAN SIGN */ + Key_question = 0x003f, /* U+003F QUESTION MARK */ + Key_at = 0x0040, /* U+0040 COMMERCIAL AT */ + Key_A = 0x0041, /* U+0041 LATIN CAPITAL LETTER A */ + Key_B = 0x0042, /* U+0042 LATIN CAPITAL LETTER B */ + Key_C = 0x0043, /* U+0043 LATIN CAPITAL LETTER C */ + Key_D = 0x0044, /* U+0044 LATIN CAPITAL LETTER D */ + Key_E = 0x0045, /* U+0045 LATIN CAPITAL LETTER E */ + Key_F = 0x0046, /* U+0046 LATIN CAPITAL LETTER F */ + Key_G = 0x0047, /* U+0047 LATIN CAPITAL LETTER G */ + Key_H = 0x0048, /* U+0048 LATIN CAPITAL LETTER H */ + Key_I = 0x0049, /* U+0049 LATIN CAPITAL LETTER I */ + Key_J = 0x004a, /* U+004A LATIN CAPITAL LETTER J */ + Key_K = 0x004b, /* U+004B LATIN CAPITAL LETTER K */ + Key_L = 0x004c, /* U+004C LATIN CAPITAL LETTER L */ + Key_M = 0x004d, /* U+004D LATIN CAPITAL LETTER M */ + Key_N = 0x004e, /* U+004E LATIN CAPITAL LETTER N */ + Key_O = 0x004f, /* U+004F LATIN CAPITAL LETTER O */ + Key_P = 0x0050, /* U+0050 LATIN CAPITAL LETTER P */ + Key_Q = 0x0051, /* U+0051 LATIN CAPITAL LETTER Q */ + Key_R = 0x0052, /* U+0052 LATIN CAPITAL LETTER R */ + Key_S = 0x0053, /* U+0053 LATIN CAPITAL LETTER S */ + Key_T = 0x0054, /* U+0054 LATIN CAPITAL LETTER T */ + Key_U = 0x0055, /* U+0055 LATIN CAPITAL LETTER U */ + Key_V = 0x0056, /* U+0056 LATIN CAPITAL LETTER V */ + Key_W = 0x0057, /* U+0057 LATIN CAPITAL LETTER W */ + Key_X = 0x0058, /* U+0058 LATIN CAPITAL LETTER X */ + Key_Y = 0x0059, /* U+0059 LATIN CAPITAL LETTER Y */ + Key_Z = 0x005a, /* U+005A LATIN CAPITAL LETTER Z */ + Key_bracketleft = 0x005b, /* U+005B LEFT SQUARE BRACKET */ + Key_backslash = 0x005c, /* U+005C REVERSE SOLIDUS */ + Key_bracketright = 0x005d, /* U+005D RIGHT SQUARE BRACKET */ + Key_asciicircum = 0x005e, /* U+005E CIRCUMFLEX ACCENT */ + Key_underscore = 0x005f, /* U+005F LOW LINE */ + Key_grave = 0x0060, /* U+0060 GRAVE ACCENT */ + Key_quoteleft = 0x0060, /* deprecated */ + Key_a = 0x0061, /* U+0061 LATIN SMALL LETTER A */ + Key_b = 0x0062, /* U+0062 LATIN SMALL LETTER B */ + Key_c = 0x0063, /* U+0063 LATIN SMALL LETTER C */ + Key_d = 0x0064, /* U+0064 LATIN SMALL LETTER D */ + Key_e = 0x0065, /* U+0065 LATIN SMALL LETTER E */ + Key_f = 0x0066, /* U+0066 LATIN SMALL LETTER F */ + Key_g = 0x0067, /* U+0067 LATIN SMALL LETTER G */ + Key_h = 0x0068, /* U+0068 LATIN SMALL LETTER H */ + Key_i = 0x0069, /* U+0069 LATIN SMALL LETTER I */ + Key_j = 0x006a, /* U+006A LATIN SMALL LETTER J */ + Key_k = 0x006b, /* U+006B LATIN SMALL LETTER K */ + Key_l = 0x006c, /* U+006C LATIN SMALL LETTER L */ + Key_m = 0x006d, /* U+006D LATIN SMALL LETTER M */ + Key_n = 0x006e, /* U+006E LATIN SMALL LETTER N */ + Key_o = 0x006f, /* U+006F LATIN SMALL LETTER O */ + Key_p = 0x0070, /* U+0070 LATIN SMALL LETTER P */ + Key_q = 0x0071, /* U+0071 LATIN SMALL LETTER Q */ + Key_r = 0x0072, /* U+0072 LATIN SMALL LETTER R */ + Key_s = 0x0073, /* U+0073 LATIN SMALL LETTER S */ + Key_t = 0x0074, /* U+0074 LATIN SMALL LETTER T */ + Key_u = 0x0075, /* U+0075 LATIN SMALL LETTER U */ + Key_v = 0x0076, /* U+0076 LATIN SMALL LETTER V */ + Key_w = 0x0077, /* U+0077 LATIN SMALL LETTER W */ + Key_x = 0x0078, /* U+0078 LATIN SMALL LETTER X */ + Key_y = 0x0079, /* U+0079 LATIN SMALL LETTER Y */ + Key_z = 0x007a, /* U+007A LATIN SMALL LETTER Z */ + Key_braceleft = 0x007b, /* U+007B LEFT CURLY BRACKET */ + Key_bar = 0x007c, /* U+007C VERTICAL LINE */ + Key_braceright = 0x007d, /* U+007D RIGHT CURLY BRACKET */ + Key_asciitilde = 0x007e, /* U+007E TILDE */ + + Key_nobreakspace = 0x00a0, /* U+00A0 NO-BREAK SPACE */ + Key_exclamdown = 0x00a1, /* U+00A1 INVERTED EXCLAMATION MARK */ + Key_cent = 0x00a2, /* U+00A2 CENT SIGN */ + Key_sterling = 0x00a3, /* U+00A3 POUND SIGN */ + Key_currency = 0x00a4, /* U+00A4 CURRENCY SIGN */ + Key_yen = 0x00a5, /* U+00A5 YEN SIGN */ + Key_brokenbar = 0x00a6, /* U+00A6 BROKEN BAR */ + Key_section = 0x00a7, /* U+00A7 SECTION SIGN */ + Key_diaeresis = 0x00a8, /* U+00A8 DIAERESIS */ + Key_copyright = 0x00a9, /* U+00A9 COPYRIGHT SIGN */ + Key_ordfeminine = 0x00aa, /* U+00AA FEMININE ORDINAL INDICATOR */ + Key_guillemotleft = 0x00ab, /* U+00AB LEFT-POINTING DOUBLE ANGLE QUOTATION MARK */ + Key_notsign = 0x00ac, /* U+00AC NOT SIGN */ + Key_hyphen = 0x00ad, /* U+00AD SOFT HYPHEN */ + Key_registered = 0x00ae, /* U+00AE REGISTERED SIGN */ + Key_macron = 0x00af, /* U+00AF MACRON */ + Key_degree = 0x00b0, /* U+00B0 DEGREE SIGN */ + Key_plusminus = 0x00b1, /* U+00B1 PLUS-MINUS SIGN */ + Key_twosuperior = 0x00b2, /* U+00B2 SUPERSCRIPT TWO */ + Key_threesuperior = 0x00b3, /* U+00B3 SUPERSCRIPT THREE */ + Key_acute = 0x00b4, /* U+00B4 ACUTE ACCENT */ + Key_mu = 0x00b5, /* U+00B5 MICRO SIGN */ + Key_paragraph = 0x00b6, /* U+00B6 PILCROW SIGN */ + Key_periodcentered = 0x00b7, /* U+00B7 MIDDLE DOT */ + Key_cedilla = 0x00b8, /* U+00B8 CEDILLA */ + Key_onesuperior = 0x00b9, /* U+00B9 SUPERSCRIPT ONE */ + Key_masculine = 0x00ba, /* U+00BA MASCULINE ORDINAL INDICATOR */ + Key_guillemotright = 0x00bb, /* U+00BB RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK */ + Key_onequarter = 0x00bc, /* U+00BC VULGAR FRACTION ONE QUARTER */ + Key_onehalf = 0x00bd, /* U+00BD VULGAR FRACTION ONE HALF */ + Key_threequarters = 0x00be, /* U+00BE VULGAR FRACTION THREE QUARTERS */ + Key_questiondown = 0x00bf, /* U+00BF INVERTED QUESTION MARK */ + Key_Agrave = 0x00c0, /* U+00C0 LATIN CAPITAL LETTER A WITH GRAVE */ + Key_Aacute = 0x00c1, /* U+00C1 LATIN CAPITAL LETTER A WITH ACUTE */ + Key_Acircumflex = 0x00c2, /* U+00C2 LATIN CAPITAL LETTER A WITH CIRCUMFLEX */ + Key_Atilde = 0x00c3, /* U+00C3 LATIN CAPITAL LETTER A WITH TILDE */ + Key_Adiaeresis = 0x00c4, /* U+00C4 LATIN CAPITAL LETTER A WITH DIAERESIS */ + Key_Aring = 0x00c5, /* U+00C5 LATIN CAPITAL LETTER A WITH RING ABOVE */ + Key_AE = 0x00c6, /* U+00C6 LATIN CAPITAL LETTER AE */ + Key_Ccedilla = 0x00c7, /* U+00C7 LATIN CAPITAL LETTER C WITH CEDILLA */ + Key_Egrave = 0x00c8, /* U+00C8 LATIN CAPITAL LETTER E WITH GRAVE */ + Key_Eacute = 0x00c9, /* U+00C9 LATIN CAPITAL LETTER E WITH ACUTE */ + Key_Ecircumflex = 0x00ca, /* U+00CA LATIN CAPITAL LETTER E WITH CIRCUMFLEX */ + Key_Ediaeresis = 0x00cb, /* U+00CB LATIN CAPITAL LETTER E WITH DIAERESIS */ + Key_Igrave = 0x00cc, /* U+00CC LATIN CAPITAL LETTER I WITH GRAVE */ + Key_Iacute = 0x00cd, /* U+00CD LATIN CAPITAL LETTER I WITH ACUTE */ + Key_Icircumflex = 0x00ce, /* U+00CE LATIN CAPITAL LETTER I WITH CIRCUMFLEX */ + Key_Idiaeresis = 0x00cf, /* U+00CF LATIN CAPITAL LETTER I WITH DIAERESIS */ + Key_ETH = 0x00d0, /* U+00D0 LATIN CAPITAL LETTER ETH */ + Key_Eth = 0x00d0, /* deprecated */ + Key_Ntilde = 0x00d1, /* U+00D1 LATIN CAPITAL LETTER N WITH TILDE */ + Key_Ograve = 0x00d2, /* U+00D2 LATIN CAPITAL LETTER O WITH GRAVE */ + Key_Oacute = 0x00d3, /* U+00D3 LATIN CAPITAL LETTER O WITH ACUTE */ + Key_Ocircumflex = 0x00d4, /* U+00D4 LATIN CAPITAL LETTER O WITH CIRCUMFLEX */ + Key_Otilde = 0x00d5, /* U+00D5 LATIN CAPITAL LETTER O WITH TILDE */ + Key_Odiaeresis = 0x00d6, /* U+00D6 LATIN CAPITAL LETTER O WITH DIAERESIS */ + Key_multiply = 0x00d7, /* U+00D7 MULTIPLICATION SIGN */ + Key_Oslash = 0x00d8, /* U+00D8 LATIN CAPITAL LETTER O WITH STROKE */ + Key_Ooblique = 0x00d8, /* U+00D8 LATIN CAPITAL LETTER O WITH STROKE */ + Key_Ugrave = 0x00d9, /* U+00D9 LATIN CAPITAL LETTER U WITH GRAVE */ + Key_Uacute = 0x00da, /* U+00DA LATIN CAPITAL LETTER U WITH ACUTE */ + Key_Ucircumflex = 0x00db, /* U+00DB LATIN CAPITAL LETTER U WITH CIRCUMFLEX */ + Key_Udiaeresis = 0x00dc, /* U+00DC LATIN CAPITAL LETTER U WITH DIAERESIS */ + Key_Yacute = 0x00dd, /* U+00DD LATIN CAPITAL LETTER Y WITH ACUTE */ + Key_THORN = 0x00de, /* U+00DE LATIN CAPITAL LETTER THORN */ + Key_Thorn = 0x00de, /* deprecated */ + Key_ssharp = 0x00df, /* U+00DF LATIN SMALL LETTER SHARP S */ + Key_agrave = 0x00e0, /* U+00E0 LATIN SMALL LETTER A WITH GRAVE */ + Key_aacute = 0x00e1, /* U+00E1 LATIN SMALL LETTER A WITH ACUTE */ + Key_acircumflex = 0x00e2, /* U+00E2 LATIN SMALL LETTER A WITH CIRCUMFLEX */ + Key_atilde = 0x00e3, /* U+00E3 LATIN SMALL LETTER A WITH TILDE */ + Key_adiaeresis = 0x00e4, /* U+00E4 LATIN SMALL LETTER A WITH DIAERESIS */ + Key_aring = 0x00e5, /* U+00E5 LATIN SMALL LETTER A WITH RING ABOVE */ + Key_ae = 0x00e6, /* U+00E6 LATIN SMALL LETTER AE */ + Key_ccedilla = 0x00e7, /* U+00E7 LATIN SMALL LETTER C WITH CEDILLA */ + Key_egrave = 0x00e8, /* U+00E8 LATIN SMALL LETTER E WITH GRAVE */ + Key_eacute = 0x00e9, /* U+00E9 LATIN SMALL LETTER E WITH ACUTE */ + Key_ecircumflex = 0x00ea, /* U+00EA LATIN SMALL LETTER E WITH CIRCUMFLEX */ + Key_ediaeresis = 0x00eb, /* U+00EB LATIN SMALL LETTER E WITH DIAERESIS */ + Key_igrave = 0x00ec, /* U+00EC LATIN SMALL LETTER I WITH GRAVE */ + Key_iacute = 0x00ed, /* U+00ED LATIN SMALL LETTER I WITH ACUTE */ + Key_icircumflex = 0x00ee, /* U+00EE LATIN SMALL LETTER I WITH CIRCUMFLEX */ + Key_idiaeresis = 0x00ef, /* U+00EF LATIN SMALL LETTER I WITH DIAERESIS */ + Key_eth = 0x00f0, /* U+00F0 LATIN SMALL LETTER ETH */ + Key_ntilde = 0x00f1, /* U+00F1 LATIN SMALL LETTER N WITH TILDE */ + Key_ograve = 0x00f2, /* U+00F2 LATIN SMALL LETTER O WITH GRAVE */ + Key_oacute = 0x00f3, /* U+00F3 LATIN SMALL LETTER O WITH ACUTE */ + Key_ocircumflex = 0x00f4, /* U+00F4 LATIN SMALL LETTER O WITH CIRCUMFLEX */ + Key_otilde = 0x00f5, /* U+00F5 LATIN SMALL LETTER O WITH TILDE */ + Key_odiaeresis = 0x00f6, /* U+00F6 LATIN SMALL LETTER O WITH DIAERESIS */ + Key_division = 0x00f7, /* U+00F7 DIVISION SIGN */ + Key_oslash = 0x00f8, /* U+00F8 LATIN SMALL LETTER O WITH STROKE */ + Key_ooblique = 0x00f8, /* U+00F8 LATIN SMALL LETTER O WITH STROKE */ + Key_ugrave = 0x00f9, /* U+00F9 LATIN SMALL LETTER U WITH GRAVE */ + Key_uacute = 0x00fa, /* U+00FA LATIN SMALL LETTER U WITH ACUTE */ + Key_ucircumflex = 0x00fb, /* U+00FB LATIN SMALL LETTER U WITH CIRCUMFLEX */ + Key_udiaeresis = 0x00fc, /* U+00FC LATIN SMALL LETTER U WITH DIAERESIS */ + Key_yacute = 0x00fd, /* U+00FD LATIN SMALL LETTER Y WITH ACUTE */ + Key_thorn = 0x00fe, /* U+00FE LATIN SMALL LETTER THORN */ + Key_ydiaeresis = 0x00ff, /* U+00FF LATIN SMALL LETTER Y WITH DIAERESIS */ + + + /* + * Latin 2 + * Byte 3 = 1 + */ + + + Key_Aogonek = 0x01a1, /* U+0104 LATIN CAPITAL LETTER A WITH OGONEK */ + Key_breve = 0x01a2, /* U+02D8 BREVE */ + Key_Lstroke = 0x01a3, /* U+0141 LATIN CAPITAL LETTER L WITH STROKE */ + Key_Lcaron = 0x01a5, /* U+013D LATIN CAPITAL LETTER L WITH CARON */ + Key_Sacute = 0x01a6, /* U+015A LATIN CAPITAL LETTER S WITH ACUTE */ + Key_Scaron = 0x01a9, /* U+0160 LATIN CAPITAL LETTER S WITH CARON */ + Key_Scedilla = 0x01aa, /* U+015E LATIN CAPITAL LETTER S WITH CEDILLA */ + Key_Tcaron = 0x01ab, /* U+0164 LATIN CAPITAL LETTER T WITH CARON */ + Key_Zacute = 0x01ac, /* U+0179 LATIN CAPITAL LETTER Z WITH ACUTE */ + Key_Zcaron = 0x01ae, /* U+017D LATIN CAPITAL LETTER Z WITH CARON */ + Key_Zabovedot = 0x01af, /* U+017B LATIN CAPITAL LETTER Z WITH DOT ABOVE */ + Key_aogonek = 0x01b1, /* U+0105 LATIN SMALL LETTER A WITH OGONEK */ + Key_ogonek = 0x01b2, /* U+02DB OGONEK */ + Key_lstroke = 0x01b3, /* U+0142 LATIN SMALL LETTER L WITH STROKE */ + Key_lcaron = 0x01b5, /* U+013E LATIN SMALL LETTER L WITH CARON */ + Key_sacute = 0x01b6, /* U+015B LATIN SMALL LETTER S WITH ACUTE */ + Key_caron = 0x01b7, /* U+02C7 CARON */ + Key_scaron = 0x01b9, /* U+0161 LATIN SMALL LETTER S WITH CARON */ + Key_scedilla = 0x01ba, /* U+015F LATIN SMALL LETTER S WITH CEDILLA */ + Key_tcaron = 0x01bb, /* U+0165 LATIN SMALL LETTER T WITH CARON */ + Key_zacute = 0x01bc, /* U+017A LATIN SMALL LETTER Z WITH ACUTE */ + Key_doubleacute = 0x01bd, /* U+02DD DOUBLE ACUTE ACCENT */ + Key_zcaron = 0x01be, /* U+017E LATIN SMALL LETTER Z WITH CARON */ + Key_zabovedot = 0x01bf, /* U+017C LATIN SMALL LETTER Z WITH DOT ABOVE */ + Key_Racute = 0x01c0, /* U+0154 LATIN CAPITAL LETTER R WITH ACUTE */ + Key_Abreve = 0x01c3, /* U+0102 LATIN CAPITAL LETTER A WITH BREVE */ + Key_Lacute = 0x01c5, /* U+0139 LATIN CAPITAL LETTER L WITH ACUTE */ + Key_Cacute = 0x01c6, /* U+0106 LATIN CAPITAL LETTER C WITH ACUTE */ + Key_Ccaron = 0x01c8, /* U+010C LATIN CAPITAL LETTER C WITH CARON */ + Key_Eogonek = 0x01ca, /* U+0118 LATIN CAPITAL LETTER E WITH OGONEK */ + Key_Ecaron = 0x01cc, /* U+011A LATIN CAPITAL LETTER E WITH CARON */ + Key_Dcaron = 0x01cf, /* U+010E LATIN CAPITAL LETTER D WITH CARON */ + Key_Dstroke = 0x01d0, /* U+0110 LATIN CAPITAL LETTER D WITH STROKE */ + Key_Nacute = 0x01d1, /* U+0143 LATIN CAPITAL LETTER N WITH ACUTE */ + Key_Ncaron = 0x01d2, /* U+0147 LATIN CAPITAL LETTER N WITH CARON */ + Key_Odoubleacute = 0x01d5, /* U+0150 LATIN CAPITAL LETTER O WITH DOUBLE ACUTE */ + Key_Rcaron = 0x01d8, /* U+0158 LATIN CAPITAL LETTER R WITH CARON */ + Key_Uring = 0x01d9, /* U+016E LATIN CAPITAL LETTER U WITH RING ABOVE */ + Key_Udoubleacute = 0x01db, /* U+0170 LATIN CAPITAL LETTER U WITH DOUBLE ACUTE */ + Key_Tcedilla = 0x01de, /* U+0162 LATIN CAPITAL LETTER T WITH CEDILLA */ + Key_racute = 0x01e0, /* U+0155 LATIN SMALL LETTER R WITH ACUTE */ + Key_abreve = 0x01e3, /* U+0103 LATIN SMALL LETTER A WITH BREVE */ + Key_lacute = 0x01e5, /* U+013A LATIN SMALL LETTER L WITH ACUTE */ + Key_cacute = 0x01e6, /* U+0107 LATIN SMALL LETTER C WITH ACUTE */ + Key_ccaron = 0x01e8, /* U+010D LATIN SMALL LETTER C WITH CARON */ + Key_eogonek = 0x01ea, /* U+0119 LATIN SMALL LETTER E WITH OGONEK */ + Key_ecaron = 0x01ec, /* U+011B LATIN SMALL LETTER E WITH CARON */ + Key_dcaron = 0x01ef, /* U+010F LATIN SMALL LETTER D WITH CARON */ + Key_dstroke = 0x01f0, /* U+0111 LATIN SMALL LETTER D WITH STROKE */ + Key_nacute = 0x01f1, /* U+0144 LATIN SMALL LETTER N WITH ACUTE */ + Key_ncaron = 0x01f2, /* U+0148 LATIN SMALL LETTER N WITH CARON */ + Key_odoubleacute = 0x01f5, /* U+0151 LATIN SMALL LETTER O WITH DOUBLE ACUTE */ + Key_udoubleacute = 0x01fb, /* U+0171 LATIN SMALL LETTER U WITH DOUBLE ACUTE */ + Key_rcaron = 0x01f8, /* U+0159 LATIN SMALL LETTER R WITH CARON */ + Key_uring = 0x01f9, /* U+016F LATIN SMALL LETTER U WITH RING ABOVE */ + Key_tcedilla = 0x01fe, /* U+0163 LATIN SMALL LETTER T WITH CEDILLA */ + Key_abovedot = 0x01ff, /* U+02D9 DOT ABOVE */ + + + /* + * Latin 3 + * Byte 3 = 2 + */ + + + Key_Hstroke = 0x02a1, /* U+0126 LATIN CAPITAL LETTER H WITH STROKE */ + Key_Hcircumflex = 0x02a6, /* U+0124 LATIN CAPITAL LETTER H WITH CIRCUMFLEX */ + Key_Iabovedot = 0x02a9, /* U+0130 LATIN CAPITAL LETTER I WITH DOT ABOVE */ + Key_Gbreve = 0x02ab, /* U+011E LATIN CAPITAL LETTER G WITH BREVE */ + Key_Jcircumflex = 0x02ac, /* U+0134 LATIN CAPITAL LETTER J WITH CIRCUMFLEX */ + Key_hstroke = 0x02b1, /* U+0127 LATIN SMALL LETTER H WITH STROKE */ + Key_hcircumflex = 0x02b6, /* U+0125 LATIN SMALL LETTER H WITH CIRCUMFLEX */ + Key_idotless = 0x02b9, /* U+0131 LATIN SMALL LETTER DOTLESS I */ + Key_gbreve = 0x02bb, /* U+011F LATIN SMALL LETTER G WITH BREVE */ + Key_jcircumflex = 0x02bc, /* U+0135 LATIN SMALL LETTER J WITH CIRCUMFLEX */ + Key_Cabovedot = 0x02c5, /* U+010A LATIN CAPITAL LETTER C WITH DOT ABOVE */ + Key_Ccircumflex = 0x02c6, /* U+0108 LATIN CAPITAL LETTER C WITH CIRCUMFLEX */ + Key_Gabovedot = 0x02d5, /* U+0120 LATIN CAPITAL LETTER G WITH DOT ABOVE */ + Key_Gcircumflex = 0x02d8, /* U+011C LATIN CAPITAL LETTER G WITH CIRCUMFLEX */ + Key_Ubreve = 0x02dd, /* U+016C LATIN CAPITAL LETTER U WITH BREVE */ + Key_Scircumflex = 0x02de, /* U+015C LATIN CAPITAL LETTER S WITH CIRCUMFLEX */ + Key_cabovedot = 0x02e5, /* U+010B LATIN SMALL LETTER C WITH DOT ABOVE */ + Key_ccircumflex = 0x02e6, /* U+0109 LATIN SMALL LETTER C WITH CIRCUMFLEX */ + Key_gabovedot = 0x02f5, /* U+0121 LATIN SMALL LETTER G WITH DOT ABOVE */ + Key_gcircumflex = 0x02f8, /* U+011D LATIN SMALL LETTER G WITH CIRCUMFLEX */ + Key_ubreve = 0x02fd, /* U+016D LATIN SMALL LETTER U WITH BREVE */ + Key_scircumflex = 0x02fe, /* U+015D LATIN SMALL LETTER S WITH CIRCUMFLEX */ + + + + /* + * Latin 4 + * Byte 3 = 3 + */ + + + Key_kra = 0x03a2, /* U+0138 LATIN SMALL LETTER KRA */ + Key_kappa = 0x03a2, /* deprecated */ + Key_Rcedilla = 0x03a3, /* U+0156 LATIN CAPITAL LETTER R WITH CEDILLA */ + Key_Itilde = 0x03a5, /* U+0128 LATIN CAPITAL LETTER I WITH TILDE */ + Key_Lcedilla = 0x03a6, /* U+013B LATIN CAPITAL LETTER L WITH CEDILLA */ + Key_Emacron = 0x03aa, /* U+0112 LATIN CAPITAL LETTER E WITH MACRON */ + Key_Gcedilla = 0x03ab, /* U+0122 LATIN CAPITAL LETTER G WITH CEDILLA */ + Key_Tslash = 0x03ac, /* U+0166 LATIN CAPITAL LETTER T WITH STROKE */ + Key_rcedilla = 0x03b3, /* U+0157 LATIN SMALL LETTER R WITH CEDILLA */ + Key_itilde = 0x03b5, /* U+0129 LATIN SMALL LETTER I WITH TILDE */ + Key_lcedilla = 0x03b6, /* U+013C LATIN SMALL LETTER L WITH CEDILLA */ + Key_emacron = 0x03ba, /* U+0113 LATIN SMALL LETTER E WITH MACRON */ + Key_gcedilla = 0x03bb, /* U+0123 LATIN SMALL LETTER G WITH CEDILLA */ + Key_tslash = 0x03bc, /* U+0167 LATIN SMALL LETTER T WITH STROKE */ + Key_ENG = 0x03bd, /* U+014A LATIN CAPITAL LETTER ENG */ + Key_eng = 0x03bf, /* U+014B LATIN SMALL LETTER ENG */ + Key_Amacron = 0x03c0, /* U+0100 LATIN CAPITAL LETTER A WITH MACRON */ + Key_Iogonek = 0x03c7, /* U+012E LATIN CAPITAL LETTER I WITH OGONEK */ + Key_Eabovedot = 0x03cc, /* U+0116 LATIN CAPITAL LETTER E WITH DOT ABOVE */ + Key_Imacron = 0x03cf, /* U+012A LATIN CAPITAL LETTER I WITH MACRON */ + Key_Ncedilla = 0x03d1, /* U+0145 LATIN CAPITAL LETTER N WITH CEDILLA */ + Key_Omacron = 0x03d2, /* U+014C LATIN CAPITAL LETTER O WITH MACRON */ + Key_Kcedilla = 0x03d3, /* U+0136 LATIN CAPITAL LETTER K WITH CEDILLA */ + Key_Uogonek = 0x03d9, /* U+0172 LATIN CAPITAL LETTER U WITH OGONEK */ + Key_Utilde = 0x03dd, /* U+0168 LATIN CAPITAL LETTER U WITH TILDE */ + Key_Umacron = 0x03de, /* U+016A LATIN CAPITAL LETTER U WITH MACRON */ + Key_amacron = 0x03e0, /* U+0101 LATIN SMALL LETTER A WITH MACRON */ + Key_iogonek = 0x03e7, /* U+012F LATIN SMALL LETTER I WITH OGONEK */ + Key_eabovedot = 0x03ec, /* U+0117 LATIN SMALL LETTER E WITH DOT ABOVE */ + Key_imacron = 0x03ef, /* U+012B LATIN SMALL LETTER I WITH MACRON */ + Key_ncedilla = 0x03f1, /* U+0146 LATIN SMALL LETTER N WITH CEDILLA */ + Key_omacron = 0x03f2, /* U+014D LATIN SMALL LETTER O WITH MACRON */ + Key_kcedilla = 0x03f3, /* U+0137 LATIN SMALL LETTER K WITH CEDILLA */ + Key_uogonek = 0x03f9, /* U+0173 LATIN SMALL LETTER U WITH OGONEK */ + Key_utilde = 0x03fd, /* U+0169 LATIN SMALL LETTER U WITH TILDE */ + Key_umacron = 0x03fe, /* U+016B LATIN SMALL LETTER U WITH MACRON */ + + + /* + * Latin 8 + */ + + Key_Babovedot = 0x1001e02, /* U+1E02 LATIN CAPITAL LETTER B WITH DOT ABOVE */ + Key_babovedot = 0x1001e03, /* U+1E03 LATIN SMALL LETTER B WITH DOT ABOVE */ + Key_Dabovedot = 0x1001e0a, /* U+1E0A LATIN CAPITAL LETTER D WITH DOT ABOVE */ + Key_Wgrave = 0x1001e80, /* U+1E80 LATIN CAPITAL LETTER W WITH GRAVE */ + Key_Wacute = 0x1001e82, /* U+1E82 LATIN CAPITAL LETTER W WITH ACUTE */ + Key_dabovedot = 0x1001e0b, /* U+1E0B LATIN SMALL LETTER D WITH DOT ABOVE */ + Key_Ygrave = 0x1001ef2, /* U+1EF2 LATIN CAPITAL LETTER Y WITH GRAVE */ + Key_Fabovedot = 0x1001e1e, /* U+1E1E LATIN CAPITAL LETTER F WITH DOT ABOVE */ + Key_fabovedot = 0x1001e1f, /* U+1E1F LATIN SMALL LETTER F WITH DOT ABOVE */ + Key_Mabovedot = 0x1001e40, /* U+1E40 LATIN CAPITAL LETTER M WITH DOT ABOVE */ + Key_mabovedot = 0x1001e41, /* U+1E41 LATIN SMALL LETTER M WITH DOT ABOVE */ + Key_Pabovedot = 0x1001e56, /* U+1E56 LATIN CAPITAL LETTER P WITH DOT ABOVE */ + Key_wgrave = 0x1001e81, /* U+1E81 LATIN SMALL LETTER W WITH GRAVE */ + Key_pabovedot = 0x1001e57, /* U+1E57 LATIN SMALL LETTER P WITH DOT ABOVE */ + Key_wacute = 0x1001e83, /* U+1E83 LATIN SMALL LETTER W WITH ACUTE */ + Key_Sabovedot = 0x1001e60, /* U+1E60 LATIN CAPITAL LETTER S WITH DOT ABOVE */ + Key_ygrave = 0x1001ef3, /* U+1EF3 LATIN SMALL LETTER Y WITH GRAVE */ + Key_Wdiaeresis = 0x1001e84, /* U+1E84 LATIN CAPITAL LETTER W WITH DIAERESIS */ + Key_wdiaeresis = 0x1001e85, /* U+1E85 LATIN SMALL LETTER W WITH DIAERESIS */ + Key_sabovedot = 0x1001e61, /* U+1E61 LATIN SMALL LETTER S WITH DOT ABOVE */ + Key_Wcircumflex = 0x1000174, /* U+0174 LATIN CAPITAL LETTER W WITH CIRCUMFLEX */ + Key_Tabovedot = 0x1001e6a, /* U+1E6A LATIN CAPITAL LETTER T WITH DOT ABOVE */ + Key_Ycircumflex = 0x1000176, /* U+0176 LATIN CAPITAL LETTER Y WITH CIRCUMFLEX */ + Key_wcircumflex = 0x1000175, /* U+0175 LATIN SMALL LETTER W WITH CIRCUMFLEX */ + Key_tabovedot = 0x1001e6b, /* U+1E6B LATIN SMALL LETTER T WITH DOT ABOVE */ + Key_ycircumflex = 0x1000177, /* U+0177 LATIN SMALL LETTER Y WITH CIRCUMFLEX */ + + + /* + * Latin 9 + * Byte 3 = = 0x13, + */ + + + Key_OE = 0x13bc, /* U+0152 LATIN CAPITAL LIGATURE OE */ + Key_oe = 0x13bd, /* U+0153 LATIN SMALL LIGATURE OE */ + Key_Ydiaeresis = 0x13be, /* U+0178 LATIN CAPITAL LETTER Y WITH DIAERESIS */ + + + /* + * Katakana + * Byte 3 = 4 + */ + + + Key_overline = 0x047e, /* U+203E OVERLINE */ + Key_kana_fullstop = 0x04a1, /* U+3002 IDEOGRAPHIC FULL STOP */ + Key_kana_openingbracket = 0x04a2, /* U+300C LEFT CORNER BRACKET */ + Key_kana_closingbracket = 0x04a3, /* U+300D RIGHT CORNER BRACKET */ + Key_kana_comma = 0x04a4, /* U+3001 IDEOGRAPHIC COMMA */ + Key_kana_conjunctive = 0x04a5, /* U+30FB KATAKANA MIDDLE DOT */ + Key_kana_middledot = 0x04a5, /* deprecated */ + Key_kana_WO = 0x04a6, /* U+30F2 KATAKANA LETTER WO */ + Key_kana_a = 0x04a7, /* U+30A1 KATAKANA LETTER SMALL A */ + Key_kana_i = 0x04a8, /* U+30A3 KATAKANA LETTER SMALL I */ + Key_kana_u = 0x04a9, /* U+30A5 KATAKANA LETTER SMALL U */ + Key_kana_e = 0x04aa, /* U+30A7 KATAKANA LETTER SMALL E */ + Key_kana_o = 0x04ab, /* U+30A9 KATAKANA LETTER SMALL O */ + Key_kana_ya = 0x04ac, /* U+30E3 KATAKANA LETTER SMALL YA */ + Key_kana_yu = 0x04ad, /* U+30E5 KATAKANA LETTER SMALL YU */ + Key_kana_yo = 0x04ae, /* U+30E7 KATAKANA LETTER SMALL YO */ + Key_kana_tsu = 0x04af, /* U+30C3 KATAKANA LETTER SMALL TU */ + Key_kana_tu = 0x04af, /* deprecated */ + Key_prolongedsound = 0x04b0, /* U+30FC KATAKANA-HIRAGANA PROLONGED SOUND MARK */ + Key_kana_A = 0x04b1, /* U+30A2 KATAKANA LETTER A */ + Key_kana_I = 0x04b2, /* U+30A4 KATAKANA LETTER I */ + Key_kana_U = 0x04b3, /* U+30A6 KATAKANA LETTER U */ + Key_kana_E = 0x04b4, /* U+30A8 KATAKANA LETTER E */ + Key_kana_O = 0x04b5, /* U+30AA KATAKANA LETTER O */ + Key_kana_KA = 0x04b6, /* U+30AB KATAKANA LETTER KA */ + Key_kana_KI = 0x04b7, /* U+30AD KATAKANA LETTER KI */ + Key_kana_KU = 0x04b8, /* U+30AF KATAKANA LETTER KU */ + Key_kana_KE = 0x04b9, /* U+30B1 KATAKANA LETTER KE */ + Key_kana_KO = 0x04ba, /* U+30B3 KATAKANA LETTER KO */ + Key_kana_SA = 0x04bb, /* U+30B5 KATAKANA LETTER SA */ + Key_kana_SHI = 0x04bc, /* U+30B7 KATAKANA LETTER SI */ + Key_kana_SU = 0x04bd, /* U+30B9 KATAKANA LETTER SU */ + Key_kana_SE = 0x04be, /* U+30BB KATAKANA LETTER SE */ + Key_kana_SO = 0x04bf, /* U+30BD KATAKANA LETTER SO */ + Key_kana_TA = 0x04c0, /* U+30BF KATAKANA LETTER TA */ + Key_kana_CHI = 0x04c1, /* U+30C1 KATAKANA LETTER TI */ + Key_kana_TI = 0x04c1, /* deprecated */ + Key_kana_TSU = 0x04c2, /* U+30C4 KATAKANA LETTER TU */ + Key_kana_TU = 0x04c2, /* deprecated */ + Key_kana_TE = 0x04c3, /* U+30C6 KATAKANA LETTER TE */ + Key_kana_TO = 0x04c4, /* U+30C8 KATAKANA LETTER TO */ + Key_kana_NA = 0x04c5, /* U+30CA KATAKANA LETTER NA */ + Key_kana_NI = 0x04c6, /* U+30CB KATAKANA LETTER NI */ + Key_kana_NU = 0x04c7, /* U+30CC KATAKANA LETTER NU */ + Key_kana_NE = 0x04c8, /* U+30CD KATAKANA LETTER NE */ + Key_kana_NO = 0x04c9, /* U+30CE KATAKANA LETTER NO */ + Key_kana_HA = 0x04ca, /* U+30CF KATAKANA LETTER HA */ + Key_kana_HI = 0x04cb, /* U+30D2 KATAKANA LETTER HI */ + Key_kana_FU = 0x04cc, /* U+30D5 KATAKANA LETTER HU */ + Key_kana_HU = 0x04cc, /* deprecated */ + Key_kana_HE = 0x04cd, /* U+30D8 KATAKANA LETTER HE */ + Key_kana_HO = 0x04ce, /* U+30DB KATAKANA LETTER HO */ + Key_kana_MA = 0x04cf, /* U+30DE KATAKANA LETTER MA */ + Key_kana_MI = 0x04d0, /* U+30DF KATAKANA LETTER MI */ + Key_kana_MU = 0x04d1, /* U+30E0 KATAKANA LETTER MU */ + Key_kana_ME = 0x04d2, /* U+30E1 KATAKANA LETTER ME */ + Key_kana_MO = 0x04d3, /* U+30E2 KATAKANA LETTER MO */ + Key_kana_YA = 0x04d4, /* U+30E4 KATAKANA LETTER YA */ + Key_kana_YU = 0x04d5, /* U+30E6 KATAKANA LETTER YU */ + Key_kana_YO = 0x04d6, /* U+30E8 KATAKANA LETTER YO */ + Key_kana_RA = 0x04d7, /* U+30E9 KATAKANA LETTER RA */ + Key_kana_RI = 0x04d8, /* U+30EA KATAKANA LETTER RI */ + Key_kana_RU = 0x04d9, /* U+30EB KATAKANA LETTER RU */ + Key_kana_RE = 0x04da, /* U+30EC KATAKANA LETTER RE */ + Key_kana_RO = 0x04db, /* U+30ED KATAKANA LETTER RO */ + Key_kana_WA = 0x04dc, /* U+30EF KATAKANA LETTER WA */ + Key_kana_N = 0x04dd, /* U+30F3 KATAKANA LETTER N */ + Key_voicedsound = 0x04de, /* U+309B KATAKANA-HIRAGANA VOICED SOUND MARK */ + Key_semivoicedsound = 0x04df, /* U+309C KATAKANA-HIRAGANA SEMI-VOICED SOUND MARK */ + Key_kana_switch = 0xff7e, /* Alias for mode_switch */ + + + /* + * Arabic + * Byte 3 = 5 + */ + + + Key_Farsi_0 = 0x10006f0, /* U+06F0 EXTENDED ARABIC-INDIC DIGIT ZERO */ + Key_Farsi_1 = 0x10006f1, /* U+06F1 EXTENDED ARABIC-INDIC DIGIT ONE */ + Key_Farsi_2 = 0x10006f2, /* U+06F2 EXTENDED ARABIC-INDIC DIGIT TWO */ + Key_Farsi_3 = 0x10006f3, /* U+06F3 EXTENDED ARABIC-INDIC DIGIT THREE */ + Key_Farsi_4 = 0x10006f4, /* U+06F4 EXTENDED ARABIC-INDIC DIGIT FOUR */ + Key_Farsi_5 = 0x10006f5, /* U+06F5 EXTENDED ARABIC-INDIC DIGIT FIVE */ + Key_Farsi_6 = 0x10006f6, /* U+06F6 EXTENDED ARABIC-INDIC DIGIT SIX */ + Key_Farsi_7 = 0x10006f7, /* U+06F7 EXTENDED ARABIC-INDIC DIGIT SEVEN */ + Key_Farsi_8 = 0x10006f8, /* U+06F8 EXTENDED ARABIC-INDIC DIGIT EIGHT */ + Key_Farsi_9 = 0x10006f9, /* U+06F9 EXTENDED ARABIC-INDIC DIGIT NINE */ + Key_Arabic_percent = 0x100066a, /* U+066A ARABIC PERCENT SIGN */ + Key_Arabic_superscript_alef = 0x1000670, /* U+0670 ARABIC LETTER SUPERSCRIPT ALEF */ + Key_Arabic_tteh = 0x1000679, /* U+0679 ARABIC LETTER TTEH */ + Key_Arabic_peh = 0x100067e, /* U+067E ARABIC LETTER PEH */ + Key_Arabic_tcheh = 0x1000686, /* U+0686 ARABIC LETTER TCHEH */ + Key_Arabic_ddal = 0x1000688, /* U+0688 ARABIC LETTER DDAL */ + Key_Arabic_rreh = 0x1000691, /* U+0691 ARABIC LETTER RREH */ + Key_Arabic_comma = 0x05ac, /* U+060C ARABIC COMMA */ + Key_Arabic_fullstop = 0x10006d4, /* U+06D4 ARABIC FULL STOP */ + Key_Arabic_0 = 0x1000660, /* U+0660 ARABIC-INDIC DIGIT ZERO */ + Key_Arabic_1 = 0x1000661, /* U+0661 ARABIC-INDIC DIGIT ONE */ + Key_Arabic_2 = 0x1000662, /* U+0662 ARABIC-INDIC DIGIT TWO */ + Key_Arabic_3 = 0x1000663, /* U+0663 ARABIC-INDIC DIGIT THREE */ + Key_Arabic_4 = 0x1000664, /* U+0664 ARABIC-INDIC DIGIT FOUR */ + Key_Arabic_5 = 0x1000665, /* U+0665 ARABIC-INDIC DIGIT FIVE */ + Key_Arabic_6 = 0x1000666, /* U+0666 ARABIC-INDIC DIGIT SIX */ + Key_Arabic_7 = 0x1000667, /* U+0667 ARABIC-INDIC DIGIT SEVEN */ + Key_Arabic_8 = 0x1000668, /* U+0668 ARABIC-INDIC DIGIT EIGHT */ + Key_Arabic_9 = 0x1000669, /* U+0669 ARABIC-INDIC DIGIT NINE */ + Key_Arabic_semicolon = 0x05bb, /* U+061B ARABIC SEMICOLON */ + Key_Arabic_question_mark = 0x05bf, /* U+061F ARABIC QUESTION MARK */ + Key_Arabic_hamza = 0x05c1, /* U+0621 ARABIC LETTER HAMZA */ + Key_Arabic_maddaonalef = 0x05c2, /* U+0622 ARABIC LETTER ALEF WITH MADDA ABOVE */ + Key_Arabic_hamzaonalef = 0x05c3, /* U+0623 ARABIC LETTER ALEF WITH HAMZA ABOVE */ + Key_Arabic_hamzaonwaw = 0x05c4, /* U+0624 ARABIC LETTER WAW WITH HAMZA ABOVE */ + Key_Arabic_hamzaunderalef = 0x05c5, /* U+0625 ARABIC LETTER ALEF WITH HAMZA BELOW */ + Key_Arabic_hamzaonyeh = 0x05c6, /* U+0626 ARABIC LETTER YEH WITH HAMZA ABOVE */ + Key_Arabic_alef = 0x05c7, /* U+0627 ARABIC LETTER ALEF */ + Key_Arabic_beh = 0x05c8, /* U+0628 ARABIC LETTER BEH */ + Key_Arabic_tehmarbuta = 0x05c9, /* U+0629 ARABIC LETTER TEH MARBUTA */ + Key_Arabic_teh = 0x05ca, /* U+062A ARABIC LETTER TEH */ + Key_Arabic_theh = 0x05cb, /* U+062B ARABIC LETTER THEH */ + Key_Arabic_jeem = 0x05cc, /* U+062C ARABIC LETTER JEEM */ + Key_Arabic_hah = 0x05cd, /* U+062D ARABIC LETTER HAH */ + Key_Arabic_khah = 0x05ce, /* U+062E ARABIC LETTER KHAH */ + Key_Arabic_dal = 0x05cf, /* U+062F ARABIC LETTER DAL */ + Key_Arabic_thal = 0x05d0, /* U+0630 ARABIC LETTER THAL */ + Key_Arabic_ra = 0x05d1, /* U+0631 ARABIC LETTER REH */ + Key_Arabic_zain = 0x05d2, /* U+0632 ARABIC LETTER ZAIN */ + Key_Arabic_seen = 0x05d3, /* U+0633 ARABIC LETTER SEEN */ + Key_Arabic_sheen = 0x05d4, /* U+0634 ARABIC LETTER SHEEN */ + Key_Arabic_sad = 0x05d5, /* U+0635 ARABIC LETTER SAD */ + Key_Arabic_dad = 0x05d6, /* U+0636 ARABIC LETTER DAD */ + Key_Arabic_tah = 0x05d7, /* U+0637 ARABIC LETTER TAH */ + Key_Arabic_zah = 0x05d8, /* U+0638 ARABIC LETTER ZAH */ + Key_Arabic_ain = 0x05d9, /* U+0639 ARABIC LETTER AIN */ + Key_Arabic_ghain = 0x05da, /* U+063A ARABIC LETTER GHAIN */ + Key_Arabic_tatweel = 0x05e0, /* U+0640 ARABIC TATWEEL */ + Key_Arabic_feh = 0x05e1, /* U+0641 ARABIC LETTER FEH */ + Key_Arabic_qaf = 0x05e2, /* U+0642 ARABIC LETTER QAF */ + Key_Arabic_kaf = 0x05e3, /* U+0643 ARABIC LETTER KAF */ + Key_Arabic_lam = 0x05e4, /* U+0644 ARABIC LETTER LAM */ + Key_Arabic_meem = 0x05e5, /* U+0645 ARABIC LETTER MEEM */ + Key_Arabic_noon = 0x05e6, /* U+0646 ARABIC LETTER NOON */ + Key_Arabic_ha = 0x05e7, /* U+0647 ARABIC LETTER HEH */ + Key_Arabic_heh = 0x05e7, /* deprecated */ + Key_Arabic_waw = 0x05e8, /* U+0648 ARABIC LETTER WAW */ + Key_Arabic_alefmaksura = 0x05e9, /* U+0649 ARABIC LETTER ALEF MAKSURA */ + Key_Arabic_yeh = 0x05ea, /* U+064A ARABIC LETTER YEH */ + Key_Arabic_fathatan = 0x05eb, /* U+064B ARABIC FATHATAN */ + Key_Arabic_dammatan = 0x05ec, /* U+064C ARABIC DAMMATAN */ + Key_Arabic_kasratan = 0x05ed, /* U+064D ARABIC KASRATAN */ + Key_Arabic_fatha = 0x05ee, /* U+064E ARABIC FATHA */ + Key_Arabic_damma = 0x05ef, /* U+064F ARABIC DAMMA */ + Key_Arabic_kasra = 0x05f0, /* U+0650 ARABIC KASRA */ + Key_Arabic_shadda = 0x05f1, /* U+0651 ARABIC SHADDA */ + Key_Arabic_sukun = 0x05f2, /* U+0652 ARABIC SUKUN */ + Key_Arabic_madda_above = 0x1000653, /* U+0653 ARABIC MADDAH ABOVE */ + Key_Arabic_hamza_above = 0x1000654, /* U+0654 ARABIC HAMZA ABOVE */ + Key_Arabic_hamza_below = 0x1000655, /* U+0655 ARABIC HAMZA BELOW */ + Key_Arabic_jeh = 0x1000698, /* U+0698 ARABIC LETTER JEH */ + Key_Arabic_veh = 0x10006a4, /* U+06A4 ARABIC LETTER VEH */ + Key_Arabic_keheh = 0x10006a9, /* U+06A9 ARABIC LETTER KEHEH */ + Key_Arabic_gaf = 0x10006af, /* U+06AF ARABIC LETTER GAF */ + Key_Arabic_noon_ghunna = 0x10006ba, /* U+06BA ARABIC LETTER NOON GHUNNA */ + Key_Arabic_heh_doachashmee = 0x10006be, /* U+06BE ARABIC LETTER HEH DOACHASHMEE */ + Key_Farsi_yeh = 0x10006cc, /* U+06CC ARABIC LETTER FARSI YEH */ + Key_Arabic_farsi_yeh = 0x10006cc, /* U+06CC ARABIC LETTER FARSI YEH */ + Key_Arabic_yeh_baree = 0x10006d2, /* U+06D2 ARABIC LETTER YEH BARREE */ + Key_Arabic_heh_goal = 0x10006c1, /* U+06C1 ARABIC LETTER HEH GOAL */ + Key_Arabic_switch = 0xff7e, /* Alias for mode_switch */ + + + /* + * Cyrillic + * Byte 3 = 6 + */ + + Key_Cyrillic_GHE_bar = 0x1000492, /* U+0492 CYRILLIC CAPITAL LETTER GHE WITH STROKE */ + Key_Cyrillic_ghe_bar = 0x1000493, /* U+0493 CYRILLIC SMALL LETTER GHE WITH STROKE */ + Key_Cyrillic_ZHE_descender = 0x1000496, /* U+0496 CYRILLIC CAPITAL LETTER ZHE WITH DESCENDER */ + Key_Cyrillic_zhe_descender = 0x1000497, /* U+0497 CYRILLIC SMALL LETTER ZHE WITH DESCENDER */ + Key_Cyrillic_KA_descender = 0x100049a, /* U+049A CYRILLIC CAPITAL LETTER KA WITH DESCENDER */ + Key_Cyrillic_ka_descender = 0x100049b, /* U+049B CYRILLIC SMALL LETTER KA WITH DESCENDER */ + Key_Cyrillic_KA_vertstroke = 0x100049c, /* U+049C CYRILLIC CAPITAL LETTER KA WITH VERTICAL STROKE */ + Key_Cyrillic_ka_vertstroke = 0x100049d, /* U+049D CYRILLIC SMALL LETTER KA WITH VERTICAL STROKE */ + Key_Cyrillic_EN_descender = 0x10004a2, /* U+04A2 CYRILLIC CAPITAL LETTER EN WITH DESCENDER */ + Key_Cyrillic_en_descender = 0x10004a3, /* U+04A3 CYRILLIC SMALL LETTER EN WITH DESCENDER */ + Key_Cyrillic_U_straight = 0x10004ae, /* U+04AE CYRILLIC CAPITAL LETTER STRAIGHT U */ + Key_Cyrillic_u_straight = 0x10004af, /* U+04AF CYRILLIC SMALL LETTER STRAIGHT U */ + Key_Cyrillic_U_straight_bar = 0x10004b0, /* U+04B0 CYRILLIC CAPITAL LETTER STRAIGHT U WITH STROKE */ + Key_Cyrillic_u_straight_bar = 0x10004b1, /* U+04B1 CYRILLIC SMALL LETTER STRAIGHT U WITH STROKE */ + Key_Cyrillic_HA_descender = 0x10004b2, /* U+04B2 CYRILLIC CAPITAL LETTER HA WITH DESCENDER */ + Key_Cyrillic_ha_descender = 0x10004b3, /* U+04B3 CYRILLIC SMALL LETTER HA WITH DESCENDER */ + Key_Cyrillic_CHE_descender = 0x10004b6, /* U+04B6 CYRILLIC CAPITAL LETTER CHE WITH DESCENDER */ + Key_Cyrillic_che_descender = 0x10004b7, /* U+04B7 CYRILLIC SMALL LETTER CHE WITH DESCENDER */ + Key_Cyrillic_CHE_vertstroke = 0x10004b8, /* U+04B8 CYRILLIC CAPITAL LETTER CHE WITH VERTICAL STROKE */ + Key_Cyrillic_che_vertstroke = 0x10004b9, /* U+04B9 CYRILLIC SMALL LETTER CHE WITH VERTICAL STROKE */ + Key_Cyrillic_SHHA = 0x10004ba, /* U+04BA CYRILLIC CAPITAL LETTER SHHA */ + Key_Cyrillic_shha = 0x10004bb, /* U+04BB CYRILLIC SMALL LETTER SHHA */ + + Key_Cyrillic_SCHWA = 0x10004d8, /* U+04D8 CYRILLIC CAPITAL LETTER SCHWA */ + Key_Cyrillic_schwa = 0x10004d9, /* U+04D9 CYRILLIC SMALL LETTER SCHWA */ + Key_Cyrillic_I_macron = 0x10004e2, /* U+04E2 CYRILLIC CAPITAL LETTER I WITH MACRON */ + Key_Cyrillic_i_macron = 0x10004e3, /* U+04E3 CYRILLIC SMALL LETTER I WITH MACRON */ + Key_Cyrillic_O_bar = 0x10004e8, /* U+04E8 CYRILLIC CAPITAL LETTER BARRED O */ + Key_Cyrillic_o_bar = 0x10004e9, /* U+04E9 CYRILLIC SMALL LETTER BARRED O */ + Key_Cyrillic_U_macron = 0x10004ee, /* U+04EE CYRILLIC CAPITAL LETTER U WITH MACRON */ + Key_Cyrillic_u_macron = 0x10004ef, /* U+04EF CYRILLIC SMALL LETTER U WITH MACRON */ + + Key_Serbian_dje = 0x06a1, /* U+0452 CYRILLIC SMALL LETTER DJE */ + Key_Macedonia_gje = 0x06a2, /* U+0453 CYRILLIC SMALL LETTER GJE */ + Key_Cyrillic_io = 0x06a3, /* U+0451 CYRILLIC SMALL LETTER IO */ + Key_Ukrainian_ie = 0x06a4, /* U+0454 CYRILLIC SMALL LETTER UKRAINIAN IE */ + Key_Ukranian_je = 0x06a4, /* deprecated */ + Key_Macedonia_dse = 0x06a5, /* U+0455 CYRILLIC SMALL LETTER DZE */ + Key_Ukrainian_i = 0x06a6, /* U+0456 CYRILLIC SMALL LETTER BYELORUSSIAN-UKRAINIAN I */ + Key_Ukranian_i = 0x06a6, /* deprecated */ + Key_Ukrainian_yi = 0x06a7, /* U+0457 CYRILLIC SMALL LETTER YI */ + Key_Ukranian_yi = 0x06a7, /* deprecated */ + Key_Cyrillic_je = 0x06a8, /* U+0458 CYRILLIC SMALL LETTER JE */ + Key_Serbian_je = 0x06a8, /* deprecated */ + Key_Cyrillic_lje = 0x06a9, /* U+0459 CYRILLIC SMALL LETTER LJE */ + Key_Serbian_lje = 0x06a9, /* deprecated */ + Key_Cyrillic_nje = 0x06aa, /* U+045A CYRILLIC SMALL LETTER NJE */ + Key_Serbian_nje = 0x06aa, /* deprecated */ + Key_Serbian_tshe = 0x06ab, /* U+045B CYRILLIC SMALL LETTER TSHE */ + Key_Macedonia_kje = 0x06ac, /* U+045C CYRILLIC SMALL LETTER KJE */ + Key_Ukrainian_ghe_with_upturn = 0x06ad, /* U+0491 CYRILLIC SMALL LETTER GHE WITH UPTURN */ + Key_Byelorussian_shortu = 0x06ae, /* U+045E CYRILLIC SMALL LETTER SHORT U */ + Key_Cyrillic_dzhe = 0x06af, /* U+045F CYRILLIC SMALL LETTER DZHE */ + Key_Serbian_dze = 0x06af, /* deprecated */ + Key_numerosign = 0x06b0, /* U+2116 NUMERO SIGN */ + Key_Serbian_DJE = 0x06b1, /* U+0402 CYRILLIC CAPITAL LETTER DJE */ + Key_Macedonia_GJE = 0x06b2, /* U+0403 CYRILLIC CAPITAL LETTER GJE */ + Key_Cyrillic_IO = 0x06b3, /* U+0401 CYRILLIC CAPITAL LETTER IO */ + Key_Ukrainian_IE = 0x06b4, /* U+0404 CYRILLIC CAPITAL LETTER UKRAINIAN IE */ + Key_Ukranian_JE = 0x06b4, /* deprecated */ + Key_Macedonia_DSE = 0x06b5, /* U+0405 CYRILLIC CAPITAL LETTER DZE */ + Key_Ukrainian_I = 0x06b6, /* U+0406 CYRILLIC CAPITAL LETTER BYELORUSSIAN-UKRAINIAN I */ + Key_Ukranian_I = 0x06b6, /* deprecated */ + Key_Ukrainian_YI = 0x06b7, /* U+0407 CYRILLIC CAPITAL LETTER YI */ + Key_Ukranian_YI = 0x06b7, /* deprecated */ + Key_Cyrillic_JE = 0x06b8, /* U+0408 CYRILLIC CAPITAL LETTER JE */ + Key_Serbian_JE = 0x06b8, /* deprecated */ + Key_Cyrillic_LJE = 0x06b9, /* U+0409 CYRILLIC CAPITAL LETTER LJE */ + Key_Serbian_LJE = 0x06b9, /* deprecated */ + Key_Cyrillic_NJE = 0x06ba, /* U+040A CYRILLIC CAPITAL LETTER NJE */ + Key_Serbian_NJE = 0x06ba, /* deprecated */ + Key_Serbian_TSHE = 0x06bb, /* U+040B CYRILLIC CAPITAL LETTER TSHE */ + Key_Macedonia_KJE = 0x06bc, /* U+040C CYRILLIC CAPITAL LETTER KJE */ + Key_Ukrainian_GHE_WITH_UPTURN = 0x06bd, /* U+0490 CYRILLIC CAPITAL LETTER GHE WITH UPTURN */ + Key_Byelorussian_SHORTU = 0x06be, /* U+040E CYRILLIC CAPITAL LETTER SHORT U */ + Key_Cyrillic_DZHE = 0x06bf, /* U+040F CYRILLIC CAPITAL LETTER DZHE */ + Key_Serbian_DZE = 0x06bf, /* deprecated */ + Key_Cyrillic_yu = 0x06c0, /* U+044E CYRILLIC SMALL LETTER YU */ + Key_Cyrillic_a = 0x06c1, /* U+0430 CYRILLIC SMALL LETTER A */ + Key_Cyrillic_be = 0x06c2, /* U+0431 CYRILLIC SMALL LETTER BE */ + Key_Cyrillic_tse = 0x06c3, /* U+0446 CYRILLIC SMALL LETTER TSE */ + Key_Cyrillic_de = 0x06c4, /* U+0434 CYRILLIC SMALL LETTER DE */ + Key_Cyrillic_ie = 0x06c5, /* U+0435 CYRILLIC SMALL LETTER IE */ + Key_Cyrillic_ef = 0x06c6, /* U+0444 CYRILLIC SMALL LETTER EF */ + Key_Cyrillic_ghe = 0x06c7, /* U+0433 CYRILLIC SMALL LETTER GHE */ + Key_Cyrillic_ha = 0x06c8, /* U+0445 CYRILLIC SMALL LETTER HA */ + Key_Cyrillic_i = 0x06c9, /* U+0438 CYRILLIC SMALL LETTER I */ + Key_Cyrillic_shorti = 0x06ca, /* U+0439 CYRILLIC SMALL LETTER SHORT I */ + Key_Cyrillic_ka = 0x06cb, /* U+043A CYRILLIC SMALL LETTER KA */ + Key_Cyrillic_el = 0x06cc, /* U+043B CYRILLIC SMALL LETTER EL */ + Key_Cyrillic_em = 0x06cd, /* U+043C CYRILLIC SMALL LETTER EM */ + Key_Cyrillic_en = 0x06ce, /* U+043D CYRILLIC SMALL LETTER EN */ + Key_Cyrillic_o = 0x06cf, /* U+043E CYRILLIC SMALL LETTER O */ + Key_Cyrillic_pe = 0x06d0, /* U+043F CYRILLIC SMALL LETTER PE */ + Key_Cyrillic_ya = 0x06d1, /* U+044F CYRILLIC SMALL LETTER YA */ + Key_Cyrillic_er = 0x06d2, /* U+0440 CYRILLIC SMALL LETTER ER */ + Key_Cyrillic_es = 0x06d3, /* U+0441 CYRILLIC SMALL LETTER ES */ + Key_Cyrillic_te = 0x06d4, /* U+0442 CYRILLIC SMALL LETTER TE */ + Key_Cyrillic_u = 0x06d5, /* U+0443 CYRILLIC SMALL LETTER U */ + Key_Cyrillic_zhe = 0x06d6, /* U+0436 CYRILLIC SMALL LETTER ZHE */ + Key_Cyrillic_ve = 0x06d7, /* U+0432 CYRILLIC SMALL LETTER VE */ + Key_Cyrillic_softsign = 0x06d8, /* U+044C CYRILLIC SMALL LETTER SOFT SIGN */ + Key_Cyrillic_yeru = 0x06d9, /* U+044B CYRILLIC SMALL LETTER YERU */ + Key_Cyrillic_ze = 0x06da, /* U+0437 CYRILLIC SMALL LETTER ZE */ + Key_Cyrillic_sha = 0x06db, /* U+0448 CYRILLIC SMALL LETTER SHA */ + Key_Cyrillic_e = 0x06dc, /* U+044D CYRILLIC SMALL LETTER E */ + Key_Cyrillic_shcha = 0x06dd, /* U+0449 CYRILLIC SMALL LETTER SHCHA */ + Key_Cyrillic_che = 0x06de, /* U+0447 CYRILLIC SMALL LETTER CHE */ + Key_Cyrillic_hardsign = 0x06df, /* U+044A CYRILLIC SMALL LETTER HARD SIGN */ + Key_Cyrillic_YU = 0x06e0, /* U+042E CYRILLIC CAPITAL LETTER YU */ + Key_Cyrillic_A = 0x06e1, /* U+0410 CYRILLIC CAPITAL LETTER A */ + Key_Cyrillic_BE = 0x06e2, /* U+0411 CYRILLIC CAPITAL LETTER BE */ + Key_Cyrillic_TSE = 0x06e3, /* U+0426 CYRILLIC CAPITAL LETTER TSE */ + Key_Cyrillic_DE = 0x06e4, /* U+0414 CYRILLIC CAPITAL LETTER DE */ + Key_Cyrillic_IE = 0x06e5, /* U+0415 CYRILLIC CAPITAL LETTER IE */ + Key_Cyrillic_EF = 0x06e6, /* U+0424 CYRILLIC CAPITAL LETTER EF */ + Key_Cyrillic_GHE = 0x06e7, /* U+0413 CYRILLIC CAPITAL LETTER GHE */ + Key_Cyrillic_HA = 0x06e8, /* U+0425 CYRILLIC CAPITAL LETTER HA */ + Key_Cyrillic_I = 0x06e9, /* U+0418 CYRILLIC CAPITAL LETTER I */ + Key_Cyrillic_SHORTI = 0x06ea, /* U+0419 CYRILLIC CAPITAL LETTER SHORT I */ + Key_Cyrillic_KA = 0x06eb, /* U+041A CYRILLIC CAPITAL LETTER KA */ + Key_Cyrillic_EL = 0x06ec, /* U+041B CYRILLIC CAPITAL LETTER EL */ + Key_Cyrillic_EM = 0x06ed, /* U+041C CYRILLIC CAPITAL LETTER EM */ + Key_Cyrillic_EN = 0x06ee, /* U+041D CYRILLIC CAPITAL LETTER EN */ + Key_Cyrillic_O = 0x06ef, /* U+041E CYRILLIC CAPITAL LETTER O */ + Key_Cyrillic_PE = 0x06f0, /* U+041F CYRILLIC CAPITAL LETTER PE */ + Key_Cyrillic_YA = 0x06f1, /* U+042F CYRILLIC CAPITAL LETTER YA */ + Key_Cyrillic_ER = 0x06f2, /* U+0420 CYRILLIC CAPITAL LETTER ER */ + Key_Cyrillic_ES = 0x06f3, /* U+0421 CYRILLIC CAPITAL LETTER ES */ + Key_Cyrillic_TE = 0x06f4, /* U+0422 CYRILLIC CAPITAL LETTER TE */ + Key_Cyrillic_U = 0x06f5, /* U+0423 CYRILLIC CAPITAL LETTER U */ + Key_Cyrillic_ZHE = 0x06f6, /* U+0416 CYRILLIC CAPITAL LETTER ZHE */ + Key_Cyrillic_VE = 0x06f7, /* U+0412 CYRILLIC CAPITAL LETTER VE */ + Key_Cyrillic_SOFTSIGN = 0x06f8, /* U+042C CYRILLIC CAPITAL LETTER SOFT SIGN */ + Key_Cyrillic_YERU = 0x06f9, /* U+042B CYRILLIC CAPITAL LETTER YERU */ + Key_Cyrillic_ZE = 0x06fa, /* U+0417 CYRILLIC CAPITAL LETTER ZE */ + Key_Cyrillic_SHA = 0x06fb, /* U+0428 CYRILLIC CAPITAL LETTER SHA */ + Key_Cyrillic_E = 0x06fc, /* U+042D CYRILLIC CAPITAL LETTER E */ + Key_Cyrillic_SHCHA = 0x06fd, /* U+0429 CYRILLIC CAPITAL LETTER SHCHA */ + Key_Cyrillic_CHE = 0x06fe, /* U+0427 CYRILLIC CAPITAL LETTER CHE */ + Key_Cyrillic_HARDSIGN = 0x06ff, /* U+042A CYRILLIC CAPITAL LETTER HARD SIGN */ + + + /* + * Greek + * (based on an early draft of, and not quite identical to, ISO/IEC 8859-7) + * Byte 3 = 7 + */ + + + Key_Greek_ALPHAaccent = 0x07a1, /* U+0386 GREEK CAPITAL LETTER ALPHA WITH TONOS */ + Key_Greek_EPSILONaccent = 0x07a2, /* U+0388 GREEK CAPITAL LETTER EPSILON WITH TONOS */ + Key_Greek_ETAaccent = 0x07a3, /* U+0389 GREEK CAPITAL LETTER ETA WITH TONOS */ + Key_Greek_IOTAaccent = 0x07a4, /* U+038A GREEK CAPITAL LETTER IOTA WITH TONOS */ + Key_Greek_IOTAdieresis = 0x07a5, /* U+03AA GREEK CAPITAL LETTER IOTA WITH DIALYTIKA */ + Key_Greek_IOTAdiaeresis = 0x07a5, /* old typo */ + Key_Greek_OMICRONaccent = 0x07a7, /* U+038C GREEK CAPITAL LETTER OMICRON WITH TONOS */ + Key_Greek_UPSILONaccent = 0x07a8, /* U+038E GREEK CAPITAL LETTER UPSILON WITH TONOS */ + Key_Greek_UPSILONdieresis = 0x07a9, /* U+03AB GREEK CAPITAL LETTER UPSILON WITH DIALYTIKA */ + Key_Greek_OMEGAaccent = 0x07ab, /* U+038F GREEK CAPITAL LETTER OMEGA WITH TONOS */ + Key_Greek_accentdieresis = 0x07ae, /* U+0385 GREEK DIALYTIKA TONOS */ + Key_Greek_horizbar = 0x07af, /* U+2015 HORIZONTAL BAR */ + Key_Greek_alphaaccent = 0x07b1, /* U+03AC GREEK SMALL LETTER ALPHA WITH TONOS */ + Key_Greek_epsilonaccent = 0x07b2, /* U+03AD GREEK SMALL LETTER EPSILON WITH TONOS */ + Key_Greek_etaaccent = 0x07b3, /* U+03AE GREEK SMALL LETTER ETA WITH TONOS */ + Key_Greek_iotaaccent = 0x07b4, /* U+03AF GREEK SMALL LETTER IOTA WITH TONOS */ + Key_Greek_iotadieresis = 0x07b5, /* U+03CA GREEK SMALL LETTER IOTA WITH DIALYTIKA */ + Key_Greek_iotaaccentdieresis = 0x07b6, /* U+0390 GREEK SMALL LETTER IOTA WITH DIALYTIKA AND TONOS */ + Key_Greek_omicronaccent = 0x07b7, /* U+03CC GREEK SMALL LETTER OMICRON WITH TONOS */ + Key_Greek_upsilonaccent = 0x07b8, /* U+03CD GREEK SMALL LETTER UPSILON WITH TONOS */ + Key_Greek_upsilondieresis = 0x07b9, /* U+03CB GREEK SMALL LETTER UPSILON WITH DIALYTIKA */ + Key_Greek_upsilonaccentdieresis = 0x07ba, /* U+03B0 GREEK SMALL LETTER UPSILON WITH DIALYTIKA AND TONOS */ + Key_Greek_omegaaccent = 0x07bb, /* U+03CE GREEK SMALL LETTER OMEGA WITH TONOS */ + Key_Greek_ALPHA = 0x07c1, /* U+0391 GREEK CAPITAL LETTER ALPHA */ + Key_Greek_BETA = 0x07c2, /* U+0392 GREEK CAPITAL LETTER BETA */ + Key_Greek_GAMMA = 0x07c3, /* U+0393 GREEK CAPITAL LETTER GAMMA */ + Key_Greek_DELTA = 0x07c4, /* U+0394 GREEK CAPITAL LETTER DELTA */ + Key_Greek_EPSILON = 0x07c5, /* U+0395 GREEK CAPITAL LETTER EPSILON */ + Key_Greek_ZETA = 0x07c6, /* U+0396 GREEK CAPITAL LETTER ZETA */ + Key_Greek_ETA = 0x07c7, /* U+0397 GREEK CAPITAL LETTER ETA */ + Key_Greek_THETA = 0x07c8, /* U+0398 GREEK CAPITAL LETTER THETA */ + Key_Greek_IOTA = 0x07c9, /* U+0399 GREEK CAPITAL LETTER IOTA */ + Key_Greek_KAPPA = 0x07ca, /* U+039A GREEK CAPITAL LETTER KAPPA */ + Key_Greek_LAMDA = 0x07cb, /* U+039B GREEK CAPITAL LETTER LAMDA */ + Key_Greek_LAMBDA = 0x07cb, /* U+039B GREEK CAPITAL LETTER LAMDA */ + Key_Greek_MU = 0x07cc, /* U+039C GREEK CAPITAL LETTER MU */ + Key_Greek_NU = 0x07cd, /* U+039D GREEK CAPITAL LETTER NU */ + Key_Greek_XI = 0x07ce, /* U+039E GREEK CAPITAL LETTER XI */ + Key_Greek_OMICRON = 0x07cf, /* U+039F GREEK CAPITAL LETTER OMICRON */ + Key_Greek_PI = 0x07d0, /* U+03A0 GREEK CAPITAL LETTER PI */ + Key_Greek_RHO = 0x07d1, /* U+03A1 GREEK CAPITAL LETTER RHO */ + Key_Greek_SIGMA = 0x07d2, /* U+03A3 GREEK CAPITAL LETTER SIGMA */ + Key_Greek_TAU = 0x07d4, /* U+03A4 GREEK CAPITAL LETTER TAU */ + Key_Greek_UPSILON = 0x07d5, /* U+03A5 GREEK CAPITAL LETTER UPSILON */ + Key_Greek_PHI = 0x07d6, /* U+03A6 GREEK CAPITAL LETTER PHI */ + Key_Greek_CHI = 0x07d7, /* U+03A7 GREEK CAPITAL LETTER CHI */ + Key_Greek_PSI = 0x07d8, /* U+03A8 GREEK CAPITAL LETTER PSI */ + Key_Greek_OMEGA = 0x07d9, /* U+03A9 GREEK CAPITAL LETTER OMEGA */ + Key_Greek_alpha = 0x07e1, /* U+03B1 GREEK SMALL LETTER ALPHA */ + Key_Greek_beta = 0x07e2, /* U+03B2 GREEK SMALL LETTER BETA */ + Key_Greek_gamma = 0x07e3, /* U+03B3 GREEK SMALL LETTER GAMMA */ + Key_Greek_delta = 0x07e4, /* U+03B4 GREEK SMALL LETTER DELTA */ + Key_Greek_epsilon = 0x07e5, /* U+03B5 GREEK SMALL LETTER EPSILON */ + Key_Greek_zeta = 0x07e6, /* U+03B6 GREEK SMALL LETTER ZETA */ + Key_Greek_eta = 0x07e7, /* U+03B7 GREEK SMALL LETTER ETA */ + Key_Greek_theta = 0x07e8, /* U+03B8 GREEK SMALL LETTER THETA */ + Key_Greek_iota = 0x07e9, /* U+03B9 GREEK SMALL LETTER IOTA */ + Key_Greek_kappa = 0x07ea, /* U+03BA GREEK SMALL LETTER KAPPA */ + Key_Greek_lamda = 0x07eb, /* U+03BB GREEK SMALL LETTER LAMDA */ + Key_Greek_lambda = 0x07eb, /* U+03BB GREEK SMALL LETTER LAMDA */ + Key_Greek_mu = 0x07ec, /* U+03BC GREEK SMALL LETTER MU */ + Key_Greek_nu = 0x07ed, /* U+03BD GREEK SMALL LETTER NU */ + Key_Greek_xi = 0x07ee, /* U+03BE GREEK SMALL LETTER XI */ + Key_Greek_omicron = 0x07ef, /* U+03BF GREEK SMALL LETTER OMICRON */ + Key_Greek_pi = 0x07f0, /* U+03C0 GREEK SMALL LETTER PI */ + Key_Greek_rho = 0x07f1, /* U+03C1 GREEK SMALL LETTER RHO */ + Key_Greek_sigma = 0x07f2, /* U+03C3 GREEK SMALL LETTER SIGMA */ + Key_Greek_finalsmallsigma = 0x07f3, /* U+03C2 GREEK SMALL LETTER FINAL SIGMA */ + Key_Greek_tau = 0x07f4, /* U+03C4 GREEK SMALL LETTER TAU */ + Key_Greek_upsilon = 0x07f5, /* U+03C5 GREEK SMALL LETTER UPSILON */ + Key_Greek_phi = 0x07f6, /* U+03C6 GREEK SMALL LETTER PHI */ + Key_Greek_chi = 0x07f7, /* U+03C7 GREEK SMALL LETTER CHI */ + Key_Greek_psi = 0x07f8, /* U+03C8 GREEK SMALL LETTER PSI */ + Key_Greek_omega = 0x07f9, /* U+03C9 GREEK SMALL LETTER OMEGA */ + Key_Greek_switch = 0xff7e, /* Alias for mode_switch */ + + + /* + * Technical + * (from the DEC VT330/VT420 Technical Character Set, http://vt100.net/charsets/technical.html) + * Byte 3 = 8 + */ + + + Key_leftradical = 0x08a1, /* U+23B7 RADICAL SYMBOL BOTTOM */ + Key_topleftradical = 0x08a2, /*(U+250C BOX DRAWINGS LIGHT DOWN AND RIGHT)*/ + Key_horizconnector = 0x08a3, /*(U+2500 BOX DRAWINGS LIGHT HORIZONTAL)*/ + Key_topintegral = 0x08a4, /* U+2320 TOP HALF INTEGRAL */ + Key_botintegral = 0x08a5, /* U+2321 BOTTOM HALF INTEGRAL */ + Key_vertconnector = 0x08a6, /*(U+2502 BOX DRAWINGS LIGHT VERTICAL)*/ + Key_topleftsqbracket = 0x08a7, /* U+23A1 LEFT SQUARE BRACKET UPPER CORNER */ + Key_botleftsqbracket = 0x08a8, /* U+23A3 LEFT SQUARE BRACKET LOWER CORNER */ + Key_toprightsqbracket = 0x08a9, /* U+23A4 RIGHT SQUARE BRACKET UPPER CORNER */ + Key_botrightsqbracket = 0x08aa, /* U+23A6 RIGHT SQUARE BRACKET LOWER CORNER */ + Key_topleftparens = 0x08ab, /* U+239B LEFT PARENTHESIS UPPER HOOK */ + Key_botleftparens = 0x08ac, /* U+239D LEFT PARENTHESIS LOWER HOOK */ + Key_toprightparens = 0x08ad, /* U+239E RIGHT PARENTHESIS UPPER HOOK */ + Key_botrightparens = 0x08ae, /* U+23A0 RIGHT PARENTHESIS LOWER HOOK */ + Key_leftmiddlecurlybrace = 0x08af, /* U+23A8 LEFT CURLY BRACKET MIDDLE PIECE */ + Key_rightmiddlecurlybrace = 0x08b0, /* U+23AC RIGHT CURLY BRACKET MIDDLE PIECE */ + Key_topleftsummation = 0x08b1, + Key_botleftsummation = 0x08b2, + Key_topvertsummationconnector = 0x08b3, + Key_botvertsummationconnector = 0x08b4, + Key_toprightsummation = 0x08b5, + Key_botrightsummation = 0x08b6, + Key_rightmiddlesummation = 0x08b7, + Key_lessthanequal = 0x08bc, /* U+2264 LESS-THAN OR EQUAL TO */ + Key_notequal = 0x08bd, /* U+2260 NOT EQUAL TO */ + Key_greaterthanequal = 0x08be, /* U+2265 GREATER-THAN OR EQUAL TO */ + Key_integral = 0x08bf, /* U+222B INTEGRAL */ + Key_therefore = 0x08c0, /* U+2234 THEREFORE */ + Key_variation = 0x08c1, /* U+221D PROPORTIONAL TO */ + Key_infinity = 0x08c2, /* U+221E INFINITY */ + Key_nabla = 0x08c5, /* U+2207 NABLA */ + Key_approximate = 0x08c8, /* U+223C TILDE OPERATOR */ + Key_similarequal = 0x08c9, /* U+2243 ASYMPTOTICALLY EQUAL TO */ + Key_ifonlyif = 0x08cd, /* U+21D4 LEFT RIGHT DOUBLE ARROW */ + Key_implies = 0x08ce, /* U+21D2 RIGHTWARDS DOUBLE ARROW */ + Key_identical = 0x08cf, /* U+2261 IDENTICAL TO */ + Key_radical = 0x08d6, /* U+221A SQUARE ROOT */ + Key_includedin = 0x08da, /* U+2282 SUBSET OF */ + Key_includes = 0x08db, /* U+2283 SUPERSET OF */ + Key_intersection = 0x08dc, /* U+2229 INTERSECTION */ + Key_union = 0x08dd, /* U+222A UNION */ + Key_logicaland = 0x08de, /* U+2227 LOGICAL AND */ + Key_logicalor = 0x08df, /* U+2228 LOGICAL OR */ + Key_partialderivative = 0x08ef, /* U+2202 PARTIAL DIFFERENTIAL */ + Key_function = 0x08f6, /* U+0192 LATIN SMALL LETTER F WITH HOOK */ + Key_leftarrow = 0x08fb, /* U+2190 LEFTWARDS ARROW */ + Key_uparrow = 0x08fc, /* U+2191 UPWARDS ARROW */ + Key_rightarrow = 0x08fd, /* U+2192 RIGHTWARDS ARROW */ + Key_downarrow = 0x08fe, /* U+2193 DOWNWARDS ARROW */ + + + /* + * Special + * (from the DEC VT100 Special Graphics Character Set) + * Byte 3 = 9 + */ + + + Key_blank = 0x09df, + Key_soliddiamond = 0x09e0, /* U+25C6 BLACK DIAMOND */ + Key_checkerboard = 0x09e1, /* U+2592 MEDIUM SHADE */ + Key_ht = 0x09e2, /* U+2409 SYMBOL FOR HORIZONTAL TABULATION */ + Key_ff = 0x09e3, /* U+240C SYMBOL FOR FORM FEED */ + Key_cr = 0x09e4, /* U+240D SYMBOL FOR CARRIAGE RETURN */ + Key_lf = 0x09e5, /* U+240A SYMBOL FOR LINE FEED */ + Key_nl = 0x09e8, /* U+2424 SYMBOL FOR NEWLINE */ + Key_vt = 0x09e9, /* U+240B SYMBOL FOR VERTICAL TABULATION */ + Key_lowrightcorner = 0x09ea, /* U+2518 BOX DRAWINGS LIGHT UP AND LEFT */ + Key_uprightcorner = 0x09eb, /* U+2510 BOX DRAWINGS LIGHT DOWN AND LEFT */ + Key_upleftcorner = 0x09ec, /* U+250C BOX DRAWINGS LIGHT DOWN AND RIGHT */ + Key_lowleftcorner = 0x09ed, /* U+2514 BOX DRAWINGS LIGHT UP AND RIGHT */ + Key_crossinglines = 0x09ee, /* U+253C BOX DRAWINGS LIGHT VERTICAL AND HORIZONTAL */ + Key_horizlinescan1 = 0x09ef, /* U+23BA HORIZONTAL SCAN LINE-1 */ + Key_horizlinescan3 = 0x09f0, /* U+23BB HORIZONTAL SCAN LINE-3 */ + Key_horizlinescan5 = 0x09f1, /* U+2500 BOX DRAWINGS LIGHT HORIZONTAL */ + Key_horizlinescan7 = 0x09f2, /* U+23BC HORIZONTAL SCAN LINE-7 */ + Key_horizlinescan9 = 0x09f3, /* U+23BD HORIZONTAL SCAN LINE-9 */ + Key_leftt = 0x09f4, /* U+251C BOX DRAWINGS LIGHT VERTICAL AND RIGHT */ + Key_rightt = 0x09f5, /* U+2524 BOX DRAWINGS LIGHT VERTICAL AND LEFT */ + Key_bott = 0x09f6, /* U+2534 BOX DRAWINGS LIGHT UP AND HORIZONTAL */ + Key_topt = 0x09f7, /* U+252C BOX DRAWINGS LIGHT DOWN AND HORIZONTAL */ + Key_vertbar = 0x09f8, /* U+2502 BOX DRAWINGS LIGHT VERTICAL */ + + + /* + * Publishing + * (these are probably from a long forgotten DEC Publishing + * font that once shipped with DECwrite) + * Byte 3 = = 0x0a, + */ + + + Key_emspace = 0x0aa1, /* U+2003 EM SPACE */ + Key_enspace = 0x0aa2, /* U+2002 EN SPACE */ + Key_em3space = 0x0aa3, /* U+2004 THREE-PER-EM SPACE */ + Key_em4space = 0x0aa4, /* U+2005 FOUR-PER-EM SPACE */ + Key_digitspace = 0x0aa5, /* U+2007 FIGURE SPACE */ + Key_punctspace = 0x0aa6, /* U+2008 PUNCTUATION SPACE */ + Key_thinspace = 0x0aa7, /* U+2009 THIN SPACE */ + Key_hairspace = 0x0aa8, /* U+200A HAIR SPACE */ + Key_emdash = 0x0aa9, /* U+2014 EM DASH */ + Key_endash = 0x0aaa, /* U+2013 EN DASH */ + Key_signifblank = 0x0aac, /*(U+2423 OPEN BOX)*/ + Key_ellipsis = 0x0aae, /* U+2026 HORIZONTAL ELLIPSIS */ + Key_doubbaselinedot = 0x0aaf, /* U+2025 TWO DOT LEADER */ + Key_onethird = 0x0ab0, /* U+2153 VULGAR FRACTION ONE THIRD */ + Key_twothirds = 0x0ab1, /* U+2154 VULGAR FRACTION TWO THIRDS */ + Key_onefifth = 0x0ab2, /* U+2155 VULGAR FRACTION ONE FIFTH */ + Key_twofifths = 0x0ab3, /* U+2156 VULGAR FRACTION TWO FIFTHS */ + Key_threefifths = 0x0ab4, /* U+2157 VULGAR FRACTION THREE FIFTHS */ + Key_fourfifths = 0x0ab5, /* U+2158 VULGAR FRACTION FOUR FIFTHS */ + Key_onesixth = 0x0ab6, /* U+2159 VULGAR FRACTION ONE SIXTH */ + Key_fivesixths = 0x0ab7, /* U+215A VULGAR FRACTION FIVE SIXTHS */ + Key_careof = 0x0ab8, /* U+2105 CARE OF */ + Key_figdash = 0x0abb, /* U+2012 FIGURE DASH */ + Key_leftanglebracket = 0x0abc, /*(U+27E8 MATHEMATICAL LEFT ANGLE BRACKET)*/ + Key_decimalpoint = 0x0abd, /*(U+002E FULL STOP)*/ + Key_rightanglebracket = 0x0abe, /*(U+27E9 MATHEMATICAL RIGHT ANGLE BRACKET)*/ + Key_marker = 0x0abf, + Key_oneeighth = 0x0ac3, /* U+215B VULGAR FRACTION ONE EIGHTH */ + Key_threeeighths = 0x0ac4, /* U+215C VULGAR FRACTION THREE EIGHTHS */ + Key_fiveeighths = 0x0ac5, /* U+215D VULGAR FRACTION FIVE EIGHTHS */ + Key_seveneighths = 0x0ac6, /* U+215E VULGAR FRACTION SEVEN EIGHTHS */ + Key_trademark = 0x0ac9, /* U+2122 TRADE MARK SIGN */ + Key_signaturemark = 0x0aca, /*(U+2613 SALTIRE)*/ + Key_trademarkincircle = 0x0acb, + Key_leftopentriangle = 0x0acc, /*(U+25C1 WHITE LEFT-POINTING TRIANGLE)*/ + Key_rightopentriangle = 0x0acd, /*(U+25B7 WHITE RIGHT-POINTING TRIANGLE)*/ + Key_emopencircle = 0x0ace, /*(U+25CB WHITE CIRCLE)*/ + Key_emopenrectangle = 0x0acf, /*(U+25AF WHITE VERTICAL RECTANGLE)*/ + Key_leftsinglequotemark = 0x0ad0, /* U+2018 LEFT SINGLE QUOTATION MARK */ + Key_rightsinglequotemark = 0x0ad1, /* U+2019 RIGHT SINGLE QUOTATION MARK */ + Key_leftdoublequotemark = 0x0ad2, /* U+201C LEFT DOUBLE QUOTATION MARK */ + Key_rightdoublequotemark = 0x0ad3, /* U+201D RIGHT DOUBLE QUOTATION MARK */ + Key_prescription = 0x0ad4, /* U+211E PRESCRIPTION TAKE */ + Key_minutes = 0x0ad6, /* U+2032 PRIME */ + Key_seconds = 0x0ad7, /* U+2033 DOUBLE PRIME */ + Key_latincross = 0x0ad9, /* U+271D LATIN CROSS */ + Key_hexagram = 0x0ada, + Key_filledrectbullet = 0x0adb, /*(U+25AC BLACK RECTANGLE)*/ + Key_filledlefttribullet = 0x0adc, /*(U+25C0 BLACK LEFT-POINTING TRIANGLE)*/ + Key_filledrighttribullet = 0x0add, /*(U+25B6 BLACK RIGHT-POINTING TRIANGLE)*/ + Key_emfilledcircle = 0x0ade, /*(U+25CF BLACK CIRCLE)*/ + Key_emfilledrect = 0x0adf, /*(U+25AE BLACK VERTICAL RECTANGLE)*/ + Key_enopencircbullet = 0x0ae0, /*(U+25E6 WHITE BULLET)*/ + Key_enopensquarebullet = 0x0ae1, /*(U+25AB WHITE SMALL SQUARE)*/ + Key_openrectbullet = 0x0ae2, /*(U+25AD WHITE RECTANGLE)*/ + Key_opentribulletup = 0x0ae3, /*(U+25B3 WHITE UP-POINTING TRIANGLE)*/ + Key_opentribulletdown = 0x0ae4, /*(U+25BD WHITE DOWN-POINTING TRIANGLE)*/ + Key_openstar = 0x0ae5, /*(U+2606 WHITE STAR)*/ + Key_enfilledcircbullet = 0x0ae6, /*(U+2022 BULLET)*/ + Key_enfilledsqbullet = 0x0ae7, /*(U+25AA BLACK SMALL SQUARE)*/ + Key_filledtribulletup = 0x0ae8, /*(U+25B2 BLACK UP-POINTING TRIANGLE)*/ + Key_filledtribulletdown = 0x0ae9, /*(U+25BC BLACK DOWN-POINTING TRIANGLE)*/ + Key_leftpointer = 0x0aea, /*(U+261C WHITE LEFT POINTING INDEX)*/ + Key_rightpointer = 0x0aeb, /*(U+261E WHITE RIGHT POINTING INDEX)*/ + Key_club = 0x0aec, /* U+2663 BLACK CLUB SUIT */ + Key_diamond = 0x0aed, /* U+2666 BLACK DIAMOND SUIT */ + Key_heart = 0x0aee, /* U+2665 BLACK HEART SUIT */ + Key_maltesecross = 0x0af0, /* U+2720 MALTESE CROSS */ + Key_dagger = 0x0af1, /* U+2020 DAGGER */ + Key_doubledagger = 0x0af2, /* U+2021 DOUBLE DAGGER */ + Key_checkmark = 0x0af3, /* U+2713 CHECK MARK */ + Key_ballotcross = 0x0af4, /* U+2717 BALLOT X */ + Key_musicalsharp = 0x0af5, /* U+266F MUSIC SHARP SIGN */ + Key_musicalflat = 0x0af6, /* U+266D MUSIC FLAT SIGN */ + Key_malesymbol = 0x0af7, /* U+2642 MALE SIGN */ + Key_femalesymbol = 0x0af8, /* U+2640 FEMALE SIGN */ + Key_telephone = 0x0af9, /* U+260E BLACK TELEPHONE */ + Key_telephonerecorder = 0x0afa, /* U+2315 TELEPHONE RECORDER */ + Key_phonographcopyright = 0x0afb, /* U+2117 SOUND RECORDING COPYRIGHT */ + Key_caret = 0x0afc, /* U+2038 CARET */ + Key_singlelowquotemark = 0x0afd, /* U+201A SINGLE LOW-9 QUOTATION MARK */ + Key_doublelowquotemark = 0x0afe, /* U+201E DOUBLE LOW-9 QUOTATION MARK */ + Key_cursor = 0x0aff, + + + /* + * APL + * Byte 3 = = 0x0b, + */ + + + Key_leftcaret = 0x0ba3, /*(U+003C LESS-THAN SIGN)*/ + Key_rightcaret = 0x0ba6, /*(U+003E GREATER-THAN SIGN)*/ + Key_downcaret = 0x0ba8, /*(U+2228 LOGICAL OR)*/ + Key_upcaret = 0x0ba9, /*(U+2227 LOGICAL AND)*/ + Key_overbar = 0x0bc0, /*(U+00AF MACRON)*/ + Key_downtack = 0x0bc2, /* U+22A4 DOWN TACK */ + Key_upshoe = 0x0bc3, /*(U+2229 INTERSECTION)*/ + Key_downstile = 0x0bc4, /* U+230A LEFT FLOOR */ + Key_underbar = 0x0bc6, /*(U+005F LOW LINE)*/ + Key_jot = 0x0bca, /* U+2218 RING OPERATOR */ + Key_quad = 0x0bcc, /* U+2395 APL FUNCTIONAL SYMBOL QUAD */ + Key_uptack = 0x0bce, /* U+22A5 UP TACK */ + Key_circle = 0x0bcf, /* U+25CB WHITE CIRCLE */ + Key_upstile = 0x0bd3, /* U+2308 LEFT CEILING */ + Key_downshoe = 0x0bd6, /*(U+222A UNION)*/ + Key_rightshoe = 0x0bd8, /*(U+2283 SUPERSET OF)*/ + Key_leftshoe = 0x0bda, /*(U+2282 SUBSET OF)*/ + Key_lefttack = 0x0bdc, /* U+22A3 LEFT TACK */ + Key_righttack = 0x0bfc, /* U+22A2 RIGHT TACK */ + + + /* + * Hebrew + * Byte 3 = = 0x0c, + */ + + + Key_hebrew_doublelowline = 0x0cdf, /* U+2017 DOUBLE LOW LINE */ + Key_hebrew_aleph = 0x0ce0, /* U+05D0 HEBREW LETTER ALEF */ + Key_hebrew_bet = 0x0ce1, /* U+05D1 HEBREW LETTER BET */ + Key_hebrew_beth = 0x0ce1, /* deprecated */ + Key_hebrew_gimel = 0x0ce2, /* U+05D2 HEBREW LETTER GIMEL */ + Key_hebrew_gimmel = 0x0ce2, /* deprecated */ + Key_hebrew_dalet = 0x0ce3, /* U+05D3 HEBREW LETTER DALET */ + Key_hebrew_daleth = 0x0ce3, /* deprecated */ + Key_hebrew_he = 0x0ce4, /* U+05D4 HEBREW LETTER HE */ + Key_hebrew_waw = 0x0ce5, /* U+05D5 HEBREW LETTER VAV */ + Key_hebrew_zain = 0x0ce6, /* U+05D6 HEBREW LETTER ZAYIN */ + Key_hebrew_zayin = 0x0ce6, /* deprecated */ + Key_hebrew_chet = 0x0ce7, /* U+05D7 HEBREW LETTER HET */ + Key_hebrew_het = 0x0ce7, /* deprecated */ + Key_hebrew_tet = 0x0ce8, /* U+05D8 HEBREW LETTER TET */ + Key_hebrew_teth = 0x0ce8, /* deprecated */ + Key_hebrew_yod = 0x0ce9, /* U+05D9 HEBREW LETTER YOD */ + Key_hebrew_finalkaph = 0x0cea, /* U+05DA HEBREW LETTER FINAL KAF */ + Key_hebrew_kaph = 0x0ceb, /* U+05DB HEBREW LETTER KAF */ + Key_hebrew_lamed = 0x0cec, /* U+05DC HEBREW LETTER LAMED */ + Key_hebrew_finalmem = 0x0ced, /* U+05DD HEBREW LETTER FINAL MEM */ + Key_hebrew_mem = 0x0cee, /* U+05DE HEBREW LETTER MEM */ + Key_hebrew_finalnun = 0x0cef, /* U+05DF HEBREW LETTER FINAL NUN */ + Key_hebrew_nun = 0x0cf0, /* U+05E0 HEBREW LETTER NUN */ + Key_hebrew_samech = 0x0cf1, /* U+05E1 HEBREW LETTER SAMEKH */ + Key_hebrew_samekh = 0x0cf1, /* deprecated */ + Key_hebrew_ayin = 0x0cf2, /* U+05E2 HEBREW LETTER AYIN */ + Key_hebrew_finalpe = 0x0cf3, /* U+05E3 HEBREW LETTER FINAL PE */ + Key_hebrew_pe = 0x0cf4, /* U+05E4 HEBREW LETTER PE */ + Key_hebrew_finalzade = 0x0cf5, /* U+05E5 HEBREW LETTER FINAL TSADI */ + Key_hebrew_finalzadi = 0x0cf5, /* deprecated */ + Key_hebrew_zade = 0x0cf6, /* U+05E6 HEBREW LETTER TSADI */ + Key_hebrew_zadi = 0x0cf6, /* deprecated */ + Key_hebrew_qoph = 0x0cf7, /* U+05E7 HEBREW LETTER QOF */ + Key_hebrew_kuf = 0x0cf7, /* deprecated */ + Key_hebrew_resh = 0x0cf8, /* U+05E8 HEBREW LETTER RESH */ + Key_hebrew_shin = 0x0cf9, /* U+05E9 HEBREW LETTER SHIN */ + Key_hebrew_taw = 0x0cfa, /* U+05EA HEBREW LETTER TAV */ + Key_hebrew_taf = 0x0cfa, /* deprecated */ + Key_Hebrew_switch = 0xff7e, /* Alias for mode_switch */ + + + /* + * Thai + * Byte 3 = = 0x0d, + */ + + + Key_Thai_kokai = 0x0da1, /* U+0E01 THAI CHARACTER KO KAI */ + Key_Thai_khokhai = 0x0da2, /* U+0E02 THAI CHARACTER KHO KHAI */ + Key_Thai_khokhuat = 0x0da3, /* U+0E03 THAI CHARACTER KHO KHUAT */ + Key_Thai_khokhwai = 0x0da4, /* U+0E04 THAI CHARACTER KHO KHWAI */ + Key_Thai_khokhon = 0x0da5, /* U+0E05 THAI CHARACTER KHO KHON */ + Key_Thai_khorakhang = 0x0da6, /* U+0E06 THAI CHARACTER KHO RAKHANG */ + Key_Thai_ngongu = 0x0da7, /* U+0E07 THAI CHARACTER NGO NGU */ + Key_Thai_chochan = 0x0da8, /* U+0E08 THAI CHARACTER CHO CHAN */ + Key_Thai_choching = 0x0da9, /* U+0E09 THAI CHARACTER CHO CHING */ + Key_Thai_chochang = 0x0daa, /* U+0E0A THAI CHARACTER CHO CHANG */ + Key_Thai_soso = 0x0dab, /* U+0E0B THAI CHARACTER SO SO */ + Key_Thai_chochoe = 0x0dac, /* U+0E0C THAI CHARACTER CHO CHOE */ + Key_Thai_yoying = 0x0dad, /* U+0E0D THAI CHARACTER YO YING */ + Key_Thai_dochada = 0x0dae, /* U+0E0E THAI CHARACTER DO CHADA */ + Key_Thai_topatak = 0x0daf, /* U+0E0F THAI CHARACTER TO PATAK */ + Key_Thai_thothan = 0x0db0, /* U+0E10 THAI CHARACTER THO THAN */ + Key_Thai_thonangmontho = 0x0db1, /* U+0E11 THAI CHARACTER THO NANGMONTHO */ + Key_Thai_thophuthao = 0x0db2, /* U+0E12 THAI CHARACTER THO PHUTHAO */ + Key_Thai_nonen = 0x0db3, /* U+0E13 THAI CHARACTER NO NEN */ + Key_Thai_dodek = 0x0db4, /* U+0E14 THAI CHARACTER DO DEK */ + Key_Thai_totao = 0x0db5, /* U+0E15 THAI CHARACTER TO TAO */ + Key_Thai_thothung = 0x0db6, /* U+0E16 THAI CHARACTER THO THUNG */ + Key_Thai_thothahan = 0x0db7, /* U+0E17 THAI CHARACTER THO THAHAN */ + Key_Thai_thothong = 0x0db8, /* U+0E18 THAI CHARACTER THO THONG */ + Key_Thai_nonu = 0x0db9, /* U+0E19 THAI CHARACTER NO NU */ + Key_Thai_bobaimai = 0x0dba, /* U+0E1A THAI CHARACTER BO BAIMAI */ + Key_Thai_popla = 0x0dbb, /* U+0E1B THAI CHARACTER PO PLA */ + Key_Thai_phophung = 0x0dbc, /* U+0E1C THAI CHARACTER PHO PHUNG */ + Key_Thai_fofa = 0x0dbd, /* U+0E1D THAI CHARACTER FO FA */ + Key_Thai_phophan = 0x0dbe, /* U+0E1E THAI CHARACTER PHO PHAN */ + Key_Thai_fofan = 0x0dbf, /* U+0E1F THAI CHARACTER FO FAN */ + Key_Thai_phosamphao = 0x0dc0, /* U+0E20 THAI CHARACTER PHO SAMPHAO */ + Key_Thai_moma = 0x0dc1, /* U+0E21 THAI CHARACTER MO MA */ + Key_Thai_yoyak = 0x0dc2, /* U+0E22 THAI CHARACTER YO YAK */ + Key_Thai_rorua = 0x0dc3, /* U+0E23 THAI CHARACTER RO RUA */ + Key_Thai_ru = 0x0dc4, /* U+0E24 THAI CHARACTER RU */ + Key_Thai_loling = 0x0dc5, /* U+0E25 THAI CHARACTER LO LING */ + Key_Thai_lu = 0x0dc6, /* U+0E26 THAI CHARACTER LU */ + Key_Thai_wowaen = 0x0dc7, /* U+0E27 THAI CHARACTER WO WAEN */ + Key_Thai_sosala = 0x0dc8, /* U+0E28 THAI CHARACTER SO SALA */ + Key_Thai_sorusi = 0x0dc9, /* U+0E29 THAI CHARACTER SO RUSI */ + Key_Thai_sosua = 0x0dca, /* U+0E2A THAI CHARACTER SO SUA */ + Key_Thai_hohip = 0x0dcb, /* U+0E2B THAI CHARACTER HO HIP */ + Key_Thai_lochula = 0x0dcc, /* U+0E2C THAI CHARACTER LO CHULA */ + Key_Thai_oang = 0x0dcd, /* U+0E2D THAI CHARACTER O ANG */ + Key_Thai_honokhuk = 0x0dce, /* U+0E2E THAI CHARACTER HO NOKHUK */ + Key_Thai_paiyannoi = 0x0dcf, /* U+0E2F THAI CHARACTER PAIYANNOI */ + Key_Thai_saraa = 0x0dd0, /* U+0E30 THAI CHARACTER SARA A */ + Key_Thai_maihanakat = 0x0dd1, /* U+0E31 THAI CHARACTER MAI HAN-AKAT */ + Key_Thai_saraaa = 0x0dd2, /* U+0E32 THAI CHARACTER SARA AA */ + Key_Thai_saraam = 0x0dd3, /* U+0E33 THAI CHARACTER SARA AM */ + Key_Thai_sarai = 0x0dd4, /* U+0E34 THAI CHARACTER SARA I */ + Key_Thai_saraii = 0x0dd5, /* U+0E35 THAI CHARACTER SARA II */ + Key_Thai_saraue = 0x0dd6, /* U+0E36 THAI CHARACTER SARA UE */ + Key_Thai_sarauee = 0x0dd7, /* U+0E37 THAI CHARACTER SARA UEE */ + Key_Thai_sarau = 0x0dd8, /* U+0E38 THAI CHARACTER SARA U */ + Key_Thai_sarauu = 0x0dd9, /* U+0E39 THAI CHARACTER SARA UU */ + Key_Thai_phinthu = 0x0dda, /* U+0E3A THAI CHARACTER PHINTHU */ + Key_Thai_maihanakat_maitho = 0x0dde, + Key_Thai_baht = 0x0ddf, /* U+0E3F THAI CURRENCY SYMBOL BAHT */ + Key_Thai_sarae = 0x0de0, /* U+0E40 THAI CHARACTER SARA E */ + Key_Thai_saraae = 0x0de1, /* U+0E41 THAI CHARACTER SARA AE */ + Key_Thai_sarao = 0x0de2, /* U+0E42 THAI CHARACTER SARA O */ + Key_Thai_saraaimaimuan = 0x0de3, /* U+0E43 THAI CHARACTER SARA AI MAIMUAN */ + Key_Thai_saraaimaimalai = 0x0de4, /* U+0E44 THAI CHARACTER SARA AI MAIMALAI */ + Key_Thai_lakkhangyao = 0x0de5, /* U+0E45 THAI CHARACTER LAKKHANGYAO */ + Key_Thai_maiyamok = 0x0de6, /* U+0E46 THAI CHARACTER MAIYAMOK */ + Key_Thai_maitaikhu = 0x0de7, /* U+0E47 THAI CHARACTER MAITAIKHU */ + Key_Thai_maiek = 0x0de8, /* U+0E48 THAI CHARACTER MAI EK */ + Key_Thai_maitho = 0x0de9, /* U+0E49 THAI CHARACTER MAI THO */ + Key_Thai_maitri = 0x0dea, /* U+0E4A THAI CHARACTER MAI TRI */ + Key_Thai_maichattawa = 0x0deb, /* U+0E4B THAI CHARACTER MAI CHATTAWA */ + Key_Thai_thanthakhat = 0x0dec, /* U+0E4C THAI CHARACTER THANTHAKHAT */ + Key_Thai_nikhahit = 0x0ded, /* U+0E4D THAI CHARACTER NIKHAHIT */ + Key_Thai_leksun = 0x0df0, /* U+0E50 THAI DIGIT ZERO */ + Key_Thai_leknung = 0x0df1, /* U+0E51 THAI DIGIT ONE */ + Key_Thai_leksong = 0x0df2, /* U+0E52 THAI DIGIT TWO */ + Key_Thai_leksam = 0x0df3, /* U+0E53 THAI DIGIT THREE */ + Key_Thai_leksi = 0x0df4, /* U+0E54 THAI DIGIT FOUR */ + Key_Thai_lekha = 0x0df5, /* U+0E55 THAI DIGIT FIVE */ + Key_Thai_lekhok = 0x0df6, /* U+0E56 THAI DIGIT SIX */ + Key_Thai_lekchet = 0x0df7, /* U+0E57 THAI DIGIT SEVEN */ + Key_Thai_lekpaet = 0x0df8, /* U+0E58 THAI DIGIT EIGHT */ + Key_Thai_lekkao = 0x0df9, /* U+0E59 THAI DIGIT NINE */ + + + /* + * Korean + * Byte 3 = = 0x0e, + */ + + + + Key_Hangul = 0xff31, /* Hangul start/stop(toggle) */ + Key_Hangul_Start = 0xff32, /* Hangul start */ + Key_Hangul_End = 0xff33, /* Hangul end, English start */ + Key_Hangul_Hanja = 0xff34, /* Start Hangul->Hanja Conversion */ + Key_Hangul_Jamo = 0xff35, /* Hangul Jamo mode */ + Key_Hangul_Romaja = 0xff36, /* Hangul Romaja mode */ + Key_Hangul_Codeinput = 0xff37, /* Hangul code input mode */ + Key_Hangul_Jeonja = 0xff38, /* Jeonja mode */ + Key_Hangul_Banja = 0xff39, /* Banja mode */ + Key_Hangul_PreHanja = 0xff3a, /* Pre Hanja conversion */ + Key_Hangul_PostHanja = 0xff3b, /* Post Hanja conversion */ + Key_Hangul_SingleCandidate = 0xff3c, /* Single candidate */ + Key_Hangul_MultipleCandidate = 0xff3d, /* Multiple candidate */ + Key_Hangul_PreviousCandidate = 0xff3e, /* Previous candidate */ + Key_Hangul_Special = 0xff3f, /* Special symbols */ + Key_Hangul_switch = 0xff7e, /* Alias for mode_switch */ + + /* Hangul Consonant Characters */ + Key_Hangul_Kiyeog = 0x0ea1, + Key_Hangul_SsangKiyeog = 0x0ea2, + Key_Hangul_KiyeogSios = 0x0ea3, + Key_Hangul_Nieun = 0x0ea4, + Key_Hangul_NieunJieuj = 0x0ea5, + Key_Hangul_NieunHieuh = 0x0ea6, + Key_Hangul_Dikeud = 0x0ea7, + Key_Hangul_SsangDikeud = 0x0ea8, + Key_Hangul_Rieul = 0x0ea9, + Key_Hangul_RieulKiyeog = 0x0eaa, + Key_Hangul_RieulMieum = 0x0eab, + Key_Hangul_RieulPieub = 0x0eac, + Key_Hangul_RieulSios = 0x0ead, + Key_Hangul_RieulTieut = 0x0eae, + Key_Hangul_RieulPhieuf = 0x0eaf, + Key_Hangul_RieulHieuh = 0x0eb0, + Key_Hangul_Mieum = 0x0eb1, + Key_Hangul_Pieub = 0x0eb2, + Key_Hangul_SsangPieub = 0x0eb3, + Key_Hangul_PieubSios = 0x0eb4, + Key_Hangul_Sios = 0x0eb5, + Key_Hangul_SsangSios = 0x0eb6, + Key_Hangul_Ieung = 0x0eb7, + Key_Hangul_Jieuj = 0x0eb8, + Key_Hangul_SsangJieuj = 0x0eb9, + Key_Hangul_Cieuc = 0x0eba, + Key_Hangul_Khieuq = 0x0ebb, + Key_Hangul_Tieut = 0x0ebc, + Key_Hangul_Phieuf = 0x0ebd, + Key_Hangul_Hieuh = 0x0ebe, + + /* Hangul Vowel Characters */ + Key_Hangul_A = 0x0ebf, + Key_Hangul_AE = 0x0ec0, + Key_Hangul_YA = 0x0ec1, + Key_Hangul_YAE = 0x0ec2, + Key_Hangul_EO = 0x0ec3, + Key_Hangul_E = 0x0ec4, + Key_Hangul_YEO = 0x0ec5, + Key_Hangul_YE = 0x0ec6, + Key_Hangul_O = 0x0ec7, + Key_Hangul_WA = 0x0ec8, + Key_Hangul_WAE = 0x0ec9, + Key_Hangul_OE = 0x0eca, + Key_Hangul_YO = 0x0ecb, + Key_Hangul_U = 0x0ecc, + Key_Hangul_WEO = 0x0ecd, + Key_Hangul_WE = 0x0ece, + Key_Hangul_WI = 0x0ecf, + Key_Hangul_YU = 0x0ed0, + Key_Hangul_EU = 0x0ed1, + Key_Hangul_YI = 0x0ed2, + Key_Hangul_I = 0x0ed3, + + /* Hangul syllable-final (JongSeong) Characters */ + Key_Hangul_J_Kiyeog = 0x0ed4, + Key_Hangul_J_SsangKiyeog = 0x0ed5, + Key_Hangul_J_KiyeogSios = 0x0ed6, + Key_Hangul_J_Nieun = 0x0ed7, + Key_Hangul_J_NieunJieuj = 0x0ed8, + Key_Hangul_J_NieunHieuh = 0x0ed9, + Key_Hangul_J_Dikeud = 0x0eda, + Key_Hangul_J_Rieul = 0x0edb, + Key_Hangul_J_RieulKiyeog = 0x0edc, + Key_Hangul_J_RieulMieum = 0x0edd, + Key_Hangul_J_RieulPieub = 0x0ede, + Key_Hangul_J_RieulSios = 0x0edf, + Key_Hangul_J_RieulTieut = 0x0ee0, + Key_Hangul_J_RieulPhieuf = 0x0ee1, + Key_Hangul_J_RieulHieuh = 0x0ee2, + Key_Hangul_J_Mieum = 0x0ee3, + Key_Hangul_J_Pieub = 0x0ee4, + Key_Hangul_J_PieubSios = 0x0ee5, + Key_Hangul_J_Sios = 0x0ee6, + Key_Hangul_J_SsangSios = 0x0ee7, + Key_Hangul_J_Ieung = 0x0ee8, + Key_Hangul_J_Jieuj = 0x0ee9, + Key_Hangul_J_Cieuc = 0x0eea, + Key_Hangul_J_Khieuq = 0x0eeb, + Key_Hangul_J_Tieut = 0x0eec, + Key_Hangul_J_Phieuf = 0x0eed, + Key_Hangul_J_Hieuh = 0x0eee, + + /* Ancient Hangul Consonant Characters */ + Key_Hangul_RieulYeorinHieuh = 0x0eef, + Key_Hangul_SunkyeongeumMieum = 0x0ef0, + Key_Hangul_SunkyeongeumPieub = 0x0ef1, + Key_Hangul_PanSios = 0x0ef2, + Key_Hangul_KkogjiDalrinIeung = 0x0ef3, + Key_Hangul_SunkyeongeumPhieuf = 0x0ef4, + Key_Hangul_YeorinHieuh = 0x0ef5, + + /* Ancient Hangul Vowel Characters */ + Key_Hangul_AraeA = 0x0ef6, + Key_Hangul_AraeAE = 0x0ef7, + + /* Ancient Hangul syllable-final (JongSeong) Characters */ + Key_Hangul_J_PanSios = 0x0ef8, + Key_Hangul_J_KkogjiDalrinIeung = 0x0ef9, + Key_Hangul_J_YeorinHieuh = 0x0efa, + + /* Korean currency symbol */ + Key_Korean_Won = 0x0eff, /*(U+20A9 WON SIGN)*/ + + + + /* + * Armenian + */ + + + Key_Armenian_ligature_ew = 0x1000587, /* U+0587 ARMENIAN SMALL LIGATURE ECH YIWN */ + Key_Armenian_full_stop = 0x1000589, /* U+0589 ARMENIAN FULL STOP */ + Key_Armenian_verjaket = 0x1000589, /* U+0589 ARMENIAN FULL STOP */ + Key_Armenian_separation_mark = 0x100055d, /* U+055D ARMENIAN COMMA */ + Key_Armenian_but = 0x100055d, /* U+055D ARMENIAN COMMA */ + Key_Armenian_hyphen = 0x100058a, /* U+058A ARMENIAN HYPHEN */ + Key_Armenian_yentamna = 0x100058a, /* U+058A ARMENIAN HYPHEN */ + Key_Armenian_exclam = 0x100055c, /* U+055C ARMENIAN EXCLAMATION MARK */ + Key_Armenian_amanak = 0x100055c, /* U+055C ARMENIAN EXCLAMATION MARK */ + Key_Armenian_accent = 0x100055b, /* U+055B ARMENIAN EMPHASIS MARK */ + Key_Armenian_shesht = 0x100055b, /* U+055B ARMENIAN EMPHASIS MARK */ + Key_Armenian_question = 0x100055e, /* U+055E ARMENIAN QUESTION MARK */ + Key_Armenian_paruyk = 0x100055e, /* U+055E ARMENIAN QUESTION MARK */ + Key_Armenian_AYB = 0x1000531, /* U+0531 ARMENIAN CAPITAL LETTER AYB */ + Key_Armenian_ayb = 0x1000561, /* U+0561 ARMENIAN SMALL LETTER AYB */ + Key_Armenian_BEN = 0x1000532, /* U+0532 ARMENIAN CAPITAL LETTER BEN */ + Key_Armenian_ben = 0x1000562, /* U+0562 ARMENIAN SMALL LETTER BEN */ + Key_Armenian_GIM = 0x1000533, /* U+0533 ARMENIAN CAPITAL LETTER GIM */ + Key_Armenian_gim = 0x1000563, /* U+0563 ARMENIAN SMALL LETTER GIM */ + Key_Armenian_DA = 0x1000534, /* U+0534 ARMENIAN CAPITAL LETTER DA */ + Key_Armenian_da = 0x1000564, /* U+0564 ARMENIAN SMALL LETTER DA */ + Key_Armenian_YECH = 0x1000535, /* U+0535 ARMENIAN CAPITAL LETTER ECH */ + Key_Armenian_yech = 0x1000565, /* U+0565 ARMENIAN SMALL LETTER ECH */ + Key_Armenian_ZA = 0x1000536, /* U+0536 ARMENIAN CAPITAL LETTER ZA */ + Key_Armenian_za = 0x1000566, /* U+0566 ARMENIAN SMALL LETTER ZA */ + Key_Armenian_E = 0x1000537, /* U+0537 ARMENIAN CAPITAL LETTER EH */ + Key_Armenian_e = 0x1000567, /* U+0567 ARMENIAN SMALL LETTER EH */ + Key_Armenian_AT = 0x1000538, /* U+0538 ARMENIAN CAPITAL LETTER ET */ + Key_Armenian_at = 0x1000568, /* U+0568 ARMENIAN SMALL LETTER ET */ + Key_Armenian_TO = 0x1000539, /* U+0539 ARMENIAN CAPITAL LETTER TO */ + Key_Armenian_to = 0x1000569, /* U+0569 ARMENIAN SMALL LETTER TO */ + Key_Armenian_ZHE = 0x100053a, /* U+053A ARMENIAN CAPITAL LETTER ZHE */ + Key_Armenian_zhe = 0x100056a, /* U+056A ARMENIAN SMALL LETTER ZHE */ + Key_Armenian_INI = 0x100053b, /* U+053B ARMENIAN CAPITAL LETTER INI */ + Key_Armenian_ini = 0x100056b, /* U+056B ARMENIAN SMALL LETTER INI */ + Key_Armenian_LYUN = 0x100053c, /* U+053C ARMENIAN CAPITAL LETTER LIWN */ + Key_Armenian_lyun = 0x100056c, /* U+056C ARMENIAN SMALL LETTER LIWN */ + Key_Armenian_KHE = 0x100053d, /* U+053D ARMENIAN CAPITAL LETTER XEH */ + Key_Armenian_khe = 0x100056d, /* U+056D ARMENIAN SMALL LETTER XEH */ + Key_Armenian_TSA = 0x100053e, /* U+053E ARMENIAN CAPITAL LETTER CA */ + Key_Armenian_tsa = 0x100056e, /* U+056E ARMENIAN SMALL LETTER CA */ + Key_Armenian_KEN = 0x100053f, /* U+053F ARMENIAN CAPITAL LETTER KEN */ + Key_Armenian_ken = 0x100056f, /* U+056F ARMENIAN SMALL LETTER KEN */ + Key_Armenian_HO = 0x1000540, /* U+0540 ARMENIAN CAPITAL LETTER HO */ + Key_Armenian_ho = 0x1000570, /* U+0570 ARMENIAN SMALL LETTER HO */ + Key_Armenian_DZA = 0x1000541, /* U+0541 ARMENIAN CAPITAL LETTER JA */ + Key_Armenian_dza = 0x1000571, /* U+0571 ARMENIAN SMALL LETTER JA */ + Key_Armenian_GHAT = 0x1000542, /* U+0542 ARMENIAN CAPITAL LETTER GHAD */ + Key_Armenian_ghat = 0x1000572, /* U+0572 ARMENIAN SMALL LETTER GHAD */ + Key_Armenian_TCHE = 0x1000543, /* U+0543 ARMENIAN CAPITAL LETTER CHEH */ + Key_Armenian_tche = 0x1000573, /* U+0573 ARMENIAN SMALL LETTER CHEH */ + Key_Armenian_MEN = 0x1000544, /* U+0544 ARMENIAN CAPITAL LETTER MEN */ + Key_Armenian_men = 0x1000574, /* U+0574 ARMENIAN SMALL LETTER MEN */ + Key_Armenian_HI = 0x1000545, /* U+0545 ARMENIAN CAPITAL LETTER YI */ + Key_Armenian_hi = 0x1000575, /* U+0575 ARMENIAN SMALL LETTER YI */ + Key_Armenian_NU = 0x1000546, /* U+0546 ARMENIAN CAPITAL LETTER NOW */ + Key_Armenian_nu = 0x1000576, /* U+0576 ARMENIAN SMALL LETTER NOW */ + Key_Armenian_SHA = 0x1000547, /* U+0547 ARMENIAN CAPITAL LETTER SHA */ + Key_Armenian_sha = 0x1000577, /* U+0577 ARMENIAN SMALL LETTER SHA */ + Key_Armenian_VO = 0x1000548, /* U+0548 ARMENIAN CAPITAL LETTER VO */ + Key_Armenian_vo = 0x1000578, /* U+0578 ARMENIAN SMALL LETTER VO */ + Key_Armenian_CHA = 0x1000549, /* U+0549 ARMENIAN CAPITAL LETTER CHA */ + Key_Armenian_cha = 0x1000579, /* U+0579 ARMENIAN SMALL LETTER CHA */ + Key_Armenian_PE = 0x100054a, /* U+054A ARMENIAN CAPITAL LETTER PEH */ + Key_Armenian_pe = 0x100057a, /* U+057A ARMENIAN SMALL LETTER PEH */ + Key_Armenian_JE = 0x100054b, /* U+054B ARMENIAN CAPITAL LETTER JHEH */ + Key_Armenian_je = 0x100057b, /* U+057B ARMENIAN SMALL LETTER JHEH */ + Key_Armenian_RA = 0x100054c, /* U+054C ARMENIAN CAPITAL LETTER RA */ + Key_Armenian_ra = 0x100057c, /* U+057C ARMENIAN SMALL LETTER RA */ + Key_Armenian_SE = 0x100054d, /* U+054D ARMENIAN CAPITAL LETTER SEH */ + Key_Armenian_se = 0x100057d, /* U+057D ARMENIAN SMALL LETTER SEH */ + Key_Armenian_VEV = 0x100054e, /* U+054E ARMENIAN CAPITAL LETTER VEW */ + Key_Armenian_vev = 0x100057e, /* U+057E ARMENIAN SMALL LETTER VEW */ + Key_Armenian_TYUN = 0x100054f, /* U+054F ARMENIAN CAPITAL LETTER TIWN */ + Key_Armenian_tyun = 0x100057f, /* U+057F ARMENIAN SMALL LETTER TIWN */ + Key_Armenian_RE = 0x1000550, /* U+0550 ARMENIAN CAPITAL LETTER REH */ + Key_Armenian_re = 0x1000580, /* U+0580 ARMENIAN SMALL LETTER REH */ + Key_Armenian_TSO = 0x1000551, /* U+0551 ARMENIAN CAPITAL LETTER CO */ + Key_Armenian_tso = 0x1000581, /* U+0581 ARMENIAN SMALL LETTER CO */ + Key_Armenian_VYUN = 0x1000552, /* U+0552 ARMENIAN CAPITAL LETTER YIWN */ + Key_Armenian_vyun = 0x1000582, /* U+0582 ARMENIAN SMALL LETTER YIWN */ + Key_Armenian_PYUR = 0x1000553, /* U+0553 ARMENIAN CAPITAL LETTER PIWR */ + Key_Armenian_pyur = 0x1000583, /* U+0583 ARMENIAN SMALL LETTER PIWR */ + Key_Armenian_KE = 0x1000554, /* U+0554 ARMENIAN CAPITAL LETTER KEH */ + Key_Armenian_ke = 0x1000584, /* U+0584 ARMENIAN SMALL LETTER KEH */ + Key_Armenian_O = 0x1000555, /* U+0555 ARMENIAN CAPITAL LETTER OH */ + Key_Armenian_o = 0x1000585, /* U+0585 ARMENIAN SMALL LETTER OH */ + Key_Armenian_FE = 0x1000556, /* U+0556 ARMENIAN CAPITAL LETTER FEH */ + Key_Armenian_fe = 0x1000586, /* U+0586 ARMENIAN SMALL LETTER FEH */ + Key_Armenian_apostrophe = 0x100055a, /* U+055A ARMENIAN APOSTROPHE */ + + + /* + * Georgian + */ + + + Key_Georgian_an = 0x10010d0, /* U+10D0 GEORGIAN LETTER AN */ + Key_Georgian_ban = 0x10010d1, /* U+10D1 GEORGIAN LETTER BAN */ + Key_Georgian_gan = 0x10010d2, /* U+10D2 GEORGIAN LETTER GAN */ + Key_Georgian_don = 0x10010d3, /* U+10D3 GEORGIAN LETTER DON */ + Key_Georgian_en = 0x10010d4, /* U+10D4 GEORGIAN LETTER EN */ + Key_Georgian_vin = 0x10010d5, /* U+10D5 GEORGIAN LETTER VIN */ + Key_Georgian_zen = 0x10010d6, /* U+10D6 GEORGIAN LETTER ZEN */ + Key_Georgian_tan = 0x10010d7, /* U+10D7 GEORGIAN LETTER TAN */ + Key_Georgian_in = 0x10010d8, /* U+10D8 GEORGIAN LETTER IN */ + Key_Georgian_kan = 0x10010d9, /* U+10D9 GEORGIAN LETTER KAN */ + Key_Georgian_las = 0x10010da, /* U+10DA GEORGIAN LETTER LAS */ + Key_Georgian_man = 0x10010db, /* U+10DB GEORGIAN LETTER MAN */ + Key_Georgian_nar = 0x10010dc, /* U+10DC GEORGIAN LETTER NAR */ + Key_Georgian_on = 0x10010dd, /* U+10DD GEORGIAN LETTER ON */ + Key_Georgian_par = 0x10010de, /* U+10DE GEORGIAN LETTER PAR */ + Key_Georgian_zhar = 0x10010df, /* U+10DF GEORGIAN LETTER ZHAR */ + Key_Georgian_rae = 0x10010e0, /* U+10E0 GEORGIAN LETTER RAE */ + Key_Georgian_san = 0x10010e1, /* U+10E1 GEORGIAN LETTER SAN */ + Key_Georgian_tar = 0x10010e2, /* U+10E2 GEORGIAN LETTER TAR */ + Key_Georgian_un = 0x10010e3, /* U+10E3 GEORGIAN LETTER UN */ + Key_Georgian_phar = 0x10010e4, /* U+10E4 GEORGIAN LETTER PHAR */ + Key_Georgian_khar = 0x10010e5, /* U+10E5 GEORGIAN LETTER KHAR */ + Key_Georgian_ghan = 0x10010e6, /* U+10E6 GEORGIAN LETTER GHAN */ + Key_Georgian_qar = 0x10010e7, /* U+10E7 GEORGIAN LETTER QAR */ + Key_Georgian_shin = 0x10010e8, /* U+10E8 GEORGIAN LETTER SHIN */ + Key_Georgian_chin = 0x10010e9, /* U+10E9 GEORGIAN LETTER CHIN */ + Key_Georgian_can = 0x10010ea, /* U+10EA GEORGIAN LETTER CAN */ + Key_Georgian_jil = 0x10010eb, /* U+10EB GEORGIAN LETTER JIL */ + Key_Georgian_cil = 0x10010ec, /* U+10EC GEORGIAN LETTER CIL */ + Key_Georgian_char = 0x10010ed, /* U+10ED GEORGIAN LETTER CHAR */ + Key_Georgian_xan = 0x10010ee, /* U+10EE GEORGIAN LETTER XAN */ + Key_Georgian_jhan = 0x10010ef, /* U+10EF GEORGIAN LETTER JHAN */ + Key_Georgian_hae = 0x10010f0, /* U+10F0 GEORGIAN LETTER HAE */ + Key_Georgian_he = 0x10010f1, /* U+10F1 GEORGIAN LETTER HE */ + Key_Georgian_hie = 0x10010f2, /* U+10F2 GEORGIAN LETTER HIE */ + Key_Georgian_we = 0x10010f3, /* U+10F3 GEORGIAN LETTER WE */ + Key_Georgian_har = 0x10010f4, /* U+10F4 GEORGIAN LETTER HAR */ + Key_Georgian_hoe = 0x10010f5, /* U+10F5 GEORGIAN LETTER HOE */ + Key_Georgian_fi = 0x10010f6, /* U+10F6 GEORGIAN LETTER FI */ + + + /* + * Azeri (and other Turkic or Caucasian languages) + */ + + + /* latin */ + Key_Xabovedot = 0x1001e8a, /* U+1E8A LATIN CAPITAL LETTER X WITH DOT ABOVE */ + Key_Ibreve = 0x100012c, /* U+012C LATIN CAPITAL LETTER I WITH BREVE */ + Key_Zstroke = 0x10001b5, /* U+01B5 LATIN CAPITAL LETTER Z WITH STROKE */ + Key_Gcaron = 0x10001e6, /* U+01E6 LATIN CAPITAL LETTER G WITH CARON */ + Key_Ocaron = 0x10001d1, /* U+01D2 LATIN CAPITAL LETTER O WITH CARON */ + Key_Obarred = 0x100019f, /* U+019F LATIN CAPITAL LETTER O WITH MIDDLE TILDE */ + Key_xabovedot = 0x1001e8b, /* U+1E8B LATIN SMALL LETTER X WITH DOT ABOVE */ + Key_ibreve = 0x100012d, /* U+012D LATIN SMALL LETTER I WITH BREVE */ + Key_zstroke = 0x10001b6, /* U+01B6 LATIN SMALL LETTER Z WITH STROKE */ + Key_gcaron = 0x10001e7, /* U+01E7 LATIN SMALL LETTER G WITH CARON */ + Key_ocaron = 0x10001d2, /* U+01D2 LATIN SMALL LETTER O WITH CARON */ + Key_obarred = 0x1000275, /* U+0275 LATIN SMALL LETTER BARRED O */ + Key_SCHWA = 0x100018f, /* U+018F LATIN CAPITAL LETTER SCHWA */ + Key_schwa = 0x1000259, /* U+0259 LATIN SMALL LETTER SCHWA */ + /* those are not really Caucasus */ + /* For Inupiak */ + Key_Lbelowdot = 0x1001e36, /* U+1E36 LATIN CAPITAL LETTER L WITH DOT BELOW */ + Key_lbelowdot = 0x1001e37, /* U+1E37 LATIN SMALL LETTER L WITH DOT BELOW */ + + + /* + * Vietnamese + */ + + + Key_Abelowdot = 0x1001ea0, /* U+1EA0 LATIN CAPITAL LETTER A WITH DOT BELOW */ + Key_abelowdot = 0x1001ea1, /* U+1EA1 LATIN SMALL LETTER A WITH DOT BELOW */ + Key_Ahook = 0x1001ea2, /* U+1EA2 LATIN CAPITAL LETTER A WITH HOOK ABOVE */ + Key_ahook = 0x1001ea3, /* U+1EA3 LATIN SMALL LETTER A WITH HOOK ABOVE */ + Key_Acircumflexacute = 0x1001ea4, /* U+1EA4 LATIN CAPITAL LETTER A WITH CIRCUMFLEX AND ACUTE */ + Key_acircumflexacute = 0x1001ea5, /* U+1EA5 LATIN SMALL LETTER A WITH CIRCUMFLEX AND ACUTE */ + Key_Acircumflexgrave = 0x1001ea6, /* U+1EA6 LATIN CAPITAL LETTER A WITH CIRCUMFLEX AND GRAVE */ + Key_acircumflexgrave = 0x1001ea7, /* U+1EA7 LATIN SMALL LETTER A WITH CIRCUMFLEX AND GRAVE */ + Key_Acircumflexhook = 0x1001ea8, /* U+1EA8 LATIN CAPITAL LETTER A WITH CIRCUMFLEX AND HOOK ABOVE */ + Key_acircumflexhook = 0x1001ea9, /* U+1EA9 LATIN SMALL LETTER A WITH CIRCUMFLEX AND HOOK ABOVE */ + Key_Acircumflextilde = 0x1001eaa, /* U+1EAA LATIN CAPITAL LETTER A WITH CIRCUMFLEX AND TILDE */ + Key_acircumflextilde = 0x1001eab, /* U+1EAB LATIN SMALL LETTER A WITH CIRCUMFLEX AND TILDE */ + Key_Acircumflexbelowdot = 0x1001eac, /* U+1EAC LATIN CAPITAL LETTER A WITH CIRCUMFLEX AND DOT BELOW */ + Key_acircumflexbelowdot = 0x1001ead, /* U+1EAD LATIN SMALL LETTER A WITH CIRCUMFLEX AND DOT BELOW */ + Key_Abreveacute = 0x1001eae, /* U+1EAE LATIN CAPITAL LETTER A WITH BREVE AND ACUTE */ + Key_abreveacute = 0x1001eaf, /* U+1EAF LATIN SMALL LETTER A WITH BREVE AND ACUTE */ + Key_Abrevegrave = 0x1001eb0, /* U+1EB0 LATIN CAPITAL LETTER A WITH BREVE AND GRAVE */ + Key_abrevegrave = 0x1001eb1, /* U+1EB1 LATIN SMALL LETTER A WITH BREVE AND GRAVE */ + Key_Abrevehook = 0x1001eb2, /* U+1EB2 LATIN CAPITAL LETTER A WITH BREVE AND HOOK ABOVE */ + Key_abrevehook = 0x1001eb3, /* U+1EB3 LATIN SMALL LETTER A WITH BREVE AND HOOK ABOVE */ + Key_Abrevetilde = 0x1001eb4, /* U+1EB4 LATIN CAPITAL LETTER A WITH BREVE AND TILDE */ + Key_abrevetilde = 0x1001eb5, /* U+1EB5 LATIN SMALL LETTER A WITH BREVE AND TILDE */ + Key_Abrevebelowdot = 0x1001eb6, /* U+1EB6 LATIN CAPITAL LETTER A WITH BREVE AND DOT BELOW */ + Key_abrevebelowdot = 0x1001eb7, /* U+1EB7 LATIN SMALL LETTER A WITH BREVE AND DOT BELOW */ + Key_Ebelowdot = 0x1001eb8, /* U+1EB8 LATIN CAPITAL LETTER E WITH DOT BELOW */ + Key_ebelowdot = 0x1001eb9, /* U+1EB9 LATIN SMALL LETTER E WITH DOT BELOW */ + Key_Ehook = 0x1001eba, /* U+1EBA LATIN CAPITAL LETTER E WITH HOOK ABOVE */ + Key_ehook = 0x1001ebb, /* U+1EBB LATIN SMALL LETTER E WITH HOOK ABOVE */ + Key_Etilde = 0x1001ebc, /* U+1EBC LATIN CAPITAL LETTER E WITH TILDE */ + Key_etilde = 0x1001ebd, /* U+1EBD LATIN SMALL LETTER E WITH TILDE */ + Key_Ecircumflexacute = 0x1001ebe, /* U+1EBE LATIN CAPITAL LETTER E WITH CIRCUMFLEX AND ACUTE */ + Key_ecircumflexacute = 0x1001ebf, /* U+1EBF LATIN SMALL LETTER E WITH CIRCUMFLEX AND ACUTE */ + Key_Ecircumflexgrave = 0x1001ec0, /* U+1EC0 LATIN CAPITAL LETTER E WITH CIRCUMFLEX AND GRAVE */ + Key_ecircumflexgrave = 0x1001ec1, /* U+1EC1 LATIN SMALL LETTER E WITH CIRCUMFLEX AND GRAVE */ + Key_Ecircumflexhook = 0x1001ec2, /* U+1EC2 LATIN CAPITAL LETTER E WITH CIRCUMFLEX AND HOOK ABOVE */ + Key_ecircumflexhook = 0x1001ec3, /* U+1EC3 LATIN SMALL LETTER E WITH CIRCUMFLEX AND HOOK ABOVE */ + Key_Ecircumflextilde = 0x1001ec4, /* U+1EC4 LATIN CAPITAL LETTER E WITH CIRCUMFLEX AND TILDE */ + Key_ecircumflextilde = 0x1001ec5, /* U+1EC5 LATIN SMALL LETTER E WITH CIRCUMFLEX AND TILDE */ + Key_Ecircumflexbelowdot = 0x1001ec6, /* U+1EC6 LATIN CAPITAL LETTER E WITH CIRCUMFLEX AND DOT BELOW */ + Key_ecircumflexbelowdot = 0x1001ec7, /* U+1EC7 LATIN SMALL LETTER E WITH CIRCUMFLEX AND DOT BELOW */ + Key_Ihook = 0x1001ec8, /* U+1EC8 LATIN CAPITAL LETTER I WITH HOOK ABOVE */ + Key_ihook = 0x1001ec9, /* U+1EC9 LATIN SMALL LETTER I WITH HOOK ABOVE */ + Key_Ibelowdot = 0x1001eca, /* U+1ECA LATIN CAPITAL LETTER I WITH DOT BELOW */ + Key_ibelowdot = 0x1001ecb, /* U+1ECB LATIN SMALL LETTER I WITH DOT BELOW */ + Key_Obelowdot = 0x1001ecc, /* U+1ECC LATIN CAPITAL LETTER O WITH DOT BELOW */ + Key_obelowdot = 0x1001ecd, /* U+1ECD LATIN SMALL LETTER O WITH DOT BELOW */ + Key_Ohook = 0x1001ece, /* U+1ECE LATIN CAPITAL LETTER O WITH HOOK ABOVE */ + Key_ohook = 0x1001ecf, /* U+1ECF LATIN SMALL LETTER O WITH HOOK ABOVE */ + Key_Ocircumflexacute = 0x1001ed0, /* U+1ED0 LATIN CAPITAL LETTER O WITH CIRCUMFLEX AND ACUTE */ + Key_ocircumflexacute = 0x1001ed1, /* U+1ED1 LATIN SMALL LETTER O WITH CIRCUMFLEX AND ACUTE */ + Key_Ocircumflexgrave = 0x1001ed2, /* U+1ED2 LATIN CAPITAL LETTER O WITH CIRCUMFLEX AND GRAVE */ + Key_ocircumflexgrave = 0x1001ed3, /* U+1ED3 LATIN SMALL LETTER O WITH CIRCUMFLEX AND GRAVE */ + Key_Ocircumflexhook = 0x1001ed4, /* U+1ED4 LATIN CAPITAL LETTER O WITH CIRCUMFLEX AND HOOK ABOVE */ + Key_ocircumflexhook = 0x1001ed5, /* U+1ED5 LATIN SMALL LETTER O WITH CIRCUMFLEX AND HOOK ABOVE */ + Key_Ocircumflextilde = 0x1001ed6, /* U+1ED6 LATIN CAPITAL LETTER O WITH CIRCUMFLEX AND TILDE */ + Key_ocircumflextilde = 0x1001ed7, /* U+1ED7 LATIN SMALL LETTER O WITH CIRCUMFLEX AND TILDE */ + Key_Ocircumflexbelowdot = 0x1001ed8, /* U+1ED8 LATIN CAPITAL LETTER O WITH CIRCUMFLEX AND DOT BELOW */ + Key_ocircumflexbelowdot = 0x1001ed9, /* U+1ED9 LATIN SMALL LETTER O WITH CIRCUMFLEX AND DOT BELOW */ + Key_Ohornacute = 0x1001eda, /* U+1EDA LATIN CAPITAL LETTER O WITH HORN AND ACUTE */ + Key_ohornacute = 0x1001edb, /* U+1EDB LATIN SMALL LETTER O WITH HORN AND ACUTE */ + Key_Ohorngrave = 0x1001edc, /* U+1EDC LATIN CAPITAL LETTER O WITH HORN AND GRAVE */ + Key_ohorngrave = 0x1001edd, /* U+1EDD LATIN SMALL LETTER O WITH HORN AND GRAVE */ + Key_Ohornhook = 0x1001ede, /* U+1EDE LATIN CAPITAL LETTER O WITH HORN AND HOOK ABOVE */ + Key_ohornhook = 0x1001edf, /* U+1EDF LATIN SMALL LETTER O WITH HORN AND HOOK ABOVE */ + Key_Ohorntilde = 0x1001ee0, /* U+1EE0 LATIN CAPITAL LETTER O WITH HORN AND TILDE */ + Key_ohorntilde = 0x1001ee1, /* U+1EE1 LATIN SMALL LETTER O WITH HORN AND TILDE */ + Key_Ohornbelowdot = 0x1001ee2, /* U+1EE2 LATIN CAPITAL LETTER O WITH HORN AND DOT BELOW */ + Key_ohornbelowdot = 0x1001ee3, /* U+1EE3 LATIN SMALL LETTER O WITH HORN AND DOT BELOW */ + Key_Ubelowdot = 0x1001ee4, /* U+1EE4 LATIN CAPITAL LETTER U WITH DOT BELOW */ + Key_ubelowdot = 0x1001ee5, /* U+1EE5 LATIN SMALL LETTER U WITH DOT BELOW */ + Key_Uhook = 0x1001ee6, /* U+1EE6 LATIN CAPITAL LETTER U WITH HOOK ABOVE */ + Key_uhook = 0x1001ee7, /* U+1EE7 LATIN SMALL LETTER U WITH HOOK ABOVE */ + Key_Uhornacute = 0x1001ee8, /* U+1EE8 LATIN CAPITAL LETTER U WITH HORN AND ACUTE */ + Key_uhornacute = 0x1001ee9, /* U+1EE9 LATIN SMALL LETTER U WITH HORN AND ACUTE */ + Key_Uhorngrave = 0x1001eea, /* U+1EEA LATIN CAPITAL LETTER U WITH HORN AND GRAVE */ + Key_uhorngrave = 0x1001eeb, /* U+1EEB LATIN SMALL LETTER U WITH HORN AND GRAVE */ + Key_Uhornhook = 0x1001eec, /* U+1EEC LATIN CAPITAL LETTER U WITH HORN AND HOOK ABOVE */ + Key_uhornhook = 0x1001eed, /* U+1EED LATIN SMALL LETTER U WITH HORN AND HOOK ABOVE */ + Key_Uhorntilde = 0x1001eee, /* U+1EEE LATIN CAPITAL LETTER U WITH HORN AND TILDE */ + Key_uhorntilde = 0x1001eef, /* U+1EEF LATIN SMALL LETTER U WITH HORN AND TILDE */ + Key_Uhornbelowdot = 0x1001ef0, /* U+1EF0 LATIN CAPITAL LETTER U WITH HORN AND DOT BELOW */ + Key_uhornbelowdot = 0x1001ef1, /* U+1EF1 LATIN SMALL LETTER U WITH HORN AND DOT BELOW */ + Key_Ybelowdot = 0x1001ef4, /* U+1EF4 LATIN CAPITAL LETTER Y WITH DOT BELOW */ + Key_ybelowdot = 0x1001ef5, /* U+1EF5 LATIN SMALL LETTER Y WITH DOT BELOW */ + Key_Yhook = 0x1001ef6, /* U+1EF6 LATIN CAPITAL LETTER Y WITH HOOK ABOVE */ + Key_yhook = 0x1001ef7, /* U+1EF7 LATIN SMALL LETTER Y WITH HOOK ABOVE */ + Key_Ytilde = 0x1001ef8, /* U+1EF8 LATIN CAPITAL LETTER Y WITH TILDE */ + Key_ytilde = 0x1001ef9, /* U+1EF9 LATIN SMALL LETTER Y WITH TILDE */ + Key_Ohorn = 0x10001a0, /* U+01A0 LATIN CAPITAL LETTER O WITH HORN */ + Key_ohorn = 0x10001a1, /* U+01A1 LATIN SMALL LETTER O WITH HORN */ + Key_Uhorn = 0x10001af, /* U+01AF LATIN CAPITAL LETTER U WITH HORN */ + Key_uhorn = 0x10001b0, /* U+01B0 LATIN SMALL LETTER U WITH HORN */ + + + + + Key_EcuSign = 0x10020a0, /* U+20A0 EURO-CURRENCY SIGN */ + Key_ColonSign = 0x10020a1, /* U+20A1 COLON SIGN */ + Key_CruzeiroSign = 0x10020a2, /* U+20A2 CRUZEIRO SIGN */ + Key_FFrancSign = 0x10020a3, /* U+20A3 FRENCH FRANC SIGN */ + Key_LiraSign = 0x10020a4, /* U+20A4 LIRA SIGN */ + Key_MillSign = 0x10020a5, /* U+20A5 MILL SIGN */ + Key_NairaSign = 0x10020a6, /* U+20A6 NAIRA SIGN */ + Key_PesetaSign = 0x10020a7, /* U+20A7 PESETA SIGN */ + Key_RupeeSign = 0x10020a8, /* U+20A8 RUPEE SIGN */ + Key_WonSign = 0x10020a9, /* U+20A9 WON SIGN */ + Key_NewSheqelSign = 0x10020aa, /* U+20AA NEW SHEQEL SIGN */ + Key_DongSign = 0x10020ab, /* U+20AB DONG SIGN */ + Key_EuroSign = 0x20ac, /* U+20AC EURO SIGN */ + + + + /* one, two and three are defined above. */ + Key_zerosuperior = 0x1002070, /* U+2070 SUPERSCRIPT ZERO */ + Key_foursuperior = 0x1002074, /* U+2074 SUPERSCRIPT FOUR */ + Key_fivesuperior = 0x1002075, /* U+2075 SUPERSCRIPT FIVE */ + Key_sixsuperior = 0x1002076, /* U+2076 SUPERSCRIPT SIX */ + Key_sevensuperior = 0x1002077, /* U+2077 SUPERSCRIPT SEVEN */ + Key_eightsuperior = 0x1002078, /* U+2078 SUPERSCRIPT EIGHT */ + Key_ninesuperior = 0x1002079, /* U+2079 SUPERSCRIPT NINE */ + Key_zerosubscript = 0x1002080, /* U+2080 SUBSCRIPT ZERO */ + Key_onesubscript = 0x1002081, /* U+2081 SUBSCRIPT ONE */ + Key_twosubscript = 0x1002082, /* U+2082 SUBSCRIPT TWO */ + Key_threesubscript = 0x1002083, /* U+2083 SUBSCRIPT THREE */ + Key_foursubscript = 0x1002084, /* U+2084 SUBSCRIPT FOUR */ + Key_fivesubscript = 0x1002085, /* U+2085 SUBSCRIPT FIVE */ + Key_sixsubscript = 0x1002086, /* U+2086 SUBSCRIPT SIX */ + Key_sevensubscript = 0x1002087, /* U+2087 SUBSCRIPT SEVEN */ + Key_eightsubscript = 0x1002088, /* U+2088 SUBSCRIPT EIGHT */ + Key_ninesubscript = 0x1002089, /* U+2089 SUBSCRIPT NINE */ + Key_partdifferential = 0x1002202, /* U+2202 PARTIAL DIFFERENTIAL */ + Key_emptyset = 0x1002205, /* U+2205 NULL SET */ + Key_elementof = 0x1002208, /* U+2208 ELEMENT OF */ + Key_notelementof = 0x1002209, /* U+2209 NOT AN ELEMENT OF */ + Key_containsas = 0x100220B, /* U+220B CONTAINS AS MEMBER */ + Key_squareroot = 0x100221A, /* U+221A SQUARE ROOT */ + Key_cuberoot = 0x100221B, /* U+221B CUBE ROOT */ + Key_fourthroot = 0x100221C, /* U+221C FOURTH ROOT */ + Key_dintegral = 0x100222C, /* U+222C DOUBLE INTEGRAL */ + Key_tintegral = 0x100222D, /* U+222D TRIPLE INTEGRAL */ + Key_because = 0x1002235, /* U+2235 BECAUSE */ + Key_approxeq = 0x1002248, /* U+2245 ALMOST EQUAL TO */ + Key_notapproxeq = 0x1002247, /* U+2247 NOT ALMOST EQUAL TO */ + Key_notidentical = 0x1002262, /* U+2262 NOT IDENTICAL TO */ + Key_stricteq = 0x1002263, /* U+2263 STRICTLY EQUIVALENT TO */ + + + + Key_braille_dot_1 = 0xfff1, + Key_braille_dot_2 = 0xfff2, + Key_braille_dot_3 = 0xfff3, + Key_braille_dot_4 = 0xfff4, + Key_braille_dot_5 = 0xfff5, + Key_braille_dot_6 = 0xfff6, + Key_braille_dot_7 = 0xfff7, + Key_braille_dot_8 = 0xfff8, + Key_braille_dot_9 = 0xfff9, + Key_braille_dot_10 = 0xfffa, + Key_braille_blank = 0x1002800, /* U+2800 BRAILLE PATTERN BLANK */ + Key_braille_dots_1 = 0x1002801, /* U+2801 BRAILLE PATTERN DOTS-1 */ + Key_braille_dots_2 = 0x1002802, /* U+2802 BRAILLE PATTERN DOTS-2 */ + Key_braille_dots_12 = 0x1002803, /* U+2803 BRAILLE PATTERN DOTS-12 */ + Key_braille_dots_3 = 0x1002804, /* U+2804 BRAILLE PATTERN DOTS-3 */ + Key_braille_dots_13 = 0x1002805, /* U+2805 BRAILLE PATTERN DOTS-13 */ + Key_braille_dots_23 = 0x1002806, /* U+2806 BRAILLE PATTERN DOTS-23 */ + Key_braille_dots_123 = 0x1002807, /* U+2807 BRAILLE PATTERN DOTS-123 */ + Key_braille_dots_4 = 0x1002808, /* U+2808 BRAILLE PATTERN DOTS-4 */ + Key_braille_dots_14 = 0x1002809, /* U+2809 BRAILLE PATTERN DOTS-14 */ + Key_braille_dots_24 = 0x100280a, /* U+280a BRAILLE PATTERN DOTS-24 */ + Key_braille_dots_124 = 0x100280b, /* U+280b BRAILLE PATTERN DOTS-124 */ + Key_braille_dots_34 = 0x100280c, /* U+280c BRAILLE PATTERN DOTS-34 */ + Key_braille_dots_134 = 0x100280d, /* U+280d BRAILLE PATTERN DOTS-134 */ + Key_braille_dots_234 = 0x100280e, /* U+280e BRAILLE PATTERN DOTS-234 */ + Key_braille_dots_1234 = 0x100280f, /* U+280f BRAILLE PATTERN DOTS-1234 */ + Key_braille_dots_5 = 0x1002810, /* U+2810 BRAILLE PATTERN DOTS-5 */ + Key_braille_dots_15 = 0x1002811, /* U+2811 BRAILLE PATTERN DOTS-15 */ + Key_braille_dots_25 = 0x1002812, /* U+2812 BRAILLE PATTERN DOTS-25 */ + Key_braille_dots_125 = 0x1002813, /* U+2813 BRAILLE PATTERN DOTS-125 */ + Key_braille_dots_35 = 0x1002814, /* U+2814 BRAILLE PATTERN DOTS-35 */ + Key_braille_dots_135 = 0x1002815, /* U+2815 BRAILLE PATTERN DOTS-135 */ + Key_braille_dots_235 = 0x1002816, /* U+2816 BRAILLE PATTERN DOTS-235 */ + Key_braille_dots_1235 = 0x1002817, /* U+2817 BRAILLE PATTERN DOTS-1235 */ + Key_braille_dots_45 = 0x1002818, /* U+2818 BRAILLE PATTERN DOTS-45 */ + Key_braille_dots_145 = 0x1002819, /* U+2819 BRAILLE PATTERN DOTS-145 */ + Key_braille_dots_245 = 0x100281a, /* U+281a BRAILLE PATTERN DOTS-245 */ + Key_braille_dots_1245 = 0x100281b, /* U+281b BRAILLE PATTERN DOTS-1245 */ + Key_braille_dots_345 = 0x100281c, /* U+281c BRAILLE PATTERN DOTS-345 */ + Key_braille_dots_1345 = 0x100281d, /* U+281d BRAILLE PATTERN DOTS-1345 */ + Key_braille_dots_2345 = 0x100281e, /* U+281e BRAILLE PATTERN DOTS-2345 */ + Key_braille_dots_12345 = 0x100281f, /* U+281f BRAILLE PATTERN DOTS-12345 */ + Key_braille_dots_6 = 0x1002820, /* U+2820 BRAILLE PATTERN DOTS-6 */ + Key_braille_dots_16 = 0x1002821, /* U+2821 BRAILLE PATTERN DOTS-16 */ + Key_braille_dots_26 = 0x1002822, /* U+2822 BRAILLE PATTERN DOTS-26 */ + Key_braille_dots_126 = 0x1002823, /* U+2823 BRAILLE PATTERN DOTS-126 */ + Key_braille_dots_36 = 0x1002824, /* U+2824 BRAILLE PATTERN DOTS-36 */ + Key_braille_dots_136 = 0x1002825, /* U+2825 BRAILLE PATTERN DOTS-136 */ + Key_braille_dots_236 = 0x1002826, /* U+2826 BRAILLE PATTERN DOTS-236 */ + Key_braille_dots_1236 = 0x1002827, /* U+2827 BRAILLE PATTERN DOTS-1236 */ + Key_braille_dots_46 = 0x1002828, /* U+2828 BRAILLE PATTERN DOTS-46 */ + Key_braille_dots_146 = 0x1002829, /* U+2829 BRAILLE PATTERN DOTS-146 */ + Key_braille_dots_246 = 0x100282a, /* U+282a BRAILLE PATTERN DOTS-246 */ + Key_braille_dots_1246 = 0x100282b, /* U+282b BRAILLE PATTERN DOTS-1246 */ + Key_braille_dots_346 = 0x100282c, /* U+282c BRAILLE PATTERN DOTS-346 */ + Key_braille_dots_1346 = 0x100282d, /* U+282d BRAILLE PATTERN DOTS-1346 */ + Key_braille_dots_2346 = 0x100282e, /* U+282e BRAILLE PATTERN DOTS-2346 */ + Key_braille_dots_12346 = 0x100282f, /* U+282f BRAILLE PATTERN DOTS-12346 */ + Key_braille_dots_56 = 0x1002830, /* U+2830 BRAILLE PATTERN DOTS-56 */ + Key_braille_dots_156 = 0x1002831, /* U+2831 BRAILLE PATTERN DOTS-156 */ + Key_braille_dots_256 = 0x1002832, /* U+2832 BRAILLE PATTERN DOTS-256 */ + Key_braille_dots_1256 = 0x1002833, /* U+2833 BRAILLE PATTERN DOTS-1256 */ + Key_braille_dots_356 = 0x1002834, /* U+2834 BRAILLE PATTERN DOTS-356 */ + Key_braille_dots_1356 = 0x1002835, /* U+2835 BRAILLE PATTERN DOTS-1356 */ + Key_braille_dots_2356 = 0x1002836, /* U+2836 BRAILLE PATTERN DOTS-2356 */ + Key_braille_dots_12356 = 0x1002837, /* U+2837 BRAILLE PATTERN DOTS-12356 */ + Key_braille_dots_456 = 0x1002838, /* U+2838 BRAILLE PATTERN DOTS-456 */ + Key_braille_dots_1456 = 0x1002839, /* U+2839 BRAILLE PATTERN DOTS-1456 */ + Key_braille_dots_2456 = 0x100283a, /* U+283a BRAILLE PATTERN DOTS-2456 */ + Key_braille_dots_12456 = 0x100283b, /* U+283b BRAILLE PATTERN DOTS-12456 */ + Key_braille_dots_3456 = 0x100283c, /* U+283c BRAILLE PATTERN DOTS-3456 */ + Key_braille_dots_13456 = 0x100283d, /* U+283d BRAILLE PATTERN DOTS-13456 */ + Key_braille_dots_23456 = 0x100283e, /* U+283e BRAILLE PATTERN DOTS-23456 */ + Key_braille_dots_123456 = 0x100283f, /* U+283f BRAILLE PATTERN DOTS-123456 */ + Key_braille_dots_7 = 0x1002840, /* U+2840 BRAILLE PATTERN DOTS-7 */ + Key_braille_dots_17 = 0x1002841, /* U+2841 BRAILLE PATTERN DOTS-17 */ + Key_braille_dots_27 = 0x1002842, /* U+2842 BRAILLE PATTERN DOTS-27 */ + Key_braille_dots_127 = 0x1002843, /* U+2843 BRAILLE PATTERN DOTS-127 */ + Key_braille_dots_37 = 0x1002844, /* U+2844 BRAILLE PATTERN DOTS-37 */ + Key_braille_dots_137 = 0x1002845, /* U+2845 BRAILLE PATTERN DOTS-137 */ + Key_braille_dots_237 = 0x1002846, /* U+2846 BRAILLE PATTERN DOTS-237 */ + Key_braille_dots_1237 = 0x1002847, /* U+2847 BRAILLE PATTERN DOTS-1237 */ + Key_braille_dots_47 = 0x1002848, /* U+2848 BRAILLE PATTERN DOTS-47 */ + Key_braille_dots_147 = 0x1002849, /* U+2849 BRAILLE PATTERN DOTS-147 */ + Key_braille_dots_247 = 0x100284a, /* U+284a BRAILLE PATTERN DOTS-247 */ + Key_braille_dots_1247 = 0x100284b, /* U+284b BRAILLE PATTERN DOTS-1247 */ + Key_braille_dots_347 = 0x100284c, /* U+284c BRAILLE PATTERN DOTS-347 */ + Key_braille_dots_1347 = 0x100284d, /* U+284d BRAILLE PATTERN DOTS-1347 */ + Key_braille_dots_2347 = 0x100284e, /* U+284e BRAILLE PATTERN DOTS-2347 */ + Key_braille_dots_12347 = 0x100284f, /* U+284f BRAILLE PATTERN DOTS-12347 */ + Key_braille_dots_57 = 0x1002850, /* U+2850 BRAILLE PATTERN DOTS-57 */ + Key_braille_dots_157 = 0x1002851, /* U+2851 BRAILLE PATTERN DOTS-157 */ + Key_braille_dots_257 = 0x1002852, /* U+2852 BRAILLE PATTERN DOTS-257 */ + Key_braille_dots_1257 = 0x1002853, /* U+2853 BRAILLE PATTERN DOTS-1257 */ + Key_braille_dots_357 = 0x1002854, /* U+2854 BRAILLE PATTERN DOTS-357 */ + Key_braille_dots_1357 = 0x1002855, /* U+2855 BRAILLE PATTERN DOTS-1357 */ + Key_braille_dots_2357 = 0x1002856, /* U+2856 BRAILLE PATTERN DOTS-2357 */ + Key_braille_dots_12357 = 0x1002857, /* U+2857 BRAILLE PATTERN DOTS-12357 */ + Key_braille_dots_457 = 0x1002858, /* U+2858 BRAILLE PATTERN DOTS-457 */ + Key_braille_dots_1457 = 0x1002859, /* U+2859 BRAILLE PATTERN DOTS-1457 */ + Key_braille_dots_2457 = 0x100285a, /* U+285a BRAILLE PATTERN DOTS-2457 */ + Key_braille_dots_12457 = 0x100285b, /* U+285b BRAILLE PATTERN DOTS-12457 */ + Key_braille_dots_3457 = 0x100285c, /* U+285c BRAILLE PATTERN DOTS-3457 */ + Key_braille_dots_13457 = 0x100285d, /* U+285d BRAILLE PATTERN DOTS-13457 */ + Key_braille_dots_23457 = 0x100285e, /* U+285e BRAILLE PATTERN DOTS-23457 */ + Key_braille_dots_123457 = 0x100285f, /* U+285f BRAILLE PATTERN DOTS-123457 */ + Key_braille_dots_67 = 0x1002860, /* U+2860 BRAILLE PATTERN DOTS-67 */ + Key_braille_dots_167 = 0x1002861, /* U+2861 BRAILLE PATTERN DOTS-167 */ + Key_braille_dots_267 = 0x1002862, /* U+2862 BRAILLE PATTERN DOTS-267 */ + Key_braille_dots_1267 = 0x1002863, /* U+2863 BRAILLE PATTERN DOTS-1267 */ + Key_braille_dots_367 = 0x1002864, /* U+2864 BRAILLE PATTERN DOTS-367 */ + Key_braille_dots_1367 = 0x1002865, /* U+2865 BRAILLE PATTERN DOTS-1367 */ + Key_braille_dots_2367 = 0x1002866, /* U+2866 BRAILLE PATTERN DOTS-2367 */ + Key_braille_dots_12367 = 0x1002867, /* U+2867 BRAILLE PATTERN DOTS-12367 */ + Key_braille_dots_467 = 0x1002868, /* U+2868 BRAILLE PATTERN DOTS-467 */ + Key_braille_dots_1467 = 0x1002869, /* U+2869 BRAILLE PATTERN DOTS-1467 */ + Key_braille_dots_2467 = 0x100286a, /* U+286a BRAILLE PATTERN DOTS-2467 */ + Key_braille_dots_12467 = 0x100286b, /* U+286b BRAILLE PATTERN DOTS-12467 */ + Key_braille_dots_3467 = 0x100286c, /* U+286c BRAILLE PATTERN DOTS-3467 */ + Key_braille_dots_13467 = 0x100286d, /* U+286d BRAILLE PATTERN DOTS-13467 */ + Key_braille_dots_23467 = 0x100286e, /* U+286e BRAILLE PATTERN DOTS-23467 */ + Key_braille_dots_123467 = 0x100286f, /* U+286f BRAILLE PATTERN DOTS-123467 */ + Key_braille_dots_567 = 0x1002870, /* U+2870 BRAILLE PATTERN DOTS-567 */ + Key_braille_dots_1567 = 0x1002871, /* U+2871 BRAILLE PATTERN DOTS-1567 */ + Key_braille_dots_2567 = 0x1002872, /* U+2872 BRAILLE PATTERN DOTS-2567 */ + Key_braille_dots_12567 = 0x1002873, /* U+2873 BRAILLE PATTERN DOTS-12567 */ + Key_braille_dots_3567 = 0x1002874, /* U+2874 BRAILLE PATTERN DOTS-3567 */ + Key_braille_dots_13567 = 0x1002875, /* U+2875 BRAILLE PATTERN DOTS-13567 */ + Key_braille_dots_23567 = 0x1002876, /* U+2876 BRAILLE PATTERN DOTS-23567 */ + Key_braille_dots_123567 = 0x1002877, /* U+2877 BRAILLE PATTERN DOTS-123567 */ + Key_braille_dots_4567 = 0x1002878, /* U+2878 BRAILLE PATTERN DOTS-4567 */ + Key_braille_dots_14567 = 0x1002879, /* U+2879 BRAILLE PATTERN DOTS-14567 */ + Key_braille_dots_24567 = 0x100287a, /* U+287a BRAILLE PATTERN DOTS-24567 */ + Key_braille_dots_124567 = 0x100287b, /* U+287b BRAILLE PATTERN DOTS-124567 */ + Key_braille_dots_34567 = 0x100287c, /* U+287c BRAILLE PATTERN DOTS-34567 */ + Key_braille_dots_134567 = 0x100287d, /* U+287d BRAILLE PATTERN DOTS-134567 */ + Key_braille_dots_234567 = 0x100287e, /* U+287e BRAILLE PATTERN DOTS-234567 */ + Key_braille_dots_1234567 = 0x100287f, /* U+287f BRAILLE PATTERN DOTS-1234567 */ + Key_braille_dots_8 = 0x1002880, /* U+2880 BRAILLE PATTERN DOTS-8 */ + Key_braille_dots_18 = 0x1002881, /* U+2881 BRAILLE PATTERN DOTS-18 */ + Key_braille_dots_28 = 0x1002882, /* U+2882 BRAILLE PATTERN DOTS-28 */ + Key_braille_dots_128 = 0x1002883, /* U+2883 BRAILLE PATTERN DOTS-128 */ + Key_braille_dots_38 = 0x1002884, /* U+2884 BRAILLE PATTERN DOTS-38 */ + Key_braille_dots_138 = 0x1002885, /* U+2885 BRAILLE PATTERN DOTS-138 */ + Key_braille_dots_238 = 0x1002886, /* U+2886 BRAILLE PATTERN DOTS-238 */ + Key_braille_dots_1238 = 0x1002887, /* U+2887 BRAILLE PATTERN DOTS-1238 */ + Key_braille_dots_48 = 0x1002888, /* U+2888 BRAILLE PATTERN DOTS-48 */ + Key_braille_dots_148 = 0x1002889, /* U+2889 BRAILLE PATTERN DOTS-148 */ + Key_braille_dots_248 = 0x100288a, /* U+288a BRAILLE PATTERN DOTS-248 */ + Key_braille_dots_1248 = 0x100288b, /* U+288b BRAILLE PATTERN DOTS-1248 */ + Key_braille_dots_348 = 0x100288c, /* U+288c BRAILLE PATTERN DOTS-348 */ + Key_braille_dots_1348 = 0x100288d, /* U+288d BRAILLE PATTERN DOTS-1348 */ + Key_braille_dots_2348 = 0x100288e, /* U+288e BRAILLE PATTERN DOTS-2348 */ + Key_braille_dots_12348 = 0x100288f, /* U+288f BRAILLE PATTERN DOTS-12348 */ + Key_braille_dots_58 = 0x1002890, /* U+2890 BRAILLE PATTERN DOTS-58 */ + Key_braille_dots_158 = 0x1002891, /* U+2891 BRAILLE PATTERN DOTS-158 */ + Key_braille_dots_258 = 0x1002892, /* U+2892 BRAILLE PATTERN DOTS-258 */ + Key_braille_dots_1258 = 0x1002893, /* U+2893 BRAILLE PATTERN DOTS-1258 */ + Key_braille_dots_358 = 0x1002894, /* U+2894 BRAILLE PATTERN DOTS-358 */ + Key_braille_dots_1358 = 0x1002895, /* U+2895 BRAILLE PATTERN DOTS-1358 */ + Key_braille_dots_2358 = 0x1002896, /* U+2896 BRAILLE PATTERN DOTS-2358 */ + Key_braille_dots_12358 = 0x1002897, /* U+2897 BRAILLE PATTERN DOTS-12358 */ + Key_braille_dots_458 = 0x1002898, /* U+2898 BRAILLE PATTERN DOTS-458 */ + Key_braille_dots_1458 = 0x1002899, /* U+2899 BRAILLE PATTERN DOTS-1458 */ + Key_braille_dots_2458 = 0x100289a, /* U+289a BRAILLE PATTERN DOTS-2458 */ + Key_braille_dots_12458 = 0x100289b, /* U+289b BRAILLE PATTERN DOTS-12458 */ + Key_braille_dots_3458 = 0x100289c, /* U+289c BRAILLE PATTERN DOTS-3458 */ + Key_braille_dots_13458 = 0x100289d, /* U+289d BRAILLE PATTERN DOTS-13458 */ + Key_braille_dots_23458 = 0x100289e, /* U+289e BRAILLE PATTERN DOTS-23458 */ + Key_braille_dots_123458 = 0x100289f, /* U+289f BRAILLE PATTERN DOTS-123458 */ + Key_braille_dots_68 = 0x10028a0, /* U+28a0 BRAILLE PATTERN DOTS-68 */ + Key_braille_dots_168 = 0x10028a1, /* U+28a1 BRAILLE PATTERN DOTS-168 */ + Key_braille_dots_268 = 0x10028a2, /* U+28a2 BRAILLE PATTERN DOTS-268 */ + Key_braille_dots_1268 = 0x10028a3, /* U+28a3 BRAILLE PATTERN DOTS-1268 */ + Key_braille_dots_368 = 0x10028a4, /* U+28a4 BRAILLE PATTERN DOTS-368 */ + Key_braille_dots_1368 = 0x10028a5, /* U+28a5 BRAILLE PATTERN DOTS-1368 */ + Key_braille_dots_2368 = 0x10028a6, /* U+28a6 BRAILLE PATTERN DOTS-2368 */ + Key_braille_dots_12368 = 0x10028a7, /* U+28a7 BRAILLE PATTERN DOTS-12368 */ + Key_braille_dots_468 = 0x10028a8, /* U+28a8 BRAILLE PATTERN DOTS-468 */ + Key_braille_dots_1468 = 0x10028a9, /* U+28a9 BRAILLE PATTERN DOTS-1468 */ + Key_braille_dots_2468 = 0x10028aa, /* U+28aa BRAILLE PATTERN DOTS-2468 */ + Key_braille_dots_12468 = 0x10028ab, /* U+28ab BRAILLE PATTERN DOTS-12468 */ + Key_braille_dots_3468 = 0x10028ac, /* U+28ac BRAILLE PATTERN DOTS-3468 */ + Key_braille_dots_13468 = 0x10028ad, /* U+28ad BRAILLE PATTERN DOTS-13468 */ + Key_braille_dots_23468 = 0x10028ae, /* U+28ae BRAILLE PATTERN DOTS-23468 */ + Key_braille_dots_123468 = 0x10028af, /* U+28af BRAILLE PATTERN DOTS-123468 */ + Key_braille_dots_568 = 0x10028b0, /* U+28b0 BRAILLE PATTERN DOTS-568 */ + Key_braille_dots_1568 = 0x10028b1, /* U+28b1 BRAILLE PATTERN DOTS-1568 */ + Key_braille_dots_2568 = 0x10028b2, /* U+28b2 BRAILLE PATTERN DOTS-2568 */ + Key_braille_dots_12568 = 0x10028b3, /* U+28b3 BRAILLE PATTERN DOTS-12568 */ + Key_braille_dots_3568 = 0x10028b4, /* U+28b4 BRAILLE PATTERN DOTS-3568 */ + Key_braille_dots_13568 = 0x10028b5, /* U+28b5 BRAILLE PATTERN DOTS-13568 */ + Key_braille_dots_23568 = 0x10028b6, /* U+28b6 BRAILLE PATTERN DOTS-23568 */ + Key_braille_dots_123568 = 0x10028b7, /* U+28b7 BRAILLE PATTERN DOTS-123568 */ + Key_braille_dots_4568 = 0x10028b8, /* U+28b8 BRAILLE PATTERN DOTS-4568 */ + Key_braille_dots_14568 = 0x10028b9, /* U+28b9 BRAILLE PATTERN DOTS-14568 */ + Key_braille_dots_24568 = 0x10028ba, /* U+28ba BRAILLE PATTERN DOTS-24568 */ + Key_braille_dots_124568 = 0x10028bb, /* U+28bb BRAILLE PATTERN DOTS-124568 */ + Key_braille_dots_34568 = 0x10028bc, /* U+28bc BRAILLE PATTERN DOTS-34568 */ + Key_braille_dots_134568 = 0x10028bd, /* U+28bd BRAILLE PATTERN DOTS-134568 */ + Key_braille_dots_234568 = 0x10028be, /* U+28be BRAILLE PATTERN DOTS-234568 */ + Key_braille_dots_1234568 = 0x10028bf, /* U+28bf BRAILLE PATTERN DOTS-1234568 */ + Key_braille_dots_78 = 0x10028c0, /* U+28c0 BRAILLE PATTERN DOTS-78 */ + Key_braille_dots_178 = 0x10028c1, /* U+28c1 BRAILLE PATTERN DOTS-178 */ + Key_braille_dots_278 = 0x10028c2, /* U+28c2 BRAILLE PATTERN DOTS-278 */ + Key_braille_dots_1278 = 0x10028c3, /* U+28c3 BRAILLE PATTERN DOTS-1278 */ + Key_braille_dots_378 = 0x10028c4, /* U+28c4 BRAILLE PATTERN DOTS-378 */ + Key_braille_dots_1378 = 0x10028c5, /* U+28c5 BRAILLE PATTERN DOTS-1378 */ + Key_braille_dots_2378 = 0x10028c6, /* U+28c6 BRAILLE PATTERN DOTS-2378 */ + Key_braille_dots_12378 = 0x10028c7, /* U+28c7 BRAILLE PATTERN DOTS-12378 */ + Key_braille_dots_478 = 0x10028c8, /* U+28c8 BRAILLE PATTERN DOTS-478 */ + Key_braille_dots_1478 = 0x10028c9, /* U+28c9 BRAILLE PATTERN DOTS-1478 */ + Key_braille_dots_2478 = 0x10028ca, /* U+28ca BRAILLE PATTERN DOTS-2478 */ + Key_braille_dots_12478 = 0x10028cb, /* U+28cb BRAILLE PATTERN DOTS-12478 */ + Key_braille_dots_3478 = 0x10028cc, /* U+28cc BRAILLE PATTERN DOTS-3478 */ + Key_braille_dots_13478 = 0x10028cd, /* U+28cd BRAILLE PATTERN DOTS-13478 */ + Key_braille_dots_23478 = 0x10028ce, /* U+28ce BRAILLE PATTERN DOTS-23478 */ + Key_braille_dots_123478 = 0x10028cf, /* U+28cf BRAILLE PATTERN DOTS-123478 */ + Key_braille_dots_578 = 0x10028d0, /* U+28d0 BRAILLE PATTERN DOTS-578 */ + Key_braille_dots_1578 = 0x10028d1, /* U+28d1 BRAILLE PATTERN DOTS-1578 */ + Key_braille_dots_2578 = 0x10028d2, /* U+28d2 BRAILLE PATTERN DOTS-2578 */ + Key_braille_dots_12578 = 0x10028d3, /* U+28d3 BRAILLE PATTERN DOTS-12578 */ + Key_braille_dots_3578 = 0x10028d4, /* U+28d4 BRAILLE PATTERN DOTS-3578 */ + Key_braille_dots_13578 = 0x10028d5, /* U+28d5 BRAILLE PATTERN DOTS-13578 */ + Key_braille_dots_23578 = 0x10028d6, /* U+28d6 BRAILLE PATTERN DOTS-23578 */ + Key_braille_dots_123578 = 0x10028d7, /* U+28d7 BRAILLE PATTERN DOTS-123578 */ + Key_braille_dots_4578 = 0x10028d8, /* U+28d8 BRAILLE PATTERN DOTS-4578 */ + Key_braille_dots_14578 = 0x10028d9, /* U+28d9 BRAILLE PATTERN DOTS-14578 */ + Key_braille_dots_24578 = 0x10028da, /* U+28da BRAILLE PATTERN DOTS-24578 */ + Key_braille_dots_124578 = 0x10028db, /* U+28db BRAILLE PATTERN DOTS-124578 */ + Key_braille_dots_34578 = 0x10028dc, /* U+28dc BRAILLE PATTERN DOTS-34578 */ + Key_braille_dots_134578 = 0x10028dd, /* U+28dd BRAILLE PATTERN DOTS-134578 */ + Key_braille_dots_234578 = 0x10028de, /* U+28de BRAILLE PATTERN DOTS-234578 */ + Key_braille_dots_1234578 = 0x10028df, /* U+28df BRAILLE PATTERN DOTS-1234578 */ + Key_braille_dots_678 = 0x10028e0, /* U+28e0 BRAILLE PATTERN DOTS-678 */ + Key_braille_dots_1678 = 0x10028e1, /* U+28e1 BRAILLE PATTERN DOTS-1678 */ + Key_braille_dots_2678 = 0x10028e2, /* U+28e2 BRAILLE PATTERN DOTS-2678 */ + Key_braille_dots_12678 = 0x10028e3, /* U+28e3 BRAILLE PATTERN DOTS-12678 */ + Key_braille_dots_3678 = 0x10028e4, /* U+28e4 BRAILLE PATTERN DOTS-3678 */ + Key_braille_dots_13678 = 0x10028e5, /* U+28e5 BRAILLE PATTERN DOTS-13678 */ + Key_braille_dots_23678 = 0x10028e6, /* U+28e6 BRAILLE PATTERN DOTS-23678 */ + Key_braille_dots_123678 = 0x10028e7, /* U+28e7 BRAILLE PATTERN DOTS-123678 */ + Key_braille_dots_4678 = 0x10028e8, /* U+28e8 BRAILLE PATTERN DOTS-4678 */ + Key_braille_dots_14678 = 0x10028e9, /* U+28e9 BRAILLE PATTERN DOTS-14678 */ + Key_braille_dots_24678 = 0x10028ea, /* U+28ea BRAILLE PATTERN DOTS-24678 */ + Key_braille_dots_124678 = 0x10028eb, /* U+28eb BRAILLE PATTERN DOTS-124678 */ + Key_braille_dots_34678 = 0x10028ec, /* U+28ec BRAILLE PATTERN DOTS-34678 */ + Key_braille_dots_134678 = 0x10028ed, /* U+28ed BRAILLE PATTERN DOTS-134678 */ + Key_braille_dots_234678 = 0x10028ee, /* U+28ee BRAILLE PATTERN DOTS-234678 */ + Key_braille_dots_1234678 = 0x10028ef, /* U+28ef BRAILLE PATTERN DOTS-1234678 */ + Key_braille_dots_5678 = 0x10028f0, /* U+28f0 BRAILLE PATTERN DOTS-5678 */ + Key_braille_dots_15678 = 0x10028f1, /* U+28f1 BRAILLE PATTERN DOTS-15678 */ + Key_braille_dots_25678 = 0x10028f2, /* U+28f2 BRAILLE PATTERN DOTS-25678 */ + Key_braille_dots_125678 = 0x10028f3, /* U+28f3 BRAILLE PATTERN DOTS-125678 */ + Key_braille_dots_35678 = 0x10028f4, /* U+28f4 BRAILLE PATTERN DOTS-35678 */ + Key_braille_dots_135678 = 0x10028f5, /* U+28f5 BRAILLE PATTERN DOTS-135678 */ + Key_braille_dots_235678 = 0x10028f6, /* U+28f6 BRAILLE PATTERN DOTS-235678 */ + Key_braille_dots_1235678 = 0x10028f7, /* U+28f7 BRAILLE PATTERN DOTS-1235678 */ + Key_braille_dots_45678 = 0x10028f8, /* U+28f8 BRAILLE PATTERN DOTS-45678 */ + Key_braille_dots_145678 = 0x10028f9, /* U+28f9 BRAILLE PATTERN DOTS-145678 */ + Key_braille_dots_245678 = 0x10028fa, /* U+28fa BRAILLE PATTERN DOTS-245678 */ + Key_braille_dots_1245678 = 0x10028fb, /* U+28fb BRAILLE PATTERN DOTS-1245678 */ + Key_braille_dots_345678 = 0x10028fc, /* U+28fc BRAILLE PATTERN DOTS-345678 */ + Key_braille_dots_1345678 = 0x10028fd, /* U+28fd BRAILLE PATTERN DOTS-1345678 */ + Key_braille_dots_2345678 = 0x10028fe, /* U+28fe BRAILLE PATTERN DOTS-2345678 */ + Key_braille_dots_12345678 = 0x10028ff, /* U+28ff BRAILLE PATTERN DOTS-12345678 */ + + + /* + * Sinhala (http://unicode.org/charts/PDF/U0D80.pdf) + * http://www.nongnu.org/sinhala/doc/transliteration/sinhala-transliteration_6.html + */ + + + Key_Sinh_ng = 0x1000d82, /* U+0D82 SINHALA ANUSVARAYA */ + Key_Sinh_h2 = 0x1000d83, /* U+0D83 SINHALA VISARGAYA */ + Key_Sinh_a = 0x1000d85, /* U+0D85 SINHALA AYANNA */ + Key_Sinh_aa = 0x1000d86, /* U+0D86 SINHALA AAYANNA */ + Key_Sinh_ae = 0x1000d87, /* U+0D87 SINHALA AEYANNA */ + Key_Sinh_aee = 0x1000d88, /* U+0D88 SINHALA AEEYANNA */ + Key_Sinh_i = 0x1000d89, /* U+0D89 SINHALA IYANNA */ + Key_Sinh_ii = 0x1000d8a, /* U+0D8A SINHALA IIYANNA */ + Key_Sinh_u = 0x1000d8b, /* U+0D8B SINHALA UYANNA */ + Key_Sinh_uu = 0x1000d8c, /* U+0D8C SINHALA UUYANNA */ + Key_Sinh_ri = 0x1000d8d, /* U+0D8D SINHALA IRUYANNA */ + Key_Sinh_rii = 0x1000d8e, /* U+0D8E SINHALA IRUUYANNA */ + Key_Sinh_lu = 0x1000d8f, /* U+0D8F SINHALA ILUYANNA */ + Key_Sinh_luu = 0x1000d90, /* U+0D90 SINHALA ILUUYANNA */ + Key_Sinh_e = 0x1000d91, /* U+0D91 SINHALA EYANNA */ + Key_Sinh_ee = 0x1000d92, /* U+0D92 SINHALA EEYANNA */ + Key_Sinh_ai = 0x1000d93, /* U+0D93 SINHALA AIYANNA */ + Key_Sinh_o = 0x1000d94, /* U+0D94 SINHALA OYANNA */ + Key_Sinh_oo = 0x1000d95, /* U+0D95 SINHALA OOYANNA */ + Key_Sinh_au = 0x1000d96, /* U+0D96 SINHALA AUYANNA */ + Key_Sinh_ka = 0x1000d9a, /* U+0D9A SINHALA KAYANNA */ + Key_Sinh_kha = 0x1000d9b, /* U+0D9B SINHALA MAHA. KAYANNA */ + Key_Sinh_ga = 0x1000d9c, /* U+0D9C SINHALA GAYANNA */ + Key_Sinh_gha = 0x1000d9d, /* U+0D9D SINHALA MAHA. GAYANNA */ + Key_Sinh_ng2 = 0x1000d9e, /* U+0D9E SINHALA KANTAJA NAASIKYAYA */ + Key_Sinh_nga = 0x1000d9f, /* U+0D9F SINHALA SANYAKA GAYANNA */ + Key_Sinh_ca = 0x1000da0, /* U+0DA0 SINHALA CAYANNA */ + Key_Sinh_cha = 0x1000da1, /* U+0DA1 SINHALA MAHA. CAYANNA */ + Key_Sinh_ja = 0x1000da2, /* U+0DA2 SINHALA JAYANNA */ + Key_Sinh_jha = 0x1000da3, /* U+0DA3 SINHALA MAHA. JAYANNA */ + Key_Sinh_nya = 0x1000da4, /* U+0DA4 SINHALA TAALUJA NAASIKYAYA */ + Key_Sinh_jnya = 0x1000da5, /* U+0DA5 SINHALA TAALUJA SANYOOGA NAASIKYAYA */ + Key_Sinh_nja = 0x1000da6, /* U+0DA6 SINHALA SANYAKA JAYANNA */ + Key_Sinh_tta = 0x1000da7, /* U+0DA7 SINHALA TTAYANNA */ + Key_Sinh_ttha = 0x1000da8, /* U+0DA8 SINHALA MAHA. TTAYANNA */ + Key_Sinh_dda = 0x1000da9, /* U+0DA9 SINHALA DDAYANNA */ + Key_Sinh_ddha = 0x1000daa, /* U+0DAA SINHALA MAHA. DDAYANNA */ + Key_Sinh_nna = 0x1000dab, /* U+0DAB SINHALA MUURDHAJA NAYANNA */ + Key_Sinh_ndda = 0x1000dac, /* U+0DAC SINHALA SANYAKA DDAYANNA */ + Key_Sinh_tha = 0x1000dad, /* U+0DAD SINHALA TAYANNA */ + Key_Sinh_thha = 0x1000dae, /* U+0DAE SINHALA MAHA. TAYANNA */ + Key_Sinh_dha = 0x1000daf, /* U+0DAF SINHALA DAYANNA */ + Key_Sinh_dhha = 0x1000db0, /* U+0DB0 SINHALA MAHA. DAYANNA */ + Key_Sinh_na = 0x1000db1, /* U+0DB1 SINHALA DANTAJA NAYANNA */ + Key_Sinh_ndha = 0x1000db3, /* U+0DB3 SINHALA SANYAKA DAYANNA */ + Key_Sinh_pa = 0x1000db4, /* U+0DB4 SINHALA PAYANNA */ + Key_Sinh_pha = 0x1000db5, /* U+0DB5 SINHALA MAHA. PAYANNA */ + Key_Sinh_ba = 0x1000db6, /* U+0DB6 SINHALA BAYANNA */ + Key_Sinh_bha = 0x1000db7, /* U+0DB7 SINHALA MAHA. BAYANNA */ + Key_Sinh_ma = 0x1000db8, /* U+0DB8 SINHALA MAYANNA */ + Key_Sinh_mba = 0x1000db9, /* U+0DB9 SINHALA AMBA BAYANNA */ + Key_Sinh_ya = 0x1000dba, /* U+0DBA SINHALA YAYANNA */ + Key_Sinh_ra = 0x1000dbb, /* U+0DBB SINHALA RAYANNA */ + Key_Sinh_la = 0x1000dbd, /* U+0DBD SINHALA DANTAJA LAYANNA */ + Key_Sinh_va = 0x1000dc0, /* U+0DC0 SINHALA VAYANNA */ + Key_Sinh_sha = 0x1000dc1, /* U+0DC1 SINHALA TAALUJA SAYANNA */ + Key_Sinh_ssha = 0x1000dc2, /* U+0DC2 SINHALA MUURDHAJA SAYANNA */ + Key_Sinh_sa = 0x1000dc3, /* U+0DC3 SINHALA DANTAJA SAYANNA */ + Key_Sinh_ha = 0x1000dc4, /* U+0DC4 SINHALA HAYANNA */ + Key_Sinh_lla = 0x1000dc5, /* U+0DC5 SINHALA MUURDHAJA LAYANNA */ + Key_Sinh_fa = 0x1000dc6, /* U+0DC6 SINHALA FAYANNA */ + Key_Sinh_al = 0x1000dca, /* U+0DCA SINHALA AL-LAKUNA */ + Key_Sinh_aa2 = 0x1000dcf, /* U+0DCF SINHALA AELA-PILLA */ + Key_Sinh_ae2 = 0x1000dd0, /* U+0DD0 SINHALA AEDA-PILLA */ + Key_Sinh_aee2 = 0x1000dd1, /* U+0DD1 SINHALA DIGA AEDA-PILLA */ + Key_Sinh_i2 = 0x1000dd2, /* U+0DD2 SINHALA IS-PILLA */ + Key_Sinh_ii2 = 0x1000dd3, /* U+0DD3 SINHALA DIGA IS-PILLA */ + Key_Sinh_u2 = 0x1000dd4, /* U+0DD4 SINHALA PAA-PILLA */ + Key_Sinh_uu2 = 0x1000dd6, /* U+0DD6 SINHALA DIGA PAA-PILLA */ + Key_Sinh_ru2 = 0x1000dd8, /* U+0DD8 SINHALA GAETTA-PILLA */ + Key_Sinh_e2 = 0x1000dd9, /* U+0DD9 SINHALA KOMBUVA */ + Key_Sinh_ee2 = 0x1000dda, /* U+0DDA SINHALA DIGA KOMBUVA */ + Key_Sinh_ai2 = 0x1000ddb, /* U+0DDB SINHALA KOMBU DEKA */ + Key_Sinh_o2 = 0x1000ddc, /* U+0DDC SINHALA KOMBUVA HAA AELA-PILLA*/ + Key_Sinh_oo2 = 0x1000ddd, /* U+0DDD SINHALA KOMBUVA HAA DIGA AELA-PILLA*/ + Key_Sinh_au2 = 0x1000dde, /* U+0DDE SINHALA KOMBUVA HAA GAYANUKITTA */ + Key_Sinh_lu2 = 0x1000ddf, /* U+0DDF SINHALA GAYANUKITTA */ + Key_Sinh_ruu2 = 0x1000df2, /* U+0DF2 SINHALA DIGA GAETTA-PILLA */ + Key_Sinh_luu2 = 0x1000df3, /* U+0DF3 SINHALA DIGA GAYANUKITTA */ + Key_Sinh_kunddaliya = 0x1000df4, /* U+0DF4 SINHALA KUNDDALIYA */ + } FcitxKeySym; + + /** + * @brief A fcitx hotkey, define the keysym (keyval) and (state) modifiers key state. + **/ + + typedef struct _HOTKEYS + { + /** + * @brief A hotkey string + **/ + char *desc; + /** + * @brief keyval of hotkey + **/ + FcitxKeySym sym; + /** + * @brief state of hotkey + **/ + int state; + } HOTKEYS; + + /** + * @brief fcitx key state (modifier keys) + **/ + typedef enum _KEY_STATE + { + KEY_NONE = 0, + KEY_SHIFT_COMP = 1 << 0, + KEY_CAPSLOCK = 1 << 1, + KEY_CTRL_COMP = 1 << 2, + KEY_ALT_COMP = 1 << 3, + KEY_ALT_SHIFT_COMP = KEY_ALT_COMP | KEY_SHIFT_COMP, + KEY_CTRL_SHIFT_COMP = KEY_CTRL_COMP | KEY_SHIFT_COMP, + KEY_CTRL_ALT_COMP = KEY_CTRL_COMP | KEY_ALT_COMP, + KEY_CTRL_ALT_SHIFT_COMP = KEY_CTRL_COMP | KEY_ALT_COMP | KEY_SHIFT_COMP, + KEY_NUMLOCK = 1 << 4, + KEY_SUPER_COMP = 1 << 6, + KEY_SCROLLLOCK = 1 << 7, + KEY_MOUSE_PRESSED = 1 << 8, + KEY_HANDLED_MASK = 1 << 24, + KEY_IGNORED_MASK = 1 << 25, + KEY_USED_MASK = 0x5c001fff + } KEY_STATE; + + /** + * @brief Set the hotkey with a string + * + * @param strKey key string + * @param hotkey hotkey array, it should have length 2 + * @return void + **/ + void SetHotKey(char *strKey, HOTKEYS * hotkey); + + /** + * @brief translate the fcitx key to it's own value, + * like uniform the keypad and the numbers, remove Shift from A-Z + * + * @param keysym keyval + * @param iKeyState state + * @param outk return of keyval + * @param outs return of state + * @return void + **/ + void GetKey(FcitxKeySym keysym, unsigned int iKeyState, FcitxKeySym* outk, unsigned int* outs); + + /** + * @brief parse the fcitx key string, like CTRL_SHIFT_A + * + * @param strKey key string + * @param sym return of keyval + * @param state return of key state + * @return boolean can be parsed or not + **/ + boolean ParseKey(char *strKey, FcitxKeySym* sym, int* state); + + /** + * @brief Get the Fcitx Key String for given keyval and state + * + * @param sym keyval + * @param state state + * @return char* string like CTRL_SPACE + **/ + char* GetKeyString(FcitxKeySym sym, unsigned int state); + + /** + * @brief is hotkey 0-9 + * + * @param sym keyval + * @param state state + * @return boolean + **/ + boolean IsHotKeyDigit(FcitxKeySym sym, int state); + + /** + * @brief is hotkey A-Z + * + * @param sym keyval + * @param state state + * @return boolean + **/ + boolean IsHotKeyUAZ(FcitxKeySym sym, int state); + /** + * @brief is hotkey a-z + * + * @param sym keyval + * @param state keystate + * @return boolean + **/ + boolean IsHotKeyLAZ(FcitxKeySym sym, int state); + /** + * @brief is hotkey printable + * + * @param sym keyval + * @param state state + * @return boolean + **/ + boolean IsHotKeySimple(FcitxKeySym sym, int state); + + /** + * @brief convert key pad key to simple KEY_STATE + * + * @param sym keyval + * @return FcitxKeySym + * @since 4.1.1 + */ + FcitxKeySym KeyPadToMain(FcitxKeySym sym); + +#ifdef __cplusplus +} + +#endif + +#endif + +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/lib/fcitx-config/sprintf.c fcitx-4.1.1/src/lib/fcitx-config/sprintf.c --- fcitx-4.0.1/src/lib/fcitx-config/sprintf.c 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/lib/fcitx-config/sprintf.c 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,72 @@ +/*************************************************************************** + * Copyright (C) 2010~2010 by CSSlayer * + * wengxt@gmail.com * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +#include +#include + +#include "fcitx/fcitx.h" + +#include "fcitx-config/sprintf.h" + +#ifndef HAVE_VASPRINTF +int vasprintf(char **ptr, const char *format, va_list ap) +{ + int ret; + va_list ap2; + + va_copy(ap2, ap); + + ret = vsnprintf(NULL, 0, format, ap2); + + if (ret <= 0) + return ret; + + (*ptr) = (char *)malloc(ret + 1); + + if (!*ptr) + return -1; + + va_copy(ap2, ap); + + ret = vsnprintf(*ptr, ret + 1, format, ap2); + + return ret; +} + +#endif + +#ifndef HAVE_ASPRINTF +int asprintf(char **ptr, const char *format, ...) +{ + va_list ap; + int ret; + + *ptr = NULL; + va_start(ap, format); + ret = vasprintf(ptr, format, ap); + va_end(ap); + + return ret; +} + +#endif + + +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/lib/fcitx-config/sprintf.h fcitx-4.1.1/src/lib/fcitx-config/sprintf.h --- fcitx-4.0.1/src/lib/fcitx-config/sprintf.h 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/lib/fcitx-config/sprintf.h 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,35 @@ +/*************************************************************************** + * Copyright (C) 2010~2010 by CSSlayer * + * wengxt@gmail.com * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +#ifndef _FCITX_SPRINTF_H_ +#define _FCITX_SPRINTF_H_ + +#include + +#ifndef HAVE_VASPRINTF +extern int vasprintf(char **ptr, const char *format, va_list ap); +#endif + +#ifndef HAVE_ASPRINTF +extern int asprintf(char **ptr, const char *format, ...); +#endif + +#endif +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/lib/fcitx-config/xdg.c fcitx-4.1.1/src/lib/fcitx-config/xdg.c --- fcitx-4.0.1/src/lib/fcitx-config/xdg.c 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/lib/fcitx-config/xdg.c 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,263 @@ +/*************************************************************************** + * Copyright (C) 20010~2010 by CSSlayer * + * wengxt@gmail.com * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +/** + * @file xdg.c + * @brief xdg related path handle + * @author CSSlayer + * @version 4.0.0 + * @date 2010-05-02 + */ + +#include +#include +#include +#include +#include +#include +#include + +#include "fcitx/fcitx.h" +#include "xdg.h" + +static void make_path(const char *path); + +void +make_path(const char *path) +{ + char opath[PATH_MAX]; + char *p; + size_t len; + + strncpy(opath, path, sizeof(opath)); + opath[PATH_MAX - 1] = '\0'; + len = strlen(opath); + + while (opath[len - 1] == '/') + { + opath[len - 1] = '\0'; + len --; + } + + for (p = opath; *p; p++) + if (*p == '/') + { + *p = '\0'; + + if (access(opath, F_OK)) + mkdir(opath, S_IRWXU); + + *p = '/'; + } + + if (access(opath, F_OK)) /* if path is not terminated with / */ + mkdir(opath, S_IRWXU); +} + + +FCITX_EXPORT_API +FILE *GetXDGFileWithPrefix(const char* prefix, const char *fileName, const char *mode, char **retFile) +{ + size_t len; + char prefixpath[PATH_MAX]; + snprintf(prefixpath, PATH_MAX, "%s/%s", PACKAGE, prefix); + char ** path = GetXDGPath(&len, "XDG_CONFIG_HOME", ".config", prefixpath , DATADIR, prefixpath); + + FILE* fp = GetXDGFile(fileName, path, mode, len, retFile); + + FreeXDGPath(path); + + return fp; +} + +FCITX_EXPORT_API +FILE *GetLibFile(const char *filename, const char *mode, char **retFile) +{ + size_t len; + char ** path; + path = GetXDGPath(&len, "XDG_CONFIG_HOME", ".config", PACKAGE "/lib" , LIBDIR, PACKAGE); + + FILE* fp = GetXDGFile(filename, path, mode, len, retFile); + + FreeXDGPath(path); + + return fp; + +} + +FCITX_EXPORT_API +FILE *GetXDGFileUserWithPrefix(const char* prefix, const char *fileName, const char *mode, char **retFile) +{ + size_t len; + char prefixpath[PATH_MAX]; + snprintf(prefixpath, PATH_MAX, "%s/%s", PACKAGE, prefix); + char ** path = GetXDGPath(&len, "XDG_CONFIG_HOME", ".config", prefixpath , NULL, NULL); + + FILE* fp = GetXDGFile(fileName, path, mode, len, retFile); + + FreeXDGPath(path); + + return fp; +} + +FCITX_EXPORT_API +FILE *GetXDGFile(const char *fileName, char **path, const char *mode, size_t len, char **retFile) +{ + char buf[PATH_MAX]; + size_t i; + FILE *fp = NULL; + + /* check absolute path */ + + if (strlen(fileName) > 0 && fileName[0] == '/') + { + fp = fopen(fileName, mode); + + if (retFile) + *retFile = strdup(fileName); + + return fp; + } + + if (len <= 0) + return NULL; + + if (!mode) + { + snprintf(buf, sizeof(buf), "%s/%s", path[0], fileName); + buf[sizeof(buf) - 1] = '\0'; + + if (retFile) + *retFile = strdup(buf); + + return NULL; + } + + for (i = 0;i < len;i++) + { + snprintf(buf, sizeof(buf), "%s/%s", path[i], fileName); + buf[sizeof(buf) - 1] = '\0'; + + fp = fopen(buf, mode); + + if (fp) + break; + + } + + if (!fp) + { + if (strchr(mode, 'w') || strchr(mode, 'a')) + { + snprintf(buf, sizeof(buf), "%s/%s", path[0], fileName); + buf[sizeof(buf) - 1] = '\0'; + + char *dirc = strdup(buf); + char *dir = dirname(dirc); + make_path(dir); + fp = fopen(buf, mode); + free(dirc); + } + } + + if (retFile) + *retFile = strdup(buf); + + return fp; +} + +FCITX_EXPORT_API +void FreeXDGPath(char **path) +{ + free(path[0]); + free(path); +} + +FCITX_EXPORT_API +char **GetXDGPath( + size_t *len, + const char* homeEnv, + const char* homeDefault, + const char* suffixHome, + const char* dirsDefault, + const char* suffixGlobal) +{ + char* dirHome; + const char *xdgDirHome = getenv(homeEnv); + + if (xdgDirHome && xdgDirHome[0]) + { + dirHome = strdup(xdgDirHome); + } + else + { + const char *home = getenv("HOME"); + dirHome = malloc(strlen(home) + 1 + strlen(homeDefault) + 1); + sprintf(dirHome, "%s/%s", home, homeDefault); + } + + char *dirs; + + if (dirsDefault) + asprintf(&dirs, "%s/%s:%s/%s", dirHome, suffixHome , dirsDefault, suffixGlobal); + else + asprintf(&dirs, "%s/%s", dirHome, suffixHome); + + free(dirHome); + + /* count dirs and change ':' to '\0' */ + size_t dirsCount = 1; + + char *tmp = dirs; + + while (*tmp) + { + if (*tmp == ':') + { + *tmp = '\0'; + dirsCount++; + } + + tmp++; + } + + /* alloc char pointer array and puts locations */ + size_t i; + + char **dirsArray = malloc(dirsCount * sizeof(char*)); + + for (i = 0; i < dirsCount; ++i) + { + dirsArray[i] = dirs; + + while (*dirs) + { + dirs++; + } + + dirs++; + } + + *len = dirsCount; + + return dirsArray; +} + +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/lib/fcitx-config/xdg.h fcitx-4.1.1/src/lib/fcitx-config/xdg.h --- fcitx-4.0.1/src/lib/fcitx-config/xdg.h 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/lib/fcitx-config/xdg.h 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,120 @@ +/*************************************************************************** + * Copyright (C) 2010~2010 by CSSlayer * + * wengxt@gmail.com * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +/** + * @file xdg.h + * @brief XDG Related path handle + * @author CSSlayer + * @version 4.0.0 + * @date 2010-05-02 + */ + +#ifndef _FCITX_XDG_H_ +#define _FCITX_XDG_H_ + +#include + +#ifdef __cplusplus +extern "C" +{ +#endif + + /** + * @brief Get library file + * + * @param filename filename + * @param mode file open mode + * @param retFile return file name + * @return FILE* + **/ + FILE *GetLibFile(const char *filename, const char *mode, char **retFile); + /** + * @brief get a xdg file pointer with given path, if mode contains "w", it will create necessary parent folder + * + * @param fileName filename + * @param path returns by GetXDGPath + * @param mode file open mode + * @param len length of path + * @param retFile return file name + * @return FILE* + * + * @see GetXDGPath + **/ + FILE *GetXDGFile(const char *fileName, char **path, const char *mode, size_t len, char **retFile); + /** + * @brief get xdg path with given arguement + * + * @param len return array size + * @param homeEnv homeEnv + * @param homeDefault homeDefault + * @param suffixHome suffixHome + * @param dirsDefault dirsDefault + * @param suffixGlobal suffixGlobal + * @return char** + **/ + char **GetXDGPath( + size_t *len, + const char* homeEnv, + const char* homeDefault, + const char* suffixHome, + const char* dirsDefault, + const char* suffixGlobal); + + /** + * @brief get xdg file with prefix string, usually [install_prefix]/fcitx/prefix/filename and ~/.config/fcitx/prefix/filename + * + * @param prefix prefix + * @param fileName filename + * @param mode file open mode + * @param retFile file name to return + * @return FILE* + * + * @see GetXDGFile + **/ + FILE *GetXDGFileWithPrefix(const char* prefix, const char *fileName, const char *mode, char**retFile); + /** + * @brief get xdg file with prefix string, usually ~/.config/fcitx/prefix/filename + * + * @param prefix prefix + * @param fileName filename + * @param mode file open mode + * @param retFile file name to return + * @return FILE* + * + * @see GetXDGFile + **/ + FILE *GetXDGFileUserWithPrefix(const char* prefix, const char *fileName, const char *mode, char **retFile); + /** + * @brief free xdg path return by GetXDGPath + * + * @param path path array + * @return void + * @see GetXDGFile + **/ + void FreeXDGPath(char **path); + +#ifdef __cplusplus +} + +#endif + +#endif + +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/lib/fcitx-utils/CMakeLists.txt fcitx-4.1.1/src/lib/fcitx-utils/CMakeLists.txt --- fcitx-4.0.1/src/lib/fcitx-utils/CMakeLists.txt 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/lib/fcitx-utils/CMakeLists.txt 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,43 @@ +set(FCITX_UTILS_SOURCES + utf8.c + utils.c + log.c + qsort_r.c +) + +set(FCITX_UTILS_HEADERS + log.h + utarray.h + utf8.h + utils.h + uthash.h +) + +add_library(fcitx-utils SHARED ${FCITX_UTILS_SOURCES}) +set_target_properties(fcitx-utils + PROPERTIES VERSION 0.1.0 + SOVERSION 0.1 + COMPILE_FLAGS "-fvisibility=hidden" + LINK_FLAGS "-Wl,--no-undefined" +) +target_link_libraries(fcitx-utils ${LIBINTL_LIBRARIES} ${LIBICONV_LIBRARIES}) + +configure_file(fcitx-utils.pc.in ${CMAKE_CURRENT_BINARY_DIR}/fcitx-utils.pc) + +install(TARGETS fcitx-utils LIBRARY DESTINATION "${libdir}") +install(FILES ${CMAKE_CURRENT_BINARY_DIR}/fcitx-utils.pc DESTINATION "${libdir}/pkgconfig") +install(FILES ${FCITX_UTILS_HEADERS} DESTINATION "${includedir}/fcitx-utils") + +if (ENABLE_STATIC) + +add_library(fcitx-utils-static STATIC ${FCITX_UTILS_SOURCES}) +set_target_properties(fcitx-utils-static PROPERTIES + OUTPUT_NAME "fcitx-utils" + PREFIX "lib" +) + +install(TARGETS fcitx-utils-static + LIBRARY DESTINATION ${libdir} + ARCHIVE DESTINATION ${libdir} +) +endif (ENABLE_STATIC) diff -Nru fcitx-4.0.1/src/lib/fcitx-utils/fcitx-utils.pc.in fcitx-4.1.1/src/lib/fcitx-utils/fcitx-utils.pc.in --- fcitx-4.0.1/src/lib/fcitx-utils/fcitx-utils.pc.in 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/lib/fcitx-utils/fcitx-utils.pc.in 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,10 @@ +prefix=@prefix@ +exec_prefix=@exec_prefix@ +libdir=@libdir@ +includedir=@includedir@ + +Name: fcitx-utils +Description: Fcitx Utils Library +Version: @version@ +Cflags: -I${includedir} +Libs: -L${libdir} -lfcitx-utils diff -Nru fcitx-4.0.1/src/lib/fcitx-utils/log.c fcitx-4.1.1/src/lib/fcitx-utils/log.c --- fcitx-4.0.1/src/lib/fcitx-utils/log.c 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/lib/fcitx-utils/log.c 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,100 @@ +/*************************************************************************** + * Copyright (C) 2010~2010 by CSSlayer * + * wengxt@gmail.com * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +#include +#include +#include +#include +#include + +#include "fcitx/fcitx.h" +#include "log.h" +#include "utils.h" + +static iconv_t iconvW = NULL; + +/** + * @brief Fcitx记录Log的函数 + * + * @param ErrorLevel + * @param fmt + * @param ... + */ +FCITX_EXPORT_API +void FcitxLogFunc(ErrorLevel e, const char* filename, const int line, const char* fmt, ...) +{ +#ifndef _DEBUG + if (e == DEBUG) + return; +#endif + switch (e) + { + case INFO: + fprintf(stderr, "[INFO]"); + break; + case ERROR: + fprintf(stderr, "[ERROR]"); + break; + case DEBUG: + fprintf(stderr, "[DEBUG]"); + break; + case WARNING: + fprintf(stderr, "[WARN]"); + break; + case FATAL: + fprintf(stderr, "[FATAL]"); + break; + } + + char *buffer; + va_list ap; + fprintf(stderr, " %s:%u-", filename, line); + va_start(ap, fmt); + vasprintf(&buffer, fmt, ap); + va_end(ap); + + if (iconvW == NULL) + iconvW = iconv_open("WCHAR_T", "utf-8"); + + if (iconvW == (iconv_t) -1) + { + fprintf(stderr, "%s\n", buffer); + } + else + { + size_t len = strlen(buffer); + wchar_t *wmessage; + size_t wlen = (len + 1) * sizeof (wchar_t); + wmessage = (wchar_t *) fcitx_malloc0 ((len + 1) * sizeof (wchar_t)); + + char *inp = buffer; + char *outp = (char*) wmessage; + + iconv(iconvW, &inp, &len, &outp, &wlen); + + fprintf(stderr, "%ls\n", wmessage); + + free(wmessage); + } + + free(buffer); +} + +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/lib/fcitx-utils/log.h fcitx-4.1.1/src/lib/fcitx-utils/log.h --- fcitx-4.0.1/src/lib/fcitx-utils/log.h 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/lib/fcitx-utils/log.h 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,58 @@ +/*************************************************************************** + * Copyright (C) 2010~2010 by CSSlayer * + * wengxt@gmail.com * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +#ifndef _FCITX_LOG_H_ +#define _FCITX_LOG_H_ + +#include + +#ifdef __cplusplus +extern "C" { +#endif + + typedef enum _ErrorLevel + { + DEBUG, + ERROR, + INFO, + FATAL, + WARNING + } ErrorLevel; + +#define FcitxLog(e, fmt...) FcitxLogFunc(e, __FILE__, __LINE__, fmt) + + /** + * @brief print a log string to stderr, should use FcitxLog instead of this function + * + * @param level log level + * @param filename current filename + * @param line line number + * @param fmt printf fmt + * @param ... + * @return void + **/ + void FcitxLogFunc(ErrorLevel, const char* filename, const int line, const char* fmt, ...); + +#ifdef __cplusplus +} +#endif + +#endif +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/lib/fcitx-utils/qsort_r.c fcitx-4.1.1/src/lib/fcitx-utils/qsort_r.c --- fcitx-4.0.1/src/lib/fcitx-utils/qsort_r.c 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/lib/fcitx-utils/qsort_r.c 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,93 @@ +/* Copyright (c) 2007-2010 Massachusetts Institute of Technology + * + * Permission is hereby granted, free of charge, to any person obtaining + * a copy of this software and associated documentation files (the + * "Software"), to deal in the Software without restriction, including + * without limitation the rights to use, copy, modify, merge, publish, + * distribute, sublicense, and/or sell copies of the Software, and to + * permit persons to whom the Software is furnished to do so, subject to + * the following conditions: + * + * The above copyright notice and this permission notice shall be + * included in all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS 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. + */ + +#include +#include "fcitx/fcitx.h" +#include "utarray.h" + +/* damn it, freebsd and linux don't have the same interface for qsort_r, + * and old glibc don't have qsort_r, force it to use third party version. + */ + +/* swap size bytes between a_ and b_ */ +static void swap(void *a_, void *b_, size_t size) +{ + if (a_ == b_) return; + { + size_t i, nlong = size / sizeof(long); + long *a = (long *) a_, *b = (long *) b_; + for (i = 0; i < nlong; ++i) { + long c = a[i]; + a[i] = b[i]; + b[i] = c; + } + a_ = (void*) (a + nlong); + b_ = (void*) (b + nlong); + } + { + size_t i; + char *a = (char *) a_, *b = (char *) b_; + size = size % sizeof(long); + for (i = 0; i < size; ++i) { + char c = a[i]; + a[i] = b[i]; + b[i] = c; + } + } +} + +FCITX_EXPORT_API +void fcitx_qsort_r(void *base_, size_t nmemb, size_t size, int (*compar)(const void *, const void *, void *), void *thunk) +{ + char *base = (char *) base_; + if (nmemb < 10) { /* use O(nmemb^2) algorithm for small enough nmemb */ + size_t i, j; + for (i = 0; i+1 < nmemb; ++i) + for (j = i+1; j < nmemb; ++j) + if (compar(base+i*size, base+j*size,thunk) > 0) + swap(base+i*size, base+j*size, size); + } + else { + size_t i, pivot, npart; + /* pick median of first/middle/last elements as pivot */ + { + const char *a = base, *b = base + (nmemb/2)*size, + *c = base + (nmemb-1)*size; + pivot = compar(a,b,thunk) < 0 + ? (compar(b,c,thunk) < 0 ? nmemb/2 : + (compar(a,c,thunk) < 0 ? nmemb-1 : 0)) + : (compar(a,c,thunk) < 0 ? 0 : + (compar(b,c,thunk) < 0 ? nmemb-1 : nmemb/2)); + } + /* partition array */ + swap(base + pivot*size, base + (nmemb-1) * size, size); + pivot = (nmemb - 1) * size; + for (i = npart = 0; i < nmemb-1; ++i) + if (compar(base+i*size, base+pivot,thunk) <= 0) + swap(base+i*size, base+(npart++)*size, size); + swap(base+npart*size, base+pivot, size); + /* recursive sort of two partitions */ + fcitx_qsort_r(base, npart, size, compar, thunk); + npart++; /* don't need to sort pivot */ + fcitx_qsort_r(base+npart*size, nmemb-npart, size, compar, thunk); + } +} diff -Nru fcitx-4.0.1/src/lib/fcitx-utils/utarray.h fcitx-4.1.1/src/lib/fcitx-utils/utarray.h --- fcitx-4.0.1/src/lib/fcitx-utils/utarray.h 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/lib/fcitx-utils/utarray.h 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,233 @@ +/* +Copyright (c) 2008-2010, Troy D. Hanson http://uthash.sourceforge.net +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS +IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED +TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A +PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER +OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR +PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF +LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING +NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +/* a dynamic array implementation using macros + * see http://uthash.sourceforge.net/utarray + */ +#ifndef UTARRAY_H +#define UTARRAY_H + +#define UTARRAY_VERSION 1.9 + +#ifdef __GNUC__ +#define _UNUSED_ __attribute__ ((__unused__)) +#else +#define _UNUSED_ +#endif + +#include /* size_t */ +#include /* memset, etc */ +#include /* exit */ + +#define oom() exit(-1) + +typedef void (ctor_f)(void *dst, const void *src); +typedef void (dtor_f)(void *elt); +typedef void (init_f)(void *elt); +typedef struct { + size_t sz; + init_f *init; + ctor_f *copy; + dtor_f *dtor; +} UT_icd; + +typedef struct { + unsigned i,n;/* i: index of next available slot, n: num slots */ + const UT_icd *icd; /* initializer, copy and destructor functions */ + char *d; /* n slots of size icd->sz*/ +} UT_array; + +#define utarray_init(a,_icd) do { \ + memset(a,0,sizeof(UT_array)); \ + (a)->icd=_icd; \ +} while(0) + +#define utarray_done(a) do { \ + if ((a)->n) { \ + if ((a)->icd->dtor) { \ + size_t _ut_i; \ + for(_ut_i=0; _ut_i < (a)->i; _ut_i++) { \ + (a)->icd->dtor(utarray_eltptr(a,_ut_i)); \ + } \ + } \ + free((a)->d); \ + } \ + (a)->n=0; \ +} while(0) + +#define utarray_new(a,_icd) do { \ + a=(UT_array*)malloc(sizeof(UT_array)); \ + utarray_init(a,_icd); \ +} while(0) + +#define utarray_free(a) do { \ + utarray_done(a); \ + free(a); \ +} while(0) + +#define utarray_reserve(a,by) do { \ + if (((a)->i+by) > ((a)->n)) { \ + while(((a)->i+by) > ((a)->n)) { (a)->n = ((a)->n ? (2*(a)->n) : 8); } \ + if ( ((a)->d=(char*)realloc((a)->d, (a)->n*(a)->icd->sz)) == NULL) oom(); \ + } \ +} while(0) + +#define utarray_push_back(a,p) do { \ + utarray_reserve(a,1); \ + if ((a)->icd->copy) { (a)->icd->copy( _utarray_eltptr(a,(a)->i++), p); } \ + else { memcpy(_utarray_eltptr(a,(a)->i++), p, (a)->icd->sz); }; \ +} while(0) + +#define utarray_pop_back(a) do { \ + if ((a)->icd->dtor) { (a)->icd->dtor( _utarray_eltptr(a,--((a)->i))); } \ + else { (a)->i--; } \ +} while(0) + +#define utarray_extend_back(a) do { \ + utarray_reserve(a,1); \ + if ((a)->icd->init) { (a)->icd->init(_utarray_eltptr(a,(a)->i)); } \ + else { memset(_utarray_eltptr(a,(a)->i),0,(a)->icd->sz); } \ + (a)->i++; \ +} while(0) + +#define utarray_len(a) ((a)->i) + +#define utarray_eltptr(a,j) (((j) < (a)->i) ? _utarray_eltptr(a,j) : NULL) +#define _utarray_eltptr(a,j) ((char*)((a)->d + ((a)->icd->sz*(j) ))) + +#define utarray_insert(a,p,j) do { \ + utarray_reserve(a,1); \ + if (j > (a)->i) break; \ + if ((j) < (a)->i) { \ + memmove( _utarray_eltptr(a,(j)+1), _utarray_eltptr(a,j), \ + ((a)->i - (j))*((a)->icd->sz)); \ + } \ + if ((a)->icd->copy) { (a)->icd->copy( _utarray_eltptr(a,j), p); } \ + else { memcpy(_utarray_eltptr(a,j), p, (a)->icd->sz); }; \ + (a)->i++; \ +} while(0) + +#define utarray_inserta(a,w,j) do { \ + if (utarray_len(w) == 0) break; \ + if (j > (a)->i) break; \ + utarray_reserve(a,utarray_len(w)); \ + if ((j) < (a)->i) { \ + memmove(_utarray_eltptr(a,(j)+utarray_len(w)), \ + _utarray_eltptr(a,j), \ + ((a)->i - (j))*((a)->icd->sz)); \ + } \ + if (a->icd->copy) { \ + size_t _ut_i; \ + for(_ut_i=0;_ut_i<(w)->i;_ut_i++) { \ + (a)->icd->copy(_utarray_eltptr(a,j+_ut_i), _utarray_eltptr(w,_ut_i)); \ + } \ + } else { \ + memcpy(_utarray_eltptr(a,j), _utarray_eltptr(w,0), \ + utarray_len(w)*((a)->icd->sz)); \ + } \ + (a)->i += utarray_len(w); \ +} while(0) + +#define utarray_resize(dst,num) do { \ + size_t _ut_i; \ + if ((dst)->i > (size_t)(num)) { \ + if ((dst)->icd->dtor) { \ + for(_ut_i=num; _ut_i < (dst)->i; _ut_i++) { \ + (dst)->icd->dtor(utarray_eltptr(dst,_ut_i)); \ + } \ + } \ + } else if ((dst)->i < (size_t)(num)) { \ + utarray_reserve(dst,num-(dst)->i); \ + if ((dst)->icd->init) { \ + for(_ut_i=(dst)->i; _ut_i < num; _ut_i++) { \ + (dst)->icd->init(utarray_eltptr(dst,_ut_i)); \ + } \ + } else { \ + memset(_utarray_eltptr(dst,(dst)->i),0,(dst)->icd->sz*(num-(dst)->i)); \ + } \ + } \ + (dst)->i = num; \ +} while(0) + +#define utarray_concat(dst,src) do { \ + utarray_inserta(dst,src,utarray_len(dst)); \ +} while(0) + +#define utarray_erase(a,pos,len) do { \ + if ((a)->icd->dtor) { \ + size_t _ut_i; \ + for(_ut_i=0; _ut_i < len; _ut_i++) { \ + (a)->icd->dtor(utarray_eltptr(a,pos+_ut_i)); \ + } \ + } \ + if ((a)->i > (pos+len)) { \ + memmove( _utarray_eltptr(a,pos), _utarray_eltptr(a,pos+len), \ + (((a)->i)-(pos+len))*((a)->icd->sz)); \ + } \ + (a)->i -= (len); \ +} while(0) + +#define utarray_clear(a) do { \ + if ((a)->i > 0) { \ + if ((a)->icd->dtor) { \ + size_t _ut_i; \ + for(_ut_i=0; _ut_i < (a)->i; _ut_i++) { \ + (a)->icd->dtor(utarray_eltptr(a,_ut_i)); \ + } \ + } \ + (a)->i = 0; \ + } \ +} while(0) + +#define utarray_sort(a,cmp) do { \ + qsort((a)->d, (a)->i, (a)->icd->sz, cmp); \ +} while(0) + +void fcitx_qsort_r(void *base_, size_t nmemb, size_t size, int (*compar)(const void *, const void *, void *), void *thunk); + +#define utarray_sort_r(a,cmp, arg) do { \ + fcitx_qsort_r((a)->d, (a)->i, (a)->icd->sz, cmp, arg); \ +} while(0) + +#define utarray_front(a) (((a)->i) ? (_utarray_eltptr(a,0)) : NULL) +#define utarray_next(a,e) (((e)==NULL) ? utarray_front(a) : ((((a)->i) > (utarray_eltidx(a,e)+1)) ? _utarray_eltptr(a,utarray_eltidx(a,e)+1) : NULL)) +#define utarray_back(a) (((a)->i) ? (_utarray_eltptr(a,(a)->i-1)) : NULL) +#define utarray_eltidx(a,e) (((char*)(e) >= (char*)((a)->d)) ? (((char*)(e) - (char*)((a)->d))/(a)->icd->sz) : -1) + +/* last we pre-define a few icd for common utarrays of ints and strings */ +static void utarray_str_cpy(void *dst, const void *src) { + char **_src = (char**)src, **_dst = (char**)dst; + *_dst = (*_src == NULL) ? NULL : strdup(*_src); +} +static void utarray_str_dtor(void *elt) { + char **eltc = (char**)elt; + if (*eltc) free(*eltc); +} +static const UT_icd ut_str_icd _UNUSED_ = {sizeof(char*),NULL,utarray_str_cpy,utarray_str_dtor}; +static const UT_icd ut_int_icd _UNUSED_ = {sizeof(int),NULL,NULL,NULL}; + +#define utarray_custom_bsearch(key, a, acc, cmp) custom_bsearch((key), (a)->d, (a)->i, (a)->icd->sz, (acc), cmp ) + +#endif /* UTARRAY_H */ + +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/lib/fcitx-utils/utf8.c fcitx-4.1.1/src/lib/fcitx-utils/utf8.c --- fcitx-4.0.1/src/lib/fcitx-utils/utf8.c 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/lib/fcitx-utils/utf8.c 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,308 @@ +/*************************************************************************** + * Copyright (C) 2010~2010 by CSSlayer * + * wengxt@gmail.com * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +#include "fcitx/fcitx.h" +#include "fcitx-utils/utf8.h" + +#define CONT(i) ISUTF8_CB(in[i]) +#define VAL(i, s) ((in[i]&0x3f) << s) + +#define UTF8_LENGTH(Char) \ + ((Char) < 0x80 ? 1 : \ + ((Char) < 0x800 ? 2 : \ + ((Char) < 0x10000 ? 3 : \ + ((Char) < 0x200000 ? 4 : \ + ((Char) < 0x4000000 ? 5 : 6))))) + +#define UNICODE_VALID(Char) \ + ((Char) < 0x110000 && \ + (((Char) & 0xFFFFF800) != 0xD800) && \ + ((Char) < 0xFDD0 || (Char) > 0xFDEF) && \ + ((Char) & 0xFFFE) != 0xFFFE) + +FCITX_EXPORT_API +size_t +utf8_strlen(const char *s) +{ + unsigned int l = 0; + + while (*s) + { + int chr; + + s = utf8_get_char(s, &chr); + l++; + } + + return l; +} + +FCITX_EXPORT_API +int utf8_char_len(const char *in) +{ + if (!(in[0] & 0x80)) + return 1; + + /* 2-byte, 0x80-0x7ff */ + if ((in[0]&0xe0) == 0xc0 && CONT(1)) + return 2; + + /* 3-byte, 0x800-0xffff */ + if ((in[0]&0xf0) == 0xe0 && CONT(1) && CONT(2)) + return 3; + + /* 4-byte, 0x10000-0x1FFFFF */ + if ((in[0]&0xf8) == 0xf0 && CONT(1) && CONT(2) && CONT(3)) + return 4; + + /* 5-byte, 0x200000-0x3FFFFFF */ + if ((in[0]&0xfc) == 0xf8 && CONT(1) && CONT(2) && CONT(3) && CONT(4)) + return 5; + + /* 6-byte, 0x400000-0x7FFFFFF */ + if ((in[0]&0xfe) == 0xfc && CONT(1) && CONT(2) && CONT(3) && CONT(4) && CONT(5)) + return 6; + + return 1; +} + +FCITX_EXPORT_API +char * +utf8_get_char(const char *in, int *chr) +{ + if (!(in[0] & 0x80)) + { + *(chr) = *(in); + return (char *)in + 1; + } + + /* 2-byte, 0x80-0x7ff */ + if ((in[0]&0xe0) == 0xc0 && CONT(1)) + { + *chr = ((in[0] & 0x1f) << 6) | VAL(1, 0); + return (char *)in + 2; + } + + /* 3-byte, 0x800-0xffff */ + if ((in[0]&0xf0) == 0xe0 && CONT(1) && CONT(2)) + { + *chr = ((in[0] & 0xf) << 12) | VAL(1, 6) | VAL(2, 0); + return (char *)in + 3; + } + + /* 4-byte, 0x10000-0x1FFFFF */ + if ((in[0]&0xf8) == 0xf0 && CONT(1) && CONT(2) && CONT(3)) + { + *chr = ((in[0] & 0x7) << 18) | VAL(1, 12) | VAL(2, 6) | VAL(3, 0); + return (char *)in + 4; + } + + /* 5-byte, 0x200000-0x3FFFFFF */ + if ((in[0]&0xfc) == 0xf8 && CONT(1) && CONT(2) && CONT(3) && CONT(4)) + { + *chr = ((in[0] & 0x3) << 24) | VAL(1, 18) | VAL(2, 12) | VAL(3, 6) | VAL(4, 0); + return (char *)in + 5; + } + + /* 6-byte, 0x400000-0x7FFFFFF */ + if ((in[0]&0xfe) == 0xfc && CONT(1) && CONT(2) && CONT(3) && CONT(4) && CONT(5)) + { + *chr = ((in[0] & 0x1) << 30) | VAL(1, 24) | VAL(2, 18) | VAL(3, 12) | VAL(4, 6) | VAL(5, 0); + return (char *)in + 6; + } + + *chr = *in; + + return (char *)in + 1; +} + +FCITX_EXPORT_API +int utf8_strncmp(const char *s1, const char *s2, int n) +{ + // Seems to work. + int c1, c2; + int i; + + for (i = 0;i < n;i++) + { + if (!(*s1 && 0x80)) + { + if (*s1 != *s2) + return 1; + + if (*s1 == 0) + return 0; + + s1 ++; + + s2 ++; + } + else + { + s1 = utf8_get_char(s1, &c1); + s2 = utf8_get_char(s2, &c2); + + if (c1 != c2) + return 1; + } + } + + return 0; +} + +FCITX_EXPORT_API +char* utf8_get_nth_char(char* s, unsigned int n) +{ + unsigned int l = 0; + + while (*s && l < n) + { + int chr; + + s = utf8_get_char(s, &chr); + l++; + } + + return s; +} + +FCITX_EXPORT_API +int +utf8_get_char_extended(const char *s, + int max_len) +{ + const unsigned char*p = (const unsigned char*)s; + int i, len; + unsigned int wc = (unsigned char) * p; + + if (wc < 0x80) + { + return wc; + } + else + if (wc < 0xc0) + { + return (unsigned int) - 1; + } + else + if (wc < 0xe0) + { + len = 2; + wc &= 0x1f; + } + else + if (wc < 0xf0) + { + len = 3; + wc &= 0x0f; + } + else + if (wc < 0xf8) + { + len = 4; + wc &= 0x07; + } + else + if (wc < 0xfc) + { + len = 5; + wc &= 0x03; + } + else + if (wc < 0xfe) + { + len = 6; + wc &= 0x01; + } + else + { + return (unsigned int) - 1; + } + + if (max_len >= 0 && len > max_len) + { + for (i = 1; i < max_len; i++) + { + if ((((unsigned char *)p)[i] & 0xc0) != 0x80) + return (unsigned int) - 1; + } + + return (unsigned int) - 2; + } + + for (i = 1; i < len; ++i) + { + unsigned int ch = ((unsigned char *)p)[i]; + + if ((ch & 0xc0) != 0x80) + { + if (ch) + return (unsigned int) - 1; + else + return (unsigned int) - 2; + } + + wc <<= 6; + + wc |= (ch & 0x3f); + } + + if (UTF8_LENGTH(wc) != len) + return (unsigned int) - 1; + + return wc; +} + +FCITX_EXPORT_API +int utf8_get_char_validated(const char *p, + int max_len) +{ + int result; + + if (max_len == 0) + return -2; + + result = utf8_get_char_extended(p, max_len); + + if (result & 0x80000000) + return result; + else + if (!UNICODE_VALID(result)) + return -1; + else + return result; +} + +FCITX_EXPORT_API +int utf8_check_string(const char *s) +{ + while (*s) + { + int chr; + + if (utf8_get_char_validated(s, 6) < 0) + return 0; + + s = utf8_get_char(s, &chr); + } + + return 1; +} +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/lib/fcitx-utils/utf8.h fcitx-4.1.1/src/lib/fcitx-utils/utf8.h --- fcitx-4.0.1/src/lib/fcitx-utils/utf8.h 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/lib/fcitx-utils/utf8.h 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,50 @@ +/*************************************************************************** + * Copyright (C) 2010~2010 by CSSlayer * + * wengxt@gmail.com * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +#ifndef _FCITX_UTF8_H_ +#define _FCITX_UTF8_H_ + +#include + +#ifdef __cplusplus +extern "C" { +#endif + +#define UTF8_MAX_LENGTH 6 + +#define ISUTF8_CB(c) (((c)&0xc0) == 0x80) + + extern size_t utf8_strlen(const char *s); + extern char* utf8_get_char(const char *in, int *chr); + extern int utf8_strncmp(const char *s1, const char *s2, int n); + extern int utf8_char_len(const char *in); + extern char* utf8_get_nth_char(char* s, unsigned int n); + extern int utf8_check_string(const char *s); + extern int utf8_get_char_extended (const char *p, int max_len); + extern int utf8_get_char_validated (const char *p, int max_len); + +#ifdef __cplusplus +} +#endif + +#endif /* ifndef UTF8_H */ + + +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/lib/fcitx-utils/uthash.h fcitx-4.1.1/src/lib/fcitx-utils/uthash.h --- fcitx-4.0.1/src/lib/fcitx-utils/uthash.h 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/lib/fcitx-utils/uthash.h 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,929 @@ +/* +Copyright (c) 2003-2009, Troy D. Hanson http://uthash.sourceforge.net +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS +IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED +TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A +PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER +OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR +PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF +LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING +NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +#ifndef UTHASH_H +#define UTHASH_H + +#include /* memcmp,strlen */ +#include /* ptrdiff_t */ +#include /* uint32_t etc */ + +#define UTHASH_VERSION 1.8 + +/* C++ requires extra stringent casting */ +#if defined __cplusplus +#define TYPEOF(x) (typeof(x)) +#else +#define TYPEOF(x) +#endif + + +#define uthash_fatal(msg) /* fatal error (out of memory,etc) */ +#define uthash_malloc(sz) malloc(sz) /* malloc fcn */ +#define uthash_free(ptr) free(ptr) /* free fcn */ + +#define uthash_noexpand_fyi(tbl) /* can be defined to log noexpand */ +#define uthash_expand_fyi(tbl) /* can be defined to log expands */ + +/* initial number of buckets */ +#define HASH_INITIAL_NUM_BUCKETS 32 /* initial number of buckets */ +#define HASH_INITIAL_NUM_BUCKETS_LOG2 5 /* lg2 of initial number of buckets */ +#define HASH_BKT_CAPACITY_THRESH 10 /* expand when bucket count reaches */ + +/* calculate the element whose hash handle address is hhe */ +#define ELMT_FROM_HH(tbl,hhp) ((void*)(((char*)hhp) - (tbl)->hho)) + +#define HASH_FIND(hh,head,keyptr,keylen,out) \ +do { \ + unsigned _hf_bkt,_hf_hashv; \ + out=TYPEOF(out)NULL; \ + if (head) { \ + HASH_FCN(keyptr,keylen, (head)->hh.tbl->num_buckets, _hf_hashv, _hf_bkt); \ + if (HASH_BLOOM_TEST((head)->hh.tbl, _hf_hashv)) { \ + HASH_FIND_IN_BKT((head)->hh.tbl, hh, (head)->hh.tbl->buckets[ _hf_bkt ], \ + keyptr,keylen,out); \ + } \ + } \ +} while (0) + +#ifdef HASH_BLOOM +#define HASH_BLOOM_BITLEN (1ULL << HASH_BLOOM) +#define HASH_BLOOM_BYTELEN (HASH_BLOOM_BITLEN/8) + ((HASH_BLOOM_BITLEN%8) ? 1:0) +#define HASH_BLOOM_MAKE(tbl) \ +do { \ + (tbl)->bloom_nbits = HASH_BLOOM; \ + (tbl)->bloom_bv = (uint8_t*)uthash_malloc(HASH_BLOOM_BYTELEN); \ + if (!((tbl)->bloom_bv)) { uthash_fatal( "out of memory"); } \ + memset((tbl)->bloom_bv, 0, HASH_BLOOM_BYTELEN); \ + (tbl)->bloom_sig = HASH_BLOOM_SIGNATURE; \ +} while (0); + +#define HASH_BLOOM_FREE(tbl) \ +do { \ + uthash_free((tbl)->bloom_bv); \ +} while (0); + +#define HASH_BLOOM_BITSET(bv,idx) (bv[(idx)/8] |= (1U << ((idx)%8))) +#define HASH_BLOOM_BITTEST(bv,idx) (bv[(idx)/8] & (1U << ((idx)%8))) + +#define HASH_BLOOM_ADD(tbl,hashv) \ + HASH_BLOOM_BITSET((tbl)->bloom_bv, (hashv & (uint32_t)((1ULL << (tbl)->bloom_nbits) - 1))) + +#define HASH_BLOOM_TEST(tbl,hashv) \ + HASH_BLOOM_BITTEST((tbl)->bloom_bv, (hashv & (uint32_t)((1ULL << (tbl)->bloom_nbits) - 1))) + +#else +#define HASH_BLOOM_MAKE(tbl) +#define HASH_BLOOM_FREE(tbl) +#define HASH_BLOOM_ADD(tbl,hashv) +#define HASH_BLOOM_TEST(tbl,hashv) (1) +#endif + +#define HASH_MAKE_TABLE(hh,head) \ +do { \ + (head)->hh.tbl = (UT_hash_table*)uthash_malloc( \ + sizeof(UT_hash_table)); \ + if (!((head)->hh.tbl)) { uthash_fatal( "out of memory"); } \ + memset((head)->hh.tbl, 0, sizeof(UT_hash_table)); \ + (head)->hh.tbl->tail = &((head)->hh); \ + (head)->hh.tbl->num_buckets = HASH_INITIAL_NUM_BUCKETS; \ + (head)->hh.tbl->log2_num_buckets = HASH_INITIAL_NUM_BUCKETS_LOG2; \ + (head)->hh.tbl->hho = (char*)(&(head)->hh) - (char*)(head); \ + (head)->hh.tbl->buckets = (UT_hash_bucket*)uthash_malloc( \ + HASH_INITIAL_NUM_BUCKETS*sizeof(struct UT_hash_bucket)); \ + if (! (head)->hh.tbl->buckets) { uthash_fatal( "out of memory"); } \ + memset((head)->hh.tbl->buckets, 0, \ + HASH_INITIAL_NUM_BUCKETS*sizeof(struct UT_hash_bucket)); \ + HASH_BLOOM_MAKE((head)->hh.tbl); \ + (head)->hh.tbl->signature = HASH_SIGNATURE; \ +} while(0) + +#define HASH_ADD(hh,head,fieldname,keylen_in,add) \ + HASH_ADD_KEYPTR(hh,head,&add->fieldname,keylen_in,add) + +#define HASH_ADD_KEYPTR(hh,head,keyptr,keylen_in,add) \ +do { \ + unsigned _ha_bkt; \ + (add)->hh.next = NULL; \ + (add)->hh.key = (char*)keyptr; \ + (add)->hh.keylen = keylen_in; \ + if (!(head)) { \ + head = (add); \ + (head)->hh.prev = NULL; \ + HASH_MAKE_TABLE(hh,head); \ + } else { \ + (head)->hh.tbl->tail->next = (add); \ + (add)->hh.prev = ELMT_FROM_HH((head)->hh.tbl, (head)->hh.tbl->tail); \ + (head)->hh.tbl->tail = &((add)->hh); \ + } \ + (head)->hh.tbl->num_items++; \ + (add)->hh.tbl = (head)->hh.tbl; \ + HASH_FCN(keyptr,keylen_in, (head)->hh.tbl->num_buckets, \ + (add)->hh.hashv, _ha_bkt); \ + HASH_ADD_TO_BKT((head)->hh.tbl->buckets[_ha_bkt],&(add)->hh); \ + HASH_BLOOM_ADD((head)->hh.tbl,(add)->hh.hashv); \ + HASH_EMIT_KEY(hh,head,keyptr,keylen_in); \ + HASH_FSCK(hh,head); \ +} while(0) + +#define HASH_TO_BKT( hashv, num_bkts, bkt ) \ +do { \ + bkt = ((hashv) & ((num_bkts) - 1)); \ +} while(0) + +/* delete "delptr" from the hash table. + * "the usual" patch-up process for the app-order doubly-linked-list. + * The use of _hd_hh_del below deserves special explanation. + * These used to be expressed using (delptr) but that led to a bug + * if someone used the same symbol for the head and deletee, like + * HASH_DELETE(hh,users,users); + * We want that to work, but by changing the head (users) below + * we were forfeiting our ability to further refer to the deletee (users) + * in the patch-up process. Solution: use scratch space in the table to + * copy the deletee pointer, then the latter references are via that + * scratch pointer rather than through the repointed (users) symbol. + */ +#define HASH_DELETE(hh,head,delptr) \ +do { \ + unsigned _hd_bkt; \ + struct UT_hash_handle *_hd_hh_del; \ + if ( ((delptr)->hh.prev == NULL) && ((delptr)->hh.next == NULL) ) { \ + uthash_free((head)->hh.tbl->buckets ); \ + HASH_BLOOM_FREE((head)->hh.tbl); \ + uthash_free((head)->hh.tbl); \ + head = NULL; \ + } else { \ + _hd_hh_del = &((delptr)->hh); \ + if ((delptr) == ELMT_FROM_HH((head)->hh.tbl,(head)->hh.tbl->tail)) { \ + (head)->hh.tbl->tail = \ + (UT_hash_handle*)((char*)((delptr)->hh.prev) + \ + (head)->hh.tbl->hho); \ + } \ + if ((delptr)->hh.prev) { \ + ((UT_hash_handle*)((char*)((delptr)->hh.prev) + \ + (head)->hh.tbl->hho))->next = (delptr)->hh.next; \ + } else { \ + head = TYPEOF(head)((delptr)->hh.next); \ + } \ + if (_hd_hh_del->next) { \ + ((UT_hash_handle*)((char*)_hd_hh_del->next + \ + (head)->hh.tbl->hho))->prev = \ + _hd_hh_del->prev; \ + } \ + HASH_TO_BKT( _hd_hh_del->hashv, (head)->hh.tbl->num_buckets, _hd_bkt); \ + HASH_DEL_IN_BKT(hh,(head)->hh.tbl->buckets[_hd_bkt], _hd_hh_del); \ + (head)->hh.tbl->num_items--; \ + } \ + HASH_FSCK(hh,head); \ +} while (0) + + +/* convenience forms of HASH_FIND/HASH_ADD/HASH_DEL */ +#define HASH_FIND_STR(head,findstr,out) \ + HASH_FIND(hh,head,findstr,strlen(findstr),out) +#define HASH_ADD_STR(head,strfield,add) \ + HASH_ADD(hh,head,strfield,strlen(add->strfield),add) +#define HASH_FIND_INT(head,findint,out) \ + HASH_FIND(hh,head,findint,sizeof(int),out) +#define HASH_ADD_INT(head,intfield,add) \ + HASH_ADD(hh,head,intfield,sizeof(int),add) +#define HASH_DEL(head,delptr) \ + HASH_DELETE(hh,head,delptr) + +/* HASH_FSCK checks hash integrity on every add/delete when HASH_DEBUG is defined. + * This is for uthash developer only; it compiles away if HASH_DEBUG isn't defined. + */ +#ifdef HASH_DEBUG +#define HASH_OOPS(...) do { fprintf(stderr,__VA_ARGS__); } while (0) +#define HASH_FSCK(hh,head) \ +do { \ + unsigned _bkt_i; \ + unsigned _count, _bkt_count; \ + char *_prev; \ + struct UT_hash_handle *_thh; \ + if (head) { \ + _count = 0; \ + for( _bkt_i = 0; _bkt_i < (head)->hh.tbl->num_buckets; _bkt_i++) { \ + _bkt_count = 0; \ + _thh = (head)->hh.tbl->buckets[_bkt_i].hh_head; \ + _prev = NULL; \ + while (_thh) { \ + if (_prev != (char*)(_thh->hh_prev)) { \ + HASH_OOPS("invalid hh_prev %p, actual %p\n", \ + _thh->hh_prev, _prev ); \ + } \ + _bkt_count++; \ + _prev = (char*)(_thh); \ + _thh = _thh->hh_next; \ + } \ + _count += _bkt_count; \ + if ((head)->hh.tbl->buckets[_bkt_i].count != _bkt_count) { \ + HASH_OOPS("invalid bucket count %d, actual %d\n", \ + (head)->hh.tbl->buckets[_bkt_i].count, _bkt_count); \ + } \ + } \ + if (_count != (head)->hh.tbl->num_items) { \ + HASH_OOPS("invalid hh item count %d, actual %d\n", \ + (head)->hh.tbl->num_items, _count ); \ + } \ + /* traverse hh in app order; check next/prev integrity, count */ \ + _count = 0; \ + _prev = NULL; \ + _thh = &(head)->hh; \ + while (_thh) { \ + _count++; \ + if (_prev !=(char*)(_thh->prev)) { \ + HASH_OOPS("invalid prev %p, actual %p\n", \ + _thh->prev, _prev ); \ + } \ + _prev = (char*)ELMT_FROM_HH((head)->hh.tbl, _thh); \ + _thh = ( _thh->next ? (UT_hash_handle*)((char*)(_thh->next) + \ + (head)->hh.tbl->hho) : NULL ); \ + } \ + if (_count != (head)->hh.tbl->num_items) { \ + HASH_OOPS("invalid app item count %d, actual %d\n", \ + (head)->hh.tbl->num_items, _count ); \ + } \ + } \ +} while (0) +#else +#define HASH_FSCK(hh,head) +#endif + +/* When compiled with -DHASH_EMIT_KEYS, length-prefixed keys are emitted to + * the descriptor to which this macro is defined for tuning the hash function. + * The app can #include to get the prototype for write(2). */ +#ifdef HASH_EMIT_KEYS +#define HASH_EMIT_KEY(hh,head,keyptr,fieldlen) \ +do { \ + unsigned _klen = fieldlen; \ + write(HASH_EMIT_KEYS, &_klen, sizeof(_klen)); \ + write(HASH_EMIT_KEYS, keyptr, fieldlen); \ +} while (0) +#else +#define HASH_EMIT_KEY(hh,head,keyptr,fieldlen) +#endif + +/* default to Jenkin's hash unless overridden e.g. DHASH_FUNCTION=HASH_SAX */ +#ifdef HASH_FUNCTION +#define HASH_FCN HASH_FUNCTION +#else +#define HASH_FCN HASH_JEN +#endif + +/* The Bernstein hash function, used in Perl prior to v5.6 */ +#define HASH_BER(key,keylen,num_bkts,hashv,bkt) \ +do { \ + unsigned _hb_keylen=keylen; \ + char *_hb_key=(char*)key; \ + (hashv) = 0; \ + while (_hb_keylen--) { (hashv) = ((hashv) * 33) + *_hb_key++; } \ + bkt = (hashv) & (num_bkts-1); \ +} while (0) + + +/* SAX/FNV/OAT/JEN hash functions are macro variants of those listed at + * http://eternallyconfuzzled.com/tuts/algorithms/jsw_tut_hashing.aspx */ +#define HASH_SAX(key,keylen,num_bkts,hashv,bkt) \ +do { \ + unsigned _sx_i; \ + char *_hs_key=(char*)key; \ + hashv = 0; \ + for(_sx_i=0; _sx_i < keylen; _sx_i++) \ + hashv ^= (hashv << 5) + (hashv >> 2) + _hs_key[_sx_i]; \ + bkt = hashv & (num_bkts-1); \ +} while (0) + +#define HASH_FNV(key,keylen,num_bkts,hashv,bkt) \ +do { \ + unsigned _fn_i; \ + char *_hf_key=(char*)key; \ + hashv = 2166136261UL; \ + for(_fn_i=0; _fn_i < keylen; _fn_i++) \ + hashv = (hashv * 16777619) ^ _hf_key[_fn_i]; \ + bkt = hashv & (num_bkts-1); \ +} while(0); + +#define HASH_OAT(key,keylen,num_bkts,hashv,bkt) \ +do { \ + unsigned _ho_i; \ + char *_ho_key=(char*)key; \ + hashv = 0; \ + for(_ho_i=0; _ho_i < keylen; _ho_i++) { \ + hashv += _ho_key[_ho_i]; \ + hashv += (hashv << 10); \ + hashv ^= (hashv >> 6); \ + } \ + hashv += (hashv << 3); \ + hashv ^= (hashv >> 11); \ + hashv += (hashv << 15); \ + bkt = hashv & (num_bkts-1); \ +} while(0) + +#define HASH_JEN_MIX(a,b,c) \ +do { \ + a -= b; a -= c; a ^= ( c >> 13 ); \ + b -= c; b -= a; b ^= ( a << 8 ); \ + c -= a; c -= b; c ^= ( b >> 13 ); \ + a -= b; a -= c; a ^= ( c >> 12 ); \ + b -= c; b -= a; b ^= ( a << 16 ); \ + c -= a; c -= b; c ^= ( b >> 5 ); \ + a -= b; a -= c; a ^= ( c >> 3 ); \ + b -= c; b -= a; b ^= ( a << 10 ); \ + c -= a; c -= b; c ^= ( b >> 15 ); \ +} while (0) + +#define HASH_JEN(key,keylen,num_bkts,hashv,bkt) \ +do { \ + unsigned _hj_i,_hj_j,_hj_k; \ + char *_hj_key=(char*)key; \ + hashv = 0xfeedbeef; \ + _hj_i = _hj_j = 0x9e3779b9; \ + _hj_k = keylen; \ + while (_hj_k >= 12) { \ + _hj_i += (_hj_key[0] + ( (unsigned)_hj_key[1] << 8 ) \ + + ( (unsigned)_hj_key[2] << 16 ) \ + + ( (unsigned)_hj_key[3] << 24 ) ); \ + _hj_j += (_hj_key[4] + ( (unsigned)_hj_key[5] << 8 ) \ + + ( (unsigned)_hj_key[6] << 16 ) \ + + ( (unsigned)_hj_key[7] << 24 ) ); \ + hashv += (_hj_key[8] + ( (unsigned)_hj_key[9] << 8 ) \ + + ( (unsigned)_hj_key[10] << 16 ) \ + + ( (unsigned)_hj_key[11] << 24 ) ); \ + \ + HASH_JEN_MIX(_hj_i, _hj_j, hashv); \ + \ + _hj_key += 12; \ + _hj_k -= 12; \ + } \ + hashv += keylen; \ + switch ( _hj_k ) { \ + case 11: hashv += ( (unsigned)_hj_key[10] << 24 ); \ + case 10: hashv += ( (unsigned)_hj_key[9] << 16 ); \ + case 9: hashv += ( (unsigned)_hj_key[8] << 8 ); \ + case 8: _hj_j += ( (unsigned)_hj_key[7] << 24 ); \ + case 7: _hj_j += ( (unsigned)_hj_key[6] << 16 ); \ + case 6: _hj_j += ( (unsigned)_hj_key[5] << 8 ); \ + case 5: _hj_j += _hj_key[4]; \ + case 4: _hj_i += ( (unsigned)_hj_key[3] << 24 ); \ + case 3: _hj_i += ( (unsigned)_hj_key[2] << 16 ); \ + case 2: _hj_i += ( (unsigned)_hj_key[1] << 8 ); \ + case 1: _hj_i += _hj_key[0]; \ + } \ + HASH_JEN_MIX(_hj_i, _hj_j, hashv); \ + bkt = hashv & (num_bkts-1); \ +} while(0) + +/* The Paul Hsieh hash function */ +#undef get16bits +#if (defined(__GNUC__) && defined(__i386__)) || defined(__WATCOMC__) \ + || defined(_MSC_VER) || defined (__BORLANDC__) || defined (__TURBOC__) +#define get16bits(d) (*((const uint16_t *) (d))) +#endif + +#if !defined (get16bits) +#define get16bits(d) ((((uint32_t)(((const uint8_t *)(d))[1])) << 8) \ + +(uint32_t)(((const uint8_t *)(d))[0]) ) +#endif +#define HASH_SFH(key,keylen,num_bkts,hashv,bkt) \ +do { \ + char *_sfh_key=(char*)key; \ + uint32_t _sfh_tmp, _sfh_len = keylen; \ + \ + int _sfh_rem = _sfh_len & 3; \ + _sfh_len >>= 2; \ + hashv = 0xcafebabe; \ + \ + /* Main loop */ \ + for (;_sfh_len > 0; _sfh_len--) { \ + hashv += get16bits (_sfh_key); \ + _sfh_tmp = (get16bits (_sfh_key+2) << 11) ^ hashv; \ + hashv = (hashv << 16) ^ _sfh_tmp; \ + _sfh_key += 2*sizeof (uint16_t); \ + hashv += hashv >> 11; \ + } \ + \ + /* Handle end cases */ \ + switch (_sfh_rem) { \ + case 3: hashv += get16bits (_sfh_key); \ + hashv ^= hashv << 16; \ + hashv ^= _sfh_key[sizeof (uint16_t)] << 18; \ + hashv += hashv >> 11; \ + break; \ + case 2: hashv += get16bits (_sfh_key); \ + hashv ^= hashv << 11; \ + hashv += hashv >> 17; \ + break; \ + case 1: hashv += *_sfh_key; \ + hashv ^= hashv << 10; \ + hashv += hashv >> 1; \ + } \ + \ + /* Force "avalanching" of final 127 bits */ \ + hashv ^= hashv << 3; \ + hashv += hashv >> 5; \ + hashv ^= hashv << 4; \ + hashv += hashv >> 17; \ + hashv ^= hashv << 25; \ + hashv += hashv >> 6; \ + bkt = hashv & (num_bkts-1); \ +} while(0); + +#ifdef HASH_USING_NO_STRICT_ALIASING +/* The MurmurHash exploits some CPU's (e.g. x86) tolerance for unaligned reads. + * For other types of CPU's (e.g. Sparc) an unaligned read causes a bus error. + * So MurmurHash comes in two versions, the faster unaligned one and the slower + * aligned one. We only use the faster one on CPU's where we know it's safe. + * + * Note the preprocessor built-in defines can be emitted using: + * + * gcc -m64 -dM -E - < /dev/null (on gcc) + * cc -## a.c (where a.c is a simple test file) (Sun Studio) + */ +#if (defined(__i386__) || defined(__x86_64__)) +#define HASH_MUR HASH_MUR_UNALIGNED +#else +#define HASH_MUR HASH_MUR_ALIGNED +#endif + +/* Appleby's MurmurHash fast version for unaligned-tolerant archs like i386 */ +#define HASH_MUR_UNALIGNED(key,keylen,num_bkts,hashv,bkt) \ +do { \ + const unsigned int _mur_m = 0x5bd1e995; \ + const int _mur_r = 24; \ + hashv = 0xcafebabe ^ keylen; \ + char *_mur_key = (char *)key; \ + uint32_t _mur_tmp, _mur_len = keylen; \ + \ + for (;_mur_len >= 4; _mur_len-=4) { \ + _mur_tmp = *(uint32_t *)_mur_key; \ + _mur_tmp *= _mur_m; \ + _mur_tmp ^= _mur_tmp >> _mur_r; \ + _mur_tmp *= _mur_m; \ + hashv *= _mur_m; \ + hashv ^= _mur_tmp; \ + _mur_key += 4; \ + } \ + \ + switch(_mur_len) \ + { \ + case 3: hashv ^= _mur_key[2] << 16; \ + case 2: hashv ^= _mur_key[1] << 8; \ + case 1: hashv ^= _mur_key[0]; \ + hashv *= _mur_m; \ + }; \ + \ + hashv ^= hashv >> 13; \ + hashv *= _mur_m; \ + hashv ^= hashv >> 15; \ + \ + bkt = hashv & (num_bkts-1); \ +} while(0) + +/* Appleby's MurmurHash version for alignment-sensitive archs like Sparc */ +#define HASH_MUR_ALIGNED(key,keylen,num_bkts,hashv,bkt) \ +do { \ + const unsigned int _mur_m = 0x5bd1e995; \ + const int _mur_r = 24; \ + hashv = 0xcafebabe ^ keylen; \ + char *_mur_key = (char *)key; \ + uint32_t _mur_len = keylen; \ + int _mur_align = (int)_mur_key & 3; \ + \ + if (_mur_align && (_mur_len >= 4)) { \ + unsigned _mur_t = 0, _mur_d = 0; \ + switch(_mur_align) { \ + case 1: _mur_t |= _mur_key[2] << 16; \ + case 2: _mur_t |= _mur_key[1] << 8; \ + case 3: _mur_t |= _mur_key[0]; \ + } \ + _mur_t <<= (8 * _mur_align); \ + _mur_key += 4-_mur_align; \ + _mur_len -= 4-_mur_align; \ + int _mur_sl = 8 * (4-_mur_align); \ + int _mur_sr = 8 * _mur_align; \ + \ + for (;_mur_len >= 4; _mur_len-=4) { \ + _mur_d = *(unsigned *)_mur_key; \ + _mur_t = (_mur_t >> _mur_sr) | (_mur_d << _mur_sl); \ + unsigned _mur_k = _mur_t; \ + _mur_k *= _mur_m; \ + _mur_k ^= _mur_k >> _mur_r; \ + _mur_k *= _mur_m; \ + hashv *= _mur_m; \ + hashv ^= _mur_k; \ + _mur_t = _mur_d; \ + _mur_key += 4; \ + } \ + _mur_d = 0; \ + if(_mur_len >= _mur_align) { \ + switch(_mur_align) { \ + case 3: _mur_d |= _mur_key[2] << 16; \ + case 2: _mur_d |= _mur_key[1] << 8; \ + case 1: _mur_d |= _mur_key[0]; \ + } \ + unsigned _mur_k = (_mur_t >> _mur_sr) | (_mur_d << _mur_sl); \ + _mur_k *= _mur_m; \ + _mur_k ^= _mur_k >> _mur_r; \ + _mur_k *= _mur_m; \ + hashv *= _mur_m; \ + hashv ^= _mur_k; \ + _mur_k += _mur_align; \ + _mur_len -= _mur_align; \ + \ + switch(_mur_len) \ + { \ + case 3: hashv ^= _mur_key[2] << 16; \ + case 2: hashv ^= _mur_key[1] << 8; \ + case 1: hashv ^= _mur_key[0]; \ + hashv *= _mur_m; \ + } \ + } else { \ + switch(_mur_len) \ + { \ + case 3: _mur_d ^= _mur_key[2] << 16; \ + case 2: _mur_d ^= _mur_key[1] << 8; \ + case 1: _mur_d ^= _mur_key[0]; \ + case 0: hashv ^= (_mur_t >> _mur_sr) | (_mur_d << _mur_sl); \ + hashv *= _mur_m; \ + } \ + } \ + \ + hashv ^= hashv >> 13; \ + hashv *= _mur_m; \ + hashv ^= hashv >> 15; \ + } else { \ + for (;_mur_len >= 4; _mur_len-=4) { \ + unsigned _mur_k = *(unsigned*)_mur_key; \ + _mur_k *= _mur_m; \ + _mur_k ^= _mur_k >> _mur_r; \ + _mur_k *= _mur_m; \ + hashv *= _mur_m; \ + hashv ^= _mur_k; \ + _mur_key += 4; \ + } \ + switch(_mur_len) \ + { \ + case 3: hashv ^= _mur_key[2] << 16; \ + case 2: hashv ^= _mur_key[1] << 8; \ + case 1: hashv ^= _mur_key[0]; \ + hashv *= _mur_m; \ + } \ + \ + hashv ^= hashv >> 13; \ + hashv *= _mur_m; \ + hashv ^= hashv >> 15; \ + } \ + bkt = hashv & (num_bkts-1); \ +} while(0) +#endif /* HASH_USING_NO_STRICT_ALIASING */ + +/* key comparison function; return 0 if keys equal */ +#define HASH_KEYCMP(a,b,len) memcmp(a,b,len) + +/* iterate over items in a known bucket to find desired item */ +#define HASH_FIND_IN_BKT(tbl,hh,head,keyptr,keylen_in,out) \ +out = TYPEOF(out)((head.hh_head) ? ELMT_FROM_HH(tbl,head.hh_head) : NULL); \ +while (out) { \ + if (out->hh.keylen == keylen_in) { \ + if ((HASH_KEYCMP(out->hh.key,keyptr,keylen_in)) == 0) break; \ + } \ + out= TYPEOF(out)((out->hh.hh_next) ? \ + ELMT_FROM_HH(tbl,out->hh.hh_next) : NULL); \ +} + +/* add an item to a bucket */ +#define HASH_ADD_TO_BKT(head,addhh) \ +do { \ + head.count++; \ + (addhh)->hh_next = head.hh_head; \ + (addhh)->hh_prev = NULL; \ + if (head.hh_head) { (head).hh_head->hh_prev = (addhh); } \ + (head).hh_head=addhh; \ + if (head.count >= ((head.expand_mult+1) * HASH_BKT_CAPACITY_THRESH) \ + && (addhh)->tbl->noexpand != 1) { \ + HASH_EXPAND_BUCKETS((addhh)->tbl); \ + } \ +} while(0) + +/* remove an item from a given bucket */ +#define HASH_DEL_IN_BKT(hh,head,hh_del) \ + (head).count--; \ + if ((head).hh_head == hh_del) { \ + (head).hh_head = hh_del->hh_next; \ + } \ + if (hh_del->hh_prev) { \ + hh_del->hh_prev->hh_next = hh_del->hh_next; \ + } \ + if (hh_del->hh_next) { \ + hh_del->hh_next->hh_prev = hh_del->hh_prev; \ + } + +/* Bucket expansion has the effect of doubling the number of buckets + * and redistributing the items into the new buckets. Ideally the + * items will distribute more or less evenly into the new buckets + * (the extent to which this is true is a measure of the quality of + * the hash function as it applies to the key domain). + * + * With the items distributed into more buckets, the chain length + * (item count) in each bucket is reduced. Thus by expanding buckets + * the hash keeps a bound on the chain length. This bounded chain + * length is the essence of how a hash provides constant time lookup. + * + * The calculation of tbl->ideal_chain_maxlen below deserves some + * explanation. First, keep in mind that we're calculating the ideal + * maximum chain length based on the *new* (doubled) bucket count. + * In fractions this is just n/b (n=number of items,b=new num buckets). + * Since the ideal chain length is an integer, we want to calculate + * ceil(n/b). We don't depend on floating point arithmetic in this + * hash, so to calculate ceil(n/b) with integers we could write + * + * ceil(n/b) = (n/b) + ((n%b)?1:0) + * + * and in fact a previous version of this hash did just that. + * But now we have improved things a bit by recognizing that b is + * always a power of two. We keep its base 2 log handy (call it lb), + * so now we can write this with a bit shift and logical AND: + * + * ceil(n/b) = (n>>lb) + ( (n & (b-1)) ? 1:0) + * + */ +#define HASH_EXPAND_BUCKETS(tbl) \ +do { \ + unsigned _he_bkt; \ + unsigned _he_bkt_i; \ + struct UT_hash_handle *_he_thh, *_he_hh_nxt; \ + UT_hash_bucket *_he_new_buckets, *_he_newbkt; \ + _he_new_buckets = (UT_hash_bucket*)uthash_malloc( \ + 2 * tbl->num_buckets * sizeof(struct UT_hash_bucket)); \ + if (!_he_new_buckets) { uthash_fatal( "out of memory"); } \ + memset(_he_new_buckets, 0, \ + 2 * tbl->num_buckets * sizeof(struct UT_hash_bucket)); \ + tbl->ideal_chain_maxlen = \ + (tbl->num_items >> (tbl->log2_num_buckets+1)) + \ + ((tbl->num_items & ((tbl->num_buckets*2)-1)) ? 1 : 0); \ + tbl->nonideal_items = 0; \ + for(_he_bkt_i = 0; _he_bkt_i < tbl->num_buckets; _he_bkt_i++) \ + { \ + _he_thh = tbl->buckets[ _he_bkt_i ].hh_head; \ + while (_he_thh) { \ + _he_hh_nxt = _he_thh->hh_next; \ + HASH_TO_BKT( _he_thh->hashv, tbl->num_buckets*2, _he_bkt); \ + _he_newbkt = &(_he_new_buckets[ _he_bkt ]); \ + if (++(_he_newbkt->count) > tbl->ideal_chain_maxlen) { \ + tbl->nonideal_items++; \ + _he_newbkt->expand_mult = _he_newbkt->count / \ + tbl->ideal_chain_maxlen; \ + } \ + _he_thh->hh_prev = NULL; \ + _he_thh->hh_next = _he_newbkt->hh_head; \ + if (_he_newbkt->hh_head) _he_newbkt->hh_head->hh_prev = \ + _he_thh; \ + _he_newbkt->hh_head = _he_thh; \ + _he_thh = _he_hh_nxt; \ + } \ + } \ + tbl->num_buckets *= 2; \ + tbl->log2_num_buckets++; \ + uthash_free( tbl->buckets ); \ + tbl->buckets = _he_new_buckets; \ + tbl->ineff_expands = (tbl->nonideal_items > (tbl->num_items >> 1)) ? \ + (tbl->ineff_expands+1) : 0; \ + if (tbl->ineff_expands > 1) { \ + tbl->noexpand=1; \ + uthash_noexpand_fyi(tbl); \ + } \ + uthash_expand_fyi(tbl); \ +} while(0) + + +/* This is an adaptation of Simon Tatham's O(n log(n)) mergesort */ +/* Note that HASH_SORT assumes the hash handle name to be hh. + * HASH_SRT was added to allow the hash handle name to be passed in. */ +#define HASH_SORT(head,cmpfcn) HASH_SRT(hh,head,cmpfcn) +#define HASH_SRT(hh,head,cmpfcn) \ +do { \ + unsigned _hs_i; \ + unsigned _hs_looping,_hs_nmerges,_hs_insize,_hs_psize,_hs_qsize; \ + struct UT_hash_handle *_hs_p, *_hs_q, *_hs_e, *_hs_list, *_hs_tail; \ + if (head) { \ + _hs_insize = 1; \ + _hs_looping = 1; \ + _hs_list = &((head)->hh); \ + while (_hs_looping) { \ + _hs_p = _hs_list; \ + _hs_list = NULL; \ + _hs_tail = NULL; \ + _hs_nmerges = 0; \ + while (_hs_p) { \ + _hs_nmerges++; \ + _hs_q = _hs_p; \ + _hs_psize = 0; \ + for ( _hs_i = 0; _hs_i < _hs_insize; _hs_i++ ) { \ + _hs_psize++; \ + _hs_q = (UT_hash_handle*)((_hs_q->next) ? \ + ((void*)((char*)(_hs_q->next) + \ + (head)->hh.tbl->hho)) : NULL); \ + if (! (_hs_q) ) break; \ + } \ + _hs_qsize = _hs_insize; \ + while ((_hs_psize > 0) || ((_hs_qsize > 0) && _hs_q )) { \ + if (_hs_psize == 0) { \ + _hs_e = _hs_q; \ + _hs_q = (UT_hash_handle*)((_hs_q->next) ? \ + ((void*)((char*)(_hs_q->next) + \ + (head)->hh.tbl->hho)) : NULL); \ + _hs_qsize--; \ + } else if ( (_hs_qsize == 0) || !(_hs_q) ) { \ + _hs_e = _hs_p; \ + _hs_p = (UT_hash_handle*)((_hs_p->next) ? \ + ((void*)((char*)(_hs_p->next) + \ + (head)->hh.tbl->hho)) : NULL); \ + _hs_psize--; \ + } else if (( \ + cmpfcn(TYPEOF(head)(ELMT_FROM_HH((head)->hh.tbl,_hs_p)), \ + TYPEOF(head)(ELMT_FROM_HH((head)->hh.tbl,_hs_q))) \ + ) <= 0) { \ + _hs_e = _hs_p; \ + _hs_p = (UT_hash_handle*)((_hs_p->next) ? \ + ((void*)((char*)(_hs_p->next) + \ + (head)->hh.tbl->hho)) : NULL); \ + _hs_psize--; \ + } else { \ + _hs_e = _hs_q; \ + _hs_q = (UT_hash_handle*)((_hs_q->next) ? \ + ((void*)((char*)(_hs_q->next) + \ + (head)->hh.tbl->hho)) : NULL); \ + _hs_qsize--; \ + } \ + if ( _hs_tail ) { \ + _hs_tail->next = ((_hs_e) ? \ + ELMT_FROM_HH((head)->hh.tbl,_hs_e) : NULL); \ + } else { \ + _hs_list = _hs_e; \ + } \ + _hs_e->prev = ((_hs_tail) ? \ + ELMT_FROM_HH((head)->hh.tbl,_hs_tail) : NULL); \ + _hs_tail = _hs_e; \ + } \ + _hs_p = _hs_q; \ + } \ + _hs_tail->next = NULL; \ + if ( _hs_nmerges <= 1 ) { \ + _hs_looping=0; \ + (head)->hh.tbl->tail = _hs_tail; \ + (head) = TYPEOF(head)ELMT_FROM_HH((head)->hh.tbl, _hs_list); \ + } \ + _hs_insize *= 2; \ + } \ + HASH_FSCK(hh,head); \ + } \ +} while (0) + +/* This function selects items from one hash into another hash. + * The end result is that the selected items have dual presence + * in both hashes. There is no copy of the items made; rather + * they are added into the new hash through a secondary hash + * hash handle that must be present in the structure. */ +#define HASH_SELECT(hh_dst, dst, hh_src, src, cond) \ +do { \ + unsigned _src_bkt, _dst_bkt; \ + void *_last_elt=NULL, *_elt; \ + UT_hash_handle *_src_hh, *_dst_hh, *_last_elt_hh=NULL; \ + ptrdiff_t _dst_hho = ((char*)(&(dst)->hh_dst) - (char*)(dst)); \ + if (src) { \ + for(_src_bkt=0; _src_bkt < (src)->hh_src.tbl->num_buckets; _src_bkt++) { \ + for(_src_hh = (src)->hh_src.tbl->buckets[_src_bkt].hh_head; \ + _src_hh; \ + _src_hh = _src_hh->hh_next) { \ + _elt = ELMT_FROM_HH((src)->hh_src.tbl, _src_hh); \ + if (cond(_elt)) { \ + _dst_hh = (UT_hash_handle*)(((char*)_elt) + _dst_hho); \ + _dst_hh->key = _src_hh->key; \ + _dst_hh->keylen = _src_hh->keylen; \ + _dst_hh->hashv = _src_hh->hashv; \ + _dst_hh->prev = _last_elt; \ + _dst_hh->next = NULL; \ + if (_last_elt_hh) { _last_elt_hh->next = _elt; } \ + if (!dst) { \ + dst = TYPEOF(dst)_elt; \ + HASH_MAKE_TABLE(hh_dst,dst); \ + } else { \ + _dst_hh->tbl = (dst)->hh_dst.tbl; \ + } \ + HASH_TO_BKT(_dst_hh->hashv, _dst_hh->tbl->num_buckets, _dst_bkt); \ + HASH_ADD_TO_BKT(_dst_hh->tbl->buckets[_dst_bkt],_dst_hh); \ + (dst)->hh_dst.tbl->num_items++; \ + _last_elt = _elt; \ + _last_elt_hh = _dst_hh; \ + } \ + } \ + } \ + } \ + HASH_FSCK(hh_dst,dst); \ +} while (0) + +#define HASH_CLEAR(hh,head) \ +do { \ + if (head) { \ + uthash_free((head)->hh.tbl->buckets ); \ + uthash_free((head)->hh.tbl); \ + (head)=NULL; \ + } \ +} while(0) + +/* obtain a count of items in the hash */ +#define HASH_COUNT(head) HASH_CNT(hh,head) +#define HASH_CNT(hh,head) (head?(head->hh.tbl->num_items):0) + +typedef struct UT_hash_bucket { + struct UT_hash_handle *hh_head; + unsigned count; + + /* expand_mult is normally set to 0. In this situation, the max chain length + * threshold is enforced at its default value, HASH_BKT_CAPACITY_THRESH. (If + * the bucket's chain exceeds this length, bucket expansion is triggered). + * However, setting expand_mult to a non-zero value delays bucket expansion + * (that would be triggered by additions to this particular bucket) + * until its chain length reaches a *multiple* of HASH_BKT_CAPACITY_THRESH. + * (The multiplier is simply expand_mult+1). The whole idea of this + * multiplier is to reduce bucket expansions, since they are expensive, in + * situations where we know that a particular bucket tends to be overused. + * It is better to let its chain length grow to a longer yet-still-bounded + * value, than to do an O(n) bucket expansion too often. + */ + unsigned expand_mult; + +} UT_hash_bucket; + +/* random signature used only to find hash tables in external analysis */ +#define HASH_SIGNATURE 0xa0111fe1 +#define HASH_BLOOM_SIGNATURE 0xb12220f2 + +typedef struct UT_hash_table { + UT_hash_bucket *buckets; + unsigned num_buckets, log2_num_buckets; + unsigned num_items; + struct UT_hash_handle *tail; /* tail hh in app order, for fast append */ + ptrdiff_t hho; /* hash handle offset (byte pos of hash handle in element */ + + /* in an ideal situation (all buckets used equally), no bucket would have + * more than ceil(#items/#buckets) items. that's the ideal chain length. */ + unsigned ideal_chain_maxlen; + + /* nonideal_items is the number of items in the hash whose chain position + * exceeds the ideal chain maxlen. these items pay the penalty for an uneven + * hash distribution; reaching them in a chain traversal takes >ideal steps */ + unsigned nonideal_items; + + /* ineffective expands occur when a bucket doubling was performed, but + * afterward, more than half the items in the hash had nonideal chain + * positions. If this happens on two consecutive expansions we inhibit any + * further expansion, as it's not helping; this happens when the hash + * function isn't a good fit for the key domain. When expansion is inhibited + * the hash will still work, albeit no longer in constant time. */ + unsigned ineff_expands, noexpand; + + uint32_t signature; /* used only to find hash tables in external analysis */ +#ifdef HASH_BLOOM + uint32_t bloom_sig; /* used only to test bloom exists in external analysis */ + uint8_t *bloom_bv; + char bloom_nbits; +#endif + +} UT_hash_table; + +typedef struct UT_hash_handle { + struct UT_hash_table *tbl; + void *prev; /* prev element in app order */ + void *next; /* next element in app order */ + struct UT_hash_handle *hh_prev; /* previous hh in bucket order */ + struct UT_hash_handle *hh_next; /* next hh in bucket order */ + void *key; /* ptr to enclosing struct's key */ + unsigned keylen; /* enclosing struct's key len */ + unsigned hashv; /* result of hash-fcn(key) */ +} UT_hash_handle; + +#endif /* UTHASH_H */ + +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/lib/fcitx-utils/utils.c fcitx-4.1.1/src/lib/fcitx-utils/utils.c --- fcitx-4.0.1/src/lib/fcitx-utils/utils.c 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/lib/fcitx-utils/utils.c 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,204 @@ +/*************************************************************************** + * Copyright (C) 2002~2005 by Yuking * + * yuking_net@sohu.com * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ +/** + * @file utils.c + * @author Yuking yuking_net@sohu.com + * @date 2008-1-16 + * + * @brief misc util function + * + */ + +#include +#include +#include +#include +#include +#include +#include + +#include "fcitx/fcitx.h" +#include "utils.h" +#include "utf8.h" +#include + +FCITX_EXPORT_API +int CalculateRecordNumber (FILE * fpDict) +{ + char *strBuf = NULL; + size_t bufLen = 0; + int nNumber = 0; + + while (getline(&strBuf, &bufLen, fpDict) != -1) { + nNumber++; + } + rewind (fpDict); + + if (strBuf) + free(strBuf); + + return nNumber; +} + +FCITX_EXPORT_API +void *custom_bsearch(const void *key, const void *base, + size_t nmemb, size_t size, int accurate, + int (*compar)(const void *, const void *)) +{ + if (accurate) + return bsearch(key, base, nmemb, size, compar); + else + { + size_t l, u, idx; + const void *p; + int comparison; + + l = 0; + u = nmemb; + while (l < u) + { + idx = (l + u) / 2; + p = (void *) (((const char *) base) + (idx * size)); + comparison = (*compar) (key, p); + if (comparison <= 0) + u = idx; + else if (comparison > 0) + l = idx + 1; + } + + if (u >= nmemb) + return NULL; + else + return (void *) (((const char *) base) + (l * size)); + } +} + +FCITX_EXPORT_API +void InitAsDaemon() +{ + pid_t pid; + if ((pid = fork()) > 0) + { + waitpid(pid, NULL, 0); + exit(0); + } + setsid(); + signal(SIGINT, SIG_IGN); + signal(SIGHUP, SIG_IGN); + signal(SIGQUIT, SIG_IGN); + signal(SIGPIPE, SIG_IGN); + signal(SIGTTOU, SIG_IGN); + signal(SIGTTIN, SIG_IGN); + signal(SIGCHLD, SIG_IGN); + if (fork() > 0) + exit(0); + chdir("/"); + + umask(0); +} + +FCITX_EXPORT_API +UT_array* SplitString(const char *str, char delm) +{ + UT_array* array; + utarray_new(array, &ut_str_icd); + char *bakstr = strdup(str); + size_t len = strlen(bakstr); + size_t i = 0, last = 0; + for (i =0 ; i <= len ; i++) + { + if (bakstr[i] == delm || bakstr[i] == '\0') + { + bakstr[i] = '\0'; + char *p = &bakstr[last]; + if (strlen(p) > 0) + utarray_push_back(array, &p); + last = i + 1; + } + } + free(bakstr); + return array; +} + +FCITX_EXPORT_API +void FreeStringList(UT_array *list) +{ + utarray_free(list); +} + +FCITX_EXPORT_API +void *fcitx_malloc0(size_t bytes) +{ + void *p = malloc(bytes); + if (!p) + return NULL; + + memset(p, 0, bytes); + return p; +} + +FCITX_EXPORT_API +char *fcitx_trim(char *s) +{ + register char *end; + register char csave; + + while (isspace(*s)) /* skip leading space */ + ++s; + end = strchr(s,'\0') - 1; + while (end >= s && isspace(*end)) /* skip trailing space */ + --end; + + csave = end[1]; + end[1] = '\0'; + s = strdup(s); + end[1] = csave; + return (s); +} + +FCITX_EXPORT_API +int FcitxGetDisplayNumber() +{ + int displayNumber = 0; + char* display = getenv ("DISPLAY"), *strDisplayNumber = NULL; + if (display != NULL) + { + display = strdup(display); + char* p = display; + for (; *p != ':' && *p != '\0'; p++); + + if (*p == ':') { + *p = '\0'; + p++; + strDisplayNumber = p; + } + for (; *p != '.' && *p != '\0'; p++); + + if (*p == '.') { + *p = '\0'; + } + + sscanf(strDisplayNumber, "%d", &displayNumber); + + free(display); + } + return displayNumber; +} +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/lib/fcitx-utils/utils.h fcitx-4.1.1/src/lib/fcitx-utils/utils.h --- fcitx-4.0.1/src/lib/fcitx-utils/utils.h 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/lib/fcitx-utils/utils.h 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,127 @@ +/*************************************************************************** + * Copyright (C) 2002~2005 by Yuking * + * yuking_net@sohu.com * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ +/** + * @file utils.h + * @author CS Slayer wengxt@gmail.com + * + * @brief Misc function for Fcitx + * + */ + +#ifndef _FCITX_UTILS_H_ +#define _FCITX_UTILS_H_ + +#include +#include +#include + +#ifdef __cplusplus +extern "C" { +#endif + + /** + * @brief A hash set for string + **/ + typedef struct _StringHashSet { + /** + * @brief String in Hash Set + **/ + char *name; + /** + * @brief UT Hash handle + **/ + UT_hash_handle hh; + } StringHashSet; + + + /** + * @brief Custom bsearch, it can search the most near value. + * + * @param key + * @param base + * @param nmemb + * @param size + * @param accurate + * @param compar + * + * @return + */ + void *custom_bsearch(const void *key, const void *base, + size_t nmemb, size_t size, int accurate, + int (*compar)(const void *, const void *)); + + /** + * @brief Fork twice to run as daemon + * + * @return void + **/ + void InitAsDaemon(); + + /** + * @brief Count the file line number + * + * @param fpDict file pointer + * @return int line number + **/ + int CalculateRecordNumber (FILE* fpDict); + + /** + * @brief Split a string by delm + * + * @param str input string + * @param delm character as delimiter + * @return UT_array* a new utarray for store the split string + **/ + UT_array* SplitString(const char *str, char delm); + + /** + * @brief Helper function for free the SplitString Output + * + * @param list the SplitString Output + * @return void + * @see SplitString + **/ + void FreeStringList(UT_array *list); + + /** + * @brief Trim the input string's white space + * + * @param s input string + * @return char* new malloced string, need to free'd by caller + **/ + char* fcitx_trim(char *s); + + /** + * @brief Malloc and memset all memory to zero + * + * @param bytes malloc size + * @return void* malloced pointer + **/ + void* fcitx_malloc0(size_t bytes); + + int FcitxGetDisplayNumber(); + +#ifdef __cplusplus +} +#endif + +#endif + +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/Makefile.am fcitx-4.1.1/src/Makefile.am --- fcitx-4.0.1/src/Makefile.am 2010-11-28 11:54:51.000000000 +0000 +++ fcitx-4.1.1/src/Makefile.am 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -SUBDIRS=fcitx-config im ui tools interface core diff -Nru fcitx-4.0.1/src/Makefile.in fcitx-4.1.1/src/Makefile.in --- fcitx-4.0.1/src/Makefile.in 2010-12-17 04:26:30.000000000 +0000 +++ fcitx-4.1.1/src/Makefile.in 1970-01-01 00:00:00.000000000 +0000 @@ -1,604 +0,0 @@ -# Makefile.in generated by automake 1.11.1 from Makefile.am. -# @configure_input@ - -# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, -# Inc. -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - -@SET_MAKE@ -VPATH = @srcdir@ -pkgdatadir = $(datadir)/@PACKAGE@ -pkgincludedir = $(includedir)/@PACKAGE@ -pkglibdir = $(libdir)/@PACKAGE@ -pkglibexecdir = $(libexecdir)/@PACKAGE@ -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = @build@ -host_triplet = @host@ -subdir = src -DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/configure.in -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -mkinstalldirs = $(install_sh) -d -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -CONFIG_CLEAN_VPATH_FILES = -AM_V_GEN = $(am__v_GEN_$(V)) -am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) -am__v_GEN_0 = @echo " GEN " $@; -AM_V_at = $(am__v_at_$(V)) -am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) -am__v_at_0 = @ -SOURCES = -DIST_SOURCES = -RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ - html-recursive info-recursive install-data-recursive \ - install-dvi-recursive install-exec-recursive \ - install-html-recursive install-info-recursive \ - install-pdf-recursive install-ps-recursive install-recursive \ - installcheck-recursive installdirs-recursive pdf-recursive \ - ps-recursive uninstall-recursive -RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ - distclean-recursive maintainer-clean-recursive -AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \ - $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \ - distdir -ETAGS = etags -CTAGS = ctags -DIST_SUBDIRS = $(SUBDIRS) -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -am__relativize = \ - dir0=`pwd`; \ - sed_first='s,^\([^/]*\)/.*$$,\1,'; \ - sed_rest='s,^[^/]*/*,,'; \ - sed_last='s,^.*/\([^/]*\)$$,\1,'; \ - sed_butlast='s,/*[^/]*$$,,'; \ - while test -n "$$dir1"; do \ - first=`echo "$$dir1" | sed -e "$$sed_first"`; \ - if test "$$first" != "."; then \ - if test "$$first" = ".."; then \ - dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ - dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ - else \ - first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ - if test "$$first2" = "$$first"; then \ - dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ - else \ - dir2="../$$dir2"; \ - fi; \ - dir0="$$dir0"/"$$first"; \ - fi; \ - fi; \ - dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ - done; \ - reldir="$$dir2" -ACLOCAL = @ACLOCAL@ -ALL_LINGUAS = @ALL_LINGUAS@ -AMTAR = @AMTAR@ -AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ -AR = @AR@ -AUTOCONF = @AUTOCONF@ -AUTOHEADER = @AUTOHEADER@ -AUTOMAKE = @AUTOMAKE@ -AWK = @AWK@ -CAIRO_XLIB_CFLAGS = @CAIRO_XLIB_CFLAGS@ -CAIRO_XLIB_LIBS = @CAIRO_XLIB_LIBS@ -CC = @CC@ -CCDEPMODE = @CCDEPMODE@ -CFLAGS = @CFLAGS@ -CPP = @CPP@ -CPPFLAGS = @CPPFLAGS@ -CYGPATH_W = @CYGPATH_W@ -DATADIRNAME = @DATADIRNAME@ -DBUS_CFLAGS = @DBUS_CFLAGS@ -DBUS_LIBS = @DBUS_LIBS@ -DEFS = @DEFS@ -DEPDIR = @DEPDIR@ -DLLTOOL = @DLLTOOL@ -DSYMUTIL = @DSYMUTIL@ -DUMPBIN = @DUMPBIN@ -ECHO_C = @ECHO_C@ -ECHO_N = @ECHO_N@ -ECHO_T = @ECHO_T@ -EGREP = @EGREP@ -EXEEXT = @EXEEXT@ -FGREP = @FGREP@ -FONTCONFIG_CFLAGS = @FONTCONFIG_CFLAGS@ -FONTCONFIG_LIBS = @FONTCONFIG_LIBS@ -GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ -GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ -GMSGFMT = @GMSGFMT@ -GMSGFMT_015 = @GMSGFMT_015@ -GREP = @GREP@ -HOST_LIBS = @HOST_LIBS@ -INCINTL = @INCINTL@ -INSTALL = @INSTALL@ -INSTALL_DATA = @INSTALL_DATA@ -INSTALL_PROGRAM = @INSTALL_PROGRAM@ -INSTALL_SCRIPT = @INSTALL_SCRIPT@ -INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ -INTLLIBS = @INTLLIBS@ -INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ -INTLTOOL_MERGE = @INTLTOOL_MERGE@ -INTLTOOL_PERL = @INTLTOOL_PERL@ -INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ -INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ -LD = @LD@ -LDFLAGS = @LDFLAGS@ -LIBICONV = @LIBICONV@ -LIBINTL = @LIBINTL@ -LIBOBJS = @LIBOBJS@ -LIBS = @LIBS@ -LIBTOOL = @LIBTOOL@ -LIPO = @LIPO@ -LN_S = @LN_S@ -LTLIBICONV = @LTLIBICONV@ -LTLIBINTL = @LTLIBINTL@ -LTLIBOBJS = @LTLIBOBJS@ -MAKEINFO = @MAKEINFO@ -MANIFEST_TOOL = @MANIFEST_TOOL@ -MD5SUM = @MD5SUM@ -MKDIR_P = @MKDIR_P@ -MSGFMT = @MSGFMT@ -MSGFMT_015 = @MSGFMT_015@ -MSGMERGE = @MSGMERGE@ -NM = @NM@ -NMEDIT = @NMEDIT@ -OBJDUMP = @OBJDUMP@ -OBJEXT = @OBJEXT@ -OTOOL = @OTOOL@ -OTOOL64 = @OTOOL64@ -PACKAGE = @PACKAGE@ -PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ -PACKAGE_NAME = @PACKAGE_NAME@ -PACKAGE_STRING = @PACKAGE_STRING@ -PACKAGE_TARNAME = @PACKAGE_TARNAME@ -PACKAGE_URL = @PACKAGE_URL@ -PACKAGE_VERSION = @PACKAGE_VERSION@ -PANGOCAIRO_CFLAGS = @PANGOCAIRO_CFLAGS@ -PANGOCAIRO_LIBS = @PANGOCAIRO_LIBS@ -PATH_SEPARATOR = @PATH_SEPARATOR@ -PKG_CONFIG = @PKG_CONFIG@ -PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ -PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ -POSUB = @POSUB@ -RANLIB = @RANLIB@ -SED = @SED@ -SET_MAKE = @SET_MAKE@ -SHELL = @SHELL@ -STRIP = @STRIP@ -TAR = @TAR@ -USE_NLS = @USE_NLS@ -VERSION = @VERSION@ -WGET = @WGET@ -XGETTEXT = @XGETTEXT@ -XGETTEXT_015 = @XGETTEXT_015@ -XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ -XMKMF = @XMKMF@ -XRENDER_CFLAGS = @XRENDER_CFLAGS@ -XRENDER_LIBS = @XRENDER_LIBS@ -X_CFLAGS = @X_CFLAGS@ -X_LIBS = @X_LIBS@ -abs_builddir = @abs_builddir@ -abs_srcdir = @abs_srcdir@ -abs_top_builddir = @abs_top_builddir@ -abs_top_srcdir = @abs_top_srcdir@ -ac_ct_AR = @ac_ct_AR@ -ac_ct_CC = @ac_ct_CC@ -ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ -am__include = @am__include@ -am__leading_dot = @am__leading_dot@ -am__quote = @am__quote@ -am__tar = @am__tar@ -am__untar = @am__untar@ -bindir = @bindir@ -build = @build@ -build_alias = @build_alias@ -build_cpu = @build_cpu@ -build_os = @build_os@ -build_vendor = @build_vendor@ -builddir = @builddir@ -datadir = @datadir@ -datarootdir = @datarootdir@ -docdir = @docdir@ -dvidir = @dvidir@ -exec_prefix = @exec_prefix@ -host = @host@ -host_alias = @host_alias@ -host_cpu = @host_cpu@ -host_os = @host_os@ -host_vendor = @host_vendor@ -htmldir = @htmldir@ -includedir = @includedir@ -infodir = @infodir@ -install_sh = @install_sh@ -libdir = @libdir@ -libexecdir = @libexecdir@ -localedir = @localedir@ -localstatedir = @localstatedir@ -mandir = @mandir@ -mkdir_p = @mkdir_p@ -oldincludedir = @oldincludedir@ -pdfdir = @pdfdir@ -prefix = @prefix@ -program_transform_name = @program_transform_name@ -psdir = @psdir@ -sbindir = @sbindir@ -sharedstatedir = @sharedstatedir@ -srcdir = @srcdir@ -sysconfdir = @sysconfdir@ -target_alias = @target_alias@ -top_build_prefix = @top_build_prefix@ -top_builddir = @top_builddir@ -top_srcdir = @top_srcdir@ -SUBDIRS = fcitx-config im ui tools interface core -all: all-recursive - -.SUFFIXES: -$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ - && { if test -f $@; then exit 0; else break; fi; }; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign src/Makefile -.PRECIOUS: Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(am__aclocal_m4_deps): - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs - -# This directory's subdirectories are mostly independent; you can cd -# into them and run `make' without going through this Makefile. -# To change the values of `make' variables: instead of editing Makefiles, -# (1) if the variable is set in `config.status', edit `config.status' -# (which will cause the Makefiles to be regenerated when you run `make'); -# (2) otherwise, pass the desired values on the `make' command line. -$(RECURSIVE_TARGETS): - @fail= failcom='exit 1'; \ - for f in x $$MAKEFLAGS; do \ - case $$f in \ - *=* | --[!k]*);; \ - *k*) failcom='fail=yes';; \ - esac; \ - done; \ - dot_seen=no; \ - target=`echo $@ | sed s/-recursive//`; \ - list='$(SUBDIRS)'; for subdir in $$list; do \ - echo "Making $$target in $$subdir"; \ - if test "$$subdir" = "."; then \ - dot_seen=yes; \ - local_target="$$target-am"; \ - else \ - local_target="$$target"; \ - fi; \ - ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ - || eval $$failcom; \ - done; \ - if test "$$dot_seen" = "no"; then \ - $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ - fi; test -z "$$fail" - -$(RECURSIVE_CLEAN_TARGETS): - @fail= failcom='exit 1'; \ - for f in x $$MAKEFLAGS; do \ - case $$f in \ - *=* | --[!k]*);; \ - *k*) failcom='fail=yes';; \ - esac; \ - done; \ - dot_seen=no; \ - case "$@" in \ - distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ - *) list='$(SUBDIRS)' ;; \ - esac; \ - rev=''; for subdir in $$list; do \ - if test "$$subdir" = "."; then :; else \ - rev="$$subdir $$rev"; \ - fi; \ - done; \ - rev="$$rev ."; \ - target=`echo $@ | sed s/-recursive//`; \ - for subdir in $$rev; do \ - echo "Making $$target in $$subdir"; \ - if test "$$subdir" = "."; then \ - local_target="$$target-am"; \ - else \ - local_target="$$target"; \ - fi; \ - ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ - || eval $$failcom; \ - done && test -z "$$fail" -tags-recursive: - list='$(SUBDIRS)'; for subdir in $$list; do \ - test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ - done -ctags-recursive: - list='$(SUBDIRS)'; for subdir in $$list; do \ - test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ - done - -ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - mkid -fID $$unique -tags: TAGS - -TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - set x; \ - here=`pwd`; \ - if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ - include_option=--etags-include; \ - empty_fix=.; \ - else \ - include_option=--include; \ - empty_fix=; \ - fi; \ - list='$(SUBDIRS)'; for subdir in $$list; do \ - if test "$$subdir" = .; then :; else \ - test ! -f $$subdir/TAGS || \ - set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ - fi; \ - done; \ - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: CTAGS -CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d "$(distdir)/$$file"; then \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ - else \ - test -f "$(distdir)/$$file" \ - || cp -p $$d/$$file "$(distdir)/$$file" \ - || exit 1; \ - fi; \ - done - @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ - if test "$$subdir" = .; then :; else \ - test -d "$(distdir)/$$subdir" \ - || $(MKDIR_P) "$(distdir)/$$subdir" \ - || exit 1; \ - fi; \ - done - @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ - if test "$$subdir" = .; then :; else \ - dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ - $(am__relativize); \ - new_distdir=$$reldir; \ - dir1=$$subdir; dir2="$(top_distdir)"; \ - $(am__relativize); \ - new_top_distdir=$$reldir; \ - echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ - echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ - ($(am__cd) $$subdir && \ - $(MAKE) $(AM_MAKEFLAGS) \ - top_distdir="$$new_top_distdir" \ - distdir="$$new_distdir" \ - am__remove_distdir=: \ - am__skip_length_check=: \ - am__skip_mode_fix=: \ - distdir) \ - || exit 1; \ - fi; \ - done -check-am: all-am -check: check-recursive -all-am: Makefile -installdirs: installdirs-recursive -installdirs-am: -install: install-recursive -install-exec: install-exec-recursive -install-data: install-data-recursive -uninstall: uninstall-recursive - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-recursive -install-strip: - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - `test -z '$(STRIP)' || \ - echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install -mostlyclean-generic: - -clean-generic: - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-recursive - -clean-am: clean-generic clean-libtool mostlyclean-am - -distclean: distclean-recursive - -rm -f Makefile -distclean-am: clean-am distclean-generic distclean-tags - -dvi: dvi-recursive - -dvi-am: - -html: html-recursive - -html-am: - -info: info-recursive - -info-am: - -install-data-am: - -install-dvi: install-dvi-recursive - -install-dvi-am: - -install-exec-am: - -install-html: install-html-recursive - -install-html-am: - -install-info: install-info-recursive - -install-info-am: - -install-man: - -install-pdf: install-pdf-recursive - -install-pdf-am: - -install-ps: install-ps-recursive - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-recursive - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-recursive - -mostlyclean-am: mostlyclean-generic mostlyclean-libtool - -pdf: pdf-recursive - -pdf-am: - -ps: ps-recursive - -ps-am: - -uninstall-am: - -.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) ctags-recursive \ - install-am install-strip tags-recursive - -.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \ - all all-am check check-am clean clean-generic clean-libtool \ - ctags ctags-recursive distclean distclean-generic \ - distclean-libtool distclean-tags distdir dvi dvi-am html \ - html-am info info-am install install-am install-data \ - install-data-am install-dvi install-dvi-am install-exec \ - install-exec-am install-html install-html-am install-info \ - install-info-am install-man install-pdf install-pdf-am \ - install-ps install-ps-am install-strip installcheck \ - installcheck-am installdirs installdirs-am maintainer-clean \ - maintainer-clean-generic mostlyclean mostlyclean-generic \ - mostlyclean-libtool pdf pdf-am ps ps-am tags tags-recursive \ - uninstall uninstall-am - - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff -Nru fcitx-4.0.1/src/module/autoeng/AutoEng.c fcitx-4.1.1/src/module/autoeng/AutoEng.c --- fcitx-4.0.1/src/module/autoeng/AutoEng.c 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/module/autoeng/AutoEng.c 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,300 @@ +/*************************************************************************** + * Copyright (C) 2002~2005 by Yuking * + * yuking_net@sohu.com * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +/** + * @file AutoEng.c + * @brief Auto Switch to English + */ +#include +#include + +#include "fcitx/fcitx.h" +#include "fcitx/module.h" +#include "fcitx/hook.h" +#include "fcitx-utils/utils.h" +#include "fcitx-config/xdg.h" + +#include "AutoEng.h" +#include "fcitx/keys.h" +#include "fcitx/ui.h" +#include "fcitx/instance.h" +#include + +typedef struct _FcitxAutoEngState { + UT_array* autoEng; + char buf[MAX_USER_INPUT + 1]; + int index; + boolean active; + FcitxInstance *owner; +} FcitxAutoEngState; + +static const UT_icd autoeng_icd = { sizeof(AUTO_ENG), 0, 0, 0 }; + + +/** + * @brief Initialize for Auto English + * + * @return boolean + **/ +static void* AutoEngCreate(FcitxInstance *instance); + +/** + * @brief Load AutoEng File + * + * @return void + **/ +static void LoadAutoEng (FcitxAutoEngState* autoEngState); + +/** + * @brief Cache the input key for autoeng, only simple key without combine key will be record + * + * @param sym keysym + * @param state key state + * @param retval Return state value + * @return boolean + **/ +static boolean ProcessAutoEng(void* arg, + FcitxKeySym sym, + unsigned int state, + INPUT_RETURN_VALUE *retval + ); + +/** + * @brief clean the cache while reset input + * + * @return void + **/ +static void ResetAutoEng(void *arg); + +/** + * @brief Free Auto Eng Data + * + * @return void + **/ +static void FreeAutoEng (void* arg); + +static void ReloadAutoEng (void* arg); + +/** + * @brief Check whether need to switch to English + * + * @param str string + * @return boolean + **/ +boolean SwitchToEng (FcitxAutoEngState* autoEngState, char* str); + + +/** + * @brief Update message for Auto eng + * + * @return void + **/ +void ShowAutoEngMessage(FcitxAutoEngState* autoEngState); + +FCITX_EXPORT_API +FcitxModule module = { + AutoEngCreate, + NULL, + NULL, + FreeAutoEng, + ReloadAutoEng +}; + +void* AutoEngCreate(FcitxInstance *instance) +{ + FcitxAutoEngState* autoEngState = fcitx_malloc0(sizeof(FcitxAutoEngState)); + autoEngState->owner = instance; + LoadAutoEng(autoEngState); + + KeyFilterHook khk; + khk.arg = autoEngState; + khk.func = ProcessAutoEng; + + FcitxIMEventHook rhk; + rhk.arg = autoEngState; + rhk.func = ResetAutoEng; + + RegisterPreInputFilter(instance, khk); + RegisterResetInputHook(instance, rhk); + + ResetAutoEng(autoEngState); + return autoEngState; +} + +static boolean ProcessAutoEng(void* arg, FcitxKeySym sym, + unsigned int state, + INPUT_RETURN_VALUE *retval + ) +{ + FcitxAutoEngState* autoEngState = (FcitxAutoEngState*) arg; + FcitxInputState* input = &autoEngState->owner->input; + if (autoEngState->active) + { + FcitxKeySym keymain = KeyPadToMain(sym); + if (IsHotKeySimple(keymain,state)) + { + if (autoEngState->index < MAX_USER_INPUT) + { + autoEngState->buf[autoEngState->index] = keymain; + autoEngState->index++; + autoEngState->buf[autoEngState->index] = '\0'; + *retval = IRV_DISPLAY_MESSAGE; + } + else + *retval = IRV_DO_NOTHING; + } + else if (IsHotKey(sym, state, FCITX_BACKSPACE)) + { + autoEngState->index -- ; + autoEngState->buf[autoEngState->index] = '\0'; + if (autoEngState->index == 0) + { + ResetAutoEng(autoEngState); + *retval = IRV_CLEAN; + } + else + *retval = IRV_DISPLAY_MESSAGE; + } + else if (IsHotKey(sym, state, FCITX_ENTER)) + { + strcpy(GetOutputString(&autoEngState->owner->input), autoEngState->buf); + ResetAutoEng(autoEngState); + *retval = IRV_COMMIT_STRING; + } + ShowAutoEngMessage(autoEngState); + return true; + } + if (IsHotKeySimple(sym, state)) + { + if (autoEngState->owner->input.iCodeInputCount == 0 && IsHotKeyUAZ(sym, state)) + { + autoEngState->index = 1; + autoEngState->buf[0] = sym; + autoEngState->buf[1] = '\0'; + *retval = IRV_DISPLAY_MESSAGE; + input->bShowCursor = false; + autoEngState->index = strlen(autoEngState->buf); + autoEngState->active = true; + ShowAutoEngMessage(autoEngState); + return true; + } + + strncpy(autoEngState->buf, autoEngState->owner->input.strCodeInput, MAX_USER_INPUT); + if (strlen(autoEngState->buf) >= MAX_USER_INPUT - 1) + return false; + + autoEngState->index = strlen(autoEngState->buf); + autoEngState->buf[autoEngState->index ++ ] = sym; + autoEngState->buf[autoEngState->index] = '\0'; + + if (SwitchToEng(autoEngState, autoEngState->buf)) + { + *retval = IRV_DISPLAY_MESSAGE; + input->bShowCursor = false; + autoEngState->index = strlen(autoEngState->buf); + autoEngState->active = true; + ShowAutoEngMessage(autoEngState); + return true; + } + } + return false; +} + +void ResetAutoEng(void* arg) +{ + FcitxAutoEngState* autoEngState = (FcitxAutoEngState*) arg; + autoEngState->index = 0; + autoEngState->buf[autoEngState->index] = '\0'; + autoEngState->active = false; +} + +void LoadAutoEng (FcitxAutoEngState* autoEngState) +{ + FILE *fp; + char *buf = NULL; + size_t length = 0; + + fp = GetXDGFileWithPrefix("data", "AutoEng.dat", "rt", NULL); + if (!fp) + return; + + utarray_new(autoEngState->autoEng, &autoeng_icd); + AUTO_ENG autoeng; + + while (getline(&buf, &length, fp) != -1) { + char* line = fcitx_trim(buf); + if (strlen(line) > MAX_AUTO_TO_ENG) + FcitxLog(WARNING, _("Too long item for AutoEng")); + strncpy(autoeng.str, line, MAX_AUTO_TO_ENG); + free(line); + autoeng.str[MAX_AUTO_TO_ENG] = '\0'; + utarray_push_back(autoEngState->autoEng, &autoeng); + } + + free(buf); + + fclose (fp); +} + +void FreeAutoEng (void* arg) +{ + FcitxAutoEngState* autoEngState = (FcitxAutoEngState*) arg; + if (autoEngState->autoEng) + { + utarray_free(autoEngState->autoEng); + autoEngState->autoEng = NULL; + } +} + +boolean SwitchToEng (FcitxAutoEngState* autoEngState, char *str) +{ + AUTO_ENG* autoeng; + for (autoeng = (AUTO_ENG *) utarray_front(autoEngState->autoEng); + autoeng != NULL; + autoeng = (AUTO_ENG *) utarray_next(autoEngState->autoEng, autoeng)) + if (!strcmp (str, autoeng->str)) + return true; + + return false; +} + +void ShowAutoEngMessage(FcitxAutoEngState* autoEngState) +{ + FcitxInputState* input = &autoEngState->owner->input; + + CleanInputWindow(autoEngState->owner); + + if (autoEngState->buf[0] == '\0') + return; + + AddMessageAtLast(input->msgPreedit, MSG_INPUT, autoEngState->buf); + strcpy(input->strCodeInput, autoEngState->buf); + input->iCodeInputCount = strlen(autoEngState->buf); + input->iCursorPos = input->iCodeInputCount; + AddMessageAtLast(input->msgAuxDown, MSG_TIPS, _("Press Enter to input text")); +} + +void ReloadAutoEng(void* arg) +{ + FcitxAutoEngState* autoEngState = (FcitxAutoEngState*) arg; + FreeAutoEng(autoEngState); + LoadAutoEng(autoEngState); +} +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/module/autoeng/AutoEng.h fcitx-4.1.1/src/module/autoeng/AutoEng.h --- fcitx-4.0.1/src/module/autoeng/AutoEng.h 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/module/autoeng/AutoEng.h 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,41 @@ +/*************************************************************************** + * Copyright (C) 2002~2005 by Yuking * + * yuking_net@sohu.com * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ +/** + * @file AutoEng.h + * @author Yuking yuking_net@sohu.com + * @date 2008-1-16 + * + * @brief Auto Switch to English State + * + */ + +#ifndef _FCITX_AUTOENG_H_ +#define _FCITX_AUTOENG_H_ + +#define MAX_AUTO_TO_ENG 10 +#include "fcitx-config/fcitx-config.h" + +typedef struct _AUTO_ENG { + char str[MAX_AUTO_TO_ENG + 1]; +} AUTO_ENG; + +#endif + +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/module/autoeng/CMakeLists.txt fcitx-4.1.1/src/module/autoeng/CMakeLists.txt --- fcitx-4.0.1/src/module/autoeng/CMakeLists.txt 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/module/autoeng/CMakeLists.txt 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,8 @@ +include_directories(${PROJECT_SOURCE_DIR}/src) + +set(FCITX_AUTOENG_SOURCES + AutoEng.c +) + +fcitx_add_addon(fcitx-autoeng ${FCITX_AUTOENG_SOURCES}) +fcitx_add_addon_conf_file(fcitx-autoeng.conf) diff -Nru fcitx-4.0.1/src/module/autoeng/fcitx-autoeng.conf.in fcitx-4.1.1/src/module/autoeng/fcitx-autoeng.conf.in --- fcitx-4.0.1/src/module/autoeng/fcitx-autoeng.conf.in 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/module/autoeng/fcitx-autoeng.conf.in 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,9 @@ +[Addon] +Name=fcitx-autoeng +_GeneralName=Auto English Mode +_Comment=Auto Change to English Mode while Input Specific String +Category=Module +Enabled=True +Library=fcitx-autoeng.so +Type=SharedLibrary +SubConfig=Auto English Trigger Word:native:data/AutoEng.dat,fcitx:domain diff -Nru fcitx-4.0.1/src/module/chttrans/chttrans.c fcitx-4.1.1/src/module/chttrans/chttrans.c --- fcitx-4.0.1/src/module/chttrans/chttrans.c 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/module/chttrans/chttrans.c 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,306 @@ +/*************************************************************************** + * Copyright (C) 2010~2010 by CSSlayer * + * wengxt@gmail.com * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +#include "fcitx/fcitx.h" + +#ifdef _ENABLE_OPENCC +#include +#endif + +#include + +#include "fcitx/module.h" +#include "fcitx-utils/utf8.h" +#include "fcitx-utils/uthash.h" +#include "fcitx-config/xdg.h" +#include +#include "fcitx/hook.h" +#include "fcitx/ui.h" +#include "fcitx-utils/log.h" +#include "fcitx/instance.h" +#include + +#define TABLE_GBKS2T "gbks2t.tab" + +typedef struct _simple2trad_t +{ + int wc; + char str[UTF8_MAX_LENGTH + 1]; + size_t len; + UT_hash_handle hh; +} simple2trad_t; + +typedef enum _ChttransEngine +{ + ENGINE_NATIVE, + ENGINE_OPENCC +} ChttransEngine; + + +typedef struct _FcitxChttrans { + GenericConfig gconfig; + boolean enabled; + ChttransEngine engine; + HOTKEYS hkToggle[2]; + simple2trad_t* s2t_table; + FcitxInstance* owner; +} FcitxChttrans; + +static void* ChttransCreate(FcitxInstance* instance); +static char* ChttransOutputFilter(void* arg, const char* strin); +static void ReloadChttrans(void* arg); +static char *ConvertGBKSimple2Tradition (FcitxChttrans* transState, const char* strHZ); +static boolean GetChttransEnabled(); +boolean LoadChttransConfig(FcitxChttrans* transState); +static ConfigFileDesc* GetChttransConfigDesc(); +static void SaveChttransConfig(FcitxChttrans* transState); +static INPUT_RETURN_VALUE HotkeyToggleChttransState(void*); +static void ToggleChttransState(void*); + +CONFIG_BINDING_BEGIN(FcitxChttrans) +CONFIG_BINDING_REGISTER("TraditionalChinese","TransEngine", engine) +CONFIG_BINDING_REGISTER("TraditionalChinese","Enabled", enabled) +CONFIG_BINDING_REGISTER("TraditionalChinese","Hotkey", hkToggle) +CONFIG_BINDING_END() + +FCITX_EXPORT_API +FcitxModule module = +{ + ChttransCreate, + NULL, + NULL, + NULL, + ReloadChttrans +}; + +void* ChttransCreate(FcitxInstance* instance) +{ + FcitxChttrans* transState = fcitx_malloc0(sizeof(FcitxChttrans)); + transState->owner = instance; + if (!LoadChttransConfig(transState)) + { + free(transState); + return NULL; + } + + HotkeyHook hk; + hk.arg = transState; + hk.hotkey = transState->hkToggle; + hk.hotkeyhandle = HotkeyToggleChttransState; + + StringFilterHook shk; + shk.arg = transState; + shk.func = ChttransOutputFilter; + + RegisterHotkeyFilter(instance, hk); + RegisterOutputFilter(instance, shk); + RegisterStatus(instance, transState, "chttrans", "Traditional Chinese Translate", "Traditional Chinese Translate", ToggleChttransState, GetChttransEnabled); + return transState; +} + +INPUT_RETURN_VALUE HotkeyToggleChttransState(void* arg) +{ + FcitxChttrans* transState = (FcitxChttrans*) arg; + UpdateStatus(transState->owner, "chttrans"); + return IRV_DO_NOTHING; +} + +void ToggleChttransState(void* arg) +{ + FcitxChttrans* transState = (FcitxChttrans*) arg; + transState->enabled = !transState->enabled; + SaveChttransConfig(transState); +} + +boolean GetChttransEnabled(void* arg) +{ + FcitxChttrans* transState = (FcitxChttrans*) arg; + return transState->enabled; +} + +char* ChttransOutputFilter(void* arg, const char *strin) +{ + FcitxChttrans* transState = (FcitxChttrans*) arg; + if (transState->enabled) + return ConvertGBKSimple2Tradition(transState, strin); + else + return NULL; +} + +/** + * 该函数装载data/gbks2t.tab的简体转繁体的码表, + * 然后按码表将GBK字符转换成GBK繁体字符。 + * + * WARNING: 该函数返回新分配内存字符串,请调用者 + * 注意释放。 + */ +char *ConvertGBKSimple2Tradition (FcitxChttrans* transState, const char *strHZ) +{ + if (strHZ == NULL) + return NULL; + + switch (transState->engine) + { + case ENGINE_OPENCC: +#ifdef _ENABLE_OPENCC + { + static opencc_t od = NULL; + if (od == NULL) + { + od = opencc_open(OPENCC_DEFAULT_CONFIG_SIMP_TO_TRAD); + if (od == (opencc_t) -1) + { + opencc_perror(_("OpenCC initialization error")); + return NULL; + } + } + + char * res = opencc_convert_utf8(od, strHZ, (size_t) -1); + + if (res == (char *) -1) + { + opencc_perror(_("OpenCC error")); + return NULL; + } + + return res; + } +#endif + case ENGINE_NATIVE: + { + FILE *fp; + char *ret; + int i, len, ret_len; + char *strBuf = NULL; + size_t bufLen = 0; + const char *ps; + + if (!transState->s2t_table) { + len = 0; + + fp = GetXDGFileWithPrefix("data", TABLE_GBKS2T, "rb", NULL); + if (!fp) { + ret = (char *) malloc (sizeof (char) * (strlen (strHZ) + 1)); + strcpy (ret, strHZ); + return ret; + } + while (getline(&strBuf, &bufLen, fp) != -1) + { + simple2trad_t *s2t; + char *ps; + int wc; + + ps = utf8_get_char(strBuf, &wc); + s2t = (simple2trad_t*) malloc(sizeof(simple2trad_t)); + s2t->wc = wc; + s2t->len = utf8_char_len(ps); + strncpy(s2t->str, ps, s2t->len); + s2t->str[s2t->len] = '\0'; + + HASH_ADD_INT(transState->s2t_table, wc, s2t); + } + if (strBuf) + free(strBuf); + } + + i = 0; + len = utf8_strlen (strHZ); + ret_len = 0; + ret = (char *) malloc (sizeof (char) * (UTF8_MAX_LENGTH * len + 1)); + ps = strHZ; + ret[0] = '\0'; + for (; i < len; ++i) { + int wc; + simple2trad_t *s2t = NULL; + int chr_len = utf8_char_len(ps); + char *nps; + nps = utf8_get_char(ps , &wc); + HASH_FIND_INT(transState->s2t_table, &wc, s2t); + + if (s2t) + { + strcat(ret, s2t->str); + ret_len += s2t->len; + } + else + { + strncat(ret, ps, chr_len); + ret_len += chr_len; + } + + ps = nps; + + } + ret[ret_len] = '\0'; + + return ret; + } + } + return NULL; +} + +boolean LoadChttransConfig(FcitxChttrans* transState) +{ + ConfigFileDesc* configDesc = GetChttransConfigDesc(); + if (configDesc == NULL) + return false; + + FILE *fp; + char *file; + fp = GetXDGFileUserWithPrefix("conf", "fcitx-chttrans.config", "rt", &file); + FcitxLog(INFO, _("Load Config File %s"), file); + free(file); + if (!fp) { + if (errno == ENOENT) + SaveChttransConfig(transState); + } + + ConfigFile *cfile = ParseConfigFileFp(fp, configDesc); + + FcitxChttransConfigBind(transState, cfile, configDesc); + ConfigBindSync((GenericConfig*)transState); + + if (fp) + fclose(fp); + + return true; +} + +CONFIG_DESC_DEFINE(GetChttransConfigDesc, "fcitx-chttrans.desc") + +void SaveChttransConfig(FcitxChttrans* transState) +{ + ConfigFileDesc* configDesc = GetChttransConfigDesc(); + char *file; + FILE *fp = GetXDGFileUserWithPrefix("conf", "fcitx-chttrans.config", "wt", &file); + FcitxLog(INFO, "Save Config to %s", file); + SaveConfigFileFp(fp, &transState->gconfig, configDesc); + free(file); + if (fp) + fclose(fp); +} + +void ReloadChttrans(void* arg) +{ + FcitxChttrans* transState = (FcitxChttrans*) arg; + LoadChttransConfig(transState); +} + +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/module/chttrans/CMakeLists.txt fcitx-4.1.1/src/module/chttrans/CMakeLists.txt --- fcitx-4.0.1/src/module/chttrans/CMakeLists.txt 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/module/chttrans/CMakeLists.txt 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,19 @@ +include_directories(${PROJECT_SOURCE_DIR}/src) + +if (_ENABLE_OPENCC) + include_directories(${OPENCC_INCLUDE_DIRS}) +endif (_ENABLE_OPENCC) + +set(FCITX_CHTTRANS_SOURCES + chttrans.c +) + +fcitx_add_addon(fcitx-chttrans ${FCITX_CHTTRANS_SOURCES}) + +if (_ENABLE_OPENCC) + target_link_libraries( fcitx-chttrans ${OPENCC_LIBRARIES} ) + include_directories(${OPENCC_INCLUDE_DIRS}) +endif (_ENABLE_OPENCC) + +fcitx_add_configdesc_file(fcitx-chttrans.desc) +fcitx_add_addon_conf_file(fcitx-chttrans.conf) diff -Nru fcitx-4.0.1/src/module/chttrans/fcitx-chttrans.conf.in fcitx-4.1.1/src/module/chttrans/fcitx-chttrans.conf.in --- fcitx-4.0.1/src/module/chttrans/fcitx-chttrans.conf.in 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/module/chttrans/fcitx-chttrans.conf.in 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,8 @@ +[Addon] +Name=fcitx-chttrans +_GeneralName=Simplified Chinese To Traditional Chinese +_Comment=Convert Simplified Chinese To Traditional Chinese +Category=Module +Enabled=True +Library=fcitx-chttrans.so +Type=SharedLibrary \ No newline at end of file diff -Nru fcitx-4.0.1/src/module/chttrans/fcitx-chttrans.desc fcitx-4.1.1/src/module/chttrans/fcitx-chttrans.desc --- fcitx-4.0.1/src/module/chttrans/fcitx-chttrans.desc 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/module/chttrans/fcitx-chttrans.desc 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,20 @@ +[TraditionalChinese/TransEngine] +Type=Enum +EnumCount=2 +Enum0=Native +Enum1=OpenCC +Description=Traditional Chinese Translate Engine +DefaultValue=OpenCC + +[TraditionalChinese/Enabled] +Type=Boolean +DefaultValue=False +Description=Enabled in input + +[TraditionalChinese/Hotkey] +Type=Hotkey +DefaultValue=CTRL_SHIFT_F +Description=Toggle for enable or disable + +[DescriptionFile] +LocaleDomain=fcitx diff -Nru fcitx-4.0.1/src/module/CMakeLists.txt fcitx-4.1.1/src/module/CMakeLists.txt --- fcitx-4.0.1/src/module/CMakeLists.txt 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/module/CMakeLists.txt 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,14 @@ +add_subdirectory(x11) +add_subdirectory(chttrans) +add_subdirectory(punc) +add_subdirectory(quickphrase) +add_subdirectory(autoeng) +add_subdirectory(fullwidthchar) +add_subdirectory(remote) +if (_ENABLE_CAIRO) + add_subdirectory(vk) +endif (_ENABLE_CAIRO) + +if (_ENABLE_DBUS) + add_subdirectory(dbus) +endif (_ENABLE_DBUS) diff -Nru fcitx-4.0.1/src/module/dbus/CMakeLists.txt fcitx-4.1.1/src/module/dbus/CMakeLists.txt --- fcitx-4.0.1/src/module/dbus/CMakeLists.txt 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/module/dbus/CMakeLists.txt 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,13 @@ +include_directories(${PROJECT_SOURCE_DIR}/src) +include_directories(${DBUS_INCLUDE_DIRS}) + +link_directories(${DBUS_LIBRARY_DIRS}) + +set(FCITX_DBUS_SOURCES + dbusstuff.c +) + +fcitx_add_addon(fcitx-dbus ${FCITX_DBUS_SOURCES}) +target_link_libraries( fcitx-dbus ${DBUS_LIBRARIES}) +fcitx_add_addon_header(dbus dbusstuff.h) +fcitx_add_addon_conf_file(fcitx-dbus.conf) \ No newline at end of file diff -Nru fcitx-4.0.1/src/module/dbus/dbusstuff.c fcitx-4.1.1/src/module/dbus/dbusstuff.c --- fcitx-4.0.1/src/module/dbus/dbusstuff.c 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/module/dbus/dbusstuff.c 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,240 @@ +/*************************************************************************** + * Copyright (C) 2010~2010 by CSSlayer * + * wengxt@gmail.com * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +#include "fcitx/fcitx.h" +#include "fcitx/module.h" +#include "fcitx-utils/utarray.h" +#include "fcitx/instance.h" +#include "fcitx-utils/log.h" +#include +#include +#include "dbusstuff.h" +#include +#include + + +typedef struct _FcitxDBusWatch { + DBusWatch *watch; + struct _FcitxDBusWatch *next; +} FcitxDBusWatch; + +typedef struct _FcitxDBus { + DBusConnection *conn; + FcitxInstance* owner; + FcitxDBusWatch* watches; +} FcitxDBus; + +#define RETRY_INTERVAL 1 +#define MAX_RETRY_TIMES 5 + +static void* DBusCreate(FcitxInstance* instance); +static void DBusSetFD(void* arg); +static void DBusProcessEvent(void* arg); +static void* DBusGetConnection(void* arg, FcitxModuleFunctionArg args); +static dbus_bool_t FcitxDBusAddWatch(DBusWatch *watch, void *data); +static void FcitxDBusRemoveWatch(DBusWatch *watch, void *data); + +FCITX_EXPORT_API +FcitxModule module = { + DBusCreate, + DBusSetFD, + DBusProcessEvent, + NULL, + NULL +}; + +void* DBusCreate(FcitxInstance* instance) +{ + FcitxDBus *dbusmodule = (FcitxDBus*) fcitx_malloc0(sizeof(FcitxDBus)); + FcitxAddon* dbusaddon = GetAddonByName(&instance->addons, FCITX_DBUS_NAME); + DBusError err; + + dbus_threads_init_default(); + + // first init dbus + dbus_error_init(&err); + + int retry = 0; + DBusConnection* conn = NULL; + + do { + conn = dbus_bus_get(DBUS_BUS_SESSION, &err); + if (dbus_error_is_set(&err)) { + FcitxLog(WARNING, _("Connection Error (%s)"), err.message); + dbus_error_free(&err); + dbus_error_init(&err); + } + + if (NULL == conn) + { + sleep(RETRY_INTERVAL); + retry ++; + } + } while (NULL == conn && retry < MAX_RETRY_TIMES); + + if ( NULL == conn ) + { + free(dbusmodule); + return NULL; + } + + if (!dbus_connection_set_watch_functions(conn, FcitxDBusAddWatch, FcitxDBusRemoveWatch, + NULL, dbusmodule, NULL)) + { + FcitxLog(WARNING, _("Add Watch Function Error")); + dbus_error_free(&err); + free(dbusmodule); + return NULL; + } + + dbusmodule->conn = conn; + dbusmodule->owner = instance; + + char* servicename = NULL; + asprintf(&servicename, "%s-%d", FCITX_DBUS_SERVICE, FcitxGetDisplayNumber()); + + // request a name on the bus + int ret = dbus_bus_request_name(conn, servicename, + DBUS_NAME_FLAG_REPLACE_EXISTING | DBUS_NAME_FLAG_DO_NOT_QUEUE, + &err); + + free(servicename); + if (dbus_error_is_set(&err)) { + FcitxLog(WARNING, _("Name Error (%s)"), err.message); + dbus_error_free(&err); + free(dbusmodule); + return NULL; + } + if (DBUS_REQUEST_NAME_REPLY_PRIMARY_OWNER != ret) { + FcitxLog(WARNING, _("Name Error")); + dbus_error_free(&err); + free(dbusmodule); + return NULL; + } + + dbus_connection_flush(conn); + AddFunction(dbusaddon, DBusGetConnection); + dbus_error_free(&err); + + return dbusmodule; +} + +void* DBusGetConnection(void* arg, FcitxModuleFunctionArg args) +{ + FcitxDBus* dbusmodule = (FcitxDBus*)arg; + return dbusmodule->conn; +} + +static dbus_bool_t FcitxDBusAddWatch(DBusWatch *watch, void *data) +{ + FcitxDBusWatch *w; + FcitxDBus* dbusmodule = (FcitxDBus*) data; + + for (w = dbusmodule->watches; w; w = w->next) + if (w->watch == watch) + return TRUE; + + if (!(w = fcitx_malloc0(sizeof(FcitxDBusWatch)))) + return FALSE; + + w->watch = watch; + w->next = dbusmodule->watches; + dbusmodule->watches = w; + return TRUE; +} + +static void FcitxDBusRemoveWatch(DBusWatch *watch, void *data) +{ + FcitxDBusWatch **up, *w; + FcitxDBus* dbusmodule = (FcitxDBus*) data; + + for (up = &(dbusmodule->watches), w = dbusmodule->watches; w; w = w->next) + { + if (w->watch == watch) + { + *up = w->next; + free(w); + } + else + up = &(w->next); + } +} + +void DBusSetFD(void* arg) +{ + FcitxDBus* dbusmodule = (FcitxDBus*) arg; + FcitxDBusWatch *w; + FcitxInstance* instance = dbusmodule->owner; + + for (w = dbusmodule->watches; w; w = w->next) + if (dbus_watch_get_enabled(w->watch)) + { + unsigned int flags = dbus_watch_get_flags(w->watch); + int fd = dbus_watch_get_unix_fd(w->watch); + + if (dbusmodule->owner->maxfd < fd) + dbusmodule->owner->maxfd = fd; + + if (flags & DBUS_WATCH_READABLE) + FD_SET(fd, &instance->rfds); + + if (flags & DBUS_WATCH_WRITABLE) + FD_SET(fd, &instance->wfds); + + FD_SET(fd, &instance->efds); + } +} + + +void DBusProcessEvent(void* arg) +{ + FcitxDBus* dbusmodule = (FcitxDBus*) arg; + DBusConnection *connection = (DBusConnection *)dbusmodule->conn; + FcitxDBusWatch *w; + + for (w = dbusmodule->watches; w; w = w->next) + { + if (dbus_watch_get_enabled(w->watch)) + { + unsigned int flags = 0; + int fd = dbus_watch_get_unix_fd(w->watch); + + if (FD_ISSET(fd, &dbusmodule->owner->rfds)) + flags |= DBUS_WATCH_READABLE; + + if (FD_ISSET(fd, &dbusmodule->owner->wfds)) + flags |= DBUS_WATCH_WRITABLE; + + if (FD_ISSET(fd, &dbusmodule->owner->efds)) + flags |= DBUS_WATCH_ERROR; + + if (flags != 0) + dbus_watch_handle(w->watch, flags); + } + } + + if (connection) + { + dbus_connection_ref (connection); + while (dbus_connection_dispatch (connection) == DBUS_DISPATCH_DATA_REMAINS); + dbus_connection_unref (connection); + } +} +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/module/dbus/dbusstuff.h fcitx-4.1.1/src/module/dbus/dbusstuff.h --- fcitx-4.0.1/src/module/dbus/dbusstuff.h 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/module/dbus/dbusstuff.h 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,47 @@ +/*************************************************************************** + * Copyright (C) 2010~2010 by CSSlayer * + * wengxt@gmail.com * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +#ifndef _FCITX_DBUS_H +#define _FCITX_DBUS_H + +#ifdef __cplusplus +extern "C" { +#endif + +#include +#include + +#define FCITX_DBUS_NAME "fcitx-dbus" +#define FCITX_DBUS_GETCONNECTION 0 +#define FCITX_DBUS_GETCONNECTION_RETURNTYPE DBusConnection* + +#define FCITX_DBUS_SERVICE "org.fcitx.Fcitx" + + typedef struct _FcitxDBusEventHandler { + boolean (*eventHandler)(void* instance, DBusMessage * event); + void* instance; + } FcitxDBusEventHandler; + +#ifdef __cplusplus +} +#endif + +#endif // _FCITX_DBUS_H +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/module/dbus/fcitx-dbus.conf.in fcitx-4.1.1/src/module/dbus/fcitx-dbus.conf.in --- fcitx-4.0.1/src/module/dbus/fcitx-dbus.conf.in 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/module/dbus/fcitx-dbus.conf.in 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,8 @@ +[Addon] +Name=fcitx-dbus +_GeneralName=DBus Support +_Comment=Provides DBus Support (Used by other Addon) +Category=Module +Enabled=True +Library=fcitx-dbus.so +Type=SharedLibrary \ No newline at end of file diff -Nru fcitx-4.0.1/src/module/fullwidthchar/CMakeLists.txt fcitx-4.1.1/src/module/fullwidthchar/CMakeLists.txt --- fcitx-4.0.1/src/module/fullwidthchar/CMakeLists.txt 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/module/fullwidthchar/CMakeLists.txt 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,8 @@ +include_directories(${PROJECT_SOURCE_DIR}/src) + +set(FCITX_FULLWIDTH_CHAR_SOURCES + fullwidthchar.c +) + +fcitx_add_addon(fcitx-fullwidth-char ${FCITX_FULLWIDTH_CHAR_SOURCES}) +fcitx_add_addon_conf_file(fcitx-fullwidth-char.conf) \ No newline at end of file diff -Nru fcitx-4.0.1/src/module/fullwidthchar/fcitx-fullwidth-char.conf.in fcitx-4.1.1/src/module/fullwidthchar/fcitx-fullwidth-char.conf.in --- fcitx-4.0.1/src/module/fullwidthchar/fcitx-fullwidth-char.conf.in 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/module/fullwidthchar/fcitx-fullwidth-char.conf.in 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,9 @@ +[Addon] +Name=fcitx-fullwidth-char +_GeneralName=Fullwidth Character +_Comment=Provides Fullwidth Character Input Support +Category=Module +Enabled=True +Library=fcitx-fullwidth-char.so +Type=SharedLibrary +Priority=60 \ No newline at end of file diff -Nru fcitx-4.0.1/src/module/fullwidthchar/fullwidthchar.c fcitx-4.1.1/src/module/fullwidthchar/fullwidthchar.c --- fcitx-4.0.1/src/module/fullwidthchar/fullwidthchar.c 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/module/fullwidthchar/fullwidthchar.c 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,140 @@ +/*************************************************************************** + * Copyright (C) 2002~2005 by Yuking * + * yuking_net@sohu.com * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +#include +#include +#include +#include +#include + +#include "fcitx/module.h" +#include "fcitx/fcitx.h" +#include "fcitx/hook.h" +#include "fcitx/ime.h" +#include "fcitx-config/xdg.h" +#include "fcitx-utils/log.h" +#include "fcitx-utils/utils.h" +#include "fcitx/keys.h" +#include "fcitx/frontend.h" +#include "fcitx/instance.h" + +char *sCornerTrans[] = { + " ", "!", """, "#", "¥", "%", "&", "'", "(", ")", + "*", + "+", ",", "-", ".", "/", + "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", + ":", + ";", "<", "=", ">", "?", + "@", "A", "B", "C", "D", "E", "F", "G", "H", "I", + "J", + "K", "L", "M", "N", "O", + "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", + "Z", + "[", "\", "]", "^", "_", + "`", "a", "b", "c", "d", "e", "f", "g", "h", "i", + "j", + "k", "l", "m", "n", "o", + "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", + "z", + "{", "|", "}", "~", +}; + +#define FCITX_FULLWIDTH_CHAR "fcitx-fullwidth-char" + +/** + * @file fullwidthchar.c + * @brief Trans full width punc for Fcitx + */ + +static void* FullWidthCharCreate(FcitxInstance* instance); +static boolean ProcessFullWidthChar(void* arg, FcitxKeySym sym, unsigned int state, INPUT_RETURN_VALUE* retVal); +static void ToggleFullWidthState(void *arg); +static boolean GetFullWidthState(void *arg); +static INPUT_RETURN_VALUE ToggleFullWidthStateWithHotkey(void *arg); + +typedef struct _FcitxFullWidthChar { + FcitxInstance* owner; +} FcitxFullWidthChar; + +FCITX_EXPORT_API +FcitxModule module = { + FullWidthCharCreate, + NULL, + NULL, + NULL, + NULL +}; + +void* FullWidthCharCreate(FcitxInstance* instance) +{ + FcitxFullWidthChar* fwchar = fcitx_malloc0(sizeof(FcitxFullWidthChar)); + fwchar->owner = instance; + KeyFilterHook hk; + hk.arg = fwchar; + hk.func = ProcessFullWidthChar; + + RegisterPreInputFilter(instance, hk); + + HotkeyHook hotkey; + hotkey.hotkey = instance->config->hkFullWidthChar; + hotkey.hotkeyhandle = ToggleFullWidthStateWithHotkey; + hotkey.arg = fwchar; + + RegisterHotkeyFilter(instance, hotkey); + + RegisterStatus(instance, fwchar, "fullwidth", "Full Width Character", "Full Width Character", ToggleFullWidthState, GetFullWidthState); + + return fwchar; +} + +boolean ProcessFullWidthChar(void* arg, FcitxKeySym sym, unsigned int state, INPUT_RETURN_VALUE* retVal) +{ + FcitxFullWidthChar* fwchar = (FcitxFullWidthChar* )arg; + if (fwchar->owner->profile->bUseFullWidthChar && IsHotKeySimple(sym, state)) + { + sprintf(GetOutputString(&fwchar->owner->input), "%s", sCornerTrans[sym - 32]); + *retVal = IRV_COMMIT_STRING; + return true; + } + return false; +} + +void ToggleFullWidthState(void* arg) +{ + FcitxFullWidthChar* fwchar = (FcitxFullWidthChar* )arg; + fwchar->owner->profile->bUseFullWidthChar = !fwchar->owner->profile->bUseFullWidthChar; + SaveProfile(fwchar->owner->profile); + ResetInput(fwchar->owner); +} + +boolean GetFullWidthState(void* arg) +{ + FcitxFullWidthChar* fwchar = (FcitxFullWidthChar* )arg; + return fwchar->owner->profile->bUseFullWidthChar; +} + +INPUT_RETURN_VALUE ToggleFullWidthStateWithHotkey(void* arg) +{ + FcitxFullWidthChar* fwchar = (FcitxFullWidthChar* )arg; + UpdateStatus(fwchar->owner, "fullwidth"); + return IRV_DO_NOTHING; +} + +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/module/punc/CMakeLists.txt fcitx-4.1.1/src/module/punc/CMakeLists.txt --- fcitx-4.0.1/src/module/punc/CMakeLists.txt 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/module/punc/CMakeLists.txt 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,9 @@ +include_directories(${PROJECT_SOURCE_DIR}/src) + +set(FCITX_PUNC_SOURCES + punc.c +) + +fcitx_add_addon(fcitx-punc ${FCITX_PUNC_SOURCES}) +fcitx_add_addon_header(punc punc.h) +fcitx_add_addon_conf_file(fcitx-punc.conf) \ No newline at end of file diff -Nru fcitx-4.0.1/src/module/punc/fcitx-punc.conf.in fcitx-4.1.1/src/module/punc/fcitx-punc.conf.in --- fcitx-4.0.1/src/module/punc/fcitx-punc.conf.in 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/module/punc/fcitx-punc.conf.in 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,9 @@ +[Addon] +Name=fcitx-punc +_GeneralName=Punctuation Support +_Comment=Punctation Conversion Support +Category=Module +Enabled=True +Library=fcitx-punc.so +Type=SharedLibrary +Priority=60 \ No newline at end of file diff -Nru fcitx-4.0.1/src/module/punc/punc.c fcitx-4.1.1/src/module/punc/punc.c --- fcitx-4.0.1/src/module/punc/punc.c 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/module/punc/punc.c 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,394 @@ +/*************************************************************************** + * Copyright (C) 2002~2005 by Yuking * + * yuking_net@sohu.com * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +#include +#include +#include +#include +#include + +#include "fcitx/module.h" +#include "fcitx/fcitx.h" +#include "fcitx/hook.h" +#include "punc.h" +#include "fcitx/ime.h" +#include "fcitx-config/xdg.h" +#include "fcitx-utils/log.h" +#include "fcitx-utils/utils.h" +#include "fcitx/keys.h" +#include "fcitx/frontend.h" +#include "fcitx/instance.h" +#include "fcitx/candidate.h" + +/** + * @file punc.c + * @brief Trans full width punc for Fcitx + */ + +#define PUNC_DICT_FILENAME "punc.mb" +#define MAX_PUNC_NO 2 +#define MAX_PUNC_LENGTH 2 + +struct _FcitxPuncState; +typedef struct _WidePunc { + int ASCII; + char strWidePunc[MAX_PUNC_NO][MAX_PUNC_LENGTH * UTF8_MAX_LENGTH + 1]; +unsigned iCount: + 2; +unsigned iWhich: + 2; +} WidePunc; + +static boolean LoadPuncDict (struct _FcitxPuncState* puncState); +static char *GetPunc (struct _FcitxPuncState* puncState, int iKey); +static void FreePunc (struct _FcitxPuncState* puncState); +static void* PuncCreate(FcitxInstance* instance); +static boolean ProcessPunc(void* arg, FcitxKeySym sym, unsigned int state, INPUT_RETURN_VALUE* retVal); +static void* PuncGetPunc(void* a, FcitxModuleFunctionArg arg); +static void TogglePuncState(void *arg); +static boolean GetPuncState(void *arg); +static void ReloadPunc(void *arg); +static INPUT_RETURN_VALUE TogglePuncStateWithHotkey(void *arg); +static void ResetPunc(void *arg); +static boolean IsHotKeyPunc(FcitxKeySym sym, unsigned int state); + + +typedef struct _FcitxPuncState { + char cLastIsAutoConvert; + boolean bLastIsNumber; + FcitxInstance* owner; + WidePunc* chnPunc; +} FcitxPuncState; + +FCITX_EXPORT_API +FcitxModule module = { + PuncCreate, + NULL, + NULL, + NULL, + ReloadPunc +}; + +void* PuncCreate(FcitxInstance* instance) +{ + FcitxPuncState* puncState = fcitx_malloc0(sizeof(FcitxPuncState)); + FcitxAddon* puncaddon = GetAddonByName(&instance->addons, FCITX_PUNC_NAME); + puncState->owner = instance; + LoadPuncDict(puncState); + KeyFilterHook hk; + hk.arg = puncState; + hk.func = ProcessPunc; + + RegisterPostInputFilter(instance, hk); + + puncState->cLastIsAutoConvert = '\0'; + puncState->bLastIsNumber = false; + + HotkeyHook hotkey; + hotkey.hotkey = instance->config->hkPunc; + hotkey.hotkeyhandle = TogglePuncStateWithHotkey; + hotkey.arg = puncState; + RegisterHotkeyFilter(instance, hotkey); + + FcitxIMEventHook hook; + hook.arg = puncState; + hook.func = ResetPunc; + + RegisterResetInputHook(instance, hook); + + RegisterStatus(instance, puncState, "punc", "Full Width Punctuation", "Full Width Punctuation", TogglePuncState, GetPuncState); + + AddFunction(puncaddon, PuncGetPunc); + return puncState; +} + +void* PuncGetPunc(void* a, FcitxModuleFunctionArg arg) +{ + FcitxPuncState* puncState = (FcitxPuncState*) a; + int *key = arg.args[0]; + return GetPunc(puncState, *key); +} + +void ResetPunc(void* arg) +{ + FcitxPuncState* puncState = (FcitxPuncState*) arg; + puncState->bLastIsNumber = false; + puncState->cLastIsAutoConvert = '\0'; + +} + +boolean ProcessPunc(void* arg, FcitxKeySym sym, unsigned int state, INPUT_RETURN_VALUE* retVal) +{ + FcitxPuncState* puncState = (FcitxPuncState*) arg; + FcitxInstance* instance = puncState->owner; + FcitxInputState* input = &puncState->owner->input; + char *pPunc = NULL; + + if (*retVal != IRV_TO_PROCESS) + return false; + + FcitxKeySym origsym = sym; + sym = KeyPadToMain(sym); + if (instance->profile->bUseWidePunc) { + + if (puncState->bLastIsNumber && instance->config->bEngPuncAfterNumber + && (IsHotKey(origsym, state, FCITX_PERIOD) + || IsHotKey(origsym, state, FCITX_SEMICOLON) + || IsHotKey(origsym, state, FCITX_COMMA))) + { + puncState->cLastIsAutoConvert = origsym; + puncState->bLastIsNumber = false; + *retVal = IRV_DONOT_PROCESS; + return true; + } + if (IsHotKeySimple(sym, state)) + pPunc = GetPunc(puncState, origsym); + } + + /* + * 在有候选词未输入的情况下,选择第一个候选词并输入标点 + */ + if (IsHotKeyPunc(sym, state)) { + GetOutputString(input)[0] = '\0'; + INPUT_RETURN_VALUE ret = IRV_TO_PROCESS; + if (!puncState->owner->input.bIsInRemind) + ret = CandidateWordChooseByIndex(input->candList, 0); + + /* if there is nothing to commit */ + if (ret == IRV_TO_PROCESS) + { + if (pPunc) + { + strcat(GetOutputString(input), pPunc); + *retVal = IRV_PUNC; + CleanInputWindow(instance); + return true; + } + else + return false; + } + else + { + if (pPunc) + strcat(GetOutputString(input), pPunc); + else + { + char buf[2] = { sym, 0 }; + strcat(GetOutputString(input), buf); + } + + CleanInputWindow(instance); + *retVal = IRV_PUNC; + return true; + } + + return false; + } + + if (instance->profile->bUseWidePunc) + { + if (IsHotKey(sym, state, FCITX_BACKSPACE) + && puncState->cLastIsAutoConvert) { + char *pPunc; + + ForwardKey(puncState->owner, GetCurrentIC(instance), FCITX_PRESS_KEY, sym, state); + pPunc = GetPunc(puncState, puncState->cLastIsAutoConvert); + if (pPunc) + CommitString(puncState->owner, GetCurrentIC(instance), pPunc); + + puncState->cLastIsAutoConvert = 0; + *retVal = IRV_DO_NOTHING; + return true; + } else if (IsHotKeySimple(sym, state)) { + if (IsHotKeyDigit(sym, state)) + puncState->bLastIsNumber = true; + else { + puncState->bLastIsNumber = false; + } + } + } + puncState->cLastIsAutoConvert = 0; + return false; +} + +/** + * @brief 加载标点词典 + * @param void + * @return void + * @note 文件中数据的格式为: 对应的英文符号 中文标点 <中文标点> + * 加载标点词典。标点词典定义了一组标点转换,如输入‘.’就直接转换成‘。’ + */ +boolean LoadPuncDict (FcitxPuncState* puncState) +{ + FILE *fpDict; // 词典文件指针 + int iRecordNo; + char strText[4 + MAX_PUNC_LENGTH * UTF8_MAX_LENGTH]; + char *pstr; // 临时指针 + int i; + + fpDict = GetXDGFileWithPrefix("data", PUNC_DICT_FILENAME, "rt", NULL); + + if (!fpDict) { + FcitxLog(WARNING, _("Can't open Chinese punc file.")); + return false; + } + + /* 计算词典里面有多少的数据 + * 这个函数非常简单,就是计算该文件有多少行(包含空行)。 + * 因为空行,在下面会略去,所以,这儿存在内存的浪费现象。 + * 没有一个空行就是浪费sizeof (WidePunc)字节内存*/ + iRecordNo = CalculateRecordNumber (fpDict); + // 申请空间,用来存放这些数据。这儿没有检查是否申请到内存,严格说有小隐患 + puncState->chnPunc = (WidePunc *) malloc (sizeof (WidePunc) * (iRecordNo + 1)); + + iRecordNo = 0; + + // 下面这个循环,就是一行一行的读入词典文件的数据。并将其放入到chnPunc里面去。 + for (;;) { + if (!fgets (strText, (MAX_PUNC_LENGTH * UTF8_MAX_LENGTH + 3), fpDict)) + break; + i = strlen (strText) - 1; + + // 先找到最后一个字符 + while ((strText[i] == '\n') || (strText[i] == ' ')) { + if (!i) + break; + i--; + } + + // 如果找到,进行出入。当是空行时,肯定找不到。所以,也就略过了空行的处理 + if (i) { + strText[i + 1] = '\0'; // 在字符串的最后加个封口 + pstr = strText; // 将pstr指向第一个非空字符 + while (*pstr == ' ') + pstr++; + puncState->chnPunc[iRecordNo].ASCII = *pstr++; // 这个就是中文符号所对应的ASCII码值 + while (*pstr == ' ') // 然后,将pstr指向下一个非空字符 + pstr++; + + puncState->chnPunc[iRecordNo].iCount = 0; // 该符号有几个转化,比如英文"就可以转换成“和” + puncState->chnPunc[iRecordNo].iWhich = 0; // 标示该符号的输入状态,即处于第几个转换。如",iWhich标示是转换成“还是” + // 依次将该ASCII码所对应的符号放入到结构中 + while (*pstr) { + i = 0; + // 因为中文符号都是多字节(这里读取并不像其他地方是固定两个,所以没有问题)的,所以,要一直往后读,知道空格或者字符串的末尾 + while (*pstr != ' ' && *pstr) { + puncState->chnPunc[iRecordNo].strWidePunc[puncState->chnPunc[iRecordNo].iCount][i] = *pstr; + i++; + pstr++; + } + + // 每个中文符号用'\0'隔开 + puncState->chnPunc[iRecordNo].strWidePunc[puncState->chnPunc[iRecordNo].iCount][i] = '\0'; + while (*pstr == ' ') + pstr++; + puncState->chnPunc[iRecordNo].iCount++; + } + + iRecordNo++; + } + } + + puncState->chnPunc[iRecordNo].ASCII = '\0'; + fclose (fpDict); + + return true; +} + +void FreePunc (FcitxPuncState* puncState) +{ + if (!puncState->chnPunc) + return; + + free (puncState->chnPunc); + puncState->chnPunc = (WidePunc *) NULL; +} + +/* + * 根据字符得到相应的标点符号 + * 如果该字符不在标点符号集中,则返回NULL + */ +char *GetPunc (FcitxPuncState* puncState, int iKey) +{ + int iIndex = 0; + char *pPunc; + WidePunc *chnPunc = puncState->chnPunc; + + if (!chnPunc) + return (char *) NULL; + + while (chnPunc[iIndex].ASCII) { + if (chnPunc[iIndex].ASCII == iKey) { + pPunc = chnPunc[iIndex].strWidePunc[chnPunc[iIndex].iWhich]; + chnPunc[iIndex].iWhich++; + if (chnPunc[iIndex].iWhich >= chnPunc[iIndex].iCount) + chnPunc[iIndex].iWhich = 0; + return pPunc; + } + iIndex++; + } + + return (char *) NULL; +} + +void TogglePuncState(void* arg) +{ + FcitxPuncState* puncState = (FcitxPuncState* )arg; + FcitxInstance* instance = puncState->owner; + instance->profile->bUseWidePunc = !instance->profile->bUseWidePunc; + SaveProfile(instance->profile); + ResetInput(puncState->owner); +} + +INPUT_RETURN_VALUE TogglePuncStateWithHotkey(void* arg) +{ + FcitxPuncState* puncState = (FcitxPuncState* )arg; + UpdateStatus(puncState->owner, "punc"); + return IRV_DO_NOTHING; +} + +boolean GetPuncState(void* arg) +{ + FcitxPuncState* puncState = (FcitxPuncState*) arg; + FcitxInstance* instance = puncState->owner; + return instance->profile->bUseWidePunc; +} + +void ReloadPunc(void* arg) +{ + FcitxPuncState* puncState = (FcitxPuncState*) arg; + FreePunc(puncState); + LoadPuncDict(puncState); +} + +boolean IsHotKeyPunc(FcitxKeySym sym, unsigned int state) +{ + if (IsHotKeySimple(sym, state) + && !IsHotKeyDigit(sym, state) + && !IsHotKeyLAZ(sym, state) + && !IsHotKeyUAZ(sym, state) + && !IsHotKey(sym, state, FCITX_SPACE)) + return true; + + return false; +} + + +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/module/punc/punc.h fcitx-4.1.1/src/module/punc/punc.h --- fcitx-4.0.1/src/module/punc/punc.h 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/module/punc/punc.h 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,29 @@ +/*************************************************************************** + * Copyright (C) 2002~2005 by Yuking * + * yuking_net@sohu.com * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ +#ifndef _PUNC_H +#define _PUNC_H + +#define FCITX_PUNC_NAME "fcitx-punc" +#define FCITX_PUNC_GETPUNC 0 +#define FCITX_PUNC_GETPUNC_RETURNTYPE char* + +#endif + +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/module/quickphrase/CMakeLists.txt fcitx-4.1.1/src/module/quickphrase/CMakeLists.txt --- fcitx-4.0.1/src/module/quickphrase/CMakeLists.txt 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/module/quickphrase/CMakeLists.txt 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,8 @@ +include_directories(${PROJECT_SOURCE_DIR}/src) + +set(FCITX_QUICKPHRASE_SOURCES + QuickPhrase.c +) + +fcitx_add_addon(fcitx-quickphrase ${FCITX_QUICKPHRASE_SOURCES}) +fcitx_add_addon_conf_file(fcitx-quickphrase.conf) \ No newline at end of file diff -Nru fcitx-4.0.1/src/module/quickphrase/fcitx-quickphrase.conf.in fcitx-4.1.1/src/module/quickphrase/fcitx-quickphrase.conf.in --- fcitx-4.0.1/src/module/quickphrase/fcitx-quickphrase.conf.in 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/module/quickphrase/fcitx-quickphrase.conf.in 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,10 @@ +[Addon] +Name=fcitx-quickphrase +_GeneralName=Quickphrase +_Comment=Conveniently Input English or User-Defined Simple Table +Category=Module +Enabled=True +Library=fcitx-quickphrase.so +Type=SharedLibrary +SubConfig=Quick Phrase List:native:data/QuickPhrase.mb,fcitx:domain +Priority=40 diff -Nru fcitx-4.0.1/src/module/quickphrase/QuickPhrase.c fcitx-4.1.1/src/module/quickphrase/QuickPhrase.c --- fcitx-4.0.1/src/module/quickphrase/QuickPhrase.c 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/module/quickphrase/QuickPhrase.c 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,440 @@ +/*************************************************************************** + * Copyright (C) 2002~2005 by Yuking * + * yuking_net@sohu.com * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ +#include +#include +#include +#include + +#include "fcitx/fcitx.h" + +#include "QuickPhrase.h" +#include "fcitx-utils/log.h" +#include "fcitx-config/xdg.h" +#include "fcitx-utils/utarray.h" +#include "fcitx/instance.h" +#include "fcitx-utils/utils.h" +#include "fcitx/module.h" +#include "fcitx/hook.h" +#include "fcitx/keys.h" +#include "fcitx/frontend.h" +#include "fcitx/candidate.h" + +static INPUT_RETURN_VALUE QuickPhraseGetCandWord(void* arg, CandidateWord* candWord); + +typedef struct _QuickPhraseState { + unsigned int uQuickPhraseCount; + UT_array *quickPhrases ; + int iFirstQuickPhrase; + int iLastQuickPhrase; + boolean enabled; + FcitxInstance* owner; +} QuickPhraseState; + +typedef struct _QuickPhraseCand { + + QUICK_PHRASE* cand; + +} QuickPhraseCand; + +static void * QuickPhraseCreate (FcitxInstance *instance); +static void LoadQuickPhrase(QuickPhraseState* qpstate); +static void FreeQuickPhrase(void* arg); +static void ReloadQuickPhrase(void* arg); +static INPUT_RETURN_VALUE QuickPhraseDoInput (void* arg, FcitxKeySym sym, int state); +static INPUT_RETURN_VALUE QuickPhraseGetCandWords (); +static UT_icd qp_icd = {sizeof(QUICK_PHRASE), NULL, NULL, NULL}; +static void ShowQuickPhraseMessage(QuickPhraseState *qpstate); + +FCITX_EXPORT_API +FcitxModule module = +{ + QuickPhraseCreate, + NULL, + NULL, + FreeQuickPhrase, + ReloadQuickPhrase +}; + +static boolean QuickPhrasePostFilter(void* arg, FcitxKeySym sym, + unsigned int state, + INPUT_RETURN_VALUE *retval + ); +static boolean QuickPhrasePreFilter(void* arg, FcitxKeySym sym, + unsigned int state, + INPUT_RETURN_VALUE *retval + ); +static void QuickPhraseReset(void* arg); +int PhraseCmp(const void* a, const void* b) +{ + return strcmp(((QUICK_PHRASE*)a)->strCode, ((QUICK_PHRASE*)b)->strCode); +} + +int PhraseCmpA(const void* a, const void* b) +{ + int res,len; + len = strlen(((QUICK_PHRASE*)a)->strCode); + res = strncmp(((QUICK_PHRASE*)a)->strCode, ((QUICK_PHRASE*)b)->strCode, len); + if (res) + return res; + else + { + return 1; + } +} + +void * QuickPhraseCreate (FcitxInstance *instance) +{ + QuickPhraseState *qpstate = fcitx_malloc0(sizeof(QuickPhraseState)); + qpstate->iFirstQuickPhrase = -1; + qpstate->owner = instance; + qpstate->enabled = false; + LoadQuickPhrase(qpstate); + + KeyFilterHook hk; + hk.arg = qpstate ; + hk.func = QuickPhrasePostFilter; + RegisterPostInputFilter(instance, hk); + + hk.func = QuickPhrasePreFilter; + RegisterPreInputFilter(instance, hk); + + FcitxIMEventHook resethk; + resethk.arg = qpstate; + resethk.func = QuickPhraseReset; + RegisterResetInputHook(instance, resethk); + + return qpstate; +} + +/** + * @brief 加载快速输入词典 + * @param void + * @return void + * @note 快速输入是在;的行为定义为2,并且输入;以后才可以使用的。 + * 加载快速输入词典.如:输入“zg”就直接出现“中华人民共和国”等等。 + * 文件中每一行数据的定义为:<字符组合> <短语> + * 如:“zg 中华人民共和国” + */ +void LoadQuickPhrase(QuickPhraseState * qpstate) +{ + FILE *fp; + char *buf = NULL; + size_t len = 0; + char *buf1 = NULL; + + QUICK_PHRASE tempQuickPhrase; + + qpstate->uQuickPhraseCount=0; + + fp = GetXDGFileWithPrefix("data", "QuickPhrase.mb", "rt", NULL); + if (!fp) + return; + + // 这儿的处理比较简单。因为是单索引对单值。 + // 应该注意的是,它在内存中是以单链表保存的。 + utarray_new(qpstate->quickPhrases, &qp_icd); + while (getline(&buf, &len, fp) != -1) + { + if (buf1) + free(buf1); + buf1 = fcitx_trim(buf); + char *p = buf1; + + while (*p && !isspace(*p)) + p ++; + + if (p == '\0') + continue; + + while (isspace(*p)) + { + *p = '\0'; + p ++; + } + + if (strlen(buf1) >= QUICKPHRASE_CODE_LEN) + continue; + + if (strlen(p) >= QUICKPHRASE_PHRASE_LEN * UTF8_MAX_LENGTH + 1) + continue; + + strcpy(tempQuickPhrase.strCode,buf1); + strcpy(tempQuickPhrase.strPhrase, p); + + utarray_push_back(qpstate->quickPhrases, &tempQuickPhrase); + } + + strcpy (tempQuickPhrase.strCode, "\x47\x4e\x4f\x4d\x45"); + strcpy (tempQuickPhrase.strPhrase, "\x48\x6f\x77\x20\x63\x61\x6e\x20\x69\x74\x20\x66\x75\x63\x6b\x73\x20\x66" + "\x63\x69\x74\x78\x20\x73\x6f\x20\x6d\x61\x6e\x79\x20\x74\x69\x6d\x65\x73" + "\x3f\x20\x49\x74\x20\x73\x75\x63\x6b\x73\x2e"); + utarray_push_back(qpstate->quickPhrases, &tempQuickPhrase); + + if (buf) + free(buf); + if (buf1) + free(buf1); + + if (qpstate->quickPhrases) + { + utarray_sort(qpstate->quickPhrases, PhraseCmp); + } + + fclose(fp); +} + +void FreeQuickPhrase(void *arg) +{ + QuickPhraseState *qpstate = (QuickPhraseState*) arg; + if ( !qpstate->quickPhrases ) + return; + + utarray_free(qpstate->quickPhrases); +} + +void ShowQuickPhraseMessage(QuickPhraseState *qpstate) +{ + FcitxInputState *input = &qpstate->owner->input; + input->iCursorPos = strlen(input->strCodeInput); + CleanInputWindowUp(qpstate->owner); + AddMessageAtLast(input->msgAuxUp, MSG_TIPS, _("Quick Phrase: ")); + AddMessageAtLast(input->msgPreedit, MSG_INPUT, input->strCodeInput); +} + +boolean QuickPhrasePreFilter(void* arg, FcitxKeySym sym, + unsigned int state, + INPUT_RETURN_VALUE *retval + ) +{ + QuickPhraseState *qpstate = (QuickPhraseState*) arg; + FcitxInputState *input = &qpstate->owner->input; + if (qpstate->enabled) + { + FcitxKeySym keymain = KeyPadToMain(sym); + if (IsHotKeySimple(keymain, state)) + { + *retval = QuickPhraseDoInput(qpstate, keymain, state); + if (*retval == IRV_TO_PROCESS) + { + if (strlen(input->strCodeInput) == 0 + && (IsHotKey(keymain, state, FCITX_SEMICOLON) || IsHotKey(keymain, state, FCITX_SPACE))) + { + strcpy(GetOutputString(input), ";"); + *retval = IRV_COMMIT_STRING; + } + else { + char buf[2]; + buf[0] = keymain; + buf[1] = '\0'; + if (strlen(input->strCodeInput) < MAX_USER_INPUT) + strcat(input->strCodeInput, buf); + ShowQuickPhraseMessage(qpstate); + *retval = QuickPhraseGetCandWords(qpstate); + if (*retval == IRV_DISPLAY_MESSAGE) + { + SetMessageCount(input->msgAuxDown, 0); + AddMessageAtLast(input->msgAuxDown, MSG_TIPS, _("Press Enter to input text")); + } + } + } + else + return true; + } + else if (IsHotKey(sym, state, FCITX_BACKSPACE)) + { + size_t len = strlen(input->strCodeInput); + if (len > 0) + input->strCodeInput[--len] = '\0'; + if (len == 0) + { + *retval = IRV_CLEAN; + } + else + { + ShowQuickPhraseMessage(qpstate); + *retval = QuickPhraseGetCandWords(qpstate); + } + } + else if (IsHotKey(sym, state, FCITX_ENTER)) + { + + if (strlen(input->strCodeInput) > 0) + { + strcpy(GetOutputString(input), input->strCodeInput); + QuickPhraseReset(qpstate); + *retval = IRV_COMMIT_STRING; + } + else + { + strcpy(GetOutputString(input), ";"); + *retval = IRV_COMMIT_STRING; + } + } + else if (IsHotKey(sym, state, FCITX_ESCAPE)) + { + *retval = IRV_CLEAN; + } + else if (IsHotKeyModifierCombine(sym, state)) + { + return false; + } + else + *retval = IRV_DO_NOTHING; + return true; + } + return false; +} +boolean QuickPhrasePostFilter(void* arg, FcitxKeySym sym, + unsigned int state, + INPUT_RETURN_VALUE *retval + ) +{ + QuickPhraseState *qpstate = (QuickPhraseState*) arg; + FcitxInputState *input = &qpstate->owner->input; + + if (*retval != IRV_TO_PROCESS) + return false; + + if (!qpstate->enabled + && input->iCodeInputCount == 0 + && IsHotKey(sym, state, FCITX_SEMICOLON)) + { + CleanInputWindow(qpstate->owner); + input->bShowCursor = true; + AddMessageAtLast(input->msgAuxUp, MSG_TIPS, _("Quick Phrase: ")); + input->iCursorPos = 0; + AddMessageAtLast(input->msgAuxDown, MSG_TIPS, _("Spcae for ; Enter for;")); + + qpstate->enabled = true; + *retval = IRV_DISPLAY_MESSAGE; + + return true; + } + return false; +} + +void QuickPhraseReset(void* arg) +{ + QuickPhraseState *qpstate = (QuickPhraseState*) arg; + qpstate->enabled = false; +} +INPUT_RETURN_VALUE QuickPhraseDoInput (void* arg, FcitxKeySym sym, int state) +{ + QuickPhraseState *qpstate = (QuickPhraseState*) arg; + FcitxInputState *input = &qpstate->owner->input; + FcitxConfig* fc = qpstate->owner->config; + int retVal = IRV_TO_PROCESS; + + if (IsHotKey(sym, state, fc->hkPrevPage)) + { + if (CandidateWordGoPrevPage(input->candList)) + retVal = IRV_DISPLAY_MESSAGE; + } + else if (IsHotKey(sym, state, fc->hkNextPage)) + { + if (CandidateWordGoNextPage(input->candList)) + retVal = IRV_DISPLAY_MESSAGE; + } + else if (IsHotKeyDigit(sym, state)) + { + int iKey = CheckChooseKey(sym, state, DIGIT_STR_CHOOSE); + if (iKey >= 0) + retVal = CandidateWordChooseByIndex(input->candList, iKey); + } + else if (IsHotKey(sym, state, FCITX_SPACE)) { + if (CandidateWordPageCount(input->candList) != 0) + retVal = CandidateWordChooseByIndex(input->candList, 0); + } + + return retVal; +} + +INPUT_RETURN_VALUE QuickPhraseGetCandWords (QuickPhraseState* qpstate) +{ + int iInputLen; + QUICK_PHRASE searchKey, *pKey, *currentQuickPhrase, *lastQuickPhrase; + FcitxInputState *input = &qpstate->owner->input; + FcitxInstance *instance = qpstate->owner; + + CandidateWordSetPageSize(input->candList, ConfigGetMaxCandWord(instance->config)); + CandidateWordSetChoose(input->candList, DIGIT_STR_CHOOSE); + + pKey = &searchKey; + + if ( !qpstate->quickPhrases ) + return IRV_DISPLAY_MESSAGE; + + iInputLen = strlen(input->strCodeInput); + if (iInputLen > QUICKPHRASE_CODE_LEN) + return IRV_DISPLAY_MESSAGE; + + strcpy(searchKey.strCode, input->strCodeInput); + + CandidateWordReset(input->candList); + + currentQuickPhrase = utarray_custom_bsearch(pKey, qpstate->quickPhrases, false, PhraseCmp); + qpstate->iFirstQuickPhrase = utarray_eltidx(qpstate->quickPhrases, currentQuickPhrase); + lastQuickPhrase = utarray_custom_bsearch(pKey, qpstate->quickPhrases, false, PhraseCmpA); + qpstate->iLastQuickPhrase = utarray_eltidx(qpstate->quickPhrases, lastQuickPhrase); + if (qpstate->iLastQuickPhrase < 0) + qpstate->iLastQuickPhrase = utarray_len(qpstate->quickPhrases); + if ( !currentQuickPhrase || strncmp(input->strCodeInput,currentQuickPhrase->strCode,iInputLen) ) { + CleanInputWindowDown(instance); + currentQuickPhrase = NULL; + return IRV_DISPLAY_MESSAGE; + } + + for ( currentQuickPhrase = (QUICK_PHRASE*) utarray_eltptr(qpstate->quickPhrases, + qpstate->iFirstQuickPhrase); + currentQuickPhrase != NULL; + currentQuickPhrase = (QUICK_PHRASE*) utarray_next(qpstate->quickPhrases, currentQuickPhrase)) + { + if (!strncmp(input->strCodeInput,currentQuickPhrase->strCode,iInputLen)) { + QuickPhraseCand* qpcand = fcitx_malloc0(sizeof(QuickPhraseCand)); + qpcand->cand = currentQuickPhrase; + CandidateWord candWord; + candWord.callback = QuickPhraseGetCandWord; + candWord.owner = qpstate; + candWord.priv = qpcand; + candWord.strExtra = strdup(currentQuickPhrase->strCode + iInputLen); + candWord.strWord = strdup(currentQuickPhrase->strPhrase); + CandidateWordAppend(input->candList, &candWord); + } + } + + return IRV_DISPLAY_MESSAGE; +} + +void ReloadQuickPhrase(void* arg) +{ + QuickPhraseState *qpstate = (QuickPhraseState*) arg; + FreeQuickPhrase(arg); + LoadQuickPhrase(qpstate); +} + +INPUT_RETURN_VALUE QuickPhraseGetCandWord(void* arg, CandidateWord* candWord) +{ + QuickPhraseState *qpstate = (QuickPhraseState*) arg; + QuickPhraseCand* qpcand = candWord->priv; + strcpy(GetOutputString(&qpstate->owner->input), qpcand->cand->strPhrase); + return IRV_COMMIT_STRING; +} + +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/module/quickphrase/QuickPhrase.h fcitx-4.1.1/src/module/quickphrase/QuickPhrase.h --- fcitx-4.0.1/src/module/quickphrase/QuickPhrase.h 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/module/quickphrase/QuickPhrase.h 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,35 @@ +/*************************************************************************** + * Copyright (C) 2002~2005 by Yuking * + * yuking_net@sohu.com * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ +#ifndef _QUICKPHRASE_H +#define _QUICKPHRASE_H + +#include "fcitx/ime.h" + +#define QUICKPHRASE_CODE_LEN 20 +#define QUICKPHRASE_PHRASE_LEN 40 + +typedef struct _QUICK_PHRASE { + char strCode[QUICKPHRASE_CODE_LEN+1]; + char strPhrase[QUICKPHRASE_PHRASE_LEN * UTF8_MAX_LENGTH+1]; +} QUICK_PHRASE; + +#endif + +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/module/remote/CMakeLists.txt fcitx-4.1.1/src/module/remote/CMakeLists.txt --- fcitx-4.0.1/src/module/remote/CMakeLists.txt 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/module/remote/CMakeLists.txt 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,9 @@ +include_directories(${PROJECT_SOURCE_DIR}/src) + +set(FCITX_REMOTE_MODULE_SOURCES + remote.c +) + +fcitx_add_addon(fcitx-remote-module ${FCITX_REMOTE_MODULE_SOURCES}) + +fcitx_add_addon_conf_file(fcitx-remote-module.conf) \ No newline at end of file diff -Nru fcitx-4.0.1/src/module/remote/fcitx-remote-module.conf.in fcitx-4.1.1/src/module/remote/fcitx-remote-module.conf.in --- fcitx-4.0.1/src/module/remote/fcitx-remote-module.conf.in 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/module/remote/fcitx-remote-module.conf.in 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,8 @@ +[Addon] +Name=fcitx-remote +_GeneralName=Remote +_Comment=Used by fcitx-remote to change Fcitx state from console +Category=Module +Enabled=True +Library=fcitx-remote-module.so +Type=SharedLibrary \ No newline at end of file diff -Nru fcitx-4.0.1/src/module/remote/remote.c fcitx-4.1.1/src/module/remote/remote.c --- fcitx-4.0.1/src/module/remote/remote.c 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/module/remote/remote.c 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,184 @@ +/*************************************************************************** + * Copyright (C) 2008~2010 by wind (xihe) * + * xihels@gmail.com * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include "fcitx/fcitx.h" +#include "fcitx-utils/log.h" +#include "fcitx/module.h" +#include "fcitx/frontend.h" +#include "fcitx/instance.h" +#include "fcitx-utils/utils.h" + +static void* RemoteCreate(FcitxInstance* instance); +static void RemoteProcessEvent(void* arg); +static void RemoteSetFD(void* arg); +static int CreateSocket(const char *name); + +FCITX_EXPORT_API +FcitxModule module = { + RemoteCreate, + RemoteSetFD, + RemoteProcessEvent, + NULL, + NULL +}; + +typedef struct _FcitxRemote { + char socketfile[PATH_MAX]; + FcitxInstance* owner; + int socket_fd; +} FcitxRemote; + +void* RemoteCreate(FcitxInstance* instance) +{ + FcitxRemote* remote = fcitx_malloc0(sizeof(FcitxRemote)); + remote->owner = instance; + + char *socketfile = remote->socketfile; + sprintf(socketfile, "/tmp/fcitx-socket-:%d", FcitxGetDisplayNumber()); + remote->socket_fd = CreateSocket(socketfile); + if ( remote->socket_fd < 0) { + FcitxLog(ERROR, _("Can't open socket %s: %s"), socketfile, strerror(errno)); + free(remote); + return NULL; + } + + fcntl(remote->socket_fd, F_SETFD, FD_CLOEXEC); + fcntl(remote->socket_fd, F_SETFL, O_NONBLOCK); + chmod(socketfile, 0600); + return remote; +} + +int CreateSocket(const char *name) +{ + int fd; + int r; + struct sockaddr_un uds_addr; + + /* JIC */ + unlink(name); + + fd = socket(AF_UNIX, SOCK_STREAM, 0); + if (fd < 0) { + return fd; + } + + /* setup address struct */ + memset(&uds_addr, 0, sizeof(uds_addr)); + uds_addr.sun_family = AF_UNIX; + strcpy(uds_addr.sun_path, name); + + /* bind it to the socket */ + r = bind(fd, (struct sockaddr *)&uds_addr, sizeof(uds_addr)); + if (r < 0) { + return r; + } + + + /* listen - allow 10 to queue */ + r = listen(fd, 10); + if (r < 0) { + return r; + } + + return fd; +} + + +int UdAccept(int listenfd) +{ + for (;;) { + int newsock = 0; + struct sockaddr_un cliaddr; + socklen_t len = sizeof(struct sockaddr_un); + + newsock = accept(listenfd, (struct sockaddr *)&cliaddr, &len); + if (newsock < 0) { + if (errno == EINTR) { + continue; /* signal */ + } + } + + return newsock; + } +} + +static void SendIMState(FcitxRemote* remote, int fd) +{ + IME_STATE r = GetCurrentState(remote->owner); + write(fd, &r, sizeof(r)); +} + +static void RemoteProcessEvent (void* p) +{ + FcitxRemote* remote = (FcitxRemote*) p; + unsigned int O; // 低16位, 0 = get, 1 = set; + // 高16位, 只用于 set, 0 关闭输入法, 1 打开输入法. + int client_fd = UdAccept(remote->socket_fd); + if (client_fd < 0) + return; + read(client_fd, &O, sizeof(int)); + unsigned int cmd = O & 0xFFFF; + unsigned int arg = (O >> 16) & 0xFFFF; + FcitxLock(remote->owner); + switch (cmd) + { + /// {{{ + case 0: + SendIMState(remote, client_fd); + break; + case 1: + if (arg == IS_CLOSED) + CloseIM(remote->owner, GetCurrentIC(remote->owner)); + else + EnableIM(remote->owner, GetCurrentIC(remote->owner), false); + break; + case 2: + ReloadConfig(remote->owner); + break; + default: + break; + /// }}} + } + FcitxUnlock(remote->owner); + close(client_fd); +} + +void RemoteSetFD (void* arg) +{ + FcitxRemote* remote = (FcitxRemote*) arg; + FD_SET(remote->socket_fd, &remote->owner->rfds); + if (remote->owner->maxfd < remote->socket_fd) + remote->owner->maxfd = remote->socket_fd; +} + + +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/module/vk/CMakeLists.txt fcitx-4.1.1/src/module/vk/CMakeLists.txt --- fcitx-4.0.1/src/module/vk/CMakeLists.txt 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/module/vk/CMakeLists.txt 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,27 @@ +include_directories(${PROJECT_SOURCE_DIR}/src) +include_directories(${CAIRO_XLIB_INCLUDE_DIRS}) + +link_directories(${CAIRO_XLIB_LIBRARY_DIRS}) +if (_ENABLE_PANGO) + include_directories ( ${PANGOCAIRO_INCLUDE_DIRS} ) + link_directories(${PANGOCAIRO_LIBRARY_DIRS}) +else (_ENABLE_PANGO) + include_directories ( ${FONTCONFIG_INCLUDE_DIRS} ) + link_directories(${FONTCONFIG_LIBRARY_DIRS}) +endif (_ENABLE_PANGO) + +set(FCITX_VK_SOURCES + vk.c + ../../ui/cairostuff/cairostuff.c + ../../ui/cairostuff/font.c +) + +fcitx_add_addon(fcitx-vk ${FCITX_VK_SOURCES}) +target_link_libraries( fcitx-vk ${X11_LIBRARIES} ${CAIRO_XLIB_LIBRARIES}) +if (_ENABLE_PANGO) + target_link_libraries( fcitx-vk ${PANGOCAIRO_LIBRARIES} ) +else (_ENABLE_PANGO) + target_link_libraries( fcitx-vk ${FONTCONFIG_LIBRARIES} ) +endif (_ENABLE_PANGO) + +fcitx_add_addon_conf_file(fcitx-vk.conf) \ No newline at end of file diff -Nru fcitx-4.0.1/src/module/vk/fcitx-vk.conf.in fcitx-4.1.1/src/module/vk/fcitx-vk.conf.in --- fcitx-4.0.1/src/module/vk/fcitx-vk.conf.in 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/module/vk/fcitx-vk.conf.in 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,10 @@ +[Addon] +Name=fcitx-vk +_GeneralName=Virtual Key Board +_Comment=Virtual Key Board in order to input special character +Category=Module +Enabled=True +Library=fcitx-vk.so +Type=SharedLibrary +Dependency=fcitx-x11 +SubConfig=Virtual Key Board:native:data/vk.conf,fcitx:domain diff -Nru fcitx-4.0.1/src/module/vk/vk.c fcitx-4.1.1/src/module/vk/vk.c --- fcitx-4.0.1/src/module/vk/vk.c 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/module/vk/vk.c 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,829 @@ +/*************************************************************************** + * Copyright (C) 2002~2005 by Yuking * + * yuking_net@sohu.com * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ +#include +#include +#include +#include +#include +#include + +#include "fcitx/fcitx.h" +#include "fcitx/module.h" +#include + +#include "fcitx/ime.h" +#include "fcitx/instance.h" +#include "fcitx-utils/log.h" +#include "fcitx/frontend.h" +#include "fcitx-config/xdg.h" +#include +#include +#include +#include "fcitx/hook.h" +#include +#include + +#define VK_FILE "vk.conf" + +#define VK_WINDOW_WIDTH 354 +#define VK_WINDOW_HEIGHT 164 +#define VK_NUMBERS 47 +#define VK_MAX 50 + +struct _FcitxVKState; + +typedef struct _VKS { + char strSymbol[VK_NUMBERS][2][UTF8_MAX_LENGTH + 1]; //相应的符号 + char strName[MAX_IM_NAME + 1]; +} VKS; + +typedef struct _VKWindow +{ + Window window; + ConfigColor* fontColor; + int fontSize; + cairo_surface_t* surface; + cairo_surface_t* keyboard; + Display* dpy; + struct _FcitxVKState* owner; + char **font; + char *defaultFont; + int iVKWindowX; + int iVKWindowY; +} VKWindow; + +typedef struct _FcitxVKState { + VKWindow* vkWindow; + int iCurrentVK ; + int iVKCount ; + VKS vks[VK_MAX]; + boolean bShiftPressed; + boolean bVKCaps; + boolean bVK; + FcitxUIMenu vkmenu; + FcitxInstance* owner; + FcitxAddon* classicui; +} FcitxVKState; + +const char vkTable[VK_NUMBERS + 1] = "`1234567890-=qwertyuiop[]\\asdfghjkl;'zxcvbnm,./"; +const char strCharTable[] = "`~1!2@3#4$5%6^7&8*9(0)-_=+[{]}\\|;:'\",<.>/?"; //用于转换上/下档键 + +static boolean VKWindowEventHandler(void* arg, XEvent* event); +static void +VKInitWindowAttribute(FcitxVKState* vkstate, Visual ** vs, Colormap * cmap, + XSetWindowAttributes * attrib, + unsigned long *attribmask, int *depth); +static Visual * VKFindARGBVisual (FcitxVKState* vkstate); +static void VKSetWindowProperty(FcitxVKState* vkstate, Window window, FcitxXWindowType type, char *windowTitle); +static boolean VKMouseClick(FcitxVKState* vkstate, Window window, int *x, int *y); +static void SwitchVK (FcitxVKState *vkstate); +static void LoadVKMapFile ( FcitxVKState *vkstate); +static void ChangVK (FcitxVKState* vkstate); +static void ReloadVK(void *arg); +static int MyToUpper (int iChar); +static int MyToLower (int iChar); +static cairo_surface_t* LoadVKImage(VKWindow* vkWindow); +static void *VKCreate(FcitxInstance* instance); +static VKWindow* CreateVKWindow (FcitxVKState* vkstate); +static boolean GetVKState(void *arg); +static void ToggleVKState(void *arg); +static INPUT_RETURN_VALUE ToggleVKStateWithHotkey(void* arg); +static void DrawVKWindow (VKWindow* vkWindow); +static boolean VKMouseKey (FcitxVKState* vkstate, int x, int y); +static boolean VKPreFilter(void* arg, FcitxKeySym sym, + unsigned int state, + INPUT_RETURN_VALUE *retval + ); +static void VKReset(void* arg); +static void VKUpdate(void* arg); +static INPUT_RETURN_VALUE DoVKInput (FcitxVKState* vkstate, KeySym sym, int state); +static void DisplayVKWindow (VKWindow* vkWindow); +static boolean VKMenuAction(FcitxUIMenu *menu, int index); +static void UpdateVKMenuShell(FcitxUIMenu *menu); +static void SelectVK(FcitxVKState* vkstate, int vkidx); + +static ConfigColor blackColor = {0, 0, 0}; + +FCITX_EXPORT_API +FcitxModule module = +{ + VKCreate, + NULL, + NULL, + NULL, + ReloadVK +}; + +void *VKCreate(FcitxInstance* instance) +{ + FcitxVKState *vkstate = fcitx_malloc0(sizeof(FcitxVKState)); + vkstate->owner = instance; + vkstate->classicui = GetAddonByName(&instance->addons, FCITX_CLASSIC_UI_NAME); + + HotkeyHook hotkey; + hotkey.hotkey = instance->config->hkVK; + hotkey.hotkeyhandle = ToggleVKStateWithHotkey; + hotkey.arg = vkstate; + RegisterHotkeyFilter(instance, hotkey); + + RegisterStatus(instance, vkstate, "vk", "Virtual Keyboard", "Virtual Keyboard State", ToggleVKState, GetVKState); + + LoadVKMapFile(vkstate); + + KeyFilterHook hk; + hk.arg = vkstate ; + hk.func = VKPreFilter; + RegisterPreInputFilter(instance, hk); + + FcitxIMEventHook resethk; + resethk.arg = vkstate; + resethk.func = VKReset; + RegisterTriggerOnHook(instance, resethk); + RegisterTriggerOffHook(instance, resethk); + + resethk.func = VKUpdate; + RegisterInputFocusHook(instance, resethk); + RegisterInputUnFocusHook(instance, resethk); + + strcpy(vkstate->vkmenu.candStatusBind, "vk"); + strcpy(vkstate->vkmenu.name, _("Virtual Keyboard")); + + utarray_init(&vkstate->vkmenu.shell, &menuICD); + vkstate->vkmenu.UpdateMenuShell = UpdateVKMenuShell; + vkstate->vkmenu.MenuAction = VKMenuAction; + vkstate->vkmenu.priv = vkstate; + vkstate->vkmenu.isSubMenu = false; + + int i; + for (i = 0; i < vkstate->iVKCount; i ++) + AddMenuShell(&vkstate->vkmenu, vkstate->vks[i].strName, MENUTYPE_SIMPLE, NULL); + + RegisterMenu(instance, &vkstate->vkmenu); + + return vkstate; +} + +boolean VKMenuAction(FcitxUIMenu *menu, int index) +{ + FcitxVKState* vkstate = (FcitxVKState*) menu->priv; + SelectVK(vkstate, index); + return true; +} + +void UpdateVKMenuShell(FcitxUIMenu *menu) +{ + FcitxVKState* vkstate = (FcitxVKState*) menu->priv; + menu->mark = vkstate->iCurrentVK; +} + +void VKReset(void* arg) +{ + FcitxVKState *vkstate =(FcitxVKState*) arg; + VKWindow* vkWindow = vkstate->vkWindow; + if (vkstate->bVK != false) + UpdateStatus(vkstate->owner, "vk"); + if (vkWindow) + XUnmapWindow (vkWindow->dpy, vkWindow->window); +} + +void VKUpdate(void* arg) +{ + FcitxVKState *vkstate =(FcitxVKState*) arg; + VKWindow* vkWindow = vkstate->vkWindow; + if (vkWindow) + { + + if (GetCurrentState(vkstate->owner) != IS_CLOSED && vkstate->bVK) + { + DrawVKWindow(vkWindow); + DisplayVKWindow(vkWindow); + } + else + XUnmapWindow (vkWindow->dpy, vkWindow->window); + } +} + +boolean VKPreFilter(void* arg, FcitxKeySym sym, unsigned int state, INPUT_RETURN_VALUE* retval) +{ + FcitxVKState *vkstate =(FcitxVKState*) arg; + if (vkstate->bVK) + { + INPUT_RETURN_VALUE ret = DoVKInput(vkstate, sym, state); + *retval = ret; + return true; + } + return false; +} + +boolean GetVKState(void *arg) +{ + FcitxVKState *vkstate =(FcitxVKState*) arg; + return vkstate->bVK; +} + +void ToggleVKState(void *arg) +{ + FcitxVKState *vkstate =(FcitxVKState*) arg; + SwitchVK(vkstate); +} + +INPUT_RETURN_VALUE ToggleVKStateWithHotkey(void* arg) +{ + FcitxVKState *vkstate =(FcitxVKState*) arg; + UpdateStatus(vkstate->owner, "vk"); + return IRV_DO_NOTHING; +} + +VKWindow* CreateVKWindow (FcitxVKState* vkstate) +{ + XSetWindowAttributes attrib; + unsigned long attribmask; + char strWindowName[] = "Fcitx VK Window"; + Colormap cmap; + Visual * vs; + int depth; + FcitxModuleFunctionArg arg; + VKWindow* vkWindow = fcitx_malloc0(sizeof(VKWindow)); + vkWindow->owner= vkstate; + + LoadVKImage(vkWindow); + + vs = VKFindARGBVisual(vkstate); + VKInitWindowAttribute(vkstate, &vs, &cmap, &attrib, &attribmask, &depth); + vkWindow->dpy = InvokeFunction(vkstate->owner, FCITX_X11, GETDISPLAY, arg); + + vkWindow->fontSize = 12; + if (vkstate->classicui) + { + FcitxModuleFunctionArg arg; + vkWindow->fontColor = InvokeFunction(vkstate->owner, FCITX_CLASSIC_UI, GETKEYBOARDFONTCOLOR, arg); + vkWindow->font = InvokeFunction(vkstate->owner, FCITX_CLASSIC_UI, GETFONT, arg); + } + else + { + vkWindow->fontColor = &blackColor; + vkWindow->defaultFont = strdup("sans"); +#ifndef _ENABLE_PANGO + GetValidFont("zh", &vkWindow->defaultFont); +#endif + vkWindow->font = &vkWindow->defaultFont; + } + + vkWindow->window = XCreateWindow (vkWindow->dpy, + DefaultRootWindow (vkWindow->dpy), + 0, 0, + VK_WINDOW_WIDTH, VK_WINDOW_HEIGHT, + 0, depth, InputOutput, vs, attribmask, &attrib); + if (vkWindow->window == (Window) None) + return NULL; + + vkWindow->surface=cairo_xlib_surface_create(vkWindow->dpy, vkWindow->window, vs, VK_WINDOW_WIDTH, VK_WINDOW_HEIGHT); + + XSelectInput (vkWindow->dpy, vkWindow->window, ExposureMask | ButtonPressMask | ButtonReleaseMask | PointerMotionMask ); + + VKSetWindowProperty(vkstate, vkWindow->window, FCITX_WINDOW_DOCK, strWindowName); + + FcitxModuleFunctionArg arg2; + arg2.args[0] = VKWindowEventHandler; + arg2.args[1] = vkWindow; + InvokeFunction(vkstate->owner, FCITX_X11, ADDXEVENTHANDLER, arg2); + + return vkWindow; +} + +boolean VKWindowEventHandler(void* arg, XEvent* event) +{ + VKWindow* vkWindow = arg; + if (event->xany.window == vkWindow->window) + { + switch (event->type) + { + case Expose: + DrawVKWindow(vkWindow); + break; + case ButtonPress: + switch (event->xbutton.button) { + case Button1: + { + if (!VKMouseKey(vkWindow->owner, event->xbutton.x, event->xbutton.y)) + { + vkWindow->iVKWindowX = event->xbutton.x; + vkWindow->iVKWindowY = event->xbutton.y; + VKMouseClick(vkWindow->owner,vkWindow->window, &vkWindow->iVKWindowX, &vkWindow->iVKWindowY); + DrawVKWindow(vkWindow); + } + } + break; + } + break; + } + return true; + } + + return false; +} + +cairo_surface_t* LoadVKImage(VKWindow* vkWindow) +{ + FcitxVKState* vkstate = vkWindow->owner; + if (vkstate->classicui) + { + FcitxModuleFunctionArg arg; + boolean fallback = true; + char vkimage[] = "keyboard.png"; + arg.args[0] = vkimage; + arg.args[1] = &fallback; + return InvokeFunction(vkstate->owner, FCITX_CLASSIC_UI, LOADIMAGE, arg); + } + else { + if (!vkWindow->keyboard) + { + char path[PATH_MAX]; + strncpy(path, PKGDATADIR "/skin/default/keyboard.png" ,PATH_MAX ); + vkWindow->keyboard = cairo_image_surface_create_from_png(path); + } + return vkWindow->keyboard; + } + return NULL; +} + +void DisplayVKWindow (VKWindow* vkWindow) +{ + XMapRaised (vkWindow->dpy, vkWindow->window); +} + +void DestroyVKWindow (VKWindow* vkWindow) +{ + cairo_surface_destroy(vkWindow->surface); + XDestroyWindow(vkWindow->dpy, vkWindow->window); +} + +void DrawVKWindow (VKWindow* vkWindow) +{ + int i; + int iPos; + cairo_t *cr; + FcitxVKState *vkstate = vkWindow->owner; + VKS *vks = vkstate->vks; + + + cr = cairo_create(vkWindow->surface); + cairo_surface_t* vkimage = LoadVKImage(vkWindow); + cairo_set_source_surface(cr, vkimage, 0, 0); + cairo_paint(cr); + /* 显示字符 */ + /* 名称 */ + OutputString (cr, vks[vkstate->iCurrentVK].strName, *vkWindow->font, vkWindow->fontSize , (VK_WINDOW_WIDTH - StringWidth (vks[vkstate->iCurrentVK].strName, *vkWindow->font, vkWindow->fontSize)) / 2, 6, vkWindow->fontColor); + + /* 第一排 */ + iPos = 13; + for (i = 0; i < 13; i++) { + OutputString (cr, vks[vkstate->iCurrentVK].strSymbol[i][1], *vkWindow->font, vkWindow->fontSize, iPos, 27, vkWindow->fontColor); + OutputString (cr, vks[vkstate->iCurrentVK].strSymbol[i][0], *vkWindow->font, vkWindow->fontSize, iPos - 5, 40, vkWindow->fontColor); + iPos += 24; + } + /* 第二排 */ + iPos = 48; + for (i = 13; i < 26; i++) { + OutputString (cr, vks[vkstate->iCurrentVK].strSymbol[i][1], *vkWindow->font, vkWindow->fontSize, iPos, 55, vkWindow->fontColor); + OutputString (cr, vks[vkstate->iCurrentVK].strSymbol[i][0], *vkWindow->font, vkWindow->fontSize, iPos - 5, 68, vkWindow->fontColor); + iPos += 24; + } + /* 第三排 */ + iPos = 55; + for (i = 26; i < 37; i++) { + OutputString (cr, vks[vkstate->iCurrentVK].strSymbol[i][1], *vkWindow->font, vkWindow->fontSize, iPos, 83, vkWindow->fontColor); + OutputString (cr, vks[vkstate->iCurrentVK].strSymbol[i][0], *vkWindow->font, vkWindow->fontSize, iPos - 5, 96, vkWindow->fontColor); + iPos += 24; + } + + /* 第四排 */ + iPos = 72; + for (i = 37; i < 47; i++) { + OutputString (cr, vks[vkstate->iCurrentVK].strSymbol[i][1], *vkWindow->font, vkWindow->fontSize, iPos, 111, vkWindow->fontColor); + OutputString (cr, vks[vkstate->iCurrentVK].strSymbol[i][0], *vkWindow->font, vkWindow->fontSize, iPos - 5, 124, vkWindow->fontColor); + iPos += 24; + } + + cairo_destroy(cr); +} + +/* + * 处理相关鼠标键 + */ +boolean VKMouseKey (FcitxVKState* vkstate, int x, int y) +{ + int iIndex = 0; + char strKey[3] = { 0, 0, 0}; + char *pstr = NULL; + FcitxInstance* instance = vkstate->owner; + + if (IsInBox (x, y, 1, 1, VK_WINDOW_WIDTH, 16)) + ChangVK (vkstate); + else { + if (GetCurrentIC(instance) == NULL) + return false; + + strKey[1] = '\0'; + pstr = strKey; + if (y >= 28 && y <= 55) { //第一行 + if (x < 4 || x > 348) + return false; + + x -= 4; + if (x >= 313 && x <= 344) { //backspace + ForwardKey (instance, GetCurrentIC(instance), FCITX_PRESS_KEY, Key_BackSpace, 0); + return true; + } + else { + iIndex = x / 24; + if (iIndex > 12) //避免出现错误 + iIndex = 12; + pstr = vkstate->vks[vkstate->iCurrentVK].strSymbol[iIndex][vkstate->bShiftPressed ^ vkstate->bVKCaps]; + if (vkstate->bShiftPressed) { + vkstate->bShiftPressed = false; + DrawVKWindow (vkstate->vkWindow); + } + } + } + else if (y >= 56 && y <= 83) { //第二行 + if (x < 4 || x > 350) + return false; + + if (x >= 4 && x < 38) { //Tab + ForwardKey (instance, GetCurrentIC(instance), FCITX_PRESS_KEY, Key_Tab, 0); + return true; + } + else { + iIndex = 13 + (x - 38) / 24; + pstr = vkstate->vks[vkstate->iCurrentVK].strSymbol[iIndex][vkstate->bShiftPressed ^ vkstate->bVKCaps]; + if (vkstate->bShiftPressed) { + vkstate->bShiftPressed = false; + DrawVKWindow (vkstate->vkWindow); + } + } + } + else if (y >= 84 && y <= 111) { //第三行 + if (x < 4 || x > 350) + return false; + + if (x >= 4 && x < 44) { //Caps + //改变大写键状态 + vkstate->bVKCaps = !vkstate->bVKCaps; + pstr = (char *) NULL; + DrawVKWindow (vkstate->vkWindow); + } + else if (x > 308 && x <= 350) //Return + strKey[0] = '\n'; + else { + iIndex = 26 + (x - 44) / 24; + pstr = vkstate->vks[vkstate->iCurrentVK].strSymbol[iIndex][vkstate->bShiftPressed ^ vkstate->bVKCaps]; + if (vkstate->bShiftPressed) { + vkstate->bShiftPressed = false; + DrawVKWindow (vkstate->vkWindow); + } + } + } + else if (y >= 112 && y <= 139) { //第四行 + if (x < 4 || x > 302) + return false; + + if (x >= 4 && x < 62) { //SHIFT + //改变SHIFT键状态 + vkstate->bShiftPressed = !vkstate->bShiftPressed; + pstr = (char *) NULL; + DrawVKWindow (vkstate->vkWindow); + } + else { + iIndex = 37 + (x - 62) / 24; + pstr = vkstate->vks[vkstate->iCurrentVK].strSymbol[iIndex][vkstate->bShiftPressed ^ vkstate->bVKCaps]; + if (vkstate->bShiftPressed) { + vkstate->bShiftPressed = false; + DrawVKWindow (vkstate->vkWindow); + } + } + } + else if (y >= 140 && y <= 162) { //第五行 + if (x >= 4 && x < 38) { //Ins + //改变INS键状态 + ForwardKey (instance, GetCurrentIC(instance), FCITX_PRESS_KEY, Key_Insert, 0); + return true; + } + else if (x >= 61 && x < 98) { //DEL + ForwardKey (instance, GetCurrentIC(instance), FCITX_PRESS_KEY, Key_Delete, 0); + return true; + } + else if (x >= 99 && x < 270) //空格 + strcpy (strKey, " "); + else if (x >= 312 && x <= 350) { //ESC + SwitchVK (vkstate); + pstr = (char *) NULL; + } + else + return false; + } + + if (pstr) { + CommitString (instance, GetCurrentIC(instance), pstr); + instance->input.iHZInputed += (int) (utf8_strlen (pstr)); //粗略统计字数 + } + } + + return true; +} + +/* + * 读取虚拟键盘映射文件 + */ +void LoadVKMapFile ( FcitxVKState *vkstate) +{ + int i, j; + FILE *fp; + char strPath[PATH_MAX]; + char *pstr; + VKS* vks = vkstate->vks; + + for (j = 0; j < VK_MAX; j++) { + for (i = 0; i < VK_NUMBERS; i++) { + vks[j].strSymbol[i][0][0] = '\0'; + vks[j].strSymbol[i][1][0] = '\0'; + } + vks[j].strName[0] = '\0'; + } + + fp = GetXDGFileWithPrefix("data", VK_FILE, "rt", NULL); + + if (!fp) + return; + + vkstate->iVKCount = 0; + + for (;;) { + if (!fgets (strPath, PATH_MAX, fp)) + break; + pstr = strPath; + while (*pstr == ' ' || *pstr == '\t') + pstr++; + if (pstr[0] == '#') + continue; + + i = strlen (pstr) - 1; + if (pstr[i] == '\n') + pstr[i] = '\0'; + if (!strlen (pstr)) + continue; + + if (!strcmp (pstr, "[VK]")) + vkstate->iVKCount++; + else if (!strncmp (pstr, "NAME=", 5)) + strcpy (vks[vkstate->iVKCount - 1].strName, pstr + 5); + else { + if (pstr[1] != '=' && !vkstate->iVKCount) + continue; + + for (i = 0; i < VK_NUMBERS; i++) { + if (vkTable[i] == tolower (pstr[0])) { + pstr += 2; + while (*pstr == ' ' || *pstr == '\t') + pstr++; + + if (!(*pstr)) + break; + + j = 0; + while (*pstr && (*pstr != ' ' && *pstr != '\t')) + vks[vkstate->iVKCount - 1].strSymbol[i][0][j++] = *pstr++; + vks[vkstate->iVKCount - 1].strSymbol[i][0][j] = '\0'; + + j = 0; + while (*pstr == ' ' || *pstr == '\t') + pstr++; + if (*pstr) { + while (*pstr && (*pstr != ' ' && *pstr != '\t')) + vks[vkstate->iVKCount - 1].strSymbol[i][1][j++] = *pstr++; + vks[vkstate->iVKCount - 1].strSymbol[i][1][j] = '\0'; + } + + break; + } + } + } + } + + fclose (fp); +} + +/* + * 根据字符查找符号 + */ +char *VKGetSymbol (FcitxVKState *vkstate, char cChar) +{ + int i; + + for (i = 0; i < VK_NUMBERS; i++) { + if (MyToUpper (vkTable[i]) == cChar) + return vkstate->vks[vkstate->iCurrentVK].strSymbol[i][1]; + if (MyToLower (vkTable[i]) == cChar) + return vkstate->vks[vkstate->iCurrentVK].strSymbol[i][0]; + } + + return NULL; +} + +/* + * 上/下档键字符转换,以取代toupper和tolower + */ +int MyToUpper (int iChar) +{ + const char *pstr; + + pstr = strCharTable; + while (*pstr) { + if (*pstr == iChar) + return *(pstr + 1); + pstr += 2; + } + + return toupper (iChar); +} + +int MyToLower (int iChar) +{ + const char *pstr; + + pstr = strCharTable + 1; + for (;;) { + if (*pstr == iChar) + return *(pstr - 1); + if (!(*(pstr + 1))) + break; + pstr += 2; + } + + return tolower (iChar); +} + +void ChangVK (FcitxVKState* vkstate) +{ + vkstate->iCurrentVK++; + if (vkstate->iCurrentVK == vkstate->iVKCount) + vkstate->iCurrentVK = 0; + + vkstate->bVKCaps = false; + vkstate->bShiftPressed = false; + + DrawVKWindow (vkstate->vkWindow); +} + +INPUT_RETURN_VALUE DoVKInput (FcitxVKState* vkstate, KeySym sym, int state) +{ + char *pstr = NULL; + FcitxInputState *input = &vkstate->owner->input; + + if (IsHotKeySimple(sym, state)) + pstr = VKGetSymbol (vkstate, sym); + if (!pstr) + return IRV_TO_PROCESS; + else { + strcpy (GetOutputString(input), pstr); + return IRV_COMMIT_STRING; + } +} + +void SwitchVK (FcitxVKState *vkstate) +{ + FcitxInstance* instance = vkstate->owner; + if (vkstate->vkWindow == NULL) + vkstate->vkWindow = CreateVKWindow(vkstate); + VKWindow *vkWindow = vkstate->vkWindow; + if (!vkstate->iVKCount) + return; + + vkstate->bVK = !vkstate->bVK; + + if (vkstate->bVK) { + int x, y; + int dwidth, dheight; + FcitxModuleFunctionArg arg; + arg.args[0] = &dwidth; + arg.args[1] = &dheight; + InvokeFunction(vkstate->owner, FCITX_X11, GETSCREENSIZE, arg); + + if (!UISupportMainWindow(instance)) + { + x = dwidth / 2 - VK_WINDOW_WIDTH / 2; + y = 0; + } + else + { + int mx = 0, my = 0, mw = 0, mh = 0; + GetMainWindowSize(instance, &mx, &my, &mw, &mh); + x = mx; + y = my + mh + 2; + if ((y + VK_WINDOW_HEIGHT) >= dheight) + y = my - VK_WINDOW_HEIGHT - 2; + if (y < 0) + y = 0; + } + if ((x + VK_WINDOW_WIDTH) >= dwidth) + x = dwidth - VK_WINDOW_WIDTH - 1; + if (x < 0) + x = 0; + + + XMoveWindow (vkWindow->dpy, vkWindow->window, x, y); + DisplayVKWindow (vkWindow); + CloseInputWindow(vkstate->owner); + + FcitxInputContext* ic = GetCurrentIC(vkstate->owner); + + if (ic && ic->state == IS_CLOSED) + EnableIM (instance, ic, true); + } + else + XUnmapWindow (vkWindow->dpy, vkWindow->window); + + + +} + +/* +*选择指定index的虚拟键盘 +*/ +void SelectVK(FcitxVKState* vkstate, int vkidx) +{ + vkstate->bVK = false; + vkstate->iCurrentVK=vkidx; + UpdateStatus(vkstate->owner, "vk"); + if (vkstate->vkWindow) + DrawVKWindow(vkstate->vkWindow); +} + +void +VKInitWindowAttribute(FcitxVKState* vkstate, Visual ** vs, Colormap * cmap, + XSetWindowAttributes * attrib, + unsigned long *attribmask, int *depth) +{ + FcitxModuleFunctionArg arg; + arg.args[0] = vs; + arg.args[1] = cmap; + arg.args[2] = attrib; + arg.args[3] = attribmask; + arg.args[4] = depth; + InvokeFunction(vkstate->owner, FCITX_X11, INITWINDOWATTR, arg); +} + +Visual * VKFindARGBVisual (FcitxVKState* vkstate) +{ + FcitxModuleFunctionArg arg; + return InvokeFunction(vkstate->owner, FCITX_X11, FINDARGBVISUAL, arg); +} + +void VKSetWindowProperty(FcitxVKState* vkstate, Window window, FcitxXWindowType type, char *windowTitle) +{ + FcitxModuleFunctionArg arg; + arg.args[0] = &window; + arg.args[1] = &type; + arg.args[2] = windowTitle; + InvokeFunction(vkstate->owner, FCITX_X11, SETWINDOWPROP, arg); +} + +boolean +VKMouseClick(FcitxVKState* vkstate, Window window, int *x, int *y) +{ + boolean bMoved = false; + FcitxModuleFunctionArg arg; + arg.args[0] = &window; + arg.args[1] = x; + arg.args[2] = y; + arg.args[3] = &bMoved; + InvokeFunction(vkstate->owner, FCITX_X11, MOUSECLICK, arg); + + return bMoved; +} + +void ReloadVK(void* arg) +{ + FcitxVKState* vkstate = (FcitxVKState*)arg; + LoadVKMapFile(vkstate); +} + + +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/module/x11/CMakeLists.txt fcitx-4.1.1/src/module/x11/CMakeLists.txt --- fcitx-4.0.1/src/module/x11/CMakeLists.txt 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/module/x11/CMakeLists.txt 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,12 @@ +include_directories(${PROJECT_SOURCE_DIR}/src) +include_directories(${X11_X11_INCLUDE_PATH}) + +set(FCITX_X11_SOURCES + xerrorhandler.c + x11stuff.c +) + +fcitx_add_addon(fcitx-x11 ${FCITX_X11_SOURCES}) +target_link_libraries( fcitx-x11 ${X11_LIBRARIES} ${X11_Xrender_LIB}) +fcitx_add_addon_header(x11 x11stuff.h) +fcitx_add_addon_conf_file(fcitx-x11.conf) \ No newline at end of file diff -Nru fcitx-4.0.1/src/module/x11/fcitx-x11.conf.in fcitx-4.1.1/src/module/x11/fcitx-x11.conf.in --- fcitx-4.0.1/src/module/x11/fcitx-x11.conf.in 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/module/x11/fcitx-x11.conf.in 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,8 @@ +[Addon] +Name=fcitx-x11 +_GeneralName=X11 Support +_Comment=X11 Utilitiy used by other Addon +Category=Module +Enabled=True +Library=fcitx-x11.so +Type=SharedLibrary \ No newline at end of file diff -Nru fcitx-4.0.1/src/module/x11/x11stuff.c fcitx-4.1.1/src/module/x11/x11stuff.c --- fcitx-4.0.1/src/module/x11/x11stuff.c 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/module/x11/x11stuff.c 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,410 @@ +/*************************************************************************** + * Copyright (C) 2002~2005 by Yuking * + * yuking_net@sohu.com * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +#include "fcitx/fcitx.h" +#include "fcitx/module.h" +#include "x11stuff.h" +#include "fcitx-utils/utils.h" +#include "fcitx/instance.h" +#include +#include +#include +#include "xerrorhandler.h" + +static void* X11Create(FcitxInstance* instance); +static void X11SetFD(void* arg); +static void X11ProcessEvent(void *arg); +static void* X11GetDisplay(void* x11priv, FcitxModuleFunctionArg arg); +static void* X11AddEventHandler(void* x11priv, FcitxModuleFunctionArg arg); +static void* X11RemoveEventHandler(void* x11priv, FcitxModuleFunctionArg arg); +static void* X11FindARGBVisual(void* arg, FcitxModuleFunctionArg args); +static void* X11InitWindowAttribute(void* arg, FcitxModuleFunctionArg args); +static void* X11SetWindowProperty(void* arg, FcitxModuleFunctionArg args); +static void* X11GetScreenSize(void *arg, FcitxModuleFunctionArg args); +static void* X11MouseClick(void *arg, FcitxModuleFunctionArg args); +static void* X11AddCompositeHandler(void* arg, FcitxModuleFunctionArg args); +static void InitComposite(FcitxX11* x11stuff); +static void X11HandlerComposite(FcitxX11* x11priv, boolean enable); +static boolean X11GetCompositeManager(FcitxX11* x11stuff); + +const UT_icd handler_icd = {sizeof(FcitxXEventHandler), 0, 0, 0}; +const UT_icd comphandler_icd = {sizeof(FcitxCompositeChangedHandler), 0, 0, 0}; + +FCITX_EXPORT_API +FcitxModule module = { + X11Create, + X11SetFD, + X11ProcessEvent, + NULL, + NULL +}; + +void* X11Create(FcitxInstance* instance) +{ + FcitxX11* x11priv = fcitx_malloc0(sizeof(FcitxX11)); + FcitxAddon* x11addon = GetAddonByName(&instance->addons, FCITX_X11_NAME); + x11priv->dpy = XOpenDisplay(NULL); + if (x11priv->dpy == NULL) + return false; + + x11priv->owner = instance; + x11priv->iScreen = DefaultScreen(x11priv->dpy); + x11priv->windowTypeAtom = XInternAtom (x11priv->dpy, "_NET_WM_WINDOW_TYPE", False); + x11priv->typeMenuAtom = XInternAtom (x11priv->dpy, "_NET_WM_WINDOW_TYPE_MENU", False); + x11priv->typeDialogAtom = XInternAtom (x11priv->dpy, "_NET_WM_WINDOW_TYPE_DIALOG", False); + x11priv->typeDockAtom = XInternAtom (x11priv->dpy, "_NET_WM_WINDOW_TYPE_DOCK", False); + x11priv->pidAtom = XInternAtom(x11priv->dpy, "_NET_WM_PID", False); + + utarray_init(&x11priv->handlers, &handler_icd); + utarray_init(&x11priv->comphandlers, &comphandler_icd); + + /* ensure the order ! */ + AddFunction(x11addon, X11GetDisplay); + AddFunction(x11addon, X11AddEventHandler); + AddFunction(x11addon, X11RemoveEventHandler); + AddFunction(x11addon, X11FindARGBVisual); + AddFunction(x11addon, X11InitWindowAttribute); + AddFunction(x11addon, X11SetWindowProperty); + AddFunction(x11addon, X11GetScreenSize); + AddFunction(x11addon, X11MouseClick); + AddFunction(x11addon, X11AddCompositeHandler); + InitComposite(x11priv); + + InitXErrorHandler (x11priv); + return x11priv; +} + +void X11SetFD(void* arg) +{ + FcitxX11* x11priv = (FcitxX11*)arg; + int fd = ConnectionNumber(x11priv->dpy); + FD_SET(fd, &x11priv->owner->rfds); + + if (x11priv->owner->maxfd < fd) + x11priv->owner->maxfd = fd; +} + + +void X11ProcessEvent(void* arg) +{ + FcitxX11* x11priv = (FcitxX11*)arg; + XEvent event; + while (XPending(x11priv->dpy)) + { + XNextEvent (x11priv->dpy, &event); //等待一个事件发生 + + FcitxLock(x11priv->owner); + /* 处理X事件 */ + if (XFilterEvent (&event, None) == False) + { + if (event.type == DestroyNotify) + { + if (event.xany.window == x11priv->compManager) + X11HandlerComposite(x11priv, false); + } + else if (event.type == ClientMessage) { + if (event.xclient.data.l[1] == x11priv->compManagerAtom) + { + if (X11GetCompositeManager(x11priv)) + X11HandlerComposite(x11priv, true); + } + } + + + FcitxXEventHandler* handler; + for ( handler = (FcitxXEventHandler *) utarray_front(&x11priv->handlers); + handler != NULL; + handler = (FcitxXEventHandler *) utarray_next(&x11priv->handlers, handler)) + if (handler->eventHandler (handler->instance, &event)) + break; + } + FcitxUnlock(x11priv->owner); + } +} + +void* X11GetDisplay(void* arg, FcitxModuleFunctionArg args) +{ + FcitxX11* x11priv = (FcitxX11*)arg; + return x11priv->dpy; +} + +void* X11AddEventHandler(void* arg, FcitxModuleFunctionArg args) +{ + FcitxX11* x11priv = (FcitxX11*)arg; + FcitxXEventHandler handler; + handler.eventHandler = args.args[0]; + handler.instance = args.args[1]; + utarray_push_back(&x11priv->handlers, &handler); + return NULL; +} + +void* X11AddCompositeHandler(void* arg, FcitxModuleFunctionArg args) +{ + FcitxX11* x11priv = (FcitxX11*)arg; + FcitxCompositeChangedHandler handler; + handler.eventHandler = args.args[0]; + handler.instance = args.args[1]; + utarray_push_back(&x11priv->comphandlers, &handler); + return NULL; +} + +void* X11RemoveEventHandler(void* arg, FcitxModuleFunctionArg args) +{ + FcitxX11* x11priv = (FcitxX11*)arg; + FcitxXEventHandler* handler; + int i = 0; + for ( i = 0 ; + i < utarray_len(&x11priv->handlers); + i ++) + { + handler = (FcitxXEventHandler*) utarray_eltptr(&x11priv->handlers, i); + if (handler->instance == args.args[0]) + break; + } + utarray_erase(&x11priv->handlers, i, 1); + return NULL; +} + +void InitComposite(FcitxX11* x11stuff) +{ + char *atom_names = NULL; + asprintf(&atom_names, "_NET_WM_CM_S%d", x11stuff->iScreen); + x11stuff->compManagerAtom = XInternAtom (x11stuff->dpy, atom_names, False); + + free(atom_names); + X11GetCompositeManager(x11stuff); +} + +void* +X11FindARGBVisual(void* arg, FcitxModuleFunctionArg args) +{ + FcitxX11* x11stuff = (FcitxX11*)arg; + XVisualInfo *xvi; + XVisualInfo temp; + int nvi; + int i; + XRenderPictFormat *format; + Visual *visual; + Display* dpy = x11stuff->dpy; + int scr = x11stuff->iScreen; + + if (x11stuff->compManager == None) + return NULL; + + temp.screen = scr; + temp.depth = 32; + temp.class = TrueColor; + xvi = XGetVisualInfo (dpy, VisualScreenMask |VisualDepthMask |VisualClassMask,&temp,&nvi); + if (!xvi) + return 0; + visual = 0; + for (i = 0; i < nvi; i++) + { + format = XRenderFindVisualFormat (dpy, xvi[i].visual); + if (format->type == PictTypeDirect && format->direct.alphaMask) + { + visual = xvi[i].visual; + break; + } + } + + XFree (xvi); + return visual; +} + +void * +X11InitWindowAttribute(void* arg, FcitxModuleFunctionArg args) +{ + FcitxX11* x11priv = (FcitxX11*)arg; + Visual ** vs = args.args[0]; + Colormap * cmap = args.args[1]; + XSetWindowAttributes * attrib = args.args[2]; + unsigned long *attribmask = args.args[3]; + int *depth = args.args[4]; + Display* dpy = x11priv->dpy; + int iScreen = x11priv->iScreen; + attrib->bit_gravity = NorthWestGravity; + attrib->backing_store = WhenMapped; + attrib->save_under = True; + if (*vs) { + *cmap = + XCreateColormap(dpy, RootWindow(dpy, iScreen), *vs, AllocNone); + + attrib->override_redirect = True; // False; + attrib->background_pixel = 0; + attrib->border_pixel = 0; + attrib->colormap = *cmap; + *attribmask = + (CWBackPixel | CWBorderPixel | CWOverrideRedirect | CWSaveUnder | + CWColormap | CWBitGravity | CWBackingStore); + *depth = 32; + } else { + *cmap = DefaultColormap(dpy, iScreen); + *vs = DefaultVisual(dpy, iScreen); + attrib->override_redirect = True; // False; + attrib->background_pixel = 0; + attrib->border_pixel = 0; + *attribmask = (CWBackPixel | CWBorderPixel | CWOverrideRedirect | CWSaveUnder + | CWBitGravity | CWBackingStore); + *depth = DefaultDepth(dpy, iScreen); + } + return NULL; +} + +void* X11SetWindowProperty(void* arg, FcitxModuleFunctionArg args) +{ + FcitxX11* x11priv = (FcitxX11*)arg; + Atom* wintype = NULL; + + Window window = *(Window*) args.args[0]; + FcitxXWindowType *type = args.args[1]; + char *windowTitle = args.args[2]; + + switch (*type) + { + case FCITX_WINDOW_DIALOG: + wintype = &x11priv->typeDialogAtom; + break; + case FCITX_WINDOW_DOCK: + wintype = &x11priv->typeDockAtom; + break; + case FCITX_WINDOW_MENU: + wintype = &x11priv->typeMenuAtom; + break; + default: + wintype = NULL; + break; + } + if (wintype) + XChangeProperty (x11priv->dpy, window, x11priv->windowTypeAtom, XA_ATOM, 32, PropModeReplace, (void *) wintype, 1); + + pid_t pid = getpid(); + XChangeProperty(x11priv->dpy, window, x11priv->pidAtom, XA_CARDINAL, 32, + PropModeReplace, (unsigned char *)&pid, 1); + XChangeProperty( x11priv->dpy, window, XA_WM_CLASS, XA_STRING, 8, PropModeReplace, (const unsigned char*) "Fcitx", strlen("Fcitx") + 1); + + if (windowTitle) + { + XTextProperty tp; + Xutf8TextListToTextProperty(x11priv->dpy, &windowTitle, 1, XUTF8StringStyle, &tp); + XSetWMName (x11priv->dpy, window, &tp); + XFree(tp.value); + } + + return NULL; +} + +void* X11GetScreenSize(void* arg, FcitxModuleFunctionArg args) +{ + FcitxX11* x11priv = (FcitxX11*)arg; + int* width = args.args[0]; + int* height = args.args[1]; + XWindowAttributes attrs; + if (XGetWindowAttributes(x11priv->dpy, RootWindow(x11priv->dpy, x11priv->iScreen), &attrs) < 0) { + printf("ERROR\n"); + } + if (width != NULL) + (*width) = attrs.width; + if (height != NULL) + (*height) = attrs.height; + + return NULL; +} + +void* +X11MouseClick(void *arg, FcitxModuleFunctionArg args) +{ + FcitxX11* x11priv = (FcitxX11*)arg; + Window window = *(Window*) args.args[0]; + int *x = args.args[1]; + int *y = args.args[2]; + XEvent evtGrabbed; + boolean *bMoved = args.args[3]; + + // To motion the window + while (1) { + XMaskEvent(x11priv->dpy, + PointerMotionMask | ButtonReleaseMask | ButtonPressMask, + &evtGrabbed); + if (ButtonRelease == evtGrabbed.xany.type) { + if (Button1 == evtGrabbed.xbutton.button) + break; + } else if (MotionNotify == evtGrabbed.xany.type) { + static Time LastTime; + + if (evtGrabbed.xmotion.time - LastTime < 20) + continue; + + XMoveWindow(x11priv->dpy, window, evtGrabbed.xmotion.x_root - *x, + evtGrabbed.xmotion.y_root - *y); + XRaiseWindow(x11priv->dpy, window); + + *bMoved = true; + LastTime = evtGrabbed.xmotion.time; + } + } + + *x = evtGrabbed.xmotion.x_root - *x; + *y = evtGrabbed.xmotion.y_root - *y; + + return NULL; +} + +void X11HandlerComposite(FcitxX11* x11priv, boolean enable) +{ + + if (enable) + { + x11priv->compManager = XGetSelectionOwner(x11priv->dpy, x11priv->compManagerAtom); + + if (x11priv->compManager) + { + XSetWindowAttributes attrs; + attrs.event_mask = StructureNotifyMask; + XChangeWindowAttributes (x11priv->dpy, x11priv->compManager, CWEventMask, &attrs); + } + } + else { + x11priv->compManager = None; + } + + FcitxCompositeChangedHandler* handler; + for ( handler = (FcitxCompositeChangedHandler *) utarray_front(&x11priv->comphandlers); + handler != NULL; + handler = (FcitxCompositeChangedHandler *) utarray_next(&x11priv->comphandlers, handler)) + handler->eventHandler (handler->instance, enable); +} + +boolean X11GetCompositeManager(FcitxX11* x11stuff) +{ + x11stuff->compManager = XGetSelectionOwner(x11stuff->dpy, x11stuff->compManagerAtom); + + if (x11stuff->compManager) + { + XSetWindowAttributes attrs; + attrs.event_mask = StructureNotifyMask; + XChangeWindowAttributes (x11stuff->dpy, x11stuff->compManager, CWEventMask, &attrs); + return true; + } + else + return false; +} + +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/module/x11/x11stuff.h fcitx-4.1.1/src/module/x11/x11stuff.h --- fcitx-4.0.1/src/module/x11/x11stuff.h 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/module/x11/x11stuff.h 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,82 @@ +/*************************************************************************** + * Copyright (C) 2010~2011 by CSSlayer * + * wengxt@gmail.com * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +#ifndef X11STUFF_H +#define X11STUFF_H +#include +#include +#include + +#define FCITX_X11_NAME "fcitx-x11" +#define FCITX_X11_GETDISPLAY 0 +#define FCITX_X11_GETDISPLAY_RETURNTYPE Display* +#define FCITX_X11_ADDXEVENTHANDLER 1 +#define FCITX_X11_ADDXEVENTHANDLER_RETURNTYPE void +#define FCITX_X11_REMOVEXEVENTHANDLER 2 +#define FCITX_X11_REMOVEXEVENTHANDLER_RETURNTYPE void +#define FCITX_X11_FINDARGBVISUAL 3 +#define FCITX_X11_FINDARGBVISUAL_RETURNTYPE Visual* +#define FCITX_X11_INITWINDOWATTR 4 +#define FCITX_X11_INITWINDOWATTR_RETURNTYPE void +#define FCITX_X11_SETWINDOWPROP 5 +#define FCITX_X11_SETWINDOWPROP_RETURNTYPE void +#define FCITX_X11_GETSCREENSIZE 6 +#define FCITX_X11_GETSCREENSIZE_RETURNTYPE void +#define FCITX_X11_MOUSECLICK 7 +#define FCITX_X11_MOUSECLICK_RETURNTYPE void +#define FCITX_X11_ADDCOMPOSITEHANDLER 8 +#define FCITX_X11_ADDCOMPOSITEHANDLER_RETURNTYPE void + +struct _FcitxInstance; + +typedef struct _FcitxXEventHandler { + boolean (*eventHandler)(void* instance, XEvent* event); + void* instance; +} FcitxXEventHandler; + +typedef struct _FcitxCompositeChangedHandler { + void (*eventHandler)(void* instance, boolean enable); + void *instance; +} FcitxCompositeChangedHandler; + +typedef struct _FcitxX11 { + Display *dpy; + UT_array handlers; + UT_array comphandlers; + struct _FcitxInstance* owner; + Window compManager; + Atom compManagerAtom; + int iScreen; + Atom typeMenuAtom; + Atom windowTypeAtom; + Atom typeDialogAtom; + Atom typeDockAtom; + Atom pidAtom; +} FcitxX11; + +typedef enum _FcitxXWindowType { + FCITX_WINDOW_UNKNOWN, + FCITX_WINDOW_DOCK, + FCITX_WINDOW_MENU, + FCITX_WINDOW_DIALOG +} FcitxXWindowType; + +#endif +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/module/x11/xerrorhandler.c fcitx-4.1.1/src/module/x11/xerrorhandler.c --- fcitx-4.0.1/src/module/x11/xerrorhandler.c 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/module/x11/xerrorhandler.c 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,74 @@ +/*************************************************************************** + * Copyright (C) 2002~2005 by Yuking * + * yuking_net@sohu.com * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +#include +#include "fcitx-config/xdg.h" +#include "fcitx/ime.h" +#include "x11stuff.h" + +static XErrorHandler oldXErrorHandler; +static XIOErrorHandler oldXIOErrorHandler; +static FcitxX11* x11handle; + +static int FcitxXErrorHandler (Display * dpy, XErrorEvent * event); +static int FcitxXIOErrorHandler (Display *d); + +void InitXErrorHandler (FcitxX11* x11priv) +{ + x11handle = x11priv; + oldXErrorHandler = XSetErrorHandler (FcitxXErrorHandler); + oldXIOErrorHandler = XSetIOErrorHandler (FcitxXIOErrorHandler); +} + +int FcitxXIOErrorHandler (Display *d) +{ + /* Do not log, because this is likely to happen while log out */ + SaveAllIM(x11handle->owner); + + if (oldXIOErrorHandler) + oldXIOErrorHandler(d); + return 0; + +} + +int FcitxXErrorHandler (Display * dpy, XErrorEvent * event) +{ + char str[256]; + FILE* fp = NULL; + + fp = GetXDGFileUserWithPrefix("log", "crash.log","wt" , NULL); + if ( fp ) { + XGetErrorText (dpy, event->error_code, str, 255); + fprintf (fp, "fcitx: %s\n", str); + } + + SaveAllIM(x11handle->owner); + + if ( fp ) + fclose(fp); + if (event->error_code != 3 && event->error_code != BadMatch) { // xterm will generate 3 + if (oldXErrorHandler) + oldXErrorHandler (dpy, event); + } + + return 0; +} + +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/module/x11/xerrorhandler.h fcitx-4.1.1/src/module/x11/xerrorhandler.h --- fcitx-4.0.1/src/module/x11/xerrorhandler.h 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/module/x11/xerrorhandler.h 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,28 @@ +/*************************************************************************** + * Copyright (C) 2002~2005 by Yuking * + * yuking_net@sohu.com * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +#ifndef XERRORHANDLER_H +#define XERRORHANDLER_H + +struct _FcitxX11; +void InitXErrorHandler (struct _FcitxX11*); + +#endif +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/tools/configfile.c fcitx-4.1.1/src/tools/configfile.c --- fcitx-4.0.1/src/tools/configfile.c 2010-12-17 04:20:29.000000000 +0000 +++ fcitx-4.1.1/src/tools/configfile.c 1970-01-01 00:00:00.000000000 +0000 @@ -1,425 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2010~2010 by CSSlayer * - * wengxt@gmail.com * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * - ***************************************************************************/ - -#include "core/fcitx.h" -#include "tools/tools.h" -#include "tools/configfile.h" -#include "fcitx-config/fcitx-config.h" -#include "fcitx-config/cutils.h" -#include "fcitx-config/xdg.h" -#include "im/pinyin/PYFA.h" -#include "ui/font.h" -#include "core/ime.h" -#include -#include - -extern MHPY MHPY_C[]; -extern MHPY MHPY_S[]; -extern Display* dpy; -extern int iTriggerKeyCount; -extern XIMTriggerKey* Trigger_Keys; - -static Bool IsReloadConfig = False; - -FcitxConfig fc; -ConfigFileDesc* fcitxConfigDesc = NULL; -static ConfigFileDesc* GetConfigDesc(); -static void FilterAnAng(ConfigGroup *group, ConfigOption *option, void* value, ConfigSync sync, void* arg); -static void FilterSwitchKey(ConfigGroup *group, ConfigOption *option, void* value, ConfigSync sync, void* arg); -static void FilterTriggerKey(ConfigGroup *group, ConfigOption *option, void* value, ConfigSync sync, void* arg); -static void FilterCopyFont(ConfigGroup *group, ConfigOption *option, void* value, ConfigSync sync, void* arg); -static void FilterCopyMenuFont(ConfigGroup *group, ConfigOption *option, void* value, ConfigSync sync, void* arg); -static void Filter2nd3rdKey(ConfigGroup *group, ConfigOption *option, void* value, ConfigSync sync, void* arg); -static void SetTriggerKeys (char **str, int length); -static Bool MyStrcmp (char *str1, char *str2); -static void FilterGetWordFromPhrase(ConfigGroup *group, ConfigOption *option, void* value, ConfigSync sync, void* arg); - -#ifdef _ENABLE_TRAY -FilterNextTimeEffectBool(UseTray, fc.bUseTrayIcon) -#endif -FilterNextTimeEffectBool(UseDBus, fc.bUseDBus) - -CONFIG_BINDING_BEGIN(FcitxConfig); -CONFIG_BINDING_REGISTER_WITH_FILTER("Program", "Font", font, FilterCopyFont); -CONFIG_BINDING_REGISTER_WITH_FILTER("Program", "MenuFont", menuFont, FilterCopyMenuFont); -#ifndef _ENABLE_PANGO -CONFIG_BINDING_REGISTER("Program", "FontLocale", strUserLocale); -#endif -#ifdef _ENABLE_RECORDING -CONFIG_BINDING_REGISTER("Program", "RecordFile", strRecordingPath); -#endif -#ifdef _ENABLE_TRAY -CONFIG_BINDING_REGISTER_WITH_FILTER("Program", "UseTray", bUseTrayIcon_, FilterCopyUseTray); -#endif -#ifdef _ENABLE_DBUS -CONFIG_BINDING_REGISTER_WITH_FILTER("Program", "UseDBus", bUseDBus_, FilterCopyUseDBus); -#endif -CONFIG_BINDING_REGISTER("Program", "EnableAddons", bEnableAddons); -CONFIG_BINDING_REGISTER("Program", "DelayStart", iDelayStart); -CONFIG_BINDING_REGISTER("Output", "HalfPuncAfterNumber", bEngPuncAfterNumber); -CONFIG_BINDING_REGISTER("Output", "EnterAction", enterToDo); -CONFIG_BINDING_REGISTER("Output", "SemiColonAction", semicolonToDo); -CONFIG_BINDING_REGISTER("Output", "InputEngByCapitalChar", bEngAfterCap); -CONFIG_BINDING_REGISTER("Output", "ConvertPunc", bConvertPunc); -CONFIG_BINDING_REGISTER("Output", "LegendModeDisablePaging", bDisablePagingInLegend); -CONFIG_BINDING_REGISTER("Output", "SendTextWhenSwitchEng", bSendTextWhenSwitchEng); -CONFIG_BINDING_REGISTER("Appearance", "CandidateWordNumber", iMaxCandWord); -CONFIG_BINDING_REGISTER("Appearance", "MainWindowHideMode", hideMainWindow); -CONFIG_BINDING_REGISTER("Appearance", "CenterInputWindow", bCenterInputWindow); -CONFIG_BINDING_REGISTER("Appearance", "ShowInputWindowAfterTriggering", bShowInputWindowTriggering); -CONFIG_BINDING_REGISTER("Appearance", "ShowPointAfterIndex", bPointAfterNumber); -CONFIG_BINDING_REGISTER("Appearance", "ShowInputSpeed", bShowUserSpeed); -CONFIG_BINDING_REGISTER("Appearance", "ShowVersion", bShowVersion); -CONFIG_BINDING_REGISTER("Appearance", "ShowHintWindow", bHintWindow); -CONFIG_BINDING_REGISTER("Appearance", "SkinType", skinType); -CONFIG_BINDING_REGISTER_WITH_FILTER("Hotkey", "TriggerKey", hkTrigger, FilterTriggerKey); -CONFIG_BINDING_REGISTER_WITH_FILTER("Hotkey", "ChnEngSwitchKey", iSwitchKey, FilterSwitchKey); -CONFIG_BINDING_REGISTER("Hotkey", "DoubleSwitchKey", bDoubleSwitchKey); -CONFIG_BINDING_REGISTER("Hotkey", "TimeInterval", iTimeInterval); -CONFIG_BINDING_REGISTER("Hotkey", "FollowCursorKey", hkTrack); -CONFIG_BINDING_REGISTER("Hotkey", "HideMainWindowKey", hkHideMainWindow); -CONFIG_BINDING_REGISTER("Hotkey", "VKSwitchKey", hkVK); -CONFIG_BINDING_REGISTER("Hotkey", "TraditionalChnSwitchKey", hkGBT); -CONFIG_BINDING_REGISTER("Hotkey", "LegendSwitchKey", hkLegend); -CONFIG_BINDING_REGISTER("Hotkey", "LookupPinyinKey", hkGetPY); -CONFIG_BINDING_REGISTER("Hotkey", "FullWidthSwitchKey", hkCorner); -CONFIG_BINDING_REGISTER("Hotkey", "ChnPuncSwitchKey", hkPunc); -CONFIG_BINDING_REGISTER("Hotkey", "PrevPageKey", hkPrevPage); -CONFIG_BINDING_REGISTER("Hotkey", "NextPageKey", hkNextPage); -CONFIG_BINDING_REGISTER_WITH_FILTER("Hotkey", "SecondThirdCandWordKey", str2nd3rdCand, Filter2nd3rdKey); -CONFIG_BINDING_REGISTER("Hotkey", "SaveAllKey", hkSaveAll); -#ifdef _ENABLE_RECORDING -CONFIG_BINDING_REGISTER("Hotkey", "SetRecordingKey", hkRecording); -CONFIG_BINDING_REGISTER("Hotkey", "ResetRecordingKey", hkResetRecording); -#endif -CONFIG_BINDING_REGISTER("InputMethod", "PinyinOrder", inputMethods[IM_PY]); -CONFIG_BINDING_REGISTER("InputMethod", "ShuangpinOrder", inputMethods[IM_SP]); -CONFIG_BINDING_REGISTER("InputMethod", "DefaultShuangpinSchema", strDefaultSP); -CONFIG_BINDING_REGISTER("InputMethod", "QuweiOrder", inputMethods[IM_QW]); -CONFIG_BINDING_REGISTER("InputMethod", "TableOrder", inputMethods[IM_TABLE]); -CONFIG_BINDING_REGISTER("InputMethod", "PhraseTips", bPhraseTips); -CONFIG_BINDING_REGISTER("Pinyin", "UseCompletePinyin", bFullPY); -CONFIG_BINDING_REGISTER("Pinyin", "AutoCreatePhrase", bPYCreateAuto); -CONFIG_BINDING_REGISTER("Pinyin", "SaveAutoPhrase", bPYSaveAutoAsPhrase); -CONFIG_BINDING_REGISTER("Pinyin", "AddFreqWordKey", hkPYAddFreq); -CONFIG_BINDING_REGISTER("Pinyin", "DeleteFreqWordKey", hkPYDelFreq); -CONFIG_BINDING_REGISTER("Pinyin", "DeleteUserPhraseKey", hkPYDelUserPhr); -CONFIG_BINDING_REGISTER_WITH_FILTER("Pinyin", "InputWordFromPhraseKey", strPYGetWordFromPhrase, FilterGetWordFromPhrase); -CONFIG_BINDING_REGISTER("Pinyin", "BaseOrder", baseOrder); -CONFIG_BINDING_REGISTER("Pinyin", "PhraseOrder", phraseOrder); -CONFIG_BINDING_REGISTER("Pinyin", "FreqOrder", freqOrder); -CONFIG_BINDING_REGISTER_WITH_FILTER("Pinyin", "FuzzyAnAng", MHPY_C[0].bMode, FilterAnAng); -CONFIG_BINDING_REGISTER("Pinyin", "FuzzyEnEng", MHPY_C[1].bMode); -CONFIG_BINDING_REGISTER("Pinyin", "FuzzyIanIang", MHPY_C[2].bMode); -CONFIG_BINDING_REGISTER("Pinyin", "FuzzyInIng", MHPY_C[3].bMode); -CONFIG_BINDING_REGISTER("Pinyin", "FuzzyOuU", MHPY_C[4].bMode); -CONFIG_BINDING_REGISTER("Pinyin", "FuzzyUanUang", MHPY_C[5].bMode); -CONFIG_BINDING_REGISTER("Pinyin", "FuzzyCCh", MHPY_S[0].bMode); -CONFIG_BINDING_REGISTER("Pinyin", "FuzzyFH", MHPY_S[1].bMode); -CONFIG_BINDING_REGISTER("Pinyin", "FuzzyLN", MHPY_S[2].bMode); -CONFIG_BINDING_REGISTER("Pinyin", "FuzzySSH", MHPY_S[3].bMode); -CONFIG_BINDING_REGISTER("Pinyin", "FuzzyZZH", MHPY_S[4].bMode); -CONFIG_BINDING_REGISTER("Pinyin", "Misstype", bMisstype); -CONFIG_BINDING_END() - -Bool MyStrcmp (char *str1, char *str2) -{ - return !strncmp (str1, str2, strlen (str2)); -} - -void FilterCopyFont(ConfigGroup *group, ConfigOption *option, void* value, ConfigSync sync, void* arg) -{ - char *pstr = *(char **)value; - if (sync == Raw2Value) - { - if (gs.font) - free(gs.font); - gs.font = strdup(pstr); - } -} - -void FilterCopyMenuFont(ConfigGroup *group, ConfigOption *option, void* value, ConfigSync sync, void* arg) -{ - char *pstr = *(char **)value; - if (sync == Raw2Value) - { - if (gs.menuFont) - free(gs.menuFont); - gs.menuFont = strdup(pstr); - } -} - -void FilterGetWordFromPhrase(ConfigGroup *group, ConfigOption *option, void* value, ConfigSync sync, void* arg) -{ - char *pstr = *(char**) value; - if(sync == Raw2Value){ - char a = '\0'; - char b = '\0'; - if (strlen(pstr) >= 1) - a = pstr[0]; - if (strlen(pstr) >= 2) - b = pstr[1]; - fc.cPYYCDZ[0] = a; - fc.cPYYCDZ[1] = b; - } -} - -void Filter2nd3rdKey(ConfigGroup *group, ConfigOption *option, void* value, ConfigSync sync, void* arg) -{ - char *pstr = *(char**) value; - - if(sync == Raw2Value){ - if (!strcasecmp (pstr, "SHIFT")) { - fc.i2ndSelectKey[0].sym = fc.i2ndSelectKey[1].sym = XK_Shift_L; //左SHIFT的扫描码 - fc.i2ndSelectKey[0].state = KEY_SHIFT_COMP ; //左SHIFT的扫描码 - fc.i2ndSelectKey[1].state = KEY_NONE ; //左SHIFT的扫描码 - fc.i3rdSelectKey[0].sym = fc.i3rdSelectKey[1].sym = XK_Shift_R; //右SHIFT的扫描码 - fc.i3rdSelectKey[0].state = KEY_SHIFT_COMP ; //左SHIFT的扫描码 - fc.i3rdSelectKey[1].state = KEY_NONE; - } - else if (!strcasecmp (pstr, "CTRL")) { - fc.i2ndSelectKey[0].sym = fc.i2ndSelectKey[1].sym = XK_Control_L; //左CTRL的扫描码 - fc.i2ndSelectKey[0].state = KEY_CTRL_COMP ; //左SHIFT的扫描码 - fc.i2ndSelectKey[1].state = KEY_NONE ; //左SHIFT的扫描码 - fc.i3rdSelectKey[0].sym = fc.i3rdSelectKey[1].sym = XK_Control_R; //右CTRL的扫描码 - fc.i3rdSelectKey[0].state = KEY_CTRL_COMP ; //左SHIFT的扫描码 - fc.i3rdSelectKey[1].state = KEY_NONE; - } - else { - if (pstr[0] && pstr[0]!='0') - { - fc.i2ndSelectKey[0].sym = pstr[0] & 0xFF; - fc.i2ndSelectKey[0].state = KEY_NONE; - } - else - { - fc.i2ndSelectKey[0].sym = 0; - fc.i2ndSelectKey[0].state = KEY_NONE; - } - if (pstr[1] && pstr[1]!='0') - { - fc.i3rdSelectKey[0].sym = pstr[1] & 0xFF; - fc.i3rdSelectKey[0].state = KEY_NONE; - } - else - { - fc.i3rdSelectKey[0].sym = 0; - fc.i3rdSelectKey[0].state = KEY_NONE; - } - } - } -} - -void FilterTriggerKey(ConfigGroup *group, ConfigOption *option, void* value, ConfigSync sync, void* arg) -{ - HOTKEYS *hotkey = (HOTKEYS*)value; - if (sync == Raw2Value) - { - if (hotkey[0].desc == NULL && hotkey[1].desc == NULL) - { - hotkey[0].desc = strdup("CTRL_SPACE"); - hotkey[0].sym = XK_space; - hotkey[0].state = KEY_CTRL_COMP; - } - char *strkey[2]; - int i = 0; - for (;i<2;i++) - { - if (hotkey[i].desc == NULL) - break; - strkey[i] = hotkey[i].desc; - } - SetTriggerKeys(strkey, i); - } -} - -void FilterSwitchKey(ConfigGroup *group, ConfigOption *option, void* value, ConfigSync sync, void* arg) -{ - if (sync == Raw2Value) - { - SWITCHKEY *s = (SWITCHKEY*)value; - switch(*s) - { - case S_R_CTRL: - fc.switchKey = XKeysymToKeycode (dpy, XK_Control_R); - break; - case S_R_SHIFT: - fc.switchKey = XKeysymToKeycode (dpy, XK_Shift_R); - break; - case S_L_SHIFT: - fc.switchKey = XKeysymToKeycode (dpy, XK_Shift_L); - break; - case S_R_SUPER: - fc.switchKey = XKeysymToKeycode (dpy, XK_Super_R); - break; - case S_L_SUPER: - fc.switchKey = XKeysymToKeycode (dpy, XK_Super_L); - break; - case S_L_CTRL: - fc.switchKey = XKeysymToKeycode (dpy, XK_Control_L); - break; - } - } -} -void FilterAnAng(ConfigGroup *group, ConfigOption *option, void* value, ConfigSync sync, void* arg) -{ - if (sync == Raw2Value) - { - Bool *b = (Bool*)value; - fc.MHPY_S[5].bMode = *b; - } -} - -void LoadConfig() -{ - FILE *fp; - char *file; - fc.MHPY_C = MHPY_C; - fc.MHPY_S = MHPY_S; - fp = GetXDGFileUser( "config", "rt", &file); - FcitxLog(INFO, _("Load Config File %s"), file); - free(file); - if (!fp) { - if (errno == ENOENT) - { - SaveConfig(); - LoadConfig(); - } - return; - } - - ConfigFileDesc* configDesc = GetConfigDesc(); - ConfigFile *cfile = ParseConfigFileFp(fp, configDesc); - - FcitxConfigConfigBind(&fc, cfile, configDesc); - ConfigBindSync((GenericConfig*)&fc); - - IsReloadConfig = True; - - fclose(fp); -#ifndef _ENABLE_PANGO - CreateFont(); -#endif -} - -ConfigFileDesc* GetConfigDesc() -{ - if (!fcitxConfigDesc) - { - FILE *tmpfp; - tmpfp = GetXDGFileData("config.desc", "r", NULL); - fcitxConfigDesc = ParseConfigFileDescFp(tmpfp); - fclose(tmpfp); - } - - return fcitxConfigDesc; -} - -void SetTriggerKeys (char **strKey, int length) -{ - int i; - char *p; - - if (length == 0) - { - strKey[0] = "CTRL_SPACE"; - length = 1; - } - - iTriggerKeyCount = length - 1; - - if (Trigger_Keys) - free(Trigger_Keys); - - Trigger_Keys = (XIMTriggerKey *) malloc (sizeof (XIMTriggerKey) * (iTriggerKeyCount + 2)); - for (i = 0; i <= (iTriggerKeyCount + 1); i++) { - Trigger_Keys[i].keysym = 0; - Trigger_Keys[i].modifier = 0; - Trigger_Keys[i].modifier_mask = 0; - } - - for (i = 0; i <= iTriggerKeyCount; i++) { - if (MyStrcmp (strKey[i], "CTRL_")) { - Trigger_Keys[i].modifier = Trigger_Keys[i].modifier | ControlMask; - Trigger_Keys[i].modifier_mask = Trigger_Keys[i].modifier_mask | ControlMask; - } - else if (MyStrcmp (strKey[i], "SHIFT_")) { - Trigger_Keys[i].modifier = Trigger_Keys[i].modifier | ShiftMask; - Trigger_Keys[i].modifier_mask = Trigger_Keys[i].modifier_mask | ShiftMask; - } - else if (MyStrcmp (strKey[i], "ALT_")) { - Trigger_Keys[i].modifier = Trigger_Keys[i].modifier | Mod1Mask; - Trigger_Keys[i].modifier_mask = Trigger_Keys[i].modifier_mask | Mod1Mask; - } - else if (MyStrcmp (strKey[i], "SUPER_")) { - Trigger_Keys[i].modifier = Trigger_Keys[i].modifier | Mod4Mask; - Trigger_Keys[i].modifier_mask = Trigger_Keys[i].modifier_mask | Mod4Mask; - } - - if (Trigger_Keys[i].modifier == 0) { - Trigger_Keys[i].modifier = ControlMask; - Trigger_Keys[i].modifier_mask = ControlMask; - } - - p = strKey[i] + strlen (strKey[i]) - 1; - while (*p != '_') { - p--; - if (p == strKey[i] || (p == strKey[i] + strlen (strKey[i]) - 1)) { - Trigger_Keys = (XIMTriggerKey *) malloc (sizeof (XIMTriggerKey) * (iTriggerKeyCount + 2)); - Trigger_Keys[i].keysym = XK_space; - return; - } - } - p++; - - if (strlen (p) == 1) - Trigger_Keys[i].keysym = tolower (*p); - else if (!strcasecmp (p, "LCTRL")) - Trigger_Keys[i].keysym = XK_Control_L; - else if (!strcasecmp (p, "RCTRL")) - Trigger_Keys[i].keysym = XK_Control_R; - else if (!strcasecmp (p, "LSHIFT")) - Trigger_Keys[i].keysym = XK_Shift_L; - else if (!strcasecmp (p, "RSHIFT")) - Trigger_Keys[i].keysym = XK_Shift_R; - else if (!strcasecmp (p, "LALT")) - Trigger_Keys[i].keysym = XK_Alt_L; - else if (!strcasecmp (p, "RALT")) - Trigger_Keys[i].keysym = XK_Alt_R; - else if (!strcasecmp (p, "LSUPER")) - Trigger_Keys[i].keysym = XK_Super_L; - else if (!strcasecmp (p, "RSUPER")) - Trigger_Keys[i].keysym = XK_Super_R; - else - Trigger_Keys[i].keysym = XK_space; - } -} - - -void SaveConfig() -{ - ConfigFileDesc* configDesc = GetConfigDesc(); - char *file; - FILE *fp = GetXDGFileUser("config", "wt", &file); - FcitxLog(INFO, "Save Config to %s", file); - SaveConfigFileFp(fp, fc.gconfig.configFile, configDesc); - free(file); - fclose(fp); -} diff -Nru fcitx-4.0.1/src/tools/configfile.h fcitx-4.1.1/src/tools/configfile.h --- fcitx-4.0.1/src/tools/configfile.h 2010-12-17 04:22:08.000000000 +0000 +++ fcitx-4.1.1/src/tools/configfile.h 1970-01-01 00:00:00.000000000 +0000 @@ -1,150 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2010~2010 by CSSlayer * - * wengxt@gmail.com * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * - ***************************************************************************/ -#ifndef CONFIGFILE_H -#define CONFIGFILE_H - -#include -#include "fcitx-config/fcitx-config.h" -#define INPUT_METHODS 5 //标示输入法的类别数量 - -#ifndef MHPY_DEFINED -#define MHPY_DEFINED -typedef struct MH_PY MHPY; -#endif - -typedef enum _HIDE_MAINWINDOW { - HM_SHOW = 0, - HM_AUTO = 1, - HM_HIDE = 2 -} HIDE_MAINWINDOW; - -typedef enum ADJUSTORDER { - AD_NO = 0, - AD_FAST = 1, - AD_FREQ = 2 -} ADJUSTORDER; - -typedef enum SWITCHKEY { - S_R_CTRL = 0, - S_R_SHIFT = 1, - S_L_SHIFT = 2, - S_R_SUPER = 3, - S_L_SUPER = 4, - S_L_CTRL = 5 -} SWITCHKEY; - -typedef enum _ENTER_TO_DO { - K_ENTER_NOTHING = 0, - K_ENTER_CLEAN = 1, - K_ENTER_SEND = 2 -} ENTER_TO_DO; - -typedef enum _SEMICOLON_TO_DO { - K_SEMICOLON_NOCHANGE = 0, - K_SEMICOLON_ENG = 1, - K_SEMICOLON_QUICKPHRASE = 2 -} SEMICOLON_TO_DO; - -typedef struct FcitxConfig -{ - GenericConfig gconfig; - /* program config */ - char *font; - char *menuFont; - char *strUserLocale; - char *strRecordingPath; - Bool bUseTrayIcon; - Bool bUseTrayIcon_; - Bool bUseDBus; - Bool bUseDBus_; - Bool bEnableAddons; - int iDelayStart; - - /* output config */ - Bool bEngPuncAfterNumber; - ENTER_TO_DO enterToDo; - SEMICOLON_TO_DO semicolonToDo; - Bool bEngAfterCap; - Bool bConvertPunc; - Bool bDisablePagingInLegend; - Bool bSendTextWhenSwitchEng; - - /* appearance config */ - int iMaxCandWord; - HIDE_MAINWINDOW hideMainWindow; - Bool bCenterInputWindow; - Bool bShowInputWindowTriggering; - Bool bPointAfterNumber; - Bool bShowUserSpeed; - Bool bShowVersion; - Bool bHintWindow; - char* skinType; - - /* hotkey config */ - HOTKEYS hkTrigger[2]; - SWITCHKEY iSwitchKey; - KeySym switchKey; - Bool bDoubleSwitchKey; - int iTimeInterval; - HOTKEYS hkTrack[2]; - HOTKEYS hkHideMainWindow[2]; - HOTKEYS hkVK[2]; - HOTKEYS hkGBT[2]; - HOTKEYS hkLegend[2]; - HOTKEYS hkGetPY[2]; - HOTKEYS hkCorner[2]; - HOTKEYS hkPunc[2]; - HOTKEYS hkPrevPage[2]; - HOTKEYS hkNextPage[2]; - HOTKEYS str2nd3rdCand[2]; - HOTKEYS hkSaveAll[2]; - HOTKEYS hkRecording[2]; - HOTKEYS hkResetRecording[2]; - - /* im config */ - int inputMethods[INPUT_METHODS]; - char *strDefaultSP; - Bool bPhraseTips; - - /* py config */ - Bool bFullPY; - Bool bPYCreateAuto; - Bool bPYSaveAutoAsPhrase; - HOTKEYS hkPYAddFreq[2]; - HOTKEYS hkPYDelFreq[2]; - HOTKEYS hkPYDelUserPhr[2]; - char* strPYGetWordFromPhrase; - ADJUSTORDER baseOrder; - ADJUSTORDER phraseOrder; - ADJUSTORDER freqOrder; - MHPY *MHPY_C; - MHPY *MHPY_S; - HOTKEYS i2ndSelectKey[2]; - HOTKEYS i3rdSelectKey[2]; - char cPYYCDZ[3]; - Bool bMisstype; - -} FcitxConfig; - -extern FcitxConfig fc; -void LoadConfig(); -void SaveConfig(); - -#endif diff -Nru fcitx-4.0.1/src/tools/Makefile.am fcitx-4.1.1/src/tools/Makefile.am --- fcitx-4.0.1/src/tools/Makefile.am 2010-12-17 04:16:05.000000000 +0000 +++ fcitx-4.1.1/src/tools/Makefile.am 1970-01-01 00:00:00.000000000 +0000 @@ -1,17 +0,0 @@ -INCLUDES = \ - -I$(top_srcdir)/lib \ - -I$(top_srcdir)/src \ - @CAIRO_XLIB_CFLAGS@ \ - @PANGOCAIRO_CFLAGS@ - $(NULL) -DEFS = -DPKGDATADIR=\"$(pkgdatadir)\" -DDATADIR=\"$(datadir)\" - -noinst_LIBRARIES=libtools.a -libtools_a_SOURCES= utf8.c utf8.h\ - utf8_in_gb18030.h \ - tools.c tools.h \ - utarray.h \ - configfile.c configfile.h \ - profile.c profile.h \ - $(NULL) - diff -Nru fcitx-4.0.1/src/tools/Makefile.in fcitx-4.1.1/src/tools/Makefile.in --- fcitx-4.0.1/src/tools/Makefile.in 2010-12-17 04:26:31.000000000 +0000 +++ fcitx-4.1.1/src/tools/Makefile.in 1970-01-01 00:00:00.000000000 +0000 @@ -1,549 +0,0 @@ -# Makefile.in generated by automake 1.11.1 from Makefile.am. -# @configure_input@ - -# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, -# Inc. -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - -@SET_MAKE@ - -VPATH = @srcdir@ -pkgdatadir = $(datadir)/@PACKAGE@ -pkgincludedir = $(includedir)/@PACKAGE@ -pkglibdir = $(libdir)/@PACKAGE@ -pkglibexecdir = $(libexecdir)/@PACKAGE@ -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = @build@ -host_triplet = @host@ -subdir = src/tools -DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/configure.in -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -mkinstalldirs = $(install_sh) -d -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -CONFIG_CLEAN_VPATH_FILES = -LIBRARIES = $(noinst_LIBRARIES) -ARFLAGS = cru -AM_V_AR = $(am__v_AR_$(V)) -am__v_AR_ = $(am__v_AR_$(AM_DEFAULT_VERBOSITY)) -am__v_AR_0 = @echo " AR " $@; -AM_V_at = $(am__v_at_$(V)) -am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) -am__v_at_0 = @ -libtools_a_AR = $(AR) $(ARFLAGS) -libtools_a_LIBADD = -am_libtools_a_OBJECTS = utf8.$(OBJEXT) tools.$(OBJEXT) \ - configfile.$(OBJEXT) profile.$(OBJEXT) -libtools_a_OBJECTS = $(am_libtools_a_OBJECTS) -DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles -am__mv = mv -f -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -AM_V_lt = $(am__v_lt_$(V)) -am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) -am__v_lt_0 = --silent -LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ - $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ - $(AM_CFLAGS) $(CFLAGS) -AM_V_CC = $(am__v_CC_$(V)) -am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) -am__v_CC_0 = @echo " CC " $@; -CCLD = $(CC) -LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -AM_V_CCLD = $(am__v_CCLD_$(V)) -am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) -am__v_CCLD_0 = @echo " CCLD " $@; -AM_V_GEN = $(am__v_GEN_$(V)) -am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) -am__v_GEN_0 = @echo " GEN " $@; -SOURCES = $(libtools_a_SOURCES) -DIST_SOURCES = $(libtools_a_SOURCES) -ETAGS = etags -CTAGS = ctags -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -ACLOCAL = @ACLOCAL@ -ALL_LINGUAS = @ALL_LINGUAS@ -AMTAR = @AMTAR@ -AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ -AR = @AR@ -AUTOCONF = @AUTOCONF@ -AUTOHEADER = @AUTOHEADER@ -AUTOMAKE = @AUTOMAKE@ -AWK = @AWK@ -CAIRO_XLIB_CFLAGS = @CAIRO_XLIB_CFLAGS@ -CAIRO_XLIB_LIBS = @CAIRO_XLIB_LIBS@ -CC = @CC@ -CCDEPMODE = @CCDEPMODE@ -CFLAGS = @CFLAGS@ -CPP = @CPP@ -CPPFLAGS = @CPPFLAGS@ -CYGPATH_W = @CYGPATH_W@ -DATADIRNAME = @DATADIRNAME@ -DBUS_CFLAGS = @DBUS_CFLAGS@ -DBUS_LIBS = @DBUS_LIBS@ -DEFS = -DPKGDATADIR=\"$(pkgdatadir)\" -DDATADIR=\"$(datadir)\" -DEPDIR = @DEPDIR@ -DLLTOOL = @DLLTOOL@ -DSYMUTIL = @DSYMUTIL@ -DUMPBIN = @DUMPBIN@ -ECHO_C = @ECHO_C@ -ECHO_N = @ECHO_N@ -ECHO_T = @ECHO_T@ -EGREP = @EGREP@ -EXEEXT = @EXEEXT@ -FGREP = @FGREP@ -FONTCONFIG_CFLAGS = @FONTCONFIG_CFLAGS@ -FONTCONFIG_LIBS = @FONTCONFIG_LIBS@ -GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ -GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ -GMSGFMT = @GMSGFMT@ -GMSGFMT_015 = @GMSGFMT_015@ -GREP = @GREP@ -HOST_LIBS = @HOST_LIBS@ -INCINTL = @INCINTL@ -INSTALL = @INSTALL@ -INSTALL_DATA = @INSTALL_DATA@ -INSTALL_PROGRAM = @INSTALL_PROGRAM@ -INSTALL_SCRIPT = @INSTALL_SCRIPT@ -INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ -INTLLIBS = @INTLLIBS@ -INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ -INTLTOOL_MERGE = @INTLTOOL_MERGE@ -INTLTOOL_PERL = @INTLTOOL_PERL@ -INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ -INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ -LD = @LD@ -LDFLAGS = @LDFLAGS@ -LIBICONV = @LIBICONV@ -LIBINTL = @LIBINTL@ -LIBOBJS = @LIBOBJS@ -LIBS = @LIBS@ -LIBTOOL = @LIBTOOL@ -LIPO = @LIPO@ -LN_S = @LN_S@ -LTLIBICONV = @LTLIBICONV@ -LTLIBINTL = @LTLIBINTL@ -LTLIBOBJS = @LTLIBOBJS@ -MAKEINFO = @MAKEINFO@ -MANIFEST_TOOL = @MANIFEST_TOOL@ -MD5SUM = @MD5SUM@ -MKDIR_P = @MKDIR_P@ -MSGFMT = @MSGFMT@ -MSGFMT_015 = @MSGFMT_015@ -MSGMERGE = @MSGMERGE@ -NM = @NM@ -NMEDIT = @NMEDIT@ -OBJDUMP = @OBJDUMP@ -OBJEXT = @OBJEXT@ -OTOOL = @OTOOL@ -OTOOL64 = @OTOOL64@ -PACKAGE = @PACKAGE@ -PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ -PACKAGE_NAME = @PACKAGE_NAME@ -PACKAGE_STRING = @PACKAGE_STRING@ -PACKAGE_TARNAME = @PACKAGE_TARNAME@ -PACKAGE_URL = @PACKAGE_URL@ -PACKAGE_VERSION = @PACKAGE_VERSION@ -PANGOCAIRO_CFLAGS = @PANGOCAIRO_CFLAGS@ -PANGOCAIRO_LIBS = @PANGOCAIRO_LIBS@ -PATH_SEPARATOR = @PATH_SEPARATOR@ -PKG_CONFIG = @PKG_CONFIG@ -PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ -PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ -POSUB = @POSUB@ -RANLIB = @RANLIB@ -SED = @SED@ -SET_MAKE = @SET_MAKE@ -SHELL = @SHELL@ -STRIP = @STRIP@ -TAR = @TAR@ -USE_NLS = @USE_NLS@ -VERSION = @VERSION@ -WGET = @WGET@ -XGETTEXT = @XGETTEXT@ -XGETTEXT_015 = @XGETTEXT_015@ -XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ -XMKMF = @XMKMF@ -XRENDER_CFLAGS = @XRENDER_CFLAGS@ -XRENDER_LIBS = @XRENDER_LIBS@ -X_CFLAGS = @X_CFLAGS@ -X_LIBS = @X_LIBS@ -abs_builddir = @abs_builddir@ -abs_srcdir = @abs_srcdir@ -abs_top_builddir = @abs_top_builddir@ -abs_top_srcdir = @abs_top_srcdir@ -ac_ct_AR = @ac_ct_AR@ -ac_ct_CC = @ac_ct_CC@ -ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ -am__include = @am__include@ -am__leading_dot = @am__leading_dot@ -am__quote = @am__quote@ -am__tar = @am__tar@ -am__untar = @am__untar@ -bindir = @bindir@ -build = @build@ -build_alias = @build_alias@ -build_cpu = @build_cpu@ -build_os = @build_os@ -build_vendor = @build_vendor@ -builddir = @builddir@ -datadir = @datadir@ -datarootdir = @datarootdir@ -docdir = @docdir@ -dvidir = @dvidir@ -exec_prefix = @exec_prefix@ -host = @host@ -host_alias = @host_alias@ -host_cpu = @host_cpu@ -host_os = @host_os@ -host_vendor = @host_vendor@ -htmldir = @htmldir@ -includedir = @includedir@ -infodir = @infodir@ -install_sh = @install_sh@ -libdir = @libdir@ -libexecdir = @libexecdir@ -localedir = @localedir@ -localstatedir = @localstatedir@ -mandir = @mandir@ -mkdir_p = @mkdir_p@ -oldincludedir = @oldincludedir@ -pdfdir = @pdfdir@ -prefix = @prefix@ -program_transform_name = @program_transform_name@ -psdir = @psdir@ -sbindir = @sbindir@ -sharedstatedir = @sharedstatedir@ -srcdir = @srcdir@ -sysconfdir = @sysconfdir@ -target_alias = @target_alias@ -top_build_prefix = @top_build_prefix@ -top_builddir = @top_builddir@ -top_srcdir = @top_srcdir@ -INCLUDES = \ - -I$(top_srcdir)/lib \ - -I$(top_srcdir)/src \ - @CAIRO_XLIB_CFLAGS@ \ - @PANGOCAIRO_CFLAGS@ - -noinst_LIBRARIES = libtools.a -libtools_a_SOURCES = utf8.c utf8.h\ - utf8_in_gb18030.h \ - tools.c tools.h \ - utarray.h \ - configfile.c configfile.h \ - profile.c profile.h \ - $(NULL) - -all: all-am - -.SUFFIXES: -.SUFFIXES: .c .lo .o .obj -$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ - && { if test -f $@; then exit 0; else break; fi; }; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/tools/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign src/tools/Makefile -.PRECIOUS: Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(am__aclocal_m4_deps): - -clean-noinstLIBRARIES: - -test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES) -libtools.a: $(libtools_a_OBJECTS) $(libtools_a_DEPENDENCIES) - $(AM_V_at)-rm -f libtools.a - $(AM_V_AR)$(libtools_a_AR) libtools.a $(libtools_a_OBJECTS) $(libtools_a_LIBADD) - $(AM_V_at)$(RANLIB) libtools.a - -mostlyclean-compile: - -rm -f *.$(OBJEXT) - -distclean-compile: - -rm -f *.tab.c - -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/configfile.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/profile.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tools.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/utf8.Po@am__quote@ - -.c.o: -@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c $< - -.c.obj: -@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` - -.c.lo: -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs - -ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - mkid -fID $$unique -tags: TAGS - -TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - set x; \ - here=`pwd`; \ - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: CTAGS -CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d "$(distdir)/$$file"; then \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ - else \ - test -f "$(distdir)/$$file" \ - || cp -p $$d/$$file "$(distdir)/$$file" \ - || exit 1; \ - fi; \ - done -check-am: all-am -check: check-am -all-am: Makefile $(LIBRARIES) -installdirs: -install: install-am -install-exec: install-exec-am -install-data: install-data-am -uninstall: uninstall-am - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-am -install-strip: - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - `test -z '$(STRIP)' || \ - echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install -mostlyclean-generic: - -clean-generic: - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-am - -clean-am: clean-generic clean-libtool clean-noinstLIBRARIES \ - mostlyclean-am - -distclean: distclean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -distclean-am: clean-am distclean-compile distclean-generic \ - distclean-tags - -dvi: dvi-am - -dvi-am: - -html: html-am - -html-am: - -info: info-am - -info-am: - -install-data-am: - -install-dvi: install-dvi-am - -install-dvi-am: - -install-exec-am: - -install-html: install-html-am - -install-html-am: - -install-info: install-info-am - -install-info-am: - -install-man: - -install-pdf: install-pdf-am - -install-pdf-am: - -install-ps: install-ps-am - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-am - -mostlyclean-am: mostlyclean-compile mostlyclean-generic \ - mostlyclean-libtool - -pdf: pdf-am - -pdf-am: - -ps: ps-am - -ps-am: - -uninstall-am: - -.MAKE: install-am install-strip - -.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ - clean-libtool clean-noinstLIBRARIES ctags distclean \ - distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am html html-am info info-am \ - install install-am install-data install-data-am install-dvi \ - install-dvi-am install-exec install-exec-am install-html \ - install-html-am install-info install-info-am install-man \ - install-pdf install-pdf-am install-ps install-ps-am \ - install-strip installcheck installcheck-am installdirs \ - maintainer-clean maintainer-clean-generic mostlyclean \ - mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ - pdf pdf-am ps ps-am tags uninstall uninstall-am - - $(NULL) - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff -Nru fcitx-4.0.1/src/tools/profile.c fcitx-4.1.1/src/tools/profile.c --- fcitx-4.0.1/src/tools/profile.c 2010-12-17 04:20:34.000000000 +0000 +++ fcitx-4.1.1/src/tools/profile.c 1970-01-01 00:00:00.000000000 +0000 @@ -1,144 +0,0 @@ -#include - -#include "core/fcitx.h" -#include "tools/tools.h" -#include "fcitx-config/fcitx-config.h" -#include "tools/profile.h" -#include "fcitx-config/xdg.h" -#include "core/ime.h" -#include "ui/ui.h" - -extern Display* dpy; -extern int iScreen; - -FcitxProfile fcitxProfile; -ConfigFileDesc* fcitxProfileDesc = NULL; -static ConfigFileDesc* GetProfileDesc(); - -static void FilterCopyIMIndex(ConfigGroup *group, ConfigOption *option, void *data, ConfigSync sync, void* arg); -static void FilterScreenSizeX(ConfigGroup *group, ConfigOption *option, void *data, ConfigSync sync, void* arg); -static void FilterScreenSizeY(ConfigGroup *group, ConfigOption *option, void *data, ConfigSync sync, void* arg); - -CONFIG_BINDING_BEGIN(FcitxProfile); -CONFIG_BINDING_REGISTER_WITH_FILTER("Profile", "MainWindowOffsetX", iMainWindowOffsetX, FilterScreenSizeX); -CONFIG_BINDING_REGISTER_WITH_FILTER("Profile", "MainWindowOffsetY", iMainWindowOffsetY, FilterScreenSizeY); -CONFIG_BINDING_REGISTER_WITH_FILTER("Profile", "InputWindowOffsetX", iInputWindowOffsetX, FilterScreenSizeX); -CONFIG_BINDING_REGISTER_WITH_FILTER("Profile", "InputWindowOffsetY", iInputWindowOffsetY, FilterScreenSizeY); -CONFIG_BINDING_REGISTER("Profile", "Corner", bCorner); -CONFIG_BINDING_REGISTER("Profile", "ChnPunc", bChnPunc); -CONFIG_BINDING_REGISTER("Profile", "TrackCursor", bTrackCursor); -CONFIG_BINDING_REGISTER("Profile", "UseLegend", bUseLegend); -CONFIG_BINDING_REGISTER_WITH_FILTER("Profile", "IMIndex", iIMIndex, FilterCopyIMIndex); -CONFIG_BINDING_REGISTER("Profile", "Locked", bLocked); -CONFIG_BINDING_REGISTER("Profile", "CompactMainWindow", bCompactMainWindow); -CONFIG_BINDING_REGISTER("Profile", "UseGBKT", bUseGBKT); -#ifdef _ENABLE_RECORDING -CONFIG_BINDING_REGISTER("Profile", "Recording", bRecording); -#endif -CONFIG_BINDING_END() - -/** - * @brief 加载配置文件 - */ -void LoadProfile(void) -{ - FILE *fp; - fp = GetXDGFileUser( "profile", "rt", NULL); - if (!fp) { - if (errno == ENOENT) - { - SaveProfile(); - LoadProfile(); - } - return; - } - - ConfigFileDesc* profileDesc = GetProfileDesc(); - ConfigFile *cfile = ParseConfigFileFp(fp, profileDesc); - - FcitxProfileConfigBind(&fcitxProfile, cfile, profileDesc); - ConfigBindSync((GenericConfig*)&fcitxProfile); - - fclose(fp); - if (fcitxProfile.gconfig.configFile) - SaveProfile(); -} - -ConfigFileDesc* GetProfileDesc() -{ - if (!fcitxProfileDesc) - { - FILE *tmpfp; - tmpfp = GetXDGFileData("profile.desc", "r", NULL); - fcitxProfileDesc = ParseConfigFileDescFp(tmpfp); - fclose(tmpfp); - } - - return fcitxProfileDesc; -} - -void SaveProfile(void) -{ - ConfigFileDesc* profileDesc = GetProfileDesc(); - FILE* fp = GetXDGFileUser("profile", "wt", NULL); - SaveConfigFileFp(fp, fcitxProfile.gconfig.configFile, profileDesc); - fclose(fp); -} - -void FilterCopyIMIndex(ConfigGroup *group, ConfigOption *option, void *data, ConfigSync sync, void* arg) -{ - int* iIMIndex = (int*)data; - switch(sync) - { - case Raw2Value: - gs.iIMIndex = *iIMIndex; - break; - case Value2Raw: - *iIMIndex = gs.iIMIndex; - break; - } -} -static void FilterScreenSizeX(ConfigGroup *group, ConfigOption *option, void *data, ConfigSync sync, void* arg) -{ - int* X = (int*)data; - - switch(sync) - { - case Raw2Value: - { - int dwidth, dheight; - GetScreenSize(&dwidth, &dheight); - if (*X >= dwidth) - *X = dwidth - 10; - if (*X < 0) - *X = 0; - } - break; - case Value2Raw: - break; - } - -} - -static void FilterScreenSizeY(ConfigGroup *group, ConfigOption *option, void *data, ConfigSync sync, void* arg) -{ - int* Y = (int*)data; - - switch(sync) - { - case Raw2Value: - { - int dwidth, dheight; - GetScreenSize(&dwidth, &dheight); - if (*Y >= dheight) - *Y = dheight - 3; - if (*Y < 0) - *Y = 0; - } - break; - case Value2Raw: - break; - } - - -} diff -Nru fcitx-4.0.1/src/tools/profile.h fcitx-4.1.1/src/tools/profile.h --- fcitx-4.0.1/src/tools/profile.h 2010-12-17 04:22:33.000000000 +0000 +++ fcitx-4.1.1/src/tools/profile.h 1970-01-01 00:00:00.000000000 +0000 @@ -1,49 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2010~2010 by CSSlayer * - * wengxt@gmail.com * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * - ***************************************************************************/ - -#ifndef FCITX_PROFILE_H -#define FCITX_PROFILE_H - -#include "fcitx-config/fcitx-config.h" - -typedef struct FcitxProfile -{ - GenericConfig gconfig; - int iMainWindowOffsetX; - int iMainWindowOffsetY; - int iInputWindowOffsetX; - int iInputWindowOffsetY; - Bool bCorner; - Bool bChnPunc; - Bool bTrackCursor; - Bool bUseLegend; - int iIMIndex; - Bool bLocked; - Bool bCompactMainWindow; - Bool bUseGBKT; - Bool bRecording; -} FcitxProfile; - -extern FcitxProfile fcitxProfile; - -void LoadProfile(); -void SaveProfile(); - -#endif diff -Nru fcitx-4.0.1/src/tools/tools.c fcitx-4.1.1/src/tools/tools.c --- fcitx-4.0.1/src/tools/tools.c 2010-11-28 11:55:00.000000000 +0000 +++ fcitx-4.1.1/src/tools/tools.c 1970-01-01 00:00:00.000000000 +0000 @@ -1,292 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2002~2005 by Yuking * - * yuking_net@sohu.com * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * - ***************************************************************************/ -/** - * @file tools.c - * @author Yuking yuking_net@sohu.com - * @date 2008-1-16 - * - * @brief 配置文件读写 - * - * - */ -#include "core/fcitx.h" - -#include -#include -#include -#include -#include -#include -#include -#include - -#include "fcitx-config/uthash.h" -#include "core/ime.h" -#include "tools/tools.h" -#include "fcitx-config/cutils.h" -#include "fcitx-config/xdg.h" - -#include "utf8_in_gb18030.h" - -pthread_mutex_t fcitxMutex; - -typedef struct simple2trad_t -{ - int wc; - char str[UTF8_MAX_LENGTH + 1]; - INT8 len; - UT_hash_handle hh; -} simple2trad_t; - -simple2trad_t* s2t_table = NULL; - -/** - * 该函数装载data/gbks2t.tab的简体转繁体的码表, - * 然后按码表将GBK字符转换成GBK繁体字符。 - * - * WARNING: 该函数返回新分配内存字符串,请调用者 - * 注意释放。 - */ -char *ConvertGBKSimple2Tradition (char *strHZ) -{ - FILE *fp; - char *ret; - int i, len, ret_len; - char *strBuf = NULL; - size_t bufLen = 0; - char *ps; - - if (strHZ == NULL) - return NULL; - - if (!s2t_table) { - len = 0; - - fp = GetXDGFileData(TABLE_GBKS2T, "rb", NULL); - if (!fp) { - ret = (char *) malloc (sizeof (char) * (strlen (strHZ) + 1)); - strcpy (ret, strHZ); - return ret; - } - while(getline(&strBuf, &bufLen, fp) != -1) - { - simple2trad_t *s2t; - char *ps; - int wc; - - ps = utf8_get_char(strBuf, &wc); - s2t = (simple2trad_t*) malloc(sizeof(simple2trad_t)); - s2t->wc = wc; - s2t->len = utf8_char_len(ps); - strncpy(s2t->str, ps, s2t->len); - s2t->str[s2t->len] = '\0'; - - HASH_ADD_INT(s2t_table, wc, s2t); - } - if(strBuf) - free(strBuf); - } - - i = 0; - len = utf8_strlen (strHZ); - ret_len = 0; - ret = (char *) malloc (sizeof (char) * (UTF8_MAX_LENGTH * len + 1)); - ps = strHZ; - ret[0] = '\0'; - for (; i < len; ++i) { - int wc; - simple2trad_t *s2t = NULL; - int chr_len = utf8_char_len(ps); - char *nps; - nps = utf8_get_char(ps , &wc); - HASH_FIND_INT(s2t_table, &wc, s2t); - - if (s2t) - { - strcat(ret, s2t->str); - ret_len += s2t->len; - } - else - { - strncat(ret, ps, chr_len); - ret_len += chr_len; - } - - ps = nps; - - } - ret[ret_len] = '\0'; - - return ret; -} - -static int cmpi(const void * a, const void *b) -{ - return (*((int*)a)) - (*((int*)b)); -} - -/* - * 计算文件中有多少行 - * 注意:文件中的空行也做为一行处理 - */ -int CalculateRecordNumber (FILE * fpDict) -{ - char *strBuf = NULL; - size_t bufLen = 0; - int nNumber = 0; - - while(getline(&strBuf, &bufLen, fpDict) != -1){ - nNumber++; - } - rewind (fpDict); - - if (strBuf) - free(strBuf); - - return nNumber; -} - - -int CalHZIndex (char *strHZ) -{ - unsigned int iutf = 0; - int l = utf8_char_len(strHZ); - unsigned char* utf = (unsigned char*) strHZ; - unsigned int *res; - int idx; - - if (l == 2) - { - iutf = *utf++ << 8; - iutf |= *utf++; - } - else if (l == 3) - { - iutf = *utf++ << 16; - iutf |= *utf++ << 8; - iutf |= *utf++; - } - else if (l == 4) - { - iutf = *utf++ << 24; - - iutf |= *utf++ << 16; - iutf |= *utf++ << 8; - iutf |= *utf++; - } - - res = bsearch(&iutf, utf8_in_gb18030, 63360, sizeof(int), cmpi); - if (res) - idx = res - utf8_in_gb18030; - else - idx = 63361; - return idx; -} - -/** - * @brief 自定义的二分查找,和bsearch库函数相比支持不精确位置的查询 - * - * @param key - * @param base - * @param nmemb - * @param size - * @param accurate - * @param compar - * - * @return - */ -void *custom_bsearch(const void *key, const void *base, - size_t nmemb, size_t size, int accurate, - int (*compar)(const void *, const void *)) -{ - if (accurate) - return bsearch(key, base, nmemb, size, compar); - else - { - size_t l, u, idx; - const void *p; - int comparison; - - l = 0; - u = nmemb; - while (l < u) - { - idx = (l + u) / 2; - p = (void *) (((const char *) base) + (idx * size)); - comparison = (*compar) (key, p); - if (comparison <= 0) - u = idx; - else if (comparison > 0) - l = idx + 1; - } - - if (u >= nmemb) - return NULL; - else - return (void *) (((const char *) base) + (l * size)); - } -} - -void FcitxInitThread() -{ - int rc; - rc = pthread_mutex_init(&fcitxMutex, NULL); - gs.bMutexInited = True; - if (rc != 0) - FcitxLog(ERROR, _("pthread mutex init failed")); -} - -void InitAsDaemon() -{ - pid_t pid; - if ((pid = fork()) > 0) - { - waitpid(pid, NULL, 0); - exit(0); - } - setsid(); - signal(SIGINT, SIG_IGN); - signal(SIGHUP, SIG_IGN); - signal(SIGQUIT, SIG_IGN); - signal(SIGPIPE, SIG_IGN); - signal(SIGTTOU, SIG_IGN); - signal(SIGTTIN, SIG_IGN); - signal(SIGCHLD, SIG_IGN); - if (fork() > 0) - exit(0); - chdir("/"); - - umask(0); -} - -int FcitxLock() -{ - if (gs.bMutexInited) - return pthread_mutex_lock(&fcitxMutex); - return 0; -} - -int FcitxUnlock() -{ - if (gs.bMutexInited) - return pthread_mutex_unlock(&fcitxMutex); - return 0; -} - diff -Nru fcitx-4.0.1/src/tools/tools.h fcitx-4.1.1/src/tools/tools.h --- fcitx-4.0.1/src/tools/tools.h 2010-11-28 11:55:00.000000000 +0000 +++ fcitx-4.1.1/src/tools/tools.h 1970-01-01 00:00:00.000000000 +0000 @@ -1,65 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2002~2005 by Yuking * - * yuking_net@sohu.com * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * - ***************************************************************************/ -/** - * @file tools.h - * @author Yuking yuking_net@sohu.com - * @date 2008-1-16 - * - * @brief 配置文件读写 - * - * - */ - -#ifndef _TOOLS_H -#define _TOOLS_H - -#include -#include -#include "fcitx-config/uthash.h" - -#define TABLE_GBKS2T "gbks2t.tab" - -#include - -typedef struct StringHashSet { - char *name; - UT_hash_handle hh; -} StringHashSet; - -void *custom_bsearch(const void *key, const void *base, - size_t nmemb, size_t size, int accurate, - int (*compar)(const void *, const void *)); - -void FcitxInitThread(); -int FcitxLock(); -void InitAsDaemon(); -int FcitxUnlock(); - -int CalculateRecordNumber (FILE * fpDict); -void SetSwitchKey (char *str); -int CalHZIndex (char *strHZ); -char *ConvertGBKSimple2Tradition (char *text); - -/* -#if defined(DARWIN) -int ReverseInt (unsigned int pc_int); -#endif -*/ -#endif diff -Nru fcitx-4.0.1/src/tools/utarray.h fcitx-4.1.1/src/tools/utarray.h --- fcitx-4.0.1/src/tools/utarray.h 2010-11-28 11:55:00.000000000 +0000 +++ fcitx-4.1.1/src/tools/utarray.h 1970-01-01 00:00:00.000000000 +0000 @@ -1,225 +0,0 @@ -/* -Copyright (c) 2008-2010, Troy D. Hanson http://uthash.sourceforge.net -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS -IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED -TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A -PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER -OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, -EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, -PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -*/ - -/* a dynamic array implementation using macros - * see http://uthash.sourceforge.net/utarray - */ -#ifndef UTARRAY_H -#define UTARRAY_H - -#define UTARRAY_VERSION 1.9 - -#ifdef __GNUC__ -#define _UNUSED_ __attribute__ ((__unused__)) -#else -#define _UNUSED_ -#endif - -#include /* size_t */ -#include /* memset, etc */ -#include /* exit */ - -#define oom() exit(-1) - -typedef void (ctor_f)(void *dst, const void *src); -typedef void (dtor_f)(void *elt); -typedef void (init_f)(void *elt); -typedef struct { - size_t sz; - init_f *init; - ctor_f *copy; - dtor_f *dtor; -} UT_icd; - -typedef struct { - unsigned i,n;/* i: index of next available slot, n: num slots */ - const UT_icd *icd; /* initializer, copy and destructor functions */ - char *d; /* n slots of size icd->sz*/ -} UT_array; - -#define utarray_init(a,_icd) do { \ - memset(a,0,sizeof(UT_array)); \ - (a)->icd=_icd; \ -} while(0) - -#define utarray_done(a) do { \ - if ((a)->n) { \ - if ((a)->icd->dtor) { \ - size_t _ut_i; \ - for(_ut_i=0; _ut_i < (a)->i; _ut_i++) { \ - (a)->icd->dtor(utarray_eltptr(a,_ut_i)); \ - } \ - } \ - free((a)->d); \ - } \ - (a)->n=0; \ -} while(0) - -#define utarray_new(a,_icd) do { \ - a=(UT_array*)malloc(sizeof(UT_array)); \ - utarray_init(a,_icd); \ -} while(0) - -#define utarray_free(a) do { \ - utarray_done(a); \ - free(a); \ -} while(0) - -#define utarray_reserve(a,by) do { \ - if (((a)->i+by) > ((a)->n)) { \ - while(((a)->i+by) > ((a)->n)) { (a)->n = ((a)->n ? (2*(a)->n) : 8); } \ - if ( ((a)->d=(char*)realloc((a)->d, (a)->n*(a)->icd->sz)) == NULL) oom(); \ - } \ -} while(0) - -#define utarray_push_back(a,p) do { \ - utarray_reserve(a,1); \ - if ((a)->icd->copy) { (a)->icd->copy( _utarray_eltptr(a,(a)->i++), p); } \ - else { memcpy(_utarray_eltptr(a,(a)->i++), p, (a)->icd->sz); }; \ -} while(0) - -#define utarray_pop_back(a) do { \ - if ((a)->icd->dtor) { (a)->icd->dtor( _utarray_eltptr(a,--((a)->i))); } \ - else { (a)->i--; } \ -} while(0) - -#define utarray_extend_back(a) do { \ - utarray_reserve(a,1); \ - if ((a)->icd->init) { (a)->icd->init(_utarray_eltptr(a,(a)->i)); } \ - else { memset(_utarray_eltptr(a,(a)->i),0,(a)->icd->sz); } \ - (a)->i++; \ -} while(0) - -#define utarray_len(a) ((a)->i) - -#define utarray_eltptr(a,j) (((j) < (a)->i) ? _utarray_eltptr(a,j) : NULL) -#define _utarray_eltptr(a,j) ((char*)((a)->d + ((a)->icd->sz*(j) ))) - -#define utarray_insert(a,p,j) do { \ - utarray_reserve(a,1); \ - if (j > (a)->i) break; \ - if ((j) < (a)->i) { \ - memmove( _utarray_eltptr(a,(j)+1), _utarray_eltptr(a,j), \ - ((a)->i - (j))*((a)->icd->sz)); \ - } \ - if ((a)->icd->copy) { (a)->icd->copy( _utarray_eltptr(a,j), p); } \ - else { memcpy(_utarray_eltptr(a,j), p, (a)->icd->sz); }; \ - (a)->i++; \ -} while(0) - -#define utarray_inserta(a,w,j) do { \ - if (utarray_len(w) == 0) break; \ - if (j > (a)->i) break; \ - utarray_reserve(a,utarray_len(w)); \ - if ((j) < (a)->i) { \ - memmove(_utarray_eltptr(a,(j)+utarray_len(w)), \ - _utarray_eltptr(a,j), \ - ((a)->i - (j))*((a)->icd->sz)); \ - } \ - if (a->icd->copy) { \ - size_t _ut_i; \ - for(_ut_i=0;_ut_i<(w)->i;_ut_i++) { \ - (a)->icd->copy(_utarray_eltptr(a,j+_ut_i), _utarray_eltptr(w,_ut_i)); \ - } \ - } else { \ - memcpy(_utarray_eltptr(a,j), _utarray_eltptr(w,0), \ - utarray_len(w)*((a)->icd->sz)); \ - } \ - (a)->i += utarray_len(w); \ -} while(0) - -#define utarray_resize(dst,num) do { \ - size_t _ut_i; \ - if (dst->i > (size_t)(num)) { \ - if ((dst)->icd->dtor) { \ - for(_ut_i=num; _ut_i < dst->i; _ut_i++) { \ - (dst)->icd->dtor(utarray_eltptr(dst,_ut_i)); \ - } \ - } \ - } else if (dst->i < (size_t)(num)) { \ - utarray_reserve(dst,num-dst->i); \ - if ((dst)->icd->init) { \ - for(_ut_i=dst->i; _ut_i < num; _ut_i++) { \ - (dst)->icd->init(utarray_eltptr(dst,_ut_i)); \ - } \ - } else { \ - memset(_utarray_eltptr(dst,dst->i),0,(dst)->icd->sz*(num-dst->i)); \ - } \ - } \ - dst->i = num; \ -} while(0) - -#define utarray_concat(dst,src) do { \ - utarray_inserta(dst,src,utarray_len(dst)); \ -} while(0) - -#define utarray_erase(a,pos,len) do { \ - if ((a)->icd->dtor) { \ - size_t _ut_i; \ - for(_ut_i=0; _ut_i < len; _ut_i++) { \ - (a)->icd->dtor(utarray_eltptr(a,pos+_ut_i)); \ - } \ - } \ - if ((a)->i > (pos+len)) { \ - memmove( _utarray_eltptr(a,pos), _utarray_eltptr(a,pos+len), \ - ((a->i)-(pos+len))*((a)->icd->sz)); \ - } \ - (a)->i -= (len); \ -} while(0) - -#define utarray_clear(a) do { \ - if ((a)->i > 0) { \ - if ((a)->icd->dtor) { \ - size_t _ut_i; \ - for(_ut_i=0; _ut_i < (a)->i; _ut_i++) { \ - (a)->icd->dtor(utarray_eltptr(a,_ut_i)); \ - } \ - } \ - (a)->i = 0; \ - } \ -} while(0) - -#define utarray_sort(a,cmp) do { \ - qsort((a)->d, (a)->i, (a)->icd->sz, cmp); \ -} while(0) - -#define utarray_front(a) (((a)->i) ? (_utarray_eltptr(a,0)) : NULL) -#define utarray_next(a,e) (((e)==NULL) ? utarray_front(a) : ((((a)->i) > (utarray_eltidx(a,e)+1)) ? _utarray_eltptr(a,utarray_eltidx(a,e)+1) : NULL)) -#define utarray_back(a) (((a)->i) ? (_utarray_eltptr(a,(a)->i-1)) : NULL) -#define utarray_eltidx(a,e) (((char*)(e) >= (char*)((a)->d)) ? (((char*)(e) - (char*)((a)->d))/(a)->icd->sz) : -1) - -/* last we pre-define a few icd for common utarrays of ints and strings */ -static void utarray_str_cpy(void *dst, const void *src) { - char **_src = (char**)src, **_dst = (char**)dst; - *_dst = (*_src == NULL) ? NULL : strdup(*_src); -} -static void utarray_str_dtor(void *elt) { - char **eltc = (char**)elt; - if (*eltc) free(*eltc); -} -static const UT_icd ut_str_icd _UNUSED_ = {sizeof(char*),NULL,utarray_str_cpy,utarray_str_dtor}; -static const UT_icd ut_int_icd _UNUSED_ = {sizeof(int),NULL,NULL,NULL}; - -#define utarray_custom_bsearch(key, a, acc, cmp) custom_bsearch((key), (a)->d, (a)->i, (a)->icd->sz, (acc), cmp ) - -#endif /* UTARRAY_H */ diff -Nru fcitx-4.0.1/src/tools/utf8.c fcitx-4.1.1/src/tools/utf8.c --- fcitx-4.0.1/src/tools/utf8.c 2010-11-28 11:55:00.000000000 +0000 +++ fcitx-4.1.1/src/tools/utf8.c 1970-01-01 00:00:00.000000000 +0000 @@ -1,253 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2010~2010 by CSSlayer * - * wengxt@gmail.com * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * - ***************************************************************************/ - -#include "core/fcitx.h" -#include "tools/utf8.h" - -#define CONT(i) ISUTF8_CB(in[i]) -#define VAL(i, s) ((in[i]&0x3f) << s) - -#define UTF8_LENGTH(Char) \ - ((Char) < 0x80 ? 1 : \ - ((Char) < 0x800 ? 2 : \ - ((Char) < 0x10000 ? 3 : \ - ((Char) < 0x200000 ? 4 : \ - ((Char) < 0x4000000 ? 5 : 6))))) - -#define UNICODE_VALID(Char) \ - ((Char) < 0x110000 && \ - (((Char) & 0xFFFFF800) != 0xD800) && \ - ((Char) < 0xFDD0 || (Char) > 0xFDEF) && \ - ((Char) & 0xFFFE) != 0xFFFE) - -size_t -utf8_strlen(const char *s) -{ - unsigned int l = 0; - - while(*s) - { - int chr; - - s = utf8_get_char(s, &chr); - l++; - } - - return l; -} - -int utf8_char_len(const char *in) -{ - if (!(in[0] & 0x80)) - return 1; - /* 2-byte, 0x80-0x7ff */ - if ( (in[0]&0xe0) == 0xc0 && CONT(1) ) - return 2; - /* 3-byte, 0x800-0xffff */ - if ( (in[0]&0xf0) == 0xe0 && CONT(1) && CONT(2) ) - return 3; - /* 4-byte, 0x10000-0x1FFFFF */ - if ( (in[0]&0xf8) == 0xf0 && CONT(1) && CONT(2) && CONT(3) ) - return 4; - /* 5-byte, 0x200000-0x3FFFFFF */ - if ( (in[0]&0xfc) == 0xf8 && CONT(1) && CONT(2) && CONT(3) && CONT(4) ) - return 5; - /* 6-byte, 0x400000-0x7FFFFFF */ - if ( (in[0]&0xfe) == 0xfc && CONT(1) && CONT(2) && CONT(3) && CONT(4) && CONT(5) ) - return 6; - - return 1; -} - -char * -utf8_get_char(const char *in, int *chr) -{ - if (!(in[0] & 0x80)) - { - *(chr) = *(in); - return (char *)in+1; - } - /* 2-byte, 0x80-0x7ff */ - if ( (in[0]&0xe0) == 0xc0 && CONT(1) ) - { - *chr = ((in[0]&0x1f) << 6)|VAL(1,0); - return (char *)in+2; - } - /* 3-byte, 0x800-0xffff */ - if ( (in[0]&0xf0) == 0xe0 && CONT(1) && CONT(2) ) - { - *chr = ((in[0]&0xf) << 12)|VAL(1,6)|VAL(2,0); - return (char *)in+3; - } - /* 4-byte, 0x10000-0x1FFFFF */ - if ( (in[0]&0xf8) == 0xf0 && CONT(1) && CONT(2) && CONT(3) ) - { - *chr = ((in[0]&0x7) << 18)|VAL(1,12)|VAL(2,6)|VAL(3,0); - return (char *)in+4; - } - /* 5-byte, 0x200000-0x3FFFFFF */ - if ( (in[0]&0xfc) == 0xf8 && CONT(1) && CONT(2) && CONT(3) && CONT(4) ) - { - *chr = ((in[0]&0x3) << 24)|VAL(1,18)|VAL(2,12)|VAL(3,6)|VAL(4,0); - return (char *)in+5; - } - /* 6-byte, 0x400000-0x7FFFFFF */ - if ( (in[0]&0xfe) == 0xfc && CONT(1) && CONT(2) && CONT(3) && CONT(4) && CONT(5) ) - { - *chr = ((in[0]&0x1) << 30)|VAL(1,24)|VAL(2,18)|VAL(3,12)|VAL(4,6)|VAL(5,0); - return (char *)in+6; - } - - *chr = *in; - - return (char *)in+1; -} - -int utf8_strncmp(const char *s1, const char *s2, int n) { - // Seems to work. - int c1,c2; - int i; - for (i=0;i < n;i++) { - if (!(*s1 && 0x80)) - { - if (*s1 != *s2) - return 1; - if (*s1 == 0) - return 0; - s1 ++; - s2 ++; - } - else { - s1 = utf8_get_char(s1, &c1); - s2 = utf8_get_char(s2, &c2); - if (c1 != c2) - return 1; - } - } - return 0; -} - -char* utf8_get_nth_char(char* s, unsigned int n) -{ - unsigned int l = 0; - - while(*s && l < n) - { - int chr; - - s = utf8_get_char(s, &chr); - l++; - } - - return s; -} - -int -utf8_get_char_extended (const char *s, - int max_len) -{ - const unsigned char*p = (const unsigned char*)s; - int i, len; - unsigned int wc = (unsigned char) *p; - - if (wc < 0x80) { - return wc; - } else if (wc < 0xc0) { - return (unsigned int)-1; - } else if (wc < 0xe0) { - len = 2; - wc &= 0x1f; - } else if (wc < 0xf0) { - len = 3; - wc &= 0x0f; - } else if (wc < 0xf8) { - len = 4; - wc &= 0x07; - } else if (wc < 0xfc) { - len = 5; - wc &= 0x03; - } else if (wc < 0xfe) { - len = 6; - wc &= 0x01; - } else { - return (unsigned int)-1; - } - - if (max_len >= 0 && len > max_len) { - for (i = 1; i < max_len; i++) { - if ((((unsigned char *)p)[i] & 0xc0) != 0x80) - return (unsigned int)-1; - } - return (unsigned int)-2; - } - - for (i = 1; i < len; ++i) { - unsigned int ch = ((unsigned char *)p)[i]; - - if ((ch & 0xc0) != 0x80) { - if (ch) - return (unsigned int)-1; - else - return (unsigned int)-2; - } - wc <<= 6; - wc |= (ch & 0x3f); - } - - if (UTF8_LENGTH(wc) != len) - return (unsigned int)-1; - - return wc; -} - -int utf8_get_char_validated (const char *p, - int max_len) -{ - int result; - - if (max_len == 0) - return -2; - - result = utf8_get_char_extended (p, max_len); - if (result & 0x80000000) - return result; - else if (!UNICODE_VALID (result)) - return -1; - else - return result; -} -int utf8_check_string(const char *s) -{ - while(*s) - { - int chr; - - if (utf8_get_char_validated(s, 6) < 0) - return 0; - s = utf8_get_char(s, &chr); - } - return 1; -} - -/* Modeline for ViM {{{ - * vim: ts=4 et sw=4 - * }}} */ - - diff -Nru fcitx-4.0.1/src/tools/utf8.h fcitx-4.1.1/src/tools/utf8.h --- fcitx-4.0.1/src/tools/utf8.h 2010-11-28 11:55:00.000000000 +0000 +++ fcitx-4.1.1/src/tools/utf8.h 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2010~2010 by CSSlayer * - * wengxt@gmail.com * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * - ***************************************************************************/ - -#ifndef UTF8_H -# define UTF8_H - -#include - -#define UTF8_MAX_LENGTH 6 - -#define ISUTF8_CB(c) (((c)&0xc0) == 0x80) - -extern size_t utf8_strlen(const char *s); -extern char* utf8_get_char(const char *in, int *chr); -extern int utf8_strncmp(const char *s1, const char *s2, int n); -extern int utf8_char_len(const char *in); -extern char* utf8_get_nth_char(char* s, unsigned int n); -extern int utf8_check_string(const char *s); -extern int utf8_get_char_extended (const char *p, int max_len); -extern int utf8_get_char_validated (const char *p, int max_len); - -#endif /* ifndef UTF8_H */ - diff -Nru fcitx-4.0.1/src/tools/utf8_in_gb18030.h fcitx-4.1.1/src/tools/utf8_in_gb18030.h --- fcitx-4.0.1/src/tools/utf8_in_gb18030.h 2010-11-28 11:55:00.000000000 +0000 +++ fcitx-4.1.1/src/tools/utf8_in_gb18030.h 1970-01-01 00:00:00.000000000 +0000 @@ -1,63382 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2010~2010 by CSSlayer * - * wengxt@gmail.com * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * - ***************************************************************************/ - -unsigned int utf8_in_gb18030[ 63360 ] = { - 0xc280, - 0xc281, - 0xc282, - 0xc283, - 0xc284, - 0xc285, - 0xc286, - 0xc287, - 0xc288, - 0xc289, - 0xc28a, - 0xc28b, - 0xc28c, - 0xc28d, - 0xc28e, - 0xc28f, - 0xc290, - 0xc291, - 0xc292, - 0xc293, - 0xc294, - 0xc295, - 0xc296, - 0xc297, - 0xc298, - 0xc299, - 0xc29a, - 0xc29b, - 0xc29c, - 0xc29d, - 0xc29e, - 0xc29f, - 0xc2a0, - 0xc2a1, - 0xc2a2, - 0xc2a3, - 0xc2a4, - 0xc2a5, - 0xc2a6, - 0xc2a7, - 0xc2a8, - 0xc2a9, - 0xc2aa, - 0xc2ab, - 0xc2ac, - 0xc2ad, - 0xc2ae, - 0xc2af, - 0xc2b0, - 0xc2b1, - 0xc2b2, - 0xc2b3, - 0xc2b4, - 0xc2b5, - 0xc2b6, - 0xc2b7, - 0xc2b8, - 0xc2b9, - 0xc2ba, - 0xc2bb, - 0xc2bc, - 0xc2bd, - 0xc2be, - 0xc2bf, - 0xc380, - 0xc381, - 0xc382, - 0xc383, - 0xc384, - 0xc385, - 0xc386, - 0xc387, - 0xc388, - 0xc389, - 0xc38a, - 0xc38b, - 0xc38c, - 0xc38d, - 0xc38e, - 0xc38f, - 0xc390, - 0xc391, - 0xc392, - 0xc393, - 0xc394, - 0xc395, - 0xc396, - 0xc397, - 0xc398, - 0xc399, - 0xc39a, - 0xc39b, - 0xc39c, - 0xc39d, - 0xc39e, - 0xc39f, - 0xc3a0, - 0xc3a1, - 0xc3a2, - 0xc3a3, - 0xc3a4, - 0xc3a5, - 0xc3a6, - 0xc3a7, - 0xc3a8, - 0xc3a9, - 0xc3aa, - 0xc3ab, - 0xc3ac, - 0xc3ad, - 0xc3ae, - 0xc3af, - 0xc3b0, - 0xc3b1, - 0xc3b2, - 0xc3b3, - 0xc3b4, - 0xc3b5, - 0xc3b6, - 0xc3b7, - 0xc3b8, - 0xc3b9, - 0xc3ba, - 0xc3bb, - 0xc3bc, - 0xc3bd, - 0xc3be, - 0xc3bf, - 0xc480, - 0xc481, - 0xc482, - 0xc483, - 0xc484, - 0xc485, - 0xc486, - 0xc487, - 0xc488, - 0xc489, - 0xc48a, - 0xc48b, - 0xc48c, - 0xc48d, - 0xc48e, - 0xc48f, - 0xc490, - 0xc491, - 0xc492, - 0xc493, - 0xc494, - 0xc495, - 0xc496, - 0xc497, - 0xc498, - 0xc499, - 0xc49a, - 0xc49b, - 0xc49c, - 0xc49d, - 0xc49e, - 0xc49f, - 0xc4a0, - 0xc4a1, - 0xc4a2, - 0xc4a3, - 0xc4a4, - 0xc4a5, - 0xc4a6, - 0xc4a7, - 0xc4a8, - 0xc4a9, - 0xc4aa, - 0xc4ab, - 0xc4ac, - 0xc4ad, - 0xc4ae, - 0xc4af, - 0xc4b0, - 0xc4b1, - 0xc4b2, - 0xc4b3, - 0xc4b4, - 0xc4b5, - 0xc4b6, - 0xc4b7, - 0xc4b8, - 0xc4b9, - 0xc4ba, - 0xc4bb, - 0xc4bc, - 0xc4bd, - 0xc4be, - 0xc4bf, - 0xc580, - 0xc581, - 0xc582, - 0xc583, - 0xc584, - 0xc585, - 0xc586, - 0xc587, - 0xc588, - 0xc589, - 0xc58a, - 0xc58b, - 0xc58c, - 0xc58d, - 0xc58e, - 0xc58f, - 0xc590, - 0xc591, - 0xc592, - 0xc593, - 0xc594, - 0xc595, - 0xc596, - 0xc597, - 0xc598, - 0xc599, - 0xc59a, - 0xc59b, - 0xc59c, - 0xc59d, - 0xc59e, - 0xc59f, - 0xc5a0, - 0xc5a1, - 0xc5a2, - 0xc5a3, - 0xc5a4, - 0xc5a5, - 0xc5a6, - 0xc5a7, - 0xc5a8, - 0xc5a9, - 0xc5aa, - 0xc5ab, - 0xc5ac, - 0xc5ad, - 0xc5ae, - 0xc5af, - 0xc5b0, - 0xc5b1, - 0xc5b2, - 0xc5b3, - 0xc5b4, - 0xc5b5, - 0xc5b6, - 0xc5b7, - 0xc5b8, - 0xc5b9, - 0xc5ba, - 0xc5bb, - 0xc5bc, - 0xc5bd, - 0xc5be, - 0xc5bf, - 0xc680, - 0xc681, - 0xc682, - 0xc683, - 0xc684, - 0xc685, - 0xc686, - 0xc687, - 0xc688, - 0xc689, - 0xc68a, - 0xc68b, - 0xc68c, - 0xc68d, - 0xc68e, - 0xc68f, - 0xc690, - 0xc691, - 0xc692, - 0xc693, - 0xc694, - 0xc695, - 0xc696, - 0xc697, - 0xc698, - 0xc699, - 0xc69a, - 0xc69b, - 0xc69c, - 0xc69d, - 0xc69e, - 0xc69f, - 0xc6a0, - 0xc6a1, - 0xc6a2, - 0xc6a3, - 0xc6a4, - 0xc6a5, - 0xc6a6, - 0xc6a7, - 0xc6a8, - 0xc6a9, - 0xc6aa, - 0xc6ab, - 0xc6ac, - 0xc6ad, - 0xc6ae, - 0xc6af, - 0xc6b0, - 0xc6b1, - 0xc6b2, - 0xc6b3, - 0xc6b4, - 0xc6b5, - 0xc6b6, - 0xc6b7, - 0xc6b8, - 0xc6b9, - 0xc6ba, - 0xc6bb, - 0xc6bc, - 0xc6bd, - 0xc6be, - 0xc6bf, - 0xc780, - 0xc781, - 0xc782, - 0xc783, - 0xc784, - 0xc785, - 0xc786, - 0xc787, - 0xc788, - 0xc789, - 0xc78a, - 0xc78b, - 0xc78c, - 0xc78d, - 0xc78e, - 0xc78f, - 0xc790, - 0xc791, - 0xc792, - 0xc793, - 0xc794, - 0xc795, - 0xc796, - 0xc797, - 0xc798, - 0xc799, - 0xc79a, - 0xc79b, - 0xc79c, - 0xc79d, - 0xc79e, - 0xc79f, - 0xc7a0, - 0xc7a1, - 0xc7a2, - 0xc7a3, - 0xc7a4, - 0xc7a5, - 0xc7a6, - 0xc7a7, - 0xc7a8, - 0xc7a9, - 0xc7aa, - 0xc7ab, - 0xc7ac, - 0xc7ad, - 0xc7ae, - 0xc7af, - 0xc7b0, - 0xc7b1, - 0xc7b2, - 0xc7b3, - 0xc7b4, - 0xc7b5, - 0xc7b6, - 0xc7b7, - 0xc7b8, - 0xc7b9, - 0xc7ba, - 0xc7bb, - 0xc7bc, - 0xc7bd, - 0xc7be, - 0xc7bf, - 0xc880, - 0xc881, - 0xc882, - 0xc883, - 0xc884, - 0xc885, - 0xc886, - 0xc887, - 0xc888, - 0xc889, - 0xc88a, - 0xc88b, - 0xc88c, - 0xc88d, - 0xc88e, - 0xc88f, - 0xc890, - 0xc891, - 0xc892, - 0xc893, - 0xc894, - 0xc895, - 0xc896, - 0xc897, - 0xc898, - 0xc899, - 0xc89a, - 0xc89b, - 0xc89c, - 0xc89d, - 0xc89e, - 0xc89f, - 0xc8a0, - 0xc8a1, - 0xc8a2, - 0xc8a3, - 0xc8a4, - 0xc8a5, - 0xc8a6, - 0xc8a7, - 0xc8a8, - 0xc8a9, - 0xc8aa, - 0xc8ab, - 0xc8ac, - 0xc8ad, - 0xc8ae, - 0xc8af, - 0xc8b0, - 0xc8b1, - 0xc8b2, - 0xc8b3, - 0xc8b4, - 0xc8b5, - 0xc8b6, - 0xc8b7, - 0xc8b8, - 0xc8b9, - 0xc8ba, - 0xc8bb, - 0xc8bc, - 0xc8bd, - 0xc8be, - 0xc8bf, - 0xc980, - 0xc981, - 0xc982, - 0xc983, - 0xc984, - 0xc985, - 0xc986, - 0xc987, - 0xc988, - 0xc989, - 0xc98a, - 0xc98b, - 0xc98c, - 0xc98d, - 0xc98e, - 0xc98f, - 0xc990, - 0xc991, - 0xc992, - 0xc993, - 0xc994, - 0xc995, - 0xc996, - 0xc997, - 0xc998, - 0xc999, - 0xc99a, - 0xc99b, - 0xc99c, - 0xc99d, - 0xc99e, - 0xc99f, - 0xc9a0, - 0xc9a1, - 0xc9a2, - 0xc9a3, - 0xc9a4, - 0xc9a5, - 0xc9a6, - 0xc9a7, - 0xc9a8, - 0xc9a9, - 0xc9aa, - 0xc9ab, - 0xc9ac, - 0xc9ad, - 0xc9ae, - 0xc9af, - 0xc9b0, - 0xc9b1, - 0xc9b2, - 0xc9b3, - 0xc9b4, - 0xc9b5, - 0xc9b6, - 0xc9b7, - 0xc9b8, - 0xc9b9, - 0xc9ba, - 0xc9bb, - 0xc9bc, - 0xc9bd, - 0xc9be, - 0xc9bf, - 0xca80, - 0xca81, - 0xca82, - 0xca83, - 0xca84, - 0xca85, - 0xca86, - 0xca87, - 0xca88, - 0xca89, - 0xca8a, - 0xca8b, - 0xca8c, - 0xca8d, - 0xca8e, - 0xca8f, - 0xca90, - 0xca91, - 0xca92, - 0xca93, - 0xca94, - 0xca95, - 0xca96, - 0xca97, - 0xca98, - 0xca99, - 0xca9a, - 0xca9b, - 0xca9c, - 0xca9d, - 0xca9e, - 0xca9f, - 0xcaa0, - 0xcaa1, - 0xcaa2, - 0xcaa3, - 0xcaa4, - 0xcaa5, - 0xcaa6, - 0xcaa7, - 0xcaa8, - 0xcaa9, - 0xcaaa, - 0xcaab, - 0xcaac, - 0xcaad, - 0xcaae, - 0xcaaf, - 0xcab0, - 0xcab1, - 0xcab2, - 0xcab3, - 0xcab4, - 0xcab5, - 0xcab6, - 0xcab7, - 0xcab8, - 0xcab9, - 0xcaba, - 0xcabb, - 0xcabc, - 0xcabd, - 0xcabe, - 0xcabf, - 0xcb80, - 0xcb81, - 0xcb82, - 0xcb83, - 0xcb84, - 0xcb85, - 0xcb86, - 0xcb87, - 0xcb88, - 0xcb89, - 0xcb8a, - 0xcb8b, - 0xcb8c, - 0xcb8d, - 0xcb8e, - 0xcb8f, - 0xcb90, - 0xcb91, - 0xcb92, - 0xcb93, - 0xcb94, - 0xcb95, - 0xcb96, - 0xcb97, - 0xcb98, - 0xcb99, - 0xcb9a, - 0xcb9b, - 0xcb9c, - 0xcb9d, - 0xcb9e, - 0xcb9f, - 0xcba0, - 0xcba1, - 0xcba2, - 0xcba3, - 0xcba4, - 0xcba5, - 0xcba6, - 0xcba7, - 0xcba8, - 0xcba9, - 0xcbaa, - 0xcbab, - 0xcbac, - 0xcbad, - 0xcbae, - 0xcbaf, - 0xcbb0, - 0xcbb1, - 0xcbb2, - 0xcbb3, - 0xcbb4, - 0xcbb5, - 0xcbb6, - 0xcbb7, - 0xcbb8, - 0xcbb9, - 0xcbba, - 0xcbbb, - 0xcbbc, - 0xcbbd, - 0xcbbe, - 0xcbbf, - 0xcc80, - 0xcc81, - 0xcc82, - 0xcc83, - 0xcc84, - 0xcc85, - 0xcc86, - 0xcc87, - 0xcc88, - 0xcc89, - 0xcc8a, - 0xcc8b, - 0xcc8c, - 0xcc8d, - 0xcc8e, - 0xcc8f, - 0xcc90, - 0xcc91, - 0xcc92, - 0xcc93, - 0xcc94, - 0xcc95, - 0xcc96, - 0xcc97, - 0xcc98, - 0xcc99, - 0xcc9a, - 0xcc9b, - 0xcc9c, - 0xcc9d, - 0xcc9e, - 0xcc9f, - 0xcca0, - 0xcca1, - 0xcca2, - 0xcca3, - 0xcca4, - 0xcca5, - 0xcca6, - 0xcca7, - 0xcca8, - 0xcca9, - 0xccaa, - 0xccab, - 0xccac, - 0xccad, - 0xccae, - 0xccaf, - 0xccb0, - 0xccb1, - 0xccb2, - 0xccb3, - 0xccb4, - 0xccb5, - 0xccb6, - 0xccb7, - 0xccb8, - 0xccb9, - 0xccba, - 0xccbb, - 0xccbc, - 0xccbd, - 0xccbe, - 0xccbf, - 0xcd80, - 0xcd81, - 0xcd82, - 0xcd83, - 0xcd84, - 0xcd85, - 0xcd86, - 0xcd87, - 0xcd88, - 0xcd89, - 0xcd8a, - 0xcd8b, - 0xcd8c, - 0xcd8d, - 0xcd8e, - 0xcd8f, - 0xcd90, - 0xcd91, - 0xcd92, - 0xcd93, - 0xcd94, - 0xcd95, - 0xcd96, - 0xcd97, - 0xcd98, - 0xcd99, - 0xcd9a, - 0xcd9b, - 0xcd9c, - 0xcd9d, - 0xcd9e, - 0xcd9f, - 0xcda0, - 0xcda1, - 0xcda2, - 0xcda3, - 0xcda4, - 0xcda5, - 0xcda6, - 0xcda7, - 0xcda8, - 0xcda9, - 0xcdaa, - 0xcdab, - 0xcdac, - 0xcdad, - 0xcdae, - 0xcdaf, - 0xcdb0, - 0xcdb1, - 0xcdb2, - 0xcdb3, - 0xcdb4, - 0xcdb5, - 0xcdb6, - 0xcdb7, - 0xcdb8, - 0xcdb9, - 0xcdba, - 0xcdbb, - 0xcdbc, - 0xcdbd, - 0xcdbe, - 0xcdbf, - 0xce80, - 0xce81, - 0xce82, - 0xce83, - 0xce84, - 0xce85, - 0xce86, - 0xce87, - 0xce88, - 0xce89, - 0xce8a, - 0xce8b, - 0xce8c, - 0xce8d, - 0xce8e, - 0xce8f, - 0xce90, - 0xce91, - 0xce92, - 0xce93, - 0xce94, - 0xce95, - 0xce96, - 0xce97, - 0xce98, - 0xce99, - 0xce9a, - 0xce9b, - 0xce9c, - 0xce9d, - 0xce9e, - 0xce9f, - 0xcea0, - 0xcea1, - 0xcea2, - 0xcea3, - 0xcea4, - 0xcea5, - 0xcea6, - 0xcea7, - 0xcea8, - 0xcea9, - 0xceaa, - 0xceab, - 0xceac, - 0xcead, - 0xceae, - 0xceaf, - 0xceb0, - 0xceb1, - 0xceb2, - 0xceb3, - 0xceb4, - 0xceb5, - 0xceb6, - 0xceb7, - 0xceb8, - 0xceb9, - 0xceba, - 0xcebb, - 0xcebc, - 0xcebd, - 0xcebe, - 0xcebf, - 0xcf80, - 0xcf81, - 0xcf82, - 0xcf83, - 0xcf84, - 0xcf85, - 0xcf86, - 0xcf87, - 0xcf88, - 0xcf89, - 0xcf8a, - 0xcf8b, - 0xcf8c, - 0xcf8d, - 0xcf8e, - 0xcf8f, - 0xcf90, - 0xcf91, - 0xcf92, - 0xcf93, - 0xcf94, - 0xcf95, - 0xcf96, - 0xcf97, - 0xcf98, - 0xcf99, - 0xcf9a, - 0xcf9b, - 0xcf9c, - 0xcf9d, - 0xcf9e, - 0xcf9f, - 0xcfa0, - 0xcfa1, - 0xcfa2, - 0xcfa3, - 0xcfa4, - 0xcfa5, - 0xcfa6, - 0xcfa7, - 0xcfa8, - 0xcfa9, - 0xcfaa, - 0xcfab, - 0xcfac, - 0xcfad, - 0xcfae, - 0xcfaf, - 0xcfb0, - 0xcfb1, - 0xcfb2, - 0xcfb3, - 0xcfb4, - 0xcfb5, - 0xcfb6, - 0xcfb7, - 0xcfb8, - 0xcfb9, - 0xcfba, - 0xcfbb, - 0xcfbc, - 0xcfbd, - 0xcfbe, - 0xcfbf, - 0xd080, - 0xd081, - 0xd082, - 0xd083, - 0xd084, - 0xd085, - 0xd086, - 0xd087, - 0xd088, - 0xd089, - 0xd08a, - 0xd08b, - 0xd08c, - 0xd08d, - 0xd08e, - 0xd08f, - 0xd090, - 0xd091, - 0xd092, - 0xd093, - 0xd094, - 0xd095, - 0xd096, - 0xd097, - 0xd098, - 0xd099, - 0xd09a, - 0xd09b, - 0xd09c, - 0xd09d, - 0xd09e, - 0xd09f, - 0xd0a0, - 0xd0a1, - 0xd0a2, - 0xd0a3, - 0xd0a4, - 0xd0a5, - 0xd0a6, - 0xd0a7, - 0xd0a8, - 0xd0a9, - 0xd0aa, - 0xd0ab, - 0xd0ac, - 0xd0ad, - 0xd0ae, - 0xd0af, - 0xd0b0, - 0xd0b1, - 0xd0b2, - 0xd0b3, - 0xd0b4, - 0xd0b5, - 0xd0b6, - 0xd0b7, - 0xd0b8, - 0xd0b9, - 0xd0ba, - 0xd0bb, - 0xd0bc, - 0xd0bd, - 0xd0be, - 0xd0bf, - 0xd180, - 0xd181, - 0xd182, - 0xd183, - 0xd184, - 0xd185, - 0xd186, - 0xd187, - 0xd188, - 0xd189, - 0xd18a, - 0xd18b, - 0xd18c, - 0xd18d, - 0xd18e, - 0xd18f, - 0xd190, - 0xd191, - 0xd192, - 0xd193, - 0xd194, - 0xd195, - 0xd196, - 0xd197, - 0xd198, - 0xd199, - 0xd19a, - 0xd19b, - 0xd19c, - 0xd19d, - 0xd19e, - 0xd19f, - 0xd1a0, - 0xd1a1, - 0xd1a2, - 0xd1a3, - 0xd1a4, - 0xd1a5, - 0xd1a6, - 0xd1a7, - 0xd1a8, - 0xd1a9, - 0xd1aa, - 0xd1ab, - 0xd1ac, - 0xd1ad, - 0xd1ae, - 0xd1af, - 0xd1b0, - 0xd1b1, - 0xd1b2, - 0xd1b3, - 0xd1b4, - 0xd1b5, - 0xd1b6, - 0xd1b7, - 0xd1b8, - 0xd1b9, - 0xd1ba, - 0xd1bb, - 0xd1bc, - 0xd1bd, - 0xd1be, - 0xd1bf, - 0xd280, - 0xd281, - 0xd282, - 0xd283, - 0xd284, - 0xd285, - 0xd286, - 0xd287, - 0xd288, - 0xd289, - 0xd28a, - 0xd28b, - 0xd28c, - 0xd28d, - 0xd28e, - 0xd28f, - 0xd290, - 0xd291, - 0xd292, - 0xd293, - 0xd294, - 0xd295, - 0xd296, - 0xd297, - 0xd298, - 0xd299, - 0xd29a, - 0xd29b, - 0xd29c, - 0xd29d, - 0xd29e, - 0xd29f, - 0xd2a0, - 0xd2a1, - 0xd2a2, - 0xd2a3, - 0xd2a4, - 0xd2a5, - 0xd2a6, - 0xd2a7, - 0xd2a8, - 0xd2a9, - 0xd2aa, - 0xd2ab, - 0xd2ac, - 0xd2ad, - 0xd2ae, - 0xd2af, - 0xd2b0, - 0xd2b1, - 0xd2b2, - 0xd2b3, - 0xd2b4, - 0xd2b5, - 0xd2b6, - 0xd2b7, - 0xd2b8, - 0xd2b9, - 0xd2ba, - 0xd2bb, - 0xd2bc, - 0xd2bd, - 0xd2be, - 0xd2bf, - 0xd380, - 0xd381, - 0xd382, - 0xd383, - 0xd384, - 0xd385, - 0xd386, - 0xd387, - 0xd388, - 0xd389, - 0xd38a, - 0xd38b, - 0xd38c, - 0xd38d, - 0xd38e, - 0xd38f, - 0xd390, - 0xd391, - 0xd392, - 0xd393, - 0xd394, - 0xd395, - 0xd396, - 0xd397, - 0xd398, - 0xd399, - 0xd39a, - 0xd39b, - 0xd39c, - 0xd39d, - 0xd39e, - 0xd39f, - 0xd3a0, - 0xd3a1, - 0xd3a2, - 0xd3a3, - 0xd3a4, - 0xd3a5, - 0xd3a6, - 0xd3a7, - 0xd3a8, - 0xd3a9, - 0xd3aa, - 0xd3ab, - 0xd3ac, - 0xd3ad, - 0xd3ae, - 0xd3af, - 0xd3b0, - 0xd3b1, - 0xd3b2, - 0xd3b3, - 0xd3b4, - 0xd3b5, - 0xd3b6, - 0xd3b7, - 0xd3b8, - 0xd3b9, - 0xd3ba, - 0xd3bb, - 0xd3bc, - 0xd3bd, - 0xd3be, - 0xd3bf, - 0xd480, - 0xd481, - 0xd482, - 0xd483, - 0xd484, - 0xd485, - 0xd486, - 0xd487, - 0xd488, - 0xd489, - 0xd48a, - 0xd48b, - 0xd48c, - 0xd48d, - 0xd48e, - 0xd48f, - 0xd490, - 0xd491, - 0xd492, - 0xd493, - 0xd494, - 0xd495, - 0xd496, - 0xd497, - 0xd498, - 0xd499, - 0xd49a, - 0xd49b, - 0xd49c, - 0xd49d, - 0xd49e, - 0xd49f, - 0xd4a0, - 0xd4a1, - 0xd4a2, - 0xd4a3, - 0xd4a4, - 0xd4a5, - 0xd4a6, - 0xd4a7, - 0xd4a8, - 0xd4a9, - 0xd4aa, - 0xd4ab, - 0xd4ac, - 0xd4ad, - 0xd4ae, - 0xd4af, - 0xd4b0, - 0xd4b1, - 0xd4b2, - 0xd4b3, - 0xd4b4, - 0xd4b5, - 0xd4b6, - 0xd4b7, - 0xd4b8, - 0xd4b9, - 0xd4ba, - 0xd4bb, - 0xd4bc, - 0xd4bd, - 0xd4be, - 0xd4bf, - 0xd580, - 0xd581, - 0xd582, - 0xd583, - 0xd584, - 0xd585, - 0xd586, - 0xd587, - 0xd588, - 0xd589, - 0xd58a, - 0xd58b, - 0xd58c, - 0xd58d, - 0xd58e, - 0xd58f, - 0xd590, - 0xd591, - 0xd592, - 0xd593, - 0xd594, - 0xd595, - 0xd596, - 0xd597, - 0xd598, - 0xd599, - 0xd59a, - 0xd59b, - 0xd59c, - 0xd59d, - 0xd59e, - 0xd59f, - 0xd5a0, - 0xd5a1, - 0xd5a2, - 0xd5a3, - 0xd5a4, - 0xd5a5, - 0xd5a6, - 0xd5a7, - 0xd5a8, - 0xd5a9, - 0xd5aa, - 0xd5ab, - 0xd5ac, - 0xd5ad, - 0xd5ae, - 0xd5af, - 0xd5b0, - 0xd5b1, - 0xd5b2, - 0xd5b3, - 0xd5b4, - 0xd5b5, - 0xd5b6, - 0xd5b7, - 0xd5b8, - 0xd5b9, - 0xd5ba, - 0xd5bb, - 0xd5bc, - 0xd5bd, - 0xd5be, - 0xd5bf, - 0xd680, - 0xd681, - 0xd682, - 0xd683, - 0xd684, - 0xd685, - 0xd686, - 0xd687, - 0xd688, - 0xd689, - 0xd68a, - 0xd68b, - 0xd68c, - 0xd68d, - 0xd68e, - 0xd68f, - 0xd690, - 0xd691, - 0xd692, - 0xd693, - 0xd694, - 0xd695, - 0xd696, - 0xd697, - 0xd698, - 0xd699, - 0xd69a, - 0xd69b, - 0xd69c, - 0xd69d, - 0xd69e, - 0xd69f, - 0xd6a0, - 0xd6a1, - 0xd6a2, - 0xd6a3, - 0xd6a4, - 0xd6a5, - 0xd6a6, - 0xd6a7, - 0xd6a8, - 0xd6a9, - 0xd6aa, - 0xd6ab, - 0xd6ac, - 0xd6ad, - 0xd6ae, - 0xd6af, - 0xd6b0, - 0xd6b1, - 0xd6b2, - 0xd6b3, - 0xd6b4, - 0xd6b5, - 0xd6b6, - 0xd6b7, - 0xd6b8, - 0xd6b9, - 0xd6ba, - 0xd6bb, - 0xd6bc, - 0xd6bd, - 0xd6be, - 0xd6bf, - 0xd780, - 0xd781, - 0xd782, - 0xd783, - 0xd784, - 0xd785, - 0xd786, - 0xd787, - 0xd788, - 0xd789, - 0xd78a, - 0xd78b, - 0xd78c, - 0xd78d, - 0xd78e, - 0xd78f, - 0xd790, - 0xd791, - 0xd792, - 0xd793, - 0xd794, - 0xd795, - 0xd796, - 0xd797, - 0xd798, - 0xd799, - 0xd79a, - 0xd79b, - 0xd79c, - 0xd79d, - 0xd79e, - 0xd79f, - 0xd7a0, - 0xd7a1, - 0xd7a2, - 0xd7a3, - 0xd7a4, - 0xd7a5, - 0xd7a6, - 0xd7a7, - 0xd7a8, - 0xd7a9, - 0xd7aa, - 0xd7ab, - 0xd7ac, - 0xd7ad, - 0xd7ae, - 0xd7af, - 0xd7b0, - 0xd7b1, - 0xd7b2, - 0xd7b3, - 0xd7b4, - 0xd7b5, - 0xd7b6, - 0xd7b7, - 0xd7b8, - 0xd7b9, - 0xd7ba, - 0xd7bb, - 0xd7bc, - 0xd7bd, - 0xd7be, - 0xd7bf, - 0xd880, - 0xd881, - 0xd882, - 0xd883, - 0xd884, - 0xd885, - 0xd886, - 0xd887, - 0xd888, - 0xd889, - 0xd88a, - 0xd88b, - 0xd88c, - 0xd88d, - 0xd88e, - 0xd88f, - 0xd890, - 0xd891, - 0xd892, - 0xd893, - 0xd894, - 0xd895, - 0xd896, - 0xd897, - 0xd898, - 0xd899, - 0xd89a, - 0xd89b, - 0xd89c, - 0xd89d, - 0xd89e, - 0xd89f, - 0xd8a0, - 0xd8a1, - 0xd8a2, - 0xd8a3, - 0xd8a4, - 0xd8a5, - 0xd8a6, - 0xd8a7, - 0xd8a8, - 0xd8a9, - 0xd8aa, - 0xd8ab, - 0xd8ac, - 0xd8ad, - 0xd8ae, - 0xd8af, - 0xd8b0, - 0xd8b1, - 0xd8b2, - 0xd8b3, - 0xd8b4, - 0xd8b5, - 0xd8b6, - 0xd8b7, - 0xd8b8, - 0xd8b9, - 0xd8ba, - 0xd8bb, - 0xd8bc, - 0xd8bd, - 0xd8be, - 0xd8bf, - 0xd980, - 0xd981, - 0xd982, - 0xd983, - 0xd984, - 0xd985, - 0xd986, - 0xd987, - 0xd988, - 0xd989, - 0xd98a, - 0xd98b, - 0xd98c, - 0xd98d, - 0xd98e, - 0xd98f, - 0xd990, - 0xd991, - 0xd992, - 0xd993, - 0xd994, - 0xd995, - 0xd996, - 0xd997, - 0xd998, - 0xd999, - 0xd99a, - 0xd99b, - 0xd99c, - 0xd99d, - 0xd99e, - 0xd99f, - 0xd9a0, - 0xd9a1, - 0xd9a2, - 0xd9a3, - 0xd9a4, - 0xd9a5, - 0xd9a6, - 0xd9a7, - 0xd9a8, - 0xd9a9, - 0xd9aa, - 0xd9ab, - 0xd9ac, - 0xd9ad, - 0xd9ae, - 0xd9af, - 0xd9b0, - 0xd9b1, - 0xd9b2, - 0xd9b3, - 0xd9b4, - 0xd9b5, - 0xd9b6, - 0xd9b7, - 0xd9b8, - 0xd9b9, - 0xd9ba, - 0xd9bb, - 0xd9bc, - 0xd9bd, - 0xd9be, - 0xd9bf, - 0xda80, - 0xda81, - 0xda82, - 0xda83, - 0xda84, - 0xda85, - 0xda86, - 0xda87, - 0xda88, - 0xda89, - 0xda8a, - 0xda8b, - 0xda8c, - 0xda8d, - 0xda8e, - 0xda8f, - 0xda90, - 0xda91, - 0xda92, - 0xda93, - 0xda94, - 0xda95, - 0xda96, - 0xda97, - 0xda98, - 0xda99, - 0xda9a, - 0xda9b, - 0xda9c, - 0xda9d, - 0xda9e, - 0xda9f, - 0xdaa0, - 0xdaa1, - 0xdaa2, - 0xdaa3, - 0xdaa4, - 0xdaa5, - 0xdaa6, - 0xdaa7, - 0xdaa8, - 0xdaa9, - 0xdaaa, - 0xdaab, - 0xdaac, - 0xdaad, - 0xdaae, - 0xdaaf, - 0xdab0, - 0xdab1, - 0xdab2, - 0xdab3, - 0xdab4, - 0xdab5, - 0xdab6, - 0xdab7, - 0xdab8, - 0xdab9, - 0xdaba, - 0xdabb, - 0xdabc, - 0xdabd, - 0xdabe, - 0xdabf, - 0xdb80, - 0xdb81, - 0xdb82, - 0xdb83, - 0xdb84, - 0xdb85, - 0xdb86, - 0xdb87, - 0xdb88, - 0xdb89, - 0xdb8a, - 0xdb8b, - 0xdb8c, - 0xdb8d, - 0xdb8e, - 0xdb8f, - 0xdb90, - 0xdb91, - 0xdb92, - 0xdb93, - 0xdb94, - 0xdb95, - 0xdb96, - 0xdb97, - 0xdb98, - 0xdb99, - 0xdb9a, - 0xdb9b, - 0xdb9c, - 0xdb9d, - 0xdb9e, - 0xdb9f, - 0xdba0, - 0xdba1, - 0xdba2, - 0xdba3, - 0xdba4, - 0xdba5, - 0xdba6, - 0xdba7, - 0xdba8, - 0xdba9, - 0xdbaa, - 0xdbab, - 0xdbac, - 0xdbad, - 0xdbae, - 0xdbaf, - 0xdbb0, - 0xdbb1, - 0xdbb2, - 0xdbb3, - 0xdbb4, - 0xdbb5, - 0xdbb6, - 0xdbb7, - 0xdbb8, - 0xdbb9, - 0xdbba, - 0xdbbb, - 0xdbbc, - 0xdbbd, - 0xdbbe, - 0xdbbf, - 0xdc80, - 0xdc81, - 0xdc82, - 0xdc83, - 0xdc84, - 0xdc85, - 0xdc86, - 0xdc87, - 0xdc88, - 0xdc89, - 0xdc8a, - 0xdc8b, - 0xdc8c, - 0xdc8d, - 0xdc8e, - 0xdc8f, - 0xdc90, - 0xdc91, - 0xdc92, - 0xdc93, - 0xdc94, - 0xdc95, - 0xdc96, - 0xdc97, - 0xdc98, - 0xdc99, - 0xdc9a, - 0xdc9b, - 0xdc9c, - 0xdc9d, - 0xdc9e, - 0xdc9f, - 0xdca0, - 0xdca1, - 0xdca2, - 0xdca3, - 0xdca4, - 0xdca5, - 0xdca6, - 0xdca7, - 0xdca8, - 0xdca9, - 0xdcaa, - 0xdcab, - 0xdcac, - 0xdcad, - 0xdcae, - 0xdcaf, - 0xdcb0, - 0xdcb1, - 0xdcb2, - 0xdcb3, - 0xdcb4, - 0xdcb5, - 0xdcb6, - 0xdcb7, - 0xdcb8, - 0xdcb9, - 0xdcba, - 0xdcbb, - 0xdcbc, - 0xdcbd, - 0xdcbe, - 0xdcbf, - 0xdd80, - 0xdd81, - 0xdd82, - 0xdd83, - 0xdd84, - 0xdd85, - 0xdd86, - 0xdd87, - 0xdd88, - 0xdd89, - 0xdd8a, - 0xdd8b, - 0xdd8c, - 0xdd8d, - 0xdd8e, - 0xdd8f, - 0xdd90, - 0xdd91, - 0xdd92, - 0xdd93, - 0xdd94, - 0xdd95, - 0xdd96, - 0xdd97, - 0xdd98, - 0xdd99, - 0xdd9a, - 0xdd9b, - 0xdd9c, - 0xdd9d, - 0xdd9e, - 0xdd9f, - 0xdda0, - 0xdda1, - 0xdda2, - 0xdda3, - 0xdda4, - 0xdda5, - 0xdda6, - 0xdda7, - 0xdda8, - 0xdda9, - 0xddaa, - 0xddab, - 0xddac, - 0xddad, - 0xddae, - 0xddaf, - 0xddb0, - 0xddb1, - 0xddb2, - 0xddb3, - 0xddb4, - 0xddb5, - 0xddb6, - 0xddb7, - 0xddb8, - 0xddb9, - 0xddba, - 0xddbb, - 0xddbc, - 0xddbd, - 0xddbe, - 0xddbf, - 0xde80, - 0xde81, - 0xde82, - 0xde83, - 0xde84, - 0xde85, - 0xde86, - 0xde87, - 0xde88, - 0xde89, - 0xde8a, - 0xde8b, - 0xde8c, - 0xde8d, - 0xde8e, - 0xde8f, - 0xde90, - 0xde91, - 0xde92, - 0xde93, - 0xde94, - 0xde95, - 0xde96, - 0xde97, - 0xde98, - 0xde99, - 0xde9a, - 0xde9b, - 0xde9c, - 0xde9d, - 0xde9e, - 0xde9f, - 0xdea0, - 0xdea1, - 0xdea2, - 0xdea3, - 0xdea4, - 0xdea5, - 0xdea6, - 0xdea7, - 0xdea8, - 0xdea9, - 0xdeaa, - 0xdeab, - 0xdeac, - 0xdead, - 0xdeae, - 0xdeaf, - 0xdeb0, - 0xdeb1, - 0xdeb2, - 0xdeb3, - 0xdeb4, - 0xdeb5, - 0xdeb6, - 0xdeb7, - 0xdeb8, - 0xdeb9, - 0xdeba, - 0xdebb, - 0xdebc, - 0xdebd, - 0xdebe, - 0xdebf, - 0xdf80, - 0xdf81, - 0xdf82, - 0xdf83, - 0xdf84, - 0xdf85, - 0xdf86, - 0xdf87, - 0xdf88, - 0xdf89, - 0xdf8a, - 0xdf8b, - 0xdf8c, - 0xdf8d, - 0xdf8e, - 0xdf8f, - 0xdf90, - 0xdf91, - 0xdf92, - 0xdf93, - 0xdf94, - 0xdf95, - 0xdf96, - 0xdf97, - 0xdf98, - 0xdf99, - 0xdf9a, - 0xdf9b, - 0xdf9c, - 0xdf9d, - 0xdf9e, - 0xdf9f, - 0xdfa0, - 0xdfa1, - 0xdfa2, - 0xdfa3, - 0xdfa4, - 0xdfa5, - 0xdfa6, - 0xdfa7, - 0xdfa8, - 0xdfa9, - 0xdfaa, - 0xdfab, - 0xdfac, - 0xdfad, - 0xdfae, - 0xdfaf, - 0xdfb0, - 0xdfb1, - 0xdfb2, - 0xdfb3, - 0xdfb4, - 0xdfb5, - 0xdfb6, - 0xdfb7, - 0xdfb8, - 0xdfb9, - 0xdfba, - 0xdfbb, - 0xdfbc, - 0xdfbd, - 0xdfbe, - 0xdfbf, - 0xe0a080, - 0xe0a081, - 0xe0a082, - 0xe0a083, - 0xe0a084, - 0xe0a085, - 0xe0a086, - 0xe0a087, - 0xe0a088, - 0xe0a089, - 0xe0a08a, - 0xe0a08b, - 0xe0a08c, - 0xe0a08d, - 0xe0a08e, - 0xe0a08f, - 0xe0a090, - 0xe0a091, - 0xe0a092, - 0xe0a093, - 0xe0a094, - 0xe0a095, - 0xe0a096, - 0xe0a097, - 0xe0a098, - 0xe0a099, - 0xe0a09a, - 0xe0a09b, - 0xe0a09c, - 0xe0a09d, - 0xe0a09e, - 0xe0a09f, - 0xe0a0a0, - 0xe0a0a1, - 0xe0a0a2, - 0xe0a0a3, - 0xe0a0a4, - 0xe0a0a5, - 0xe0a0a6, - 0xe0a0a7, - 0xe0a0a8, - 0xe0a0a9, - 0xe0a0aa, - 0xe0a0ab, - 0xe0a0ac, - 0xe0a0ad, - 0xe0a0ae, - 0xe0a0af, - 0xe0a0b0, - 0xe0a0b1, - 0xe0a0b2, - 0xe0a0b3, - 0xe0a0b4, - 0xe0a0b5, - 0xe0a0b6, - 0xe0a0b7, - 0xe0a0b8, - 0xe0a0b9, - 0xe0a0ba, - 0xe0a0bb, - 0xe0a0bc, - 0xe0a0bd, - 0xe0a0be, - 0xe0a0bf, - 0xe0a180, - 0xe0a181, - 0xe0a182, - 0xe0a183, - 0xe0a184, - 0xe0a185, - 0xe0a186, - 0xe0a187, - 0xe0a188, - 0xe0a189, - 0xe0a18a, - 0xe0a18b, - 0xe0a18c, - 0xe0a18d, - 0xe0a18e, - 0xe0a18f, - 0xe0a190, - 0xe0a191, - 0xe0a192, - 0xe0a193, - 0xe0a194, - 0xe0a195, - 0xe0a196, - 0xe0a197, - 0xe0a198, - 0xe0a199, - 0xe0a19a, - 0xe0a19b, - 0xe0a19c, - 0xe0a19d, - 0xe0a19e, - 0xe0a19f, - 0xe0a1a0, - 0xe0a1a1, - 0xe0a1a2, - 0xe0a1a3, - 0xe0a1a4, - 0xe0a1a5, - 0xe0a1a6, - 0xe0a1a7, - 0xe0a1a8, - 0xe0a1a9, - 0xe0a1aa, - 0xe0a1ab, - 0xe0a1ac, - 0xe0a1ad, - 0xe0a1ae, - 0xe0a1af, - 0xe0a1b0, - 0xe0a1b1, - 0xe0a1b2, - 0xe0a1b3, - 0xe0a1b4, - 0xe0a1b5, - 0xe0a1b6, - 0xe0a1b7, - 0xe0a1b8, - 0xe0a1b9, - 0xe0a1ba, - 0xe0a1bb, - 0xe0a1bc, - 0xe0a1bd, - 0xe0a1be, - 0xe0a1bf, - 0xe0a280, - 0xe0a281, - 0xe0a282, - 0xe0a283, - 0xe0a284, - 0xe0a285, - 0xe0a286, - 0xe0a287, - 0xe0a288, - 0xe0a289, - 0xe0a28a, - 0xe0a28b, - 0xe0a28c, - 0xe0a28d, - 0xe0a28e, - 0xe0a28f, - 0xe0a290, - 0xe0a291, - 0xe0a292, - 0xe0a293, - 0xe0a294, - 0xe0a295, - 0xe0a296, - 0xe0a297, - 0xe0a298, - 0xe0a299, - 0xe0a29a, - 0xe0a29b, - 0xe0a29c, - 0xe0a29d, - 0xe0a29e, - 0xe0a29f, - 0xe0a2a0, - 0xe0a2a1, - 0xe0a2a2, - 0xe0a2a3, - 0xe0a2a4, - 0xe0a2a5, - 0xe0a2a6, - 0xe0a2a7, - 0xe0a2a8, - 0xe0a2a9, - 0xe0a2aa, - 0xe0a2ab, - 0xe0a2ac, - 0xe0a2ad, - 0xe0a2ae, - 0xe0a2af, - 0xe0a2b0, - 0xe0a2b1, - 0xe0a2b2, - 0xe0a2b3, - 0xe0a2b4, - 0xe0a2b5, - 0xe0a2b6, - 0xe0a2b7, - 0xe0a2b8, - 0xe0a2b9, - 0xe0a2ba, - 0xe0a2bb, - 0xe0a2bc, - 0xe0a2bd, - 0xe0a2be, - 0xe0a2bf, - 0xe0a380, - 0xe0a381, - 0xe0a382, - 0xe0a383, - 0xe0a384, - 0xe0a385, - 0xe0a386, - 0xe0a387, - 0xe0a388, - 0xe0a389, - 0xe0a38a, - 0xe0a38b, - 0xe0a38c, - 0xe0a38d, - 0xe0a38e, - 0xe0a38f, - 0xe0a390, - 0xe0a391, - 0xe0a392, - 0xe0a393, - 0xe0a394, - 0xe0a395, - 0xe0a396, - 0xe0a397, - 0xe0a398, - 0xe0a399, - 0xe0a39a, - 0xe0a39b, - 0xe0a39c, - 0xe0a39d, - 0xe0a39e, - 0xe0a39f, - 0xe0a3a0, - 0xe0a3a1, - 0xe0a3a2, - 0xe0a3a3, - 0xe0a3a4, - 0xe0a3a5, - 0xe0a3a6, - 0xe0a3a7, - 0xe0a3a8, - 0xe0a3a9, - 0xe0a3aa, - 0xe0a3ab, - 0xe0a3ac, - 0xe0a3ad, - 0xe0a3ae, - 0xe0a3af, - 0xe0a3b0, - 0xe0a3b1, - 0xe0a3b2, - 0xe0a3b3, - 0xe0a3b4, - 0xe0a3b5, - 0xe0a3b6, - 0xe0a3b7, - 0xe0a3b8, - 0xe0a3b9, - 0xe0a3ba, - 0xe0a3bb, - 0xe0a3bc, - 0xe0a3bd, - 0xe0a3be, - 0xe0a3bf, - 0xe0a480, - 0xe0a481, - 0xe0a482, - 0xe0a483, - 0xe0a484, - 0xe0a485, - 0xe0a486, - 0xe0a487, - 0xe0a488, - 0xe0a489, - 0xe0a48a, - 0xe0a48b, - 0xe0a48c, - 0xe0a48d, - 0xe0a48e, - 0xe0a48f, - 0xe0a490, - 0xe0a491, - 0xe0a492, - 0xe0a493, - 0xe0a494, - 0xe0a495, - 0xe0a496, - 0xe0a497, - 0xe0a498, - 0xe0a499, - 0xe0a49a, - 0xe0a49b, - 0xe0a49c, - 0xe0a49d, - 0xe0a49e, - 0xe0a49f, - 0xe0a4a0, - 0xe0a4a1, - 0xe0a4a2, - 0xe0a4a3, - 0xe0a4a4, - 0xe0a4a5, - 0xe0a4a6, - 0xe0a4a7, - 0xe0a4a8, - 0xe0a4a9, - 0xe0a4aa, - 0xe0a4ab, - 0xe0a4ac, - 0xe0a4ad, - 0xe0a4ae, - 0xe0a4af, - 0xe0a4b0, - 0xe0a4b1, - 0xe0a4b2, - 0xe0a4b3, - 0xe0a4b4, - 0xe0a4b5, - 0xe0a4b6, - 0xe0a4b7, - 0xe0a4b8, - 0xe0a4b9, - 0xe0a4ba, - 0xe0a4bb, - 0xe0a4bc, - 0xe0a4bd, - 0xe0a4be, - 0xe0a4bf, - 0xe0a580, - 0xe0a581, - 0xe0a582, - 0xe0a583, - 0xe0a584, - 0xe0a585, - 0xe0a586, - 0xe0a587, - 0xe0a588, - 0xe0a589, - 0xe0a58a, - 0xe0a58b, - 0xe0a58c, - 0xe0a58d, - 0xe0a58e, - 0xe0a58f, - 0xe0a590, - 0xe0a591, - 0xe0a592, - 0xe0a593, - 0xe0a594, - 0xe0a595, - 0xe0a596, - 0xe0a597, - 0xe0a598, - 0xe0a599, - 0xe0a59a, - 0xe0a59b, - 0xe0a59c, - 0xe0a59d, - 0xe0a59e, - 0xe0a59f, - 0xe0a5a0, - 0xe0a5a1, - 0xe0a5a2, - 0xe0a5a3, - 0xe0a5a4, - 0xe0a5a5, - 0xe0a5a6, - 0xe0a5a7, - 0xe0a5a8, - 0xe0a5a9, - 0xe0a5aa, - 0xe0a5ab, - 0xe0a5ac, - 0xe0a5ad, - 0xe0a5ae, - 0xe0a5af, - 0xe0a5b0, - 0xe0a5b1, - 0xe0a5b2, - 0xe0a5b3, - 0xe0a5b4, - 0xe0a5b5, - 0xe0a5b6, - 0xe0a5b7, - 0xe0a5b8, - 0xe0a5b9, - 0xe0a5ba, - 0xe0a5bb, - 0xe0a5bc, - 0xe0a5bd, - 0xe0a5be, - 0xe0a5bf, - 0xe0a680, - 0xe0a681, - 0xe0a682, - 0xe0a683, - 0xe0a684, - 0xe0a685, - 0xe0a686, - 0xe0a687, - 0xe0a688, - 0xe0a689, - 0xe0a68a, - 0xe0a68b, - 0xe0a68c, - 0xe0a68d, - 0xe0a68e, - 0xe0a68f, - 0xe0a690, - 0xe0a691, - 0xe0a692, - 0xe0a693, - 0xe0a694, - 0xe0a695, - 0xe0a696, - 0xe0a697, - 0xe0a698, - 0xe0a699, - 0xe0a69a, - 0xe0a69b, - 0xe0a69c, - 0xe0a69d, - 0xe0a69e, - 0xe0a69f, - 0xe0a6a0, - 0xe0a6a1, - 0xe0a6a2, - 0xe0a6a3, - 0xe0a6a4, - 0xe0a6a5, - 0xe0a6a6, - 0xe0a6a7, - 0xe0a6a8, - 0xe0a6a9, - 0xe0a6aa, - 0xe0a6ab, - 0xe0a6ac, - 0xe0a6ad, - 0xe0a6ae, - 0xe0a6af, - 0xe0a6b0, - 0xe0a6b1, - 0xe0a6b2, - 0xe0a6b3, - 0xe0a6b4, - 0xe0a6b5, - 0xe0a6b6, - 0xe0a6b7, - 0xe0a6b8, - 0xe0a6b9, - 0xe0a6ba, - 0xe0a6bb, - 0xe0a6bc, - 0xe0a6bd, - 0xe0a6be, - 0xe0a6bf, - 0xe0a780, - 0xe0a781, - 0xe0a782, - 0xe0a783, - 0xe0a784, - 0xe0a785, - 0xe0a786, - 0xe0a787, - 0xe0a788, - 0xe0a789, - 0xe0a78a, - 0xe0a78b, - 0xe0a78c, - 0xe0a78d, - 0xe0a78e, - 0xe0a78f, - 0xe0a790, - 0xe0a791, - 0xe0a792, - 0xe0a793, - 0xe0a794, - 0xe0a795, - 0xe0a796, - 0xe0a797, - 0xe0a798, - 0xe0a799, - 0xe0a79a, - 0xe0a79b, - 0xe0a79c, - 0xe0a79d, - 0xe0a79e, - 0xe0a79f, - 0xe0a7a0, - 0xe0a7a1, - 0xe0a7a2, - 0xe0a7a3, - 0xe0a7a4, - 0xe0a7a5, - 0xe0a7a6, - 0xe0a7a7, - 0xe0a7a8, - 0xe0a7a9, - 0xe0a7aa, - 0xe0a7ab, - 0xe0a7ac, - 0xe0a7ad, - 0xe0a7ae, - 0xe0a7af, - 0xe0a7b0, - 0xe0a7b1, - 0xe0a7b2, - 0xe0a7b3, - 0xe0a7b4, - 0xe0a7b5, - 0xe0a7b6, - 0xe0a7b7, - 0xe0a7b8, - 0xe0a7b9, - 0xe0a7ba, - 0xe0a7bb, - 0xe0a7bc, - 0xe0a7bd, - 0xe0a7be, - 0xe0a7bf, - 0xe0a880, - 0xe0a881, - 0xe0a882, - 0xe0a883, - 0xe0a884, - 0xe0a885, - 0xe0a886, - 0xe0a887, - 0xe0a888, - 0xe0a889, - 0xe0a88a, - 0xe0a88b, - 0xe0a88c, - 0xe0a88d, - 0xe0a88e, - 0xe0a88f, - 0xe0a890, - 0xe0a891, - 0xe0a892, - 0xe0a893, - 0xe0a894, - 0xe0a895, - 0xe0a896, - 0xe0a897, - 0xe0a898, - 0xe0a899, - 0xe0a89a, - 0xe0a89b, - 0xe0a89c, - 0xe0a89d, - 0xe0a89e, - 0xe0a89f, - 0xe0a8a0, - 0xe0a8a1, - 0xe0a8a2, - 0xe0a8a3, - 0xe0a8a4, - 0xe0a8a5, - 0xe0a8a6, - 0xe0a8a7, - 0xe0a8a8, - 0xe0a8a9, - 0xe0a8aa, - 0xe0a8ab, - 0xe0a8ac, - 0xe0a8ad, - 0xe0a8ae, - 0xe0a8af, - 0xe0a8b0, - 0xe0a8b1, - 0xe0a8b2, - 0xe0a8b3, - 0xe0a8b4, - 0xe0a8b5, - 0xe0a8b6, - 0xe0a8b7, - 0xe0a8b8, - 0xe0a8b9, - 0xe0a8ba, - 0xe0a8bb, - 0xe0a8bc, - 0xe0a8bd, - 0xe0a8be, - 0xe0a8bf, - 0xe0a980, - 0xe0a981, - 0xe0a982, - 0xe0a983, - 0xe0a984, - 0xe0a985, - 0xe0a986, - 0xe0a987, - 0xe0a988, - 0xe0a989, - 0xe0a98a, - 0xe0a98b, - 0xe0a98c, - 0xe0a98d, - 0xe0a98e, - 0xe0a98f, - 0xe0a990, - 0xe0a991, - 0xe0a992, - 0xe0a993, - 0xe0a994, - 0xe0a995, - 0xe0a996, - 0xe0a997, - 0xe0a998, - 0xe0a999, - 0xe0a99a, - 0xe0a99b, - 0xe0a99c, - 0xe0a99d, - 0xe0a99e, - 0xe0a99f, - 0xe0a9a0, - 0xe0a9a1, - 0xe0a9a2, - 0xe0a9a3, - 0xe0a9a4, - 0xe0a9a5, - 0xe0a9a6, - 0xe0a9a7, - 0xe0a9a8, - 0xe0a9a9, - 0xe0a9aa, - 0xe0a9ab, - 0xe0a9ac, - 0xe0a9ad, - 0xe0a9ae, - 0xe0a9af, - 0xe0a9b0, - 0xe0a9b1, - 0xe0a9b2, - 0xe0a9b3, - 0xe0a9b4, - 0xe0a9b5, - 0xe0a9b6, - 0xe0a9b7, - 0xe0a9b8, - 0xe0a9b9, - 0xe0a9ba, - 0xe0a9bb, - 0xe0a9bc, - 0xe0a9bd, - 0xe0a9be, - 0xe0a9bf, - 0xe0aa80, - 0xe0aa81, - 0xe0aa82, - 0xe0aa83, - 0xe0aa84, - 0xe0aa85, - 0xe0aa86, - 0xe0aa87, - 0xe0aa88, - 0xe0aa89, - 0xe0aa8a, - 0xe0aa8b, - 0xe0aa8c, - 0xe0aa8d, - 0xe0aa8e, - 0xe0aa8f, - 0xe0aa90, - 0xe0aa91, - 0xe0aa92, - 0xe0aa93, - 0xe0aa94, - 0xe0aa95, - 0xe0aa96, - 0xe0aa97, - 0xe0aa98, - 0xe0aa99, - 0xe0aa9a, - 0xe0aa9b, - 0xe0aa9c, - 0xe0aa9d, - 0xe0aa9e, - 0xe0aa9f, - 0xe0aaa0, - 0xe0aaa1, - 0xe0aaa2, - 0xe0aaa3, - 0xe0aaa4, - 0xe0aaa5, - 0xe0aaa6, - 0xe0aaa7, - 0xe0aaa8, - 0xe0aaa9, - 0xe0aaaa, - 0xe0aaab, - 0xe0aaac, - 0xe0aaad, - 0xe0aaae, - 0xe0aaaf, - 0xe0aab0, - 0xe0aab1, - 0xe0aab2, - 0xe0aab3, - 0xe0aab4, - 0xe0aab5, - 0xe0aab6, - 0xe0aab7, - 0xe0aab8, - 0xe0aab9, - 0xe0aaba, - 0xe0aabb, - 0xe0aabc, - 0xe0aabd, - 0xe0aabe, - 0xe0aabf, - 0xe0ab80, - 0xe0ab81, - 0xe0ab82, - 0xe0ab83, - 0xe0ab84, - 0xe0ab85, - 0xe0ab86, - 0xe0ab87, - 0xe0ab88, - 0xe0ab89, - 0xe0ab8a, - 0xe0ab8b, - 0xe0ab8c, - 0xe0ab8d, - 0xe0ab8e, - 0xe0ab8f, - 0xe0ab90, - 0xe0ab91, - 0xe0ab92, - 0xe0ab93, - 0xe0ab94, - 0xe0ab95, - 0xe0ab96, - 0xe0ab97, - 0xe0ab98, - 0xe0ab99, - 0xe0ab9a, - 0xe0ab9b, - 0xe0ab9c, - 0xe0ab9d, - 0xe0ab9e, - 0xe0ab9f, - 0xe0aba0, - 0xe0aba1, - 0xe0aba2, - 0xe0aba3, - 0xe0aba4, - 0xe0aba5, - 0xe0aba6, - 0xe0aba7, - 0xe0aba8, - 0xe0aba9, - 0xe0abaa, - 0xe0abab, - 0xe0abac, - 0xe0abad, - 0xe0abae, - 0xe0abaf, - 0xe0abb0, - 0xe0abb1, - 0xe0abb2, - 0xe0abb3, - 0xe0abb4, - 0xe0abb5, - 0xe0abb6, - 0xe0abb7, - 0xe0abb8, - 0xe0abb9, - 0xe0abba, - 0xe0abbb, - 0xe0abbc, - 0xe0abbd, - 0xe0abbe, - 0xe0abbf, - 0xe0ac80, - 0xe0ac81, - 0xe0ac82, - 0xe0ac83, - 0xe0ac84, - 0xe0ac85, - 0xe0ac86, - 0xe0ac87, - 0xe0ac88, - 0xe0ac89, - 0xe0ac8a, - 0xe0ac8b, - 0xe0ac8c, - 0xe0ac8d, - 0xe0ac8e, - 0xe0ac8f, - 0xe0ac90, - 0xe0ac91, - 0xe0ac92, - 0xe0ac93, - 0xe0ac94, - 0xe0ac95, - 0xe0ac96, - 0xe0ac97, - 0xe0ac98, - 0xe0ac99, - 0xe0ac9a, - 0xe0ac9b, - 0xe0ac9c, - 0xe0ac9d, - 0xe0ac9e, - 0xe0ac9f, - 0xe0aca0, - 0xe0aca1, - 0xe0aca2, - 0xe0aca3, - 0xe0aca4, - 0xe0aca5, - 0xe0aca6, - 0xe0aca7, - 0xe0aca8, - 0xe0aca9, - 0xe0acaa, - 0xe0acab, - 0xe0acac, - 0xe0acad, - 0xe0acae, - 0xe0acaf, - 0xe0acb0, - 0xe0acb1, - 0xe0acb2, - 0xe0acb3, - 0xe0acb4, - 0xe0acb5, - 0xe0acb6, - 0xe0acb7, - 0xe0acb8, - 0xe0acb9, - 0xe0acba, - 0xe0acbb, - 0xe0acbc, - 0xe0acbd, - 0xe0acbe, - 0xe0acbf, - 0xe0ad80, - 0xe0ad81, - 0xe0ad82, - 0xe0ad83, - 0xe0ad84, - 0xe0ad85, - 0xe0ad86, - 0xe0ad87, - 0xe0ad88, - 0xe0ad89, - 0xe0ad8a, - 0xe0ad8b, - 0xe0ad8c, - 0xe0ad8d, - 0xe0ad8e, - 0xe0ad8f, - 0xe0ad90, - 0xe0ad91, - 0xe0ad92, - 0xe0ad93, - 0xe0ad94, - 0xe0ad95, - 0xe0ad96, - 0xe0ad97, - 0xe0ad98, - 0xe0ad99, - 0xe0ad9a, - 0xe0ad9b, - 0xe0ad9c, - 0xe0ad9d, - 0xe0ad9e, - 0xe0ad9f, - 0xe0ada0, - 0xe0ada1, - 0xe0ada2, - 0xe0ada3, - 0xe0ada4, - 0xe0ada5, - 0xe0ada6, - 0xe0ada7, - 0xe0ada8, - 0xe0ada9, - 0xe0adaa, - 0xe0adab, - 0xe0adac, - 0xe0adad, - 0xe0adae, - 0xe0adaf, - 0xe0adb0, - 0xe0adb1, - 0xe0adb2, - 0xe0adb3, - 0xe0adb4, - 0xe0adb5, - 0xe0adb6, - 0xe0adb7, - 0xe0adb8, - 0xe0adb9, - 0xe0adba, - 0xe0adbb, - 0xe0adbc, - 0xe0adbd, - 0xe0adbe, - 0xe0adbf, - 0xe0ae80, - 0xe0ae81, - 0xe0ae82, - 0xe0ae83, - 0xe0ae84, - 0xe0ae85, - 0xe0ae86, - 0xe0ae87, - 0xe0ae88, - 0xe0ae89, - 0xe0ae8a, - 0xe0ae8b, - 0xe0ae8c, - 0xe0ae8d, - 0xe0ae8e, - 0xe0ae8f, - 0xe0ae90, - 0xe0ae91, - 0xe0ae92, - 0xe0ae93, - 0xe0ae94, - 0xe0ae95, - 0xe0ae96, - 0xe0ae97, - 0xe0ae98, - 0xe0ae99, - 0xe0ae9a, - 0xe0ae9b, - 0xe0ae9c, - 0xe0ae9d, - 0xe0ae9e, - 0xe0ae9f, - 0xe0aea0, - 0xe0aea1, - 0xe0aea2, - 0xe0aea3, - 0xe0aea4, - 0xe0aea5, - 0xe0aea6, - 0xe0aea7, - 0xe0aea8, - 0xe0aea9, - 0xe0aeaa, - 0xe0aeab, - 0xe0aeac, - 0xe0aead, - 0xe0aeae, - 0xe0aeaf, - 0xe0aeb0, - 0xe0aeb1, - 0xe0aeb2, - 0xe0aeb3, - 0xe0aeb4, - 0xe0aeb5, - 0xe0aeb6, - 0xe0aeb7, - 0xe0aeb8, - 0xe0aeb9, - 0xe0aeba, - 0xe0aebb, - 0xe0aebc, - 0xe0aebd, - 0xe0aebe, - 0xe0aebf, - 0xe0af80, - 0xe0af81, - 0xe0af82, - 0xe0af83, - 0xe0af84, - 0xe0af85, - 0xe0af86, - 0xe0af87, - 0xe0af88, - 0xe0af89, - 0xe0af8a, - 0xe0af8b, - 0xe0af8c, - 0xe0af8d, - 0xe0af8e, - 0xe0af8f, - 0xe0af90, - 0xe0af91, - 0xe0af92, - 0xe0af93, - 0xe0af94, - 0xe0af95, - 0xe0af96, - 0xe0af97, - 0xe0af98, - 0xe0af99, - 0xe0af9a, - 0xe0af9b, - 0xe0af9c, - 0xe0af9d, - 0xe0af9e, - 0xe0af9f, - 0xe0afa0, - 0xe0afa1, - 0xe0afa2, - 0xe0afa3, - 0xe0afa4, - 0xe0afa5, - 0xe0afa6, - 0xe0afa7, - 0xe0afa8, - 0xe0afa9, - 0xe0afaa, - 0xe0afab, - 0xe0afac, - 0xe0afad, - 0xe0afae, - 0xe0afaf, - 0xe0afb0, - 0xe0afb1, - 0xe0afb2, - 0xe0afb3, - 0xe0afb4, - 0xe0afb5, - 0xe0afb6, - 0xe0afb7, - 0xe0afb8, - 0xe0afb9, - 0xe0afba, - 0xe0afbb, - 0xe0afbc, - 0xe0afbd, - 0xe0afbe, - 0xe0afbf, - 0xe0b080, - 0xe0b081, - 0xe0b082, - 0xe0b083, - 0xe0b084, - 0xe0b085, - 0xe0b086, - 0xe0b087, - 0xe0b088, - 0xe0b089, - 0xe0b08a, - 0xe0b08b, - 0xe0b08c, - 0xe0b08d, - 0xe0b08e, - 0xe0b08f, - 0xe0b090, - 0xe0b091, - 0xe0b092, - 0xe0b093, - 0xe0b094, - 0xe0b095, - 0xe0b096, - 0xe0b097, - 0xe0b098, - 0xe0b099, - 0xe0b09a, - 0xe0b09b, - 0xe0b09c, - 0xe0b09d, - 0xe0b09e, - 0xe0b09f, - 0xe0b0a0, - 0xe0b0a1, - 0xe0b0a2, - 0xe0b0a3, - 0xe0b0a4, - 0xe0b0a5, - 0xe0b0a6, - 0xe0b0a7, - 0xe0b0a8, - 0xe0b0a9, - 0xe0b0aa, - 0xe0b0ab, - 0xe0b0ac, - 0xe0b0ad, - 0xe0b0ae, - 0xe0b0af, - 0xe0b0b0, - 0xe0b0b1, - 0xe0b0b2, - 0xe0b0b3, - 0xe0b0b4, - 0xe0b0b5, - 0xe0b0b6, - 0xe0b0b7, - 0xe0b0b8, - 0xe0b0b9, - 0xe0b0ba, - 0xe0b0bb, - 0xe0b0bc, - 0xe0b0bd, - 0xe0b0be, - 0xe0b0bf, - 0xe0b180, - 0xe0b181, - 0xe0b182, - 0xe0b183, - 0xe0b184, - 0xe0b185, - 0xe0b186, - 0xe0b187, - 0xe0b188, - 0xe0b189, - 0xe0b18a, - 0xe0b18b, - 0xe0b18c, - 0xe0b18d, - 0xe0b18e, - 0xe0b18f, - 0xe0b190, - 0xe0b191, - 0xe0b192, - 0xe0b193, - 0xe0b194, - 0xe0b195, - 0xe0b196, - 0xe0b197, - 0xe0b198, - 0xe0b199, - 0xe0b19a, - 0xe0b19b, - 0xe0b19c, - 0xe0b19d, - 0xe0b19e, - 0xe0b19f, - 0xe0b1a0, - 0xe0b1a1, - 0xe0b1a2, - 0xe0b1a3, - 0xe0b1a4, - 0xe0b1a5, - 0xe0b1a6, - 0xe0b1a7, - 0xe0b1a8, - 0xe0b1a9, - 0xe0b1aa, - 0xe0b1ab, - 0xe0b1ac, - 0xe0b1ad, - 0xe0b1ae, - 0xe0b1af, - 0xe0b1b0, - 0xe0b1b1, - 0xe0b1b2, - 0xe0b1b3, - 0xe0b1b4, - 0xe0b1b5, - 0xe0b1b6, - 0xe0b1b7, - 0xe0b1b8, - 0xe0b1b9, - 0xe0b1ba, - 0xe0b1bb, - 0xe0b1bc, - 0xe0b1bd, - 0xe0b1be, - 0xe0b1bf, - 0xe0b280, - 0xe0b281, - 0xe0b282, - 0xe0b283, - 0xe0b284, - 0xe0b285, - 0xe0b286, - 0xe0b287, - 0xe0b288, - 0xe0b289, - 0xe0b28a, - 0xe0b28b, - 0xe0b28c, - 0xe0b28d, - 0xe0b28e, - 0xe0b28f, - 0xe0b290, - 0xe0b291, - 0xe0b292, - 0xe0b293, - 0xe0b294, - 0xe0b295, - 0xe0b296, - 0xe0b297, - 0xe0b298, - 0xe0b299, - 0xe0b29a, - 0xe0b29b, - 0xe0b29c, - 0xe0b29d, - 0xe0b29e, - 0xe0b29f, - 0xe0b2a0, - 0xe0b2a1, - 0xe0b2a2, - 0xe0b2a3, - 0xe0b2a4, - 0xe0b2a5, - 0xe0b2a6, - 0xe0b2a7, - 0xe0b2a8, - 0xe0b2a9, - 0xe0b2aa, - 0xe0b2ab, - 0xe0b2ac, - 0xe0b2ad, - 0xe0b2ae, - 0xe0b2af, - 0xe0b2b0, - 0xe0b2b1, - 0xe0b2b2, - 0xe0b2b3, - 0xe0b2b4, - 0xe0b2b5, - 0xe0b2b6, - 0xe0b2b7, - 0xe0b2b8, - 0xe0b2b9, - 0xe0b2ba, - 0xe0b2bb, - 0xe0b2bc, - 0xe0b2bd, - 0xe0b2be, - 0xe0b2bf, - 0xe0b380, - 0xe0b381, - 0xe0b382, - 0xe0b383, - 0xe0b384, - 0xe0b385, - 0xe0b386, - 0xe0b387, - 0xe0b388, - 0xe0b389, - 0xe0b38a, - 0xe0b38b, - 0xe0b38c, - 0xe0b38d, - 0xe0b38e, - 0xe0b38f, - 0xe0b390, - 0xe0b391, - 0xe0b392, - 0xe0b393, - 0xe0b394, - 0xe0b395, - 0xe0b396, - 0xe0b397, - 0xe0b398, - 0xe0b399, - 0xe0b39a, - 0xe0b39b, - 0xe0b39c, - 0xe0b39d, - 0xe0b39e, - 0xe0b39f, - 0xe0b3a0, - 0xe0b3a1, - 0xe0b3a2, - 0xe0b3a3, - 0xe0b3a4, - 0xe0b3a5, - 0xe0b3a6, - 0xe0b3a7, - 0xe0b3a8, - 0xe0b3a9, - 0xe0b3aa, - 0xe0b3ab, - 0xe0b3ac, - 0xe0b3ad, - 0xe0b3ae, - 0xe0b3af, - 0xe0b3b0, - 0xe0b3b1, - 0xe0b3b2, - 0xe0b3b3, - 0xe0b3b4, - 0xe0b3b5, - 0xe0b3b6, - 0xe0b3b7, - 0xe0b3b8, - 0xe0b3b9, - 0xe0b3ba, - 0xe0b3bb, - 0xe0b3bc, - 0xe0b3bd, - 0xe0b3be, - 0xe0b3bf, - 0xe0b480, - 0xe0b481, - 0xe0b482, - 0xe0b483, - 0xe0b484, - 0xe0b485, - 0xe0b486, - 0xe0b487, - 0xe0b488, - 0xe0b489, - 0xe0b48a, - 0xe0b48b, - 0xe0b48c, - 0xe0b48d, - 0xe0b48e, - 0xe0b48f, - 0xe0b490, - 0xe0b491, - 0xe0b492, - 0xe0b493, - 0xe0b494, - 0xe0b495, - 0xe0b496, - 0xe0b497, - 0xe0b498, - 0xe0b499, - 0xe0b49a, - 0xe0b49b, - 0xe0b49c, - 0xe0b49d, - 0xe0b49e, - 0xe0b49f, - 0xe0b4a0, - 0xe0b4a1, - 0xe0b4a2, - 0xe0b4a3, - 0xe0b4a4, - 0xe0b4a5, - 0xe0b4a6, - 0xe0b4a7, - 0xe0b4a8, - 0xe0b4a9, - 0xe0b4aa, - 0xe0b4ab, - 0xe0b4ac, - 0xe0b4ad, - 0xe0b4ae, - 0xe0b4af, - 0xe0b4b0, - 0xe0b4b1, - 0xe0b4b2, - 0xe0b4b3, - 0xe0b4b4, - 0xe0b4b5, - 0xe0b4b6, - 0xe0b4b7, - 0xe0b4b8, - 0xe0b4b9, - 0xe0b4ba, - 0xe0b4bb, - 0xe0b4bc, - 0xe0b4bd, - 0xe0b4be, - 0xe0b4bf, - 0xe0b580, - 0xe0b581, - 0xe0b582, - 0xe0b583, - 0xe0b584, - 0xe0b585, - 0xe0b586, - 0xe0b587, - 0xe0b588, - 0xe0b589, - 0xe0b58a, - 0xe0b58b, - 0xe0b58c, - 0xe0b58d, - 0xe0b58e, - 0xe0b58f, - 0xe0b590, - 0xe0b591, - 0xe0b592, - 0xe0b593, - 0xe0b594, - 0xe0b595, - 0xe0b596, - 0xe0b597, - 0xe0b598, - 0xe0b599, - 0xe0b59a, - 0xe0b59b, - 0xe0b59c, - 0xe0b59d, - 0xe0b59e, - 0xe0b59f, - 0xe0b5a0, - 0xe0b5a1, - 0xe0b5a2, - 0xe0b5a3, - 0xe0b5a4, - 0xe0b5a5, - 0xe0b5a6, - 0xe0b5a7, - 0xe0b5a8, - 0xe0b5a9, - 0xe0b5aa, - 0xe0b5ab, - 0xe0b5ac, - 0xe0b5ad, - 0xe0b5ae, - 0xe0b5af, - 0xe0b5b0, - 0xe0b5b1, - 0xe0b5b2, - 0xe0b5b3, - 0xe0b5b4, - 0xe0b5b5, - 0xe0b5b6, - 0xe0b5b7, - 0xe0b5b8, - 0xe0b5b9, - 0xe0b5ba, - 0xe0b5bb, - 0xe0b5bc, - 0xe0b5bd, - 0xe0b5be, - 0xe0b5bf, - 0xe0b680, - 0xe0b681, - 0xe0b682, - 0xe0b683, - 0xe0b684, - 0xe0b685, - 0xe0b686, - 0xe0b687, - 0xe0b688, - 0xe0b689, - 0xe0b68a, - 0xe0b68b, - 0xe0b68c, - 0xe0b68d, - 0xe0b68e, - 0xe0b68f, - 0xe0b690, - 0xe0b691, - 0xe0b692, - 0xe0b693, - 0xe0b694, - 0xe0b695, - 0xe0b696, - 0xe0b697, - 0xe0b698, - 0xe0b699, - 0xe0b69a, - 0xe0b69b, - 0xe0b69c, - 0xe0b69d, - 0xe0b69e, - 0xe0b69f, - 0xe0b6a0, - 0xe0b6a1, - 0xe0b6a2, - 0xe0b6a3, - 0xe0b6a4, - 0xe0b6a5, - 0xe0b6a6, - 0xe0b6a7, - 0xe0b6a8, - 0xe0b6a9, - 0xe0b6aa, - 0xe0b6ab, - 0xe0b6ac, - 0xe0b6ad, - 0xe0b6ae, - 0xe0b6af, - 0xe0b6b0, - 0xe0b6b1, - 0xe0b6b2, - 0xe0b6b3, - 0xe0b6b4, - 0xe0b6b5, - 0xe0b6b6, - 0xe0b6b7, - 0xe0b6b8, - 0xe0b6b9, - 0xe0b6ba, - 0xe0b6bb, - 0xe0b6bc, - 0xe0b6bd, - 0xe0b6be, - 0xe0b6bf, - 0xe0b780, - 0xe0b781, - 0xe0b782, - 0xe0b783, - 0xe0b784, - 0xe0b785, - 0xe0b786, - 0xe0b787, - 0xe0b788, - 0xe0b789, - 0xe0b78a, - 0xe0b78b, - 0xe0b78c, - 0xe0b78d, - 0xe0b78e, - 0xe0b78f, - 0xe0b790, - 0xe0b791, - 0xe0b792, - 0xe0b793, - 0xe0b794, - 0xe0b795, - 0xe0b796, - 0xe0b797, - 0xe0b798, - 0xe0b799, - 0xe0b79a, - 0xe0b79b, - 0xe0b79c, - 0xe0b79d, - 0xe0b79e, - 0xe0b79f, - 0xe0b7a0, - 0xe0b7a1, - 0xe0b7a2, - 0xe0b7a3, - 0xe0b7a4, - 0xe0b7a5, - 0xe0b7a6, - 0xe0b7a7, - 0xe0b7a8, - 0xe0b7a9, - 0xe0b7aa, - 0xe0b7ab, - 0xe0b7ac, - 0xe0b7ad, - 0xe0b7ae, - 0xe0b7af, - 0xe0b7b0, - 0xe0b7b1, - 0xe0b7b2, - 0xe0b7b3, - 0xe0b7b4, - 0xe0b7b5, - 0xe0b7b6, - 0xe0b7b7, - 0xe0b7b8, - 0xe0b7b9, - 0xe0b7ba, - 0xe0b7bb, - 0xe0b7bc, - 0xe0b7bd, - 0xe0b7be, - 0xe0b7bf, - 0xe0b880, - 0xe0b881, - 0xe0b882, - 0xe0b883, - 0xe0b884, - 0xe0b885, - 0xe0b886, - 0xe0b887, - 0xe0b888, - 0xe0b889, - 0xe0b88a, - 0xe0b88b, - 0xe0b88c, - 0xe0b88d, - 0xe0b88e, - 0xe0b88f, - 0xe0b890, - 0xe0b891, - 0xe0b892, - 0xe0b893, - 0xe0b894, - 0xe0b895, - 0xe0b896, - 0xe0b897, - 0xe0b898, - 0xe0b899, - 0xe0b89a, - 0xe0b89b, - 0xe0b89c, - 0xe0b89d, - 0xe0b89e, - 0xe0b89f, - 0xe0b8a0, - 0xe0b8a1, - 0xe0b8a2, - 0xe0b8a3, - 0xe0b8a4, - 0xe0b8a5, - 0xe0b8a6, - 0xe0b8a7, - 0xe0b8a8, - 0xe0b8a9, - 0xe0b8aa, - 0xe0b8ab, - 0xe0b8ac, - 0xe0b8ad, - 0xe0b8ae, - 0xe0b8af, - 0xe0b8b0, - 0xe0b8b1, - 0xe0b8b2, - 0xe0b8b3, - 0xe0b8b4, - 0xe0b8b5, - 0xe0b8b6, - 0xe0b8b7, - 0xe0b8b8, - 0xe0b8b9, - 0xe0b8ba, - 0xe0b8bb, - 0xe0b8bc, - 0xe0b8bd, - 0xe0b8be, - 0xe0b8bf, - 0xe0b980, - 0xe0b981, - 0xe0b982, - 0xe0b983, - 0xe0b984, - 0xe0b985, - 0xe0b986, - 0xe0b987, - 0xe0b988, - 0xe0b989, - 0xe0b98a, - 0xe0b98b, - 0xe0b98c, - 0xe0b98d, - 0xe0b98e, - 0xe0b98f, - 0xe0b990, - 0xe0b991, - 0xe0b992, - 0xe0b993, - 0xe0b994, - 0xe0b995, - 0xe0b996, - 0xe0b997, - 0xe0b998, - 0xe0b999, - 0xe0b99a, - 0xe0b99b, - 0xe0b99c, - 0xe0b99d, - 0xe0b99e, - 0xe0b99f, - 0xe0b9a0, - 0xe0b9a1, - 0xe0b9a2, - 0xe0b9a3, - 0xe0b9a4, - 0xe0b9a5, - 0xe0b9a6, - 0xe0b9a7, - 0xe0b9a8, - 0xe0b9a9, - 0xe0b9aa, - 0xe0b9ab, - 0xe0b9ac, - 0xe0b9ad, - 0xe0b9ae, - 0xe0b9af, - 0xe0b9b0, - 0xe0b9b1, - 0xe0b9b2, - 0xe0b9b3, - 0xe0b9b4, - 0xe0b9b5, - 0xe0b9b6, - 0xe0b9b7, - 0xe0b9b8, - 0xe0b9b9, - 0xe0b9ba, - 0xe0b9bb, - 0xe0b9bc, - 0xe0b9bd, - 0xe0b9be, - 0xe0b9bf, - 0xe0ba80, - 0xe0ba81, - 0xe0ba82, - 0xe0ba83, - 0xe0ba84, - 0xe0ba85, - 0xe0ba86, - 0xe0ba87, - 0xe0ba88, - 0xe0ba89, - 0xe0ba8a, - 0xe0ba8b, - 0xe0ba8c, - 0xe0ba8d, - 0xe0ba8e, - 0xe0ba8f, - 0xe0ba90, - 0xe0ba91, - 0xe0ba92, - 0xe0ba93, - 0xe0ba94, - 0xe0ba95, - 0xe0ba96, - 0xe0ba97, - 0xe0ba98, - 0xe0ba99, - 0xe0ba9a, - 0xe0ba9b, - 0xe0ba9c, - 0xe0ba9d, - 0xe0ba9e, - 0xe0ba9f, - 0xe0baa0, - 0xe0baa1, - 0xe0baa2, - 0xe0baa3, - 0xe0baa4, - 0xe0baa5, - 0xe0baa6, - 0xe0baa7, - 0xe0baa8, - 0xe0baa9, - 0xe0baaa, - 0xe0baab, - 0xe0baac, - 0xe0baad, - 0xe0baae, - 0xe0baaf, - 0xe0bab0, - 0xe0bab1, - 0xe0bab2, - 0xe0bab3, - 0xe0bab4, - 0xe0bab5, - 0xe0bab6, - 0xe0bab7, - 0xe0bab8, - 0xe0bab9, - 0xe0baba, - 0xe0babb, - 0xe0babc, - 0xe0babd, - 0xe0babe, - 0xe0babf, - 0xe0bb80, - 0xe0bb81, - 0xe0bb82, - 0xe0bb83, - 0xe0bb84, - 0xe0bb85, - 0xe0bb86, - 0xe0bb87, - 0xe0bb88, - 0xe0bb89, - 0xe0bb8a, - 0xe0bb8b, - 0xe0bb8c, - 0xe0bb8d, - 0xe0bb8e, - 0xe0bb8f, - 0xe0bb90, - 0xe0bb91, - 0xe0bb92, - 0xe0bb93, - 0xe0bb94, - 0xe0bb95, - 0xe0bb96, - 0xe0bb97, - 0xe0bb98, - 0xe0bb99, - 0xe0bb9a, - 0xe0bb9b, - 0xe0bb9c, - 0xe0bb9d, - 0xe0bb9e, - 0xe0bb9f, - 0xe0bba0, - 0xe0bba1, - 0xe0bba2, - 0xe0bba3, - 0xe0bba4, - 0xe0bba5, - 0xe0bba6, - 0xe0bba7, - 0xe0bba8, - 0xe0bba9, - 0xe0bbaa, - 0xe0bbab, - 0xe0bbac, - 0xe0bbad, - 0xe0bbae, - 0xe0bbaf, - 0xe0bbb0, - 0xe0bbb1, - 0xe0bbb2, - 0xe0bbb3, - 0xe0bbb4, - 0xe0bbb5, - 0xe0bbb6, - 0xe0bbb7, - 0xe0bbb8, - 0xe0bbb9, - 0xe0bbba, - 0xe0bbbb, - 0xe0bbbc, - 0xe0bbbd, - 0xe0bbbe, - 0xe0bbbf, - 0xe0bc80, - 0xe0bc81, - 0xe0bc82, - 0xe0bc83, - 0xe0bc84, - 0xe0bc85, - 0xe0bc86, - 0xe0bc87, - 0xe0bc88, - 0xe0bc89, - 0xe0bc8a, - 0xe0bc8b, - 0xe0bc8c, - 0xe0bc8d, - 0xe0bc8e, - 0xe0bc8f, - 0xe0bc90, - 0xe0bc91, - 0xe0bc92, - 0xe0bc93, - 0xe0bc94, - 0xe0bc95, - 0xe0bc96, - 0xe0bc97, - 0xe0bc98, - 0xe0bc99, - 0xe0bc9a, - 0xe0bc9b, - 0xe0bc9c, - 0xe0bc9d, - 0xe0bc9e, - 0xe0bc9f, - 0xe0bca0, - 0xe0bca1, - 0xe0bca2, - 0xe0bca3, - 0xe0bca4, - 0xe0bca5, - 0xe0bca6, - 0xe0bca7, - 0xe0bca8, - 0xe0bca9, - 0xe0bcaa, - 0xe0bcab, - 0xe0bcac, - 0xe0bcad, - 0xe0bcae, - 0xe0bcaf, - 0xe0bcb0, - 0xe0bcb1, - 0xe0bcb2, - 0xe0bcb3, - 0xe0bcb4, - 0xe0bcb5, - 0xe0bcb6, - 0xe0bcb7, - 0xe0bcb8, - 0xe0bcb9, - 0xe0bcba, - 0xe0bcbb, - 0xe0bcbc, - 0xe0bcbd, - 0xe0bcbe, - 0xe0bcbf, - 0xe0bd80, - 0xe0bd81, - 0xe0bd82, - 0xe0bd83, - 0xe0bd84, - 0xe0bd85, - 0xe0bd86, - 0xe0bd87, - 0xe0bd88, - 0xe0bd89, - 0xe0bd8a, - 0xe0bd8b, - 0xe0bd8c, - 0xe0bd8d, - 0xe0bd8e, - 0xe0bd8f, - 0xe0bd90, - 0xe0bd91, - 0xe0bd92, - 0xe0bd93, - 0xe0bd94, - 0xe0bd95, - 0xe0bd96, - 0xe0bd97, - 0xe0bd98, - 0xe0bd99, - 0xe0bd9a, - 0xe0bd9b, - 0xe0bd9c, - 0xe0bd9d, - 0xe0bd9e, - 0xe0bd9f, - 0xe0bda0, - 0xe0bda1, - 0xe0bda2, - 0xe0bda3, - 0xe0bda4, - 0xe0bda5, - 0xe0bda6, - 0xe0bda7, - 0xe0bda8, - 0xe0bda9, - 0xe0bdaa, - 0xe0bdab, - 0xe0bdac, - 0xe0bdad, - 0xe0bdae, - 0xe0bdaf, - 0xe0bdb0, - 0xe0bdb1, - 0xe0bdb2, - 0xe0bdb3, - 0xe0bdb4, - 0xe0bdb5, - 0xe0bdb6, - 0xe0bdb7, - 0xe0bdb8, - 0xe0bdb9, - 0xe0bdba, - 0xe0bdbb, - 0xe0bdbc, - 0xe0bdbd, - 0xe0bdbe, - 0xe0bdbf, - 0xe0be80, - 0xe0be81, - 0xe0be82, - 0xe0be83, - 0xe0be84, - 0xe0be85, - 0xe0be86, - 0xe0be87, - 0xe0be88, - 0xe0be89, - 0xe0be8a, - 0xe0be8b, - 0xe0be8c, - 0xe0be8d, - 0xe0be8e, - 0xe0be8f, - 0xe0be90, - 0xe0be91, - 0xe0be92, - 0xe0be93, - 0xe0be94, - 0xe0be95, - 0xe0be96, - 0xe0be97, - 0xe0be98, - 0xe0be99, - 0xe0be9a, - 0xe0be9b, - 0xe0be9c, - 0xe0be9d, - 0xe0be9e, - 0xe0be9f, - 0xe0bea0, - 0xe0bea1, - 0xe0bea2, - 0xe0bea3, - 0xe0bea4, - 0xe0bea5, - 0xe0bea6, - 0xe0bea7, - 0xe0bea8, - 0xe0bea9, - 0xe0beaa, - 0xe0beab, - 0xe0beac, - 0xe0bead, - 0xe0beae, - 0xe0beaf, - 0xe0beb0, - 0xe0beb1, - 0xe0beb2, - 0xe0beb3, - 0xe0beb4, - 0xe0beb5, - 0xe0beb6, - 0xe0beb7, - 0xe0beb8, - 0xe0beb9, - 0xe0beba, - 0xe0bebb, - 0xe0bebc, - 0xe0bebd, - 0xe0bebe, - 0xe0bebf, - 0xe0bf80, - 0xe0bf81, - 0xe0bf82, - 0xe0bf83, - 0xe0bf84, - 0xe0bf85, - 0xe0bf86, - 0xe0bf87, - 0xe0bf88, - 0xe0bf89, - 0xe0bf8a, - 0xe0bf8b, - 0xe0bf8c, - 0xe0bf8d, - 0xe0bf8e, - 0xe0bf8f, - 0xe0bf90, - 0xe0bf91, - 0xe0bf92, - 0xe0bf93, - 0xe0bf94, - 0xe0bf95, - 0xe0bf96, - 0xe0bf97, - 0xe0bf98, - 0xe0bf99, - 0xe0bf9a, - 0xe0bf9b, - 0xe0bf9c, - 0xe0bf9d, - 0xe0bf9e, - 0xe0bf9f, - 0xe0bfa0, - 0xe0bfa1, - 0xe0bfa2, - 0xe0bfa3, - 0xe0bfa4, - 0xe0bfa5, - 0xe0bfa6, - 0xe0bfa7, - 0xe0bfa8, - 0xe0bfa9, - 0xe0bfaa, - 0xe0bfab, - 0xe0bfac, - 0xe0bfad, - 0xe0bfae, - 0xe0bfaf, - 0xe0bfb0, - 0xe0bfb1, - 0xe0bfb2, - 0xe0bfb3, - 0xe0bfb4, - 0xe0bfb5, - 0xe0bfb6, - 0xe0bfb7, - 0xe0bfb8, - 0xe0bfb9, - 0xe0bfba, - 0xe0bfbb, - 0xe0bfbc, - 0xe0bfbd, - 0xe0bfbe, - 0xe0bfbf, - 0xe18080, - 0xe18081, - 0xe18082, - 0xe18083, - 0xe18084, - 0xe18085, - 0xe18086, - 0xe18087, - 0xe18088, - 0xe18089, - 0xe1808a, - 0xe1808b, - 0xe1808c, - 0xe1808d, - 0xe1808e, - 0xe1808f, - 0xe18090, - 0xe18091, - 0xe18092, - 0xe18093, - 0xe18094, - 0xe18095, - 0xe18096, - 0xe18097, - 0xe18098, - 0xe18099, - 0xe1809a, - 0xe1809b, - 0xe1809c, - 0xe1809d, - 0xe1809e, - 0xe1809f, - 0xe180a0, - 0xe180a1, - 0xe180a2, - 0xe180a3, - 0xe180a4, - 0xe180a5, - 0xe180a6, - 0xe180a7, - 0xe180a8, - 0xe180a9, - 0xe180aa, - 0xe180ab, - 0xe180ac, - 0xe180ad, - 0xe180ae, - 0xe180af, - 0xe180b0, - 0xe180b1, - 0xe180b2, - 0xe180b3, - 0xe180b4, - 0xe180b5, - 0xe180b6, - 0xe180b7, - 0xe180b8, - 0xe180b9, - 0xe180ba, - 0xe180bb, - 0xe180bc, - 0xe180bd, - 0xe180be, - 0xe180bf, - 0xe18180, - 0xe18181, - 0xe18182, - 0xe18183, - 0xe18184, - 0xe18185, - 0xe18186, - 0xe18187, - 0xe18188, - 0xe18189, - 0xe1818a, - 0xe1818b, - 0xe1818c, - 0xe1818d, - 0xe1818e, - 0xe1818f, - 0xe18190, - 0xe18191, - 0xe18192, - 0xe18193, - 0xe18194, - 0xe18195, - 0xe18196, - 0xe18197, - 0xe18198, - 0xe18199, - 0xe1819a, - 0xe1819b, - 0xe1819c, - 0xe1819d, - 0xe1819e, - 0xe1819f, - 0xe181a0, - 0xe181a1, - 0xe181a2, - 0xe181a3, - 0xe181a4, - 0xe181a5, - 0xe181a6, - 0xe181a7, - 0xe181a8, - 0xe181a9, - 0xe181aa, - 0xe181ab, - 0xe181ac, - 0xe181ad, - 0xe181ae, - 0xe181af, - 0xe181b0, - 0xe181b1, - 0xe181b2, - 0xe181b3, - 0xe181b4, - 0xe181b5, - 0xe181b6, - 0xe181b7, - 0xe181b8, - 0xe181b9, - 0xe181ba, - 0xe181bb, - 0xe181bc, - 0xe181bd, - 0xe181be, - 0xe181bf, - 0xe18280, - 0xe18281, - 0xe18282, - 0xe18283, - 0xe18284, - 0xe18285, - 0xe18286, - 0xe18287, - 0xe18288, - 0xe18289, - 0xe1828a, - 0xe1828b, - 0xe1828c, - 0xe1828d, - 0xe1828e, - 0xe1828f, - 0xe18290, - 0xe18291, - 0xe18292, - 0xe18293, - 0xe18294, - 0xe18295, - 0xe18296, - 0xe18297, - 0xe18298, - 0xe18299, - 0xe1829a, - 0xe1829b, - 0xe1829c, - 0xe1829d, - 0xe1829e, - 0xe1829f, - 0xe182a0, - 0xe182a1, - 0xe182a2, - 0xe182a3, - 0xe182a4, - 0xe182a5, - 0xe182a6, - 0xe182a7, - 0xe182a8, - 0xe182a9, - 0xe182aa, - 0xe182ab, - 0xe182ac, - 0xe182ad, - 0xe182ae, - 0xe182af, - 0xe182b0, - 0xe182b1, - 0xe182b2, - 0xe182b3, - 0xe182b4, - 0xe182b5, - 0xe182b6, - 0xe182b7, - 0xe182b8, - 0xe182b9, - 0xe182ba, - 0xe182bb, - 0xe182bc, - 0xe182bd, - 0xe182be, - 0xe182bf, - 0xe18380, - 0xe18381, - 0xe18382, - 0xe18383, - 0xe18384, - 0xe18385, - 0xe18386, - 0xe18387, - 0xe18388, - 0xe18389, - 0xe1838a, - 0xe1838b, - 0xe1838c, - 0xe1838d, - 0xe1838e, - 0xe1838f, - 0xe18390, - 0xe18391, - 0xe18392, - 0xe18393, - 0xe18394, - 0xe18395, - 0xe18396, - 0xe18397, - 0xe18398, - 0xe18399, - 0xe1839a, - 0xe1839b, - 0xe1839c, - 0xe1839d, - 0xe1839e, - 0xe1839f, - 0xe183a0, - 0xe183a1, - 0xe183a2, - 0xe183a3, - 0xe183a4, - 0xe183a5, - 0xe183a6, - 0xe183a7, - 0xe183a8, - 0xe183a9, - 0xe183aa, - 0xe183ab, - 0xe183ac, - 0xe183ad, - 0xe183ae, - 0xe183af, - 0xe183b0, - 0xe183b1, - 0xe183b2, - 0xe183b3, - 0xe183b4, - 0xe183b5, - 0xe183b6, - 0xe183b7, - 0xe183b8, - 0xe183b9, - 0xe183ba, - 0xe183bb, - 0xe183bc, - 0xe183bd, - 0xe183be, - 0xe183bf, - 0xe18480, - 0xe18481, - 0xe18482, - 0xe18483, - 0xe18484, - 0xe18485, - 0xe18486, - 0xe18487, - 0xe18488, - 0xe18489, - 0xe1848a, - 0xe1848b, - 0xe1848c, - 0xe1848d, - 0xe1848e, - 0xe1848f, - 0xe18490, - 0xe18491, - 0xe18492, - 0xe18493, - 0xe18494, - 0xe18495, - 0xe18496, - 0xe18497, - 0xe18498, - 0xe18499, - 0xe1849a, - 0xe1849b, - 0xe1849c, - 0xe1849d, - 0xe1849e, - 0xe1849f, - 0xe184a0, - 0xe184a1, - 0xe184a2, - 0xe184a3, - 0xe184a4, - 0xe184a5, - 0xe184a6, - 0xe184a7, - 0xe184a8, - 0xe184a9, - 0xe184aa, - 0xe184ab, - 0xe184ac, - 0xe184ad, - 0xe184ae, - 0xe184af, - 0xe184b0, - 0xe184b1, - 0xe184b2, - 0xe184b3, - 0xe184b4, - 0xe184b5, - 0xe184b6, - 0xe184b7, - 0xe184b8, - 0xe184b9, - 0xe184ba, - 0xe184bb, - 0xe184bc, - 0xe184bd, - 0xe184be, - 0xe184bf, - 0xe18580, - 0xe18581, - 0xe18582, - 0xe18583, - 0xe18584, - 0xe18585, - 0xe18586, - 0xe18587, - 0xe18588, - 0xe18589, - 0xe1858a, - 0xe1858b, - 0xe1858c, - 0xe1858d, - 0xe1858e, - 0xe1858f, - 0xe18590, - 0xe18591, - 0xe18592, - 0xe18593, - 0xe18594, - 0xe18595, - 0xe18596, - 0xe18597, - 0xe18598, - 0xe18599, - 0xe1859a, - 0xe1859b, - 0xe1859c, - 0xe1859d, - 0xe1859e, - 0xe1859f, - 0xe185a0, - 0xe185a1, - 0xe185a2, - 0xe185a3, - 0xe185a4, - 0xe185a5, - 0xe185a6, - 0xe185a7, - 0xe185a8, - 0xe185a9, - 0xe185aa, - 0xe185ab, - 0xe185ac, - 0xe185ad, - 0xe185ae, - 0xe185af, - 0xe185b0, - 0xe185b1, - 0xe185b2, - 0xe185b3, - 0xe185b4, - 0xe185b5, - 0xe185b6, - 0xe185b7, - 0xe185b8, - 0xe185b9, - 0xe185ba, - 0xe185bb, - 0xe185bc, - 0xe185bd, - 0xe185be, - 0xe185bf, - 0xe18680, - 0xe18681, - 0xe18682, - 0xe18683, - 0xe18684, - 0xe18685, - 0xe18686, - 0xe18687, - 0xe18688, - 0xe18689, - 0xe1868a, - 0xe1868b, - 0xe1868c, - 0xe1868d, - 0xe1868e, - 0xe1868f, - 0xe18690, - 0xe18691, - 0xe18692, - 0xe18693, - 0xe18694, - 0xe18695, - 0xe18696, - 0xe18697, - 0xe18698, - 0xe18699, - 0xe1869a, - 0xe1869b, - 0xe1869c, - 0xe1869d, - 0xe1869e, - 0xe1869f, - 0xe186a0, - 0xe186a1, - 0xe186a2, - 0xe186a3, - 0xe186a4, - 0xe186a5, - 0xe186a6, - 0xe186a7, - 0xe186a8, - 0xe186a9, - 0xe186aa, - 0xe186ab, - 0xe186ac, - 0xe186ad, - 0xe186ae, - 0xe186af, - 0xe186b0, - 0xe186b1, - 0xe186b2, - 0xe186b3, - 0xe186b4, - 0xe186b5, - 0xe186b6, - 0xe186b7, - 0xe186b8, - 0xe186b9, - 0xe186ba, - 0xe186bb, - 0xe186bc, - 0xe186bd, - 0xe186be, - 0xe186bf, - 0xe18780, - 0xe18781, - 0xe18782, - 0xe18783, - 0xe18784, - 0xe18785, - 0xe18786, - 0xe18787, - 0xe18788, - 0xe18789, - 0xe1878a, - 0xe1878b, - 0xe1878c, - 0xe1878d, - 0xe1878e, - 0xe1878f, - 0xe18790, - 0xe18791, - 0xe18792, - 0xe18793, - 0xe18794, - 0xe18795, - 0xe18796, - 0xe18797, - 0xe18798, - 0xe18799, - 0xe1879a, - 0xe1879b, - 0xe1879c, - 0xe1879d, - 0xe1879e, - 0xe1879f, - 0xe187a0, - 0xe187a1, - 0xe187a2, - 0xe187a3, - 0xe187a4, - 0xe187a5, - 0xe187a6, - 0xe187a7, - 0xe187a8, - 0xe187a9, - 0xe187aa, - 0xe187ab, - 0xe187ac, - 0xe187ad, - 0xe187ae, - 0xe187af, - 0xe187b0, - 0xe187b1, - 0xe187b2, - 0xe187b3, - 0xe187b4, - 0xe187b5, - 0xe187b6, - 0xe187b7, - 0xe187b8, - 0xe187b9, - 0xe187ba, - 0xe187bb, - 0xe187bc, - 0xe187bd, - 0xe187be, - 0xe187bf, - 0xe18880, - 0xe18881, - 0xe18882, - 0xe18883, - 0xe18884, - 0xe18885, - 0xe18886, - 0xe18887, - 0xe18888, - 0xe18889, - 0xe1888a, - 0xe1888b, - 0xe1888c, - 0xe1888d, - 0xe1888e, - 0xe1888f, - 0xe18890, - 0xe18891, - 0xe18892, - 0xe18893, - 0xe18894, - 0xe18895, - 0xe18896, - 0xe18897, - 0xe18898, - 0xe18899, - 0xe1889a, - 0xe1889b, - 0xe1889c, - 0xe1889d, - 0xe1889e, - 0xe1889f, - 0xe188a0, - 0xe188a1, - 0xe188a2, - 0xe188a3, - 0xe188a4, - 0xe188a5, - 0xe188a6, - 0xe188a7, - 0xe188a8, - 0xe188a9, - 0xe188aa, - 0xe188ab, - 0xe188ac, - 0xe188ad, - 0xe188ae, - 0xe188af, - 0xe188b0, - 0xe188b1, - 0xe188b2, - 0xe188b3, - 0xe188b4, - 0xe188b5, - 0xe188b6, - 0xe188b7, - 0xe188b8, - 0xe188b9, - 0xe188ba, - 0xe188bb, - 0xe188bc, - 0xe188bd, - 0xe188be, - 0xe188bf, - 0xe18980, - 0xe18981, - 0xe18982, - 0xe18983, - 0xe18984, - 0xe18985, - 0xe18986, - 0xe18987, - 0xe18988, - 0xe18989, - 0xe1898a, - 0xe1898b, - 0xe1898c, - 0xe1898d, - 0xe1898e, - 0xe1898f, - 0xe18990, - 0xe18991, - 0xe18992, - 0xe18993, - 0xe18994, - 0xe18995, - 0xe18996, - 0xe18997, - 0xe18998, - 0xe18999, - 0xe1899a, - 0xe1899b, - 0xe1899c, - 0xe1899d, - 0xe1899e, - 0xe1899f, - 0xe189a0, - 0xe189a1, - 0xe189a2, - 0xe189a3, - 0xe189a4, - 0xe189a5, - 0xe189a6, - 0xe189a7, - 0xe189a8, - 0xe189a9, - 0xe189aa, - 0xe189ab, - 0xe189ac, - 0xe189ad, - 0xe189ae, - 0xe189af, - 0xe189b0, - 0xe189b1, - 0xe189b2, - 0xe189b3, - 0xe189b4, - 0xe189b5, - 0xe189b6, - 0xe189b7, - 0xe189b8, - 0xe189b9, - 0xe189ba, - 0xe189bb, - 0xe189bc, - 0xe189bd, - 0xe189be, - 0xe189bf, - 0xe18a80, - 0xe18a81, - 0xe18a82, - 0xe18a83, - 0xe18a84, - 0xe18a85, - 0xe18a86, - 0xe18a87, - 0xe18a88, - 0xe18a89, - 0xe18a8a, - 0xe18a8b, - 0xe18a8c, - 0xe18a8d, - 0xe18a8e, - 0xe18a8f, - 0xe18a90, - 0xe18a91, - 0xe18a92, - 0xe18a93, - 0xe18a94, - 0xe18a95, - 0xe18a96, - 0xe18a97, - 0xe18a98, - 0xe18a99, - 0xe18a9a, - 0xe18a9b, - 0xe18a9c, - 0xe18a9d, - 0xe18a9e, - 0xe18a9f, - 0xe18aa0, - 0xe18aa1, - 0xe18aa2, - 0xe18aa3, - 0xe18aa4, - 0xe18aa5, - 0xe18aa6, - 0xe18aa7, - 0xe18aa8, - 0xe18aa9, - 0xe18aaa, - 0xe18aab, - 0xe18aac, - 0xe18aad, - 0xe18aae, - 0xe18aaf, - 0xe18ab0, - 0xe18ab1, - 0xe18ab2, - 0xe18ab3, - 0xe18ab4, - 0xe18ab5, - 0xe18ab6, - 0xe18ab7, - 0xe18ab8, - 0xe18ab9, - 0xe18aba, - 0xe18abb, - 0xe18abc, - 0xe18abd, - 0xe18abe, - 0xe18abf, - 0xe18b80, - 0xe18b81, - 0xe18b82, - 0xe18b83, - 0xe18b84, - 0xe18b85, - 0xe18b86, - 0xe18b87, - 0xe18b88, - 0xe18b89, - 0xe18b8a, - 0xe18b8b, - 0xe18b8c, - 0xe18b8d, - 0xe18b8e, - 0xe18b8f, - 0xe18b90, - 0xe18b91, - 0xe18b92, - 0xe18b93, - 0xe18b94, - 0xe18b95, - 0xe18b96, - 0xe18b97, - 0xe18b98, - 0xe18b99, - 0xe18b9a, - 0xe18b9b, - 0xe18b9c, - 0xe18b9d, - 0xe18b9e, - 0xe18b9f, - 0xe18ba0, - 0xe18ba1, - 0xe18ba2, - 0xe18ba3, - 0xe18ba4, - 0xe18ba5, - 0xe18ba6, - 0xe18ba7, - 0xe18ba8, - 0xe18ba9, - 0xe18baa, - 0xe18bab, - 0xe18bac, - 0xe18bad, - 0xe18bae, - 0xe18baf, - 0xe18bb0, - 0xe18bb1, - 0xe18bb2, - 0xe18bb3, - 0xe18bb4, - 0xe18bb5, - 0xe18bb6, - 0xe18bb7, - 0xe18bb8, - 0xe18bb9, - 0xe18bba, - 0xe18bbb, - 0xe18bbc, - 0xe18bbd, - 0xe18bbe, - 0xe18bbf, - 0xe18c80, - 0xe18c81, - 0xe18c82, - 0xe18c83, - 0xe18c84, - 0xe18c85, - 0xe18c86, - 0xe18c87, - 0xe18c88, - 0xe18c89, - 0xe18c8a, - 0xe18c8b, - 0xe18c8c, - 0xe18c8d, - 0xe18c8e, - 0xe18c8f, - 0xe18c90, - 0xe18c91, - 0xe18c92, - 0xe18c93, - 0xe18c94, - 0xe18c95, - 0xe18c96, - 0xe18c97, - 0xe18c98, - 0xe18c99, - 0xe18c9a, - 0xe18c9b, - 0xe18c9c, - 0xe18c9d, - 0xe18c9e, - 0xe18c9f, - 0xe18ca0, - 0xe18ca1, - 0xe18ca2, - 0xe18ca3, - 0xe18ca4, - 0xe18ca5, - 0xe18ca6, - 0xe18ca7, - 0xe18ca8, - 0xe18ca9, - 0xe18caa, - 0xe18cab, - 0xe18cac, - 0xe18cad, - 0xe18cae, - 0xe18caf, - 0xe18cb0, - 0xe18cb1, - 0xe18cb2, - 0xe18cb3, - 0xe18cb4, - 0xe18cb5, - 0xe18cb6, - 0xe18cb7, - 0xe18cb8, - 0xe18cb9, - 0xe18cba, - 0xe18cbb, - 0xe18cbc, - 0xe18cbd, - 0xe18cbe, - 0xe18cbf, - 0xe18d80, - 0xe18d81, - 0xe18d82, - 0xe18d83, - 0xe18d84, - 0xe18d85, - 0xe18d86, - 0xe18d87, - 0xe18d88, - 0xe18d89, - 0xe18d8a, - 0xe18d8b, - 0xe18d8c, - 0xe18d8d, - 0xe18d8e, - 0xe18d8f, - 0xe18d90, - 0xe18d91, - 0xe18d92, - 0xe18d93, - 0xe18d94, - 0xe18d95, - 0xe18d96, - 0xe18d97, - 0xe18d98, - 0xe18d99, - 0xe18d9a, - 0xe18d9b, - 0xe18d9c, - 0xe18d9d, - 0xe18d9e, - 0xe18d9f, - 0xe18da0, - 0xe18da1, - 0xe18da2, - 0xe18da3, - 0xe18da4, - 0xe18da5, - 0xe18da6, - 0xe18da7, - 0xe18da8, - 0xe18da9, - 0xe18daa, - 0xe18dab, - 0xe18dac, - 0xe18dad, - 0xe18dae, - 0xe18daf, - 0xe18db0, - 0xe18db1, - 0xe18db2, - 0xe18db3, - 0xe18db4, - 0xe18db5, - 0xe18db6, - 0xe18db7, - 0xe18db8, - 0xe18db9, - 0xe18dba, - 0xe18dbb, - 0xe18dbc, - 0xe18dbd, - 0xe18dbe, - 0xe18dbf, - 0xe18e80, - 0xe18e81, - 0xe18e82, - 0xe18e83, - 0xe18e84, - 0xe18e85, - 0xe18e86, - 0xe18e87, - 0xe18e88, - 0xe18e89, - 0xe18e8a, - 0xe18e8b, - 0xe18e8c, - 0xe18e8d, - 0xe18e8e, - 0xe18e8f, - 0xe18e90, - 0xe18e91, - 0xe18e92, - 0xe18e93, - 0xe18e94, - 0xe18e95, - 0xe18e96, - 0xe18e97, - 0xe18e98, - 0xe18e99, - 0xe18e9a, - 0xe18e9b, - 0xe18e9c, - 0xe18e9d, - 0xe18e9e, - 0xe18e9f, - 0xe18ea0, - 0xe18ea1, - 0xe18ea2, - 0xe18ea3, - 0xe18ea4, - 0xe18ea5, - 0xe18ea6, - 0xe18ea7, - 0xe18ea8, - 0xe18ea9, - 0xe18eaa, - 0xe18eab, - 0xe18eac, - 0xe18ead, - 0xe18eae, - 0xe18eaf, - 0xe18eb0, - 0xe18eb1, - 0xe18eb2, - 0xe18eb3, - 0xe18eb4, - 0xe18eb5, - 0xe18eb6, - 0xe18eb7, - 0xe18eb8, - 0xe18eb9, - 0xe18eba, - 0xe18ebb, - 0xe18ebc, - 0xe18ebd, - 0xe18ebe, - 0xe18ebf, - 0xe18f80, - 0xe18f81, - 0xe18f82, - 0xe18f83, - 0xe18f84, - 0xe18f85, - 0xe18f86, - 0xe18f87, - 0xe18f88, - 0xe18f89, - 0xe18f8a, - 0xe18f8b, - 0xe18f8c, - 0xe18f8d, - 0xe18f8e, - 0xe18f8f, - 0xe18f90, - 0xe18f91, - 0xe18f92, - 0xe18f93, - 0xe18f94, - 0xe18f95, - 0xe18f96, - 0xe18f97, - 0xe18f98, - 0xe18f99, - 0xe18f9a, - 0xe18f9b, - 0xe18f9c, - 0xe18f9d, - 0xe18f9e, - 0xe18f9f, - 0xe18fa0, - 0xe18fa1, - 0xe18fa2, - 0xe18fa3, - 0xe18fa4, - 0xe18fa5, - 0xe18fa6, - 0xe18fa7, - 0xe18fa8, - 0xe18fa9, - 0xe18faa, - 0xe18fab, - 0xe18fac, - 0xe18fad, - 0xe18fae, - 0xe18faf, - 0xe18fb0, - 0xe18fb1, - 0xe18fb2, - 0xe18fb3, - 0xe18fb4, - 0xe18fb5, - 0xe18fb6, - 0xe18fb7, - 0xe18fb8, - 0xe18fb9, - 0xe18fba, - 0xe18fbb, - 0xe18fbc, - 0xe18fbd, - 0xe18fbe, - 0xe18fbf, - 0xe19080, - 0xe19081, - 0xe19082, - 0xe19083, - 0xe19084, - 0xe19085, - 0xe19086, - 0xe19087, - 0xe19088, - 0xe19089, - 0xe1908a, - 0xe1908b, - 0xe1908c, - 0xe1908d, - 0xe1908e, - 0xe1908f, - 0xe19090, - 0xe19091, - 0xe19092, - 0xe19093, - 0xe19094, - 0xe19095, - 0xe19096, - 0xe19097, - 0xe19098, - 0xe19099, - 0xe1909a, - 0xe1909b, - 0xe1909c, - 0xe1909d, - 0xe1909e, - 0xe1909f, - 0xe190a0, - 0xe190a1, - 0xe190a2, - 0xe190a3, - 0xe190a4, - 0xe190a5, - 0xe190a6, - 0xe190a7, - 0xe190a8, - 0xe190a9, - 0xe190aa, - 0xe190ab, - 0xe190ac, - 0xe190ad, - 0xe190ae, - 0xe190af, - 0xe190b0, - 0xe190b1, - 0xe190b2, - 0xe190b3, - 0xe190b4, - 0xe190b5, - 0xe190b6, - 0xe190b7, - 0xe190b8, - 0xe190b9, - 0xe190ba, - 0xe190bb, - 0xe190bc, - 0xe190bd, - 0xe190be, - 0xe190bf, - 0xe19180, - 0xe19181, - 0xe19182, - 0xe19183, - 0xe19184, - 0xe19185, - 0xe19186, - 0xe19187, - 0xe19188, - 0xe19189, - 0xe1918a, - 0xe1918b, - 0xe1918c, - 0xe1918d, - 0xe1918e, - 0xe1918f, - 0xe19190, - 0xe19191, - 0xe19192, - 0xe19193, - 0xe19194, - 0xe19195, - 0xe19196, - 0xe19197, - 0xe19198, - 0xe19199, - 0xe1919a, - 0xe1919b, - 0xe1919c, - 0xe1919d, - 0xe1919e, - 0xe1919f, - 0xe191a0, - 0xe191a1, - 0xe191a2, - 0xe191a3, - 0xe191a4, - 0xe191a5, - 0xe191a6, - 0xe191a7, - 0xe191a8, - 0xe191a9, - 0xe191aa, - 0xe191ab, - 0xe191ac, - 0xe191ad, - 0xe191ae, - 0xe191af, - 0xe191b0, - 0xe191b1, - 0xe191b2, - 0xe191b3, - 0xe191b4, - 0xe191b5, - 0xe191b6, - 0xe191b7, - 0xe191b8, - 0xe191b9, - 0xe191ba, - 0xe191bb, - 0xe191bc, - 0xe191bd, - 0xe191be, - 0xe191bf, - 0xe19280, - 0xe19281, - 0xe19282, - 0xe19283, - 0xe19284, - 0xe19285, - 0xe19286, - 0xe19287, - 0xe19288, - 0xe19289, - 0xe1928a, - 0xe1928b, - 0xe1928c, - 0xe1928d, - 0xe1928e, - 0xe1928f, - 0xe19290, - 0xe19291, - 0xe19292, - 0xe19293, - 0xe19294, - 0xe19295, - 0xe19296, - 0xe19297, - 0xe19298, - 0xe19299, - 0xe1929a, - 0xe1929b, - 0xe1929c, - 0xe1929d, - 0xe1929e, - 0xe1929f, - 0xe192a0, - 0xe192a1, - 0xe192a2, - 0xe192a3, - 0xe192a4, - 0xe192a5, - 0xe192a6, - 0xe192a7, - 0xe192a8, - 0xe192a9, - 0xe192aa, - 0xe192ab, - 0xe192ac, - 0xe192ad, - 0xe192ae, - 0xe192af, - 0xe192b0, - 0xe192b1, - 0xe192b2, - 0xe192b3, - 0xe192b4, - 0xe192b5, - 0xe192b6, - 0xe192b7, - 0xe192b8, - 0xe192b9, - 0xe192ba, - 0xe192bb, - 0xe192bc, - 0xe192bd, - 0xe192be, - 0xe192bf, - 0xe19380, - 0xe19381, - 0xe19382, - 0xe19383, - 0xe19384, - 0xe19385, - 0xe19386, - 0xe19387, - 0xe19388, - 0xe19389, - 0xe1938a, - 0xe1938b, - 0xe1938c, - 0xe1938d, - 0xe1938e, - 0xe1938f, - 0xe19390, - 0xe19391, - 0xe19392, - 0xe19393, - 0xe19394, - 0xe19395, - 0xe19396, - 0xe19397, - 0xe19398, - 0xe19399, - 0xe1939a, - 0xe1939b, - 0xe1939c, - 0xe1939d, - 0xe1939e, - 0xe1939f, - 0xe193a0, - 0xe193a1, - 0xe193a2, - 0xe193a3, - 0xe193a4, - 0xe193a5, - 0xe193a6, - 0xe193a7, - 0xe193a8, - 0xe193a9, - 0xe193aa, - 0xe193ab, - 0xe193ac, - 0xe193ad, - 0xe193ae, - 0xe193af, - 0xe193b0, - 0xe193b1, - 0xe193b2, - 0xe193b3, - 0xe193b4, - 0xe193b5, - 0xe193b6, - 0xe193b7, - 0xe193b8, - 0xe193b9, - 0xe193ba, - 0xe193bb, - 0xe193bc, - 0xe193bd, - 0xe193be, - 0xe193bf, - 0xe19480, - 0xe19481, - 0xe19482, - 0xe19483, - 0xe19484, - 0xe19485, - 0xe19486, - 0xe19487, - 0xe19488, - 0xe19489, - 0xe1948a, - 0xe1948b, - 0xe1948c, - 0xe1948d, - 0xe1948e, - 0xe1948f, - 0xe19490, - 0xe19491, - 0xe19492, - 0xe19493, - 0xe19494, - 0xe19495, - 0xe19496, - 0xe19497, - 0xe19498, - 0xe19499, - 0xe1949a, - 0xe1949b, - 0xe1949c, - 0xe1949d, - 0xe1949e, - 0xe1949f, - 0xe194a0, - 0xe194a1, - 0xe194a2, - 0xe194a3, - 0xe194a4, - 0xe194a5, - 0xe194a6, - 0xe194a7, - 0xe194a8, - 0xe194a9, - 0xe194aa, - 0xe194ab, - 0xe194ac, - 0xe194ad, - 0xe194ae, - 0xe194af, - 0xe194b0, - 0xe194b1, - 0xe194b2, - 0xe194b3, - 0xe194b4, - 0xe194b5, - 0xe194b6, - 0xe194b7, - 0xe194b8, - 0xe194b9, - 0xe194ba, - 0xe194bb, - 0xe194bc, - 0xe194bd, - 0xe194be, - 0xe194bf, - 0xe19580, - 0xe19581, - 0xe19582, - 0xe19583, - 0xe19584, - 0xe19585, - 0xe19586, - 0xe19587, - 0xe19588, - 0xe19589, - 0xe1958a, - 0xe1958b, - 0xe1958c, - 0xe1958d, - 0xe1958e, - 0xe1958f, - 0xe19590, - 0xe19591, - 0xe19592, - 0xe19593, - 0xe19594, - 0xe19595, - 0xe19596, - 0xe19597, - 0xe19598, - 0xe19599, - 0xe1959a, - 0xe1959b, - 0xe1959c, - 0xe1959d, - 0xe1959e, - 0xe1959f, - 0xe195a0, - 0xe195a1, - 0xe195a2, - 0xe195a3, - 0xe195a4, - 0xe195a5, - 0xe195a6, - 0xe195a7, - 0xe195a8, - 0xe195a9, - 0xe195aa, - 0xe195ab, - 0xe195ac, - 0xe195ad, - 0xe195ae, - 0xe195af, - 0xe195b0, - 0xe195b1, - 0xe195b2, - 0xe195b3, - 0xe195b4, - 0xe195b5, - 0xe195b6, - 0xe195b7, - 0xe195b8, - 0xe195b9, - 0xe195ba, - 0xe195bb, - 0xe195bc, - 0xe195bd, - 0xe195be, - 0xe195bf, - 0xe19680, - 0xe19681, - 0xe19682, - 0xe19683, - 0xe19684, - 0xe19685, - 0xe19686, - 0xe19687, - 0xe19688, - 0xe19689, - 0xe1968a, - 0xe1968b, - 0xe1968c, - 0xe1968d, - 0xe1968e, - 0xe1968f, - 0xe19690, - 0xe19691, - 0xe19692, - 0xe19693, - 0xe19694, - 0xe19695, - 0xe19696, - 0xe19697, - 0xe19698, - 0xe19699, - 0xe1969a, - 0xe1969b, - 0xe1969c, - 0xe1969d, - 0xe1969e, - 0xe1969f, - 0xe196a0, - 0xe196a1, - 0xe196a2, - 0xe196a3, - 0xe196a4, - 0xe196a5, - 0xe196a6, - 0xe196a7, - 0xe196a8, - 0xe196a9, - 0xe196aa, - 0xe196ab, - 0xe196ac, - 0xe196ad, - 0xe196ae, - 0xe196af, - 0xe196b0, - 0xe196b1, - 0xe196b2, - 0xe196b3, - 0xe196b4, - 0xe196b5, - 0xe196b6, - 0xe196b7, - 0xe196b8, - 0xe196b9, - 0xe196ba, - 0xe196bb, - 0xe196bc, - 0xe196bd, - 0xe196be, - 0xe196bf, - 0xe19780, - 0xe19781, - 0xe19782, - 0xe19783, - 0xe19784, - 0xe19785, - 0xe19786, - 0xe19787, - 0xe19788, - 0xe19789, - 0xe1978a, - 0xe1978b, - 0xe1978c, - 0xe1978d, - 0xe1978e, - 0xe1978f, - 0xe19790, - 0xe19791, - 0xe19792, - 0xe19793, - 0xe19794, - 0xe19795, - 0xe19796, - 0xe19797, - 0xe19798, - 0xe19799, - 0xe1979a, - 0xe1979b, - 0xe1979c, - 0xe1979d, - 0xe1979e, - 0xe1979f, - 0xe197a0, - 0xe197a1, - 0xe197a2, - 0xe197a3, - 0xe197a4, - 0xe197a5, - 0xe197a6, - 0xe197a7, - 0xe197a8, - 0xe197a9, - 0xe197aa, - 0xe197ab, - 0xe197ac, - 0xe197ad, - 0xe197ae, - 0xe197af, - 0xe197b0, - 0xe197b1, - 0xe197b2, - 0xe197b3, - 0xe197b4, - 0xe197b5, - 0xe197b6, - 0xe197b7, - 0xe197b8, - 0xe197b9, - 0xe197ba, - 0xe197bb, - 0xe197bc, - 0xe197bd, - 0xe197be, - 0xe197bf, - 0xe19880, - 0xe19881, - 0xe19882, - 0xe19883, - 0xe19884, - 0xe19885, - 0xe19886, - 0xe19887, - 0xe19888, - 0xe19889, - 0xe1988a, - 0xe1988b, - 0xe1988c, - 0xe1988d, - 0xe1988e, - 0xe1988f, - 0xe19890, - 0xe19891, - 0xe19892, - 0xe19893, - 0xe19894, - 0xe19895, - 0xe19896, - 0xe19897, - 0xe19898, - 0xe19899, - 0xe1989a, - 0xe1989b, - 0xe1989c, - 0xe1989d, - 0xe1989e, - 0xe1989f, - 0xe198a0, - 0xe198a1, - 0xe198a2, - 0xe198a3, - 0xe198a4, - 0xe198a5, - 0xe198a6, - 0xe198a7, - 0xe198a8, - 0xe198a9, - 0xe198aa, - 0xe198ab, - 0xe198ac, - 0xe198ad, - 0xe198ae, - 0xe198af, - 0xe198b0, - 0xe198b1, - 0xe198b2, - 0xe198b3, - 0xe198b4, - 0xe198b5, - 0xe198b6, - 0xe198b7, - 0xe198b8, - 0xe198b9, - 0xe198ba, - 0xe198bb, - 0xe198bc, - 0xe198bd, - 0xe198be, - 0xe198bf, - 0xe19980, - 0xe19981, - 0xe19982, - 0xe19983, - 0xe19984, - 0xe19985, - 0xe19986, - 0xe19987, - 0xe19988, - 0xe19989, - 0xe1998a, - 0xe1998b, - 0xe1998c, - 0xe1998d, - 0xe1998e, - 0xe1998f, - 0xe19990, - 0xe19991, - 0xe19992, - 0xe19993, - 0xe19994, - 0xe19995, - 0xe19996, - 0xe19997, - 0xe19998, - 0xe19999, - 0xe1999a, - 0xe1999b, - 0xe1999c, - 0xe1999d, - 0xe1999e, - 0xe1999f, - 0xe199a0, - 0xe199a1, - 0xe199a2, - 0xe199a3, - 0xe199a4, - 0xe199a5, - 0xe199a6, - 0xe199a7, - 0xe199a8, - 0xe199a9, - 0xe199aa, - 0xe199ab, - 0xe199ac, - 0xe199ad, - 0xe199ae, - 0xe199af, - 0xe199b0, - 0xe199b1, - 0xe199b2, - 0xe199b3, - 0xe199b4, - 0xe199b5, - 0xe199b6, - 0xe199b7, - 0xe199b8, - 0xe199b9, - 0xe199ba, - 0xe199bb, - 0xe199bc, - 0xe199bd, - 0xe199be, - 0xe199bf, - 0xe19a80, - 0xe19a81, - 0xe19a82, - 0xe19a83, - 0xe19a84, - 0xe19a85, - 0xe19a86, - 0xe19a87, - 0xe19a88, - 0xe19a89, - 0xe19a8a, - 0xe19a8b, - 0xe19a8c, - 0xe19a8d, - 0xe19a8e, - 0xe19a8f, - 0xe19a90, - 0xe19a91, - 0xe19a92, - 0xe19a93, - 0xe19a94, - 0xe19a95, - 0xe19a96, - 0xe19a97, - 0xe19a98, - 0xe19a99, - 0xe19a9a, - 0xe19a9b, - 0xe19a9c, - 0xe19a9d, - 0xe19a9e, - 0xe19a9f, - 0xe19aa0, - 0xe19aa1, - 0xe19aa2, - 0xe19aa3, - 0xe19aa4, - 0xe19aa5, - 0xe19aa6, - 0xe19aa7, - 0xe19aa8, - 0xe19aa9, - 0xe19aaa, - 0xe19aab, - 0xe19aac, - 0xe19aad, - 0xe19aae, - 0xe19aaf, - 0xe19ab0, - 0xe19ab1, - 0xe19ab2, - 0xe19ab3, - 0xe19ab4, - 0xe19ab5, - 0xe19ab6, - 0xe19ab7, - 0xe19ab8, - 0xe19ab9, - 0xe19aba, - 0xe19abb, - 0xe19abc, - 0xe19abd, - 0xe19abe, - 0xe19abf, - 0xe19b80, - 0xe19b81, - 0xe19b82, - 0xe19b83, - 0xe19b84, - 0xe19b85, - 0xe19b86, - 0xe19b87, - 0xe19b88, - 0xe19b89, - 0xe19b8a, - 0xe19b8b, - 0xe19b8c, - 0xe19b8d, - 0xe19b8e, - 0xe19b8f, - 0xe19b90, - 0xe19b91, - 0xe19b92, - 0xe19b93, - 0xe19b94, - 0xe19b95, - 0xe19b96, - 0xe19b97, - 0xe19b98, - 0xe19b99, - 0xe19b9a, - 0xe19b9b, - 0xe19b9c, - 0xe19b9d, - 0xe19b9e, - 0xe19b9f, - 0xe19ba0, - 0xe19ba1, - 0xe19ba2, - 0xe19ba3, - 0xe19ba4, - 0xe19ba5, - 0xe19ba6, - 0xe19ba7, - 0xe19ba8, - 0xe19ba9, - 0xe19baa, - 0xe19bab, - 0xe19bac, - 0xe19bad, - 0xe19bae, - 0xe19baf, - 0xe19bb0, - 0xe19bb1, - 0xe19bb2, - 0xe19bb3, - 0xe19bb4, - 0xe19bb5, - 0xe19bb6, - 0xe19bb7, - 0xe19bb8, - 0xe19bb9, - 0xe19bba, - 0xe19bbb, - 0xe19bbc, - 0xe19bbd, - 0xe19bbe, - 0xe19bbf, - 0xe19c80, - 0xe19c81, - 0xe19c82, - 0xe19c83, - 0xe19c84, - 0xe19c85, - 0xe19c86, - 0xe19c87, - 0xe19c88, - 0xe19c89, - 0xe19c8a, - 0xe19c8b, - 0xe19c8c, - 0xe19c8d, - 0xe19c8e, - 0xe19c8f, - 0xe19c90, - 0xe19c91, - 0xe19c92, - 0xe19c93, - 0xe19c94, - 0xe19c95, - 0xe19c96, - 0xe19c97, - 0xe19c98, - 0xe19c99, - 0xe19c9a, - 0xe19c9b, - 0xe19c9c, - 0xe19c9d, - 0xe19c9e, - 0xe19c9f, - 0xe19ca0, - 0xe19ca1, - 0xe19ca2, - 0xe19ca3, - 0xe19ca4, - 0xe19ca5, - 0xe19ca6, - 0xe19ca7, - 0xe19ca8, - 0xe19ca9, - 0xe19caa, - 0xe19cab, - 0xe19cac, - 0xe19cad, - 0xe19cae, - 0xe19caf, - 0xe19cb0, - 0xe19cb1, - 0xe19cb2, - 0xe19cb3, - 0xe19cb4, - 0xe19cb5, - 0xe19cb6, - 0xe19cb7, - 0xe19cb8, - 0xe19cb9, - 0xe19cba, - 0xe19cbb, - 0xe19cbc, - 0xe19cbd, - 0xe19cbe, - 0xe19cbf, - 0xe19d80, - 0xe19d81, - 0xe19d82, - 0xe19d83, - 0xe19d84, - 0xe19d85, - 0xe19d86, - 0xe19d87, - 0xe19d88, - 0xe19d89, - 0xe19d8a, - 0xe19d8b, - 0xe19d8c, - 0xe19d8d, - 0xe19d8e, - 0xe19d8f, - 0xe19d90, - 0xe19d91, - 0xe19d92, - 0xe19d93, - 0xe19d94, - 0xe19d95, - 0xe19d96, - 0xe19d97, - 0xe19d98, - 0xe19d99, - 0xe19d9a, - 0xe19d9b, - 0xe19d9c, - 0xe19d9d, - 0xe19d9e, - 0xe19d9f, - 0xe19da0, - 0xe19da1, - 0xe19da2, - 0xe19da3, - 0xe19da4, - 0xe19da5, - 0xe19da6, - 0xe19da7, - 0xe19da8, - 0xe19da9, - 0xe19daa, - 0xe19dab, - 0xe19dac, - 0xe19dad, - 0xe19dae, - 0xe19daf, - 0xe19db0, - 0xe19db1, - 0xe19db2, - 0xe19db3, - 0xe19db4, - 0xe19db5, - 0xe19db6, - 0xe19db7, - 0xe19db8, - 0xe19db9, - 0xe19dba, - 0xe19dbb, - 0xe19dbc, - 0xe19dbd, - 0xe19dbe, - 0xe19dbf, - 0xe19e80, - 0xe19e81, - 0xe19e82, - 0xe19e83, - 0xe19e84, - 0xe19e85, - 0xe19e86, - 0xe19e87, - 0xe19e88, - 0xe19e89, - 0xe19e8a, - 0xe19e8b, - 0xe19e8c, - 0xe19e8d, - 0xe19e8e, - 0xe19e8f, - 0xe19e90, - 0xe19e91, - 0xe19e92, - 0xe19e93, - 0xe19e94, - 0xe19e95, - 0xe19e96, - 0xe19e97, - 0xe19e98, - 0xe19e99, - 0xe19e9a, - 0xe19e9b, - 0xe19e9c, - 0xe19e9d, - 0xe19e9e, - 0xe19e9f, - 0xe19ea0, - 0xe19ea1, - 0xe19ea2, - 0xe19ea3, - 0xe19ea4, - 0xe19ea5, - 0xe19ea6, - 0xe19ea7, - 0xe19ea8, - 0xe19ea9, - 0xe19eaa, - 0xe19eab, - 0xe19eac, - 0xe19ead, - 0xe19eae, - 0xe19eaf, - 0xe19eb0, - 0xe19eb1, - 0xe19eb2, - 0xe19eb3, - 0xe19eb4, - 0xe19eb5, - 0xe19eb6, - 0xe19eb7, - 0xe19eb8, - 0xe19eb9, - 0xe19eba, - 0xe19ebb, - 0xe19ebc, - 0xe19ebd, - 0xe19ebe, - 0xe19ebf, - 0xe19f80, - 0xe19f81, - 0xe19f82, - 0xe19f83, - 0xe19f84, - 0xe19f85, - 0xe19f86, - 0xe19f87, - 0xe19f88, - 0xe19f89, - 0xe19f8a, - 0xe19f8b, - 0xe19f8c, - 0xe19f8d, - 0xe19f8e, - 0xe19f8f, - 0xe19f90, - 0xe19f91, - 0xe19f92, - 0xe19f93, - 0xe19f94, - 0xe19f95, - 0xe19f96, - 0xe19f97, - 0xe19f98, - 0xe19f99, - 0xe19f9a, - 0xe19f9b, - 0xe19f9c, - 0xe19f9d, - 0xe19f9e, - 0xe19f9f, - 0xe19fa0, - 0xe19fa1, - 0xe19fa2, - 0xe19fa3, - 0xe19fa4, - 0xe19fa5, - 0xe19fa6, - 0xe19fa7, - 0xe19fa8, - 0xe19fa9, - 0xe19faa, - 0xe19fab, - 0xe19fac, - 0xe19fad, - 0xe19fae, - 0xe19faf, - 0xe19fb0, - 0xe19fb1, - 0xe19fb2, - 0xe19fb3, - 0xe19fb4, - 0xe19fb5, - 0xe19fb6, - 0xe19fb7, - 0xe19fb8, - 0xe19fb9, - 0xe19fba, - 0xe19fbb, - 0xe19fbc, - 0xe19fbd, - 0xe19fbe, - 0xe19fbf, - 0xe1a080, - 0xe1a081, - 0xe1a082, - 0xe1a083, - 0xe1a084, - 0xe1a085, - 0xe1a086, - 0xe1a087, - 0xe1a088, - 0xe1a089, - 0xe1a08a, - 0xe1a08b, - 0xe1a08c, - 0xe1a08d, - 0xe1a08e, - 0xe1a08f, - 0xe1a090, - 0xe1a091, - 0xe1a092, - 0xe1a093, - 0xe1a094, - 0xe1a095, - 0xe1a096, - 0xe1a097, - 0xe1a098, - 0xe1a099, - 0xe1a09a, - 0xe1a09b, - 0xe1a09c, - 0xe1a09d, - 0xe1a09e, - 0xe1a09f, - 0xe1a0a0, - 0xe1a0a1, - 0xe1a0a2, - 0xe1a0a3, - 0xe1a0a4, - 0xe1a0a5, - 0xe1a0a6, - 0xe1a0a7, - 0xe1a0a8, - 0xe1a0a9, - 0xe1a0aa, - 0xe1a0ab, - 0xe1a0ac, - 0xe1a0ad, - 0xe1a0ae, - 0xe1a0af, - 0xe1a0b0, - 0xe1a0b1, - 0xe1a0b2, - 0xe1a0b3, - 0xe1a0b4, - 0xe1a0b5, - 0xe1a0b6, - 0xe1a0b7, - 0xe1a0b8, - 0xe1a0b9, - 0xe1a0ba, - 0xe1a0bb, - 0xe1a0bc, - 0xe1a0bd, - 0xe1a0be, - 0xe1a0bf, - 0xe1a180, - 0xe1a181, - 0xe1a182, - 0xe1a183, - 0xe1a184, - 0xe1a185, - 0xe1a186, - 0xe1a187, - 0xe1a188, - 0xe1a189, - 0xe1a18a, - 0xe1a18b, - 0xe1a18c, - 0xe1a18d, - 0xe1a18e, - 0xe1a18f, - 0xe1a190, - 0xe1a191, - 0xe1a192, - 0xe1a193, - 0xe1a194, - 0xe1a195, - 0xe1a196, - 0xe1a197, - 0xe1a198, - 0xe1a199, - 0xe1a19a, - 0xe1a19b, - 0xe1a19c, - 0xe1a19d, - 0xe1a19e, - 0xe1a19f, - 0xe1a1a0, - 0xe1a1a1, - 0xe1a1a2, - 0xe1a1a3, - 0xe1a1a4, - 0xe1a1a5, - 0xe1a1a6, - 0xe1a1a7, - 0xe1a1a8, - 0xe1a1a9, - 0xe1a1aa, - 0xe1a1ab, - 0xe1a1ac, - 0xe1a1ad, - 0xe1a1ae, - 0xe1a1af, - 0xe1a1b0, - 0xe1a1b1, - 0xe1a1b2, - 0xe1a1b3, - 0xe1a1b4, - 0xe1a1b5, - 0xe1a1b6, - 0xe1a1b7, - 0xe1a1b8, - 0xe1a1b9, - 0xe1a1ba, - 0xe1a1bb, - 0xe1a1bc, - 0xe1a1bd, - 0xe1a1be, - 0xe1a1bf, - 0xe1a280, - 0xe1a281, - 0xe1a282, - 0xe1a283, - 0xe1a284, - 0xe1a285, - 0xe1a286, - 0xe1a287, - 0xe1a288, - 0xe1a289, - 0xe1a28a, - 0xe1a28b, - 0xe1a28c, - 0xe1a28d, - 0xe1a28e, - 0xe1a28f, - 0xe1a290, - 0xe1a291, - 0xe1a292, - 0xe1a293, - 0xe1a294, - 0xe1a295, - 0xe1a296, - 0xe1a297, - 0xe1a298, - 0xe1a299, - 0xe1a29a, - 0xe1a29b, - 0xe1a29c, - 0xe1a29d, - 0xe1a29e, - 0xe1a29f, - 0xe1a2a0, - 0xe1a2a1, - 0xe1a2a2, - 0xe1a2a3, - 0xe1a2a4, - 0xe1a2a5, - 0xe1a2a6, - 0xe1a2a7, - 0xe1a2a8, - 0xe1a2a9, - 0xe1a2aa, - 0xe1a2ab, - 0xe1a2ac, - 0xe1a2ad, - 0xe1a2ae, - 0xe1a2af, - 0xe1a2b0, - 0xe1a2b1, - 0xe1a2b2, - 0xe1a2b3, - 0xe1a2b4, - 0xe1a2b5, - 0xe1a2b6, - 0xe1a2b7, - 0xe1a2b8, - 0xe1a2b9, - 0xe1a2ba, - 0xe1a2bb, - 0xe1a2bc, - 0xe1a2bd, - 0xe1a2be, - 0xe1a2bf, - 0xe1a380, - 0xe1a381, - 0xe1a382, - 0xe1a383, - 0xe1a384, - 0xe1a385, - 0xe1a386, - 0xe1a387, - 0xe1a388, - 0xe1a389, - 0xe1a38a, - 0xe1a38b, - 0xe1a38c, - 0xe1a38d, - 0xe1a38e, - 0xe1a38f, - 0xe1a390, - 0xe1a391, - 0xe1a392, - 0xe1a393, - 0xe1a394, - 0xe1a395, - 0xe1a396, - 0xe1a397, - 0xe1a398, - 0xe1a399, - 0xe1a39a, - 0xe1a39b, - 0xe1a39c, - 0xe1a39d, - 0xe1a39e, - 0xe1a39f, - 0xe1a3a0, - 0xe1a3a1, - 0xe1a3a2, - 0xe1a3a3, - 0xe1a3a4, - 0xe1a3a5, - 0xe1a3a6, - 0xe1a3a7, - 0xe1a3a8, - 0xe1a3a9, - 0xe1a3aa, - 0xe1a3ab, - 0xe1a3ac, - 0xe1a3ad, - 0xe1a3ae, - 0xe1a3af, - 0xe1a3b0, - 0xe1a3b1, - 0xe1a3b2, - 0xe1a3b3, - 0xe1a3b4, - 0xe1a3b5, - 0xe1a3b6, - 0xe1a3b7, - 0xe1a3b8, - 0xe1a3b9, - 0xe1a3ba, - 0xe1a3bb, - 0xe1a3bc, - 0xe1a3bd, - 0xe1a3be, - 0xe1a3bf, - 0xe1a480, - 0xe1a481, - 0xe1a482, - 0xe1a483, - 0xe1a484, - 0xe1a485, - 0xe1a486, - 0xe1a487, - 0xe1a488, - 0xe1a489, - 0xe1a48a, - 0xe1a48b, - 0xe1a48c, - 0xe1a48d, - 0xe1a48e, - 0xe1a48f, - 0xe1a490, - 0xe1a491, - 0xe1a492, - 0xe1a493, - 0xe1a494, - 0xe1a495, - 0xe1a496, - 0xe1a497, - 0xe1a498, - 0xe1a499, - 0xe1a49a, - 0xe1a49b, - 0xe1a49c, - 0xe1a49d, - 0xe1a49e, - 0xe1a49f, - 0xe1a4a0, - 0xe1a4a1, - 0xe1a4a2, - 0xe1a4a3, - 0xe1a4a4, - 0xe1a4a5, - 0xe1a4a6, - 0xe1a4a7, - 0xe1a4a8, - 0xe1a4a9, - 0xe1a4aa, - 0xe1a4ab, - 0xe1a4ac, - 0xe1a4ad, - 0xe1a4ae, - 0xe1a4af, - 0xe1a4b0, - 0xe1a4b1, - 0xe1a4b2, - 0xe1a4b3, - 0xe1a4b4, - 0xe1a4b5, - 0xe1a4b6, - 0xe1a4b7, - 0xe1a4b8, - 0xe1a4b9, - 0xe1a4ba, - 0xe1a4bb, - 0xe1a4bc, - 0xe1a4bd, - 0xe1a4be, - 0xe1a4bf, - 0xe1a580, - 0xe1a581, - 0xe1a582, - 0xe1a583, - 0xe1a584, - 0xe1a585, - 0xe1a586, - 0xe1a587, - 0xe1a588, - 0xe1a589, - 0xe1a58a, - 0xe1a58b, - 0xe1a58c, - 0xe1a58d, - 0xe1a58e, - 0xe1a58f, - 0xe1a590, - 0xe1a591, - 0xe1a592, - 0xe1a593, - 0xe1a594, - 0xe1a595, - 0xe1a596, - 0xe1a597, - 0xe1a598, - 0xe1a599, - 0xe1a59a, - 0xe1a59b, - 0xe1a59c, - 0xe1a59d, - 0xe1a59e, - 0xe1a59f, - 0xe1a5a0, - 0xe1a5a1, - 0xe1a5a2, - 0xe1a5a3, - 0xe1a5a4, - 0xe1a5a5, - 0xe1a5a6, - 0xe1a5a7, - 0xe1a5a8, - 0xe1a5a9, - 0xe1a5aa, - 0xe1a5ab, - 0xe1a5ac, - 0xe1a5ad, - 0xe1a5ae, - 0xe1a5af, - 0xe1a5b0, - 0xe1a5b1, - 0xe1a5b2, - 0xe1a5b3, - 0xe1a5b4, - 0xe1a5b5, - 0xe1a5b6, - 0xe1a5b7, - 0xe1a5b8, - 0xe1a5b9, - 0xe1a5ba, - 0xe1a5bb, - 0xe1a5bc, - 0xe1a5bd, - 0xe1a5be, - 0xe1a5bf, - 0xe1a680, - 0xe1a681, - 0xe1a682, - 0xe1a683, - 0xe1a684, - 0xe1a685, - 0xe1a686, - 0xe1a687, - 0xe1a688, - 0xe1a689, - 0xe1a68a, - 0xe1a68b, - 0xe1a68c, - 0xe1a68d, - 0xe1a68e, - 0xe1a68f, - 0xe1a690, - 0xe1a691, - 0xe1a692, - 0xe1a693, - 0xe1a694, - 0xe1a695, - 0xe1a696, - 0xe1a697, - 0xe1a698, - 0xe1a699, - 0xe1a69a, - 0xe1a69b, - 0xe1a69c, - 0xe1a69d, - 0xe1a69e, - 0xe1a69f, - 0xe1a6a0, - 0xe1a6a1, - 0xe1a6a2, - 0xe1a6a3, - 0xe1a6a4, - 0xe1a6a5, - 0xe1a6a6, - 0xe1a6a7, - 0xe1a6a8, - 0xe1a6a9, - 0xe1a6aa, - 0xe1a6ab, - 0xe1a6ac, - 0xe1a6ad, - 0xe1a6ae, - 0xe1a6af, - 0xe1a6b0, - 0xe1a6b1, - 0xe1a6b2, - 0xe1a6b3, - 0xe1a6b4, - 0xe1a6b5, - 0xe1a6b6, - 0xe1a6b7, - 0xe1a6b8, - 0xe1a6b9, - 0xe1a6ba, - 0xe1a6bb, - 0xe1a6bc, - 0xe1a6bd, - 0xe1a6be, - 0xe1a6bf, - 0xe1a780, - 0xe1a781, - 0xe1a782, - 0xe1a783, - 0xe1a784, - 0xe1a785, - 0xe1a786, - 0xe1a787, - 0xe1a788, - 0xe1a789, - 0xe1a78a, - 0xe1a78b, - 0xe1a78c, - 0xe1a78d, - 0xe1a78e, - 0xe1a78f, - 0xe1a790, - 0xe1a791, - 0xe1a792, - 0xe1a793, - 0xe1a794, - 0xe1a795, - 0xe1a796, - 0xe1a797, - 0xe1a798, - 0xe1a799, - 0xe1a79a, - 0xe1a79b, - 0xe1a79c, - 0xe1a79d, - 0xe1a79e, - 0xe1a79f, - 0xe1a7a0, - 0xe1a7a1, - 0xe1a7a2, - 0xe1a7a3, - 0xe1a7a4, - 0xe1a7a5, - 0xe1a7a6, - 0xe1a7a7, - 0xe1a7a8, - 0xe1a7a9, - 0xe1a7aa, - 0xe1a7ab, - 0xe1a7ac, - 0xe1a7ad, - 0xe1a7ae, - 0xe1a7af, - 0xe1a7b0, - 0xe1a7b1, - 0xe1a7b2, - 0xe1a7b3, - 0xe1a7b4, - 0xe1a7b5, - 0xe1a7b6, - 0xe1a7b7, - 0xe1a7b8, - 0xe1a7b9, - 0xe1a7ba, - 0xe1a7bb, - 0xe1a7bc, - 0xe1a7bd, - 0xe1a7be, - 0xe1a7bf, - 0xe1a880, - 0xe1a881, - 0xe1a882, - 0xe1a883, - 0xe1a884, - 0xe1a885, - 0xe1a886, - 0xe1a887, - 0xe1a888, - 0xe1a889, - 0xe1a88a, - 0xe1a88b, - 0xe1a88c, - 0xe1a88d, - 0xe1a88e, - 0xe1a88f, - 0xe1a890, - 0xe1a891, - 0xe1a892, - 0xe1a893, - 0xe1a894, - 0xe1a895, - 0xe1a896, - 0xe1a897, - 0xe1a898, - 0xe1a899, - 0xe1a89a, - 0xe1a89b, - 0xe1a89c, - 0xe1a89d, - 0xe1a89e, - 0xe1a89f, - 0xe1a8a0, - 0xe1a8a1, - 0xe1a8a2, - 0xe1a8a3, - 0xe1a8a4, - 0xe1a8a5, - 0xe1a8a6, - 0xe1a8a7, - 0xe1a8a8, - 0xe1a8a9, - 0xe1a8aa, - 0xe1a8ab, - 0xe1a8ac, - 0xe1a8ad, - 0xe1a8ae, - 0xe1a8af, - 0xe1a8b0, - 0xe1a8b1, - 0xe1a8b2, - 0xe1a8b3, - 0xe1a8b4, - 0xe1a8b5, - 0xe1a8b6, - 0xe1a8b7, - 0xe1a8b8, - 0xe1a8b9, - 0xe1a8ba, - 0xe1a8bb, - 0xe1a8bc, - 0xe1a8bd, - 0xe1a8be, - 0xe1a8bf, - 0xe1a980, - 0xe1a981, - 0xe1a982, - 0xe1a983, - 0xe1a984, - 0xe1a985, - 0xe1a986, - 0xe1a987, - 0xe1a988, - 0xe1a989, - 0xe1a98a, - 0xe1a98b, - 0xe1a98c, - 0xe1a98d, - 0xe1a98e, - 0xe1a98f, - 0xe1a990, - 0xe1a991, - 0xe1a992, - 0xe1a993, - 0xe1a994, - 0xe1a995, - 0xe1a996, - 0xe1a997, - 0xe1a998, - 0xe1a999, - 0xe1a99a, - 0xe1a99b, - 0xe1a99c, - 0xe1a99d, - 0xe1a99e, - 0xe1a99f, - 0xe1a9a0, - 0xe1a9a1, - 0xe1a9a2, - 0xe1a9a3, - 0xe1a9a4, - 0xe1a9a5, - 0xe1a9a6, - 0xe1a9a7, - 0xe1a9a8, - 0xe1a9a9, - 0xe1a9aa, - 0xe1a9ab, - 0xe1a9ac, - 0xe1a9ad, - 0xe1a9ae, - 0xe1a9af, - 0xe1a9b0, - 0xe1a9b1, - 0xe1a9b2, - 0xe1a9b3, - 0xe1a9b4, - 0xe1a9b5, - 0xe1a9b6, - 0xe1a9b7, - 0xe1a9b8, - 0xe1a9b9, - 0xe1a9ba, - 0xe1a9bb, - 0xe1a9bc, - 0xe1a9bd, - 0xe1a9be, - 0xe1a9bf, - 0xe1aa80, - 0xe1aa81, - 0xe1aa82, - 0xe1aa83, - 0xe1aa84, - 0xe1aa85, - 0xe1aa86, - 0xe1aa87, - 0xe1aa88, - 0xe1aa89, - 0xe1aa8a, - 0xe1aa8b, - 0xe1aa8c, - 0xe1aa8d, - 0xe1aa8e, - 0xe1aa8f, - 0xe1aa90, - 0xe1aa91, - 0xe1aa92, - 0xe1aa93, - 0xe1aa94, - 0xe1aa95, - 0xe1aa96, - 0xe1aa97, - 0xe1aa98, - 0xe1aa99, - 0xe1aa9a, - 0xe1aa9b, - 0xe1aa9c, - 0xe1aa9d, - 0xe1aa9e, - 0xe1aa9f, - 0xe1aaa0, - 0xe1aaa1, - 0xe1aaa2, - 0xe1aaa3, - 0xe1aaa4, - 0xe1aaa5, - 0xe1aaa6, - 0xe1aaa7, - 0xe1aaa8, - 0xe1aaa9, - 0xe1aaaa, - 0xe1aaab, - 0xe1aaac, - 0xe1aaad, - 0xe1aaae, - 0xe1aaaf, - 0xe1aab0, - 0xe1aab1, - 0xe1aab2, - 0xe1aab3, - 0xe1aab4, - 0xe1aab5, - 0xe1aab6, - 0xe1aab7, - 0xe1aab8, - 0xe1aab9, - 0xe1aaba, - 0xe1aabb, - 0xe1aabc, - 0xe1aabd, - 0xe1aabe, - 0xe1aabf, - 0xe1ab80, - 0xe1ab81, - 0xe1ab82, - 0xe1ab83, - 0xe1ab84, - 0xe1ab85, - 0xe1ab86, - 0xe1ab87, - 0xe1ab88, - 0xe1ab89, - 0xe1ab8a, - 0xe1ab8b, - 0xe1ab8c, - 0xe1ab8d, - 0xe1ab8e, - 0xe1ab8f, - 0xe1ab90, - 0xe1ab91, - 0xe1ab92, - 0xe1ab93, - 0xe1ab94, - 0xe1ab95, - 0xe1ab96, - 0xe1ab97, - 0xe1ab98, - 0xe1ab99, - 0xe1ab9a, - 0xe1ab9b, - 0xe1ab9c, - 0xe1ab9d, - 0xe1ab9e, - 0xe1ab9f, - 0xe1aba0, - 0xe1aba1, - 0xe1aba2, - 0xe1aba3, - 0xe1aba4, - 0xe1aba5, - 0xe1aba6, - 0xe1aba7, - 0xe1aba8, - 0xe1aba9, - 0xe1abaa, - 0xe1abab, - 0xe1abac, - 0xe1abad, - 0xe1abae, - 0xe1abaf, - 0xe1abb0, - 0xe1abb1, - 0xe1abb2, - 0xe1abb3, - 0xe1abb4, - 0xe1abb5, - 0xe1abb6, - 0xe1abb7, - 0xe1abb8, - 0xe1abb9, - 0xe1abba, - 0xe1abbb, - 0xe1abbc, - 0xe1abbd, - 0xe1abbe, - 0xe1abbf, - 0xe1ac80, - 0xe1ac81, - 0xe1ac82, - 0xe1ac83, - 0xe1ac84, - 0xe1ac85, - 0xe1ac86, - 0xe1ac87, - 0xe1ac88, - 0xe1ac89, - 0xe1ac8a, - 0xe1ac8b, - 0xe1ac8c, - 0xe1ac8d, - 0xe1ac8e, - 0xe1ac8f, - 0xe1ac90, - 0xe1ac91, - 0xe1ac92, - 0xe1ac93, - 0xe1ac94, - 0xe1ac95, - 0xe1ac96, - 0xe1ac97, - 0xe1ac98, - 0xe1ac99, - 0xe1ac9a, - 0xe1ac9b, - 0xe1ac9c, - 0xe1ac9d, - 0xe1ac9e, - 0xe1ac9f, - 0xe1aca0, - 0xe1aca1, - 0xe1aca2, - 0xe1aca3, - 0xe1aca4, - 0xe1aca5, - 0xe1aca6, - 0xe1aca7, - 0xe1aca8, - 0xe1aca9, - 0xe1acaa, - 0xe1acab, - 0xe1acac, - 0xe1acad, - 0xe1acae, - 0xe1acaf, - 0xe1acb0, - 0xe1acb1, - 0xe1acb2, - 0xe1acb3, - 0xe1acb4, - 0xe1acb5, - 0xe1acb6, - 0xe1acb7, - 0xe1acb8, - 0xe1acb9, - 0xe1acba, - 0xe1acbb, - 0xe1acbc, - 0xe1acbd, - 0xe1acbe, - 0xe1acbf, - 0xe1ad80, - 0xe1ad81, - 0xe1ad82, - 0xe1ad83, - 0xe1ad84, - 0xe1ad85, - 0xe1ad86, - 0xe1ad87, - 0xe1ad88, - 0xe1ad89, - 0xe1ad8a, - 0xe1ad8b, - 0xe1ad8c, - 0xe1ad8d, - 0xe1ad8e, - 0xe1ad8f, - 0xe1ad90, - 0xe1ad91, - 0xe1ad92, - 0xe1ad93, - 0xe1ad94, - 0xe1ad95, - 0xe1ad96, - 0xe1ad97, - 0xe1ad98, - 0xe1ad99, - 0xe1ad9a, - 0xe1ad9b, - 0xe1ad9c, - 0xe1ad9d, - 0xe1ad9e, - 0xe1ad9f, - 0xe1ada0, - 0xe1ada1, - 0xe1ada2, - 0xe1ada3, - 0xe1ada4, - 0xe1ada5, - 0xe1ada6, - 0xe1ada7, - 0xe1ada8, - 0xe1ada9, - 0xe1adaa, - 0xe1adab, - 0xe1adac, - 0xe1adad, - 0xe1adae, - 0xe1adaf, - 0xe1adb0, - 0xe1adb1, - 0xe1adb2, - 0xe1adb3, - 0xe1adb4, - 0xe1adb5, - 0xe1adb6, - 0xe1adb7, - 0xe1adb8, - 0xe1adb9, - 0xe1adba, - 0xe1adbb, - 0xe1adbc, - 0xe1adbd, - 0xe1adbe, - 0xe1adbf, - 0xe1ae80, - 0xe1ae81, - 0xe1ae82, - 0xe1ae83, - 0xe1ae84, - 0xe1ae85, - 0xe1ae86, - 0xe1ae87, - 0xe1ae88, - 0xe1ae89, - 0xe1ae8a, - 0xe1ae8b, - 0xe1ae8c, - 0xe1ae8d, - 0xe1ae8e, - 0xe1ae8f, - 0xe1ae90, - 0xe1ae91, - 0xe1ae92, - 0xe1ae93, - 0xe1ae94, - 0xe1ae95, - 0xe1ae96, - 0xe1ae97, - 0xe1ae98, - 0xe1ae99, - 0xe1ae9a, - 0xe1ae9b, - 0xe1ae9c, - 0xe1ae9d, - 0xe1ae9e, - 0xe1ae9f, - 0xe1aea0, - 0xe1aea1, - 0xe1aea2, - 0xe1aea3, - 0xe1aea4, - 0xe1aea5, - 0xe1aea6, - 0xe1aea7, - 0xe1aea8, - 0xe1aea9, - 0xe1aeaa, - 0xe1aeab, - 0xe1aeac, - 0xe1aead, - 0xe1aeae, - 0xe1aeaf, - 0xe1aeb0, - 0xe1aeb1, - 0xe1aeb2, - 0xe1aeb3, - 0xe1aeb4, - 0xe1aeb5, - 0xe1aeb6, - 0xe1aeb7, - 0xe1aeb8, - 0xe1aeb9, - 0xe1aeba, - 0xe1aebb, - 0xe1aebc, - 0xe1aebd, - 0xe1aebe, - 0xe1aebf, - 0xe1af80, - 0xe1af81, - 0xe1af82, - 0xe1af83, - 0xe1af84, - 0xe1af85, - 0xe1af86, - 0xe1af87, - 0xe1af88, - 0xe1af89, - 0xe1af8a, - 0xe1af8b, - 0xe1af8c, - 0xe1af8d, - 0xe1af8e, - 0xe1af8f, - 0xe1af90, - 0xe1af91, - 0xe1af92, - 0xe1af93, - 0xe1af94, - 0xe1af95, - 0xe1af96, - 0xe1af97, - 0xe1af98, - 0xe1af99, - 0xe1af9a, - 0xe1af9b, - 0xe1af9c, - 0xe1af9d, - 0xe1af9e, - 0xe1af9f, - 0xe1afa0, - 0xe1afa1, - 0xe1afa2, - 0xe1afa3, - 0xe1afa4, - 0xe1afa5, - 0xe1afa6, - 0xe1afa7, - 0xe1afa8, - 0xe1afa9, - 0xe1afaa, - 0xe1afab, - 0xe1afac, - 0xe1afad, - 0xe1afae, - 0xe1afaf, - 0xe1afb0, - 0xe1afb1, - 0xe1afb2, - 0xe1afb3, - 0xe1afb4, - 0xe1afb5, - 0xe1afb6, - 0xe1afb7, - 0xe1afb8, - 0xe1afb9, - 0xe1afba, - 0xe1afbb, - 0xe1afbc, - 0xe1afbd, - 0xe1afbe, - 0xe1afbf, - 0xe1b080, - 0xe1b081, - 0xe1b082, - 0xe1b083, - 0xe1b084, - 0xe1b085, - 0xe1b086, - 0xe1b087, - 0xe1b088, - 0xe1b089, - 0xe1b08a, - 0xe1b08b, - 0xe1b08c, - 0xe1b08d, - 0xe1b08e, - 0xe1b08f, - 0xe1b090, - 0xe1b091, - 0xe1b092, - 0xe1b093, - 0xe1b094, - 0xe1b095, - 0xe1b096, - 0xe1b097, - 0xe1b098, - 0xe1b099, - 0xe1b09a, - 0xe1b09b, - 0xe1b09c, - 0xe1b09d, - 0xe1b09e, - 0xe1b09f, - 0xe1b0a0, - 0xe1b0a1, - 0xe1b0a2, - 0xe1b0a3, - 0xe1b0a4, - 0xe1b0a5, - 0xe1b0a6, - 0xe1b0a7, - 0xe1b0a8, - 0xe1b0a9, - 0xe1b0aa, - 0xe1b0ab, - 0xe1b0ac, - 0xe1b0ad, - 0xe1b0ae, - 0xe1b0af, - 0xe1b0b0, - 0xe1b0b1, - 0xe1b0b2, - 0xe1b0b3, - 0xe1b0b4, - 0xe1b0b5, - 0xe1b0b6, - 0xe1b0b7, - 0xe1b0b8, - 0xe1b0b9, - 0xe1b0ba, - 0xe1b0bb, - 0xe1b0bc, - 0xe1b0bd, - 0xe1b0be, - 0xe1b0bf, - 0xe1b180, - 0xe1b181, - 0xe1b182, - 0xe1b183, - 0xe1b184, - 0xe1b185, - 0xe1b186, - 0xe1b187, - 0xe1b188, - 0xe1b189, - 0xe1b18a, - 0xe1b18b, - 0xe1b18c, - 0xe1b18d, - 0xe1b18e, - 0xe1b18f, - 0xe1b190, - 0xe1b191, - 0xe1b192, - 0xe1b193, - 0xe1b194, - 0xe1b195, - 0xe1b196, - 0xe1b197, - 0xe1b198, - 0xe1b199, - 0xe1b19a, - 0xe1b19b, - 0xe1b19c, - 0xe1b19d, - 0xe1b19e, - 0xe1b19f, - 0xe1b1a0, - 0xe1b1a1, - 0xe1b1a2, - 0xe1b1a3, - 0xe1b1a4, - 0xe1b1a5, - 0xe1b1a6, - 0xe1b1a7, - 0xe1b1a8, - 0xe1b1a9, - 0xe1b1aa, - 0xe1b1ab, - 0xe1b1ac, - 0xe1b1ad, - 0xe1b1ae, - 0xe1b1af, - 0xe1b1b0, - 0xe1b1b1, - 0xe1b1b2, - 0xe1b1b3, - 0xe1b1b4, - 0xe1b1b5, - 0xe1b1b6, - 0xe1b1b7, - 0xe1b1b8, - 0xe1b1b9, - 0xe1b1ba, - 0xe1b1bb, - 0xe1b1bc, - 0xe1b1bd, - 0xe1b1be, - 0xe1b1bf, - 0xe1b280, - 0xe1b281, - 0xe1b282, - 0xe1b283, - 0xe1b284, - 0xe1b285, - 0xe1b286, - 0xe1b287, - 0xe1b288, - 0xe1b289, - 0xe1b28a, - 0xe1b28b, - 0xe1b28c, - 0xe1b28d, - 0xe1b28e, - 0xe1b28f, - 0xe1b290, - 0xe1b291, - 0xe1b292, - 0xe1b293, - 0xe1b294, - 0xe1b295, - 0xe1b296, - 0xe1b297, - 0xe1b298, - 0xe1b299, - 0xe1b29a, - 0xe1b29b, - 0xe1b29c, - 0xe1b29d, - 0xe1b29e, - 0xe1b29f, - 0xe1b2a0, - 0xe1b2a1, - 0xe1b2a2, - 0xe1b2a3, - 0xe1b2a4, - 0xe1b2a5, - 0xe1b2a6, - 0xe1b2a7, - 0xe1b2a8, - 0xe1b2a9, - 0xe1b2aa, - 0xe1b2ab, - 0xe1b2ac, - 0xe1b2ad, - 0xe1b2ae, - 0xe1b2af, - 0xe1b2b0, - 0xe1b2b1, - 0xe1b2b2, - 0xe1b2b3, - 0xe1b2b4, - 0xe1b2b5, - 0xe1b2b6, - 0xe1b2b7, - 0xe1b2b8, - 0xe1b2b9, - 0xe1b2ba, - 0xe1b2bb, - 0xe1b2bc, - 0xe1b2bd, - 0xe1b2be, - 0xe1b2bf, - 0xe1b380, - 0xe1b381, - 0xe1b382, - 0xe1b383, - 0xe1b384, - 0xe1b385, - 0xe1b386, - 0xe1b387, - 0xe1b388, - 0xe1b389, - 0xe1b38a, - 0xe1b38b, - 0xe1b38c, - 0xe1b38d, - 0xe1b38e, - 0xe1b38f, - 0xe1b390, - 0xe1b391, - 0xe1b392, - 0xe1b393, - 0xe1b394, - 0xe1b395, - 0xe1b396, - 0xe1b397, - 0xe1b398, - 0xe1b399, - 0xe1b39a, - 0xe1b39b, - 0xe1b39c, - 0xe1b39d, - 0xe1b39e, - 0xe1b39f, - 0xe1b3a0, - 0xe1b3a1, - 0xe1b3a2, - 0xe1b3a3, - 0xe1b3a4, - 0xe1b3a5, - 0xe1b3a6, - 0xe1b3a7, - 0xe1b3a8, - 0xe1b3a9, - 0xe1b3aa, - 0xe1b3ab, - 0xe1b3ac, - 0xe1b3ad, - 0xe1b3ae, - 0xe1b3af, - 0xe1b3b0, - 0xe1b3b1, - 0xe1b3b2, - 0xe1b3b3, - 0xe1b3b4, - 0xe1b3b5, - 0xe1b3b6, - 0xe1b3b7, - 0xe1b3b8, - 0xe1b3b9, - 0xe1b3ba, - 0xe1b3bb, - 0xe1b3bc, - 0xe1b3bd, - 0xe1b3be, - 0xe1b3bf, - 0xe1b480, - 0xe1b481, - 0xe1b482, - 0xe1b483, - 0xe1b484, - 0xe1b485, - 0xe1b486, - 0xe1b487, - 0xe1b488, - 0xe1b489, - 0xe1b48a, - 0xe1b48b, - 0xe1b48c, - 0xe1b48d, - 0xe1b48e, - 0xe1b48f, - 0xe1b490, - 0xe1b491, - 0xe1b492, - 0xe1b493, - 0xe1b494, - 0xe1b495, - 0xe1b496, - 0xe1b497, - 0xe1b498, - 0xe1b499, - 0xe1b49a, - 0xe1b49b, - 0xe1b49c, - 0xe1b49d, - 0xe1b49e, - 0xe1b49f, - 0xe1b4a0, - 0xe1b4a1, - 0xe1b4a2, - 0xe1b4a3, - 0xe1b4a4, - 0xe1b4a5, - 0xe1b4a6, - 0xe1b4a7, - 0xe1b4a8, - 0xe1b4a9, - 0xe1b4aa, - 0xe1b4ab, - 0xe1b4ac, - 0xe1b4ad, - 0xe1b4ae, - 0xe1b4af, - 0xe1b4b0, - 0xe1b4b1, - 0xe1b4b2, - 0xe1b4b3, - 0xe1b4b4, - 0xe1b4b5, - 0xe1b4b6, - 0xe1b4b7, - 0xe1b4b8, - 0xe1b4b9, - 0xe1b4ba, - 0xe1b4bb, - 0xe1b4bc, - 0xe1b4bd, - 0xe1b4be, - 0xe1b4bf, - 0xe1b580, - 0xe1b581, - 0xe1b582, - 0xe1b583, - 0xe1b584, - 0xe1b585, - 0xe1b586, - 0xe1b587, - 0xe1b588, - 0xe1b589, - 0xe1b58a, - 0xe1b58b, - 0xe1b58c, - 0xe1b58d, - 0xe1b58e, - 0xe1b58f, - 0xe1b590, - 0xe1b591, - 0xe1b592, - 0xe1b593, - 0xe1b594, - 0xe1b595, - 0xe1b596, - 0xe1b597, - 0xe1b598, - 0xe1b599, - 0xe1b59a, - 0xe1b59b, - 0xe1b59c, - 0xe1b59d, - 0xe1b59e, - 0xe1b59f, - 0xe1b5a0, - 0xe1b5a1, - 0xe1b5a2, - 0xe1b5a3, - 0xe1b5a4, - 0xe1b5a5, - 0xe1b5a6, - 0xe1b5a7, - 0xe1b5a8, - 0xe1b5a9, - 0xe1b5aa, - 0xe1b5ab, - 0xe1b5ac, - 0xe1b5ad, - 0xe1b5ae, - 0xe1b5af, - 0xe1b5b0, - 0xe1b5b1, - 0xe1b5b2, - 0xe1b5b3, - 0xe1b5b4, - 0xe1b5b5, - 0xe1b5b6, - 0xe1b5b7, - 0xe1b5b8, - 0xe1b5b9, - 0xe1b5ba, - 0xe1b5bb, - 0xe1b5bc, - 0xe1b5bd, - 0xe1b5be, - 0xe1b5bf, - 0xe1b680, - 0xe1b681, - 0xe1b682, - 0xe1b683, - 0xe1b684, - 0xe1b685, - 0xe1b686, - 0xe1b687, - 0xe1b688, - 0xe1b689, - 0xe1b68a, - 0xe1b68b, - 0xe1b68c, - 0xe1b68d, - 0xe1b68e, - 0xe1b68f, - 0xe1b690, - 0xe1b691, - 0xe1b692, - 0xe1b693, - 0xe1b694, - 0xe1b695, - 0xe1b696, - 0xe1b697, - 0xe1b698, - 0xe1b699, - 0xe1b69a, - 0xe1b69b, - 0xe1b69c, - 0xe1b69d, - 0xe1b69e, - 0xe1b69f, - 0xe1b6a0, - 0xe1b6a1, - 0xe1b6a2, - 0xe1b6a3, - 0xe1b6a4, - 0xe1b6a5, - 0xe1b6a6, - 0xe1b6a7, - 0xe1b6a8, - 0xe1b6a9, - 0xe1b6aa, - 0xe1b6ab, - 0xe1b6ac, - 0xe1b6ad, - 0xe1b6ae, - 0xe1b6af, - 0xe1b6b0, - 0xe1b6b1, - 0xe1b6b2, - 0xe1b6b3, - 0xe1b6b4, - 0xe1b6b5, - 0xe1b6b6, - 0xe1b6b7, - 0xe1b6b8, - 0xe1b6b9, - 0xe1b6ba, - 0xe1b6bb, - 0xe1b6bc, - 0xe1b6bd, - 0xe1b6be, - 0xe1b6bf, - 0xe1b780, - 0xe1b781, - 0xe1b782, - 0xe1b783, - 0xe1b784, - 0xe1b785, - 0xe1b786, - 0xe1b787, - 0xe1b788, - 0xe1b789, - 0xe1b78a, - 0xe1b78b, - 0xe1b78c, - 0xe1b78d, - 0xe1b78e, - 0xe1b78f, - 0xe1b790, - 0xe1b791, - 0xe1b792, - 0xe1b793, - 0xe1b794, - 0xe1b795, - 0xe1b796, - 0xe1b797, - 0xe1b798, - 0xe1b799, - 0xe1b79a, - 0xe1b79b, - 0xe1b79c, - 0xe1b79d, - 0xe1b79e, - 0xe1b79f, - 0xe1b7a0, - 0xe1b7a1, - 0xe1b7a2, - 0xe1b7a3, - 0xe1b7a4, - 0xe1b7a5, - 0xe1b7a6, - 0xe1b7a7, - 0xe1b7a8, - 0xe1b7a9, - 0xe1b7aa, - 0xe1b7ab, - 0xe1b7ac, - 0xe1b7ad, - 0xe1b7ae, - 0xe1b7af, - 0xe1b7b0, - 0xe1b7b1, - 0xe1b7b2, - 0xe1b7b3, - 0xe1b7b4, - 0xe1b7b5, - 0xe1b7b6, - 0xe1b7b7, - 0xe1b7b8, - 0xe1b7b9, - 0xe1b7ba, - 0xe1b7bb, - 0xe1b7bc, - 0xe1b7bd, - 0xe1b7be, - 0xe1b7bf, - 0xe1b880, - 0xe1b881, - 0xe1b882, - 0xe1b883, - 0xe1b884, - 0xe1b885, - 0xe1b886, - 0xe1b887, - 0xe1b888, - 0xe1b889, - 0xe1b88a, - 0xe1b88b, - 0xe1b88c, - 0xe1b88d, - 0xe1b88e, - 0xe1b88f, - 0xe1b890, - 0xe1b891, - 0xe1b892, - 0xe1b893, - 0xe1b894, - 0xe1b895, - 0xe1b896, - 0xe1b897, - 0xe1b898, - 0xe1b899, - 0xe1b89a, - 0xe1b89b, - 0xe1b89c, - 0xe1b89d, - 0xe1b89e, - 0xe1b89f, - 0xe1b8a0, - 0xe1b8a1, - 0xe1b8a2, - 0xe1b8a3, - 0xe1b8a4, - 0xe1b8a5, - 0xe1b8a6, - 0xe1b8a7, - 0xe1b8a8, - 0xe1b8a9, - 0xe1b8aa, - 0xe1b8ab, - 0xe1b8ac, - 0xe1b8ad, - 0xe1b8ae, - 0xe1b8af, - 0xe1b8b0, - 0xe1b8b1, - 0xe1b8b2, - 0xe1b8b3, - 0xe1b8b4, - 0xe1b8b5, - 0xe1b8b6, - 0xe1b8b7, - 0xe1b8b8, - 0xe1b8b9, - 0xe1b8ba, - 0xe1b8bb, - 0xe1b8bc, - 0xe1b8bd, - 0xe1b8be, - 0xe1b8bf, - 0xe1b980, - 0xe1b981, - 0xe1b982, - 0xe1b983, - 0xe1b984, - 0xe1b985, - 0xe1b986, - 0xe1b987, - 0xe1b988, - 0xe1b989, - 0xe1b98a, - 0xe1b98b, - 0xe1b98c, - 0xe1b98d, - 0xe1b98e, - 0xe1b98f, - 0xe1b990, - 0xe1b991, - 0xe1b992, - 0xe1b993, - 0xe1b994, - 0xe1b995, - 0xe1b996, - 0xe1b997, - 0xe1b998, - 0xe1b999, - 0xe1b99a, - 0xe1b99b, - 0xe1b99c, - 0xe1b99d, - 0xe1b99e, - 0xe1b99f, - 0xe1b9a0, - 0xe1b9a1, - 0xe1b9a2, - 0xe1b9a3, - 0xe1b9a4, - 0xe1b9a5, - 0xe1b9a6, - 0xe1b9a7, - 0xe1b9a8, - 0xe1b9a9, - 0xe1b9aa, - 0xe1b9ab, - 0xe1b9ac, - 0xe1b9ad, - 0xe1b9ae, - 0xe1b9af, - 0xe1b9b0, - 0xe1b9b1, - 0xe1b9b2, - 0xe1b9b3, - 0xe1b9b4, - 0xe1b9b5, - 0xe1b9b6, - 0xe1b9b7, - 0xe1b9b8, - 0xe1b9b9, - 0xe1b9ba, - 0xe1b9bb, - 0xe1b9bc, - 0xe1b9bd, - 0xe1b9be, - 0xe1b9bf, - 0xe1ba80, - 0xe1ba81, - 0xe1ba82, - 0xe1ba83, - 0xe1ba84, - 0xe1ba85, - 0xe1ba86, - 0xe1ba87, - 0xe1ba88, - 0xe1ba89, - 0xe1ba8a, - 0xe1ba8b, - 0xe1ba8c, - 0xe1ba8d, - 0xe1ba8e, - 0xe1ba8f, - 0xe1ba90, - 0xe1ba91, - 0xe1ba92, - 0xe1ba93, - 0xe1ba94, - 0xe1ba95, - 0xe1ba96, - 0xe1ba97, - 0xe1ba98, - 0xe1ba99, - 0xe1ba9a, - 0xe1ba9b, - 0xe1ba9c, - 0xe1ba9d, - 0xe1ba9e, - 0xe1ba9f, - 0xe1baa0, - 0xe1baa1, - 0xe1baa2, - 0xe1baa3, - 0xe1baa4, - 0xe1baa5, - 0xe1baa6, - 0xe1baa7, - 0xe1baa8, - 0xe1baa9, - 0xe1baaa, - 0xe1baab, - 0xe1baac, - 0xe1baad, - 0xe1baae, - 0xe1baaf, - 0xe1bab0, - 0xe1bab1, - 0xe1bab2, - 0xe1bab3, - 0xe1bab4, - 0xe1bab5, - 0xe1bab6, - 0xe1bab7, - 0xe1bab8, - 0xe1bab9, - 0xe1baba, - 0xe1babb, - 0xe1babc, - 0xe1babd, - 0xe1babe, - 0xe1babf, - 0xe1bb80, - 0xe1bb81, - 0xe1bb82, - 0xe1bb83, - 0xe1bb84, - 0xe1bb85, - 0xe1bb86, - 0xe1bb87, - 0xe1bb88, - 0xe1bb89, - 0xe1bb8a, - 0xe1bb8b, - 0xe1bb8c, - 0xe1bb8d, - 0xe1bb8e, - 0xe1bb8f, - 0xe1bb90, - 0xe1bb91, - 0xe1bb92, - 0xe1bb93, - 0xe1bb94, - 0xe1bb95, - 0xe1bb96, - 0xe1bb97, - 0xe1bb98, - 0xe1bb99, - 0xe1bb9a, - 0xe1bb9b, - 0xe1bb9c, - 0xe1bb9d, - 0xe1bb9e, - 0xe1bb9f, - 0xe1bba0, - 0xe1bba1, - 0xe1bba2, - 0xe1bba3, - 0xe1bba4, - 0xe1bba5, - 0xe1bba6, - 0xe1bba7, - 0xe1bba8, - 0xe1bba9, - 0xe1bbaa, - 0xe1bbab, - 0xe1bbac, - 0xe1bbad, - 0xe1bbae, - 0xe1bbaf, - 0xe1bbb0, - 0xe1bbb1, - 0xe1bbb2, - 0xe1bbb3, - 0xe1bbb4, - 0xe1bbb5, - 0xe1bbb6, - 0xe1bbb7, - 0xe1bbb8, - 0xe1bbb9, - 0xe1bbba, - 0xe1bbbb, - 0xe1bbbc, - 0xe1bbbd, - 0xe1bbbe, - 0xe1bbbf, - 0xe1bc80, - 0xe1bc81, - 0xe1bc82, - 0xe1bc83, - 0xe1bc84, - 0xe1bc85, - 0xe1bc86, - 0xe1bc87, - 0xe1bc88, - 0xe1bc89, - 0xe1bc8a, - 0xe1bc8b, - 0xe1bc8c, - 0xe1bc8d, - 0xe1bc8e, - 0xe1bc8f, - 0xe1bc90, - 0xe1bc91, - 0xe1bc92, - 0xe1bc93, - 0xe1bc94, - 0xe1bc95, - 0xe1bc96, - 0xe1bc97, - 0xe1bc98, - 0xe1bc99, - 0xe1bc9a, - 0xe1bc9b, - 0xe1bc9c, - 0xe1bc9d, - 0xe1bc9e, - 0xe1bc9f, - 0xe1bca0, - 0xe1bca1, - 0xe1bca2, - 0xe1bca3, - 0xe1bca4, - 0xe1bca5, - 0xe1bca6, - 0xe1bca7, - 0xe1bca8, - 0xe1bca9, - 0xe1bcaa, - 0xe1bcab, - 0xe1bcac, - 0xe1bcad, - 0xe1bcae, - 0xe1bcaf, - 0xe1bcb0, - 0xe1bcb1, - 0xe1bcb2, - 0xe1bcb3, - 0xe1bcb4, - 0xe1bcb5, - 0xe1bcb6, - 0xe1bcb7, - 0xe1bcb8, - 0xe1bcb9, - 0xe1bcba, - 0xe1bcbb, - 0xe1bcbc, - 0xe1bcbd, - 0xe1bcbe, - 0xe1bcbf, - 0xe1bd80, - 0xe1bd81, - 0xe1bd82, - 0xe1bd83, - 0xe1bd84, - 0xe1bd85, - 0xe1bd86, - 0xe1bd87, - 0xe1bd88, - 0xe1bd89, - 0xe1bd8a, - 0xe1bd8b, - 0xe1bd8c, - 0xe1bd8d, - 0xe1bd8e, - 0xe1bd8f, - 0xe1bd90, - 0xe1bd91, - 0xe1bd92, - 0xe1bd93, - 0xe1bd94, - 0xe1bd95, - 0xe1bd96, - 0xe1bd97, - 0xe1bd98, - 0xe1bd99, - 0xe1bd9a, - 0xe1bd9b, - 0xe1bd9c, - 0xe1bd9d, - 0xe1bd9e, - 0xe1bd9f, - 0xe1bda0, - 0xe1bda1, - 0xe1bda2, - 0xe1bda3, - 0xe1bda4, - 0xe1bda5, - 0xe1bda6, - 0xe1bda7, - 0xe1bda8, - 0xe1bda9, - 0xe1bdaa, - 0xe1bdab, - 0xe1bdac, - 0xe1bdad, - 0xe1bdae, - 0xe1bdaf, - 0xe1bdb0, - 0xe1bdb1, - 0xe1bdb2, - 0xe1bdb3, - 0xe1bdb4, - 0xe1bdb5, - 0xe1bdb6, - 0xe1bdb7, - 0xe1bdb8, - 0xe1bdb9, - 0xe1bdba, - 0xe1bdbb, - 0xe1bdbc, - 0xe1bdbd, - 0xe1bdbe, - 0xe1bdbf, - 0xe1be80, - 0xe1be81, - 0xe1be82, - 0xe1be83, - 0xe1be84, - 0xe1be85, - 0xe1be86, - 0xe1be87, - 0xe1be88, - 0xe1be89, - 0xe1be8a, - 0xe1be8b, - 0xe1be8c, - 0xe1be8d, - 0xe1be8e, - 0xe1be8f, - 0xe1be90, - 0xe1be91, - 0xe1be92, - 0xe1be93, - 0xe1be94, - 0xe1be95, - 0xe1be96, - 0xe1be97, - 0xe1be98, - 0xe1be99, - 0xe1be9a, - 0xe1be9b, - 0xe1be9c, - 0xe1be9d, - 0xe1be9e, - 0xe1be9f, - 0xe1bea0, - 0xe1bea1, - 0xe1bea2, - 0xe1bea3, - 0xe1bea4, - 0xe1bea5, - 0xe1bea6, - 0xe1bea7, - 0xe1bea8, - 0xe1bea9, - 0xe1beaa, - 0xe1beab, - 0xe1beac, - 0xe1bead, - 0xe1beae, - 0xe1beaf, - 0xe1beb0, - 0xe1beb1, - 0xe1beb2, - 0xe1beb3, - 0xe1beb4, - 0xe1beb5, - 0xe1beb6, - 0xe1beb7, - 0xe1beb8, - 0xe1beb9, - 0xe1beba, - 0xe1bebb, - 0xe1bebc, - 0xe1bebd, - 0xe1bebe, - 0xe1bebf, - 0xe1bf80, - 0xe1bf81, - 0xe1bf82, - 0xe1bf83, - 0xe1bf84, - 0xe1bf85, - 0xe1bf86, - 0xe1bf87, - 0xe1bf88, - 0xe1bf89, - 0xe1bf8a, - 0xe1bf8b, - 0xe1bf8c, - 0xe1bf8d, - 0xe1bf8e, - 0xe1bf8f, - 0xe1bf90, - 0xe1bf91, - 0xe1bf92, - 0xe1bf93, - 0xe1bf94, - 0xe1bf95, - 0xe1bf96, - 0xe1bf97, - 0xe1bf98, - 0xe1bf99, - 0xe1bf9a, - 0xe1bf9b, - 0xe1bf9c, - 0xe1bf9d, - 0xe1bf9e, - 0xe1bf9f, - 0xe1bfa0, - 0xe1bfa1, - 0xe1bfa2, - 0xe1bfa3, - 0xe1bfa4, - 0xe1bfa5, - 0xe1bfa6, - 0xe1bfa7, - 0xe1bfa8, - 0xe1bfa9, - 0xe1bfaa, - 0xe1bfab, - 0xe1bfac, - 0xe1bfad, - 0xe1bfae, - 0xe1bfaf, - 0xe1bfb0, - 0xe1bfb1, - 0xe1bfb2, - 0xe1bfb3, - 0xe1bfb4, - 0xe1bfb5, - 0xe1bfb6, - 0xe1bfb7, - 0xe1bfb8, - 0xe1bfb9, - 0xe1bfba, - 0xe1bfbb, - 0xe1bfbc, - 0xe1bfbd, - 0xe1bfbe, - 0xe1bfbf, - 0xe28080, - 0xe28081, - 0xe28082, - 0xe28083, - 0xe28084, - 0xe28085, - 0xe28086, - 0xe28087, - 0xe28088, - 0xe28089, - 0xe2808a, - 0xe2808b, - 0xe2808c, - 0xe2808d, - 0xe2808e, - 0xe2808f, - 0xe28090, - 0xe28091, - 0xe28092, - 0xe28093, - 0xe28094, - 0xe28095, - 0xe28096, - 0xe28097, - 0xe28098, - 0xe28099, - 0xe2809a, - 0xe2809b, - 0xe2809c, - 0xe2809d, - 0xe2809e, - 0xe2809f, - 0xe280a0, - 0xe280a1, - 0xe280a2, - 0xe280a3, - 0xe280a4, - 0xe280a5, - 0xe280a6, - 0xe280a7, - 0xe280a8, - 0xe280a9, - 0xe280aa, - 0xe280ab, - 0xe280ac, - 0xe280ad, - 0xe280ae, - 0xe280af, - 0xe280b0, - 0xe280b1, - 0xe280b2, - 0xe280b3, - 0xe280b4, - 0xe280b5, - 0xe280b6, - 0xe280b7, - 0xe280b8, - 0xe280b9, - 0xe280ba, - 0xe280bb, - 0xe280bc, - 0xe280bd, - 0xe280be, - 0xe280bf, - 0xe28180, - 0xe28181, - 0xe28182, - 0xe28183, - 0xe28184, - 0xe28185, - 0xe28186, - 0xe28187, - 0xe28188, - 0xe28189, - 0xe2818a, - 0xe2818b, - 0xe2818c, - 0xe2818d, - 0xe2818e, - 0xe2818f, - 0xe28190, - 0xe28191, - 0xe28192, - 0xe28193, - 0xe28194, - 0xe28195, - 0xe28196, - 0xe28197, - 0xe28198, - 0xe28199, - 0xe2819a, - 0xe2819b, - 0xe2819c, - 0xe2819d, - 0xe2819e, - 0xe2819f, - 0xe281a0, - 0xe281a1, - 0xe281a2, - 0xe281a3, - 0xe281a4, - 0xe281a5, - 0xe281a6, - 0xe281a7, - 0xe281a8, - 0xe281a9, - 0xe281aa, - 0xe281ab, - 0xe281ac, - 0xe281ad, - 0xe281ae, - 0xe281af, - 0xe281b0, - 0xe281b1, - 0xe281b2, - 0xe281b3, - 0xe281b4, - 0xe281b5, - 0xe281b6, - 0xe281b7, - 0xe281b8, - 0xe281b9, - 0xe281ba, - 0xe281bb, - 0xe281bc, - 0xe281bd, - 0xe281be, - 0xe281bf, - 0xe28280, - 0xe28281, - 0xe28282, - 0xe28283, - 0xe28284, - 0xe28285, - 0xe28286, - 0xe28287, - 0xe28288, - 0xe28289, - 0xe2828a, - 0xe2828b, - 0xe2828c, - 0xe2828d, - 0xe2828e, - 0xe2828f, - 0xe28290, - 0xe28291, - 0xe28292, - 0xe28293, - 0xe28294, - 0xe28295, - 0xe28296, - 0xe28297, - 0xe28298, - 0xe28299, - 0xe2829a, - 0xe2829b, - 0xe2829c, - 0xe2829d, - 0xe2829e, - 0xe2829f, - 0xe282a0, - 0xe282a1, - 0xe282a2, - 0xe282a3, - 0xe282a4, - 0xe282a5, - 0xe282a6, - 0xe282a7, - 0xe282a8, - 0xe282a9, - 0xe282aa, - 0xe282ab, - 0xe282ac, - 0xe282ad, - 0xe282ae, - 0xe282af, - 0xe282b0, - 0xe282b1, - 0xe282b2, - 0xe282b3, - 0xe282b4, - 0xe282b5, - 0xe282b6, - 0xe282b7, - 0xe282b8, - 0xe282b9, - 0xe282ba, - 0xe282bb, - 0xe282bc, - 0xe282bd, - 0xe282be, - 0xe282bf, - 0xe28380, - 0xe28381, - 0xe28382, - 0xe28383, - 0xe28384, - 0xe28385, - 0xe28386, - 0xe28387, - 0xe28388, - 0xe28389, - 0xe2838a, - 0xe2838b, - 0xe2838c, - 0xe2838d, - 0xe2838e, - 0xe2838f, - 0xe28390, - 0xe28391, - 0xe28392, - 0xe28393, - 0xe28394, - 0xe28395, - 0xe28396, - 0xe28397, - 0xe28398, - 0xe28399, - 0xe2839a, - 0xe2839b, - 0xe2839c, - 0xe2839d, - 0xe2839e, - 0xe2839f, - 0xe283a0, - 0xe283a1, - 0xe283a2, - 0xe283a3, - 0xe283a4, - 0xe283a5, - 0xe283a6, - 0xe283a7, - 0xe283a8, - 0xe283a9, - 0xe283aa, - 0xe283ab, - 0xe283ac, - 0xe283ad, - 0xe283ae, - 0xe283af, - 0xe283b0, - 0xe283b1, - 0xe283b2, - 0xe283b3, - 0xe283b4, - 0xe283b5, - 0xe283b6, - 0xe283b7, - 0xe283b8, - 0xe283b9, - 0xe283ba, - 0xe283bb, - 0xe283bc, - 0xe283bd, - 0xe283be, - 0xe283bf, - 0xe28480, - 0xe28481, - 0xe28482, - 0xe28483, - 0xe28484, - 0xe28485, - 0xe28486, - 0xe28487, - 0xe28488, - 0xe28489, - 0xe2848a, - 0xe2848b, - 0xe2848c, - 0xe2848d, - 0xe2848e, - 0xe2848f, - 0xe28490, - 0xe28491, - 0xe28492, - 0xe28493, - 0xe28494, - 0xe28495, - 0xe28496, - 0xe28497, - 0xe28498, - 0xe28499, - 0xe2849a, - 0xe2849b, - 0xe2849c, - 0xe2849d, - 0xe2849e, - 0xe2849f, - 0xe284a0, - 0xe284a1, - 0xe284a2, - 0xe284a3, - 0xe284a4, - 0xe284a5, - 0xe284a6, - 0xe284a7, - 0xe284a8, - 0xe284a9, - 0xe284aa, - 0xe284ab, - 0xe284ac, - 0xe284ad, - 0xe284ae, - 0xe284af, - 0xe284b0, - 0xe284b1, - 0xe284b2, - 0xe284b3, - 0xe284b4, - 0xe284b5, - 0xe284b6, - 0xe284b7, - 0xe284b8, - 0xe284b9, - 0xe284ba, - 0xe284bb, - 0xe284bc, - 0xe284bd, - 0xe284be, - 0xe284bf, - 0xe28580, - 0xe28581, - 0xe28582, - 0xe28583, - 0xe28584, - 0xe28585, - 0xe28586, - 0xe28587, - 0xe28588, - 0xe28589, - 0xe2858a, - 0xe2858b, - 0xe2858c, - 0xe2858d, - 0xe2858e, - 0xe2858f, - 0xe28590, - 0xe28591, - 0xe28592, - 0xe28593, - 0xe28594, - 0xe28595, - 0xe28596, - 0xe28597, - 0xe28598, - 0xe28599, - 0xe2859a, - 0xe2859b, - 0xe2859c, - 0xe2859d, - 0xe2859e, - 0xe2859f, - 0xe285a0, - 0xe285a1, - 0xe285a2, - 0xe285a3, - 0xe285a4, - 0xe285a5, - 0xe285a6, - 0xe285a7, - 0xe285a8, - 0xe285a9, - 0xe285aa, - 0xe285ab, - 0xe285ac, - 0xe285ad, - 0xe285ae, - 0xe285af, - 0xe285b0, - 0xe285b1, - 0xe285b2, - 0xe285b3, - 0xe285b4, - 0xe285b5, - 0xe285b6, - 0xe285b7, - 0xe285b8, - 0xe285b9, - 0xe285ba, - 0xe285bb, - 0xe285bc, - 0xe285bd, - 0xe285be, - 0xe285bf, - 0xe28680, - 0xe28681, - 0xe28682, - 0xe28683, - 0xe28684, - 0xe28685, - 0xe28686, - 0xe28687, - 0xe28688, - 0xe28689, - 0xe2868a, - 0xe2868b, - 0xe2868c, - 0xe2868d, - 0xe2868e, - 0xe2868f, - 0xe28690, - 0xe28691, - 0xe28692, - 0xe28693, - 0xe28694, - 0xe28695, - 0xe28696, - 0xe28697, - 0xe28698, - 0xe28699, - 0xe2869a, - 0xe2869b, - 0xe2869c, - 0xe2869d, - 0xe2869e, - 0xe2869f, - 0xe286a0, - 0xe286a1, - 0xe286a2, - 0xe286a3, - 0xe286a4, - 0xe286a5, - 0xe286a6, - 0xe286a7, - 0xe286a8, - 0xe286a9, - 0xe286aa, - 0xe286ab, - 0xe286ac, - 0xe286ad, - 0xe286ae, - 0xe286af, - 0xe286b0, - 0xe286b1, - 0xe286b2, - 0xe286b3, - 0xe286b4, - 0xe286b5, - 0xe286b6, - 0xe286b7, - 0xe286b8, - 0xe286b9, - 0xe286ba, - 0xe286bb, - 0xe286bc, - 0xe286bd, - 0xe286be, - 0xe286bf, - 0xe28780, - 0xe28781, - 0xe28782, - 0xe28783, - 0xe28784, - 0xe28785, - 0xe28786, - 0xe28787, - 0xe28788, - 0xe28789, - 0xe2878a, - 0xe2878b, - 0xe2878c, - 0xe2878d, - 0xe2878e, - 0xe2878f, - 0xe28790, - 0xe28791, - 0xe28792, - 0xe28793, - 0xe28794, - 0xe28795, - 0xe28796, - 0xe28797, - 0xe28798, - 0xe28799, - 0xe2879a, - 0xe2879b, - 0xe2879c, - 0xe2879d, - 0xe2879e, - 0xe2879f, - 0xe287a0, - 0xe287a1, - 0xe287a2, - 0xe287a3, - 0xe287a4, - 0xe287a5, - 0xe287a6, - 0xe287a7, - 0xe287a8, - 0xe287a9, - 0xe287aa, - 0xe287ab, - 0xe287ac, - 0xe287ad, - 0xe287ae, - 0xe287af, - 0xe287b0, - 0xe287b1, - 0xe287b2, - 0xe287b3, - 0xe287b4, - 0xe287b5, - 0xe287b6, - 0xe287b7, - 0xe287b8, - 0xe287b9, - 0xe287ba, - 0xe287bb, - 0xe287bc, - 0xe287bd, - 0xe287be, - 0xe287bf, - 0xe28880, - 0xe28881, - 0xe28882, - 0xe28883, - 0xe28884, - 0xe28885, - 0xe28886, - 0xe28887, - 0xe28888, - 0xe28889, - 0xe2888a, - 0xe2888b, - 0xe2888c, - 0xe2888d, - 0xe2888e, - 0xe2888f, - 0xe28890, - 0xe28891, - 0xe28892, - 0xe28893, - 0xe28894, - 0xe28895, - 0xe28896, - 0xe28897, - 0xe28898, - 0xe28899, - 0xe2889a, - 0xe2889b, - 0xe2889c, - 0xe2889d, - 0xe2889e, - 0xe2889f, - 0xe288a0, - 0xe288a1, - 0xe288a2, - 0xe288a3, - 0xe288a4, - 0xe288a5, - 0xe288a6, - 0xe288a7, - 0xe288a8, - 0xe288a9, - 0xe288aa, - 0xe288ab, - 0xe288ac, - 0xe288ad, - 0xe288ae, - 0xe288af, - 0xe288b0, - 0xe288b1, - 0xe288b2, - 0xe288b3, - 0xe288b4, - 0xe288b5, - 0xe288b6, - 0xe288b7, - 0xe288b8, - 0xe288b9, - 0xe288ba, - 0xe288bb, - 0xe288bc, - 0xe288bd, - 0xe288be, - 0xe288bf, - 0xe28980, - 0xe28981, - 0xe28982, - 0xe28983, - 0xe28984, - 0xe28985, - 0xe28986, - 0xe28987, - 0xe28988, - 0xe28989, - 0xe2898a, - 0xe2898b, - 0xe2898c, - 0xe2898d, - 0xe2898e, - 0xe2898f, - 0xe28990, - 0xe28991, - 0xe28992, - 0xe28993, - 0xe28994, - 0xe28995, - 0xe28996, - 0xe28997, - 0xe28998, - 0xe28999, - 0xe2899a, - 0xe2899b, - 0xe2899c, - 0xe2899d, - 0xe2899e, - 0xe2899f, - 0xe289a0, - 0xe289a1, - 0xe289a2, - 0xe289a3, - 0xe289a4, - 0xe289a5, - 0xe289a6, - 0xe289a7, - 0xe289a8, - 0xe289a9, - 0xe289aa, - 0xe289ab, - 0xe289ac, - 0xe289ad, - 0xe289ae, - 0xe289af, - 0xe289b0, - 0xe289b1, - 0xe289b2, - 0xe289b3, - 0xe289b4, - 0xe289b5, - 0xe289b6, - 0xe289b7, - 0xe289b8, - 0xe289b9, - 0xe289ba, - 0xe289bb, - 0xe289bc, - 0xe289bd, - 0xe289be, - 0xe289bf, - 0xe28a80, - 0xe28a81, - 0xe28a82, - 0xe28a83, - 0xe28a84, - 0xe28a85, - 0xe28a86, - 0xe28a87, - 0xe28a88, - 0xe28a89, - 0xe28a8a, - 0xe28a8b, - 0xe28a8c, - 0xe28a8d, - 0xe28a8e, - 0xe28a8f, - 0xe28a90, - 0xe28a91, - 0xe28a92, - 0xe28a93, - 0xe28a94, - 0xe28a95, - 0xe28a96, - 0xe28a97, - 0xe28a98, - 0xe28a99, - 0xe28a9a, - 0xe28a9b, - 0xe28a9c, - 0xe28a9d, - 0xe28a9e, - 0xe28a9f, - 0xe28aa0, - 0xe28aa1, - 0xe28aa2, - 0xe28aa3, - 0xe28aa4, - 0xe28aa5, - 0xe28aa6, - 0xe28aa7, - 0xe28aa8, - 0xe28aa9, - 0xe28aaa, - 0xe28aab, - 0xe28aac, - 0xe28aad, - 0xe28aae, - 0xe28aaf, - 0xe28ab0, - 0xe28ab1, - 0xe28ab2, - 0xe28ab3, - 0xe28ab4, - 0xe28ab5, - 0xe28ab6, - 0xe28ab7, - 0xe28ab8, - 0xe28ab9, - 0xe28aba, - 0xe28abb, - 0xe28abc, - 0xe28abd, - 0xe28abe, - 0xe28abf, - 0xe28b80, - 0xe28b81, - 0xe28b82, - 0xe28b83, - 0xe28b84, - 0xe28b85, - 0xe28b86, - 0xe28b87, - 0xe28b88, - 0xe28b89, - 0xe28b8a, - 0xe28b8b, - 0xe28b8c, - 0xe28b8d, - 0xe28b8e, - 0xe28b8f, - 0xe28b90, - 0xe28b91, - 0xe28b92, - 0xe28b93, - 0xe28b94, - 0xe28b95, - 0xe28b96, - 0xe28b97, - 0xe28b98, - 0xe28b99, - 0xe28b9a, - 0xe28b9b, - 0xe28b9c, - 0xe28b9d, - 0xe28b9e, - 0xe28b9f, - 0xe28ba0, - 0xe28ba1, - 0xe28ba2, - 0xe28ba3, - 0xe28ba4, - 0xe28ba5, - 0xe28ba6, - 0xe28ba7, - 0xe28ba8, - 0xe28ba9, - 0xe28baa, - 0xe28bab, - 0xe28bac, - 0xe28bad, - 0xe28bae, - 0xe28baf, - 0xe28bb0, - 0xe28bb1, - 0xe28bb2, - 0xe28bb3, - 0xe28bb4, - 0xe28bb5, - 0xe28bb6, - 0xe28bb7, - 0xe28bb8, - 0xe28bb9, - 0xe28bba, - 0xe28bbb, - 0xe28bbc, - 0xe28bbd, - 0xe28bbe, - 0xe28bbf, - 0xe28c80, - 0xe28c81, - 0xe28c82, - 0xe28c83, - 0xe28c84, - 0xe28c85, - 0xe28c86, - 0xe28c87, - 0xe28c88, - 0xe28c89, - 0xe28c8a, - 0xe28c8b, - 0xe28c8c, - 0xe28c8d, - 0xe28c8e, - 0xe28c8f, - 0xe28c90, - 0xe28c91, - 0xe28c92, - 0xe28c93, - 0xe28c94, - 0xe28c95, - 0xe28c96, - 0xe28c97, - 0xe28c98, - 0xe28c99, - 0xe28c9a, - 0xe28c9b, - 0xe28c9c, - 0xe28c9d, - 0xe28c9e, - 0xe28c9f, - 0xe28ca0, - 0xe28ca1, - 0xe28ca2, - 0xe28ca3, - 0xe28ca4, - 0xe28ca5, - 0xe28ca6, - 0xe28ca7, - 0xe28ca8, - 0xe28ca9, - 0xe28caa, - 0xe28cab, - 0xe28cac, - 0xe28cad, - 0xe28cae, - 0xe28caf, - 0xe28cb0, - 0xe28cb1, - 0xe28cb2, - 0xe28cb3, - 0xe28cb4, - 0xe28cb5, - 0xe28cb6, - 0xe28cb7, - 0xe28cb8, - 0xe28cb9, - 0xe28cba, - 0xe28cbb, - 0xe28cbc, - 0xe28cbd, - 0xe28cbe, - 0xe28cbf, - 0xe28d80, - 0xe28d81, - 0xe28d82, - 0xe28d83, - 0xe28d84, - 0xe28d85, - 0xe28d86, - 0xe28d87, - 0xe28d88, - 0xe28d89, - 0xe28d8a, - 0xe28d8b, - 0xe28d8c, - 0xe28d8d, - 0xe28d8e, - 0xe28d8f, - 0xe28d90, - 0xe28d91, - 0xe28d92, - 0xe28d93, - 0xe28d94, - 0xe28d95, - 0xe28d96, - 0xe28d97, - 0xe28d98, - 0xe28d99, - 0xe28d9a, - 0xe28d9b, - 0xe28d9c, - 0xe28d9d, - 0xe28d9e, - 0xe28d9f, - 0xe28da0, - 0xe28da1, - 0xe28da2, - 0xe28da3, - 0xe28da4, - 0xe28da5, - 0xe28da6, - 0xe28da7, - 0xe28da8, - 0xe28da9, - 0xe28daa, - 0xe28dab, - 0xe28dac, - 0xe28dad, - 0xe28dae, - 0xe28daf, - 0xe28db0, - 0xe28db1, - 0xe28db2, - 0xe28db3, - 0xe28db4, - 0xe28db5, - 0xe28db6, - 0xe28db7, - 0xe28db8, - 0xe28db9, - 0xe28dba, - 0xe28dbb, - 0xe28dbc, - 0xe28dbd, - 0xe28dbe, - 0xe28dbf, - 0xe28e80, - 0xe28e81, - 0xe28e82, - 0xe28e83, - 0xe28e84, - 0xe28e85, - 0xe28e86, - 0xe28e87, - 0xe28e88, - 0xe28e89, - 0xe28e8a, - 0xe28e8b, - 0xe28e8c, - 0xe28e8d, - 0xe28e8e, - 0xe28e8f, - 0xe28e90, - 0xe28e91, - 0xe28e92, - 0xe28e93, - 0xe28e94, - 0xe28e95, - 0xe28e96, - 0xe28e97, - 0xe28e98, - 0xe28e99, - 0xe28e9a, - 0xe28e9b, - 0xe28e9c, - 0xe28e9d, - 0xe28e9e, - 0xe28e9f, - 0xe28ea0, - 0xe28ea1, - 0xe28ea2, - 0xe28ea3, - 0xe28ea4, - 0xe28ea5, - 0xe28ea6, - 0xe28ea7, - 0xe28ea8, - 0xe28ea9, - 0xe28eaa, - 0xe28eab, - 0xe28eac, - 0xe28ead, - 0xe28eae, - 0xe28eaf, - 0xe28eb0, - 0xe28eb1, - 0xe28eb2, - 0xe28eb3, - 0xe28eb4, - 0xe28eb5, - 0xe28eb6, - 0xe28eb7, - 0xe28eb8, - 0xe28eb9, - 0xe28eba, - 0xe28ebb, - 0xe28ebc, - 0xe28ebd, - 0xe28ebe, - 0xe28ebf, - 0xe28f80, - 0xe28f81, - 0xe28f82, - 0xe28f83, - 0xe28f84, - 0xe28f85, - 0xe28f86, - 0xe28f87, - 0xe28f88, - 0xe28f89, - 0xe28f8a, - 0xe28f8b, - 0xe28f8c, - 0xe28f8d, - 0xe28f8e, - 0xe28f8f, - 0xe28f90, - 0xe28f91, - 0xe28f92, - 0xe28f93, - 0xe28f94, - 0xe28f95, - 0xe28f96, - 0xe28f97, - 0xe28f98, - 0xe28f99, - 0xe28f9a, - 0xe28f9b, - 0xe28f9c, - 0xe28f9d, - 0xe28f9e, - 0xe28f9f, - 0xe28fa0, - 0xe28fa1, - 0xe28fa2, - 0xe28fa3, - 0xe28fa4, - 0xe28fa5, - 0xe28fa6, - 0xe28fa7, - 0xe28fa8, - 0xe28fa9, - 0xe28faa, - 0xe28fab, - 0xe28fac, - 0xe28fad, - 0xe28fae, - 0xe28faf, - 0xe28fb0, - 0xe28fb1, - 0xe28fb2, - 0xe28fb3, - 0xe28fb4, - 0xe28fb5, - 0xe28fb6, - 0xe28fb7, - 0xe28fb8, - 0xe28fb9, - 0xe28fba, - 0xe28fbb, - 0xe28fbc, - 0xe28fbd, - 0xe28fbe, - 0xe28fbf, - 0xe29080, - 0xe29081, - 0xe29082, - 0xe29083, - 0xe29084, - 0xe29085, - 0xe29086, - 0xe29087, - 0xe29088, - 0xe29089, - 0xe2908a, - 0xe2908b, - 0xe2908c, - 0xe2908d, - 0xe2908e, - 0xe2908f, - 0xe29090, - 0xe29091, - 0xe29092, - 0xe29093, - 0xe29094, - 0xe29095, - 0xe29096, - 0xe29097, - 0xe29098, - 0xe29099, - 0xe2909a, - 0xe2909b, - 0xe2909c, - 0xe2909d, - 0xe2909e, - 0xe2909f, - 0xe290a0, - 0xe290a1, - 0xe290a2, - 0xe290a3, - 0xe290a4, - 0xe290a5, - 0xe290a6, - 0xe290a7, - 0xe290a8, - 0xe290a9, - 0xe290aa, - 0xe290ab, - 0xe290ac, - 0xe290ad, - 0xe290ae, - 0xe290af, - 0xe290b0, - 0xe290b1, - 0xe290b2, - 0xe290b3, - 0xe290b4, - 0xe290b5, - 0xe290b6, - 0xe290b7, - 0xe290b8, - 0xe290b9, - 0xe290ba, - 0xe290bb, - 0xe290bc, - 0xe290bd, - 0xe290be, - 0xe290bf, - 0xe29180, - 0xe29181, - 0xe29182, - 0xe29183, - 0xe29184, - 0xe29185, - 0xe29186, - 0xe29187, - 0xe29188, - 0xe29189, - 0xe2918a, - 0xe2918b, - 0xe2918c, - 0xe2918d, - 0xe2918e, - 0xe2918f, - 0xe29190, - 0xe29191, - 0xe29192, - 0xe29193, - 0xe29194, - 0xe29195, - 0xe29196, - 0xe29197, - 0xe29198, - 0xe29199, - 0xe2919a, - 0xe2919b, - 0xe2919c, - 0xe2919d, - 0xe2919e, - 0xe2919f, - 0xe291a0, - 0xe291a1, - 0xe291a2, - 0xe291a3, - 0xe291a4, - 0xe291a5, - 0xe291a6, - 0xe291a7, - 0xe291a8, - 0xe291a9, - 0xe291aa, - 0xe291ab, - 0xe291ac, - 0xe291ad, - 0xe291ae, - 0xe291af, - 0xe291b0, - 0xe291b1, - 0xe291b2, - 0xe291b3, - 0xe291b4, - 0xe291b5, - 0xe291b6, - 0xe291b7, - 0xe291b8, - 0xe291b9, - 0xe291ba, - 0xe291bb, - 0xe291bc, - 0xe291bd, - 0xe291be, - 0xe291bf, - 0xe29280, - 0xe29281, - 0xe29282, - 0xe29283, - 0xe29284, - 0xe29285, - 0xe29286, - 0xe29287, - 0xe29288, - 0xe29289, - 0xe2928a, - 0xe2928b, - 0xe2928c, - 0xe2928d, - 0xe2928e, - 0xe2928f, - 0xe29290, - 0xe29291, - 0xe29292, - 0xe29293, - 0xe29294, - 0xe29295, - 0xe29296, - 0xe29297, - 0xe29298, - 0xe29299, - 0xe2929a, - 0xe2929b, - 0xe2929c, - 0xe2929d, - 0xe2929e, - 0xe2929f, - 0xe292a0, - 0xe292a1, - 0xe292a2, - 0xe292a3, - 0xe292a4, - 0xe292a5, - 0xe292a6, - 0xe292a7, - 0xe292a8, - 0xe292a9, - 0xe292aa, - 0xe292ab, - 0xe292ac, - 0xe292ad, - 0xe292ae, - 0xe292af, - 0xe292b0, - 0xe292b1, - 0xe292b2, - 0xe292b3, - 0xe292b4, - 0xe292b5, - 0xe292b6, - 0xe292b7, - 0xe292b8, - 0xe292b9, - 0xe292ba, - 0xe292bb, - 0xe292bc, - 0xe292bd, - 0xe292be, - 0xe292bf, - 0xe29380, - 0xe29381, - 0xe29382, - 0xe29383, - 0xe29384, - 0xe29385, - 0xe29386, - 0xe29387, - 0xe29388, - 0xe29389, - 0xe2938a, - 0xe2938b, - 0xe2938c, - 0xe2938d, - 0xe2938e, - 0xe2938f, - 0xe29390, - 0xe29391, - 0xe29392, - 0xe29393, - 0xe29394, - 0xe29395, - 0xe29396, - 0xe29397, - 0xe29398, - 0xe29399, - 0xe2939a, - 0xe2939b, - 0xe2939c, - 0xe2939d, - 0xe2939e, - 0xe2939f, - 0xe293a0, - 0xe293a1, - 0xe293a2, - 0xe293a3, - 0xe293a4, - 0xe293a5, - 0xe293a6, - 0xe293a7, - 0xe293a8, - 0xe293a9, - 0xe293aa, - 0xe293ab, - 0xe293ac, - 0xe293ad, - 0xe293ae, - 0xe293af, - 0xe293b0, - 0xe293b1, - 0xe293b2, - 0xe293b3, - 0xe293b4, - 0xe293b5, - 0xe293b6, - 0xe293b7, - 0xe293b8, - 0xe293b9, - 0xe293ba, - 0xe293bb, - 0xe293bc, - 0xe293bd, - 0xe293be, - 0xe293bf, - 0xe29480, - 0xe29481, - 0xe29482, - 0xe29483, - 0xe29484, - 0xe29485, - 0xe29486, - 0xe29487, - 0xe29488, - 0xe29489, - 0xe2948a, - 0xe2948b, - 0xe2948c, - 0xe2948d, - 0xe2948e, - 0xe2948f, - 0xe29490, - 0xe29491, - 0xe29492, - 0xe29493, - 0xe29494, - 0xe29495, - 0xe29496, - 0xe29497, - 0xe29498, - 0xe29499, - 0xe2949a, - 0xe2949b, - 0xe2949c, - 0xe2949d, - 0xe2949e, - 0xe2949f, - 0xe294a0, - 0xe294a1, - 0xe294a2, - 0xe294a3, - 0xe294a4, - 0xe294a5, - 0xe294a6, - 0xe294a7, - 0xe294a8, - 0xe294a9, - 0xe294aa, - 0xe294ab, - 0xe294ac, - 0xe294ad, - 0xe294ae, - 0xe294af, - 0xe294b0, - 0xe294b1, - 0xe294b2, - 0xe294b3, - 0xe294b4, - 0xe294b5, - 0xe294b6, - 0xe294b7, - 0xe294b8, - 0xe294b9, - 0xe294ba, - 0xe294bb, - 0xe294bc, - 0xe294bd, - 0xe294be, - 0xe294bf, - 0xe29580, - 0xe29581, - 0xe29582, - 0xe29583, - 0xe29584, - 0xe29585, - 0xe29586, - 0xe29587, - 0xe29588, - 0xe29589, - 0xe2958a, - 0xe2958b, - 0xe2958c, - 0xe2958d, - 0xe2958e, - 0xe2958f, - 0xe29590, - 0xe29591, - 0xe29592, - 0xe29593, - 0xe29594, - 0xe29595, - 0xe29596, - 0xe29597, - 0xe29598, - 0xe29599, - 0xe2959a, - 0xe2959b, - 0xe2959c, - 0xe2959d, - 0xe2959e, - 0xe2959f, - 0xe295a0, - 0xe295a1, - 0xe295a2, - 0xe295a3, - 0xe295a4, - 0xe295a5, - 0xe295a6, - 0xe295a7, - 0xe295a8, - 0xe295a9, - 0xe295aa, - 0xe295ab, - 0xe295ac, - 0xe295ad, - 0xe295ae, - 0xe295af, - 0xe295b0, - 0xe295b1, - 0xe295b2, - 0xe295b3, - 0xe295b4, - 0xe295b5, - 0xe295b6, - 0xe295b7, - 0xe295b8, - 0xe295b9, - 0xe295ba, - 0xe295bb, - 0xe295bc, - 0xe295bd, - 0xe295be, - 0xe295bf, - 0xe29680, - 0xe29681, - 0xe29682, - 0xe29683, - 0xe29684, - 0xe29685, - 0xe29686, - 0xe29687, - 0xe29688, - 0xe29689, - 0xe2968a, - 0xe2968b, - 0xe2968c, - 0xe2968d, - 0xe2968e, - 0xe2968f, - 0xe29690, - 0xe29691, - 0xe29692, - 0xe29693, - 0xe29694, - 0xe29695, - 0xe29696, - 0xe29697, - 0xe29698, - 0xe29699, - 0xe2969a, - 0xe2969b, - 0xe2969c, - 0xe2969d, - 0xe2969e, - 0xe2969f, - 0xe296a0, - 0xe296a1, - 0xe296a2, - 0xe296a3, - 0xe296a4, - 0xe296a5, - 0xe296a6, - 0xe296a7, - 0xe296a8, - 0xe296a9, - 0xe296aa, - 0xe296ab, - 0xe296ac, - 0xe296ad, - 0xe296ae, - 0xe296af, - 0xe296b0, - 0xe296b1, - 0xe296b2, - 0xe296b3, - 0xe296b4, - 0xe296b5, - 0xe296b6, - 0xe296b7, - 0xe296b8, - 0xe296b9, - 0xe296ba, - 0xe296bb, - 0xe296bc, - 0xe296bd, - 0xe296be, - 0xe296bf, - 0xe29780, - 0xe29781, - 0xe29782, - 0xe29783, - 0xe29784, - 0xe29785, - 0xe29786, - 0xe29787, - 0xe29788, - 0xe29789, - 0xe2978a, - 0xe2978b, - 0xe2978c, - 0xe2978d, - 0xe2978e, - 0xe2978f, - 0xe29790, - 0xe29791, - 0xe29792, - 0xe29793, - 0xe29794, - 0xe29795, - 0xe29796, - 0xe29797, - 0xe29798, - 0xe29799, - 0xe2979a, - 0xe2979b, - 0xe2979c, - 0xe2979d, - 0xe2979e, - 0xe2979f, - 0xe297a0, - 0xe297a1, - 0xe297a2, - 0xe297a3, - 0xe297a4, - 0xe297a5, - 0xe297a6, - 0xe297a7, - 0xe297a8, - 0xe297a9, - 0xe297aa, - 0xe297ab, - 0xe297ac, - 0xe297ad, - 0xe297ae, - 0xe297af, - 0xe297b0, - 0xe297b1, - 0xe297b2, - 0xe297b3, - 0xe297b4, - 0xe297b5, - 0xe297b6, - 0xe297b7, - 0xe297b8, - 0xe297b9, - 0xe297ba, - 0xe297bb, - 0xe297bc, - 0xe297bd, - 0xe297be, - 0xe297bf, - 0xe29880, - 0xe29881, - 0xe29882, - 0xe29883, - 0xe29884, - 0xe29885, - 0xe29886, - 0xe29887, - 0xe29888, - 0xe29889, - 0xe2988a, - 0xe2988b, - 0xe2988c, - 0xe2988d, - 0xe2988e, - 0xe2988f, - 0xe29890, - 0xe29891, - 0xe29892, - 0xe29893, - 0xe29894, - 0xe29895, - 0xe29896, - 0xe29897, - 0xe29898, - 0xe29899, - 0xe2989a, - 0xe2989b, - 0xe2989c, - 0xe2989d, - 0xe2989e, - 0xe2989f, - 0xe298a0, - 0xe298a1, - 0xe298a2, - 0xe298a3, - 0xe298a4, - 0xe298a5, - 0xe298a6, - 0xe298a7, - 0xe298a8, - 0xe298a9, - 0xe298aa, - 0xe298ab, - 0xe298ac, - 0xe298ad, - 0xe298ae, - 0xe298af, - 0xe298b0, - 0xe298b1, - 0xe298b2, - 0xe298b3, - 0xe298b4, - 0xe298b5, - 0xe298b6, - 0xe298b7, - 0xe298b8, - 0xe298b9, - 0xe298ba, - 0xe298bb, - 0xe298bc, - 0xe298bd, - 0xe298be, - 0xe298bf, - 0xe29980, - 0xe29981, - 0xe29982, - 0xe29983, - 0xe29984, - 0xe29985, - 0xe29986, - 0xe29987, - 0xe29988, - 0xe29989, - 0xe2998a, - 0xe2998b, - 0xe2998c, - 0xe2998d, - 0xe2998e, - 0xe2998f, - 0xe29990, - 0xe29991, - 0xe29992, - 0xe29993, - 0xe29994, - 0xe29995, - 0xe29996, - 0xe29997, - 0xe29998, - 0xe29999, - 0xe2999a, - 0xe2999b, - 0xe2999c, - 0xe2999d, - 0xe2999e, - 0xe2999f, - 0xe299a0, - 0xe299a1, - 0xe299a2, - 0xe299a3, - 0xe299a4, - 0xe299a5, - 0xe299a6, - 0xe299a7, - 0xe299a8, - 0xe299a9, - 0xe299aa, - 0xe299ab, - 0xe299ac, - 0xe299ad, - 0xe299ae, - 0xe299af, - 0xe299b0, - 0xe299b1, - 0xe299b2, - 0xe299b3, - 0xe299b4, - 0xe299b5, - 0xe299b6, - 0xe299b7, - 0xe299b8, - 0xe299b9, - 0xe299ba, - 0xe299bb, - 0xe299bc, - 0xe299bd, - 0xe299be, - 0xe299bf, - 0xe29a80, - 0xe29a81, - 0xe29a82, - 0xe29a83, - 0xe29a84, - 0xe29a85, - 0xe29a86, - 0xe29a87, - 0xe29a88, - 0xe29a89, - 0xe29a8a, - 0xe29a8b, - 0xe29a8c, - 0xe29a8d, - 0xe29a8e, - 0xe29a8f, - 0xe29a90, - 0xe29a91, - 0xe29a92, - 0xe29a93, - 0xe29a94, - 0xe29a95, - 0xe29a96, - 0xe29a97, - 0xe29a98, - 0xe29a99, - 0xe29a9a, - 0xe29a9b, - 0xe29a9c, - 0xe29a9d, - 0xe29a9e, - 0xe29a9f, - 0xe29aa0, - 0xe29aa1, - 0xe29aa2, - 0xe29aa3, - 0xe29aa4, - 0xe29aa5, - 0xe29aa6, - 0xe29aa7, - 0xe29aa8, - 0xe29aa9, - 0xe29aaa, - 0xe29aab, - 0xe29aac, - 0xe29aad, - 0xe29aae, - 0xe29aaf, - 0xe29ab0, - 0xe29ab1, - 0xe29ab2, - 0xe29ab3, - 0xe29ab4, - 0xe29ab5, - 0xe29ab6, - 0xe29ab7, - 0xe29ab8, - 0xe29ab9, - 0xe29aba, - 0xe29abb, - 0xe29abc, - 0xe29abd, - 0xe29abe, - 0xe29abf, - 0xe29b80, - 0xe29b81, - 0xe29b82, - 0xe29b83, - 0xe29b84, - 0xe29b85, - 0xe29b86, - 0xe29b87, - 0xe29b88, - 0xe29b89, - 0xe29b8a, - 0xe29b8b, - 0xe29b8c, - 0xe29b8d, - 0xe29b8e, - 0xe29b8f, - 0xe29b90, - 0xe29b91, - 0xe29b92, - 0xe29b93, - 0xe29b94, - 0xe29b95, - 0xe29b96, - 0xe29b97, - 0xe29b98, - 0xe29b99, - 0xe29b9a, - 0xe29b9b, - 0xe29b9c, - 0xe29b9d, - 0xe29b9e, - 0xe29b9f, - 0xe29ba0, - 0xe29ba1, - 0xe29ba2, - 0xe29ba3, - 0xe29ba4, - 0xe29ba5, - 0xe29ba6, - 0xe29ba7, - 0xe29ba8, - 0xe29ba9, - 0xe29baa, - 0xe29bab, - 0xe29bac, - 0xe29bad, - 0xe29bae, - 0xe29baf, - 0xe29bb0, - 0xe29bb1, - 0xe29bb2, - 0xe29bb3, - 0xe29bb4, - 0xe29bb5, - 0xe29bb6, - 0xe29bb7, - 0xe29bb8, - 0xe29bb9, - 0xe29bba, - 0xe29bbb, - 0xe29bbc, - 0xe29bbd, - 0xe29bbe, - 0xe29bbf, - 0xe29c80, - 0xe29c81, - 0xe29c82, - 0xe29c83, - 0xe29c84, - 0xe29c85, - 0xe29c86, - 0xe29c87, - 0xe29c88, - 0xe29c89, - 0xe29c8a, - 0xe29c8b, - 0xe29c8c, - 0xe29c8d, - 0xe29c8e, - 0xe29c8f, - 0xe29c90, - 0xe29c91, - 0xe29c92, - 0xe29c93, - 0xe29c94, - 0xe29c95, - 0xe29c96, - 0xe29c97, - 0xe29c98, - 0xe29c99, - 0xe29c9a, - 0xe29c9b, - 0xe29c9c, - 0xe29c9d, - 0xe29c9e, - 0xe29c9f, - 0xe29ca0, - 0xe29ca1, - 0xe29ca2, - 0xe29ca3, - 0xe29ca4, - 0xe29ca5, - 0xe29ca6, - 0xe29ca7, - 0xe29ca8, - 0xe29ca9, - 0xe29caa, - 0xe29cab, - 0xe29cac, - 0xe29cad, - 0xe29cae, - 0xe29caf, - 0xe29cb0, - 0xe29cb1, - 0xe29cb2, - 0xe29cb3, - 0xe29cb4, - 0xe29cb5, - 0xe29cb6, - 0xe29cb7, - 0xe29cb8, - 0xe29cb9, - 0xe29cba, - 0xe29cbb, - 0xe29cbc, - 0xe29cbd, - 0xe29cbe, - 0xe29cbf, - 0xe29d80, - 0xe29d81, - 0xe29d82, - 0xe29d83, - 0xe29d84, - 0xe29d85, - 0xe29d86, - 0xe29d87, - 0xe29d88, - 0xe29d89, - 0xe29d8a, - 0xe29d8b, - 0xe29d8c, - 0xe29d8d, - 0xe29d8e, - 0xe29d8f, - 0xe29d90, - 0xe29d91, - 0xe29d92, - 0xe29d93, - 0xe29d94, - 0xe29d95, - 0xe29d96, - 0xe29d97, - 0xe29d98, - 0xe29d99, - 0xe29d9a, - 0xe29d9b, - 0xe29d9c, - 0xe29d9d, - 0xe29d9e, - 0xe29d9f, - 0xe29da0, - 0xe29da1, - 0xe29da2, - 0xe29da3, - 0xe29da4, - 0xe29da5, - 0xe29da6, - 0xe29da7, - 0xe29da8, - 0xe29da9, - 0xe29daa, - 0xe29dab, - 0xe29dac, - 0xe29dad, - 0xe29dae, - 0xe29daf, - 0xe29db0, - 0xe29db1, - 0xe29db2, - 0xe29db3, - 0xe29db4, - 0xe29db5, - 0xe29db6, - 0xe29db7, - 0xe29db8, - 0xe29db9, - 0xe29dba, - 0xe29dbb, - 0xe29dbc, - 0xe29dbd, - 0xe29dbe, - 0xe29dbf, - 0xe29e80, - 0xe29e81, - 0xe29e82, - 0xe29e83, - 0xe29e84, - 0xe29e85, - 0xe29e86, - 0xe29e87, - 0xe29e88, - 0xe29e89, - 0xe29e8a, - 0xe29e8b, - 0xe29e8c, - 0xe29e8d, - 0xe29e8e, - 0xe29e8f, - 0xe29e90, - 0xe29e91, - 0xe29e92, - 0xe29e93, - 0xe29e94, - 0xe29e95, - 0xe29e96, - 0xe29e97, - 0xe29e98, - 0xe29e99, - 0xe29e9a, - 0xe29e9b, - 0xe29e9c, - 0xe29e9d, - 0xe29e9e, - 0xe29e9f, - 0xe29ea0, - 0xe29ea1, - 0xe29ea2, - 0xe29ea3, - 0xe29ea4, - 0xe29ea5, - 0xe29ea6, - 0xe29ea7, - 0xe29ea8, - 0xe29ea9, - 0xe29eaa, - 0xe29eab, - 0xe29eac, - 0xe29ead, - 0xe29eae, - 0xe29eaf, - 0xe29eb0, - 0xe29eb1, - 0xe29eb2, - 0xe29eb3, - 0xe29eb4, - 0xe29eb5, - 0xe29eb6, - 0xe29eb7, - 0xe29eb8, - 0xe29eb9, - 0xe29eba, - 0xe29ebb, - 0xe29ebc, - 0xe29ebd, - 0xe29ebe, - 0xe29ebf, - 0xe29f80, - 0xe29f81, - 0xe29f82, - 0xe29f83, - 0xe29f84, - 0xe29f85, - 0xe29f86, - 0xe29f87, - 0xe29f88, - 0xe29f89, - 0xe29f8a, - 0xe29f8b, - 0xe29f8c, - 0xe29f8d, - 0xe29f8e, - 0xe29f8f, - 0xe29f90, - 0xe29f91, - 0xe29f92, - 0xe29f93, - 0xe29f94, - 0xe29f95, - 0xe29f96, - 0xe29f97, - 0xe29f98, - 0xe29f99, - 0xe29f9a, - 0xe29f9b, - 0xe29f9c, - 0xe29f9d, - 0xe29f9e, - 0xe29f9f, - 0xe29fa0, - 0xe29fa1, - 0xe29fa2, - 0xe29fa3, - 0xe29fa4, - 0xe29fa5, - 0xe29fa6, - 0xe29fa7, - 0xe29fa8, - 0xe29fa9, - 0xe29faa, - 0xe29fab, - 0xe29fac, - 0xe29fad, - 0xe29fae, - 0xe29faf, - 0xe29fb0, - 0xe29fb1, - 0xe29fb2, - 0xe29fb3, - 0xe29fb4, - 0xe29fb5, - 0xe29fb6, - 0xe29fb7, - 0xe29fb8, - 0xe29fb9, - 0xe29fba, - 0xe29fbb, - 0xe29fbc, - 0xe29fbd, - 0xe29fbe, - 0xe29fbf, - 0xe2a080, - 0xe2a081, - 0xe2a082, - 0xe2a083, - 0xe2a084, - 0xe2a085, - 0xe2a086, - 0xe2a087, - 0xe2a088, - 0xe2a089, - 0xe2a08a, - 0xe2a08b, - 0xe2a08c, - 0xe2a08d, - 0xe2a08e, - 0xe2a08f, - 0xe2a090, - 0xe2a091, - 0xe2a092, - 0xe2a093, - 0xe2a094, - 0xe2a095, - 0xe2a096, - 0xe2a097, - 0xe2a098, - 0xe2a099, - 0xe2a09a, - 0xe2a09b, - 0xe2a09c, - 0xe2a09d, - 0xe2a09e, - 0xe2a09f, - 0xe2a0a0, - 0xe2a0a1, - 0xe2a0a2, - 0xe2a0a3, - 0xe2a0a4, - 0xe2a0a5, - 0xe2a0a6, - 0xe2a0a7, - 0xe2a0a8, - 0xe2a0a9, - 0xe2a0aa, - 0xe2a0ab, - 0xe2a0ac, - 0xe2a0ad, - 0xe2a0ae, - 0xe2a0af, - 0xe2a0b0, - 0xe2a0b1, - 0xe2a0b2, - 0xe2a0b3, - 0xe2a0b4, - 0xe2a0b5, - 0xe2a0b6, - 0xe2a0b7, - 0xe2a0b8, - 0xe2a0b9, - 0xe2a0ba, - 0xe2a0bb, - 0xe2a0bc, - 0xe2a0bd, - 0xe2a0be, - 0xe2a0bf, - 0xe2a180, - 0xe2a181, - 0xe2a182, - 0xe2a183, - 0xe2a184, - 0xe2a185, - 0xe2a186, - 0xe2a187, - 0xe2a188, - 0xe2a189, - 0xe2a18a, - 0xe2a18b, - 0xe2a18c, - 0xe2a18d, - 0xe2a18e, - 0xe2a18f, - 0xe2a190, - 0xe2a191, - 0xe2a192, - 0xe2a193, - 0xe2a194, - 0xe2a195, - 0xe2a196, - 0xe2a197, - 0xe2a198, - 0xe2a199, - 0xe2a19a, - 0xe2a19b, - 0xe2a19c, - 0xe2a19d, - 0xe2a19e, - 0xe2a19f, - 0xe2a1a0, - 0xe2a1a1, - 0xe2a1a2, - 0xe2a1a3, - 0xe2a1a4, - 0xe2a1a5, - 0xe2a1a6, - 0xe2a1a7, - 0xe2a1a8, - 0xe2a1a9, - 0xe2a1aa, - 0xe2a1ab, - 0xe2a1ac, - 0xe2a1ad, - 0xe2a1ae, - 0xe2a1af, - 0xe2a1b0, - 0xe2a1b1, - 0xe2a1b2, - 0xe2a1b3, - 0xe2a1b4, - 0xe2a1b5, - 0xe2a1b6, - 0xe2a1b7, - 0xe2a1b8, - 0xe2a1b9, - 0xe2a1ba, - 0xe2a1bb, - 0xe2a1bc, - 0xe2a1bd, - 0xe2a1be, - 0xe2a1bf, - 0xe2a280, - 0xe2a281, - 0xe2a282, - 0xe2a283, - 0xe2a284, - 0xe2a285, - 0xe2a286, - 0xe2a287, - 0xe2a288, - 0xe2a289, - 0xe2a28a, - 0xe2a28b, - 0xe2a28c, - 0xe2a28d, - 0xe2a28e, - 0xe2a28f, - 0xe2a290, - 0xe2a291, - 0xe2a292, - 0xe2a293, - 0xe2a294, - 0xe2a295, - 0xe2a296, - 0xe2a297, - 0xe2a298, - 0xe2a299, - 0xe2a29a, - 0xe2a29b, - 0xe2a29c, - 0xe2a29d, - 0xe2a29e, - 0xe2a29f, - 0xe2a2a0, - 0xe2a2a1, - 0xe2a2a2, - 0xe2a2a3, - 0xe2a2a4, - 0xe2a2a5, - 0xe2a2a6, - 0xe2a2a7, - 0xe2a2a8, - 0xe2a2a9, - 0xe2a2aa, - 0xe2a2ab, - 0xe2a2ac, - 0xe2a2ad, - 0xe2a2ae, - 0xe2a2af, - 0xe2a2b0, - 0xe2a2b1, - 0xe2a2b2, - 0xe2a2b3, - 0xe2a2b4, - 0xe2a2b5, - 0xe2a2b6, - 0xe2a2b7, - 0xe2a2b8, - 0xe2a2b9, - 0xe2a2ba, - 0xe2a2bb, - 0xe2a2bc, - 0xe2a2bd, - 0xe2a2be, - 0xe2a2bf, - 0xe2a380, - 0xe2a381, - 0xe2a382, - 0xe2a383, - 0xe2a384, - 0xe2a385, - 0xe2a386, - 0xe2a387, - 0xe2a388, - 0xe2a389, - 0xe2a38a, - 0xe2a38b, - 0xe2a38c, - 0xe2a38d, - 0xe2a38e, - 0xe2a38f, - 0xe2a390, - 0xe2a391, - 0xe2a392, - 0xe2a393, - 0xe2a394, - 0xe2a395, - 0xe2a396, - 0xe2a397, - 0xe2a398, - 0xe2a399, - 0xe2a39a, - 0xe2a39b, - 0xe2a39c, - 0xe2a39d, - 0xe2a39e, - 0xe2a39f, - 0xe2a3a0, - 0xe2a3a1, - 0xe2a3a2, - 0xe2a3a3, - 0xe2a3a4, - 0xe2a3a5, - 0xe2a3a6, - 0xe2a3a7, - 0xe2a3a8, - 0xe2a3a9, - 0xe2a3aa, - 0xe2a3ab, - 0xe2a3ac, - 0xe2a3ad, - 0xe2a3ae, - 0xe2a3af, - 0xe2a3b0, - 0xe2a3b1, - 0xe2a3b2, - 0xe2a3b3, - 0xe2a3b4, - 0xe2a3b5, - 0xe2a3b6, - 0xe2a3b7, - 0xe2a3b8, - 0xe2a3b9, - 0xe2a3ba, - 0xe2a3bb, - 0xe2a3bc, - 0xe2a3bd, - 0xe2a3be, - 0xe2a3bf, - 0xe2a480, - 0xe2a481, - 0xe2a482, - 0xe2a483, - 0xe2a484, - 0xe2a485, - 0xe2a486, - 0xe2a487, - 0xe2a488, - 0xe2a489, - 0xe2a48a, - 0xe2a48b, - 0xe2a48c, - 0xe2a48d, - 0xe2a48e, - 0xe2a48f, - 0xe2a490, - 0xe2a491, - 0xe2a492, - 0xe2a493, - 0xe2a494, - 0xe2a495, - 0xe2a496, - 0xe2a497, - 0xe2a498, - 0xe2a499, - 0xe2a49a, - 0xe2a49b, - 0xe2a49c, - 0xe2a49d, - 0xe2a49e, - 0xe2a49f, - 0xe2a4a0, - 0xe2a4a1, - 0xe2a4a2, - 0xe2a4a3, - 0xe2a4a4, - 0xe2a4a5, - 0xe2a4a6, - 0xe2a4a7, - 0xe2a4a8, - 0xe2a4a9, - 0xe2a4aa, - 0xe2a4ab, - 0xe2a4ac, - 0xe2a4ad, - 0xe2a4ae, - 0xe2a4af, - 0xe2a4b0, - 0xe2a4b1, - 0xe2a4b2, - 0xe2a4b3, - 0xe2a4b4, - 0xe2a4b5, - 0xe2a4b6, - 0xe2a4b7, - 0xe2a4b8, - 0xe2a4b9, - 0xe2a4ba, - 0xe2a4bb, - 0xe2a4bc, - 0xe2a4bd, - 0xe2a4be, - 0xe2a4bf, - 0xe2a580, - 0xe2a581, - 0xe2a582, - 0xe2a583, - 0xe2a584, - 0xe2a585, - 0xe2a586, - 0xe2a587, - 0xe2a588, - 0xe2a589, - 0xe2a58a, - 0xe2a58b, - 0xe2a58c, - 0xe2a58d, - 0xe2a58e, - 0xe2a58f, - 0xe2a590, - 0xe2a591, - 0xe2a592, - 0xe2a593, - 0xe2a594, - 0xe2a595, - 0xe2a596, - 0xe2a597, - 0xe2a598, - 0xe2a599, - 0xe2a59a, - 0xe2a59b, - 0xe2a59c, - 0xe2a59d, - 0xe2a59e, - 0xe2a59f, - 0xe2a5a0, - 0xe2a5a1, - 0xe2a5a2, - 0xe2a5a3, - 0xe2a5a4, - 0xe2a5a5, - 0xe2a5a6, - 0xe2a5a7, - 0xe2a5a8, - 0xe2a5a9, - 0xe2a5aa, - 0xe2a5ab, - 0xe2a5ac, - 0xe2a5ad, - 0xe2a5ae, - 0xe2a5af, - 0xe2a5b0, - 0xe2a5b1, - 0xe2a5b2, - 0xe2a5b3, - 0xe2a5b4, - 0xe2a5b5, - 0xe2a5b6, - 0xe2a5b7, - 0xe2a5b8, - 0xe2a5b9, - 0xe2a5ba, - 0xe2a5bb, - 0xe2a5bc, - 0xe2a5bd, - 0xe2a5be, - 0xe2a5bf, - 0xe2a680, - 0xe2a681, - 0xe2a682, - 0xe2a683, - 0xe2a684, - 0xe2a685, - 0xe2a686, - 0xe2a687, - 0xe2a688, - 0xe2a689, - 0xe2a68a, - 0xe2a68b, - 0xe2a68c, - 0xe2a68d, - 0xe2a68e, - 0xe2a68f, - 0xe2a690, - 0xe2a691, - 0xe2a692, - 0xe2a693, - 0xe2a694, - 0xe2a695, - 0xe2a696, - 0xe2a697, - 0xe2a698, - 0xe2a699, - 0xe2a69a, - 0xe2a69b, - 0xe2a69c, - 0xe2a69d, - 0xe2a69e, - 0xe2a69f, - 0xe2a6a0, - 0xe2a6a1, - 0xe2a6a2, - 0xe2a6a3, - 0xe2a6a4, - 0xe2a6a5, - 0xe2a6a6, - 0xe2a6a7, - 0xe2a6a8, - 0xe2a6a9, - 0xe2a6aa, - 0xe2a6ab, - 0xe2a6ac, - 0xe2a6ad, - 0xe2a6ae, - 0xe2a6af, - 0xe2a6b0, - 0xe2a6b1, - 0xe2a6b2, - 0xe2a6b3, - 0xe2a6b4, - 0xe2a6b5, - 0xe2a6b6, - 0xe2a6b7, - 0xe2a6b8, - 0xe2a6b9, - 0xe2a6ba, - 0xe2a6bb, - 0xe2a6bc, - 0xe2a6bd, - 0xe2a6be, - 0xe2a6bf, - 0xe2a780, - 0xe2a781, - 0xe2a782, - 0xe2a783, - 0xe2a784, - 0xe2a785, - 0xe2a786, - 0xe2a787, - 0xe2a788, - 0xe2a789, - 0xe2a78a, - 0xe2a78b, - 0xe2a78c, - 0xe2a78d, - 0xe2a78e, - 0xe2a78f, - 0xe2a790, - 0xe2a791, - 0xe2a792, - 0xe2a793, - 0xe2a794, - 0xe2a795, - 0xe2a796, - 0xe2a797, - 0xe2a798, - 0xe2a799, - 0xe2a79a, - 0xe2a79b, - 0xe2a79c, - 0xe2a79d, - 0xe2a79e, - 0xe2a79f, - 0xe2a7a0, - 0xe2a7a1, - 0xe2a7a2, - 0xe2a7a3, - 0xe2a7a4, - 0xe2a7a5, - 0xe2a7a6, - 0xe2a7a7, - 0xe2a7a8, - 0xe2a7a9, - 0xe2a7aa, - 0xe2a7ab, - 0xe2a7ac, - 0xe2a7ad, - 0xe2a7ae, - 0xe2a7af, - 0xe2a7b0, - 0xe2a7b1, - 0xe2a7b2, - 0xe2a7b3, - 0xe2a7b4, - 0xe2a7b5, - 0xe2a7b6, - 0xe2a7b7, - 0xe2a7b8, - 0xe2a7b9, - 0xe2a7ba, - 0xe2a7bb, - 0xe2a7bc, - 0xe2a7bd, - 0xe2a7be, - 0xe2a7bf, - 0xe2a880, - 0xe2a881, - 0xe2a882, - 0xe2a883, - 0xe2a884, - 0xe2a885, - 0xe2a886, - 0xe2a887, - 0xe2a888, - 0xe2a889, - 0xe2a88a, - 0xe2a88b, - 0xe2a88c, - 0xe2a88d, - 0xe2a88e, - 0xe2a88f, - 0xe2a890, - 0xe2a891, - 0xe2a892, - 0xe2a893, - 0xe2a894, - 0xe2a895, - 0xe2a896, - 0xe2a897, - 0xe2a898, - 0xe2a899, - 0xe2a89a, - 0xe2a89b, - 0xe2a89c, - 0xe2a89d, - 0xe2a89e, - 0xe2a89f, - 0xe2a8a0, - 0xe2a8a1, - 0xe2a8a2, - 0xe2a8a3, - 0xe2a8a4, - 0xe2a8a5, - 0xe2a8a6, - 0xe2a8a7, - 0xe2a8a8, - 0xe2a8a9, - 0xe2a8aa, - 0xe2a8ab, - 0xe2a8ac, - 0xe2a8ad, - 0xe2a8ae, - 0xe2a8af, - 0xe2a8b0, - 0xe2a8b1, - 0xe2a8b2, - 0xe2a8b3, - 0xe2a8b4, - 0xe2a8b5, - 0xe2a8b6, - 0xe2a8b7, - 0xe2a8b8, - 0xe2a8b9, - 0xe2a8ba, - 0xe2a8bb, - 0xe2a8bc, - 0xe2a8bd, - 0xe2a8be, - 0xe2a8bf, - 0xe2a980, - 0xe2a981, - 0xe2a982, - 0xe2a983, - 0xe2a984, - 0xe2a985, - 0xe2a986, - 0xe2a987, - 0xe2a988, - 0xe2a989, - 0xe2a98a, - 0xe2a98b, - 0xe2a98c, - 0xe2a98d, - 0xe2a98e, - 0xe2a98f, - 0xe2a990, - 0xe2a991, - 0xe2a992, - 0xe2a993, - 0xe2a994, - 0xe2a995, - 0xe2a996, - 0xe2a997, - 0xe2a998, - 0xe2a999, - 0xe2a99a, - 0xe2a99b, - 0xe2a99c, - 0xe2a99d, - 0xe2a99e, - 0xe2a99f, - 0xe2a9a0, - 0xe2a9a1, - 0xe2a9a2, - 0xe2a9a3, - 0xe2a9a4, - 0xe2a9a5, - 0xe2a9a6, - 0xe2a9a7, - 0xe2a9a8, - 0xe2a9a9, - 0xe2a9aa, - 0xe2a9ab, - 0xe2a9ac, - 0xe2a9ad, - 0xe2a9ae, - 0xe2a9af, - 0xe2a9b0, - 0xe2a9b1, - 0xe2a9b2, - 0xe2a9b3, - 0xe2a9b4, - 0xe2a9b5, - 0xe2a9b6, - 0xe2a9b7, - 0xe2a9b8, - 0xe2a9b9, - 0xe2a9ba, - 0xe2a9bb, - 0xe2a9bc, - 0xe2a9bd, - 0xe2a9be, - 0xe2a9bf, - 0xe2aa80, - 0xe2aa81, - 0xe2aa82, - 0xe2aa83, - 0xe2aa84, - 0xe2aa85, - 0xe2aa86, - 0xe2aa87, - 0xe2aa88, - 0xe2aa89, - 0xe2aa8a, - 0xe2aa8b, - 0xe2aa8c, - 0xe2aa8d, - 0xe2aa8e, - 0xe2aa8f, - 0xe2aa90, - 0xe2aa91, - 0xe2aa92, - 0xe2aa93, - 0xe2aa94, - 0xe2aa95, - 0xe2aa96, - 0xe2aa97, - 0xe2aa98, - 0xe2aa99, - 0xe2aa9a, - 0xe2aa9b, - 0xe2aa9c, - 0xe2aa9d, - 0xe2aa9e, - 0xe2aa9f, - 0xe2aaa0, - 0xe2aaa1, - 0xe2aaa2, - 0xe2aaa3, - 0xe2aaa4, - 0xe2aaa5, - 0xe2aaa6, - 0xe2aaa7, - 0xe2aaa8, - 0xe2aaa9, - 0xe2aaaa, - 0xe2aaab, - 0xe2aaac, - 0xe2aaad, - 0xe2aaae, - 0xe2aaaf, - 0xe2aab0, - 0xe2aab1, - 0xe2aab2, - 0xe2aab3, - 0xe2aab4, - 0xe2aab5, - 0xe2aab6, - 0xe2aab7, - 0xe2aab8, - 0xe2aab9, - 0xe2aaba, - 0xe2aabb, - 0xe2aabc, - 0xe2aabd, - 0xe2aabe, - 0xe2aabf, - 0xe2ab80, - 0xe2ab81, - 0xe2ab82, - 0xe2ab83, - 0xe2ab84, - 0xe2ab85, - 0xe2ab86, - 0xe2ab87, - 0xe2ab88, - 0xe2ab89, - 0xe2ab8a, - 0xe2ab8b, - 0xe2ab8c, - 0xe2ab8d, - 0xe2ab8e, - 0xe2ab8f, - 0xe2ab90, - 0xe2ab91, - 0xe2ab92, - 0xe2ab93, - 0xe2ab94, - 0xe2ab95, - 0xe2ab96, - 0xe2ab97, - 0xe2ab98, - 0xe2ab99, - 0xe2ab9a, - 0xe2ab9b, - 0xe2ab9c, - 0xe2ab9d, - 0xe2ab9e, - 0xe2ab9f, - 0xe2aba0, - 0xe2aba1, - 0xe2aba2, - 0xe2aba3, - 0xe2aba4, - 0xe2aba5, - 0xe2aba6, - 0xe2aba7, - 0xe2aba8, - 0xe2aba9, - 0xe2abaa, - 0xe2abab, - 0xe2abac, - 0xe2abad, - 0xe2abae, - 0xe2abaf, - 0xe2abb0, - 0xe2abb1, - 0xe2abb2, - 0xe2abb3, - 0xe2abb4, - 0xe2abb5, - 0xe2abb6, - 0xe2abb7, - 0xe2abb8, - 0xe2abb9, - 0xe2abba, - 0xe2abbb, - 0xe2abbc, - 0xe2abbd, - 0xe2abbe, - 0xe2abbf, - 0xe2ac80, - 0xe2ac81, - 0xe2ac82, - 0xe2ac83, - 0xe2ac84, - 0xe2ac85, - 0xe2ac86, - 0xe2ac87, - 0xe2ac88, - 0xe2ac89, - 0xe2ac8a, - 0xe2ac8b, - 0xe2ac8c, - 0xe2ac8d, - 0xe2ac8e, - 0xe2ac8f, - 0xe2ac90, - 0xe2ac91, - 0xe2ac92, - 0xe2ac93, - 0xe2ac94, - 0xe2ac95, - 0xe2ac96, - 0xe2ac97, - 0xe2ac98, - 0xe2ac99, - 0xe2ac9a, - 0xe2ac9b, - 0xe2ac9c, - 0xe2ac9d, - 0xe2ac9e, - 0xe2ac9f, - 0xe2aca0, - 0xe2aca1, - 0xe2aca2, - 0xe2aca3, - 0xe2aca4, - 0xe2aca5, - 0xe2aca6, - 0xe2aca7, - 0xe2aca8, - 0xe2aca9, - 0xe2acaa, - 0xe2acab, - 0xe2acac, - 0xe2acad, - 0xe2acae, - 0xe2acaf, - 0xe2acb0, - 0xe2acb1, - 0xe2acb2, - 0xe2acb3, - 0xe2acb4, - 0xe2acb5, - 0xe2acb6, - 0xe2acb7, - 0xe2acb8, - 0xe2acb9, - 0xe2acba, - 0xe2acbb, - 0xe2acbc, - 0xe2acbd, - 0xe2acbe, - 0xe2acbf, - 0xe2ad80, - 0xe2ad81, - 0xe2ad82, - 0xe2ad83, - 0xe2ad84, - 0xe2ad85, - 0xe2ad86, - 0xe2ad87, - 0xe2ad88, - 0xe2ad89, - 0xe2ad8a, - 0xe2ad8b, - 0xe2ad8c, - 0xe2ad8d, - 0xe2ad8e, - 0xe2ad8f, - 0xe2ad90, - 0xe2ad91, - 0xe2ad92, - 0xe2ad93, - 0xe2ad94, - 0xe2ad95, - 0xe2ad96, - 0xe2ad97, - 0xe2ad98, - 0xe2ad99, - 0xe2ad9a, - 0xe2ad9b, - 0xe2ad9c, - 0xe2ad9d, - 0xe2ad9e, - 0xe2ad9f, - 0xe2ada0, - 0xe2ada1, - 0xe2ada2, - 0xe2ada3, - 0xe2ada4, - 0xe2ada5, - 0xe2ada6, - 0xe2ada7, - 0xe2ada8, - 0xe2ada9, - 0xe2adaa, - 0xe2adab, - 0xe2adac, - 0xe2adad, - 0xe2adae, - 0xe2adaf, - 0xe2adb0, - 0xe2adb1, - 0xe2adb2, - 0xe2adb3, - 0xe2adb4, - 0xe2adb5, - 0xe2adb6, - 0xe2adb7, - 0xe2adb8, - 0xe2adb9, - 0xe2adba, - 0xe2adbb, - 0xe2adbc, - 0xe2adbd, - 0xe2adbe, - 0xe2adbf, - 0xe2ae80, - 0xe2ae81, - 0xe2ae82, - 0xe2ae83, - 0xe2ae84, - 0xe2ae85, - 0xe2ae86, - 0xe2ae87, - 0xe2ae88, - 0xe2ae89, - 0xe2ae8a, - 0xe2ae8b, - 0xe2ae8c, - 0xe2ae8d, - 0xe2ae8e, - 0xe2ae8f, - 0xe2ae90, - 0xe2ae91, - 0xe2ae92, - 0xe2ae93, - 0xe2ae94, - 0xe2ae95, - 0xe2ae96, - 0xe2ae97, - 0xe2ae98, - 0xe2ae99, - 0xe2ae9a, - 0xe2ae9b, - 0xe2ae9c, - 0xe2ae9d, - 0xe2ae9e, - 0xe2ae9f, - 0xe2aea0, - 0xe2aea1, - 0xe2aea2, - 0xe2aea3, - 0xe2aea4, - 0xe2aea5, - 0xe2aea6, - 0xe2aea7, - 0xe2aea8, - 0xe2aea9, - 0xe2aeaa, - 0xe2aeab, - 0xe2aeac, - 0xe2aead, - 0xe2aeae, - 0xe2aeaf, - 0xe2aeb0, - 0xe2aeb1, - 0xe2aeb2, - 0xe2aeb3, - 0xe2aeb4, - 0xe2aeb5, - 0xe2aeb6, - 0xe2aeb7, - 0xe2aeb8, - 0xe2aeb9, - 0xe2aeba, - 0xe2aebb, - 0xe2aebc, - 0xe2aebd, - 0xe2aebe, - 0xe2aebf, - 0xe2af80, - 0xe2af81, - 0xe2af82, - 0xe2af83, - 0xe2af84, - 0xe2af85, - 0xe2af86, - 0xe2af87, - 0xe2af88, - 0xe2af89, - 0xe2af8a, - 0xe2af8b, - 0xe2af8c, - 0xe2af8d, - 0xe2af8e, - 0xe2af8f, - 0xe2af90, - 0xe2af91, - 0xe2af92, - 0xe2af93, - 0xe2af94, - 0xe2af95, - 0xe2af96, - 0xe2af97, - 0xe2af98, - 0xe2af99, - 0xe2af9a, - 0xe2af9b, - 0xe2af9c, - 0xe2af9d, - 0xe2af9e, - 0xe2af9f, - 0xe2afa0, - 0xe2afa1, - 0xe2afa2, - 0xe2afa3, - 0xe2afa4, - 0xe2afa5, - 0xe2afa6, - 0xe2afa7, - 0xe2afa8, - 0xe2afa9, - 0xe2afaa, - 0xe2afab, - 0xe2afac, - 0xe2afad, - 0xe2afae, - 0xe2afaf, - 0xe2afb0, - 0xe2afb1, - 0xe2afb2, - 0xe2afb3, - 0xe2afb4, - 0xe2afb5, - 0xe2afb6, - 0xe2afb7, - 0xe2afb8, - 0xe2afb9, - 0xe2afba, - 0xe2afbb, - 0xe2afbc, - 0xe2afbd, - 0xe2afbe, - 0xe2afbf, - 0xe2b080, - 0xe2b081, - 0xe2b082, - 0xe2b083, - 0xe2b084, - 0xe2b085, - 0xe2b086, - 0xe2b087, - 0xe2b088, - 0xe2b089, - 0xe2b08a, - 0xe2b08b, - 0xe2b08c, - 0xe2b08d, - 0xe2b08e, - 0xe2b08f, - 0xe2b090, - 0xe2b091, - 0xe2b092, - 0xe2b093, - 0xe2b094, - 0xe2b095, - 0xe2b096, - 0xe2b097, - 0xe2b098, - 0xe2b099, - 0xe2b09a, - 0xe2b09b, - 0xe2b09c, - 0xe2b09d, - 0xe2b09e, - 0xe2b09f, - 0xe2b0a0, - 0xe2b0a1, - 0xe2b0a2, - 0xe2b0a3, - 0xe2b0a4, - 0xe2b0a5, - 0xe2b0a6, - 0xe2b0a7, - 0xe2b0a8, - 0xe2b0a9, - 0xe2b0aa, - 0xe2b0ab, - 0xe2b0ac, - 0xe2b0ad, - 0xe2b0ae, - 0xe2b0af, - 0xe2b0b0, - 0xe2b0b1, - 0xe2b0b2, - 0xe2b0b3, - 0xe2b0b4, - 0xe2b0b5, - 0xe2b0b6, - 0xe2b0b7, - 0xe2b0b8, - 0xe2b0b9, - 0xe2b0ba, - 0xe2b0bb, - 0xe2b0bc, - 0xe2b0bd, - 0xe2b0be, - 0xe2b0bf, - 0xe2b180, - 0xe2b181, - 0xe2b182, - 0xe2b183, - 0xe2b184, - 0xe2b185, - 0xe2b186, - 0xe2b187, - 0xe2b188, - 0xe2b189, - 0xe2b18a, - 0xe2b18b, - 0xe2b18c, - 0xe2b18d, - 0xe2b18e, - 0xe2b18f, - 0xe2b190, - 0xe2b191, - 0xe2b192, - 0xe2b193, - 0xe2b194, - 0xe2b195, - 0xe2b196, - 0xe2b197, - 0xe2b198, - 0xe2b199, - 0xe2b19a, - 0xe2b19b, - 0xe2b19c, - 0xe2b19d, - 0xe2b19e, - 0xe2b19f, - 0xe2b1a0, - 0xe2b1a1, - 0xe2b1a2, - 0xe2b1a3, - 0xe2b1a4, - 0xe2b1a5, - 0xe2b1a6, - 0xe2b1a7, - 0xe2b1a8, - 0xe2b1a9, - 0xe2b1aa, - 0xe2b1ab, - 0xe2b1ac, - 0xe2b1ad, - 0xe2b1ae, - 0xe2b1af, - 0xe2b1b0, - 0xe2b1b1, - 0xe2b1b2, - 0xe2b1b3, - 0xe2b1b4, - 0xe2b1b5, - 0xe2b1b6, - 0xe2b1b7, - 0xe2b1b8, - 0xe2b1b9, - 0xe2b1ba, - 0xe2b1bb, - 0xe2b1bc, - 0xe2b1bd, - 0xe2b1be, - 0xe2b1bf, - 0xe2b280, - 0xe2b281, - 0xe2b282, - 0xe2b283, - 0xe2b284, - 0xe2b285, - 0xe2b286, - 0xe2b287, - 0xe2b288, - 0xe2b289, - 0xe2b28a, - 0xe2b28b, - 0xe2b28c, - 0xe2b28d, - 0xe2b28e, - 0xe2b28f, - 0xe2b290, - 0xe2b291, - 0xe2b292, - 0xe2b293, - 0xe2b294, - 0xe2b295, - 0xe2b296, - 0xe2b297, - 0xe2b298, - 0xe2b299, - 0xe2b29a, - 0xe2b29b, - 0xe2b29c, - 0xe2b29d, - 0xe2b29e, - 0xe2b29f, - 0xe2b2a0, - 0xe2b2a1, - 0xe2b2a2, - 0xe2b2a3, - 0xe2b2a4, - 0xe2b2a5, - 0xe2b2a6, - 0xe2b2a7, - 0xe2b2a8, - 0xe2b2a9, - 0xe2b2aa, - 0xe2b2ab, - 0xe2b2ac, - 0xe2b2ad, - 0xe2b2ae, - 0xe2b2af, - 0xe2b2b0, - 0xe2b2b1, - 0xe2b2b2, - 0xe2b2b3, - 0xe2b2b4, - 0xe2b2b5, - 0xe2b2b6, - 0xe2b2b7, - 0xe2b2b8, - 0xe2b2b9, - 0xe2b2ba, - 0xe2b2bb, - 0xe2b2bc, - 0xe2b2bd, - 0xe2b2be, - 0xe2b2bf, - 0xe2b380, - 0xe2b381, - 0xe2b382, - 0xe2b383, - 0xe2b384, - 0xe2b385, - 0xe2b386, - 0xe2b387, - 0xe2b388, - 0xe2b389, - 0xe2b38a, - 0xe2b38b, - 0xe2b38c, - 0xe2b38d, - 0xe2b38e, - 0xe2b38f, - 0xe2b390, - 0xe2b391, - 0xe2b392, - 0xe2b393, - 0xe2b394, - 0xe2b395, - 0xe2b396, - 0xe2b397, - 0xe2b398, - 0xe2b399, - 0xe2b39a, - 0xe2b39b, - 0xe2b39c, - 0xe2b39d, - 0xe2b39e, - 0xe2b39f, - 0xe2b3a0, - 0xe2b3a1, - 0xe2b3a2, - 0xe2b3a3, - 0xe2b3a4, - 0xe2b3a5, - 0xe2b3a6, - 0xe2b3a7, - 0xe2b3a8, - 0xe2b3a9, - 0xe2b3aa, - 0xe2b3ab, - 0xe2b3ac, - 0xe2b3ad, - 0xe2b3ae, - 0xe2b3af, - 0xe2b3b0, - 0xe2b3b1, - 0xe2b3b2, - 0xe2b3b3, - 0xe2b3b4, - 0xe2b3b5, - 0xe2b3b6, - 0xe2b3b7, - 0xe2b3b8, - 0xe2b3b9, - 0xe2b3ba, - 0xe2b3bb, - 0xe2b3bc, - 0xe2b3bd, - 0xe2b3be, - 0xe2b3bf, - 0xe2b480, - 0xe2b481, - 0xe2b482, - 0xe2b483, - 0xe2b484, - 0xe2b485, - 0xe2b486, - 0xe2b487, - 0xe2b488, - 0xe2b489, - 0xe2b48a, - 0xe2b48b, - 0xe2b48c, - 0xe2b48d, - 0xe2b48e, - 0xe2b48f, - 0xe2b490, - 0xe2b491, - 0xe2b492, - 0xe2b493, - 0xe2b494, - 0xe2b495, - 0xe2b496, - 0xe2b497, - 0xe2b498, - 0xe2b499, - 0xe2b49a, - 0xe2b49b, - 0xe2b49c, - 0xe2b49d, - 0xe2b49e, - 0xe2b49f, - 0xe2b4a0, - 0xe2b4a1, - 0xe2b4a2, - 0xe2b4a3, - 0xe2b4a4, - 0xe2b4a5, - 0xe2b4a6, - 0xe2b4a7, - 0xe2b4a8, - 0xe2b4a9, - 0xe2b4aa, - 0xe2b4ab, - 0xe2b4ac, - 0xe2b4ad, - 0xe2b4ae, - 0xe2b4af, - 0xe2b4b0, - 0xe2b4b1, - 0xe2b4b2, - 0xe2b4b3, - 0xe2b4b4, - 0xe2b4b5, - 0xe2b4b6, - 0xe2b4b7, - 0xe2b4b8, - 0xe2b4b9, - 0xe2b4ba, - 0xe2b4bb, - 0xe2b4bc, - 0xe2b4bd, - 0xe2b4be, - 0xe2b4bf, - 0xe2b580, - 0xe2b581, - 0xe2b582, - 0xe2b583, - 0xe2b584, - 0xe2b585, - 0xe2b586, - 0xe2b587, - 0xe2b588, - 0xe2b589, - 0xe2b58a, - 0xe2b58b, - 0xe2b58c, - 0xe2b58d, - 0xe2b58e, - 0xe2b58f, - 0xe2b590, - 0xe2b591, - 0xe2b592, - 0xe2b593, - 0xe2b594, - 0xe2b595, - 0xe2b596, - 0xe2b597, - 0xe2b598, - 0xe2b599, - 0xe2b59a, - 0xe2b59b, - 0xe2b59c, - 0xe2b59d, - 0xe2b59e, - 0xe2b59f, - 0xe2b5a0, - 0xe2b5a1, - 0xe2b5a2, - 0xe2b5a3, - 0xe2b5a4, - 0xe2b5a5, - 0xe2b5a6, - 0xe2b5a7, - 0xe2b5a8, - 0xe2b5a9, - 0xe2b5aa, - 0xe2b5ab, - 0xe2b5ac, - 0xe2b5ad, - 0xe2b5ae, - 0xe2b5af, - 0xe2b5b0, - 0xe2b5b1, - 0xe2b5b2, - 0xe2b5b3, - 0xe2b5b4, - 0xe2b5b5, - 0xe2b5b6, - 0xe2b5b7, - 0xe2b5b8, - 0xe2b5b9, - 0xe2b5ba, - 0xe2b5bb, - 0xe2b5bc, - 0xe2b5bd, - 0xe2b5be, - 0xe2b5bf, - 0xe2b680, - 0xe2b681, - 0xe2b682, - 0xe2b683, - 0xe2b684, - 0xe2b685, - 0xe2b686, - 0xe2b687, - 0xe2b688, - 0xe2b689, - 0xe2b68a, - 0xe2b68b, - 0xe2b68c, - 0xe2b68d, - 0xe2b68e, - 0xe2b68f, - 0xe2b690, - 0xe2b691, - 0xe2b692, - 0xe2b693, - 0xe2b694, - 0xe2b695, - 0xe2b696, - 0xe2b697, - 0xe2b698, - 0xe2b699, - 0xe2b69a, - 0xe2b69b, - 0xe2b69c, - 0xe2b69d, - 0xe2b69e, - 0xe2b69f, - 0xe2b6a0, - 0xe2b6a1, - 0xe2b6a2, - 0xe2b6a3, - 0xe2b6a4, - 0xe2b6a5, - 0xe2b6a6, - 0xe2b6a7, - 0xe2b6a8, - 0xe2b6a9, - 0xe2b6aa, - 0xe2b6ab, - 0xe2b6ac, - 0xe2b6ad, - 0xe2b6ae, - 0xe2b6af, - 0xe2b6b0, - 0xe2b6b1, - 0xe2b6b2, - 0xe2b6b3, - 0xe2b6b4, - 0xe2b6b5, - 0xe2b6b6, - 0xe2b6b7, - 0xe2b6b8, - 0xe2b6b9, - 0xe2b6ba, - 0xe2b6bb, - 0xe2b6bc, - 0xe2b6bd, - 0xe2b6be, - 0xe2b6bf, - 0xe2b780, - 0xe2b781, - 0xe2b782, - 0xe2b783, - 0xe2b784, - 0xe2b785, - 0xe2b786, - 0xe2b787, - 0xe2b788, - 0xe2b789, - 0xe2b78a, - 0xe2b78b, - 0xe2b78c, - 0xe2b78d, - 0xe2b78e, - 0xe2b78f, - 0xe2b790, - 0xe2b791, - 0xe2b792, - 0xe2b793, - 0xe2b794, - 0xe2b795, - 0xe2b796, - 0xe2b797, - 0xe2b798, - 0xe2b799, - 0xe2b79a, - 0xe2b79b, - 0xe2b79c, - 0xe2b79d, - 0xe2b79e, - 0xe2b79f, - 0xe2b7a0, - 0xe2b7a1, - 0xe2b7a2, - 0xe2b7a3, - 0xe2b7a4, - 0xe2b7a5, - 0xe2b7a6, - 0xe2b7a7, - 0xe2b7a8, - 0xe2b7a9, - 0xe2b7aa, - 0xe2b7ab, - 0xe2b7ac, - 0xe2b7ad, - 0xe2b7ae, - 0xe2b7af, - 0xe2b7b0, - 0xe2b7b1, - 0xe2b7b2, - 0xe2b7b3, - 0xe2b7b4, - 0xe2b7b5, - 0xe2b7b6, - 0xe2b7b7, - 0xe2b7b8, - 0xe2b7b9, - 0xe2b7ba, - 0xe2b7bb, - 0xe2b7bc, - 0xe2b7bd, - 0xe2b7be, - 0xe2b7bf, - 0xe2b880, - 0xe2b881, - 0xe2b882, - 0xe2b883, - 0xe2b884, - 0xe2b885, - 0xe2b886, - 0xe2b887, - 0xe2b888, - 0xe2b889, - 0xe2b88a, - 0xe2b88b, - 0xe2b88c, - 0xe2b88d, - 0xe2b88e, - 0xe2b88f, - 0xe2b890, - 0xe2b891, - 0xe2b892, - 0xe2b893, - 0xe2b894, - 0xe2b895, - 0xe2b896, - 0xe2b897, - 0xe2b898, - 0xe2b899, - 0xe2b89a, - 0xe2b89b, - 0xe2b89c, - 0xe2b89d, - 0xe2b89e, - 0xe2b89f, - 0xe2b8a0, - 0xe2b8a1, - 0xe2b8a2, - 0xe2b8a3, - 0xe2b8a4, - 0xe2b8a5, - 0xe2b8a6, - 0xe2b8a7, - 0xe2b8a8, - 0xe2b8a9, - 0xe2b8aa, - 0xe2b8ab, - 0xe2b8ac, - 0xe2b8ad, - 0xe2b8ae, - 0xe2b8af, - 0xe2b8b0, - 0xe2b8b1, - 0xe2b8b2, - 0xe2b8b3, - 0xe2b8b4, - 0xe2b8b5, - 0xe2b8b6, - 0xe2b8b7, - 0xe2b8b8, - 0xe2b8b9, - 0xe2b8ba, - 0xe2b8bb, - 0xe2b8bc, - 0xe2b8bd, - 0xe2b8be, - 0xe2b8bf, - 0xe2b980, - 0xe2b981, - 0xe2b982, - 0xe2b983, - 0xe2b984, - 0xe2b985, - 0xe2b986, - 0xe2b987, - 0xe2b988, - 0xe2b989, - 0xe2b98a, - 0xe2b98b, - 0xe2b98c, - 0xe2b98d, - 0xe2b98e, - 0xe2b98f, - 0xe2b990, - 0xe2b991, - 0xe2b992, - 0xe2b993, - 0xe2b994, - 0xe2b995, - 0xe2b996, - 0xe2b997, - 0xe2b998, - 0xe2b999, - 0xe2b99a, - 0xe2b99b, - 0xe2b99c, - 0xe2b99d, - 0xe2b99e, - 0xe2b99f, - 0xe2b9a0, - 0xe2b9a1, - 0xe2b9a2, - 0xe2b9a3, - 0xe2b9a4, - 0xe2b9a5, - 0xe2b9a6, - 0xe2b9a7, - 0xe2b9a8, - 0xe2b9a9, - 0xe2b9aa, - 0xe2b9ab, - 0xe2b9ac, - 0xe2b9ad, - 0xe2b9ae, - 0xe2b9af, - 0xe2b9b0, - 0xe2b9b1, - 0xe2b9b2, - 0xe2b9b3, - 0xe2b9b4, - 0xe2b9b5, - 0xe2b9b6, - 0xe2b9b7, - 0xe2b9b8, - 0xe2b9b9, - 0xe2b9ba, - 0xe2b9bb, - 0xe2b9bc, - 0xe2b9bd, - 0xe2b9be, - 0xe2b9bf, - 0xe2ba80, - 0xe2ba81, - 0xe2ba82, - 0xe2ba83, - 0xe2ba84, - 0xe2ba85, - 0xe2ba86, - 0xe2ba87, - 0xe2ba88, - 0xe2ba89, - 0xe2ba8a, - 0xe2ba8b, - 0xe2ba8c, - 0xe2ba8d, - 0xe2ba8e, - 0xe2ba8f, - 0xe2ba90, - 0xe2ba91, - 0xe2ba92, - 0xe2ba93, - 0xe2ba94, - 0xe2ba95, - 0xe2ba96, - 0xe2ba97, - 0xe2ba98, - 0xe2ba99, - 0xe2ba9a, - 0xe2ba9b, - 0xe2ba9c, - 0xe2ba9d, - 0xe2ba9e, - 0xe2ba9f, - 0xe2baa0, - 0xe2baa1, - 0xe2baa2, - 0xe2baa3, - 0xe2baa4, - 0xe2baa5, - 0xe2baa6, - 0xe2baa7, - 0xe2baa8, - 0xe2baa9, - 0xe2baaa, - 0xe2baab, - 0xe2baac, - 0xe2baad, - 0xe2baae, - 0xe2baaf, - 0xe2bab0, - 0xe2bab1, - 0xe2bab2, - 0xe2bab3, - 0xe2bab4, - 0xe2bab5, - 0xe2bab6, - 0xe2bab7, - 0xe2bab8, - 0xe2bab9, - 0xe2baba, - 0xe2babb, - 0xe2babc, - 0xe2babd, - 0xe2babe, - 0xe2babf, - 0xe2bb80, - 0xe2bb81, - 0xe2bb82, - 0xe2bb83, - 0xe2bb84, - 0xe2bb85, - 0xe2bb86, - 0xe2bb87, - 0xe2bb88, - 0xe2bb89, - 0xe2bb8a, - 0xe2bb8b, - 0xe2bb8c, - 0xe2bb8d, - 0xe2bb8e, - 0xe2bb8f, - 0xe2bb90, - 0xe2bb91, - 0xe2bb92, - 0xe2bb93, - 0xe2bb94, - 0xe2bb95, - 0xe2bb96, - 0xe2bb97, - 0xe2bb98, - 0xe2bb99, - 0xe2bb9a, - 0xe2bb9b, - 0xe2bb9c, - 0xe2bb9d, - 0xe2bb9e, - 0xe2bb9f, - 0xe2bba0, - 0xe2bba1, - 0xe2bba2, - 0xe2bba3, - 0xe2bba4, - 0xe2bba5, - 0xe2bba6, - 0xe2bba7, - 0xe2bba8, - 0xe2bba9, - 0xe2bbaa, - 0xe2bbab, - 0xe2bbac, - 0xe2bbad, - 0xe2bbae, - 0xe2bbaf, - 0xe2bbb0, - 0xe2bbb1, - 0xe2bbb2, - 0xe2bbb3, - 0xe2bbb4, - 0xe2bbb5, - 0xe2bbb6, - 0xe2bbb7, - 0xe2bbb8, - 0xe2bbb9, - 0xe2bbba, - 0xe2bbbb, - 0xe2bbbc, - 0xe2bbbd, - 0xe2bbbe, - 0xe2bbbf, - 0xe2bc80, - 0xe2bc81, - 0xe2bc82, - 0xe2bc83, - 0xe2bc84, - 0xe2bc85, - 0xe2bc86, - 0xe2bc87, - 0xe2bc88, - 0xe2bc89, - 0xe2bc8a, - 0xe2bc8b, - 0xe2bc8c, - 0xe2bc8d, - 0xe2bc8e, - 0xe2bc8f, - 0xe2bc90, - 0xe2bc91, - 0xe2bc92, - 0xe2bc93, - 0xe2bc94, - 0xe2bc95, - 0xe2bc96, - 0xe2bc97, - 0xe2bc98, - 0xe2bc99, - 0xe2bc9a, - 0xe2bc9b, - 0xe2bc9c, - 0xe2bc9d, - 0xe2bc9e, - 0xe2bc9f, - 0xe2bca0, - 0xe2bca1, - 0xe2bca2, - 0xe2bca3, - 0xe2bca4, - 0xe2bca5, - 0xe2bca6, - 0xe2bca7, - 0xe2bca8, - 0xe2bca9, - 0xe2bcaa, - 0xe2bcab, - 0xe2bcac, - 0xe2bcad, - 0xe2bcae, - 0xe2bcaf, - 0xe2bcb0, - 0xe2bcb1, - 0xe2bcb2, - 0xe2bcb3, - 0xe2bcb4, - 0xe2bcb5, - 0xe2bcb6, - 0xe2bcb7, - 0xe2bcb8, - 0xe2bcb9, - 0xe2bcba, - 0xe2bcbb, - 0xe2bcbc, - 0xe2bcbd, - 0xe2bcbe, - 0xe2bcbf, - 0xe2bd80, - 0xe2bd81, - 0xe2bd82, - 0xe2bd83, - 0xe2bd84, - 0xe2bd85, - 0xe2bd86, - 0xe2bd87, - 0xe2bd88, - 0xe2bd89, - 0xe2bd8a, - 0xe2bd8b, - 0xe2bd8c, - 0xe2bd8d, - 0xe2bd8e, - 0xe2bd8f, - 0xe2bd90, - 0xe2bd91, - 0xe2bd92, - 0xe2bd93, - 0xe2bd94, - 0xe2bd95, - 0xe2bd96, - 0xe2bd97, - 0xe2bd98, - 0xe2bd99, - 0xe2bd9a, - 0xe2bd9b, - 0xe2bd9c, - 0xe2bd9d, - 0xe2bd9e, - 0xe2bd9f, - 0xe2bda0, - 0xe2bda1, - 0xe2bda2, - 0xe2bda3, - 0xe2bda4, - 0xe2bda5, - 0xe2bda6, - 0xe2bda7, - 0xe2bda8, - 0xe2bda9, - 0xe2bdaa, - 0xe2bdab, - 0xe2bdac, - 0xe2bdad, - 0xe2bdae, - 0xe2bdaf, - 0xe2bdb0, - 0xe2bdb1, - 0xe2bdb2, - 0xe2bdb3, - 0xe2bdb4, - 0xe2bdb5, - 0xe2bdb6, - 0xe2bdb7, - 0xe2bdb8, - 0xe2bdb9, - 0xe2bdba, - 0xe2bdbb, - 0xe2bdbc, - 0xe2bdbd, - 0xe2bdbe, - 0xe2bdbf, - 0xe2be80, - 0xe2be81, - 0xe2be82, - 0xe2be83, - 0xe2be84, - 0xe2be85, - 0xe2be86, - 0xe2be87, - 0xe2be88, - 0xe2be89, - 0xe2be8a, - 0xe2be8b, - 0xe2be8c, - 0xe2be8d, - 0xe2be8e, - 0xe2be8f, - 0xe2be90, - 0xe2be91, - 0xe2be92, - 0xe2be93, - 0xe2be94, - 0xe2be95, - 0xe2be96, - 0xe2be97, - 0xe2be98, - 0xe2be99, - 0xe2be9a, - 0xe2be9b, - 0xe2be9c, - 0xe2be9d, - 0xe2be9e, - 0xe2be9f, - 0xe2bea0, - 0xe2bea1, - 0xe2bea2, - 0xe2bea3, - 0xe2bea4, - 0xe2bea5, - 0xe2bea6, - 0xe2bea7, - 0xe2bea8, - 0xe2bea9, - 0xe2beaa, - 0xe2beab, - 0xe2beac, - 0xe2bead, - 0xe2beae, - 0xe2beaf, - 0xe2beb0, - 0xe2beb1, - 0xe2beb2, - 0xe2beb3, - 0xe2beb4, - 0xe2beb5, - 0xe2beb6, - 0xe2beb7, - 0xe2beb8, - 0xe2beb9, - 0xe2beba, - 0xe2bebb, - 0xe2bebc, - 0xe2bebd, - 0xe2bebe, - 0xe2bebf, - 0xe2bf80, - 0xe2bf81, - 0xe2bf82, - 0xe2bf83, - 0xe2bf84, - 0xe2bf85, - 0xe2bf86, - 0xe2bf87, - 0xe2bf88, - 0xe2bf89, - 0xe2bf8a, - 0xe2bf8b, - 0xe2bf8c, - 0xe2bf8d, - 0xe2bf8e, - 0xe2bf8f, - 0xe2bf90, - 0xe2bf91, - 0xe2bf92, - 0xe2bf93, - 0xe2bf94, - 0xe2bf95, - 0xe2bf96, - 0xe2bf97, - 0xe2bf98, - 0xe2bf99, - 0xe2bf9a, - 0xe2bf9b, - 0xe2bf9c, - 0xe2bf9d, - 0xe2bf9e, - 0xe2bf9f, - 0xe2bfa0, - 0xe2bfa1, - 0xe2bfa2, - 0xe2bfa3, - 0xe2bfa4, - 0xe2bfa5, - 0xe2bfa6, - 0xe2bfa7, - 0xe2bfa8, - 0xe2bfa9, - 0xe2bfaa, - 0xe2bfab, - 0xe2bfac, - 0xe2bfad, - 0xe2bfae, - 0xe2bfaf, - 0xe2bfb0, - 0xe2bfb1, - 0xe2bfb2, - 0xe2bfb3, - 0xe2bfb4, - 0xe2bfb5, - 0xe2bfb6, - 0xe2bfb7, - 0xe2bfb8, - 0xe2bfb9, - 0xe2bfba, - 0xe2bfbb, - 0xe2bfbc, - 0xe2bfbd, - 0xe2bfbe, - 0xe2bfbf, - 0xe38080, - 0xe38081, - 0xe38082, - 0xe38083, - 0xe38084, - 0xe38085, - 0xe38086, - 0xe38087, - 0xe38088, - 0xe38089, - 0xe3808a, - 0xe3808b, - 0xe3808c, - 0xe3808d, - 0xe3808e, - 0xe3808f, - 0xe38090, - 0xe38091, - 0xe38092, - 0xe38093, - 0xe38094, - 0xe38095, - 0xe38096, - 0xe38097, - 0xe38098, - 0xe38099, - 0xe3809a, - 0xe3809b, - 0xe3809c, - 0xe3809d, - 0xe3809e, - 0xe3809f, - 0xe380a0, - 0xe380a1, - 0xe380a2, - 0xe380a3, - 0xe380a4, - 0xe380a5, - 0xe380a6, - 0xe380a7, - 0xe380a8, - 0xe380a9, - 0xe380aa, - 0xe380ab, - 0xe380ac, - 0xe380ad, - 0xe380ae, - 0xe380af, - 0xe380b0, - 0xe380b1, - 0xe380b2, - 0xe380b3, - 0xe380b4, - 0xe380b5, - 0xe380b6, - 0xe380b7, - 0xe380b8, - 0xe380b9, - 0xe380ba, - 0xe380bb, - 0xe380bc, - 0xe380bd, - 0xe380be, - 0xe380bf, - 0xe38180, - 0xe38181, - 0xe38182, - 0xe38183, - 0xe38184, - 0xe38185, - 0xe38186, - 0xe38187, - 0xe38188, - 0xe38189, - 0xe3818a, - 0xe3818b, - 0xe3818c, - 0xe3818d, - 0xe3818e, - 0xe3818f, - 0xe38190, - 0xe38191, - 0xe38192, - 0xe38193, - 0xe38194, - 0xe38195, - 0xe38196, - 0xe38197, - 0xe38198, - 0xe38199, - 0xe3819a, - 0xe3819b, - 0xe3819c, - 0xe3819d, - 0xe3819e, - 0xe3819f, - 0xe381a0, - 0xe381a1, - 0xe381a2, - 0xe381a3, - 0xe381a4, - 0xe381a5, - 0xe381a6, - 0xe381a7, - 0xe381a8, - 0xe381a9, - 0xe381aa, - 0xe381ab, - 0xe381ac, - 0xe381ad, - 0xe381ae, - 0xe381af, - 0xe381b0, - 0xe381b1, - 0xe381b2, - 0xe381b3, - 0xe381b4, - 0xe381b5, - 0xe381b6, - 0xe381b7, - 0xe381b8, - 0xe381b9, - 0xe381ba, - 0xe381bb, - 0xe381bc, - 0xe381bd, - 0xe381be, - 0xe381bf, - 0xe38280, - 0xe38281, - 0xe38282, - 0xe38283, - 0xe38284, - 0xe38285, - 0xe38286, - 0xe38287, - 0xe38288, - 0xe38289, - 0xe3828a, - 0xe3828b, - 0xe3828c, - 0xe3828d, - 0xe3828e, - 0xe3828f, - 0xe38290, - 0xe38291, - 0xe38292, - 0xe38293, - 0xe38294, - 0xe38295, - 0xe38296, - 0xe38297, - 0xe38298, - 0xe38299, - 0xe3829a, - 0xe3829b, - 0xe3829c, - 0xe3829d, - 0xe3829e, - 0xe3829f, - 0xe382a0, - 0xe382a1, - 0xe382a2, - 0xe382a3, - 0xe382a4, - 0xe382a5, - 0xe382a6, - 0xe382a7, - 0xe382a8, - 0xe382a9, - 0xe382aa, - 0xe382ab, - 0xe382ac, - 0xe382ad, - 0xe382ae, - 0xe382af, - 0xe382b0, - 0xe382b1, - 0xe382b2, - 0xe382b3, - 0xe382b4, - 0xe382b5, - 0xe382b6, - 0xe382b7, - 0xe382b8, - 0xe382b9, - 0xe382ba, - 0xe382bb, - 0xe382bc, - 0xe382bd, - 0xe382be, - 0xe382bf, - 0xe38380, - 0xe38381, - 0xe38382, - 0xe38383, - 0xe38384, - 0xe38385, - 0xe38386, - 0xe38387, - 0xe38388, - 0xe38389, - 0xe3838a, - 0xe3838b, - 0xe3838c, - 0xe3838d, - 0xe3838e, - 0xe3838f, - 0xe38390, - 0xe38391, - 0xe38392, - 0xe38393, - 0xe38394, - 0xe38395, - 0xe38396, - 0xe38397, - 0xe38398, - 0xe38399, - 0xe3839a, - 0xe3839b, - 0xe3839c, - 0xe3839d, - 0xe3839e, - 0xe3839f, - 0xe383a0, - 0xe383a1, - 0xe383a2, - 0xe383a3, - 0xe383a4, - 0xe383a5, - 0xe383a6, - 0xe383a7, - 0xe383a8, - 0xe383a9, - 0xe383aa, - 0xe383ab, - 0xe383ac, - 0xe383ad, - 0xe383ae, - 0xe383af, - 0xe383b0, - 0xe383b1, - 0xe383b2, - 0xe383b3, - 0xe383b4, - 0xe383b5, - 0xe383b6, - 0xe383b7, - 0xe383b8, - 0xe383b9, - 0xe383ba, - 0xe383bb, - 0xe383bc, - 0xe383bd, - 0xe383be, - 0xe383bf, - 0xe38480, - 0xe38481, - 0xe38482, - 0xe38483, - 0xe38484, - 0xe38485, - 0xe38486, - 0xe38487, - 0xe38488, - 0xe38489, - 0xe3848a, - 0xe3848b, - 0xe3848c, - 0xe3848d, - 0xe3848e, - 0xe3848f, - 0xe38490, - 0xe38491, - 0xe38492, - 0xe38493, - 0xe38494, - 0xe38495, - 0xe38496, - 0xe38497, - 0xe38498, - 0xe38499, - 0xe3849a, - 0xe3849b, - 0xe3849c, - 0xe3849d, - 0xe3849e, - 0xe3849f, - 0xe384a0, - 0xe384a1, - 0xe384a2, - 0xe384a3, - 0xe384a4, - 0xe384a5, - 0xe384a6, - 0xe384a7, - 0xe384a8, - 0xe384a9, - 0xe384aa, - 0xe384ab, - 0xe384ac, - 0xe384ad, - 0xe384ae, - 0xe384af, - 0xe384b0, - 0xe384b1, - 0xe384b2, - 0xe384b3, - 0xe384b4, - 0xe384b5, - 0xe384b6, - 0xe384b7, - 0xe384b8, - 0xe384b9, - 0xe384ba, - 0xe384bb, - 0xe384bc, - 0xe384bd, - 0xe384be, - 0xe384bf, - 0xe38580, - 0xe38581, - 0xe38582, - 0xe38583, - 0xe38584, - 0xe38585, - 0xe38586, - 0xe38587, - 0xe38588, - 0xe38589, - 0xe3858a, - 0xe3858b, - 0xe3858c, - 0xe3858d, - 0xe3858e, - 0xe3858f, - 0xe38590, - 0xe38591, - 0xe38592, - 0xe38593, - 0xe38594, - 0xe38595, - 0xe38596, - 0xe38597, - 0xe38598, - 0xe38599, - 0xe3859a, - 0xe3859b, - 0xe3859c, - 0xe3859d, - 0xe3859e, - 0xe3859f, - 0xe385a0, - 0xe385a1, - 0xe385a2, - 0xe385a3, - 0xe385a4, - 0xe385a5, - 0xe385a6, - 0xe385a7, - 0xe385a8, - 0xe385a9, - 0xe385aa, - 0xe385ab, - 0xe385ac, - 0xe385ad, - 0xe385ae, - 0xe385af, - 0xe385b0, - 0xe385b1, - 0xe385b2, - 0xe385b3, - 0xe385b4, - 0xe385b5, - 0xe385b6, - 0xe385b7, - 0xe385b8, - 0xe385b9, - 0xe385ba, - 0xe385bb, - 0xe385bc, - 0xe385bd, - 0xe385be, - 0xe385bf, - 0xe38680, - 0xe38681, - 0xe38682, - 0xe38683, - 0xe38684, - 0xe38685, - 0xe38686, - 0xe38687, - 0xe38688, - 0xe38689, - 0xe3868a, - 0xe3868b, - 0xe3868c, - 0xe3868d, - 0xe3868e, - 0xe3868f, - 0xe38690, - 0xe38691, - 0xe38692, - 0xe38693, - 0xe38694, - 0xe38695, - 0xe38696, - 0xe38697, - 0xe38698, - 0xe38699, - 0xe3869a, - 0xe3869b, - 0xe3869c, - 0xe3869d, - 0xe3869e, - 0xe3869f, - 0xe386a0, - 0xe386a1, - 0xe386a2, - 0xe386a3, - 0xe386a4, - 0xe386a5, - 0xe386a6, - 0xe386a7, - 0xe386a8, - 0xe386a9, - 0xe386aa, - 0xe386ab, - 0xe386ac, - 0xe386ad, - 0xe386ae, - 0xe386af, - 0xe386b0, - 0xe386b1, - 0xe386b2, - 0xe386b3, - 0xe386b4, - 0xe386b5, - 0xe386b6, - 0xe386b7, - 0xe386b8, - 0xe386b9, - 0xe386ba, - 0xe386bb, - 0xe386bc, - 0xe386bd, - 0xe386be, - 0xe386bf, - 0xe38780, - 0xe38781, - 0xe38782, - 0xe38783, - 0xe38784, - 0xe38785, - 0xe38786, - 0xe38787, - 0xe38788, - 0xe38789, - 0xe3878a, - 0xe3878b, - 0xe3878c, - 0xe3878d, - 0xe3878e, - 0xe3878f, - 0xe38790, - 0xe38791, - 0xe38792, - 0xe38793, - 0xe38794, - 0xe38795, - 0xe38796, - 0xe38797, - 0xe38798, - 0xe38799, - 0xe3879a, - 0xe3879b, - 0xe3879c, - 0xe3879d, - 0xe3879e, - 0xe3879f, - 0xe387a0, - 0xe387a1, - 0xe387a2, - 0xe387a3, - 0xe387a4, - 0xe387a5, - 0xe387a6, - 0xe387a7, - 0xe387a8, - 0xe387a9, - 0xe387aa, - 0xe387ab, - 0xe387ac, - 0xe387ad, - 0xe387ae, - 0xe387af, - 0xe387b0, - 0xe387b1, - 0xe387b2, - 0xe387b3, - 0xe387b4, - 0xe387b5, - 0xe387b6, - 0xe387b7, - 0xe387b8, - 0xe387b9, - 0xe387ba, - 0xe387bb, - 0xe387bc, - 0xe387bd, - 0xe387be, - 0xe387bf, - 0xe38880, - 0xe38881, - 0xe38882, - 0xe38883, - 0xe38884, - 0xe38885, - 0xe38886, - 0xe38887, - 0xe38888, - 0xe38889, - 0xe3888a, - 0xe3888b, - 0xe3888c, - 0xe3888d, - 0xe3888e, - 0xe3888f, - 0xe38890, - 0xe38891, - 0xe38892, - 0xe38893, - 0xe38894, - 0xe38895, - 0xe38896, - 0xe38897, - 0xe38898, - 0xe38899, - 0xe3889a, - 0xe3889b, - 0xe3889c, - 0xe3889d, - 0xe3889e, - 0xe3889f, - 0xe388a0, - 0xe388a1, - 0xe388a2, - 0xe388a3, - 0xe388a4, - 0xe388a5, - 0xe388a6, - 0xe388a7, - 0xe388a8, - 0xe388a9, - 0xe388aa, - 0xe388ab, - 0xe388ac, - 0xe388ad, - 0xe388ae, - 0xe388af, - 0xe388b0, - 0xe388b1, - 0xe388b2, - 0xe388b3, - 0xe388b4, - 0xe388b5, - 0xe388b6, - 0xe388b7, - 0xe388b8, - 0xe388b9, - 0xe388ba, - 0xe388bb, - 0xe388bc, - 0xe388bd, - 0xe388be, - 0xe388bf, - 0xe38980, - 0xe38981, - 0xe38982, - 0xe38983, - 0xe38984, - 0xe38985, - 0xe38986, - 0xe38987, - 0xe38988, - 0xe38989, - 0xe3898a, - 0xe3898b, - 0xe3898c, - 0xe3898d, - 0xe3898e, - 0xe3898f, - 0xe38990, - 0xe38991, - 0xe38992, - 0xe38993, - 0xe38994, - 0xe38995, - 0xe38996, - 0xe38997, - 0xe38998, - 0xe38999, - 0xe3899a, - 0xe3899b, - 0xe3899c, - 0xe3899d, - 0xe3899e, - 0xe3899f, - 0xe389a0, - 0xe389a1, - 0xe389a2, - 0xe389a3, - 0xe389a4, - 0xe389a5, - 0xe389a6, - 0xe389a7, - 0xe389a8, - 0xe389a9, - 0xe389aa, - 0xe389ab, - 0xe389ac, - 0xe389ad, - 0xe389ae, - 0xe389af, - 0xe389b0, - 0xe389b1, - 0xe389b2, - 0xe389b3, - 0xe389b4, - 0xe389b5, - 0xe389b6, - 0xe389b7, - 0xe389b8, - 0xe389b9, - 0xe389ba, - 0xe389bb, - 0xe389bc, - 0xe389bd, - 0xe389be, - 0xe389bf, - 0xe38a80, - 0xe38a81, - 0xe38a82, - 0xe38a83, - 0xe38a84, - 0xe38a85, - 0xe38a86, - 0xe38a87, - 0xe38a88, - 0xe38a89, - 0xe38a8a, - 0xe38a8b, - 0xe38a8c, - 0xe38a8d, - 0xe38a8e, - 0xe38a8f, - 0xe38a90, - 0xe38a91, - 0xe38a92, - 0xe38a93, - 0xe38a94, - 0xe38a95, - 0xe38a96, - 0xe38a97, - 0xe38a98, - 0xe38a99, - 0xe38a9a, - 0xe38a9b, - 0xe38a9c, - 0xe38a9d, - 0xe38a9e, - 0xe38a9f, - 0xe38aa0, - 0xe38aa1, - 0xe38aa2, - 0xe38aa3, - 0xe38aa4, - 0xe38aa5, - 0xe38aa6, - 0xe38aa7, - 0xe38aa8, - 0xe38aa9, - 0xe38aaa, - 0xe38aab, - 0xe38aac, - 0xe38aad, - 0xe38aae, - 0xe38aaf, - 0xe38ab0, - 0xe38ab1, - 0xe38ab2, - 0xe38ab3, - 0xe38ab4, - 0xe38ab5, - 0xe38ab6, - 0xe38ab7, - 0xe38ab8, - 0xe38ab9, - 0xe38aba, - 0xe38abb, - 0xe38abc, - 0xe38abd, - 0xe38abe, - 0xe38abf, - 0xe38b80, - 0xe38b81, - 0xe38b82, - 0xe38b83, - 0xe38b84, - 0xe38b85, - 0xe38b86, - 0xe38b87, - 0xe38b88, - 0xe38b89, - 0xe38b8a, - 0xe38b8b, - 0xe38b8c, - 0xe38b8d, - 0xe38b8e, - 0xe38b8f, - 0xe38b90, - 0xe38b91, - 0xe38b92, - 0xe38b93, - 0xe38b94, - 0xe38b95, - 0xe38b96, - 0xe38b97, - 0xe38b98, - 0xe38b99, - 0xe38b9a, - 0xe38b9b, - 0xe38b9c, - 0xe38b9d, - 0xe38b9e, - 0xe38b9f, - 0xe38ba0, - 0xe38ba1, - 0xe38ba2, - 0xe38ba3, - 0xe38ba4, - 0xe38ba5, - 0xe38ba6, - 0xe38ba7, - 0xe38ba8, - 0xe38ba9, - 0xe38baa, - 0xe38bab, - 0xe38bac, - 0xe38bad, - 0xe38bae, - 0xe38baf, - 0xe38bb0, - 0xe38bb1, - 0xe38bb2, - 0xe38bb3, - 0xe38bb4, - 0xe38bb5, - 0xe38bb6, - 0xe38bb7, - 0xe38bb8, - 0xe38bb9, - 0xe38bba, - 0xe38bbb, - 0xe38bbc, - 0xe38bbd, - 0xe38bbe, - 0xe38bbf, - 0xe38c80, - 0xe38c81, - 0xe38c82, - 0xe38c83, - 0xe38c84, - 0xe38c85, - 0xe38c86, - 0xe38c87, - 0xe38c88, - 0xe38c89, - 0xe38c8a, - 0xe38c8b, - 0xe38c8c, - 0xe38c8d, - 0xe38c8e, - 0xe38c8f, - 0xe38c90, - 0xe38c91, - 0xe38c92, - 0xe38c93, - 0xe38c94, - 0xe38c95, - 0xe38c96, - 0xe38c97, - 0xe38c98, - 0xe38c99, - 0xe38c9a, - 0xe38c9b, - 0xe38c9c, - 0xe38c9d, - 0xe38c9e, - 0xe38c9f, - 0xe38ca0, - 0xe38ca1, - 0xe38ca2, - 0xe38ca3, - 0xe38ca4, - 0xe38ca5, - 0xe38ca6, - 0xe38ca7, - 0xe38ca8, - 0xe38ca9, - 0xe38caa, - 0xe38cab, - 0xe38cac, - 0xe38cad, - 0xe38cae, - 0xe38caf, - 0xe38cb0, - 0xe38cb1, - 0xe38cb2, - 0xe38cb3, - 0xe38cb4, - 0xe38cb5, - 0xe38cb6, - 0xe38cb7, - 0xe38cb8, - 0xe38cb9, - 0xe38cba, - 0xe38cbb, - 0xe38cbc, - 0xe38cbd, - 0xe38cbe, - 0xe38cbf, - 0xe38d80, - 0xe38d81, - 0xe38d82, - 0xe38d83, - 0xe38d84, - 0xe38d85, - 0xe38d86, - 0xe38d87, - 0xe38d88, - 0xe38d89, - 0xe38d8a, - 0xe38d8b, - 0xe38d8c, - 0xe38d8d, - 0xe38d8e, - 0xe38d8f, - 0xe38d90, - 0xe38d91, - 0xe38d92, - 0xe38d93, - 0xe38d94, - 0xe38d95, - 0xe38d96, - 0xe38d97, - 0xe38d98, - 0xe38d99, - 0xe38d9a, - 0xe38d9b, - 0xe38d9c, - 0xe38d9d, - 0xe38d9e, - 0xe38d9f, - 0xe38da0, - 0xe38da1, - 0xe38da2, - 0xe38da3, - 0xe38da4, - 0xe38da5, - 0xe38da6, - 0xe38da7, - 0xe38da8, - 0xe38da9, - 0xe38daa, - 0xe38dab, - 0xe38dac, - 0xe38dad, - 0xe38dae, - 0xe38daf, - 0xe38db0, - 0xe38db1, - 0xe38db2, - 0xe38db3, - 0xe38db4, - 0xe38db5, - 0xe38db6, - 0xe38db7, - 0xe38db8, - 0xe38db9, - 0xe38dba, - 0xe38dbb, - 0xe38dbc, - 0xe38dbd, - 0xe38dbe, - 0xe38dbf, - 0xe38e80, - 0xe38e81, - 0xe38e82, - 0xe38e83, - 0xe38e84, - 0xe38e85, - 0xe38e86, - 0xe38e87, - 0xe38e88, - 0xe38e89, - 0xe38e8a, - 0xe38e8b, - 0xe38e8c, - 0xe38e8d, - 0xe38e8e, - 0xe38e8f, - 0xe38e90, - 0xe38e91, - 0xe38e92, - 0xe38e93, - 0xe38e94, - 0xe38e95, - 0xe38e96, - 0xe38e97, - 0xe38e98, - 0xe38e99, - 0xe38e9a, - 0xe38e9b, - 0xe38e9c, - 0xe38e9d, - 0xe38e9e, - 0xe38e9f, - 0xe38ea0, - 0xe38ea1, - 0xe38ea2, - 0xe38ea3, - 0xe38ea4, - 0xe38ea5, - 0xe38ea6, - 0xe38ea7, - 0xe38ea8, - 0xe38ea9, - 0xe38eaa, - 0xe38eab, - 0xe38eac, - 0xe38ead, - 0xe38eae, - 0xe38eaf, - 0xe38eb0, - 0xe38eb1, - 0xe38eb2, - 0xe38eb3, - 0xe38eb4, - 0xe38eb5, - 0xe38eb6, - 0xe38eb7, - 0xe38eb8, - 0xe38eb9, - 0xe38eba, - 0xe38ebb, - 0xe38ebc, - 0xe38ebd, - 0xe38ebe, - 0xe38ebf, - 0xe38f80, - 0xe38f81, - 0xe38f82, - 0xe38f83, - 0xe38f84, - 0xe38f85, - 0xe38f86, - 0xe38f87, - 0xe38f88, - 0xe38f89, - 0xe38f8a, - 0xe38f8b, - 0xe38f8c, - 0xe38f8d, - 0xe38f8e, - 0xe38f8f, - 0xe38f90, - 0xe38f91, - 0xe38f92, - 0xe38f93, - 0xe38f94, - 0xe38f95, - 0xe38f96, - 0xe38f97, - 0xe38f98, - 0xe38f99, - 0xe38f9a, - 0xe38f9b, - 0xe38f9c, - 0xe38f9d, - 0xe38f9e, - 0xe38f9f, - 0xe38fa0, - 0xe38fa1, - 0xe38fa2, - 0xe38fa3, - 0xe38fa4, - 0xe38fa5, - 0xe38fa6, - 0xe38fa7, - 0xe38fa8, - 0xe38fa9, - 0xe38faa, - 0xe38fab, - 0xe38fac, - 0xe38fad, - 0xe38fae, - 0xe38faf, - 0xe38fb0, - 0xe38fb1, - 0xe38fb2, - 0xe38fb3, - 0xe38fb4, - 0xe38fb5, - 0xe38fb6, - 0xe38fb7, - 0xe38fb8, - 0xe38fb9, - 0xe38fba, - 0xe38fbb, - 0xe38fbc, - 0xe38fbd, - 0xe38fbe, - 0xe38fbf, - 0xe39080, - 0xe39081, - 0xe39082, - 0xe39083, - 0xe39084, - 0xe39085, - 0xe39086, - 0xe39087, - 0xe39088, - 0xe39089, - 0xe3908a, - 0xe3908b, - 0xe3908c, - 0xe3908d, - 0xe3908e, - 0xe3908f, - 0xe39090, - 0xe39091, - 0xe39092, - 0xe39093, - 0xe39094, - 0xe39095, - 0xe39096, - 0xe39097, - 0xe39098, - 0xe39099, - 0xe3909a, - 0xe3909b, - 0xe3909c, - 0xe3909d, - 0xe3909e, - 0xe3909f, - 0xe390a0, - 0xe390a1, - 0xe390a2, - 0xe390a3, - 0xe390a4, - 0xe390a5, - 0xe390a6, - 0xe390a7, - 0xe390a8, - 0xe390a9, - 0xe390aa, - 0xe390ab, - 0xe390ac, - 0xe390ad, - 0xe390ae, - 0xe390af, - 0xe390b0, - 0xe390b1, - 0xe390b2, - 0xe390b3, - 0xe390b4, - 0xe390b5, - 0xe390b6, - 0xe390b7, - 0xe390b8, - 0xe390b9, - 0xe390ba, - 0xe390bb, - 0xe390bc, - 0xe390bd, - 0xe390be, - 0xe390bf, - 0xe39180, - 0xe39181, - 0xe39182, - 0xe39183, - 0xe39184, - 0xe39185, - 0xe39186, - 0xe39187, - 0xe39188, - 0xe39189, - 0xe3918a, - 0xe3918b, - 0xe3918c, - 0xe3918d, - 0xe3918e, - 0xe3918f, - 0xe39190, - 0xe39191, - 0xe39192, - 0xe39193, - 0xe39194, - 0xe39195, - 0xe39196, - 0xe39197, - 0xe39198, - 0xe39199, - 0xe3919a, - 0xe3919b, - 0xe3919c, - 0xe3919d, - 0xe3919e, - 0xe3919f, - 0xe391a0, - 0xe391a1, - 0xe391a2, - 0xe391a3, - 0xe391a4, - 0xe391a5, - 0xe391a6, - 0xe391a7, - 0xe391a8, - 0xe391a9, - 0xe391aa, - 0xe391ab, - 0xe391ac, - 0xe391ad, - 0xe391ae, - 0xe391af, - 0xe391b0, - 0xe391b1, - 0xe391b2, - 0xe391b3, - 0xe391b4, - 0xe391b5, - 0xe391b6, - 0xe391b7, - 0xe391b8, - 0xe391b9, - 0xe391ba, - 0xe391bb, - 0xe391bc, - 0xe391bd, - 0xe391be, - 0xe391bf, - 0xe39280, - 0xe39281, - 0xe39282, - 0xe39283, - 0xe39284, - 0xe39285, - 0xe39286, - 0xe39287, - 0xe39288, - 0xe39289, - 0xe3928a, - 0xe3928b, - 0xe3928c, - 0xe3928d, - 0xe3928e, - 0xe3928f, - 0xe39290, - 0xe39291, - 0xe39292, - 0xe39293, - 0xe39294, - 0xe39295, - 0xe39296, - 0xe39297, - 0xe39298, - 0xe39299, - 0xe3929a, - 0xe3929b, - 0xe3929c, - 0xe3929d, - 0xe3929e, - 0xe3929f, - 0xe392a0, - 0xe392a1, - 0xe392a2, - 0xe392a3, - 0xe392a4, - 0xe392a5, - 0xe392a6, - 0xe392a7, - 0xe392a8, - 0xe392a9, - 0xe392aa, - 0xe392ab, - 0xe392ac, - 0xe392ad, - 0xe392ae, - 0xe392af, - 0xe392b0, - 0xe392b1, - 0xe392b2, - 0xe392b3, - 0xe392b4, - 0xe392b5, - 0xe392b6, - 0xe392b7, - 0xe392b8, - 0xe392b9, - 0xe392ba, - 0xe392bb, - 0xe392bc, - 0xe392bd, - 0xe392be, - 0xe392bf, - 0xe39380, - 0xe39381, - 0xe39382, - 0xe39383, - 0xe39384, - 0xe39385, - 0xe39386, - 0xe39387, - 0xe39388, - 0xe39389, - 0xe3938a, - 0xe3938b, - 0xe3938c, - 0xe3938d, - 0xe3938e, - 0xe3938f, - 0xe39390, - 0xe39391, - 0xe39392, - 0xe39393, - 0xe39394, - 0xe39395, - 0xe39396, - 0xe39397, - 0xe39398, - 0xe39399, - 0xe3939a, - 0xe3939b, - 0xe3939c, - 0xe3939d, - 0xe3939e, - 0xe3939f, - 0xe393a0, - 0xe393a1, - 0xe393a2, - 0xe393a3, - 0xe393a4, - 0xe393a5, - 0xe393a6, - 0xe393a7, - 0xe393a8, - 0xe393a9, - 0xe393aa, - 0xe393ab, - 0xe393ac, - 0xe393ad, - 0xe393ae, - 0xe393af, - 0xe393b0, - 0xe393b1, - 0xe393b2, - 0xe393b3, - 0xe393b4, - 0xe393b5, - 0xe393b6, - 0xe393b7, - 0xe393b8, - 0xe393b9, - 0xe393ba, - 0xe393bb, - 0xe393bc, - 0xe393bd, - 0xe393be, - 0xe393bf, - 0xe39480, - 0xe39481, - 0xe39482, - 0xe39483, - 0xe39484, - 0xe39485, - 0xe39486, - 0xe39487, - 0xe39488, - 0xe39489, - 0xe3948a, - 0xe3948b, - 0xe3948c, - 0xe3948d, - 0xe3948e, - 0xe3948f, - 0xe39490, - 0xe39491, - 0xe39492, - 0xe39493, - 0xe39494, - 0xe39495, - 0xe39496, - 0xe39497, - 0xe39498, - 0xe39499, - 0xe3949a, - 0xe3949b, - 0xe3949c, - 0xe3949d, - 0xe3949e, - 0xe3949f, - 0xe394a0, - 0xe394a1, - 0xe394a2, - 0xe394a3, - 0xe394a4, - 0xe394a5, - 0xe394a6, - 0xe394a7, - 0xe394a8, - 0xe394a9, - 0xe394aa, - 0xe394ab, - 0xe394ac, - 0xe394ad, - 0xe394ae, - 0xe394af, - 0xe394b0, - 0xe394b1, - 0xe394b2, - 0xe394b3, - 0xe394b4, - 0xe394b5, - 0xe394b6, - 0xe394b7, - 0xe394b8, - 0xe394b9, - 0xe394ba, - 0xe394bb, - 0xe394bc, - 0xe394bd, - 0xe394be, - 0xe394bf, - 0xe39580, - 0xe39581, - 0xe39582, - 0xe39583, - 0xe39584, - 0xe39585, - 0xe39586, - 0xe39587, - 0xe39588, - 0xe39589, - 0xe3958a, - 0xe3958b, - 0xe3958c, - 0xe3958d, - 0xe3958e, - 0xe3958f, - 0xe39590, - 0xe39591, - 0xe39592, - 0xe39593, - 0xe39594, - 0xe39595, - 0xe39596, - 0xe39597, - 0xe39598, - 0xe39599, - 0xe3959a, - 0xe3959b, - 0xe3959c, - 0xe3959d, - 0xe3959e, - 0xe3959f, - 0xe395a0, - 0xe395a1, - 0xe395a2, - 0xe395a3, - 0xe395a4, - 0xe395a5, - 0xe395a6, - 0xe395a7, - 0xe395a8, - 0xe395a9, - 0xe395aa, - 0xe395ab, - 0xe395ac, - 0xe395ad, - 0xe395ae, - 0xe395af, - 0xe395b0, - 0xe395b1, - 0xe395b2, - 0xe395b3, - 0xe395b4, - 0xe395b5, - 0xe395b6, - 0xe395b7, - 0xe395b8, - 0xe395b9, - 0xe395ba, - 0xe395bb, - 0xe395bc, - 0xe395bd, - 0xe395be, - 0xe395bf, - 0xe39680, - 0xe39681, - 0xe39682, - 0xe39683, - 0xe39684, - 0xe39685, - 0xe39686, - 0xe39687, - 0xe39688, - 0xe39689, - 0xe3968a, - 0xe3968b, - 0xe3968c, - 0xe3968d, - 0xe3968e, - 0xe3968f, - 0xe39690, - 0xe39691, - 0xe39692, - 0xe39693, - 0xe39694, - 0xe39695, - 0xe39696, - 0xe39697, - 0xe39698, - 0xe39699, - 0xe3969a, - 0xe3969b, - 0xe3969c, - 0xe3969d, - 0xe3969e, - 0xe3969f, - 0xe396a0, - 0xe396a1, - 0xe396a2, - 0xe396a3, - 0xe396a4, - 0xe396a5, - 0xe396a6, - 0xe396a7, - 0xe396a8, - 0xe396a9, - 0xe396aa, - 0xe396ab, - 0xe396ac, - 0xe396ad, - 0xe396ae, - 0xe396af, - 0xe396b0, - 0xe396b1, - 0xe396b2, - 0xe396b3, - 0xe396b4, - 0xe396b5, - 0xe396b6, - 0xe396b7, - 0xe396b8, - 0xe396b9, - 0xe396ba, - 0xe396bb, - 0xe396bc, - 0xe396bd, - 0xe396be, - 0xe396bf, - 0xe39780, - 0xe39781, - 0xe39782, - 0xe39783, - 0xe39784, - 0xe39785, - 0xe39786, - 0xe39787, - 0xe39788, - 0xe39789, - 0xe3978a, - 0xe3978b, - 0xe3978c, - 0xe3978d, - 0xe3978e, - 0xe3978f, - 0xe39790, - 0xe39791, - 0xe39792, - 0xe39793, - 0xe39794, - 0xe39795, - 0xe39796, - 0xe39797, - 0xe39798, - 0xe39799, - 0xe3979a, - 0xe3979b, - 0xe3979c, - 0xe3979d, - 0xe3979e, - 0xe3979f, - 0xe397a0, - 0xe397a1, - 0xe397a2, - 0xe397a3, - 0xe397a4, - 0xe397a5, - 0xe397a6, - 0xe397a7, - 0xe397a8, - 0xe397a9, - 0xe397aa, - 0xe397ab, - 0xe397ac, - 0xe397ad, - 0xe397ae, - 0xe397af, - 0xe397b0, - 0xe397b1, - 0xe397b2, - 0xe397b3, - 0xe397b4, - 0xe397b5, - 0xe397b6, - 0xe397b7, - 0xe397b8, - 0xe397b9, - 0xe397ba, - 0xe397bb, - 0xe397bc, - 0xe397bd, - 0xe397be, - 0xe397bf, - 0xe39880, - 0xe39881, - 0xe39882, - 0xe39883, - 0xe39884, - 0xe39885, - 0xe39886, - 0xe39887, - 0xe39888, - 0xe39889, - 0xe3988a, - 0xe3988b, - 0xe3988c, - 0xe3988d, - 0xe3988e, - 0xe3988f, - 0xe39890, - 0xe39891, - 0xe39892, - 0xe39893, - 0xe39894, - 0xe39895, - 0xe39896, - 0xe39897, - 0xe39898, - 0xe39899, - 0xe3989a, - 0xe3989b, - 0xe3989c, - 0xe3989d, - 0xe3989e, - 0xe3989f, - 0xe398a0, - 0xe398a1, - 0xe398a2, - 0xe398a3, - 0xe398a4, - 0xe398a5, - 0xe398a6, - 0xe398a7, - 0xe398a8, - 0xe398a9, - 0xe398aa, - 0xe398ab, - 0xe398ac, - 0xe398ad, - 0xe398ae, - 0xe398af, - 0xe398b0, - 0xe398b1, - 0xe398b2, - 0xe398b3, - 0xe398b4, - 0xe398b5, - 0xe398b6, - 0xe398b7, - 0xe398b8, - 0xe398b9, - 0xe398ba, - 0xe398bb, - 0xe398bc, - 0xe398bd, - 0xe398be, - 0xe398bf, - 0xe39980, - 0xe39981, - 0xe39982, - 0xe39983, - 0xe39984, - 0xe39985, - 0xe39986, - 0xe39987, - 0xe39988, - 0xe39989, - 0xe3998a, - 0xe3998b, - 0xe3998c, - 0xe3998d, - 0xe3998e, - 0xe3998f, - 0xe39990, - 0xe39991, - 0xe39992, - 0xe39993, - 0xe39994, - 0xe39995, - 0xe39996, - 0xe39997, - 0xe39998, - 0xe39999, - 0xe3999a, - 0xe3999b, - 0xe3999c, - 0xe3999d, - 0xe3999e, - 0xe3999f, - 0xe399a0, - 0xe399a1, - 0xe399a2, - 0xe399a3, - 0xe399a4, - 0xe399a5, - 0xe399a6, - 0xe399a7, - 0xe399a8, - 0xe399a9, - 0xe399aa, - 0xe399ab, - 0xe399ac, - 0xe399ad, - 0xe399ae, - 0xe399af, - 0xe399b0, - 0xe399b1, - 0xe399b2, - 0xe399b3, - 0xe399b4, - 0xe399b5, - 0xe399b6, - 0xe399b7, - 0xe399b8, - 0xe399b9, - 0xe399ba, - 0xe399bb, - 0xe399bc, - 0xe399bd, - 0xe399be, - 0xe399bf, - 0xe39a80, - 0xe39a81, - 0xe39a82, - 0xe39a83, - 0xe39a84, - 0xe39a85, - 0xe39a86, - 0xe39a87, - 0xe39a88, - 0xe39a89, - 0xe39a8a, - 0xe39a8b, - 0xe39a8c, - 0xe39a8d, - 0xe39a8e, - 0xe39a8f, - 0xe39a90, - 0xe39a91, - 0xe39a92, - 0xe39a93, - 0xe39a94, - 0xe39a95, - 0xe39a96, - 0xe39a97, - 0xe39a98, - 0xe39a99, - 0xe39a9a, - 0xe39a9b, - 0xe39a9c, - 0xe39a9d, - 0xe39a9e, - 0xe39a9f, - 0xe39aa0, - 0xe39aa1, - 0xe39aa2, - 0xe39aa3, - 0xe39aa4, - 0xe39aa5, - 0xe39aa6, - 0xe39aa7, - 0xe39aa8, - 0xe39aa9, - 0xe39aaa, - 0xe39aab, - 0xe39aac, - 0xe39aad, - 0xe39aae, - 0xe39aaf, - 0xe39ab0, - 0xe39ab1, - 0xe39ab2, - 0xe39ab3, - 0xe39ab4, - 0xe39ab5, - 0xe39ab6, - 0xe39ab7, - 0xe39ab8, - 0xe39ab9, - 0xe39aba, - 0xe39abb, - 0xe39abc, - 0xe39abd, - 0xe39abe, - 0xe39abf, - 0xe39b80, - 0xe39b81, - 0xe39b82, - 0xe39b83, - 0xe39b84, - 0xe39b85, - 0xe39b86, - 0xe39b87, - 0xe39b88, - 0xe39b89, - 0xe39b8a, - 0xe39b8b, - 0xe39b8c, - 0xe39b8d, - 0xe39b8e, - 0xe39b8f, - 0xe39b90, - 0xe39b91, - 0xe39b92, - 0xe39b93, - 0xe39b94, - 0xe39b95, - 0xe39b96, - 0xe39b97, - 0xe39b98, - 0xe39b99, - 0xe39b9a, - 0xe39b9b, - 0xe39b9c, - 0xe39b9d, - 0xe39b9e, - 0xe39b9f, - 0xe39ba0, - 0xe39ba1, - 0xe39ba2, - 0xe39ba3, - 0xe39ba4, - 0xe39ba5, - 0xe39ba6, - 0xe39ba7, - 0xe39ba8, - 0xe39ba9, - 0xe39baa, - 0xe39bab, - 0xe39bac, - 0xe39bad, - 0xe39bae, - 0xe39baf, - 0xe39bb0, - 0xe39bb1, - 0xe39bb2, - 0xe39bb3, - 0xe39bb4, - 0xe39bb5, - 0xe39bb6, - 0xe39bb7, - 0xe39bb8, - 0xe39bb9, - 0xe39bba, - 0xe39bbb, - 0xe39bbc, - 0xe39bbd, - 0xe39bbe, - 0xe39bbf, - 0xe39c80, - 0xe39c81, - 0xe39c82, - 0xe39c83, - 0xe39c84, - 0xe39c85, - 0xe39c86, - 0xe39c87, - 0xe39c88, - 0xe39c89, - 0xe39c8a, - 0xe39c8b, - 0xe39c8c, - 0xe39c8d, - 0xe39c8e, - 0xe39c8f, - 0xe39c90, - 0xe39c91, - 0xe39c92, - 0xe39c93, - 0xe39c94, - 0xe39c95, - 0xe39c96, - 0xe39c97, - 0xe39c98, - 0xe39c99, - 0xe39c9a, - 0xe39c9b, - 0xe39c9c, - 0xe39c9d, - 0xe39c9e, - 0xe39c9f, - 0xe39ca0, - 0xe39ca1, - 0xe39ca2, - 0xe39ca3, - 0xe39ca4, - 0xe39ca5, - 0xe39ca6, - 0xe39ca7, - 0xe39ca8, - 0xe39ca9, - 0xe39caa, - 0xe39cab, - 0xe39cac, - 0xe39cad, - 0xe39cae, - 0xe39caf, - 0xe39cb0, - 0xe39cb1, - 0xe39cb2, - 0xe39cb3, - 0xe39cb4, - 0xe39cb5, - 0xe39cb6, - 0xe39cb7, - 0xe39cb8, - 0xe39cb9, - 0xe39cba, - 0xe39cbb, - 0xe39cbc, - 0xe39cbd, - 0xe39cbe, - 0xe39cbf, - 0xe39d80, - 0xe39d81, - 0xe39d82, - 0xe39d83, - 0xe39d84, - 0xe39d85, - 0xe39d86, - 0xe39d87, - 0xe39d88, - 0xe39d89, - 0xe39d8a, - 0xe39d8b, - 0xe39d8c, - 0xe39d8d, - 0xe39d8e, - 0xe39d8f, - 0xe39d90, - 0xe39d91, - 0xe39d92, - 0xe39d93, - 0xe39d94, - 0xe39d95, - 0xe39d96, - 0xe39d97, - 0xe39d98, - 0xe39d99, - 0xe39d9a, - 0xe39d9b, - 0xe39d9c, - 0xe39d9d, - 0xe39d9e, - 0xe39d9f, - 0xe39da0, - 0xe39da1, - 0xe39da2, - 0xe39da3, - 0xe39da4, - 0xe39da5, - 0xe39da6, - 0xe39da7, - 0xe39da8, - 0xe39da9, - 0xe39daa, - 0xe39dab, - 0xe39dac, - 0xe39dad, - 0xe39dae, - 0xe39daf, - 0xe39db0, - 0xe39db1, - 0xe39db2, - 0xe39db3, - 0xe39db4, - 0xe39db5, - 0xe39db6, - 0xe39db7, - 0xe39db8, - 0xe39db9, - 0xe39dba, - 0xe39dbb, - 0xe39dbc, - 0xe39dbd, - 0xe39dbe, - 0xe39dbf, - 0xe39e80, - 0xe39e81, - 0xe39e82, - 0xe39e83, - 0xe39e84, - 0xe39e85, - 0xe39e86, - 0xe39e87, - 0xe39e88, - 0xe39e89, - 0xe39e8a, - 0xe39e8b, - 0xe39e8c, - 0xe39e8d, - 0xe39e8e, - 0xe39e8f, - 0xe39e90, - 0xe39e91, - 0xe39e92, - 0xe39e93, - 0xe39e94, - 0xe39e95, - 0xe39e96, - 0xe39e97, - 0xe39e98, - 0xe39e99, - 0xe39e9a, - 0xe39e9b, - 0xe39e9c, - 0xe39e9d, - 0xe39e9e, - 0xe39e9f, - 0xe39ea0, - 0xe39ea1, - 0xe39ea2, - 0xe39ea3, - 0xe39ea4, - 0xe39ea5, - 0xe39ea6, - 0xe39ea7, - 0xe39ea8, - 0xe39ea9, - 0xe39eaa, - 0xe39eab, - 0xe39eac, - 0xe39ead, - 0xe39eae, - 0xe39eaf, - 0xe39eb0, - 0xe39eb1, - 0xe39eb2, - 0xe39eb3, - 0xe39eb4, - 0xe39eb5, - 0xe39eb6, - 0xe39eb7, - 0xe39eb8, - 0xe39eb9, - 0xe39eba, - 0xe39ebb, - 0xe39ebc, - 0xe39ebd, - 0xe39ebe, - 0xe39ebf, - 0xe39f80, - 0xe39f81, - 0xe39f82, - 0xe39f83, - 0xe39f84, - 0xe39f85, - 0xe39f86, - 0xe39f87, - 0xe39f88, - 0xe39f89, - 0xe39f8a, - 0xe39f8b, - 0xe39f8c, - 0xe39f8d, - 0xe39f8e, - 0xe39f8f, - 0xe39f90, - 0xe39f91, - 0xe39f92, - 0xe39f93, - 0xe39f94, - 0xe39f95, - 0xe39f96, - 0xe39f97, - 0xe39f98, - 0xe39f99, - 0xe39f9a, - 0xe39f9b, - 0xe39f9c, - 0xe39f9d, - 0xe39f9e, - 0xe39f9f, - 0xe39fa0, - 0xe39fa1, - 0xe39fa2, - 0xe39fa3, - 0xe39fa4, - 0xe39fa5, - 0xe39fa6, - 0xe39fa7, - 0xe39fa8, - 0xe39fa9, - 0xe39faa, - 0xe39fab, - 0xe39fac, - 0xe39fad, - 0xe39fae, - 0xe39faf, - 0xe39fb0, - 0xe39fb1, - 0xe39fb2, - 0xe39fb3, - 0xe39fb4, - 0xe39fb5, - 0xe39fb6, - 0xe39fb7, - 0xe39fb8, - 0xe39fb9, - 0xe39fba, - 0xe39fbb, - 0xe39fbc, - 0xe39fbd, - 0xe39fbe, - 0xe39fbf, - 0xe3a080, - 0xe3a081, - 0xe3a082, - 0xe3a083, - 0xe3a084, - 0xe3a085, - 0xe3a086, - 0xe3a087, - 0xe3a088, - 0xe3a089, - 0xe3a08a, - 0xe3a08b, - 0xe3a08c, - 0xe3a08d, - 0xe3a08e, - 0xe3a08f, - 0xe3a090, - 0xe3a091, - 0xe3a092, - 0xe3a093, - 0xe3a094, - 0xe3a095, - 0xe3a096, - 0xe3a097, - 0xe3a098, - 0xe3a099, - 0xe3a09a, - 0xe3a09b, - 0xe3a09c, - 0xe3a09d, - 0xe3a09e, - 0xe3a09f, - 0xe3a0a0, - 0xe3a0a1, - 0xe3a0a2, - 0xe3a0a3, - 0xe3a0a4, - 0xe3a0a5, - 0xe3a0a6, - 0xe3a0a7, - 0xe3a0a8, - 0xe3a0a9, - 0xe3a0aa, - 0xe3a0ab, - 0xe3a0ac, - 0xe3a0ad, - 0xe3a0ae, - 0xe3a0af, - 0xe3a0b0, - 0xe3a0b1, - 0xe3a0b2, - 0xe3a0b3, - 0xe3a0b4, - 0xe3a0b5, - 0xe3a0b6, - 0xe3a0b7, - 0xe3a0b8, - 0xe3a0b9, - 0xe3a0ba, - 0xe3a0bb, - 0xe3a0bc, - 0xe3a0bd, - 0xe3a0be, - 0xe3a0bf, - 0xe3a180, - 0xe3a181, - 0xe3a182, - 0xe3a183, - 0xe3a184, - 0xe3a185, - 0xe3a186, - 0xe3a187, - 0xe3a188, - 0xe3a189, - 0xe3a18a, - 0xe3a18b, - 0xe3a18c, - 0xe3a18d, - 0xe3a18e, - 0xe3a18f, - 0xe3a190, - 0xe3a191, - 0xe3a192, - 0xe3a193, - 0xe3a194, - 0xe3a195, - 0xe3a196, - 0xe3a197, - 0xe3a198, - 0xe3a199, - 0xe3a19a, - 0xe3a19b, - 0xe3a19c, - 0xe3a19d, - 0xe3a19e, - 0xe3a19f, - 0xe3a1a0, - 0xe3a1a1, - 0xe3a1a2, - 0xe3a1a3, - 0xe3a1a4, - 0xe3a1a5, - 0xe3a1a6, - 0xe3a1a7, - 0xe3a1a8, - 0xe3a1a9, - 0xe3a1aa, - 0xe3a1ab, - 0xe3a1ac, - 0xe3a1ad, - 0xe3a1ae, - 0xe3a1af, - 0xe3a1b0, - 0xe3a1b1, - 0xe3a1b2, - 0xe3a1b3, - 0xe3a1b4, - 0xe3a1b5, - 0xe3a1b6, - 0xe3a1b7, - 0xe3a1b8, - 0xe3a1b9, - 0xe3a1ba, - 0xe3a1bb, - 0xe3a1bc, - 0xe3a1bd, - 0xe3a1be, - 0xe3a1bf, - 0xe3a280, - 0xe3a281, - 0xe3a282, - 0xe3a283, - 0xe3a284, - 0xe3a285, - 0xe3a286, - 0xe3a287, - 0xe3a288, - 0xe3a289, - 0xe3a28a, - 0xe3a28b, - 0xe3a28c, - 0xe3a28d, - 0xe3a28e, - 0xe3a28f, - 0xe3a290, - 0xe3a291, - 0xe3a292, - 0xe3a293, - 0xe3a294, - 0xe3a295, - 0xe3a296, - 0xe3a297, - 0xe3a298, - 0xe3a299, - 0xe3a29a, - 0xe3a29b, - 0xe3a29c, - 0xe3a29d, - 0xe3a29e, - 0xe3a29f, - 0xe3a2a0, - 0xe3a2a1, - 0xe3a2a2, - 0xe3a2a3, - 0xe3a2a4, - 0xe3a2a5, - 0xe3a2a6, - 0xe3a2a7, - 0xe3a2a8, - 0xe3a2a9, - 0xe3a2aa, - 0xe3a2ab, - 0xe3a2ac, - 0xe3a2ad, - 0xe3a2ae, - 0xe3a2af, - 0xe3a2b0, - 0xe3a2b1, - 0xe3a2b2, - 0xe3a2b3, - 0xe3a2b4, - 0xe3a2b5, - 0xe3a2b6, - 0xe3a2b7, - 0xe3a2b8, - 0xe3a2b9, - 0xe3a2ba, - 0xe3a2bb, - 0xe3a2bc, - 0xe3a2bd, - 0xe3a2be, - 0xe3a2bf, - 0xe3a380, - 0xe3a381, - 0xe3a382, - 0xe3a383, - 0xe3a384, - 0xe3a385, - 0xe3a386, - 0xe3a387, - 0xe3a388, - 0xe3a389, - 0xe3a38a, - 0xe3a38b, - 0xe3a38c, - 0xe3a38d, - 0xe3a38e, - 0xe3a38f, - 0xe3a390, - 0xe3a391, - 0xe3a392, - 0xe3a393, - 0xe3a394, - 0xe3a395, - 0xe3a396, - 0xe3a397, - 0xe3a398, - 0xe3a399, - 0xe3a39a, - 0xe3a39b, - 0xe3a39c, - 0xe3a39d, - 0xe3a39e, - 0xe3a39f, - 0xe3a3a0, - 0xe3a3a1, - 0xe3a3a2, - 0xe3a3a3, - 0xe3a3a4, - 0xe3a3a5, - 0xe3a3a6, - 0xe3a3a7, - 0xe3a3a8, - 0xe3a3a9, - 0xe3a3aa, - 0xe3a3ab, - 0xe3a3ac, - 0xe3a3ad, - 0xe3a3ae, - 0xe3a3af, - 0xe3a3b0, - 0xe3a3b1, - 0xe3a3b2, - 0xe3a3b3, - 0xe3a3b4, - 0xe3a3b5, - 0xe3a3b6, - 0xe3a3b7, - 0xe3a3b8, - 0xe3a3b9, - 0xe3a3ba, - 0xe3a3bb, - 0xe3a3bc, - 0xe3a3bd, - 0xe3a3be, - 0xe3a3bf, - 0xe3a480, - 0xe3a481, - 0xe3a482, - 0xe3a483, - 0xe3a484, - 0xe3a485, - 0xe3a486, - 0xe3a487, - 0xe3a488, - 0xe3a489, - 0xe3a48a, - 0xe3a48b, - 0xe3a48c, - 0xe3a48d, - 0xe3a48e, - 0xe3a48f, - 0xe3a490, - 0xe3a491, - 0xe3a492, - 0xe3a493, - 0xe3a494, - 0xe3a495, - 0xe3a496, - 0xe3a497, - 0xe3a498, - 0xe3a499, - 0xe3a49a, - 0xe3a49b, - 0xe3a49c, - 0xe3a49d, - 0xe3a49e, - 0xe3a49f, - 0xe3a4a0, - 0xe3a4a1, - 0xe3a4a2, - 0xe3a4a3, - 0xe3a4a4, - 0xe3a4a5, - 0xe3a4a6, - 0xe3a4a7, - 0xe3a4a8, - 0xe3a4a9, - 0xe3a4aa, - 0xe3a4ab, - 0xe3a4ac, - 0xe3a4ad, - 0xe3a4ae, - 0xe3a4af, - 0xe3a4b0, - 0xe3a4b1, - 0xe3a4b2, - 0xe3a4b3, - 0xe3a4b4, - 0xe3a4b5, - 0xe3a4b6, - 0xe3a4b7, - 0xe3a4b8, - 0xe3a4b9, - 0xe3a4ba, - 0xe3a4bb, - 0xe3a4bc, - 0xe3a4bd, - 0xe3a4be, - 0xe3a4bf, - 0xe3a580, - 0xe3a581, - 0xe3a582, - 0xe3a583, - 0xe3a584, - 0xe3a585, - 0xe3a586, - 0xe3a587, - 0xe3a588, - 0xe3a589, - 0xe3a58a, - 0xe3a58b, - 0xe3a58c, - 0xe3a58d, - 0xe3a58e, - 0xe3a58f, - 0xe3a590, - 0xe3a591, - 0xe3a592, - 0xe3a593, - 0xe3a594, - 0xe3a595, - 0xe3a596, - 0xe3a597, - 0xe3a598, - 0xe3a599, - 0xe3a59a, - 0xe3a59b, - 0xe3a59c, - 0xe3a59d, - 0xe3a59e, - 0xe3a59f, - 0xe3a5a0, - 0xe3a5a1, - 0xe3a5a2, - 0xe3a5a3, - 0xe3a5a4, - 0xe3a5a5, - 0xe3a5a6, - 0xe3a5a7, - 0xe3a5a8, - 0xe3a5a9, - 0xe3a5aa, - 0xe3a5ab, - 0xe3a5ac, - 0xe3a5ad, - 0xe3a5ae, - 0xe3a5af, - 0xe3a5b0, - 0xe3a5b1, - 0xe3a5b2, - 0xe3a5b3, - 0xe3a5b4, - 0xe3a5b5, - 0xe3a5b6, - 0xe3a5b7, - 0xe3a5b8, - 0xe3a5b9, - 0xe3a5ba, - 0xe3a5bb, - 0xe3a5bc, - 0xe3a5bd, - 0xe3a5be, - 0xe3a5bf, - 0xe3a680, - 0xe3a681, - 0xe3a682, - 0xe3a683, - 0xe3a684, - 0xe3a685, - 0xe3a686, - 0xe3a687, - 0xe3a688, - 0xe3a689, - 0xe3a68a, - 0xe3a68b, - 0xe3a68c, - 0xe3a68d, - 0xe3a68e, - 0xe3a68f, - 0xe3a690, - 0xe3a691, - 0xe3a692, - 0xe3a693, - 0xe3a694, - 0xe3a695, - 0xe3a696, - 0xe3a697, - 0xe3a698, - 0xe3a699, - 0xe3a69a, - 0xe3a69b, - 0xe3a69c, - 0xe3a69d, - 0xe3a69e, - 0xe3a69f, - 0xe3a6a0, - 0xe3a6a1, - 0xe3a6a2, - 0xe3a6a3, - 0xe3a6a4, - 0xe3a6a5, - 0xe3a6a6, - 0xe3a6a7, - 0xe3a6a8, - 0xe3a6a9, - 0xe3a6aa, - 0xe3a6ab, - 0xe3a6ac, - 0xe3a6ad, - 0xe3a6ae, - 0xe3a6af, - 0xe3a6b0, - 0xe3a6b1, - 0xe3a6b2, - 0xe3a6b3, - 0xe3a6b4, - 0xe3a6b5, - 0xe3a6b6, - 0xe3a6b7, - 0xe3a6b8, - 0xe3a6b9, - 0xe3a6ba, - 0xe3a6bb, - 0xe3a6bc, - 0xe3a6bd, - 0xe3a6be, - 0xe3a6bf, - 0xe3a780, - 0xe3a781, - 0xe3a782, - 0xe3a783, - 0xe3a784, - 0xe3a785, - 0xe3a786, - 0xe3a787, - 0xe3a788, - 0xe3a789, - 0xe3a78a, - 0xe3a78b, - 0xe3a78c, - 0xe3a78d, - 0xe3a78e, - 0xe3a78f, - 0xe3a790, - 0xe3a791, - 0xe3a792, - 0xe3a793, - 0xe3a794, - 0xe3a795, - 0xe3a796, - 0xe3a797, - 0xe3a798, - 0xe3a799, - 0xe3a79a, - 0xe3a79b, - 0xe3a79c, - 0xe3a79d, - 0xe3a79e, - 0xe3a79f, - 0xe3a7a0, - 0xe3a7a1, - 0xe3a7a2, - 0xe3a7a3, - 0xe3a7a4, - 0xe3a7a5, - 0xe3a7a6, - 0xe3a7a7, - 0xe3a7a8, - 0xe3a7a9, - 0xe3a7aa, - 0xe3a7ab, - 0xe3a7ac, - 0xe3a7ad, - 0xe3a7ae, - 0xe3a7af, - 0xe3a7b0, - 0xe3a7b1, - 0xe3a7b2, - 0xe3a7b3, - 0xe3a7b4, - 0xe3a7b5, - 0xe3a7b6, - 0xe3a7b7, - 0xe3a7b8, - 0xe3a7b9, - 0xe3a7ba, - 0xe3a7bb, - 0xe3a7bc, - 0xe3a7bd, - 0xe3a7be, - 0xe3a7bf, - 0xe3a880, - 0xe3a881, - 0xe3a882, - 0xe3a883, - 0xe3a884, - 0xe3a885, - 0xe3a886, - 0xe3a887, - 0xe3a888, - 0xe3a889, - 0xe3a88a, - 0xe3a88b, - 0xe3a88c, - 0xe3a88d, - 0xe3a88e, - 0xe3a88f, - 0xe3a890, - 0xe3a891, - 0xe3a892, - 0xe3a893, - 0xe3a894, - 0xe3a895, - 0xe3a896, - 0xe3a897, - 0xe3a898, - 0xe3a899, - 0xe3a89a, - 0xe3a89b, - 0xe3a89c, - 0xe3a89d, - 0xe3a89e, - 0xe3a89f, - 0xe3a8a0, - 0xe3a8a1, - 0xe3a8a2, - 0xe3a8a3, - 0xe3a8a4, - 0xe3a8a5, - 0xe3a8a6, - 0xe3a8a7, - 0xe3a8a8, - 0xe3a8a9, - 0xe3a8aa, - 0xe3a8ab, - 0xe3a8ac, - 0xe3a8ad, - 0xe3a8ae, - 0xe3a8af, - 0xe3a8b0, - 0xe3a8b1, - 0xe3a8b2, - 0xe3a8b3, - 0xe3a8b4, - 0xe3a8b5, - 0xe3a8b6, - 0xe3a8b7, - 0xe3a8b8, - 0xe3a8b9, - 0xe3a8ba, - 0xe3a8bb, - 0xe3a8bc, - 0xe3a8bd, - 0xe3a8be, - 0xe3a8bf, - 0xe3a980, - 0xe3a981, - 0xe3a982, - 0xe3a983, - 0xe3a984, - 0xe3a985, - 0xe3a986, - 0xe3a987, - 0xe3a988, - 0xe3a989, - 0xe3a98a, - 0xe3a98b, - 0xe3a98c, - 0xe3a98d, - 0xe3a98e, - 0xe3a98f, - 0xe3a990, - 0xe3a991, - 0xe3a992, - 0xe3a993, - 0xe3a994, - 0xe3a995, - 0xe3a996, - 0xe3a997, - 0xe3a998, - 0xe3a999, - 0xe3a99a, - 0xe3a99b, - 0xe3a99c, - 0xe3a99d, - 0xe3a99e, - 0xe3a99f, - 0xe3a9a0, - 0xe3a9a1, - 0xe3a9a2, - 0xe3a9a3, - 0xe3a9a4, - 0xe3a9a5, - 0xe3a9a6, - 0xe3a9a7, - 0xe3a9a8, - 0xe3a9a9, - 0xe3a9aa, - 0xe3a9ab, - 0xe3a9ac, - 0xe3a9ad, - 0xe3a9ae, - 0xe3a9af, - 0xe3a9b0, - 0xe3a9b1, - 0xe3a9b2, - 0xe3a9b3, - 0xe3a9b4, - 0xe3a9b5, - 0xe3a9b6, - 0xe3a9b7, - 0xe3a9b8, - 0xe3a9b9, - 0xe3a9ba, - 0xe3a9bb, - 0xe3a9bc, - 0xe3a9bd, - 0xe3a9be, - 0xe3a9bf, - 0xe3aa80, - 0xe3aa81, - 0xe3aa82, - 0xe3aa83, - 0xe3aa84, - 0xe3aa85, - 0xe3aa86, - 0xe3aa87, - 0xe3aa88, - 0xe3aa89, - 0xe3aa8a, - 0xe3aa8b, - 0xe3aa8c, - 0xe3aa8d, - 0xe3aa8e, - 0xe3aa8f, - 0xe3aa90, - 0xe3aa91, - 0xe3aa92, - 0xe3aa93, - 0xe3aa94, - 0xe3aa95, - 0xe3aa96, - 0xe3aa97, - 0xe3aa98, - 0xe3aa99, - 0xe3aa9a, - 0xe3aa9b, - 0xe3aa9c, - 0xe3aa9d, - 0xe3aa9e, - 0xe3aa9f, - 0xe3aaa0, - 0xe3aaa1, - 0xe3aaa2, - 0xe3aaa3, - 0xe3aaa4, - 0xe3aaa5, - 0xe3aaa6, - 0xe3aaa7, - 0xe3aaa8, - 0xe3aaa9, - 0xe3aaaa, - 0xe3aaab, - 0xe3aaac, - 0xe3aaad, - 0xe3aaae, - 0xe3aaaf, - 0xe3aab0, - 0xe3aab1, - 0xe3aab2, - 0xe3aab3, - 0xe3aab4, - 0xe3aab5, - 0xe3aab6, - 0xe3aab7, - 0xe3aab8, - 0xe3aab9, - 0xe3aaba, - 0xe3aabb, - 0xe3aabc, - 0xe3aabd, - 0xe3aabe, - 0xe3aabf, - 0xe3ab80, - 0xe3ab81, - 0xe3ab82, - 0xe3ab83, - 0xe3ab84, - 0xe3ab85, - 0xe3ab86, - 0xe3ab87, - 0xe3ab88, - 0xe3ab89, - 0xe3ab8a, - 0xe3ab8b, - 0xe3ab8c, - 0xe3ab8d, - 0xe3ab8e, - 0xe3ab8f, - 0xe3ab90, - 0xe3ab91, - 0xe3ab92, - 0xe3ab93, - 0xe3ab94, - 0xe3ab95, - 0xe3ab96, - 0xe3ab97, - 0xe3ab98, - 0xe3ab99, - 0xe3ab9a, - 0xe3ab9b, - 0xe3ab9c, - 0xe3ab9d, - 0xe3ab9e, - 0xe3ab9f, - 0xe3aba0, - 0xe3aba1, - 0xe3aba2, - 0xe3aba3, - 0xe3aba4, - 0xe3aba5, - 0xe3aba6, - 0xe3aba7, - 0xe3aba8, - 0xe3aba9, - 0xe3abaa, - 0xe3abab, - 0xe3abac, - 0xe3abad, - 0xe3abae, - 0xe3abaf, - 0xe3abb0, - 0xe3abb1, - 0xe3abb2, - 0xe3abb3, - 0xe3abb4, - 0xe3abb5, - 0xe3abb6, - 0xe3abb7, - 0xe3abb8, - 0xe3abb9, - 0xe3abba, - 0xe3abbb, - 0xe3abbc, - 0xe3abbd, - 0xe3abbe, - 0xe3abbf, - 0xe3ac80, - 0xe3ac81, - 0xe3ac82, - 0xe3ac83, - 0xe3ac84, - 0xe3ac85, - 0xe3ac86, - 0xe3ac87, - 0xe3ac88, - 0xe3ac89, - 0xe3ac8a, - 0xe3ac8b, - 0xe3ac8c, - 0xe3ac8d, - 0xe3ac8e, - 0xe3ac8f, - 0xe3ac90, - 0xe3ac91, - 0xe3ac92, - 0xe3ac93, - 0xe3ac94, - 0xe3ac95, - 0xe3ac96, - 0xe3ac97, - 0xe3ac98, - 0xe3ac99, - 0xe3ac9a, - 0xe3ac9b, - 0xe3ac9c, - 0xe3ac9d, - 0xe3ac9e, - 0xe3ac9f, - 0xe3aca0, - 0xe3aca1, - 0xe3aca2, - 0xe3aca3, - 0xe3aca4, - 0xe3aca5, - 0xe3aca6, - 0xe3aca7, - 0xe3aca8, - 0xe3aca9, - 0xe3acaa, - 0xe3acab, - 0xe3acac, - 0xe3acad, - 0xe3acae, - 0xe3acaf, - 0xe3acb0, - 0xe3acb1, - 0xe3acb2, - 0xe3acb3, - 0xe3acb4, - 0xe3acb5, - 0xe3acb6, - 0xe3acb7, - 0xe3acb8, - 0xe3acb9, - 0xe3acba, - 0xe3acbb, - 0xe3acbc, - 0xe3acbd, - 0xe3acbe, - 0xe3acbf, - 0xe3ad80, - 0xe3ad81, - 0xe3ad82, - 0xe3ad83, - 0xe3ad84, - 0xe3ad85, - 0xe3ad86, - 0xe3ad87, - 0xe3ad88, - 0xe3ad89, - 0xe3ad8a, - 0xe3ad8b, - 0xe3ad8c, - 0xe3ad8d, - 0xe3ad8e, - 0xe3ad8f, - 0xe3ad90, - 0xe3ad91, - 0xe3ad92, - 0xe3ad93, - 0xe3ad94, - 0xe3ad95, - 0xe3ad96, - 0xe3ad97, - 0xe3ad98, - 0xe3ad99, - 0xe3ad9a, - 0xe3ad9b, - 0xe3ad9c, - 0xe3ad9d, - 0xe3ad9e, - 0xe3ad9f, - 0xe3ada0, - 0xe3ada1, - 0xe3ada2, - 0xe3ada3, - 0xe3ada4, - 0xe3ada5, - 0xe3ada6, - 0xe3ada7, - 0xe3ada8, - 0xe3ada9, - 0xe3adaa, - 0xe3adab, - 0xe3adac, - 0xe3adad, - 0xe3adae, - 0xe3adaf, - 0xe3adb0, - 0xe3adb1, - 0xe3adb2, - 0xe3adb3, - 0xe3adb4, - 0xe3adb5, - 0xe3adb6, - 0xe3adb7, - 0xe3adb8, - 0xe3adb9, - 0xe3adba, - 0xe3adbb, - 0xe3adbc, - 0xe3adbd, - 0xe3adbe, - 0xe3adbf, - 0xe3ae80, - 0xe3ae81, - 0xe3ae82, - 0xe3ae83, - 0xe3ae84, - 0xe3ae85, - 0xe3ae86, - 0xe3ae87, - 0xe3ae88, - 0xe3ae89, - 0xe3ae8a, - 0xe3ae8b, - 0xe3ae8c, - 0xe3ae8d, - 0xe3ae8e, - 0xe3ae8f, - 0xe3ae90, - 0xe3ae91, - 0xe3ae92, - 0xe3ae93, - 0xe3ae94, - 0xe3ae95, - 0xe3ae96, - 0xe3ae97, - 0xe3ae98, - 0xe3ae99, - 0xe3ae9a, - 0xe3ae9b, - 0xe3ae9c, - 0xe3ae9d, - 0xe3ae9e, - 0xe3ae9f, - 0xe3aea0, - 0xe3aea1, - 0xe3aea2, - 0xe3aea3, - 0xe3aea4, - 0xe3aea5, - 0xe3aea6, - 0xe3aea7, - 0xe3aea8, - 0xe3aea9, - 0xe3aeaa, - 0xe3aeab, - 0xe3aeac, - 0xe3aead, - 0xe3aeae, - 0xe3aeaf, - 0xe3aeb0, - 0xe3aeb1, - 0xe3aeb2, - 0xe3aeb3, - 0xe3aeb4, - 0xe3aeb5, - 0xe3aeb6, - 0xe3aeb7, - 0xe3aeb8, - 0xe3aeb9, - 0xe3aeba, - 0xe3aebb, - 0xe3aebc, - 0xe3aebd, - 0xe3aebe, - 0xe3aebf, - 0xe3af80, - 0xe3af81, - 0xe3af82, - 0xe3af83, - 0xe3af84, - 0xe3af85, - 0xe3af86, - 0xe3af87, - 0xe3af88, - 0xe3af89, - 0xe3af8a, - 0xe3af8b, - 0xe3af8c, - 0xe3af8d, - 0xe3af8e, - 0xe3af8f, - 0xe3af90, - 0xe3af91, - 0xe3af92, - 0xe3af93, - 0xe3af94, - 0xe3af95, - 0xe3af96, - 0xe3af97, - 0xe3af98, - 0xe3af99, - 0xe3af9a, - 0xe3af9b, - 0xe3af9c, - 0xe3af9d, - 0xe3af9e, - 0xe3af9f, - 0xe3afa0, - 0xe3afa1, - 0xe3afa2, - 0xe3afa3, - 0xe3afa4, - 0xe3afa5, - 0xe3afa6, - 0xe3afa7, - 0xe3afa8, - 0xe3afa9, - 0xe3afaa, - 0xe3afab, - 0xe3afac, - 0xe3afad, - 0xe3afae, - 0xe3afaf, - 0xe3afb0, - 0xe3afb1, - 0xe3afb2, - 0xe3afb3, - 0xe3afb4, - 0xe3afb5, - 0xe3afb6, - 0xe3afb7, - 0xe3afb8, - 0xe3afb9, - 0xe3afba, - 0xe3afbb, - 0xe3afbc, - 0xe3afbd, - 0xe3afbe, - 0xe3afbf, - 0xe3b080, - 0xe3b081, - 0xe3b082, - 0xe3b083, - 0xe3b084, - 0xe3b085, - 0xe3b086, - 0xe3b087, - 0xe3b088, - 0xe3b089, - 0xe3b08a, - 0xe3b08b, - 0xe3b08c, - 0xe3b08d, - 0xe3b08e, - 0xe3b08f, - 0xe3b090, - 0xe3b091, - 0xe3b092, - 0xe3b093, - 0xe3b094, - 0xe3b095, - 0xe3b096, - 0xe3b097, - 0xe3b098, - 0xe3b099, - 0xe3b09a, - 0xe3b09b, - 0xe3b09c, - 0xe3b09d, - 0xe3b09e, - 0xe3b09f, - 0xe3b0a0, - 0xe3b0a1, - 0xe3b0a2, - 0xe3b0a3, - 0xe3b0a4, - 0xe3b0a5, - 0xe3b0a6, - 0xe3b0a7, - 0xe3b0a8, - 0xe3b0a9, - 0xe3b0aa, - 0xe3b0ab, - 0xe3b0ac, - 0xe3b0ad, - 0xe3b0ae, - 0xe3b0af, - 0xe3b0b0, - 0xe3b0b1, - 0xe3b0b2, - 0xe3b0b3, - 0xe3b0b4, - 0xe3b0b5, - 0xe3b0b6, - 0xe3b0b7, - 0xe3b0b8, - 0xe3b0b9, - 0xe3b0ba, - 0xe3b0bb, - 0xe3b0bc, - 0xe3b0bd, - 0xe3b0be, - 0xe3b0bf, - 0xe3b180, - 0xe3b181, - 0xe3b182, - 0xe3b183, - 0xe3b184, - 0xe3b185, - 0xe3b186, - 0xe3b187, - 0xe3b188, - 0xe3b189, - 0xe3b18a, - 0xe3b18b, - 0xe3b18c, - 0xe3b18d, - 0xe3b18e, - 0xe3b18f, - 0xe3b190, - 0xe3b191, - 0xe3b192, - 0xe3b193, - 0xe3b194, - 0xe3b195, - 0xe3b196, - 0xe3b197, - 0xe3b198, - 0xe3b199, - 0xe3b19a, - 0xe3b19b, - 0xe3b19c, - 0xe3b19d, - 0xe3b19e, - 0xe3b19f, - 0xe3b1a0, - 0xe3b1a1, - 0xe3b1a2, - 0xe3b1a3, - 0xe3b1a4, - 0xe3b1a5, - 0xe3b1a6, - 0xe3b1a7, - 0xe3b1a8, - 0xe3b1a9, - 0xe3b1aa, - 0xe3b1ab, - 0xe3b1ac, - 0xe3b1ad, - 0xe3b1ae, - 0xe3b1af, - 0xe3b1b0, - 0xe3b1b1, - 0xe3b1b2, - 0xe3b1b3, - 0xe3b1b4, - 0xe3b1b5, - 0xe3b1b6, - 0xe3b1b7, - 0xe3b1b8, - 0xe3b1b9, - 0xe3b1ba, - 0xe3b1bb, - 0xe3b1bc, - 0xe3b1bd, - 0xe3b1be, - 0xe3b1bf, - 0xe3b280, - 0xe3b281, - 0xe3b282, - 0xe3b283, - 0xe3b284, - 0xe3b285, - 0xe3b286, - 0xe3b287, - 0xe3b288, - 0xe3b289, - 0xe3b28a, - 0xe3b28b, - 0xe3b28c, - 0xe3b28d, - 0xe3b28e, - 0xe3b28f, - 0xe3b290, - 0xe3b291, - 0xe3b292, - 0xe3b293, - 0xe3b294, - 0xe3b295, - 0xe3b296, - 0xe3b297, - 0xe3b298, - 0xe3b299, - 0xe3b29a, - 0xe3b29b, - 0xe3b29c, - 0xe3b29d, - 0xe3b29e, - 0xe3b29f, - 0xe3b2a0, - 0xe3b2a1, - 0xe3b2a2, - 0xe3b2a3, - 0xe3b2a4, - 0xe3b2a5, - 0xe3b2a6, - 0xe3b2a7, - 0xe3b2a8, - 0xe3b2a9, - 0xe3b2aa, - 0xe3b2ab, - 0xe3b2ac, - 0xe3b2ad, - 0xe3b2ae, - 0xe3b2af, - 0xe3b2b0, - 0xe3b2b1, - 0xe3b2b2, - 0xe3b2b3, - 0xe3b2b4, - 0xe3b2b5, - 0xe3b2b6, - 0xe3b2b7, - 0xe3b2b8, - 0xe3b2b9, - 0xe3b2ba, - 0xe3b2bb, - 0xe3b2bc, - 0xe3b2bd, - 0xe3b2be, - 0xe3b2bf, - 0xe3b380, - 0xe3b381, - 0xe3b382, - 0xe3b383, - 0xe3b384, - 0xe3b385, - 0xe3b386, - 0xe3b387, - 0xe3b388, - 0xe3b389, - 0xe3b38a, - 0xe3b38b, - 0xe3b38c, - 0xe3b38d, - 0xe3b38e, - 0xe3b38f, - 0xe3b390, - 0xe3b391, - 0xe3b392, - 0xe3b393, - 0xe3b394, - 0xe3b395, - 0xe3b396, - 0xe3b397, - 0xe3b398, - 0xe3b399, - 0xe3b39a, - 0xe3b39b, - 0xe3b39c, - 0xe3b39d, - 0xe3b39e, - 0xe3b39f, - 0xe3b3a0, - 0xe3b3a1, - 0xe3b3a2, - 0xe3b3a3, - 0xe3b3a4, - 0xe3b3a5, - 0xe3b3a6, - 0xe3b3a7, - 0xe3b3a8, - 0xe3b3a9, - 0xe3b3aa, - 0xe3b3ab, - 0xe3b3ac, - 0xe3b3ad, - 0xe3b3ae, - 0xe3b3af, - 0xe3b3b0, - 0xe3b3b1, - 0xe3b3b2, - 0xe3b3b3, - 0xe3b3b4, - 0xe3b3b5, - 0xe3b3b6, - 0xe3b3b7, - 0xe3b3b8, - 0xe3b3b9, - 0xe3b3ba, - 0xe3b3bb, - 0xe3b3bc, - 0xe3b3bd, - 0xe3b3be, - 0xe3b3bf, - 0xe3b480, - 0xe3b481, - 0xe3b482, - 0xe3b483, - 0xe3b484, - 0xe3b485, - 0xe3b486, - 0xe3b487, - 0xe3b488, - 0xe3b489, - 0xe3b48a, - 0xe3b48b, - 0xe3b48c, - 0xe3b48d, - 0xe3b48e, - 0xe3b48f, - 0xe3b490, - 0xe3b491, - 0xe3b492, - 0xe3b493, - 0xe3b494, - 0xe3b495, - 0xe3b496, - 0xe3b497, - 0xe3b498, - 0xe3b499, - 0xe3b49a, - 0xe3b49b, - 0xe3b49c, - 0xe3b49d, - 0xe3b49e, - 0xe3b49f, - 0xe3b4a0, - 0xe3b4a1, - 0xe3b4a2, - 0xe3b4a3, - 0xe3b4a4, - 0xe3b4a5, - 0xe3b4a6, - 0xe3b4a7, - 0xe3b4a8, - 0xe3b4a9, - 0xe3b4aa, - 0xe3b4ab, - 0xe3b4ac, - 0xe3b4ad, - 0xe3b4ae, - 0xe3b4af, - 0xe3b4b0, - 0xe3b4b1, - 0xe3b4b2, - 0xe3b4b3, - 0xe3b4b4, - 0xe3b4b5, - 0xe3b4b6, - 0xe3b4b7, - 0xe3b4b8, - 0xe3b4b9, - 0xe3b4ba, - 0xe3b4bb, - 0xe3b4bc, - 0xe3b4bd, - 0xe3b4be, - 0xe3b4bf, - 0xe3b580, - 0xe3b581, - 0xe3b582, - 0xe3b583, - 0xe3b584, - 0xe3b585, - 0xe3b586, - 0xe3b587, - 0xe3b588, - 0xe3b589, - 0xe3b58a, - 0xe3b58b, - 0xe3b58c, - 0xe3b58d, - 0xe3b58e, - 0xe3b58f, - 0xe3b590, - 0xe3b591, - 0xe3b592, - 0xe3b593, - 0xe3b594, - 0xe3b595, - 0xe3b596, - 0xe3b597, - 0xe3b598, - 0xe3b599, - 0xe3b59a, - 0xe3b59b, - 0xe3b59c, - 0xe3b59d, - 0xe3b59e, - 0xe3b59f, - 0xe3b5a0, - 0xe3b5a1, - 0xe3b5a2, - 0xe3b5a3, - 0xe3b5a4, - 0xe3b5a5, - 0xe3b5a6, - 0xe3b5a7, - 0xe3b5a8, - 0xe3b5a9, - 0xe3b5aa, - 0xe3b5ab, - 0xe3b5ac, - 0xe3b5ad, - 0xe3b5ae, - 0xe3b5af, - 0xe3b5b0, - 0xe3b5b1, - 0xe3b5b2, - 0xe3b5b3, - 0xe3b5b4, - 0xe3b5b5, - 0xe3b5b6, - 0xe3b5b7, - 0xe3b5b8, - 0xe3b5b9, - 0xe3b5ba, - 0xe3b5bb, - 0xe3b5bc, - 0xe3b5bd, - 0xe3b5be, - 0xe3b5bf, - 0xe3b680, - 0xe3b681, - 0xe3b682, - 0xe3b683, - 0xe3b684, - 0xe3b685, - 0xe3b686, - 0xe3b687, - 0xe3b688, - 0xe3b689, - 0xe3b68a, - 0xe3b68b, - 0xe3b68c, - 0xe3b68d, - 0xe3b68e, - 0xe3b68f, - 0xe3b690, - 0xe3b691, - 0xe3b692, - 0xe3b693, - 0xe3b694, - 0xe3b695, - 0xe3b696, - 0xe3b697, - 0xe3b698, - 0xe3b699, - 0xe3b69a, - 0xe3b69b, - 0xe3b69c, - 0xe3b69d, - 0xe3b69e, - 0xe3b69f, - 0xe3b6a0, - 0xe3b6a1, - 0xe3b6a2, - 0xe3b6a3, - 0xe3b6a4, - 0xe3b6a5, - 0xe3b6a6, - 0xe3b6a7, - 0xe3b6a8, - 0xe3b6a9, - 0xe3b6aa, - 0xe3b6ab, - 0xe3b6ac, - 0xe3b6ad, - 0xe3b6ae, - 0xe3b6af, - 0xe3b6b0, - 0xe3b6b1, - 0xe3b6b2, - 0xe3b6b3, - 0xe3b6b4, - 0xe3b6b5, - 0xe3b6b6, - 0xe3b6b7, - 0xe3b6b8, - 0xe3b6b9, - 0xe3b6ba, - 0xe3b6bb, - 0xe3b6bc, - 0xe3b6bd, - 0xe3b6be, - 0xe3b6bf, - 0xe3b780, - 0xe3b781, - 0xe3b782, - 0xe3b783, - 0xe3b784, - 0xe3b785, - 0xe3b786, - 0xe3b787, - 0xe3b788, - 0xe3b789, - 0xe3b78a, - 0xe3b78b, - 0xe3b78c, - 0xe3b78d, - 0xe3b78e, - 0xe3b78f, - 0xe3b790, - 0xe3b791, - 0xe3b792, - 0xe3b793, - 0xe3b794, - 0xe3b795, - 0xe3b796, - 0xe3b797, - 0xe3b798, - 0xe3b799, - 0xe3b79a, - 0xe3b79b, - 0xe3b79c, - 0xe3b79d, - 0xe3b79e, - 0xe3b79f, - 0xe3b7a0, - 0xe3b7a1, - 0xe3b7a2, - 0xe3b7a3, - 0xe3b7a4, - 0xe3b7a5, - 0xe3b7a6, - 0xe3b7a7, - 0xe3b7a8, - 0xe3b7a9, - 0xe3b7aa, - 0xe3b7ab, - 0xe3b7ac, - 0xe3b7ad, - 0xe3b7ae, - 0xe3b7af, - 0xe3b7b0, - 0xe3b7b1, - 0xe3b7b2, - 0xe3b7b3, - 0xe3b7b4, - 0xe3b7b5, - 0xe3b7b6, - 0xe3b7b7, - 0xe3b7b8, - 0xe3b7b9, - 0xe3b7ba, - 0xe3b7bb, - 0xe3b7bc, - 0xe3b7bd, - 0xe3b7be, - 0xe3b7bf, - 0xe3b880, - 0xe3b881, - 0xe3b882, - 0xe3b883, - 0xe3b884, - 0xe3b885, - 0xe3b886, - 0xe3b887, - 0xe3b888, - 0xe3b889, - 0xe3b88a, - 0xe3b88b, - 0xe3b88c, - 0xe3b88d, - 0xe3b88e, - 0xe3b88f, - 0xe3b890, - 0xe3b891, - 0xe3b892, - 0xe3b893, - 0xe3b894, - 0xe3b895, - 0xe3b896, - 0xe3b897, - 0xe3b898, - 0xe3b899, - 0xe3b89a, - 0xe3b89b, - 0xe3b89c, - 0xe3b89d, - 0xe3b89e, - 0xe3b89f, - 0xe3b8a0, - 0xe3b8a1, - 0xe3b8a2, - 0xe3b8a3, - 0xe3b8a4, - 0xe3b8a5, - 0xe3b8a6, - 0xe3b8a7, - 0xe3b8a8, - 0xe3b8a9, - 0xe3b8aa, - 0xe3b8ab, - 0xe3b8ac, - 0xe3b8ad, - 0xe3b8ae, - 0xe3b8af, - 0xe3b8b0, - 0xe3b8b1, - 0xe3b8b2, - 0xe3b8b3, - 0xe3b8b4, - 0xe3b8b5, - 0xe3b8b6, - 0xe3b8b7, - 0xe3b8b8, - 0xe3b8b9, - 0xe3b8ba, - 0xe3b8bb, - 0xe3b8bc, - 0xe3b8bd, - 0xe3b8be, - 0xe3b8bf, - 0xe3b980, - 0xe3b981, - 0xe3b982, - 0xe3b983, - 0xe3b984, - 0xe3b985, - 0xe3b986, - 0xe3b987, - 0xe3b988, - 0xe3b989, - 0xe3b98a, - 0xe3b98b, - 0xe3b98c, - 0xe3b98d, - 0xe3b98e, - 0xe3b98f, - 0xe3b990, - 0xe3b991, - 0xe3b992, - 0xe3b993, - 0xe3b994, - 0xe3b995, - 0xe3b996, - 0xe3b997, - 0xe3b998, - 0xe3b999, - 0xe3b99a, - 0xe3b99b, - 0xe3b99c, - 0xe3b99d, - 0xe3b99e, - 0xe3b99f, - 0xe3b9a0, - 0xe3b9a1, - 0xe3b9a2, - 0xe3b9a3, - 0xe3b9a4, - 0xe3b9a5, - 0xe3b9a6, - 0xe3b9a7, - 0xe3b9a8, - 0xe3b9a9, - 0xe3b9aa, - 0xe3b9ab, - 0xe3b9ac, - 0xe3b9ad, - 0xe3b9ae, - 0xe3b9af, - 0xe3b9b0, - 0xe3b9b1, - 0xe3b9b2, - 0xe3b9b3, - 0xe3b9b4, - 0xe3b9b5, - 0xe3b9b6, - 0xe3b9b7, - 0xe3b9b8, - 0xe3b9b9, - 0xe3b9ba, - 0xe3b9bb, - 0xe3b9bc, - 0xe3b9bd, - 0xe3b9be, - 0xe3b9bf, - 0xe3ba80, - 0xe3ba81, - 0xe3ba82, - 0xe3ba83, - 0xe3ba84, - 0xe3ba85, - 0xe3ba86, - 0xe3ba87, - 0xe3ba88, - 0xe3ba89, - 0xe3ba8a, - 0xe3ba8b, - 0xe3ba8c, - 0xe3ba8d, - 0xe3ba8e, - 0xe3ba8f, - 0xe3ba90, - 0xe3ba91, - 0xe3ba92, - 0xe3ba93, - 0xe3ba94, - 0xe3ba95, - 0xe3ba96, - 0xe3ba97, - 0xe3ba98, - 0xe3ba99, - 0xe3ba9a, - 0xe3ba9b, - 0xe3ba9c, - 0xe3ba9d, - 0xe3ba9e, - 0xe3ba9f, - 0xe3baa0, - 0xe3baa1, - 0xe3baa2, - 0xe3baa3, - 0xe3baa4, - 0xe3baa5, - 0xe3baa6, - 0xe3baa7, - 0xe3baa8, - 0xe3baa9, - 0xe3baaa, - 0xe3baab, - 0xe3baac, - 0xe3baad, - 0xe3baae, - 0xe3baaf, - 0xe3bab0, - 0xe3bab1, - 0xe3bab2, - 0xe3bab3, - 0xe3bab4, - 0xe3bab5, - 0xe3bab6, - 0xe3bab7, - 0xe3bab8, - 0xe3bab9, - 0xe3baba, - 0xe3babb, - 0xe3babc, - 0xe3babd, - 0xe3babe, - 0xe3babf, - 0xe3bb80, - 0xe3bb81, - 0xe3bb82, - 0xe3bb83, - 0xe3bb84, - 0xe3bb85, - 0xe3bb86, - 0xe3bb87, - 0xe3bb88, - 0xe3bb89, - 0xe3bb8a, - 0xe3bb8b, - 0xe3bb8c, - 0xe3bb8d, - 0xe3bb8e, - 0xe3bb8f, - 0xe3bb90, - 0xe3bb91, - 0xe3bb92, - 0xe3bb93, - 0xe3bb94, - 0xe3bb95, - 0xe3bb96, - 0xe3bb97, - 0xe3bb98, - 0xe3bb99, - 0xe3bb9a, - 0xe3bb9b, - 0xe3bb9c, - 0xe3bb9d, - 0xe3bb9e, - 0xe3bb9f, - 0xe3bba0, - 0xe3bba1, - 0xe3bba2, - 0xe3bba3, - 0xe3bba4, - 0xe3bba5, - 0xe3bba6, - 0xe3bba7, - 0xe3bba8, - 0xe3bba9, - 0xe3bbaa, - 0xe3bbab, - 0xe3bbac, - 0xe3bbad, - 0xe3bbae, - 0xe3bbaf, - 0xe3bbb0, - 0xe3bbb1, - 0xe3bbb2, - 0xe3bbb3, - 0xe3bbb4, - 0xe3bbb5, - 0xe3bbb6, - 0xe3bbb7, - 0xe3bbb8, - 0xe3bbb9, - 0xe3bbba, - 0xe3bbbb, - 0xe3bbbc, - 0xe3bbbd, - 0xe3bbbe, - 0xe3bbbf, - 0xe3bc80, - 0xe3bc81, - 0xe3bc82, - 0xe3bc83, - 0xe3bc84, - 0xe3bc85, - 0xe3bc86, - 0xe3bc87, - 0xe3bc88, - 0xe3bc89, - 0xe3bc8a, - 0xe3bc8b, - 0xe3bc8c, - 0xe3bc8d, - 0xe3bc8e, - 0xe3bc8f, - 0xe3bc90, - 0xe3bc91, - 0xe3bc92, - 0xe3bc93, - 0xe3bc94, - 0xe3bc95, - 0xe3bc96, - 0xe3bc97, - 0xe3bc98, - 0xe3bc99, - 0xe3bc9a, - 0xe3bc9b, - 0xe3bc9c, - 0xe3bc9d, - 0xe3bc9e, - 0xe3bc9f, - 0xe3bca0, - 0xe3bca1, - 0xe3bca2, - 0xe3bca3, - 0xe3bca4, - 0xe3bca5, - 0xe3bca6, - 0xe3bca7, - 0xe3bca8, - 0xe3bca9, - 0xe3bcaa, - 0xe3bcab, - 0xe3bcac, - 0xe3bcad, - 0xe3bcae, - 0xe3bcaf, - 0xe3bcb0, - 0xe3bcb1, - 0xe3bcb2, - 0xe3bcb3, - 0xe3bcb4, - 0xe3bcb5, - 0xe3bcb6, - 0xe3bcb7, - 0xe3bcb8, - 0xe3bcb9, - 0xe3bcba, - 0xe3bcbb, - 0xe3bcbc, - 0xe3bcbd, - 0xe3bcbe, - 0xe3bcbf, - 0xe3bd80, - 0xe3bd81, - 0xe3bd82, - 0xe3bd83, - 0xe3bd84, - 0xe3bd85, - 0xe3bd86, - 0xe3bd87, - 0xe3bd88, - 0xe3bd89, - 0xe3bd8a, - 0xe3bd8b, - 0xe3bd8c, - 0xe3bd8d, - 0xe3bd8e, - 0xe3bd8f, - 0xe3bd90, - 0xe3bd91, - 0xe3bd92, - 0xe3bd93, - 0xe3bd94, - 0xe3bd95, - 0xe3bd96, - 0xe3bd97, - 0xe3bd98, - 0xe3bd99, - 0xe3bd9a, - 0xe3bd9b, - 0xe3bd9c, - 0xe3bd9d, - 0xe3bd9e, - 0xe3bd9f, - 0xe3bda0, - 0xe3bda1, - 0xe3bda2, - 0xe3bda3, - 0xe3bda4, - 0xe3bda5, - 0xe3bda6, - 0xe3bda7, - 0xe3bda8, - 0xe3bda9, - 0xe3bdaa, - 0xe3bdab, - 0xe3bdac, - 0xe3bdad, - 0xe3bdae, - 0xe3bdaf, - 0xe3bdb0, - 0xe3bdb1, - 0xe3bdb2, - 0xe3bdb3, - 0xe3bdb4, - 0xe3bdb5, - 0xe3bdb6, - 0xe3bdb7, - 0xe3bdb8, - 0xe3bdb9, - 0xe3bdba, - 0xe3bdbb, - 0xe3bdbc, - 0xe3bdbd, - 0xe3bdbe, - 0xe3bdbf, - 0xe3be80, - 0xe3be81, - 0xe3be82, - 0xe3be83, - 0xe3be84, - 0xe3be85, - 0xe3be86, - 0xe3be87, - 0xe3be88, - 0xe3be89, - 0xe3be8a, - 0xe3be8b, - 0xe3be8c, - 0xe3be8d, - 0xe3be8e, - 0xe3be8f, - 0xe3be90, - 0xe3be91, - 0xe3be92, - 0xe3be93, - 0xe3be94, - 0xe3be95, - 0xe3be96, - 0xe3be97, - 0xe3be98, - 0xe3be99, - 0xe3be9a, - 0xe3be9b, - 0xe3be9c, - 0xe3be9d, - 0xe3be9e, - 0xe3be9f, - 0xe3bea0, - 0xe3bea1, - 0xe3bea2, - 0xe3bea3, - 0xe3bea4, - 0xe3bea5, - 0xe3bea6, - 0xe3bea7, - 0xe3bea8, - 0xe3bea9, - 0xe3beaa, - 0xe3beab, - 0xe3beac, - 0xe3bead, - 0xe3beae, - 0xe3beaf, - 0xe3beb0, - 0xe3beb1, - 0xe3beb2, - 0xe3beb3, - 0xe3beb4, - 0xe3beb5, - 0xe3beb6, - 0xe3beb7, - 0xe3beb8, - 0xe3beb9, - 0xe3beba, - 0xe3bebb, - 0xe3bebc, - 0xe3bebd, - 0xe3bebe, - 0xe3bebf, - 0xe3bf80, - 0xe3bf81, - 0xe3bf82, - 0xe3bf83, - 0xe3bf84, - 0xe3bf85, - 0xe3bf86, - 0xe3bf87, - 0xe3bf88, - 0xe3bf89, - 0xe3bf8a, - 0xe3bf8b, - 0xe3bf8c, - 0xe3bf8d, - 0xe3bf8e, - 0xe3bf8f, - 0xe3bf90, - 0xe3bf91, - 0xe3bf92, - 0xe3bf93, - 0xe3bf94, - 0xe3bf95, - 0xe3bf96, - 0xe3bf97, - 0xe3bf98, - 0xe3bf99, - 0xe3bf9a, - 0xe3bf9b, - 0xe3bf9c, - 0xe3bf9d, - 0xe3bf9e, - 0xe3bf9f, - 0xe3bfa0, - 0xe3bfa1, - 0xe3bfa2, - 0xe3bfa3, - 0xe3bfa4, - 0xe3bfa5, - 0xe3bfa6, - 0xe3bfa7, - 0xe3bfa8, - 0xe3bfa9, - 0xe3bfaa, - 0xe3bfab, - 0xe3bfac, - 0xe3bfad, - 0xe3bfae, - 0xe3bfaf, - 0xe3bfb0, - 0xe3bfb1, - 0xe3bfb2, - 0xe3bfb3, - 0xe3bfb4, - 0xe3bfb5, - 0xe3bfb6, - 0xe3bfb7, - 0xe3bfb8, - 0xe3bfb9, - 0xe3bfba, - 0xe3bfbb, - 0xe3bfbc, - 0xe3bfbd, - 0xe3bfbe, - 0xe3bfbf, - 0xe48080, - 0xe48081, - 0xe48082, - 0xe48083, - 0xe48084, - 0xe48085, - 0xe48086, - 0xe48087, - 0xe48088, - 0xe48089, - 0xe4808a, - 0xe4808b, - 0xe4808c, - 0xe4808d, - 0xe4808e, - 0xe4808f, - 0xe48090, - 0xe48091, - 0xe48092, - 0xe48093, - 0xe48094, - 0xe48095, - 0xe48096, - 0xe48097, - 0xe48098, - 0xe48099, - 0xe4809a, - 0xe4809b, - 0xe4809c, - 0xe4809d, - 0xe4809e, - 0xe4809f, - 0xe480a0, - 0xe480a1, - 0xe480a2, - 0xe480a3, - 0xe480a4, - 0xe480a5, - 0xe480a6, - 0xe480a7, - 0xe480a8, - 0xe480a9, - 0xe480aa, - 0xe480ab, - 0xe480ac, - 0xe480ad, - 0xe480ae, - 0xe480af, - 0xe480b0, - 0xe480b1, - 0xe480b2, - 0xe480b3, - 0xe480b4, - 0xe480b5, - 0xe480b6, - 0xe480b7, - 0xe480b8, - 0xe480b9, - 0xe480ba, - 0xe480bb, - 0xe480bc, - 0xe480bd, - 0xe480be, - 0xe480bf, - 0xe48180, - 0xe48181, - 0xe48182, - 0xe48183, - 0xe48184, - 0xe48185, - 0xe48186, - 0xe48187, - 0xe48188, - 0xe48189, - 0xe4818a, - 0xe4818b, - 0xe4818c, - 0xe4818d, - 0xe4818e, - 0xe4818f, - 0xe48190, - 0xe48191, - 0xe48192, - 0xe48193, - 0xe48194, - 0xe48195, - 0xe48196, - 0xe48197, - 0xe48198, - 0xe48199, - 0xe4819a, - 0xe4819b, - 0xe4819c, - 0xe4819d, - 0xe4819e, - 0xe4819f, - 0xe481a0, - 0xe481a1, - 0xe481a2, - 0xe481a3, - 0xe481a4, - 0xe481a5, - 0xe481a6, - 0xe481a7, - 0xe481a8, - 0xe481a9, - 0xe481aa, - 0xe481ab, - 0xe481ac, - 0xe481ad, - 0xe481ae, - 0xe481af, - 0xe481b0, - 0xe481b1, - 0xe481b2, - 0xe481b3, - 0xe481b4, - 0xe481b5, - 0xe481b6, - 0xe481b7, - 0xe481b8, - 0xe481b9, - 0xe481ba, - 0xe481bb, - 0xe481bc, - 0xe481bd, - 0xe481be, - 0xe481bf, - 0xe48280, - 0xe48281, - 0xe48282, - 0xe48283, - 0xe48284, - 0xe48285, - 0xe48286, - 0xe48287, - 0xe48288, - 0xe48289, - 0xe4828a, - 0xe4828b, - 0xe4828c, - 0xe4828d, - 0xe4828e, - 0xe4828f, - 0xe48290, - 0xe48291, - 0xe48292, - 0xe48293, - 0xe48294, - 0xe48295, - 0xe48296, - 0xe48297, - 0xe48298, - 0xe48299, - 0xe4829a, - 0xe4829b, - 0xe4829c, - 0xe4829d, - 0xe4829e, - 0xe4829f, - 0xe482a0, - 0xe482a1, - 0xe482a2, - 0xe482a3, - 0xe482a4, - 0xe482a5, - 0xe482a6, - 0xe482a7, - 0xe482a8, - 0xe482a9, - 0xe482aa, - 0xe482ab, - 0xe482ac, - 0xe482ad, - 0xe482ae, - 0xe482af, - 0xe482b0, - 0xe482b1, - 0xe482b2, - 0xe482b3, - 0xe482b4, - 0xe482b5, - 0xe482b6, - 0xe482b7, - 0xe482b8, - 0xe482b9, - 0xe482ba, - 0xe482bb, - 0xe482bc, - 0xe482bd, - 0xe482be, - 0xe482bf, - 0xe48380, - 0xe48381, - 0xe48382, - 0xe48383, - 0xe48384, - 0xe48385, - 0xe48386, - 0xe48387, - 0xe48388, - 0xe48389, - 0xe4838a, - 0xe4838b, - 0xe4838c, - 0xe4838d, - 0xe4838e, - 0xe4838f, - 0xe48390, - 0xe48391, - 0xe48392, - 0xe48393, - 0xe48394, - 0xe48395, - 0xe48396, - 0xe48397, - 0xe48398, - 0xe48399, - 0xe4839a, - 0xe4839b, - 0xe4839c, - 0xe4839d, - 0xe4839e, - 0xe4839f, - 0xe483a0, - 0xe483a1, - 0xe483a2, - 0xe483a3, - 0xe483a4, - 0xe483a5, - 0xe483a6, - 0xe483a7, - 0xe483a8, - 0xe483a9, - 0xe483aa, - 0xe483ab, - 0xe483ac, - 0xe483ad, - 0xe483ae, - 0xe483af, - 0xe483b0, - 0xe483b1, - 0xe483b2, - 0xe483b3, - 0xe483b4, - 0xe483b5, - 0xe483b6, - 0xe483b7, - 0xe483b8, - 0xe483b9, - 0xe483ba, - 0xe483bb, - 0xe483bc, - 0xe483bd, - 0xe483be, - 0xe483bf, - 0xe48480, - 0xe48481, - 0xe48482, - 0xe48483, - 0xe48484, - 0xe48485, - 0xe48486, - 0xe48487, - 0xe48488, - 0xe48489, - 0xe4848a, - 0xe4848b, - 0xe4848c, - 0xe4848d, - 0xe4848e, - 0xe4848f, - 0xe48490, - 0xe48491, - 0xe48492, - 0xe48493, - 0xe48494, - 0xe48495, - 0xe48496, - 0xe48497, - 0xe48498, - 0xe48499, - 0xe4849a, - 0xe4849b, - 0xe4849c, - 0xe4849d, - 0xe4849e, - 0xe4849f, - 0xe484a0, - 0xe484a1, - 0xe484a2, - 0xe484a3, - 0xe484a4, - 0xe484a5, - 0xe484a6, - 0xe484a7, - 0xe484a8, - 0xe484a9, - 0xe484aa, - 0xe484ab, - 0xe484ac, - 0xe484ad, - 0xe484ae, - 0xe484af, - 0xe484b0, - 0xe484b1, - 0xe484b2, - 0xe484b3, - 0xe484b4, - 0xe484b5, - 0xe484b6, - 0xe484b7, - 0xe484b8, - 0xe484b9, - 0xe484ba, - 0xe484bb, - 0xe484bc, - 0xe484bd, - 0xe484be, - 0xe484bf, - 0xe48580, - 0xe48581, - 0xe48582, - 0xe48583, - 0xe48584, - 0xe48585, - 0xe48586, - 0xe48587, - 0xe48588, - 0xe48589, - 0xe4858a, - 0xe4858b, - 0xe4858c, - 0xe4858d, - 0xe4858e, - 0xe4858f, - 0xe48590, - 0xe48591, - 0xe48592, - 0xe48593, - 0xe48594, - 0xe48595, - 0xe48596, - 0xe48597, - 0xe48598, - 0xe48599, - 0xe4859a, - 0xe4859b, - 0xe4859c, - 0xe4859d, - 0xe4859e, - 0xe4859f, - 0xe485a0, - 0xe485a1, - 0xe485a2, - 0xe485a3, - 0xe485a4, - 0xe485a5, - 0xe485a6, - 0xe485a7, - 0xe485a8, - 0xe485a9, - 0xe485aa, - 0xe485ab, - 0xe485ac, - 0xe485ad, - 0xe485ae, - 0xe485af, - 0xe485b0, - 0xe485b1, - 0xe485b2, - 0xe485b3, - 0xe485b4, - 0xe485b5, - 0xe485b6, - 0xe485b7, - 0xe485b8, - 0xe485b9, - 0xe485ba, - 0xe485bb, - 0xe485bc, - 0xe485bd, - 0xe485be, - 0xe485bf, - 0xe48680, - 0xe48681, - 0xe48682, - 0xe48683, - 0xe48684, - 0xe48685, - 0xe48686, - 0xe48687, - 0xe48688, - 0xe48689, - 0xe4868a, - 0xe4868b, - 0xe4868c, - 0xe4868d, - 0xe4868e, - 0xe4868f, - 0xe48690, - 0xe48691, - 0xe48692, - 0xe48693, - 0xe48694, - 0xe48695, - 0xe48696, - 0xe48697, - 0xe48698, - 0xe48699, - 0xe4869a, - 0xe4869b, - 0xe4869c, - 0xe4869d, - 0xe4869e, - 0xe4869f, - 0xe486a0, - 0xe486a1, - 0xe486a2, - 0xe486a3, - 0xe486a4, - 0xe486a5, - 0xe486a6, - 0xe486a7, - 0xe486a8, - 0xe486a9, - 0xe486aa, - 0xe486ab, - 0xe486ac, - 0xe486ad, - 0xe486ae, - 0xe486af, - 0xe486b0, - 0xe486b1, - 0xe486b2, - 0xe486b3, - 0xe486b4, - 0xe486b5, - 0xe486b6, - 0xe486b7, - 0xe486b8, - 0xe486b9, - 0xe486ba, - 0xe486bb, - 0xe486bc, - 0xe486bd, - 0xe486be, - 0xe486bf, - 0xe48780, - 0xe48781, - 0xe48782, - 0xe48783, - 0xe48784, - 0xe48785, - 0xe48786, - 0xe48787, - 0xe48788, - 0xe48789, - 0xe4878a, - 0xe4878b, - 0xe4878c, - 0xe4878d, - 0xe4878e, - 0xe4878f, - 0xe48790, - 0xe48791, - 0xe48792, - 0xe48793, - 0xe48794, - 0xe48795, - 0xe48796, - 0xe48797, - 0xe48798, - 0xe48799, - 0xe4879a, - 0xe4879b, - 0xe4879c, - 0xe4879d, - 0xe4879e, - 0xe4879f, - 0xe487a0, - 0xe487a1, - 0xe487a2, - 0xe487a3, - 0xe487a4, - 0xe487a5, - 0xe487a6, - 0xe487a7, - 0xe487a8, - 0xe487a9, - 0xe487aa, - 0xe487ab, - 0xe487ac, - 0xe487ad, - 0xe487ae, - 0xe487af, - 0xe487b0, - 0xe487b1, - 0xe487b2, - 0xe487b3, - 0xe487b4, - 0xe487b5, - 0xe487b6, - 0xe487b7, - 0xe487b8, - 0xe487b9, - 0xe487ba, - 0xe487bb, - 0xe487bc, - 0xe487bd, - 0xe487be, - 0xe487bf, - 0xe48880, - 0xe48881, - 0xe48882, - 0xe48883, - 0xe48884, - 0xe48885, - 0xe48886, - 0xe48887, - 0xe48888, - 0xe48889, - 0xe4888a, - 0xe4888b, - 0xe4888c, - 0xe4888d, - 0xe4888e, - 0xe4888f, - 0xe48890, - 0xe48891, - 0xe48892, - 0xe48893, - 0xe48894, - 0xe48895, - 0xe48896, - 0xe48897, - 0xe48898, - 0xe48899, - 0xe4889a, - 0xe4889b, - 0xe4889c, - 0xe4889d, - 0xe4889e, - 0xe4889f, - 0xe488a0, - 0xe488a1, - 0xe488a2, - 0xe488a3, - 0xe488a4, - 0xe488a5, - 0xe488a6, - 0xe488a7, - 0xe488a8, - 0xe488a9, - 0xe488aa, - 0xe488ab, - 0xe488ac, - 0xe488ad, - 0xe488ae, - 0xe488af, - 0xe488b0, - 0xe488b1, - 0xe488b2, - 0xe488b3, - 0xe488b4, - 0xe488b5, - 0xe488b6, - 0xe488b7, - 0xe488b8, - 0xe488b9, - 0xe488ba, - 0xe488bb, - 0xe488bc, - 0xe488bd, - 0xe488be, - 0xe488bf, - 0xe48980, - 0xe48981, - 0xe48982, - 0xe48983, - 0xe48984, - 0xe48985, - 0xe48986, - 0xe48987, - 0xe48988, - 0xe48989, - 0xe4898a, - 0xe4898b, - 0xe4898c, - 0xe4898d, - 0xe4898e, - 0xe4898f, - 0xe48990, - 0xe48991, - 0xe48992, - 0xe48993, - 0xe48994, - 0xe48995, - 0xe48996, - 0xe48997, - 0xe48998, - 0xe48999, - 0xe4899a, - 0xe4899b, - 0xe4899c, - 0xe4899d, - 0xe4899e, - 0xe4899f, - 0xe489a0, - 0xe489a1, - 0xe489a2, - 0xe489a3, - 0xe489a4, - 0xe489a5, - 0xe489a6, - 0xe489a7, - 0xe489a8, - 0xe489a9, - 0xe489aa, - 0xe489ab, - 0xe489ac, - 0xe489ad, - 0xe489ae, - 0xe489af, - 0xe489b0, - 0xe489b1, - 0xe489b2, - 0xe489b3, - 0xe489b4, - 0xe489b5, - 0xe489b6, - 0xe489b7, - 0xe489b8, - 0xe489b9, - 0xe489ba, - 0xe489bb, - 0xe489bc, - 0xe489bd, - 0xe489be, - 0xe489bf, - 0xe48a80, - 0xe48a81, - 0xe48a82, - 0xe48a83, - 0xe48a84, - 0xe48a85, - 0xe48a86, - 0xe48a87, - 0xe48a88, - 0xe48a89, - 0xe48a8a, - 0xe48a8b, - 0xe48a8c, - 0xe48a8d, - 0xe48a8e, - 0xe48a8f, - 0xe48a90, - 0xe48a91, - 0xe48a92, - 0xe48a93, - 0xe48a94, - 0xe48a95, - 0xe48a96, - 0xe48a97, - 0xe48a98, - 0xe48a99, - 0xe48a9a, - 0xe48a9b, - 0xe48a9c, - 0xe48a9d, - 0xe48a9e, - 0xe48a9f, - 0xe48aa0, - 0xe48aa1, - 0xe48aa2, - 0xe48aa3, - 0xe48aa4, - 0xe48aa5, - 0xe48aa6, - 0xe48aa7, - 0xe48aa8, - 0xe48aa9, - 0xe48aaa, - 0xe48aab, - 0xe48aac, - 0xe48aad, - 0xe48aae, - 0xe48aaf, - 0xe48ab0, - 0xe48ab1, - 0xe48ab2, - 0xe48ab3, - 0xe48ab4, - 0xe48ab5, - 0xe48ab6, - 0xe48ab7, - 0xe48ab8, - 0xe48ab9, - 0xe48aba, - 0xe48abb, - 0xe48abc, - 0xe48abd, - 0xe48abe, - 0xe48abf, - 0xe48b80, - 0xe48b81, - 0xe48b82, - 0xe48b83, - 0xe48b84, - 0xe48b85, - 0xe48b86, - 0xe48b87, - 0xe48b88, - 0xe48b89, - 0xe48b8a, - 0xe48b8b, - 0xe48b8c, - 0xe48b8d, - 0xe48b8e, - 0xe48b8f, - 0xe48b90, - 0xe48b91, - 0xe48b92, - 0xe48b93, - 0xe48b94, - 0xe48b95, - 0xe48b96, - 0xe48b97, - 0xe48b98, - 0xe48b99, - 0xe48b9a, - 0xe48b9b, - 0xe48b9c, - 0xe48b9d, - 0xe48b9e, - 0xe48b9f, - 0xe48ba0, - 0xe48ba1, - 0xe48ba2, - 0xe48ba3, - 0xe48ba4, - 0xe48ba5, - 0xe48ba6, - 0xe48ba7, - 0xe48ba8, - 0xe48ba9, - 0xe48baa, - 0xe48bab, - 0xe48bac, - 0xe48bad, - 0xe48bae, - 0xe48baf, - 0xe48bb0, - 0xe48bb1, - 0xe48bb2, - 0xe48bb3, - 0xe48bb4, - 0xe48bb5, - 0xe48bb6, - 0xe48bb7, - 0xe48bb8, - 0xe48bb9, - 0xe48bba, - 0xe48bbb, - 0xe48bbc, - 0xe48bbd, - 0xe48bbe, - 0xe48bbf, - 0xe48c80, - 0xe48c81, - 0xe48c82, - 0xe48c83, - 0xe48c84, - 0xe48c85, - 0xe48c86, - 0xe48c87, - 0xe48c88, - 0xe48c89, - 0xe48c8a, - 0xe48c8b, - 0xe48c8c, - 0xe48c8d, - 0xe48c8e, - 0xe48c8f, - 0xe48c90, - 0xe48c91, - 0xe48c92, - 0xe48c93, - 0xe48c94, - 0xe48c95, - 0xe48c96, - 0xe48c97, - 0xe48c98, - 0xe48c99, - 0xe48c9a, - 0xe48c9b, - 0xe48c9c, - 0xe48c9d, - 0xe48c9e, - 0xe48c9f, - 0xe48ca0, - 0xe48ca1, - 0xe48ca2, - 0xe48ca3, - 0xe48ca4, - 0xe48ca5, - 0xe48ca6, - 0xe48ca7, - 0xe48ca8, - 0xe48ca9, - 0xe48caa, - 0xe48cab, - 0xe48cac, - 0xe48cad, - 0xe48cae, - 0xe48caf, - 0xe48cb0, - 0xe48cb1, - 0xe48cb2, - 0xe48cb3, - 0xe48cb4, - 0xe48cb5, - 0xe48cb6, - 0xe48cb7, - 0xe48cb8, - 0xe48cb9, - 0xe48cba, - 0xe48cbb, - 0xe48cbc, - 0xe48cbd, - 0xe48cbe, - 0xe48cbf, - 0xe48d80, - 0xe48d81, - 0xe48d82, - 0xe48d83, - 0xe48d84, - 0xe48d85, - 0xe48d86, - 0xe48d87, - 0xe48d88, - 0xe48d89, - 0xe48d8a, - 0xe48d8b, - 0xe48d8c, - 0xe48d8d, - 0xe48d8e, - 0xe48d8f, - 0xe48d90, - 0xe48d91, - 0xe48d92, - 0xe48d93, - 0xe48d94, - 0xe48d95, - 0xe48d96, - 0xe48d97, - 0xe48d98, - 0xe48d99, - 0xe48d9a, - 0xe48d9b, - 0xe48d9c, - 0xe48d9d, - 0xe48d9e, - 0xe48d9f, - 0xe48da0, - 0xe48da1, - 0xe48da2, - 0xe48da3, - 0xe48da4, - 0xe48da5, - 0xe48da6, - 0xe48da7, - 0xe48da8, - 0xe48da9, - 0xe48daa, - 0xe48dab, - 0xe48dac, - 0xe48dad, - 0xe48dae, - 0xe48daf, - 0xe48db0, - 0xe48db1, - 0xe48db2, - 0xe48db3, - 0xe48db4, - 0xe48db5, - 0xe48db6, - 0xe48db7, - 0xe48db8, - 0xe48db9, - 0xe48dba, - 0xe48dbb, - 0xe48dbc, - 0xe48dbd, - 0xe48dbe, - 0xe48dbf, - 0xe48e80, - 0xe48e81, - 0xe48e82, - 0xe48e83, - 0xe48e84, - 0xe48e85, - 0xe48e86, - 0xe48e87, - 0xe48e88, - 0xe48e89, - 0xe48e8a, - 0xe48e8b, - 0xe48e8c, - 0xe48e8d, - 0xe48e8e, - 0xe48e8f, - 0xe48e90, - 0xe48e91, - 0xe48e92, - 0xe48e93, - 0xe48e94, - 0xe48e95, - 0xe48e96, - 0xe48e97, - 0xe48e98, - 0xe48e99, - 0xe48e9a, - 0xe48e9b, - 0xe48e9c, - 0xe48e9d, - 0xe48e9e, - 0xe48e9f, - 0xe48ea0, - 0xe48ea1, - 0xe48ea2, - 0xe48ea3, - 0xe48ea4, - 0xe48ea5, - 0xe48ea6, - 0xe48ea7, - 0xe48ea8, - 0xe48ea9, - 0xe48eaa, - 0xe48eab, - 0xe48eac, - 0xe48ead, - 0xe48eae, - 0xe48eaf, - 0xe48eb0, - 0xe48eb1, - 0xe48eb2, - 0xe48eb3, - 0xe48eb4, - 0xe48eb5, - 0xe48eb6, - 0xe48eb7, - 0xe48eb8, - 0xe48eb9, - 0xe48eba, - 0xe48ebb, - 0xe48ebc, - 0xe48ebd, - 0xe48ebe, - 0xe48ebf, - 0xe48f80, - 0xe48f81, - 0xe48f82, - 0xe48f83, - 0xe48f84, - 0xe48f85, - 0xe48f86, - 0xe48f87, - 0xe48f88, - 0xe48f89, - 0xe48f8a, - 0xe48f8b, - 0xe48f8c, - 0xe48f8d, - 0xe48f8e, - 0xe48f8f, - 0xe48f90, - 0xe48f91, - 0xe48f92, - 0xe48f93, - 0xe48f94, - 0xe48f95, - 0xe48f96, - 0xe48f97, - 0xe48f98, - 0xe48f99, - 0xe48f9a, - 0xe48f9b, - 0xe48f9c, - 0xe48f9d, - 0xe48f9e, - 0xe48f9f, - 0xe48fa0, - 0xe48fa1, - 0xe48fa2, - 0xe48fa3, - 0xe48fa4, - 0xe48fa5, - 0xe48fa6, - 0xe48fa7, - 0xe48fa8, - 0xe48fa9, - 0xe48faa, - 0xe48fab, - 0xe48fac, - 0xe48fad, - 0xe48fae, - 0xe48faf, - 0xe48fb0, - 0xe48fb1, - 0xe48fb2, - 0xe48fb3, - 0xe48fb4, - 0xe48fb5, - 0xe48fb6, - 0xe48fb7, - 0xe48fb8, - 0xe48fb9, - 0xe48fba, - 0xe48fbb, - 0xe48fbc, - 0xe48fbd, - 0xe48fbe, - 0xe48fbf, - 0xe49080, - 0xe49081, - 0xe49082, - 0xe49083, - 0xe49084, - 0xe49085, - 0xe49086, - 0xe49087, - 0xe49088, - 0xe49089, - 0xe4908a, - 0xe4908b, - 0xe4908c, - 0xe4908d, - 0xe4908e, - 0xe4908f, - 0xe49090, - 0xe49091, - 0xe49092, - 0xe49093, - 0xe49094, - 0xe49095, - 0xe49096, - 0xe49097, - 0xe49098, - 0xe49099, - 0xe4909a, - 0xe4909b, - 0xe4909c, - 0xe4909d, - 0xe4909e, - 0xe4909f, - 0xe490a0, - 0xe490a1, - 0xe490a2, - 0xe490a3, - 0xe490a4, - 0xe490a5, - 0xe490a6, - 0xe490a7, - 0xe490a8, - 0xe490a9, - 0xe490aa, - 0xe490ab, - 0xe490ac, - 0xe490ad, - 0xe490ae, - 0xe490af, - 0xe490b0, - 0xe490b1, - 0xe490b2, - 0xe490b3, - 0xe490b4, - 0xe490b5, - 0xe490b6, - 0xe490b7, - 0xe490b8, - 0xe490b9, - 0xe490ba, - 0xe490bb, - 0xe490bc, - 0xe490bd, - 0xe490be, - 0xe490bf, - 0xe49180, - 0xe49181, - 0xe49182, - 0xe49183, - 0xe49184, - 0xe49185, - 0xe49186, - 0xe49187, - 0xe49188, - 0xe49189, - 0xe4918a, - 0xe4918b, - 0xe4918c, - 0xe4918d, - 0xe4918e, - 0xe4918f, - 0xe49190, - 0xe49191, - 0xe49192, - 0xe49193, - 0xe49194, - 0xe49195, - 0xe49196, - 0xe49197, - 0xe49198, - 0xe49199, - 0xe4919a, - 0xe4919b, - 0xe4919c, - 0xe4919d, - 0xe4919e, - 0xe4919f, - 0xe491a0, - 0xe491a1, - 0xe491a2, - 0xe491a3, - 0xe491a4, - 0xe491a5, - 0xe491a6, - 0xe491a7, - 0xe491a8, - 0xe491a9, - 0xe491aa, - 0xe491ab, - 0xe491ac, - 0xe491ad, - 0xe491ae, - 0xe491af, - 0xe491b0, - 0xe491b1, - 0xe491b2, - 0xe491b3, - 0xe491b4, - 0xe491b5, - 0xe491b6, - 0xe491b7, - 0xe491b8, - 0xe491b9, - 0xe491ba, - 0xe491bb, - 0xe491bc, - 0xe491bd, - 0xe491be, - 0xe491bf, - 0xe49280, - 0xe49281, - 0xe49282, - 0xe49283, - 0xe49284, - 0xe49285, - 0xe49286, - 0xe49287, - 0xe49288, - 0xe49289, - 0xe4928a, - 0xe4928b, - 0xe4928c, - 0xe4928d, - 0xe4928e, - 0xe4928f, - 0xe49290, - 0xe49291, - 0xe49292, - 0xe49293, - 0xe49294, - 0xe49295, - 0xe49296, - 0xe49297, - 0xe49298, - 0xe49299, - 0xe4929a, - 0xe4929b, - 0xe4929c, - 0xe4929d, - 0xe4929e, - 0xe4929f, - 0xe492a0, - 0xe492a1, - 0xe492a2, - 0xe492a3, - 0xe492a4, - 0xe492a5, - 0xe492a6, - 0xe492a7, - 0xe492a8, - 0xe492a9, - 0xe492aa, - 0xe492ab, - 0xe492ac, - 0xe492ad, - 0xe492ae, - 0xe492af, - 0xe492b0, - 0xe492b1, - 0xe492b2, - 0xe492b3, - 0xe492b4, - 0xe492b5, - 0xe492b6, - 0xe492b7, - 0xe492b8, - 0xe492b9, - 0xe492ba, - 0xe492bb, - 0xe492bc, - 0xe492bd, - 0xe492be, - 0xe492bf, - 0xe49380, - 0xe49381, - 0xe49382, - 0xe49383, - 0xe49384, - 0xe49385, - 0xe49386, - 0xe49387, - 0xe49388, - 0xe49389, - 0xe4938a, - 0xe4938b, - 0xe4938c, - 0xe4938d, - 0xe4938e, - 0xe4938f, - 0xe49390, - 0xe49391, - 0xe49392, - 0xe49393, - 0xe49394, - 0xe49395, - 0xe49396, - 0xe49397, - 0xe49398, - 0xe49399, - 0xe4939a, - 0xe4939b, - 0xe4939c, - 0xe4939d, - 0xe4939e, - 0xe4939f, - 0xe493a0, - 0xe493a1, - 0xe493a2, - 0xe493a3, - 0xe493a4, - 0xe493a5, - 0xe493a6, - 0xe493a7, - 0xe493a8, - 0xe493a9, - 0xe493aa, - 0xe493ab, - 0xe493ac, - 0xe493ad, - 0xe493ae, - 0xe493af, - 0xe493b0, - 0xe493b1, - 0xe493b2, - 0xe493b3, - 0xe493b4, - 0xe493b5, - 0xe493b6, - 0xe493b7, - 0xe493b8, - 0xe493b9, - 0xe493ba, - 0xe493bb, - 0xe493bc, - 0xe493bd, - 0xe493be, - 0xe493bf, - 0xe49480, - 0xe49481, - 0xe49482, - 0xe49483, - 0xe49484, - 0xe49485, - 0xe49486, - 0xe49487, - 0xe49488, - 0xe49489, - 0xe4948a, - 0xe4948b, - 0xe4948c, - 0xe4948d, - 0xe4948e, - 0xe4948f, - 0xe49490, - 0xe49491, - 0xe49492, - 0xe49493, - 0xe49494, - 0xe49495, - 0xe49496, - 0xe49497, - 0xe49498, - 0xe49499, - 0xe4949a, - 0xe4949b, - 0xe4949c, - 0xe4949d, - 0xe4949e, - 0xe4949f, - 0xe494a0, - 0xe494a1, - 0xe494a2, - 0xe494a3, - 0xe494a4, - 0xe494a5, - 0xe494a6, - 0xe494a7, - 0xe494a8, - 0xe494a9, - 0xe494aa, - 0xe494ab, - 0xe494ac, - 0xe494ad, - 0xe494ae, - 0xe494af, - 0xe494b0, - 0xe494b1, - 0xe494b2, - 0xe494b3, - 0xe494b4, - 0xe494b5, - 0xe494b6, - 0xe494b7, - 0xe494b8, - 0xe494b9, - 0xe494ba, - 0xe494bb, - 0xe494bc, - 0xe494bd, - 0xe494be, - 0xe494bf, - 0xe49580, - 0xe49581, - 0xe49582, - 0xe49583, - 0xe49584, - 0xe49585, - 0xe49586, - 0xe49587, - 0xe49588, - 0xe49589, - 0xe4958a, - 0xe4958b, - 0xe4958c, - 0xe4958d, - 0xe4958e, - 0xe4958f, - 0xe49590, - 0xe49591, - 0xe49592, - 0xe49593, - 0xe49594, - 0xe49595, - 0xe49596, - 0xe49597, - 0xe49598, - 0xe49599, - 0xe4959a, - 0xe4959b, - 0xe4959c, - 0xe4959d, - 0xe4959e, - 0xe4959f, - 0xe495a0, - 0xe495a1, - 0xe495a2, - 0xe495a3, - 0xe495a4, - 0xe495a5, - 0xe495a6, - 0xe495a7, - 0xe495a8, - 0xe495a9, - 0xe495aa, - 0xe495ab, - 0xe495ac, - 0xe495ad, - 0xe495ae, - 0xe495af, - 0xe495b0, - 0xe495b1, - 0xe495b2, - 0xe495b3, - 0xe495b4, - 0xe495b5, - 0xe495b6, - 0xe495b7, - 0xe495b8, - 0xe495b9, - 0xe495ba, - 0xe495bb, - 0xe495bc, - 0xe495bd, - 0xe495be, - 0xe495bf, - 0xe49680, - 0xe49681, - 0xe49682, - 0xe49683, - 0xe49684, - 0xe49685, - 0xe49686, - 0xe49687, - 0xe49688, - 0xe49689, - 0xe4968a, - 0xe4968b, - 0xe4968c, - 0xe4968d, - 0xe4968e, - 0xe4968f, - 0xe49690, - 0xe49691, - 0xe49692, - 0xe49693, - 0xe49694, - 0xe49695, - 0xe49696, - 0xe49697, - 0xe49698, - 0xe49699, - 0xe4969a, - 0xe4969b, - 0xe4969c, - 0xe4969d, - 0xe4969e, - 0xe4969f, - 0xe496a0, - 0xe496a1, - 0xe496a2, - 0xe496a3, - 0xe496a4, - 0xe496a5, - 0xe496a6, - 0xe496a7, - 0xe496a8, - 0xe496a9, - 0xe496aa, - 0xe496ab, - 0xe496ac, - 0xe496ad, - 0xe496ae, - 0xe496af, - 0xe496b0, - 0xe496b1, - 0xe496b2, - 0xe496b3, - 0xe496b4, - 0xe496b5, - 0xe496b6, - 0xe496b7, - 0xe496b8, - 0xe496b9, - 0xe496ba, - 0xe496bb, - 0xe496bc, - 0xe496bd, - 0xe496be, - 0xe496bf, - 0xe49780, - 0xe49781, - 0xe49782, - 0xe49783, - 0xe49784, - 0xe49785, - 0xe49786, - 0xe49787, - 0xe49788, - 0xe49789, - 0xe4978a, - 0xe4978b, - 0xe4978c, - 0xe4978d, - 0xe4978e, - 0xe4978f, - 0xe49790, - 0xe49791, - 0xe49792, - 0xe49793, - 0xe49794, - 0xe49795, - 0xe49796, - 0xe49797, - 0xe49798, - 0xe49799, - 0xe4979a, - 0xe4979b, - 0xe4979c, - 0xe4979d, - 0xe4979e, - 0xe4979f, - 0xe497a0, - 0xe497a1, - 0xe497a2, - 0xe497a3, - 0xe497a4, - 0xe497a5, - 0xe497a6, - 0xe497a7, - 0xe497a8, - 0xe497a9, - 0xe497aa, - 0xe497ab, - 0xe497ac, - 0xe497ad, - 0xe497ae, - 0xe497af, - 0xe497b0, - 0xe497b1, - 0xe497b2, - 0xe497b3, - 0xe497b4, - 0xe497b5, - 0xe497b6, - 0xe497b7, - 0xe497b8, - 0xe497b9, - 0xe497ba, - 0xe497bb, - 0xe497bc, - 0xe497bd, - 0xe497be, - 0xe497bf, - 0xe49880, - 0xe49881, - 0xe49882, - 0xe49883, - 0xe49884, - 0xe49885, - 0xe49886, - 0xe49887, - 0xe49888, - 0xe49889, - 0xe4988a, - 0xe4988b, - 0xe4988c, - 0xe4988d, - 0xe4988e, - 0xe4988f, - 0xe49890, - 0xe49891, - 0xe49892, - 0xe49893, - 0xe49894, - 0xe49895, - 0xe49896, - 0xe49897, - 0xe49898, - 0xe49899, - 0xe4989a, - 0xe4989b, - 0xe4989c, - 0xe4989d, - 0xe4989e, - 0xe4989f, - 0xe498a0, - 0xe498a1, - 0xe498a2, - 0xe498a3, - 0xe498a4, - 0xe498a5, - 0xe498a6, - 0xe498a7, - 0xe498a8, - 0xe498a9, - 0xe498aa, - 0xe498ab, - 0xe498ac, - 0xe498ad, - 0xe498ae, - 0xe498af, - 0xe498b0, - 0xe498b1, - 0xe498b2, - 0xe498b3, - 0xe498b4, - 0xe498b5, - 0xe498b6, - 0xe498b7, - 0xe498b8, - 0xe498b9, - 0xe498ba, - 0xe498bb, - 0xe498bc, - 0xe498bd, - 0xe498be, - 0xe498bf, - 0xe49980, - 0xe49981, - 0xe49982, - 0xe49983, - 0xe49984, - 0xe49985, - 0xe49986, - 0xe49987, - 0xe49988, - 0xe49989, - 0xe4998a, - 0xe4998b, - 0xe4998c, - 0xe4998d, - 0xe4998e, - 0xe4998f, - 0xe49990, - 0xe49991, - 0xe49992, - 0xe49993, - 0xe49994, - 0xe49995, - 0xe49996, - 0xe49997, - 0xe49998, - 0xe49999, - 0xe4999a, - 0xe4999b, - 0xe4999c, - 0xe4999d, - 0xe4999e, - 0xe4999f, - 0xe499a0, - 0xe499a1, - 0xe499a2, - 0xe499a3, - 0xe499a4, - 0xe499a5, - 0xe499a6, - 0xe499a7, - 0xe499a8, - 0xe499a9, - 0xe499aa, - 0xe499ab, - 0xe499ac, - 0xe499ad, - 0xe499ae, - 0xe499af, - 0xe499b0, - 0xe499b1, - 0xe499b2, - 0xe499b3, - 0xe499b4, - 0xe499b5, - 0xe499b6, - 0xe499b7, - 0xe499b8, - 0xe499b9, - 0xe499ba, - 0xe499bb, - 0xe499bc, - 0xe499bd, - 0xe499be, - 0xe499bf, - 0xe49a80, - 0xe49a81, - 0xe49a82, - 0xe49a83, - 0xe49a84, - 0xe49a85, - 0xe49a86, - 0xe49a87, - 0xe49a88, - 0xe49a89, - 0xe49a8a, - 0xe49a8b, - 0xe49a8c, - 0xe49a8d, - 0xe49a8e, - 0xe49a8f, - 0xe49a90, - 0xe49a91, - 0xe49a92, - 0xe49a93, - 0xe49a94, - 0xe49a95, - 0xe49a96, - 0xe49a97, - 0xe49a98, - 0xe49a99, - 0xe49a9a, - 0xe49a9b, - 0xe49a9c, - 0xe49a9d, - 0xe49a9e, - 0xe49a9f, - 0xe49aa0, - 0xe49aa1, - 0xe49aa2, - 0xe49aa3, - 0xe49aa4, - 0xe49aa5, - 0xe49aa6, - 0xe49aa7, - 0xe49aa8, - 0xe49aa9, - 0xe49aaa, - 0xe49aab, - 0xe49aac, - 0xe49aad, - 0xe49aae, - 0xe49aaf, - 0xe49ab0, - 0xe49ab1, - 0xe49ab2, - 0xe49ab3, - 0xe49ab4, - 0xe49ab5, - 0xe49ab6, - 0xe49ab7, - 0xe49ab8, - 0xe49ab9, - 0xe49aba, - 0xe49abb, - 0xe49abc, - 0xe49abd, - 0xe49abe, - 0xe49abf, - 0xe49b80, - 0xe49b81, - 0xe49b82, - 0xe49b83, - 0xe49b84, - 0xe49b85, - 0xe49b86, - 0xe49b87, - 0xe49b88, - 0xe49b89, - 0xe49b8a, - 0xe49b8b, - 0xe49b8c, - 0xe49b8d, - 0xe49b8e, - 0xe49b8f, - 0xe49b90, - 0xe49b91, - 0xe49b92, - 0xe49b93, - 0xe49b94, - 0xe49b95, - 0xe49b96, - 0xe49b97, - 0xe49b98, - 0xe49b99, - 0xe49b9a, - 0xe49b9b, - 0xe49b9c, - 0xe49b9d, - 0xe49b9e, - 0xe49b9f, - 0xe49ba0, - 0xe49ba1, - 0xe49ba2, - 0xe49ba3, - 0xe49ba4, - 0xe49ba5, - 0xe49ba6, - 0xe49ba7, - 0xe49ba8, - 0xe49ba9, - 0xe49baa, - 0xe49bab, - 0xe49bac, - 0xe49bad, - 0xe49bae, - 0xe49baf, - 0xe49bb0, - 0xe49bb1, - 0xe49bb2, - 0xe49bb3, - 0xe49bb4, - 0xe49bb5, - 0xe49bb6, - 0xe49bb7, - 0xe49bb8, - 0xe49bb9, - 0xe49bba, - 0xe49bbb, - 0xe49bbc, - 0xe49bbd, - 0xe49bbe, - 0xe49bbf, - 0xe49c80, - 0xe49c81, - 0xe49c82, - 0xe49c83, - 0xe49c84, - 0xe49c85, - 0xe49c86, - 0xe49c87, - 0xe49c88, - 0xe49c89, - 0xe49c8a, - 0xe49c8b, - 0xe49c8c, - 0xe49c8d, - 0xe49c8e, - 0xe49c8f, - 0xe49c90, - 0xe49c91, - 0xe49c92, - 0xe49c93, - 0xe49c94, - 0xe49c95, - 0xe49c96, - 0xe49c97, - 0xe49c98, - 0xe49c99, - 0xe49c9a, - 0xe49c9b, - 0xe49c9c, - 0xe49c9d, - 0xe49c9e, - 0xe49c9f, - 0xe49ca0, - 0xe49ca1, - 0xe49ca2, - 0xe49ca3, - 0xe49ca4, - 0xe49ca5, - 0xe49ca6, - 0xe49ca7, - 0xe49ca8, - 0xe49ca9, - 0xe49caa, - 0xe49cab, - 0xe49cac, - 0xe49cad, - 0xe49cae, - 0xe49caf, - 0xe49cb0, - 0xe49cb1, - 0xe49cb2, - 0xe49cb3, - 0xe49cb4, - 0xe49cb5, - 0xe49cb6, - 0xe49cb7, - 0xe49cb8, - 0xe49cb9, - 0xe49cba, - 0xe49cbb, - 0xe49cbc, - 0xe49cbd, - 0xe49cbe, - 0xe49cbf, - 0xe49d80, - 0xe49d81, - 0xe49d82, - 0xe49d83, - 0xe49d84, - 0xe49d85, - 0xe49d86, - 0xe49d87, - 0xe49d88, - 0xe49d89, - 0xe49d8a, - 0xe49d8b, - 0xe49d8c, - 0xe49d8d, - 0xe49d8e, - 0xe49d8f, - 0xe49d90, - 0xe49d91, - 0xe49d92, - 0xe49d93, - 0xe49d94, - 0xe49d95, - 0xe49d96, - 0xe49d97, - 0xe49d98, - 0xe49d99, - 0xe49d9a, - 0xe49d9b, - 0xe49d9c, - 0xe49d9d, - 0xe49d9e, - 0xe49d9f, - 0xe49da0, - 0xe49da1, - 0xe49da2, - 0xe49da3, - 0xe49da4, - 0xe49da5, - 0xe49da6, - 0xe49da7, - 0xe49da8, - 0xe49da9, - 0xe49daa, - 0xe49dab, - 0xe49dac, - 0xe49dad, - 0xe49dae, - 0xe49daf, - 0xe49db0, - 0xe49db1, - 0xe49db2, - 0xe49db3, - 0xe49db4, - 0xe49db5, - 0xe49db6, - 0xe49db7, - 0xe49db8, - 0xe49db9, - 0xe49dba, - 0xe49dbb, - 0xe49dbc, - 0xe49dbd, - 0xe49dbe, - 0xe49dbf, - 0xe49e80, - 0xe49e81, - 0xe49e82, - 0xe49e83, - 0xe49e84, - 0xe49e85, - 0xe49e86, - 0xe49e87, - 0xe49e88, - 0xe49e89, - 0xe49e8a, - 0xe49e8b, - 0xe49e8c, - 0xe49e8d, - 0xe49e8e, - 0xe49e8f, - 0xe49e90, - 0xe49e91, - 0xe49e92, - 0xe49e93, - 0xe49e94, - 0xe49e95, - 0xe49e96, - 0xe49e97, - 0xe49e98, - 0xe49e99, - 0xe49e9a, - 0xe49e9b, - 0xe49e9c, - 0xe49e9d, - 0xe49e9e, - 0xe49e9f, - 0xe49ea0, - 0xe49ea1, - 0xe49ea2, - 0xe49ea3, - 0xe49ea4, - 0xe49ea5, - 0xe49ea6, - 0xe49ea7, - 0xe49ea8, - 0xe49ea9, - 0xe49eaa, - 0xe49eab, - 0xe49eac, - 0xe49ead, - 0xe49eae, - 0xe49eaf, - 0xe49eb0, - 0xe49eb1, - 0xe49eb2, - 0xe49eb3, - 0xe49eb4, - 0xe49eb5, - 0xe49eb6, - 0xe49eb7, - 0xe49eb8, - 0xe49eb9, - 0xe49eba, - 0xe49ebb, - 0xe49ebc, - 0xe49ebd, - 0xe49ebe, - 0xe49ebf, - 0xe49f80, - 0xe49f81, - 0xe49f82, - 0xe49f83, - 0xe49f84, - 0xe49f85, - 0xe49f86, - 0xe49f87, - 0xe49f88, - 0xe49f89, - 0xe49f8a, - 0xe49f8b, - 0xe49f8c, - 0xe49f8d, - 0xe49f8e, - 0xe49f8f, - 0xe49f90, - 0xe49f91, - 0xe49f92, - 0xe49f93, - 0xe49f94, - 0xe49f95, - 0xe49f96, - 0xe49f97, - 0xe49f98, - 0xe49f99, - 0xe49f9a, - 0xe49f9b, - 0xe49f9c, - 0xe49f9d, - 0xe49f9e, - 0xe49f9f, - 0xe49fa0, - 0xe49fa1, - 0xe49fa2, - 0xe49fa3, - 0xe49fa4, - 0xe49fa5, - 0xe49fa6, - 0xe49fa7, - 0xe49fa8, - 0xe49fa9, - 0xe49faa, - 0xe49fab, - 0xe49fac, - 0xe49fad, - 0xe49fae, - 0xe49faf, - 0xe49fb0, - 0xe49fb1, - 0xe49fb2, - 0xe49fb3, - 0xe49fb4, - 0xe49fb5, - 0xe49fb6, - 0xe49fb7, - 0xe49fb8, - 0xe49fb9, - 0xe49fba, - 0xe49fbb, - 0xe49fbc, - 0xe49fbd, - 0xe49fbe, - 0xe49fbf, - 0xe4a080, - 0xe4a081, - 0xe4a082, - 0xe4a083, - 0xe4a084, - 0xe4a085, - 0xe4a086, - 0xe4a087, - 0xe4a088, - 0xe4a089, - 0xe4a08a, - 0xe4a08b, - 0xe4a08c, - 0xe4a08d, - 0xe4a08e, - 0xe4a08f, - 0xe4a090, - 0xe4a091, - 0xe4a092, - 0xe4a093, - 0xe4a094, - 0xe4a095, - 0xe4a096, - 0xe4a097, - 0xe4a098, - 0xe4a099, - 0xe4a09a, - 0xe4a09b, - 0xe4a09c, - 0xe4a09d, - 0xe4a09e, - 0xe4a09f, - 0xe4a0a0, - 0xe4a0a1, - 0xe4a0a2, - 0xe4a0a3, - 0xe4a0a4, - 0xe4a0a5, - 0xe4a0a6, - 0xe4a0a7, - 0xe4a0a8, - 0xe4a0a9, - 0xe4a0aa, - 0xe4a0ab, - 0xe4a0ac, - 0xe4a0ad, - 0xe4a0ae, - 0xe4a0af, - 0xe4a0b0, - 0xe4a0b1, - 0xe4a0b2, - 0xe4a0b3, - 0xe4a0b4, - 0xe4a0b5, - 0xe4a0b6, - 0xe4a0b7, - 0xe4a0b8, - 0xe4a0b9, - 0xe4a0ba, - 0xe4a0bb, - 0xe4a0bc, - 0xe4a0bd, - 0xe4a0be, - 0xe4a0bf, - 0xe4a180, - 0xe4a181, - 0xe4a182, - 0xe4a183, - 0xe4a184, - 0xe4a185, - 0xe4a186, - 0xe4a187, - 0xe4a188, - 0xe4a189, - 0xe4a18a, - 0xe4a18b, - 0xe4a18c, - 0xe4a18d, - 0xe4a18e, - 0xe4a18f, - 0xe4a190, - 0xe4a191, - 0xe4a192, - 0xe4a193, - 0xe4a194, - 0xe4a195, - 0xe4a196, - 0xe4a197, - 0xe4a198, - 0xe4a199, - 0xe4a19a, - 0xe4a19b, - 0xe4a19c, - 0xe4a19d, - 0xe4a19e, - 0xe4a19f, - 0xe4a1a0, - 0xe4a1a1, - 0xe4a1a2, - 0xe4a1a3, - 0xe4a1a4, - 0xe4a1a5, - 0xe4a1a6, - 0xe4a1a7, - 0xe4a1a8, - 0xe4a1a9, - 0xe4a1aa, - 0xe4a1ab, - 0xe4a1ac, - 0xe4a1ad, - 0xe4a1ae, - 0xe4a1af, - 0xe4a1b0, - 0xe4a1b1, - 0xe4a1b2, - 0xe4a1b3, - 0xe4a1b4, - 0xe4a1b5, - 0xe4a1b6, - 0xe4a1b7, - 0xe4a1b8, - 0xe4a1b9, - 0xe4a1ba, - 0xe4a1bb, - 0xe4a1bc, - 0xe4a1bd, - 0xe4a1be, - 0xe4a1bf, - 0xe4a280, - 0xe4a281, - 0xe4a282, - 0xe4a283, - 0xe4a284, - 0xe4a285, - 0xe4a286, - 0xe4a287, - 0xe4a288, - 0xe4a289, - 0xe4a28a, - 0xe4a28b, - 0xe4a28c, - 0xe4a28d, - 0xe4a28e, - 0xe4a28f, - 0xe4a290, - 0xe4a291, - 0xe4a292, - 0xe4a293, - 0xe4a294, - 0xe4a295, - 0xe4a296, - 0xe4a297, - 0xe4a298, - 0xe4a299, - 0xe4a29a, - 0xe4a29b, - 0xe4a29c, - 0xe4a29d, - 0xe4a29e, - 0xe4a29f, - 0xe4a2a0, - 0xe4a2a1, - 0xe4a2a2, - 0xe4a2a3, - 0xe4a2a4, - 0xe4a2a5, - 0xe4a2a6, - 0xe4a2a7, - 0xe4a2a8, - 0xe4a2a9, - 0xe4a2aa, - 0xe4a2ab, - 0xe4a2ac, - 0xe4a2ad, - 0xe4a2ae, - 0xe4a2af, - 0xe4a2b0, - 0xe4a2b1, - 0xe4a2b2, - 0xe4a2b3, - 0xe4a2b4, - 0xe4a2b5, - 0xe4a2b6, - 0xe4a2b7, - 0xe4a2b8, - 0xe4a2b9, - 0xe4a2ba, - 0xe4a2bb, - 0xe4a2bc, - 0xe4a2bd, - 0xe4a2be, - 0xe4a2bf, - 0xe4a380, - 0xe4a381, - 0xe4a382, - 0xe4a383, - 0xe4a384, - 0xe4a385, - 0xe4a386, - 0xe4a387, - 0xe4a388, - 0xe4a389, - 0xe4a38a, - 0xe4a38b, - 0xe4a38c, - 0xe4a38d, - 0xe4a38e, - 0xe4a38f, - 0xe4a390, - 0xe4a391, - 0xe4a392, - 0xe4a393, - 0xe4a394, - 0xe4a395, - 0xe4a396, - 0xe4a397, - 0xe4a398, - 0xe4a399, - 0xe4a39a, - 0xe4a39b, - 0xe4a39c, - 0xe4a39d, - 0xe4a39e, - 0xe4a39f, - 0xe4a3a0, - 0xe4a3a1, - 0xe4a3a2, - 0xe4a3a3, - 0xe4a3a4, - 0xe4a3a5, - 0xe4a3a6, - 0xe4a3a7, - 0xe4a3a8, - 0xe4a3a9, - 0xe4a3aa, - 0xe4a3ab, - 0xe4a3ac, - 0xe4a3ad, - 0xe4a3ae, - 0xe4a3af, - 0xe4a3b0, - 0xe4a3b1, - 0xe4a3b2, - 0xe4a3b3, - 0xe4a3b4, - 0xe4a3b5, - 0xe4a3b6, - 0xe4a3b7, - 0xe4a3b8, - 0xe4a3b9, - 0xe4a3ba, - 0xe4a3bb, - 0xe4a3bc, - 0xe4a3bd, - 0xe4a3be, - 0xe4a3bf, - 0xe4a480, - 0xe4a481, - 0xe4a482, - 0xe4a483, - 0xe4a484, - 0xe4a485, - 0xe4a486, - 0xe4a487, - 0xe4a488, - 0xe4a489, - 0xe4a48a, - 0xe4a48b, - 0xe4a48c, - 0xe4a48d, - 0xe4a48e, - 0xe4a48f, - 0xe4a490, - 0xe4a491, - 0xe4a492, - 0xe4a493, - 0xe4a494, - 0xe4a495, - 0xe4a496, - 0xe4a497, - 0xe4a498, - 0xe4a499, - 0xe4a49a, - 0xe4a49b, - 0xe4a49c, - 0xe4a49d, - 0xe4a49e, - 0xe4a49f, - 0xe4a4a0, - 0xe4a4a1, - 0xe4a4a2, - 0xe4a4a3, - 0xe4a4a4, - 0xe4a4a5, - 0xe4a4a6, - 0xe4a4a7, - 0xe4a4a8, - 0xe4a4a9, - 0xe4a4aa, - 0xe4a4ab, - 0xe4a4ac, - 0xe4a4ad, - 0xe4a4ae, - 0xe4a4af, - 0xe4a4b0, - 0xe4a4b1, - 0xe4a4b2, - 0xe4a4b3, - 0xe4a4b4, - 0xe4a4b5, - 0xe4a4b6, - 0xe4a4b7, - 0xe4a4b8, - 0xe4a4b9, - 0xe4a4ba, - 0xe4a4bb, - 0xe4a4bc, - 0xe4a4bd, - 0xe4a4be, - 0xe4a4bf, - 0xe4a580, - 0xe4a581, - 0xe4a582, - 0xe4a583, - 0xe4a584, - 0xe4a585, - 0xe4a586, - 0xe4a587, - 0xe4a588, - 0xe4a589, - 0xe4a58a, - 0xe4a58b, - 0xe4a58c, - 0xe4a58d, - 0xe4a58e, - 0xe4a58f, - 0xe4a590, - 0xe4a591, - 0xe4a592, - 0xe4a593, - 0xe4a594, - 0xe4a595, - 0xe4a596, - 0xe4a597, - 0xe4a598, - 0xe4a599, - 0xe4a59a, - 0xe4a59b, - 0xe4a59c, - 0xe4a59d, - 0xe4a59e, - 0xe4a59f, - 0xe4a5a0, - 0xe4a5a1, - 0xe4a5a2, - 0xe4a5a3, - 0xe4a5a4, - 0xe4a5a5, - 0xe4a5a6, - 0xe4a5a7, - 0xe4a5a8, - 0xe4a5a9, - 0xe4a5aa, - 0xe4a5ab, - 0xe4a5ac, - 0xe4a5ad, - 0xe4a5ae, - 0xe4a5af, - 0xe4a5b0, - 0xe4a5b1, - 0xe4a5b2, - 0xe4a5b3, - 0xe4a5b4, - 0xe4a5b5, - 0xe4a5b6, - 0xe4a5b7, - 0xe4a5b8, - 0xe4a5b9, - 0xe4a5ba, - 0xe4a5bb, - 0xe4a5bc, - 0xe4a5bd, - 0xe4a5be, - 0xe4a5bf, - 0xe4a680, - 0xe4a681, - 0xe4a682, - 0xe4a683, - 0xe4a684, - 0xe4a685, - 0xe4a686, - 0xe4a687, - 0xe4a688, - 0xe4a689, - 0xe4a68a, - 0xe4a68b, - 0xe4a68c, - 0xe4a68d, - 0xe4a68e, - 0xe4a68f, - 0xe4a690, - 0xe4a691, - 0xe4a692, - 0xe4a693, - 0xe4a694, - 0xe4a695, - 0xe4a696, - 0xe4a697, - 0xe4a698, - 0xe4a699, - 0xe4a69a, - 0xe4a69b, - 0xe4a69c, - 0xe4a69d, - 0xe4a69e, - 0xe4a69f, - 0xe4a6a0, - 0xe4a6a1, - 0xe4a6a2, - 0xe4a6a3, - 0xe4a6a4, - 0xe4a6a5, - 0xe4a6a6, - 0xe4a6a7, - 0xe4a6a8, - 0xe4a6a9, - 0xe4a6aa, - 0xe4a6ab, - 0xe4a6ac, - 0xe4a6ad, - 0xe4a6ae, - 0xe4a6af, - 0xe4a6b0, - 0xe4a6b1, - 0xe4a6b2, - 0xe4a6b3, - 0xe4a6b4, - 0xe4a6b5, - 0xe4a6b6, - 0xe4a6b7, - 0xe4a6b8, - 0xe4a6b9, - 0xe4a6ba, - 0xe4a6bb, - 0xe4a6bc, - 0xe4a6bd, - 0xe4a6be, - 0xe4a6bf, - 0xe4a780, - 0xe4a781, - 0xe4a782, - 0xe4a783, - 0xe4a784, - 0xe4a785, - 0xe4a786, - 0xe4a787, - 0xe4a788, - 0xe4a789, - 0xe4a78a, - 0xe4a78b, - 0xe4a78c, - 0xe4a78d, - 0xe4a78e, - 0xe4a78f, - 0xe4a790, - 0xe4a791, - 0xe4a792, - 0xe4a793, - 0xe4a794, - 0xe4a795, - 0xe4a796, - 0xe4a797, - 0xe4a798, - 0xe4a799, - 0xe4a79a, - 0xe4a79b, - 0xe4a79c, - 0xe4a79d, - 0xe4a79e, - 0xe4a79f, - 0xe4a7a0, - 0xe4a7a1, - 0xe4a7a2, - 0xe4a7a3, - 0xe4a7a4, - 0xe4a7a5, - 0xe4a7a6, - 0xe4a7a7, - 0xe4a7a8, - 0xe4a7a9, - 0xe4a7aa, - 0xe4a7ab, - 0xe4a7ac, - 0xe4a7ad, - 0xe4a7ae, - 0xe4a7af, - 0xe4a7b0, - 0xe4a7b1, - 0xe4a7b2, - 0xe4a7b3, - 0xe4a7b4, - 0xe4a7b5, - 0xe4a7b6, - 0xe4a7b7, - 0xe4a7b8, - 0xe4a7b9, - 0xe4a7ba, - 0xe4a7bb, - 0xe4a7bc, - 0xe4a7bd, - 0xe4a7be, - 0xe4a7bf, - 0xe4a880, - 0xe4a881, - 0xe4a882, - 0xe4a883, - 0xe4a884, - 0xe4a885, - 0xe4a886, - 0xe4a887, - 0xe4a888, - 0xe4a889, - 0xe4a88a, - 0xe4a88b, - 0xe4a88c, - 0xe4a88d, - 0xe4a88e, - 0xe4a88f, - 0xe4a890, - 0xe4a891, - 0xe4a892, - 0xe4a893, - 0xe4a894, - 0xe4a895, - 0xe4a896, - 0xe4a897, - 0xe4a898, - 0xe4a899, - 0xe4a89a, - 0xe4a89b, - 0xe4a89c, - 0xe4a89d, - 0xe4a89e, - 0xe4a89f, - 0xe4a8a0, - 0xe4a8a1, - 0xe4a8a2, - 0xe4a8a3, - 0xe4a8a4, - 0xe4a8a5, - 0xe4a8a6, - 0xe4a8a7, - 0xe4a8a8, - 0xe4a8a9, - 0xe4a8aa, - 0xe4a8ab, - 0xe4a8ac, - 0xe4a8ad, - 0xe4a8ae, - 0xe4a8af, - 0xe4a8b0, - 0xe4a8b1, - 0xe4a8b2, - 0xe4a8b3, - 0xe4a8b4, - 0xe4a8b5, - 0xe4a8b6, - 0xe4a8b7, - 0xe4a8b8, - 0xe4a8b9, - 0xe4a8ba, - 0xe4a8bb, - 0xe4a8bc, - 0xe4a8bd, - 0xe4a8be, - 0xe4a8bf, - 0xe4a980, - 0xe4a981, - 0xe4a982, - 0xe4a983, - 0xe4a984, - 0xe4a985, - 0xe4a986, - 0xe4a987, - 0xe4a988, - 0xe4a989, - 0xe4a98a, - 0xe4a98b, - 0xe4a98c, - 0xe4a98d, - 0xe4a98e, - 0xe4a98f, - 0xe4a990, - 0xe4a991, - 0xe4a992, - 0xe4a993, - 0xe4a994, - 0xe4a995, - 0xe4a996, - 0xe4a997, - 0xe4a998, - 0xe4a999, - 0xe4a99a, - 0xe4a99b, - 0xe4a99c, - 0xe4a99d, - 0xe4a99e, - 0xe4a99f, - 0xe4a9a0, - 0xe4a9a1, - 0xe4a9a2, - 0xe4a9a3, - 0xe4a9a4, - 0xe4a9a5, - 0xe4a9a6, - 0xe4a9a7, - 0xe4a9a8, - 0xe4a9a9, - 0xe4a9aa, - 0xe4a9ab, - 0xe4a9ac, - 0xe4a9ad, - 0xe4a9ae, - 0xe4a9af, - 0xe4a9b0, - 0xe4a9b1, - 0xe4a9b2, - 0xe4a9b3, - 0xe4a9b4, - 0xe4a9b5, - 0xe4a9b6, - 0xe4a9b7, - 0xe4a9b8, - 0xe4a9b9, - 0xe4a9ba, - 0xe4a9bb, - 0xe4a9bc, - 0xe4a9bd, - 0xe4a9be, - 0xe4a9bf, - 0xe4aa80, - 0xe4aa81, - 0xe4aa82, - 0xe4aa83, - 0xe4aa84, - 0xe4aa85, - 0xe4aa86, - 0xe4aa87, - 0xe4aa88, - 0xe4aa89, - 0xe4aa8a, - 0xe4aa8b, - 0xe4aa8c, - 0xe4aa8d, - 0xe4aa8e, - 0xe4aa8f, - 0xe4aa90, - 0xe4aa91, - 0xe4aa92, - 0xe4aa93, - 0xe4aa94, - 0xe4aa95, - 0xe4aa96, - 0xe4aa97, - 0xe4aa98, - 0xe4aa99, - 0xe4aa9a, - 0xe4aa9b, - 0xe4aa9c, - 0xe4aa9d, - 0xe4aa9e, - 0xe4aa9f, - 0xe4aaa0, - 0xe4aaa1, - 0xe4aaa2, - 0xe4aaa3, - 0xe4aaa4, - 0xe4aaa5, - 0xe4aaa6, - 0xe4aaa7, - 0xe4aaa8, - 0xe4aaa9, - 0xe4aaaa, - 0xe4aaab, - 0xe4aaac, - 0xe4aaad, - 0xe4aaae, - 0xe4aaaf, - 0xe4aab0, - 0xe4aab1, - 0xe4aab2, - 0xe4aab3, - 0xe4aab4, - 0xe4aab5, - 0xe4aab6, - 0xe4aab7, - 0xe4aab8, - 0xe4aab9, - 0xe4aaba, - 0xe4aabb, - 0xe4aabc, - 0xe4aabd, - 0xe4aabe, - 0xe4aabf, - 0xe4ab80, - 0xe4ab81, - 0xe4ab82, - 0xe4ab83, - 0xe4ab84, - 0xe4ab85, - 0xe4ab86, - 0xe4ab87, - 0xe4ab88, - 0xe4ab89, - 0xe4ab8a, - 0xe4ab8b, - 0xe4ab8c, - 0xe4ab8d, - 0xe4ab8e, - 0xe4ab8f, - 0xe4ab90, - 0xe4ab91, - 0xe4ab92, - 0xe4ab93, - 0xe4ab94, - 0xe4ab95, - 0xe4ab96, - 0xe4ab97, - 0xe4ab98, - 0xe4ab99, - 0xe4ab9a, - 0xe4ab9b, - 0xe4ab9c, - 0xe4ab9d, - 0xe4ab9e, - 0xe4ab9f, - 0xe4aba0, - 0xe4aba1, - 0xe4aba2, - 0xe4aba3, - 0xe4aba4, - 0xe4aba5, - 0xe4aba6, - 0xe4aba7, - 0xe4aba8, - 0xe4aba9, - 0xe4abaa, - 0xe4abab, - 0xe4abac, - 0xe4abad, - 0xe4abae, - 0xe4abaf, - 0xe4abb0, - 0xe4abb1, - 0xe4abb2, - 0xe4abb3, - 0xe4abb4, - 0xe4abb5, - 0xe4abb6, - 0xe4abb7, - 0xe4abb8, - 0xe4abb9, - 0xe4abba, - 0xe4abbb, - 0xe4abbc, - 0xe4abbd, - 0xe4abbe, - 0xe4abbf, - 0xe4ac80, - 0xe4ac81, - 0xe4ac82, - 0xe4ac83, - 0xe4ac84, - 0xe4ac85, - 0xe4ac86, - 0xe4ac87, - 0xe4ac88, - 0xe4ac89, - 0xe4ac8a, - 0xe4ac8b, - 0xe4ac8c, - 0xe4ac8d, - 0xe4ac8e, - 0xe4ac8f, - 0xe4ac90, - 0xe4ac91, - 0xe4ac92, - 0xe4ac93, - 0xe4ac94, - 0xe4ac95, - 0xe4ac96, - 0xe4ac97, - 0xe4ac98, - 0xe4ac99, - 0xe4ac9a, - 0xe4ac9b, - 0xe4ac9c, - 0xe4ac9d, - 0xe4ac9e, - 0xe4ac9f, - 0xe4aca0, - 0xe4aca1, - 0xe4aca2, - 0xe4aca3, - 0xe4aca4, - 0xe4aca5, - 0xe4aca6, - 0xe4aca7, - 0xe4aca8, - 0xe4aca9, - 0xe4acaa, - 0xe4acab, - 0xe4acac, - 0xe4acad, - 0xe4acae, - 0xe4acaf, - 0xe4acb0, - 0xe4acb1, - 0xe4acb2, - 0xe4acb3, - 0xe4acb4, - 0xe4acb5, - 0xe4acb6, - 0xe4acb7, - 0xe4acb8, - 0xe4acb9, - 0xe4acba, - 0xe4acbb, - 0xe4acbc, - 0xe4acbd, - 0xe4acbe, - 0xe4acbf, - 0xe4ad80, - 0xe4ad81, - 0xe4ad82, - 0xe4ad83, - 0xe4ad84, - 0xe4ad85, - 0xe4ad86, - 0xe4ad87, - 0xe4ad88, - 0xe4ad89, - 0xe4ad8a, - 0xe4ad8b, - 0xe4ad8c, - 0xe4ad8d, - 0xe4ad8e, - 0xe4ad8f, - 0xe4ad90, - 0xe4ad91, - 0xe4ad92, - 0xe4ad93, - 0xe4ad94, - 0xe4ad95, - 0xe4ad96, - 0xe4ad97, - 0xe4ad98, - 0xe4ad99, - 0xe4ad9a, - 0xe4ad9b, - 0xe4ad9c, - 0xe4ad9d, - 0xe4ad9e, - 0xe4ad9f, - 0xe4ada0, - 0xe4ada1, - 0xe4ada2, - 0xe4ada3, - 0xe4ada4, - 0xe4ada5, - 0xe4ada6, - 0xe4ada7, - 0xe4ada8, - 0xe4ada9, - 0xe4adaa, - 0xe4adab, - 0xe4adac, - 0xe4adad, - 0xe4adae, - 0xe4adaf, - 0xe4adb0, - 0xe4adb1, - 0xe4adb2, - 0xe4adb3, - 0xe4adb4, - 0xe4adb5, - 0xe4adb6, - 0xe4adb7, - 0xe4adb8, - 0xe4adb9, - 0xe4adba, - 0xe4adbb, - 0xe4adbc, - 0xe4adbd, - 0xe4adbe, - 0xe4adbf, - 0xe4ae80, - 0xe4ae81, - 0xe4ae82, - 0xe4ae83, - 0xe4ae84, - 0xe4ae85, - 0xe4ae86, - 0xe4ae87, - 0xe4ae88, - 0xe4ae89, - 0xe4ae8a, - 0xe4ae8b, - 0xe4ae8c, - 0xe4ae8d, - 0xe4ae8e, - 0xe4ae8f, - 0xe4ae90, - 0xe4ae91, - 0xe4ae92, - 0xe4ae93, - 0xe4ae94, - 0xe4ae95, - 0xe4ae96, - 0xe4ae97, - 0xe4ae98, - 0xe4ae99, - 0xe4ae9a, - 0xe4ae9b, - 0xe4ae9c, - 0xe4ae9d, - 0xe4ae9e, - 0xe4ae9f, - 0xe4aea0, - 0xe4aea1, - 0xe4aea2, - 0xe4aea3, - 0xe4aea4, - 0xe4aea5, - 0xe4aea6, - 0xe4aea7, - 0xe4aea8, - 0xe4aea9, - 0xe4aeaa, - 0xe4aeab, - 0xe4aeac, - 0xe4aead, - 0xe4aeae, - 0xe4aeaf, - 0xe4aeb0, - 0xe4aeb1, - 0xe4aeb2, - 0xe4aeb3, - 0xe4aeb4, - 0xe4aeb5, - 0xe4aeb6, - 0xe4aeb7, - 0xe4aeb8, - 0xe4aeb9, - 0xe4aeba, - 0xe4aebb, - 0xe4aebc, - 0xe4aebd, - 0xe4aebe, - 0xe4aebf, - 0xe4af80, - 0xe4af81, - 0xe4af82, - 0xe4af83, - 0xe4af84, - 0xe4af85, - 0xe4af86, - 0xe4af87, - 0xe4af88, - 0xe4af89, - 0xe4af8a, - 0xe4af8b, - 0xe4af8c, - 0xe4af8d, - 0xe4af8e, - 0xe4af8f, - 0xe4af90, - 0xe4af91, - 0xe4af92, - 0xe4af93, - 0xe4af94, - 0xe4af95, - 0xe4af96, - 0xe4af97, - 0xe4af98, - 0xe4af99, - 0xe4af9a, - 0xe4af9b, - 0xe4af9c, - 0xe4af9d, - 0xe4af9e, - 0xe4af9f, - 0xe4afa0, - 0xe4afa1, - 0xe4afa2, - 0xe4afa3, - 0xe4afa4, - 0xe4afa5, - 0xe4afa6, - 0xe4afa7, - 0xe4afa8, - 0xe4afa9, - 0xe4afaa, - 0xe4afab, - 0xe4afac, - 0xe4afad, - 0xe4afae, - 0xe4afaf, - 0xe4afb0, - 0xe4afb1, - 0xe4afb2, - 0xe4afb3, - 0xe4afb4, - 0xe4afb5, - 0xe4afb6, - 0xe4afb7, - 0xe4afb8, - 0xe4afb9, - 0xe4afba, - 0xe4afbb, - 0xe4afbc, - 0xe4afbd, - 0xe4afbe, - 0xe4afbf, - 0xe4b080, - 0xe4b081, - 0xe4b082, - 0xe4b083, - 0xe4b084, - 0xe4b085, - 0xe4b086, - 0xe4b087, - 0xe4b088, - 0xe4b089, - 0xe4b08a, - 0xe4b08b, - 0xe4b08c, - 0xe4b08d, - 0xe4b08e, - 0xe4b08f, - 0xe4b090, - 0xe4b091, - 0xe4b092, - 0xe4b093, - 0xe4b094, - 0xe4b095, - 0xe4b096, - 0xe4b097, - 0xe4b098, - 0xe4b099, - 0xe4b09a, - 0xe4b09b, - 0xe4b09c, - 0xe4b09d, - 0xe4b09e, - 0xe4b09f, - 0xe4b0a0, - 0xe4b0a1, - 0xe4b0a2, - 0xe4b0a3, - 0xe4b0a4, - 0xe4b0a5, - 0xe4b0a6, - 0xe4b0a7, - 0xe4b0a8, - 0xe4b0a9, - 0xe4b0aa, - 0xe4b0ab, - 0xe4b0ac, - 0xe4b0ad, - 0xe4b0ae, - 0xe4b0af, - 0xe4b0b0, - 0xe4b0b1, - 0xe4b0b2, - 0xe4b0b3, - 0xe4b0b4, - 0xe4b0b5, - 0xe4b0b6, - 0xe4b0b7, - 0xe4b0b8, - 0xe4b0b9, - 0xe4b0ba, - 0xe4b0bb, - 0xe4b0bc, - 0xe4b0bd, - 0xe4b0be, - 0xe4b0bf, - 0xe4b180, - 0xe4b181, - 0xe4b182, - 0xe4b183, - 0xe4b184, - 0xe4b185, - 0xe4b186, - 0xe4b187, - 0xe4b188, - 0xe4b189, - 0xe4b18a, - 0xe4b18b, - 0xe4b18c, - 0xe4b18d, - 0xe4b18e, - 0xe4b18f, - 0xe4b190, - 0xe4b191, - 0xe4b192, - 0xe4b193, - 0xe4b194, - 0xe4b195, - 0xe4b196, - 0xe4b197, - 0xe4b198, - 0xe4b199, - 0xe4b19a, - 0xe4b19b, - 0xe4b19c, - 0xe4b19d, - 0xe4b19e, - 0xe4b19f, - 0xe4b1a0, - 0xe4b1a1, - 0xe4b1a2, - 0xe4b1a3, - 0xe4b1a4, - 0xe4b1a5, - 0xe4b1a6, - 0xe4b1a7, - 0xe4b1a8, - 0xe4b1a9, - 0xe4b1aa, - 0xe4b1ab, - 0xe4b1ac, - 0xe4b1ad, - 0xe4b1ae, - 0xe4b1af, - 0xe4b1b0, - 0xe4b1b1, - 0xe4b1b2, - 0xe4b1b3, - 0xe4b1b4, - 0xe4b1b5, - 0xe4b1b6, - 0xe4b1b7, - 0xe4b1b8, - 0xe4b1b9, - 0xe4b1ba, - 0xe4b1bb, - 0xe4b1bc, - 0xe4b1bd, - 0xe4b1be, - 0xe4b1bf, - 0xe4b280, - 0xe4b281, - 0xe4b282, - 0xe4b283, - 0xe4b284, - 0xe4b285, - 0xe4b286, - 0xe4b287, - 0xe4b288, - 0xe4b289, - 0xe4b28a, - 0xe4b28b, - 0xe4b28c, - 0xe4b28d, - 0xe4b28e, - 0xe4b28f, - 0xe4b290, - 0xe4b291, - 0xe4b292, - 0xe4b293, - 0xe4b294, - 0xe4b295, - 0xe4b296, - 0xe4b297, - 0xe4b298, - 0xe4b299, - 0xe4b29a, - 0xe4b29b, - 0xe4b29c, - 0xe4b29d, - 0xe4b29e, - 0xe4b29f, - 0xe4b2a0, - 0xe4b2a1, - 0xe4b2a2, - 0xe4b2a3, - 0xe4b2a4, - 0xe4b2a5, - 0xe4b2a6, - 0xe4b2a7, - 0xe4b2a8, - 0xe4b2a9, - 0xe4b2aa, - 0xe4b2ab, - 0xe4b2ac, - 0xe4b2ad, - 0xe4b2ae, - 0xe4b2af, - 0xe4b2b0, - 0xe4b2b1, - 0xe4b2b2, - 0xe4b2b3, - 0xe4b2b4, - 0xe4b2b5, - 0xe4b2b6, - 0xe4b2b7, - 0xe4b2b8, - 0xe4b2b9, - 0xe4b2ba, - 0xe4b2bb, - 0xe4b2bc, - 0xe4b2bd, - 0xe4b2be, - 0xe4b2bf, - 0xe4b380, - 0xe4b381, - 0xe4b382, - 0xe4b383, - 0xe4b384, - 0xe4b385, - 0xe4b386, - 0xe4b387, - 0xe4b388, - 0xe4b389, - 0xe4b38a, - 0xe4b38b, - 0xe4b38c, - 0xe4b38d, - 0xe4b38e, - 0xe4b38f, - 0xe4b390, - 0xe4b391, - 0xe4b392, - 0xe4b393, - 0xe4b394, - 0xe4b395, - 0xe4b396, - 0xe4b397, - 0xe4b398, - 0xe4b399, - 0xe4b39a, - 0xe4b39b, - 0xe4b39c, - 0xe4b39d, - 0xe4b39e, - 0xe4b39f, - 0xe4b3a0, - 0xe4b3a1, - 0xe4b3a2, - 0xe4b3a3, - 0xe4b3a4, - 0xe4b3a5, - 0xe4b3a6, - 0xe4b3a7, - 0xe4b3a8, - 0xe4b3a9, - 0xe4b3aa, - 0xe4b3ab, - 0xe4b3ac, - 0xe4b3ad, - 0xe4b3ae, - 0xe4b3af, - 0xe4b3b0, - 0xe4b3b1, - 0xe4b3b2, - 0xe4b3b3, - 0xe4b3b4, - 0xe4b3b5, - 0xe4b3b6, - 0xe4b3b7, - 0xe4b3b8, - 0xe4b3b9, - 0xe4b3ba, - 0xe4b3bb, - 0xe4b3bc, - 0xe4b3bd, - 0xe4b3be, - 0xe4b3bf, - 0xe4b480, - 0xe4b481, - 0xe4b482, - 0xe4b483, - 0xe4b484, - 0xe4b485, - 0xe4b486, - 0xe4b487, - 0xe4b488, - 0xe4b489, - 0xe4b48a, - 0xe4b48b, - 0xe4b48c, - 0xe4b48d, - 0xe4b48e, - 0xe4b48f, - 0xe4b490, - 0xe4b491, - 0xe4b492, - 0xe4b493, - 0xe4b494, - 0xe4b495, - 0xe4b496, - 0xe4b497, - 0xe4b498, - 0xe4b499, - 0xe4b49a, - 0xe4b49b, - 0xe4b49c, - 0xe4b49d, - 0xe4b49e, - 0xe4b49f, - 0xe4b4a0, - 0xe4b4a1, - 0xe4b4a2, - 0xe4b4a3, - 0xe4b4a4, - 0xe4b4a5, - 0xe4b4a6, - 0xe4b4a7, - 0xe4b4a8, - 0xe4b4a9, - 0xe4b4aa, - 0xe4b4ab, - 0xe4b4ac, - 0xe4b4ad, - 0xe4b4ae, - 0xe4b4af, - 0xe4b4b0, - 0xe4b4b1, - 0xe4b4b2, - 0xe4b4b3, - 0xe4b4b4, - 0xe4b4b5, - 0xe4b4b6, - 0xe4b4b7, - 0xe4b4b8, - 0xe4b4b9, - 0xe4b4ba, - 0xe4b4bb, - 0xe4b4bc, - 0xe4b4bd, - 0xe4b4be, - 0xe4b4bf, - 0xe4b580, - 0xe4b581, - 0xe4b582, - 0xe4b583, - 0xe4b584, - 0xe4b585, - 0xe4b586, - 0xe4b587, - 0xe4b588, - 0xe4b589, - 0xe4b58a, - 0xe4b58b, - 0xe4b58c, - 0xe4b58d, - 0xe4b58e, - 0xe4b58f, - 0xe4b590, - 0xe4b591, - 0xe4b592, - 0xe4b593, - 0xe4b594, - 0xe4b595, - 0xe4b596, - 0xe4b597, - 0xe4b598, - 0xe4b599, - 0xe4b59a, - 0xe4b59b, - 0xe4b59c, - 0xe4b59d, - 0xe4b59e, - 0xe4b59f, - 0xe4b5a0, - 0xe4b5a1, - 0xe4b5a2, - 0xe4b5a3, - 0xe4b5a4, - 0xe4b5a5, - 0xe4b5a6, - 0xe4b5a7, - 0xe4b5a8, - 0xe4b5a9, - 0xe4b5aa, - 0xe4b5ab, - 0xe4b5ac, - 0xe4b5ad, - 0xe4b5ae, - 0xe4b5af, - 0xe4b5b0, - 0xe4b5b1, - 0xe4b5b2, - 0xe4b5b3, - 0xe4b5b4, - 0xe4b5b5, - 0xe4b5b6, - 0xe4b5b7, - 0xe4b5b8, - 0xe4b5b9, - 0xe4b5ba, - 0xe4b5bb, - 0xe4b5bc, - 0xe4b5bd, - 0xe4b5be, - 0xe4b5bf, - 0xe4b680, - 0xe4b681, - 0xe4b682, - 0xe4b683, - 0xe4b684, - 0xe4b685, - 0xe4b686, - 0xe4b687, - 0xe4b688, - 0xe4b689, - 0xe4b68a, - 0xe4b68b, - 0xe4b68c, - 0xe4b68d, - 0xe4b68e, - 0xe4b68f, - 0xe4b690, - 0xe4b691, - 0xe4b692, - 0xe4b693, - 0xe4b694, - 0xe4b695, - 0xe4b696, - 0xe4b697, - 0xe4b698, - 0xe4b699, - 0xe4b69a, - 0xe4b69b, - 0xe4b69c, - 0xe4b69d, - 0xe4b69e, - 0xe4b69f, - 0xe4b6a0, - 0xe4b6a1, - 0xe4b6a2, - 0xe4b6a3, - 0xe4b6a4, - 0xe4b6a5, - 0xe4b6a6, - 0xe4b6a7, - 0xe4b6a8, - 0xe4b6a9, - 0xe4b6aa, - 0xe4b6ab, - 0xe4b6ac, - 0xe4b6ad, - 0xe4b6ae, - 0xe4b6af, - 0xe4b6b0, - 0xe4b6b1, - 0xe4b6b2, - 0xe4b6b3, - 0xe4b6b4, - 0xe4b6b5, - 0xe4b6b6, - 0xe4b6b7, - 0xe4b6b8, - 0xe4b6b9, - 0xe4b6ba, - 0xe4b6bb, - 0xe4b6bc, - 0xe4b6bd, - 0xe4b6be, - 0xe4b6bf, - 0xe4b780, - 0xe4b781, - 0xe4b782, - 0xe4b783, - 0xe4b784, - 0xe4b785, - 0xe4b786, - 0xe4b787, - 0xe4b788, - 0xe4b789, - 0xe4b78a, - 0xe4b78b, - 0xe4b78c, - 0xe4b78d, - 0xe4b78e, - 0xe4b78f, - 0xe4b790, - 0xe4b791, - 0xe4b792, - 0xe4b793, - 0xe4b794, - 0xe4b795, - 0xe4b796, - 0xe4b797, - 0xe4b798, - 0xe4b799, - 0xe4b79a, - 0xe4b79b, - 0xe4b79c, - 0xe4b79d, - 0xe4b79e, - 0xe4b79f, - 0xe4b7a0, - 0xe4b7a1, - 0xe4b7a2, - 0xe4b7a3, - 0xe4b7a4, - 0xe4b7a5, - 0xe4b7a6, - 0xe4b7a7, - 0xe4b7a8, - 0xe4b7a9, - 0xe4b7aa, - 0xe4b7ab, - 0xe4b7ac, - 0xe4b7ad, - 0xe4b7ae, - 0xe4b7af, - 0xe4b7b0, - 0xe4b7b1, - 0xe4b7b2, - 0xe4b7b3, - 0xe4b7b4, - 0xe4b7b5, - 0xe4b7b6, - 0xe4b7b7, - 0xe4b7b8, - 0xe4b7b9, - 0xe4b7ba, - 0xe4b7bb, - 0xe4b7bc, - 0xe4b7bd, - 0xe4b7be, - 0xe4b7bf, - 0xe4b880, - 0xe4b881, - 0xe4b882, - 0xe4b883, - 0xe4b884, - 0xe4b885, - 0xe4b886, - 0xe4b887, - 0xe4b888, - 0xe4b889, - 0xe4b88a, - 0xe4b88b, - 0xe4b88c, - 0xe4b88d, - 0xe4b88e, - 0xe4b88f, - 0xe4b890, - 0xe4b891, - 0xe4b892, - 0xe4b893, - 0xe4b894, - 0xe4b895, - 0xe4b896, - 0xe4b897, - 0xe4b898, - 0xe4b899, - 0xe4b89a, - 0xe4b89b, - 0xe4b89c, - 0xe4b89d, - 0xe4b89e, - 0xe4b89f, - 0xe4b8a0, - 0xe4b8a1, - 0xe4b8a2, - 0xe4b8a3, - 0xe4b8a4, - 0xe4b8a5, - 0xe4b8a6, - 0xe4b8a7, - 0xe4b8a8, - 0xe4b8a9, - 0xe4b8aa, - 0xe4b8ab, - 0xe4b8ac, - 0xe4b8ad, - 0xe4b8ae, - 0xe4b8af, - 0xe4b8b0, - 0xe4b8b1, - 0xe4b8b2, - 0xe4b8b3, - 0xe4b8b4, - 0xe4b8b5, - 0xe4b8b6, - 0xe4b8b7, - 0xe4b8b8, - 0xe4b8b9, - 0xe4b8ba, - 0xe4b8bb, - 0xe4b8bc, - 0xe4b8bd, - 0xe4b8be, - 0xe4b8bf, - 0xe4b980, - 0xe4b981, - 0xe4b982, - 0xe4b983, - 0xe4b984, - 0xe4b985, - 0xe4b986, - 0xe4b987, - 0xe4b988, - 0xe4b989, - 0xe4b98a, - 0xe4b98b, - 0xe4b98c, - 0xe4b98d, - 0xe4b98e, - 0xe4b98f, - 0xe4b990, - 0xe4b991, - 0xe4b992, - 0xe4b993, - 0xe4b994, - 0xe4b995, - 0xe4b996, - 0xe4b997, - 0xe4b998, - 0xe4b999, - 0xe4b99a, - 0xe4b99b, - 0xe4b99c, - 0xe4b99d, - 0xe4b99e, - 0xe4b99f, - 0xe4b9a0, - 0xe4b9a1, - 0xe4b9a2, - 0xe4b9a3, - 0xe4b9a4, - 0xe4b9a5, - 0xe4b9a6, - 0xe4b9a7, - 0xe4b9a8, - 0xe4b9a9, - 0xe4b9aa, - 0xe4b9ab, - 0xe4b9ac, - 0xe4b9ad, - 0xe4b9ae, - 0xe4b9af, - 0xe4b9b0, - 0xe4b9b1, - 0xe4b9b2, - 0xe4b9b3, - 0xe4b9b4, - 0xe4b9b5, - 0xe4b9b6, - 0xe4b9b7, - 0xe4b9b8, - 0xe4b9b9, - 0xe4b9ba, - 0xe4b9bb, - 0xe4b9bc, - 0xe4b9bd, - 0xe4b9be, - 0xe4b9bf, - 0xe4ba80, - 0xe4ba81, - 0xe4ba82, - 0xe4ba83, - 0xe4ba84, - 0xe4ba85, - 0xe4ba86, - 0xe4ba87, - 0xe4ba88, - 0xe4ba89, - 0xe4ba8a, - 0xe4ba8b, - 0xe4ba8c, - 0xe4ba8d, - 0xe4ba8e, - 0xe4ba8f, - 0xe4ba90, - 0xe4ba91, - 0xe4ba92, - 0xe4ba93, - 0xe4ba94, - 0xe4ba95, - 0xe4ba96, - 0xe4ba97, - 0xe4ba98, - 0xe4ba99, - 0xe4ba9a, - 0xe4ba9b, - 0xe4ba9c, - 0xe4ba9d, - 0xe4ba9e, - 0xe4ba9f, - 0xe4baa0, - 0xe4baa1, - 0xe4baa2, - 0xe4baa3, - 0xe4baa4, - 0xe4baa5, - 0xe4baa6, - 0xe4baa7, - 0xe4baa8, - 0xe4baa9, - 0xe4baaa, - 0xe4baab, - 0xe4baac, - 0xe4baad, - 0xe4baae, - 0xe4baaf, - 0xe4bab0, - 0xe4bab1, - 0xe4bab2, - 0xe4bab3, - 0xe4bab4, - 0xe4bab5, - 0xe4bab6, - 0xe4bab7, - 0xe4bab8, - 0xe4bab9, - 0xe4baba, - 0xe4babb, - 0xe4babc, - 0xe4babd, - 0xe4babe, - 0xe4babf, - 0xe4bb80, - 0xe4bb81, - 0xe4bb82, - 0xe4bb83, - 0xe4bb84, - 0xe4bb85, - 0xe4bb86, - 0xe4bb87, - 0xe4bb88, - 0xe4bb89, - 0xe4bb8a, - 0xe4bb8b, - 0xe4bb8c, - 0xe4bb8d, - 0xe4bb8e, - 0xe4bb8f, - 0xe4bb90, - 0xe4bb91, - 0xe4bb92, - 0xe4bb93, - 0xe4bb94, - 0xe4bb95, - 0xe4bb96, - 0xe4bb97, - 0xe4bb98, - 0xe4bb99, - 0xe4bb9a, - 0xe4bb9b, - 0xe4bb9c, - 0xe4bb9d, - 0xe4bb9e, - 0xe4bb9f, - 0xe4bba0, - 0xe4bba1, - 0xe4bba2, - 0xe4bba3, - 0xe4bba4, - 0xe4bba5, - 0xe4bba6, - 0xe4bba7, - 0xe4bba8, - 0xe4bba9, - 0xe4bbaa, - 0xe4bbab, - 0xe4bbac, - 0xe4bbad, - 0xe4bbae, - 0xe4bbaf, - 0xe4bbb0, - 0xe4bbb1, - 0xe4bbb2, - 0xe4bbb3, - 0xe4bbb4, - 0xe4bbb5, - 0xe4bbb6, - 0xe4bbb7, - 0xe4bbb8, - 0xe4bbb9, - 0xe4bbba, - 0xe4bbbb, - 0xe4bbbc, - 0xe4bbbd, - 0xe4bbbe, - 0xe4bbbf, - 0xe4bc80, - 0xe4bc81, - 0xe4bc82, - 0xe4bc83, - 0xe4bc84, - 0xe4bc85, - 0xe4bc86, - 0xe4bc87, - 0xe4bc88, - 0xe4bc89, - 0xe4bc8a, - 0xe4bc8b, - 0xe4bc8c, - 0xe4bc8d, - 0xe4bc8e, - 0xe4bc8f, - 0xe4bc90, - 0xe4bc91, - 0xe4bc92, - 0xe4bc93, - 0xe4bc94, - 0xe4bc95, - 0xe4bc96, - 0xe4bc97, - 0xe4bc98, - 0xe4bc99, - 0xe4bc9a, - 0xe4bc9b, - 0xe4bc9c, - 0xe4bc9d, - 0xe4bc9e, - 0xe4bc9f, - 0xe4bca0, - 0xe4bca1, - 0xe4bca2, - 0xe4bca3, - 0xe4bca4, - 0xe4bca5, - 0xe4bca6, - 0xe4bca7, - 0xe4bca8, - 0xe4bca9, - 0xe4bcaa, - 0xe4bcab, - 0xe4bcac, - 0xe4bcad, - 0xe4bcae, - 0xe4bcaf, - 0xe4bcb0, - 0xe4bcb1, - 0xe4bcb2, - 0xe4bcb3, - 0xe4bcb4, - 0xe4bcb5, - 0xe4bcb6, - 0xe4bcb7, - 0xe4bcb8, - 0xe4bcb9, - 0xe4bcba, - 0xe4bcbb, - 0xe4bcbc, - 0xe4bcbd, - 0xe4bcbe, - 0xe4bcbf, - 0xe4bd80, - 0xe4bd81, - 0xe4bd82, - 0xe4bd83, - 0xe4bd84, - 0xe4bd85, - 0xe4bd86, - 0xe4bd87, - 0xe4bd88, - 0xe4bd89, - 0xe4bd8a, - 0xe4bd8b, - 0xe4bd8c, - 0xe4bd8d, - 0xe4bd8e, - 0xe4bd8f, - 0xe4bd90, - 0xe4bd91, - 0xe4bd92, - 0xe4bd93, - 0xe4bd94, - 0xe4bd95, - 0xe4bd96, - 0xe4bd97, - 0xe4bd98, - 0xe4bd99, - 0xe4bd9a, - 0xe4bd9b, - 0xe4bd9c, - 0xe4bd9d, - 0xe4bd9e, - 0xe4bd9f, - 0xe4bda0, - 0xe4bda1, - 0xe4bda2, - 0xe4bda3, - 0xe4bda4, - 0xe4bda5, - 0xe4bda6, - 0xe4bda7, - 0xe4bda8, - 0xe4bda9, - 0xe4bdaa, - 0xe4bdab, - 0xe4bdac, - 0xe4bdad, - 0xe4bdae, - 0xe4bdaf, - 0xe4bdb0, - 0xe4bdb1, - 0xe4bdb2, - 0xe4bdb3, - 0xe4bdb4, - 0xe4bdb5, - 0xe4bdb6, - 0xe4bdb7, - 0xe4bdb8, - 0xe4bdb9, - 0xe4bdba, - 0xe4bdbb, - 0xe4bdbc, - 0xe4bdbd, - 0xe4bdbe, - 0xe4bdbf, - 0xe4be80, - 0xe4be81, - 0xe4be82, - 0xe4be83, - 0xe4be84, - 0xe4be85, - 0xe4be86, - 0xe4be87, - 0xe4be88, - 0xe4be89, - 0xe4be8a, - 0xe4be8b, - 0xe4be8c, - 0xe4be8d, - 0xe4be8e, - 0xe4be8f, - 0xe4be90, - 0xe4be91, - 0xe4be92, - 0xe4be93, - 0xe4be94, - 0xe4be95, - 0xe4be96, - 0xe4be97, - 0xe4be98, - 0xe4be99, - 0xe4be9a, - 0xe4be9b, - 0xe4be9c, - 0xe4be9d, - 0xe4be9e, - 0xe4be9f, - 0xe4bea0, - 0xe4bea1, - 0xe4bea2, - 0xe4bea3, - 0xe4bea4, - 0xe4bea5, - 0xe4bea6, - 0xe4bea7, - 0xe4bea8, - 0xe4bea9, - 0xe4beaa, - 0xe4beab, - 0xe4beac, - 0xe4bead, - 0xe4beae, - 0xe4beaf, - 0xe4beb0, - 0xe4beb1, - 0xe4beb2, - 0xe4beb3, - 0xe4beb4, - 0xe4beb5, - 0xe4beb6, - 0xe4beb7, - 0xe4beb8, - 0xe4beb9, - 0xe4beba, - 0xe4bebb, - 0xe4bebc, - 0xe4bebd, - 0xe4bebe, - 0xe4bebf, - 0xe4bf80, - 0xe4bf81, - 0xe4bf82, - 0xe4bf83, - 0xe4bf84, - 0xe4bf85, - 0xe4bf86, - 0xe4bf87, - 0xe4bf88, - 0xe4bf89, - 0xe4bf8a, - 0xe4bf8b, - 0xe4bf8c, - 0xe4bf8d, - 0xe4bf8e, - 0xe4bf8f, - 0xe4bf90, - 0xe4bf91, - 0xe4bf92, - 0xe4bf93, - 0xe4bf94, - 0xe4bf95, - 0xe4bf96, - 0xe4bf97, - 0xe4bf98, - 0xe4bf99, - 0xe4bf9a, - 0xe4bf9b, - 0xe4bf9c, - 0xe4bf9d, - 0xe4bf9e, - 0xe4bf9f, - 0xe4bfa0, - 0xe4bfa1, - 0xe4bfa2, - 0xe4bfa3, - 0xe4bfa4, - 0xe4bfa5, - 0xe4bfa6, - 0xe4bfa7, - 0xe4bfa8, - 0xe4bfa9, - 0xe4bfaa, - 0xe4bfab, - 0xe4bfac, - 0xe4bfad, - 0xe4bfae, - 0xe4bfaf, - 0xe4bfb0, - 0xe4bfb1, - 0xe4bfb2, - 0xe4bfb3, - 0xe4bfb4, - 0xe4bfb5, - 0xe4bfb6, - 0xe4bfb7, - 0xe4bfb8, - 0xe4bfb9, - 0xe4bfba, - 0xe4bfbb, - 0xe4bfbc, - 0xe4bfbd, - 0xe4bfbe, - 0xe4bfbf, - 0xe58080, - 0xe58081, - 0xe58082, - 0xe58083, - 0xe58084, - 0xe58085, - 0xe58086, - 0xe58087, - 0xe58088, - 0xe58089, - 0xe5808a, - 0xe5808b, - 0xe5808c, - 0xe5808d, - 0xe5808e, - 0xe5808f, - 0xe58090, - 0xe58091, - 0xe58092, - 0xe58093, - 0xe58094, - 0xe58095, - 0xe58096, - 0xe58097, - 0xe58098, - 0xe58099, - 0xe5809a, - 0xe5809b, - 0xe5809c, - 0xe5809d, - 0xe5809e, - 0xe5809f, - 0xe580a0, - 0xe580a1, - 0xe580a2, - 0xe580a3, - 0xe580a4, - 0xe580a5, - 0xe580a6, - 0xe580a7, - 0xe580a8, - 0xe580a9, - 0xe580aa, - 0xe580ab, - 0xe580ac, - 0xe580ad, - 0xe580ae, - 0xe580af, - 0xe580b0, - 0xe580b1, - 0xe580b2, - 0xe580b3, - 0xe580b4, - 0xe580b5, - 0xe580b6, - 0xe580b7, - 0xe580b8, - 0xe580b9, - 0xe580ba, - 0xe580bb, - 0xe580bc, - 0xe580bd, - 0xe580be, - 0xe580bf, - 0xe58180, - 0xe58181, - 0xe58182, - 0xe58183, - 0xe58184, - 0xe58185, - 0xe58186, - 0xe58187, - 0xe58188, - 0xe58189, - 0xe5818a, - 0xe5818b, - 0xe5818c, - 0xe5818d, - 0xe5818e, - 0xe5818f, - 0xe58190, - 0xe58191, - 0xe58192, - 0xe58193, - 0xe58194, - 0xe58195, - 0xe58196, - 0xe58197, - 0xe58198, - 0xe58199, - 0xe5819a, - 0xe5819b, - 0xe5819c, - 0xe5819d, - 0xe5819e, - 0xe5819f, - 0xe581a0, - 0xe581a1, - 0xe581a2, - 0xe581a3, - 0xe581a4, - 0xe581a5, - 0xe581a6, - 0xe581a7, - 0xe581a8, - 0xe581a9, - 0xe581aa, - 0xe581ab, - 0xe581ac, - 0xe581ad, - 0xe581ae, - 0xe581af, - 0xe581b0, - 0xe581b1, - 0xe581b2, - 0xe581b3, - 0xe581b4, - 0xe581b5, - 0xe581b6, - 0xe581b7, - 0xe581b8, - 0xe581b9, - 0xe581ba, - 0xe581bb, - 0xe581bc, - 0xe581bd, - 0xe581be, - 0xe581bf, - 0xe58280, - 0xe58281, - 0xe58282, - 0xe58283, - 0xe58284, - 0xe58285, - 0xe58286, - 0xe58287, - 0xe58288, - 0xe58289, - 0xe5828a, - 0xe5828b, - 0xe5828c, - 0xe5828d, - 0xe5828e, - 0xe5828f, - 0xe58290, - 0xe58291, - 0xe58292, - 0xe58293, - 0xe58294, - 0xe58295, - 0xe58296, - 0xe58297, - 0xe58298, - 0xe58299, - 0xe5829a, - 0xe5829b, - 0xe5829c, - 0xe5829d, - 0xe5829e, - 0xe5829f, - 0xe582a0, - 0xe582a1, - 0xe582a2, - 0xe582a3, - 0xe582a4, - 0xe582a5, - 0xe582a6, - 0xe582a7, - 0xe582a8, - 0xe582a9, - 0xe582aa, - 0xe582ab, - 0xe582ac, - 0xe582ad, - 0xe582ae, - 0xe582af, - 0xe582b0, - 0xe582b1, - 0xe582b2, - 0xe582b3, - 0xe582b4, - 0xe582b5, - 0xe582b6, - 0xe582b7, - 0xe582b8, - 0xe582b9, - 0xe582ba, - 0xe582bb, - 0xe582bc, - 0xe582bd, - 0xe582be, - 0xe582bf, - 0xe58380, - 0xe58381, - 0xe58382, - 0xe58383, - 0xe58384, - 0xe58385, - 0xe58386, - 0xe58387, - 0xe58388, - 0xe58389, - 0xe5838a, - 0xe5838b, - 0xe5838c, - 0xe5838d, - 0xe5838e, - 0xe5838f, - 0xe58390, - 0xe58391, - 0xe58392, - 0xe58393, - 0xe58394, - 0xe58395, - 0xe58396, - 0xe58397, - 0xe58398, - 0xe58399, - 0xe5839a, - 0xe5839b, - 0xe5839c, - 0xe5839d, - 0xe5839e, - 0xe5839f, - 0xe583a0, - 0xe583a1, - 0xe583a2, - 0xe583a3, - 0xe583a4, - 0xe583a5, - 0xe583a6, - 0xe583a7, - 0xe583a8, - 0xe583a9, - 0xe583aa, - 0xe583ab, - 0xe583ac, - 0xe583ad, - 0xe583ae, - 0xe583af, - 0xe583b0, - 0xe583b1, - 0xe583b2, - 0xe583b3, - 0xe583b4, - 0xe583b5, - 0xe583b6, - 0xe583b7, - 0xe583b8, - 0xe583b9, - 0xe583ba, - 0xe583bb, - 0xe583bc, - 0xe583bd, - 0xe583be, - 0xe583bf, - 0xe58480, - 0xe58481, - 0xe58482, - 0xe58483, - 0xe58484, - 0xe58485, - 0xe58486, - 0xe58487, - 0xe58488, - 0xe58489, - 0xe5848a, - 0xe5848b, - 0xe5848c, - 0xe5848d, - 0xe5848e, - 0xe5848f, - 0xe58490, - 0xe58491, - 0xe58492, - 0xe58493, - 0xe58494, - 0xe58495, - 0xe58496, - 0xe58497, - 0xe58498, - 0xe58499, - 0xe5849a, - 0xe5849b, - 0xe5849c, - 0xe5849d, - 0xe5849e, - 0xe5849f, - 0xe584a0, - 0xe584a1, - 0xe584a2, - 0xe584a3, - 0xe584a4, - 0xe584a5, - 0xe584a6, - 0xe584a7, - 0xe584a8, - 0xe584a9, - 0xe584aa, - 0xe584ab, - 0xe584ac, - 0xe584ad, - 0xe584ae, - 0xe584af, - 0xe584b0, - 0xe584b1, - 0xe584b2, - 0xe584b3, - 0xe584b4, - 0xe584b5, - 0xe584b6, - 0xe584b7, - 0xe584b8, - 0xe584b9, - 0xe584ba, - 0xe584bb, - 0xe584bc, - 0xe584bd, - 0xe584be, - 0xe584bf, - 0xe58580, - 0xe58581, - 0xe58582, - 0xe58583, - 0xe58584, - 0xe58585, - 0xe58586, - 0xe58587, - 0xe58588, - 0xe58589, - 0xe5858a, - 0xe5858b, - 0xe5858c, - 0xe5858d, - 0xe5858e, - 0xe5858f, - 0xe58590, - 0xe58591, - 0xe58592, - 0xe58593, - 0xe58594, - 0xe58595, - 0xe58596, - 0xe58597, - 0xe58598, - 0xe58599, - 0xe5859a, - 0xe5859b, - 0xe5859c, - 0xe5859d, - 0xe5859e, - 0xe5859f, - 0xe585a0, - 0xe585a1, - 0xe585a2, - 0xe585a3, - 0xe585a4, - 0xe585a5, - 0xe585a6, - 0xe585a7, - 0xe585a8, - 0xe585a9, - 0xe585aa, - 0xe585ab, - 0xe585ac, - 0xe585ad, - 0xe585ae, - 0xe585af, - 0xe585b0, - 0xe585b1, - 0xe585b2, - 0xe585b3, - 0xe585b4, - 0xe585b5, - 0xe585b6, - 0xe585b7, - 0xe585b8, - 0xe585b9, - 0xe585ba, - 0xe585bb, - 0xe585bc, - 0xe585bd, - 0xe585be, - 0xe585bf, - 0xe58680, - 0xe58681, - 0xe58682, - 0xe58683, - 0xe58684, - 0xe58685, - 0xe58686, - 0xe58687, - 0xe58688, - 0xe58689, - 0xe5868a, - 0xe5868b, - 0xe5868c, - 0xe5868d, - 0xe5868e, - 0xe5868f, - 0xe58690, - 0xe58691, - 0xe58692, - 0xe58693, - 0xe58694, - 0xe58695, - 0xe58696, - 0xe58697, - 0xe58698, - 0xe58699, - 0xe5869a, - 0xe5869b, - 0xe5869c, - 0xe5869d, - 0xe5869e, - 0xe5869f, - 0xe586a0, - 0xe586a1, - 0xe586a2, - 0xe586a3, - 0xe586a4, - 0xe586a5, - 0xe586a6, - 0xe586a7, - 0xe586a8, - 0xe586a9, - 0xe586aa, - 0xe586ab, - 0xe586ac, - 0xe586ad, - 0xe586ae, - 0xe586af, - 0xe586b0, - 0xe586b1, - 0xe586b2, - 0xe586b3, - 0xe586b4, - 0xe586b5, - 0xe586b6, - 0xe586b7, - 0xe586b8, - 0xe586b9, - 0xe586ba, - 0xe586bb, - 0xe586bc, - 0xe586bd, - 0xe586be, - 0xe586bf, - 0xe58780, - 0xe58781, - 0xe58782, - 0xe58783, - 0xe58784, - 0xe58785, - 0xe58786, - 0xe58787, - 0xe58788, - 0xe58789, - 0xe5878a, - 0xe5878b, - 0xe5878c, - 0xe5878d, - 0xe5878e, - 0xe5878f, - 0xe58790, - 0xe58791, - 0xe58792, - 0xe58793, - 0xe58794, - 0xe58795, - 0xe58796, - 0xe58797, - 0xe58798, - 0xe58799, - 0xe5879a, - 0xe5879b, - 0xe5879c, - 0xe5879d, - 0xe5879e, - 0xe5879f, - 0xe587a0, - 0xe587a1, - 0xe587a2, - 0xe587a3, - 0xe587a4, - 0xe587a5, - 0xe587a6, - 0xe587a7, - 0xe587a8, - 0xe587a9, - 0xe587aa, - 0xe587ab, - 0xe587ac, - 0xe587ad, - 0xe587ae, - 0xe587af, - 0xe587b0, - 0xe587b1, - 0xe587b2, - 0xe587b3, - 0xe587b4, - 0xe587b5, - 0xe587b6, - 0xe587b7, - 0xe587b8, - 0xe587b9, - 0xe587ba, - 0xe587bb, - 0xe587bc, - 0xe587bd, - 0xe587be, - 0xe587bf, - 0xe58880, - 0xe58881, - 0xe58882, - 0xe58883, - 0xe58884, - 0xe58885, - 0xe58886, - 0xe58887, - 0xe58888, - 0xe58889, - 0xe5888a, - 0xe5888b, - 0xe5888c, - 0xe5888d, - 0xe5888e, - 0xe5888f, - 0xe58890, - 0xe58891, - 0xe58892, - 0xe58893, - 0xe58894, - 0xe58895, - 0xe58896, - 0xe58897, - 0xe58898, - 0xe58899, - 0xe5889a, - 0xe5889b, - 0xe5889c, - 0xe5889d, - 0xe5889e, - 0xe5889f, - 0xe588a0, - 0xe588a1, - 0xe588a2, - 0xe588a3, - 0xe588a4, - 0xe588a5, - 0xe588a6, - 0xe588a7, - 0xe588a8, - 0xe588a9, - 0xe588aa, - 0xe588ab, - 0xe588ac, - 0xe588ad, - 0xe588ae, - 0xe588af, - 0xe588b0, - 0xe588b1, - 0xe588b2, - 0xe588b3, - 0xe588b4, - 0xe588b5, - 0xe588b6, - 0xe588b7, - 0xe588b8, - 0xe588b9, - 0xe588ba, - 0xe588bb, - 0xe588bc, - 0xe588bd, - 0xe588be, - 0xe588bf, - 0xe58980, - 0xe58981, - 0xe58982, - 0xe58983, - 0xe58984, - 0xe58985, - 0xe58986, - 0xe58987, - 0xe58988, - 0xe58989, - 0xe5898a, - 0xe5898b, - 0xe5898c, - 0xe5898d, - 0xe5898e, - 0xe5898f, - 0xe58990, - 0xe58991, - 0xe58992, - 0xe58993, - 0xe58994, - 0xe58995, - 0xe58996, - 0xe58997, - 0xe58998, - 0xe58999, - 0xe5899a, - 0xe5899b, - 0xe5899c, - 0xe5899d, - 0xe5899e, - 0xe5899f, - 0xe589a0, - 0xe589a1, - 0xe589a2, - 0xe589a3, - 0xe589a4, - 0xe589a5, - 0xe589a6, - 0xe589a7, - 0xe589a8, - 0xe589a9, - 0xe589aa, - 0xe589ab, - 0xe589ac, - 0xe589ad, - 0xe589ae, - 0xe589af, - 0xe589b0, - 0xe589b1, - 0xe589b2, - 0xe589b3, - 0xe589b4, - 0xe589b5, - 0xe589b6, - 0xe589b7, - 0xe589b8, - 0xe589b9, - 0xe589ba, - 0xe589bb, - 0xe589bc, - 0xe589bd, - 0xe589be, - 0xe589bf, - 0xe58a80, - 0xe58a81, - 0xe58a82, - 0xe58a83, - 0xe58a84, - 0xe58a85, - 0xe58a86, - 0xe58a87, - 0xe58a88, - 0xe58a89, - 0xe58a8a, - 0xe58a8b, - 0xe58a8c, - 0xe58a8d, - 0xe58a8e, - 0xe58a8f, - 0xe58a90, - 0xe58a91, - 0xe58a92, - 0xe58a93, - 0xe58a94, - 0xe58a95, - 0xe58a96, - 0xe58a97, - 0xe58a98, - 0xe58a99, - 0xe58a9a, - 0xe58a9b, - 0xe58a9c, - 0xe58a9d, - 0xe58a9e, - 0xe58a9f, - 0xe58aa0, - 0xe58aa1, - 0xe58aa2, - 0xe58aa3, - 0xe58aa4, - 0xe58aa5, - 0xe58aa6, - 0xe58aa7, - 0xe58aa8, - 0xe58aa9, - 0xe58aaa, - 0xe58aab, - 0xe58aac, - 0xe58aad, - 0xe58aae, - 0xe58aaf, - 0xe58ab0, - 0xe58ab1, - 0xe58ab2, - 0xe58ab3, - 0xe58ab4, - 0xe58ab5, - 0xe58ab6, - 0xe58ab7, - 0xe58ab8, - 0xe58ab9, - 0xe58aba, - 0xe58abb, - 0xe58abc, - 0xe58abd, - 0xe58abe, - 0xe58abf, - 0xe58b80, - 0xe58b81, - 0xe58b82, - 0xe58b83, - 0xe58b84, - 0xe58b85, - 0xe58b86, - 0xe58b87, - 0xe58b88, - 0xe58b89, - 0xe58b8a, - 0xe58b8b, - 0xe58b8c, - 0xe58b8d, - 0xe58b8e, - 0xe58b8f, - 0xe58b90, - 0xe58b91, - 0xe58b92, - 0xe58b93, - 0xe58b94, - 0xe58b95, - 0xe58b96, - 0xe58b97, - 0xe58b98, - 0xe58b99, - 0xe58b9a, - 0xe58b9b, - 0xe58b9c, - 0xe58b9d, - 0xe58b9e, - 0xe58b9f, - 0xe58ba0, - 0xe58ba1, - 0xe58ba2, - 0xe58ba3, - 0xe58ba4, - 0xe58ba5, - 0xe58ba6, - 0xe58ba7, - 0xe58ba8, - 0xe58ba9, - 0xe58baa, - 0xe58bab, - 0xe58bac, - 0xe58bad, - 0xe58bae, - 0xe58baf, - 0xe58bb0, - 0xe58bb1, - 0xe58bb2, - 0xe58bb3, - 0xe58bb4, - 0xe58bb5, - 0xe58bb6, - 0xe58bb7, - 0xe58bb8, - 0xe58bb9, - 0xe58bba, - 0xe58bbb, - 0xe58bbc, - 0xe58bbd, - 0xe58bbe, - 0xe58bbf, - 0xe58c80, - 0xe58c81, - 0xe58c82, - 0xe58c83, - 0xe58c84, - 0xe58c85, - 0xe58c86, - 0xe58c87, - 0xe58c88, - 0xe58c89, - 0xe58c8a, - 0xe58c8b, - 0xe58c8c, - 0xe58c8d, - 0xe58c8e, - 0xe58c8f, - 0xe58c90, - 0xe58c91, - 0xe58c92, - 0xe58c93, - 0xe58c94, - 0xe58c95, - 0xe58c96, - 0xe58c97, - 0xe58c98, - 0xe58c99, - 0xe58c9a, - 0xe58c9b, - 0xe58c9c, - 0xe58c9d, - 0xe58c9e, - 0xe58c9f, - 0xe58ca0, - 0xe58ca1, - 0xe58ca2, - 0xe58ca3, - 0xe58ca4, - 0xe58ca5, - 0xe58ca6, - 0xe58ca7, - 0xe58ca8, - 0xe58ca9, - 0xe58caa, - 0xe58cab, - 0xe58cac, - 0xe58cad, - 0xe58cae, - 0xe58caf, - 0xe58cb0, - 0xe58cb1, - 0xe58cb2, - 0xe58cb3, - 0xe58cb4, - 0xe58cb5, - 0xe58cb6, - 0xe58cb7, - 0xe58cb8, - 0xe58cb9, - 0xe58cba, - 0xe58cbb, - 0xe58cbc, - 0xe58cbd, - 0xe58cbe, - 0xe58cbf, - 0xe58d80, - 0xe58d81, - 0xe58d82, - 0xe58d83, - 0xe58d84, - 0xe58d85, - 0xe58d86, - 0xe58d87, - 0xe58d88, - 0xe58d89, - 0xe58d8a, - 0xe58d8b, - 0xe58d8c, - 0xe58d8d, - 0xe58d8e, - 0xe58d8f, - 0xe58d90, - 0xe58d91, - 0xe58d92, - 0xe58d93, - 0xe58d94, - 0xe58d95, - 0xe58d96, - 0xe58d97, - 0xe58d98, - 0xe58d99, - 0xe58d9a, - 0xe58d9b, - 0xe58d9c, - 0xe58d9d, - 0xe58d9e, - 0xe58d9f, - 0xe58da0, - 0xe58da1, - 0xe58da2, - 0xe58da3, - 0xe58da4, - 0xe58da5, - 0xe58da6, - 0xe58da7, - 0xe58da8, - 0xe58da9, - 0xe58daa, - 0xe58dab, - 0xe58dac, - 0xe58dad, - 0xe58dae, - 0xe58daf, - 0xe58db0, - 0xe58db1, - 0xe58db2, - 0xe58db3, - 0xe58db4, - 0xe58db5, - 0xe58db6, - 0xe58db7, - 0xe58db8, - 0xe58db9, - 0xe58dba, - 0xe58dbb, - 0xe58dbc, - 0xe58dbd, - 0xe58dbe, - 0xe58dbf, - 0xe58e80, - 0xe58e81, - 0xe58e82, - 0xe58e83, - 0xe58e84, - 0xe58e85, - 0xe58e86, - 0xe58e87, - 0xe58e88, - 0xe58e89, - 0xe58e8a, - 0xe58e8b, - 0xe58e8c, - 0xe58e8d, - 0xe58e8e, - 0xe58e8f, - 0xe58e90, - 0xe58e91, - 0xe58e92, - 0xe58e93, - 0xe58e94, - 0xe58e95, - 0xe58e96, - 0xe58e97, - 0xe58e98, - 0xe58e99, - 0xe58e9a, - 0xe58e9b, - 0xe58e9c, - 0xe58e9d, - 0xe58e9e, - 0xe58e9f, - 0xe58ea0, - 0xe58ea1, - 0xe58ea2, - 0xe58ea3, - 0xe58ea4, - 0xe58ea5, - 0xe58ea6, - 0xe58ea7, - 0xe58ea8, - 0xe58ea9, - 0xe58eaa, - 0xe58eab, - 0xe58eac, - 0xe58ead, - 0xe58eae, - 0xe58eaf, - 0xe58eb0, - 0xe58eb1, - 0xe58eb2, - 0xe58eb3, - 0xe58eb4, - 0xe58eb5, - 0xe58eb6, - 0xe58eb7, - 0xe58eb8, - 0xe58eb9, - 0xe58eba, - 0xe58ebb, - 0xe58ebc, - 0xe58ebd, - 0xe58ebe, - 0xe58ebf, - 0xe58f80, - 0xe58f81, - 0xe58f82, - 0xe58f83, - 0xe58f84, - 0xe58f85, - 0xe58f86, - 0xe58f87, - 0xe58f88, - 0xe58f89, - 0xe58f8a, - 0xe58f8b, - 0xe58f8c, - 0xe58f8d, - 0xe58f8e, - 0xe58f8f, - 0xe58f90, - 0xe58f91, - 0xe58f92, - 0xe58f93, - 0xe58f94, - 0xe58f95, - 0xe58f96, - 0xe58f97, - 0xe58f98, - 0xe58f99, - 0xe58f9a, - 0xe58f9b, - 0xe58f9c, - 0xe58f9d, - 0xe58f9e, - 0xe58f9f, - 0xe58fa0, - 0xe58fa1, - 0xe58fa2, - 0xe58fa3, - 0xe58fa4, - 0xe58fa5, - 0xe58fa6, - 0xe58fa7, - 0xe58fa8, - 0xe58fa9, - 0xe58faa, - 0xe58fab, - 0xe58fac, - 0xe58fad, - 0xe58fae, - 0xe58faf, - 0xe58fb0, - 0xe58fb1, - 0xe58fb2, - 0xe58fb3, - 0xe58fb4, - 0xe58fb5, - 0xe58fb6, - 0xe58fb7, - 0xe58fb8, - 0xe58fb9, - 0xe58fba, - 0xe58fbb, - 0xe58fbc, - 0xe58fbd, - 0xe58fbe, - 0xe58fbf, - 0xe59080, - 0xe59081, - 0xe59082, - 0xe59083, - 0xe59084, - 0xe59085, - 0xe59086, - 0xe59087, - 0xe59088, - 0xe59089, - 0xe5908a, - 0xe5908b, - 0xe5908c, - 0xe5908d, - 0xe5908e, - 0xe5908f, - 0xe59090, - 0xe59091, - 0xe59092, - 0xe59093, - 0xe59094, - 0xe59095, - 0xe59096, - 0xe59097, - 0xe59098, - 0xe59099, - 0xe5909a, - 0xe5909b, - 0xe5909c, - 0xe5909d, - 0xe5909e, - 0xe5909f, - 0xe590a0, - 0xe590a1, - 0xe590a2, - 0xe590a3, - 0xe590a4, - 0xe590a5, - 0xe590a6, - 0xe590a7, - 0xe590a8, - 0xe590a9, - 0xe590aa, - 0xe590ab, - 0xe590ac, - 0xe590ad, - 0xe590ae, - 0xe590af, - 0xe590b0, - 0xe590b1, - 0xe590b2, - 0xe590b3, - 0xe590b4, - 0xe590b5, - 0xe590b6, - 0xe590b7, - 0xe590b8, - 0xe590b9, - 0xe590ba, - 0xe590bb, - 0xe590bc, - 0xe590bd, - 0xe590be, - 0xe590bf, - 0xe59180, - 0xe59181, - 0xe59182, - 0xe59183, - 0xe59184, - 0xe59185, - 0xe59186, - 0xe59187, - 0xe59188, - 0xe59189, - 0xe5918a, - 0xe5918b, - 0xe5918c, - 0xe5918d, - 0xe5918e, - 0xe5918f, - 0xe59190, - 0xe59191, - 0xe59192, - 0xe59193, - 0xe59194, - 0xe59195, - 0xe59196, - 0xe59197, - 0xe59198, - 0xe59199, - 0xe5919a, - 0xe5919b, - 0xe5919c, - 0xe5919d, - 0xe5919e, - 0xe5919f, - 0xe591a0, - 0xe591a1, - 0xe591a2, - 0xe591a3, - 0xe591a4, - 0xe591a5, - 0xe591a6, - 0xe591a7, - 0xe591a8, - 0xe591a9, - 0xe591aa, - 0xe591ab, - 0xe591ac, - 0xe591ad, - 0xe591ae, - 0xe591af, - 0xe591b0, - 0xe591b1, - 0xe591b2, - 0xe591b3, - 0xe591b4, - 0xe591b5, - 0xe591b6, - 0xe591b7, - 0xe591b8, - 0xe591b9, - 0xe591ba, - 0xe591bb, - 0xe591bc, - 0xe591bd, - 0xe591be, - 0xe591bf, - 0xe59280, - 0xe59281, - 0xe59282, - 0xe59283, - 0xe59284, - 0xe59285, - 0xe59286, - 0xe59287, - 0xe59288, - 0xe59289, - 0xe5928a, - 0xe5928b, - 0xe5928c, - 0xe5928d, - 0xe5928e, - 0xe5928f, - 0xe59290, - 0xe59291, - 0xe59292, - 0xe59293, - 0xe59294, - 0xe59295, - 0xe59296, - 0xe59297, - 0xe59298, - 0xe59299, - 0xe5929a, - 0xe5929b, - 0xe5929c, - 0xe5929d, - 0xe5929e, - 0xe5929f, - 0xe592a0, - 0xe592a1, - 0xe592a2, - 0xe592a3, - 0xe592a4, - 0xe592a5, - 0xe592a6, - 0xe592a7, - 0xe592a8, - 0xe592a9, - 0xe592aa, - 0xe592ab, - 0xe592ac, - 0xe592ad, - 0xe592ae, - 0xe592af, - 0xe592b0, - 0xe592b1, - 0xe592b2, - 0xe592b3, - 0xe592b4, - 0xe592b5, - 0xe592b6, - 0xe592b7, - 0xe592b8, - 0xe592b9, - 0xe592ba, - 0xe592bb, - 0xe592bc, - 0xe592bd, - 0xe592be, - 0xe592bf, - 0xe59380, - 0xe59381, - 0xe59382, - 0xe59383, - 0xe59384, - 0xe59385, - 0xe59386, - 0xe59387, - 0xe59388, - 0xe59389, - 0xe5938a, - 0xe5938b, - 0xe5938c, - 0xe5938d, - 0xe5938e, - 0xe5938f, - 0xe59390, - 0xe59391, - 0xe59392, - 0xe59393, - 0xe59394, - 0xe59395, - 0xe59396, - 0xe59397, - 0xe59398, - 0xe59399, - 0xe5939a, - 0xe5939b, - 0xe5939c, - 0xe5939d, - 0xe5939e, - 0xe5939f, - 0xe593a0, - 0xe593a1, - 0xe593a2, - 0xe593a3, - 0xe593a4, - 0xe593a5, - 0xe593a6, - 0xe593a7, - 0xe593a8, - 0xe593a9, - 0xe593aa, - 0xe593ab, - 0xe593ac, - 0xe593ad, - 0xe593ae, - 0xe593af, - 0xe593b0, - 0xe593b1, - 0xe593b2, - 0xe593b3, - 0xe593b4, - 0xe593b5, - 0xe593b6, - 0xe593b7, - 0xe593b8, - 0xe593b9, - 0xe593ba, - 0xe593bb, - 0xe593bc, - 0xe593bd, - 0xe593be, - 0xe593bf, - 0xe59480, - 0xe59481, - 0xe59482, - 0xe59483, - 0xe59484, - 0xe59485, - 0xe59486, - 0xe59487, - 0xe59488, - 0xe59489, - 0xe5948a, - 0xe5948b, - 0xe5948c, - 0xe5948d, - 0xe5948e, - 0xe5948f, - 0xe59490, - 0xe59491, - 0xe59492, - 0xe59493, - 0xe59494, - 0xe59495, - 0xe59496, - 0xe59497, - 0xe59498, - 0xe59499, - 0xe5949a, - 0xe5949b, - 0xe5949c, - 0xe5949d, - 0xe5949e, - 0xe5949f, - 0xe594a0, - 0xe594a1, - 0xe594a2, - 0xe594a3, - 0xe594a4, - 0xe594a5, - 0xe594a6, - 0xe594a7, - 0xe594a8, - 0xe594a9, - 0xe594aa, - 0xe594ab, - 0xe594ac, - 0xe594ad, - 0xe594ae, - 0xe594af, - 0xe594b0, - 0xe594b1, - 0xe594b2, - 0xe594b3, - 0xe594b4, - 0xe594b5, - 0xe594b6, - 0xe594b7, - 0xe594b8, - 0xe594b9, - 0xe594ba, - 0xe594bb, - 0xe594bc, - 0xe594bd, - 0xe594be, - 0xe594bf, - 0xe59580, - 0xe59581, - 0xe59582, - 0xe59583, - 0xe59584, - 0xe59585, - 0xe59586, - 0xe59587, - 0xe59588, - 0xe59589, - 0xe5958a, - 0xe5958b, - 0xe5958c, - 0xe5958d, - 0xe5958e, - 0xe5958f, - 0xe59590, - 0xe59591, - 0xe59592, - 0xe59593, - 0xe59594, - 0xe59595, - 0xe59596, - 0xe59597, - 0xe59598, - 0xe59599, - 0xe5959a, - 0xe5959b, - 0xe5959c, - 0xe5959d, - 0xe5959e, - 0xe5959f, - 0xe595a0, - 0xe595a1, - 0xe595a2, - 0xe595a3, - 0xe595a4, - 0xe595a5, - 0xe595a6, - 0xe595a7, - 0xe595a8, - 0xe595a9, - 0xe595aa, - 0xe595ab, - 0xe595ac, - 0xe595ad, - 0xe595ae, - 0xe595af, - 0xe595b0, - 0xe595b1, - 0xe595b2, - 0xe595b3, - 0xe595b4, - 0xe595b5, - 0xe595b6, - 0xe595b7, - 0xe595b8, - 0xe595b9, - 0xe595ba, - 0xe595bb, - 0xe595bc, - 0xe595bd, - 0xe595be, - 0xe595bf, - 0xe59680, - 0xe59681, - 0xe59682, - 0xe59683, - 0xe59684, - 0xe59685, - 0xe59686, - 0xe59687, - 0xe59688, - 0xe59689, - 0xe5968a, - 0xe5968b, - 0xe5968c, - 0xe5968d, - 0xe5968e, - 0xe5968f, - 0xe59690, - 0xe59691, - 0xe59692, - 0xe59693, - 0xe59694, - 0xe59695, - 0xe59696, - 0xe59697, - 0xe59698, - 0xe59699, - 0xe5969a, - 0xe5969b, - 0xe5969c, - 0xe5969d, - 0xe5969e, - 0xe5969f, - 0xe596a0, - 0xe596a1, - 0xe596a2, - 0xe596a3, - 0xe596a4, - 0xe596a5, - 0xe596a6, - 0xe596a7, - 0xe596a8, - 0xe596a9, - 0xe596aa, - 0xe596ab, - 0xe596ac, - 0xe596ad, - 0xe596ae, - 0xe596af, - 0xe596b0, - 0xe596b1, - 0xe596b2, - 0xe596b3, - 0xe596b4, - 0xe596b5, - 0xe596b6, - 0xe596b7, - 0xe596b8, - 0xe596b9, - 0xe596ba, - 0xe596bb, - 0xe596bc, - 0xe596bd, - 0xe596be, - 0xe596bf, - 0xe59780, - 0xe59781, - 0xe59782, - 0xe59783, - 0xe59784, - 0xe59785, - 0xe59786, - 0xe59787, - 0xe59788, - 0xe59789, - 0xe5978a, - 0xe5978b, - 0xe5978c, - 0xe5978d, - 0xe5978e, - 0xe5978f, - 0xe59790, - 0xe59791, - 0xe59792, - 0xe59793, - 0xe59794, - 0xe59795, - 0xe59796, - 0xe59797, - 0xe59798, - 0xe59799, - 0xe5979a, - 0xe5979b, - 0xe5979c, - 0xe5979d, - 0xe5979e, - 0xe5979f, - 0xe597a0, - 0xe597a1, - 0xe597a2, - 0xe597a3, - 0xe597a4, - 0xe597a5, - 0xe597a6, - 0xe597a7, - 0xe597a8, - 0xe597a9, - 0xe597aa, - 0xe597ab, - 0xe597ac, - 0xe597ad, - 0xe597ae, - 0xe597af, - 0xe597b0, - 0xe597b1, - 0xe597b2, - 0xe597b3, - 0xe597b4, - 0xe597b5, - 0xe597b6, - 0xe597b7, - 0xe597b8, - 0xe597b9, - 0xe597ba, - 0xe597bb, - 0xe597bc, - 0xe597bd, - 0xe597be, - 0xe597bf, - 0xe59880, - 0xe59881, - 0xe59882, - 0xe59883, - 0xe59884, - 0xe59885, - 0xe59886, - 0xe59887, - 0xe59888, - 0xe59889, - 0xe5988a, - 0xe5988b, - 0xe5988c, - 0xe5988d, - 0xe5988e, - 0xe5988f, - 0xe59890, - 0xe59891, - 0xe59892, - 0xe59893, - 0xe59894, - 0xe59895, - 0xe59896, - 0xe59897, - 0xe59898, - 0xe59899, - 0xe5989a, - 0xe5989b, - 0xe5989c, - 0xe5989d, - 0xe5989e, - 0xe5989f, - 0xe598a0, - 0xe598a1, - 0xe598a2, - 0xe598a3, - 0xe598a4, - 0xe598a5, - 0xe598a6, - 0xe598a7, - 0xe598a8, - 0xe598a9, - 0xe598aa, - 0xe598ab, - 0xe598ac, - 0xe598ad, - 0xe598ae, - 0xe598af, - 0xe598b0, - 0xe598b1, - 0xe598b2, - 0xe598b3, - 0xe598b4, - 0xe598b5, - 0xe598b6, - 0xe598b7, - 0xe598b8, - 0xe598b9, - 0xe598ba, - 0xe598bb, - 0xe598bc, - 0xe598bd, - 0xe598be, - 0xe598bf, - 0xe59980, - 0xe59981, - 0xe59982, - 0xe59983, - 0xe59984, - 0xe59985, - 0xe59986, - 0xe59987, - 0xe59988, - 0xe59989, - 0xe5998a, - 0xe5998b, - 0xe5998c, - 0xe5998d, - 0xe5998e, - 0xe5998f, - 0xe59990, - 0xe59991, - 0xe59992, - 0xe59993, - 0xe59994, - 0xe59995, - 0xe59996, - 0xe59997, - 0xe59998, - 0xe59999, - 0xe5999a, - 0xe5999b, - 0xe5999c, - 0xe5999d, - 0xe5999e, - 0xe5999f, - 0xe599a0, - 0xe599a1, - 0xe599a2, - 0xe599a3, - 0xe599a4, - 0xe599a5, - 0xe599a6, - 0xe599a7, - 0xe599a8, - 0xe599a9, - 0xe599aa, - 0xe599ab, - 0xe599ac, - 0xe599ad, - 0xe599ae, - 0xe599af, - 0xe599b0, - 0xe599b1, - 0xe599b2, - 0xe599b3, - 0xe599b4, - 0xe599b5, - 0xe599b6, - 0xe599b7, - 0xe599b8, - 0xe599b9, - 0xe599ba, - 0xe599bb, - 0xe599bc, - 0xe599bd, - 0xe599be, - 0xe599bf, - 0xe59a80, - 0xe59a81, - 0xe59a82, - 0xe59a83, - 0xe59a84, - 0xe59a85, - 0xe59a86, - 0xe59a87, - 0xe59a88, - 0xe59a89, - 0xe59a8a, - 0xe59a8b, - 0xe59a8c, - 0xe59a8d, - 0xe59a8e, - 0xe59a8f, - 0xe59a90, - 0xe59a91, - 0xe59a92, - 0xe59a93, - 0xe59a94, - 0xe59a95, - 0xe59a96, - 0xe59a97, - 0xe59a98, - 0xe59a99, - 0xe59a9a, - 0xe59a9b, - 0xe59a9c, - 0xe59a9d, - 0xe59a9e, - 0xe59a9f, - 0xe59aa0, - 0xe59aa1, - 0xe59aa2, - 0xe59aa3, - 0xe59aa4, - 0xe59aa5, - 0xe59aa6, - 0xe59aa7, - 0xe59aa8, - 0xe59aa9, - 0xe59aaa, - 0xe59aab, - 0xe59aac, - 0xe59aad, - 0xe59aae, - 0xe59aaf, - 0xe59ab0, - 0xe59ab1, - 0xe59ab2, - 0xe59ab3, - 0xe59ab4, - 0xe59ab5, - 0xe59ab6, - 0xe59ab7, - 0xe59ab8, - 0xe59ab9, - 0xe59aba, - 0xe59abb, - 0xe59abc, - 0xe59abd, - 0xe59abe, - 0xe59abf, - 0xe59b80, - 0xe59b81, - 0xe59b82, - 0xe59b83, - 0xe59b84, - 0xe59b85, - 0xe59b86, - 0xe59b87, - 0xe59b88, - 0xe59b89, - 0xe59b8a, - 0xe59b8b, - 0xe59b8c, - 0xe59b8d, - 0xe59b8e, - 0xe59b8f, - 0xe59b90, - 0xe59b91, - 0xe59b92, - 0xe59b93, - 0xe59b94, - 0xe59b95, - 0xe59b96, - 0xe59b97, - 0xe59b98, - 0xe59b99, - 0xe59b9a, - 0xe59b9b, - 0xe59b9c, - 0xe59b9d, - 0xe59b9e, - 0xe59b9f, - 0xe59ba0, - 0xe59ba1, - 0xe59ba2, - 0xe59ba3, - 0xe59ba4, - 0xe59ba5, - 0xe59ba6, - 0xe59ba7, - 0xe59ba8, - 0xe59ba9, - 0xe59baa, - 0xe59bab, - 0xe59bac, - 0xe59bad, - 0xe59bae, - 0xe59baf, - 0xe59bb0, - 0xe59bb1, - 0xe59bb2, - 0xe59bb3, - 0xe59bb4, - 0xe59bb5, - 0xe59bb6, - 0xe59bb7, - 0xe59bb8, - 0xe59bb9, - 0xe59bba, - 0xe59bbb, - 0xe59bbc, - 0xe59bbd, - 0xe59bbe, - 0xe59bbf, - 0xe59c80, - 0xe59c81, - 0xe59c82, - 0xe59c83, - 0xe59c84, - 0xe59c85, - 0xe59c86, - 0xe59c87, - 0xe59c88, - 0xe59c89, - 0xe59c8a, - 0xe59c8b, - 0xe59c8c, - 0xe59c8d, - 0xe59c8e, - 0xe59c8f, - 0xe59c90, - 0xe59c91, - 0xe59c92, - 0xe59c93, - 0xe59c94, - 0xe59c95, - 0xe59c96, - 0xe59c97, - 0xe59c98, - 0xe59c99, - 0xe59c9a, - 0xe59c9b, - 0xe59c9c, - 0xe59c9d, - 0xe59c9e, - 0xe59c9f, - 0xe59ca0, - 0xe59ca1, - 0xe59ca2, - 0xe59ca3, - 0xe59ca4, - 0xe59ca5, - 0xe59ca6, - 0xe59ca7, - 0xe59ca8, - 0xe59ca9, - 0xe59caa, - 0xe59cab, - 0xe59cac, - 0xe59cad, - 0xe59cae, - 0xe59caf, - 0xe59cb0, - 0xe59cb1, - 0xe59cb2, - 0xe59cb3, - 0xe59cb4, - 0xe59cb5, - 0xe59cb6, - 0xe59cb7, - 0xe59cb8, - 0xe59cb9, - 0xe59cba, - 0xe59cbb, - 0xe59cbc, - 0xe59cbd, - 0xe59cbe, - 0xe59cbf, - 0xe59d80, - 0xe59d81, - 0xe59d82, - 0xe59d83, - 0xe59d84, - 0xe59d85, - 0xe59d86, - 0xe59d87, - 0xe59d88, - 0xe59d89, - 0xe59d8a, - 0xe59d8b, - 0xe59d8c, - 0xe59d8d, - 0xe59d8e, - 0xe59d8f, - 0xe59d90, - 0xe59d91, - 0xe59d92, - 0xe59d93, - 0xe59d94, - 0xe59d95, - 0xe59d96, - 0xe59d97, - 0xe59d98, - 0xe59d99, - 0xe59d9a, - 0xe59d9b, - 0xe59d9c, - 0xe59d9d, - 0xe59d9e, - 0xe59d9f, - 0xe59da0, - 0xe59da1, - 0xe59da2, - 0xe59da3, - 0xe59da4, - 0xe59da5, - 0xe59da6, - 0xe59da7, - 0xe59da8, - 0xe59da9, - 0xe59daa, - 0xe59dab, - 0xe59dac, - 0xe59dad, - 0xe59dae, - 0xe59daf, - 0xe59db0, - 0xe59db1, - 0xe59db2, - 0xe59db3, - 0xe59db4, - 0xe59db5, - 0xe59db6, - 0xe59db7, - 0xe59db8, - 0xe59db9, - 0xe59dba, - 0xe59dbb, - 0xe59dbc, - 0xe59dbd, - 0xe59dbe, - 0xe59dbf, - 0xe59e80, - 0xe59e81, - 0xe59e82, - 0xe59e83, - 0xe59e84, - 0xe59e85, - 0xe59e86, - 0xe59e87, - 0xe59e88, - 0xe59e89, - 0xe59e8a, - 0xe59e8b, - 0xe59e8c, - 0xe59e8d, - 0xe59e8e, - 0xe59e8f, - 0xe59e90, - 0xe59e91, - 0xe59e92, - 0xe59e93, - 0xe59e94, - 0xe59e95, - 0xe59e96, - 0xe59e97, - 0xe59e98, - 0xe59e99, - 0xe59e9a, - 0xe59e9b, - 0xe59e9c, - 0xe59e9d, - 0xe59e9e, - 0xe59e9f, - 0xe59ea0, - 0xe59ea1, - 0xe59ea2, - 0xe59ea3, - 0xe59ea4, - 0xe59ea5, - 0xe59ea6, - 0xe59ea7, - 0xe59ea8, - 0xe59ea9, - 0xe59eaa, - 0xe59eab, - 0xe59eac, - 0xe59ead, - 0xe59eae, - 0xe59eaf, - 0xe59eb0, - 0xe59eb1, - 0xe59eb2, - 0xe59eb3, - 0xe59eb4, - 0xe59eb5, - 0xe59eb6, - 0xe59eb7, - 0xe59eb8, - 0xe59eb9, - 0xe59eba, - 0xe59ebb, - 0xe59ebc, - 0xe59ebd, - 0xe59ebe, - 0xe59ebf, - 0xe59f80, - 0xe59f81, - 0xe59f82, - 0xe59f83, - 0xe59f84, - 0xe59f85, - 0xe59f86, - 0xe59f87, - 0xe59f88, - 0xe59f89, - 0xe59f8a, - 0xe59f8b, - 0xe59f8c, - 0xe59f8d, - 0xe59f8e, - 0xe59f8f, - 0xe59f90, - 0xe59f91, - 0xe59f92, - 0xe59f93, - 0xe59f94, - 0xe59f95, - 0xe59f96, - 0xe59f97, - 0xe59f98, - 0xe59f99, - 0xe59f9a, - 0xe59f9b, - 0xe59f9c, - 0xe59f9d, - 0xe59f9e, - 0xe59f9f, - 0xe59fa0, - 0xe59fa1, - 0xe59fa2, - 0xe59fa3, - 0xe59fa4, - 0xe59fa5, - 0xe59fa6, - 0xe59fa7, - 0xe59fa8, - 0xe59fa9, - 0xe59faa, - 0xe59fab, - 0xe59fac, - 0xe59fad, - 0xe59fae, - 0xe59faf, - 0xe59fb0, - 0xe59fb1, - 0xe59fb2, - 0xe59fb3, - 0xe59fb4, - 0xe59fb5, - 0xe59fb6, - 0xe59fb7, - 0xe59fb8, - 0xe59fb9, - 0xe59fba, - 0xe59fbb, - 0xe59fbc, - 0xe59fbd, - 0xe59fbe, - 0xe59fbf, - 0xe5a080, - 0xe5a081, - 0xe5a082, - 0xe5a083, - 0xe5a084, - 0xe5a085, - 0xe5a086, - 0xe5a087, - 0xe5a088, - 0xe5a089, - 0xe5a08a, - 0xe5a08b, - 0xe5a08c, - 0xe5a08d, - 0xe5a08e, - 0xe5a08f, - 0xe5a090, - 0xe5a091, - 0xe5a092, - 0xe5a093, - 0xe5a094, - 0xe5a095, - 0xe5a096, - 0xe5a097, - 0xe5a098, - 0xe5a099, - 0xe5a09a, - 0xe5a09b, - 0xe5a09c, - 0xe5a09d, - 0xe5a09e, - 0xe5a09f, - 0xe5a0a0, - 0xe5a0a1, - 0xe5a0a2, - 0xe5a0a3, - 0xe5a0a4, - 0xe5a0a5, - 0xe5a0a6, - 0xe5a0a7, - 0xe5a0a8, - 0xe5a0a9, - 0xe5a0aa, - 0xe5a0ab, - 0xe5a0ac, - 0xe5a0ad, - 0xe5a0ae, - 0xe5a0af, - 0xe5a0b0, - 0xe5a0b1, - 0xe5a0b2, - 0xe5a0b3, - 0xe5a0b4, - 0xe5a0b5, - 0xe5a0b6, - 0xe5a0b7, - 0xe5a0b8, - 0xe5a0b9, - 0xe5a0ba, - 0xe5a0bb, - 0xe5a0bc, - 0xe5a0bd, - 0xe5a0be, - 0xe5a0bf, - 0xe5a180, - 0xe5a181, - 0xe5a182, - 0xe5a183, - 0xe5a184, - 0xe5a185, - 0xe5a186, - 0xe5a187, - 0xe5a188, - 0xe5a189, - 0xe5a18a, - 0xe5a18b, - 0xe5a18c, - 0xe5a18d, - 0xe5a18e, - 0xe5a18f, - 0xe5a190, - 0xe5a191, - 0xe5a192, - 0xe5a193, - 0xe5a194, - 0xe5a195, - 0xe5a196, - 0xe5a197, - 0xe5a198, - 0xe5a199, - 0xe5a19a, - 0xe5a19b, - 0xe5a19c, - 0xe5a19d, - 0xe5a19e, - 0xe5a19f, - 0xe5a1a0, - 0xe5a1a1, - 0xe5a1a2, - 0xe5a1a3, - 0xe5a1a4, - 0xe5a1a5, - 0xe5a1a6, - 0xe5a1a7, - 0xe5a1a8, - 0xe5a1a9, - 0xe5a1aa, - 0xe5a1ab, - 0xe5a1ac, - 0xe5a1ad, - 0xe5a1ae, - 0xe5a1af, - 0xe5a1b0, - 0xe5a1b1, - 0xe5a1b2, - 0xe5a1b3, - 0xe5a1b4, - 0xe5a1b5, - 0xe5a1b6, - 0xe5a1b7, - 0xe5a1b8, - 0xe5a1b9, - 0xe5a1ba, - 0xe5a1bb, - 0xe5a1bc, - 0xe5a1bd, - 0xe5a1be, - 0xe5a1bf, - 0xe5a280, - 0xe5a281, - 0xe5a282, - 0xe5a283, - 0xe5a284, - 0xe5a285, - 0xe5a286, - 0xe5a287, - 0xe5a288, - 0xe5a289, - 0xe5a28a, - 0xe5a28b, - 0xe5a28c, - 0xe5a28d, - 0xe5a28e, - 0xe5a28f, - 0xe5a290, - 0xe5a291, - 0xe5a292, - 0xe5a293, - 0xe5a294, - 0xe5a295, - 0xe5a296, - 0xe5a297, - 0xe5a298, - 0xe5a299, - 0xe5a29a, - 0xe5a29b, - 0xe5a29c, - 0xe5a29d, - 0xe5a29e, - 0xe5a29f, - 0xe5a2a0, - 0xe5a2a1, - 0xe5a2a2, - 0xe5a2a3, - 0xe5a2a4, - 0xe5a2a5, - 0xe5a2a6, - 0xe5a2a7, - 0xe5a2a8, - 0xe5a2a9, - 0xe5a2aa, - 0xe5a2ab, - 0xe5a2ac, - 0xe5a2ad, - 0xe5a2ae, - 0xe5a2af, - 0xe5a2b0, - 0xe5a2b1, - 0xe5a2b2, - 0xe5a2b3, - 0xe5a2b4, - 0xe5a2b5, - 0xe5a2b6, - 0xe5a2b7, - 0xe5a2b8, - 0xe5a2b9, - 0xe5a2ba, - 0xe5a2bb, - 0xe5a2bc, - 0xe5a2bd, - 0xe5a2be, - 0xe5a2bf, - 0xe5a380, - 0xe5a381, - 0xe5a382, - 0xe5a383, - 0xe5a384, - 0xe5a385, - 0xe5a386, - 0xe5a387, - 0xe5a388, - 0xe5a389, - 0xe5a38a, - 0xe5a38b, - 0xe5a38c, - 0xe5a38d, - 0xe5a38e, - 0xe5a38f, - 0xe5a390, - 0xe5a391, - 0xe5a392, - 0xe5a393, - 0xe5a394, - 0xe5a395, - 0xe5a396, - 0xe5a397, - 0xe5a398, - 0xe5a399, - 0xe5a39a, - 0xe5a39b, - 0xe5a39c, - 0xe5a39d, - 0xe5a39e, - 0xe5a39f, - 0xe5a3a0, - 0xe5a3a1, - 0xe5a3a2, - 0xe5a3a3, - 0xe5a3a4, - 0xe5a3a5, - 0xe5a3a6, - 0xe5a3a7, - 0xe5a3a8, - 0xe5a3a9, - 0xe5a3aa, - 0xe5a3ab, - 0xe5a3ac, - 0xe5a3ad, - 0xe5a3ae, - 0xe5a3af, - 0xe5a3b0, - 0xe5a3b1, - 0xe5a3b2, - 0xe5a3b3, - 0xe5a3b4, - 0xe5a3b5, - 0xe5a3b6, - 0xe5a3b7, - 0xe5a3b8, - 0xe5a3b9, - 0xe5a3ba, - 0xe5a3bb, - 0xe5a3bc, - 0xe5a3bd, - 0xe5a3be, - 0xe5a3bf, - 0xe5a480, - 0xe5a481, - 0xe5a482, - 0xe5a483, - 0xe5a484, - 0xe5a485, - 0xe5a486, - 0xe5a487, - 0xe5a488, - 0xe5a489, - 0xe5a48a, - 0xe5a48b, - 0xe5a48c, - 0xe5a48d, - 0xe5a48e, - 0xe5a48f, - 0xe5a490, - 0xe5a491, - 0xe5a492, - 0xe5a493, - 0xe5a494, - 0xe5a495, - 0xe5a496, - 0xe5a497, - 0xe5a498, - 0xe5a499, - 0xe5a49a, - 0xe5a49b, - 0xe5a49c, - 0xe5a49d, - 0xe5a49e, - 0xe5a49f, - 0xe5a4a0, - 0xe5a4a1, - 0xe5a4a2, - 0xe5a4a3, - 0xe5a4a4, - 0xe5a4a5, - 0xe5a4a6, - 0xe5a4a7, - 0xe5a4a8, - 0xe5a4a9, - 0xe5a4aa, - 0xe5a4ab, - 0xe5a4ac, - 0xe5a4ad, - 0xe5a4ae, - 0xe5a4af, - 0xe5a4b0, - 0xe5a4b1, - 0xe5a4b2, - 0xe5a4b3, - 0xe5a4b4, - 0xe5a4b5, - 0xe5a4b6, - 0xe5a4b7, - 0xe5a4b8, - 0xe5a4b9, - 0xe5a4ba, - 0xe5a4bb, - 0xe5a4bc, - 0xe5a4bd, - 0xe5a4be, - 0xe5a4bf, - 0xe5a580, - 0xe5a581, - 0xe5a582, - 0xe5a583, - 0xe5a584, - 0xe5a585, - 0xe5a586, - 0xe5a587, - 0xe5a588, - 0xe5a589, - 0xe5a58a, - 0xe5a58b, - 0xe5a58c, - 0xe5a58d, - 0xe5a58e, - 0xe5a58f, - 0xe5a590, - 0xe5a591, - 0xe5a592, - 0xe5a593, - 0xe5a594, - 0xe5a595, - 0xe5a596, - 0xe5a597, - 0xe5a598, - 0xe5a599, - 0xe5a59a, - 0xe5a59b, - 0xe5a59c, - 0xe5a59d, - 0xe5a59e, - 0xe5a59f, - 0xe5a5a0, - 0xe5a5a1, - 0xe5a5a2, - 0xe5a5a3, - 0xe5a5a4, - 0xe5a5a5, - 0xe5a5a6, - 0xe5a5a7, - 0xe5a5a8, - 0xe5a5a9, - 0xe5a5aa, - 0xe5a5ab, - 0xe5a5ac, - 0xe5a5ad, - 0xe5a5ae, - 0xe5a5af, - 0xe5a5b0, - 0xe5a5b1, - 0xe5a5b2, - 0xe5a5b3, - 0xe5a5b4, - 0xe5a5b5, - 0xe5a5b6, - 0xe5a5b7, - 0xe5a5b8, - 0xe5a5b9, - 0xe5a5ba, - 0xe5a5bb, - 0xe5a5bc, - 0xe5a5bd, - 0xe5a5be, - 0xe5a5bf, - 0xe5a680, - 0xe5a681, - 0xe5a682, - 0xe5a683, - 0xe5a684, - 0xe5a685, - 0xe5a686, - 0xe5a687, - 0xe5a688, - 0xe5a689, - 0xe5a68a, - 0xe5a68b, - 0xe5a68c, - 0xe5a68d, - 0xe5a68e, - 0xe5a68f, - 0xe5a690, - 0xe5a691, - 0xe5a692, - 0xe5a693, - 0xe5a694, - 0xe5a695, - 0xe5a696, - 0xe5a697, - 0xe5a698, - 0xe5a699, - 0xe5a69a, - 0xe5a69b, - 0xe5a69c, - 0xe5a69d, - 0xe5a69e, - 0xe5a69f, - 0xe5a6a0, - 0xe5a6a1, - 0xe5a6a2, - 0xe5a6a3, - 0xe5a6a4, - 0xe5a6a5, - 0xe5a6a6, - 0xe5a6a7, - 0xe5a6a8, - 0xe5a6a9, - 0xe5a6aa, - 0xe5a6ab, - 0xe5a6ac, - 0xe5a6ad, - 0xe5a6ae, - 0xe5a6af, - 0xe5a6b0, - 0xe5a6b1, - 0xe5a6b2, - 0xe5a6b3, - 0xe5a6b4, - 0xe5a6b5, - 0xe5a6b6, - 0xe5a6b7, - 0xe5a6b8, - 0xe5a6b9, - 0xe5a6ba, - 0xe5a6bb, - 0xe5a6bc, - 0xe5a6bd, - 0xe5a6be, - 0xe5a6bf, - 0xe5a780, - 0xe5a781, - 0xe5a782, - 0xe5a783, - 0xe5a784, - 0xe5a785, - 0xe5a786, - 0xe5a787, - 0xe5a788, - 0xe5a789, - 0xe5a78a, - 0xe5a78b, - 0xe5a78c, - 0xe5a78d, - 0xe5a78e, - 0xe5a78f, - 0xe5a790, - 0xe5a791, - 0xe5a792, - 0xe5a793, - 0xe5a794, - 0xe5a795, - 0xe5a796, - 0xe5a797, - 0xe5a798, - 0xe5a799, - 0xe5a79a, - 0xe5a79b, - 0xe5a79c, - 0xe5a79d, - 0xe5a79e, - 0xe5a79f, - 0xe5a7a0, - 0xe5a7a1, - 0xe5a7a2, - 0xe5a7a3, - 0xe5a7a4, - 0xe5a7a5, - 0xe5a7a6, - 0xe5a7a7, - 0xe5a7a8, - 0xe5a7a9, - 0xe5a7aa, - 0xe5a7ab, - 0xe5a7ac, - 0xe5a7ad, - 0xe5a7ae, - 0xe5a7af, - 0xe5a7b0, - 0xe5a7b1, - 0xe5a7b2, - 0xe5a7b3, - 0xe5a7b4, - 0xe5a7b5, - 0xe5a7b6, - 0xe5a7b7, - 0xe5a7b8, - 0xe5a7b9, - 0xe5a7ba, - 0xe5a7bb, - 0xe5a7bc, - 0xe5a7bd, - 0xe5a7be, - 0xe5a7bf, - 0xe5a880, - 0xe5a881, - 0xe5a882, - 0xe5a883, - 0xe5a884, - 0xe5a885, - 0xe5a886, - 0xe5a887, - 0xe5a888, - 0xe5a889, - 0xe5a88a, - 0xe5a88b, - 0xe5a88c, - 0xe5a88d, - 0xe5a88e, - 0xe5a88f, - 0xe5a890, - 0xe5a891, - 0xe5a892, - 0xe5a893, - 0xe5a894, - 0xe5a895, - 0xe5a896, - 0xe5a897, - 0xe5a898, - 0xe5a899, - 0xe5a89a, - 0xe5a89b, - 0xe5a89c, - 0xe5a89d, - 0xe5a89e, - 0xe5a89f, - 0xe5a8a0, - 0xe5a8a1, - 0xe5a8a2, - 0xe5a8a3, - 0xe5a8a4, - 0xe5a8a5, - 0xe5a8a6, - 0xe5a8a7, - 0xe5a8a8, - 0xe5a8a9, - 0xe5a8aa, - 0xe5a8ab, - 0xe5a8ac, - 0xe5a8ad, - 0xe5a8ae, - 0xe5a8af, - 0xe5a8b0, - 0xe5a8b1, - 0xe5a8b2, - 0xe5a8b3, - 0xe5a8b4, - 0xe5a8b5, - 0xe5a8b6, - 0xe5a8b7, - 0xe5a8b8, - 0xe5a8b9, - 0xe5a8ba, - 0xe5a8bb, - 0xe5a8bc, - 0xe5a8bd, - 0xe5a8be, - 0xe5a8bf, - 0xe5a980, - 0xe5a981, - 0xe5a982, - 0xe5a983, - 0xe5a984, - 0xe5a985, - 0xe5a986, - 0xe5a987, - 0xe5a988, - 0xe5a989, - 0xe5a98a, - 0xe5a98b, - 0xe5a98c, - 0xe5a98d, - 0xe5a98e, - 0xe5a98f, - 0xe5a990, - 0xe5a991, - 0xe5a992, - 0xe5a993, - 0xe5a994, - 0xe5a995, - 0xe5a996, - 0xe5a997, - 0xe5a998, - 0xe5a999, - 0xe5a99a, - 0xe5a99b, - 0xe5a99c, - 0xe5a99d, - 0xe5a99e, - 0xe5a99f, - 0xe5a9a0, - 0xe5a9a1, - 0xe5a9a2, - 0xe5a9a3, - 0xe5a9a4, - 0xe5a9a5, - 0xe5a9a6, - 0xe5a9a7, - 0xe5a9a8, - 0xe5a9a9, - 0xe5a9aa, - 0xe5a9ab, - 0xe5a9ac, - 0xe5a9ad, - 0xe5a9ae, - 0xe5a9af, - 0xe5a9b0, - 0xe5a9b1, - 0xe5a9b2, - 0xe5a9b3, - 0xe5a9b4, - 0xe5a9b5, - 0xe5a9b6, - 0xe5a9b7, - 0xe5a9b8, - 0xe5a9b9, - 0xe5a9ba, - 0xe5a9bb, - 0xe5a9bc, - 0xe5a9bd, - 0xe5a9be, - 0xe5a9bf, - 0xe5aa80, - 0xe5aa81, - 0xe5aa82, - 0xe5aa83, - 0xe5aa84, - 0xe5aa85, - 0xe5aa86, - 0xe5aa87, - 0xe5aa88, - 0xe5aa89, - 0xe5aa8a, - 0xe5aa8b, - 0xe5aa8c, - 0xe5aa8d, - 0xe5aa8e, - 0xe5aa8f, - 0xe5aa90, - 0xe5aa91, - 0xe5aa92, - 0xe5aa93, - 0xe5aa94, - 0xe5aa95, - 0xe5aa96, - 0xe5aa97, - 0xe5aa98, - 0xe5aa99, - 0xe5aa9a, - 0xe5aa9b, - 0xe5aa9c, - 0xe5aa9d, - 0xe5aa9e, - 0xe5aa9f, - 0xe5aaa0, - 0xe5aaa1, - 0xe5aaa2, - 0xe5aaa3, - 0xe5aaa4, - 0xe5aaa5, - 0xe5aaa6, - 0xe5aaa7, - 0xe5aaa8, - 0xe5aaa9, - 0xe5aaaa, - 0xe5aaab, - 0xe5aaac, - 0xe5aaad, - 0xe5aaae, - 0xe5aaaf, - 0xe5aab0, - 0xe5aab1, - 0xe5aab2, - 0xe5aab3, - 0xe5aab4, - 0xe5aab5, - 0xe5aab6, - 0xe5aab7, - 0xe5aab8, - 0xe5aab9, - 0xe5aaba, - 0xe5aabb, - 0xe5aabc, - 0xe5aabd, - 0xe5aabe, - 0xe5aabf, - 0xe5ab80, - 0xe5ab81, - 0xe5ab82, - 0xe5ab83, - 0xe5ab84, - 0xe5ab85, - 0xe5ab86, - 0xe5ab87, - 0xe5ab88, - 0xe5ab89, - 0xe5ab8a, - 0xe5ab8b, - 0xe5ab8c, - 0xe5ab8d, - 0xe5ab8e, - 0xe5ab8f, - 0xe5ab90, - 0xe5ab91, - 0xe5ab92, - 0xe5ab93, - 0xe5ab94, - 0xe5ab95, - 0xe5ab96, - 0xe5ab97, - 0xe5ab98, - 0xe5ab99, - 0xe5ab9a, - 0xe5ab9b, - 0xe5ab9c, - 0xe5ab9d, - 0xe5ab9e, - 0xe5ab9f, - 0xe5aba0, - 0xe5aba1, - 0xe5aba2, - 0xe5aba3, - 0xe5aba4, - 0xe5aba5, - 0xe5aba6, - 0xe5aba7, - 0xe5aba8, - 0xe5aba9, - 0xe5abaa, - 0xe5abab, - 0xe5abac, - 0xe5abad, - 0xe5abae, - 0xe5abaf, - 0xe5abb0, - 0xe5abb1, - 0xe5abb2, - 0xe5abb3, - 0xe5abb4, - 0xe5abb5, - 0xe5abb6, - 0xe5abb7, - 0xe5abb8, - 0xe5abb9, - 0xe5abba, - 0xe5abbb, - 0xe5abbc, - 0xe5abbd, - 0xe5abbe, - 0xe5abbf, - 0xe5ac80, - 0xe5ac81, - 0xe5ac82, - 0xe5ac83, - 0xe5ac84, - 0xe5ac85, - 0xe5ac86, - 0xe5ac87, - 0xe5ac88, - 0xe5ac89, - 0xe5ac8a, - 0xe5ac8b, - 0xe5ac8c, - 0xe5ac8d, - 0xe5ac8e, - 0xe5ac8f, - 0xe5ac90, - 0xe5ac91, - 0xe5ac92, - 0xe5ac93, - 0xe5ac94, - 0xe5ac95, - 0xe5ac96, - 0xe5ac97, - 0xe5ac98, - 0xe5ac99, - 0xe5ac9a, - 0xe5ac9b, - 0xe5ac9c, - 0xe5ac9d, - 0xe5ac9e, - 0xe5ac9f, - 0xe5aca0, - 0xe5aca1, - 0xe5aca2, - 0xe5aca3, - 0xe5aca4, - 0xe5aca5, - 0xe5aca6, - 0xe5aca7, - 0xe5aca8, - 0xe5aca9, - 0xe5acaa, - 0xe5acab, - 0xe5acac, - 0xe5acad, - 0xe5acae, - 0xe5acaf, - 0xe5acb0, - 0xe5acb1, - 0xe5acb2, - 0xe5acb3, - 0xe5acb4, - 0xe5acb5, - 0xe5acb6, - 0xe5acb7, - 0xe5acb8, - 0xe5acb9, - 0xe5acba, - 0xe5acbb, - 0xe5acbc, - 0xe5acbd, - 0xe5acbe, - 0xe5acbf, - 0xe5ad80, - 0xe5ad81, - 0xe5ad82, - 0xe5ad83, - 0xe5ad84, - 0xe5ad85, - 0xe5ad86, - 0xe5ad87, - 0xe5ad88, - 0xe5ad89, - 0xe5ad8a, - 0xe5ad8b, - 0xe5ad8c, - 0xe5ad8d, - 0xe5ad8e, - 0xe5ad8f, - 0xe5ad90, - 0xe5ad91, - 0xe5ad92, - 0xe5ad93, - 0xe5ad94, - 0xe5ad95, - 0xe5ad96, - 0xe5ad97, - 0xe5ad98, - 0xe5ad99, - 0xe5ad9a, - 0xe5ad9b, - 0xe5ad9c, - 0xe5ad9d, - 0xe5ad9e, - 0xe5ad9f, - 0xe5ada0, - 0xe5ada1, - 0xe5ada2, - 0xe5ada3, - 0xe5ada4, - 0xe5ada5, - 0xe5ada6, - 0xe5ada7, - 0xe5ada8, - 0xe5ada9, - 0xe5adaa, - 0xe5adab, - 0xe5adac, - 0xe5adad, - 0xe5adae, - 0xe5adaf, - 0xe5adb0, - 0xe5adb1, - 0xe5adb2, - 0xe5adb3, - 0xe5adb4, - 0xe5adb5, - 0xe5adb6, - 0xe5adb7, - 0xe5adb8, - 0xe5adb9, - 0xe5adba, - 0xe5adbb, - 0xe5adbc, - 0xe5adbd, - 0xe5adbe, - 0xe5adbf, - 0xe5ae80, - 0xe5ae81, - 0xe5ae82, - 0xe5ae83, - 0xe5ae84, - 0xe5ae85, - 0xe5ae86, - 0xe5ae87, - 0xe5ae88, - 0xe5ae89, - 0xe5ae8a, - 0xe5ae8b, - 0xe5ae8c, - 0xe5ae8d, - 0xe5ae8e, - 0xe5ae8f, - 0xe5ae90, - 0xe5ae91, - 0xe5ae92, - 0xe5ae93, - 0xe5ae94, - 0xe5ae95, - 0xe5ae96, - 0xe5ae97, - 0xe5ae98, - 0xe5ae99, - 0xe5ae9a, - 0xe5ae9b, - 0xe5ae9c, - 0xe5ae9d, - 0xe5ae9e, - 0xe5ae9f, - 0xe5aea0, - 0xe5aea1, - 0xe5aea2, - 0xe5aea3, - 0xe5aea4, - 0xe5aea5, - 0xe5aea6, - 0xe5aea7, - 0xe5aea8, - 0xe5aea9, - 0xe5aeaa, - 0xe5aeab, - 0xe5aeac, - 0xe5aead, - 0xe5aeae, - 0xe5aeaf, - 0xe5aeb0, - 0xe5aeb1, - 0xe5aeb2, - 0xe5aeb3, - 0xe5aeb4, - 0xe5aeb5, - 0xe5aeb6, - 0xe5aeb7, - 0xe5aeb8, - 0xe5aeb9, - 0xe5aeba, - 0xe5aebb, - 0xe5aebc, - 0xe5aebd, - 0xe5aebe, - 0xe5aebf, - 0xe5af80, - 0xe5af81, - 0xe5af82, - 0xe5af83, - 0xe5af84, - 0xe5af85, - 0xe5af86, - 0xe5af87, - 0xe5af88, - 0xe5af89, - 0xe5af8a, - 0xe5af8b, - 0xe5af8c, - 0xe5af8d, - 0xe5af8e, - 0xe5af8f, - 0xe5af90, - 0xe5af91, - 0xe5af92, - 0xe5af93, - 0xe5af94, - 0xe5af95, - 0xe5af96, - 0xe5af97, - 0xe5af98, - 0xe5af99, - 0xe5af9a, - 0xe5af9b, - 0xe5af9c, - 0xe5af9d, - 0xe5af9e, - 0xe5af9f, - 0xe5afa0, - 0xe5afa1, - 0xe5afa2, - 0xe5afa3, - 0xe5afa4, - 0xe5afa5, - 0xe5afa6, - 0xe5afa7, - 0xe5afa8, - 0xe5afa9, - 0xe5afaa, - 0xe5afab, - 0xe5afac, - 0xe5afad, - 0xe5afae, - 0xe5afaf, - 0xe5afb0, - 0xe5afb1, - 0xe5afb2, - 0xe5afb3, - 0xe5afb4, - 0xe5afb5, - 0xe5afb6, - 0xe5afb7, - 0xe5afb8, - 0xe5afb9, - 0xe5afba, - 0xe5afbb, - 0xe5afbc, - 0xe5afbd, - 0xe5afbe, - 0xe5afbf, - 0xe5b080, - 0xe5b081, - 0xe5b082, - 0xe5b083, - 0xe5b084, - 0xe5b085, - 0xe5b086, - 0xe5b087, - 0xe5b088, - 0xe5b089, - 0xe5b08a, - 0xe5b08b, - 0xe5b08c, - 0xe5b08d, - 0xe5b08e, - 0xe5b08f, - 0xe5b090, - 0xe5b091, - 0xe5b092, - 0xe5b093, - 0xe5b094, - 0xe5b095, - 0xe5b096, - 0xe5b097, - 0xe5b098, - 0xe5b099, - 0xe5b09a, - 0xe5b09b, - 0xe5b09c, - 0xe5b09d, - 0xe5b09e, - 0xe5b09f, - 0xe5b0a0, - 0xe5b0a1, - 0xe5b0a2, - 0xe5b0a3, - 0xe5b0a4, - 0xe5b0a5, - 0xe5b0a6, - 0xe5b0a7, - 0xe5b0a8, - 0xe5b0a9, - 0xe5b0aa, - 0xe5b0ab, - 0xe5b0ac, - 0xe5b0ad, - 0xe5b0ae, - 0xe5b0af, - 0xe5b0b0, - 0xe5b0b1, - 0xe5b0b2, - 0xe5b0b3, - 0xe5b0b4, - 0xe5b0b5, - 0xe5b0b6, - 0xe5b0b7, - 0xe5b0b8, - 0xe5b0b9, - 0xe5b0ba, - 0xe5b0bb, - 0xe5b0bc, - 0xe5b0bd, - 0xe5b0be, - 0xe5b0bf, - 0xe5b180, - 0xe5b181, - 0xe5b182, - 0xe5b183, - 0xe5b184, - 0xe5b185, - 0xe5b186, - 0xe5b187, - 0xe5b188, - 0xe5b189, - 0xe5b18a, - 0xe5b18b, - 0xe5b18c, - 0xe5b18d, - 0xe5b18e, - 0xe5b18f, - 0xe5b190, - 0xe5b191, - 0xe5b192, - 0xe5b193, - 0xe5b194, - 0xe5b195, - 0xe5b196, - 0xe5b197, - 0xe5b198, - 0xe5b199, - 0xe5b19a, - 0xe5b19b, - 0xe5b19c, - 0xe5b19d, - 0xe5b19e, - 0xe5b19f, - 0xe5b1a0, - 0xe5b1a1, - 0xe5b1a2, - 0xe5b1a3, - 0xe5b1a4, - 0xe5b1a5, - 0xe5b1a6, - 0xe5b1a7, - 0xe5b1a8, - 0xe5b1a9, - 0xe5b1aa, - 0xe5b1ab, - 0xe5b1ac, - 0xe5b1ad, - 0xe5b1ae, - 0xe5b1af, - 0xe5b1b0, - 0xe5b1b1, - 0xe5b1b2, - 0xe5b1b3, - 0xe5b1b4, - 0xe5b1b5, - 0xe5b1b6, - 0xe5b1b7, - 0xe5b1b8, - 0xe5b1b9, - 0xe5b1ba, - 0xe5b1bb, - 0xe5b1bc, - 0xe5b1bd, - 0xe5b1be, - 0xe5b1bf, - 0xe5b280, - 0xe5b281, - 0xe5b282, - 0xe5b283, - 0xe5b284, - 0xe5b285, - 0xe5b286, - 0xe5b287, - 0xe5b288, - 0xe5b289, - 0xe5b28a, - 0xe5b28b, - 0xe5b28c, - 0xe5b28d, - 0xe5b28e, - 0xe5b28f, - 0xe5b290, - 0xe5b291, - 0xe5b292, - 0xe5b293, - 0xe5b294, - 0xe5b295, - 0xe5b296, - 0xe5b297, - 0xe5b298, - 0xe5b299, - 0xe5b29a, - 0xe5b29b, - 0xe5b29c, - 0xe5b29d, - 0xe5b29e, - 0xe5b29f, - 0xe5b2a0, - 0xe5b2a1, - 0xe5b2a2, - 0xe5b2a3, - 0xe5b2a4, - 0xe5b2a5, - 0xe5b2a6, - 0xe5b2a7, - 0xe5b2a8, - 0xe5b2a9, - 0xe5b2aa, - 0xe5b2ab, - 0xe5b2ac, - 0xe5b2ad, - 0xe5b2ae, - 0xe5b2af, - 0xe5b2b0, - 0xe5b2b1, - 0xe5b2b2, - 0xe5b2b3, - 0xe5b2b4, - 0xe5b2b5, - 0xe5b2b6, - 0xe5b2b7, - 0xe5b2b8, - 0xe5b2b9, - 0xe5b2ba, - 0xe5b2bb, - 0xe5b2bc, - 0xe5b2bd, - 0xe5b2be, - 0xe5b2bf, - 0xe5b380, - 0xe5b381, - 0xe5b382, - 0xe5b383, - 0xe5b384, - 0xe5b385, - 0xe5b386, - 0xe5b387, - 0xe5b388, - 0xe5b389, - 0xe5b38a, - 0xe5b38b, - 0xe5b38c, - 0xe5b38d, - 0xe5b38e, - 0xe5b38f, - 0xe5b390, - 0xe5b391, - 0xe5b392, - 0xe5b393, - 0xe5b394, - 0xe5b395, - 0xe5b396, - 0xe5b397, - 0xe5b398, - 0xe5b399, - 0xe5b39a, - 0xe5b39b, - 0xe5b39c, - 0xe5b39d, - 0xe5b39e, - 0xe5b39f, - 0xe5b3a0, - 0xe5b3a1, - 0xe5b3a2, - 0xe5b3a3, - 0xe5b3a4, - 0xe5b3a5, - 0xe5b3a6, - 0xe5b3a7, - 0xe5b3a8, - 0xe5b3a9, - 0xe5b3aa, - 0xe5b3ab, - 0xe5b3ac, - 0xe5b3ad, - 0xe5b3ae, - 0xe5b3af, - 0xe5b3b0, - 0xe5b3b1, - 0xe5b3b2, - 0xe5b3b3, - 0xe5b3b4, - 0xe5b3b5, - 0xe5b3b6, - 0xe5b3b7, - 0xe5b3b8, - 0xe5b3b9, - 0xe5b3ba, - 0xe5b3bb, - 0xe5b3bc, - 0xe5b3bd, - 0xe5b3be, - 0xe5b3bf, - 0xe5b480, - 0xe5b481, - 0xe5b482, - 0xe5b483, - 0xe5b484, - 0xe5b485, - 0xe5b486, - 0xe5b487, - 0xe5b488, - 0xe5b489, - 0xe5b48a, - 0xe5b48b, - 0xe5b48c, - 0xe5b48d, - 0xe5b48e, - 0xe5b48f, - 0xe5b490, - 0xe5b491, - 0xe5b492, - 0xe5b493, - 0xe5b494, - 0xe5b495, - 0xe5b496, - 0xe5b497, - 0xe5b498, - 0xe5b499, - 0xe5b49a, - 0xe5b49b, - 0xe5b49c, - 0xe5b49d, - 0xe5b49e, - 0xe5b49f, - 0xe5b4a0, - 0xe5b4a1, - 0xe5b4a2, - 0xe5b4a3, - 0xe5b4a4, - 0xe5b4a5, - 0xe5b4a6, - 0xe5b4a7, - 0xe5b4a8, - 0xe5b4a9, - 0xe5b4aa, - 0xe5b4ab, - 0xe5b4ac, - 0xe5b4ad, - 0xe5b4ae, - 0xe5b4af, - 0xe5b4b0, - 0xe5b4b1, - 0xe5b4b2, - 0xe5b4b3, - 0xe5b4b4, - 0xe5b4b5, - 0xe5b4b6, - 0xe5b4b7, - 0xe5b4b8, - 0xe5b4b9, - 0xe5b4ba, - 0xe5b4bb, - 0xe5b4bc, - 0xe5b4bd, - 0xe5b4be, - 0xe5b4bf, - 0xe5b580, - 0xe5b581, - 0xe5b582, - 0xe5b583, - 0xe5b584, - 0xe5b585, - 0xe5b586, - 0xe5b587, - 0xe5b588, - 0xe5b589, - 0xe5b58a, - 0xe5b58b, - 0xe5b58c, - 0xe5b58d, - 0xe5b58e, - 0xe5b58f, - 0xe5b590, - 0xe5b591, - 0xe5b592, - 0xe5b593, - 0xe5b594, - 0xe5b595, - 0xe5b596, - 0xe5b597, - 0xe5b598, - 0xe5b599, - 0xe5b59a, - 0xe5b59b, - 0xe5b59c, - 0xe5b59d, - 0xe5b59e, - 0xe5b59f, - 0xe5b5a0, - 0xe5b5a1, - 0xe5b5a2, - 0xe5b5a3, - 0xe5b5a4, - 0xe5b5a5, - 0xe5b5a6, - 0xe5b5a7, - 0xe5b5a8, - 0xe5b5a9, - 0xe5b5aa, - 0xe5b5ab, - 0xe5b5ac, - 0xe5b5ad, - 0xe5b5ae, - 0xe5b5af, - 0xe5b5b0, - 0xe5b5b1, - 0xe5b5b2, - 0xe5b5b3, - 0xe5b5b4, - 0xe5b5b5, - 0xe5b5b6, - 0xe5b5b7, - 0xe5b5b8, - 0xe5b5b9, - 0xe5b5ba, - 0xe5b5bb, - 0xe5b5bc, - 0xe5b5bd, - 0xe5b5be, - 0xe5b5bf, - 0xe5b680, - 0xe5b681, - 0xe5b682, - 0xe5b683, - 0xe5b684, - 0xe5b685, - 0xe5b686, - 0xe5b687, - 0xe5b688, - 0xe5b689, - 0xe5b68a, - 0xe5b68b, - 0xe5b68c, - 0xe5b68d, - 0xe5b68e, - 0xe5b68f, - 0xe5b690, - 0xe5b691, - 0xe5b692, - 0xe5b693, - 0xe5b694, - 0xe5b695, - 0xe5b696, - 0xe5b697, - 0xe5b698, - 0xe5b699, - 0xe5b69a, - 0xe5b69b, - 0xe5b69c, - 0xe5b69d, - 0xe5b69e, - 0xe5b69f, - 0xe5b6a0, - 0xe5b6a1, - 0xe5b6a2, - 0xe5b6a3, - 0xe5b6a4, - 0xe5b6a5, - 0xe5b6a6, - 0xe5b6a7, - 0xe5b6a8, - 0xe5b6a9, - 0xe5b6aa, - 0xe5b6ab, - 0xe5b6ac, - 0xe5b6ad, - 0xe5b6ae, - 0xe5b6af, - 0xe5b6b0, - 0xe5b6b1, - 0xe5b6b2, - 0xe5b6b3, - 0xe5b6b4, - 0xe5b6b5, - 0xe5b6b6, - 0xe5b6b7, - 0xe5b6b8, - 0xe5b6b9, - 0xe5b6ba, - 0xe5b6bb, - 0xe5b6bc, - 0xe5b6bd, - 0xe5b6be, - 0xe5b6bf, - 0xe5b780, - 0xe5b781, - 0xe5b782, - 0xe5b783, - 0xe5b784, - 0xe5b785, - 0xe5b786, - 0xe5b787, - 0xe5b788, - 0xe5b789, - 0xe5b78a, - 0xe5b78b, - 0xe5b78c, - 0xe5b78d, - 0xe5b78e, - 0xe5b78f, - 0xe5b790, - 0xe5b791, - 0xe5b792, - 0xe5b793, - 0xe5b794, - 0xe5b795, - 0xe5b796, - 0xe5b797, - 0xe5b798, - 0xe5b799, - 0xe5b79a, - 0xe5b79b, - 0xe5b79c, - 0xe5b79d, - 0xe5b79e, - 0xe5b79f, - 0xe5b7a0, - 0xe5b7a1, - 0xe5b7a2, - 0xe5b7a3, - 0xe5b7a4, - 0xe5b7a5, - 0xe5b7a6, - 0xe5b7a7, - 0xe5b7a8, - 0xe5b7a9, - 0xe5b7aa, - 0xe5b7ab, - 0xe5b7ac, - 0xe5b7ad, - 0xe5b7ae, - 0xe5b7af, - 0xe5b7b0, - 0xe5b7b1, - 0xe5b7b2, - 0xe5b7b3, - 0xe5b7b4, - 0xe5b7b5, - 0xe5b7b6, - 0xe5b7b7, - 0xe5b7b8, - 0xe5b7b9, - 0xe5b7ba, - 0xe5b7bb, - 0xe5b7bc, - 0xe5b7bd, - 0xe5b7be, - 0xe5b7bf, - 0xe5b880, - 0xe5b881, - 0xe5b882, - 0xe5b883, - 0xe5b884, - 0xe5b885, - 0xe5b886, - 0xe5b887, - 0xe5b888, - 0xe5b889, - 0xe5b88a, - 0xe5b88b, - 0xe5b88c, - 0xe5b88d, - 0xe5b88e, - 0xe5b88f, - 0xe5b890, - 0xe5b891, - 0xe5b892, - 0xe5b893, - 0xe5b894, - 0xe5b895, - 0xe5b896, - 0xe5b897, - 0xe5b898, - 0xe5b899, - 0xe5b89a, - 0xe5b89b, - 0xe5b89c, - 0xe5b89d, - 0xe5b89e, - 0xe5b89f, - 0xe5b8a0, - 0xe5b8a1, - 0xe5b8a2, - 0xe5b8a3, - 0xe5b8a4, - 0xe5b8a5, - 0xe5b8a6, - 0xe5b8a7, - 0xe5b8a8, - 0xe5b8a9, - 0xe5b8aa, - 0xe5b8ab, - 0xe5b8ac, - 0xe5b8ad, - 0xe5b8ae, - 0xe5b8af, - 0xe5b8b0, - 0xe5b8b1, - 0xe5b8b2, - 0xe5b8b3, - 0xe5b8b4, - 0xe5b8b5, - 0xe5b8b6, - 0xe5b8b7, - 0xe5b8b8, - 0xe5b8b9, - 0xe5b8ba, - 0xe5b8bb, - 0xe5b8bc, - 0xe5b8bd, - 0xe5b8be, - 0xe5b8bf, - 0xe5b980, - 0xe5b981, - 0xe5b982, - 0xe5b983, - 0xe5b984, - 0xe5b985, - 0xe5b986, - 0xe5b987, - 0xe5b988, - 0xe5b989, - 0xe5b98a, - 0xe5b98b, - 0xe5b98c, - 0xe5b98d, - 0xe5b98e, - 0xe5b98f, - 0xe5b990, - 0xe5b991, - 0xe5b992, - 0xe5b993, - 0xe5b994, - 0xe5b995, - 0xe5b996, - 0xe5b997, - 0xe5b998, - 0xe5b999, - 0xe5b99a, - 0xe5b99b, - 0xe5b99c, - 0xe5b99d, - 0xe5b99e, - 0xe5b99f, - 0xe5b9a0, - 0xe5b9a1, - 0xe5b9a2, - 0xe5b9a3, - 0xe5b9a4, - 0xe5b9a5, - 0xe5b9a6, - 0xe5b9a7, - 0xe5b9a8, - 0xe5b9a9, - 0xe5b9aa, - 0xe5b9ab, - 0xe5b9ac, - 0xe5b9ad, - 0xe5b9ae, - 0xe5b9af, - 0xe5b9b0, - 0xe5b9b1, - 0xe5b9b2, - 0xe5b9b3, - 0xe5b9b4, - 0xe5b9b5, - 0xe5b9b6, - 0xe5b9b7, - 0xe5b9b8, - 0xe5b9b9, - 0xe5b9ba, - 0xe5b9bb, - 0xe5b9bc, - 0xe5b9bd, - 0xe5b9be, - 0xe5b9bf, - 0xe5ba80, - 0xe5ba81, - 0xe5ba82, - 0xe5ba83, - 0xe5ba84, - 0xe5ba85, - 0xe5ba86, - 0xe5ba87, - 0xe5ba88, - 0xe5ba89, - 0xe5ba8a, - 0xe5ba8b, - 0xe5ba8c, - 0xe5ba8d, - 0xe5ba8e, - 0xe5ba8f, - 0xe5ba90, - 0xe5ba91, - 0xe5ba92, - 0xe5ba93, - 0xe5ba94, - 0xe5ba95, - 0xe5ba96, - 0xe5ba97, - 0xe5ba98, - 0xe5ba99, - 0xe5ba9a, - 0xe5ba9b, - 0xe5ba9c, - 0xe5ba9d, - 0xe5ba9e, - 0xe5ba9f, - 0xe5baa0, - 0xe5baa1, - 0xe5baa2, - 0xe5baa3, - 0xe5baa4, - 0xe5baa5, - 0xe5baa6, - 0xe5baa7, - 0xe5baa8, - 0xe5baa9, - 0xe5baaa, - 0xe5baab, - 0xe5baac, - 0xe5baad, - 0xe5baae, - 0xe5baaf, - 0xe5bab0, - 0xe5bab1, - 0xe5bab2, - 0xe5bab3, - 0xe5bab4, - 0xe5bab5, - 0xe5bab6, - 0xe5bab7, - 0xe5bab8, - 0xe5bab9, - 0xe5baba, - 0xe5babb, - 0xe5babc, - 0xe5babd, - 0xe5babe, - 0xe5babf, - 0xe5bb80, - 0xe5bb81, - 0xe5bb82, - 0xe5bb83, - 0xe5bb84, - 0xe5bb85, - 0xe5bb86, - 0xe5bb87, - 0xe5bb88, - 0xe5bb89, - 0xe5bb8a, - 0xe5bb8b, - 0xe5bb8c, - 0xe5bb8d, - 0xe5bb8e, - 0xe5bb8f, - 0xe5bb90, - 0xe5bb91, - 0xe5bb92, - 0xe5bb93, - 0xe5bb94, - 0xe5bb95, - 0xe5bb96, - 0xe5bb97, - 0xe5bb98, - 0xe5bb99, - 0xe5bb9a, - 0xe5bb9b, - 0xe5bb9c, - 0xe5bb9d, - 0xe5bb9e, - 0xe5bb9f, - 0xe5bba0, - 0xe5bba1, - 0xe5bba2, - 0xe5bba3, - 0xe5bba4, - 0xe5bba5, - 0xe5bba6, - 0xe5bba7, - 0xe5bba8, - 0xe5bba9, - 0xe5bbaa, - 0xe5bbab, - 0xe5bbac, - 0xe5bbad, - 0xe5bbae, - 0xe5bbaf, - 0xe5bbb0, - 0xe5bbb1, - 0xe5bbb2, - 0xe5bbb3, - 0xe5bbb4, - 0xe5bbb5, - 0xe5bbb6, - 0xe5bbb7, - 0xe5bbb8, - 0xe5bbb9, - 0xe5bbba, - 0xe5bbbb, - 0xe5bbbc, - 0xe5bbbd, - 0xe5bbbe, - 0xe5bbbf, - 0xe5bc80, - 0xe5bc81, - 0xe5bc82, - 0xe5bc83, - 0xe5bc84, - 0xe5bc85, - 0xe5bc86, - 0xe5bc87, - 0xe5bc88, - 0xe5bc89, - 0xe5bc8a, - 0xe5bc8b, - 0xe5bc8c, - 0xe5bc8d, - 0xe5bc8e, - 0xe5bc8f, - 0xe5bc90, - 0xe5bc91, - 0xe5bc92, - 0xe5bc93, - 0xe5bc94, - 0xe5bc95, - 0xe5bc96, - 0xe5bc97, - 0xe5bc98, - 0xe5bc99, - 0xe5bc9a, - 0xe5bc9b, - 0xe5bc9c, - 0xe5bc9d, - 0xe5bc9e, - 0xe5bc9f, - 0xe5bca0, - 0xe5bca1, - 0xe5bca2, - 0xe5bca3, - 0xe5bca4, - 0xe5bca5, - 0xe5bca6, - 0xe5bca7, - 0xe5bca8, - 0xe5bca9, - 0xe5bcaa, - 0xe5bcab, - 0xe5bcac, - 0xe5bcad, - 0xe5bcae, - 0xe5bcaf, - 0xe5bcb0, - 0xe5bcb1, - 0xe5bcb2, - 0xe5bcb3, - 0xe5bcb4, - 0xe5bcb5, - 0xe5bcb6, - 0xe5bcb7, - 0xe5bcb8, - 0xe5bcb9, - 0xe5bcba, - 0xe5bcbb, - 0xe5bcbc, - 0xe5bcbd, - 0xe5bcbe, - 0xe5bcbf, - 0xe5bd80, - 0xe5bd81, - 0xe5bd82, - 0xe5bd83, - 0xe5bd84, - 0xe5bd85, - 0xe5bd86, - 0xe5bd87, - 0xe5bd88, - 0xe5bd89, - 0xe5bd8a, - 0xe5bd8b, - 0xe5bd8c, - 0xe5bd8d, - 0xe5bd8e, - 0xe5bd8f, - 0xe5bd90, - 0xe5bd91, - 0xe5bd92, - 0xe5bd93, - 0xe5bd94, - 0xe5bd95, - 0xe5bd96, - 0xe5bd97, - 0xe5bd98, - 0xe5bd99, - 0xe5bd9a, - 0xe5bd9b, - 0xe5bd9c, - 0xe5bd9d, - 0xe5bd9e, - 0xe5bd9f, - 0xe5bda0, - 0xe5bda1, - 0xe5bda2, - 0xe5bda3, - 0xe5bda4, - 0xe5bda5, - 0xe5bda6, - 0xe5bda7, - 0xe5bda8, - 0xe5bda9, - 0xe5bdaa, - 0xe5bdab, - 0xe5bdac, - 0xe5bdad, - 0xe5bdae, - 0xe5bdaf, - 0xe5bdb0, - 0xe5bdb1, - 0xe5bdb2, - 0xe5bdb3, - 0xe5bdb4, - 0xe5bdb5, - 0xe5bdb6, - 0xe5bdb7, - 0xe5bdb8, - 0xe5bdb9, - 0xe5bdba, - 0xe5bdbb, - 0xe5bdbc, - 0xe5bdbd, - 0xe5bdbe, - 0xe5bdbf, - 0xe5be80, - 0xe5be81, - 0xe5be82, - 0xe5be83, - 0xe5be84, - 0xe5be85, - 0xe5be86, - 0xe5be87, - 0xe5be88, - 0xe5be89, - 0xe5be8a, - 0xe5be8b, - 0xe5be8c, - 0xe5be8d, - 0xe5be8e, - 0xe5be8f, - 0xe5be90, - 0xe5be91, - 0xe5be92, - 0xe5be93, - 0xe5be94, - 0xe5be95, - 0xe5be96, - 0xe5be97, - 0xe5be98, - 0xe5be99, - 0xe5be9a, - 0xe5be9b, - 0xe5be9c, - 0xe5be9d, - 0xe5be9e, - 0xe5be9f, - 0xe5bea0, - 0xe5bea1, - 0xe5bea2, - 0xe5bea3, - 0xe5bea4, - 0xe5bea5, - 0xe5bea6, - 0xe5bea7, - 0xe5bea8, - 0xe5bea9, - 0xe5beaa, - 0xe5beab, - 0xe5beac, - 0xe5bead, - 0xe5beae, - 0xe5beaf, - 0xe5beb0, - 0xe5beb1, - 0xe5beb2, - 0xe5beb3, - 0xe5beb4, - 0xe5beb5, - 0xe5beb6, - 0xe5beb7, - 0xe5beb8, - 0xe5beb9, - 0xe5beba, - 0xe5bebb, - 0xe5bebc, - 0xe5bebd, - 0xe5bebe, - 0xe5bebf, - 0xe5bf80, - 0xe5bf81, - 0xe5bf82, - 0xe5bf83, - 0xe5bf84, - 0xe5bf85, - 0xe5bf86, - 0xe5bf87, - 0xe5bf88, - 0xe5bf89, - 0xe5bf8a, - 0xe5bf8b, - 0xe5bf8c, - 0xe5bf8d, - 0xe5bf8e, - 0xe5bf8f, - 0xe5bf90, - 0xe5bf91, - 0xe5bf92, - 0xe5bf93, - 0xe5bf94, - 0xe5bf95, - 0xe5bf96, - 0xe5bf97, - 0xe5bf98, - 0xe5bf99, - 0xe5bf9a, - 0xe5bf9b, - 0xe5bf9c, - 0xe5bf9d, - 0xe5bf9e, - 0xe5bf9f, - 0xe5bfa0, - 0xe5bfa1, - 0xe5bfa2, - 0xe5bfa3, - 0xe5bfa4, - 0xe5bfa5, - 0xe5bfa6, - 0xe5bfa7, - 0xe5bfa8, - 0xe5bfa9, - 0xe5bfaa, - 0xe5bfab, - 0xe5bfac, - 0xe5bfad, - 0xe5bfae, - 0xe5bfaf, - 0xe5bfb0, - 0xe5bfb1, - 0xe5bfb2, - 0xe5bfb3, - 0xe5bfb4, - 0xe5bfb5, - 0xe5bfb6, - 0xe5bfb7, - 0xe5bfb8, - 0xe5bfb9, - 0xe5bfba, - 0xe5bfbb, - 0xe5bfbc, - 0xe5bfbd, - 0xe5bfbe, - 0xe5bfbf, - 0xe68080, - 0xe68081, - 0xe68082, - 0xe68083, - 0xe68084, - 0xe68085, - 0xe68086, - 0xe68087, - 0xe68088, - 0xe68089, - 0xe6808a, - 0xe6808b, - 0xe6808c, - 0xe6808d, - 0xe6808e, - 0xe6808f, - 0xe68090, - 0xe68091, - 0xe68092, - 0xe68093, - 0xe68094, - 0xe68095, - 0xe68096, - 0xe68097, - 0xe68098, - 0xe68099, - 0xe6809a, - 0xe6809b, - 0xe6809c, - 0xe6809d, - 0xe6809e, - 0xe6809f, - 0xe680a0, - 0xe680a1, - 0xe680a2, - 0xe680a3, - 0xe680a4, - 0xe680a5, - 0xe680a6, - 0xe680a7, - 0xe680a8, - 0xe680a9, - 0xe680aa, - 0xe680ab, - 0xe680ac, - 0xe680ad, - 0xe680ae, - 0xe680af, - 0xe680b0, - 0xe680b1, - 0xe680b2, - 0xe680b3, - 0xe680b4, - 0xe680b5, - 0xe680b6, - 0xe680b7, - 0xe680b8, - 0xe680b9, - 0xe680ba, - 0xe680bb, - 0xe680bc, - 0xe680bd, - 0xe680be, - 0xe680bf, - 0xe68180, - 0xe68181, - 0xe68182, - 0xe68183, - 0xe68184, - 0xe68185, - 0xe68186, - 0xe68187, - 0xe68188, - 0xe68189, - 0xe6818a, - 0xe6818b, - 0xe6818c, - 0xe6818d, - 0xe6818e, - 0xe6818f, - 0xe68190, - 0xe68191, - 0xe68192, - 0xe68193, - 0xe68194, - 0xe68195, - 0xe68196, - 0xe68197, - 0xe68198, - 0xe68199, - 0xe6819a, - 0xe6819b, - 0xe6819c, - 0xe6819d, - 0xe6819e, - 0xe6819f, - 0xe681a0, - 0xe681a1, - 0xe681a2, - 0xe681a3, - 0xe681a4, - 0xe681a5, - 0xe681a6, - 0xe681a7, - 0xe681a8, - 0xe681a9, - 0xe681aa, - 0xe681ab, - 0xe681ac, - 0xe681ad, - 0xe681ae, - 0xe681af, - 0xe681b0, - 0xe681b1, - 0xe681b2, - 0xe681b3, - 0xe681b4, - 0xe681b5, - 0xe681b6, - 0xe681b7, - 0xe681b8, - 0xe681b9, - 0xe681ba, - 0xe681bb, - 0xe681bc, - 0xe681bd, - 0xe681be, - 0xe681bf, - 0xe68280, - 0xe68281, - 0xe68282, - 0xe68283, - 0xe68284, - 0xe68285, - 0xe68286, - 0xe68287, - 0xe68288, - 0xe68289, - 0xe6828a, - 0xe6828b, - 0xe6828c, - 0xe6828d, - 0xe6828e, - 0xe6828f, - 0xe68290, - 0xe68291, - 0xe68292, - 0xe68293, - 0xe68294, - 0xe68295, - 0xe68296, - 0xe68297, - 0xe68298, - 0xe68299, - 0xe6829a, - 0xe6829b, - 0xe6829c, - 0xe6829d, - 0xe6829e, - 0xe6829f, - 0xe682a0, - 0xe682a1, - 0xe682a2, - 0xe682a3, - 0xe682a4, - 0xe682a5, - 0xe682a6, - 0xe682a7, - 0xe682a8, - 0xe682a9, - 0xe682aa, - 0xe682ab, - 0xe682ac, - 0xe682ad, - 0xe682ae, - 0xe682af, - 0xe682b0, - 0xe682b1, - 0xe682b2, - 0xe682b3, - 0xe682b4, - 0xe682b5, - 0xe682b6, - 0xe682b7, - 0xe682b8, - 0xe682b9, - 0xe682ba, - 0xe682bb, - 0xe682bc, - 0xe682bd, - 0xe682be, - 0xe682bf, - 0xe68380, - 0xe68381, - 0xe68382, - 0xe68383, - 0xe68384, - 0xe68385, - 0xe68386, - 0xe68387, - 0xe68388, - 0xe68389, - 0xe6838a, - 0xe6838b, - 0xe6838c, - 0xe6838d, - 0xe6838e, - 0xe6838f, - 0xe68390, - 0xe68391, - 0xe68392, - 0xe68393, - 0xe68394, - 0xe68395, - 0xe68396, - 0xe68397, - 0xe68398, - 0xe68399, - 0xe6839a, - 0xe6839b, - 0xe6839c, - 0xe6839d, - 0xe6839e, - 0xe6839f, - 0xe683a0, - 0xe683a1, - 0xe683a2, - 0xe683a3, - 0xe683a4, - 0xe683a5, - 0xe683a6, - 0xe683a7, - 0xe683a8, - 0xe683a9, - 0xe683aa, - 0xe683ab, - 0xe683ac, - 0xe683ad, - 0xe683ae, - 0xe683af, - 0xe683b0, - 0xe683b1, - 0xe683b2, - 0xe683b3, - 0xe683b4, - 0xe683b5, - 0xe683b6, - 0xe683b7, - 0xe683b8, - 0xe683b9, - 0xe683ba, - 0xe683bb, - 0xe683bc, - 0xe683bd, - 0xe683be, - 0xe683bf, - 0xe68480, - 0xe68481, - 0xe68482, - 0xe68483, - 0xe68484, - 0xe68485, - 0xe68486, - 0xe68487, - 0xe68488, - 0xe68489, - 0xe6848a, - 0xe6848b, - 0xe6848c, - 0xe6848d, - 0xe6848e, - 0xe6848f, - 0xe68490, - 0xe68491, - 0xe68492, - 0xe68493, - 0xe68494, - 0xe68495, - 0xe68496, - 0xe68497, - 0xe68498, - 0xe68499, - 0xe6849a, - 0xe6849b, - 0xe6849c, - 0xe6849d, - 0xe6849e, - 0xe6849f, - 0xe684a0, - 0xe684a1, - 0xe684a2, - 0xe684a3, - 0xe684a4, - 0xe684a5, - 0xe684a6, - 0xe684a7, - 0xe684a8, - 0xe684a9, - 0xe684aa, - 0xe684ab, - 0xe684ac, - 0xe684ad, - 0xe684ae, - 0xe684af, - 0xe684b0, - 0xe684b1, - 0xe684b2, - 0xe684b3, - 0xe684b4, - 0xe684b5, - 0xe684b6, - 0xe684b7, - 0xe684b8, - 0xe684b9, - 0xe684ba, - 0xe684bb, - 0xe684bc, - 0xe684bd, - 0xe684be, - 0xe684bf, - 0xe68580, - 0xe68581, - 0xe68582, - 0xe68583, - 0xe68584, - 0xe68585, - 0xe68586, - 0xe68587, - 0xe68588, - 0xe68589, - 0xe6858a, - 0xe6858b, - 0xe6858c, - 0xe6858d, - 0xe6858e, - 0xe6858f, - 0xe68590, - 0xe68591, - 0xe68592, - 0xe68593, - 0xe68594, - 0xe68595, - 0xe68596, - 0xe68597, - 0xe68598, - 0xe68599, - 0xe6859a, - 0xe6859b, - 0xe6859c, - 0xe6859d, - 0xe6859e, - 0xe6859f, - 0xe685a0, - 0xe685a1, - 0xe685a2, - 0xe685a3, - 0xe685a4, - 0xe685a5, - 0xe685a6, - 0xe685a7, - 0xe685a8, - 0xe685a9, - 0xe685aa, - 0xe685ab, - 0xe685ac, - 0xe685ad, - 0xe685ae, - 0xe685af, - 0xe685b0, - 0xe685b1, - 0xe685b2, - 0xe685b3, - 0xe685b4, - 0xe685b5, - 0xe685b6, - 0xe685b7, - 0xe685b8, - 0xe685b9, - 0xe685ba, - 0xe685bb, - 0xe685bc, - 0xe685bd, - 0xe685be, - 0xe685bf, - 0xe68680, - 0xe68681, - 0xe68682, - 0xe68683, - 0xe68684, - 0xe68685, - 0xe68686, - 0xe68687, - 0xe68688, - 0xe68689, - 0xe6868a, - 0xe6868b, - 0xe6868c, - 0xe6868d, - 0xe6868e, - 0xe6868f, - 0xe68690, - 0xe68691, - 0xe68692, - 0xe68693, - 0xe68694, - 0xe68695, - 0xe68696, - 0xe68697, - 0xe68698, - 0xe68699, - 0xe6869a, - 0xe6869b, - 0xe6869c, - 0xe6869d, - 0xe6869e, - 0xe6869f, - 0xe686a0, - 0xe686a1, - 0xe686a2, - 0xe686a3, - 0xe686a4, - 0xe686a5, - 0xe686a6, - 0xe686a7, - 0xe686a8, - 0xe686a9, - 0xe686aa, - 0xe686ab, - 0xe686ac, - 0xe686ad, - 0xe686ae, - 0xe686af, - 0xe686b0, - 0xe686b1, - 0xe686b2, - 0xe686b3, - 0xe686b4, - 0xe686b5, - 0xe686b6, - 0xe686b7, - 0xe686b8, - 0xe686b9, - 0xe686ba, - 0xe686bb, - 0xe686bc, - 0xe686bd, - 0xe686be, - 0xe686bf, - 0xe68780, - 0xe68781, - 0xe68782, - 0xe68783, - 0xe68784, - 0xe68785, - 0xe68786, - 0xe68787, - 0xe68788, - 0xe68789, - 0xe6878a, - 0xe6878b, - 0xe6878c, - 0xe6878d, - 0xe6878e, - 0xe6878f, - 0xe68790, - 0xe68791, - 0xe68792, - 0xe68793, - 0xe68794, - 0xe68795, - 0xe68796, - 0xe68797, - 0xe68798, - 0xe68799, - 0xe6879a, - 0xe6879b, - 0xe6879c, - 0xe6879d, - 0xe6879e, - 0xe6879f, - 0xe687a0, - 0xe687a1, - 0xe687a2, - 0xe687a3, - 0xe687a4, - 0xe687a5, - 0xe687a6, - 0xe687a7, - 0xe687a8, - 0xe687a9, - 0xe687aa, - 0xe687ab, - 0xe687ac, - 0xe687ad, - 0xe687ae, - 0xe687af, - 0xe687b0, - 0xe687b1, - 0xe687b2, - 0xe687b3, - 0xe687b4, - 0xe687b5, - 0xe687b6, - 0xe687b7, - 0xe687b8, - 0xe687b9, - 0xe687ba, - 0xe687bb, - 0xe687bc, - 0xe687bd, - 0xe687be, - 0xe687bf, - 0xe68880, - 0xe68881, - 0xe68882, - 0xe68883, - 0xe68884, - 0xe68885, - 0xe68886, - 0xe68887, - 0xe68888, - 0xe68889, - 0xe6888a, - 0xe6888b, - 0xe6888c, - 0xe6888d, - 0xe6888e, - 0xe6888f, - 0xe68890, - 0xe68891, - 0xe68892, - 0xe68893, - 0xe68894, - 0xe68895, - 0xe68896, - 0xe68897, - 0xe68898, - 0xe68899, - 0xe6889a, - 0xe6889b, - 0xe6889c, - 0xe6889d, - 0xe6889e, - 0xe6889f, - 0xe688a0, - 0xe688a1, - 0xe688a2, - 0xe688a3, - 0xe688a4, - 0xe688a5, - 0xe688a6, - 0xe688a7, - 0xe688a8, - 0xe688a9, - 0xe688aa, - 0xe688ab, - 0xe688ac, - 0xe688ad, - 0xe688ae, - 0xe688af, - 0xe688b0, - 0xe688b1, - 0xe688b2, - 0xe688b3, - 0xe688b4, - 0xe688b5, - 0xe688b6, - 0xe688b7, - 0xe688b8, - 0xe688b9, - 0xe688ba, - 0xe688bb, - 0xe688bc, - 0xe688bd, - 0xe688be, - 0xe688bf, - 0xe68980, - 0xe68981, - 0xe68982, - 0xe68983, - 0xe68984, - 0xe68985, - 0xe68986, - 0xe68987, - 0xe68988, - 0xe68989, - 0xe6898a, - 0xe6898b, - 0xe6898c, - 0xe6898d, - 0xe6898e, - 0xe6898f, - 0xe68990, - 0xe68991, - 0xe68992, - 0xe68993, - 0xe68994, - 0xe68995, - 0xe68996, - 0xe68997, - 0xe68998, - 0xe68999, - 0xe6899a, - 0xe6899b, - 0xe6899c, - 0xe6899d, - 0xe6899e, - 0xe6899f, - 0xe689a0, - 0xe689a1, - 0xe689a2, - 0xe689a3, - 0xe689a4, - 0xe689a5, - 0xe689a6, - 0xe689a7, - 0xe689a8, - 0xe689a9, - 0xe689aa, - 0xe689ab, - 0xe689ac, - 0xe689ad, - 0xe689ae, - 0xe689af, - 0xe689b0, - 0xe689b1, - 0xe689b2, - 0xe689b3, - 0xe689b4, - 0xe689b5, - 0xe689b6, - 0xe689b7, - 0xe689b8, - 0xe689b9, - 0xe689ba, - 0xe689bb, - 0xe689bc, - 0xe689bd, - 0xe689be, - 0xe689bf, - 0xe68a80, - 0xe68a81, - 0xe68a82, - 0xe68a83, - 0xe68a84, - 0xe68a85, - 0xe68a86, - 0xe68a87, - 0xe68a88, - 0xe68a89, - 0xe68a8a, - 0xe68a8b, - 0xe68a8c, - 0xe68a8d, - 0xe68a8e, - 0xe68a8f, - 0xe68a90, - 0xe68a91, - 0xe68a92, - 0xe68a93, - 0xe68a94, - 0xe68a95, - 0xe68a96, - 0xe68a97, - 0xe68a98, - 0xe68a99, - 0xe68a9a, - 0xe68a9b, - 0xe68a9c, - 0xe68a9d, - 0xe68a9e, - 0xe68a9f, - 0xe68aa0, - 0xe68aa1, - 0xe68aa2, - 0xe68aa3, - 0xe68aa4, - 0xe68aa5, - 0xe68aa6, - 0xe68aa7, - 0xe68aa8, - 0xe68aa9, - 0xe68aaa, - 0xe68aab, - 0xe68aac, - 0xe68aad, - 0xe68aae, - 0xe68aaf, - 0xe68ab0, - 0xe68ab1, - 0xe68ab2, - 0xe68ab3, - 0xe68ab4, - 0xe68ab5, - 0xe68ab6, - 0xe68ab7, - 0xe68ab8, - 0xe68ab9, - 0xe68aba, - 0xe68abb, - 0xe68abc, - 0xe68abd, - 0xe68abe, - 0xe68abf, - 0xe68b80, - 0xe68b81, - 0xe68b82, - 0xe68b83, - 0xe68b84, - 0xe68b85, - 0xe68b86, - 0xe68b87, - 0xe68b88, - 0xe68b89, - 0xe68b8a, - 0xe68b8b, - 0xe68b8c, - 0xe68b8d, - 0xe68b8e, - 0xe68b8f, - 0xe68b90, - 0xe68b91, - 0xe68b92, - 0xe68b93, - 0xe68b94, - 0xe68b95, - 0xe68b96, - 0xe68b97, - 0xe68b98, - 0xe68b99, - 0xe68b9a, - 0xe68b9b, - 0xe68b9c, - 0xe68b9d, - 0xe68b9e, - 0xe68b9f, - 0xe68ba0, - 0xe68ba1, - 0xe68ba2, - 0xe68ba3, - 0xe68ba4, - 0xe68ba5, - 0xe68ba6, - 0xe68ba7, - 0xe68ba8, - 0xe68ba9, - 0xe68baa, - 0xe68bab, - 0xe68bac, - 0xe68bad, - 0xe68bae, - 0xe68baf, - 0xe68bb0, - 0xe68bb1, - 0xe68bb2, - 0xe68bb3, - 0xe68bb4, - 0xe68bb5, - 0xe68bb6, - 0xe68bb7, - 0xe68bb8, - 0xe68bb9, - 0xe68bba, - 0xe68bbb, - 0xe68bbc, - 0xe68bbd, - 0xe68bbe, - 0xe68bbf, - 0xe68c80, - 0xe68c81, - 0xe68c82, - 0xe68c83, - 0xe68c84, - 0xe68c85, - 0xe68c86, - 0xe68c87, - 0xe68c88, - 0xe68c89, - 0xe68c8a, - 0xe68c8b, - 0xe68c8c, - 0xe68c8d, - 0xe68c8e, - 0xe68c8f, - 0xe68c90, - 0xe68c91, - 0xe68c92, - 0xe68c93, - 0xe68c94, - 0xe68c95, - 0xe68c96, - 0xe68c97, - 0xe68c98, - 0xe68c99, - 0xe68c9a, - 0xe68c9b, - 0xe68c9c, - 0xe68c9d, - 0xe68c9e, - 0xe68c9f, - 0xe68ca0, - 0xe68ca1, - 0xe68ca2, - 0xe68ca3, - 0xe68ca4, - 0xe68ca5, - 0xe68ca6, - 0xe68ca7, - 0xe68ca8, - 0xe68ca9, - 0xe68caa, - 0xe68cab, - 0xe68cac, - 0xe68cad, - 0xe68cae, - 0xe68caf, - 0xe68cb0, - 0xe68cb1, - 0xe68cb2, - 0xe68cb3, - 0xe68cb4, - 0xe68cb5, - 0xe68cb6, - 0xe68cb7, - 0xe68cb8, - 0xe68cb9, - 0xe68cba, - 0xe68cbb, - 0xe68cbc, - 0xe68cbd, - 0xe68cbe, - 0xe68cbf, - 0xe68d80, - 0xe68d81, - 0xe68d82, - 0xe68d83, - 0xe68d84, - 0xe68d85, - 0xe68d86, - 0xe68d87, - 0xe68d88, - 0xe68d89, - 0xe68d8a, - 0xe68d8b, - 0xe68d8c, - 0xe68d8d, - 0xe68d8e, - 0xe68d8f, - 0xe68d90, - 0xe68d91, - 0xe68d92, - 0xe68d93, - 0xe68d94, - 0xe68d95, - 0xe68d96, - 0xe68d97, - 0xe68d98, - 0xe68d99, - 0xe68d9a, - 0xe68d9b, - 0xe68d9c, - 0xe68d9d, - 0xe68d9e, - 0xe68d9f, - 0xe68da0, - 0xe68da1, - 0xe68da2, - 0xe68da3, - 0xe68da4, - 0xe68da5, - 0xe68da6, - 0xe68da7, - 0xe68da8, - 0xe68da9, - 0xe68daa, - 0xe68dab, - 0xe68dac, - 0xe68dad, - 0xe68dae, - 0xe68daf, - 0xe68db0, - 0xe68db1, - 0xe68db2, - 0xe68db3, - 0xe68db4, - 0xe68db5, - 0xe68db6, - 0xe68db7, - 0xe68db8, - 0xe68db9, - 0xe68dba, - 0xe68dbb, - 0xe68dbc, - 0xe68dbd, - 0xe68dbe, - 0xe68dbf, - 0xe68e80, - 0xe68e81, - 0xe68e82, - 0xe68e83, - 0xe68e84, - 0xe68e85, - 0xe68e86, - 0xe68e87, - 0xe68e88, - 0xe68e89, - 0xe68e8a, - 0xe68e8b, - 0xe68e8c, - 0xe68e8d, - 0xe68e8e, - 0xe68e8f, - 0xe68e90, - 0xe68e91, - 0xe68e92, - 0xe68e93, - 0xe68e94, - 0xe68e95, - 0xe68e96, - 0xe68e97, - 0xe68e98, - 0xe68e99, - 0xe68e9a, - 0xe68e9b, - 0xe68e9c, - 0xe68e9d, - 0xe68e9e, - 0xe68e9f, - 0xe68ea0, - 0xe68ea1, - 0xe68ea2, - 0xe68ea3, - 0xe68ea4, - 0xe68ea5, - 0xe68ea6, - 0xe68ea7, - 0xe68ea8, - 0xe68ea9, - 0xe68eaa, - 0xe68eab, - 0xe68eac, - 0xe68ead, - 0xe68eae, - 0xe68eaf, - 0xe68eb0, - 0xe68eb1, - 0xe68eb2, - 0xe68eb3, - 0xe68eb4, - 0xe68eb5, - 0xe68eb6, - 0xe68eb7, - 0xe68eb8, - 0xe68eb9, - 0xe68eba, - 0xe68ebb, - 0xe68ebc, - 0xe68ebd, - 0xe68ebe, - 0xe68ebf, - 0xe68f80, - 0xe68f81, - 0xe68f82, - 0xe68f83, - 0xe68f84, - 0xe68f85, - 0xe68f86, - 0xe68f87, - 0xe68f88, - 0xe68f89, - 0xe68f8a, - 0xe68f8b, - 0xe68f8c, - 0xe68f8d, - 0xe68f8e, - 0xe68f8f, - 0xe68f90, - 0xe68f91, - 0xe68f92, - 0xe68f93, - 0xe68f94, - 0xe68f95, - 0xe68f96, - 0xe68f97, - 0xe68f98, - 0xe68f99, - 0xe68f9a, - 0xe68f9b, - 0xe68f9c, - 0xe68f9d, - 0xe68f9e, - 0xe68f9f, - 0xe68fa0, - 0xe68fa1, - 0xe68fa2, - 0xe68fa3, - 0xe68fa4, - 0xe68fa5, - 0xe68fa6, - 0xe68fa7, - 0xe68fa8, - 0xe68fa9, - 0xe68faa, - 0xe68fab, - 0xe68fac, - 0xe68fad, - 0xe68fae, - 0xe68faf, - 0xe68fb0, - 0xe68fb1, - 0xe68fb2, - 0xe68fb3, - 0xe68fb4, - 0xe68fb5, - 0xe68fb6, - 0xe68fb7, - 0xe68fb8, - 0xe68fb9, - 0xe68fba, - 0xe68fbb, - 0xe68fbc, - 0xe68fbd, - 0xe68fbe, - 0xe68fbf, - 0xe69080, - 0xe69081, - 0xe69082, - 0xe69083, - 0xe69084, - 0xe69085, - 0xe69086, - 0xe69087, - 0xe69088, - 0xe69089, - 0xe6908a, - 0xe6908b, - 0xe6908c, - 0xe6908d, - 0xe6908e, - 0xe6908f, - 0xe69090, - 0xe69091, - 0xe69092, - 0xe69093, - 0xe69094, - 0xe69095, - 0xe69096, - 0xe69097, - 0xe69098, - 0xe69099, - 0xe6909a, - 0xe6909b, - 0xe6909c, - 0xe6909d, - 0xe6909e, - 0xe6909f, - 0xe690a0, - 0xe690a1, - 0xe690a2, - 0xe690a3, - 0xe690a4, - 0xe690a5, - 0xe690a6, - 0xe690a7, - 0xe690a8, - 0xe690a9, - 0xe690aa, - 0xe690ab, - 0xe690ac, - 0xe690ad, - 0xe690ae, - 0xe690af, - 0xe690b0, - 0xe690b1, - 0xe690b2, - 0xe690b3, - 0xe690b4, - 0xe690b5, - 0xe690b6, - 0xe690b7, - 0xe690b8, - 0xe690b9, - 0xe690ba, - 0xe690bb, - 0xe690bc, - 0xe690bd, - 0xe690be, - 0xe690bf, - 0xe69180, - 0xe69181, - 0xe69182, - 0xe69183, - 0xe69184, - 0xe69185, - 0xe69186, - 0xe69187, - 0xe69188, - 0xe69189, - 0xe6918a, - 0xe6918b, - 0xe6918c, - 0xe6918d, - 0xe6918e, - 0xe6918f, - 0xe69190, - 0xe69191, - 0xe69192, - 0xe69193, - 0xe69194, - 0xe69195, - 0xe69196, - 0xe69197, - 0xe69198, - 0xe69199, - 0xe6919a, - 0xe6919b, - 0xe6919c, - 0xe6919d, - 0xe6919e, - 0xe6919f, - 0xe691a0, - 0xe691a1, - 0xe691a2, - 0xe691a3, - 0xe691a4, - 0xe691a5, - 0xe691a6, - 0xe691a7, - 0xe691a8, - 0xe691a9, - 0xe691aa, - 0xe691ab, - 0xe691ac, - 0xe691ad, - 0xe691ae, - 0xe691af, - 0xe691b0, - 0xe691b1, - 0xe691b2, - 0xe691b3, - 0xe691b4, - 0xe691b5, - 0xe691b6, - 0xe691b7, - 0xe691b8, - 0xe691b9, - 0xe691ba, - 0xe691bb, - 0xe691bc, - 0xe691bd, - 0xe691be, - 0xe691bf, - 0xe69280, - 0xe69281, - 0xe69282, - 0xe69283, - 0xe69284, - 0xe69285, - 0xe69286, - 0xe69287, - 0xe69288, - 0xe69289, - 0xe6928a, - 0xe6928b, - 0xe6928c, - 0xe6928d, - 0xe6928e, - 0xe6928f, - 0xe69290, - 0xe69291, - 0xe69292, - 0xe69293, - 0xe69294, - 0xe69295, - 0xe69296, - 0xe69297, - 0xe69298, - 0xe69299, - 0xe6929a, - 0xe6929b, - 0xe6929c, - 0xe6929d, - 0xe6929e, - 0xe6929f, - 0xe692a0, - 0xe692a1, - 0xe692a2, - 0xe692a3, - 0xe692a4, - 0xe692a5, - 0xe692a6, - 0xe692a7, - 0xe692a8, - 0xe692a9, - 0xe692aa, - 0xe692ab, - 0xe692ac, - 0xe692ad, - 0xe692ae, - 0xe692af, - 0xe692b0, - 0xe692b1, - 0xe692b2, - 0xe692b3, - 0xe692b4, - 0xe692b5, - 0xe692b6, - 0xe692b7, - 0xe692b8, - 0xe692b9, - 0xe692ba, - 0xe692bb, - 0xe692bc, - 0xe692bd, - 0xe692be, - 0xe692bf, - 0xe69380, - 0xe69381, - 0xe69382, - 0xe69383, - 0xe69384, - 0xe69385, - 0xe69386, - 0xe69387, - 0xe69388, - 0xe69389, - 0xe6938a, - 0xe6938b, - 0xe6938c, - 0xe6938d, - 0xe6938e, - 0xe6938f, - 0xe69390, - 0xe69391, - 0xe69392, - 0xe69393, - 0xe69394, - 0xe69395, - 0xe69396, - 0xe69397, - 0xe69398, - 0xe69399, - 0xe6939a, - 0xe6939b, - 0xe6939c, - 0xe6939d, - 0xe6939e, - 0xe6939f, - 0xe693a0, - 0xe693a1, - 0xe693a2, - 0xe693a3, - 0xe693a4, - 0xe693a5, - 0xe693a6, - 0xe693a7, - 0xe693a8, - 0xe693a9, - 0xe693aa, - 0xe693ab, - 0xe693ac, - 0xe693ad, - 0xe693ae, - 0xe693af, - 0xe693b0, - 0xe693b1, - 0xe693b2, - 0xe693b3, - 0xe693b4, - 0xe693b5, - 0xe693b6, - 0xe693b7, - 0xe693b8, - 0xe693b9, - 0xe693ba, - 0xe693bb, - 0xe693bc, - 0xe693bd, - 0xe693be, - 0xe693bf, - 0xe69480, - 0xe69481, - 0xe69482, - 0xe69483, - 0xe69484, - 0xe69485, - 0xe69486, - 0xe69487, - 0xe69488, - 0xe69489, - 0xe6948a, - 0xe6948b, - 0xe6948c, - 0xe6948d, - 0xe6948e, - 0xe6948f, - 0xe69490, - 0xe69491, - 0xe69492, - 0xe69493, - 0xe69494, - 0xe69495, - 0xe69496, - 0xe69497, - 0xe69498, - 0xe69499, - 0xe6949a, - 0xe6949b, - 0xe6949c, - 0xe6949d, - 0xe6949e, - 0xe6949f, - 0xe694a0, - 0xe694a1, - 0xe694a2, - 0xe694a3, - 0xe694a4, - 0xe694a5, - 0xe694a6, - 0xe694a7, - 0xe694a8, - 0xe694a9, - 0xe694aa, - 0xe694ab, - 0xe694ac, - 0xe694ad, - 0xe694ae, - 0xe694af, - 0xe694b0, - 0xe694b1, - 0xe694b2, - 0xe694b3, - 0xe694b4, - 0xe694b5, - 0xe694b6, - 0xe694b7, - 0xe694b8, - 0xe694b9, - 0xe694ba, - 0xe694bb, - 0xe694bc, - 0xe694bd, - 0xe694be, - 0xe694bf, - 0xe69580, - 0xe69581, - 0xe69582, - 0xe69583, - 0xe69584, - 0xe69585, - 0xe69586, - 0xe69587, - 0xe69588, - 0xe69589, - 0xe6958a, - 0xe6958b, - 0xe6958c, - 0xe6958d, - 0xe6958e, - 0xe6958f, - 0xe69590, - 0xe69591, - 0xe69592, - 0xe69593, - 0xe69594, - 0xe69595, - 0xe69596, - 0xe69597, - 0xe69598, - 0xe69599, - 0xe6959a, - 0xe6959b, - 0xe6959c, - 0xe6959d, - 0xe6959e, - 0xe6959f, - 0xe695a0, - 0xe695a1, - 0xe695a2, - 0xe695a3, - 0xe695a4, - 0xe695a5, - 0xe695a6, - 0xe695a7, - 0xe695a8, - 0xe695a9, - 0xe695aa, - 0xe695ab, - 0xe695ac, - 0xe695ad, - 0xe695ae, - 0xe695af, - 0xe695b0, - 0xe695b1, - 0xe695b2, - 0xe695b3, - 0xe695b4, - 0xe695b5, - 0xe695b6, - 0xe695b7, - 0xe695b8, - 0xe695b9, - 0xe695ba, - 0xe695bb, - 0xe695bc, - 0xe695bd, - 0xe695be, - 0xe695bf, - 0xe69680, - 0xe69681, - 0xe69682, - 0xe69683, - 0xe69684, - 0xe69685, - 0xe69686, - 0xe69687, - 0xe69688, - 0xe69689, - 0xe6968a, - 0xe6968b, - 0xe6968c, - 0xe6968d, - 0xe6968e, - 0xe6968f, - 0xe69690, - 0xe69691, - 0xe69692, - 0xe69693, - 0xe69694, - 0xe69695, - 0xe69696, - 0xe69697, - 0xe69698, - 0xe69699, - 0xe6969a, - 0xe6969b, - 0xe6969c, - 0xe6969d, - 0xe6969e, - 0xe6969f, - 0xe696a0, - 0xe696a1, - 0xe696a2, - 0xe696a3, - 0xe696a4, - 0xe696a5, - 0xe696a6, - 0xe696a7, - 0xe696a8, - 0xe696a9, - 0xe696aa, - 0xe696ab, - 0xe696ac, - 0xe696ad, - 0xe696ae, - 0xe696af, - 0xe696b0, - 0xe696b1, - 0xe696b2, - 0xe696b3, - 0xe696b4, - 0xe696b5, - 0xe696b6, - 0xe696b7, - 0xe696b8, - 0xe696b9, - 0xe696ba, - 0xe696bb, - 0xe696bc, - 0xe696bd, - 0xe696be, - 0xe696bf, - 0xe69780, - 0xe69781, - 0xe69782, - 0xe69783, - 0xe69784, - 0xe69785, - 0xe69786, - 0xe69787, - 0xe69788, - 0xe69789, - 0xe6978a, - 0xe6978b, - 0xe6978c, - 0xe6978d, - 0xe6978e, - 0xe6978f, - 0xe69790, - 0xe69791, - 0xe69792, - 0xe69793, - 0xe69794, - 0xe69795, - 0xe69796, - 0xe69797, - 0xe69798, - 0xe69799, - 0xe6979a, - 0xe6979b, - 0xe6979c, - 0xe6979d, - 0xe6979e, - 0xe6979f, - 0xe697a0, - 0xe697a1, - 0xe697a2, - 0xe697a3, - 0xe697a4, - 0xe697a5, - 0xe697a6, - 0xe697a7, - 0xe697a8, - 0xe697a9, - 0xe697aa, - 0xe697ab, - 0xe697ac, - 0xe697ad, - 0xe697ae, - 0xe697af, - 0xe697b0, - 0xe697b1, - 0xe697b2, - 0xe697b3, - 0xe697b4, - 0xe697b5, - 0xe697b6, - 0xe697b7, - 0xe697b8, - 0xe697b9, - 0xe697ba, - 0xe697bb, - 0xe697bc, - 0xe697bd, - 0xe697be, - 0xe697bf, - 0xe69880, - 0xe69881, - 0xe69882, - 0xe69883, - 0xe69884, - 0xe69885, - 0xe69886, - 0xe69887, - 0xe69888, - 0xe69889, - 0xe6988a, - 0xe6988b, - 0xe6988c, - 0xe6988d, - 0xe6988e, - 0xe6988f, - 0xe69890, - 0xe69891, - 0xe69892, - 0xe69893, - 0xe69894, - 0xe69895, - 0xe69896, - 0xe69897, - 0xe69898, - 0xe69899, - 0xe6989a, - 0xe6989b, - 0xe6989c, - 0xe6989d, - 0xe6989e, - 0xe6989f, - 0xe698a0, - 0xe698a1, - 0xe698a2, - 0xe698a3, - 0xe698a4, - 0xe698a5, - 0xe698a6, - 0xe698a7, - 0xe698a8, - 0xe698a9, - 0xe698aa, - 0xe698ab, - 0xe698ac, - 0xe698ad, - 0xe698ae, - 0xe698af, - 0xe698b0, - 0xe698b1, - 0xe698b2, - 0xe698b3, - 0xe698b4, - 0xe698b5, - 0xe698b6, - 0xe698b7, - 0xe698b8, - 0xe698b9, - 0xe698ba, - 0xe698bb, - 0xe698bc, - 0xe698bd, - 0xe698be, - 0xe698bf, - 0xe69980, - 0xe69981, - 0xe69982, - 0xe69983, - 0xe69984, - 0xe69985, - 0xe69986, - 0xe69987, - 0xe69988, - 0xe69989, - 0xe6998a, - 0xe6998b, - 0xe6998c, - 0xe6998d, - 0xe6998e, - 0xe6998f, - 0xe69990, - 0xe69991, - 0xe69992, - 0xe69993, - 0xe69994, - 0xe69995, - 0xe69996, - 0xe69997, - 0xe69998, - 0xe69999, - 0xe6999a, - 0xe6999b, - 0xe6999c, - 0xe6999d, - 0xe6999e, - 0xe6999f, - 0xe699a0, - 0xe699a1, - 0xe699a2, - 0xe699a3, - 0xe699a4, - 0xe699a5, - 0xe699a6, - 0xe699a7, - 0xe699a8, - 0xe699a9, - 0xe699aa, - 0xe699ab, - 0xe699ac, - 0xe699ad, - 0xe699ae, - 0xe699af, - 0xe699b0, - 0xe699b1, - 0xe699b2, - 0xe699b3, - 0xe699b4, - 0xe699b5, - 0xe699b6, - 0xe699b7, - 0xe699b8, - 0xe699b9, - 0xe699ba, - 0xe699bb, - 0xe699bc, - 0xe699bd, - 0xe699be, - 0xe699bf, - 0xe69a80, - 0xe69a81, - 0xe69a82, - 0xe69a83, - 0xe69a84, - 0xe69a85, - 0xe69a86, - 0xe69a87, - 0xe69a88, - 0xe69a89, - 0xe69a8a, - 0xe69a8b, - 0xe69a8c, - 0xe69a8d, - 0xe69a8e, - 0xe69a8f, - 0xe69a90, - 0xe69a91, - 0xe69a92, - 0xe69a93, - 0xe69a94, - 0xe69a95, - 0xe69a96, - 0xe69a97, - 0xe69a98, - 0xe69a99, - 0xe69a9a, - 0xe69a9b, - 0xe69a9c, - 0xe69a9d, - 0xe69a9e, - 0xe69a9f, - 0xe69aa0, - 0xe69aa1, - 0xe69aa2, - 0xe69aa3, - 0xe69aa4, - 0xe69aa5, - 0xe69aa6, - 0xe69aa7, - 0xe69aa8, - 0xe69aa9, - 0xe69aaa, - 0xe69aab, - 0xe69aac, - 0xe69aad, - 0xe69aae, - 0xe69aaf, - 0xe69ab0, - 0xe69ab1, - 0xe69ab2, - 0xe69ab3, - 0xe69ab4, - 0xe69ab5, - 0xe69ab6, - 0xe69ab7, - 0xe69ab8, - 0xe69ab9, - 0xe69aba, - 0xe69abb, - 0xe69abc, - 0xe69abd, - 0xe69abe, - 0xe69abf, - 0xe69b80, - 0xe69b81, - 0xe69b82, - 0xe69b83, - 0xe69b84, - 0xe69b85, - 0xe69b86, - 0xe69b87, - 0xe69b88, - 0xe69b89, - 0xe69b8a, - 0xe69b8b, - 0xe69b8c, - 0xe69b8d, - 0xe69b8e, - 0xe69b8f, - 0xe69b90, - 0xe69b91, - 0xe69b92, - 0xe69b93, - 0xe69b94, - 0xe69b95, - 0xe69b96, - 0xe69b97, - 0xe69b98, - 0xe69b99, - 0xe69b9a, - 0xe69b9b, - 0xe69b9c, - 0xe69b9d, - 0xe69b9e, - 0xe69b9f, - 0xe69ba0, - 0xe69ba1, - 0xe69ba2, - 0xe69ba3, - 0xe69ba4, - 0xe69ba5, - 0xe69ba6, - 0xe69ba7, - 0xe69ba8, - 0xe69ba9, - 0xe69baa, - 0xe69bab, - 0xe69bac, - 0xe69bad, - 0xe69bae, - 0xe69baf, - 0xe69bb0, - 0xe69bb1, - 0xe69bb2, - 0xe69bb3, - 0xe69bb4, - 0xe69bb5, - 0xe69bb6, - 0xe69bb7, - 0xe69bb8, - 0xe69bb9, - 0xe69bba, - 0xe69bbb, - 0xe69bbc, - 0xe69bbd, - 0xe69bbe, - 0xe69bbf, - 0xe69c80, - 0xe69c81, - 0xe69c82, - 0xe69c83, - 0xe69c84, - 0xe69c85, - 0xe69c86, - 0xe69c87, - 0xe69c88, - 0xe69c89, - 0xe69c8a, - 0xe69c8b, - 0xe69c8c, - 0xe69c8d, - 0xe69c8e, - 0xe69c8f, - 0xe69c90, - 0xe69c91, - 0xe69c92, - 0xe69c93, - 0xe69c94, - 0xe69c95, - 0xe69c96, - 0xe69c97, - 0xe69c98, - 0xe69c99, - 0xe69c9a, - 0xe69c9b, - 0xe69c9c, - 0xe69c9d, - 0xe69c9e, - 0xe69c9f, - 0xe69ca0, - 0xe69ca1, - 0xe69ca2, - 0xe69ca3, - 0xe69ca4, - 0xe69ca5, - 0xe69ca6, - 0xe69ca7, - 0xe69ca8, - 0xe69ca9, - 0xe69caa, - 0xe69cab, - 0xe69cac, - 0xe69cad, - 0xe69cae, - 0xe69caf, - 0xe69cb0, - 0xe69cb1, - 0xe69cb2, - 0xe69cb3, - 0xe69cb4, - 0xe69cb5, - 0xe69cb6, - 0xe69cb7, - 0xe69cb8, - 0xe69cb9, - 0xe69cba, - 0xe69cbb, - 0xe69cbc, - 0xe69cbd, - 0xe69cbe, - 0xe69cbf, - 0xe69d80, - 0xe69d81, - 0xe69d82, - 0xe69d83, - 0xe69d84, - 0xe69d85, - 0xe69d86, - 0xe69d87, - 0xe69d88, - 0xe69d89, - 0xe69d8a, - 0xe69d8b, - 0xe69d8c, - 0xe69d8d, - 0xe69d8e, - 0xe69d8f, - 0xe69d90, - 0xe69d91, - 0xe69d92, - 0xe69d93, - 0xe69d94, - 0xe69d95, - 0xe69d96, - 0xe69d97, - 0xe69d98, - 0xe69d99, - 0xe69d9a, - 0xe69d9b, - 0xe69d9c, - 0xe69d9d, - 0xe69d9e, - 0xe69d9f, - 0xe69da0, - 0xe69da1, - 0xe69da2, - 0xe69da3, - 0xe69da4, - 0xe69da5, - 0xe69da6, - 0xe69da7, - 0xe69da8, - 0xe69da9, - 0xe69daa, - 0xe69dab, - 0xe69dac, - 0xe69dad, - 0xe69dae, - 0xe69daf, - 0xe69db0, - 0xe69db1, - 0xe69db2, - 0xe69db3, - 0xe69db4, - 0xe69db5, - 0xe69db6, - 0xe69db7, - 0xe69db8, - 0xe69db9, - 0xe69dba, - 0xe69dbb, - 0xe69dbc, - 0xe69dbd, - 0xe69dbe, - 0xe69dbf, - 0xe69e80, - 0xe69e81, - 0xe69e82, - 0xe69e83, - 0xe69e84, - 0xe69e85, - 0xe69e86, - 0xe69e87, - 0xe69e88, - 0xe69e89, - 0xe69e8a, - 0xe69e8b, - 0xe69e8c, - 0xe69e8d, - 0xe69e8e, - 0xe69e8f, - 0xe69e90, - 0xe69e91, - 0xe69e92, - 0xe69e93, - 0xe69e94, - 0xe69e95, - 0xe69e96, - 0xe69e97, - 0xe69e98, - 0xe69e99, - 0xe69e9a, - 0xe69e9b, - 0xe69e9c, - 0xe69e9d, - 0xe69e9e, - 0xe69e9f, - 0xe69ea0, - 0xe69ea1, - 0xe69ea2, - 0xe69ea3, - 0xe69ea4, - 0xe69ea5, - 0xe69ea6, - 0xe69ea7, - 0xe69ea8, - 0xe69ea9, - 0xe69eaa, - 0xe69eab, - 0xe69eac, - 0xe69ead, - 0xe69eae, - 0xe69eaf, - 0xe69eb0, - 0xe69eb1, - 0xe69eb2, - 0xe69eb3, - 0xe69eb4, - 0xe69eb5, - 0xe69eb6, - 0xe69eb7, - 0xe69eb8, - 0xe69eb9, - 0xe69eba, - 0xe69ebb, - 0xe69ebc, - 0xe69ebd, - 0xe69ebe, - 0xe69ebf, - 0xe69f80, - 0xe69f81, - 0xe69f82, - 0xe69f83, - 0xe69f84, - 0xe69f85, - 0xe69f86, - 0xe69f87, - 0xe69f88, - 0xe69f89, - 0xe69f8a, - 0xe69f8b, - 0xe69f8c, - 0xe69f8d, - 0xe69f8e, - 0xe69f8f, - 0xe69f90, - 0xe69f91, - 0xe69f92, - 0xe69f93, - 0xe69f94, - 0xe69f95, - 0xe69f96, - 0xe69f97, - 0xe69f98, - 0xe69f99, - 0xe69f9a, - 0xe69f9b, - 0xe69f9c, - 0xe69f9d, - 0xe69f9e, - 0xe69f9f, - 0xe69fa0, - 0xe69fa1, - 0xe69fa2, - 0xe69fa3, - 0xe69fa4, - 0xe69fa5, - 0xe69fa6, - 0xe69fa7, - 0xe69fa8, - 0xe69fa9, - 0xe69faa, - 0xe69fab, - 0xe69fac, - 0xe69fad, - 0xe69fae, - 0xe69faf, - 0xe69fb0, - 0xe69fb1, - 0xe69fb2, - 0xe69fb3, - 0xe69fb4, - 0xe69fb5, - 0xe69fb6, - 0xe69fb7, - 0xe69fb8, - 0xe69fb9, - 0xe69fba, - 0xe69fbb, - 0xe69fbc, - 0xe69fbd, - 0xe69fbe, - 0xe69fbf, - 0xe6a080, - 0xe6a081, - 0xe6a082, - 0xe6a083, - 0xe6a084, - 0xe6a085, - 0xe6a086, - 0xe6a087, - 0xe6a088, - 0xe6a089, - 0xe6a08a, - 0xe6a08b, - 0xe6a08c, - 0xe6a08d, - 0xe6a08e, - 0xe6a08f, - 0xe6a090, - 0xe6a091, - 0xe6a092, - 0xe6a093, - 0xe6a094, - 0xe6a095, - 0xe6a096, - 0xe6a097, - 0xe6a098, - 0xe6a099, - 0xe6a09a, - 0xe6a09b, - 0xe6a09c, - 0xe6a09d, - 0xe6a09e, - 0xe6a09f, - 0xe6a0a0, - 0xe6a0a1, - 0xe6a0a2, - 0xe6a0a3, - 0xe6a0a4, - 0xe6a0a5, - 0xe6a0a6, - 0xe6a0a7, - 0xe6a0a8, - 0xe6a0a9, - 0xe6a0aa, - 0xe6a0ab, - 0xe6a0ac, - 0xe6a0ad, - 0xe6a0ae, - 0xe6a0af, - 0xe6a0b0, - 0xe6a0b1, - 0xe6a0b2, - 0xe6a0b3, - 0xe6a0b4, - 0xe6a0b5, - 0xe6a0b6, - 0xe6a0b7, - 0xe6a0b8, - 0xe6a0b9, - 0xe6a0ba, - 0xe6a0bb, - 0xe6a0bc, - 0xe6a0bd, - 0xe6a0be, - 0xe6a0bf, - 0xe6a180, - 0xe6a181, - 0xe6a182, - 0xe6a183, - 0xe6a184, - 0xe6a185, - 0xe6a186, - 0xe6a187, - 0xe6a188, - 0xe6a189, - 0xe6a18a, - 0xe6a18b, - 0xe6a18c, - 0xe6a18d, - 0xe6a18e, - 0xe6a18f, - 0xe6a190, - 0xe6a191, - 0xe6a192, - 0xe6a193, - 0xe6a194, - 0xe6a195, - 0xe6a196, - 0xe6a197, - 0xe6a198, - 0xe6a199, - 0xe6a19a, - 0xe6a19b, - 0xe6a19c, - 0xe6a19d, - 0xe6a19e, - 0xe6a19f, - 0xe6a1a0, - 0xe6a1a1, - 0xe6a1a2, - 0xe6a1a3, - 0xe6a1a4, - 0xe6a1a5, - 0xe6a1a6, - 0xe6a1a7, - 0xe6a1a8, - 0xe6a1a9, - 0xe6a1aa, - 0xe6a1ab, - 0xe6a1ac, - 0xe6a1ad, - 0xe6a1ae, - 0xe6a1af, - 0xe6a1b0, - 0xe6a1b1, - 0xe6a1b2, - 0xe6a1b3, - 0xe6a1b4, - 0xe6a1b5, - 0xe6a1b6, - 0xe6a1b7, - 0xe6a1b8, - 0xe6a1b9, - 0xe6a1ba, - 0xe6a1bb, - 0xe6a1bc, - 0xe6a1bd, - 0xe6a1be, - 0xe6a1bf, - 0xe6a280, - 0xe6a281, - 0xe6a282, - 0xe6a283, - 0xe6a284, - 0xe6a285, - 0xe6a286, - 0xe6a287, - 0xe6a288, - 0xe6a289, - 0xe6a28a, - 0xe6a28b, - 0xe6a28c, - 0xe6a28d, - 0xe6a28e, - 0xe6a28f, - 0xe6a290, - 0xe6a291, - 0xe6a292, - 0xe6a293, - 0xe6a294, - 0xe6a295, - 0xe6a296, - 0xe6a297, - 0xe6a298, - 0xe6a299, - 0xe6a29a, - 0xe6a29b, - 0xe6a29c, - 0xe6a29d, - 0xe6a29e, - 0xe6a29f, - 0xe6a2a0, - 0xe6a2a1, - 0xe6a2a2, - 0xe6a2a3, - 0xe6a2a4, - 0xe6a2a5, - 0xe6a2a6, - 0xe6a2a7, - 0xe6a2a8, - 0xe6a2a9, - 0xe6a2aa, - 0xe6a2ab, - 0xe6a2ac, - 0xe6a2ad, - 0xe6a2ae, - 0xe6a2af, - 0xe6a2b0, - 0xe6a2b1, - 0xe6a2b2, - 0xe6a2b3, - 0xe6a2b4, - 0xe6a2b5, - 0xe6a2b6, - 0xe6a2b7, - 0xe6a2b8, - 0xe6a2b9, - 0xe6a2ba, - 0xe6a2bb, - 0xe6a2bc, - 0xe6a2bd, - 0xe6a2be, - 0xe6a2bf, - 0xe6a380, - 0xe6a381, - 0xe6a382, - 0xe6a383, - 0xe6a384, - 0xe6a385, - 0xe6a386, - 0xe6a387, - 0xe6a388, - 0xe6a389, - 0xe6a38a, - 0xe6a38b, - 0xe6a38c, - 0xe6a38d, - 0xe6a38e, - 0xe6a38f, - 0xe6a390, - 0xe6a391, - 0xe6a392, - 0xe6a393, - 0xe6a394, - 0xe6a395, - 0xe6a396, - 0xe6a397, - 0xe6a398, - 0xe6a399, - 0xe6a39a, - 0xe6a39b, - 0xe6a39c, - 0xe6a39d, - 0xe6a39e, - 0xe6a39f, - 0xe6a3a0, - 0xe6a3a1, - 0xe6a3a2, - 0xe6a3a3, - 0xe6a3a4, - 0xe6a3a5, - 0xe6a3a6, - 0xe6a3a7, - 0xe6a3a8, - 0xe6a3a9, - 0xe6a3aa, - 0xe6a3ab, - 0xe6a3ac, - 0xe6a3ad, - 0xe6a3ae, - 0xe6a3af, - 0xe6a3b0, - 0xe6a3b1, - 0xe6a3b2, - 0xe6a3b3, - 0xe6a3b4, - 0xe6a3b5, - 0xe6a3b6, - 0xe6a3b7, - 0xe6a3b8, - 0xe6a3b9, - 0xe6a3ba, - 0xe6a3bb, - 0xe6a3bc, - 0xe6a3bd, - 0xe6a3be, - 0xe6a3bf, - 0xe6a480, - 0xe6a481, - 0xe6a482, - 0xe6a483, - 0xe6a484, - 0xe6a485, - 0xe6a486, - 0xe6a487, - 0xe6a488, - 0xe6a489, - 0xe6a48a, - 0xe6a48b, - 0xe6a48c, - 0xe6a48d, - 0xe6a48e, - 0xe6a48f, - 0xe6a490, - 0xe6a491, - 0xe6a492, - 0xe6a493, - 0xe6a494, - 0xe6a495, - 0xe6a496, - 0xe6a497, - 0xe6a498, - 0xe6a499, - 0xe6a49a, - 0xe6a49b, - 0xe6a49c, - 0xe6a49d, - 0xe6a49e, - 0xe6a49f, - 0xe6a4a0, - 0xe6a4a1, - 0xe6a4a2, - 0xe6a4a3, - 0xe6a4a4, - 0xe6a4a5, - 0xe6a4a6, - 0xe6a4a7, - 0xe6a4a8, - 0xe6a4a9, - 0xe6a4aa, - 0xe6a4ab, - 0xe6a4ac, - 0xe6a4ad, - 0xe6a4ae, - 0xe6a4af, - 0xe6a4b0, - 0xe6a4b1, - 0xe6a4b2, - 0xe6a4b3, - 0xe6a4b4, - 0xe6a4b5, - 0xe6a4b6, - 0xe6a4b7, - 0xe6a4b8, - 0xe6a4b9, - 0xe6a4ba, - 0xe6a4bb, - 0xe6a4bc, - 0xe6a4bd, - 0xe6a4be, - 0xe6a4bf, - 0xe6a580, - 0xe6a581, - 0xe6a582, - 0xe6a583, - 0xe6a584, - 0xe6a585, - 0xe6a586, - 0xe6a587, - 0xe6a588, - 0xe6a589, - 0xe6a58a, - 0xe6a58b, - 0xe6a58c, - 0xe6a58d, - 0xe6a58e, - 0xe6a58f, - 0xe6a590, - 0xe6a591, - 0xe6a592, - 0xe6a593, - 0xe6a594, - 0xe6a595, - 0xe6a596, - 0xe6a597, - 0xe6a598, - 0xe6a599, - 0xe6a59a, - 0xe6a59b, - 0xe6a59c, - 0xe6a59d, - 0xe6a59e, - 0xe6a59f, - 0xe6a5a0, - 0xe6a5a1, - 0xe6a5a2, - 0xe6a5a3, - 0xe6a5a4, - 0xe6a5a5, - 0xe6a5a6, - 0xe6a5a7, - 0xe6a5a8, - 0xe6a5a9, - 0xe6a5aa, - 0xe6a5ab, - 0xe6a5ac, - 0xe6a5ad, - 0xe6a5ae, - 0xe6a5af, - 0xe6a5b0, - 0xe6a5b1, - 0xe6a5b2, - 0xe6a5b3, - 0xe6a5b4, - 0xe6a5b5, - 0xe6a5b6, - 0xe6a5b7, - 0xe6a5b8, - 0xe6a5b9, - 0xe6a5ba, - 0xe6a5bb, - 0xe6a5bc, - 0xe6a5bd, - 0xe6a5be, - 0xe6a5bf, - 0xe6a680, - 0xe6a681, - 0xe6a682, - 0xe6a683, - 0xe6a684, - 0xe6a685, - 0xe6a686, - 0xe6a687, - 0xe6a688, - 0xe6a689, - 0xe6a68a, - 0xe6a68b, - 0xe6a68c, - 0xe6a68d, - 0xe6a68e, - 0xe6a68f, - 0xe6a690, - 0xe6a691, - 0xe6a692, - 0xe6a693, - 0xe6a694, - 0xe6a695, - 0xe6a696, - 0xe6a697, - 0xe6a698, - 0xe6a699, - 0xe6a69a, - 0xe6a69b, - 0xe6a69c, - 0xe6a69d, - 0xe6a69e, - 0xe6a69f, - 0xe6a6a0, - 0xe6a6a1, - 0xe6a6a2, - 0xe6a6a3, - 0xe6a6a4, - 0xe6a6a5, - 0xe6a6a6, - 0xe6a6a7, - 0xe6a6a8, - 0xe6a6a9, - 0xe6a6aa, - 0xe6a6ab, - 0xe6a6ac, - 0xe6a6ad, - 0xe6a6ae, - 0xe6a6af, - 0xe6a6b0, - 0xe6a6b1, - 0xe6a6b2, - 0xe6a6b3, - 0xe6a6b4, - 0xe6a6b5, - 0xe6a6b6, - 0xe6a6b7, - 0xe6a6b8, - 0xe6a6b9, - 0xe6a6ba, - 0xe6a6bb, - 0xe6a6bc, - 0xe6a6bd, - 0xe6a6be, - 0xe6a6bf, - 0xe6a780, - 0xe6a781, - 0xe6a782, - 0xe6a783, - 0xe6a784, - 0xe6a785, - 0xe6a786, - 0xe6a787, - 0xe6a788, - 0xe6a789, - 0xe6a78a, - 0xe6a78b, - 0xe6a78c, - 0xe6a78d, - 0xe6a78e, - 0xe6a78f, - 0xe6a790, - 0xe6a791, - 0xe6a792, - 0xe6a793, - 0xe6a794, - 0xe6a795, - 0xe6a796, - 0xe6a797, - 0xe6a798, - 0xe6a799, - 0xe6a79a, - 0xe6a79b, - 0xe6a79c, - 0xe6a79d, - 0xe6a79e, - 0xe6a79f, - 0xe6a7a0, - 0xe6a7a1, - 0xe6a7a2, - 0xe6a7a3, - 0xe6a7a4, - 0xe6a7a5, - 0xe6a7a6, - 0xe6a7a7, - 0xe6a7a8, - 0xe6a7a9, - 0xe6a7aa, - 0xe6a7ab, - 0xe6a7ac, - 0xe6a7ad, - 0xe6a7ae, - 0xe6a7af, - 0xe6a7b0, - 0xe6a7b1, - 0xe6a7b2, - 0xe6a7b3, - 0xe6a7b4, - 0xe6a7b5, - 0xe6a7b6, - 0xe6a7b7, - 0xe6a7b8, - 0xe6a7b9, - 0xe6a7ba, - 0xe6a7bb, - 0xe6a7bc, - 0xe6a7bd, - 0xe6a7be, - 0xe6a7bf, - 0xe6a880, - 0xe6a881, - 0xe6a882, - 0xe6a883, - 0xe6a884, - 0xe6a885, - 0xe6a886, - 0xe6a887, - 0xe6a888, - 0xe6a889, - 0xe6a88a, - 0xe6a88b, - 0xe6a88c, - 0xe6a88d, - 0xe6a88e, - 0xe6a88f, - 0xe6a890, - 0xe6a891, - 0xe6a892, - 0xe6a893, - 0xe6a894, - 0xe6a895, - 0xe6a896, - 0xe6a897, - 0xe6a898, - 0xe6a899, - 0xe6a89a, - 0xe6a89b, - 0xe6a89c, - 0xe6a89d, - 0xe6a89e, - 0xe6a89f, - 0xe6a8a0, - 0xe6a8a1, - 0xe6a8a2, - 0xe6a8a3, - 0xe6a8a4, - 0xe6a8a5, - 0xe6a8a6, - 0xe6a8a7, - 0xe6a8a8, - 0xe6a8a9, - 0xe6a8aa, - 0xe6a8ab, - 0xe6a8ac, - 0xe6a8ad, - 0xe6a8ae, - 0xe6a8af, - 0xe6a8b0, - 0xe6a8b1, - 0xe6a8b2, - 0xe6a8b3, - 0xe6a8b4, - 0xe6a8b5, - 0xe6a8b6, - 0xe6a8b7, - 0xe6a8b8, - 0xe6a8b9, - 0xe6a8ba, - 0xe6a8bb, - 0xe6a8bc, - 0xe6a8bd, - 0xe6a8be, - 0xe6a8bf, - 0xe6a980, - 0xe6a981, - 0xe6a982, - 0xe6a983, - 0xe6a984, - 0xe6a985, - 0xe6a986, - 0xe6a987, - 0xe6a988, - 0xe6a989, - 0xe6a98a, - 0xe6a98b, - 0xe6a98c, - 0xe6a98d, - 0xe6a98e, - 0xe6a98f, - 0xe6a990, - 0xe6a991, - 0xe6a992, - 0xe6a993, - 0xe6a994, - 0xe6a995, - 0xe6a996, - 0xe6a997, - 0xe6a998, - 0xe6a999, - 0xe6a99a, - 0xe6a99b, - 0xe6a99c, - 0xe6a99d, - 0xe6a99e, - 0xe6a99f, - 0xe6a9a0, - 0xe6a9a1, - 0xe6a9a2, - 0xe6a9a3, - 0xe6a9a4, - 0xe6a9a5, - 0xe6a9a6, - 0xe6a9a7, - 0xe6a9a8, - 0xe6a9a9, - 0xe6a9aa, - 0xe6a9ab, - 0xe6a9ac, - 0xe6a9ad, - 0xe6a9ae, - 0xe6a9af, - 0xe6a9b0, - 0xe6a9b1, - 0xe6a9b2, - 0xe6a9b3, - 0xe6a9b4, - 0xe6a9b5, - 0xe6a9b6, - 0xe6a9b7, - 0xe6a9b8, - 0xe6a9b9, - 0xe6a9ba, - 0xe6a9bb, - 0xe6a9bc, - 0xe6a9bd, - 0xe6a9be, - 0xe6a9bf, - 0xe6aa80, - 0xe6aa81, - 0xe6aa82, - 0xe6aa83, - 0xe6aa84, - 0xe6aa85, - 0xe6aa86, - 0xe6aa87, - 0xe6aa88, - 0xe6aa89, - 0xe6aa8a, - 0xe6aa8b, - 0xe6aa8c, - 0xe6aa8d, - 0xe6aa8e, - 0xe6aa8f, - 0xe6aa90, - 0xe6aa91, - 0xe6aa92, - 0xe6aa93, - 0xe6aa94, - 0xe6aa95, - 0xe6aa96, - 0xe6aa97, - 0xe6aa98, - 0xe6aa99, - 0xe6aa9a, - 0xe6aa9b, - 0xe6aa9c, - 0xe6aa9d, - 0xe6aa9e, - 0xe6aa9f, - 0xe6aaa0, - 0xe6aaa1, - 0xe6aaa2, - 0xe6aaa3, - 0xe6aaa4, - 0xe6aaa5, - 0xe6aaa6, - 0xe6aaa7, - 0xe6aaa8, - 0xe6aaa9, - 0xe6aaaa, - 0xe6aaab, - 0xe6aaac, - 0xe6aaad, - 0xe6aaae, - 0xe6aaaf, - 0xe6aab0, - 0xe6aab1, - 0xe6aab2, - 0xe6aab3, - 0xe6aab4, - 0xe6aab5, - 0xe6aab6, - 0xe6aab7, - 0xe6aab8, - 0xe6aab9, - 0xe6aaba, - 0xe6aabb, - 0xe6aabc, - 0xe6aabd, - 0xe6aabe, - 0xe6aabf, - 0xe6ab80, - 0xe6ab81, - 0xe6ab82, - 0xe6ab83, - 0xe6ab84, - 0xe6ab85, - 0xe6ab86, - 0xe6ab87, - 0xe6ab88, - 0xe6ab89, - 0xe6ab8a, - 0xe6ab8b, - 0xe6ab8c, - 0xe6ab8d, - 0xe6ab8e, - 0xe6ab8f, - 0xe6ab90, - 0xe6ab91, - 0xe6ab92, - 0xe6ab93, - 0xe6ab94, - 0xe6ab95, - 0xe6ab96, - 0xe6ab97, - 0xe6ab98, - 0xe6ab99, - 0xe6ab9a, - 0xe6ab9b, - 0xe6ab9c, - 0xe6ab9d, - 0xe6ab9e, - 0xe6ab9f, - 0xe6aba0, - 0xe6aba1, - 0xe6aba2, - 0xe6aba3, - 0xe6aba4, - 0xe6aba5, - 0xe6aba6, - 0xe6aba7, - 0xe6aba8, - 0xe6aba9, - 0xe6abaa, - 0xe6abab, - 0xe6abac, - 0xe6abad, - 0xe6abae, - 0xe6abaf, - 0xe6abb0, - 0xe6abb1, - 0xe6abb2, - 0xe6abb3, - 0xe6abb4, - 0xe6abb5, - 0xe6abb6, - 0xe6abb7, - 0xe6abb8, - 0xe6abb9, - 0xe6abba, - 0xe6abbb, - 0xe6abbc, - 0xe6abbd, - 0xe6abbe, - 0xe6abbf, - 0xe6ac80, - 0xe6ac81, - 0xe6ac82, - 0xe6ac83, - 0xe6ac84, - 0xe6ac85, - 0xe6ac86, - 0xe6ac87, - 0xe6ac88, - 0xe6ac89, - 0xe6ac8a, - 0xe6ac8b, - 0xe6ac8c, - 0xe6ac8d, - 0xe6ac8e, - 0xe6ac8f, - 0xe6ac90, - 0xe6ac91, - 0xe6ac92, - 0xe6ac93, - 0xe6ac94, - 0xe6ac95, - 0xe6ac96, - 0xe6ac97, - 0xe6ac98, - 0xe6ac99, - 0xe6ac9a, - 0xe6ac9b, - 0xe6ac9c, - 0xe6ac9d, - 0xe6ac9e, - 0xe6ac9f, - 0xe6aca0, - 0xe6aca1, - 0xe6aca2, - 0xe6aca3, - 0xe6aca4, - 0xe6aca5, - 0xe6aca6, - 0xe6aca7, - 0xe6aca8, - 0xe6aca9, - 0xe6acaa, - 0xe6acab, - 0xe6acac, - 0xe6acad, - 0xe6acae, - 0xe6acaf, - 0xe6acb0, - 0xe6acb1, - 0xe6acb2, - 0xe6acb3, - 0xe6acb4, - 0xe6acb5, - 0xe6acb6, - 0xe6acb7, - 0xe6acb8, - 0xe6acb9, - 0xe6acba, - 0xe6acbb, - 0xe6acbc, - 0xe6acbd, - 0xe6acbe, - 0xe6acbf, - 0xe6ad80, - 0xe6ad81, - 0xe6ad82, - 0xe6ad83, - 0xe6ad84, - 0xe6ad85, - 0xe6ad86, - 0xe6ad87, - 0xe6ad88, - 0xe6ad89, - 0xe6ad8a, - 0xe6ad8b, - 0xe6ad8c, - 0xe6ad8d, - 0xe6ad8e, - 0xe6ad8f, - 0xe6ad90, - 0xe6ad91, - 0xe6ad92, - 0xe6ad93, - 0xe6ad94, - 0xe6ad95, - 0xe6ad96, - 0xe6ad97, - 0xe6ad98, - 0xe6ad99, - 0xe6ad9a, - 0xe6ad9b, - 0xe6ad9c, - 0xe6ad9d, - 0xe6ad9e, - 0xe6ad9f, - 0xe6ada0, - 0xe6ada1, - 0xe6ada2, - 0xe6ada3, - 0xe6ada4, - 0xe6ada5, - 0xe6ada6, - 0xe6ada7, - 0xe6ada8, - 0xe6ada9, - 0xe6adaa, - 0xe6adab, - 0xe6adac, - 0xe6adad, - 0xe6adae, - 0xe6adaf, - 0xe6adb0, - 0xe6adb1, - 0xe6adb2, - 0xe6adb3, - 0xe6adb4, - 0xe6adb5, - 0xe6adb6, - 0xe6adb7, - 0xe6adb8, - 0xe6adb9, - 0xe6adba, - 0xe6adbb, - 0xe6adbc, - 0xe6adbd, - 0xe6adbe, - 0xe6adbf, - 0xe6ae80, - 0xe6ae81, - 0xe6ae82, - 0xe6ae83, - 0xe6ae84, - 0xe6ae85, - 0xe6ae86, - 0xe6ae87, - 0xe6ae88, - 0xe6ae89, - 0xe6ae8a, - 0xe6ae8b, - 0xe6ae8c, - 0xe6ae8d, - 0xe6ae8e, - 0xe6ae8f, - 0xe6ae90, - 0xe6ae91, - 0xe6ae92, - 0xe6ae93, - 0xe6ae94, - 0xe6ae95, - 0xe6ae96, - 0xe6ae97, - 0xe6ae98, - 0xe6ae99, - 0xe6ae9a, - 0xe6ae9b, - 0xe6ae9c, - 0xe6ae9d, - 0xe6ae9e, - 0xe6ae9f, - 0xe6aea0, - 0xe6aea1, - 0xe6aea2, - 0xe6aea3, - 0xe6aea4, - 0xe6aea5, - 0xe6aea6, - 0xe6aea7, - 0xe6aea8, - 0xe6aea9, - 0xe6aeaa, - 0xe6aeab, - 0xe6aeac, - 0xe6aead, - 0xe6aeae, - 0xe6aeaf, - 0xe6aeb0, - 0xe6aeb1, - 0xe6aeb2, - 0xe6aeb3, - 0xe6aeb4, - 0xe6aeb5, - 0xe6aeb6, - 0xe6aeb7, - 0xe6aeb8, - 0xe6aeb9, - 0xe6aeba, - 0xe6aebb, - 0xe6aebc, - 0xe6aebd, - 0xe6aebe, - 0xe6aebf, - 0xe6af80, - 0xe6af81, - 0xe6af82, - 0xe6af83, - 0xe6af84, - 0xe6af85, - 0xe6af86, - 0xe6af87, - 0xe6af88, - 0xe6af89, - 0xe6af8a, - 0xe6af8b, - 0xe6af8c, - 0xe6af8d, - 0xe6af8e, - 0xe6af8f, - 0xe6af90, - 0xe6af91, - 0xe6af92, - 0xe6af93, - 0xe6af94, - 0xe6af95, - 0xe6af96, - 0xe6af97, - 0xe6af98, - 0xe6af99, - 0xe6af9a, - 0xe6af9b, - 0xe6af9c, - 0xe6af9d, - 0xe6af9e, - 0xe6af9f, - 0xe6afa0, - 0xe6afa1, - 0xe6afa2, - 0xe6afa3, - 0xe6afa4, - 0xe6afa5, - 0xe6afa6, - 0xe6afa7, - 0xe6afa8, - 0xe6afa9, - 0xe6afaa, - 0xe6afab, - 0xe6afac, - 0xe6afad, - 0xe6afae, - 0xe6afaf, - 0xe6afb0, - 0xe6afb1, - 0xe6afb2, - 0xe6afb3, - 0xe6afb4, - 0xe6afb5, - 0xe6afb6, - 0xe6afb7, - 0xe6afb8, - 0xe6afb9, - 0xe6afba, - 0xe6afbb, - 0xe6afbc, - 0xe6afbd, - 0xe6afbe, - 0xe6afbf, - 0xe6b080, - 0xe6b081, - 0xe6b082, - 0xe6b083, - 0xe6b084, - 0xe6b085, - 0xe6b086, - 0xe6b087, - 0xe6b088, - 0xe6b089, - 0xe6b08a, - 0xe6b08b, - 0xe6b08c, - 0xe6b08d, - 0xe6b08e, - 0xe6b08f, - 0xe6b090, - 0xe6b091, - 0xe6b092, - 0xe6b093, - 0xe6b094, - 0xe6b095, - 0xe6b096, - 0xe6b097, - 0xe6b098, - 0xe6b099, - 0xe6b09a, - 0xe6b09b, - 0xe6b09c, - 0xe6b09d, - 0xe6b09e, - 0xe6b09f, - 0xe6b0a0, - 0xe6b0a1, - 0xe6b0a2, - 0xe6b0a3, - 0xe6b0a4, - 0xe6b0a5, - 0xe6b0a6, - 0xe6b0a7, - 0xe6b0a8, - 0xe6b0a9, - 0xe6b0aa, - 0xe6b0ab, - 0xe6b0ac, - 0xe6b0ad, - 0xe6b0ae, - 0xe6b0af, - 0xe6b0b0, - 0xe6b0b1, - 0xe6b0b2, - 0xe6b0b3, - 0xe6b0b4, - 0xe6b0b5, - 0xe6b0b6, - 0xe6b0b7, - 0xe6b0b8, - 0xe6b0b9, - 0xe6b0ba, - 0xe6b0bb, - 0xe6b0bc, - 0xe6b0bd, - 0xe6b0be, - 0xe6b0bf, - 0xe6b180, - 0xe6b181, - 0xe6b182, - 0xe6b183, - 0xe6b184, - 0xe6b185, - 0xe6b186, - 0xe6b187, - 0xe6b188, - 0xe6b189, - 0xe6b18a, - 0xe6b18b, - 0xe6b18c, - 0xe6b18d, - 0xe6b18e, - 0xe6b18f, - 0xe6b190, - 0xe6b191, - 0xe6b192, - 0xe6b193, - 0xe6b194, - 0xe6b195, - 0xe6b196, - 0xe6b197, - 0xe6b198, - 0xe6b199, - 0xe6b19a, - 0xe6b19b, - 0xe6b19c, - 0xe6b19d, - 0xe6b19e, - 0xe6b19f, - 0xe6b1a0, - 0xe6b1a1, - 0xe6b1a2, - 0xe6b1a3, - 0xe6b1a4, - 0xe6b1a5, - 0xe6b1a6, - 0xe6b1a7, - 0xe6b1a8, - 0xe6b1a9, - 0xe6b1aa, - 0xe6b1ab, - 0xe6b1ac, - 0xe6b1ad, - 0xe6b1ae, - 0xe6b1af, - 0xe6b1b0, - 0xe6b1b1, - 0xe6b1b2, - 0xe6b1b3, - 0xe6b1b4, - 0xe6b1b5, - 0xe6b1b6, - 0xe6b1b7, - 0xe6b1b8, - 0xe6b1b9, - 0xe6b1ba, - 0xe6b1bb, - 0xe6b1bc, - 0xe6b1bd, - 0xe6b1be, - 0xe6b1bf, - 0xe6b280, - 0xe6b281, - 0xe6b282, - 0xe6b283, - 0xe6b284, - 0xe6b285, - 0xe6b286, - 0xe6b287, - 0xe6b288, - 0xe6b289, - 0xe6b28a, - 0xe6b28b, - 0xe6b28c, - 0xe6b28d, - 0xe6b28e, - 0xe6b28f, - 0xe6b290, - 0xe6b291, - 0xe6b292, - 0xe6b293, - 0xe6b294, - 0xe6b295, - 0xe6b296, - 0xe6b297, - 0xe6b298, - 0xe6b299, - 0xe6b29a, - 0xe6b29b, - 0xe6b29c, - 0xe6b29d, - 0xe6b29e, - 0xe6b29f, - 0xe6b2a0, - 0xe6b2a1, - 0xe6b2a2, - 0xe6b2a3, - 0xe6b2a4, - 0xe6b2a5, - 0xe6b2a6, - 0xe6b2a7, - 0xe6b2a8, - 0xe6b2a9, - 0xe6b2aa, - 0xe6b2ab, - 0xe6b2ac, - 0xe6b2ad, - 0xe6b2ae, - 0xe6b2af, - 0xe6b2b0, - 0xe6b2b1, - 0xe6b2b2, - 0xe6b2b3, - 0xe6b2b4, - 0xe6b2b5, - 0xe6b2b6, - 0xe6b2b7, - 0xe6b2b8, - 0xe6b2b9, - 0xe6b2ba, - 0xe6b2bb, - 0xe6b2bc, - 0xe6b2bd, - 0xe6b2be, - 0xe6b2bf, - 0xe6b380, - 0xe6b381, - 0xe6b382, - 0xe6b383, - 0xe6b384, - 0xe6b385, - 0xe6b386, - 0xe6b387, - 0xe6b388, - 0xe6b389, - 0xe6b38a, - 0xe6b38b, - 0xe6b38c, - 0xe6b38d, - 0xe6b38e, - 0xe6b38f, - 0xe6b390, - 0xe6b391, - 0xe6b392, - 0xe6b393, - 0xe6b394, - 0xe6b395, - 0xe6b396, - 0xe6b397, - 0xe6b398, - 0xe6b399, - 0xe6b39a, - 0xe6b39b, - 0xe6b39c, - 0xe6b39d, - 0xe6b39e, - 0xe6b39f, - 0xe6b3a0, - 0xe6b3a1, - 0xe6b3a2, - 0xe6b3a3, - 0xe6b3a4, - 0xe6b3a5, - 0xe6b3a6, - 0xe6b3a7, - 0xe6b3a8, - 0xe6b3a9, - 0xe6b3aa, - 0xe6b3ab, - 0xe6b3ac, - 0xe6b3ad, - 0xe6b3ae, - 0xe6b3af, - 0xe6b3b0, - 0xe6b3b1, - 0xe6b3b2, - 0xe6b3b3, - 0xe6b3b4, - 0xe6b3b5, - 0xe6b3b6, - 0xe6b3b7, - 0xe6b3b8, - 0xe6b3b9, - 0xe6b3ba, - 0xe6b3bb, - 0xe6b3bc, - 0xe6b3bd, - 0xe6b3be, - 0xe6b3bf, - 0xe6b480, - 0xe6b481, - 0xe6b482, - 0xe6b483, - 0xe6b484, - 0xe6b485, - 0xe6b486, - 0xe6b487, - 0xe6b488, - 0xe6b489, - 0xe6b48a, - 0xe6b48b, - 0xe6b48c, - 0xe6b48d, - 0xe6b48e, - 0xe6b48f, - 0xe6b490, - 0xe6b491, - 0xe6b492, - 0xe6b493, - 0xe6b494, - 0xe6b495, - 0xe6b496, - 0xe6b497, - 0xe6b498, - 0xe6b499, - 0xe6b49a, - 0xe6b49b, - 0xe6b49c, - 0xe6b49d, - 0xe6b49e, - 0xe6b49f, - 0xe6b4a0, - 0xe6b4a1, - 0xe6b4a2, - 0xe6b4a3, - 0xe6b4a4, - 0xe6b4a5, - 0xe6b4a6, - 0xe6b4a7, - 0xe6b4a8, - 0xe6b4a9, - 0xe6b4aa, - 0xe6b4ab, - 0xe6b4ac, - 0xe6b4ad, - 0xe6b4ae, - 0xe6b4af, - 0xe6b4b0, - 0xe6b4b1, - 0xe6b4b2, - 0xe6b4b3, - 0xe6b4b4, - 0xe6b4b5, - 0xe6b4b6, - 0xe6b4b7, - 0xe6b4b8, - 0xe6b4b9, - 0xe6b4ba, - 0xe6b4bb, - 0xe6b4bc, - 0xe6b4bd, - 0xe6b4be, - 0xe6b4bf, - 0xe6b580, - 0xe6b581, - 0xe6b582, - 0xe6b583, - 0xe6b584, - 0xe6b585, - 0xe6b586, - 0xe6b587, - 0xe6b588, - 0xe6b589, - 0xe6b58a, - 0xe6b58b, - 0xe6b58c, - 0xe6b58d, - 0xe6b58e, - 0xe6b58f, - 0xe6b590, - 0xe6b591, - 0xe6b592, - 0xe6b593, - 0xe6b594, - 0xe6b595, - 0xe6b596, - 0xe6b597, - 0xe6b598, - 0xe6b599, - 0xe6b59a, - 0xe6b59b, - 0xe6b59c, - 0xe6b59d, - 0xe6b59e, - 0xe6b59f, - 0xe6b5a0, - 0xe6b5a1, - 0xe6b5a2, - 0xe6b5a3, - 0xe6b5a4, - 0xe6b5a5, - 0xe6b5a6, - 0xe6b5a7, - 0xe6b5a8, - 0xe6b5a9, - 0xe6b5aa, - 0xe6b5ab, - 0xe6b5ac, - 0xe6b5ad, - 0xe6b5ae, - 0xe6b5af, - 0xe6b5b0, - 0xe6b5b1, - 0xe6b5b2, - 0xe6b5b3, - 0xe6b5b4, - 0xe6b5b5, - 0xe6b5b6, - 0xe6b5b7, - 0xe6b5b8, - 0xe6b5b9, - 0xe6b5ba, - 0xe6b5bb, - 0xe6b5bc, - 0xe6b5bd, - 0xe6b5be, - 0xe6b5bf, - 0xe6b680, - 0xe6b681, - 0xe6b682, - 0xe6b683, - 0xe6b684, - 0xe6b685, - 0xe6b686, - 0xe6b687, - 0xe6b688, - 0xe6b689, - 0xe6b68a, - 0xe6b68b, - 0xe6b68c, - 0xe6b68d, - 0xe6b68e, - 0xe6b68f, - 0xe6b690, - 0xe6b691, - 0xe6b692, - 0xe6b693, - 0xe6b694, - 0xe6b695, - 0xe6b696, - 0xe6b697, - 0xe6b698, - 0xe6b699, - 0xe6b69a, - 0xe6b69b, - 0xe6b69c, - 0xe6b69d, - 0xe6b69e, - 0xe6b69f, - 0xe6b6a0, - 0xe6b6a1, - 0xe6b6a2, - 0xe6b6a3, - 0xe6b6a4, - 0xe6b6a5, - 0xe6b6a6, - 0xe6b6a7, - 0xe6b6a8, - 0xe6b6a9, - 0xe6b6aa, - 0xe6b6ab, - 0xe6b6ac, - 0xe6b6ad, - 0xe6b6ae, - 0xe6b6af, - 0xe6b6b0, - 0xe6b6b1, - 0xe6b6b2, - 0xe6b6b3, - 0xe6b6b4, - 0xe6b6b5, - 0xe6b6b6, - 0xe6b6b7, - 0xe6b6b8, - 0xe6b6b9, - 0xe6b6ba, - 0xe6b6bb, - 0xe6b6bc, - 0xe6b6bd, - 0xe6b6be, - 0xe6b6bf, - 0xe6b780, - 0xe6b781, - 0xe6b782, - 0xe6b783, - 0xe6b784, - 0xe6b785, - 0xe6b786, - 0xe6b787, - 0xe6b788, - 0xe6b789, - 0xe6b78a, - 0xe6b78b, - 0xe6b78c, - 0xe6b78d, - 0xe6b78e, - 0xe6b78f, - 0xe6b790, - 0xe6b791, - 0xe6b792, - 0xe6b793, - 0xe6b794, - 0xe6b795, - 0xe6b796, - 0xe6b797, - 0xe6b798, - 0xe6b799, - 0xe6b79a, - 0xe6b79b, - 0xe6b79c, - 0xe6b79d, - 0xe6b79e, - 0xe6b79f, - 0xe6b7a0, - 0xe6b7a1, - 0xe6b7a2, - 0xe6b7a3, - 0xe6b7a4, - 0xe6b7a5, - 0xe6b7a6, - 0xe6b7a7, - 0xe6b7a8, - 0xe6b7a9, - 0xe6b7aa, - 0xe6b7ab, - 0xe6b7ac, - 0xe6b7ad, - 0xe6b7ae, - 0xe6b7af, - 0xe6b7b0, - 0xe6b7b1, - 0xe6b7b2, - 0xe6b7b3, - 0xe6b7b4, - 0xe6b7b5, - 0xe6b7b6, - 0xe6b7b7, - 0xe6b7b8, - 0xe6b7b9, - 0xe6b7ba, - 0xe6b7bb, - 0xe6b7bc, - 0xe6b7bd, - 0xe6b7be, - 0xe6b7bf, - 0xe6b880, - 0xe6b881, - 0xe6b882, - 0xe6b883, - 0xe6b884, - 0xe6b885, - 0xe6b886, - 0xe6b887, - 0xe6b888, - 0xe6b889, - 0xe6b88a, - 0xe6b88b, - 0xe6b88c, - 0xe6b88d, - 0xe6b88e, - 0xe6b88f, - 0xe6b890, - 0xe6b891, - 0xe6b892, - 0xe6b893, - 0xe6b894, - 0xe6b895, - 0xe6b896, - 0xe6b897, - 0xe6b898, - 0xe6b899, - 0xe6b89a, - 0xe6b89b, - 0xe6b89c, - 0xe6b89d, - 0xe6b89e, - 0xe6b89f, - 0xe6b8a0, - 0xe6b8a1, - 0xe6b8a2, - 0xe6b8a3, - 0xe6b8a4, - 0xe6b8a5, - 0xe6b8a6, - 0xe6b8a7, - 0xe6b8a8, - 0xe6b8a9, - 0xe6b8aa, - 0xe6b8ab, - 0xe6b8ac, - 0xe6b8ad, - 0xe6b8ae, - 0xe6b8af, - 0xe6b8b0, - 0xe6b8b1, - 0xe6b8b2, - 0xe6b8b3, - 0xe6b8b4, - 0xe6b8b5, - 0xe6b8b6, - 0xe6b8b7, - 0xe6b8b8, - 0xe6b8b9, - 0xe6b8ba, - 0xe6b8bb, - 0xe6b8bc, - 0xe6b8bd, - 0xe6b8be, - 0xe6b8bf, - 0xe6b980, - 0xe6b981, - 0xe6b982, - 0xe6b983, - 0xe6b984, - 0xe6b985, - 0xe6b986, - 0xe6b987, - 0xe6b988, - 0xe6b989, - 0xe6b98a, - 0xe6b98b, - 0xe6b98c, - 0xe6b98d, - 0xe6b98e, - 0xe6b98f, - 0xe6b990, - 0xe6b991, - 0xe6b992, - 0xe6b993, - 0xe6b994, - 0xe6b995, - 0xe6b996, - 0xe6b997, - 0xe6b998, - 0xe6b999, - 0xe6b99a, - 0xe6b99b, - 0xe6b99c, - 0xe6b99d, - 0xe6b99e, - 0xe6b99f, - 0xe6b9a0, - 0xe6b9a1, - 0xe6b9a2, - 0xe6b9a3, - 0xe6b9a4, - 0xe6b9a5, - 0xe6b9a6, - 0xe6b9a7, - 0xe6b9a8, - 0xe6b9a9, - 0xe6b9aa, - 0xe6b9ab, - 0xe6b9ac, - 0xe6b9ad, - 0xe6b9ae, - 0xe6b9af, - 0xe6b9b0, - 0xe6b9b1, - 0xe6b9b2, - 0xe6b9b3, - 0xe6b9b4, - 0xe6b9b5, - 0xe6b9b6, - 0xe6b9b7, - 0xe6b9b8, - 0xe6b9b9, - 0xe6b9ba, - 0xe6b9bb, - 0xe6b9bc, - 0xe6b9bd, - 0xe6b9be, - 0xe6b9bf, - 0xe6ba80, - 0xe6ba81, - 0xe6ba82, - 0xe6ba83, - 0xe6ba84, - 0xe6ba85, - 0xe6ba86, - 0xe6ba87, - 0xe6ba88, - 0xe6ba89, - 0xe6ba8a, - 0xe6ba8b, - 0xe6ba8c, - 0xe6ba8d, - 0xe6ba8e, - 0xe6ba8f, - 0xe6ba90, - 0xe6ba91, - 0xe6ba92, - 0xe6ba93, - 0xe6ba94, - 0xe6ba95, - 0xe6ba96, - 0xe6ba97, - 0xe6ba98, - 0xe6ba99, - 0xe6ba9a, - 0xe6ba9b, - 0xe6ba9c, - 0xe6ba9d, - 0xe6ba9e, - 0xe6ba9f, - 0xe6baa0, - 0xe6baa1, - 0xe6baa2, - 0xe6baa3, - 0xe6baa4, - 0xe6baa5, - 0xe6baa6, - 0xe6baa7, - 0xe6baa8, - 0xe6baa9, - 0xe6baaa, - 0xe6baab, - 0xe6baac, - 0xe6baad, - 0xe6baae, - 0xe6baaf, - 0xe6bab0, - 0xe6bab1, - 0xe6bab2, - 0xe6bab3, - 0xe6bab4, - 0xe6bab5, - 0xe6bab6, - 0xe6bab7, - 0xe6bab8, - 0xe6bab9, - 0xe6baba, - 0xe6babb, - 0xe6babc, - 0xe6babd, - 0xe6babe, - 0xe6babf, - 0xe6bb80, - 0xe6bb81, - 0xe6bb82, - 0xe6bb83, - 0xe6bb84, - 0xe6bb85, - 0xe6bb86, - 0xe6bb87, - 0xe6bb88, - 0xe6bb89, - 0xe6bb8a, - 0xe6bb8b, - 0xe6bb8c, - 0xe6bb8d, - 0xe6bb8e, - 0xe6bb8f, - 0xe6bb90, - 0xe6bb91, - 0xe6bb92, - 0xe6bb93, - 0xe6bb94, - 0xe6bb95, - 0xe6bb96, - 0xe6bb97, - 0xe6bb98, - 0xe6bb99, - 0xe6bb9a, - 0xe6bb9b, - 0xe6bb9c, - 0xe6bb9d, - 0xe6bb9e, - 0xe6bb9f, - 0xe6bba0, - 0xe6bba1, - 0xe6bba2, - 0xe6bba3, - 0xe6bba4, - 0xe6bba5, - 0xe6bba6, - 0xe6bba7, - 0xe6bba8, - 0xe6bba9, - 0xe6bbaa, - 0xe6bbab, - 0xe6bbac, - 0xe6bbad, - 0xe6bbae, - 0xe6bbaf, - 0xe6bbb0, - 0xe6bbb1, - 0xe6bbb2, - 0xe6bbb3, - 0xe6bbb4, - 0xe6bbb5, - 0xe6bbb6, - 0xe6bbb7, - 0xe6bbb8, - 0xe6bbb9, - 0xe6bbba, - 0xe6bbbb, - 0xe6bbbc, - 0xe6bbbd, - 0xe6bbbe, - 0xe6bbbf, - 0xe6bc80, - 0xe6bc81, - 0xe6bc82, - 0xe6bc83, - 0xe6bc84, - 0xe6bc85, - 0xe6bc86, - 0xe6bc87, - 0xe6bc88, - 0xe6bc89, - 0xe6bc8a, - 0xe6bc8b, - 0xe6bc8c, - 0xe6bc8d, - 0xe6bc8e, - 0xe6bc8f, - 0xe6bc90, - 0xe6bc91, - 0xe6bc92, - 0xe6bc93, - 0xe6bc94, - 0xe6bc95, - 0xe6bc96, - 0xe6bc97, - 0xe6bc98, - 0xe6bc99, - 0xe6bc9a, - 0xe6bc9b, - 0xe6bc9c, - 0xe6bc9d, - 0xe6bc9e, - 0xe6bc9f, - 0xe6bca0, - 0xe6bca1, - 0xe6bca2, - 0xe6bca3, - 0xe6bca4, - 0xe6bca5, - 0xe6bca6, - 0xe6bca7, - 0xe6bca8, - 0xe6bca9, - 0xe6bcaa, - 0xe6bcab, - 0xe6bcac, - 0xe6bcad, - 0xe6bcae, - 0xe6bcaf, - 0xe6bcb0, - 0xe6bcb1, - 0xe6bcb2, - 0xe6bcb3, - 0xe6bcb4, - 0xe6bcb5, - 0xe6bcb6, - 0xe6bcb7, - 0xe6bcb8, - 0xe6bcb9, - 0xe6bcba, - 0xe6bcbb, - 0xe6bcbc, - 0xe6bcbd, - 0xe6bcbe, - 0xe6bcbf, - 0xe6bd80, - 0xe6bd81, - 0xe6bd82, - 0xe6bd83, - 0xe6bd84, - 0xe6bd85, - 0xe6bd86, - 0xe6bd87, - 0xe6bd88, - 0xe6bd89, - 0xe6bd8a, - 0xe6bd8b, - 0xe6bd8c, - 0xe6bd8d, - 0xe6bd8e, - 0xe6bd8f, - 0xe6bd90, - 0xe6bd91, - 0xe6bd92, - 0xe6bd93, - 0xe6bd94, - 0xe6bd95, - 0xe6bd96, - 0xe6bd97, - 0xe6bd98, - 0xe6bd99, - 0xe6bd9a, - 0xe6bd9b, - 0xe6bd9c, - 0xe6bd9d, - 0xe6bd9e, - 0xe6bd9f, - 0xe6bda0, - 0xe6bda1, - 0xe6bda2, - 0xe6bda3, - 0xe6bda4, - 0xe6bda5, - 0xe6bda6, - 0xe6bda7, - 0xe6bda8, - 0xe6bda9, - 0xe6bdaa, - 0xe6bdab, - 0xe6bdac, - 0xe6bdad, - 0xe6bdae, - 0xe6bdaf, - 0xe6bdb0, - 0xe6bdb1, - 0xe6bdb2, - 0xe6bdb3, - 0xe6bdb4, - 0xe6bdb5, - 0xe6bdb6, - 0xe6bdb7, - 0xe6bdb8, - 0xe6bdb9, - 0xe6bdba, - 0xe6bdbb, - 0xe6bdbc, - 0xe6bdbd, - 0xe6bdbe, - 0xe6bdbf, - 0xe6be80, - 0xe6be81, - 0xe6be82, - 0xe6be83, - 0xe6be84, - 0xe6be85, - 0xe6be86, - 0xe6be87, - 0xe6be88, - 0xe6be89, - 0xe6be8a, - 0xe6be8b, - 0xe6be8c, - 0xe6be8d, - 0xe6be8e, - 0xe6be8f, - 0xe6be90, - 0xe6be91, - 0xe6be92, - 0xe6be93, - 0xe6be94, - 0xe6be95, - 0xe6be96, - 0xe6be97, - 0xe6be98, - 0xe6be99, - 0xe6be9a, - 0xe6be9b, - 0xe6be9c, - 0xe6be9d, - 0xe6be9e, - 0xe6be9f, - 0xe6bea0, - 0xe6bea1, - 0xe6bea2, - 0xe6bea3, - 0xe6bea4, - 0xe6bea5, - 0xe6bea6, - 0xe6bea7, - 0xe6bea8, - 0xe6bea9, - 0xe6beaa, - 0xe6beab, - 0xe6beac, - 0xe6bead, - 0xe6beae, - 0xe6beaf, - 0xe6beb0, - 0xe6beb1, - 0xe6beb2, - 0xe6beb3, - 0xe6beb4, - 0xe6beb5, - 0xe6beb6, - 0xe6beb7, - 0xe6beb8, - 0xe6beb9, - 0xe6beba, - 0xe6bebb, - 0xe6bebc, - 0xe6bebd, - 0xe6bebe, - 0xe6bebf, - 0xe6bf80, - 0xe6bf81, - 0xe6bf82, - 0xe6bf83, - 0xe6bf84, - 0xe6bf85, - 0xe6bf86, - 0xe6bf87, - 0xe6bf88, - 0xe6bf89, - 0xe6bf8a, - 0xe6bf8b, - 0xe6bf8c, - 0xe6bf8d, - 0xe6bf8e, - 0xe6bf8f, - 0xe6bf90, - 0xe6bf91, - 0xe6bf92, - 0xe6bf93, - 0xe6bf94, - 0xe6bf95, - 0xe6bf96, - 0xe6bf97, - 0xe6bf98, - 0xe6bf99, - 0xe6bf9a, - 0xe6bf9b, - 0xe6bf9c, - 0xe6bf9d, - 0xe6bf9e, - 0xe6bf9f, - 0xe6bfa0, - 0xe6bfa1, - 0xe6bfa2, - 0xe6bfa3, - 0xe6bfa4, - 0xe6bfa5, - 0xe6bfa6, - 0xe6bfa7, - 0xe6bfa8, - 0xe6bfa9, - 0xe6bfaa, - 0xe6bfab, - 0xe6bfac, - 0xe6bfad, - 0xe6bfae, - 0xe6bfaf, - 0xe6bfb0, - 0xe6bfb1, - 0xe6bfb2, - 0xe6bfb3, - 0xe6bfb4, - 0xe6bfb5, - 0xe6bfb6, - 0xe6bfb7, - 0xe6bfb8, - 0xe6bfb9, - 0xe6bfba, - 0xe6bfbb, - 0xe6bfbc, - 0xe6bfbd, - 0xe6bfbe, - 0xe6bfbf, - 0xe78080, - 0xe78081, - 0xe78082, - 0xe78083, - 0xe78084, - 0xe78085, - 0xe78086, - 0xe78087, - 0xe78088, - 0xe78089, - 0xe7808a, - 0xe7808b, - 0xe7808c, - 0xe7808d, - 0xe7808e, - 0xe7808f, - 0xe78090, - 0xe78091, - 0xe78092, - 0xe78093, - 0xe78094, - 0xe78095, - 0xe78096, - 0xe78097, - 0xe78098, - 0xe78099, - 0xe7809a, - 0xe7809b, - 0xe7809c, - 0xe7809d, - 0xe7809e, - 0xe7809f, - 0xe780a0, - 0xe780a1, - 0xe780a2, - 0xe780a3, - 0xe780a4, - 0xe780a5, - 0xe780a6, - 0xe780a7, - 0xe780a8, - 0xe780a9, - 0xe780aa, - 0xe780ab, - 0xe780ac, - 0xe780ad, - 0xe780ae, - 0xe780af, - 0xe780b0, - 0xe780b1, - 0xe780b2, - 0xe780b3, - 0xe780b4, - 0xe780b5, - 0xe780b6, - 0xe780b7, - 0xe780b8, - 0xe780b9, - 0xe780ba, - 0xe780bb, - 0xe780bc, - 0xe780bd, - 0xe780be, - 0xe780bf, - 0xe78180, - 0xe78181, - 0xe78182, - 0xe78183, - 0xe78184, - 0xe78185, - 0xe78186, - 0xe78187, - 0xe78188, - 0xe78189, - 0xe7818a, - 0xe7818b, - 0xe7818c, - 0xe7818d, - 0xe7818e, - 0xe7818f, - 0xe78190, - 0xe78191, - 0xe78192, - 0xe78193, - 0xe78194, - 0xe78195, - 0xe78196, - 0xe78197, - 0xe78198, - 0xe78199, - 0xe7819a, - 0xe7819b, - 0xe7819c, - 0xe7819d, - 0xe7819e, - 0xe7819f, - 0xe781a0, - 0xe781a1, - 0xe781a2, - 0xe781a3, - 0xe781a4, - 0xe781a5, - 0xe781a6, - 0xe781a7, - 0xe781a8, - 0xe781a9, - 0xe781aa, - 0xe781ab, - 0xe781ac, - 0xe781ad, - 0xe781ae, - 0xe781af, - 0xe781b0, - 0xe781b1, - 0xe781b2, - 0xe781b3, - 0xe781b4, - 0xe781b5, - 0xe781b6, - 0xe781b7, - 0xe781b8, - 0xe781b9, - 0xe781ba, - 0xe781bb, - 0xe781bc, - 0xe781bd, - 0xe781be, - 0xe781bf, - 0xe78280, - 0xe78281, - 0xe78282, - 0xe78283, - 0xe78284, - 0xe78285, - 0xe78286, - 0xe78287, - 0xe78288, - 0xe78289, - 0xe7828a, - 0xe7828b, - 0xe7828c, - 0xe7828d, - 0xe7828e, - 0xe7828f, - 0xe78290, - 0xe78291, - 0xe78292, - 0xe78293, - 0xe78294, - 0xe78295, - 0xe78296, - 0xe78297, - 0xe78298, - 0xe78299, - 0xe7829a, - 0xe7829b, - 0xe7829c, - 0xe7829d, - 0xe7829e, - 0xe7829f, - 0xe782a0, - 0xe782a1, - 0xe782a2, - 0xe782a3, - 0xe782a4, - 0xe782a5, - 0xe782a6, - 0xe782a7, - 0xe782a8, - 0xe782a9, - 0xe782aa, - 0xe782ab, - 0xe782ac, - 0xe782ad, - 0xe782ae, - 0xe782af, - 0xe782b0, - 0xe782b1, - 0xe782b2, - 0xe782b3, - 0xe782b4, - 0xe782b5, - 0xe782b6, - 0xe782b7, - 0xe782b8, - 0xe782b9, - 0xe782ba, - 0xe782bb, - 0xe782bc, - 0xe782bd, - 0xe782be, - 0xe782bf, - 0xe78380, - 0xe78381, - 0xe78382, - 0xe78383, - 0xe78384, - 0xe78385, - 0xe78386, - 0xe78387, - 0xe78388, - 0xe78389, - 0xe7838a, - 0xe7838b, - 0xe7838c, - 0xe7838d, - 0xe7838e, - 0xe7838f, - 0xe78390, - 0xe78391, - 0xe78392, - 0xe78393, - 0xe78394, - 0xe78395, - 0xe78396, - 0xe78397, - 0xe78398, - 0xe78399, - 0xe7839a, - 0xe7839b, - 0xe7839c, - 0xe7839d, - 0xe7839e, - 0xe7839f, - 0xe783a0, - 0xe783a1, - 0xe783a2, - 0xe783a3, - 0xe783a4, - 0xe783a5, - 0xe783a6, - 0xe783a7, - 0xe783a8, - 0xe783a9, - 0xe783aa, - 0xe783ab, - 0xe783ac, - 0xe783ad, - 0xe783ae, - 0xe783af, - 0xe783b0, - 0xe783b1, - 0xe783b2, - 0xe783b3, - 0xe783b4, - 0xe783b5, - 0xe783b6, - 0xe783b7, - 0xe783b8, - 0xe783b9, - 0xe783ba, - 0xe783bb, - 0xe783bc, - 0xe783bd, - 0xe783be, - 0xe783bf, - 0xe78480, - 0xe78481, - 0xe78482, - 0xe78483, - 0xe78484, - 0xe78485, - 0xe78486, - 0xe78487, - 0xe78488, - 0xe78489, - 0xe7848a, - 0xe7848b, - 0xe7848c, - 0xe7848d, - 0xe7848e, - 0xe7848f, - 0xe78490, - 0xe78491, - 0xe78492, - 0xe78493, - 0xe78494, - 0xe78495, - 0xe78496, - 0xe78497, - 0xe78498, - 0xe78499, - 0xe7849a, - 0xe7849b, - 0xe7849c, - 0xe7849d, - 0xe7849e, - 0xe7849f, - 0xe784a0, - 0xe784a1, - 0xe784a2, - 0xe784a3, - 0xe784a4, - 0xe784a5, - 0xe784a6, - 0xe784a7, - 0xe784a8, - 0xe784a9, - 0xe784aa, - 0xe784ab, - 0xe784ac, - 0xe784ad, - 0xe784ae, - 0xe784af, - 0xe784b0, - 0xe784b1, - 0xe784b2, - 0xe784b3, - 0xe784b4, - 0xe784b5, - 0xe784b6, - 0xe784b7, - 0xe784b8, - 0xe784b9, - 0xe784ba, - 0xe784bb, - 0xe784bc, - 0xe784bd, - 0xe784be, - 0xe784bf, - 0xe78580, - 0xe78581, - 0xe78582, - 0xe78583, - 0xe78584, - 0xe78585, - 0xe78586, - 0xe78587, - 0xe78588, - 0xe78589, - 0xe7858a, - 0xe7858b, - 0xe7858c, - 0xe7858d, - 0xe7858e, - 0xe7858f, - 0xe78590, - 0xe78591, - 0xe78592, - 0xe78593, - 0xe78594, - 0xe78595, - 0xe78596, - 0xe78597, - 0xe78598, - 0xe78599, - 0xe7859a, - 0xe7859b, - 0xe7859c, - 0xe7859d, - 0xe7859e, - 0xe7859f, - 0xe785a0, - 0xe785a1, - 0xe785a2, - 0xe785a3, - 0xe785a4, - 0xe785a5, - 0xe785a6, - 0xe785a7, - 0xe785a8, - 0xe785a9, - 0xe785aa, - 0xe785ab, - 0xe785ac, - 0xe785ad, - 0xe785ae, - 0xe785af, - 0xe785b0, - 0xe785b1, - 0xe785b2, - 0xe785b3, - 0xe785b4, - 0xe785b5, - 0xe785b6, - 0xe785b7, - 0xe785b8, - 0xe785b9, - 0xe785ba, - 0xe785bb, - 0xe785bc, - 0xe785bd, - 0xe785be, - 0xe785bf, - 0xe78680, - 0xe78681, - 0xe78682, - 0xe78683, - 0xe78684, - 0xe78685, - 0xe78686, - 0xe78687, - 0xe78688, - 0xe78689, - 0xe7868a, - 0xe7868b, - 0xe7868c, - 0xe7868d, - 0xe7868e, - 0xe7868f, - 0xe78690, - 0xe78691, - 0xe78692, - 0xe78693, - 0xe78694, - 0xe78695, - 0xe78696, - 0xe78697, - 0xe78698, - 0xe78699, - 0xe7869a, - 0xe7869b, - 0xe7869c, - 0xe7869d, - 0xe7869e, - 0xe7869f, - 0xe786a0, - 0xe786a1, - 0xe786a2, - 0xe786a3, - 0xe786a4, - 0xe786a5, - 0xe786a6, - 0xe786a7, - 0xe786a8, - 0xe786a9, - 0xe786aa, - 0xe786ab, - 0xe786ac, - 0xe786ad, - 0xe786ae, - 0xe786af, - 0xe786b0, - 0xe786b1, - 0xe786b2, - 0xe786b3, - 0xe786b4, - 0xe786b5, - 0xe786b6, - 0xe786b7, - 0xe786b8, - 0xe786b9, - 0xe786ba, - 0xe786bb, - 0xe786bc, - 0xe786bd, - 0xe786be, - 0xe786bf, - 0xe78780, - 0xe78781, - 0xe78782, - 0xe78783, - 0xe78784, - 0xe78785, - 0xe78786, - 0xe78787, - 0xe78788, - 0xe78789, - 0xe7878a, - 0xe7878b, - 0xe7878c, - 0xe7878d, - 0xe7878e, - 0xe7878f, - 0xe78790, - 0xe78791, - 0xe78792, - 0xe78793, - 0xe78794, - 0xe78795, - 0xe78796, - 0xe78797, - 0xe78798, - 0xe78799, - 0xe7879a, - 0xe7879b, - 0xe7879c, - 0xe7879d, - 0xe7879e, - 0xe7879f, - 0xe787a0, - 0xe787a1, - 0xe787a2, - 0xe787a3, - 0xe787a4, - 0xe787a5, - 0xe787a6, - 0xe787a7, - 0xe787a8, - 0xe787a9, - 0xe787aa, - 0xe787ab, - 0xe787ac, - 0xe787ad, - 0xe787ae, - 0xe787af, - 0xe787b0, - 0xe787b1, - 0xe787b2, - 0xe787b3, - 0xe787b4, - 0xe787b5, - 0xe787b6, - 0xe787b7, - 0xe787b8, - 0xe787b9, - 0xe787ba, - 0xe787bb, - 0xe787bc, - 0xe787bd, - 0xe787be, - 0xe787bf, - 0xe78880, - 0xe78881, - 0xe78882, - 0xe78883, - 0xe78884, - 0xe78885, - 0xe78886, - 0xe78887, - 0xe78888, - 0xe78889, - 0xe7888a, - 0xe7888b, - 0xe7888c, - 0xe7888d, - 0xe7888e, - 0xe7888f, - 0xe78890, - 0xe78891, - 0xe78892, - 0xe78893, - 0xe78894, - 0xe78895, - 0xe78896, - 0xe78897, - 0xe78898, - 0xe78899, - 0xe7889a, - 0xe7889b, - 0xe7889c, - 0xe7889d, - 0xe7889e, - 0xe7889f, - 0xe788a0, - 0xe788a1, - 0xe788a2, - 0xe788a3, - 0xe788a4, - 0xe788a5, - 0xe788a6, - 0xe788a7, - 0xe788a8, - 0xe788a9, - 0xe788aa, - 0xe788ab, - 0xe788ac, - 0xe788ad, - 0xe788ae, - 0xe788af, - 0xe788b0, - 0xe788b1, - 0xe788b2, - 0xe788b3, - 0xe788b4, - 0xe788b5, - 0xe788b6, - 0xe788b7, - 0xe788b8, - 0xe788b9, - 0xe788ba, - 0xe788bb, - 0xe788bc, - 0xe788bd, - 0xe788be, - 0xe788bf, - 0xe78980, - 0xe78981, - 0xe78982, - 0xe78983, - 0xe78984, - 0xe78985, - 0xe78986, - 0xe78987, - 0xe78988, - 0xe78989, - 0xe7898a, - 0xe7898b, - 0xe7898c, - 0xe7898d, - 0xe7898e, - 0xe7898f, - 0xe78990, - 0xe78991, - 0xe78992, - 0xe78993, - 0xe78994, - 0xe78995, - 0xe78996, - 0xe78997, - 0xe78998, - 0xe78999, - 0xe7899a, - 0xe7899b, - 0xe7899c, - 0xe7899d, - 0xe7899e, - 0xe7899f, - 0xe789a0, - 0xe789a1, - 0xe789a2, - 0xe789a3, - 0xe789a4, - 0xe789a5, - 0xe789a6, - 0xe789a7, - 0xe789a8, - 0xe789a9, - 0xe789aa, - 0xe789ab, - 0xe789ac, - 0xe789ad, - 0xe789ae, - 0xe789af, - 0xe789b0, - 0xe789b1, - 0xe789b2, - 0xe789b3, - 0xe789b4, - 0xe789b5, - 0xe789b6, - 0xe789b7, - 0xe789b8, - 0xe789b9, - 0xe789ba, - 0xe789bb, - 0xe789bc, - 0xe789bd, - 0xe789be, - 0xe789bf, - 0xe78a80, - 0xe78a81, - 0xe78a82, - 0xe78a83, - 0xe78a84, - 0xe78a85, - 0xe78a86, - 0xe78a87, - 0xe78a88, - 0xe78a89, - 0xe78a8a, - 0xe78a8b, - 0xe78a8c, - 0xe78a8d, - 0xe78a8e, - 0xe78a8f, - 0xe78a90, - 0xe78a91, - 0xe78a92, - 0xe78a93, - 0xe78a94, - 0xe78a95, - 0xe78a96, - 0xe78a97, - 0xe78a98, - 0xe78a99, - 0xe78a9a, - 0xe78a9b, - 0xe78a9c, - 0xe78a9d, - 0xe78a9e, - 0xe78a9f, - 0xe78aa0, - 0xe78aa1, - 0xe78aa2, - 0xe78aa3, - 0xe78aa4, - 0xe78aa5, - 0xe78aa6, - 0xe78aa7, - 0xe78aa8, - 0xe78aa9, - 0xe78aaa, - 0xe78aab, - 0xe78aac, - 0xe78aad, - 0xe78aae, - 0xe78aaf, - 0xe78ab0, - 0xe78ab1, - 0xe78ab2, - 0xe78ab3, - 0xe78ab4, - 0xe78ab5, - 0xe78ab6, - 0xe78ab7, - 0xe78ab8, - 0xe78ab9, - 0xe78aba, - 0xe78abb, - 0xe78abc, - 0xe78abd, - 0xe78abe, - 0xe78abf, - 0xe78b80, - 0xe78b81, - 0xe78b82, - 0xe78b83, - 0xe78b84, - 0xe78b85, - 0xe78b86, - 0xe78b87, - 0xe78b88, - 0xe78b89, - 0xe78b8a, - 0xe78b8b, - 0xe78b8c, - 0xe78b8d, - 0xe78b8e, - 0xe78b8f, - 0xe78b90, - 0xe78b91, - 0xe78b92, - 0xe78b93, - 0xe78b94, - 0xe78b95, - 0xe78b96, - 0xe78b97, - 0xe78b98, - 0xe78b99, - 0xe78b9a, - 0xe78b9b, - 0xe78b9c, - 0xe78b9d, - 0xe78b9e, - 0xe78b9f, - 0xe78ba0, - 0xe78ba1, - 0xe78ba2, - 0xe78ba3, - 0xe78ba4, - 0xe78ba5, - 0xe78ba6, - 0xe78ba7, - 0xe78ba8, - 0xe78ba9, - 0xe78baa, - 0xe78bab, - 0xe78bac, - 0xe78bad, - 0xe78bae, - 0xe78baf, - 0xe78bb0, - 0xe78bb1, - 0xe78bb2, - 0xe78bb3, - 0xe78bb4, - 0xe78bb5, - 0xe78bb6, - 0xe78bb7, - 0xe78bb8, - 0xe78bb9, - 0xe78bba, - 0xe78bbb, - 0xe78bbc, - 0xe78bbd, - 0xe78bbe, - 0xe78bbf, - 0xe78c80, - 0xe78c81, - 0xe78c82, - 0xe78c83, - 0xe78c84, - 0xe78c85, - 0xe78c86, - 0xe78c87, - 0xe78c88, - 0xe78c89, - 0xe78c8a, - 0xe78c8b, - 0xe78c8c, - 0xe78c8d, - 0xe78c8e, - 0xe78c8f, - 0xe78c90, - 0xe78c91, - 0xe78c92, - 0xe78c93, - 0xe78c94, - 0xe78c95, - 0xe78c96, - 0xe78c97, - 0xe78c98, - 0xe78c99, - 0xe78c9a, - 0xe78c9b, - 0xe78c9c, - 0xe78c9d, - 0xe78c9e, - 0xe78c9f, - 0xe78ca0, - 0xe78ca1, - 0xe78ca2, - 0xe78ca3, - 0xe78ca4, - 0xe78ca5, - 0xe78ca6, - 0xe78ca7, - 0xe78ca8, - 0xe78ca9, - 0xe78caa, - 0xe78cab, - 0xe78cac, - 0xe78cad, - 0xe78cae, - 0xe78caf, - 0xe78cb0, - 0xe78cb1, - 0xe78cb2, - 0xe78cb3, - 0xe78cb4, - 0xe78cb5, - 0xe78cb6, - 0xe78cb7, - 0xe78cb8, - 0xe78cb9, - 0xe78cba, - 0xe78cbb, - 0xe78cbc, - 0xe78cbd, - 0xe78cbe, - 0xe78cbf, - 0xe78d80, - 0xe78d81, - 0xe78d82, - 0xe78d83, - 0xe78d84, - 0xe78d85, - 0xe78d86, - 0xe78d87, - 0xe78d88, - 0xe78d89, - 0xe78d8a, - 0xe78d8b, - 0xe78d8c, - 0xe78d8d, - 0xe78d8e, - 0xe78d8f, - 0xe78d90, - 0xe78d91, - 0xe78d92, - 0xe78d93, - 0xe78d94, - 0xe78d95, - 0xe78d96, - 0xe78d97, - 0xe78d98, - 0xe78d99, - 0xe78d9a, - 0xe78d9b, - 0xe78d9c, - 0xe78d9d, - 0xe78d9e, - 0xe78d9f, - 0xe78da0, - 0xe78da1, - 0xe78da2, - 0xe78da3, - 0xe78da4, - 0xe78da5, - 0xe78da6, - 0xe78da7, - 0xe78da8, - 0xe78da9, - 0xe78daa, - 0xe78dab, - 0xe78dac, - 0xe78dad, - 0xe78dae, - 0xe78daf, - 0xe78db0, - 0xe78db1, - 0xe78db2, - 0xe78db3, - 0xe78db4, - 0xe78db5, - 0xe78db6, - 0xe78db7, - 0xe78db8, - 0xe78db9, - 0xe78dba, - 0xe78dbb, - 0xe78dbc, - 0xe78dbd, - 0xe78dbe, - 0xe78dbf, - 0xe78e80, - 0xe78e81, - 0xe78e82, - 0xe78e83, - 0xe78e84, - 0xe78e85, - 0xe78e86, - 0xe78e87, - 0xe78e88, - 0xe78e89, - 0xe78e8a, - 0xe78e8b, - 0xe78e8c, - 0xe78e8d, - 0xe78e8e, - 0xe78e8f, - 0xe78e90, - 0xe78e91, - 0xe78e92, - 0xe78e93, - 0xe78e94, - 0xe78e95, - 0xe78e96, - 0xe78e97, - 0xe78e98, - 0xe78e99, - 0xe78e9a, - 0xe78e9b, - 0xe78e9c, - 0xe78e9d, - 0xe78e9e, - 0xe78e9f, - 0xe78ea0, - 0xe78ea1, - 0xe78ea2, - 0xe78ea3, - 0xe78ea4, - 0xe78ea5, - 0xe78ea6, - 0xe78ea7, - 0xe78ea8, - 0xe78ea9, - 0xe78eaa, - 0xe78eab, - 0xe78eac, - 0xe78ead, - 0xe78eae, - 0xe78eaf, - 0xe78eb0, - 0xe78eb1, - 0xe78eb2, - 0xe78eb3, - 0xe78eb4, - 0xe78eb5, - 0xe78eb6, - 0xe78eb7, - 0xe78eb8, - 0xe78eb9, - 0xe78eba, - 0xe78ebb, - 0xe78ebc, - 0xe78ebd, - 0xe78ebe, - 0xe78ebf, - 0xe78f80, - 0xe78f81, - 0xe78f82, - 0xe78f83, - 0xe78f84, - 0xe78f85, - 0xe78f86, - 0xe78f87, - 0xe78f88, - 0xe78f89, - 0xe78f8a, - 0xe78f8b, - 0xe78f8c, - 0xe78f8d, - 0xe78f8e, - 0xe78f8f, - 0xe78f90, - 0xe78f91, - 0xe78f92, - 0xe78f93, - 0xe78f94, - 0xe78f95, - 0xe78f96, - 0xe78f97, - 0xe78f98, - 0xe78f99, - 0xe78f9a, - 0xe78f9b, - 0xe78f9c, - 0xe78f9d, - 0xe78f9e, - 0xe78f9f, - 0xe78fa0, - 0xe78fa1, - 0xe78fa2, - 0xe78fa3, - 0xe78fa4, - 0xe78fa5, - 0xe78fa6, - 0xe78fa7, - 0xe78fa8, - 0xe78fa9, - 0xe78faa, - 0xe78fab, - 0xe78fac, - 0xe78fad, - 0xe78fae, - 0xe78faf, - 0xe78fb0, - 0xe78fb1, - 0xe78fb2, - 0xe78fb3, - 0xe78fb4, - 0xe78fb5, - 0xe78fb6, - 0xe78fb7, - 0xe78fb8, - 0xe78fb9, - 0xe78fba, - 0xe78fbb, - 0xe78fbc, - 0xe78fbd, - 0xe78fbe, - 0xe78fbf, - 0xe79080, - 0xe79081, - 0xe79082, - 0xe79083, - 0xe79084, - 0xe79085, - 0xe79086, - 0xe79087, - 0xe79088, - 0xe79089, - 0xe7908a, - 0xe7908b, - 0xe7908c, - 0xe7908d, - 0xe7908e, - 0xe7908f, - 0xe79090, - 0xe79091, - 0xe79092, - 0xe79093, - 0xe79094, - 0xe79095, - 0xe79096, - 0xe79097, - 0xe79098, - 0xe79099, - 0xe7909a, - 0xe7909b, - 0xe7909c, - 0xe7909d, - 0xe7909e, - 0xe7909f, - 0xe790a0, - 0xe790a1, - 0xe790a2, - 0xe790a3, - 0xe790a4, - 0xe790a5, - 0xe790a6, - 0xe790a7, - 0xe790a8, - 0xe790a9, - 0xe790aa, - 0xe790ab, - 0xe790ac, - 0xe790ad, - 0xe790ae, - 0xe790af, - 0xe790b0, - 0xe790b1, - 0xe790b2, - 0xe790b3, - 0xe790b4, - 0xe790b5, - 0xe790b6, - 0xe790b7, - 0xe790b8, - 0xe790b9, - 0xe790ba, - 0xe790bb, - 0xe790bc, - 0xe790bd, - 0xe790be, - 0xe790bf, - 0xe79180, - 0xe79181, - 0xe79182, - 0xe79183, - 0xe79184, - 0xe79185, - 0xe79186, - 0xe79187, - 0xe79188, - 0xe79189, - 0xe7918a, - 0xe7918b, - 0xe7918c, - 0xe7918d, - 0xe7918e, - 0xe7918f, - 0xe79190, - 0xe79191, - 0xe79192, - 0xe79193, - 0xe79194, - 0xe79195, - 0xe79196, - 0xe79197, - 0xe79198, - 0xe79199, - 0xe7919a, - 0xe7919b, - 0xe7919c, - 0xe7919d, - 0xe7919e, - 0xe7919f, - 0xe791a0, - 0xe791a1, - 0xe791a2, - 0xe791a3, - 0xe791a4, - 0xe791a5, - 0xe791a6, - 0xe791a7, - 0xe791a8, - 0xe791a9, - 0xe791aa, - 0xe791ab, - 0xe791ac, - 0xe791ad, - 0xe791ae, - 0xe791af, - 0xe791b0, - 0xe791b1, - 0xe791b2, - 0xe791b3, - 0xe791b4, - 0xe791b5, - 0xe791b6, - 0xe791b7, - 0xe791b8, - 0xe791b9, - 0xe791ba, - 0xe791bb, - 0xe791bc, - 0xe791bd, - 0xe791be, - 0xe791bf, - 0xe79280, - 0xe79281, - 0xe79282, - 0xe79283, - 0xe79284, - 0xe79285, - 0xe79286, - 0xe79287, - 0xe79288, - 0xe79289, - 0xe7928a, - 0xe7928b, - 0xe7928c, - 0xe7928d, - 0xe7928e, - 0xe7928f, - 0xe79290, - 0xe79291, - 0xe79292, - 0xe79293, - 0xe79294, - 0xe79295, - 0xe79296, - 0xe79297, - 0xe79298, - 0xe79299, - 0xe7929a, - 0xe7929b, - 0xe7929c, - 0xe7929d, - 0xe7929e, - 0xe7929f, - 0xe792a0, - 0xe792a1, - 0xe792a2, - 0xe792a3, - 0xe792a4, - 0xe792a5, - 0xe792a6, - 0xe792a7, - 0xe792a8, - 0xe792a9, - 0xe792aa, - 0xe792ab, - 0xe792ac, - 0xe792ad, - 0xe792ae, - 0xe792af, - 0xe792b0, - 0xe792b1, - 0xe792b2, - 0xe792b3, - 0xe792b4, - 0xe792b5, - 0xe792b6, - 0xe792b7, - 0xe792b8, - 0xe792b9, - 0xe792ba, - 0xe792bb, - 0xe792bc, - 0xe792bd, - 0xe792be, - 0xe792bf, - 0xe79380, - 0xe79381, - 0xe79382, - 0xe79383, - 0xe79384, - 0xe79385, - 0xe79386, - 0xe79387, - 0xe79388, - 0xe79389, - 0xe7938a, - 0xe7938b, - 0xe7938c, - 0xe7938d, - 0xe7938e, - 0xe7938f, - 0xe79390, - 0xe79391, - 0xe79392, - 0xe79393, - 0xe79394, - 0xe79395, - 0xe79396, - 0xe79397, - 0xe79398, - 0xe79399, - 0xe7939a, - 0xe7939b, - 0xe7939c, - 0xe7939d, - 0xe7939e, - 0xe7939f, - 0xe793a0, - 0xe793a1, - 0xe793a2, - 0xe793a3, - 0xe793a4, - 0xe793a5, - 0xe793a6, - 0xe793a7, - 0xe793a8, - 0xe793a9, - 0xe793aa, - 0xe793ab, - 0xe793ac, - 0xe793ad, - 0xe793ae, - 0xe793af, - 0xe793b0, - 0xe793b1, - 0xe793b2, - 0xe793b3, - 0xe793b4, - 0xe793b5, - 0xe793b6, - 0xe793b7, - 0xe793b8, - 0xe793b9, - 0xe793ba, - 0xe793bb, - 0xe793bc, - 0xe793bd, - 0xe793be, - 0xe793bf, - 0xe79480, - 0xe79481, - 0xe79482, - 0xe79483, - 0xe79484, - 0xe79485, - 0xe79486, - 0xe79487, - 0xe79488, - 0xe79489, - 0xe7948a, - 0xe7948b, - 0xe7948c, - 0xe7948d, - 0xe7948e, - 0xe7948f, - 0xe79490, - 0xe79491, - 0xe79492, - 0xe79493, - 0xe79494, - 0xe79495, - 0xe79496, - 0xe79497, - 0xe79498, - 0xe79499, - 0xe7949a, - 0xe7949b, - 0xe7949c, - 0xe7949d, - 0xe7949e, - 0xe7949f, - 0xe794a0, - 0xe794a1, - 0xe794a2, - 0xe794a3, - 0xe794a4, - 0xe794a5, - 0xe794a6, - 0xe794a7, - 0xe794a8, - 0xe794a9, - 0xe794aa, - 0xe794ab, - 0xe794ac, - 0xe794ad, - 0xe794ae, - 0xe794af, - 0xe794b0, - 0xe794b1, - 0xe794b2, - 0xe794b3, - 0xe794b4, - 0xe794b5, - 0xe794b6, - 0xe794b7, - 0xe794b8, - 0xe794b9, - 0xe794ba, - 0xe794bb, - 0xe794bc, - 0xe794bd, - 0xe794be, - 0xe794bf, - 0xe79580, - 0xe79581, - 0xe79582, - 0xe79583, - 0xe79584, - 0xe79585, - 0xe79586, - 0xe79587, - 0xe79588, - 0xe79589, - 0xe7958a, - 0xe7958b, - 0xe7958c, - 0xe7958d, - 0xe7958e, - 0xe7958f, - 0xe79590, - 0xe79591, - 0xe79592, - 0xe79593, - 0xe79594, - 0xe79595, - 0xe79596, - 0xe79597, - 0xe79598, - 0xe79599, - 0xe7959a, - 0xe7959b, - 0xe7959c, - 0xe7959d, - 0xe7959e, - 0xe7959f, - 0xe795a0, - 0xe795a1, - 0xe795a2, - 0xe795a3, - 0xe795a4, - 0xe795a5, - 0xe795a6, - 0xe795a7, - 0xe795a8, - 0xe795a9, - 0xe795aa, - 0xe795ab, - 0xe795ac, - 0xe795ad, - 0xe795ae, - 0xe795af, - 0xe795b0, - 0xe795b1, - 0xe795b2, - 0xe795b3, - 0xe795b4, - 0xe795b5, - 0xe795b6, - 0xe795b7, - 0xe795b8, - 0xe795b9, - 0xe795ba, - 0xe795bb, - 0xe795bc, - 0xe795bd, - 0xe795be, - 0xe795bf, - 0xe79680, - 0xe79681, - 0xe79682, - 0xe79683, - 0xe79684, - 0xe79685, - 0xe79686, - 0xe79687, - 0xe79688, - 0xe79689, - 0xe7968a, - 0xe7968b, - 0xe7968c, - 0xe7968d, - 0xe7968e, - 0xe7968f, - 0xe79690, - 0xe79691, - 0xe79692, - 0xe79693, - 0xe79694, - 0xe79695, - 0xe79696, - 0xe79697, - 0xe79698, - 0xe79699, - 0xe7969a, - 0xe7969b, - 0xe7969c, - 0xe7969d, - 0xe7969e, - 0xe7969f, - 0xe796a0, - 0xe796a1, - 0xe796a2, - 0xe796a3, - 0xe796a4, - 0xe796a5, - 0xe796a6, - 0xe796a7, - 0xe796a8, - 0xe796a9, - 0xe796aa, - 0xe796ab, - 0xe796ac, - 0xe796ad, - 0xe796ae, - 0xe796af, - 0xe796b0, - 0xe796b1, - 0xe796b2, - 0xe796b3, - 0xe796b4, - 0xe796b5, - 0xe796b6, - 0xe796b7, - 0xe796b8, - 0xe796b9, - 0xe796ba, - 0xe796bb, - 0xe796bc, - 0xe796bd, - 0xe796be, - 0xe796bf, - 0xe79780, - 0xe79781, - 0xe79782, - 0xe79783, - 0xe79784, - 0xe79785, - 0xe79786, - 0xe79787, - 0xe79788, - 0xe79789, - 0xe7978a, - 0xe7978b, - 0xe7978c, - 0xe7978d, - 0xe7978e, - 0xe7978f, - 0xe79790, - 0xe79791, - 0xe79792, - 0xe79793, - 0xe79794, - 0xe79795, - 0xe79796, - 0xe79797, - 0xe79798, - 0xe79799, - 0xe7979a, - 0xe7979b, - 0xe7979c, - 0xe7979d, - 0xe7979e, - 0xe7979f, - 0xe797a0, - 0xe797a1, - 0xe797a2, - 0xe797a3, - 0xe797a4, - 0xe797a5, - 0xe797a6, - 0xe797a7, - 0xe797a8, - 0xe797a9, - 0xe797aa, - 0xe797ab, - 0xe797ac, - 0xe797ad, - 0xe797ae, - 0xe797af, - 0xe797b0, - 0xe797b1, - 0xe797b2, - 0xe797b3, - 0xe797b4, - 0xe797b5, - 0xe797b6, - 0xe797b7, - 0xe797b8, - 0xe797b9, - 0xe797ba, - 0xe797bb, - 0xe797bc, - 0xe797bd, - 0xe797be, - 0xe797bf, - 0xe79880, - 0xe79881, - 0xe79882, - 0xe79883, - 0xe79884, - 0xe79885, - 0xe79886, - 0xe79887, - 0xe79888, - 0xe79889, - 0xe7988a, - 0xe7988b, - 0xe7988c, - 0xe7988d, - 0xe7988e, - 0xe7988f, - 0xe79890, - 0xe79891, - 0xe79892, - 0xe79893, - 0xe79894, - 0xe79895, - 0xe79896, - 0xe79897, - 0xe79898, - 0xe79899, - 0xe7989a, - 0xe7989b, - 0xe7989c, - 0xe7989d, - 0xe7989e, - 0xe7989f, - 0xe798a0, - 0xe798a1, - 0xe798a2, - 0xe798a3, - 0xe798a4, - 0xe798a5, - 0xe798a6, - 0xe798a7, - 0xe798a8, - 0xe798a9, - 0xe798aa, - 0xe798ab, - 0xe798ac, - 0xe798ad, - 0xe798ae, - 0xe798af, - 0xe798b0, - 0xe798b1, - 0xe798b2, - 0xe798b3, - 0xe798b4, - 0xe798b5, - 0xe798b6, - 0xe798b7, - 0xe798b8, - 0xe798b9, - 0xe798ba, - 0xe798bb, - 0xe798bc, - 0xe798bd, - 0xe798be, - 0xe798bf, - 0xe79980, - 0xe79981, - 0xe79982, - 0xe79983, - 0xe79984, - 0xe79985, - 0xe79986, - 0xe79987, - 0xe79988, - 0xe79989, - 0xe7998a, - 0xe7998b, - 0xe7998c, - 0xe7998d, - 0xe7998e, - 0xe7998f, - 0xe79990, - 0xe79991, - 0xe79992, - 0xe79993, - 0xe79994, - 0xe79995, - 0xe79996, - 0xe79997, - 0xe79998, - 0xe79999, - 0xe7999a, - 0xe7999b, - 0xe7999c, - 0xe7999d, - 0xe7999e, - 0xe7999f, - 0xe799a0, - 0xe799a1, - 0xe799a2, - 0xe799a3, - 0xe799a4, - 0xe799a5, - 0xe799a6, - 0xe799a7, - 0xe799a8, - 0xe799a9, - 0xe799aa, - 0xe799ab, - 0xe799ac, - 0xe799ad, - 0xe799ae, - 0xe799af, - 0xe799b0, - 0xe799b1, - 0xe799b2, - 0xe799b3, - 0xe799b4, - 0xe799b5, - 0xe799b6, - 0xe799b7, - 0xe799b8, - 0xe799b9, - 0xe799ba, - 0xe799bb, - 0xe799bc, - 0xe799bd, - 0xe799be, - 0xe799bf, - 0xe79a80, - 0xe79a81, - 0xe79a82, - 0xe79a83, - 0xe79a84, - 0xe79a85, - 0xe79a86, - 0xe79a87, - 0xe79a88, - 0xe79a89, - 0xe79a8a, - 0xe79a8b, - 0xe79a8c, - 0xe79a8d, - 0xe79a8e, - 0xe79a8f, - 0xe79a90, - 0xe79a91, - 0xe79a92, - 0xe79a93, - 0xe79a94, - 0xe79a95, - 0xe79a96, - 0xe79a97, - 0xe79a98, - 0xe79a99, - 0xe79a9a, - 0xe79a9b, - 0xe79a9c, - 0xe79a9d, - 0xe79a9e, - 0xe79a9f, - 0xe79aa0, - 0xe79aa1, - 0xe79aa2, - 0xe79aa3, - 0xe79aa4, - 0xe79aa5, - 0xe79aa6, - 0xe79aa7, - 0xe79aa8, - 0xe79aa9, - 0xe79aaa, - 0xe79aab, - 0xe79aac, - 0xe79aad, - 0xe79aae, - 0xe79aaf, - 0xe79ab0, - 0xe79ab1, - 0xe79ab2, - 0xe79ab3, - 0xe79ab4, - 0xe79ab5, - 0xe79ab6, - 0xe79ab7, - 0xe79ab8, - 0xe79ab9, - 0xe79aba, - 0xe79abb, - 0xe79abc, - 0xe79abd, - 0xe79abe, - 0xe79abf, - 0xe79b80, - 0xe79b81, - 0xe79b82, - 0xe79b83, - 0xe79b84, - 0xe79b85, - 0xe79b86, - 0xe79b87, - 0xe79b88, - 0xe79b89, - 0xe79b8a, - 0xe79b8b, - 0xe79b8c, - 0xe79b8d, - 0xe79b8e, - 0xe79b8f, - 0xe79b90, - 0xe79b91, - 0xe79b92, - 0xe79b93, - 0xe79b94, - 0xe79b95, - 0xe79b96, - 0xe79b97, - 0xe79b98, - 0xe79b99, - 0xe79b9a, - 0xe79b9b, - 0xe79b9c, - 0xe79b9d, - 0xe79b9e, - 0xe79b9f, - 0xe79ba0, - 0xe79ba1, - 0xe79ba2, - 0xe79ba3, - 0xe79ba4, - 0xe79ba5, - 0xe79ba6, - 0xe79ba7, - 0xe79ba8, - 0xe79ba9, - 0xe79baa, - 0xe79bab, - 0xe79bac, - 0xe79bad, - 0xe79bae, - 0xe79baf, - 0xe79bb0, - 0xe79bb1, - 0xe79bb2, - 0xe79bb3, - 0xe79bb4, - 0xe79bb5, - 0xe79bb6, - 0xe79bb7, - 0xe79bb8, - 0xe79bb9, - 0xe79bba, - 0xe79bbb, - 0xe79bbc, - 0xe79bbd, - 0xe79bbe, - 0xe79bbf, - 0xe79c80, - 0xe79c81, - 0xe79c82, - 0xe79c83, - 0xe79c84, - 0xe79c85, - 0xe79c86, - 0xe79c87, - 0xe79c88, - 0xe79c89, - 0xe79c8a, - 0xe79c8b, - 0xe79c8c, - 0xe79c8d, - 0xe79c8e, - 0xe79c8f, - 0xe79c90, - 0xe79c91, - 0xe79c92, - 0xe79c93, - 0xe79c94, - 0xe79c95, - 0xe79c96, - 0xe79c97, - 0xe79c98, - 0xe79c99, - 0xe79c9a, - 0xe79c9b, - 0xe79c9c, - 0xe79c9d, - 0xe79c9e, - 0xe79c9f, - 0xe79ca0, - 0xe79ca1, - 0xe79ca2, - 0xe79ca3, - 0xe79ca4, - 0xe79ca5, - 0xe79ca6, - 0xe79ca7, - 0xe79ca8, - 0xe79ca9, - 0xe79caa, - 0xe79cab, - 0xe79cac, - 0xe79cad, - 0xe79cae, - 0xe79caf, - 0xe79cb0, - 0xe79cb1, - 0xe79cb2, - 0xe79cb3, - 0xe79cb4, - 0xe79cb5, - 0xe79cb6, - 0xe79cb7, - 0xe79cb8, - 0xe79cb9, - 0xe79cba, - 0xe79cbb, - 0xe79cbc, - 0xe79cbd, - 0xe79cbe, - 0xe79cbf, - 0xe79d80, - 0xe79d81, - 0xe79d82, - 0xe79d83, - 0xe79d84, - 0xe79d85, - 0xe79d86, - 0xe79d87, - 0xe79d88, - 0xe79d89, - 0xe79d8a, - 0xe79d8b, - 0xe79d8c, - 0xe79d8d, - 0xe79d8e, - 0xe79d8f, - 0xe79d90, - 0xe79d91, - 0xe79d92, - 0xe79d93, - 0xe79d94, - 0xe79d95, - 0xe79d96, - 0xe79d97, - 0xe79d98, - 0xe79d99, - 0xe79d9a, - 0xe79d9b, - 0xe79d9c, - 0xe79d9d, - 0xe79d9e, - 0xe79d9f, - 0xe79da0, - 0xe79da1, - 0xe79da2, - 0xe79da3, - 0xe79da4, - 0xe79da5, - 0xe79da6, - 0xe79da7, - 0xe79da8, - 0xe79da9, - 0xe79daa, - 0xe79dab, - 0xe79dac, - 0xe79dad, - 0xe79dae, - 0xe79daf, - 0xe79db0, - 0xe79db1, - 0xe79db2, - 0xe79db3, - 0xe79db4, - 0xe79db5, - 0xe79db6, - 0xe79db7, - 0xe79db8, - 0xe79db9, - 0xe79dba, - 0xe79dbb, - 0xe79dbc, - 0xe79dbd, - 0xe79dbe, - 0xe79dbf, - 0xe79e80, - 0xe79e81, - 0xe79e82, - 0xe79e83, - 0xe79e84, - 0xe79e85, - 0xe79e86, - 0xe79e87, - 0xe79e88, - 0xe79e89, - 0xe79e8a, - 0xe79e8b, - 0xe79e8c, - 0xe79e8d, - 0xe79e8e, - 0xe79e8f, - 0xe79e90, - 0xe79e91, - 0xe79e92, - 0xe79e93, - 0xe79e94, - 0xe79e95, - 0xe79e96, - 0xe79e97, - 0xe79e98, - 0xe79e99, - 0xe79e9a, - 0xe79e9b, - 0xe79e9c, - 0xe79e9d, - 0xe79e9e, - 0xe79e9f, - 0xe79ea0, - 0xe79ea1, - 0xe79ea2, - 0xe79ea3, - 0xe79ea4, - 0xe79ea5, - 0xe79ea6, - 0xe79ea7, - 0xe79ea8, - 0xe79ea9, - 0xe79eaa, - 0xe79eab, - 0xe79eac, - 0xe79ead, - 0xe79eae, - 0xe79eaf, - 0xe79eb0, - 0xe79eb1, - 0xe79eb2, - 0xe79eb3, - 0xe79eb4, - 0xe79eb5, - 0xe79eb6, - 0xe79eb7, - 0xe79eb8, - 0xe79eb9, - 0xe79eba, - 0xe79ebb, - 0xe79ebc, - 0xe79ebd, - 0xe79ebe, - 0xe79ebf, - 0xe79f80, - 0xe79f81, - 0xe79f82, - 0xe79f83, - 0xe79f84, - 0xe79f85, - 0xe79f86, - 0xe79f87, - 0xe79f88, - 0xe79f89, - 0xe79f8a, - 0xe79f8b, - 0xe79f8c, - 0xe79f8d, - 0xe79f8e, - 0xe79f8f, - 0xe79f90, - 0xe79f91, - 0xe79f92, - 0xe79f93, - 0xe79f94, - 0xe79f95, - 0xe79f96, - 0xe79f97, - 0xe79f98, - 0xe79f99, - 0xe79f9a, - 0xe79f9b, - 0xe79f9c, - 0xe79f9d, - 0xe79f9e, - 0xe79f9f, - 0xe79fa0, - 0xe79fa1, - 0xe79fa2, - 0xe79fa3, - 0xe79fa4, - 0xe79fa5, - 0xe79fa6, - 0xe79fa7, - 0xe79fa8, - 0xe79fa9, - 0xe79faa, - 0xe79fab, - 0xe79fac, - 0xe79fad, - 0xe79fae, - 0xe79faf, - 0xe79fb0, - 0xe79fb1, - 0xe79fb2, - 0xe79fb3, - 0xe79fb4, - 0xe79fb5, - 0xe79fb6, - 0xe79fb7, - 0xe79fb8, - 0xe79fb9, - 0xe79fba, - 0xe79fbb, - 0xe79fbc, - 0xe79fbd, - 0xe79fbe, - 0xe79fbf, - 0xe7a080, - 0xe7a081, - 0xe7a082, - 0xe7a083, - 0xe7a084, - 0xe7a085, - 0xe7a086, - 0xe7a087, - 0xe7a088, - 0xe7a089, - 0xe7a08a, - 0xe7a08b, - 0xe7a08c, - 0xe7a08d, - 0xe7a08e, - 0xe7a08f, - 0xe7a090, - 0xe7a091, - 0xe7a092, - 0xe7a093, - 0xe7a094, - 0xe7a095, - 0xe7a096, - 0xe7a097, - 0xe7a098, - 0xe7a099, - 0xe7a09a, - 0xe7a09b, - 0xe7a09c, - 0xe7a09d, - 0xe7a09e, - 0xe7a09f, - 0xe7a0a0, - 0xe7a0a1, - 0xe7a0a2, - 0xe7a0a3, - 0xe7a0a4, - 0xe7a0a5, - 0xe7a0a6, - 0xe7a0a7, - 0xe7a0a8, - 0xe7a0a9, - 0xe7a0aa, - 0xe7a0ab, - 0xe7a0ac, - 0xe7a0ad, - 0xe7a0ae, - 0xe7a0af, - 0xe7a0b0, - 0xe7a0b1, - 0xe7a0b2, - 0xe7a0b3, - 0xe7a0b4, - 0xe7a0b5, - 0xe7a0b6, - 0xe7a0b7, - 0xe7a0b8, - 0xe7a0b9, - 0xe7a0ba, - 0xe7a0bb, - 0xe7a0bc, - 0xe7a0bd, - 0xe7a0be, - 0xe7a0bf, - 0xe7a180, - 0xe7a181, - 0xe7a182, - 0xe7a183, - 0xe7a184, - 0xe7a185, - 0xe7a186, - 0xe7a187, - 0xe7a188, - 0xe7a189, - 0xe7a18a, - 0xe7a18b, - 0xe7a18c, - 0xe7a18d, - 0xe7a18e, - 0xe7a18f, - 0xe7a190, - 0xe7a191, - 0xe7a192, - 0xe7a193, - 0xe7a194, - 0xe7a195, - 0xe7a196, - 0xe7a197, - 0xe7a198, - 0xe7a199, - 0xe7a19a, - 0xe7a19b, - 0xe7a19c, - 0xe7a19d, - 0xe7a19e, - 0xe7a19f, - 0xe7a1a0, - 0xe7a1a1, - 0xe7a1a2, - 0xe7a1a3, - 0xe7a1a4, - 0xe7a1a5, - 0xe7a1a6, - 0xe7a1a7, - 0xe7a1a8, - 0xe7a1a9, - 0xe7a1aa, - 0xe7a1ab, - 0xe7a1ac, - 0xe7a1ad, - 0xe7a1ae, - 0xe7a1af, - 0xe7a1b0, - 0xe7a1b1, - 0xe7a1b2, - 0xe7a1b3, - 0xe7a1b4, - 0xe7a1b5, - 0xe7a1b6, - 0xe7a1b7, - 0xe7a1b8, - 0xe7a1b9, - 0xe7a1ba, - 0xe7a1bb, - 0xe7a1bc, - 0xe7a1bd, - 0xe7a1be, - 0xe7a1bf, - 0xe7a280, - 0xe7a281, - 0xe7a282, - 0xe7a283, - 0xe7a284, - 0xe7a285, - 0xe7a286, - 0xe7a287, - 0xe7a288, - 0xe7a289, - 0xe7a28a, - 0xe7a28b, - 0xe7a28c, - 0xe7a28d, - 0xe7a28e, - 0xe7a28f, - 0xe7a290, - 0xe7a291, - 0xe7a292, - 0xe7a293, - 0xe7a294, - 0xe7a295, - 0xe7a296, - 0xe7a297, - 0xe7a298, - 0xe7a299, - 0xe7a29a, - 0xe7a29b, - 0xe7a29c, - 0xe7a29d, - 0xe7a29e, - 0xe7a29f, - 0xe7a2a0, - 0xe7a2a1, - 0xe7a2a2, - 0xe7a2a3, - 0xe7a2a4, - 0xe7a2a5, - 0xe7a2a6, - 0xe7a2a7, - 0xe7a2a8, - 0xe7a2a9, - 0xe7a2aa, - 0xe7a2ab, - 0xe7a2ac, - 0xe7a2ad, - 0xe7a2ae, - 0xe7a2af, - 0xe7a2b0, - 0xe7a2b1, - 0xe7a2b2, - 0xe7a2b3, - 0xe7a2b4, - 0xe7a2b5, - 0xe7a2b6, - 0xe7a2b7, - 0xe7a2b8, - 0xe7a2b9, - 0xe7a2ba, - 0xe7a2bb, - 0xe7a2bc, - 0xe7a2bd, - 0xe7a2be, - 0xe7a2bf, - 0xe7a380, - 0xe7a381, - 0xe7a382, - 0xe7a383, - 0xe7a384, - 0xe7a385, - 0xe7a386, - 0xe7a387, - 0xe7a388, - 0xe7a389, - 0xe7a38a, - 0xe7a38b, - 0xe7a38c, - 0xe7a38d, - 0xe7a38e, - 0xe7a38f, - 0xe7a390, - 0xe7a391, - 0xe7a392, - 0xe7a393, - 0xe7a394, - 0xe7a395, - 0xe7a396, - 0xe7a397, - 0xe7a398, - 0xe7a399, - 0xe7a39a, - 0xe7a39b, - 0xe7a39c, - 0xe7a39d, - 0xe7a39e, - 0xe7a39f, - 0xe7a3a0, - 0xe7a3a1, - 0xe7a3a2, - 0xe7a3a3, - 0xe7a3a4, - 0xe7a3a5, - 0xe7a3a6, - 0xe7a3a7, - 0xe7a3a8, - 0xe7a3a9, - 0xe7a3aa, - 0xe7a3ab, - 0xe7a3ac, - 0xe7a3ad, - 0xe7a3ae, - 0xe7a3af, - 0xe7a3b0, - 0xe7a3b1, - 0xe7a3b2, - 0xe7a3b3, - 0xe7a3b4, - 0xe7a3b5, - 0xe7a3b6, - 0xe7a3b7, - 0xe7a3b8, - 0xe7a3b9, - 0xe7a3ba, - 0xe7a3bb, - 0xe7a3bc, - 0xe7a3bd, - 0xe7a3be, - 0xe7a3bf, - 0xe7a480, - 0xe7a481, - 0xe7a482, - 0xe7a483, - 0xe7a484, - 0xe7a485, - 0xe7a486, - 0xe7a487, - 0xe7a488, - 0xe7a489, - 0xe7a48a, - 0xe7a48b, - 0xe7a48c, - 0xe7a48d, - 0xe7a48e, - 0xe7a48f, - 0xe7a490, - 0xe7a491, - 0xe7a492, - 0xe7a493, - 0xe7a494, - 0xe7a495, - 0xe7a496, - 0xe7a497, - 0xe7a498, - 0xe7a499, - 0xe7a49a, - 0xe7a49b, - 0xe7a49c, - 0xe7a49d, - 0xe7a49e, - 0xe7a49f, - 0xe7a4a0, - 0xe7a4a1, - 0xe7a4a2, - 0xe7a4a3, - 0xe7a4a4, - 0xe7a4a5, - 0xe7a4a6, - 0xe7a4a7, - 0xe7a4a8, - 0xe7a4a9, - 0xe7a4aa, - 0xe7a4ab, - 0xe7a4ac, - 0xe7a4ad, - 0xe7a4ae, - 0xe7a4af, - 0xe7a4b0, - 0xe7a4b1, - 0xe7a4b2, - 0xe7a4b3, - 0xe7a4b4, - 0xe7a4b5, - 0xe7a4b6, - 0xe7a4b7, - 0xe7a4b8, - 0xe7a4b9, - 0xe7a4ba, - 0xe7a4bb, - 0xe7a4bc, - 0xe7a4bd, - 0xe7a4be, - 0xe7a4bf, - 0xe7a580, - 0xe7a581, - 0xe7a582, - 0xe7a583, - 0xe7a584, - 0xe7a585, - 0xe7a586, - 0xe7a587, - 0xe7a588, - 0xe7a589, - 0xe7a58a, - 0xe7a58b, - 0xe7a58c, - 0xe7a58d, - 0xe7a58e, - 0xe7a58f, - 0xe7a590, - 0xe7a591, - 0xe7a592, - 0xe7a593, - 0xe7a594, - 0xe7a595, - 0xe7a596, - 0xe7a597, - 0xe7a598, - 0xe7a599, - 0xe7a59a, - 0xe7a59b, - 0xe7a59c, - 0xe7a59d, - 0xe7a59e, - 0xe7a59f, - 0xe7a5a0, - 0xe7a5a1, - 0xe7a5a2, - 0xe7a5a3, - 0xe7a5a4, - 0xe7a5a5, - 0xe7a5a6, - 0xe7a5a7, - 0xe7a5a8, - 0xe7a5a9, - 0xe7a5aa, - 0xe7a5ab, - 0xe7a5ac, - 0xe7a5ad, - 0xe7a5ae, - 0xe7a5af, - 0xe7a5b0, - 0xe7a5b1, - 0xe7a5b2, - 0xe7a5b3, - 0xe7a5b4, - 0xe7a5b5, - 0xe7a5b6, - 0xe7a5b7, - 0xe7a5b8, - 0xe7a5b9, - 0xe7a5ba, - 0xe7a5bb, - 0xe7a5bc, - 0xe7a5bd, - 0xe7a5be, - 0xe7a5bf, - 0xe7a680, - 0xe7a681, - 0xe7a682, - 0xe7a683, - 0xe7a684, - 0xe7a685, - 0xe7a686, - 0xe7a687, - 0xe7a688, - 0xe7a689, - 0xe7a68a, - 0xe7a68b, - 0xe7a68c, - 0xe7a68d, - 0xe7a68e, - 0xe7a68f, - 0xe7a690, - 0xe7a691, - 0xe7a692, - 0xe7a693, - 0xe7a694, - 0xe7a695, - 0xe7a696, - 0xe7a697, - 0xe7a698, - 0xe7a699, - 0xe7a69a, - 0xe7a69b, - 0xe7a69c, - 0xe7a69d, - 0xe7a69e, - 0xe7a69f, - 0xe7a6a0, - 0xe7a6a1, - 0xe7a6a2, - 0xe7a6a3, - 0xe7a6a4, - 0xe7a6a5, - 0xe7a6a6, - 0xe7a6a7, - 0xe7a6a8, - 0xe7a6a9, - 0xe7a6aa, - 0xe7a6ab, - 0xe7a6ac, - 0xe7a6ad, - 0xe7a6ae, - 0xe7a6af, - 0xe7a6b0, - 0xe7a6b1, - 0xe7a6b2, - 0xe7a6b3, - 0xe7a6b4, - 0xe7a6b5, - 0xe7a6b6, - 0xe7a6b7, - 0xe7a6b8, - 0xe7a6b9, - 0xe7a6ba, - 0xe7a6bb, - 0xe7a6bc, - 0xe7a6bd, - 0xe7a6be, - 0xe7a6bf, - 0xe7a780, - 0xe7a781, - 0xe7a782, - 0xe7a783, - 0xe7a784, - 0xe7a785, - 0xe7a786, - 0xe7a787, - 0xe7a788, - 0xe7a789, - 0xe7a78a, - 0xe7a78b, - 0xe7a78c, - 0xe7a78d, - 0xe7a78e, - 0xe7a78f, - 0xe7a790, - 0xe7a791, - 0xe7a792, - 0xe7a793, - 0xe7a794, - 0xe7a795, - 0xe7a796, - 0xe7a797, - 0xe7a798, - 0xe7a799, - 0xe7a79a, - 0xe7a79b, - 0xe7a79c, - 0xe7a79d, - 0xe7a79e, - 0xe7a79f, - 0xe7a7a0, - 0xe7a7a1, - 0xe7a7a2, - 0xe7a7a3, - 0xe7a7a4, - 0xe7a7a5, - 0xe7a7a6, - 0xe7a7a7, - 0xe7a7a8, - 0xe7a7a9, - 0xe7a7aa, - 0xe7a7ab, - 0xe7a7ac, - 0xe7a7ad, - 0xe7a7ae, - 0xe7a7af, - 0xe7a7b0, - 0xe7a7b1, - 0xe7a7b2, - 0xe7a7b3, - 0xe7a7b4, - 0xe7a7b5, - 0xe7a7b6, - 0xe7a7b7, - 0xe7a7b8, - 0xe7a7b9, - 0xe7a7ba, - 0xe7a7bb, - 0xe7a7bc, - 0xe7a7bd, - 0xe7a7be, - 0xe7a7bf, - 0xe7a880, - 0xe7a881, - 0xe7a882, - 0xe7a883, - 0xe7a884, - 0xe7a885, - 0xe7a886, - 0xe7a887, - 0xe7a888, - 0xe7a889, - 0xe7a88a, - 0xe7a88b, - 0xe7a88c, - 0xe7a88d, - 0xe7a88e, - 0xe7a88f, - 0xe7a890, - 0xe7a891, - 0xe7a892, - 0xe7a893, - 0xe7a894, - 0xe7a895, - 0xe7a896, - 0xe7a897, - 0xe7a898, - 0xe7a899, - 0xe7a89a, - 0xe7a89b, - 0xe7a89c, - 0xe7a89d, - 0xe7a89e, - 0xe7a89f, - 0xe7a8a0, - 0xe7a8a1, - 0xe7a8a2, - 0xe7a8a3, - 0xe7a8a4, - 0xe7a8a5, - 0xe7a8a6, - 0xe7a8a7, - 0xe7a8a8, - 0xe7a8a9, - 0xe7a8aa, - 0xe7a8ab, - 0xe7a8ac, - 0xe7a8ad, - 0xe7a8ae, - 0xe7a8af, - 0xe7a8b0, - 0xe7a8b1, - 0xe7a8b2, - 0xe7a8b3, - 0xe7a8b4, - 0xe7a8b5, - 0xe7a8b6, - 0xe7a8b7, - 0xe7a8b8, - 0xe7a8b9, - 0xe7a8ba, - 0xe7a8bb, - 0xe7a8bc, - 0xe7a8bd, - 0xe7a8be, - 0xe7a8bf, - 0xe7a980, - 0xe7a981, - 0xe7a982, - 0xe7a983, - 0xe7a984, - 0xe7a985, - 0xe7a986, - 0xe7a987, - 0xe7a988, - 0xe7a989, - 0xe7a98a, - 0xe7a98b, - 0xe7a98c, - 0xe7a98d, - 0xe7a98e, - 0xe7a98f, - 0xe7a990, - 0xe7a991, - 0xe7a992, - 0xe7a993, - 0xe7a994, - 0xe7a995, - 0xe7a996, - 0xe7a997, - 0xe7a998, - 0xe7a999, - 0xe7a99a, - 0xe7a99b, - 0xe7a99c, - 0xe7a99d, - 0xe7a99e, - 0xe7a99f, - 0xe7a9a0, - 0xe7a9a1, - 0xe7a9a2, - 0xe7a9a3, - 0xe7a9a4, - 0xe7a9a5, - 0xe7a9a6, - 0xe7a9a7, - 0xe7a9a8, - 0xe7a9a9, - 0xe7a9aa, - 0xe7a9ab, - 0xe7a9ac, - 0xe7a9ad, - 0xe7a9ae, - 0xe7a9af, - 0xe7a9b0, - 0xe7a9b1, - 0xe7a9b2, - 0xe7a9b3, - 0xe7a9b4, - 0xe7a9b5, - 0xe7a9b6, - 0xe7a9b7, - 0xe7a9b8, - 0xe7a9b9, - 0xe7a9ba, - 0xe7a9bb, - 0xe7a9bc, - 0xe7a9bd, - 0xe7a9be, - 0xe7a9bf, - 0xe7aa80, - 0xe7aa81, - 0xe7aa82, - 0xe7aa83, - 0xe7aa84, - 0xe7aa85, - 0xe7aa86, - 0xe7aa87, - 0xe7aa88, - 0xe7aa89, - 0xe7aa8a, - 0xe7aa8b, - 0xe7aa8c, - 0xe7aa8d, - 0xe7aa8e, - 0xe7aa8f, - 0xe7aa90, - 0xe7aa91, - 0xe7aa92, - 0xe7aa93, - 0xe7aa94, - 0xe7aa95, - 0xe7aa96, - 0xe7aa97, - 0xe7aa98, - 0xe7aa99, - 0xe7aa9a, - 0xe7aa9b, - 0xe7aa9c, - 0xe7aa9d, - 0xe7aa9e, - 0xe7aa9f, - 0xe7aaa0, - 0xe7aaa1, - 0xe7aaa2, - 0xe7aaa3, - 0xe7aaa4, - 0xe7aaa5, - 0xe7aaa6, - 0xe7aaa7, - 0xe7aaa8, - 0xe7aaa9, - 0xe7aaaa, - 0xe7aaab, - 0xe7aaac, - 0xe7aaad, - 0xe7aaae, - 0xe7aaaf, - 0xe7aab0, - 0xe7aab1, - 0xe7aab2, - 0xe7aab3, - 0xe7aab4, - 0xe7aab5, - 0xe7aab6, - 0xe7aab7, - 0xe7aab8, - 0xe7aab9, - 0xe7aaba, - 0xe7aabb, - 0xe7aabc, - 0xe7aabd, - 0xe7aabe, - 0xe7aabf, - 0xe7ab80, - 0xe7ab81, - 0xe7ab82, - 0xe7ab83, - 0xe7ab84, - 0xe7ab85, - 0xe7ab86, - 0xe7ab87, - 0xe7ab88, - 0xe7ab89, - 0xe7ab8a, - 0xe7ab8b, - 0xe7ab8c, - 0xe7ab8d, - 0xe7ab8e, - 0xe7ab8f, - 0xe7ab90, - 0xe7ab91, - 0xe7ab92, - 0xe7ab93, - 0xe7ab94, - 0xe7ab95, - 0xe7ab96, - 0xe7ab97, - 0xe7ab98, - 0xe7ab99, - 0xe7ab9a, - 0xe7ab9b, - 0xe7ab9c, - 0xe7ab9d, - 0xe7ab9e, - 0xe7ab9f, - 0xe7aba0, - 0xe7aba1, - 0xe7aba2, - 0xe7aba3, - 0xe7aba4, - 0xe7aba5, - 0xe7aba6, - 0xe7aba7, - 0xe7aba8, - 0xe7aba9, - 0xe7abaa, - 0xe7abab, - 0xe7abac, - 0xe7abad, - 0xe7abae, - 0xe7abaf, - 0xe7abb0, - 0xe7abb1, - 0xe7abb2, - 0xe7abb3, - 0xe7abb4, - 0xe7abb5, - 0xe7abb6, - 0xe7abb7, - 0xe7abb8, - 0xe7abb9, - 0xe7abba, - 0xe7abbb, - 0xe7abbc, - 0xe7abbd, - 0xe7abbe, - 0xe7abbf, - 0xe7ac80, - 0xe7ac81, - 0xe7ac82, - 0xe7ac83, - 0xe7ac84, - 0xe7ac85, - 0xe7ac86, - 0xe7ac87, - 0xe7ac88, - 0xe7ac89, - 0xe7ac8a, - 0xe7ac8b, - 0xe7ac8c, - 0xe7ac8d, - 0xe7ac8e, - 0xe7ac8f, - 0xe7ac90, - 0xe7ac91, - 0xe7ac92, - 0xe7ac93, - 0xe7ac94, - 0xe7ac95, - 0xe7ac96, - 0xe7ac97, - 0xe7ac98, - 0xe7ac99, - 0xe7ac9a, - 0xe7ac9b, - 0xe7ac9c, - 0xe7ac9d, - 0xe7ac9e, - 0xe7ac9f, - 0xe7aca0, - 0xe7aca1, - 0xe7aca2, - 0xe7aca3, - 0xe7aca4, - 0xe7aca5, - 0xe7aca6, - 0xe7aca7, - 0xe7aca8, - 0xe7aca9, - 0xe7acaa, - 0xe7acab, - 0xe7acac, - 0xe7acad, - 0xe7acae, - 0xe7acaf, - 0xe7acb0, - 0xe7acb1, - 0xe7acb2, - 0xe7acb3, - 0xe7acb4, - 0xe7acb5, - 0xe7acb6, - 0xe7acb7, - 0xe7acb8, - 0xe7acb9, - 0xe7acba, - 0xe7acbb, - 0xe7acbc, - 0xe7acbd, - 0xe7acbe, - 0xe7acbf, - 0xe7ad80, - 0xe7ad81, - 0xe7ad82, - 0xe7ad83, - 0xe7ad84, - 0xe7ad85, - 0xe7ad86, - 0xe7ad87, - 0xe7ad88, - 0xe7ad89, - 0xe7ad8a, - 0xe7ad8b, - 0xe7ad8c, - 0xe7ad8d, - 0xe7ad8e, - 0xe7ad8f, - 0xe7ad90, - 0xe7ad91, - 0xe7ad92, - 0xe7ad93, - 0xe7ad94, - 0xe7ad95, - 0xe7ad96, - 0xe7ad97, - 0xe7ad98, - 0xe7ad99, - 0xe7ad9a, - 0xe7ad9b, - 0xe7ad9c, - 0xe7ad9d, - 0xe7ad9e, - 0xe7ad9f, - 0xe7ada0, - 0xe7ada1, - 0xe7ada2, - 0xe7ada3, - 0xe7ada4, - 0xe7ada5, - 0xe7ada6, - 0xe7ada7, - 0xe7ada8, - 0xe7ada9, - 0xe7adaa, - 0xe7adab, - 0xe7adac, - 0xe7adad, - 0xe7adae, - 0xe7adaf, - 0xe7adb0, - 0xe7adb1, - 0xe7adb2, - 0xe7adb3, - 0xe7adb4, - 0xe7adb5, - 0xe7adb6, - 0xe7adb7, - 0xe7adb8, - 0xe7adb9, - 0xe7adba, - 0xe7adbb, - 0xe7adbc, - 0xe7adbd, - 0xe7adbe, - 0xe7adbf, - 0xe7ae80, - 0xe7ae81, - 0xe7ae82, - 0xe7ae83, - 0xe7ae84, - 0xe7ae85, - 0xe7ae86, - 0xe7ae87, - 0xe7ae88, - 0xe7ae89, - 0xe7ae8a, - 0xe7ae8b, - 0xe7ae8c, - 0xe7ae8d, - 0xe7ae8e, - 0xe7ae8f, - 0xe7ae90, - 0xe7ae91, - 0xe7ae92, - 0xe7ae93, - 0xe7ae94, - 0xe7ae95, - 0xe7ae96, - 0xe7ae97, - 0xe7ae98, - 0xe7ae99, - 0xe7ae9a, - 0xe7ae9b, - 0xe7ae9c, - 0xe7ae9d, - 0xe7ae9e, - 0xe7ae9f, - 0xe7aea0, - 0xe7aea1, - 0xe7aea2, - 0xe7aea3, - 0xe7aea4, - 0xe7aea5, - 0xe7aea6, - 0xe7aea7, - 0xe7aea8, - 0xe7aea9, - 0xe7aeaa, - 0xe7aeab, - 0xe7aeac, - 0xe7aead, - 0xe7aeae, - 0xe7aeaf, - 0xe7aeb0, - 0xe7aeb1, - 0xe7aeb2, - 0xe7aeb3, - 0xe7aeb4, - 0xe7aeb5, - 0xe7aeb6, - 0xe7aeb7, - 0xe7aeb8, - 0xe7aeb9, - 0xe7aeba, - 0xe7aebb, - 0xe7aebc, - 0xe7aebd, - 0xe7aebe, - 0xe7aebf, - 0xe7af80, - 0xe7af81, - 0xe7af82, - 0xe7af83, - 0xe7af84, - 0xe7af85, - 0xe7af86, - 0xe7af87, - 0xe7af88, - 0xe7af89, - 0xe7af8a, - 0xe7af8b, - 0xe7af8c, - 0xe7af8d, - 0xe7af8e, - 0xe7af8f, - 0xe7af90, - 0xe7af91, - 0xe7af92, - 0xe7af93, - 0xe7af94, - 0xe7af95, - 0xe7af96, - 0xe7af97, - 0xe7af98, - 0xe7af99, - 0xe7af9a, - 0xe7af9b, - 0xe7af9c, - 0xe7af9d, - 0xe7af9e, - 0xe7af9f, - 0xe7afa0, - 0xe7afa1, - 0xe7afa2, - 0xe7afa3, - 0xe7afa4, - 0xe7afa5, - 0xe7afa6, - 0xe7afa7, - 0xe7afa8, - 0xe7afa9, - 0xe7afaa, - 0xe7afab, - 0xe7afac, - 0xe7afad, - 0xe7afae, - 0xe7afaf, - 0xe7afb0, - 0xe7afb1, - 0xe7afb2, - 0xe7afb3, - 0xe7afb4, - 0xe7afb5, - 0xe7afb6, - 0xe7afb7, - 0xe7afb8, - 0xe7afb9, - 0xe7afba, - 0xe7afbb, - 0xe7afbc, - 0xe7afbd, - 0xe7afbe, - 0xe7afbf, - 0xe7b080, - 0xe7b081, - 0xe7b082, - 0xe7b083, - 0xe7b084, - 0xe7b085, - 0xe7b086, - 0xe7b087, - 0xe7b088, - 0xe7b089, - 0xe7b08a, - 0xe7b08b, - 0xe7b08c, - 0xe7b08d, - 0xe7b08e, - 0xe7b08f, - 0xe7b090, - 0xe7b091, - 0xe7b092, - 0xe7b093, - 0xe7b094, - 0xe7b095, - 0xe7b096, - 0xe7b097, - 0xe7b098, - 0xe7b099, - 0xe7b09a, - 0xe7b09b, - 0xe7b09c, - 0xe7b09d, - 0xe7b09e, - 0xe7b09f, - 0xe7b0a0, - 0xe7b0a1, - 0xe7b0a2, - 0xe7b0a3, - 0xe7b0a4, - 0xe7b0a5, - 0xe7b0a6, - 0xe7b0a7, - 0xe7b0a8, - 0xe7b0a9, - 0xe7b0aa, - 0xe7b0ab, - 0xe7b0ac, - 0xe7b0ad, - 0xe7b0ae, - 0xe7b0af, - 0xe7b0b0, - 0xe7b0b1, - 0xe7b0b2, - 0xe7b0b3, - 0xe7b0b4, - 0xe7b0b5, - 0xe7b0b6, - 0xe7b0b7, - 0xe7b0b8, - 0xe7b0b9, - 0xe7b0ba, - 0xe7b0bb, - 0xe7b0bc, - 0xe7b0bd, - 0xe7b0be, - 0xe7b0bf, - 0xe7b180, - 0xe7b181, - 0xe7b182, - 0xe7b183, - 0xe7b184, - 0xe7b185, - 0xe7b186, - 0xe7b187, - 0xe7b188, - 0xe7b189, - 0xe7b18a, - 0xe7b18b, - 0xe7b18c, - 0xe7b18d, - 0xe7b18e, - 0xe7b18f, - 0xe7b190, - 0xe7b191, - 0xe7b192, - 0xe7b193, - 0xe7b194, - 0xe7b195, - 0xe7b196, - 0xe7b197, - 0xe7b198, - 0xe7b199, - 0xe7b19a, - 0xe7b19b, - 0xe7b19c, - 0xe7b19d, - 0xe7b19e, - 0xe7b19f, - 0xe7b1a0, - 0xe7b1a1, - 0xe7b1a2, - 0xe7b1a3, - 0xe7b1a4, - 0xe7b1a5, - 0xe7b1a6, - 0xe7b1a7, - 0xe7b1a8, - 0xe7b1a9, - 0xe7b1aa, - 0xe7b1ab, - 0xe7b1ac, - 0xe7b1ad, - 0xe7b1ae, - 0xe7b1af, - 0xe7b1b0, - 0xe7b1b1, - 0xe7b1b2, - 0xe7b1b3, - 0xe7b1b4, - 0xe7b1b5, - 0xe7b1b6, - 0xe7b1b7, - 0xe7b1b8, - 0xe7b1b9, - 0xe7b1ba, - 0xe7b1bb, - 0xe7b1bc, - 0xe7b1bd, - 0xe7b1be, - 0xe7b1bf, - 0xe7b280, - 0xe7b281, - 0xe7b282, - 0xe7b283, - 0xe7b284, - 0xe7b285, - 0xe7b286, - 0xe7b287, - 0xe7b288, - 0xe7b289, - 0xe7b28a, - 0xe7b28b, - 0xe7b28c, - 0xe7b28d, - 0xe7b28e, - 0xe7b28f, - 0xe7b290, - 0xe7b291, - 0xe7b292, - 0xe7b293, - 0xe7b294, - 0xe7b295, - 0xe7b296, - 0xe7b297, - 0xe7b298, - 0xe7b299, - 0xe7b29a, - 0xe7b29b, - 0xe7b29c, - 0xe7b29d, - 0xe7b29e, - 0xe7b29f, - 0xe7b2a0, - 0xe7b2a1, - 0xe7b2a2, - 0xe7b2a3, - 0xe7b2a4, - 0xe7b2a5, - 0xe7b2a6, - 0xe7b2a7, - 0xe7b2a8, - 0xe7b2a9, - 0xe7b2aa, - 0xe7b2ab, - 0xe7b2ac, - 0xe7b2ad, - 0xe7b2ae, - 0xe7b2af, - 0xe7b2b0, - 0xe7b2b1, - 0xe7b2b2, - 0xe7b2b3, - 0xe7b2b4, - 0xe7b2b5, - 0xe7b2b6, - 0xe7b2b7, - 0xe7b2b8, - 0xe7b2b9, - 0xe7b2ba, - 0xe7b2bb, - 0xe7b2bc, - 0xe7b2bd, - 0xe7b2be, - 0xe7b2bf, - 0xe7b380, - 0xe7b381, - 0xe7b382, - 0xe7b383, - 0xe7b384, - 0xe7b385, - 0xe7b386, - 0xe7b387, - 0xe7b388, - 0xe7b389, - 0xe7b38a, - 0xe7b38b, - 0xe7b38c, - 0xe7b38d, - 0xe7b38e, - 0xe7b38f, - 0xe7b390, - 0xe7b391, - 0xe7b392, - 0xe7b393, - 0xe7b394, - 0xe7b395, - 0xe7b396, - 0xe7b397, - 0xe7b398, - 0xe7b399, - 0xe7b39a, - 0xe7b39b, - 0xe7b39c, - 0xe7b39d, - 0xe7b39e, - 0xe7b39f, - 0xe7b3a0, - 0xe7b3a1, - 0xe7b3a2, - 0xe7b3a3, - 0xe7b3a4, - 0xe7b3a5, - 0xe7b3a6, - 0xe7b3a7, - 0xe7b3a8, - 0xe7b3a9, - 0xe7b3aa, - 0xe7b3ab, - 0xe7b3ac, - 0xe7b3ad, - 0xe7b3ae, - 0xe7b3af, - 0xe7b3b0, - 0xe7b3b1, - 0xe7b3b2, - 0xe7b3b3, - 0xe7b3b4, - 0xe7b3b5, - 0xe7b3b6, - 0xe7b3b7, - 0xe7b3b8, - 0xe7b3b9, - 0xe7b3ba, - 0xe7b3bb, - 0xe7b3bc, - 0xe7b3bd, - 0xe7b3be, - 0xe7b3bf, - 0xe7b480, - 0xe7b481, - 0xe7b482, - 0xe7b483, - 0xe7b484, - 0xe7b485, - 0xe7b486, - 0xe7b487, - 0xe7b488, - 0xe7b489, - 0xe7b48a, - 0xe7b48b, - 0xe7b48c, - 0xe7b48d, - 0xe7b48e, - 0xe7b48f, - 0xe7b490, - 0xe7b491, - 0xe7b492, - 0xe7b493, - 0xe7b494, - 0xe7b495, - 0xe7b496, - 0xe7b497, - 0xe7b498, - 0xe7b499, - 0xe7b49a, - 0xe7b49b, - 0xe7b49c, - 0xe7b49d, - 0xe7b49e, - 0xe7b49f, - 0xe7b4a0, - 0xe7b4a1, - 0xe7b4a2, - 0xe7b4a3, - 0xe7b4a4, - 0xe7b4a5, - 0xe7b4a6, - 0xe7b4a7, - 0xe7b4a8, - 0xe7b4a9, - 0xe7b4aa, - 0xe7b4ab, - 0xe7b4ac, - 0xe7b4ad, - 0xe7b4ae, - 0xe7b4af, - 0xe7b4b0, - 0xe7b4b1, - 0xe7b4b2, - 0xe7b4b3, - 0xe7b4b4, - 0xe7b4b5, - 0xe7b4b6, - 0xe7b4b7, - 0xe7b4b8, - 0xe7b4b9, - 0xe7b4ba, - 0xe7b4bb, - 0xe7b4bc, - 0xe7b4bd, - 0xe7b4be, - 0xe7b4bf, - 0xe7b580, - 0xe7b581, - 0xe7b582, - 0xe7b583, - 0xe7b584, - 0xe7b585, - 0xe7b586, - 0xe7b587, - 0xe7b588, - 0xe7b589, - 0xe7b58a, - 0xe7b58b, - 0xe7b58c, - 0xe7b58d, - 0xe7b58e, - 0xe7b58f, - 0xe7b590, - 0xe7b591, - 0xe7b592, - 0xe7b593, - 0xe7b594, - 0xe7b595, - 0xe7b596, - 0xe7b597, - 0xe7b598, - 0xe7b599, - 0xe7b59a, - 0xe7b59b, - 0xe7b59c, - 0xe7b59d, - 0xe7b59e, - 0xe7b59f, - 0xe7b5a0, - 0xe7b5a1, - 0xe7b5a2, - 0xe7b5a3, - 0xe7b5a4, - 0xe7b5a5, - 0xe7b5a6, - 0xe7b5a7, - 0xe7b5a8, - 0xe7b5a9, - 0xe7b5aa, - 0xe7b5ab, - 0xe7b5ac, - 0xe7b5ad, - 0xe7b5ae, - 0xe7b5af, - 0xe7b5b0, - 0xe7b5b1, - 0xe7b5b2, - 0xe7b5b3, - 0xe7b5b4, - 0xe7b5b5, - 0xe7b5b6, - 0xe7b5b7, - 0xe7b5b8, - 0xe7b5b9, - 0xe7b5ba, - 0xe7b5bb, - 0xe7b5bc, - 0xe7b5bd, - 0xe7b5be, - 0xe7b5bf, - 0xe7b680, - 0xe7b681, - 0xe7b682, - 0xe7b683, - 0xe7b684, - 0xe7b685, - 0xe7b686, - 0xe7b687, - 0xe7b688, - 0xe7b689, - 0xe7b68a, - 0xe7b68b, - 0xe7b68c, - 0xe7b68d, - 0xe7b68e, - 0xe7b68f, - 0xe7b690, - 0xe7b691, - 0xe7b692, - 0xe7b693, - 0xe7b694, - 0xe7b695, - 0xe7b696, - 0xe7b697, - 0xe7b698, - 0xe7b699, - 0xe7b69a, - 0xe7b69b, - 0xe7b69c, - 0xe7b69d, - 0xe7b69e, - 0xe7b69f, - 0xe7b6a0, - 0xe7b6a1, - 0xe7b6a2, - 0xe7b6a3, - 0xe7b6a4, - 0xe7b6a5, - 0xe7b6a6, - 0xe7b6a7, - 0xe7b6a8, - 0xe7b6a9, - 0xe7b6aa, - 0xe7b6ab, - 0xe7b6ac, - 0xe7b6ad, - 0xe7b6ae, - 0xe7b6af, - 0xe7b6b0, - 0xe7b6b1, - 0xe7b6b2, - 0xe7b6b3, - 0xe7b6b4, - 0xe7b6b5, - 0xe7b6b6, - 0xe7b6b7, - 0xe7b6b8, - 0xe7b6b9, - 0xe7b6ba, - 0xe7b6bb, - 0xe7b6bc, - 0xe7b6bd, - 0xe7b6be, - 0xe7b6bf, - 0xe7b780, - 0xe7b781, - 0xe7b782, - 0xe7b783, - 0xe7b784, - 0xe7b785, - 0xe7b786, - 0xe7b787, - 0xe7b788, - 0xe7b789, - 0xe7b78a, - 0xe7b78b, - 0xe7b78c, - 0xe7b78d, - 0xe7b78e, - 0xe7b78f, - 0xe7b790, - 0xe7b791, - 0xe7b792, - 0xe7b793, - 0xe7b794, - 0xe7b795, - 0xe7b796, - 0xe7b797, - 0xe7b798, - 0xe7b799, - 0xe7b79a, - 0xe7b79b, - 0xe7b79c, - 0xe7b79d, - 0xe7b79e, - 0xe7b79f, - 0xe7b7a0, - 0xe7b7a1, - 0xe7b7a2, - 0xe7b7a3, - 0xe7b7a4, - 0xe7b7a5, - 0xe7b7a6, - 0xe7b7a7, - 0xe7b7a8, - 0xe7b7a9, - 0xe7b7aa, - 0xe7b7ab, - 0xe7b7ac, - 0xe7b7ad, - 0xe7b7ae, - 0xe7b7af, - 0xe7b7b0, - 0xe7b7b1, - 0xe7b7b2, - 0xe7b7b3, - 0xe7b7b4, - 0xe7b7b5, - 0xe7b7b6, - 0xe7b7b7, - 0xe7b7b8, - 0xe7b7b9, - 0xe7b7ba, - 0xe7b7bb, - 0xe7b7bc, - 0xe7b7bd, - 0xe7b7be, - 0xe7b7bf, - 0xe7b880, - 0xe7b881, - 0xe7b882, - 0xe7b883, - 0xe7b884, - 0xe7b885, - 0xe7b886, - 0xe7b887, - 0xe7b888, - 0xe7b889, - 0xe7b88a, - 0xe7b88b, - 0xe7b88c, - 0xe7b88d, - 0xe7b88e, - 0xe7b88f, - 0xe7b890, - 0xe7b891, - 0xe7b892, - 0xe7b893, - 0xe7b894, - 0xe7b895, - 0xe7b896, - 0xe7b897, - 0xe7b898, - 0xe7b899, - 0xe7b89a, - 0xe7b89b, - 0xe7b89c, - 0xe7b89d, - 0xe7b89e, - 0xe7b89f, - 0xe7b8a0, - 0xe7b8a1, - 0xe7b8a2, - 0xe7b8a3, - 0xe7b8a4, - 0xe7b8a5, - 0xe7b8a6, - 0xe7b8a7, - 0xe7b8a8, - 0xe7b8a9, - 0xe7b8aa, - 0xe7b8ab, - 0xe7b8ac, - 0xe7b8ad, - 0xe7b8ae, - 0xe7b8af, - 0xe7b8b0, - 0xe7b8b1, - 0xe7b8b2, - 0xe7b8b3, - 0xe7b8b4, - 0xe7b8b5, - 0xe7b8b6, - 0xe7b8b7, - 0xe7b8b8, - 0xe7b8b9, - 0xe7b8ba, - 0xe7b8bb, - 0xe7b8bc, - 0xe7b8bd, - 0xe7b8be, - 0xe7b8bf, - 0xe7b980, - 0xe7b981, - 0xe7b982, - 0xe7b983, - 0xe7b984, - 0xe7b985, - 0xe7b986, - 0xe7b987, - 0xe7b988, - 0xe7b989, - 0xe7b98a, - 0xe7b98b, - 0xe7b98c, - 0xe7b98d, - 0xe7b98e, - 0xe7b98f, - 0xe7b990, - 0xe7b991, - 0xe7b992, - 0xe7b993, - 0xe7b994, - 0xe7b995, - 0xe7b996, - 0xe7b997, - 0xe7b998, - 0xe7b999, - 0xe7b99a, - 0xe7b99b, - 0xe7b99c, - 0xe7b99d, - 0xe7b99e, - 0xe7b99f, - 0xe7b9a0, - 0xe7b9a1, - 0xe7b9a2, - 0xe7b9a3, - 0xe7b9a4, - 0xe7b9a5, - 0xe7b9a6, - 0xe7b9a7, - 0xe7b9a8, - 0xe7b9a9, - 0xe7b9aa, - 0xe7b9ab, - 0xe7b9ac, - 0xe7b9ad, - 0xe7b9ae, - 0xe7b9af, - 0xe7b9b0, - 0xe7b9b1, - 0xe7b9b2, - 0xe7b9b3, - 0xe7b9b4, - 0xe7b9b5, - 0xe7b9b6, - 0xe7b9b7, - 0xe7b9b8, - 0xe7b9b9, - 0xe7b9ba, - 0xe7b9bb, - 0xe7b9bc, - 0xe7b9bd, - 0xe7b9be, - 0xe7b9bf, - 0xe7ba80, - 0xe7ba81, - 0xe7ba82, - 0xe7ba83, - 0xe7ba84, - 0xe7ba85, - 0xe7ba86, - 0xe7ba87, - 0xe7ba88, - 0xe7ba89, - 0xe7ba8a, - 0xe7ba8b, - 0xe7ba8c, - 0xe7ba8d, - 0xe7ba8e, - 0xe7ba8f, - 0xe7ba90, - 0xe7ba91, - 0xe7ba92, - 0xe7ba93, - 0xe7ba94, - 0xe7ba95, - 0xe7ba96, - 0xe7ba97, - 0xe7ba98, - 0xe7ba99, - 0xe7ba9a, - 0xe7ba9b, - 0xe7ba9c, - 0xe7ba9d, - 0xe7ba9e, - 0xe7ba9f, - 0xe7baa0, - 0xe7baa1, - 0xe7baa2, - 0xe7baa3, - 0xe7baa4, - 0xe7baa5, - 0xe7baa6, - 0xe7baa7, - 0xe7baa8, - 0xe7baa9, - 0xe7baaa, - 0xe7baab, - 0xe7baac, - 0xe7baad, - 0xe7baae, - 0xe7baaf, - 0xe7bab0, - 0xe7bab1, - 0xe7bab2, - 0xe7bab3, - 0xe7bab4, - 0xe7bab5, - 0xe7bab6, - 0xe7bab7, - 0xe7bab8, - 0xe7bab9, - 0xe7baba, - 0xe7babb, - 0xe7babc, - 0xe7babd, - 0xe7babe, - 0xe7babf, - 0xe7bb80, - 0xe7bb81, - 0xe7bb82, - 0xe7bb83, - 0xe7bb84, - 0xe7bb85, - 0xe7bb86, - 0xe7bb87, - 0xe7bb88, - 0xe7bb89, - 0xe7bb8a, - 0xe7bb8b, - 0xe7bb8c, - 0xe7bb8d, - 0xe7bb8e, - 0xe7bb8f, - 0xe7bb90, - 0xe7bb91, - 0xe7bb92, - 0xe7bb93, - 0xe7bb94, - 0xe7bb95, - 0xe7bb96, - 0xe7bb97, - 0xe7bb98, - 0xe7bb99, - 0xe7bb9a, - 0xe7bb9b, - 0xe7bb9c, - 0xe7bb9d, - 0xe7bb9e, - 0xe7bb9f, - 0xe7bba0, - 0xe7bba1, - 0xe7bba2, - 0xe7bba3, - 0xe7bba4, - 0xe7bba5, - 0xe7bba6, - 0xe7bba7, - 0xe7bba8, - 0xe7bba9, - 0xe7bbaa, - 0xe7bbab, - 0xe7bbac, - 0xe7bbad, - 0xe7bbae, - 0xe7bbaf, - 0xe7bbb0, - 0xe7bbb1, - 0xe7bbb2, - 0xe7bbb3, - 0xe7bbb4, - 0xe7bbb5, - 0xe7bbb6, - 0xe7bbb7, - 0xe7bbb8, - 0xe7bbb9, - 0xe7bbba, - 0xe7bbbb, - 0xe7bbbc, - 0xe7bbbd, - 0xe7bbbe, - 0xe7bbbf, - 0xe7bc80, - 0xe7bc81, - 0xe7bc82, - 0xe7bc83, - 0xe7bc84, - 0xe7bc85, - 0xe7bc86, - 0xe7bc87, - 0xe7bc88, - 0xe7bc89, - 0xe7bc8a, - 0xe7bc8b, - 0xe7bc8c, - 0xe7bc8d, - 0xe7bc8e, - 0xe7bc8f, - 0xe7bc90, - 0xe7bc91, - 0xe7bc92, - 0xe7bc93, - 0xe7bc94, - 0xe7bc95, - 0xe7bc96, - 0xe7bc97, - 0xe7bc98, - 0xe7bc99, - 0xe7bc9a, - 0xe7bc9b, - 0xe7bc9c, - 0xe7bc9d, - 0xe7bc9e, - 0xe7bc9f, - 0xe7bca0, - 0xe7bca1, - 0xe7bca2, - 0xe7bca3, - 0xe7bca4, - 0xe7bca5, - 0xe7bca6, - 0xe7bca7, - 0xe7bca8, - 0xe7bca9, - 0xe7bcaa, - 0xe7bcab, - 0xe7bcac, - 0xe7bcad, - 0xe7bcae, - 0xe7bcaf, - 0xe7bcb0, - 0xe7bcb1, - 0xe7bcb2, - 0xe7bcb3, - 0xe7bcb4, - 0xe7bcb5, - 0xe7bcb6, - 0xe7bcb7, - 0xe7bcb8, - 0xe7bcb9, - 0xe7bcba, - 0xe7bcbb, - 0xe7bcbc, - 0xe7bcbd, - 0xe7bcbe, - 0xe7bcbf, - 0xe7bd80, - 0xe7bd81, - 0xe7bd82, - 0xe7bd83, - 0xe7bd84, - 0xe7bd85, - 0xe7bd86, - 0xe7bd87, - 0xe7bd88, - 0xe7bd89, - 0xe7bd8a, - 0xe7bd8b, - 0xe7bd8c, - 0xe7bd8d, - 0xe7bd8e, - 0xe7bd8f, - 0xe7bd90, - 0xe7bd91, - 0xe7bd92, - 0xe7bd93, - 0xe7bd94, - 0xe7bd95, - 0xe7bd96, - 0xe7bd97, - 0xe7bd98, - 0xe7bd99, - 0xe7bd9a, - 0xe7bd9b, - 0xe7bd9c, - 0xe7bd9d, - 0xe7bd9e, - 0xe7bd9f, - 0xe7bda0, - 0xe7bda1, - 0xe7bda2, - 0xe7bda3, - 0xe7bda4, - 0xe7bda5, - 0xe7bda6, - 0xe7bda7, - 0xe7bda8, - 0xe7bda9, - 0xe7bdaa, - 0xe7bdab, - 0xe7bdac, - 0xe7bdad, - 0xe7bdae, - 0xe7bdaf, - 0xe7bdb0, - 0xe7bdb1, - 0xe7bdb2, - 0xe7bdb3, - 0xe7bdb4, - 0xe7bdb5, - 0xe7bdb6, - 0xe7bdb7, - 0xe7bdb8, - 0xe7bdb9, - 0xe7bdba, - 0xe7bdbb, - 0xe7bdbc, - 0xe7bdbd, - 0xe7bdbe, - 0xe7bdbf, - 0xe7be80, - 0xe7be81, - 0xe7be82, - 0xe7be83, - 0xe7be84, - 0xe7be85, - 0xe7be86, - 0xe7be87, - 0xe7be88, - 0xe7be89, - 0xe7be8a, - 0xe7be8b, - 0xe7be8c, - 0xe7be8d, - 0xe7be8e, - 0xe7be8f, - 0xe7be90, - 0xe7be91, - 0xe7be92, - 0xe7be93, - 0xe7be94, - 0xe7be95, - 0xe7be96, - 0xe7be97, - 0xe7be98, - 0xe7be99, - 0xe7be9a, - 0xe7be9b, - 0xe7be9c, - 0xe7be9d, - 0xe7be9e, - 0xe7be9f, - 0xe7bea0, - 0xe7bea1, - 0xe7bea2, - 0xe7bea3, - 0xe7bea4, - 0xe7bea5, - 0xe7bea6, - 0xe7bea7, - 0xe7bea8, - 0xe7bea9, - 0xe7beaa, - 0xe7beab, - 0xe7beac, - 0xe7bead, - 0xe7beae, - 0xe7beaf, - 0xe7beb0, - 0xe7beb1, - 0xe7beb2, - 0xe7beb3, - 0xe7beb4, - 0xe7beb5, - 0xe7beb6, - 0xe7beb7, - 0xe7beb8, - 0xe7beb9, - 0xe7beba, - 0xe7bebb, - 0xe7bebc, - 0xe7bebd, - 0xe7bebe, - 0xe7bebf, - 0xe7bf80, - 0xe7bf81, - 0xe7bf82, - 0xe7bf83, - 0xe7bf84, - 0xe7bf85, - 0xe7bf86, - 0xe7bf87, - 0xe7bf88, - 0xe7bf89, - 0xe7bf8a, - 0xe7bf8b, - 0xe7bf8c, - 0xe7bf8d, - 0xe7bf8e, - 0xe7bf8f, - 0xe7bf90, - 0xe7bf91, - 0xe7bf92, - 0xe7bf93, - 0xe7bf94, - 0xe7bf95, - 0xe7bf96, - 0xe7bf97, - 0xe7bf98, - 0xe7bf99, - 0xe7bf9a, - 0xe7bf9b, - 0xe7bf9c, - 0xe7bf9d, - 0xe7bf9e, - 0xe7bf9f, - 0xe7bfa0, - 0xe7bfa1, - 0xe7bfa2, - 0xe7bfa3, - 0xe7bfa4, - 0xe7bfa5, - 0xe7bfa6, - 0xe7bfa7, - 0xe7bfa8, - 0xe7bfa9, - 0xe7bfaa, - 0xe7bfab, - 0xe7bfac, - 0xe7bfad, - 0xe7bfae, - 0xe7bfaf, - 0xe7bfb0, - 0xe7bfb1, - 0xe7bfb2, - 0xe7bfb3, - 0xe7bfb4, - 0xe7bfb5, - 0xe7bfb6, - 0xe7bfb7, - 0xe7bfb8, - 0xe7bfb9, - 0xe7bfba, - 0xe7bfbb, - 0xe7bfbc, - 0xe7bfbd, - 0xe7bfbe, - 0xe7bfbf, - 0xe88080, - 0xe88081, - 0xe88082, - 0xe88083, - 0xe88084, - 0xe88085, - 0xe88086, - 0xe88087, - 0xe88088, - 0xe88089, - 0xe8808a, - 0xe8808b, - 0xe8808c, - 0xe8808d, - 0xe8808e, - 0xe8808f, - 0xe88090, - 0xe88091, - 0xe88092, - 0xe88093, - 0xe88094, - 0xe88095, - 0xe88096, - 0xe88097, - 0xe88098, - 0xe88099, - 0xe8809a, - 0xe8809b, - 0xe8809c, - 0xe8809d, - 0xe8809e, - 0xe8809f, - 0xe880a0, - 0xe880a1, - 0xe880a2, - 0xe880a3, - 0xe880a4, - 0xe880a5, - 0xe880a6, - 0xe880a7, - 0xe880a8, - 0xe880a9, - 0xe880aa, - 0xe880ab, - 0xe880ac, - 0xe880ad, - 0xe880ae, - 0xe880af, - 0xe880b0, - 0xe880b1, - 0xe880b2, - 0xe880b3, - 0xe880b4, - 0xe880b5, - 0xe880b6, - 0xe880b7, - 0xe880b8, - 0xe880b9, - 0xe880ba, - 0xe880bb, - 0xe880bc, - 0xe880bd, - 0xe880be, - 0xe880bf, - 0xe88180, - 0xe88181, - 0xe88182, - 0xe88183, - 0xe88184, - 0xe88185, - 0xe88186, - 0xe88187, - 0xe88188, - 0xe88189, - 0xe8818a, - 0xe8818b, - 0xe8818c, - 0xe8818d, - 0xe8818e, - 0xe8818f, - 0xe88190, - 0xe88191, - 0xe88192, - 0xe88193, - 0xe88194, - 0xe88195, - 0xe88196, - 0xe88197, - 0xe88198, - 0xe88199, - 0xe8819a, - 0xe8819b, - 0xe8819c, - 0xe8819d, - 0xe8819e, - 0xe8819f, - 0xe881a0, - 0xe881a1, - 0xe881a2, - 0xe881a3, - 0xe881a4, - 0xe881a5, - 0xe881a6, - 0xe881a7, - 0xe881a8, - 0xe881a9, - 0xe881aa, - 0xe881ab, - 0xe881ac, - 0xe881ad, - 0xe881ae, - 0xe881af, - 0xe881b0, - 0xe881b1, - 0xe881b2, - 0xe881b3, - 0xe881b4, - 0xe881b5, - 0xe881b6, - 0xe881b7, - 0xe881b8, - 0xe881b9, - 0xe881ba, - 0xe881bb, - 0xe881bc, - 0xe881bd, - 0xe881be, - 0xe881bf, - 0xe88280, - 0xe88281, - 0xe88282, - 0xe88283, - 0xe88284, - 0xe88285, - 0xe88286, - 0xe88287, - 0xe88288, - 0xe88289, - 0xe8828a, - 0xe8828b, - 0xe8828c, - 0xe8828d, - 0xe8828e, - 0xe8828f, - 0xe88290, - 0xe88291, - 0xe88292, - 0xe88293, - 0xe88294, - 0xe88295, - 0xe88296, - 0xe88297, - 0xe88298, - 0xe88299, - 0xe8829a, - 0xe8829b, - 0xe8829c, - 0xe8829d, - 0xe8829e, - 0xe8829f, - 0xe882a0, - 0xe882a1, - 0xe882a2, - 0xe882a3, - 0xe882a4, - 0xe882a5, - 0xe882a6, - 0xe882a7, - 0xe882a8, - 0xe882a9, - 0xe882aa, - 0xe882ab, - 0xe882ac, - 0xe882ad, - 0xe882ae, - 0xe882af, - 0xe882b0, - 0xe882b1, - 0xe882b2, - 0xe882b3, - 0xe882b4, - 0xe882b5, - 0xe882b6, - 0xe882b7, - 0xe882b8, - 0xe882b9, - 0xe882ba, - 0xe882bb, - 0xe882bc, - 0xe882bd, - 0xe882be, - 0xe882bf, - 0xe88380, - 0xe88381, - 0xe88382, - 0xe88383, - 0xe88384, - 0xe88385, - 0xe88386, - 0xe88387, - 0xe88388, - 0xe88389, - 0xe8838a, - 0xe8838b, - 0xe8838c, - 0xe8838d, - 0xe8838e, - 0xe8838f, - 0xe88390, - 0xe88391, - 0xe88392, - 0xe88393, - 0xe88394, - 0xe88395, - 0xe88396, - 0xe88397, - 0xe88398, - 0xe88399, - 0xe8839a, - 0xe8839b, - 0xe8839c, - 0xe8839d, - 0xe8839e, - 0xe8839f, - 0xe883a0, - 0xe883a1, - 0xe883a2, - 0xe883a3, - 0xe883a4, - 0xe883a5, - 0xe883a6, - 0xe883a7, - 0xe883a8, - 0xe883a9, - 0xe883aa, - 0xe883ab, - 0xe883ac, - 0xe883ad, - 0xe883ae, - 0xe883af, - 0xe883b0, - 0xe883b1, - 0xe883b2, - 0xe883b3, - 0xe883b4, - 0xe883b5, - 0xe883b6, - 0xe883b7, - 0xe883b8, - 0xe883b9, - 0xe883ba, - 0xe883bb, - 0xe883bc, - 0xe883bd, - 0xe883be, - 0xe883bf, - 0xe88480, - 0xe88481, - 0xe88482, - 0xe88483, - 0xe88484, - 0xe88485, - 0xe88486, - 0xe88487, - 0xe88488, - 0xe88489, - 0xe8848a, - 0xe8848b, - 0xe8848c, - 0xe8848d, - 0xe8848e, - 0xe8848f, - 0xe88490, - 0xe88491, - 0xe88492, - 0xe88493, - 0xe88494, - 0xe88495, - 0xe88496, - 0xe88497, - 0xe88498, - 0xe88499, - 0xe8849a, - 0xe8849b, - 0xe8849c, - 0xe8849d, - 0xe8849e, - 0xe8849f, - 0xe884a0, - 0xe884a1, - 0xe884a2, - 0xe884a3, - 0xe884a4, - 0xe884a5, - 0xe884a6, - 0xe884a7, - 0xe884a8, - 0xe884a9, - 0xe884aa, - 0xe884ab, - 0xe884ac, - 0xe884ad, - 0xe884ae, - 0xe884af, - 0xe884b0, - 0xe884b1, - 0xe884b2, - 0xe884b3, - 0xe884b4, - 0xe884b5, - 0xe884b6, - 0xe884b7, - 0xe884b8, - 0xe884b9, - 0xe884ba, - 0xe884bb, - 0xe884bc, - 0xe884bd, - 0xe884be, - 0xe884bf, - 0xe88580, - 0xe88581, - 0xe88582, - 0xe88583, - 0xe88584, - 0xe88585, - 0xe88586, - 0xe88587, - 0xe88588, - 0xe88589, - 0xe8858a, - 0xe8858b, - 0xe8858c, - 0xe8858d, - 0xe8858e, - 0xe8858f, - 0xe88590, - 0xe88591, - 0xe88592, - 0xe88593, - 0xe88594, - 0xe88595, - 0xe88596, - 0xe88597, - 0xe88598, - 0xe88599, - 0xe8859a, - 0xe8859b, - 0xe8859c, - 0xe8859d, - 0xe8859e, - 0xe8859f, - 0xe885a0, - 0xe885a1, - 0xe885a2, - 0xe885a3, - 0xe885a4, - 0xe885a5, - 0xe885a6, - 0xe885a7, - 0xe885a8, - 0xe885a9, - 0xe885aa, - 0xe885ab, - 0xe885ac, - 0xe885ad, - 0xe885ae, - 0xe885af, - 0xe885b0, - 0xe885b1, - 0xe885b2, - 0xe885b3, - 0xe885b4, - 0xe885b5, - 0xe885b6, - 0xe885b7, - 0xe885b8, - 0xe885b9, - 0xe885ba, - 0xe885bb, - 0xe885bc, - 0xe885bd, - 0xe885be, - 0xe885bf, - 0xe88680, - 0xe88681, - 0xe88682, - 0xe88683, - 0xe88684, - 0xe88685, - 0xe88686, - 0xe88687, - 0xe88688, - 0xe88689, - 0xe8868a, - 0xe8868b, - 0xe8868c, - 0xe8868d, - 0xe8868e, - 0xe8868f, - 0xe88690, - 0xe88691, - 0xe88692, - 0xe88693, - 0xe88694, - 0xe88695, - 0xe88696, - 0xe88697, - 0xe88698, - 0xe88699, - 0xe8869a, - 0xe8869b, - 0xe8869c, - 0xe8869d, - 0xe8869e, - 0xe8869f, - 0xe886a0, - 0xe886a1, - 0xe886a2, - 0xe886a3, - 0xe886a4, - 0xe886a5, - 0xe886a6, - 0xe886a7, - 0xe886a8, - 0xe886a9, - 0xe886aa, - 0xe886ab, - 0xe886ac, - 0xe886ad, - 0xe886ae, - 0xe886af, - 0xe886b0, - 0xe886b1, - 0xe886b2, - 0xe886b3, - 0xe886b4, - 0xe886b5, - 0xe886b6, - 0xe886b7, - 0xe886b8, - 0xe886b9, - 0xe886ba, - 0xe886bb, - 0xe886bc, - 0xe886bd, - 0xe886be, - 0xe886bf, - 0xe88780, - 0xe88781, - 0xe88782, - 0xe88783, - 0xe88784, - 0xe88785, - 0xe88786, - 0xe88787, - 0xe88788, - 0xe88789, - 0xe8878a, - 0xe8878b, - 0xe8878c, - 0xe8878d, - 0xe8878e, - 0xe8878f, - 0xe88790, - 0xe88791, - 0xe88792, - 0xe88793, - 0xe88794, - 0xe88795, - 0xe88796, - 0xe88797, - 0xe88798, - 0xe88799, - 0xe8879a, - 0xe8879b, - 0xe8879c, - 0xe8879d, - 0xe8879e, - 0xe8879f, - 0xe887a0, - 0xe887a1, - 0xe887a2, - 0xe887a3, - 0xe887a4, - 0xe887a5, - 0xe887a6, - 0xe887a7, - 0xe887a8, - 0xe887a9, - 0xe887aa, - 0xe887ab, - 0xe887ac, - 0xe887ad, - 0xe887ae, - 0xe887af, - 0xe887b0, - 0xe887b1, - 0xe887b2, - 0xe887b3, - 0xe887b4, - 0xe887b5, - 0xe887b6, - 0xe887b7, - 0xe887b8, - 0xe887b9, - 0xe887ba, - 0xe887bb, - 0xe887bc, - 0xe887bd, - 0xe887be, - 0xe887bf, - 0xe88880, - 0xe88881, - 0xe88882, - 0xe88883, - 0xe88884, - 0xe88885, - 0xe88886, - 0xe88887, - 0xe88888, - 0xe88889, - 0xe8888a, - 0xe8888b, - 0xe8888c, - 0xe8888d, - 0xe8888e, - 0xe8888f, - 0xe88890, - 0xe88891, - 0xe88892, - 0xe88893, - 0xe88894, - 0xe88895, - 0xe88896, - 0xe88897, - 0xe88898, - 0xe88899, - 0xe8889a, - 0xe8889b, - 0xe8889c, - 0xe8889d, - 0xe8889e, - 0xe8889f, - 0xe888a0, - 0xe888a1, - 0xe888a2, - 0xe888a3, - 0xe888a4, - 0xe888a5, - 0xe888a6, - 0xe888a7, - 0xe888a8, - 0xe888a9, - 0xe888aa, - 0xe888ab, - 0xe888ac, - 0xe888ad, - 0xe888ae, - 0xe888af, - 0xe888b0, - 0xe888b1, - 0xe888b2, - 0xe888b3, - 0xe888b4, - 0xe888b5, - 0xe888b6, - 0xe888b7, - 0xe888b8, - 0xe888b9, - 0xe888ba, - 0xe888bb, - 0xe888bc, - 0xe888bd, - 0xe888be, - 0xe888bf, - 0xe88980, - 0xe88981, - 0xe88982, - 0xe88983, - 0xe88984, - 0xe88985, - 0xe88986, - 0xe88987, - 0xe88988, - 0xe88989, - 0xe8898a, - 0xe8898b, - 0xe8898c, - 0xe8898d, - 0xe8898e, - 0xe8898f, - 0xe88990, - 0xe88991, - 0xe88992, - 0xe88993, - 0xe88994, - 0xe88995, - 0xe88996, - 0xe88997, - 0xe88998, - 0xe88999, - 0xe8899a, - 0xe8899b, - 0xe8899c, - 0xe8899d, - 0xe8899e, - 0xe8899f, - 0xe889a0, - 0xe889a1, - 0xe889a2, - 0xe889a3, - 0xe889a4, - 0xe889a5, - 0xe889a6, - 0xe889a7, - 0xe889a8, - 0xe889a9, - 0xe889aa, - 0xe889ab, - 0xe889ac, - 0xe889ad, - 0xe889ae, - 0xe889af, - 0xe889b0, - 0xe889b1, - 0xe889b2, - 0xe889b3, - 0xe889b4, - 0xe889b5, - 0xe889b6, - 0xe889b7, - 0xe889b8, - 0xe889b9, - 0xe889ba, - 0xe889bb, - 0xe889bc, - 0xe889bd, - 0xe889be, - 0xe889bf, - 0xe88a80, - 0xe88a81, - 0xe88a82, - 0xe88a83, - 0xe88a84, - 0xe88a85, - 0xe88a86, - 0xe88a87, - 0xe88a88, - 0xe88a89, - 0xe88a8a, - 0xe88a8b, - 0xe88a8c, - 0xe88a8d, - 0xe88a8e, - 0xe88a8f, - 0xe88a90, - 0xe88a91, - 0xe88a92, - 0xe88a93, - 0xe88a94, - 0xe88a95, - 0xe88a96, - 0xe88a97, - 0xe88a98, - 0xe88a99, - 0xe88a9a, - 0xe88a9b, - 0xe88a9c, - 0xe88a9d, - 0xe88a9e, - 0xe88a9f, - 0xe88aa0, - 0xe88aa1, - 0xe88aa2, - 0xe88aa3, - 0xe88aa4, - 0xe88aa5, - 0xe88aa6, - 0xe88aa7, - 0xe88aa8, - 0xe88aa9, - 0xe88aaa, - 0xe88aab, - 0xe88aac, - 0xe88aad, - 0xe88aae, - 0xe88aaf, - 0xe88ab0, - 0xe88ab1, - 0xe88ab2, - 0xe88ab3, - 0xe88ab4, - 0xe88ab5, - 0xe88ab6, - 0xe88ab7, - 0xe88ab8, - 0xe88ab9, - 0xe88aba, - 0xe88abb, - 0xe88abc, - 0xe88abd, - 0xe88abe, - 0xe88abf, - 0xe88b80, - 0xe88b81, - 0xe88b82, - 0xe88b83, - 0xe88b84, - 0xe88b85, - 0xe88b86, - 0xe88b87, - 0xe88b88, - 0xe88b89, - 0xe88b8a, - 0xe88b8b, - 0xe88b8c, - 0xe88b8d, - 0xe88b8e, - 0xe88b8f, - 0xe88b90, - 0xe88b91, - 0xe88b92, - 0xe88b93, - 0xe88b94, - 0xe88b95, - 0xe88b96, - 0xe88b97, - 0xe88b98, - 0xe88b99, - 0xe88b9a, - 0xe88b9b, - 0xe88b9c, - 0xe88b9d, - 0xe88b9e, - 0xe88b9f, - 0xe88ba0, - 0xe88ba1, - 0xe88ba2, - 0xe88ba3, - 0xe88ba4, - 0xe88ba5, - 0xe88ba6, - 0xe88ba7, - 0xe88ba8, - 0xe88ba9, - 0xe88baa, - 0xe88bab, - 0xe88bac, - 0xe88bad, - 0xe88bae, - 0xe88baf, - 0xe88bb0, - 0xe88bb1, - 0xe88bb2, - 0xe88bb3, - 0xe88bb4, - 0xe88bb5, - 0xe88bb6, - 0xe88bb7, - 0xe88bb8, - 0xe88bb9, - 0xe88bba, - 0xe88bbb, - 0xe88bbc, - 0xe88bbd, - 0xe88bbe, - 0xe88bbf, - 0xe88c80, - 0xe88c81, - 0xe88c82, - 0xe88c83, - 0xe88c84, - 0xe88c85, - 0xe88c86, - 0xe88c87, - 0xe88c88, - 0xe88c89, - 0xe88c8a, - 0xe88c8b, - 0xe88c8c, - 0xe88c8d, - 0xe88c8e, - 0xe88c8f, - 0xe88c90, - 0xe88c91, - 0xe88c92, - 0xe88c93, - 0xe88c94, - 0xe88c95, - 0xe88c96, - 0xe88c97, - 0xe88c98, - 0xe88c99, - 0xe88c9a, - 0xe88c9b, - 0xe88c9c, - 0xe88c9d, - 0xe88c9e, - 0xe88c9f, - 0xe88ca0, - 0xe88ca1, - 0xe88ca2, - 0xe88ca3, - 0xe88ca4, - 0xe88ca5, - 0xe88ca6, - 0xe88ca7, - 0xe88ca8, - 0xe88ca9, - 0xe88caa, - 0xe88cab, - 0xe88cac, - 0xe88cad, - 0xe88cae, - 0xe88caf, - 0xe88cb0, - 0xe88cb1, - 0xe88cb2, - 0xe88cb3, - 0xe88cb4, - 0xe88cb5, - 0xe88cb6, - 0xe88cb7, - 0xe88cb8, - 0xe88cb9, - 0xe88cba, - 0xe88cbb, - 0xe88cbc, - 0xe88cbd, - 0xe88cbe, - 0xe88cbf, - 0xe88d80, - 0xe88d81, - 0xe88d82, - 0xe88d83, - 0xe88d84, - 0xe88d85, - 0xe88d86, - 0xe88d87, - 0xe88d88, - 0xe88d89, - 0xe88d8a, - 0xe88d8b, - 0xe88d8c, - 0xe88d8d, - 0xe88d8e, - 0xe88d8f, - 0xe88d90, - 0xe88d91, - 0xe88d92, - 0xe88d93, - 0xe88d94, - 0xe88d95, - 0xe88d96, - 0xe88d97, - 0xe88d98, - 0xe88d99, - 0xe88d9a, - 0xe88d9b, - 0xe88d9c, - 0xe88d9d, - 0xe88d9e, - 0xe88d9f, - 0xe88da0, - 0xe88da1, - 0xe88da2, - 0xe88da3, - 0xe88da4, - 0xe88da5, - 0xe88da6, - 0xe88da7, - 0xe88da8, - 0xe88da9, - 0xe88daa, - 0xe88dab, - 0xe88dac, - 0xe88dad, - 0xe88dae, - 0xe88daf, - 0xe88db0, - 0xe88db1, - 0xe88db2, - 0xe88db3, - 0xe88db4, - 0xe88db5, - 0xe88db6, - 0xe88db7, - 0xe88db8, - 0xe88db9, - 0xe88dba, - 0xe88dbb, - 0xe88dbc, - 0xe88dbd, - 0xe88dbe, - 0xe88dbf, - 0xe88e80, - 0xe88e81, - 0xe88e82, - 0xe88e83, - 0xe88e84, - 0xe88e85, - 0xe88e86, - 0xe88e87, - 0xe88e88, - 0xe88e89, - 0xe88e8a, - 0xe88e8b, - 0xe88e8c, - 0xe88e8d, - 0xe88e8e, - 0xe88e8f, - 0xe88e90, - 0xe88e91, - 0xe88e92, - 0xe88e93, - 0xe88e94, - 0xe88e95, - 0xe88e96, - 0xe88e97, - 0xe88e98, - 0xe88e99, - 0xe88e9a, - 0xe88e9b, - 0xe88e9c, - 0xe88e9d, - 0xe88e9e, - 0xe88e9f, - 0xe88ea0, - 0xe88ea1, - 0xe88ea2, - 0xe88ea3, - 0xe88ea4, - 0xe88ea5, - 0xe88ea6, - 0xe88ea7, - 0xe88ea8, - 0xe88ea9, - 0xe88eaa, - 0xe88eab, - 0xe88eac, - 0xe88ead, - 0xe88eae, - 0xe88eaf, - 0xe88eb0, - 0xe88eb1, - 0xe88eb2, - 0xe88eb3, - 0xe88eb4, - 0xe88eb5, - 0xe88eb6, - 0xe88eb7, - 0xe88eb8, - 0xe88eb9, - 0xe88eba, - 0xe88ebb, - 0xe88ebc, - 0xe88ebd, - 0xe88ebe, - 0xe88ebf, - 0xe88f80, - 0xe88f81, - 0xe88f82, - 0xe88f83, - 0xe88f84, - 0xe88f85, - 0xe88f86, - 0xe88f87, - 0xe88f88, - 0xe88f89, - 0xe88f8a, - 0xe88f8b, - 0xe88f8c, - 0xe88f8d, - 0xe88f8e, - 0xe88f8f, - 0xe88f90, - 0xe88f91, - 0xe88f92, - 0xe88f93, - 0xe88f94, - 0xe88f95, - 0xe88f96, - 0xe88f97, - 0xe88f98, - 0xe88f99, - 0xe88f9a, - 0xe88f9b, - 0xe88f9c, - 0xe88f9d, - 0xe88f9e, - 0xe88f9f, - 0xe88fa0, - 0xe88fa1, - 0xe88fa2, - 0xe88fa3, - 0xe88fa4, - 0xe88fa5, - 0xe88fa6, - 0xe88fa7, - 0xe88fa8, - 0xe88fa9, - 0xe88faa, - 0xe88fab, - 0xe88fac, - 0xe88fad, - 0xe88fae, - 0xe88faf, - 0xe88fb0, - 0xe88fb1, - 0xe88fb2, - 0xe88fb3, - 0xe88fb4, - 0xe88fb5, - 0xe88fb6, - 0xe88fb7, - 0xe88fb8, - 0xe88fb9, - 0xe88fba, - 0xe88fbb, - 0xe88fbc, - 0xe88fbd, - 0xe88fbe, - 0xe88fbf, - 0xe89080, - 0xe89081, - 0xe89082, - 0xe89083, - 0xe89084, - 0xe89085, - 0xe89086, - 0xe89087, - 0xe89088, - 0xe89089, - 0xe8908a, - 0xe8908b, - 0xe8908c, - 0xe8908d, - 0xe8908e, - 0xe8908f, - 0xe89090, - 0xe89091, - 0xe89092, - 0xe89093, - 0xe89094, - 0xe89095, - 0xe89096, - 0xe89097, - 0xe89098, - 0xe89099, - 0xe8909a, - 0xe8909b, - 0xe8909c, - 0xe8909d, - 0xe8909e, - 0xe8909f, - 0xe890a0, - 0xe890a1, - 0xe890a2, - 0xe890a3, - 0xe890a4, - 0xe890a5, - 0xe890a6, - 0xe890a7, - 0xe890a8, - 0xe890a9, - 0xe890aa, - 0xe890ab, - 0xe890ac, - 0xe890ad, - 0xe890ae, - 0xe890af, - 0xe890b0, - 0xe890b1, - 0xe890b2, - 0xe890b3, - 0xe890b4, - 0xe890b5, - 0xe890b6, - 0xe890b7, - 0xe890b8, - 0xe890b9, - 0xe890ba, - 0xe890bb, - 0xe890bc, - 0xe890bd, - 0xe890be, - 0xe890bf, - 0xe89180, - 0xe89181, - 0xe89182, - 0xe89183, - 0xe89184, - 0xe89185, - 0xe89186, - 0xe89187, - 0xe89188, - 0xe89189, - 0xe8918a, - 0xe8918b, - 0xe8918c, - 0xe8918d, - 0xe8918e, - 0xe8918f, - 0xe89190, - 0xe89191, - 0xe89192, - 0xe89193, - 0xe89194, - 0xe89195, - 0xe89196, - 0xe89197, - 0xe89198, - 0xe89199, - 0xe8919a, - 0xe8919b, - 0xe8919c, - 0xe8919d, - 0xe8919e, - 0xe8919f, - 0xe891a0, - 0xe891a1, - 0xe891a2, - 0xe891a3, - 0xe891a4, - 0xe891a5, - 0xe891a6, - 0xe891a7, - 0xe891a8, - 0xe891a9, - 0xe891aa, - 0xe891ab, - 0xe891ac, - 0xe891ad, - 0xe891ae, - 0xe891af, - 0xe891b0, - 0xe891b1, - 0xe891b2, - 0xe891b3, - 0xe891b4, - 0xe891b5, - 0xe891b6, - 0xe891b7, - 0xe891b8, - 0xe891b9, - 0xe891ba, - 0xe891bb, - 0xe891bc, - 0xe891bd, - 0xe891be, - 0xe891bf, - 0xe89280, - 0xe89281, - 0xe89282, - 0xe89283, - 0xe89284, - 0xe89285, - 0xe89286, - 0xe89287, - 0xe89288, - 0xe89289, - 0xe8928a, - 0xe8928b, - 0xe8928c, - 0xe8928d, - 0xe8928e, - 0xe8928f, - 0xe89290, - 0xe89291, - 0xe89292, - 0xe89293, - 0xe89294, - 0xe89295, - 0xe89296, - 0xe89297, - 0xe89298, - 0xe89299, - 0xe8929a, - 0xe8929b, - 0xe8929c, - 0xe8929d, - 0xe8929e, - 0xe8929f, - 0xe892a0, - 0xe892a1, - 0xe892a2, - 0xe892a3, - 0xe892a4, - 0xe892a5, - 0xe892a6, - 0xe892a7, - 0xe892a8, - 0xe892a9, - 0xe892aa, - 0xe892ab, - 0xe892ac, - 0xe892ad, - 0xe892ae, - 0xe892af, - 0xe892b0, - 0xe892b1, - 0xe892b2, - 0xe892b3, - 0xe892b4, - 0xe892b5, - 0xe892b6, - 0xe892b7, - 0xe892b8, - 0xe892b9, - 0xe892ba, - 0xe892bb, - 0xe892bc, - 0xe892bd, - 0xe892be, - 0xe892bf, - 0xe89380, - 0xe89381, - 0xe89382, - 0xe89383, - 0xe89384, - 0xe89385, - 0xe89386, - 0xe89387, - 0xe89388, - 0xe89389, - 0xe8938a, - 0xe8938b, - 0xe8938c, - 0xe8938d, - 0xe8938e, - 0xe8938f, - 0xe89390, - 0xe89391, - 0xe89392, - 0xe89393, - 0xe89394, - 0xe89395, - 0xe89396, - 0xe89397, - 0xe89398, - 0xe89399, - 0xe8939a, - 0xe8939b, - 0xe8939c, - 0xe8939d, - 0xe8939e, - 0xe8939f, - 0xe893a0, - 0xe893a1, - 0xe893a2, - 0xe893a3, - 0xe893a4, - 0xe893a5, - 0xe893a6, - 0xe893a7, - 0xe893a8, - 0xe893a9, - 0xe893aa, - 0xe893ab, - 0xe893ac, - 0xe893ad, - 0xe893ae, - 0xe893af, - 0xe893b0, - 0xe893b1, - 0xe893b2, - 0xe893b3, - 0xe893b4, - 0xe893b5, - 0xe893b6, - 0xe893b7, - 0xe893b8, - 0xe893b9, - 0xe893ba, - 0xe893bb, - 0xe893bc, - 0xe893bd, - 0xe893be, - 0xe893bf, - 0xe89480, - 0xe89481, - 0xe89482, - 0xe89483, - 0xe89484, - 0xe89485, - 0xe89486, - 0xe89487, - 0xe89488, - 0xe89489, - 0xe8948a, - 0xe8948b, - 0xe8948c, - 0xe8948d, - 0xe8948e, - 0xe8948f, - 0xe89490, - 0xe89491, - 0xe89492, - 0xe89493, - 0xe89494, - 0xe89495, - 0xe89496, - 0xe89497, - 0xe89498, - 0xe89499, - 0xe8949a, - 0xe8949b, - 0xe8949c, - 0xe8949d, - 0xe8949e, - 0xe8949f, - 0xe894a0, - 0xe894a1, - 0xe894a2, - 0xe894a3, - 0xe894a4, - 0xe894a5, - 0xe894a6, - 0xe894a7, - 0xe894a8, - 0xe894a9, - 0xe894aa, - 0xe894ab, - 0xe894ac, - 0xe894ad, - 0xe894ae, - 0xe894af, - 0xe894b0, - 0xe894b1, - 0xe894b2, - 0xe894b3, - 0xe894b4, - 0xe894b5, - 0xe894b6, - 0xe894b7, - 0xe894b8, - 0xe894b9, - 0xe894ba, - 0xe894bb, - 0xe894bc, - 0xe894bd, - 0xe894be, - 0xe894bf, - 0xe89580, - 0xe89581, - 0xe89582, - 0xe89583, - 0xe89584, - 0xe89585, - 0xe89586, - 0xe89587, - 0xe89588, - 0xe89589, - 0xe8958a, - 0xe8958b, - 0xe8958c, - 0xe8958d, - 0xe8958e, - 0xe8958f, - 0xe89590, - 0xe89591, - 0xe89592, - 0xe89593, - 0xe89594, - 0xe89595, - 0xe89596, - 0xe89597, - 0xe89598, - 0xe89599, - 0xe8959a, - 0xe8959b, - 0xe8959c, - 0xe8959d, - 0xe8959e, - 0xe8959f, - 0xe895a0, - 0xe895a1, - 0xe895a2, - 0xe895a3, - 0xe895a4, - 0xe895a5, - 0xe895a6, - 0xe895a7, - 0xe895a8, - 0xe895a9, - 0xe895aa, - 0xe895ab, - 0xe895ac, - 0xe895ad, - 0xe895ae, - 0xe895af, - 0xe895b0, - 0xe895b1, - 0xe895b2, - 0xe895b3, - 0xe895b4, - 0xe895b5, - 0xe895b6, - 0xe895b7, - 0xe895b8, - 0xe895b9, - 0xe895ba, - 0xe895bb, - 0xe895bc, - 0xe895bd, - 0xe895be, - 0xe895bf, - 0xe89680, - 0xe89681, - 0xe89682, - 0xe89683, - 0xe89684, - 0xe89685, - 0xe89686, - 0xe89687, - 0xe89688, - 0xe89689, - 0xe8968a, - 0xe8968b, - 0xe8968c, - 0xe8968d, - 0xe8968e, - 0xe8968f, - 0xe89690, - 0xe89691, - 0xe89692, - 0xe89693, - 0xe89694, - 0xe89695, - 0xe89696, - 0xe89697, - 0xe89698, - 0xe89699, - 0xe8969a, - 0xe8969b, - 0xe8969c, - 0xe8969d, - 0xe8969e, - 0xe8969f, - 0xe896a0, - 0xe896a1, - 0xe896a2, - 0xe896a3, - 0xe896a4, - 0xe896a5, - 0xe896a6, - 0xe896a7, - 0xe896a8, - 0xe896a9, - 0xe896aa, - 0xe896ab, - 0xe896ac, - 0xe896ad, - 0xe896ae, - 0xe896af, - 0xe896b0, - 0xe896b1, - 0xe896b2, - 0xe896b3, - 0xe896b4, - 0xe896b5, - 0xe896b6, - 0xe896b7, - 0xe896b8, - 0xe896b9, - 0xe896ba, - 0xe896bb, - 0xe896bc, - 0xe896bd, - 0xe896be, - 0xe896bf, - 0xe89780, - 0xe89781, - 0xe89782, - 0xe89783, - 0xe89784, - 0xe89785, - 0xe89786, - 0xe89787, - 0xe89788, - 0xe89789, - 0xe8978a, - 0xe8978b, - 0xe8978c, - 0xe8978d, - 0xe8978e, - 0xe8978f, - 0xe89790, - 0xe89791, - 0xe89792, - 0xe89793, - 0xe89794, - 0xe89795, - 0xe89796, - 0xe89797, - 0xe89798, - 0xe89799, - 0xe8979a, - 0xe8979b, - 0xe8979c, - 0xe8979d, - 0xe8979e, - 0xe8979f, - 0xe897a0, - 0xe897a1, - 0xe897a2, - 0xe897a3, - 0xe897a4, - 0xe897a5, - 0xe897a6, - 0xe897a7, - 0xe897a8, - 0xe897a9, - 0xe897aa, - 0xe897ab, - 0xe897ac, - 0xe897ad, - 0xe897ae, - 0xe897af, - 0xe897b0, - 0xe897b1, - 0xe897b2, - 0xe897b3, - 0xe897b4, - 0xe897b5, - 0xe897b6, - 0xe897b7, - 0xe897b8, - 0xe897b9, - 0xe897ba, - 0xe897bb, - 0xe897bc, - 0xe897bd, - 0xe897be, - 0xe897bf, - 0xe89880, - 0xe89881, - 0xe89882, - 0xe89883, - 0xe89884, - 0xe89885, - 0xe89886, - 0xe89887, - 0xe89888, - 0xe89889, - 0xe8988a, - 0xe8988b, - 0xe8988c, - 0xe8988d, - 0xe8988e, - 0xe8988f, - 0xe89890, - 0xe89891, - 0xe89892, - 0xe89893, - 0xe89894, - 0xe89895, - 0xe89896, - 0xe89897, - 0xe89898, - 0xe89899, - 0xe8989a, - 0xe8989b, - 0xe8989c, - 0xe8989d, - 0xe8989e, - 0xe8989f, - 0xe898a0, - 0xe898a1, - 0xe898a2, - 0xe898a3, - 0xe898a4, - 0xe898a5, - 0xe898a6, - 0xe898a7, - 0xe898a8, - 0xe898a9, - 0xe898aa, - 0xe898ab, - 0xe898ac, - 0xe898ad, - 0xe898ae, - 0xe898af, - 0xe898b0, - 0xe898b1, - 0xe898b2, - 0xe898b3, - 0xe898b4, - 0xe898b5, - 0xe898b6, - 0xe898b7, - 0xe898b8, - 0xe898b9, - 0xe898ba, - 0xe898bb, - 0xe898bc, - 0xe898bd, - 0xe898be, - 0xe898bf, - 0xe89980, - 0xe89981, - 0xe89982, - 0xe89983, - 0xe89984, - 0xe89985, - 0xe89986, - 0xe89987, - 0xe89988, - 0xe89989, - 0xe8998a, - 0xe8998b, - 0xe8998c, - 0xe8998d, - 0xe8998e, - 0xe8998f, - 0xe89990, - 0xe89991, - 0xe89992, - 0xe89993, - 0xe89994, - 0xe89995, - 0xe89996, - 0xe89997, - 0xe89998, - 0xe89999, - 0xe8999a, - 0xe8999b, - 0xe8999c, - 0xe8999d, - 0xe8999e, - 0xe8999f, - 0xe899a0, - 0xe899a1, - 0xe899a2, - 0xe899a3, - 0xe899a4, - 0xe899a5, - 0xe899a6, - 0xe899a7, - 0xe899a8, - 0xe899a9, - 0xe899aa, - 0xe899ab, - 0xe899ac, - 0xe899ad, - 0xe899ae, - 0xe899af, - 0xe899b0, - 0xe899b1, - 0xe899b2, - 0xe899b3, - 0xe899b4, - 0xe899b5, - 0xe899b6, - 0xe899b7, - 0xe899b8, - 0xe899b9, - 0xe899ba, - 0xe899bb, - 0xe899bc, - 0xe899bd, - 0xe899be, - 0xe899bf, - 0xe89a80, - 0xe89a81, - 0xe89a82, - 0xe89a83, - 0xe89a84, - 0xe89a85, - 0xe89a86, - 0xe89a87, - 0xe89a88, - 0xe89a89, - 0xe89a8a, - 0xe89a8b, - 0xe89a8c, - 0xe89a8d, - 0xe89a8e, - 0xe89a8f, - 0xe89a90, - 0xe89a91, - 0xe89a92, - 0xe89a93, - 0xe89a94, - 0xe89a95, - 0xe89a96, - 0xe89a97, - 0xe89a98, - 0xe89a99, - 0xe89a9a, - 0xe89a9b, - 0xe89a9c, - 0xe89a9d, - 0xe89a9e, - 0xe89a9f, - 0xe89aa0, - 0xe89aa1, - 0xe89aa2, - 0xe89aa3, - 0xe89aa4, - 0xe89aa5, - 0xe89aa6, - 0xe89aa7, - 0xe89aa8, - 0xe89aa9, - 0xe89aaa, - 0xe89aab, - 0xe89aac, - 0xe89aad, - 0xe89aae, - 0xe89aaf, - 0xe89ab0, - 0xe89ab1, - 0xe89ab2, - 0xe89ab3, - 0xe89ab4, - 0xe89ab5, - 0xe89ab6, - 0xe89ab7, - 0xe89ab8, - 0xe89ab9, - 0xe89aba, - 0xe89abb, - 0xe89abc, - 0xe89abd, - 0xe89abe, - 0xe89abf, - 0xe89b80, - 0xe89b81, - 0xe89b82, - 0xe89b83, - 0xe89b84, - 0xe89b85, - 0xe89b86, - 0xe89b87, - 0xe89b88, - 0xe89b89, - 0xe89b8a, - 0xe89b8b, - 0xe89b8c, - 0xe89b8d, - 0xe89b8e, - 0xe89b8f, - 0xe89b90, - 0xe89b91, - 0xe89b92, - 0xe89b93, - 0xe89b94, - 0xe89b95, - 0xe89b96, - 0xe89b97, - 0xe89b98, - 0xe89b99, - 0xe89b9a, - 0xe89b9b, - 0xe89b9c, - 0xe89b9d, - 0xe89b9e, - 0xe89b9f, - 0xe89ba0, - 0xe89ba1, - 0xe89ba2, - 0xe89ba3, - 0xe89ba4, - 0xe89ba5, - 0xe89ba6, - 0xe89ba7, - 0xe89ba8, - 0xe89ba9, - 0xe89baa, - 0xe89bab, - 0xe89bac, - 0xe89bad, - 0xe89bae, - 0xe89baf, - 0xe89bb0, - 0xe89bb1, - 0xe89bb2, - 0xe89bb3, - 0xe89bb4, - 0xe89bb5, - 0xe89bb6, - 0xe89bb7, - 0xe89bb8, - 0xe89bb9, - 0xe89bba, - 0xe89bbb, - 0xe89bbc, - 0xe89bbd, - 0xe89bbe, - 0xe89bbf, - 0xe89c80, - 0xe89c81, - 0xe89c82, - 0xe89c83, - 0xe89c84, - 0xe89c85, - 0xe89c86, - 0xe89c87, - 0xe89c88, - 0xe89c89, - 0xe89c8a, - 0xe89c8b, - 0xe89c8c, - 0xe89c8d, - 0xe89c8e, - 0xe89c8f, - 0xe89c90, - 0xe89c91, - 0xe89c92, - 0xe89c93, - 0xe89c94, - 0xe89c95, - 0xe89c96, - 0xe89c97, - 0xe89c98, - 0xe89c99, - 0xe89c9a, - 0xe89c9b, - 0xe89c9c, - 0xe89c9d, - 0xe89c9e, - 0xe89c9f, - 0xe89ca0, - 0xe89ca1, - 0xe89ca2, - 0xe89ca3, - 0xe89ca4, - 0xe89ca5, - 0xe89ca6, - 0xe89ca7, - 0xe89ca8, - 0xe89ca9, - 0xe89caa, - 0xe89cab, - 0xe89cac, - 0xe89cad, - 0xe89cae, - 0xe89caf, - 0xe89cb0, - 0xe89cb1, - 0xe89cb2, - 0xe89cb3, - 0xe89cb4, - 0xe89cb5, - 0xe89cb6, - 0xe89cb7, - 0xe89cb8, - 0xe89cb9, - 0xe89cba, - 0xe89cbb, - 0xe89cbc, - 0xe89cbd, - 0xe89cbe, - 0xe89cbf, - 0xe89d80, - 0xe89d81, - 0xe89d82, - 0xe89d83, - 0xe89d84, - 0xe89d85, - 0xe89d86, - 0xe89d87, - 0xe89d88, - 0xe89d89, - 0xe89d8a, - 0xe89d8b, - 0xe89d8c, - 0xe89d8d, - 0xe89d8e, - 0xe89d8f, - 0xe89d90, - 0xe89d91, - 0xe89d92, - 0xe89d93, - 0xe89d94, - 0xe89d95, - 0xe89d96, - 0xe89d97, - 0xe89d98, - 0xe89d99, - 0xe89d9a, - 0xe89d9b, - 0xe89d9c, - 0xe89d9d, - 0xe89d9e, - 0xe89d9f, - 0xe89da0, - 0xe89da1, - 0xe89da2, - 0xe89da3, - 0xe89da4, - 0xe89da5, - 0xe89da6, - 0xe89da7, - 0xe89da8, - 0xe89da9, - 0xe89daa, - 0xe89dab, - 0xe89dac, - 0xe89dad, - 0xe89dae, - 0xe89daf, - 0xe89db0, - 0xe89db1, - 0xe89db2, - 0xe89db3, - 0xe89db4, - 0xe89db5, - 0xe89db6, - 0xe89db7, - 0xe89db8, - 0xe89db9, - 0xe89dba, - 0xe89dbb, - 0xe89dbc, - 0xe89dbd, - 0xe89dbe, - 0xe89dbf, - 0xe89e80, - 0xe89e81, - 0xe89e82, - 0xe89e83, - 0xe89e84, - 0xe89e85, - 0xe89e86, - 0xe89e87, - 0xe89e88, - 0xe89e89, - 0xe89e8a, - 0xe89e8b, - 0xe89e8c, - 0xe89e8d, - 0xe89e8e, - 0xe89e8f, - 0xe89e90, - 0xe89e91, - 0xe89e92, - 0xe89e93, - 0xe89e94, - 0xe89e95, - 0xe89e96, - 0xe89e97, - 0xe89e98, - 0xe89e99, - 0xe89e9a, - 0xe89e9b, - 0xe89e9c, - 0xe89e9d, - 0xe89e9e, - 0xe89e9f, - 0xe89ea0, - 0xe89ea1, - 0xe89ea2, - 0xe89ea3, - 0xe89ea4, - 0xe89ea5, - 0xe89ea6, - 0xe89ea7, - 0xe89ea8, - 0xe89ea9, - 0xe89eaa, - 0xe89eab, - 0xe89eac, - 0xe89ead, - 0xe89eae, - 0xe89eaf, - 0xe89eb0, - 0xe89eb1, - 0xe89eb2, - 0xe89eb3, - 0xe89eb4, - 0xe89eb5, - 0xe89eb6, - 0xe89eb7, - 0xe89eb8, - 0xe89eb9, - 0xe89eba, - 0xe89ebb, - 0xe89ebc, - 0xe89ebd, - 0xe89ebe, - 0xe89ebf, - 0xe89f80, - 0xe89f81, - 0xe89f82, - 0xe89f83, - 0xe89f84, - 0xe89f85, - 0xe89f86, - 0xe89f87, - 0xe89f88, - 0xe89f89, - 0xe89f8a, - 0xe89f8b, - 0xe89f8c, - 0xe89f8d, - 0xe89f8e, - 0xe89f8f, - 0xe89f90, - 0xe89f91, - 0xe89f92, - 0xe89f93, - 0xe89f94, - 0xe89f95, - 0xe89f96, - 0xe89f97, - 0xe89f98, - 0xe89f99, - 0xe89f9a, - 0xe89f9b, - 0xe89f9c, - 0xe89f9d, - 0xe89f9e, - 0xe89f9f, - 0xe89fa0, - 0xe89fa1, - 0xe89fa2, - 0xe89fa3, - 0xe89fa4, - 0xe89fa5, - 0xe89fa6, - 0xe89fa7, - 0xe89fa8, - 0xe89fa9, - 0xe89faa, - 0xe89fab, - 0xe89fac, - 0xe89fad, - 0xe89fae, - 0xe89faf, - 0xe89fb0, - 0xe89fb1, - 0xe89fb2, - 0xe89fb3, - 0xe89fb4, - 0xe89fb5, - 0xe89fb6, - 0xe89fb7, - 0xe89fb8, - 0xe89fb9, - 0xe89fba, - 0xe89fbb, - 0xe89fbc, - 0xe89fbd, - 0xe89fbe, - 0xe89fbf, - 0xe8a080, - 0xe8a081, - 0xe8a082, - 0xe8a083, - 0xe8a084, - 0xe8a085, - 0xe8a086, - 0xe8a087, - 0xe8a088, - 0xe8a089, - 0xe8a08a, - 0xe8a08b, - 0xe8a08c, - 0xe8a08d, - 0xe8a08e, - 0xe8a08f, - 0xe8a090, - 0xe8a091, - 0xe8a092, - 0xe8a093, - 0xe8a094, - 0xe8a095, - 0xe8a096, - 0xe8a097, - 0xe8a098, - 0xe8a099, - 0xe8a09a, - 0xe8a09b, - 0xe8a09c, - 0xe8a09d, - 0xe8a09e, - 0xe8a09f, - 0xe8a0a0, - 0xe8a0a1, - 0xe8a0a2, - 0xe8a0a3, - 0xe8a0a4, - 0xe8a0a5, - 0xe8a0a6, - 0xe8a0a7, - 0xe8a0a8, - 0xe8a0a9, - 0xe8a0aa, - 0xe8a0ab, - 0xe8a0ac, - 0xe8a0ad, - 0xe8a0ae, - 0xe8a0af, - 0xe8a0b0, - 0xe8a0b1, - 0xe8a0b2, - 0xe8a0b3, - 0xe8a0b4, - 0xe8a0b5, - 0xe8a0b6, - 0xe8a0b7, - 0xe8a0b8, - 0xe8a0b9, - 0xe8a0ba, - 0xe8a0bb, - 0xe8a0bc, - 0xe8a0bd, - 0xe8a0be, - 0xe8a0bf, - 0xe8a180, - 0xe8a181, - 0xe8a182, - 0xe8a183, - 0xe8a184, - 0xe8a185, - 0xe8a186, - 0xe8a187, - 0xe8a188, - 0xe8a189, - 0xe8a18a, - 0xe8a18b, - 0xe8a18c, - 0xe8a18d, - 0xe8a18e, - 0xe8a18f, - 0xe8a190, - 0xe8a191, - 0xe8a192, - 0xe8a193, - 0xe8a194, - 0xe8a195, - 0xe8a196, - 0xe8a197, - 0xe8a198, - 0xe8a199, - 0xe8a19a, - 0xe8a19b, - 0xe8a19c, - 0xe8a19d, - 0xe8a19e, - 0xe8a19f, - 0xe8a1a0, - 0xe8a1a1, - 0xe8a1a2, - 0xe8a1a3, - 0xe8a1a4, - 0xe8a1a5, - 0xe8a1a6, - 0xe8a1a7, - 0xe8a1a8, - 0xe8a1a9, - 0xe8a1aa, - 0xe8a1ab, - 0xe8a1ac, - 0xe8a1ad, - 0xe8a1ae, - 0xe8a1af, - 0xe8a1b0, - 0xe8a1b1, - 0xe8a1b2, - 0xe8a1b3, - 0xe8a1b4, - 0xe8a1b5, - 0xe8a1b6, - 0xe8a1b7, - 0xe8a1b8, - 0xe8a1b9, - 0xe8a1ba, - 0xe8a1bb, - 0xe8a1bc, - 0xe8a1bd, - 0xe8a1be, - 0xe8a1bf, - 0xe8a280, - 0xe8a281, - 0xe8a282, - 0xe8a283, - 0xe8a284, - 0xe8a285, - 0xe8a286, - 0xe8a287, - 0xe8a288, - 0xe8a289, - 0xe8a28a, - 0xe8a28b, - 0xe8a28c, - 0xe8a28d, - 0xe8a28e, - 0xe8a28f, - 0xe8a290, - 0xe8a291, - 0xe8a292, - 0xe8a293, - 0xe8a294, - 0xe8a295, - 0xe8a296, - 0xe8a297, - 0xe8a298, - 0xe8a299, - 0xe8a29a, - 0xe8a29b, - 0xe8a29c, - 0xe8a29d, - 0xe8a29e, - 0xe8a29f, - 0xe8a2a0, - 0xe8a2a1, - 0xe8a2a2, - 0xe8a2a3, - 0xe8a2a4, - 0xe8a2a5, - 0xe8a2a6, - 0xe8a2a7, - 0xe8a2a8, - 0xe8a2a9, - 0xe8a2aa, - 0xe8a2ab, - 0xe8a2ac, - 0xe8a2ad, - 0xe8a2ae, - 0xe8a2af, - 0xe8a2b0, - 0xe8a2b1, - 0xe8a2b2, - 0xe8a2b3, - 0xe8a2b4, - 0xe8a2b5, - 0xe8a2b6, - 0xe8a2b7, - 0xe8a2b8, - 0xe8a2b9, - 0xe8a2ba, - 0xe8a2bb, - 0xe8a2bc, - 0xe8a2bd, - 0xe8a2be, - 0xe8a2bf, - 0xe8a380, - 0xe8a381, - 0xe8a382, - 0xe8a383, - 0xe8a384, - 0xe8a385, - 0xe8a386, - 0xe8a387, - 0xe8a388, - 0xe8a389, - 0xe8a38a, - 0xe8a38b, - 0xe8a38c, - 0xe8a38d, - 0xe8a38e, - 0xe8a38f, - 0xe8a390, - 0xe8a391, - 0xe8a392, - 0xe8a393, - 0xe8a394, - 0xe8a395, - 0xe8a396, - 0xe8a397, - 0xe8a398, - 0xe8a399, - 0xe8a39a, - 0xe8a39b, - 0xe8a39c, - 0xe8a39d, - 0xe8a39e, - 0xe8a39f, - 0xe8a3a0, - 0xe8a3a1, - 0xe8a3a2, - 0xe8a3a3, - 0xe8a3a4, - 0xe8a3a5, - 0xe8a3a6, - 0xe8a3a7, - 0xe8a3a8, - 0xe8a3a9, - 0xe8a3aa, - 0xe8a3ab, - 0xe8a3ac, - 0xe8a3ad, - 0xe8a3ae, - 0xe8a3af, - 0xe8a3b0, - 0xe8a3b1, - 0xe8a3b2, - 0xe8a3b3, - 0xe8a3b4, - 0xe8a3b5, - 0xe8a3b6, - 0xe8a3b7, - 0xe8a3b8, - 0xe8a3b9, - 0xe8a3ba, - 0xe8a3bb, - 0xe8a3bc, - 0xe8a3bd, - 0xe8a3be, - 0xe8a3bf, - 0xe8a480, - 0xe8a481, - 0xe8a482, - 0xe8a483, - 0xe8a484, - 0xe8a485, - 0xe8a486, - 0xe8a487, - 0xe8a488, - 0xe8a489, - 0xe8a48a, - 0xe8a48b, - 0xe8a48c, - 0xe8a48d, - 0xe8a48e, - 0xe8a48f, - 0xe8a490, - 0xe8a491, - 0xe8a492, - 0xe8a493, - 0xe8a494, - 0xe8a495, - 0xe8a496, - 0xe8a497, - 0xe8a498, - 0xe8a499, - 0xe8a49a, - 0xe8a49b, - 0xe8a49c, - 0xe8a49d, - 0xe8a49e, - 0xe8a49f, - 0xe8a4a0, - 0xe8a4a1, - 0xe8a4a2, - 0xe8a4a3, - 0xe8a4a4, - 0xe8a4a5, - 0xe8a4a6, - 0xe8a4a7, - 0xe8a4a8, - 0xe8a4a9, - 0xe8a4aa, - 0xe8a4ab, - 0xe8a4ac, - 0xe8a4ad, - 0xe8a4ae, - 0xe8a4af, - 0xe8a4b0, - 0xe8a4b1, - 0xe8a4b2, - 0xe8a4b3, - 0xe8a4b4, - 0xe8a4b5, - 0xe8a4b6, - 0xe8a4b7, - 0xe8a4b8, - 0xe8a4b9, - 0xe8a4ba, - 0xe8a4bb, - 0xe8a4bc, - 0xe8a4bd, - 0xe8a4be, - 0xe8a4bf, - 0xe8a580, - 0xe8a581, - 0xe8a582, - 0xe8a583, - 0xe8a584, - 0xe8a585, - 0xe8a586, - 0xe8a587, - 0xe8a588, - 0xe8a589, - 0xe8a58a, - 0xe8a58b, - 0xe8a58c, - 0xe8a58d, - 0xe8a58e, - 0xe8a58f, - 0xe8a590, - 0xe8a591, - 0xe8a592, - 0xe8a593, - 0xe8a594, - 0xe8a595, - 0xe8a596, - 0xe8a597, - 0xe8a598, - 0xe8a599, - 0xe8a59a, - 0xe8a59b, - 0xe8a59c, - 0xe8a59d, - 0xe8a59e, - 0xe8a59f, - 0xe8a5a0, - 0xe8a5a1, - 0xe8a5a2, - 0xe8a5a3, - 0xe8a5a4, - 0xe8a5a5, - 0xe8a5a6, - 0xe8a5a7, - 0xe8a5a8, - 0xe8a5a9, - 0xe8a5aa, - 0xe8a5ab, - 0xe8a5ac, - 0xe8a5ad, - 0xe8a5ae, - 0xe8a5af, - 0xe8a5b0, - 0xe8a5b1, - 0xe8a5b2, - 0xe8a5b3, - 0xe8a5b4, - 0xe8a5b5, - 0xe8a5b6, - 0xe8a5b7, - 0xe8a5b8, - 0xe8a5b9, - 0xe8a5ba, - 0xe8a5bb, - 0xe8a5bc, - 0xe8a5bd, - 0xe8a5be, - 0xe8a5bf, - 0xe8a680, - 0xe8a681, - 0xe8a682, - 0xe8a683, - 0xe8a684, - 0xe8a685, - 0xe8a686, - 0xe8a687, - 0xe8a688, - 0xe8a689, - 0xe8a68a, - 0xe8a68b, - 0xe8a68c, - 0xe8a68d, - 0xe8a68e, - 0xe8a68f, - 0xe8a690, - 0xe8a691, - 0xe8a692, - 0xe8a693, - 0xe8a694, - 0xe8a695, - 0xe8a696, - 0xe8a697, - 0xe8a698, - 0xe8a699, - 0xe8a69a, - 0xe8a69b, - 0xe8a69c, - 0xe8a69d, - 0xe8a69e, - 0xe8a69f, - 0xe8a6a0, - 0xe8a6a1, - 0xe8a6a2, - 0xe8a6a3, - 0xe8a6a4, - 0xe8a6a5, - 0xe8a6a6, - 0xe8a6a7, - 0xe8a6a8, - 0xe8a6a9, - 0xe8a6aa, - 0xe8a6ab, - 0xe8a6ac, - 0xe8a6ad, - 0xe8a6ae, - 0xe8a6af, - 0xe8a6b0, - 0xe8a6b1, - 0xe8a6b2, - 0xe8a6b3, - 0xe8a6b4, - 0xe8a6b5, - 0xe8a6b6, - 0xe8a6b7, - 0xe8a6b8, - 0xe8a6b9, - 0xe8a6ba, - 0xe8a6bb, - 0xe8a6bc, - 0xe8a6bd, - 0xe8a6be, - 0xe8a6bf, - 0xe8a780, - 0xe8a781, - 0xe8a782, - 0xe8a783, - 0xe8a784, - 0xe8a785, - 0xe8a786, - 0xe8a787, - 0xe8a788, - 0xe8a789, - 0xe8a78a, - 0xe8a78b, - 0xe8a78c, - 0xe8a78d, - 0xe8a78e, - 0xe8a78f, - 0xe8a790, - 0xe8a791, - 0xe8a792, - 0xe8a793, - 0xe8a794, - 0xe8a795, - 0xe8a796, - 0xe8a797, - 0xe8a798, - 0xe8a799, - 0xe8a79a, - 0xe8a79b, - 0xe8a79c, - 0xe8a79d, - 0xe8a79e, - 0xe8a79f, - 0xe8a7a0, - 0xe8a7a1, - 0xe8a7a2, - 0xe8a7a3, - 0xe8a7a4, - 0xe8a7a5, - 0xe8a7a6, - 0xe8a7a7, - 0xe8a7a8, - 0xe8a7a9, - 0xe8a7aa, - 0xe8a7ab, - 0xe8a7ac, - 0xe8a7ad, - 0xe8a7ae, - 0xe8a7af, - 0xe8a7b0, - 0xe8a7b1, - 0xe8a7b2, - 0xe8a7b3, - 0xe8a7b4, - 0xe8a7b5, - 0xe8a7b6, - 0xe8a7b7, - 0xe8a7b8, - 0xe8a7b9, - 0xe8a7ba, - 0xe8a7bb, - 0xe8a7bc, - 0xe8a7bd, - 0xe8a7be, - 0xe8a7bf, - 0xe8a880, - 0xe8a881, - 0xe8a882, - 0xe8a883, - 0xe8a884, - 0xe8a885, - 0xe8a886, - 0xe8a887, - 0xe8a888, - 0xe8a889, - 0xe8a88a, - 0xe8a88b, - 0xe8a88c, - 0xe8a88d, - 0xe8a88e, - 0xe8a88f, - 0xe8a890, - 0xe8a891, - 0xe8a892, - 0xe8a893, - 0xe8a894, - 0xe8a895, - 0xe8a896, - 0xe8a897, - 0xe8a898, - 0xe8a899, - 0xe8a89a, - 0xe8a89b, - 0xe8a89c, - 0xe8a89d, - 0xe8a89e, - 0xe8a89f, - 0xe8a8a0, - 0xe8a8a1, - 0xe8a8a2, - 0xe8a8a3, - 0xe8a8a4, - 0xe8a8a5, - 0xe8a8a6, - 0xe8a8a7, - 0xe8a8a8, - 0xe8a8a9, - 0xe8a8aa, - 0xe8a8ab, - 0xe8a8ac, - 0xe8a8ad, - 0xe8a8ae, - 0xe8a8af, - 0xe8a8b0, - 0xe8a8b1, - 0xe8a8b2, - 0xe8a8b3, - 0xe8a8b4, - 0xe8a8b5, - 0xe8a8b6, - 0xe8a8b7, - 0xe8a8b8, - 0xe8a8b9, - 0xe8a8ba, - 0xe8a8bb, - 0xe8a8bc, - 0xe8a8bd, - 0xe8a8be, - 0xe8a8bf, - 0xe8a980, - 0xe8a981, - 0xe8a982, - 0xe8a983, - 0xe8a984, - 0xe8a985, - 0xe8a986, - 0xe8a987, - 0xe8a988, - 0xe8a989, - 0xe8a98a, - 0xe8a98b, - 0xe8a98c, - 0xe8a98d, - 0xe8a98e, - 0xe8a98f, - 0xe8a990, - 0xe8a991, - 0xe8a992, - 0xe8a993, - 0xe8a994, - 0xe8a995, - 0xe8a996, - 0xe8a997, - 0xe8a998, - 0xe8a999, - 0xe8a99a, - 0xe8a99b, - 0xe8a99c, - 0xe8a99d, - 0xe8a99e, - 0xe8a99f, - 0xe8a9a0, - 0xe8a9a1, - 0xe8a9a2, - 0xe8a9a3, - 0xe8a9a4, - 0xe8a9a5, - 0xe8a9a6, - 0xe8a9a7, - 0xe8a9a8, - 0xe8a9a9, - 0xe8a9aa, - 0xe8a9ab, - 0xe8a9ac, - 0xe8a9ad, - 0xe8a9ae, - 0xe8a9af, - 0xe8a9b0, - 0xe8a9b1, - 0xe8a9b2, - 0xe8a9b3, - 0xe8a9b4, - 0xe8a9b5, - 0xe8a9b6, - 0xe8a9b7, - 0xe8a9b8, - 0xe8a9b9, - 0xe8a9ba, - 0xe8a9bb, - 0xe8a9bc, - 0xe8a9bd, - 0xe8a9be, - 0xe8a9bf, - 0xe8aa80, - 0xe8aa81, - 0xe8aa82, - 0xe8aa83, - 0xe8aa84, - 0xe8aa85, - 0xe8aa86, - 0xe8aa87, - 0xe8aa88, - 0xe8aa89, - 0xe8aa8a, - 0xe8aa8b, - 0xe8aa8c, - 0xe8aa8d, - 0xe8aa8e, - 0xe8aa8f, - 0xe8aa90, - 0xe8aa91, - 0xe8aa92, - 0xe8aa93, - 0xe8aa94, - 0xe8aa95, - 0xe8aa96, - 0xe8aa97, - 0xe8aa98, - 0xe8aa99, - 0xe8aa9a, - 0xe8aa9b, - 0xe8aa9c, - 0xe8aa9d, - 0xe8aa9e, - 0xe8aa9f, - 0xe8aaa0, - 0xe8aaa1, - 0xe8aaa2, - 0xe8aaa3, - 0xe8aaa4, - 0xe8aaa5, - 0xe8aaa6, - 0xe8aaa7, - 0xe8aaa8, - 0xe8aaa9, - 0xe8aaaa, - 0xe8aaab, - 0xe8aaac, - 0xe8aaad, - 0xe8aaae, - 0xe8aaaf, - 0xe8aab0, - 0xe8aab1, - 0xe8aab2, - 0xe8aab3, - 0xe8aab4, - 0xe8aab5, - 0xe8aab6, - 0xe8aab7, - 0xe8aab8, - 0xe8aab9, - 0xe8aaba, - 0xe8aabb, - 0xe8aabc, - 0xe8aabd, - 0xe8aabe, - 0xe8aabf, - 0xe8ab80, - 0xe8ab81, - 0xe8ab82, - 0xe8ab83, - 0xe8ab84, - 0xe8ab85, - 0xe8ab86, - 0xe8ab87, - 0xe8ab88, - 0xe8ab89, - 0xe8ab8a, - 0xe8ab8b, - 0xe8ab8c, - 0xe8ab8d, - 0xe8ab8e, - 0xe8ab8f, - 0xe8ab90, - 0xe8ab91, - 0xe8ab92, - 0xe8ab93, - 0xe8ab94, - 0xe8ab95, - 0xe8ab96, - 0xe8ab97, - 0xe8ab98, - 0xe8ab99, - 0xe8ab9a, - 0xe8ab9b, - 0xe8ab9c, - 0xe8ab9d, - 0xe8ab9e, - 0xe8ab9f, - 0xe8aba0, - 0xe8aba1, - 0xe8aba2, - 0xe8aba3, - 0xe8aba4, - 0xe8aba5, - 0xe8aba6, - 0xe8aba7, - 0xe8aba8, - 0xe8aba9, - 0xe8abaa, - 0xe8abab, - 0xe8abac, - 0xe8abad, - 0xe8abae, - 0xe8abaf, - 0xe8abb0, - 0xe8abb1, - 0xe8abb2, - 0xe8abb3, - 0xe8abb4, - 0xe8abb5, - 0xe8abb6, - 0xe8abb7, - 0xe8abb8, - 0xe8abb9, - 0xe8abba, - 0xe8abbb, - 0xe8abbc, - 0xe8abbd, - 0xe8abbe, - 0xe8abbf, - 0xe8ac80, - 0xe8ac81, - 0xe8ac82, - 0xe8ac83, - 0xe8ac84, - 0xe8ac85, - 0xe8ac86, - 0xe8ac87, - 0xe8ac88, - 0xe8ac89, - 0xe8ac8a, - 0xe8ac8b, - 0xe8ac8c, - 0xe8ac8d, - 0xe8ac8e, - 0xe8ac8f, - 0xe8ac90, - 0xe8ac91, - 0xe8ac92, - 0xe8ac93, - 0xe8ac94, - 0xe8ac95, - 0xe8ac96, - 0xe8ac97, - 0xe8ac98, - 0xe8ac99, - 0xe8ac9a, - 0xe8ac9b, - 0xe8ac9c, - 0xe8ac9d, - 0xe8ac9e, - 0xe8ac9f, - 0xe8aca0, - 0xe8aca1, - 0xe8aca2, - 0xe8aca3, - 0xe8aca4, - 0xe8aca5, - 0xe8aca6, - 0xe8aca7, - 0xe8aca8, - 0xe8aca9, - 0xe8acaa, - 0xe8acab, - 0xe8acac, - 0xe8acad, - 0xe8acae, - 0xe8acaf, - 0xe8acb0, - 0xe8acb1, - 0xe8acb2, - 0xe8acb3, - 0xe8acb4, - 0xe8acb5, - 0xe8acb6, - 0xe8acb7, - 0xe8acb8, - 0xe8acb9, - 0xe8acba, - 0xe8acbb, - 0xe8acbc, - 0xe8acbd, - 0xe8acbe, - 0xe8acbf, - 0xe8ad80, - 0xe8ad81, - 0xe8ad82, - 0xe8ad83, - 0xe8ad84, - 0xe8ad85, - 0xe8ad86, - 0xe8ad87, - 0xe8ad88, - 0xe8ad89, - 0xe8ad8a, - 0xe8ad8b, - 0xe8ad8c, - 0xe8ad8d, - 0xe8ad8e, - 0xe8ad8f, - 0xe8ad90, - 0xe8ad91, - 0xe8ad92, - 0xe8ad93, - 0xe8ad94, - 0xe8ad95, - 0xe8ad96, - 0xe8ad97, - 0xe8ad98, - 0xe8ad99, - 0xe8ad9a, - 0xe8ad9b, - 0xe8ad9c, - 0xe8ad9d, - 0xe8ad9e, - 0xe8ad9f, - 0xe8ada0, - 0xe8ada1, - 0xe8ada2, - 0xe8ada3, - 0xe8ada4, - 0xe8ada5, - 0xe8ada6, - 0xe8ada7, - 0xe8ada8, - 0xe8ada9, - 0xe8adaa, - 0xe8adab, - 0xe8adac, - 0xe8adad, - 0xe8adae, - 0xe8adaf, - 0xe8adb0, - 0xe8adb1, - 0xe8adb2, - 0xe8adb3, - 0xe8adb4, - 0xe8adb5, - 0xe8adb6, - 0xe8adb7, - 0xe8adb8, - 0xe8adb9, - 0xe8adba, - 0xe8adbb, - 0xe8adbc, - 0xe8adbd, - 0xe8adbe, - 0xe8adbf, - 0xe8ae80, - 0xe8ae81, - 0xe8ae82, - 0xe8ae83, - 0xe8ae84, - 0xe8ae85, - 0xe8ae86, - 0xe8ae87, - 0xe8ae88, - 0xe8ae89, - 0xe8ae8a, - 0xe8ae8b, - 0xe8ae8c, - 0xe8ae8d, - 0xe8ae8e, - 0xe8ae8f, - 0xe8ae90, - 0xe8ae91, - 0xe8ae92, - 0xe8ae93, - 0xe8ae94, - 0xe8ae95, - 0xe8ae96, - 0xe8ae97, - 0xe8ae98, - 0xe8ae99, - 0xe8ae9a, - 0xe8ae9b, - 0xe8ae9c, - 0xe8ae9d, - 0xe8ae9e, - 0xe8ae9f, - 0xe8aea0, - 0xe8aea1, - 0xe8aea2, - 0xe8aea3, - 0xe8aea4, - 0xe8aea5, - 0xe8aea6, - 0xe8aea7, - 0xe8aea8, - 0xe8aea9, - 0xe8aeaa, - 0xe8aeab, - 0xe8aeac, - 0xe8aead, - 0xe8aeae, - 0xe8aeaf, - 0xe8aeb0, - 0xe8aeb1, - 0xe8aeb2, - 0xe8aeb3, - 0xe8aeb4, - 0xe8aeb5, - 0xe8aeb6, - 0xe8aeb7, - 0xe8aeb8, - 0xe8aeb9, - 0xe8aeba, - 0xe8aebb, - 0xe8aebc, - 0xe8aebd, - 0xe8aebe, - 0xe8aebf, - 0xe8af80, - 0xe8af81, - 0xe8af82, - 0xe8af83, - 0xe8af84, - 0xe8af85, - 0xe8af86, - 0xe8af87, - 0xe8af88, - 0xe8af89, - 0xe8af8a, - 0xe8af8b, - 0xe8af8c, - 0xe8af8d, - 0xe8af8e, - 0xe8af8f, - 0xe8af90, - 0xe8af91, - 0xe8af92, - 0xe8af93, - 0xe8af94, - 0xe8af95, - 0xe8af96, - 0xe8af97, - 0xe8af98, - 0xe8af99, - 0xe8af9a, - 0xe8af9b, - 0xe8af9c, - 0xe8af9d, - 0xe8af9e, - 0xe8af9f, - 0xe8afa0, - 0xe8afa1, - 0xe8afa2, - 0xe8afa3, - 0xe8afa4, - 0xe8afa5, - 0xe8afa6, - 0xe8afa7, - 0xe8afa8, - 0xe8afa9, - 0xe8afaa, - 0xe8afab, - 0xe8afac, - 0xe8afad, - 0xe8afae, - 0xe8afaf, - 0xe8afb0, - 0xe8afb1, - 0xe8afb2, - 0xe8afb3, - 0xe8afb4, - 0xe8afb5, - 0xe8afb6, - 0xe8afb7, - 0xe8afb8, - 0xe8afb9, - 0xe8afba, - 0xe8afbb, - 0xe8afbc, - 0xe8afbd, - 0xe8afbe, - 0xe8afbf, - 0xe8b080, - 0xe8b081, - 0xe8b082, - 0xe8b083, - 0xe8b084, - 0xe8b085, - 0xe8b086, - 0xe8b087, - 0xe8b088, - 0xe8b089, - 0xe8b08a, - 0xe8b08b, - 0xe8b08c, - 0xe8b08d, - 0xe8b08e, - 0xe8b08f, - 0xe8b090, - 0xe8b091, - 0xe8b092, - 0xe8b093, - 0xe8b094, - 0xe8b095, - 0xe8b096, - 0xe8b097, - 0xe8b098, - 0xe8b099, - 0xe8b09a, - 0xe8b09b, - 0xe8b09c, - 0xe8b09d, - 0xe8b09e, - 0xe8b09f, - 0xe8b0a0, - 0xe8b0a1, - 0xe8b0a2, - 0xe8b0a3, - 0xe8b0a4, - 0xe8b0a5, - 0xe8b0a6, - 0xe8b0a7, - 0xe8b0a8, - 0xe8b0a9, - 0xe8b0aa, - 0xe8b0ab, - 0xe8b0ac, - 0xe8b0ad, - 0xe8b0ae, - 0xe8b0af, - 0xe8b0b0, - 0xe8b0b1, - 0xe8b0b2, - 0xe8b0b3, - 0xe8b0b4, - 0xe8b0b5, - 0xe8b0b6, - 0xe8b0b7, - 0xe8b0b8, - 0xe8b0b9, - 0xe8b0ba, - 0xe8b0bb, - 0xe8b0bc, - 0xe8b0bd, - 0xe8b0be, - 0xe8b0bf, - 0xe8b180, - 0xe8b181, - 0xe8b182, - 0xe8b183, - 0xe8b184, - 0xe8b185, - 0xe8b186, - 0xe8b187, - 0xe8b188, - 0xe8b189, - 0xe8b18a, - 0xe8b18b, - 0xe8b18c, - 0xe8b18d, - 0xe8b18e, - 0xe8b18f, - 0xe8b190, - 0xe8b191, - 0xe8b192, - 0xe8b193, - 0xe8b194, - 0xe8b195, - 0xe8b196, - 0xe8b197, - 0xe8b198, - 0xe8b199, - 0xe8b19a, - 0xe8b19b, - 0xe8b19c, - 0xe8b19d, - 0xe8b19e, - 0xe8b19f, - 0xe8b1a0, - 0xe8b1a1, - 0xe8b1a2, - 0xe8b1a3, - 0xe8b1a4, - 0xe8b1a5, - 0xe8b1a6, - 0xe8b1a7, - 0xe8b1a8, - 0xe8b1a9, - 0xe8b1aa, - 0xe8b1ab, - 0xe8b1ac, - 0xe8b1ad, - 0xe8b1ae, - 0xe8b1af, - 0xe8b1b0, - 0xe8b1b1, - 0xe8b1b2, - 0xe8b1b3, - 0xe8b1b4, - 0xe8b1b5, - 0xe8b1b6, - 0xe8b1b7, - 0xe8b1b8, - 0xe8b1b9, - 0xe8b1ba, - 0xe8b1bb, - 0xe8b1bc, - 0xe8b1bd, - 0xe8b1be, - 0xe8b1bf, - 0xe8b280, - 0xe8b281, - 0xe8b282, - 0xe8b283, - 0xe8b284, - 0xe8b285, - 0xe8b286, - 0xe8b287, - 0xe8b288, - 0xe8b289, - 0xe8b28a, - 0xe8b28b, - 0xe8b28c, - 0xe8b28d, - 0xe8b28e, - 0xe8b28f, - 0xe8b290, - 0xe8b291, - 0xe8b292, - 0xe8b293, - 0xe8b294, - 0xe8b295, - 0xe8b296, - 0xe8b297, - 0xe8b298, - 0xe8b299, - 0xe8b29a, - 0xe8b29b, - 0xe8b29c, - 0xe8b29d, - 0xe8b29e, - 0xe8b29f, - 0xe8b2a0, - 0xe8b2a1, - 0xe8b2a2, - 0xe8b2a3, - 0xe8b2a4, - 0xe8b2a5, - 0xe8b2a6, - 0xe8b2a7, - 0xe8b2a8, - 0xe8b2a9, - 0xe8b2aa, - 0xe8b2ab, - 0xe8b2ac, - 0xe8b2ad, - 0xe8b2ae, - 0xe8b2af, - 0xe8b2b0, - 0xe8b2b1, - 0xe8b2b2, - 0xe8b2b3, - 0xe8b2b4, - 0xe8b2b5, - 0xe8b2b6, - 0xe8b2b7, - 0xe8b2b8, - 0xe8b2b9, - 0xe8b2ba, - 0xe8b2bb, - 0xe8b2bc, - 0xe8b2bd, - 0xe8b2be, - 0xe8b2bf, - 0xe8b380, - 0xe8b381, - 0xe8b382, - 0xe8b383, - 0xe8b384, - 0xe8b385, - 0xe8b386, - 0xe8b387, - 0xe8b388, - 0xe8b389, - 0xe8b38a, - 0xe8b38b, - 0xe8b38c, - 0xe8b38d, - 0xe8b38e, - 0xe8b38f, - 0xe8b390, - 0xe8b391, - 0xe8b392, - 0xe8b393, - 0xe8b394, - 0xe8b395, - 0xe8b396, - 0xe8b397, - 0xe8b398, - 0xe8b399, - 0xe8b39a, - 0xe8b39b, - 0xe8b39c, - 0xe8b39d, - 0xe8b39e, - 0xe8b39f, - 0xe8b3a0, - 0xe8b3a1, - 0xe8b3a2, - 0xe8b3a3, - 0xe8b3a4, - 0xe8b3a5, - 0xe8b3a6, - 0xe8b3a7, - 0xe8b3a8, - 0xe8b3a9, - 0xe8b3aa, - 0xe8b3ab, - 0xe8b3ac, - 0xe8b3ad, - 0xe8b3ae, - 0xe8b3af, - 0xe8b3b0, - 0xe8b3b1, - 0xe8b3b2, - 0xe8b3b3, - 0xe8b3b4, - 0xe8b3b5, - 0xe8b3b6, - 0xe8b3b7, - 0xe8b3b8, - 0xe8b3b9, - 0xe8b3ba, - 0xe8b3bb, - 0xe8b3bc, - 0xe8b3bd, - 0xe8b3be, - 0xe8b3bf, - 0xe8b480, - 0xe8b481, - 0xe8b482, - 0xe8b483, - 0xe8b484, - 0xe8b485, - 0xe8b486, - 0xe8b487, - 0xe8b488, - 0xe8b489, - 0xe8b48a, - 0xe8b48b, - 0xe8b48c, - 0xe8b48d, - 0xe8b48e, - 0xe8b48f, - 0xe8b490, - 0xe8b491, - 0xe8b492, - 0xe8b493, - 0xe8b494, - 0xe8b495, - 0xe8b496, - 0xe8b497, - 0xe8b498, - 0xe8b499, - 0xe8b49a, - 0xe8b49b, - 0xe8b49c, - 0xe8b49d, - 0xe8b49e, - 0xe8b49f, - 0xe8b4a0, - 0xe8b4a1, - 0xe8b4a2, - 0xe8b4a3, - 0xe8b4a4, - 0xe8b4a5, - 0xe8b4a6, - 0xe8b4a7, - 0xe8b4a8, - 0xe8b4a9, - 0xe8b4aa, - 0xe8b4ab, - 0xe8b4ac, - 0xe8b4ad, - 0xe8b4ae, - 0xe8b4af, - 0xe8b4b0, - 0xe8b4b1, - 0xe8b4b2, - 0xe8b4b3, - 0xe8b4b4, - 0xe8b4b5, - 0xe8b4b6, - 0xe8b4b7, - 0xe8b4b8, - 0xe8b4b9, - 0xe8b4ba, - 0xe8b4bb, - 0xe8b4bc, - 0xe8b4bd, - 0xe8b4be, - 0xe8b4bf, - 0xe8b580, - 0xe8b581, - 0xe8b582, - 0xe8b583, - 0xe8b584, - 0xe8b585, - 0xe8b586, - 0xe8b587, - 0xe8b588, - 0xe8b589, - 0xe8b58a, - 0xe8b58b, - 0xe8b58c, - 0xe8b58d, - 0xe8b58e, - 0xe8b58f, - 0xe8b590, - 0xe8b591, - 0xe8b592, - 0xe8b593, - 0xe8b594, - 0xe8b595, - 0xe8b596, - 0xe8b597, - 0xe8b598, - 0xe8b599, - 0xe8b59a, - 0xe8b59b, - 0xe8b59c, - 0xe8b59d, - 0xe8b59e, - 0xe8b59f, - 0xe8b5a0, - 0xe8b5a1, - 0xe8b5a2, - 0xe8b5a3, - 0xe8b5a4, - 0xe8b5a5, - 0xe8b5a6, - 0xe8b5a7, - 0xe8b5a8, - 0xe8b5a9, - 0xe8b5aa, - 0xe8b5ab, - 0xe8b5ac, - 0xe8b5ad, - 0xe8b5ae, - 0xe8b5af, - 0xe8b5b0, - 0xe8b5b1, - 0xe8b5b2, - 0xe8b5b3, - 0xe8b5b4, - 0xe8b5b5, - 0xe8b5b6, - 0xe8b5b7, - 0xe8b5b8, - 0xe8b5b9, - 0xe8b5ba, - 0xe8b5bb, - 0xe8b5bc, - 0xe8b5bd, - 0xe8b5be, - 0xe8b5bf, - 0xe8b680, - 0xe8b681, - 0xe8b682, - 0xe8b683, - 0xe8b684, - 0xe8b685, - 0xe8b686, - 0xe8b687, - 0xe8b688, - 0xe8b689, - 0xe8b68a, - 0xe8b68b, - 0xe8b68c, - 0xe8b68d, - 0xe8b68e, - 0xe8b68f, - 0xe8b690, - 0xe8b691, - 0xe8b692, - 0xe8b693, - 0xe8b694, - 0xe8b695, - 0xe8b696, - 0xe8b697, - 0xe8b698, - 0xe8b699, - 0xe8b69a, - 0xe8b69b, - 0xe8b69c, - 0xe8b69d, - 0xe8b69e, - 0xe8b69f, - 0xe8b6a0, - 0xe8b6a1, - 0xe8b6a2, - 0xe8b6a3, - 0xe8b6a4, - 0xe8b6a5, - 0xe8b6a6, - 0xe8b6a7, - 0xe8b6a8, - 0xe8b6a9, - 0xe8b6aa, - 0xe8b6ab, - 0xe8b6ac, - 0xe8b6ad, - 0xe8b6ae, - 0xe8b6af, - 0xe8b6b0, - 0xe8b6b1, - 0xe8b6b2, - 0xe8b6b3, - 0xe8b6b4, - 0xe8b6b5, - 0xe8b6b6, - 0xe8b6b7, - 0xe8b6b8, - 0xe8b6b9, - 0xe8b6ba, - 0xe8b6bb, - 0xe8b6bc, - 0xe8b6bd, - 0xe8b6be, - 0xe8b6bf, - 0xe8b780, - 0xe8b781, - 0xe8b782, - 0xe8b783, - 0xe8b784, - 0xe8b785, - 0xe8b786, - 0xe8b787, - 0xe8b788, - 0xe8b789, - 0xe8b78a, - 0xe8b78b, - 0xe8b78c, - 0xe8b78d, - 0xe8b78e, - 0xe8b78f, - 0xe8b790, - 0xe8b791, - 0xe8b792, - 0xe8b793, - 0xe8b794, - 0xe8b795, - 0xe8b796, - 0xe8b797, - 0xe8b798, - 0xe8b799, - 0xe8b79a, - 0xe8b79b, - 0xe8b79c, - 0xe8b79d, - 0xe8b79e, - 0xe8b79f, - 0xe8b7a0, - 0xe8b7a1, - 0xe8b7a2, - 0xe8b7a3, - 0xe8b7a4, - 0xe8b7a5, - 0xe8b7a6, - 0xe8b7a7, - 0xe8b7a8, - 0xe8b7a9, - 0xe8b7aa, - 0xe8b7ab, - 0xe8b7ac, - 0xe8b7ad, - 0xe8b7ae, - 0xe8b7af, - 0xe8b7b0, - 0xe8b7b1, - 0xe8b7b2, - 0xe8b7b3, - 0xe8b7b4, - 0xe8b7b5, - 0xe8b7b6, - 0xe8b7b7, - 0xe8b7b8, - 0xe8b7b9, - 0xe8b7ba, - 0xe8b7bb, - 0xe8b7bc, - 0xe8b7bd, - 0xe8b7be, - 0xe8b7bf, - 0xe8b880, - 0xe8b881, - 0xe8b882, - 0xe8b883, - 0xe8b884, - 0xe8b885, - 0xe8b886, - 0xe8b887, - 0xe8b888, - 0xe8b889, - 0xe8b88a, - 0xe8b88b, - 0xe8b88c, - 0xe8b88d, - 0xe8b88e, - 0xe8b88f, - 0xe8b890, - 0xe8b891, - 0xe8b892, - 0xe8b893, - 0xe8b894, - 0xe8b895, - 0xe8b896, - 0xe8b897, - 0xe8b898, - 0xe8b899, - 0xe8b89a, - 0xe8b89b, - 0xe8b89c, - 0xe8b89d, - 0xe8b89e, - 0xe8b89f, - 0xe8b8a0, - 0xe8b8a1, - 0xe8b8a2, - 0xe8b8a3, - 0xe8b8a4, - 0xe8b8a5, - 0xe8b8a6, - 0xe8b8a7, - 0xe8b8a8, - 0xe8b8a9, - 0xe8b8aa, - 0xe8b8ab, - 0xe8b8ac, - 0xe8b8ad, - 0xe8b8ae, - 0xe8b8af, - 0xe8b8b0, - 0xe8b8b1, - 0xe8b8b2, - 0xe8b8b3, - 0xe8b8b4, - 0xe8b8b5, - 0xe8b8b6, - 0xe8b8b7, - 0xe8b8b8, - 0xe8b8b9, - 0xe8b8ba, - 0xe8b8bb, - 0xe8b8bc, - 0xe8b8bd, - 0xe8b8be, - 0xe8b8bf, - 0xe8b980, - 0xe8b981, - 0xe8b982, - 0xe8b983, - 0xe8b984, - 0xe8b985, - 0xe8b986, - 0xe8b987, - 0xe8b988, - 0xe8b989, - 0xe8b98a, - 0xe8b98b, - 0xe8b98c, - 0xe8b98d, - 0xe8b98e, - 0xe8b98f, - 0xe8b990, - 0xe8b991, - 0xe8b992, - 0xe8b993, - 0xe8b994, - 0xe8b995, - 0xe8b996, - 0xe8b997, - 0xe8b998, - 0xe8b999, - 0xe8b99a, - 0xe8b99b, - 0xe8b99c, - 0xe8b99d, - 0xe8b99e, - 0xe8b99f, - 0xe8b9a0, - 0xe8b9a1, - 0xe8b9a2, - 0xe8b9a3, - 0xe8b9a4, - 0xe8b9a5, - 0xe8b9a6, - 0xe8b9a7, - 0xe8b9a8, - 0xe8b9a9, - 0xe8b9aa, - 0xe8b9ab, - 0xe8b9ac, - 0xe8b9ad, - 0xe8b9ae, - 0xe8b9af, - 0xe8b9b0, - 0xe8b9b1, - 0xe8b9b2, - 0xe8b9b3, - 0xe8b9b4, - 0xe8b9b5, - 0xe8b9b6, - 0xe8b9b7, - 0xe8b9b8, - 0xe8b9b9, - 0xe8b9ba, - 0xe8b9bb, - 0xe8b9bc, - 0xe8b9bd, - 0xe8b9be, - 0xe8b9bf, - 0xe8ba80, - 0xe8ba81, - 0xe8ba82, - 0xe8ba83, - 0xe8ba84, - 0xe8ba85, - 0xe8ba86, - 0xe8ba87, - 0xe8ba88, - 0xe8ba89, - 0xe8ba8a, - 0xe8ba8b, - 0xe8ba8c, - 0xe8ba8d, - 0xe8ba8e, - 0xe8ba8f, - 0xe8ba90, - 0xe8ba91, - 0xe8ba92, - 0xe8ba93, - 0xe8ba94, - 0xe8ba95, - 0xe8ba96, - 0xe8ba97, - 0xe8ba98, - 0xe8ba99, - 0xe8ba9a, - 0xe8ba9b, - 0xe8ba9c, - 0xe8ba9d, - 0xe8ba9e, - 0xe8ba9f, - 0xe8baa0, - 0xe8baa1, - 0xe8baa2, - 0xe8baa3, - 0xe8baa4, - 0xe8baa5, - 0xe8baa6, - 0xe8baa7, - 0xe8baa8, - 0xe8baa9, - 0xe8baaa, - 0xe8baab, - 0xe8baac, - 0xe8baad, - 0xe8baae, - 0xe8baaf, - 0xe8bab0, - 0xe8bab1, - 0xe8bab2, - 0xe8bab3, - 0xe8bab4, - 0xe8bab5, - 0xe8bab6, - 0xe8bab7, - 0xe8bab8, - 0xe8bab9, - 0xe8baba, - 0xe8babb, - 0xe8babc, - 0xe8babd, - 0xe8babe, - 0xe8babf, - 0xe8bb80, - 0xe8bb81, - 0xe8bb82, - 0xe8bb83, - 0xe8bb84, - 0xe8bb85, - 0xe8bb86, - 0xe8bb87, - 0xe8bb88, - 0xe8bb89, - 0xe8bb8a, - 0xe8bb8b, - 0xe8bb8c, - 0xe8bb8d, - 0xe8bb8e, - 0xe8bb8f, - 0xe8bb90, - 0xe8bb91, - 0xe8bb92, - 0xe8bb93, - 0xe8bb94, - 0xe8bb95, - 0xe8bb96, - 0xe8bb97, - 0xe8bb98, - 0xe8bb99, - 0xe8bb9a, - 0xe8bb9b, - 0xe8bb9c, - 0xe8bb9d, - 0xe8bb9e, - 0xe8bb9f, - 0xe8bba0, - 0xe8bba1, - 0xe8bba2, - 0xe8bba3, - 0xe8bba4, - 0xe8bba5, - 0xe8bba6, - 0xe8bba7, - 0xe8bba8, - 0xe8bba9, - 0xe8bbaa, - 0xe8bbab, - 0xe8bbac, - 0xe8bbad, - 0xe8bbae, - 0xe8bbaf, - 0xe8bbb0, - 0xe8bbb1, - 0xe8bbb2, - 0xe8bbb3, - 0xe8bbb4, - 0xe8bbb5, - 0xe8bbb6, - 0xe8bbb7, - 0xe8bbb8, - 0xe8bbb9, - 0xe8bbba, - 0xe8bbbb, - 0xe8bbbc, - 0xe8bbbd, - 0xe8bbbe, - 0xe8bbbf, - 0xe8bc80, - 0xe8bc81, - 0xe8bc82, - 0xe8bc83, - 0xe8bc84, - 0xe8bc85, - 0xe8bc86, - 0xe8bc87, - 0xe8bc88, - 0xe8bc89, - 0xe8bc8a, - 0xe8bc8b, - 0xe8bc8c, - 0xe8bc8d, - 0xe8bc8e, - 0xe8bc8f, - 0xe8bc90, - 0xe8bc91, - 0xe8bc92, - 0xe8bc93, - 0xe8bc94, - 0xe8bc95, - 0xe8bc96, - 0xe8bc97, - 0xe8bc98, - 0xe8bc99, - 0xe8bc9a, - 0xe8bc9b, - 0xe8bc9c, - 0xe8bc9d, - 0xe8bc9e, - 0xe8bc9f, - 0xe8bca0, - 0xe8bca1, - 0xe8bca2, - 0xe8bca3, - 0xe8bca4, - 0xe8bca5, - 0xe8bca6, - 0xe8bca7, - 0xe8bca8, - 0xe8bca9, - 0xe8bcaa, - 0xe8bcab, - 0xe8bcac, - 0xe8bcad, - 0xe8bcae, - 0xe8bcaf, - 0xe8bcb0, - 0xe8bcb1, - 0xe8bcb2, - 0xe8bcb3, - 0xe8bcb4, - 0xe8bcb5, - 0xe8bcb6, - 0xe8bcb7, - 0xe8bcb8, - 0xe8bcb9, - 0xe8bcba, - 0xe8bcbb, - 0xe8bcbc, - 0xe8bcbd, - 0xe8bcbe, - 0xe8bcbf, - 0xe8bd80, - 0xe8bd81, - 0xe8bd82, - 0xe8bd83, - 0xe8bd84, - 0xe8bd85, - 0xe8bd86, - 0xe8bd87, - 0xe8bd88, - 0xe8bd89, - 0xe8bd8a, - 0xe8bd8b, - 0xe8bd8c, - 0xe8bd8d, - 0xe8bd8e, - 0xe8bd8f, - 0xe8bd90, - 0xe8bd91, - 0xe8bd92, - 0xe8bd93, - 0xe8bd94, - 0xe8bd95, - 0xe8bd96, - 0xe8bd97, - 0xe8bd98, - 0xe8bd99, - 0xe8bd9a, - 0xe8bd9b, - 0xe8bd9c, - 0xe8bd9d, - 0xe8bd9e, - 0xe8bd9f, - 0xe8bda0, - 0xe8bda1, - 0xe8bda2, - 0xe8bda3, - 0xe8bda4, - 0xe8bda5, - 0xe8bda6, - 0xe8bda7, - 0xe8bda8, - 0xe8bda9, - 0xe8bdaa, - 0xe8bdab, - 0xe8bdac, - 0xe8bdad, - 0xe8bdae, - 0xe8bdaf, - 0xe8bdb0, - 0xe8bdb1, - 0xe8bdb2, - 0xe8bdb3, - 0xe8bdb4, - 0xe8bdb5, - 0xe8bdb6, - 0xe8bdb7, - 0xe8bdb8, - 0xe8bdb9, - 0xe8bdba, - 0xe8bdbb, - 0xe8bdbc, - 0xe8bdbd, - 0xe8bdbe, - 0xe8bdbf, - 0xe8be80, - 0xe8be81, - 0xe8be82, - 0xe8be83, - 0xe8be84, - 0xe8be85, - 0xe8be86, - 0xe8be87, - 0xe8be88, - 0xe8be89, - 0xe8be8a, - 0xe8be8b, - 0xe8be8c, - 0xe8be8d, - 0xe8be8e, - 0xe8be8f, - 0xe8be90, - 0xe8be91, - 0xe8be92, - 0xe8be93, - 0xe8be94, - 0xe8be95, - 0xe8be96, - 0xe8be97, - 0xe8be98, - 0xe8be99, - 0xe8be9a, - 0xe8be9b, - 0xe8be9c, - 0xe8be9d, - 0xe8be9e, - 0xe8be9f, - 0xe8bea0, - 0xe8bea1, - 0xe8bea2, - 0xe8bea3, - 0xe8bea4, - 0xe8bea5, - 0xe8bea6, - 0xe8bea7, - 0xe8bea8, - 0xe8bea9, - 0xe8beaa, - 0xe8beab, - 0xe8beac, - 0xe8bead, - 0xe8beae, - 0xe8beaf, - 0xe8beb0, - 0xe8beb1, - 0xe8beb2, - 0xe8beb3, - 0xe8beb4, - 0xe8beb5, - 0xe8beb6, - 0xe8beb7, - 0xe8beb8, - 0xe8beb9, - 0xe8beba, - 0xe8bebb, - 0xe8bebc, - 0xe8bebd, - 0xe8bebe, - 0xe8bebf, - 0xe8bf80, - 0xe8bf81, - 0xe8bf82, - 0xe8bf83, - 0xe8bf84, - 0xe8bf85, - 0xe8bf86, - 0xe8bf87, - 0xe8bf88, - 0xe8bf89, - 0xe8bf8a, - 0xe8bf8b, - 0xe8bf8c, - 0xe8bf8d, - 0xe8bf8e, - 0xe8bf8f, - 0xe8bf90, - 0xe8bf91, - 0xe8bf92, - 0xe8bf93, - 0xe8bf94, - 0xe8bf95, - 0xe8bf96, - 0xe8bf97, - 0xe8bf98, - 0xe8bf99, - 0xe8bf9a, - 0xe8bf9b, - 0xe8bf9c, - 0xe8bf9d, - 0xe8bf9e, - 0xe8bf9f, - 0xe8bfa0, - 0xe8bfa1, - 0xe8bfa2, - 0xe8bfa3, - 0xe8bfa4, - 0xe8bfa5, - 0xe8bfa6, - 0xe8bfa7, - 0xe8bfa8, - 0xe8bfa9, - 0xe8bfaa, - 0xe8bfab, - 0xe8bfac, - 0xe8bfad, - 0xe8bfae, - 0xe8bfaf, - 0xe8bfb0, - 0xe8bfb1, - 0xe8bfb2, - 0xe8bfb3, - 0xe8bfb4, - 0xe8bfb5, - 0xe8bfb6, - 0xe8bfb7, - 0xe8bfb8, - 0xe8bfb9, - 0xe8bfba, - 0xe8bfbb, - 0xe8bfbc, - 0xe8bfbd, - 0xe8bfbe, - 0xe8bfbf, - 0xe98080, - 0xe98081, - 0xe98082, - 0xe98083, - 0xe98084, - 0xe98085, - 0xe98086, - 0xe98087, - 0xe98088, - 0xe98089, - 0xe9808a, - 0xe9808b, - 0xe9808c, - 0xe9808d, - 0xe9808e, - 0xe9808f, - 0xe98090, - 0xe98091, - 0xe98092, - 0xe98093, - 0xe98094, - 0xe98095, - 0xe98096, - 0xe98097, - 0xe98098, - 0xe98099, - 0xe9809a, - 0xe9809b, - 0xe9809c, - 0xe9809d, - 0xe9809e, - 0xe9809f, - 0xe980a0, - 0xe980a1, - 0xe980a2, - 0xe980a3, - 0xe980a4, - 0xe980a5, - 0xe980a6, - 0xe980a7, - 0xe980a8, - 0xe980a9, - 0xe980aa, - 0xe980ab, - 0xe980ac, - 0xe980ad, - 0xe980ae, - 0xe980af, - 0xe980b0, - 0xe980b1, - 0xe980b2, - 0xe980b3, - 0xe980b4, - 0xe980b5, - 0xe980b6, - 0xe980b7, - 0xe980b8, - 0xe980b9, - 0xe980ba, - 0xe980bb, - 0xe980bc, - 0xe980bd, - 0xe980be, - 0xe980bf, - 0xe98180, - 0xe98181, - 0xe98182, - 0xe98183, - 0xe98184, - 0xe98185, - 0xe98186, - 0xe98187, - 0xe98188, - 0xe98189, - 0xe9818a, - 0xe9818b, - 0xe9818c, - 0xe9818d, - 0xe9818e, - 0xe9818f, - 0xe98190, - 0xe98191, - 0xe98192, - 0xe98193, - 0xe98194, - 0xe98195, - 0xe98196, - 0xe98197, - 0xe98198, - 0xe98199, - 0xe9819a, - 0xe9819b, - 0xe9819c, - 0xe9819d, - 0xe9819e, - 0xe9819f, - 0xe981a0, - 0xe981a1, - 0xe981a2, - 0xe981a3, - 0xe981a4, - 0xe981a5, - 0xe981a6, - 0xe981a7, - 0xe981a8, - 0xe981a9, - 0xe981aa, - 0xe981ab, - 0xe981ac, - 0xe981ad, - 0xe981ae, - 0xe981af, - 0xe981b0, - 0xe981b1, - 0xe981b2, - 0xe981b3, - 0xe981b4, - 0xe981b5, - 0xe981b6, - 0xe981b7, - 0xe981b8, - 0xe981b9, - 0xe981ba, - 0xe981bb, - 0xe981bc, - 0xe981bd, - 0xe981be, - 0xe981bf, - 0xe98280, - 0xe98281, - 0xe98282, - 0xe98283, - 0xe98284, - 0xe98285, - 0xe98286, - 0xe98287, - 0xe98288, - 0xe98289, - 0xe9828a, - 0xe9828b, - 0xe9828c, - 0xe9828d, - 0xe9828e, - 0xe9828f, - 0xe98290, - 0xe98291, - 0xe98292, - 0xe98293, - 0xe98294, - 0xe98295, - 0xe98296, - 0xe98297, - 0xe98298, - 0xe98299, - 0xe9829a, - 0xe9829b, - 0xe9829c, - 0xe9829d, - 0xe9829e, - 0xe9829f, - 0xe982a0, - 0xe982a1, - 0xe982a2, - 0xe982a3, - 0xe982a4, - 0xe982a5, - 0xe982a6, - 0xe982a7, - 0xe982a8, - 0xe982a9, - 0xe982aa, - 0xe982ab, - 0xe982ac, - 0xe982ad, - 0xe982ae, - 0xe982af, - 0xe982b0, - 0xe982b1, - 0xe982b2, - 0xe982b3, - 0xe982b4, - 0xe982b5, - 0xe982b6, - 0xe982b7, - 0xe982b8, - 0xe982b9, - 0xe982ba, - 0xe982bb, - 0xe982bc, - 0xe982bd, - 0xe982be, - 0xe982bf, - 0xe98380, - 0xe98381, - 0xe98382, - 0xe98383, - 0xe98384, - 0xe98385, - 0xe98386, - 0xe98387, - 0xe98388, - 0xe98389, - 0xe9838a, - 0xe9838b, - 0xe9838c, - 0xe9838d, - 0xe9838e, - 0xe9838f, - 0xe98390, - 0xe98391, - 0xe98392, - 0xe98393, - 0xe98394, - 0xe98395, - 0xe98396, - 0xe98397, - 0xe98398, - 0xe98399, - 0xe9839a, - 0xe9839b, - 0xe9839c, - 0xe9839d, - 0xe9839e, - 0xe9839f, - 0xe983a0, - 0xe983a1, - 0xe983a2, - 0xe983a3, - 0xe983a4, - 0xe983a5, - 0xe983a6, - 0xe983a7, - 0xe983a8, - 0xe983a9, - 0xe983aa, - 0xe983ab, - 0xe983ac, - 0xe983ad, - 0xe983ae, - 0xe983af, - 0xe983b0, - 0xe983b1, - 0xe983b2, - 0xe983b3, - 0xe983b4, - 0xe983b5, - 0xe983b6, - 0xe983b7, - 0xe983b8, - 0xe983b9, - 0xe983ba, - 0xe983bb, - 0xe983bc, - 0xe983bd, - 0xe983be, - 0xe983bf, - 0xe98480, - 0xe98481, - 0xe98482, - 0xe98483, - 0xe98484, - 0xe98485, - 0xe98486, - 0xe98487, - 0xe98488, - 0xe98489, - 0xe9848a, - 0xe9848b, - 0xe9848c, - 0xe9848d, - 0xe9848e, - 0xe9848f, - 0xe98490, - 0xe98491, - 0xe98492, - 0xe98493, - 0xe98494, - 0xe98495, - 0xe98496, - 0xe98497, - 0xe98498, - 0xe98499, - 0xe9849a, - 0xe9849b, - 0xe9849c, - 0xe9849d, - 0xe9849e, - 0xe9849f, - 0xe984a0, - 0xe984a1, - 0xe984a2, - 0xe984a3, - 0xe984a4, - 0xe984a5, - 0xe984a6, - 0xe984a7, - 0xe984a8, - 0xe984a9, - 0xe984aa, - 0xe984ab, - 0xe984ac, - 0xe984ad, - 0xe984ae, - 0xe984af, - 0xe984b0, - 0xe984b1, - 0xe984b2, - 0xe984b3, - 0xe984b4, - 0xe984b5, - 0xe984b6, - 0xe984b7, - 0xe984b8, - 0xe984b9, - 0xe984ba, - 0xe984bb, - 0xe984bc, - 0xe984bd, - 0xe984be, - 0xe984bf, - 0xe98580, - 0xe98581, - 0xe98582, - 0xe98583, - 0xe98584, - 0xe98585, - 0xe98586, - 0xe98587, - 0xe98588, - 0xe98589, - 0xe9858a, - 0xe9858b, - 0xe9858c, - 0xe9858d, - 0xe9858e, - 0xe9858f, - 0xe98590, - 0xe98591, - 0xe98592, - 0xe98593, - 0xe98594, - 0xe98595, - 0xe98596, - 0xe98597, - 0xe98598, - 0xe98599, - 0xe9859a, - 0xe9859b, - 0xe9859c, - 0xe9859d, - 0xe9859e, - 0xe9859f, - 0xe985a0, - 0xe985a1, - 0xe985a2, - 0xe985a3, - 0xe985a4, - 0xe985a5, - 0xe985a6, - 0xe985a7, - 0xe985a8, - 0xe985a9, - 0xe985aa, - 0xe985ab, - 0xe985ac, - 0xe985ad, - 0xe985ae, - 0xe985af, - 0xe985b0, - 0xe985b1, - 0xe985b2, - 0xe985b3, - 0xe985b4, - 0xe985b5, - 0xe985b6, - 0xe985b7, - 0xe985b8, - 0xe985b9, - 0xe985ba, - 0xe985bb, - 0xe985bc, - 0xe985bd, - 0xe985be, - 0xe985bf, - 0xe98680, - 0xe98681, - 0xe98682, - 0xe98683, - 0xe98684, - 0xe98685, - 0xe98686, - 0xe98687, - 0xe98688, - 0xe98689, - 0xe9868a, - 0xe9868b, - 0xe9868c, - 0xe9868d, - 0xe9868e, - 0xe9868f, - 0xe98690, - 0xe98691, - 0xe98692, - 0xe98693, - 0xe98694, - 0xe98695, - 0xe98696, - 0xe98697, - 0xe98698, - 0xe98699, - 0xe9869a, - 0xe9869b, - 0xe9869c, - 0xe9869d, - 0xe9869e, - 0xe9869f, - 0xe986a0, - 0xe986a1, - 0xe986a2, - 0xe986a3, - 0xe986a4, - 0xe986a5, - 0xe986a6, - 0xe986a7, - 0xe986a8, - 0xe986a9, - 0xe986aa, - 0xe986ab, - 0xe986ac, - 0xe986ad, - 0xe986ae, - 0xe986af, - 0xe986b0, - 0xe986b1, - 0xe986b2, - 0xe986b3, - 0xe986b4, - 0xe986b5, - 0xe986b6, - 0xe986b7, - 0xe986b8, - 0xe986b9, - 0xe986ba, - 0xe986bb, - 0xe986bc, - 0xe986bd, - 0xe986be, - 0xe986bf, - 0xe98780, - 0xe98781, - 0xe98782, - 0xe98783, - 0xe98784, - 0xe98785, - 0xe98786, - 0xe98787, - 0xe98788, - 0xe98789, - 0xe9878a, - 0xe9878b, - 0xe9878c, - 0xe9878d, - 0xe9878e, - 0xe9878f, - 0xe98790, - 0xe98791, - 0xe98792, - 0xe98793, - 0xe98794, - 0xe98795, - 0xe98796, - 0xe98797, - 0xe98798, - 0xe98799, - 0xe9879a, - 0xe9879b, - 0xe9879c, - 0xe9879d, - 0xe9879e, - 0xe9879f, - 0xe987a0, - 0xe987a1, - 0xe987a2, - 0xe987a3, - 0xe987a4, - 0xe987a5, - 0xe987a6, - 0xe987a7, - 0xe987a8, - 0xe987a9, - 0xe987aa, - 0xe987ab, - 0xe987ac, - 0xe987ad, - 0xe987ae, - 0xe987af, - 0xe987b0, - 0xe987b1, - 0xe987b2, - 0xe987b3, - 0xe987b4, - 0xe987b5, - 0xe987b6, - 0xe987b7, - 0xe987b8, - 0xe987b9, - 0xe987ba, - 0xe987bb, - 0xe987bc, - 0xe987bd, - 0xe987be, - 0xe987bf, - 0xe98880, - 0xe98881, - 0xe98882, - 0xe98883, - 0xe98884, - 0xe98885, - 0xe98886, - 0xe98887, - 0xe98888, - 0xe98889, - 0xe9888a, - 0xe9888b, - 0xe9888c, - 0xe9888d, - 0xe9888e, - 0xe9888f, - 0xe98890, - 0xe98891, - 0xe98892, - 0xe98893, - 0xe98894, - 0xe98895, - 0xe98896, - 0xe98897, - 0xe98898, - 0xe98899, - 0xe9889a, - 0xe9889b, - 0xe9889c, - 0xe9889d, - 0xe9889e, - 0xe9889f, - 0xe988a0, - 0xe988a1, - 0xe988a2, - 0xe988a3, - 0xe988a4, - 0xe988a5, - 0xe988a6, - 0xe988a7, - 0xe988a8, - 0xe988a9, - 0xe988aa, - 0xe988ab, - 0xe988ac, - 0xe988ad, - 0xe988ae, - 0xe988af, - 0xe988b0, - 0xe988b1, - 0xe988b2, - 0xe988b3, - 0xe988b4, - 0xe988b5, - 0xe988b6, - 0xe988b7, - 0xe988b8, - 0xe988b9, - 0xe988ba, - 0xe988bb, - 0xe988bc, - 0xe988bd, - 0xe988be, - 0xe988bf, - 0xe98980, - 0xe98981, - 0xe98982, - 0xe98983, - 0xe98984, - 0xe98985, - 0xe98986, - 0xe98987, - 0xe98988, - 0xe98989, - 0xe9898a, - 0xe9898b, - 0xe9898c, - 0xe9898d, - 0xe9898e, - 0xe9898f, - 0xe98990, - 0xe98991, - 0xe98992, - 0xe98993, - 0xe98994, - 0xe98995, - 0xe98996, - 0xe98997, - 0xe98998, - 0xe98999, - 0xe9899a, - 0xe9899b, - 0xe9899c, - 0xe9899d, - 0xe9899e, - 0xe9899f, - 0xe989a0, - 0xe989a1, - 0xe989a2, - 0xe989a3, - 0xe989a4, - 0xe989a5, - 0xe989a6, - 0xe989a7, - 0xe989a8, - 0xe989a9, - 0xe989aa, - 0xe989ab, - 0xe989ac, - 0xe989ad, - 0xe989ae, - 0xe989af, - 0xe989b0, - 0xe989b1, - 0xe989b2, - 0xe989b3, - 0xe989b4, - 0xe989b5, - 0xe989b6, - 0xe989b7, - 0xe989b8, - 0xe989b9, - 0xe989ba, - 0xe989bb, - 0xe989bc, - 0xe989bd, - 0xe989be, - 0xe989bf, - 0xe98a80, - 0xe98a81, - 0xe98a82, - 0xe98a83, - 0xe98a84, - 0xe98a85, - 0xe98a86, - 0xe98a87, - 0xe98a88, - 0xe98a89, - 0xe98a8a, - 0xe98a8b, - 0xe98a8c, - 0xe98a8d, - 0xe98a8e, - 0xe98a8f, - 0xe98a90, - 0xe98a91, - 0xe98a92, - 0xe98a93, - 0xe98a94, - 0xe98a95, - 0xe98a96, - 0xe98a97, - 0xe98a98, - 0xe98a99, - 0xe98a9a, - 0xe98a9b, - 0xe98a9c, - 0xe98a9d, - 0xe98a9e, - 0xe98a9f, - 0xe98aa0, - 0xe98aa1, - 0xe98aa2, - 0xe98aa3, - 0xe98aa4, - 0xe98aa5, - 0xe98aa6, - 0xe98aa7, - 0xe98aa8, - 0xe98aa9, - 0xe98aaa, - 0xe98aab, - 0xe98aac, - 0xe98aad, - 0xe98aae, - 0xe98aaf, - 0xe98ab0, - 0xe98ab1, - 0xe98ab2, - 0xe98ab3, - 0xe98ab4, - 0xe98ab5, - 0xe98ab6, - 0xe98ab7, - 0xe98ab8, - 0xe98ab9, - 0xe98aba, - 0xe98abb, - 0xe98abc, - 0xe98abd, - 0xe98abe, - 0xe98abf, - 0xe98b80, - 0xe98b81, - 0xe98b82, - 0xe98b83, - 0xe98b84, - 0xe98b85, - 0xe98b86, - 0xe98b87, - 0xe98b88, - 0xe98b89, - 0xe98b8a, - 0xe98b8b, - 0xe98b8c, - 0xe98b8d, - 0xe98b8e, - 0xe98b8f, - 0xe98b90, - 0xe98b91, - 0xe98b92, - 0xe98b93, - 0xe98b94, - 0xe98b95, - 0xe98b96, - 0xe98b97, - 0xe98b98, - 0xe98b99, - 0xe98b9a, - 0xe98b9b, - 0xe98b9c, - 0xe98b9d, - 0xe98b9e, - 0xe98b9f, - 0xe98ba0, - 0xe98ba1, - 0xe98ba2, - 0xe98ba3, - 0xe98ba4, - 0xe98ba5, - 0xe98ba6, - 0xe98ba7, - 0xe98ba8, - 0xe98ba9, - 0xe98baa, - 0xe98bab, - 0xe98bac, - 0xe98bad, - 0xe98bae, - 0xe98baf, - 0xe98bb0, - 0xe98bb1, - 0xe98bb2, - 0xe98bb3, - 0xe98bb4, - 0xe98bb5, - 0xe98bb6, - 0xe98bb7, - 0xe98bb8, - 0xe98bb9, - 0xe98bba, - 0xe98bbb, - 0xe98bbc, - 0xe98bbd, - 0xe98bbe, - 0xe98bbf, - 0xe98c80, - 0xe98c81, - 0xe98c82, - 0xe98c83, - 0xe98c84, - 0xe98c85, - 0xe98c86, - 0xe98c87, - 0xe98c88, - 0xe98c89, - 0xe98c8a, - 0xe98c8b, - 0xe98c8c, - 0xe98c8d, - 0xe98c8e, - 0xe98c8f, - 0xe98c90, - 0xe98c91, - 0xe98c92, - 0xe98c93, - 0xe98c94, - 0xe98c95, - 0xe98c96, - 0xe98c97, - 0xe98c98, - 0xe98c99, - 0xe98c9a, - 0xe98c9b, - 0xe98c9c, - 0xe98c9d, - 0xe98c9e, - 0xe98c9f, - 0xe98ca0, - 0xe98ca1, - 0xe98ca2, - 0xe98ca3, - 0xe98ca4, - 0xe98ca5, - 0xe98ca6, - 0xe98ca7, - 0xe98ca8, - 0xe98ca9, - 0xe98caa, - 0xe98cab, - 0xe98cac, - 0xe98cad, - 0xe98cae, - 0xe98caf, - 0xe98cb0, - 0xe98cb1, - 0xe98cb2, - 0xe98cb3, - 0xe98cb4, - 0xe98cb5, - 0xe98cb6, - 0xe98cb7, - 0xe98cb8, - 0xe98cb9, - 0xe98cba, - 0xe98cbb, - 0xe98cbc, - 0xe98cbd, - 0xe98cbe, - 0xe98cbf, - 0xe98d80, - 0xe98d81, - 0xe98d82, - 0xe98d83, - 0xe98d84, - 0xe98d85, - 0xe98d86, - 0xe98d87, - 0xe98d88, - 0xe98d89, - 0xe98d8a, - 0xe98d8b, - 0xe98d8c, - 0xe98d8d, - 0xe98d8e, - 0xe98d8f, - 0xe98d90, - 0xe98d91, - 0xe98d92, - 0xe98d93, - 0xe98d94, - 0xe98d95, - 0xe98d96, - 0xe98d97, - 0xe98d98, - 0xe98d99, - 0xe98d9a, - 0xe98d9b, - 0xe98d9c, - 0xe98d9d, - 0xe98d9e, - 0xe98d9f, - 0xe98da0, - 0xe98da1, - 0xe98da2, - 0xe98da3, - 0xe98da4, - 0xe98da5, - 0xe98da6, - 0xe98da7, - 0xe98da8, - 0xe98da9, - 0xe98daa, - 0xe98dab, - 0xe98dac, - 0xe98dad, - 0xe98dae, - 0xe98daf, - 0xe98db0, - 0xe98db1, - 0xe98db2, - 0xe98db3, - 0xe98db4, - 0xe98db5, - 0xe98db6, - 0xe98db7, - 0xe98db8, - 0xe98db9, - 0xe98dba, - 0xe98dbb, - 0xe98dbc, - 0xe98dbd, - 0xe98dbe, - 0xe98dbf, - 0xe98e80, - 0xe98e81, - 0xe98e82, - 0xe98e83, - 0xe98e84, - 0xe98e85, - 0xe98e86, - 0xe98e87, - 0xe98e88, - 0xe98e89, - 0xe98e8a, - 0xe98e8b, - 0xe98e8c, - 0xe98e8d, - 0xe98e8e, - 0xe98e8f, - 0xe98e90, - 0xe98e91, - 0xe98e92, - 0xe98e93, - 0xe98e94, - 0xe98e95, - 0xe98e96, - 0xe98e97, - 0xe98e98, - 0xe98e99, - 0xe98e9a, - 0xe98e9b, - 0xe98e9c, - 0xe98e9d, - 0xe98e9e, - 0xe98e9f, - 0xe98ea0, - 0xe98ea1, - 0xe98ea2, - 0xe98ea3, - 0xe98ea4, - 0xe98ea5, - 0xe98ea6, - 0xe98ea7, - 0xe98ea8, - 0xe98ea9, - 0xe98eaa, - 0xe98eab, - 0xe98eac, - 0xe98ead, - 0xe98eae, - 0xe98eaf, - 0xe98eb0, - 0xe98eb1, - 0xe98eb2, - 0xe98eb3, - 0xe98eb4, - 0xe98eb5, - 0xe98eb6, - 0xe98eb7, - 0xe98eb8, - 0xe98eb9, - 0xe98eba, - 0xe98ebb, - 0xe98ebc, - 0xe98ebd, - 0xe98ebe, - 0xe98ebf, - 0xe98f80, - 0xe98f81, - 0xe98f82, - 0xe98f83, - 0xe98f84, - 0xe98f85, - 0xe98f86, - 0xe98f87, - 0xe98f88, - 0xe98f89, - 0xe98f8a, - 0xe98f8b, - 0xe98f8c, - 0xe98f8d, - 0xe98f8e, - 0xe98f8f, - 0xe98f90, - 0xe98f91, - 0xe98f92, - 0xe98f93, - 0xe98f94, - 0xe98f95, - 0xe98f96, - 0xe98f97, - 0xe98f98, - 0xe98f99, - 0xe98f9a, - 0xe98f9b, - 0xe98f9c, - 0xe98f9d, - 0xe98f9e, - 0xe98f9f, - 0xe98fa0, - 0xe98fa1, - 0xe98fa2, - 0xe98fa3, - 0xe98fa4, - 0xe98fa5, - 0xe98fa6, - 0xe98fa7, - 0xe98fa8, - 0xe98fa9, - 0xe98faa, - 0xe98fab, - 0xe98fac, - 0xe98fad, - 0xe98fae, - 0xe98faf, - 0xe98fb0, - 0xe98fb1, - 0xe98fb2, - 0xe98fb3, - 0xe98fb4, - 0xe98fb5, - 0xe98fb6, - 0xe98fb7, - 0xe98fb8, - 0xe98fb9, - 0xe98fba, - 0xe98fbb, - 0xe98fbc, - 0xe98fbd, - 0xe98fbe, - 0xe98fbf, - 0xe99080, - 0xe99081, - 0xe99082, - 0xe99083, - 0xe99084, - 0xe99085, - 0xe99086, - 0xe99087, - 0xe99088, - 0xe99089, - 0xe9908a, - 0xe9908b, - 0xe9908c, - 0xe9908d, - 0xe9908e, - 0xe9908f, - 0xe99090, - 0xe99091, - 0xe99092, - 0xe99093, - 0xe99094, - 0xe99095, - 0xe99096, - 0xe99097, - 0xe99098, - 0xe99099, - 0xe9909a, - 0xe9909b, - 0xe9909c, - 0xe9909d, - 0xe9909e, - 0xe9909f, - 0xe990a0, - 0xe990a1, - 0xe990a2, - 0xe990a3, - 0xe990a4, - 0xe990a5, - 0xe990a6, - 0xe990a7, - 0xe990a8, - 0xe990a9, - 0xe990aa, - 0xe990ab, - 0xe990ac, - 0xe990ad, - 0xe990ae, - 0xe990af, - 0xe990b0, - 0xe990b1, - 0xe990b2, - 0xe990b3, - 0xe990b4, - 0xe990b5, - 0xe990b6, - 0xe990b7, - 0xe990b8, - 0xe990b9, - 0xe990ba, - 0xe990bb, - 0xe990bc, - 0xe990bd, - 0xe990be, - 0xe990bf, - 0xe99180, - 0xe99181, - 0xe99182, - 0xe99183, - 0xe99184, - 0xe99185, - 0xe99186, - 0xe99187, - 0xe99188, - 0xe99189, - 0xe9918a, - 0xe9918b, - 0xe9918c, - 0xe9918d, - 0xe9918e, - 0xe9918f, - 0xe99190, - 0xe99191, - 0xe99192, - 0xe99193, - 0xe99194, - 0xe99195, - 0xe99196, - 0xe99197, - 0xe99198, - 0xe99199, - 0xe9919a, - 0xe9919b, - 0xe9919c, - 0xe9919d, - 0xe9919e, - 0xe9919f, - 0xe991a0, - 0xe991a1, - 0xe991a2, - 0xe991a3, - 0xe991a4, - 0xe991a5, - 0xe991a6, - 0xe991a7, - 0xe991a8, - 0xe991a9, - 0xe991aa, - 0xe991ab, - 0xe991ac, - 0xe991ad, - 0xe991ae, - 0xe991af, - 0xe991b0, - 0xe991b1, - 0xe991b2, - 0xe991b3, - 0xe991b4, - 0xe991b5, - 0xe991b6, - 0xe991b7, - 0xe991b8, - 0xe991b9, - 0xe991ba, - 0xe991bb, - 0xe991bc, - 0xe991bd, - 0xe991be, - 0xe991bf, - 0xe99280, - 0xe99281, - 0xe99282, - 0xe99283, - 0xe99284, - 0xe99285, - 0xe99286, - 0xe99287, - 0xe99288, - 0xe99289, - 0xe9928a, - 0xe9928b, - 0xe9928c, - 0xe9928d, - 0xe9928e, - 0xe9928f, - 0xe99290, - 0xe99291, - 0xe99292, - 0xe99293, - 0xe99294, - 0xe99295, - 0xe99296, - 0xe99297, - 0xe99298, - 0xe99299, - 0xe9929a, - 0xe9929b, - 0xe9929c, - 0xe9929d, - 0xe9929e, - 0xe9929f, - 0xe992a0, - 0xe992a1, - 0xe992a2, - 0xe992a3, - 0xe992a4, - 0xe992a5, - 0xe992a6, - 0xe992a7, - 0xe992a8, - 0xe992a9, - 0xe992aa, - 0xe992ab, - 0xe992ac, - 0xe992ad, - 0xe992ae, - 0xe992af, - 0xe992b0, - 0xe992b1, - 0xe992b2, - 0xe992b3, - 0xe992b4, - 0xe992b5, - 0xe992b6, - 0xe992b7, - 0xe992b8, - 0xe992b9, - 0xe992ba, - 0xe992bb, - 0xe992bc, - 0xe992bd, - 0xe992be, - 0xe992bf, - 0xe99380, - 0xe99381, - 0xe99382, - 0xe99383, - 0xe99384, - 0xe99385, - 0xe99386, - 0xe99387, - 0xe99388, - 0xe99389, - 0xe9938a, - 0xe9938b, - 0xe9938c, - 0xe9938d, - 0xe9938e, - 0xe9938f, - 0xe99390, - 0xe99391, - 0xe99392, - 0xe99393, - 0xe99394, - 0xe99395, - 0xe99396, - 0xe99397, - 0xe99398, - 0xe99399, - 0xe9939a, - 0xe9939b, - 0xe9939c, - 0xe9939d, - 0xe9939e, - 0xe9939f, - 0xe993a0, - 0xe993a1, - 0xe993a2, - 0xe993a3, - 0xe993a4, - 0xe993a5, - 0xe993a6, - 0xe993a7, - 0xe993a8, - 0xe993a9, - 0xe993aa, - 0xe993ab, - 0xe993ac, - 0xe993ad, - 0xe993ae, - 0xe993af, - 0xe993b0, - 0xe993b1, - 0xe993b2, - 0xe993b3, - 0xe993b4, - 0xe993b5, - 0xe993b6, - 0xe993b7, - 0xe993b8, - 0xe993b9, - 0xe993ba, - 0xe993bb, - 0xe993bc, - 0xe993bd, - 0xe993be, - 0xe993bf, - 0xe99480, - 0xe99481, - 0xe99482, - 0xe99483, - 0xe99484, - 0xe99485, - 0xe99486, - 0xe99487, - 0xe99488, - 0xe99489, - 0xe9948a, - 0xe9948b, - 0xe9948c, - 0xe9948d, - 0xe9948e, - 0xe9948f, - 0xe99490, - 0xe99491, - 0xe99492, - 0xe99493, - 0xe99494, - 0xe99495, - 0xe99496, - 0xe99497, - 0xe99498, - 0xe99499, - 0xe9949a, - 0xe9949b, - 0xe9949c, - 0xe9949d, - 0xe9949e, - 0xe9949f, - 0xe994a0, - 0xe994a1, - 0xe994a2, - 0xe994a3, - 0xe994a4, - 0xe994a5, - 0xe994a6, - 0xe994a7, - 0xe994a8, - 0xe994a9, - 0xe994aa, - 0xe994ab, - 0xe994ac, - 0xe994ad, - 0xe994ae, - 0xe994af, - 0xe994b0, - 0xe994b1, - 0xe994b2, - 0xe994b3, - 0xe994b4, - 0xe994b5, - 0xe994b6, - 0xe994b7, - 0xe994b8, - 0xe994b9, - 0xe994ba, - 0xe994bb, - 0xe994bc, - 0xe994bd, - 0xe994be, - 0xe994bf, - 0xe99580, - 0xe99581, - 0xe99582, - 0xe99583, - 0xe99584, - 0xe99585, - 0xe99586, - 0xe99587, - 0xe99588, - 0xe99589, - 0xe9958a, - 0xe9958b, - 0xe9958c, - 0xe9958d, - 0xe9958e, - 0xe9958f, - 0xe99590, - 0xe99591, - 0xe99592, - 0xe99593, - 0xe99594, - 0xe99595, - 0xe99596, - 0xe99597, - 0xe99598, - 0xe99599, - 0xe9959a, - 0xe9959b, - 0xe9959c, - 0xe9959d, - 0xe9959e, - 0xe9959f, - 0xe995a0, - 0xe995a1, - 0xe995a2, - 0xe995a3, - 0xe995a4, - 0xe995a5, - 0xe995a6, - 0xe995a7, - 0xe995a8, - 0xe995a9, - 0xe995aa, - 0xe995ab, - 0xe995ac, - 0xe995ad, - 0xe995ae, - 0xe995af, - 0xe995b0, - 0xe995b1, - 0xe995b2, - 0xe995b3, - 0xe995b4, - 0xe995b5, - 0xe995b6, - 0xe995b7, - 0xe995b8, - 0xe995b9, - 0xe995ba, - 0xe995bb, - 0xe995bc, - 0xe995bd, - 0xe995be, - 0xe995bf, - 0xe99680, - 0xe99681, - 0xe99682, - 0xe99683, - 0xe99684, - 0xe99685, - 0xe99686, - 0xe99687, - 0xe99688, - 0xe99689, - 0xe9968a, - 0xe9968b, - 0xe9968c, - 0xe9968d, - 0xe9968e, - 0xe9968f, - 0xe99690, - 0xe99691, - 0xe99692, - 0xe99693, - 0xe99694, - 0xe99695, - 0xe99696, - 0xe99697, - 0xe99698, - 0xe99699, - 0xe9969a, - 0xe9969b, - 0xe9969c, - 0xe9969d, - 0xe9969e, - 0xe9969f, - 0xe996a0, - 0xe996a1, - 0xe996a2, - 0xe996a3, - 0xe996a4, - 0xe996a5, - 0xe996a6, - 0xe996a7, - 0xe996a8, - 0xe996a9, - 0xe996aa, - 0xe996ab, - 0xe996ac, - 0xe996ad, - 0xe996ae, - 0xe996af, - 0xe996b0, - 0xe996b1, - 0xe996b2, - 0xe996b3, - 0xe996b4, - 0xe996b5, - 0xe996b6, - 0xe996b7, - 0xe996b8, - 0xe996b9, - 0xe996ba, - 0xe996bb, - 0xe996bc, - 0xe996bd, - 0xe996be, - 0xe996bf, - 0xe99780, - 0xe99781, - 0xe99782, - 0xe99783, - 0xe99784, - 0xe99785, - 0xe99786, - 0xe99787, - 0xe99788, - 0xe99789, - 0xe9978a, - 0xe9978b, - 0xe9978c, - 0xe9978d, - 0xe9978e, - 0xe9978f, - 0xe99790, - 0xe99791, - 0xe99792, - 0xe99793, - 0xe99794, - 0xe99795, - 0xe99796, - 0xe99797, - 0xe99798, - 0xe99799, - 0xe9979a, - 0xe9979b, - 0xe9979c, - 0xe9979d, - 0xe9979e, - 0xe9979f, - 0xe997a0, - 0xe997a1, - 0xe997a2, - 0xe997a3, - 0xe997a4, - 0xe997a5, - 0xe997a6, - 0xe997a7, - 0xe997a8, - 0xe997a9, - 0xe997aa, - 0xe997ab, - 0xe997ac, - 0xe997ad, - 0xe997ae, - 0xe997af, - 0xe997b0, - 0xe997b1, - 0xe997b2, - 0xe997b3, - 0xe997b4, - 0xe997b5, - 0xe997b6, - 0xe997b7, - 0xe997b8, - 0xe997b9, - 0xe997ba, - 0xe997bb, - 0xe997bc, - 0xe997bd, - 0xe997be, - 0xe997bf, - 0xe99880, - 0xe99881, - 0xe99882, - 0xe99883, - 0xe99884, - 0xe99885, - 0xe99886, - 0xe99887, - 0xe99888, - 0xe99889, - 0xe9988a, - 0xe9988b, - 0xe9988c, - 0xe9988d, - 0xe9988e, - 0xe9988f, - 0xe99890, - 0xe99891, - 0xe99892, - 0xe99893, - 0xe99894, - 0xe99895, - 0xe99896, - 0xe99897, - 0xe99898, - 0xe99899, - 0xe9989a, - 0xe9989b, - 0xe9989c, - 0xe9989d, - 0xe9989e, - 0xe9989f, - 0xe998a0, - 0xe998a1, - 0xe998a2, - 0xe998a3, - 0xe998a4, - 0xe998a5, - 0xe998a6, - 0xe998a7, - 0xe998a8, - 0xe998a9, - 0xe998aa, - 0xe998ab, - 0xe998ac, - 0xe998ad, - 0xe998ae, - 0xe998af, - 0xe998b0, - 0xe998b1, - 0xe998b2, - 0xe998b3, - 0xe998b4, - 0xe998b5, - 0xe998b6, - 0xe998b7, - 0xe998b8, - 0xe998b9, - 0xe998ba, - 0xe998bb, - 0xe998bc, - 0xe998bd, - 0xe998be, - 0xe998bf, - 0xe99980, - 0xe99981, - 0xe99982, - 0xe99983, - 0xe99984, - 0xe99985, - 0xe99986, - 0xe99987, - 0xe99988, - 0xe99989, - 0xe9998a, - 0xe9998b, - 0xe9998c, - 0xe9998d, - 0xe9998e, - 0xe9998f, - 0xe99990, - 0xe99991, - 0xe99992, - 0xe99993, - 0xe99994, - 0xe99995, - 0xe99996, - 0xe99997, - 0xe99998, - 0xe99999, - 0xe9999a, - 0xe9999b, - 0xe9999c, - 0xe9999d, - 0xe9999e, - 0xe9999f, - 0xe999a0, - 0xe999a1, - 0xe999a2, - 0xe999a3, - 0xe999a4, - 0xe999a5, - 0xe999a6, - 0xe999a7, - 0xe999a8, - 0xe999a9, - 0xe999aa, - 0xe999ab, - 0xe999ac, - 0xe999ad, - 0xe999ae, - 0xe999af, - 0xe999b0, - 0xe999b1, - 0xe999b2, - 0xe999b3, - 0xe999b4, - 0xe999b5, - 0xe999b6, - 0xe999b7, - 0xe999b8, - 0xe999b9, - 0xe999ba, - 0xe999bb, - 0xe999bc, - 0xe999bd, - 0xe999be, - 0xe999bf, - 0xe99a80, - 0xe99a81, - 0xe99a82, - 0xe99a83, - 0xe99a84, - 0xe99a85, - 0xe99a86, - 0xe99a87, - 0xe99a88, - 0xe99a89, - 0xe99a8a, - 0xe99a8b, - 0xe99a8c, - 0xe99a8d, - 0xe99a8e, - 0xe99a8f, - 0xe99a90, - 0xe99a91, - 0xe99a92, - 0xe99a93, - 0xe99a94, - 0xe99a95, - 0xe99a96, - 0xe99a97, - 0xe99a98, - 0xe99a99, - 0xe99a9a, - 0xe99a9b, - 0xe99a9c, - 0xe99a9d, - 0xe99a9e, - 0xe99a9f, - 0xe99aa0, - 0xe99aa1, - 0xe99aa2, - 0xe99aa3, - 0xe99aa4, - 0xe99aa5, - 0xe99aa6, - 0xe99aa7, - 0xe99aa8, - 0xe99aa9, - 0xe99aaa, - 0xe99aab, - 0xe99aac, - 0xe99aad, - 0xe99aae, - 0xe99aaf, - 0xe99ab0, - 0xe99ab1, - 0xe99ab2, - 0xe99ab3, - 0xe99ab4, - 0xe99ab5, - 0xe99ab6, - 0xe99ab7, - 0xe99ab8, - 0xe99ab9, - 0xe99aba, - 0xe99abb, - 0xe99abc, - 0xe99abd, - 0xe99abe, - 0xe99abf, - 0xe99b80, - 0xe99b81, - 0xe99b82, - 0xe99b83, - 0xe99b84, - 0xe99b85, - 0xe99b86, - 0xe99b87, - 0xe99b88, - 0xe99b89, - 0xe99b8a, - 0xe99b8b, - 0xe99b8c, - 0xe99b8d, - 0xe99b8e, - 0xe99b8f, - 0xe99b90, - 0xe99b91, - 0xe99b92, - 0xe99b93, - 0xe99b94, - 0xe99b95, - 0xe99b96, - 0xe99b97, - 0xe99b98, - 0xe99b99, - 0xe99b9a, - 0xe99b9b, - 0xe99b9c, - 0xe99b9d, - 0xe99b9e, - 0xe99b9f, - 0xe99ba0, - 0xe99ba1, - 0xe99ba2, - 0xe99ba3, - 0xe99ba4, - 0xe99ba5, - 0xe99ba6, - 0xe99ba7, - 0xe99ba8, - 0xe99ba9, - 0xe99baa, - 0xe99bab, - 0xe99bac, - 0xe99bad, - 0xe99bae, - 0xe99baf, - 0xe99bb0, - 0xe99bb1, - 0xe99bb2, - 0xe99bb3, - 0xe99bb4, - 0xe99bb5, - 0xe99bb6, - 0xe99bb7, - 0xe99bb8, - 0xe99bb9, - 0xe99bba, - 0xe99bbb, - 0xe99bbc, - 0xe99bbd, - 0xe99bbe, - 0xe99bbf, - 0xe99c80, - 0xe99c81, - 0xe99c82, - 0xe99c83, - 0xe99c84, - 0xe99c85, - 0xe99c86, - 0xe99c87, - 0xe99c88, - 0xe99c89, - 0xe99c8a, - 0xe99c8b, - 0xe99c8c, - 0xe99c8d, - 0xe99c8e, - 0xe99c8f, - 0xe99c90, - 0xe99c91, - 0xe99c92, - 0xe99c93, - 0xe99c94, - 0xe99c95, - 0xe99c96, - 0xe99c97, - 0xe99c98, - 0xe99c99, - 0xe99c9a, - 0xe99c9b, - 0xe99c9c, - 0xe99c9d, - 0xe99c9e, - 0xe99c9f, - 0xe99ca0, - 0xe99ca1, - 0xe99ca2, - 0xe99ca3, - 0xe99ca4, - 0xe99ca5, - 0xe99ca6, - 0xe99ca7, - 0xe99ca8, - 0xe99ca9, - 0xe99caa, - 0xe99cab, - 0xe99cac, - 0xe99cad, - 0xe99cae, - 0xe99caf, - 0xe99cb0, - 0xe99cb1, - 0xe99cb2, - 0xe99cb3, - 0xe99cb4, - 0xe99cb5, - 0xe99cb6, - 0xe99cb7, - 0xe99cb8, - 0xe99cb9, - 0xe99cba, - 0xe99cbb, - 0xe99cbc, - 0xe99cbd, - 0xe99cbe, - 0xe99cbf, - 0xe99d80, - 0xe99d81, - 0xe99d82, - 0xe99d83, - 0xe99d84, - 0xe99d85, - 0xe99d86, - 0xe99d87, - 0xe99d88, - 0xe99d89, - 0xe99d8a, - 0xe99d8b, - 0xe99d8c, - 0xe99d8d, - 0xe99d8e, - 0xe99d8f, - 0xe99d90, - 0xe99d91, - 0xe99d92, - 0xe99d93, - 0xe99d94, - 0xe99d95, - 0xe99d96, - 0xe99d97, - 0xe99d98, - 0xe99d99, - 0xe99d9a, - 0xe99d9b, - 0xe99d9c, - 0xe99d9d, - 0xe99d9e, - 0xe99d9f, - 0xe99da0, - 0xe99da1, - 0xe99da2, - 0xe99da3, - 0xe99da4, - 0xe99da5, - 0xe99da6, - 0xe99da7, - 0xe99da8, - 0xe99da9, - 0xe99daa, - 0xe99dab, - 0xe99dac, - 0xe99dad, - 0xe99dae, - 0xe99daf, - 0xe99db0, - 0xe99db1, - 0xe99db2, - 0xe99db3, - 0xe99db4, - 0xe99db5, - 0xe99db6, - 0xe99db7, - 0xe99db8, - 0xe99db9, - 0xe99dba, - 0xe99dbb, - 0xe99dbc, - 0xe99dbd, - 0xe99dbe, - 0xe99dbf, - 0xe99e80, - 0xe99e81, - 0xe99e82, - 0xe99e83, - 0xe99e84, - 0xe99e85, - 0xe99e86, - 0xe99e87, - 0xe99e88, - 0xe99e89, - 0xe99e8a, - 0xe99e8b, - 0xe99e8c, - 0xe99e8d, - 0xe99e8e, - 0xe99e8f, - 0xe99e90, - 0xe99e91, - 0xe99e92, - 0xe99e93, - 0xe99e94, - 0xe99e95, - 0xe99e96, - 0xe99e97, - 0xe99e98, - 0xe99e99, - 0xe99e9a, - 0xe99e9b, - 0xe99e9c, - 0xe99e9d, - 0xe99e9e, - 0xe99e9f, - 0xe99ea0, - 0xe99ea1, - 0xe99ea2, - 0xe99ea3, - 0xe99ea4, - 0xe99ea5, - 0xe99ea6, - 0xe99ea7, - 0xe99ea8, - 0xe99ea9, - 0xe99eaa, - 0xe99eab, - 0xe99eac, - 0xe99ead, - 0xe99eae, - 0xe99eaf, - 0xe99eb0, - 0xe99eb1, - 0xe99eb2, - 0xe99eb3, - 0xe99eb4, - 0xe99eb5, - 0xe99eb6, - 0xe99eb7, - 0xe99eb8, - 0xe99eb9, - 0xe99eba, - 0xe99ebb, - 0xe99ebc, - 0xe99ebd, - 0xe99ebe, - 0xe99ebf, - 0xe99f80, - 0xe99f81, - 0xe99f82, - 0xe99f83, - 0xe99f84, - 0xe99f85, - 0xe99f86, - 0xe99f87, - 0xe99f88, - 0xe99f89, - 0xe99f8a, - 0xe99f8b, - 0xe99f8c, - 0xe99f8d, - 0xe99f8e, - 0xe99f8f, - 0xe99f90, - 0xe99f91, - 0xe99f92, - 0xe99f93, - 0xe99f94, - 0xe99f95, - 0xe99f96, - 0xe99f97, - 0xe99f98, - 0xe99f99, - 0xe99f9a, - 0xe99f9b, - 0xe99f9c, - 0xe99f9d, - 0xe99f9e, - 0xe99f9f, - 0xe99fa0, - 0xe99fa1, - 0xe99fa2, - 0xe99fa3, - 0xe99fa4, - 0xe99fa5, - 0xe99fa6, - 0xe99fa7, - 0xe99fa8, - 0xe99fa9, - 0xe99faa, - 0xe99fab, - 0xe99fac, - 0xe99fad, - 0xe99fae, - 0xe99faf, - 0xe99fb0, - 0xe99fb1, - 0xe99fb2, - 0xe99fb3, - 0xe99fb4, - 0xe99fb5, - 0xe99fb6, - 0xe99fb7, - 0xe99fb8, - 0xe99fb9, - 0xe99fba, - 0xe99fbb, - 0xe99fbc, - 0xe99fbd, - 0xe99fbe, - 0xe99fbf, - 0xe9a080, - 0xe9a081, - 0xe9a082, - 0xe9a083, - 0xe9a084, - 0xe9a085, - 0xe9a086, - 0xe9a087, - 0xe9a088, - 0xe9a089, - 0xe9a08a, - 0xe9a08b, - 0xe9a08c, - 0xe9a08d, - 0xe9a08e, - 0xe9a08f, - 0xe9a090, - 0xe9a091, - 0xe9a092, - 0xe9a093, - 0xe9a094, - 0xe9a095, - 0xe9a096, - 0xe9a097, - 0xe9a098, - 0xe9a099, - 0xe9a09a, - 0xe9a09b, - 0xe9a09c, - 0xe9a09d, - 0xe9a09e, - 0xe9a09f, - 0xe9a0a0, - 0xe9a0a1, - 0xe9a0a2, - 0xe9a0a3, - 0xe9a0a4, - 0xe9a0a5, - 0xe9a0a6, - 0xe9a0a7, - 0xe9a0a8, - 0xe9a0a9, - 0xe9a0aa, - 0xe9a0ab, - 0xe9a0ac, - 0xe9a0ad, - 0xe9a0ae, - 0xe9a0af, - 0xe9a0b0, - 0xe9a0b1, - 0xe9a0b2, - 0xe9a0b3, - 0xe9a0b4, - 0xe9a0b5, - 0xe9a0b6, - 0xe9a0b7, - 0xe9a0b8, - 0xe9a0b9, - 0xe9a0ba, - 0xe9a0bb, - 0xe9a0bc, - 0xe9a0bd, - 0xe9a0be, - 0xe9a0bf, - 0xe9a180, - 0xe9a181, - 0xe9a182, - 0xe9a183, - 0xe9a184, - 0xe9a185, - 0xe9a186, - 0xe9a187, - 0xe9a188, - 0xe9a189, - 0xe9a18a, - 0xe9a18b, - 0xe9a18c, - 0xe9a18d, - 0xe9a18e, - 0xe9a18f, - 0xe9a190, - 0xe9a191, - 0xe9a192, - 0xe9a193, - 0xe9a194, - 0xe9a195, - 0xe9a196, - 0xe9a197, - 0xe9a198, - 0xe9a199, - 0xe9a19a, - 0xe9a19b, - 0xe9a19c, - 0xe9a19d, - 0xe9a19e, - 0xe9a19f, - 0xe9a1a0, - 0xe9a1a1, - 0xe9a1a2, - 0xe9a1a3, - 0xe9a1a4, - 0xe9a1a5, - 0xe9a1a6, - 0xe9a1a7, - 0xe9a1a8, - 0xe9a1a9, - 0xe9a1aa, - 0xe9a1ab, - 0xe9a1ac, - 0xe9a1ad, - 0xe9a1ae, - 0xe9a1af, - 0xe9a1b0, - 0xe9a1b1, - 0xe9a1b2, - 0xe9a1b3, - 0xe9a1b4, - 0xe9a1b5, - 0xe9a1b6, - 0xe9a1b7, - 0xe9a1b8, - 0xe9a1b9, - 0xe9a1ba, - 0xe9a1bb, - 0xe9a1bc, - 0xe9a1bd, - 0xe9a1be, - 0xe9a1bf, - 0xe9a280, - 0xe9a281, - 0xe9a282, - 0xe9a283, - 0xe9a284, - 0xe9a285, - 0xe9a286, - 0xe9a287, - 0xe9a288, - 0xe9a289, - 0xe9a28a, - 0xe9a28b, - 0xe9a28c, - 0xe9a28d, - 0xe9a28e, - 0xe9a28f, - 0xe9a290, - 0xe9a291, - 0xe9a292, - 0xe9a293, - 0xe9a294, - 0xe9a295, - 0xe9a296, - 0xe9a297, - 0xe9a298, - 0xe9a299, - 0xe9a29a, - 0xe9a29b, - 0xe9a29c, - 0xe9a29d, - 0xe9a29e, - 0xe9a29f, - 0xe9a2a0, - 0xe9a2a1, - 0xe9a2a2, - 0xe9a2a3, - 0xe9a2a4, - 0xe9a2a5, - 0xe9a2a6, - 0xe9a2a7, - 0xe9a2a8, - 0xe9a2a9, - 0xe9a2aa, - 0xe9a2ab, - 0xe9a2ac, - 0xe9a2ad, - 0xe9a2ae, - 0xe9a2af, - 0xe9a2b0, - 0xe9a2b1, - 0xe9a2b2, - 0xe9a2b3, - 0xe9a2b4, - 0xe9a2b5, - 0xe9a2b6, - 0xe9a2b7, - 0xe9a2b8, - 0xe9a2b9, - 0xe9a2ba, - 0xe9a2bb, - 0xe9a2bc, - 0xe9a2bd, - 0xe9a2be, - 0xe9a2bf, - 0xe9a380, - 0xe9a381, - 0xe9a382, - 0xe9a383, - 0xe9a384, - 0xe9a385, - 0xe9a386, - 0xe9a387, - 0xe9a388, - 0xe9a389, - 0xe9a38a, - 0xe9a38b, - 0xe9a38c, - 0xe9a38d, - 0xe9a38e, - 0xe9a38f, - 0xe9a390, - 0xe9a391, - 0xe9a392, - 0xe9a393, - 0xe9a394, - 0xe9a395, - 0xe9a396, - 0xe9a397, - 0xe9a398, - 0xe9a399, - 0xe9a39a, - 0xe9a39b, - 0xe9a39c, - 0xe9a39d, - 0xe9a39e, - 0xe9a39f, - 0xe9a3a0, - 0xe9a3a1, - 0xe9a3a2, - 0xe9a3a3, - 0xe9a3a4, - 0xe9a3a5, - 0xe9a3a6, - 0xe9a3a7, - 0xe9a3a8, - 0xe9a3a9, - 0xe9a3aa, - 0xe9a3ab, - 0xe9a3ac, - 0xe9a3ad, - 0xe9a3ae, - 0xe9a3af, - 0xe9a3b0, - 0xe9a3b1, - 0xe9a3b2, - 0xe9a3b3, - 0xe9a3b4, - 0xe9a3b5, - 0xe9a3b6, - 0xe9a3b7, - 0xe9a3b8, - 0xe9a3b9, - 0xe9a3ba, - 0xe9a3bb, - 0xe9a3bc, - 0xe9a3bd, - 0xe9a3be, - 0xe9a3bf, - 0xe9a480, - 0xe9a481, - 0xe9a482, - 0xe9a483, - 0xe9a484, - 0xe9a485, - 0xe9a486, - 0xe9a487, - 0xe9a488, - 0xe9a489, - 0xe9a48a, - 0xe9a48b, - 0xe9a48c, - 0xe9a48d, - 0xe9a48e, - 0xe9a48f, - 0xe9a490, - 0xe9a491, - 0xe9a492, - 0xe9a493, - 0xe9a494, - 0xe9a495, - 0xe9a496, - 0xe9a497, - 0xe9a498, - 0xe9a499, - 0xe9a49a, - 0xe9a49b, - 0xe9a49c, - 0xe9a49d, - 0xe9a49e, - 0xe9a49f, - 0xe9a4a0, - 0xe9a4a1, - 0xe9a4a2, - 0xe9a4a3, - 0xe9a4a4, - 0xe9a4a5, - 0xe9a4a6, - 0xe9a4a7, - 0xe9a4a8, - 0xe9a4a9, - 0xe9a4aa, - 0xe9a4ab, - 0xe9a4ac, - 0xe9a4ad, - 0xe9a4ae, - 0xe9a4af, - 0xe9a4b0, - 0xe9a4b1, - 0xe9a4b2, - 0xe9a4b3, - 0xe9a4b4, - 0xe9a4b5, - 0xe9a4b6, - 0xe9a4b7, - 0xe9a4b8, - 0xe9a4b9, - 0xe9a4ba, - 0xe9a4bb, - 0xe9a4bc, - 0xe9a4bd, - 0xe9a4be, - 0xe9a4bf, - 0xe9a580, - 0xe9a581, - 0xe9a582, - 0xe9a583, - 0xe9a584, - 0xe9a585, - 0xe9a586, - 0xe9a587, - 0xe9a588, - 0xe9a589, - 0xe9a58a, - 0xe9a58b, - 0xe9a58c, - 0xe9a58d, - 0xe9a58e, - 0xe9a58f, - 0xe9a590, - 0xe9a591, - 0xe9a592, - 0xe9a593, - 0xe9a594, - 0xe9a595, - 0xe9a596, - 0xe9a597, - 0xe9a598, - 0xe9a599, - 0xe9a59a, - 0xe9a59b, - 0xe9a59c, - 0xe9a59d, - 0xe9a59e, - 0xe9a59f, - 0xe9a5a0, - 0xe9a5a1, - 0xe9a5a2, - 0xe9a5a3, - 0xe9a5a4, - 0xe9a5a5, - 0xe9a5a6, - 0xe9a5a7, - 0xe9a5a8, - 0xe9a5a9, - 0xe9a5aa, - 0xe9a5ab, - 0xe9a5ac, - 0xe9a5ad, - 0xe9a5ae, - 0xe9a5af, - 0xe9a5b0, - 0xe9a5b1, - 0xe9a5b2, - 0xe9a5b3, - 0xe9a5b4, - 0xe9a5b5, - 0xe9a5b6, - 0xe9a5b7, - 0xe9a5b8, - 0xe9a5b9, - 0xe9a5ba, - 0xe9a5bb, - 0xe9a5bc, - 0xe9a5bd, - 0xe9a5be, - 0xe9a5bf, - 0xe9a680, - 0xe9a681, - 0xe9a682, - 0xe9a683, - 0xe9a684, - 0xe9a685, - 0xe9a686, - 0xe9a687, - 0xe9a688, - 0xe9a689, - 0xe9a68a, - 0xe9a68b, - 0xe9a68c, - 0xe9a68d, - 0xe9a68e, - 0xe9a68f, - 0xe9a690, - 0xe9a691, - 0xe9a692, - 0xe9a693, - 0xe9a694, - 0xe9a695, - 0xe9a696, - 0xe9a697, - 0xe9a698, - 0xe9a699, - 0xe9a69a, - 0xe9a69b, - 0xe9a69c, - 0xe9a69d, - 0xe9a69e, - 0xe9a69f, - 0xe9a6a0, - 0xe9a6a1, - 0xe9a6a2, - 0xe9a6a3, - 0xe9a6a4, - 0xe9a6a5, - 0xe9a6a6, - 0xe9a6a7, - 0xe9a6a8, - 0xe9a6a9, - 0xe9a6aa, - 0xe9a6ab, - 0xe9a6ac, - 0xe9a6ad, - 0xe9a6ae, - 0xe9a6af, - 0xe9a6b0, - 0xe9a6b1, - 0xe9a6b2, - 0xe9a6b3, - 0xe9a6b4, - 0xe9a6b5, - 0xe9a6b6, - 0xe9a6b7, - 0xe9a6b8, - 0xe9a6b9, - 0xe9a6ba, - 0xe9a6bb, - 0xe9a6bc, - 0xe9a6bd, - 0xe9a6be, - 0xe9a6bf, - 0xe9a780, - 0xe9a781, - 0xe9a782, - 0xe9a783, - 0xe9a784, - 0xe9a785, - 0xe9a786, - 0xe9a787, - 0xe9a788, - 0xe9a789, - 0xe9a78a, - 0xe9a78b, - 0xe9a78c, - 0xe9a78d, - 0xe9a78e, - 0xe9a78f, - 0xe9a790, - 0xe9a791, - 0xe9a792, - 0xe9a793, - 0xe9a794, - 0xe9a795, - 0xe9a796, - 0xe9a797, - 0xe9a798, - 0xe9a799, - 0xe9a79a, - 0xe9a79b, - 0xe9a79c, - 0xe9a79d, - 0xe9a79e, - 0xe9a79f, - 0xe9a7a0, - 0xe9a7a1, - 0xe9a7a2, - 0xe9a7a3, - 0xe9a7a4, - 0xe9a7a5, - 0xe9a7a6, - 0xe9a7a7, - 0xe9a7a8, - 0xe9a7a9, - 0xe9a7aa, - 0xe9a7ab, - 0xe9a7ac, - 0xe9a7ad, - 0xe9a7ae, - 0xe9a7af, - 0xe9a7b0, - 0xe9a7b1, - 0xe9a7b2, - 0xe9a7b3, - 0xe9a7b4, - 0xe9a7b5, - 0xe9a7b6, - 0xe9a7b7, - 0xe9a7b8, - 0xe9a7b9, - 0xe9a7ba, - 0xe9a7bb, - 0xe9a7bc, - 0xe9a7bd, - 0xe9a7be, - 0xe9a7bf, - 0xe9a880, - 0xe9a881, - 0xe9a882, - 0xe9a883, - 0xe9a884, - 0xe9a885, - 0xe9a886, - 0xe9a887, - 0xe9a888, - 0xe9a889, - 0xe9a88a, - 0xe9a88b, - 0xe9a88c, - 0xe9a88d, - 0xe9a88e, - 0xe9a88f, - 0xe9a890, - 0xe9a891, - 0xe9a892, - 0xe9a893, - 0xe9a894, - 0xe9a895, - 0xe9a896, - 0xe9a897, - 0xe9a898, - 0xe9a899, - 0xe9a89a, - 0xe9a89b, - 0xe9a89c, - 0xe9a89d, - 0xe9a89e, - 0xe9a89f, - 0xe9a8a0, - 0xe9a8a1, - 0xe9a8a2, - 0xe9a8a3, - 0xe9a8a4, - 0xe9a8a5, - 0xe9a8a6, - 0xe9a8a7, - 0xe9a8a8, - 0xe9a8a9, - 0xe9a8aa, - 0xe9a8ab, - 0xe9a8ac, - 0xe9a8ad, - 0xe9a8ae, - 0xe9a8af, - 0xe9a8b0, - 0xe9a8b1, - 0xe9a8b2, - 0xe9a8b3, - 0xe9a8b4, - 0xe9a8b5, - 0xe9a8b6, - 0xe9a8b7, - 0xe9a8b8, - 0xe9a8b9, - 0xe9a8ba, - 0xe9a8bb, - 0xe9a8bc, - 0xe9a8bd, - 0xe9a8be, - 0xe9a8bf, - 0xe9a980, - 0xe9a981, - 0xe9a982, - 0xe9a983, - 0xe9a984, - 0xe9a985, - 0xe9a986, - 0xe9a987, - 0xe9a988, - 0xe9a989, - 0xe9a98a, - 0xe9a98b, - 0xe9a98c, - 0xe9a98d, - 0xe9a98e, - 0xe9a98f, - 0xe9a990, - 0xe9a991, - 0xe9a992, - 0xe9a993, - 0xe9a994, - 0xe9a995, - 0xe9a996, - 0xe9a997, - 0xe9a998, - 0xe9a999, - 0xe9a99a, - 0xe9a99b, - 0xe9a99c, - 0xe9a99d, - 0xe9a99e, - 0xe9a99f, - 0xe9a9a0, - 0xe9a9a1, - 0xe9a9a2, - 0xe9a9a3, - 0xe9a9a4, - 0xe9a9a5, - 0xe9a9a6, - 0xe9a9a7, - 0xe9a9a8, - 0xe9a9a9, - 0xe9a9aa, - 0xe9a9ab, - 0xe9a9ac, - 0xe9a9ad, - 0xe9a9ae, - 0xe9a9af, - 0xe9a9b0, - 0xe9a9b1, - 0xe9a9b2, - 0xe9a9b3, - 0xe9a9b4, - 0xe9a9b5, - 0xe9a9b6, - 0xe9a9b7, - 0xe9a9b8, - 0xe9a9b9, - 0xe9a9ba, - 0xe9a9bb, - 0xe9a9bc, - 0xe9a9bd, - 0xe9a9be, - 0xe9a9bf, - 0xe9aa80, - 0xe9aa81, - 0xe9aa82, - 0xe9aa83, - 0xe9aa84, - 0xe9aa85, - 0xe9aa86, - 0xe9aa87, - 0xe9aa88, - 0xe9aa89, - 0xe9aa8a, - 0xe9aa8b, - 0xe9aa8c, - 0xe9aa8d, - 0xe9aa8e, - 0xe9aa8f, - 0xe9aa90, - 0xe9aa91, - 0xe9aa92, - 0xe9aa93, - 0xe9aa94, - 0xe9aa95, - 0xe9aa96, - 0xe9aa97, - 0xe9aa98, - 0xe9aa99, - 0xe9aa9a, - 0xe9aa9b, - 0xe9aa9c, - 0xe9aa9d, - 0xe9aa9e, - 0xe9aa9f, - 0xe9aaa0, - 0xe9aaa1, - 0xe9aaa2, - 0xe9aaa3, - 0xe9aaa4, - 0xe9aaa5, - 0xe9aaa6, - 0xe9aaa7, - 0xe9aaa8, - 0xe9aaa9, - 0xe9aaaa, - 0xe9aaab, - 0xe9aaac, - 0xe9aaad, - 0xe9aaae, - 0xe9aaaf, - 0xe9aab0, - 0xe9aab1, - 0xe9aab2, - 0xe9aab3, - 0xe9aab4, - 0xe9aab5, - 0xe9aab6, - 0xe9aab7, - 0xe9aab8, - 0xe9aab9, - 0xe9aaba, - 0xe9aabb, - 0xe9aabc, - 0xe9aabd, - 0xe9aabe, - 0xe9aabf, - 0xe9ab80, - 0xe9ab81, - 0xe9ab82, - 0xe9ab83, - 0xe9ab84, - 0xe9ab85, - 0xe9ab86, - 0xe9ab87, - 0xe9ab88, - 0xe9ab89, - 0xe9ab8a, - 0xe9ab8b, - 0xe9ab8c, - 0xe9ab8d, - 0xe9ab8e, - 0xe9ab8f, - 0xe9ab90, - 0xe9ab91, - 0xe9ab92, - 0xe9ab93, - 0xe9ab94, - 0xe9ab95, - 0xe9ab96, - 0xe9ab97, - 0xe9ab98, - 0xe9ab99, - 0xe9ab9a, - 0xe9ab9b, - 0xe9ab9c, - 0xe9ab9d, - 0xe9ab9e, - 0xe9ab9f, - 0xe9aba0, - 0xe9aba1, - 0xe9aba2, - 0xe9aba3, - 0xe9aba4, - 0xe9aba5, - 0xe9aba6, - 0xe9aba7, - 0xe9aba8, - 0xe9aba9, - 0xe9abaa, - 0xe9abab, - 0xe9abac, - 0xe9abad, - 0xe9abae, - 0xe9abaf, - 0xe9abb0, - 0xe9abb1, - 0xe9abb2, - 0xe9abb3, - 0xe9abb4, - 0xe9abb5, - 0xe9abb6, - 0xe9abb7, - 0xe9abb8, - 0xe9abb9, - 0xe9abba, - 0xe9abbb, - 0xe9abbc, - 0xe9abbd, - 0xe9abbe, - 0xe9abbf, - 0xe9ac80, - 0xe9ac81, - 0xe9ac82, - 0xe9ac83, - 0xe9ac84, - 0xe9ac85, - 0xe9ac86, - 0xe9ac87, - 0xe9ac88, - 0xe9ac89, - 0xe9ac8a, - 0xe9ac8b, - 0xe9ac8c, - 0xe9ac8d, - 0xe9ac8e, - 0xe9ac8f, - 0xe9ac90, - 0xe9ac91, - 0xe9ac92, - 0xe9ac93, - 0xe9ac94, - 0xe9ac95, - 0xe9ac96, - 0xe9ac97, - 0xe9ac98, - 0xe9ac99, - 0xe9ac9a, - 0xe9ac9b, - 0xe9ac9c, - 0xe9ac9d, - 0xe9ac9e, - 0xe9ac9f, - 0xe9aca0, - 0xe9aca1, - 0xe9aca2, - 0xe9aca3, - 0xe9aca4, - 0xe9aca5, - 0xe9aca6, - 0xe9aca7, - 0xe9aca8, - 0xe9aca9, - 0xe9acaa, - 0xe9acab, - 0xe9acac, - 0xe9acad, - 0xe9acae, - 0xe9acaf, - 0xe9acb0, - 0xe9acb1, - 0xe9acb2, - 0xe9acb3, - 0xe9acb4, - 0xe9acb5, - 0xe9acb6, - 0xe9acb7, - 0xe9acb8, - 0xe9acb9, - 0xe9acba, - 0xe9acbb, - 0xe9acbc, - 0xe9acbd, - 0xe9acbe, - 0xe9acbf, - 0xe9ad80, - 0xe9ad81, - 0xe9ad82, - 0xe9ad83, - 0xe9ad84, - 0xe9ad85, - 0xe9ad86, - 0xe9ad87, - 0xe9ad88, - 0xe9ad89, - 0xe9ad8a, - 0xe9ad8b, - 0xe9ad8c, - 0xe9ad8d, - 0xe9ad8e, - 0xe9ad8f, - 0xe9ad90, - 0xe9ad91, - 0xe9ad92, - 0xe9ad93, - 0xe9ad94, - 0xe9ad95, - 0xe9ad96, - 0xe9ad97, - 0xe9ad98, - 0xe9ad99, - 0xe9ad9a, - 0xe9ad9b, - 0xe9ad9c, - 0xe9ad9d, - 0xe9ad9e, - 0xe9ad9f, - 0xe9ada0, - 0xe9ada1, - 0xe9ada2, - 0xe9ada3, - 0xe9ada4, - 0xe9ada5, - 0xe9ada6, - 0xe9ada7, - 0xe9ada8, - 0xe9ada9, - 0xe9adaa, - 0xe9adab, - 0xe9adac, - 0xe9adad, - 0xe9adae, - 0xe9adaf, - 0xe9adb0, - 0xe9adb1, - 0xe9adb2, - 0xe9adb3, - 0xe9adb4, - 0xe9adb5, - 0xe9adb6, - 0xe9adb7, - 0xe9adb8, - 0xe9adb9, - 0xe9adba, - 0xe9adbb, - 0xe9adbc, - 0xe9adbd, - 0xe9adbe, - 0xe9adbf, - 0xe9ae80, - 0xe9ae81, - 0xe9ae82, - 0xe9ae83, - 0xe9ae84, - 0xe9ae85, - 0xe9ae86, - 0xe9ae87, - 0xe9ae88, - 0xe9ae89, - 0xe9ae8a, - 0xe9ae8b, - 0xe9ae8c, - 0xe9ae8d, - 0xe9ae8e, - 0xe9ae8f, - 0xe9ae90, - 0xe9ae91, - 0xe9ae92, - 0xe9ae93, - 0xe9ae94, - 0xe9ae95, - 0xe9ae96, - 0xe9ae97, - 0xe9ae98, - 0xe9ae99, - 0xe9ae9a, - 0xe9ae9b, - 0xe9ae9c, - 0xe9ae9d, - 0xe9ae9e, - 0xe9ae9f, - 0xe9aea0, - 0xe9aea1, - 0xe9aea2, - 0xe9aea3, - 0xe9aea4, - 0xe9aea5, - 0xe9aea6, - 0xe9aea7, - 0xe9aea8, - 0xe9aea9, - 0xe9aeaa, - 0xe9aeab, - 0xe9aeac, - 0xe9aead, - 0xe9aeae, - 0xe9aeaf, - 0xe9aeb0, - 0xe9aeb1, - 0xe9aeb2, - 0xe9aeb3, - 0xe9aeb4, - 0xe9aeb5, - 0xe9aeb6, - 0xe9aeb7, - 0xe9aeb8, - 0xe9aeb9, - 0xe9aeba, - 0xe9aebb, - 0xe9aebc, - 0xe9aebd, - 0xe9aebe, - 0xe9aebf, - 0xe9af80, - 0xe9af81, - 0xe9af82, - 0xe9af83, - 0xe9af84, - 0xe9af85, - 0xe9af86, - 0xe9af87, - 0xe9af88, - 0xe9af89, - 0xe9af8a, - 0xe9af8b, - 0xe9af8c, - 0xe9af8d, - 0xe9af8e, - 0xe9af8f, - 0xe9af90, - 0xe9af91, - 0xe9af92, - 0xe9af93, - 0xe9af94, - 0xe9af95, - 0xe9af96, - 0xe9af97, - 0xe9af98, - 0xe9af99, - 0xe9af9a, - 0xe9af9b, - 0xe9af9c, - 0xe9af9d, - 0xe9af9e, - 0xe9af9f, - 0xe9afa0, - 0xe9afa1, - 0xe9afa2, - 0xe9afa3, - 0xe9afa4, - 0xe9afa5, - 0xe9afa6, - 0xe9afa7, - 0xe9afa8, - 0xe9afa9, - 0xe9afaa, - 0xe9afab, - 0xe9afac, - 0xe9afad, - 0xe9afae, - 0xe9afaf, - 0xe9afb0, - 0xe9afb1, - 0xe9afb2, - 0xe9afb3, - 0xe9afb4, - 0xe9afb5, - 0xe9afb6, - 0xe9afb7, - 0xe9afb8, - 0xe9afb9, - 0xe9afba, - 0xe9afbb, - 0xe9afbc, - 0xe9afbd, - 0xe9afbe, - 0xe9afbf, - 0xe9b080, - 0xe9b081, - 0xe9b082, - 0xe9b083, - 0xe9b084, - 0xe9b085, - 0xe9b086, - 0xe9b087, - 0xe9b088, - 0xe9b089, - 0xe9b08a, - 0xe9b08b, - 0xe9b08c, - 0xe9b08d, - 0xe9b08e, - 0xe9b08f, - 0xe9b090, - 0xe9b091, - 0xe9b092, - 0xe9b093, - 0xe9b094, - 0xe9b095, - 0xe9b096, - 0xe9b097, - 0xe9b098, - 0xe9b099, - 0xe9b09a, - 0xe9b09b, - 0xe9b09c, - 0xe9b09d, - 0xe9b09e, - 0xe9b09f, - 0xe9b0a0, - 0xe9b0a1, - 0xe9b0a2, - 0xe9b0a3, - 0xe9b0a4, - 0xe9b0a5, - 0xe9b0a6, - 0xe9b0a7, - 0xe9b0a8, - 0xe9b0a9, - 0xe9b0aa, - 0xe9b0ab, - 0xe9b0ac, - 0xe9b0ad, - 0xe9b0ae, - 0xe9b0af, - 0xe9b0b0, - 0xe9b0b1, - 0xe9b0b2, - 0xe9b0b3, - 0xe9b0b4, - 0xe9b0b5, - 0xe9b0b6, - 0xe9b0b7, - 0xe9b0b8, - 0xe9b0b9, - 0xe9b0ba, - 0xe9b0bb, - 0xe9b0bc, - 0xe9b0bd, - 0xe9b0be, - 0xe9b0bf, - 0xe9b180, - 0xe9b181, - 0xe9b182, - 0xe9b183, - 0xe9b184, - 0xe9b185, - 0xe9b186, - 0xe9b187, - 0xe9b188, - 0xe9b189, - 0xe9b18a, - 0xe9b18b, - 0xe9b18c, - 0xe9b18d, - 0xe9b18e, - 0xe9b18f, - 0xe9b190, - 0xe9b191, - 0xe9b192, - 0xe9b193, - 0xe9b194, - 0xe9b195, - 0xe9b196, - 0xe9b197, - 0xe9b198, - 0xe9b199, - 0xe9b19a, - 0xe9b19b, - 0xe9b19c, - 0xe9b19d, - 0xe9b19e, - 0xe9b19f, - 0xe9b1a0, - 0xe9b1a1, - 0xe9b1a2, - 0xe9b1a3, - 0xe9b1a4, - 0xe9b1a5, - 0xe9b1a6, - 0xe9b1a7, - 0xe9b1a8, - 0xe9b1a9, - 0xe9b1aa, - 0xe9b1ab, - 0xe9b1ac, - 0xe9b1ad, - 0xe9b1ae, - 0xe9b1af, - 0xe9b1b0, - 0xe9b1b1, - 0xe9b1b2, - 0xe9b1b3, - 0xe9b1b4, - 0xe9b1b5, - 0xe9b1b6, - 0xe9b1b7, - 0xe9b1b8, - 0xe9b1b9, - 0xe9b1ba, - 0xe9b1bb, - 0xe9b1bc, - 0xe9b1bd, - 0xe9b1be, - 0xe9b1bf, - 0xe9b280, - 0xe9b281, - 0xe9b282, - 0xe9b283, - 0xe9b284, - 0xe9b285, - 0xe9b286, - 0xe9b287, - 0xe9b288, - 0xe9b289, - 0xe9b28a, - 0xe9b28b, - 0xe9b28c, - 0xe9b28d, - 0xe9b28e, - 0xe9b28f, - 0xe9b290, - 0xe9b291, - 0xe9b292, - 0xe9b293, - 0xe9b294, - 0xe9b295, - 0xe9b296, - 0xe9b297, - 0xe9b298, - 0xe9b299, - 0xe9b29a, - 0xe9b29b, - 0xe9b29c, - 0xe9b29d, - 0xe9b29e, - 0xe9b29f, - 0xe9b2a0, - 0xe9b2a1, - 0xe9b2a2, - 0xe9b2a3, - 0xe9b2a4, - 0xe9b2a5, - 0xe9b2a6, - 0xe9b2a7, - 0xe9b2a8, - 0xe9b2a9, - 0xe9b2aa, - 0xe9b2ab, - 0xe9b2ac, - 0xe9b2ad, - 0xe9b2ae, - 0xe9b2af, - 0xe9b2b0, - 0xe9b2b1, - 0xe9b2b2, - 0xe9b2b3, - 0xe9b2b4, - 0xe9b2b5, - 0xe9b2b6, - 0xe9b2b7, - 0xe9b2b8, - 0xe9b2b9, - 0xe9b2ba, - 0xe9b2bb, - 0xe9b2bc, - 0xe9b2bd, - 0xe9b2be, - 0xe9b2bf, - 0xe9b380, - 0xe9b381, - 0xe9b382, - 0xe9b383, - 0xe9b384, - 0xe9b385, - 0xe9b386, - 0xe9b387, - 0xe9b388, - 0xe9b389, - 0xe9b38a, - 0xe9b38b, - 0xe9b38c, - 0xe9b38d, - 0xe9b38e, - 0xe9b38f, - 0xe9b390, - 0xe9b391, - 0xe9b392, - 0xe9b393, - 0xe9b394, - 0xe9b395, - 0xe9b396, - 0xe9b397, - 0xe9b398, - 0xe9b399, - 0xe9b39a, - 0xe9b39b, - 0xe9b39c, - 0xe9b39d, - 0xe9b39e, - 0xe9b39f, - 0xe9b3a0, - 0xe9b3a1, - 0xe9b3a2, - 0xe9b3a3, - 0xe9b3a4, - 0xe9b3a5, - 0xe9b3a6, - 0xe9b3a7, - 0xe9b3a8, - 0xe9b3a9, - 0xe9b3aa, - 0xe9b3ab, - 0xe9b3ac, - 0xe9b3ad, - 0xe9b3ae, - 0xe9b3af, - 0xe9b3b0, - 0xe9b3b1, - 0xe9b3b2, - 0xe9b3b3, - 0xe9b3b4, - 0xe9b3b5, - 0xe9b3b6, - 0xe9b3b7, - 0xe9b3b8, - 0xe9b3b9, - 0xe9b3ba, - 0xe9b3bb, - 0xe9b3bc, - 0xe9b3bd, - 0xe9b3be, - 0xe9b3bf, - 0xe9b480, - 0xe9b481, - 0xe9b482, - 0xe9b483, - 0xe9b484, - 0xe9b485, - 0xe9b486, - 0xe9b487, - 0xe9b488, - 0xe9b489, - 0xe9b48a, - 0xe9b48b, - 0xe9b48c, - 0xe9b48d, - 0xe9b48e, - 0xe9b48f, - 0xe9b490, - 0xe9b491, - 0xe9b492, - 0xe9b493, - 0xe9b494, - 0xe9b495, - 0xe9b496, - 0xe9b497, - 0xe9b498, - 0xe9b499, - 0xe9b49a, - 0xe9b49b, - 0xe9b49c, - 0xe9b49d, - 0xe9b49e, - 0xe9b49f, - 0xe9b4a0, - 0xe9b4a1, - 0xe9b4a2, - 0xe9b4a3, - 0xe9b4a4, - 0xe9b4a5, - 0xe9b4a6, - 0xe9b4a7, - 0xe9b4a8, - 0xe9b4a9, - 0xe9b4aa, - 0xe9b4ab, - 0xe9b4ac, - 0xe9b4ad, - 0xe9b4ae, - 0xe9b4af, - 0xe9b4b0, - 0xe9b4b1, - 0xe9b4b2, - 0xe9b4b3, - 0xe9b4b4, - 0xe9b4b5, - 0xe9b4b6, - 0xe9b4b7, - 0xe9b4b8, - 0xe9b4b9, - 0xe9b4ba, - 0xe9b4bb, - 0xe9b4bc, - 0xe9b4bd, - 0xe9b4be, - 0xe9b4bf, - 0xe9b580, - 0xe9b581, - 0xe9b582, - 0xe9b583, - 0xe9b584, - 0xe9b585, - 0xe9b586, - 0xe9b587, - 0xe9b588, - 0xe9b589, - 0xe9b58a, - 0xe9b58b, - 0xe9b58c, - 0xe9b58d, - 0xe9b58e, - 0xe9b58f, - 0xe9b590, - 0xe9b591, - 0xe9b592, - 0xe9b593, - 0xe9b594, - 0xe9b595, - 0xe9b596, - 0xe9b597, - 0xe9b598, - 0xe9b599, - 0xe9b59a, - 0xe9b59b, - 0xe9b59c, - 0xe9b59d, - 0xe9b59e, - 0xe9b59f, - 0xe9b5a0, - 0xe9b5a1, - 0xe9b5a2, - 0xe9b5a3, - 0xe9b5a4, - 0xe9b5a5, - 0xe9b5a6, - 0xe9b5a7, - 0xe9b5a8, - 0xe9b5a9, - 0xe9b5aa, - 0xe9b5ab, - 0xe9b5ac, - 0xe9b5ad, - 0xe9b5ae, - 0xe9b5af, - 0xe9b5b0, - 0xe9b5b1, - 0xe9b5b2, - 0xe9b5b3, - 0xe9b5b4, - 0xe9b5b5, - 0xe9b5b6, - 0xe9b5b7, - 0xe9b5b8, - 0xe9b5b9, - 0xe9b5ba, - 0xe9b5bb, - 0xe9b5bc, - 0xe9b5bd, - 0xe9b5be, - 0xe9b5bf, - 0xe9b680, - 0xe9b681, - 0xe9b682, - 0xe9b683, - 0xe9b684, - 0xe9b685, - 0xe9b686, - 0xe9b687, - 0xe9b688, - 0xe9b689, - 0xe9b68a, - 0xe9b68b, - 0xe9b68c, - 0xe9b68d, - 0xe9b68e, - 0xe9b68f, - 0xe9b690, - 0xe9b691, - 0xe9b692, - 0xe9b693, - 0xe9b694, - 0xe9b695, - 0xe9b696, - 0xe9b697, - 0xe9b698, - 0xe9b699, - 0xe9b69a, - 0xe9b69b, - 0xe9b69c, - 0xe9b69d, - 0xe9b69e, - 0xe9b69f, - 0xe9b6a0, - 0xe9b6a1, - 0xe9b6a2, - 0xe9b6a3, - 0xe9b6a4, - 0xe9b6a5, - 0xe9b6a6, - 0xe9b6a7, - 0xe9b6a8, - 0xe9b6a9, - 0xe9b6aa, - 0xe9b6ab, - 0xe9b6ac, - 0xe9b6ad, - 0xe9b6ae, - 0xe9b6af, - 0xe9b6b0, - 0xe9b6b1, - 0xe9b6b2, - 0xe9b6b3, - 0xe9b6b4, - 0xe9b6b5, - 0xe9b6b6, - 0xe9b6b7, - 0xe9b6b8, - 0xe9b6b9, - 0xe9b6ba, - 0xe9b6bb, - 0xe9b6bc, - 0xe9b6bd, - 0xe9b6be, - 0xe9b6bf, - 0xe9b780, - 0xe9b781, - 0xe9b782, - 0xe9b783, - 0xe9b784, - 0xe9b785, - 0xe9b786, - 0xe9b787, - 0xe9b788, - 0xe9b789, - 0xe9b78a, - 0xe9b78b, - 0xe9b78c, - 0xe9b78d, - 0xe9b78e, - 0xe9b78f, - 0xe9b790, - 0xe9b791, - 0xe9b792, - 0xe9b793, - 0xe9b794, - 0xe9b795, - 0xe9b796, - 0xe9b797, - 0xe9b798, - 0xe9b799, - 0xe9b79a, - 0xe9b79b, - 0xe9b79c, - 0xe9b79d, - 0xe9b79e, - 0xe9b79f, - 0xe9b7a0, - 0xe9b7a1, - 0xe9b7a2, - 0xe9b7a3, - 0xe9b7a4, - 0xe9b7a5, - 0xe9b7a6, - 0xe9b7a7, - 0xe9b7a8, - 0xe9b7a9, - 0xe9b7aa, - 0xe9b7ab, - 0xe9b7ac, - 0xe9b7ad, - 0xe9b7ae, - 0xe9b7af, - 0xe9b7b0, - 0xe9b7b1, - 0xe9b7b2, - 0xe9b7b3, - 0xe9b7b4, - 0xe9b7b5, - 0xe9b7b6, - 0xe9b7b7, - 0xe9b7b8, - 0xe9b7b9, - 0xe9b7ba, - 0xe9b7bb, - 0xe9b7bc, - 0xe9b7bd, - 0xe9b7be, - 0xe9b7bf, - 0xe9b880, - 0xe9b881, - 0xe9b882, - 0xe9b883, - 0xe9b884, - 0xe9b885, - 0xe9b886, - 0xe9b887, - 0xe9b888, - 0xe9b889, - 0xe9b88a, - 0xe9b88b, - 0xe9b88c, - 0xe9b88d, - 0xe9b88e, - 0xe9b88f, - 0xe9b890, - 0xe9b891, - 0xe9b892, - 0xe9b893, - 0xe9b894, - 0xe9b895, - 0xe9b896, - 0xe9b897, - 0xe9b898, - 0xe9b899, - 0xe9b89a, - 0xe9b89b, - 0xe9b89c, - 0xe9b89d, - 0xe9b89e, - 0xe9b89f, - 0xe9b8a0, - 0xe9b8a1, - 0xe9b8a2, - 0xe9b8a3, - 0xe9b8a4, - 0xe9b8a5, - 0xe9b8a6, - 0xe9b8a7, - 0xe9b8a8, - 0xe9b8a9, - 0xe9b8aa, - 0xe9b8ab, - 0xe9b8ac, - 0xe9b8ad, - 0xe9b8ae, - 0xe9b8af, - 0xe9b8b0, - 0xe9b8b1, - 0xe9b8b2, - 0xe9b8b3, - 0xe9b8b4, - 0xe9b8b5, - 0xe9b8b6, - 0xe9b8b7, - 0xe9b8b8, - 0xe9b8b9, - 0xe9b8ba, - 0xe9b8bb, - 0xe9b8bc, - 0xe9b8bd, - 0xe9b8be, - 0xe9b8bf, - 0xe9b980, - 0xe9b981, - 0xe9b982, - 0xe9b983, - 0xe9b984, - 0xe9b985, - 0xe9b986, - 0xe9b987, - 0xe9b988, - 0xe9b989, - 0xe9b98a, - 0xe9b98b, - 0xe9b98c, - 0xe9b98d, - 0xe9b98e, - 0xe9b98f, - 0xe9b990, - 0xe9b991, - 0xe9b992, - 0xe9b993, - 0xe9b994, - 0xe9b995, - 0xe9b996, - 0xe9b997, - 0xe9b998, - 0xe9b999, - 0xe9b99a, - 0xe9b99b, - 0xe9b99c, - 0xe9b99d, - 0xe9b99e, - 0xe9b99f, - 0xe9b9a0, - 0xe9b9a1, - 0xe9b9a2, - 0xe9b9a3, - 0xe9b9a4, - 0xe9b9a5, - 0xe9b9a6, - 0xe9b9a7, - 0xe9b9a8, - 0xe9b9a9, - 0xe9b9aa, - 0xe9b9ab, - 0xe9b9ac, - 0xe9b9ad, - 0xe9b9ae, - 0xe9b9af, - 0xe9b9b0, - 0xe9b9b1, - 0xe9b9b2, - 0xe9b9b3, - 0xe9b9b4, - 0xe9b9b5, - 0xe9b9b6, - 0xe9b9b7, - 0xe9b9b8, - 0xe9b9b9, - 0xe9b9ba, - 0xe9b9bb, - 0xe9b9bc, - 0xe9b9bd, - 0xe9b9be, - 0xe9b9bf, - 0xe9ba80, - 0xe9ba81, - 0xe9ba82, - 0xe9ba83, - 0xe9ba84, - 0xe9ba85, - 0xe9ba86, - 0xe9ba87, - 0xe9ba88, - 0xe9ba89, - 0xe9ba8a, - 0xe9ba8b, - 0xe9ba8c, - 0xe9ba8d, - 0xe9ba8e, - 0xe9ba8f, - 0xe9ba90, - 0xe9ba91, - 0xe9ba92, - 0xe9ba93, - 0xe9ba94, - 0xe9ba95, - 0xe9ba96, - 0xe9ba97, - 0xe9ba98, - 0xe9ba99, - 0xe9ba9a, - 0xe9ba9b, - 0xe9ba9c, - 0xe9ba9d, - 0xe9ba9e, - 0xe9ba9f, - 0xe9baa0, - 0xe9baa1, - 0xe9baa2, - 0xe9baa3, - 0xe9baa4, - 0xe9baa5, - 0xe9baa6, - 0xe9baa7, - 0xe9baa8, - 0xe9baa9, - 0xe9baaa, - 0xe9baab, - 0xe9baac, - 0xe9baad, - 0xe9baae, - 0xe9baaf, - 0xe9bab0, - 0xe9bab1, - 0xe9bab2, - 0xe9bab3, - 0xe9bab4, - 0xe9bab5, - 0xe9bab6, - 0xe9bab7, - 0xe9bab8, - 0xe9bab9, - 0xe9baba, - 0xe9babb, - 0xe9babc, - 0xe9babd, - 0xe9babe, - 0xe9babf, - 0xe9bb80, - 0xe9bb81, - 0xe9bb82, - 0xe9bb83, - 0xe9bb84, - 0xe9bb85, - 0xe9bb86, - 0xe9bb87, - 0xe9bb88, - 0xe9bb89, - 0xe9bb8a, - 0xe9bb8b, - 0xe9bb8c, - 0xe9bb8d, - 0xe9bb8e, - 0xe9bb8f, - 0xe9bb90, - 0xe9bb91, - 0xe9bb92, - 0xe9bb93, - 0xe9bb94, - 0xe9bb95, - 0xe9bb96, - 0xe9bb97, - 0xe9bb98, - 0xe9bb99, - 0xe9bb9a, - 0xe9bb9b, - 0xe9bb9c, - 0xe9bb9d, - 0xe9bb9e, - 0xe9bb9f, - 0xe9bba0, - 0xe9bba1, - 0xe9bba2, - 0xe9bba3, - 0xe9bba4, - 0xe9bba5, - 0xe9bba6, - 0xe9bba7, - 0xe9bba8, - 0xe9bba9, - 0xe9bbaa, - 0xe9bbab, - 0xe9bbac, - 0xe9bbad, - 0xe9bbae, - 0xe9bbaf, - 0xe9bbb0, - 0xe9bbb1, - 0xe9bbb2, - 0xe9bbb3, - 0xe9bbb4, - 0xe9bbb5, - 0xe9bbb6, - 0xe9bbb7, - 0xe9bbb8, - 0xe9bbb9, - 0xe9bbba, - 0xe9bbbb, - 0xe9bbbc, - 0xe9bbbd, - 0xe9bbbe, - 0xe9bbbf, - 0xe9bc80, - 0xe9bc81, - 0xe9bc82, - 0xe9bc83, - 0xe9bc84, - 0xe9bc85, - 0xe9bc86, - 0xe9bc87, - 0xe9bc88, - 0xe9bc89, - 0xe9bc8a, - 0xe9bc8b, - 0xe9bc8c, - 0xe9bc8d, - 0xe9bc8e, - 0xe9bc8f, - 0xe9bc90, - 0xe9bc91, - 0xe9bc92, - 0xe9bc93, - 0xe9bc94, - 0xe9bc95, - 0xe9bc96, - 0xe9bc97, - 0xe9bc98, - 0xe9bc99, - 0xe9bc9a, - 0xe9bc9b, - 0xe9bc9c, - 0xe9bc9d, - 0xe9bc9e, - 0xe9bc9f, - 0xe9bca0, - 0xe9bca1, - 0xe9bca2, - 0xe9bca3, - 0xe9bca4, - 0xe9bca5, - 0xe9bca6, - 0xe9bca7, - 0xe9bca8, - 0xe9bca9, - 0xe9bcaa, - 0xe9bcab, - 0xe9bcac, - 0xe9bcad, - 0xe9bcae, - 0xe9bcaf, - 0xe9bcb0, - 0xe9bcb1, - 0xe9bcb2, - 0xe9bcb3, - 0xe9bcb4, - 0xe9bcb5, - 0xe9bcb6, - 0xe9bcb7, - 0xe9bcb8, - 0xe9bcb9, - 0xe9bcba, - 0xe9bcbb, - 0xe9bcbc, - 0xe9bcbd, - 0xe9bcbe, - 0xe9bcbf, - 0xe9bd80, - 0xe9bd81, - 0xe9bd82, - 0xe9bd83, - 0xe9bd84, - 0xe9bd85, - 0xe9bd86, - 0xe9bd87, - 0xe9bd88, - 0xe9bd89, - 0xe9bd8a, - 0xe9bd8b, - 0xe9bd8c, - 0xe9bd8d, - 0xe9bd8e, - 0xe9bd8f, - 0xe9bd90, - 0xe9bd91, - 0xe9bd92, - 0xe9bd93, - 0xe9bd94, - 0xe9bd95, - 0xe9bd96, - 0xe9bd97, - 0xe9bd98, - 0xe9bd99, - 0xe9bd9a, - 0xe9bd9b, - 0xe9bd9c, - 0xe9bd9d, - 0xe9bd9e, - 0xe9bd9f, - 0xe9bda0, - 0xe9bda1, - 0xe9bda2, - 0xe9bda3, - 0xe9bda4, - 0xe9bda5, - 0xe9bda6, - 0xe9bda7, - 0xe9bda8, - 0xe9bda9, - 0xe9bdaa, - 0xe9bdab, - 0xe9bdac, - 0xe9bdad, - 0xe9bdae, - 0xe9bdaf, - 0xe9bdb0, - 0xe9bdb1, - 0xe9bdb2, - 0xe9bdb3, - 0xe9bdb4, - 0xe9bdb5, - 0xe9bdb6, - 0xe9bdb7, - 0xe9bdb8, - 0xe9bdb9, - 0xe9bdba, - 0xe9bdbb, - 0xe9bdbc, - 0xe9bdbd, - 0xe9bdbe, - 0xe9bdbf, - 0xe9be80, - 0xe9be81, - 0xe9be82, - 0xe9be83, - 0xe9be84, - 0xe9be85, - 0xe9be86, - 0xe9be87, - 0xe9be88, - 0xe9be89, - 0xe9be8a, - 0xe9be8b, - 0xe9be8c, - 0xe9be8d, - 0xe9be8e, - 0xe9be8f, - 0xe9be90, - 0xe9be91, - 0xe9be92, - 0xe9be93, - 0xe9be94, - 0xe9be95, - 0xe9be96, - 0xe9be97, - 0xe9be98, - 0xe9be99, - 0xe9be9a, - 0xe9be9b, - 0xe9be9c, - 0xe9be9d, - 0xe9be9e, - 0xe9be9f, - 0xe9bea0, - 0xe9bea1, - 0xe9bea2, - 0xe9bea3, - 0xe9bea4, - 0xe9bea5, - 0xe9bea6, - 0xe9bea7, - 0xe9bea8, - 0xe9bea9, - 0xe9beaa, - 0xe9beab, - 0xe9beac, - 0xe9bead, - 0xe9beae, - 0xe9beaf, - 0xe9beb0, - 0xe9beb1, - 0xe9beb2, - 0xe9beb3, - 0xe9beb4, - 0xe9beb5, - 0xe9beb6, - 0xe9beb7, - 0xe9beb8, - 0xe9beb9, - 0xe9beba, - 0xe9bebb, - 0xe9bebc, - 0xe9bebd, - 0xe9bebe, - 0xe9bebf, - 0xe9bf80, - 0xe9bf81, - 0xe9bf82, - 0xe9bf83, - 0xe9bf84, - 0xe9bf85, - 0xe9bf86, - 0xe9bf87, - 0xe9bf88, - 0xe9bf89, - 0xe9bf8a, - 0xe9bf8b, - 0xe9bf8c, - 0xe9bf8d, - 0xe9bf8e, - 0xe9bf8f, - 0xe9bf90, - 0xe9bf91, - 0xe9bf92, - 0xe9bf93, - 0xe9bf94, - 0xe9bf95, - 0xe9bf96, - 0xe9bf97, - 0xe9bf98, - 0xe9bf99, - 0xe9bf9a, - 0xe9bf9b, - 0xe9bf9c, - 0xe9bf9d, - 0xe9bf9e, - 0xe9bf9f, - 0xe9bfa0, - 0xe9bfa1, - 0xe9bfa2, - 0xe9bfa3, - 0xe9bfa4, - 0xe9bfa5, - 0xe9bfa6, - 0xe9bfa7, - 0xe9bfa8, - 0xe9bfa9, - 0xe9bfaa, - 0xe9bfab, - 0xe9bfac, - 0xe9bfad, - 0xe9bfae, - 0xe9bfaf, - 0xe9bfb0, - 0xe9bfb1, - 0xe9bfb2, - 0xe9bfb3, - 0xe9bfb4, - 0xe9bfb5, - 0xe9bfb6, - 0xe9bfb7, - 0xe9bfb8, - 0xe9bfb9, - 0xe9bfba, - 0xe9bfbb, - 0xe9bfbc, - 0xe9bfbd, - 0xe9bfbe, - 0xe9bfbf, - 0xea8080, - 0xea8081, - 0xea8082, - 0xea8083, - 0xea8084, - 0xea8085, - 0xea8086, - 0xea8087, - 0xea8088, - 0xea8089, - 0xea808a, - 0xea808b, - 0xea808c, - 0xea808d, - 0xea808e, - 0xea808f, - 0xea8090, - 0xea8091, - 0xea8092, - 0xea8093, - 0xea8094, - 0xea8095, - 0xea8096, - 0xea8097, - 0xea8098, - 0xea8099, - 0xea809a, - 0xea809b, - 0xea809c, - 0xea809d, - 0xea809e, - 0xea809f, - 0xea80a0, - 0xea80a1, - 0xea80a2, - 0xea80a3, - 0xea80a4, - 0xea80a5, - 0xea80a6, - 0xea80a7, - 0xea80a8, - 0xea80a9, - 0xea80aa, - 0xea80ab, - 0xea80ac, - 0xea80ad, - 0xea80ae, - 0xea80af, - 0xea80b0, - 0xea80b1, - 0xea80b2, - 0xea80b3, - 0xea80b4, - 0xea80b5, - 0xea80b6, - 0xea80b7, - 0xea80b8, - 0xea80b9, - 0xea80ba, - 0xea80bb, - 0xea80bc, - 0xea80bd, - 0xea80be, - 0xea80bf, - 0xea8180, - 0xea8181, - 0xea8182, - 0xea8183, - 0xea8184, - 0xea8185, - 0xea8186, - 0xea8187, - 0xea8188, - 0xea8189, - 0xea818a, - 0xea818b, - 0xea818c, - 0xea818d, - 0xea818e, - 0xea818f, - 0xea8190, - 0xea8191, - 0xea8192, - 0xea8193, - 0xea8194, - 0xea8195, - 0xea8196, - 0xea8197, - 0xea8198, - 0xea8199, - 0xea819a, - 0xea819b, - 0xea819c, - 0xea819d, - 0xea819e, - 0xea819f, - 0xea81a0, - 0xea81a1, - 0xea81a2, - 0xea81a3, - 0xea81a4, - 0xea81a5, - 0xea81a6, - 0xea81a7, - 0xea81a8, - 0xea81a9, - 0xea81aa, - 0xea81ab, - 0xea81ac, - 0xea81ad, - 0xea81ae, - 0xea81af, - 0xea81b0, - 0xea81b1, - 0xea81b2, - 0xea81b3, - 0xea81b4, - 0xea81b5, - 0xea81b6, - 0xea81b7, - 0xea81b8, - 0xea81b9, - 0xea81ba, - 0xea81bb, - 0xea81bc, - 0xea81bd, - 0xea81be, - 0xea81bf, - 0xea8280, - 0xea8281, - 0xea8282, - 0xea8283, - 0xea8284, - 0xea8285, - 0xea8286, - 0xea8287, - 0xea8288, - 0xea8289, - 0xea828a, - 0xea828b, - 0xea828c, - 0xea828d, - 0xea828e, - 0xea828f, - 0xea8290, - 0xea8291, - 0xea8292, - 0xea8293, - 0xea8294, - 0xea8295, - 0xea8296, - 0xea8297, - 0xea8298, - 0xea8299, - 0xea829a, - 0xea829b, - 0xea829c, - 0xea829d, - 0xea829e, - 0xea829f, - 0xea82a0, - 0xea82a1, - 0xea82a2, - 0xea82a3, - 0xea82a4, - 0xea82a5, - 0xea82a6, - 0xea82a7, - 0xea82a8, - 0xea82a9, - 0xea82aa, - 0xea82ab, - 0xea82ac, - 0xea82ad, - 0xea82ae, - 0xea82af, - 0xea82b0, - 0xea82b1, - 0xea82b2, - 0xea82b3, - 0xea82b4, - 0xea82b5, - 0xea82b6, - 0xea82b7, - 0xea82b8, - 0xea82b9, - 0xea82ba, - 0xea82bb, - 0xea82bc, - 0xea82bd, - 0xea82be, - 0xea82bf, - 0xea8380, - 0xea8381, - 0xea8382, - 0xea8383, - 0xea8384, - 0xea8385, - 0xea8386, - 0xea8387, - 0xea8388, - 0xea8389, - 0xea838a, - 0xea838b, - 0xea838c, - 0xea838d, - 0xea838e, - 0xea838f, - 0xea8390, - 0xea8391, - 0xea8392, - 0xea8393, - 0xea8394, - 0xea8395, - 0xea8396, - 0xea8397, - 0xea8398, - 0xea8399, - 0xea839a, - 0xea839b, - 0xea839c, - 0xea839d, - 0xea839e, - 0xea839f, - 0xea83a0, - 0xea83a1, - 0xea83a2, - 0xea83a3, - 0xea83a4, - 0xea83a5, - 0xea83a6, - 0xea83a7, - 0xea83a8, - 0xea83a9, - 0xea83aa, - 0xea83ab, - 0xea83ac, - 0xea83ad, - 0xea83ae, - 0xea83af, - 0xea83b0, - 0xea83b1, - 0xea83b2, - 0xea83b3, - 0xea83b4, - 0xea83b5, - 0xea83b6, - 0xea83b7, - 0xea83b8, - 0xea83b9, - 0xea83ba, - 0xea83bb, - 0xea83bc, - 0xea83bd, - 0xea83be, - 0xea83bf, - 0xea8480, - 0xea8481, - 0xea8482, - 0xea8483, - 0xea8484, - 0xea8485, - 0xea8486, - 0xea8487, - 0xea8488, - 0xea8489, - 0xea848a, - 0xea848b, - 0xea848c, - 0xea848d, - 0xea848e, - 0xea848f, - 0xea8490, - 0xea8491, - 0xea8492, - 0xea8493, - 0xea8494, - 0xea8495, - 0xea8496, - 0xea8497, - 0xea8498, - 0xea8499, - 0xea849a, - 0xea849b, - 0xea849c, - 0xea849d, - 0xea849e, - 0xea849f, - 0xea84a0, - 0xea84a1, - 0xea84a2, - 0xea84a3, - 0xea84a4, - 0xea84a5, - 0xea84a6, - 0xea84a7, - 0xea84a8, - 0xea84a9, - 0xea84aa, - 0xea84ab, - 0xea84ac, - 0xea84ad, - 0xea84ae, - 0xea84af, - 0xea84b0, - 0xea84b1, - 0xea84b2, - 0xea84b3, - 0xea84b4, - 0xea84b5, - 0xea84b6, - 0xea84b7, - 0xea84b8, - 0xea84b9, - 0xea84ba, - 0xea84bb, - 0xea84bc, - 0xea84bd, - 0xea84be, - 0xea84bf, - 0xea8580, - 0xea8581, - 0xea8582, - 0xea8583, - 0xea8584, - 0xea8585, - 0xea8586, - 0xea8587, - 0xea8588, - 0xea8589, - 0xea858a, - 0xea858b, - 0xea858c, - 0xea858d, - 0xea858e, - 0xea858f, - 0xea8590, - 0xea8591, - 0xea8592, - 0xea8593, - 0xea8594, - 0xea8595, - 0xea8596, - 0xea8597, - 0xea8598, - 0xea8599, - 0xea859a, - 0xea859b, - 0xea859c, - 0xea859d, - 0xea859e, - 0xea859f, - 0xea85a0, - 0xea85a1, - 0xea85a2, - 0xea85a3, - 0xea85a4, - 0xea85a5, - 0xea85a6, - 0xea85a7, - 0xea85a8, - 0xea85a9, - 0xea85aa, - 0xea85ab, - 0xea85ac, - 0xea85ad, - 0xea85ae, - 0xea85af, - 0xea85b0, - 0xea85b1, - 0xea85b2, - 0xea85b3, - 0xea85b4, - 0xea85b5, - 0xea85b6, - 0xea85b7, - 0xea85b8, - 0xea85b9, - 0xea85ba, - 0xea85bb, - 0xea85bc, - 0xea85bd, - 0xea85be, - 0xea85bf, - 0xea8680, - 0xea8681, - 0xea8682, - 0xea8683, - 0xea8684, - 0xea8685, - 0xea8686, - 0xea8687, - 0xea8688, - 0xea8689, - 0xea868a, - 0xea868b, - 0xea868c, - 0xea868d, - 0xea868e, - 0xea868f, - 0xea8690, - 0xea8691, - 0xea8692, - 0xea8693, - 0xea8694, - 0xea8695, - 0xea8696, - 0xea8697, - 0xea8698, - 0xea8699, - 0xea869a, - 0xea869b, - 0xea869c, - 0xea869d, - 0xea869e, - 0xea869f, - 0xea86a0, - 0xea86a1, - 0xea86a2, - 0xea86a3, - 0xea86a4, - 0xea86a5, - 0xea86a6, - 0xea86a7, - 0xea86a8, - 0xea86a9, - 0xea86aa, - 0xea86ab, - 0xea86ac, - 0xea86ad, - 0xea86ae, - 0xea86af, - 0xea86b0, - 0xea86b1, - 0xea86b2, - 0xea86b3, - 0xea86b4, - 0xea86b5, - 0xea86b6, - 0xea86b7, - 0xea86b8, - 0xea86b9, - 0xea86ba, - 0xea86bb, - 0xea86bc, - 0xea86bd, - 0xea86be, - 0xea86bf, - 0xea8780, - 0xea8781, - 0xea8782, - 0xea8783, - 0xea8784, - 0xea8785, - 0xea8786, - 0xea8787, - 0xea8788, - 0xea8789, - 0xea878a, - 0xea878b, - 0xea878c, - 0xea878d, - 0xea878e, - 0xea878f, - 0xea8790, - 0xea8791, - 0xea8792, - 0xea8793, - 0xea8794, - 0xea8795, - 0xea8796, - 0xea8797, - 0xea8798, - 0xea8799, - 0xea879a, - 0xea879b, - 0xea879c, - 0xea879d, - 0xea879e, - 0xea879f, - 0xea87a0, - 0xea87a1, - 0xea87a2, - 0xea87a3, - 0xea87a4, - 0xea87a5, - 0xea87a6, - 0xea87a7, - 0xea87a8, - 0xea87a9, - 0xea87aa, - 0xea87ab, - 0xea87ac, - 0xea87ad, - 0xea87ae, - 0xea87af, - 0xea87b0, - 0xea87b1, - 0xea87b2, - 0xea87b3, - 0xea87b4, - 0xea87b5, - 0xea87b6, - 0xea87b7, - 0xea87b8, - 0xea87b9, - 0xea87ba, - 0xea87bb, - 0xea87bc, - 0xea87bd, - 0xea87be, - 0xea87bf, - 0xea8880, - 0xea8881, - 0xea8882, - 0xea8883, - 0xea8884, - 0xea8885, - 0xea8886, - 0xea8887, - 0xea8888, - 0xea8889, - 0xea888a, - 0xea888b, - 0xea888c, - 0xea888d, - 0xea888e, - 0xea888f, - 0xea8890, - 0xea8891, - 0xea8892, - 0xea8893, - 0xea8894, - 0xea8895, - 0xea8896, - 0xea8897, - 0xea8898, - 0xea8899, - 0xea889a, - 0xea889b, - 0xea889c, - 0xea889d, - 0xea889e, - 0xea889f, - 0xea88a0, - 0xea88a1, - 0xea88a2, - 0xea88a3, - 0xea88a4, - 0xea88a5, - 0xea88a6, - 0xea88a7, - 0xea88a8, - 0xea88a9, - 0xea88aa, - 0xea88ab, - 0xea88ac, - 0xea88ad, - 0xea88ae, - 0xea88af, - 0xea88b0, - 0xea88b1, - 0xea88b2, - 0xea88b3, - 0xea88b4, - 0xea88b5, - 0xea88b6, - 0xea88b7, - 0xea88b8, - 0xea88b9, - 0xea88ba, - 0xea88bb, - 0xea88bc, - 0xea88bd, - 0xea88be, - 0xea88bf, - 0xea8980, - 0xea8981, - 0xea8982, - 0xea8983, - 0xea8984, - 0xea8985, - 0xea8986, - 0xea8987, - 0xea8988, - 0xea8989, - 0xea898a, - 0xea898b, - 0xea898c, - 0xea898d, - 0xea898e, - 0xea898f, - 0xea8990, - 0xea8991, - 0xea8992, - 0xea8993, - 0xea8994, - 0xea8995, - 0xea8996, - 0xea8997, - 0xea8998, - 0xea8999, - 0xea899a, - 0xea899b, - 0xea899c, - 0xea899d, - 0xea899e, - 0xea899f, - 0xea89a0, - 0xea89a1, - 0xea89a2, - 0xea89a3, - 0xea89a4, - 0xea89a5, - 0xea89a6, - 0xea89a7, - 0xea89a8, - 0xea89a9, - 0xea89aa, - 0xea89ab, - 0xea89ac, - 0xea89ad, - 0xea89ae, - 0xea89af, - 0xea89b0, - 0xea89b1, - 0xea89b2, - 0xea89b3, - 0xea89b4, - 0xea89b5, - 0xea89b6, - 0xea89b7, - 0xea89b8, - 0xea89b9, - 0xea89ba, - 0xea89bb, - 0xea89bc, - 0xea89bd, - 0xea89be, - 0xea89bf, - 0xea8a80, - 0xea8a81, - 0xea8a82, - 0xea8a83, - 0xea8a84, - 0xea8a85, - 0xea8a86, - 0xea8a87, - 0xea8a88, - 0xea8a89, - 0xea8a8a, - 0xea8a8b, - 0xea8a8c, - 0xea8a8d, - 0xea8a8e, - 0xea8a8f, - 0xea8a90, - 0xea8a91, - 0xea8a92, - 0xea8a93, - 0xea8a94, - 0xea8a95, - 0xea8a96, - 0xea8a97, - 0xea8a98, - 0xea8a99, - 0xea8a9a, - 0xea8a9b, - 0xea8a9c, - 0xea8a9d, - 0xea8a9e, - 0xea8a9f, - 0xea8aa0, - 0xea8aa1, - 0xea8aa2, - 0xea8aa3, - 0xea8aa4, - 0xea8aa5, - 0xea8aa6, - 0xea8aa7, - 0xea8aa8, - 0xea8aa9, - 0xea8aaa, - 0xea8aab, - 0xea8aac, - 0xea8aad, - 0xea8aae, - 0xea8aaf, - 0xea8ab0, - 0xea8ab1, - 0xea8ab2, - 0xea8ab3, - 0xea8ab4, - 0xea8ab5, - 0xea8ab6, - 0xea8ab7, - 0xea8ab8, - 0xea8ab9, - 0xea8aba, - 0xea8abb, - 0xea8abc, - 0xea8abd, - 0xea8abe, - 0xea8abf, - 0xea8b80, - 0xea8b81, - 0xea8b82, - 0xea8b83, - 0xea8b84, - 0xea8b85, - 0xea8b86, - 0xea8b87, - 0xea8b88, - 0xea8b89, - 0xea8b8a, - 0xea8b8b, - 0xea8b8c, - 0xea8b8d, - 0xea8b8e, - 0xea8b8f, - 0xea8b90, - 0xea8b91, - 0xea8b92, - 0xea8b93, - 0xea8b94, - 0xea8b95, - 0xea8b96, - 0xea8b97, - 0xea8b98, - 0xea8b99, - 0xea8b9a, - 0xea8b9b, - 0xea8b9c, - 0xea8b9d, - 0xea8b9e, - 0xea8b9f, - 0xea8ba0, - 0xea8ba1, - 0xea8ba2, - 0xea8ba3, - 0xea8ba4, - 0xea8ba5, - 0xea8ba6, - 0xea8ba7, - 0xea8ba8, - 0xea8ba9, - 0xea8baa, - 0xea8bab, - 0xea8bac, - 0xea8bad, - 0xea8bae, - 0xea8baf, - 0xea8bb0, - 0xea8bb1, - 0xea8bb2, - 0xea8bb3, - 0xea8bb4, - 0xea8bb5, - 0xea8bb6, - 0xea8bb7, - 0xea8bb8, - 0xea8bb9, - 0xea8bba, - 0xea8bbb, - 0xea8bbc, - 0xea8bbd, - 0xea8bbe, - 0xea8bbf, - 0xea8c80, - 0xea8c81, - 0xea8c82, - 0xea8c83, - 0xea8c84, - 0xea8c85, - 0xea8c86, - 0xea8c87, - 0xea8c88, - 0xea8c89, - 0xea8c8a, - 0xea8c8b, - 0xea8c8c, - 0xea8c8d, - 0xea8c8e, - 0xea8c8f, - 0xea8c90, - 0xea8c91, - 0xea8c92, - 0xea8c93, - 0xea8c94, - 0xea8c95, - 0xea8c96, - 0xea8c97, - 0xea8c98, - 0xea8c99, - 0xea8c9a, - 0xea8c9b, - 0xea8c9c, - 0xea8c9d, - 0xea8c9e, - 0xea8c9f, - 0xea8ca0, - 0xea8ca1, - 0xea8ca2, - 0xea8ca3, - 0xea8ca4, - 0xea8ca5, - 0xea8ca6, - 0xea8ca7, - 0xea8ca8, - 0xea8ca9, - 0xea8caa, - 0xea8cab, - 0xea8cac, - 0xea8cad, - 0xea8cae, - 0xea8caf, - 0xea8cb0, - 0xea8cb1, - 0xea8cb2, - 0xea8cb3, - 0xea8cb4, - 0xea8cb5, - 0xea8cb6, - 0xea8cb7, - 0xea8cb8, - 0xea8cb9, - 0xea8cba, - 0xea8cbb, - 0xea8cbc, - 0xea8cbd, - 0xea8cbe, - 0xea8cbf, - 0xea8d80, - 0xea8d81, - 0xea8d82, - 0xea8d83, - 0xea8d84, - 0xea8d85, - 0xea8d86, - 0xea8d87, - 0xea8d88, - 0xea8d89, - 0xea8d8a, - 0xea8d8b, - 0xea8d8c, - 0xea8d8d, - 0xea8d8e, - 0xea8d8f, - 0xea8d90, - 0xea8d91, - 0xea8d92, - 0xea8d93, - 0xea8d94, - 0xea8d95, - 0xea8d96, - 0xea8d97, - 0xea8d98, - 0xea8d99, - 0xea8d9a, - 0xea8d9b, - 0xea8d9c, - 0xea8d9d, - 0xea8d9e, - 0xea8d9f, - 0xea8da0, - 0xea8da1, - 0xea8da2, - 0xea8da3, - 0xea8da4, - 0xea8da5, - 0xea8da6, - 0xea8da7, - 0xea8da8, - 0xea8da9, - 0xea8daa, - 0xea8dab, - 0xea8dac, - 0xea8dad, - 0xea8dae, - 0xea8daf, - 0xea8db0, - 0xea8db1, - 0xea8db2, - 0xea8db3, - 0xea8db4, - 0xea8db5, - 0xea8db6, - 0xea8db7, - 0xea8db8, - 0xea8db9, - 0xea8dba, - 0xea8dbb, - 0xea8dbc, - 0xea8dbd, - 0xea8dbe, - 0xea8dbf, - 0xea8e80, - 0xea8e81, - 0xea8e82, - 0xea8e83, - 0xea8e84, - 0xea8e85, - 0xea8e86, - 0xea8e87, - 0xea8e88, - 0xea8e89, - 0xea8e8a, - 0xea8e8b, - 0xea8e8c, - 0xea8e8d, - 0xea8e8e, - 0xea8e8f, - 0xea8e90, - 0xea8e91, - 0xea8e92, - 0xea8e93, - 0xea8e94, - 0xea8e95, - 0xea8e96, - 0xea8e97, - 0xea8e98, - 0xea8e99, - 0xea8e9a, - 0xea8e9b, - 0xea8e9c, - 0xea8e9d, - 0xea8e9e, - 0xea8e9f, - 0xea8ea0, - 0xea8ea1, - 0xea8ea2, - 0xea8ea3, - 0xea8ea4, - 0xea8ea5, - 0xea8ea6, - 0xea8ea7, - 0xea8ea8, - 0xea8ea9, - 0xea8eaa, - 0xea8eab, - 0xea8eac, - 0xea8ead, - 0xea8eae, - 0xea8eaf, - 0xea8eb0, - 0xea8eb1, - 0xea8eb2, - 0xea8eb3, - 0xea8eb4, - 0xea8eb5, - 0xea8eb6, - 0xea8eb7, - 0xea8eb8, - 0xea8eb9, - 0xea8eba, - 0xea8ebb, - 0xea8ebc, - 0xea8ebd, - 0xea8ebe, - 0xea8ebf, - 0xea8f80, - 0xea8f81, - 0xea8f82, - 0xea8f83, - 0xea8f84, - 0xea8f85, - 0xea8f86, - 0xea8f87, - 0xea8f88, - 0xea8f89, - 0xea8f8a, - 0xea8f8b, - 0xea8f8c, - 0xea8f8d, - 0xea8f8e, - 0xea8f8f, - 0xea8f90, - 0xea8f91, - 0xea8f92, - 0xea8f93, - 0xea8f94, - 0xea8f95, - 0xea8f96, - 0xea8f97, - 0xea8f98, - 0xea8f99, - 0xea8f9a, - 0xea8f9b, - 0xea8f9c, - 0xea8f9d, - 0xea8f9e, - 0xea8f9f, - 0xea8fa0, - 0xea8fa1, - 0xea8fa2, - 0xea8fa3, - 0xea8fa4, - 0xea8fa5, - 0xea8fa6, - 0xea8fa7, - 0xea8fa8, - 0xea8fa9, - 0xea8faa, - 0xea8fab, - 0xea8fac, - 0xea8fad, - 0xea8fae, - 0xea8faf, - 0xea8fb0, - 0xea8fb1, - 0xea8fb2, - 0xea8fb3, - 0xea8fb4, - 0xea8fb5, - 0xea8fb6, - 0xea8fb7, - 0xea8fb8, - 0xea8fb9, - 0xea8fba, - 0xea8fbb, - 0xea8fbc, - 0xea8fbd, - 0xea8fbe, - 0xea8fbf, - 0xea9080, - 0xea9081, - 0xea9082, - 0xea9083, - 0xea9084, - 0xea9085, - 0xea9086, - 0xea9087, - 0xea9088, - 0xea9089, - 0xea908a, - 0xea908b, - 0xea908c, - 0xea908d, - 0xea908e, - 0xea908f, - 0xea9090, - 0xea9091, - 0xea9092, - 0xea9093, - 0xea9094, - 0xea9095, - 0xea9096, - 0xea9097, - 0xea9098, - 0xea9099, - 0xea909a, - 0xea909b, - 0xea909c, - 0xea909d, - 0xea909e, - 0xea909f, - 0xea90a0, - 0xea90a1, - 0xea90a2, - 0xea90a3, - 0xea90a4, - 0xea90a5, - 0xea90a6, - 0xea90a7, - 0xea90a8, - 0xea90a9, - 0xea90aa, - 0xea90ab, - 0xea90ac, - 0xea90ad, - 0xea90ae, - 0xea90af, - 0xea90b0, - 0xea90b1, - 0xea90b2, - 0xea90b3, - 0xea90b4, - 0xea90b5, - 0xea90b6, - 0xea90b7, - 0xea90b8, - 0xea90b9, - 0xea90ba, - 0xea90bb, - 0xea90bc, - 0xea90bd, - 0xea90be, - 0xea90bf, - 0xea9180, - 0xea9181, - 0xea9182, - 0xea9183, - 0xea9184, - 0xea9185, - 0xea9186, - 0xea9187, - 0xea9188, - 0xea9189, - 0xea918a, - 0xea918b, - 0xea918c, - 0xea918d, - 0xea918e, - 0xea918f, - 0xea9190, - 0xea9191, - 0xea9192, - 0xea9193, - 0xea9194, - 0xea9195, - 0xea9196, - 0xea9197, - 0xea9198, - 0xea9199, - 0xea919a, - 0xea919b, - 0xea919c, - 0xea919d, - 0xea919e, - 0xea919f, - 0xea91a0, - 0xea91a1, - 0xea91a2, - 0xea91a3, - 0xea91a4, - 0xea91a5, - 0xea91a6, - 0xea91a7, - 0xea91a8, - 0xea91a9, - 0xea91aa, - 0xea91ab, - 0xea91ac, - 0xea91ad, - 0xea91ae, - 0xea91af, - 0xea91b0, - 0xea91b1, - 0xea91b2, - 0xea91b3, - 0xea91b4, - 0xea91b5, - 0xea91b6, - 0xea91b7, - 0xea91b8, - 0xea91b9, - 0xea91ba, - 0xea91bb, - 0xea91bc, - 0xea91bd, - 0xea91be, - 0xea91bf, - 0xea9280, - 0xea9281, - 0xea9282, - 0xea9283, - 0xea9284, - 0xea9285, - 0xea9286, - 0xea9287, - 0xea9288, - 0xea9289, - 0xea928a, - 0xea928b, - 0xea928c, - 0xea928d, - 0xea928e, - 0xea928f, - 0xea9290, - 0xea9291, - 0xea9292, - 0xea9293, - 0xea9294, - 0xea9295, - 0xea9296, - 0xea9297, - 0xea9298, - 0xea9299, - 0xea929a, - 0xea929b, - 0xea929c, - 0xea929d, - 0xea929e, - 0xea929f, - 0xea92a0, - 0xea92a1, - 0xea92a2, - 0xea92a3, - 0xea92a4, - 0xea92a5, - 0xea92a6, - 0xea92a7, - 0xea92a8, - 0xea92a9, - 0xea92aa, - 0xea92ab, - 0xea92ac, - 0xea92ad, - 0xea92ae, - 0xea92af, - 0xea92b0, - 0xea92b1, - 0xea92b2, - 0xea92b3, - 0xea92b4, - 0xea92b5, - 0xea92b6, - 0xea92b7, - 0xea92b8, - 0xea92b9, - 0xea92ba, - 0xea92bb, - 0xea92bc, - 0xea92bd, - 0xea92be, - 0xea92bf, - 0xea9380, - 0xea9381, - 0xea9382, - 0xea9383, - 0xea9384, - 0xea9385, - 0xea9386, - 0xea9387, - 0xea9388, - 0xea9389, - 0xea938a, - 0xea938b, - 0xea938c, - 0xea938d, - 0xea938e, - 0xea938f, - 0xea9390, - 0xea9391, - 0xea9392, - 0xea9393, - 0xea9394, - 0xea9395, - 0xea9396, - 0xea9397, - 0xea9398, - 0xea9399, - 0xea939a, - 0xea939b, - 0xea939c, - 0xea939d, - 0xea939e, - 0xea939f, - 0xea93a0, - 0xea93a1, - 0xea93a2, - 0xea93a3, - 0xea93a4, - 0xea93a5, - 0xea93a6, - 0xea93a7, - 0xea93a8, - 0xea93a9, - 0xea93aa, - 0xea93ab, - 0xea93ac, - 0xea93ad, - 0xea93ae, - 0xea93af, - 0xea93b0, - 0xea93b1, - 0xea93b2, - 0xea93b3, - 0xea93b4, - 0xea93b5, - 0xea93b6, - 0xea93b7, - 0xea93b8, - 0xea93b9, - 0xea93ba, - 0xea93bb, - 0xea93bc, - 0xea93bd, - 0xea93be, - 0xea93bf, - 0xea9480, - 0xea9481, - 0xea9482, - 0xea9483, - 0xea9484, - 0xea9485, - 0xea9486, - 0xea9487, - 0xea9488, - 0xea9489, - 0xea948a, - 0xea948b, - 0xea948c, - 0xea948d, - 0xea948e, - 0xea948f, - 0xea9490, - 0xea9491, - 0xea9492, - 0xea9493, - 0xea9494, - 0xea9495, - 0xea9496, - 0xea9497, - 0xea9498, - 0xea9499, - 0xea949a, - 0xea949b, - 0xea949c, - 0xea949d, - 0xea949e, - 0xea949f, - 0xea94a0, - 0xea94a1, - 0xea94a2, - 0xea94a3, - 0xea94a4, - 0xea94a5, - 0xea94a6, - 0xea94a7, - 0xea94a8, - 0xea94a9, - 0xea94aa, - 0xea94ab, - 0xea94ac, - 0xea94ad, - 0xea94ae, - 0xea94af, - 0xea94b0, - 0xea94b1, - 0xea94b2, - 0xea94b3, - 0xea94b4, - 0xea94b5, - 0xea94b6, - 0xea94b7, - 0xea94b8, - 0xea94b9, - 0xea94ba, - 0xea94bb, - 0xea94bc, - 0xea94bd, - 0xea94be, - 0xea94bf, - 0xea9580, - 0xea9581, - 0xea9582, - 0xea9583, - 0xea9584, - 0xea9585, - 0xea9586, - 0xea9587, - 0xea9588, - 0xea9589, - 0xea958a, - 0xea958b, - 0xea958c, - 0xea958d, - 0xea958e, - 0xea958f, - 0xea9590, - 0xea9591, - 0xea9592, - 0xea9593, - 0xea9594, - 0xea9595, - 0xea9596, - 0xea9597, - 0xea9598, - 0xea9599, - 0xea959a, - 0xea959b, - 0xea959c, - 0xea959d, - 0xea959e, - 0xea959f, - 0xea95a0, - 0xea95a1, - 0xea95a2, - 0xea95a3, - 0xea95a4, - 0xea95a5, - 0xea95a6, - 0xea95a7, - 0xea95a8, - 0xea95a9, - 0xea95aa, - 0xea95ab, - 0xea95ac, - 0xea95ad, - 0xea95ae, - 0xea95af, - 0xea95b0, - 0xea95b1, - 0xea95b2, - 0xea95b3, - 0xea95b4, - 0xea95b5, - 0xea95b6, - 0xea95b7, - 0xea95b8, - 0xea95b9, - 0xea95ba, - 0xea95bb, - 0xea95bc, - 0xea95bd, - 0xea95be, - 0xea95bf, - 0xea9680, - 0xea9681, - 0xea9682, - 0xea9683, - 0xea9684, - 0xea9685, - 0xea9686, - 0xea9687, - 0xea9688, - 0xea9689, - 0xea968a, - 0xea968b, - 0xea968c, - 0xea968d, - 0xea968e, - 0xea968f, - 0xea9690, - 0xea9691, - 0xea9692, - 0xea9693, - 0xea9694, - 0xea9695, - 0xea9696, - 0xea9697, - 0xea9698, - 0xea9699, - 0xea969a, - 0xea969b, - 0xea969c, - 0xea969d, - 0xea969e, - 0xea969f, - 0xea96a0, - 0xea96a1, - 0xea96a2, - 0xea96a3, - 0xea96a4, - 0xea96a5, - 0xea96a6, - 0xea96a7, - 0xea96a8, - 0xea96a9, - 0xea96aa, - 0xea96ab, - 0xea96ac, - 0xea96ad, - 0xea96ae, - 0xea96af, - 0xea96b0, - 0xea96b1, - 0xea96b2, - 0xea96b3, - 0xea96b4, - 0xea96b5, - 0xea96b6, - 0xea96b7, - 0xea96b8, - 0xea96b9, - 0xea96ba, - 0xea96bb, - 0xea96bc, - 0xea96bd, - 0xea96be, - 0xea96bf, - 0xea9780, - 0xea9781, - 0xea9782, - 0xea9783, - 0xea9784, - 0xea9785, - 0xea9786, - 0xea9787, - 0xea9788, - 0xea9789, - 0xea978a, - 0xea978b, - 0xea978c, - 0xea978d, - 0xea978e, - 0xea978f, - 0xea9790, - 0xea9791, - 0xea9792, - 0xea9793, - 0xea9794, - 0xea9795, - 0xea9796, - 0xea9797, - 0xea9798, - 0xea9799, - 0xea979a, - 0xea979b, - 0xea979c, - 0xea979d, - 0xea979e, - 0xea979f, - 0xea97a0, - 0xea97a1, - 0xea97a2, - 0xea97a3, - 0xea97a4, - 0xea97a5, - 0xea97a6, - 0xea97a7, - 0xea97a8, - 0xea97a9, - 0xea97aa, - 0xea97ab, - 0xea97ac, - 0xea97ad, - 0xea97ae, - 0xea97af, - 0xea97b0, - 0xea97b1, - 0xea97b2, - 0xea97b3, - 0xea97b4, - 0xea97b5, - 0xea97b6, - 0xea97b7, - 0xea97b8, - 0xea97b9, - 0xea97ba, - 0xea97bb, - 0xea97bc, - 0xea97bd, - 0xea97be, - 0xea97bf, - 0xea9880, - 0xea9881, - 0xea9882, - 0xea9883, - 0xea9884, - 0xea9885, - 0xea9886, - 0xea9887, - 0xea9888, - 0xea9889, - 0xea988a, - 0xea988b, - 0xea988c, - 0xea988d, - 0xea988e, - 0xea988f, - 0xea9890, - 0xea9891, - 0xea9892, - 0xea9893, - 0xea9894, - 0xea9895, - 0xea9896, - 0xea9897, - 0xea9898, - 0xea9899, - 0xea989a, - 0xea989b, - 0xea989c, - 0xea989d, - 0xea989e, - 0xea989f, - 0xea98a0, - 0xea98a1, - 0xea98a2, - 0xea98a3, - 0xea98a4, - 0xea98a5, - 0xea98a6, - 0xea98a7, - 0xea98a8, - 0xea98a9, - 0xea98aa, - 0xea98ab, - 0xea98ac, - 0xea98ad, - 0xea98ae, - 0xea98af, - 0xea98b0, - 0xea98b1, - 0xea98b2, - 0xea98b3, - 0xea98b4, - 0xea98b5, - 0xea98b6, - 0xea98b7, - 0xea98b8, - 0xea98b9, - 0xea98ba, - 0xea98bb, - 0xea98bc, - 0xea98bd, - 0xea98be, - 0xea98bf, - 0xea9980, - 0xea9981, - 0xea9982, - 0xea9983, - 0xea9984, - 0xea9985, - 0xea9986, - 0xea9987, - 0xea9988, - 0xea9989, - 0xea998a, - 0xea998b, - 0xea998c, - 0xea998d, - 0xea998e, - 0xea998f, - 0xea9990, - 0xea9991, - 0xea9992, - 0xea9993, - 0xea9994, - 0xea9995, - 0xea9996, - 0xea9997, - 0xea9998, - 0xea9999, - 0xea999a, - 0xea999b, - 0xea999c, - 0xea999d, - 0xea999e, - 0xea999f, - 0xea99a0, - 0xea99a1, - 0xea99a2, - 0xea99a3, - 0xea99a4, - 0xea99a5, - 0xea99a6, - 0xea99a7, - 0xea99a8, - 0xea99a9, - 0xea99aa, - 0xea99ab, - 0xea99ac, - 0xea99ad, - 0xea99ae, - 0xea99af, - 0xea99b0, - 0xea99b1, - 0xea99b2, - 0xea99b3, - 0xea99b4, - 0xea99b5, - 0xea99b6, - 0xea99b7, - 0xea99b8, - 0xea99b9, - 0xea99ba, - 0xea99bb, - 0xea99bc, - 0xea99bd, - 0xea99be, - 0xea99bf, - 0xea9a80, - 0xea9a81, - 0xea9a82, - 0xea9a83, - 0xea9a84, - 0xea9a85, - 0xea9a86, - 0xea9a87, - 0xea9a88, - 0xea9a89, - 0xea9a8a, - 0xea9a8b, - 0xea9a8c, - 0xea9a8d, - 0xea9a8e, - 0xea9a8f, - 0xea9a90, - 0xea9a91, - 0xea9a92, - 0xea9a93, - 0xea9a94, - 0xea9a95, - 0xea9a96, - 0xea9a97, - 0xea9a98, - 0xea9a99, - 0xea9a9a, - 0xea9a9b, - 0xea9a9c, - 0xea9a9d, - 0xea9a9e, - 0xea9a9f, - 0xea9aa0, - 0xea9aa1, - 0xea9aa2, - 0xea9aa3, - 0xea9aa4, - 0xea9aa5, - 0xea9aa6, - 0xea9aa7, - 0xea9aa8, - 0xea9aa9, - 0xea9aaa, - 0xea9aab, - 0xea9aac, - 0xea9aad, - 0xea9aae, - 0xea9aaf, - 0xea9ab0, - 0xea9ab1, - 0xea9ab2, - 0xea9ab3, - 0xea9ab4, - 0xea9ab5, - 0xea9ab6, - 0xea9ab7, - 0xea9ab8, - 0xea9ab9, - 0xea9aba, - 0xea9abb, - 0xea9abc, - 0xea9abd, - 0xea9abe, - 0xea9abf, - 0xea9b80, - 0xea9b81, - 0xea9b82, - 0xea9b83, - 0xea9b84, - 0xea9b85, - 0xea9b86, - 0xea9b87, - 0xea9b88, - 0xea9b89, - 0xea9b8a, - 0xea9b8b, - 0xea9b8c, - 0xea9b8d, - 0xea9b8e, - 0xea9b8f, - 0xea9b90, - 0xea9b91, - 0xea9b92, - 0xea9b93, - 0xea9b94, - 0xea9b95, - 0xea9b96, - 0xea9b97, - 0xea9b98, - 0xea9b99, - 0xea9b9a, - 0xea9b9b, - 0xea9b9c, - 0xea9b9d, - 0xea9b9e, - 0xea9b9f, - 0xea9ba0, - 0xea9ba1, - 0xea9ba2, - 0xea9ba3, - 0xea9ba4, - 0xea9ba5, - 0xea9ba6, - 0xea9ba7, - 0xea9ba8, - 0xea9ba9, - 0xea9baa, - 0xea9bab, - 0xea9bac, - 0xea9bad, - 0xea9bae, - 0xea9baf, - 0xea9bb0, - 0xea9bb1, - 0xea9bb2, - 0xea9bb3, - 0xea9bb4, - 0xea9bb5, - 0xea9bb6, - 0xea9bb7, - 0xea9bb8, - 0xea9bb9, - 0xea9bba, - 0xea9bbb, - 0xea9bbc, - 0xea9bbd, - 0xea9bbe, - 0xea9bbf, - 0xea9c80, - 0xea9c81, - 0xea9c82, - 0xea9c83, - 0xea9c84, - 0xea9c85, - 0xea9c86, - 0xea9c87, - 0xea9c88, - 0xea9c89, - 0xea9c8a, - 0xea9c8b, - 0xea9c8c, - 0xea9c8d, - 0xea9c8e, - 0xea9c8f, - 0xea9c90, - 0xea9c91, - 0xea9c92, - 0xea9c93, - 0xea9c94, - 0xea9c95, - 0xea9c96, - 0xea9c97, - 0xea9c98, - 0xea9c99, - 0xea9c9a, - 0xea9c9b, - 0xea9c9c, - 0xea9c9d, - 0xea9c9e, - 0xea9c9f, - 0xea9ca0, - 0xea9ca1, - 0xea9ca2, - 0xea9ca3, - 0xea9ca4, - 0xea9ca5, - 0xea9ca6, - 0xea9ca7, - 0xea9ca8, - 0xea9ca9, - 0xea9caa, - 0xea9cab, - 0xea9cac, - 0xea9cad, - 0xea9cae, - 0xea9caf, - 0xea9cb0, - 0xea9cb1, - 0xea9cb2, - 0xea9cb3, - 0xea9cb4, - 0xea9cb5, - 0xea9cb6, - 0xea9cb7, - 0xea9cb8, - 0xea9cb9, - 0xea9cba, - 0xea9cbb, - 0xea9cbc, - 0xea9cbd, - 0xea9cbe, - 0xea9cbf, - 0xea9d80, - 0xea9d81, - 0xea9d82, - 0xea9d83, - 0xea9d84, - 0xea9d85, - 0xea9d86, - 0xea9d87, - 0xea9d88, - 0xea9d89, - 0xea9d8a, - 0xea9d8b, - 0xea9d8c, - 0xea9d8d, - 0xea9d8e, - 0xea9d8f, - 0xea9d90, - 0xea9d91, - 0xea9d92, - 0xea9d93, - 0xea9d94, - 0xea9d95, - 0xea9d96, - 0xea9d97, - 0xea9d98, - 0xea9d99, - 0xea9d9a, - 0xea9d9b, - 0xea9d9c, - 0xea9d9d, - 0xea9d9e, - 0xea9d9f, - 0xea9da0, - 0xea9da1, - 0xea9da2, - 0xea9da3, - 0xea9da4, - 0xea9da5, - 0xea9da6, - 0xea9da7, - 0xea9da8, - 0xea9da9, - 0xea9daa, - 0xea9dab, - 0xea9dac, - 0xea9dad, - 0xea9dae, - 0xea9daf, - 0xea9db0, - 0xea9db1, - 0xea9db2, - 0xea9db3, - 0xea9db4, - 0xea9db5, - 0xea9db6, - 0xea9db7, - 0xea9db8, - 0xea9db9, - 0xea9dba, - 0xea9dbb, - 0xea9dbc, - 0xea9dbd, - 0xea9dbe, - 0xea9dbf, - 0xea9e80, - 0xea9e81, - 0xea9e82, - 0xea9e83, - 0xea9e84, - 0xea9e85, - 0xea9e86, - 0xea9e87, - 0xea9e88, - 0xea9e89, - 0xea9e8a, - 0xea9e8b, - 0xea9e8c, - 0xea9e8d, - 0xea9e8e, - 0xea9e8f, - 0xea9e90, - 0xea9e91, - 0xea9e92, - 0xea9e93, - 0xea9e94, - 0xea9e95, - 0xea9e96, - 0xea9e97, - 0xea9e98, - 0xea9e99, - 0xea9e9a, - 0xea9e9b, - 0xea9e9c, - 0xea9e9d, - 0xea9e9e, - 0xea9e9f, - 0xea9ea0, - 0xea9ea1, - 0xea9ea2, - 0xea9ea3, - 0xea9ea4, - 0xea9ea5, - 0xea9ea6, - 0xea9ea7, - 0xea9ea8, - 0xea9ea9, - 0xea9eaa, - 0xea9eab, - 0xea9eac, - 0xea9ead, - 0xea9eae, - 0xea9eaf, - 0xea9eb0, - 0xea9eb1, - 0xea9eb2, - 0xea9eb3, - 0xea9eb4, - 0xea9eb5, - 0xea9eb6, - 0xea9eb7, - 0xea9eb8, - 0xea9eb9, - 0xea9eba, - 0xea9ebb, - 0xea9ebc, - 0xea9ebd, - 0xea9ebe, - 0xea9ebf, - 0xea9f80, - 0xea9f81, - 0xea9f82, - 0xea9f83, - 0xea9f84, - 0xea9f85, - 0xea9f86, - 0xea9f87, - 0xea9f88, - 0xea9f89, - 0xea9f8a, - 0xea9f8b, - 0xea9f8c, - 0xea9f8d, - 0xea9f8e, - 0xea9f8f, - 0xea9f90, - 0xea9f91, - 0xea9f92, - 0xea9f93, - 0xea9f94, - 0xea9f95, - 0xea9f96, - 0xea9f97, - 0xea9f98, - 0xea9f99, - 0xea9f9a, - 0xea9f9b, - 0xea9f9c, - 0xea9f9d, - 0xea9f9e, - 0xea9f9f, - 0xea9fa0, - 0xea9fa1, - 0xea9fa2, - 0xea9fa3, - 0xea9fa4, - 0xea9fa5, - 0xea9fa6, - 0xea9fa7, - 0xea9fa8, - 0xea9fa9, - 0xea9faa, - 0xea9fab, - 0xea9fac, - 0xea9fad, - 0xea9fae, - 0xea9faf, - 0xea9fb0, - 0xea9fb1, - 0xea9fb2, - 0xea9fb3, - 0xea9fb4, - 0xea9fb5, - 0xea9fb6, - 0xea9fb7, - 0xea9fb8, - 0xea9fb9, - 0xea9fba, - 0xea9fbb, - 0xea9fbc, - 0xea9fbd, - 0xea9fbe, - 0xea9fbf, - 0xeaa080, - 0xeaa081, - 0xeaa082, - 0xeaa083, - 0xeaa084, - 0xeaa085, - 0xeaa086, - 0xeaa087, - 0xeaa088, - 0xeaa089, - 0xeaa08a, - 0xeaa08b, - 0xeaa08c, - 0xeaa08d, - 0xeaa08e, - 0xeaa08f, - 0xeaa090, - 0xeaa091, - 0xeaa092, - 0xeaa093, - 0xeaa094, - 0xeaa095, - 0xeaa096, - 0xeaa097, - 0xeaa098, - 0xeaa099, - 0xeaa09a, - 0xeaa09b, - 0xeaa09c, - 0xeaa09d, - 0xeaa09e, - 0xeaa09f, - 0xeaa0a0, - 0xeaa0a1, - 0xeaa0a2, - 0xeaa0a3, - 0xeaa0a4, - 0xeaa0a5, - 0xeaa0a6, - 0xeaa0a7, - 0xeaa0a8, - 0xeaa0a9, - 0xeaa0aa, - 0xeaa0ab, - 0xeaa0ac, - 0xeaa0ad, - 0xeaa0ae, - 0xeaa0af, - 0xeaa0b0, - 0xeaa0b1, - 0xeaa0b2, - 0xeaa0b3, - 0xeaa0b4, - 0xeaa0b5, - 0xeaa0b6, - 0xeaa0b7, - 0xeaa0b8, - 0xeaa0b9, - 0xeaa0ba, - 0xeaa0bb, - 0xeaa0bc, - 0xeaa0bd, - 0xeaa0be, - 0xeaa0bf, - 0xeaa180, - 0xeaa181, - 0xeaa182, - 0xeaa183, - 0xeaa184, - 0xeaa185, - 0xeaa186, - 0xeaa187, - 0xeaa188, - 0xeaa189, - 0xeaa18a, - 0xeaa18b, - 0xeaa18c, - 0xeaa18d, - 0xeaa18e, - 0xeaa18f, - 0xeaa190, - 0xeaa191, - 0xeaa192, - 0xeaa193, - 0xeaa194, - 0xeaa195, - 0xeaa196, - 0xeaa197, - 0xeaa198, - 0xeaa199, - 0xeaa19a, - 0xeaa19b, - 0xeaa19c, - 0xeaa19d, - 0xeaa19e, - 0xeaa19f, - 0xeaa1a0, - 0xeaa1a1, - 0xeaa1a2, - 0xeaa1a3, - 0xeaa1a4, - 0xeaa1a5, - 0xeaa1a6, - 0xeaa1a7, - 0xeaa1a8, - 0xeaa1a9, - 0xeaa1aa, - 0xeaa1ab, - 0xeaa1ac, - 0xeaa1ad, - 0xeaa1ae, - 0xeaa1af, - 0xeaa1b0, - 0xeaa1b1, - 0xeaa1b2, - 0xeaa1b3, - 0xeaa1b4, - 0xeaa1b5, - 0xeaa1b6, - 0xeaa1b7, - 0xeaa1b8, - 0xeaa1b9, - 0xeaa1ba, - 0xeaa1bb, - 0xeaa1bc, - 0xeaa1bd, - 0xeaa1be, - 0xeaa1bf, - 0xeaa280, - 0xeaa281, - 0xeaa282, - 0xeaa283, - 0xeaa284, - 0xeaa285, - 0xeaa286, - 0xeaa287, - 0xeaa288, - 0xeaa289, - 0xeaa28a, - 0xeaa28b, - 0xeaa28c, - 0xeaa28d, - 0xeaa28e, - 0xeaa28f, - 0xeaa290, - 0xeaa291, - 0xeaa292, - 0xeaa293, - 0xeaa294, - 0xeaa295, - 0xeaa296, - 0xeaa297, - 0xeaa298, - 0xeaa299, - 0xeaa29a, - 0xeaa29b, - 0xeaa29c, - 0xeaa29d, - 0xeaa29e, - 0xeaa29f, - 0xeaa2a0, - 0xeaa2a1, - 0xeaa2a2, - 0xeaa2a3, - 0xeaa2a4, - 0xeaa2a5, - 0xeaa2a6, - 0xeaa2a7, - 0xeaa2a8, - 0xeaa2a9, - 0xeaa2aa, - 0xeaa2ab, - 0xeaa2ac, - 0xeaa2ad, - 0xeaa2ae, - 0xeaa2af, - 0xeaa2b0, - 0xeaa2b1, - 0xeaa2b2, - 0xeaa2b3, - 0xeaa2b4, - 0xeaa2b5, - 0xeaa2b6, - 0xeaa2b7, - 0xeaa2b8, - 0xeaa2b9, - 0xeaa2ba, - 0xeaa2bb, - 0xeaa2bc, - 0xeaa2bd, - 0xeaa2be, - 0xeaa2bf, - 0xeaa380, - 0xeaa381, - 0xeaa382, - 0xeaa383, - 0xeaa384, - 0xeaa385, - 0xeaa386, - 0xeaa387, - 0xeaa388, - 0xeaa389, - 0xeaa38a, - 0xeaa38b, - 0xeaa38c, - 0xeaa38d, - 0xeaa38e, - 0xeaa38f, - 0xeaa390, - 0xeaa391, - 0xeaa392, - 0xeaa393, - 0xeaa394, - 0xeaa395, - 0xeaa396, - 0xeaa397, - 0xeaa398, - 0xeaa399, - 0xeaa39a, - 0xeaa39b, - 0xeaa39c, - 0xeaa39d, - 0xeaa39e, - 0xeaa39f, - 0xeaa3a0, - 0xeaa3a1, - 0xeaa3a2, - 0xeaa3a3, - 0xeaa3a4, - 0xeaa3a5, - 0xeaa3a6, - 0xeaa3a7, - 0xeaa3a8, - 0xeaa3a9, - 0xeaa3aa, - 0xeaa3ab, - 0xeaa3ac, - 0xeaa3ad, - 0xeaa3ae, - 0xeaa3af, - 0xeaa3b0, - 0xeaa3b1, - 0xeaa3b2, - 0xeaa3b3, - 0xeaa3b4, - 0xeaa3b5, - 0xeaa3b6, - 0xeaa3b7, - 0xeaa3b8, - 0xeaa3b9, - 0xeaa3ba, - 0xeaa3bb, - 0xeaa3bc, - 0xeaa3bd, - 0xeaa3be, - 0xeaa3bf, - 0xeaa480, - 0xeaa481, - 0xeaa482, - 0xeaa483, - 0xeaa484, - 0xeaa485, - 0xeaa486, - 0xeaa487, - 0xeaa488, - 0xeaa489, - 0xeaa48a, - 0xeaa48b, - 0xeaa48c, - 0xeaa48d, - 0xeaa48e, - 0xeaa48f, - 0xeaa490, - 0xeaa491, - 0xeaa492, - 0xeaa493, - 0xeaa494, - 0xeaa495, - 0xeaa496, - 0xeaa497, - 0xeaa498, - 0xeaa499, - 0xeaa49a, - 0xeaa49b, - 0xeaa49c, - 0xeaa49d, - 0xeaa49e, - 0xeaa49f, - 0xeaa4a0, - 0xeaa4a1, - 0xeaa4a2, - 0xeaa4a3, - 0xeaa4a4, - 0xeaa4a5, - 0xeaa4a6, - 0xeaa4a7, - 0xeaa4a8, - 0xeaa4a9, - 0xeaa4aa, - 0xeaa4ab, - 0xeaa4ac, - 0xeaa4ad, - 0xeaa4ae, - 0xeaa4af, - 0xeaa4b0, - 0xeaa4b1, - 0xeaa4b2, - 0xeaa4b3, - 0xeaa4b4, - 0xeaa4b5, - 0xeaa4b6, - 0xeaa4b7, - 0xeaa4b8, - 0xeaa4b9, - 0xeaa4ba, - 0xeaa4bb, - 0xeaa4bc, - 0xeaa4bd, - 0xeaa4be, - 0xeaa4bf, - 0xeaa580, - 0xeaa581, - 0xeaa582, - 0xeaa583, - 0xeaa584, - 0xeaa585, - 0xeaa586, - 0xeaa587, - 0xeaa588, - 0xeaa589, - 0xeaa58a, - 0xeaa58b, - 0xeaa58c, - 0xeaa58d, - 0xeaa58e, - 0xeaa58f, - 0xeaa590, - 0xeaa591, - 0xeaa592, - 0xeaa593, - 0xeaa594, - 0xeaa595, - 0xeaa596, - 0xeaa597, - 0xeaa598, - 0xeaa599, - 0xeaa59a, - 0xeaa59b, - 0xeaa59c, - 0xeaa59d, - 0xeaa59e, - 0xeaa59f, - 0xeaa5a0, - 0xeaa5a1, - 0xeaa5a2, - 0xeaa5a3, - 0xeaa5a4, - 0xeaa5a5, - 0xeaa5a6, - 0xeaa5a7, - 0xeaa5a8, - 0xeaa5a9, - 0xeaa5aa, - 0xeaa5ab, - 0xeaa5ac, - 0xeaa5ad, - 0xeaa5ae, - 0xeaa5af, - 0xeaa5b0, - 0xeaa5b1, - 0xeaa5b2, - 0xeaa5b3, - 0xeaa5b4, - 0xeaa5b5, - 0xeaa5b6, - 0xeaa5b7, - 0xeaa5b8, - 0xeaa5b9, - 0xeaa5ba, - 0xeaa5bb, - 0xeaa5bc, - 0xeaa5bd, - 0xeaa5be, - 0xeaa5bf, - 0xeaa680, - 0xeaa681, - 0xeaa682, - 0xeaa683, - 0xeaa684, - 0xeaa685, - 0xeaa686, - 0xeaa687, - 0xeaa688, - 0xeaa689, - 0xeaa68a, - 0xeaa68b, - 0xeaa68c, - 0xeaa68d, - 0xeaa68e, - 0xeaa68f, - 0xeaa690, - 0xeaa691, - 0xeaa692, - 0xeaa693, - 0xeaa694, - 0xeaa695, - 0xeaa696, - 0xeaa697, - 0xeaa698, - 0xeaa699, - 0xeaa69a, - 0xeaa69b, - 0xeaa69c, - 0xeaa69d, - 0xeaa69e, - 0xeaa69f, - 0xeaa6a0, - 0xeaa6a1, - 0xeaa6a2, - 0xeaa6a3, - 0xeaa6a4, - 0xeaa6a5, - 0xeaa6a6, - 0xeaa6a7, - 0xeaa6a8, - 0xeaa6a9, - 0xeaa6aa, - 0xeaa6ab, - 0xeaa6ac, - 0xeaa6ad, - 0xeaa6ae, - 0xeaa6af, - 0xeaa6b0, - 0xeaa6b1, - 0xeaa6b2, - 0xeaa6b3, - 0xeaa6b4, - 0xeaa6b5, - 0xeaa6b6, - 0xeaa6b7, - 0xeaa6b8, - 0xeaa6b9, - 0xeaa6ba, - 0xeaa6bb, - 0xeaa6bc, - 0xeaa6bd, - 0xeaa6be, - 0xeaa6bf, - 0xeaa780, - 0xeaa781, - 0xeaa782, - 0xeaa783, - 0xeaa784, - 0xeaa785, - 0xeaa786, - 0xeaa787, - 0xeaa788, - 0xeaa789, - 0xeaa78a, - 0xeaa78b, - 0xeaa78c, - 0xeaa78d, - 0xeaa78e, - 0xeaa78f, - 0xeaa790, - 0xeaa791, - 0xeaa792, - 0xeaa793, - 0xeaa794, - 0xeaa795, - 0xeaa796, - 0xeaa797, - 0xeaa798, - 0xeaa799, - 0xeaa79a, - 0xeaa79b, - 0xeaa79c, - 0xeaa79d, - 0xeaa79e, - 0xeaa79f, - 0xeaa7a0, - 0xeaa7a1, - 0xeaa7a2, - 0xeaa7a3, - 0xeaa7a4, - 0xeaa7a5, - 0xeaa7a6, - 0xeaa7a7, - 0xeaa7a8, - 0xeaa7a9, - 0xeaa7aa, - 0xeaa7ab, - 0xeaa7ac, - 0xeaa7ad, - 0xeaa7ae, - 0xeaa7af, - 0xeaa7b0, - 0xeaa7b1, - 0xeaa7b2, - 0xeaa7b3, - 0xeaa7b4, - 0xeaa7b5, - 0xeaa7b6, - 0xeaa7b7, - 0xeaa7b8, - 0xeaa7b9, - 0xeaa7ba, - 0xeaa7bb, - 0xeaa7bc, - 0xeaa7bd, - 0xeaa7be, - 0xeaa7bf, - 0xeaa880, - 0xeaa881, - 0xeaa882, - 0xeaa883, - 0xeaa884, - 0xeaa885, - 0xeaa886, - 0xeaa887, - 0xeaa888, - 0xeaa889, - 0xeaa88a, - 0xeaa88b, - 0xeaa88c, - 0xeaa88d, - 0xeaa88e, - 0xeaa88f, - 0xeaa890, - 0xeaa891, - 0xeaa892, - 0xeaa893, - 0xeaa894, - 0xeaa895, - 0xeaa896, - 0xeaa897, - 0xeaa898, - 0xeaa899, - 0xeaa89a, - 0xeaa89b, - 0xeaa89c, - 0xeaa89d, - 0xeaa89e, - 0xeaa89f, - 0xeaa8a0, - 0xeaa8a1, - 0xeaa8a2, - 0xeaa8a3, - 0xeaa8a4, - 0xeaa8a5, - 0xeaa8a6, - 0xeaa8a7, - 0xeaa8a8, - 0xeaa8a9, - 0xeaa8aa, - 0xeaa8ab, - 0xeaa8ac, - 0xeaa8ad, - 0xeaa8ae, - 0xeaa8af, - 0xeaa8b0, - 0xeaa8b1, - 0xeaa8b2, - 0xeaa8b3, - 0xeaa8b4, - 0xeaa8b5, - 0xeaa8b6, - 0xeaa8b7, - 0xeaa8b8, - 0xeaa8b9, - 0xeaa8ba, - 0xeaa8bb, - 0xeaa8bc, - 0xeaa8bd, - 0xeaa8be, - 0xeaa8bf, - 0xeaa980, - 0xeaa981, - 0xeaa982, - 0xeaa983, - 0xeaa984, - 0xeaa985, - 0xeaa986, - 0xeaa987, - 0xeaa988, - 0xeaa989, - 0xeaa98a, - 0xeaa98b, - 0xeaa98c, - 0xeaa98d, - 0xeaa98e, - 0xeaa98f, - 0xeaa990, - 0xeaa991, - 0xeaa992, - 0xeaa993, - 0xeaa994, - 0xeaa995, - 0xeaa996, - 0xeaa997, - 0xeaa998, - 0xeaa999, - 0xeaa99a, - 0xeaa99b, - 0xeaa99c, - 0xeaa99d, - 0xeaa99e, - 0xeaa99f, - 0xeaa9a0, - 0xeaa9a1, - 0xeaa9a2, - 0xeaa9a3, - 0xeaa9a4, - 0xeaa9a5, - 0xeaa9a6, - 0xeaa9a7, - 0xeaa9a8, - 0xeaa9a9, - 0xeaa9aa, - 0xeaa9ab, - 0xeaa9ac, - 0xeaa9ad, - 0xeaa9ae, - 0xeaa9af, - 0xeaa9b0, - 0xeaa9b1, - 0xeaa9b2, - 0xeaa9b3, - 0xeaa9b4, - 0xeaa9b5, - 0xeaa9b6, - 0xeaa9b7, - 0xeaa9b8, - 0xeaa9b9, - 0xeaa9ba, - 0xeaa9bb, - 0xeaa9bc, - 0xeaa9bd, - 0xeaa9be, - 0xeaa9bf, - 0xeaaa80, - 0xeaaa81, - 0xeaaa82, - 0xeaaa83, - 0xeaaa84, - 0xeaaa85, - 0xeaaa86, - 0xeaaa87, - 0xeaaa88, - 0xeaaa89, - 0xeaaa8a, - 0xeaaa8b, - 0xeaaa8c, - 0xeaaa8d, - 0xeaaa8e, - 0xeaaa8f, - 0xeaaa90, - 0xeaaa91, - 0xeaaa92, - 0xeaaa93, - 0xeaaa94, - 0xeaaa95, - 0xeaaa96, - 0xeaaa97, - 0xeaaa98, - 0xeaaa99, - 0xeaaa9a, - 0xeaaa9b, - 0xeaaa9c, - 0xeaaa9d, - 0xeaaa9e, - 0xeaaa9f, - 0xeaaaa0, - 0xeaaaa1, - 0xeaaaa2, - 0xeaaaa3, - 0xeaaaa4, - 0xeaaaa5, - 0xeaaaa6, - 0xeaaaa7, - 0xeaaaa8, - 0xeaaaa9, - 0xeaaaaa, - 0xeaaaab, - 0xeaaaac, - 0xeaaaad, - 0xeaaaae, - 0xeaaaaf, - 0xeaaab0, - 0xeaaab1, - 0xeaaab2, - 0xeaaab3, - 0xeaaab4, - 0xeaaab5, - 0xeaaab6, - 0xeaaab7, - 0xeaaab8, - 0xeaaab9, - 0xeaaaba, - 0xeaaabb, - 0xeaaabc, - 0xeaaabd, - 0xeaaabe, - 0xeaaabf, - 0xeaab80, - 0xeaab81, - 0xeaab82, - 0xeaab83, - 0xeaab84, - 0xeaab85, - 0xeaab86, - 0xeaab87, - 0xeaab88, - 0xeaab89, - 0xeaab8a, - 0xeaab8b, - 0xeaab8c, - 0xeaab8d, - 0xeaab8e, - 0xeaab8f, - 0xeaab90, - 0xeaab91, - 0xeaab92, - 0xeaab93, - 0xeaab94, - 0xeaab95, - 0xeaab96, - 0xeaab97, - 0xeaab98, - 0xeaab99, - 0xeaab9a, - 0xeaab9b, - 0xeaab9c, - 0xeaab9d, - 0xeaab9e, - 0xeaab9f, - 0xeaaba0, - 0xeaaba1, - 0xeaaba2, - 0xeaaba3, - 0xeaaba4, - 0xeaaba5, - 0xeaaba6, - 0xeaaba7, - 0xeaaba8, - 0xeaaba9, - 0xeaabaa, - 0xeaabab, - 0xeaabac, - 0xeaabad, - 0xeaabae, - 0xeaabaf, - 0xeaabb0, - 0xeaabb1, - 0xeaabb2, - 0xeaabb3, - 0xeaabb4, - 0xeaabb5, - 0xeaabb6, - 0xeaabb7, - 0xeaabb8, - 0xeaabb9, - 0xeaabba, - 0xeaabbb, - 0xeaabbc, - 0xeaabbd, - 0xeaabbe, - 0xeaabbf, - 0xeaac80, - 0xeaac81, - 0xeaac82, - 0xeaac83, - 0xeaac84, - 0xeaac85, - 0xeaac86, - 0xeaac87, - 0xeaac88, - 0xeaac89, - 0xeaac8a, - 0xeaac8b, - 0xeaac8c, - 0xeaac8d, - 0xeaac8e, - 0xeaac8f, - 0xeaac90, - 0xeaac91, - 0xeaac92, - 0xeaac93, - 0xeaac94, - 0xeaac95, - 0xeaac96, - 0xeaac97, - 0xeaac98, - 0xeaac99, - 0xeaac9a, - 0xeaac9b, - 0xeaac9c, - 0xeaac9d, - 0xeaac9e, - 0xeaac9f, - 0xeaaca0, - 0xeaaca1, - 0xeaaca2, - 0xeaaca3, - 0xeaaca4, - 0xeaaca5, - 0xeaaca6, - 0xeaaca7, - 0xeaaca8, - 0xeaaca9, - 0xeaacaa, - 0xeaacab, - 0xeaacac, - 0xeaacad, - 0xeaacae, - 0xeaacaf, - 0xeaacb0, - 0xeaacb1, - 0xeaacb2, - 0xeaacb3, - 0xeaacb4, - 0xeaacb5, - 0xeaacb6, - 0xeaacb7, - 0xeaacb8, - 0xeaacb9, - 0xeaacba, - 0xeaacbb, - 0xeaacbc, - 0xeaacbd, - 0xeaacbe, - 0xeaacbf, - 0xeaad80, - 0xeaad81, - 0xeaad82, - 0xeaad83, - 0xeaad84, - 0xeaad85, - 0xeaad86, - 0xeaad87, - 0xeaad88, - 0xeaad89, - 0xeaad8a, - 0xeaad8b, - 0xeaad8c, - 0xeaad8d, - 0xeaad8e, - 0xeaad8f, - 0xeaad90, - 0xeaad91, - 0xeaad92, - 0xeaad93, - 0xeaad94, - 0xeaad95, - 0xeaad96, - 0xeaad97, - 0xeaad98, - 0xeaad99, - 0xeaad9a, - 0xeaad9b, - 0xeaad9c, - 0xeaad9d, - 0xeaad9e, - 0xeaad9f, - 0xeaada0, - 0xeaada1, - 0xeaada2, - 0xeaada3, - 0xeaada4, - 0xeaada5, - 0xeaada6, - 0xeaada7, - 0xeaada8, - 0xeaada9, - 0xeaadaa, - 0xeaadab, - 0xeaadac, - 0xeaadad, - 0xeaadae, - 0xeaadaf, - 0xeaadb0, - 0xeaadb1, - 0xeaadb2, - 0xeaadb3, - 0xeaadb4, - 0xeaadb5, - 0xeaadb6, - 0xeaadb7, - 0xeaadb8, - 0xeaadb9, - 0xeaadba, - 0xeaadbb, - 0xeaadbc, - 0xeaadbd, - 0xeaadbe, - 0xeaadbf, - 0xeaae80, - 0xeaae81, - 0xeaae82, - 0xeaae83, - 0xeaae84, - 0xeaae85, - 0xeaae86, - 0xeaae87, - 0xeaae88, - 0xeaae89, - 0xeaae8a, - 0xeaae8b, - 0xeaae8c, - 0xeaae8d, - 0xeaae8e, - 0xeaae8f, - 0xeaae90, - 0xeaae91, - 0xeaae92, - 0xeaae93, - 0xeaae94, - 0xeaae95, - 0xeaae96, - 0xeaae97, - 0xeaae98, - 0xeaae99, - 0xeaae9a, - 0xeaae9b, - 0xeaae9c, - 0xeaae9d, - 0xeaae9e, - 0xeaae9f, - 0xeaaea0, - 0xeaaea1, - 0xeaaea2, - 0xeaaea3, - 0xeaaea4, - 0xeaaea5, - 0xeaaea6, - 0xeaaea7, - 0xeaaea8, - 0xeaaea9, - 0xeaaeaa, - 0xeaaeab, - 0xeaaeac, - 0xeaaead, - 0xeaaeae, - 0xeaaeaf, - 0xeaaeb0, - 0xeaaeb1, - 0xeaaeb2, - 0xeaaeb3, - 0xeaaeb4, - 0xeaaeb5, - 0xeaaeb6, - 0xeaaeb7, - 0xeaaeb8, - 0xeaaeb9, - 0xeaaeba, - 0xeaaebb, - 0xeaaebc, - 0xeaaebd, - 0xeaaebe, - 0xeaaebf, - 0xeaaf80, - 0xeaaf81, - 0xeaaf82, - 0xeaaf83, - 0xeaaf84, - 0xeaaf85, - 0xeaaf86, - 0xeaaf87, - 0xeaaf88, - 0xeaaf89, - 0xeaaf8a, - 0xeaaf8b, - 0xeaaf8c, - 0xeaaf8d, - 0xeaaf8e, - 0xeaaf8f, - 0xeaaf90, - 0xeaaf91, - 0xeaaf92, - 0xeaaf93, - 0xeaaf94, - 0xeaaf95, - 0xeaaf96, - 0xeaaf97, - 0xeaaf98, - 0xeaaf99, - 0xeaaf9a, - 0xeaaf9b, - 0xeaaf9c, - 0xeaaf9d, - 0xeaaf9e, - 0xeaaf9f, - 0xeaafa0, - 0xeaafa1, - 0xeaafa2, - 0xeaafa3, - 0xeaafa4, - 0xeaafa5, - 0xeaafa6, - 0xeaafa7, - 0xeaafa8, - 0xeaafa9, - 0xeaafaa, - 0xeaafab, - 0xeaafac, - 0xeaafad, - 0xeaafae, - 0xeaafaf, - 0xeaafb0, - 0xeaafb1, - 0xeaafb2, - 0xeaafb3, - 0xeaafb4, - 0xeaafb5, - 0xeaafb6, - 0xeaafb7, - 0xeaafb8, - 0xeaafb9, - 0xeaafba, - 0xeaafbb, - 0xeaafbc, - 0xeaafbd, - 0xeaafbe, - 0xeaafbf, - 0xeab080, - 0xeab081, - 0xeab082, - 0xeab083, - 0xeab084, - 0xeab085, - 0xeab086, - 0xeab087, - 0xeab088, - 0xeab089, - 0xeab08a, - 0xeab08b, - 0xeab08c, - 0xeab08d, - 0xeab08e, - 0xeab08f, - 0xeab090, - 0xeab091, - 0xeab092, - 0xeab093, - 0xeab094, - 0xeab095, - 0xeab096, - 0xeab097, - 0xeab098, - 0xeab099, - 0xeab09a, - 0xeab09b, - 0xeab09c, - 0xeab09d, - 0xeab09e, - 0xeab09f, - 0xeab0a0, - 0xeab0a1, - 0xeab0a2, - 0xeab0a3, - 0xeab0a4, - 0xeab0a5, - 0xeab0a6, - 0xeab0a7, - 0xeab0a8, - 0xeab0a9, - 0xeab0aa, - 0xeab0ab, - 0xeab0ac, - 0xeab0ad, - 0xeab0ae, - 0xeab0af, - 0xeab0b0, - 0xeab0b1, - 0xeab0b2, - 0xeab0b3, - 0xeab0b4, - 0xeab0b5, - 0xeab0b6, - 0xeab0b7, - 0xeab0b8, - 0xeab0b9, - 0xeab0ba, - 0xeab0bb, - 0xeab0bc, - 0xeab0bd, - 0xeab0be, - 0xeab0bf, - 0xeab180, - 0xeab181, - 0xeab182, - 0xeab183, - 0xeab184, - 0xeab185, - 0xeab186, - 0xeab187, - 0xeab188, - 0xeab189, - 0xeab18a, - 0xeab18b, - 0xeab18c, - 0xeab18d, - 0xeab18e, - 0xeab18f, - 0xeab190, - 0xeab191, - 0xeab192, - 0xeab193, - 0xeab194, - 0xeab195, - 0xeab196, - 0xeab197, - 0xeab198, - 0xeab199, - 0xeab19a, - 0xeab19b, - 0xeab19c, - 0xeab19d, - 0xeab19e, - 0xeab19f, - 0xeab1a0, - 0xeab1a1, - 0xeab1a2, - 0xeab1a3, - 0xeab1a4, - 0xeab1a5, - 0xeab1a6, - 0xeab1a7, - 0xeab1a8, - 0xeab1a9, - 0xeab1aa, - 0xeab1ab, - 0xeab1ac, - 0xeab1ad, - 0xeab1ae, - 0xeab1af, - 0xeab1b0, - 0xeab1b1, - 0xeab1b2, - 0xeab1b3, - 0xeab1b4, - 0xeab1b5, - 0xeab1b6, - 0xeab1b7, - 0xeab1b8, - 0xeab1b9, - 0xeab1ba, - 0xeab1bb, - 0xeab1bc, - 0xeab1bd, - 0xeab1be, - 0xeab1bf, - 0xeab280, - 0xeab281, - 0xeab282, - 0xeab283, - 0xeab284, - 0xeab285, - 0xeab286, - 0xeab287, - 0xeab288, - 0xeab289, - 0xeab28a, - 0xeab28b, - 0xeab28c, - 0xeab28d, - 0xeab28e, - 0xeab28f, - 0xeab290, - 0xeab291, - 0xeab292, - 0xeab293, - 0xeab294, - 0xeab295, - 0xeab296, - 0xeab297, - 0xeab298, - 0xeab299, - 0xeab29a, - 0xeab29b, - 0xeab29c, - 0xeab29d, - 0xeab29e, - 0xeab29f, - 0xeab2a0, - 0xeab2a1, - 0xeab2a2, - 0xeab2a3, - 0xeab2a4, - 0xeab2a5, - 0xeab2a6, - 0xeab2a7, - 0xeab2a8, - 0xeab2a9, - 0xeab2aa, - 0xeab2ab, - 0xeab2ac, - 0xeab2ad, - 0xeab2ae, - 0xeab2af, - 0xeab2b0, - 0xeab2b1, - 0xeab2b2, - 0xeab2b3, - 0xeab2b4, - 0xeab2b5, - 0xeab2b6, - 0xeab2b7, - 0xeab2b8, - 0xeab2b9, - 0xeab2ba, - 0xeab2bb, - 0xeab2bc, - 0xeab2bd, - 0xeab2be, - 0xeab2bf, - 0xeab380, - 0xeab381, - 0xeab382, - 0xeab383, - 0xeab384, - 0xeab385, - 0xeab386, - 0xeab387, - 0xeab388, - 0xeab389, - 0xeab38a, - 0xeab38b, - 0xeab38c, - 0xeab38d, - 0xeab38e, - 0xeab38f, - 0xeab390, - 0xeab391, - 0xeab392, - 0xeab393, - 0xeab394, - 0xeab395, - 0xeab396, - 0xeab397, - 0xeab398, - 0xeab399, - 0xeab39a, - 0xeab39b, - 0xeab39c, - 0xeab39d, - 0xeab39e, - 0xeab39f, - 0xeab3a0, - 0xeab3a1, - 0xeab3a2, - 0xeab3a3, - 0xeab3a4, - 0xeab3a5, - 0xeab3a6, - 0xeab3a7, - 0xeab3a8, - 0xeab3a9, - 0xeab3aa, - 0xeab3ab, - 0xeab3ac, - 0xeab3ad, - 0xeab3ae, - 0xeab3af, - 0xeab3b0, - 0xeab3b1, - 0xeab3b2, - 0xeab3b3, - 0xeab3b4, - 0xeab3b5, - 0xeab3b6, - 0xeab3b7, - 0xeab3b8, - 0xeab3b9, - 0xeab3ba, - 0xeab3bb, - 0xeab3bc, - 0xeab3bd, - 0xeab3be, - 0xeab3bf, - 0xeab480, - 0xeab481, - 0xeab482, - 0xeab483, - 0xeab484, - 0xeab485, - 0xeab486, - 0xeab487, - 0xeab488, - 0xeab489, - 0xeab48a, - 0xeab48b, - 0xeab48c, - 0xeab48d, - 0xeab48e, - 0xeab48f, - 0xeab490, - 0xeab491, - 0xeab492, - 0xeab493, - 0xeab494, - 0xeab495, - 0xeab496, - 0xeab497, - 0xeab498, - 0xeab499, - 0xeab49a, - 0xeab49b, - 0xeab49c, - 0xeab49d, - 0xeab49e, - 0xeab49f, - 0xeab4a0, - 0xeab4a1, - 0xeab4a2, - 0xeab4a3, - 0xeab4a4, - 0xeab4a5, - 0xeab4a6, - 0xeab4a7, - 0xeab4a8, - 0xeab4a9, - 0xeab4aa, - 0xeab4ab, - 0xeab4ac, - 0xeab4ad, - 0xeab4ae, - 0xeab4af, - 0xeab4b0, - 0xeab4b1, - 0xeab4b2, - 0xeab4b3, - 0xeab4b4, - 0xeab4b5, - 0xeab4b6, - 0xeab4b7, - 0xeab4b8, - 0xeab4b9, - 0xeab4ba, - 0xeab4bb, - 0xeab4bc, - 0xeab4bd, - 0xeab4be, - 0xeab4bf, - 0xeab580, - 0xeab581, - 0xeab582, - 0xeab583, - 0xeab584, - 0xeab585, - 0xeab586, - 0xeab587, - 0xeab588, - 0xeab589, - 0xeab58a, - 0xeab58b, - 0xeab58c, - 0xeab58d, - 0xeab58e, - 0xeab58f, - 0xeab590, - 0xeab591, - 0xeab592, - 0xeab593, - 0xeab594, - 0xeab595, - 0xeab596, - 0xeab597, - 0xeab598, - 0xeab599, - 0xeab59a, - 0xeab59b, - 0xeab59c, - 0xeab59d, - 0xeab59e, - 0xeab59f, - 0xeab5a0, - 0xeab5a1, - 0xeab5a2, - 0xeab5a3, - 0xeab5a4, - 0xeab5a5, - 0xeab5a6, - 0xeab5a7, - 0xeab5a8, - 0xeab5a9, - 0xeab5aa, - 0xeab5ab, - 0xeab5ac, - 0xeab5ad, - 0xeab5ae, - 0xeab5af, - 0xeab5b0, - 0xeab5b1, - 0xeab5b2, - 0xeab5b3, - 0xeab5b4, - 0xeab5b5, - 0xeab5b6, - 0xeab5b7, - 0xeab5b8, - 0xeab5b9, - 0xeab5ba, - 0xeab5bb, - 0xeab5bc, - 0xeab5bd, - 0xeab5be, - 0xeab5bf, - 0xeab680, - 0xeab681, - 0xeab682, - 0xeab683, - 0xeab684, - 0xeab685, - 0xeab686, - 0xeab687, - 0xeab688, - 0xeab689, - 0xeab68a, - 0xeab68b, - 0xeab68c, - 0xeab68d, - 0xeab68e, - 0xeab68f, - 0xeab690, - 0xeab691, - 0xeab692, - 0xeab693, - 0xeab694, - 0xeab695, - 0xeab696, - 0xeab697, - 0xeab698, - 0xeab699, - 0xeab69a, - 0xeab69b, - 0xeab69c, - 0xeab69d, - 0xeab69e, - 0xeab69f, - 0xeab6a0, - 0xeab6a1, - 0xeab6a2, - 0xeab6a3, - 0xeab6a4, - 0xeab6a5, - 0xeab6a6, - 0xeab6a7, - 0xeab6a8, - 0xeab6a9, - 0xeab6aa, - 0xeab6ab, - 0xeab6ac, - 0xeab6ad, - 0xeab6ae, - 0xeab6af, - 0xeab6b0, - 0xeab6b1, - 0xeab6b2, - 0xeab6b3, - 0xeab6b4, - 0xeab6b5, - 0xeab6b6, - 0xeab6b7, - 0xeab6b8, - 0xeab6b9, - 0xeab6ba, - 0xeab6bb, - 0xeab6bc, - 0xeab6bd, - 0xeab6be, - 0xeab6bf, - 0xeab780, - 0xeab781, - 0xeab782, - 0xeab783, - 0xeab784, - 0xeab785, - 0xeab786, - 0xeab787, - 0xeab788, - 0xeab789, - 0xeab78a, - 0xeab78b, - 0xeab78c, - 0xeab78d, - 0xeab78e, - 0xeab78f, - 0xeab790, - 0xeab791, - 0xeab792, - 0xeab793, - 0xeab794, - 0xeab795, - 0xeab796, - 0xeab797, - 0xeab798, - 0xeab799, - 0xeab79a, - 0xeab79b, - 0xeab79c, - 0xeab79d, - 0xeab79e, - 0xeab79f, - 0xeab7a0, - 0xeab7a1, - 0xeab7a2, - 0xeab7a3, - 0xeab7a4, - 0xeab7a5, - 0xeab7a6, - 0xeab7a7, - 0xeab7a8, - 0xeab7a9, - 0xeab7aa, - 0xeab7ab, - 0xeab7ac, - 0xeab7ad, - 0xeab7ae, - 0xeab7af, - 0xeab7b0, - 0xeab7b1, - 0xeab7b2, - 0xeab7b3, - 0xeab7b4, - 0xeab7b5, - 0xeab7b6, - 0xeab7b7, - 0xeab7b8, - 0xeab7b9, - 0xeab7ba, - 0xeab7bb, - 0xeab7bc, - 0xeab7bd, - 0xeab7be, - 0xeab7bf, - 0xeab880, - 0xeab881, - 0xeab882, - 0xeab883, - 0xeab884, - 0xeab885, - 0xeab886, - 0xeab887, - 0xeab888, - 0xeab889, - 0xeab88a, - 0xeab88b, - 0xeab88c, - 0xeab88d, - 0xeab88e, - 0xeab88f, - 0xeab890, - 0xeab891, - 0xeab892, - 0xeab893, - 0xeab894, - 0xeab895, - 0xeab896, - 0xeab897, - 0xeab898, - 0xeab899, - 0xeab89a, - 0xeab89b, - 0xeab89c, - 0xeab89d, - 0xeab89e, - 0xeab89f, - 0xeab8a0, - 0xeab8a1, - 0xeab8a2, - 0xeab8a3, - 0xeab8a4, - 0xeab8a5, - 0xeab8a6, - 0xeab8a7, - 0xeab8a8, - 0xeab8a9, - 0xeab8aa, - 0xeab8ab, - 0xeab8ac, - 0xeab8ad, - 0xeab8ae, - 0xeab8af, - 0xeab8b0, - 0xeab8b1, - 0xeab8b2, - 0xeab8b3, - 0xeab8b4, - 0xeab8b5, - 0xeab8b6, - 0xeab8b7, - 0xeab8b8, - 0xeab8b9, - 0xeab8ba, - 0xeab8bb, - 0xeab8bc, - 0xeab8bd, - 0xeab8be, - 0xeab8bf, - 0xeab980, - 0xeab981, - 0xeab982, - 0xeab983, - 0xeab984, - 0xeab985, - 0xeab986, - 0xeab987, - 0xeab988, - 0xeab989, - 0xeab98a, - 0xeab98b, - 0xeab98c, - 0xeab98d, - 0xeab98e, - 0xeab98f, - 0xeab990, - 0xeab991, - 0xeab992, - 0xeab993, - 0xeab994, - 0xeab995, - 0xeab996, - 0xeab997, - 0xeab998, - 0xeab999, - 0xeab99a, - 0xeab99b, - 0xeab99c, - 0xeab99d, - 0xeab99e, - 0xeab99f, - 0xeab9a0, - 0xeab9a1, - 0xeab9a2, - 0xeab9a3, - 0xeab9a4, - 0xeab9a5, - 0xeab9a6, - 0xeab9a7, - 0xeab9a8, - 0xeab9a9, - 0xeab9aa, - 0xeab9ab, - 0xeab9ac, - 0xeab9ad, - 0xeab9ae, - 0xeab9af, - 0xeab9b0, - 0xeab9b1, - 0xeab9b2, - 0xeab9b3, - 0xeab9b4, - 0xeab9b5, - 0xeab9b6, - 0xeab9b7, - 0xeab9b8, - 0xeab9b9, - 0xeab9ba, - 0xeab9bb, - 0xeab9bc, - 0xeab9bd, - 0xeab9be, - 0xeab9bf, - 0xeaba80, - 0xeaba81, - 0xeaba82, - 0xeaba83, - 0xeaba84, - 0xeaba85, - 0xeaba86, - 0xeaba87, - 0xeaba88, - 0xeaba89, - 0xeaba8a, - 0xeaba8b, - 0xeaba8c, - 0xeaba8d, - 0xeaba8e, - 0xeaba8f, - 0xeaba90, - 0xeaba91, - 0xeaba92, - 0xeaba93, - 0xeaba94, - 0xeaba95, - 0xeaba96, - 0xeaba97, - 0xeaba98, - 0xeaba99, - 0xeaba9a, - 0xeaba9b, - 0xeaba9c, - 0xeaba9d, - 0xeaba9e, - 0xeaba9f, - 0xeabaa0, - 0xeabaa1, - 0xeabaa2, - 0xeabaa3, - 0xeabaa4, - 0xeabaa5, - 0xeabaa6, - 0xeabaa7, - 0xeabaa8, - 0xeabaa9, - 0xeabaaa, - 0xeabaab, - 0xeabaac, - 0xeabaad, - 0xeabaae, - 0xeabaaf, - 0xeabab0, - 0xeabab1, - 0xeabab2, - 0xeabab3, - 0xeabab4, - 0xeabab5, - 0xeabab6, - 0xeabab7, - 0xeabab8, - 0xeabab9, - 0xeababa, - 0xeababb, - 0xeababc, - 0xeababd, - 0xeababe, - 0xeababf, - 0xeabb80, - 0xeabb81, - 0xeabb82, - 0xeabb83, - 0xeabb84, - 0xeabb85, - 0xeabb86, - 0xeabb87, - 0xeabb88, - 0xeabb89, - 0xeabb8a, - 0xeabb8b, - 0xeabb8c, - 0xeabb8d, - 0xeabb8e, - 0xeabb8f, - 0xeabb90, - 0xeabb91, - 0xeabb92, - 0xeabb93, - 0xeabb94, - 0xeabb95, - 0xeabb96, - 0xeabb97, - 0xeabb98, - 0xeabb99, - 0xeabb9a, - 0xeabb9b, - 0xeabb9c, - 0xeabb9d, - 0xeabb9e, - 0xeabb9f, - 0xeabba0, - 0xeabba1, - 0xeabba2, - 0xeabba3, - 0xeabba4, - 0xeabba5, - 0xeabba6, - 0xeabba7, - 0xeabba8, - 0xeabba9, - 0xeabbaa, - 0xeabbab, - 0xeabbac, - 0xeabbad, - 0xeabbae, - 0xeabbaf, - 0xeabbb0, - 0xeabbb1, - 0xeabbb2, - 0xeabbb3, - 0xeabbb4, - 0xeabbb5, - 0xeabbb6, - 0xeabbb7, - 0xeabbb8, - 0xeabbb9, - 0xeabbba, - 0xeabbbb, - 0xeabbbc, - 0xeabbbd, - 0xeabbbe, - 0xeabbbf, - 0xeabc80, - 0xeabc81, - 0xeabc82, - 0xeabc83, - 0xeabc84, - 0xeabc85, - 0xeabc86, - 0xeabc87, - 0xeabc88, - 0xeabc89, - 0xeabc8a, - 0xeabc8b, - 0xeabc8c, - 0xeabc8d, - 0xeabc8e, - 0xeabc8f, - 0xeabc90, - 0xeabc91, - 0xeabc92, - 0xeabc93, - 0xeabc94, - 0xeabc95, - 0xeabc96, - 0xeabc97, - 0xeabc98, - 0xeabc99, - 0xeabc9a, - 0xeabc9b, - 0xeabc9c, - 0xeabc9d, - 0xeabc9e, - 0xeabc9f, - 0xeabca0, - 0xeabca1, - 0xeabca2, - 0xeabca3, - 0xeabca4, - 0xeabca5, - 0xeabca6, - 0xeabca7, - 0xeabca8, - 0xeabca9, - 0xeabcaa, - 0xeabcab, - 0xeabcac, - 0xeabcad, - 0xeabcae, - 0xeabcaf, - 0xeabcb0, - 0xeabcb1, - 0xeabcb2, - 0xeabcb3, - 0xeabcb4, - 0xeabcb5, - 0xeabcb6, - 0xeabcb7, - 0xeabcb8, - 0xeabcb9, - 0xeabcba, - 0xeabcbb, - 0xeabcbc, - 0xeabcbd, - 0xeabcbe, - 0xeabcbf, - 0xeabd80, - 0xeabd81, - 0xeabd82, - 0xeabd83, - 0xeabd84, - 0xeabd85, - 0xeabd86, - 0xeabd87, - 0xeabd88, - 0xeabd89, - 0xeabd8a, - 0xeabd8b, - 0xeabd8c, - 0xeabd8d, - 0xeabd8e, - 0xeabd8f, - 0xeabd90, - 0xeabd91, - 0xeabd92, - 0xeabd93, - 0xeabd94, - 0xeabd95, - 0xeabd96, - 0xeabd97, - 0xeabd98, - 0xeabd99, - 0xeabd9a, - 0xeabd9b, - 0xeabd9c, - 0xeabd9d, - 0xeabd9e, - 0xeabd9f, - 0xeabda0, - 0xeabda1, - 0xeabda2, - 0xeabda3, - 0xeabda4, - 0xeabda5, - 0xeabda6, - 0xeabda7, - 0xeabda8, - 0xeabda9, - 0xeabdaa, - 0xeabdab, - 0xeabdac, - 0xeabdad, - 0xeabdae, - 0xeabdaf, - 0xeabdb0, - 0xeabdb1, - 0xeabdb2, - 0xeabdb3, - 0xeabdb4, - 0xeabdb5, - 0xeabdb6, - 0xeabdb7, - 0xeabdb8, - 0xeabdb9, - 0xeabdba, - 0xeabdbb, - 0xeabdbc, - 0xeabdbd, - 0xeabdbe, - 0xeabdbf, - 0xeabe80, - 0xeabe81, - 0xeabe82, - 0xeabe83, - 0xeabe84, - 0xeabe85, - 0xeabe86, - 0xeabe87, - 0xeabe88, - 0xeabe89, - 0xeabe8a, - 0xeabe8b, - 0xeabe8c, - 0xeabe8d, - 0xeabe8e, - 0xeabe8f, - 0xeabe90, - 0xeabe91, - 0xeabe92, - 0xeabe93, - 0xeabe94, - 0xeabe95, - 0xeabe96, - 0xeabe97, - 0xeabe98, - 0xeabe99, - 0xeabe9a, - 0xeabe9b, - 0xeabe9c, - 0xeabe9d, - 0xeabe9e, - 0xeabe9f, - 0xeabea0, - 0xeabea1, - 0xeabea2, - 0xeabea3, - 0xeabea4, - 0xeabea5, - 0xeabea6, - 0xeabea7, - 0xeabea8, - 0xeabea9, - 0xeabeaa, - 0xeabeab, - 0xeabeac, - 0xeabead, - 0xeabeae, - 0xeabeaf, - 0xeabeb0, - 0xeabeb1, - 0xeabeb2, - 0xeabeb3, - 0xeabeb4, - 0xeabeb5, - 0xeabeb6, - 0xeabeb7, - 0xeabeb8, - 0xeabeb9, - 0xeabeba, - 0xeabebb, - 0xeabebc, - 0xeabebd, - 0xeabebe, - 0xeabebf, - 0xeabf80, - 0xeabf81, - 0xeabf82, - 0xeabf83, - 0xeabf84, - 0xeabf85, - 0xeabf86, - 0xeabf87, - 0xeabf88, - 0xeabf89, - 0xeabf8a, - 0xeabf8b, - 0xeabf8c, - 0xeabf8d, - 0xeabf8e, - 0xeabf8f, - 0xeabf90, - 0xeabf91, - 0xeabf92, - 0xeabf93, - 0xeabf94, - 0xeabf95, - 0xeabf96, - 0xeabf97, - 0xeabf98, - 0xeabf99, - 0xeabf9a, - 0xeabf9b, - 0xeabf9c, - 0xeabf9d, - 0xeabf9e, - 0xeabf9f, - 0xeabfa0, - 0xeabfa1, - 0xeabfa2, - 0xeabfa3, - 0xeabfa4, - 0xeabfa5, - 0xeabfa6, - 0xeabfa7, - 0xeabfa8, - 0xeabfa9, - 0xeabfaa, - 0xeabfab, - 0xeabfac, - 0xeabfad, - 0xeabfae, - 0xeabfaf, - 0xeabfb0, - 0xeabfb1, - 0xeabfb2, - 0xeabfb3, - 0xeabfb4, - 0xeabfb5, - 0xeabfb6, - 0xeabfb7, - 0xeabfb8, - 0xeabfb9, - 0xeabfba, - 0xeabfbb, - 0xeabfbc, - 0xeabfbd, - 0xeabfbe, - 0xeabfbf, - 0xeb8080, - 0xeb8081, - 0xeb8082, - 0xeb8083, - 0xeb8084, - 0xeb8085, - 0xeb8086, - 0xeb8087, - 0xeb8088, - 0xeb8089, - 0xeb808a, - 0xeb808b, - 0xeb808c, - 0xeb808d, - 0xeb808e, - 0xeb808f, - 0xeb8090, - 0xeb8091, - 0xeb8092, - 0xeb8093, - 0xeb8094, - 0xeb8095, - 0xeb8096, - 0xeb8097, - 0xeb8098, - 0xeb8099, - 0xeb809a, - 0xeb809b, - 0xeb809c, - 0xeb809d, - 0xeb809e, - 0xeb809f, - 0xeb80a0, - 0xeb80a1, - 0xeb80a2, - 0xeb80a3, - 0xeb80a4, - 0xeb80a5, - 0xeb80a6, - 0xeb80a7, - 0xeb80a8, - 0xeb80a9, - 0xeb80aa, - 0xeb80ab, - 0xeb80ac, - 0xeb80ad, - 0xeb80ae, - 0xeb80af, - 0xeb80b0, - 0xeb80b1, - 0xeb80b2, - 0xeb80b3, - 0xeb80b4, - 0xeb80b5, - 0xeb80b6, - 0xeb80b7, - 0xeb80b8, - 0xeb80b9, - 0xeb80ba, - 0xeb80bb, - 0xeb80bc, - 0xeb80bd, - 0xeb80be, - 0xeb80bf, - 0xeb8180, - 0xeb8181, - 0xeb8182, - 0xeb8183, - 0xeb8184, - 0xeb8185, - 0xeb8186, - 0xeb8187, - 0xeb8188, - 0xeb8189, - 0xeb818a, - 0xeb818b, - 0xeb818c, - 0xeb818d, - 0xeb818e, - 0xeb818f, - 0xeb8190, - 0xeb8191, - 0xeb8192, - 0xeb8193, - 0xeb8194, - 0xeb8195, - 0xeb8196, - 0xeb8197, - 0xeb8198, - 0xeb8199, - 0xeb819a, - 0xeb819b, - 0xeb819c, - 0xeb819d, - 0xeb819e, - 0xeb819f, - 0xeb81a0, - 0xeb81a1, - 0xeb81a2, - 0xeb81a3, - 0xeb81a4, - 0xeb81a5, - 0xeb81a6, - 0xeb81a7, - 0xeb81a8, - 0xeb81a9, - 0xeb81aa, - 0xeb81ab, - 0xeb81ac, - 0xeb81ad, - 0xeb81ae, - 0xeb81af, - 0xeb81b0, - 0xeb81b1, - 0xeb81b2, - 0xeb81b3, - 0xeb81b4, - 0xeb81b5, - 0xeb81b6, - 0xeb81b7, - 0xeb81b8, - 0xeb81b9, - 0xeb81ba, - 0xeb81bb, - 0xeb81bc, - 0xeb81bd, - 0xeb81be, - 0xeb81bf, - 0xeb8280, - 0xeb8281, - 0xeb8282, - 0xeb8283, - 0xeb8284, - 0xeb8285, - 0xeb8286, - 0xeb8287, - 0xeb8288, - 0xeb8289, - 0xeb828a, - 0xeb828b, - 0xeb828c, - 0xeb828d, - 0xeb828e, - 0xeb828f, - 0xeb8290, - 0xeb8291, - 0xeb8292, - 0xeb8293, - 0xeb8294, - 0xeb8295, - 0xeb8296, - 0xeb8297, - 0xeb8298, - 0xeb8299, - 0xeb829a, - 0xeb829b, - 0xeb829c, - 0xeb829d, - 0xeb829e, - 0xeb829f, - 0xeb82a0, - 0xeb82a1, - 0xeb82a2, - 0xeb82a3, - 0xeb82a4, - 0xeb82a5, - 0xeb82a6, - 0xeb82a7, - 0xeb82a8, - 0xeb82a9, - 0xeb82aa, - 0xeb82ab, - 0xeb82ac, - 0xeb82ad, - 0xeb82ae, - 0xeb82af, - 0xeb82b0, - 0xeb82b1, - 0xeb82b2, - 0xeb82b3, - 0xeb82b4, - 0xeb82b5, - 0xeb82b6, - 0xeb82b7, - 0xeb82b8, - 0xeb82b9, - 0xeb82ba, - 0xeb82bb, - 0xeb82bc, - 0xeb82bd, - 0xeb82be, - 0xeb82bf, - 0xeb8380, - 0xeb8381, - 0xeb8382, - 0xeb8383, - 0xeb8384, - 0xeb8385, - 0xeb8386, - 0xeb8387, - 0xeb8388, - 0xeb8389, - 0xeb838a, - 0xeb838b, - 0xeb838c, - 0xeb838d, - 0xeb838e, - 0xeb838f, - 0xeb8390, - 0xeb8391, - 0xeb8392, - 0xeb8393, - 0xeb8394, - 0xeb8395, - 0xeb8396, - 0xeb8397, - 0xeb8398, - 0xeb8399, - 0xeb839a, - 0xeb839b, - 0xeb839c, - 0xeb839d, - 0xeb839e, - 0xeb839f, - 0xeb83a0, - 0xeb83a1, - 0xeb83a2, - 0xeb83a3, - 0xeb83a4, - 0xeb83a5, - 0xeb83a6, - 0xeb83a7, - 0xeb83a8, - 0xeb83a9, - 0xeb83aa, - 0xeb83ab, - 0xeb83ac, - 0xeb83ad, - 0xeb83ae, - 0xeb83af, - 0xeb83b0, - 0xeb83b1, - 0xeb83b2, - 0xeb83b3, - 0xeb83b4, - 0xeb83b5, - 0xeb83b6, - 0xeb83b7, - 0xeb83b8, - 0xeb83b9, - 0xeb83ba, - 0xeb83bb, - 0xeb83bc, - 0xeb83bd, - 0xeb83be, - 0xeb83bf, - 0xeb8480, - 0xeb8481, - 0xeb8482, - 0xeb8483, - 0xeb8484, - 0xeb8485, - 0xeb8486, - 0xeb8487, - 0xeb8488, - 0xeb8489, - 0xeb848a, - 0xeb848b, - 0xeb848c, - 0xeb848d, - 0xeb848e, - 0xeb848f, - 0xeb8490, - 0xeb8491, - 0xeb8492, - 0xeb8493, - 0xeb8494, - 0xeb8495, - 0xeb8496, - 0xeb8497, - 0xeb8498, - 0xeb8499, - 0xeb849a, - 0xeb849b, - 0xeb849c, - 0xeb849d, - 0xeb849e, - 0xeb849f, - 0xeb84a0, - 0xeb84a1, - 0xeb84a2, - 0xeb84a3, - 0xeb84a4, - 0xeb84a5, - 0xeb84a6, - 0xeb84a7, - 0xeb84a8, - 0xeb84a9, - 0xeb84aa, - 0xeb84ab, - 0xeb84ac, - 0xeb84ad, - 0xeb84ae, - 0xeb84af, - 0xeb84b0, - 0xeb84b1, - 0xeb84b2, - 0xeb84b3, - 0xeb84b4, - 0xeb84b5, - 0xeb84b6, - 0xeb84b7, - 0xeb84b8, - 0xeb84b9, - 0xeb84ba, - 0xeb84bb, - 0xeb84bc, - 0xeb84bd, - 0xeb84be, - 0xeb84bf, - 0xeb8580, - 0xeb8581, - 0xeb8582, - 0xeb8583, - 0xeb8584, - 0xeb8585, - 0xeb8586, - 0xeb8587, - 0xeb8588, - 0xeb8589, - 0xeb858a, - 0xeb858b, - 0xeb858c, - 0xeb858d, - 0xeb858e, - 0xeb858f, - 0xeb8590, - 0xeb8591, - 0xeb8592, - 0xeb8593, - 0xeb8594, - 0xeb8595, - 0xeb8596, - 0xeb8597, - 0xeb8598, - 0xeb8599, - 0xeb859a, - 0xeb859b, - 0xeb859c, - 0xeb859d, - 0xeb859e, - 0xeb859f, - 0xeb85a0, - 0xeb85a1, - 0xeb85a2, - 0xeb85a3, - 0xeb85a4, - 0xeb85a5, - 0xeb85a6, - 0xeb85a7, - 0xeb85a8, - 0xeb85a9, - 0xeb85aa, - 0xeb85ab, - 0xeb85ac, - 0xeb85ad, - 0xeb85ae, - 0xeb85af, - 0xeb85b0, - 0xeb85b1, - 0xeb85b2, - 0xeb85b3, - 0xeb85b4, - 0xeb85b5, - 0xeb85b6, - 0xeb85b7, - 0xeb85b8, - 0xeb85b9, - 0xeb85ba, - 0xeb85bb, - 0xeb85bc, - 0xeb85bd, - 0xeb85be, - 0xeb85bf, - 0xeb8680, - 0xeb8681, - 0xeb8682, - 0xeb8683, - 0xeb8684, - 0xeb8685, - 0xeb8686, - 0xeb8687, - 0xeb8688, - 0xeb8689, - 0xeb868a, - 0xeb868b, - 0xeb868c, - 0xeb868d, - 0xeb868e, - 0xeb868f, - 0xeb8690, - 0xeb8691, - 0xeb8692, - 0xeb8693, - 0xeb8694, - 0xeb8695, - 0xeb8696, - 0xeb8697, - 0xeb8698, - 0xeb8699, - 0xeb869a, - 0xeb869b, - 0xeb869c, - 0xeb869d, - 0xeb869e, - 0xeb869f, - 0xeb86a0, - 0xeb86a1, - 0xeb86a2, - 0xeb86a3, - 0xeb86a4, - 0xeb86a5, - 0xeb86a6, - 0xeb86a7, - 0xeb86a8, - 0xeb86a9, - 0xeb86aa, - 0xeb86ab, - 0xeb86ac, - 0xeb86ad, - 0xeb86ae, - 0xeb86af, - 0xeb86b0, - 0xeb86b1, - 0xeb86b2, - 0xeb86b3, - 0xeb86b4, - 0xeb86b5, - 0xeb86b6, - 0xeb86b7, - 0xeb86b8, - 0xeb86b9, - 0xeb86ba, - 0xeb86bb, - 0xeb86bc, - 0xeb86bd, - 0xeb86be, - 0xeb86bf, - 0xeb8780, - 0xeb8781, - 0xeb8782, - 0xeb8783, - 0xeb8784, - 0xeb8785, - 0xeb8786, - 0xeb8787, - 0xeb8788, - 0xeb8789, - 0xeb878a, - 0xeb878b, - 0xeb878c, - 0xeb878d, - 0xeb878e, - 0xeb878f, - 0xeb8790, - 0xeb8791, - 0xeb8792, - 0xeb8793, - 0xeb8794, - 0xeb8795, - 0xeb8796, - 0xeb8797, - 0xeb8798, - 0xeb8799, - 0xeb879a, - 0xeb879b, - 0xeb879c, - 0xeb879d, - 0xeb879e, - 0xeb879f, - 0xeb87a0, - 0xeb87a1, - 0xeb87a2, - 0xeb87a3, - 0xeb87a4, - 0xeb87a5, - 0xeb87a6, - 0xeb87a7, - 0xeb87a8, - 0xeb87a9, - 0xeb87aa, - 0xeb87ab, - 0xeb87ac, - 0xeb87ad, - 0xeb87ae, - 0xeb87af, - 0xeb87b0, - 0xeb87b1, - 0xeb87b2, - 0xeb87b3, - 0xeb87b4, - 0xeb87b5, - 0xeb87b6, - 0xeb87b7, - 0xeb87b8, - 0xeb87b9, - 0xeb87ba, - 0xeb87bb, - 0xeb87bc, - 0xeb87bd, - 0xeb87be, - 0xeb87bf, - 0xeb8880, - 0xeb8881, - 0xeb8882, - 0xeb8883, - 0xeb8884, - 0xeb8885, - 0xeb8886, - 0xeb8887, - 0xeb8888, - 0xeb8889, - 0xeb888a, - 0xeb888b, - 0xeb888c, - 0xeb888d, - 0xeb888e, - 0xeb888f, - 0xeb8890, - 0xeb8891, - 0xeb8892, - 0xeb8893, - 0xeb8894, - 0xeb8895, - 0xeb8896, - 0xeb8897, - 0xeb8898, - 0xeb8899, - 0xeb889a, - 0xeb889b, - 0xeb889c, - 0xeb889d, - 0xeb889e, - 0xeb889f, - 0xeb88a0, - 0xeb88a1, - 0xeb88a2, - 0xeb88a3, - 0xeb88a4, - 0xeb88a5, - 0xeb88a6, - 0xeb88a7, - 0xeb88a8, - 0xeb88a9, - 0xeb88aa, - 0xeb88ab, - 0xeb88ac, - 0xeb88ad, - 0xeb88ae, - 0xeb88af, - 0xeb88b0, - 0xeb88b1, - 0xeb88b2, - 0xeb88b3, - 0xeb88b4, - 0xeb88b5, - 0xeb88b6, - 0xeb88b7, - 0xeb88b8, - 0xeb88b9, - 0xeb88ba, - 0xeb88bb, - 0xeb88bc, - 0xeb88bd, - 0xeb88be, - 0xeb88bf, - 0xeb8980, - 0xeb8981, - 0xeb8982, - 0xeb8983, - 0xeb8984, - 0xeb8985, - 0xeb8986, - 0xeb8987, - 0xeb8988, - 0xeb8989, - 0xeb898a, - 0xeb898b, - 0xeb898c, - 0xeb898d, - 0xeb898e, - 0xeb898f, - 0xeb8990, - 0xeb8991, - 0xeb8992, - 0xeb8993, - 0xeb8994, - 0xeb8995, - 0xeb8996, - 0xeb8997, - 0xeb8998, - 0xeb8999, - 0xeb899a, - 0xeb899b, - 0xeb899c, - 0xeb899d, - 0xeb899e, - 0xeb899f, - 0xeb89a0, - 0xeb89a1, - 0xeb89a2, - 0xeb89a3, - 0xeb89a4, - 0xeb89a5, - 0xeb89a6, - 0xeb89a7, - 0xeb89a8, - 0xeb89a9, - 0xeb89aa, - 0xeb89ab, - 0xeb89ac, - 0xeb89ad, - 0xeb89ae, - 0xeb89af, - 0xeb89b0, - 0xeb89b1, - 0xeb89b2, - 0xeb89b3, - 0xeb89b4, - 0xeb89b5, - 0xeb89b6, - 0xeb89b7, - 0xeb89b8, - 0xeb89b9, - 0xeb89ba, - 0xeb89bb, - 0xeb89bc, - 0xeb89bd, - 0xeb89be, - 0xeb89bf, - 0xeb8a80, - 0xeb8a81, - 0xeb8a82, - 0xeb8a83, - 0xeb8a84, - 0xeb8a85, - 0xeb8a86, - 0xeb8a87, - 0xeb8a88, - 0xeb8a89, - 0xeb8a8a, - 0xeb8a8b, - 0xeb8a8c, - 0xeb8a8d, - 0xeb8a8e, - 0xeb8a8f, - 0xeb8a90, - 0xeb8a91, - 0xeb8a92, - 0xeb8a93, - 0xeb8a94, - 0xeb8a95, - 0xeb8a96, - 0xeb8a97, - 0xeb8a98, - 0xeb8a99, - 0xeb8a9a, - 0xeb8a9b, - 0xeb8a9c, - 0xeb8a9d, - 0xeb8a9e, - 0xeb8a9f, - 0xeb8aa0, - 0xeb8aa1, - 0xeb8aa2, - 0xeb8aa3, - 0xeb8aa4, - 0xeb8aa5, - 0xeb8aa6, - 0xeb8aa7, - 0xeb8aa8, - 0xeb8aa9, - 0xeb8aaa, - 0xeb8aab, - 0xeb8aac, - 0xeb8aad, - 0xeb8aae, - 0xeb8aaf, - 0xeb8ab0, - 0xeb8ab1, - 0xeb8ab2, - 0xeb8ab3, - 0xeb8ab4, - 0xeb8ab5, - 0xeb8ab6, - 0xeb8ab7, - 0xeb8ab8, - 0xeb8ab9, - 0xeb8aba, - 0xeb8abb, - 0xeb8abc, - 0xeb8abd, - 0xeb8abe, - 0xeb8abf, - 0xeb8b80, - 0xeb8b81, - 0xeb8b82, - 0xeb8b83, - 0xeb8b84, - 0xeb8b85, - 0xeb8b86, - 0xeb8b87, - 0xeb8b88, - 0xeb8b89, - 0xeb8b8a, - 0xeb8b8b, - 0xeb8b8c, - 0xeb8b8d, - 0xeb8b8e, - 0xeb8b8f, - 0xeb8b90, - 0xeb8b91, - 0xeb8b92, - 0xeb8b93, - 0xeb8b94, - 0xeb8b95, - 0xeb8b96, - 0xeb8b97, - 0xeb8b98, - 0xeb8b99, - 0xeb8b9a, - 0xeb8b9b, - 0xeb8b9c, - 0xeb8b9d, - 0xeb8b9e, - 0xeb8b9f, - 0xeb8ba0, - 0xeb8ba1, - 0xeb8ba2, - 0xeb8ba3, - 0xeb8ba4, - 0xeb8ba5, - 0xeb8ba6, - 0xeb8ba7, - 0xeb8ba8, - 0xeb8ba9, - 0xeb8baa, - 0xeb8bab, - 0xeb8bac, - 0xeb8bad, - 0xeb8bae, - 0xeb8baf, - 0xeb8bb0, - 0xeb8bb1, - 0xeb8bb2, - 0xeb8bb3, - 0xeb8bb4, - 0xeb8bb5, - 0xeb8bb6, - 0xeb8bb7, - 0xeb8bb8, - 0xeb8bb9, - 0xeb8bba, - 0xeb8bbb, - 0xeb8bbc, - 0xeb8bbd, - 0xeb8bbe, - 0xeb8bbf, - 0xeb8c80, - 0xeb8c81, - 0xeb8c82, - 0xeb8c83, - 0xeb8c84, - 0xeb8c85, - 0xeb8c86, - 0xeb8c87, - 0xeb8c88, - 0xeb8c89, - 0xeb8c8a, - 0xeb8c8b, - 0xeb8c8c, - 0xeb8c8d, - 0xeb8c8e, - 0xeb8c8f, - 0xeb8c90, - 0xeb8c91, - 0xeb8c92, - 0xeb8c93, - 0xeb8c94, - 0xeb8c95, - 0xeb8c96, - 0xeb8c97, - 0xeb8c98, - 0xeb8c99, - 0xeb8c9a, - 0xeb8c9b, - 0xeb8c9c, - 0xeb8c9d, - 0xeb8c9e, - 0xeb8c9f, - 0xeb8ca0, - 0xeb8ca1, - 0xeb8ca2, - 0xeb8ca3, - 0xeb8ca4, - 0xeb8ca5, - 0xeb8ca6, - 0xeb8ca7, - 0xeb8ca8, - 0xeb8ca9, - 0xeb8caa, - 0xeb8cab, - 0xeb8cac, - 0xeb8cad, - 0xeb8cae, - 0xeb8caf, - 0xeb8cb0, - 0xeb8cb1, - 0xeb8cb2, - 0xeb8cb3, - 0xeb8cb4, - 0xeb8cb5, - 0xeb8cb6, - 0xeb8cb7, - 0xeb8cb8, - 0xeb8cb9, - 0xeb8cba, - 0xeb8cbb, - 0xeb8cbc, - 0xeb8cbd, - 0xeb8cbe, - 0xeb8cbf, - 0xeb8d80, - 0xeb8d81, - 0xeb8d82, - 0xeb8d83, - 0xeb8d84, - 0xeb8d85, - 0xeb8d86, - 0xeb8d87, - 0xeb8d88, - 0xeb8d89, - 0xeb8d8a, - 0xeb8d8b, - 0xeb8d8c, - 0xeb8d8d, - 0xeb8d8e, - 0xeb8d8f, - 0xeb8d90, - 0xeb8d91, - 0xeb8d92, - 0xeb8d93, - 0xeb8d94, - 0xeb8d95, - 0xeb8d96, - 0xeb8d97, - 0xeb8d98, - 0xeb8d99, - 0xeb8d9a, - 0xeb8d9b, - 0xeb8d9c, - 0xeb8d9d, - 0xeb8d9e, - 0xeb8d9f, - 0xeb8da0, - 0xeb8da1, - 0xeb8da2, - 0xeb8da3, - 0xeb8da4, - 0xeb8da5, - 0xeb8da6, - 0xeb8da7, - 0xeb8da8, - 0xeb8da9, - 0xeb8daa, - 0xeb8dab, - 0xeb8dac, - 0xeb8dad, - 0xeb8dae, - 0xeb8daf, - 0xeb8db0, - 0xeb8db1, - 0xeb8db2, - 0xeb8db3, - 0xeb8db4, - 0xeb8db5, - 0xeb8db6, - 0xeb8db7, - 0xeb8db8, - 0xeb8db9, - 0xeb8dba, - 0xeb8dbb, - 0xeb8dbc, - 0xeb8dbd, - 0xeb8dbe, - 0xeb8dbf, - 0xeb8e80, - 0xeb8e81, - 0xeb8e82, - 0xeb8e83, - 0xeb8e84, - 0xeb8e85, - 0xeb8e86, - 0xeb8e87, - 0xeb8e88, - 0xeb8e89, - 0xeb8e8a, - 0xeb8e8b, - 0xeb8e8c, - 0xeb8e8d, - 0xeb8e8e, - 0xeb8e8f, - 0xeb8e90, - 0xeb8e91, - 0xeb8e92, - 0xeb8e93, - 0xeb8e94, - 0xeb8e95, - 0xeb8e96, - 0xeb8e97, - 0xeb8e98, - 0xeb8e99, - 0xeb8e9a, - 0xeb8e9b, - 0xeb8e9c, - 0xeb8e9d, - 0xeb8e9e, - 0xeb8e9f, - 0xeb8ea0, - 0xeb8ea1, - 0xeb8ea2, - 0xeb8ea3, - 0xeb8ea4, - 0xeb8ea5, - 0xeb8ea6, - 0xeb8ea7, - 0xeb8ea8, - 0xeb8ea9, - 0xeb8eaa, - 0xeb8eab, - 0xeb8eac, - 0xeb8ead, - 0xeb8eae, - 0xeb8eaf, - 0xeb8eb0, - 0xeb8eb1, - 0xeb8eb2, - 0xeb8eb3, - 0xeb8eb4, - 0xeb8eb5, - 0xeb8eb6, - 0xeb8eb7, - 0xeb8eb8, - 0xeb8eb9, - 0xeb8eba, - 0xeb8ebb, - 0xeb8ebc, - 0xeb8ebd, - 0xeb8ebe, - 0xeb8ebf, - 0xeb8f80, - 0xeb8f81, - 0xeb8f82, - 0xeb8f83, - 0xeb8f84, - 0xeb8f85, - 0xeb8f86, - 0xeb8f87, - 0xeb8f88, - 0xeb8f89, - 0xeb8f8a, - 0xeb8f8b, - 0xeb8f8c, - 0xeb8f8d, - 0xeb8f8e, - 0xeb8f8f, - 0xeb8f90, - 0xeb8f91, - 0xeb8f92, - 0xeb8f93, - 0xeb8f94, - 0xeb8f95, - 0xeb8f96, - 0xeb8f97, - 0xeb8f98, - 0xeb8f99, - 0xeb8f9a, - 0xeb8f9b, - 0xeb8f9c, - 0xeb8f9d, - 0xeb8f9e, - 0xeb8f9f, - 0xeb8fa0, - 0xeb8fa1, - 0xeb8fa2, - 0xeb8fa3, - 0xeb8fa4, - 0xeb8fa5, - 0xeb8fa6, - 0xeb8fa7, - 0xeb8fa8, - 0xeb8fa9, - 0xeb8faa, - 0xeb8fab, - 0xeb8fac, - 0xeb8fad, - 0xeb8fae, - 0xeb8faf, - 0xeb8fb0, - 0xeb8fb1, - 0xeb8fb2, - 0xeb8fb3, - 0xeb8fb4, - 0xeb8fb5, - 0xeb8fb6, - 0xeb8fb7, - 0xeb8fb8, - 0xeb8fb9, - 0xeb8fba, - 0xeb8fbb, - 0xeb8fbc, - 0xeb8fbd, - 0xeb8fbe, - 0xeb8fbf, - 0xeb9080, - 0xeb9081, - 0xeb9082, - 0xeb9083, - 0xeb9084, - 0xeb9085, - 0xeb9086, - 0xeb9087, - 0xeb9088, - 0xeb9089, - 0xeb908a, - 0xeb908b, - 0xeb908c, - 0xeb908d, - 0xeb908e, - 0xeb908f, - 0xeb9090, - 0xeb9091, - 0xeb9092, - 0xeb9093, - 0xeb9094, - 0xeb9095, - 0xeb9096, - 0xeb9097, - 0xeb9098, - 0xeb9099, - 0xeb909a, - 0xeb909b, - 0xeb909c, - 0xeb909d, - 0xeb909e, - 0xeb909f, - 0xeb90a0, - 0xeb90a1, - 0xeb90a2, - 0xeb90a3, - 0xeb90a4, - 0xeb90a5, - 0xeb90a6, - 0xeb90a7, - 0xeb90a8, - 0xeb90a9, - 0xeb90aa, - 0xeb90ab, - 0xeb90ac, - 0xeb90ad, - 0xeb90ae, - 0xeb90af, - 0xeb90b0, - 0xeb90b1, - 0xeb90b2, - 0xeb90b3, - 0xeb90b4, - 0xeb90b5, - 0xeb90b6, - 0xeb90b7, - 0xeb90b8, - 0xeb90b9, - 0xeb90ba, - 0xeb90bb, - 0xeb90bc, - 0xeb90bd, - 0xeb90be, - 0xeb90bf, - 0xeb9180, - 0xeb9181, - 0xeb9182, - 0xeb9183, - 0xeb9184, - 0xeb9185, - 0xeb9186, - 0xeb9187, - 0xeb9188, - 0xeb9189, - 0xeb918a, - 0xeb918b, - 0xeb918c, - 0xeb918d, - 0xeb918e, - 0xeb918f, - 0xeb9190, - 0xeb9191, - 0xeb9192, - 0xeb9193, - 0xeb9194, - 0xeb9195, - 0xeb9196, - 0xeb9197, - 0xeb9198, - 0xeb9199, - 0xeb919a, - 0xeb919b, - 0xeb919c, - 0xeb919d, - 0xeb919e, - 0xeb919f, - 0xeb91a0, - 0xeb91a1, - 0xeb91a2, - 0xeb91a3, - 0xeb91a4, - 0xeb91a5, - 0xeb91a6, - 0xeb91a7, - 0xeb91a8, - 0xeb91a9, - 0xeb91aa, - 0xeb91ab, - 0xeb91ac, - 0xeb91ad, - 0xeb91ae, - 0xeb91af, - 0xeb91b0, - 0xeb91b1, - 0xeb91b2, - 0xeb91b3, - 0xeb91b4, - 0xeb91b5, - 0xeb91b6, - 0xeb91b7, - 0xeb91b8, - 0xeb91b9, - 0xeb91ba, - 0xeb91bb, - 0xeb91bc, - 0xeb91bd, - 0xeb91be, - 0xeb91bf, - 0xeb9280, - 0xeb9281, - 0xeb9282, - 0xeb9283, - 0xeb9284, - 0xeb9285, - 0xeb9286, - 0xeb9287, - 0xeb9288, - 0xeb9289, - 0xeb928a, - 0xeb928b, - 0xeb928c, - 0xeb928d, - 0xeb928e, - 0xeb928f, - 0xeb9290, - 0xeb9291, - 0xeb9292, - 0xeb9293, - 0xeb9294, - 0xeb9295, - 0xeb9296, - 0xeb9297, - 0xeb9298, - 0xeb9299, - 0xeb929a, - 0xeb929b, - 0xeb929c, - 0xeb929d, - 0xeb929e, - 0xeb929f, - 0xeb92a0, - 0xeb92a1, - 0xeb92a2, - 0xeb92a3, - 0xeb92a4, - 0xeb92a5, - 0xeb92a6, - 0xeb92a7, - 0xeb92a8, - 0xeb92a9, - 0xeb92aa, - 0xeb92ab, - 0xeb92ac, - 0xeb92ad, - 0xeb92ae, - 0xeb92af, - 0xeb92b0, - 0xeb92b1, - 0xeb92b2, - 0xeb92b3, - 0xeb92b4, - 0xeb92b5, - 0xeb92b6, - 0xeb92b7, - 0xeb92b8, - 0xeb92b9, - 0xeb92ba, - 0xeb92bb, - 0xeb92bc, - 0xeb92bd, - 0xeb92be, - 0xeb92bf, - 0xeb9380, - 0xeb9381, - 0xeb9382, - 0xeb9383, - 0xeb9384, - 0xeb9385, - 0xeb9386, - 0xeb9387, - 0xeb9388, - 0xeb9389, - 0xeb938a, - 0xeb938b, - 0xeb938c, - 0xeb938d, - 0xeb938e, - 0xeb938f, - 0xeb9390, - 0xeb9391, - 0xeb9392, - 0xeb9393, - 0xeb9394, - 0xeb9395, - 0xeb9396, - 0xeb9397, - 0xeb9398, - 0xeb9399, - 0xeb939a, - 0xeb939b, - 0xeb939c, - 0xeb939d, - 0xeb939e, - 0xeb939f, - 0xeb93a0, - 0xeb93a1, - 0xeb93a2, - 0xeb93a3, - 0xeb93a4, - 0xeb93a5, - 0xeb93a6, - 0xeb93a7, - 0xeb93a8, - 0xeb93a9, - 0xeb93aa, - 0xeb93ab, - 0xeb93ac, - 0xeb93ad, - 0xeb93ae, - 0xeb93af, - 0xeb93b0, - 0xeb93b1, - 0xeb93b2, - 0xeb93b3, - 0xeb93b4, - 0xeb93b5, - 0xeb93b6, - 0xeb93b7, - 0xeb93b8, - 0xeb93b9, - 0xeb93ba, - 0xeb93bb, - 0xeb93bc, - 0xeb93bd, - 0xeb93be, - 0xeb93bf, - 0xeb9480, - 0xeb9481, - 0xeb9482, - 0xeb9483, - 0xeb9484, - 0xeb9485, - 0xeb9486, - 0xeb9487, - 0xeb9488, - 0xeb9489, - 0xeb948a, - 0xeb948b, - 0xeb948c, - 0xeb948d, - 0xeb948e, - 0xeb948f, - 0xeb9490, - 0xeb9491, - 0xeb9492, - 0xeb9493, - 0xeb9494, - 0xeb9495, - 0xeb9496, - 0xeb9497, - 0xeb9498, - 0xeb9499, - 0xeb949a, - 0xeb949b, - 0xeb949c, - 0xeb949d, - 0xeb949e, - 0xeb949f, - 0xeb94a0, - 0xeb94a1, - 0xeb94a2, - 0xeb94a3, - 0xeb94a4, - 0xeb94a5, - 0xeb94a6, - 0xeb94a7, - 0xeb94a8, - 0xeb94a9, - 0xeb94aa, - 0xeb94ab, - 0xeb94ac, - 0xeb94ad, - 0xeb94ae, - 0xeb94af, - 0xeb94b0, - 0xeb94b1, - 0xeb94b2, - 0xeb94b3, - 0xeb94b4, - 0xeb94b5, - 0xeb94b6, - 0xeb94b7, - 0xeb94b8, - 0xeb94b9, - 0xeb94ba, - 0xeb94bb, - 0xeb94bc, - 0xeb94bd, - 0xeb94be, - 0xeb94bf, - 0xeb9580, - 0xeb9581, - 0xeb9582, - 0xeb9583, - 0xeb9584, - 0xeb9585, - 0xeb9586, - 0xeb9587, - 0xeb9588, - 0xeb9589, - 0xeb958a, - 0xeb958b, - 0xeb958c, - 0xeb958d, - 0xeb958e, - 0xeb958f, - 0xeb9590, - 0xeb9591, - 0xeb9592, - 0xeb9593, - 0xeb9594, - 0xeb9595, - 0xeb9596, - 0xeb9597, - 0xeb9598, - 0xeb9599, - 0xeb959a, - 0xeb959b, - 0xeb959c, - 0xeb959d, - 0xeb959e, - 0xeb959f, - 0xeb95a0, - 0xeb95a1, - 0xeb95a2, - 0xeb95a3, - 0xeb95a4, - 0xeb95a5, - 0xeb95a6, - 0xeb95a7, - 0xeb95a8, - 0xeb95a9, - 0xeb95aa, - 0xeb95ab, - 0xeb95ac, - 0xeb95ad, - 0xeb95ae, - 0xeb95af, - 0xeb95b0, - 0xeb95b1, - 0xeb95b2, - 0xeb95b3, - 0xeb95b4, - 0xeb95b5, - 0xeb95b6, - 0xeb95b7, - 0xeb95b8, - 0xeb95b9, - 0xeb95ba, - 0xeb95bb, - 0xeb95bc, - 0xeb95bd, - 0xeb95be, - 0xeb95bf, - 0xeb9680, - 0xeb9681, - 0xeb9682, - 0xeb9683, - 0xeb9684, - 0xeb9685, - 0xeb9686, - 0xeb9687, - 0xeb9688, - 0xeb9689, - 0xeb968a, - 0xeb968b, - 0xeb968c, - 0xeb968d, - 0xeb968e, - 0xeb968f, - 0xeb9690, - 0xeb9691, - 0xeb9692, - 0xeb9693, - 0xeb9694, - 0xeb9695, - 0xeb9696, - 0xeb9697, - 0xeb9698, - 0xeb9699, - 0xeb969a, - 0xeb969b, - 0xeb969c, - 0xeb969d, - 0xeb969e, - 0xeb969f, - 0xeb96a0, - 0xeb96a1, - 0xeb96a2, - 0xeb96a3, - 0xeb96a4, - 0xeb96a5, - 0xeb96a6, - 0xeb96a7, - 0xeb96a8, - 0xeb96a9, - 0xeb96aa, - 0xeb96ab, - 0xeb96ac, - 0xeb96ad, - 0xeb96ae, - 0xeb96af, - 0xeb96b0, - 0xeb96b1, - 0xeb96b2, - 0xeb96b3, - 0xeb96b4, - 0xeb96b5, - 0xeb96b6, - 0xeb96b7, - 0xeb96b8, - 0xeb96b9, - 0xeb96ba, - 0xeb96bb, - 0xeb96bc, - 0xeb96bd, - 0xeb96be, - 0xeb96bf, - 0xeb9780, - 0xeb9781, - 0xeb9782, - 0xeb9783, - 0xeb9784, - 0xeb9785, - 0xeb9786, - 0xeb9787, - 0xeb9788, - 0xeb9789, - 0xeb978a, - 0xeb978b, - 0xeb978c, - 0xeb978d, - 0xeb978e, - 0xeb978f, - 0xeb9790, - 0xeb9791, - 0xeb9792, - 0xeb9793, - 0xeb9794, - 0xeb9795, - 0xeb9796, - 0xeb9797, - 0xeb9798, - 0xeb9799, - 0xeb979a, - 0xeb979b, - 0xeb979c, - 0xeb979d, - 0xeb979e, - 0xeb979f, - 0xeb97a0, - 0xeb97a1, - 0xeb97a2, - 0xeb97a3, - 0xeb97a4, - 0xeb97a5, - 0xeb97a6, - 0xeb97a7, - 0xeb97a8, - 0xeb97a9, - 0xeb97aa, - 0xeb97ab, - 0xeb97ac, - 0xeb97ad, - 0xeb97ae, - 0xeb97af, - 0xeb97b0, - 0xeb97b1, - 0xeb97b2, - 0xeb97b3, - 0xeb97b4, - 0xeb97b5, - 0xeb97b6, - 0xeb97b7, - 0xeb97b8, - 0xeb97b9, - 0xeb97ba, - 0xeb97bb, - 0xeb97bc, - 0xeb97bd, - 0xeb97be, - 0xeb97bf, - 0xeb9880, - 0xeb9881, - 0xeb9882, - 0xeb9883, - 0xeb9884, - 0xeb9885, - 0xeb9886, - 0xeb9887, - 0xeb9888, - 0xeb9889, - 0xeb988a, - 0xeb988b, - 0xeb988c, - 0xeb988d, - 0xeb988e, - 0xeb988f, - 0xeb9890, - 0xeb9891, - 0xeb9892, - 0xeb9893, - 0xeb9894, - 0xeb9895, - 0xeb9896, - 0xeb9897, - 0xeb9898, - 0xeb9899, - 0xeb989a, - 0xeb989b, - 0xeb989c, - 0xeb989d, - 0xeb989e, - 0xeb989f, - 0xeb98a0, - 0xeb98a1, - 0xeb98a2, - 0xeb98a3, - 0xeb98a4, - 0xeb98a5, - 0xeb98a6, - 0xeb98a7, - 0xeb98a8, - 0xeb98a9, - 0xeb98aa, - 0xeb98ab, - 0xeb98ac, - 0xeb98ad, - 0xeb98ae, - 0xeb98af, - 0xeb98b0, - 0xeb98b1, - 0xeb98b2, - 0xeb98b3, - 0xeb98b4, - 0xeb98b5, - 0xeb98b6, - 0xeb98b7, - 0xeb98b8, - 0xeb98b9, - 0xeb98ba, - 0xeb98bb, - 0xeb98bc, - 0xeb98bd, - 0xeb98be, - 0xeb98bf, - 0xeb9980, - 0xeb9981, - 0xeb9982, - 0xeb9983, - 0xeb9984, - 0xeb9985, - 0xeb9986, - 0xeb9987, - 0xeb9988, - 0xeb9989, - 0xeb998a, - 0xeb998b, - 0xeb998c, - 0xeb998d, - 0xeb998e, - 0xeb998f, - 0xeb9990, - 0xeb9991, - 0xeb9992, - 0xeb9993, - 0xeb9994, - 0xeb9995, - 0xeb9996, - 0xeb9997, - 0xeb9998, - 0xeb9999, - 0xeb999a, - 0xeb999b, - 0xeb999c, - 0xeb999d, - 0xeb999e, - 0xeb999f, - 0xeb99a0, - 0xeb99a1, - 0xeb99a2, - 0xeb99a3, - 0xeb99a4, - 0xeb99a5, - 0xeb99a6, - 0xeb99a7, - 0xeb99a8, - 0xeb99a9, - 0xeb99aa, - 0xeb99ab, - 0xeb99ac, - 0xeb99ad, - 0xeb99ae, - 0xeb99af, - 0xeb99b0, - 0xeb99b1, - 0xeb99b2, - 0xeb99b3, - 0xeb99b4, - 0xeb99b5, - 0xeb99b6, - 0xeb99b7, - 0xeb99b8, - 0xeb99b9, - 0xeb99ba, - 0xeb99bb, - 0xeb99bc, - 0xeb99bd, - 0xeb99be, - 0xeb99bf, - 0xeb9a80, - 0xeb9a81, - 0xeb9a82, - 0xeb9a83, - 0xeb9a84, - 0xeb9a85, - 0xeb9a86, - 0xeb9a87, - 0xeb9a88, - 0xeb9a89, - 0xeb9a8a, - 0xeb9a8b, - 0xeb9a8c, - 0xeb9a8d, - 0xeb9a8e, - 0xeb9a8f, - 0xeb9a90, - 0xeb9a91, - 0xeb9a92, - 0xeb9a93, - 0xeb9a94, - 0xeb9a95, - 0xeb9a96, - 0xeb9a97, - 0xeb9a98, - 0xeb9a99, - 0xeb9a9a, - 0xeb9a9b, - 0xeb9a9c, - 0xeb9a9d, - 0xeb9a9e, - 0xeb9a9f, - 0xeb9aa0, - 0xeb9aa1, - 0xeb9aa2, - 0xeb9aa3, - 0xeb9aa4, - 0xeb9aa5, - 0xeb9aa6, - 0xeb9aa7, - 0xeb9aa8, - 0xeb9aa9, - 0xeb9aaa, - 0xeb9aab, - 0xeb9aac, - 0xeb9aad, - 0xeb9aae, - 0xeb9aaf, - 0xeb9ab0, - 0xeb9ab1, - 0xeb9ab2, - 0xeb9ab3, - 0xeb9ab4, - 0xeb9ab5, - 0xeb9ab6, - 0xeb9ab7, - 0xeb9ab8, - 0xeb9ab9, - 0xeb9aba, - 0xeb9abb, - 0xeb9abc, - 0xeb9abd, - 0xeb9abe, - 0xeb9abf, - 0xeb9b80, - 0xeb9b81, - 0xeb9b82, - 0xeb9b83, - 0xeb9b84, - 0xeb9b85, - 0xeb9b86, - 0xeb9b87, - 0xeb9b88, - 0xeb9b89, - 0xeb9b8a, - 0xeb9b8b, - 0xeb9b8c, - 0xeb9b8d, - 0xeb9b8e, - 0xeb9b8f, - 0xeb9b90, - 0xeb9b91, - 0xeb9b92, - 0xeb9b93, - 0xeb9b94, - 0xeb9b95, - 0xeb9b96, - 0xeb9b97, - 0xeb9b98, - 0xeb9b99, - 0xeb9b9a, - 0xeb9b9b, - 0xeb9b9c, - 0xeb9b9d, - 0xeb9b9e, - 0xeb9b9f, - 0xeb9ba0, - 0xeb9ba1, - 0xeb9ba2, - 0xeb9ba3, - 0xeb9ba4, - 0xeb9ba5, - 0xeb9ba6, - 0xeb9ba7, - 0xeb9ba8, - 0xeb9ba9, - 0xeb9baa, - 0xeb9bab, - 0xeb9bac, - 0xeb9bad, - 0xeb9bae, - 0xeb9baf, - 0xeb9bb0, - 0xeb9bb1, - 0xeb9bb2, - 0xeb9bb3, - 0xeb9bb4, - 0xeb9bb5, - 0xeb9bb6, - 0xeb9bb7, - 0xeb9bb8, - 0xeb9bb9, - 0xeb9bba, - 0xeb9bbb, - 0xeb9bbc, - 0xeb9bbd, - 0xeb9bbe, - 0xeb9bbf, - 0xeb9c80, - 0xeb9c81, - 0xeb9c82, - 0xeb9c83, - 0xeb9c84, - 0xeb9c85, - 0xeb9c86, - 0xeb9c87, - 0xeb9c88, - 0xeb9c89, - 0xeb9c8a, - 0xeb9c8b, - 0xeb9c8c, - 0xeb9c8d, - 0xeb9c8e, - 0xeb9c8f, - 0xeb9c90, - 0xeb9c91, - 0xeb9c92, - 0xeb9c93, - 0xeb9c94, - 0xeb9c95, - 0xeb9c96, - 0xeb9c97, - 0xeb9c98, - 0xeb9c99, - 0xeb9c9a, - 0xeb9c9b, - 0xeb9c9c, - 0xeb9c9d, - 0xeb9c9e, - 0xeb9c9f, - 0xeb9ca0, - 0xeb9ca1, - 0xeb9ca2, - 0xeb9ca3, - 0xeb9ca4, - 0xeb9ca5, - 0xeb9ca6, - 0xeb9ca7, - 0xeb9ca8, - 0xeb9ca9, - 0xeb9caa, - 0xeb9cab, - 0xeb9cac, - 0xeb9cad, - 0xeb9cae, - 0xeb9caf, - 0xeb9cb0, - 0xeb9cb1, - 0xeb9cb2, - 0xeb9cb3, - 0xeb9cb4, - 0xeb9cb5, - 0xeb9cb6, - 0xeb9cb7, - 0xeb9cb8, - 0xeb9cb9, - 0xeb9cba, - 0xeb9cbb, - 0xeb9cbc, - 0xeb9cbd, - 0xeb9cbe, - 0xeb9cbf, - 0xeb9d80, - 0xeb9d81, - 0xeb9d82, - 0xeb9d83, - 0xeb9d84, - 0xeb9d85, - 0xeb9d86, - 0xeb9d87, - 0xeb9d88, - 0xeb9d89, - 0xeb9d8a, - 0xeb9d8b, - 0xeb9d8c, - 0xeb9d8d, - 0xeb9d8e, - 0xeb9d8f, - 0xeb9d90, - 0xeb9d91, - 0xeb9d92, - 0xeb9d93, - 0xeb9d94, - 0xeb9d95, - 0xeb9d96, - 0xeb9d97, - 0xeb9d98, - 0xeb9d99, - 0xeb9d9a, - 0xeb9d9b, - 0xeb9d9c, - 0xeb9d9d, - 0xeb9d9e, - 0xeb9d9f, - 0xeb9da0, - 0xeb9da1, - 0xeb9da2, - 0xeb9da3, - 0xeb9da4, - 0xeb9da5, - 0xeb9da6, - 0xeb9da7, - 0xeb9da8, - 0xeb9da9, - 0xeb9daa, - 0xeb9dab, - 0xeb9dac, - 0xeb9dad, - 0xeb9dae, - 0xeb9daf, - 0xeb9db0, - 0xeb9db1, - 0xeb9db2, - 0xeb9db3, - 0xeb9db4, - 0xeb9db5, - 0xeb9db6, - 0xeb9db7, - 0xeb9db8, - 0xeb9db9, - 0xeb9dba, - 0xeb9dbb, - 0xeb9dbc, - 0xeb9dbd, - 0xeb9dbe, - 0xeb9dbf, - 0xeb9e80, - 0xeb9e81, - 0xeb9e82, - 0xeb9e83, - 0xeb9e84, - 0xeb9e85, - 0xeb9e86, - 0xeb9e87, - 0xeb9e88, - 0xeb9e89, - 0xeb9e8a, - 0xeb9e8b, - 0xeb9e8c, - 0xeb9e8d, - 0xeb9e8e, - 0xeb9e8f, - 0xeb9e90, - 0xeb9e91, - 0xeb9e92, - 0xeb9e93, - 0xeb9e94, - 0xeb9e95, - 0xeb9e96, - 0xeb9e97, - 0xeb9e98, - 0xeb9e99, - 0xeb9e9a, - 0xeb9e9b, - 0xeb9e9c, - 0xeb9e9d, - 0xeb9e9e, - 0xeb9e9f, - 0xeb9ea0, - 0xeb9ea1, - 0xeb9ea2, - 0xeb9ea3, - 0xeb9ea4, - 0xeb9ea5, - 0xeb9ea6, - 0xeb9ea7, - 0xeb9ea8, - 0xeb9ea9, - 0xeb9eaa, - 0xeb9eab, - 0xeb9eac, - 0xeb9ead, - 0xeb9eae, - 0xeb9eaf, - 0xeb9eb0, - 0xeb9eb1, - 0xeb9eb2, - 0xeb9eb3, - 0xeb9eb4, - 0xeb9eb5, - 0xeb9eb6, - 0xeb9eb7, - 0xeb9eb8, - 0xeb9eb9, - 0xeb9eba, - 0xeb9ebb, - 0xeb9ebc, - 0xeb9ebd, - 0xeb9ebe, - 0xeb9ebf, - 0xeb9f80, - 0xeb9f81, - 0xeb9f82, - 0xeb9f83, - 0xeb9f84, - 0xeb9f85, - 0xeb9f86, - 0xeb9f87, - 0xeb9f88, - 0xeb9f89, - 0xeb9f8a, - 0xeb9f8b, - 0xeb9f8c, - 0xeb9f8d, - 0xeb9f8e, - 0xeb9f8f, - 0xeb9f90, - 0xeb9f91, - 0xeb9f92, - 0xeb9f93, - 0xeb9f94, - 0xeb9f95, - 0xeb9f96, - 0xeb9f97, - 0xeb9f98, - 0xeb9f99, - 0xeb9f9a, - 0xeb9f9b, - 0xeb9f9c, - 0xeb9f9d, - 0xeb9f9e, - 0xeb9f9f, - 0xeb9fa0, - 0xeb9fa1, - 0xeb9fa2, - 0xeb9fa3, - 0xeb9fa4, - 0xeb9fa5, - 0xeb9fa6, - 0xeb9fa7, - 0xeb9fa8, - 0xeb9fa9, - 0xeb9faa, - 0xeb9fab, - 0xeb9fac, - 0xeb9fad, - 0xeb9fae, - 0xeb9faf, - 0xeb9fb0, - 0xeb9fb1, - 0xeb9fb2, - 0xeb9fb3, - 0xeb9fb4, - 0xeb9fb5, - 0xeb9fb6, - 0xeb9fb7, - 0xeb9fb8, - 0xeb9fb9, - 0xeb9fba, - 0xeb9fbb, - 0xeb9fbc, - 0xeb9fbd, - 0xeb9fbe, - 0xeb9fbf, - 0xeba080, - 0xeba081, - 0xeba082, - 0xeba083, - 0xeba084, - 0xeba085, - 0xeba086, - 0xeba087, - 0xeba088, - 0xeba089, - 0xeba08a, - 0xeba08b, - 0xeba08c, - 0xeba08d, - 0xeba08e, - 0xeba08f, - 0xeba090, - 0xeba091, - 0xeba092, - 0xeba093, - 0xeba094, - 0xeba095, - 0xeba096, - 0xeba097, - 0xeba098, - 0xeba099, - 0xeba09a, - 0xeba09b, - 0xeba09c, - 0xeba09d, - 0xeba09e, - 0xeba09f, - 0xeba0a0, - 0xeba0a1, - 0xeba0a2, - 0xeba0a3, - 0xeba0a4, - 0xeba0a5, - 0xeba0a6, - 0xeba0a7, - 0xeba0a8, - 0xeba0a9, - 0xeba0aa, - 0xeba0ab, - 0xeba0ac, - 0xeba0ad, - 0xeba0ae, - 0xeba0af, - 0xeba0b0, - 0xeba0b1, - 0xeba0b2, - 0xeba0b3, - 0xeba0b4, - 0xeba0b5, - 0xeba0b6, - 0xeba0b7, - 0xeba0b8, - 0xeba0b9, - 0xeba0ba, - 0xeba0bb, - 0xeba0bc, - 0xeba0bd, - 0xeba0be, - 0xeba0bf, - 0xeba180, - 0xeba181, - 0xeba182, - 0xeba183, - 0xeba184, - 0xeba185, - 0xeba186, - 0xeba187, - 0xeba188, - 0xeba189, - 0xeba18a, - 0xeba18b, - 0xeba18c, - 0xeba18d, - 0xeba18e, - 0xeba18f, - 0xeba190, - 0xeba191, - 0xeba192, - 0xeba193, - 0xeba194, - 0xeba195, - 0xeba196, - 0xeba197, - 0xeba198, - 0xeba199, - 0xeba19a, - 0xeba19b, - 0xeba19c, - 0xeba19d, - 0xeba19e, - 0xeba19f, - 0xeba1a0, - 0xeba1a1, - 0xeba1a2, - 0xeba1a3, - 0xeba1a4, - 0xeba1a5, - 0xeba1a6, - 0xeba1a7, - 0xeba1a8, - 0xeba1a9, - 0xeba1aa, - 0xeba1ab, - 0xeba1ac, - 0xeba1ad, - 0xeba1ae, - 0xeba1af, - 0xeba1b0, - 0xeba1b1, - 0xeba1b2, - 0xeba1b3, - 0xeba1b4, - 0xeba1b5, - 0xeba1b6, - 0xeba1b7, - 0xeba1b8, - 0xeba1b9, - 0xeba1ba, - 0xeba1bb, - 0xeba1bc, - 0xeba1bd, - 0xeba1be, - 0xeba1bf, - 0xeba280, - 0xeba281, - 0xeba282, - 0xeba283, - 0xeba284, - 0xeba285, - 0xeba286, - 0xeba287, - 0xeba288, - 0xeba289, - 0xeba28a, - 0xeba28b, - 0xeba28c, - 0xeba28d, - 0xeba28e, - 0xeba28f, - 0xeba290, - 0xeba291, - 0xeba292, - 0xeba293, - 0xeba294, - 0xeba295, - 0xeba296, - 0xeba297, - 0xeba298, - 0xeba299, - 0xeba29a, - 0xeba29b, - 0xeba29c, - 0xeba29d, - 0xeba29e, - 0xeba29f, - 0xeba2a0, - 0xeba2a1, - 0xeba2a2, - 0xeba2a3, - 0xeba2a4, - 0xeba2a5, - 0xeba2a6, - 0xeba2a7, - 0xeba2a8, - 0xeba2a9, - 0xeba2aa, - 0xeba2ab, - 0xeba2ac, - 0xeba2ad, - 0xeba2ae, - 0xeba2af, - 0xeba2b0, - 0xeba2b1, - 0xeba2b2, - 0xeba2b3, - 0xeba2b4, - 0xeba2b5, - 0xeba2b6, - 0xeba2b7, - 0xeba2b8, - 0xeba2b9, - 0xeba2ba, - 0xeba2bb, - 0xeba2bc, - 0xeba2bd, - 0xeba2be, - 0xeba2bf, - 0xeba380, - 0xeba381, - 0xeba382, - 0xeba383, - 0xeba384, - 0xeba385, - 0xeba386, - 0xeba387, - 0xeba388, - 0xeba389, - 0xeba38a, - 0xeba38b, - 0xeba38c, - 0xeba38d, - 0xeba38e, - 0xeba38f, - 0xeba390, - 0xeba391, - 0xeba392, - 0xeba393, - 0xeba394, - 0xeba395, - 0xeba396, - 0xeba397, - 0xeba398, - 0xeba399, - 0xeba39a, - 0xeba39b, - 0xeba39c, - 0xeba39d, - 0xeba39e, - 0xeba39f, - 0xeba3a0, - 0xeba3a1, - 0xeba3a2, - 0xeba3a3, - 0xeba3a4, - 0xeba3a5, - 0xeba3a6, - 0xeba3a7, - 0xeba3a8, - 0xeba3a9, - 0xeba3aa, - 0xeba3ab, - 0xeba3ac, - 0xeba3ad, - 0xeba3ae, - 0xeba3af, - 0xeba3b0, - 0xeba3b1, - 0xeba3b2, - 0xeba3b3, - 0xeba3b4, - 0xeba3b5, - 0xeba3b6, - 0xeba3b7, - 0xeba3b8, - 0xeba3b9, - 0xeba3ba, - 0xeba3bb, - 0xeba3bc, - 0xeba3bd, - 0xeba3be, - 0xeba3bf, - 0xeba480, - 0xeba481, - 0xeba482, - 0xeba483, - 0xeba484, - 0xeba485, - 0xeba486, - 0xeba487, - 0xeba488, - 0xeba489, - 0xeba48a, - 0xeba48b, - 0xeba48c, - 0xeba48d, - 0xeba48e, - 0xeba48f, - 0xeba490, - 0xeba491, - 0xeba492, - 0xeba493, - 0xeba494, - 0xeba495, - 0xeba496, - 0xeba497, - 0xeba498, - 0xeba499, - 0xeba49a, - 0xeba49b, - 0xeba49c, - 0xeba49d, - 0xeba49e, - 0xeba49f, - 0xeba4a0, - 0xeba4a1, - 0xeba4a2, - 0xeba4a3, - 0xeba4a4, - 0xeba4a5, - 0xeba4a6, - 0xeba4a7, - 0xeba4a8, - 0xeba4a9, - 0xeba4aa, - 0xeba4ab, - 0xeba4ac, - 0xeba4ad, - 0xeba4ae, - 0xeba4af, - 0xeba4b0, - 0xeba4b1, - 0xeba4b2, - 0xeba4b3, - 0xeba4b4, - 0xeba4b5, - 0xeba4b6, - 0xeba4b7, - 0xeba4b8, - 0xeba4b9, - 0xeba4ba, - 0xeba4bb, - 0xeba4bc, - 0xeba4bd, - 0xeba4be, - 0xeba4bf, - 0xeba580, - 0xeba581, - 0xeba582, - 0xeba583, - 0xeba584, - 0xeba585, - 0xeba586, - 0xeba587, - 0xeba588, - 0xeba589, - 0xeba58a, - 0xeba58b, - 0xeba58c, - 0xeba58d, - 0xeba58e, - 0xeba58f, - 0xeba590, - 0xeba591, - 0xeba592, - 0xeba593, - 0xeba594, - 0xeba595, - 0xeba596, - 0xeba597, - 0xeba598, - 0xeba599, - 0xeba59a, - 0xeba59b, - 0xeba59c, - 0xeba59d, - 0xeba59e, - 0xeba59f, - 0xeba5a0, - 0xeba5a1, - 0xeba5a2, - 0xeba5a3, - 0xeba5a4, - 0xeba5a5, - 0xeba5a6, - 0xeba5a7, - 0xeba5a8, - 0xeba5a9, - 0xeba5aa, - 0xeba5ab, - 0xeba5ac, - 0xeba5ad, - 0xeba5ae, - 0xeba5af, - 0xeba5b0, - 0xeba5b1, - 0xeba5b2, - 0xeba5b3, - 0xeba5b4, - 0xeba5b5, - 0xeba5b6, - 0xeba5b7, - 0xeba5b8, - 0xeba5b9, - 0xeba5ba, - 0xeba5bb, - 0xeba5bc, - 0xeba5bd, - 0xeba5be, - 0xeba5bf, - 0xeba680, - 0xeba681, - 0xeba682, - 0xeba683, - 0xeba684, - 0xeba685, - 0xeba686, - 0xeba687, - 0xeba688, - 0xeba689, - 0xeba68a, - 0xeba68b, - 0xeba68c, - 0xeba68d, - 0xeba68e, - 0xeba68f, - 0xeba690, - 0xeba691, - 0xeba692, - 0xeba693, - 0xeba694, - 0xeba695, - 0xeba696, - 0xeba697, - 0xeba698, - 0xeba699, - 0xeba69a, - 0xeba69b, - 0xeba69c, - 0xeba69d, - 0xeba69e, - 0xeba69f, - 0xeba6a0, - 0xeba6a1, - 0xeba6a2, - 0xeba6a3, - 0xeba6a4, - 0xeba6a5, - 0xeba6a6, - 0xeba6a7, - 0xeba6a8, - 0xeba6a9, - 0xeba6aa, - 0xeba6ab, - 0xeba6ac, - 0xeba6ad, - 0xeba6ae, - 0xeba6af, - 0xeba6b0, - 0xeba6b1, - 0xeba6b2, - 0xeba6b3, - 0xeba6b4, - 0xeba6b5, - 0xeba6b6, - 0xeba6b7, - 0xeba6b8, - 0xeba6b9, - 0xeba6ba, - 0xeba6bb, - 0xeba6bc, - 0xeba6bd, - 0xeba6be, - 0xeba6bf, - 0xeba780, - 0xeba781, - 0xeba782, - 0xeba783, - 0xeba784, - 0xeba785, - 0xeba786, - 0xeba787, - 0xeba788, - 0xeba789, - 0xeba78a, - 0xeba78b, - 0xeba78c, - 0xeba78d, - 0xeba78e, - 0xeba78f, - 0xeba790, - 0xeba791, - 0xeba792, - 0xeba793, - 0xeba794, - 0xeba795, - 0xeba796, - 0xeba797, - 0xeba798, - 0xeba799, - 0xeba79a, - 0xeba79b, - 0xeba79c, - 0xeba79d, - 0xeba79e, - 0xeba79f, - 0xeba7a0, - 0xeba7a1, - 0xeba7a2, - 0xeba7a3, - 0xeba7a4, - 0xeba7a5, - 0xeba7a6, - 0xeba7a7, - 0xeba7a8, - 0xeba7a9, - 0xeba7aa, - 0xeba7ab, - 0xeba7ac, - 0xeba7ad, - 0xeba7ae, - 0xeba7af, - 0xeba7b0, - 0xeba7b1, - 0xeba7b2, - 0xeba7b3, - 0xeba7b4, - 0xeba7b5, - 0xeba7b6, - 0xeba7b7, - 0xeba7b8, - 0xeba7b9, - 0xeba7ba, - 0xeba7bb, - 0xeba7bc, - 0xeba7bd, - 0xeba7be, - 0xeba7bf, - 0xeba880, - 0xeba881, - 0xeba882, - 0xeba883, - 0xeba884, - 0xeba885, - 0xeba886, - 0xeba887, - 0xeba888, - 0xeba889, - 0xeba88a, - 0xeba88b, - 0xeba88c, - 0xeba88d, - 0xeba88e, - 0xeba88f, - 0xeba890, - 0xeba891, - 0xeba892, - 0xeba893, - 0xeba894, - 0xeba895, - 0xeba896, - 0xeba897, - 0xeba898, - 0xeba899, - 0xeba89a, - 0xeba89b, - 0xeba89c, - 0xeba89d, - 0xeba89e, - 0xeba89f, - 0xeba8a0, - 0xeba8a1, - 0xeba8a2, - 0xeba8a3, - 0xeba8a4, - 0xeba8a5, - 0xeba8a6, - 0xeba8a7, - 0xeba8a8, - 0xeba8a9, - 0xeba8aa, - 0xeba8ab, - 0xeba8ac, - 0xeba8ad, - 0xeba8ae, - 0xeba8af, - 0xeba8b0, - 0xeba8b1, - 0xeba8b2, - 0xeba8b3, - 0xeba8b4, - 0xeba8b5, - 0xeba8b6, - 0xeba8b7, - 0xeba8b8, - 0xeba8b9, - 0xeba8ba, - 0xeba8bb, - 0xeba8bc, - 0xeba8bd, - 0xeba8be, - 0xeba8bf, - 0xeba980, - 0xeba981, - 0xeba982, - 0xeba983, - 0xeba984, - 0xeba985, - 0xeba986, - 0xeba987, - 0xeba988, - 0xeba989, - 0xeba98a, - 0xeba98b, - 0xeba98c, - 0xeba98d, - 0xeba98e, - 0xeba98f, - 0xeba990, - 0xeba991, - 0xeba992, - 0xeba993, - 0xeba994, - 0xeba995, - 0xeba996, - 0xeba997, - 0xeba998, - 0xeba999, - 0xeba99a, - 0xeba99b, - 0xeba99c, - 0xeba99d, - 0xeba99e, - 0xeba99f, - 0xeba9a0, - 0xeba9a1, - 0xeba9a2, - 0xeba9a3, - 0xeba9a4, - 0xeba9a5, - 0xeba9a6, - 0xeba9a7, - 0xeba9a8, - 0xeba9a9, - 0xeba9aa, - 0xeba9ab, - 0xeba9ac, - 0xeba9ad, - 0xeba9ae, - 0xeba9af, - 0xeba9b0, - 0xeba9b1, - 0xeba9b2, - 0xeba9b3, - 0xeba9b4, - 0xeba9b5, - 0xeba9b6, - 0xeba9b7, - 0xeba9b8, - 0xeba9b9, - 0xeba9ba, - 0xeba9bb, - 0xeba9bc, - 0xeba9bd, - 0xeba9be, - 0xeba9bf, - 0xebaa80, - 0xebaa81, - 0xebaa82, - 0xebaa83, - 0xebaa84, - 0xebaa85, - 0xebaa86, - 0xebaa87, - 0xebaa88, - 0xebaa89, - 0xebaa8a, - 0xebaa8b, - 0xebaa8c, - 0xebaa8d, - 0xebaa8e, - 0xebaa8f, - 0xebaa90, - 0xebaa91, - 0xebaa92, - 0xebaa93, - 0xebaa94, - 0xebaa95, - 0xebaa96, - 0xebaa97, - 0xebaa98, - 0xebaa99, - 0xebaa9a, - 0xebaa9b, - 0xebaa9c, - 0xebaa9d, - 0xebaa9e, - 0xebaa9f, - 0xebaaa0, - 0xebaaa1, - 0xebaaa2, - 0xebaaa3, - 0xebaaa4, - 0xebaaa5, - 0xebaaa6, - 0xebaaa7, - 0xebaaa8, - 0xebaaa9, - 0xebaaaa, - 0xebaaab, - 0xebaaac, - 0xebaaad, - 0xebaaae, - 0xebaaaf, - 0xebaab0, - 0xebaab1, - 0xebaab2, - 0xebaab3, - 0xebaab4, - 0xebaab5, - 0xebaab6, - 0xebaab7, - 0xebaab8, - 0xebaab9, - 0xebaaba, - 0xebaabb, - 0xebaabc, - 0xebaabd, - 0xebaabe, - 0xebaabf, - 0xebab80, - 0xebab81, - 0xebab82, - 0xebab83, - 0xebab84, - 0xebab85, - 0xebab86, - 0xebab87, - 0xebab88, - 0xebab89, - 0xebab8a, - 0xebab8b, - 0xebab8c, - 0xebab8d, - 0xebab8e, - 0xebab8f, - 0xebab90, - 0xebab91, - 0xebab92, - 0xebab93, - 0xebab94, - 0xebab95, - 0xebab96, - 0xebab97, - 0xebab98, - 0xebab99, - 0xebab9a, - 0xebab9b, - 0xebab9c, - 0xebab9d, - 0xebab9e, - 0xebab9f, - 0xebaba0, - 0xebaba1, - 0xebaba2, - 0xebaba3, - 0xebaba4, - 0xebaba5, - 0xebaba6, - 0xebaba7, - 0xebaba8, - 0xebaba9, - 0xebabaa, - 0xebabab, - 0xebabac, - 0xebabad, - 0xebabae, - 0xebabaf, - 0xebabb0, - 0xebabb1, - 0xebabb2, - 0xebabb3, - 0xebabb4, - 0xebabb5, - 0xebabb6, - 0xebabb7, - 0xebabb8, - 0xebabb9, - 0xebabba, - 0xebabbb, - 0xebabbc, - 0xebabbd, - 0xebabbe, - 0xebabbf, - 0xebac80, - 0xebac81, - 0xebac82, - 0xebac83, - 0xebac84, - 0xebac85, - 0xebac86, - 0xebac87, - 0xebac88, - 0xebac89, - 0xebac8a, - 0xebac8b, - 0xebac8c, - 0xebac8d, - 0xebac8e, - 0xebac8f, - 0xebac90, - 0xebac91, - 0xebac92, - 0xebac93, - 0xebac94, - 0xebac95, - 0xebac96, - 0xebac97, - 0xebac98, - 0xebac99, - 0xebac9a, - 0xebac9b, - 0xebac9c, - 0xebac9d, - 0xebac9e, - 0xebac9f, - 0xebaca0, - 0xebaca1, - 0xebaca2, - 0xebaca3, - 0xebaca4, - 0xebaca5, - 0xebaca6, - 0xebaca7, - 0xebaca8, - 0xebaca9, - 0xebacaa, - 0xebacab, - 0xebacac, - 0xebacad, - 0xebacae, - 0xebacaf, - 0xebacb0, - 0xebacb1, - 0xebacb2, - 0xebacb3, - 0xebacb4, - 0xebacb5, - 0xebacb6, - 0xebacb7, - 0xebacb8, - 0xebacb9, - 0xebacba, - 0xebacbb, - 0xebacbc, - 0xebacbd, - 0xebacbe, - 0xebacbf, - 0xebad80, - 0xebad81, - 0xebad82, - 0xebad83, - 0xebad84, - 0xebad85, - 0xebad86, - 0xebad87, - 0xebad88, - 0xebad89, - 0xebad8a, - 0xebad8b, - 0xebad8c, - 0xebad8d, - 0xebad8e, - 0xebad8f, - 0xebad90, - 0xebad91, - 0xebad92, - 0xebad93, - 0xebad94, - 0xebad95, - 0xebad96, - 0xebad97, - 0xebad98, - 0xebad99, - 0xebad9a, - 0xebad9b, - 0xebad9c, - 0xebad9d, - 0xebad9e, - 0xebad9f, - 0xebada0, - 0xebada1, - 0xebada2, - 0xebada3, - 0xebada4, - 0xebada5, - 0xebada6, - 0xebada7, - 0xebada8, - 0xebada9, - 0xebadaa, - 0xebadab, - 0xebadac, - 0xebadad, - 0xebadae, - 0xebadaf, - 0xebadb0, - 0xebadb1, - 0xebadb2, - 0xebadb3, - 0xebadb4, - 0xebadb5, - 0xebadb6, - 0xebadb7, - 0xebadb8, - 0xebadb9, - 0xebadba, - 0xebadbb, - 0xebadbc, - 0xebadbd, - 0xebadbe, - 0xebadbf, - 0xebae80, - 0xebae81, - 0xebae82, - 0xebae83, - 0xebae84, - 0xebae85, - 0xebae86, - 0xebae87, - 0xebae88, - 0xebae89, - 0xebae8a, - 0xebae8b, - 0xebae8c, - 0xebae8d, - 0xebae8e, - 0xebae8f, - 0xebae90, - 0xebae91, - 0xebae92, - 0xebae93, - 0xebae94, - 0xebae95, - 0xebae96, - 0xebae97, - 0xebae98, - 0xebae99, - 0xebae9a, - 0xebae9b, - 0xebae9c, - 0xebae9d, - 0xebae9e, - 0xebae9f, - 0xebaea0, - 0xebaea1, - 0xebaea2, - 0xebaea3, - 0xebaea4, - 0xebaea5, - 0xebaea6, - 0xebaea7, - 0xebaea8, - 0xebaea9, - 0xebaeaa, - 0xebaeab, - 0xebaeac, - 0xebaead, - 0xebaeae, - 0xebaeaf, - 0xebaeb0, - 0xebaeb1, - 0xebaeb2, - 0xebaeb3, - 0xebaeb4, - 0xebaeb5, - 0xebaeb6, - 0xebaeb7, - 0xebaeb8, - 0xebaeb9, - 0xebaeba, - 0xebaebb, - 0xebaebc, - 0xebaebd, - 0xebaebe, - 0xebaebf, - 0xebaf80, - 0xebaf81, - 0xebaf82, - 0xebaf83, - 0xebaf84, - 0xebaf85, - 0xebaf86, - 0xebaf87, - 0xebaf88, - 0xebaf89, - 0xebaf8a, - 0xebaf8b, - 0xebaf8c, - 0xebaf8d, - 0xebaf8e, - 0xebaf8f, - 0xebaf90, - 0xebaf91, - 0xebaf92, - 0xebaf93, - 0xebaf94, - 0xebaf95, - 0xebaf96, - 0xebaf97, - 0xebaf98, - 0xebaf99, - 0xebaf9a, - 0xebaf9b, - 0xebaf9c, - 0xebaf9d, - 0xebaf9e, - 0xebaf9f, - 0xebafa0, - 0xebafa1, - 0xebafa2, - 0xebafa3, - 0xebafa4, - 0xebafa5, - 0xebafa6, - 0xebafa7, - 0xebafa8, - 0xebafa9, - 0xebafaa, - 0xebafab, - 0xebafac, - 0xebafad, - 0xebafae, - 0xebafaf, - 0xebafb0, - 0xebafb1, - 0xebafb2, - 0xebafb3, - 0xebafb4, - 0xebafb5, - 0xebafb6, - 0xebafb7, - 0xebafb8, - 0xebafb9, - 0xebafba, - 0xebafbb, - 0xebafbc, - 0xebafbd, - 0xebafbe, - 0xebafbf, - 0xebb080, - 0xebb081, - 0xebb082, - 0xebb083, - 0xebb084, - 0xebb085, - 0xebb086, - 0xebb087, - 0xebb088, - 0xebb089, - 0xebb08a, - 0xebb08b, - 0xebb08c, - 0xebb08d, - 0xebb08e, - 0xebb08f, - 0xebb090, - 0xebb091, - 0xebb092, - 0xebb093, - 0xebb094, - 0xebb095, - 0xebb096, - 0xebb097, - 0xebb098, - 0xebb099, - 0xebb09a, - 0xebb09b, - 0xebb09c, - 0xebb09d, - 0xebb09e, - 0xebb09f, - 0xebb0a0, - 0xebb0a1, - 0xebb0a2, - 0xebb0a3, - 0xebb0a4, - 0xebb0a5, - 0xebb0a6, - 0xebb0a7, - 0xebb0a8, - 0xebb0a9, - 0xebb0aa, - 0xebb0ab, - 0xebb0ac, - 0xebb0ad, - 0xebb0ae, - 0xebb0af, - 0xebb0b0, - 0xebb0b1, - 0xebb0b2, - 0xebb0b3, - 0xebb0b4, - 0xebb0b5, - 0xebb0b6, - 0xebb0b7, - 0xebb0b8, - 0xebb0b9, - 0xebb0ba, - 0xebb0bb, - 0xebb0bc, - 0xebb0bd, - 0xebb0be, - 0xebb0bf, - 0xebb180, - 0xebb181, - 0xebb182, - 0xebb183, - 0xebb184, - 0xebb185, - 0xebb186, - 0xebb187, - 0xebb188, - 0xebb189, - 0xebb18a, - 0xebb18b, - 0xebb18c, - 0xebb18d, - 0xebb18e, - 0xebb18f, - 0xebb190, - 0xebb191, - 0xebb192, - 0xebb193, - 0xebb194, - 0xebb195, - 0xebb196, - 0xebb197, - 0xebb198, - 0xebb199, - 0xebb19a, - 0xebb19b, - 0xebb19c, - 0xebb19d, - 0xebb19e, - 0xebb19f, - 0xebb1a0, - 0xebb1a1, - 0xebb1a2, - 0xebb1a3, - 0xebb1a4, - 0xebb1a5, - 0xebb1a6, - 0xebb1a7, - 0xebb1a8, - 0xebb1a9, - 0xebb1aa, - 0xebb1ab, - 0xebb1ac, - 0xebb1ad, - 0xebb1ae, - 0xebb1af, - 0xebb1b0, - 0xebb1b1, - 0xebb1b2, - 0xebb1b3, - 0xebb1b4, - 0xebb1b5, - 0xebb1b6, - 0xebb1b7, - 0xebb1b8, - 0xebb1b9, - 0xebb1ba, - 0xebb1bb, - 0xebb1bc, - 0xebb1bd, - 0xebb1be, - 0xebb1bf, - 0xebb280, - 0xebb281, - 0xebb282, - 0xebb283, - 0xebb284, - 0xebb285, - 0xebb286, - 0xebb287, - 0xebb288, - 0xebb289, - 0xebb28a, - 0xebb28b, - 0xebb28c, - 0xebb28d, - 0xebb28e, - 0xebb28f, - 0xebb290, - 0xebb291, - 0xebb292, - 0xebb293, - 0xebb294, - 0xebb295, - 0xebb296, - 0xebb297, - 0xebb298, - 0xebb299, - 0xebb29a, - 0xebb29b, - 0xebb29c, - 0xebb29d, - 0xebb29e, - 0xebb29f, - 0xebb2a0, - 0xebb2a1, - 0xebb2a2, - 0xebb2a3, - 0xebb2a4, - 0xebb2a5, - 0xebb2a6, - 0xebb2a7, - 0xebb2a8, - 0xebb2a9, - 0xebb2aa, - 0xebb2ab, - 0xebb2ac, - 0xebb2ad, - 0xebb2ae, - 0xebb2af, - 0xebb2b0, - 0xebb2b1, - 0xebb2b2, - 0xebb2b3, - 0xebb2b4, - 0xebb2b5, - 0xebb2b6, - 0xebb2b7, - 0xebb2b8, - 0xebb2b9, - 0xebb2ba, - 0xebb2bb, - 0xebb2bc, - 0xebb2bd, - 0xebb2be, - 0xebb2bf, - 0xebb380, - 0xebb381, - 0xebb382, - 0xebb383, - 0xebb384, - 0xebb385, - 0xebb386, - 0xebb387, - 0xebb388, - 0xebb389, - 0xebb38a, - 0xebb38b, - 0xebb38c, - 0xebb38d, - 0xebb38e, - 0xebb38f, - 0xebb390, - 0xebb391, - 0xebb392, - 0xebb393, - 0xebb394, - 0xebb395, - 0xebb396, - 0xebb397, - 0xebb398, - 0xebb399, - 0xebb39a, - 0xebb39b, - 0xebb39c, - 0xebb39d, - 0xebb39e, - 0xebb39f, - 0xebb3a0, - 0xebb3a1, - 0xebb3a2, - 0xebb3a3, - 0xebb3a4, - 0xebb3a5, - 0xebb3a6, - 0xebb3a7, - 0xebb3a8, - 0xebb3a9, - 0xebb3aa, - 0xebb3ab, - 0xebb3ac, - 0xebb3ad, - 0xebb3ae, - 0xebb3af, - 0xebb3b0, - 0xebb3b1, - 0xebb3b2, - 0xebb3b3, - 0xebb3b4, - 0xebb3b5, - 0xebb3b6, - 0xebb3b7, - 0xebb3b8, - 0xebb3b9, - 0xebb3ba, - 0xebb3bb, - 0xebb3bc, - 0xebb3bd, - 0xebb3be, - 0xebb3bf, - 0xebb480, - 0xebb481, - 0xebb482, - 0xebb483, - 0xebb484, - 0xebb485, - 0xebb486, - 0xebb487, - 0xebb488, - 0xebb489, - 0xebb48a, - 0xebb48b, - 0xebb48c, - 0xebb48d, - 0xebb48e, - 0xebb48f, - 0xebb490, - 0xebb491, - 0xebb492, - 0xebb493, - 0xebb494, - 0xebb495, - 0xebb496, - 0xebb497, - 0xebb498, - 0xebb499, - 0xebb49a, - 0xebb49b, - 0xebb49c, - 0xebb49d, - 0xebb49e, - 0xebb49f, - 0xebb4a0, - 0xebb4a1, - 0xebb4a2, - 0xebb4a3, - 0xebb4a4, - 0xebb4a5, - 0xebb4a6, - 0xebb4a7, - 0xebb4a8, - 0xebb4a9, - 0xebb4aa, - 0xebb4ab, - 0xebb4ac, - 0xebb4ad, - 0xebb4ae, - 0xebb4af, - 0xebb4b0, - 0xebb4b1, - 0xebb4b2, - 0xebb4b3, - 0xebb4b4, - 0xebb4b5, - 0xebb4b6, - 0xebb4b7, - 0xebb4b8, - 0xebb4b9, - 0xebb4ba, - 0xebb4bb, - 0xebb4bc, - 0xebb4bd, - 0xebb4be, - 0xebb4bf, - 0xebb580, - 0xebb581, - 0xebb582, - 0xebb583, - 0xebb584, - 0xebb585, - 0xebb586, - 0xebb587, - 0xebb588, - 0xebb589, - 0xebb58a, - 0xebb58b, - 0xebb58c, - 0xebb58d, - 0xebb58e, - 0xebb58f, - 0xebb590, - 0xebb591, - 0xebb592, - 0xebb593, - 0xebb594, - 0xebb595, - 0xebb596, - 0xebb597, - 0xebb598, - 0xebb599, - 0xebb59a, - 0xebb59b, - 0xebb59c, - 0xebb59d, - 0xebb59e, - 0xebb59f, - 0xebb5a0, - 0xebb5a1, - 0xebb5a2, - 0xebb5a3, - 0xebb5a4, - 0xebb5a5, - 0xebb5a6, - 0xebb5a7, - 0xebb5a8, - 0xebb5a9, - 0xebb5aa, - 0xebb5ab, - 0xebb5ac, - 0xebb5ad, - 0xebb5ae, - 0xebb5af, - 0xebb5b0, - 0xebb5b1, - 0xebb5b2, - 0xebb5b3, - 0xebb5b4, - 0xebb5b5, - 0xebb5b6, - 0xebb5b7, - 0xebb5b8, - 0xebb5b9, - 0xebb5ba, - 0xebb5bb, - 0xebb5bc, - 0xebb5bd, - 0xebb5be, - 0xebb5bf, - 0xebb680, - 0xebb681, - 0xebb682, - 0xebb683, - 0xebb684, - 0xebb685, - 0xebb686, - 0xebb687, - 0xebb688, - 0xebb689, - 0xebb68a, - 0xebb68b, - 0xebb68c, - 0xebb68d, - 0xebb68e, - 0xebb68f, - 0xebb690, - 0xebb691, - 0xebb692, - 0xebb693, - 0xebb694, - 0xebb695, - 0xebb696, - 0xebb697, - 0xebb698, - 0xebb699, - 0xebb69a, - 0xebb69b, - 0xebb69c, - 0xebb69d, - 0xebb69e, - 0xebb69f, - 0xebb6a0, - 0xebb6a1, - 0xebb6a2, - 0xebb6a3, - 0xebb6a4, - 0xebb6a5, - 0xebb6a6, - 0xebb6a7, - 0xebb6a8, - 0xebb6a9, - 0xebb6aa, - 0xebb6ab, - 0xebb6ac, - 0xebb6ad, - 0xebb6ae, - 0xebb6af, - 0xebb6b0, - 0xebb6b1, - 0xebb6b2, - 0xebb6b3, - 0xebb6b4, - 0xebb6b5, - 0xebb6b6, - 0xebb6b7, - 0xebb6b8, - 0xebb6b9, - 0xebb6ba, - 0xebb6bb, - 0xebb6bc, - 0xebb6bd, - 0xebb6be, - 0xebb6bf, - 0xebb780, - 0xebb781, - 0xebb782, - 0xebb783, - 0xebb784, - 0xebb785, - 0xebb786, - 0xebb787, - 0xebb788, - 0xebb789, - 0xebb78a, - 0xebb78b, - 0xebb78c, - 0xebb78d, - 0xebb78e, - 0xebb78f, - 0xebb790, - 0xebb791, - 0xebb792, - 0xebb793, - 0xebb794, - 0xebb795, - 0xebb796, - 0xebb797, - 0xebb798, - 0xebb799, - 0xebb79a, - 0xebb79b, - 0xebb79c, - 0xebb79d, - 0xebb79e, - 0xebb79f, - 0xebb7a0, - 0xebb7a1, - 0xebb7a2, - 0xebb7a3, - 0xebb7a4, - 0xebb7a5, - 0xebb7a6, - 0xebb7a7, - 0xebb7a8, - 0xebb7a9, - 0xebb7aa, - 0xebb7ab, - 0xebb7ac, - 0xebb7ad, - 0xebb7ae, - 0xebb7af, - 0xebb7b0, - 0xebb7b1, - 0xebb7b2, - 0xebb7b3, - 0xebb7b4, - 0xebb7b5, - 0xebb7b6, - 0xebb7b7, - 0xebb7b8, - 0xebb7b9, - 0xebb7ba, - 0xebb7bb, - 0xebb7bc, - 0xebb7bd, - 0xebb7be, - 0xebb7bf, - 0xebb880, - 0xebb881, - 0xebb882, - 0xebb883, - 0xebb884, - 0xebb885, - 0xebb886, - 0xebb887, - 0xebb888, - 0xebb889, - 0xebb88a, - 0xebb88b, - 0xebb88c, - 0xebb88d, - 0xebb88e, - 0xebb88f, - 0xebb890, - 0xebb891, - 0xebb892, - 0xebb893, - 0xebb894, - 0xebb895, - 0xebb896, - 0xebb897, - 0xebb898, - 0xebb899, - 0xebb89a, - 0xebb89b, - 0xebb89c, - 0xebb89d, - 0xebb89e, - 0xebb89f, - 0xebb8a0, - 0xebb8a1, - 0xebb8a2, - 0xebb8a3, - 0xebb8a4, - 0xebb8a5, - 0xebb8a6, - 0xebb8a7, - 0xebb8a8, - 0xebb8a9, - 0xebb8aa, - 0xebb8ab, - 0xebb8ac, - 0xebb8ad, - 0xebb8ae, - 0xebb8af, - 0xebb8b0, - 0xebb8b1, - 0xebb8b2, - 0xebb8b3, - 0xebb8b4, - 0xebb8b5, - 0xebb8b6, - 0xebb8b7, - 0xebb8b8, - 0xebb8b9, - 0xebb8ba, - 0xebb8bb, - 0xebb8bc, - 0xebb8bd, - 0xebb8be, - 0xebb8bf, - 0xebb980, - 0xebb981, - 0xebb982, - 0xebb983, - 0xebb984, - 0xebb985, - 0xebb986, - 0xebb987, - 0xebb988, - 0xebb989, - 0xebb98a, - 0xebb98b, - 0xebb98c, - 0xebb98d, - 0xebb98e, - 0xebb98f, - 0xebb990, - 0xebb991, - 0xebb992, - 0xebb993, - 0xebb994, - 0xebb995, - 0xebb996, - 0xebb997, - 0xebb998, - 0xebb999, - 0xebb99a, - 0xebb99b, - 0xebb99c, - 0xebb99d, - 0xebb99e, - 0xebb99f, - 0xebb9a0, - 0xebb9a1, - 0xebb9a2, - 0xebb9a3, - 0xebb9a4, - 0xebb9a5, - 0xebb9a6, - 0xebb9a7, - 0xebb9a8, - 0xebb9a9, - 0xebb9aa, - 0xebb9ab, - 0xebb9ac, - 0xebb9ad, - 0xebb9ae, - 0xebb9af, - 0xebb9b0, - 0xebb9b1, - 0xebb9b2, - 0xebb9b3, - 0xebb9b4, - 0xebb9b5, - 0xebb9b6, - 0xebb9b7, - 0xebb9b8, - 0xebb9b9, - 0xebb9ba, - 0xebb9bb, - 0xebb9bc, - 0xebb9bd, - 0xebb9be, - 0xebb9bf, - 0xebba80, - 0xebba81, - 0xebba82, - 0xebba83, - 0xebba84, - 0xebba85, - 0xebba86, - 0xebba87, - 0xebba88, - 0xebba89, - 0xebba8a, - 0xebba8b, - 0xebba8c, - 0xebba8d, - 0xebba8e, - 0xebba8f, - 0xebba90, - 0xebba91, - 0xebba92, - 0xebba93, - 0xebba94, - 0xebba95, - 0xebba96, - 0xebba97, - 0xebba98, - 0xebba99, - 0xebba9a, - 0xebba9b, - 0xebba9c, - 0xebba9d, - 0xebba9e, - 0xebba9f, - 0xebbaa0, - 0xebbaa1, - 0xebbaa2, - 0xebbaa3, - 0xebbaa4, - 0xebbaa5, - 0xebbaa6, - 0xebbaa7, - 0xebbaa8, - 0xebbaa9, - 0xebbaaa, - 0xebbaab, - 0xebbaac, - 0xebbaad, - 0xebbaae, - 0xebbaaf, - 0xebbab0, - 0xebbab1, - 0xebbab2, - 0xebbab3, - 0xebbab4, - 0xebbab5, - 0xebbab6, - 0xebbab7, - 0xebbab8, - 0xebbab9, - 0xebbaba, - 0xebbabb, - 0xebbabc, - 0xebbabd, - 0xebbabe, - 0xebbabf, - 0xebbb80, - 0xebbb81, - 0xebbb82, - 0xebbb83, - 0xebbb84, - 0xebbb85, - 0xebbb86, - 0xebbb87, - 0xebbb88, - 0xebbb89, - 0xebbb8a, - 0xebbb8b, - 0xebbb8c, - 0xebbb8d, - 0xebbb8e, - 0xebbb8f, - 0xebbb90, - 0xebbb91, - 0xebbb92, - 0xebbb93, - 0xebbb94, - 0xebbb95, - 0xebbb96, - 0xebbb97, - 0xebbb98, - 0xebbb99, - 0xebbb9a, - 0xebbb9b, - 0xebbb9c, - 0xebbb9d, - 0xebbb9e, - 0xebbb9f, - 0xebbba0, - 0xebbba1, - 0xebbba2, - 0xebbba3, - 0xebbba4, - 0xebbba5, - 0xebbba6, - 0xebbba7, - 0xebbba8, - 0xebbba9, - 0xebbbaa, - 0xebbbab, - 0xebbbac, - 0xebbbad, - 0xebbbae, - 0xebbbaf, - 0xebbbb0, - 0xebbbb1, - 0xebbbb2, - 0xebbbb3, - 0xebbbb4, - 0xebbbb5, - 0xebbbb6, - 0xebbbb7, - 0xebbbb8, - 0xebbbb9, - 0xebbbba, - 0xebbbbb, - 0xebbbbc, - 0xebbbbd, - 0xebbbbe, - 0xebbbbf, - 0xebbc80, - 0xebbc81, - 0xebbc82, - 0xebbc83, - 0xebbc84, - 0xebbc85, - 0xebbc86, - 0xebbc87, - 0xebbc88, - 0xebbc89, - 0xebbc8a, - 0xebbc8b, - 0xebbc8c, - 0xebbc8d, - 0xebbc8e, - 0xebbc8f, - 0xebbc90, - 0xebbc91, - 0xebbc92, - 0xebbc93, - 0xebbc94, - 0xebbc95, - 0xebbc96, - 0xebbc97, - 0xebbc98, - 0xebbc99, - 0xebbc9a, - 0xebbc9b, - 0xebbc9c, - 0xebbc9d, - 0xebbc9e, - 0xebbc9f, - 0xebbca0, - 0xebbca1, - 0xebbca2, - 0xebbca3, - 0xebbca4, - 0xebbca5, - 0xebbca6, - 0xebbca7, - 0xebbca8, - 0xebbca9, - 0xebbcaa, - 0xebbcab, - 0xebbcac, - 0xebbcad, - 0xebbcae, - 0xebbcaf, - 0xebbcb0, - 0xebbcb1, - 0xebbcb2, - 0xebbcb3, - 0xebbcb4, - 0xebbcb5, - 0xebbcb6, - 0xebbcb7, - 0xebbcb8, - 0xebbcb9, - 0xebbcba, - 0xebbcbb, - 0xebbcbc, - 0xebbcbd, - 0xebbcbe, - 0xebbcbf, - 0xebbd80, - 0xebbd81, - 0xebbd82, - 0xebbd83, - 0xebbd84, - 0xebbd85, - 0xebbd86, - 0xebbd87, - 0xebbd88, - 0xebbd89, - 0xebbd8a, - 0xebbd8b, - 0xebbd8c, - 0xebbd8d, - 0xebbd8e, - 0xebbd8f, - 0xebbd90, - 0xebbd91, - 0xebbd92, - 0xebbd93, - 0xebbd94, - 0xebbd95, - 0xebbd96, - 0xebbd97, - 0xebbd98, - 0xebbd99, - 0xebbd9a, - 0xebbd9b, - 0xebbd9c, - 0xebbd9d, - 0xebbd9e, - 0xebbd9f, - 0xebbda0, - 0xebbda1, - 0xebbda2, - 0xebbda3, - 0xebbda4, - 0xebbda5, - 0xebbda6, - 0xebbda7, - 0xebbda8, - 0xebbda9, - 0xebbdaa, - 0xebbdab, - 0xebbdac, - 0xebbdad, - 0xebbdae, - 0xebbdaf, - 0xebbdb0, - 0xebbdb1, - 0xebbdb2, - 0xebbdb3, - 0xebbdb4, - 0xebbdb5, - 0xebbdb6, - 0xebbdb7, - 0xebbdb8, - 0xebbdb9, - 0xebbdba, - 0xebbdbb, - 0xebbdbc, - 0xebbdbd, - 0xebbdbe, - 0xebbdbf, - 0xebbe80, - 0xebbe81, - 0xebbe82, - 0xebbe83, - 0xebbe84, - 0xebbe85, - 0xebbe86, - 0xebbe87, - 0xebbe88, - 0xebbe89, - 0xebbe8a, - 0xebbe8b, - 0xebbe8c, - 0xebbe8d, - 0xebbe8e, - 0xebbe8f, - 0xebbe90, - 0xebbe91, - 0xebbe92, - 0xebbe93, - 0xebbe94, - 0xebbe95, - 0xebbe96, - 0xebbe97, - 0xebbe98, - 0xebbe99, - 0xebbe9a, - 0xebbe9b, - 0xebbe9c, - 0xebbe9d, - 0xebbe9e, - 0xebbe9f, - 0xebbea0, - 0xebbea1, - 0xebbea2, - 0xebbea3, - 0xebbea4, - 0xebbea5, - 0xebbea6, - 0xebbea7, - 0xebbea8, - 0xebbea9, - 0xebbeaa, - 0xebbeab, - 0xebbeac, - 0xebbead, - 0xebbeae, - 0xebbeaf, - 0xebbeb0, - 0xebbeb1, - 0xebbeb2, - 0xebbeb3, - 0xebbeb4, - 0xebbeb5, - 0xebbeb6, - 0xebbeb7, - 0xebbeb8, - 0xebbeb9, - 0xebbeba, - 0xebbebb, - 0xebbebc, - 0xebbebd, - 0xebbebe, - 0xebbebf, - 0xebbf80, - 0xebbf81, - 0xebbf82, - 0xebbf83, - 0xebbf84, - 0xebbf85, - 0xebbf86, - 0xebbf87, - 0xebbf88, - 0xebbf89, - 0xebbf8a, - 0xebbf8b, - 0xebbf8c, - 0xebbf8d, - 0xebbf8e, - 0xebbf8f, - 0xebbf90, - 0xebbf91, - 0xebbf92, - 0xebbf93, - 0xebbf94, - 0xebbf95, - 0xebbf96, - 0xebbf97, - 0xebbf98, - 0xebbf99, - 0xebbf9a, - 0xebbf9b, - 0xebbf9c, - 0xebbf9d, - 0xebbf9e, - 0xebbf9f, - 0xebbfa0, - 0xebbfa1, - 0xebbfa2, - 0xebbfa3, - 0xebbfa4, - 0xebbfa5, - 0xebbfa6, - 0xebbfa7, - 0xebbfa8, - 0xebbfa9, - 0xebbfaa, - 0xebbfab, - 0xebbfac, - 0xebbfad, - 0xebbfae, - 0xebbfaf, - 0xebbfb0, - 0xebbfb1, - 0xebbfb2, - 0xebbfb3, - 0xebbfb4, - 0xebbfb5, - 0xebbfb6, - 0xebbfb7, - 0xebbfb8, - 0xebbfb9, - 0xebbfba, - 0xebbfbb, - 0xebbfbc, - 0xebbfbd, - 0xebbfbe, - 0xebbfbf, - 0xec8080, - 0xec8081, - 0xec8082, - 0xec8083, - 0xec8084, - 0xec8085, - 0xec8086, - 0xec8087, - 0xec8088, - 0xec8089, - 0xec808a, - 0xec808b, - 0xec808c, - 0xec808d, - 0xec808e, - 0xec808f, - 0xec8090, - 0xec8091, - 0xec8092, - 0xec8093, - 0xec8094, - 0xec8095, - 0xec8096, - 0xec8097, - 0xec8098, - 0xec8099, - 0xec809a, - 0xec809b, - 0xec809c, - 0xec809d, - 0xec809e, - 0xec809f, - 0xec80a0, - 0xec80a1, - 0xec80a2, - 0xec80a3, - 0xec80a4, - 0xec80a5, - 0xec80a6, - 0xec80a7, - 0xec80a8, - 0xec80a9, - 0xec80aa, - 0xec80ab, - 0xec80ac, - 0xec80ad, - 0xec80ae, - 0xec80af, - 0xec80b0, - 0xec80b1, - 0xec80b2, - 0xec80b3, - 0xec80b4, - 0xec80b5, - 0xec80b6, - 0xec80b7, - 0xec80b8, - 0xec80b9, - 0xec80ba, - 0xec80bb, - 0xec80bc, - 0xec80bd, - 0xec80be, - 0xec80bf, - 0xec8180, - 0xec8181, - 0xec8182, - 0xec8183, - 0xec8184, - 0xec8185, - 0xec8186, - 0xec8187, - 0xec8188, - 0xec8189, - 0xec818a, - 0xec818b, - 0xec818c, - 0xec818d, - 0xec818e, - 0xec818f, - 0xec8190, - 0xec8191, - 0xec8192, - 0xec8193, - 0xec8194, - 0xec8195, - 0xec8196, - 0xec8197, - 0xec8198, - 0xec8199, - 0xec819a, - 0xec819b, - 0xec819c, - 0xec819d, - 0xec819e, - 0xec819f, - 0xec81a0, - 0xec81a1, - 0xec81a2, - 0xec81a3, - 0xec81a4, - 0xec81a5, - 0xec81a6, - 0xec81a7, - 0xec81a8, - 0xec81a9, - 0xec81aa, - 0xec81ab, - 0xec81ac, - 0xec81ad, - 0xec81ae, - 0xec81af, - 0xec81b0, - 0xec81b1, - 0xec81b2, - 0xec81b3, - 0xec81b4, - 0xec81b5, - 0xec81b6, - 0xec81b7, - 0xec81b8, - 0xec81b9, - 0xec81ba, - 0xec81bb, - 0xec81bc, - 0xec81bd, - 0xec81be, - 0xec81bf, - 0xec8280, - 0xec8281, - 0xec8282, - 0xec8283, - 0xec8284, - 0xec8285, - 0xec8286, - 0xec8287, - 0xec8288, - 0xec8289, - 0xec828a, - 0xec828b, - 0xec828c, - 0xec828d, - 0xec828e, - 0xec828f, - 0xec8290, - 0xec8291, - 0xec8292, - 0xec8293, - 0xec8294, - 0xec8295, - 0xec8296, - 0xec8297, - 0xec8298, - 0xec8299, - 0xec829a, - 0xec829b, - 0xec829c, - 0xec829d, - 0xec829e, - 0xec829f, - 0xec82a0, - 0xec82a1, - 0xec82a2, - 0xec82a3, - 0xec82a4, - 0xec82a5, - 0xec82a6, - 0xec82a7, - 0xec82a8, - 0xec82a9, - 0xec82aa, - 0xec82ab, - 0xec82ac, - 0xec82ad, - 0xec82ae, - 0xec82af, - 0xec82b0, - 0xec82b1, - 0xec82b2, - 0xec82b3, - 0xec82b4, - 0xec82b5, - 0xec82b6, - 0xec82b7, - 0xec82b8, - 0xec82b9, - 0xec82ba, - 0xec82bb, - 0xec82bc, - 0xec82bd, - 0xec82be, - 0xec82bf, - 0xec8380, - 0xec8381, - 0xec8382, - 0xec8383, - 0xec8384, - 0xec8385, - 0xec8386, - 0xec8387, - 0xec8388, - 0xec8389, - 0xec838a, - 0xec838b, - 0xec838c, - 0xec838d, - 0xec838e, - 0xec838f, - 0xec8390, - 0xec8391, - 0xec8392, - 0xec8393, - 0xec8394, - 0xec8395, - 0xec8396, - 0xec8397, - 0xec8398, - 0xec8399, - 0xec839a, - 0xec839b, - 0xec839c, - 0xec839d, - 0xec839e, - 0xec839f, - 0xec83a0, - 0xec83a1, - 0xec83a2, - 0xec83a3, - 0xec83a4, - 0xec83a5, - 0xec83a6, - 0xec83a7, - 0xec83a8, - 0xec83a9, - 0xec83aa, - 0xec83ab, - 0xec83ac, - 0xec83ad, - 0xec83ae, - 0xec83af, - 0xec83b0, - 0xec83b1, - 0xec83b2, - 0xec83b3, - 0xec83b4, - 0xec83b5, - 0xec83b6, - 0xec83b7, - 0xec83b8, - 0xec83b9, - 0xec83ba, - 0xec83bb, - 0xec83bc, - 0xec83bd, - 0xec83be, - 0xec83bf, - 0xec8480, - 0xec8481, - 0xec8482, - 0xec8483, - 0xec8484, - 0xec8485, - 0xec8486, - 0xec8487, - 0xec8488, - 0xec8489, - 0xec848a, - 0xec848b, - 0xec848c, - 0xec848d, - 0xec848e, - 0xec848f, - 0xec8490, - 0xec8491, - 0xec8492, - 0xec8493, - 0xec8494, - 0xec8495, - 0xec8496, - 0xec8497, - 0xec8498, - 0xec8499, - 0xec849a, - 0xec849b, - 0xec849c, - 0xec849d, - 0xec849e, - 0xec849f, - 0xec84a0, - 0xec84a1, - 0xec84a2, - 0xec84a3, - 0xec84a4, - 0xec84a5, - 0xec84a6, - 0xec84a7, - 0xec84a8, - 0xec84a9, - 0xec84aa, - 0xec84ab, - 0xec84ac, - 0xec84ad, - 0xec84ae, - 0xec84af, - 0xec84b0, - 0xec84b1, - 0xec84b2, - 0xec84b3, - 0xec84b4, - 0xec84b5, - 0xec84b6, - 0xec84b7, - 0xec84b8, - 0xec84b9, - 0xec84ba, - 0xec84bb, - 0xec84bc, - 0xec84bd, - 0xec84be, - 0xec84bf, - 0xec8580, - 0xec8581, - 0xec8582, - 0xec8583, - 0xec8584, - 0xec8585, - 0xec8586, - 0xec8587, - 0xec8588, - 0xec8589, - 0xec858a, - 0xec858b, - 0xec858c, - 0xec858d, - 0xec858e, - 0xec858f, - 0xec8590, - 0xec8591, - 0xec8592, - 0xec8593, - 0xec8594, - 0xec8595, - 0xec8596, - 0xec8597, - 0xec8598, - 0xec8599, - 0xec859a, - 0xec859b, - 0xec859c, - 0xec859d, - 0xec859e, - 0xec859f, - 0xec85a0, - 0xec85a1, - 0xec85a2, - 0xec85a3, - 0xec85a4, - 0xec85a5, - 0xec85a6, - 0xec85a7, - 0xec85a8, - 0xec85a9, - 0xec85aa, - 0xec85ab, - 0xec85ac, - 0xec85ad, - 0xec85ae, - 0xec85af, - 0xec85b0, - 0xec85b1, - 0xec85b2, - 0xec85b3, - 0xec85b4, - 0xec85b5, - 0xec85b6, - 0xec85b7, - 0xec85b8, - 0xec85b9, - 0xec85ba, - 0xec85bb, - 0xec85bc, - 0xec85bd, - 0xec85be, - 0xec85bf, - 0xec8680, - 0xec8681, - 0xec8682, - 0xec8683, - 0xec8684, - 0xec8685, - 0xec8686, - 0xec8687, - 0xec8688, - 0xec8689, - 0xec868a, - 0xec868b, - 0xec868c, - 0xec868d, - 0xec868e, - 0xec868f, - 0xec8690, - 0xec8691, - 0xec8692, - 0xec8693, - 0xec8694, - 0xec8695, - 0xec8696, - 0xec8697, - 0xec8698, - 0xec8699, - 0xec869a, - 0xec869b, - 0xec869c, - 0xec869d, - 0xec869e, - 0xec869f, - 0xec86a0, - 0xec86a1, - 0xec86a2, - 0xec86a3, - 0xec86a4, - 0xec86a5, - 0xec86a6, - 0xec86a7, - 0xec86a8, - 0xec86a9, - 0xec86aa, - 0xec86ab, - 0xec86ac, - 0xec86ad, - 0xec86ae, - 0xec86af, - 0xec86b0, - 0xec86b1, - 0xec86b2, - 0xec86b3, - 0xec86b4, - 0xec86b5, - 0xec86b6, - 0xec86b7, - 0xec86b8, - 0xec86b9, - 0xec86ba, - 0xec86bb, - 0xec86bc, - 0xec86bd, - 0xec86be, - 0xec86bf, - 0xec8780, - 0xec8781, - 0xec8782, - 0xec8783, - 0xec8784, - 0xec8785, - 0xec8786, - 0xec8787, - 0xec8788, - 0xec8789, - 0xec878a, - 0xec878b, - 0xec878c, - 0xec878d, - 0xec878e, - 0xec878f, - 0xec8790, - 0xec8791, - 0xec8792, - 0xec8793, - 0xec8794, - 0xec8795, - 0xec8796, - 0xec8797, - 0xec8798, - 0xec8799, - 0xec879a, - 0xec879b, - 0xec879c, - 0xec879d, - 0xec879e, - 0xec879f, - 0xec87a0, - 0xec87a1, - 0xec87a2, - 0xec87a3, - 0xec87a4, - 0xec87a5, - 0xec87a6, - 0xec87a7, - 0xec87a8, - 0xec87a9, - 0xec87aa, - 0xec87ab, - 0xec87ac, - 0xec87ad, - 0xec87ae, - 0xec87af, - 0xec87b0, - 0xec87b1, - 0xec87b2, - 0xec87b3, - 0xec87b4, - 0xec87b5, - 0xec87b6, - 0xec87b7, - 0xec87b8, - 0xec87b9, - 0xec87ba, - 0xec87bb, - 0xec87bc, - 0xec87bd, - 0xec87be, - 0xec87bf, - 0xec8880, - 0xec8881, - 0xec8882, - 0xec8883, - 0xec8884, - 0xec8885, - 0xec8886, - 0xec8887, - 0xec8888, - 0xec8889, - 0xec888a, - 0xec888b, - 0xec888c, - 0xec888d, - 0xec888e, - 0xec888f, - 0xec8890, - 0xec8891, - 0xec8892, - 0xec8893, - 0xec8894, - 0xec8895, - 0xec8896, - 0xec8897, - 0xec8898, - 0xec8899, - 0xec889a, - 0xec889b, - 0xec889c, - 0xec889d, - 0xec889e, - 0xec889f, - 0xec88a0, - 0xec88a1, - 0xec88a2, - 0xec88a3, - 0xec88a4, - 0xec88a5, - 0xec88a6, - 0xec88a7, - 0xec88a8, - 0xec88a9, - 0xec88aa, - 0xec88ab, - 0xec88ac, - 0xec88ad, - 0xec88ae, - 0xec88af, - 0xec88b0, - 0xec88b1, - 0xec88b2, - 0xec88b3, - 0xec88b4, - 0xec88b5, - 0xec88b6, - 0xec88b7, - 0xec88b8, - 0xec88b9, - 0xec88ba, - 0xec88bb, - 0xec88bc, - 0xec88bd, - 0xec88be, - 0xec88bf, - 0xec8980, - 0xec8981, - 0xec8982, - 0xec8983, - 0xec8984, - 0xec8985, - 0xec8986, - 0xec8987, - 0xec8988, - 0xec8989, - 0xec898a, - 0xec898b, - 0xec898c, - 0xec898d, - 0xec898e, - 0xec898f, - 0xec8990, - 0xec8991, - 0xec8992, - 0xec8993, - 0xec8994, - 0xec8995, - 0xec8996, - 0xec8997, - 0xec8998, - 0xec8999, - 0xec899a, - 0xec899b, - 0xec899c, - 0xec899d, - 0xec899e, - 0xec899f, - 0xec89a0, - 0xec89a1, - 0xec89a2, - 0xec89a3, - 0xec89a4, - 0xec89a5, - 0xec89a6, - 0xec89a7, - 0xec89a8, - 0xec89a9, - 0xec89aa, - 0xec89ab, - 0xec89ac, - 0xec89ad, - 0xec89ae, - 0xec89af, - 0xec89b0, - 0xec89b1, - 0xec89b2, - 0xec89b3, - 0xec89b4, - 0xec89b5, - 0xec89b6, - 0xec89b7, - 0xec89b8, - 0xec89b9, - 0xec89ba, - 0xec89bb, - 0xec89bc, - 0xec89bd, - 0xec89be, - 0xec89bf, - 0xec8a80, - 0xec8a81, - 0xec8a82, - 0xec8a83, - 0xec8a84, - 0xec8a85, - 0xec8a86, - 0xec8a87, - 0xec8a88, - 0xec8a89, - 0xec8a8a, - 0xec8a8b, - 0xec8a8c, - 0xec8a8d, - 0xec8a8e, - 0xec8a8f, - 0xec8a90, - 0xec8a91, - 0xec8a92, - 0xec8a93, - 0xec8a94, - 0xec8a95, - 0xec8a96, - 0xec8a97, - 0xec8a98, - 0xec8a99, - 0xec8a9a, - 0xec8a9b, - 0xec8a9c, - 0xec8a9d, - 0xec8a9e, - 0xec8a9f, - 0xec8aa0, - 0xec8aa1, - 0xec8aa2, - 0xec8aa3, - 0xec8aa4, - 0xec8aa5, - 0xec8aa6, - 0xec8aa7, - 0xec8aa8, - 0xec8aa9, - 0xec8aaa, - 0xec8aab, - 0xec8aac, - 0xec8aad, - 0xec8aae, - 0xec8aaf, - 0xec8ab0, - 0xec8ab1, - 0xec8ab2, - 0xec8ab3, - 0xec8ab4, - 0xec8ab5, - 0xec8ab6, - 0xec8ab7, - 0xec8ab8, - 0xec8ab9, - 0xec8aba, - 0xec8abb, - 0xec8abc, - 0xec8abd, - 0xec8abe, - 0xec8abf, - 0xec8b80, - 0xec8b81, - 0xec8b82, - 0xec8b83, - 0xec8b84, - 0xec8b85, - 0xec8b86, - 0xec8b87, - 0xec8b88, - 0xec8b89, - 0xec8b8a, - 0xec8b8b, - 0xec8b8c, - 0xec8b8d, - 0xec8b8e, - 0xec8b8f, - 0xec8b90, - 0xec8b91, - 0xec8b92, - 0xec8b93, - 0xec8b94, - 0xec8b95, - 0xec8b96, - 0xec8b97, - 0xec8b98, - 0xec8b99, - 0xec8b9a, - 0xec8b9b, - 0xec8b9c, - 0xec8b9d, - 0xec8b9e, - 0xec8b9f, - 0xec8ba0, - 0xec8ba1, - 0xec8ba2, - 0xec8ba3, - 0xec8ba4, - 0xec8ba5, - 0xec8ba6, - 0xec8ba7, - 0xec8ba8, - 0xec8ba9, - 0xec8baa, - 0xec8bab, - 0xec8bac, - 0xec8bad, - 0xec8bae, - 0xec8baf, - 0xec8bb0, - 0xec8bb1, - 0xec8bb2, - 0xec8bb3, - 0xec8bb4, - 0xec8bb5, - 0xec8bb6, - 0xec8bb7, - 0xec8bb8, - 0xec8bb9, - 0xec8bba, - 0xec8bbb, - 0xec8bbc, - 0xec8bbd, - 0xec8bbe, - 0xec8bbf, - 0xec8c80, - 0xec8c81, - 0xec8c82, - 0xec8c83, - 0xec8c84, - 0xec8c85, - 0xec8c86, - 0xec8c87, - 0xec8c88, - 0xec8c89, - 0xec8c8a, - 0xec8c8b, - 0xec8c8c, - 0xec8c8d, - 0xec8c8e, - 0xec8c8f, - 0xec8c90, - 0xec8c91, - 0xec8c92, - 0xec8c93, - 0xec8c94, - 0xec8c95, - 0xec8c96, - 0xec8c97, - 0xec8c98, - 0xec8c99, - 0xec8c9a, - 0xec8c9b, - 0xec8c9c, - 0xec8c9d, - 0xec8c9e, - 0xec8c9f, - 0xec8ca0, - 0xec8ca1, - 0xec8ca2, - 0xec8ca3, - 0xec8ca4, - 0xec8ca5, - 0xec8ca6, - 0xec8ca7, - 0xec8ca8, - 0xec8ca9, - 0xec8caa, - 0xec8cab, - 0xec8cac, - 0xec8cad, - 0xec8cae, - 0xec8caf, - 0xec8cb0, - 0xec8cb1, - 0xec8cb2, - 0xec8cb3, - 0xec8cb4, - 0xec8cb5, - 0xec8cb6, - 0xec8cb7, - 0xec8cb8, - 0xec8cb9, - 0xec8cba, - 0xec8cbb, - 0xec8cbc, - 0xec8cbd, - 0xec8cbe, - 0xec8cbf, - 0xec8d80, - 0xec8d81, - 0xec8d82, - 0xec8d83, - 0xec8d84, - 0xec8d85, - 0xec8d86, - 0xec8d87, - 0xec8d88, - 0xec8d89, - 0xec8d8a, - 0xec8d8b, - 0xec8d8c, - 0xec8d8d, - 0xec8d8e, - 0xec8d8f, - 0xec8d90, - 0xec8d91, - 0xec8d92, - 0xec8d93, - 0xec8d94, - 0xec8d95, - 0xec8d96, - 0xec8d97, - 0xec8d98, - 0xec8d99, - 0xec8d9a, - 0xec8d9b, - 0xec8d9c, - 0xec8d9d, - 0xec8d9e, - 0xec8d9f, - 0xec8da0, - 0xec8da1, - 0xec8da2, - 0xec8da3, - 0xec8da4, - 0xec8da5, - 0xec8da6, - 0xec8da7, - 0xec8da8, - 0xec8da9, - 0xec8daa, - 0xec8dab, - 0xec8dac, - 0xec8dad, - 0xec8dae, - 0xec8daf, - 0xec8db0, - 0xec8db1, - 0xec8db2, - 0xec8db3, - 0xec8db4, - 0xec8db5, - 0xec8db6, - 0xec8db7, - 0xec8db8, - 0xec8db9, - 0xec8dba, - 0xec8dbb, - 0xec8dbc, - 0xec8dbd, - 0xec8dbe, - 0xec8dbf, - 0xec8e80, - 0xec8e81, - 0xec8e82, - 0xec8e83, - 0xec8e84, - 0xec8e85, - 0xec8e86, - 0xec8e87, - 0xec8e88, - 0xec8e89, - 0xec8e8a, - 0xec8e8b, - 0xec8e8c, - 0xec8e8d, - 0xec8e8e, - 0xec8e8f, - 0xec8e90, - 0xec8e91, - 0xec8e92, - 0xec8e93, - 0xec8e94, - 0xec8e95, - 0xec8e96, - 0xec8e97, - 0xec8e98, - 0xec8e99, - 0xec8e9a, - 0xec8e9b, - 0xec8e9c, - 0xec8e9d, - 0xec8e9e, - 0xec8e9f, - 0xec8ea0, - 0xec8ea1, - 0xec8ea2, - 0xec8ea3, - 0xec8ea4, - 0xec8ea5, - 0xec8ea6, - 0xec8ea7, - 0xec8ea8, - 0xec8ea9, - 0xec8eaa, - 0xec8eab, - 0xec8eac, - 0xec8ead, - 0xec8eae, - 0xec8eaf, - 0xec8eb0, - 0xec8eb1, - 0xec8eb2, - 0xec8eb3, - 0xec8eb4, - 0xec8eb5, - 0xec8eb6, - 0xec8eb7, - 0xec8eb8, - 0xec8eb9, - 0xec8eba, - 0xec8ebb, - 0xec8ebc, - 0xec8ebd, - 0xec8ebe, - 0xec8ebf, - 0xec8f80, - 0xec8f81, - 0xec8f82, - 0xec8f83, - 0xec8f84, - 0xec8f85, - 0xec8f86, - 0xec8f87, - 0xec8f88, - 0xec8f89, - 0xec8f8a, - 0xec8f8b, - 0xec8f8c, - 0xec8f8d, - 0xec8f8e, - 0xec8f8f, - 0xec8f90, - 0xec8f91, - 0xec8f92, - 0xec8f93, - 0xec8f94, - 0xec8f95, - 0xec8f96, - 0xec8f97, - 0xec8f98, - 0xec8f99, - 0xec8f9a, - 0xec8f9b, - 0xec8f9c, - 0xec8f9d, - 0xec8f9e, - 0xec8f9f, - 0xec8fa0, - 0xec8fa1, - 0xec8fa2, - 0xec8fa3, - 0xec8fa4, - 0xec8fa5, - 0xec8fa6, - 0xec8fa7, - 0xec8fa8, - 0xec8fa9, - 0xec8faa, - 0xec8fab, - 0xec8fac, - 0xec8fad, - 0xec8fae, - 0xec8faf, - 0xec8fb0, - 0xec8fb1, - 0xec8fb2, - 0xec8fb3, - 0xec8fb4, - 0xec8fb5, - 0xec8fb6, - 0xec8fb7, - 0xec8fb8, - 0xec8fb9, - 0xec8fba, - 0xec8fbb, - 0xec8fbc, - 0xec8fbd, - 0xec8fbe, - 0xec8fbf, - 0xec9080, - 0xec9081, - 0xec9082, - 0xec9083, - 0xec9084, - 0xec9085, - 0xec9086, - 0xec9087, - 0xec9088, - 0xec9089, - 0xec908a, - 0xec908b, - 0xec908c, - 0xec908d, - 0xec908e, - 0xec908f, - 0xec9090, - 0xec9091, - 0xec9092, - 0xec9093, - 0xec9094, - 0xec9095, - 0xec9096, - 0xec9097, - 0xec9098, - 0xec9099, - 0xec909a, - 0xec909b, - 0xec909c, - 0xec909d, - 0xec909e, - 0xec909f, - 0xec90a0, - 0xec90a1, - 0xec90a2, - 0xec90a3, - 0xec90a4, - 0xec90a5, - 0xec90a6, - 0xec90a7, - 0xec90a8, - 0xec90a9, - 0xec90aa, - 0xec90ab, - 0xec90ac, - 0xec90ad, - 0xec90ae, - 0xec90af, - 0xec90b0, - 0xec90b1, - 0xec90b2, - 0xec90b3, - 0xec90b4, - 0xec90b5, - 0xec90b6, - 0xec90b7, - 0xec90b8, - 0xec90b9, - 0xec90ba, - 0xec90bb, - 0xec90bc, - 0xec90bd, - 0xec90be, - 0xec90bf, - 0xec9180, - 0xec9181, - 0xec9182, - 0xec9183, - 0xec9184, - 0xec9185, - 0xec9186, - 0xec9187, - 0xec9188, - 0xec9189, - 0xec918a, - 0xec918b, - 0xec918c, - 0xec918d, - 0xec918e, - 0xec918f, - 0xec9190, - 0xec9191, - 0xec9192, - 0xec9193, - 0xec9194, - 0xec9195, - 0xec9196, - 0xec9197, - 0xec9198, - 0xec9199, - 0xec919a, - 0xec919b, - 0xec919c, - 0xec919d, - 0xec919e, - 0xec919f, - 0xec91a0, - 0xec91a1, - 0xec91a2, - 0xec91a3, - 0xec91a4, - 0xec91a5, - 0xec91a6, - 0xec91a7, - 0xec91a8, - 0xec91a9, - 0xec91aa, - 0xec91ab, - 0xec91ac, - 0xec91ad, - 0xec91ae, - 0xec91af, - 0xec91b0, - 0xec91b1, - 0xec91b2, - 0xec91b3, - 0xec91b4, - 0xec91b5, - 0xec91b6, - 0xec91b7, - 0xec91b8, - 0xec91b9, - 0xec91ba, - 0xec91bb, - 0xec91bc, - 0xec91bd, - 0xec91be, - 0xec91bf, - 0xec9280, - 0xec9281, - 0xec9282, - 0xec9283, - 0xec9284, - 0xec9285, - 0xec9286, - 0xec9287, - 0xec9288, - 0xec9289, - 0xec928a, - 0xec928b, - 0xec928c, - 0xec928d, - 0xec928e, - 0xec928f, - 0xec9290, - 0xec9291, - 0xec9292, - 0xec9293, - 0xec9294, - 0xec9295, - 0xec9296, - 0xec9297, - 0xec9298, - 0xec9299, - 0xec929a, - 0xec929b, - 0xec929c, - 0xec929d, - 0xec929e, - 0xec929f, - 0xec92a0, - 0xec92a1, - 0xec92a2, - 0xec92a3, - 0xec92a4, - 0xec92a5, - 0xec92a6, - 0xec92a7, - 0xec92a8, - 0xec92a9, - 0xec92aa, - 0xec92ab, - 0xec92ac, - 0xec92ad, - 0xec92ae, - 0xec92af, - 0xec92b0, - 0xec92b1, - 0xec92b2, - 0xec92b3, - 0xec92b4, - 0xec92b5, - 0xec92b6, - 0xec92b7, - 0xec92b8, - 0xec92b9, - 0xec92ba, - 0xec92bb, - 0xec92bc, - 0xec92bd, - 0xec92be, - 0xec92bf, - 0xec9380, - 0xec9381, - 0xec9382, - 0xec9383, - 0xec9384, - 0xec9385, - 0xec9386, - 0xec9387, - 0xec9388, - 0xec9389, - 0xec938a, - 0xec938b, - 0xec938c, - 0xec938d, - 0xec938e, - 0xec938f, - 0xec9390, - 0xec9391, - 0xec9392, - 0xec9393, - 0xec9394, - 0xec9395, - 0xec9396, - 0xec9397, - 0xec9398, - 0xec9399, - 0xec939a, - 0xec939b, - 0xec939c, - 0xec939d, - 0xec939e, - 0xec939f, - 0xec93a0, - 0xec93a1, - 0xec93a2, - 0xec93a3, - 0xec93a4, - 0xec93a5, - 0xec93a6, - 0xec93a7, - 0xec93a8, - 0xec93a9, - 0xec93aa, - 0xec93ab, - 0xec93ac, - 0xec93ad, - 0xec93ae, - 0xec93af, - 0xec93b0, - 0xec93b1, - 0xec93b2, - 0xec93b3, - 0xec93b4, - 0xec93b5, - 0xec93b6, - 0xec93b7, - 0xec93b8, - 0xec93b9, - 0xec93ba, - 0xec93bb, - 0xec93bc, - 0xec93bd, - 0xec93be, - 0xec93bf, - 0xec9480, - 0xec9481, - 0xec9482, - 0xec9483, - 0xec9484, - 0xec9485, - 0xec9486, - 0xec9487, - 0xec9488, - 0xec9489, - 0xec948a, - 0xec948b, - 0xec948c, - 0xec948d, - 0xec948e, - 0xec948f, - 0xec9490, - 0xec9491, - 0xec9492, - 0xec9493, - 0xec9494, - 0xec9495, - 0xec9496, - 0xec9497, - 0xec9498, - 0xec9499, - 0xec949a, - 0xec949b, - 0xec949c, - 0xec949d, - 0xec949e, - 0xec949f, - 0xec94a0, - 0xec94a1, - 0xec94a2, - 0xec94a3, - 0xec94a4, - 0xec94a5, - 0xec94a6, - 0xec94a7, - 0xec94a8, - 0xec94a9, - 0xec94aa, - 0xec94ab, - 0xec94ac, - 0xec94ad, - 0xec94ae, - 0xec94af, - 0xec94b0, - 0xec94b1, - 0xec94b2, - 0xec94b3, - 0xec94b4, - 0xec94b5, - 0xec94b6, - 0xec94b7, - 0xec94b8, - 0xec94b9, - 0xec94ba, - 0xec94bb, - 0xec94bc, - 0xec94bd, - 0xec94be, - 0xec94bf, - 0xec9580, - 0xec9581, - 0xec9582, - 0xec9583, - 0xec9584, - 0xec9585, - 0xec9586, - 0xec9587, - 0xec9588, - 0xec9589, - 0xec958a, - 0xec958b, - 0xec958c, - 0xec958d, - 0xec958e, - 0xec958f, - 0xec9590, - 0xec9591, - 0xec9592, - 0xec9593, - 0xec9594, - 0xec9595, - 0xec9596, - 0xec9597, - 0xec9598, - 0xec9599, - 0xec959a, - 0xec959b, - 0xec959c, - 0xec959d, - 0xec959e, - 0xec959f, - 0xec95a0, - 0xec95a1, - 0xec95a2, - 0xec95a3, - 0xec95a4, - 0xec95a5, - 0xec95a6, - 0xec95a7, - 0xec95a8, - 0xec95a9, - 0xec95aa, - 0xec95ab, - 0xec95ac, - 0xec95ad, - 0xec95ae, - 0xec95af, - 0xec95b0, - 0xec95b1, - 0xec95b2, - 0xec95b3, - 0xec95b4, - 0xec95b5, - 0xec95b6, - 0xec95b7, - 0xec95b8, - 0xec95b9, - 0xec95ba, - 0xec95bb, - 0xec95bc, - 0xec95bd, - 0xec95be, - 0xec95bf, - 0xec9680, - 0xec9681, - 0xec9682, - 0xec9683, - 0xec9684, - 0xec9685, - 0xec9686, - 0xec9687, - 0xec9688, - 0xec9689, - 0xec968a, - 0xec968b, - 0xec968c, - 0xec968d, - 0xec968e, - 0xec968f, - 0xec9690, - 0xec9691, - 0xec9692, - 0xec9693, - 0xec9694, - 0xec9695, - 0xec9696, - 0xec9697, - 0xec9698, - 0xec9699, - 0xec969a, - 0xec969b, - 0xec969c, - 0xec969d, - 0xec969e, - 0xec969f, - 0xec96a0, - 0xec96a1, - 0xec96a2, - 0xec96a3, - 0xec96a4, - 0xec96a5, - 0xec96a6, - 0xec96a7, - 0xec96a8, - 0xec96a9, - 0xec96aa, - 0xec96ab, - 0xec96ac, - 0xec96ad, - 0xec96ae, - 0xec96af, - 0xec96b0, - 0xec96b1, - 0xec96b2, - 0xec96b3, - 0xec96b4, - 0xec96b5, - 0xec96b6, - 0xec96b7, - 0xec96b8, - 0xec96b9, - 0xec96ba, - 0xec96bb, - 0xec96bc, - 0xec96bd, - 0xec96be, - 0xec96bf, - 0xec9780, - 0xec9781, - 0xec9782, - 0xec9783, - 0xec9784, - 0xec9785, - 0xec9786, - 0xec9787, - 0xec9788, - 0xec9789, - 0xec978a, - 0xec978b, - 0xec978c, - 0xec978d, - 0xec978e, - 0xec978f, - 0xec9790, - 0xec9791, - 0xec9792, - 0xec9793, - 0xec9794, - 0xec9795, - 0xec9796, - 0xec9797, - 0xec9798, - 0xec9799, - 0xec979a, - 0xec979b, - 0xec979c, - 0xec979d, - 0xec979e, - 0xec979f, - 0xec97a0, - 0xec97a1, - 0xec97a2, - 0xec97a3, - 0xec97a4, - 0xec97a5, - 0xec97a6, - 0xec97a7, - 0xec97a8, - 0xec97a9, - 0xec97aa, - 0xec97ab, - 0xec97ac, - 0xec97ad, - 0xec97ae, - 0xec97af, - 0xec97b0, - 0xec97b1, - 0xec97b2, - 0xec97b3, - 0xec97b4, - 0xec97b5, - 0xec97b6, - 0xec97b7, - 0xec97b8, - 0xec97b9, - 0xec97ba, - 0xec97bb, - 0xec97bc, - 0xec97bd, - 0xec97be, - 0xec97bf, - 0xec9880, - 0xec9881, - 0xec9882, - 0xec9883, - 0xec9884, - 0xec9885, - 0xec9886, - 0xec9887, - 0xec9888, - 0xec9889, - 0xec988a, - 0xec988b, - 0xec988c, - 0xec988d, - 0xec988e, - 0xec988f, - 0xec9890, - 0xec9891, - 0xec9892, - 0xec9893, - 0xec9894, - 0xec9895, - 0xec9896, - 0xec9897, - 0xec9898, - 0xec9899, - 0xec989a, - 0xec989b, - 0xec989c, - 0xec989d, - 0xec989e, - 0xec989f, - 0xec98a0, - 0xec98a1, - 0xec98a2, - 0xec98a3, - 0xec98a4, - 0xec98a5, - 0xec98a6, - 0xec98a7, - 0xec98a8, - 0xec98a9, - 0xec98aa, - 0xec98ab, - 0xec98ac, - 0xec98ad, - 0xec98ae, - 0xec98af, - 0xec98b0, - 0xec98b1, - 0xec98b2, - 0xec98b3, - 0xec98b4, - 0xec98b5, - 0xec98b6, - 0xec98b7, - 0xec98b8, - 0xec98b9, - 0xec98ba, - 0xec98bb, - 0xec98bc, - 0xec98bd, - 0xec98be, - 0xec98bf, - 0xec9980, - 0xec9981, - 0xec9982, - 0xec9983, - 0xec9984, - 0xec9985, - 0xec9986, - 0xec9987, - 0xec9988, - 0xec9989, - 0xec998a, - 0xec998b, - 0xec998c, - 0xec998d, - 0xec998e, - 0xec998f, - 0xec9990, - 0xec9991, - 0xec9992, - 0xec9993, - 0xec9994, - 0xec9995, - 0xec9996, - 0xec9997, - 0xec9998, - 0xec9999, - 0xec999a, - 0xec999b, - 0xec999c, - 0xec999d, - 0xec999e, - 0xec999f, - 0xec99a0, - 0xec99a1, - 0xec99a2, - 0xec99a3, - 0xec99a4, - 0xec99a5, - 0xec99a6, - 0xec99a7, - 0xec99a8, - 0xec99a9, - 0xec99aa, - 0xec99ab, - 0xec99ac, - 0xec99ad, - 0xec99ae, - 0xec99af, - 0xec99b0, - 0xec99b1, - 0xec99b2, - 0xec99b3, - 0xec99b4, - 0xec99b5, - 0xec99b6, - 0xec99b7, - 0xec99b8, - 0xec99b9, - 0xec99ba, - 0xec99bb, - 0xec99bc, - 0xec99bd, - 0xec99be, - 0xec99bf, - 0xec9a80, - 0xec9a81, - 0xec9a82, - 0xec9a83, - 0xec9a84, - 0xec9a85, - 0xec9a86, - 0xec9a87, - 0xec9a88, - 0xec9a89, - 0xec9a8a, - 0xec9a8b, - 0xec9a8c, - 0xec9a8d, - 0xec9a8e, - 0xec9a8f, - 0xec9a90, - 0xec9a91, - 0xec9a92, - 0xec9a93, - 0xec9a94, - 0xec9a95, - 0xec9a96, - 0xec9a97, - 0xec9a98, - 0xec9a99, - 0xec9a9a, - 0xec9a9b, - 0xec9a9c, - 0xec9a9d, - 0xec9a9e, - 0xec9a9f, - 0xec9aa0, - 0xec9aa1, - 0xec9aa2, - 0xec9aa3, - 0xec9aa4, - 0xec9aa5, - 0xec9aa6, - 0xec9aa7, - 0xec9aa8, - 0xec9aa9, - 0xec9aaa, - 0xec9aab, - 0xec9aac, - 0xec9aad, - 0xec9aae, - 0xec9aaf, - 0xec9ab0, - 0xec9ab1, - 0xec9ab2, - 0xec9ab3, - 0xec9ab4, - 0xec9ab5, - 0xec9ab6, - 0xec9ab7, - 0xec9ab8, - 0xec9ab9, - 0xec9aba, - 0xec9abb, - 0xec9abc, - 0xec9abd, - 0xec9abe, - 0xec9abf, - 0xec9b80, - 0xec9b81, - 0xec9b82, - 0xec9b83, - 0xec9b84, - 0xec9b85, - 0xec9b86, - 0xec9b87, - 0xec9b88, - 0xec9b89, - 0xec9b8a, - 0xec9b8b, - 0xec9b8c, - 0xec9b8d, - 0xec9b8e, - 0xec9b8f, - 0xec9b90, - 0xec9b91, - 0xec9b92, - 0xec9b93, - 0xec9b94, - 0xec9b95, - 0xec9b96, - 0xec9b97, - 0xec9b98, - 0xec9b99, - 0xec9b9a, - 0xec9b9b, - 0xec9b9c, - 0xec9b9d, - 0xec9b9e, - 0xec9b9f, - 0xec9ba0, - 0xec9ba1, - 0xec9ba2, - 0xec9ba3, - 0xec9ba4, - 0xec9ba5, - 0xec9ba6, - 0xec9ba7, - 0xec9ba8, - 0xec9ba9, - 0xec9baa, - 0xec9bab, - 0xec9bac, - 0xec9bad, - 0xec9bae, - 0xec9baf, - 0xec9bb0, - 0xec9bb1, - 0xec9bb2, - 0xec9bb3, - 0xec9bb4, - 0xec9bb5, - 0xec9bb6, - 0xec9bb7, - 0xec9bb8, - 0xec9bb9, - 0xec9bba, - 0xec9bbb, - 0xec9bbc, - 0xec9bbd, - 0xec9bbe, - 0xec9bbf, - 0xec9c80, - 0xec9c81, - 0xec9c82, - 0xec9c83, - 0xec9c84, - 0xec9c85, - 0xec9c86, - 0xec9c87, - 0xec9c88, - 0xec9c89, - 0xec9c8a, - 0xec9c8b, - 0xec9c8c, - 0xec9c8d, - 0xec9c8e, - 0xec9c8f, - 0xec9c90, - 0xec9c91, - 0xec9c92, - 0xec9c93, - 0xec9c94, - 0xec9c95, - 0xec9c96, - 0xec9c97, - 0xec9c98, - 0xec9c99, - 0xec9c9a, - 0xec9c9b, - 0xec9c9c, - 0xec9c9d, - 0xec9c9e, - 0xec9c9f, - 0xec9ca0, - 0xec9ca1, - 0xec9ca2, - 0xec9ca3, - 0xec9ca4, - 0xec9ca5, - 0xec9ca6, - 0xec9ca7, - 0xec9ca8, - 0xec9ca9, - 0xec9caa, - 0xec9cab, - 0xec9cac, - 0xec9cad, - 0xec9cae, - 0xec9caf, - 0xec9cb0, - 0xec9cb1, - 0xec9cb2, - 0xec9cb3, - 0xec9cb4, - 0xec9cb5, - 0xec9cb6, - 0xec9cb7, - 0xec9cb8, - 0xec9cb9, - 0xec9cba, - 0xec9cbb, - 0xec9cbc, - 0xec9cbd, - 0xec9cbe, - 0xec9cbf, - 0xec9d80, - 0xec9d81, - 0xec9d82, - 0xec9d83, - 0xec9d84, - 0xec9d85, - 0xec9d86, - 0xec9d87, - 0xec9d88, - 0xec9d89, - 0xec9d8a, - 0xec9d8b, - 0xec9d8c, - 0xec9d8d, - 0xec9d8e, - 0xec9d8f, - 0xec9d90, - 0xec9d91, - 0xec9d92, - 0xec9d93, - 0xec9d94, - 0xec9d95, - 0xec9d96, - 0xec9d97, - 0xec9d98, - 0xec9d99, - 0xec9d9a, - 0xec9d9b, - 0xec9d9c, - 0xec9d9d, - 0xec9d9e, - 0xec9d9f, - 0xec9da0, - 0xec9da1, - 0xec9da2, - 0xec9da3, - 0xec9da4, - 0xec9da5, - 0xec9da6, - 0xec9da7, - 0xec9da8, - 0xec9da9, - 0xec9daa, - 0xec9dab, - 0xec9dac, - 0xec9dad, - 0xec9dae, - 0xec9daf, - 0xec9db0, - 0xec9db1, - 0xec9db2, - 0xec9db3, - 0xec9db4, - 0xec9db5, - 0xec9db6, - 0xec9db7, - 0xec9db8, - 0xec9db9, - 0xec9dba, - 0xec9dbb, - 0xec9dbc, - 0xec9dbd, - 0xec9dbe, - 0xec9dbf, - 0xec9e80, - 0xec9e81, - 0xec9e82, - 0xec9e83, - 0xec9e84, - 0xec9e85, - 0xec9e86, - 0xec9e87, - 0xec9e88, - 0xec9e89, - 0xec9e8a, - 0xec9e8b, - 0xec9e8c, - 0xec9e8d, - 0xec9e8e, - 0xec9e8f, - 0xec9e90, - 0xec9e91, - 0xec9e92, - 0xec9e93, - 0xec9e94, - 0xec9e95, - 0xec9e96, - 0xec9e97, - 0xec9e98, - 0xec9e99, - 0xec9e9a, - 0xec9e9b, - 0xec9e9c, - 0xec9e9d, - 0xec9e9e, - 0xec9e9f, - 0xec9ea0, - 0xec9ea1, - 0xec9ea2, - 0xec9ea3, - 0xec9ea4, - 0xec9ea5, - 0xec9ea6, - 0xec9ea7, - 0xec9ea8, - 0xec9ea9, - 0xec9eaa, - 0xec9eab, - 0xec9eac, - 0xec9ead, - 0xec9eae, - 0xec9eaf, - 0xec9eb0, - 0xec9eb1, - 0xec9eb2, - 0xec9eb3, - 0xec9eb4, - 0xec9eb5, - 0xec9eb6, - 0xec9eb7, - 0xec9eb8, - 0xec9eb9, - 0xec9eba, - 0xec9ebb, - 0xec9ebc, - 0xec9ebd, - 0xec9ebe, - 0xec9ebf, - 0xec9f80, - 0xec9f81, - 0xec9f82, - 0xec9f83, - 0xec9f84, - 0xec9f85, - 0xec9f86, - 0xec9f87, - 0xec9f88, - 0xec9f89, - 0xec9f8a, - 0xec9f8b, - 0xec9f8c, - 0xec9f8d, - 0xec9f8e, - 0xec9f8f, - 0xec9f90, - 0xec9f91, - 0xec9f92, - 0xec9f93, - 0xec9f94, - 0xec9f95, - 0xec9f96, - 0xec9f97, - 0xec9f98, - 0xec9f99, - 0xec9f9a, - 0xec9f9b, - 0xec9f9c, - 0xec9f9d, - 0xec9f9e, - 0xec9f9f, - 0xec9fa0, - 0xec9fa1, - 0xec9fa2, - 0xec9fa3, - 0xec9fa4, - 0xec9fa5, - 0xec9fa6, - 0xec9fa7, - 0xec9fa8, - 0xec9fa9, - 0xec9faa, - 0xec9fab, - 0xec9fac, - 0xec9fad, - 0xec9fae, - 0xec9faf, - 0xec9fb0, - 0xec9fb1, - 0xec9fb2, - 0xec9fb3, - 0xec9fb4, - 0xec9fb5, - 0xec9fb6, - 0xec9fb7, - 0xec9fb8, - 0xec9fb9, - 0xec9fba, - 0xec9fbb, - 0xec9fbc, - 0xec9fbd, - 0xec9fbe, - 0xec9fbf, - 0xeca080, - 0xeca081, - 0xeca082, - 0xeca083, - 0xeca084, - 0xeca085, - 0xeca086, - 0xeca087, - 0xeca088, - 0xeca089, - 0xeca08a, - 0xeca08b, - 0xeca08c, - 0xeca08d, - 0xeca08e, - 0xeca08f, - 0xeca090, - 0xeca091, - 0xeca092, - 0xeca093, - 0xeca094, - 0xeca095, - 0xeca096, - 0xeca097, - 0xeca098, - 0xeca099, - 0xeca09a, - 0xeca09b, - 0xeca09c, - 0xeca09d, - 0xeca09e, - 0xeca09f, - 0xeca0a0, - 0xeca0a1, - 0xeca0a2, - 0xeca0a3, - 0xeca0a4, - 0xeca0a5, - 0xeca0a6, - 0xeca0a7, - 0xeca0a8, - 0xeca0a9, - 0xeca0aa, - 0xeca0ab, - 0xeca0ac, - 0xeca0ad, - 0xeca0ae, - 0xeca0af, - 0xeca0b0, - 0xeca0b1, - 0xeca0b2, - 0xeca0b3, - 0xeca0b4, - 0xeca0b5, - 0xeca0b6, - 0xeca0b7, - 0xeca0b8, - 0xeca0b9, - 0xeca0ba, - 0xeca0bb, - 0xeca0bc, - 0xeca0bd, - 0xeca0be, - 0xeca0bf, - 0xeca180, - 0xeca181, - 0xeca182, - 0xeca183, - 0xeca184, - 0xeca185, - 0xeca186, - 0xeca187, - 0xeca188, - 0xeca189, - 0xeca18a, - 0xeca18b, - 0xeca18c, - 0xeca18d, - 0xeca18e, - 0xeca18f, - 0xeca190, - 0xeca191, - 0xeca192, - 0xeca193, - 0xeca194, - 0xeca195, - 0xeca196, - 0xeca197, - 0xeca198, - 0xeca199, - 0xeca19a, - 0xeca19b, - 0xeca19c, - 0xeca19d, - 0xeca19e, - 0xeca19f, - 0xeca1a0, - 0xeca1a1, - 0xeca1a2, - 0xeca1a3, - 0xeca1a4, - 0xeca1a5, - 0xeca1a6, - 0xeca1a7, - 0xeca1a8, - 0xeca1a9, - 0xeca1aa, - 0xeca1ab, - 0xeca1ac, - 0xeca1ad, - 0xeca1ae, - 0xeca1af, - 0xeca1b0, - 0xeca1b1, - 0xeca1b2, - 0xeca1b3, - 0xeca1b4, - 0xeca1b5, - 0xeca1b6, - 0xeca1b7, - 0xeca1b8, - 0xeca1b9, - 0xeca1ba, - 0xeca1bb, - 0xeca1bc, - 0xeca1bd, - 0xeca1be, - 0xeca1bf, - 0xeca280, - 0xeca281, - 0xeca282, - 0xeca283, - 0xeca284, - 0xeca285, - 0xeca286, - 0xeca287, - 0xeca288, - 0xeca289, - 0xeca28a, - 0xeca28b, - 0xeca28c, - 0xeca28d, - 0xeca28e, - 0xeca28f, - 0xeca290, - 0xeca291, - 0xeca292, - 0xeca293, - 0xeca294, - 0xeca295, - 0xeca296, - 0xeca297, - 0xeca298, - 0xeca299, - 0xeca29a, - 0xeca29b, - 0xeca29c, - 0xeca29d, - 0xeca29e, - 0xeca29f, - 0xeca2a0, - 0xeca2a1, - 0xeca2a2, - 0xeca2a3, - 0xeca2a4, - 0xeca2a5, - 0xeca2a6, - 0xeca2a7, - 0xeca2a8, - 0xeca2a9, - 0xeca2aa, - 0xeca2ab, - 0xeca2ac, - 0xeca2ad, - 0xeca2ae, - 0xeca2af, - 0xeca2b0, - 0xeca2b1, - 0xeca2b2, - 0xeca2b3, - 0xeca2b4, - 0xeca2b5, - 0xeca2b6, - 0xeca2b7, - 0xeca2b8, - 0xeca2b9, - 0xeca2ba, - 0xeca2bb, - 0xeca2bc, - 0xeca2bd, - 0xeca2be, - 0xeca2bf, - 0xeca380, - 0xeca381, - 0xeca382, - 0xeca383, - 0xeca384, - 0xeca385, - 0xeca386, - 0xeca387, - 0xeca388, - 0xeca389, - 0xeca38a, - 0xeca38b, - 0xeca38c, - 0xeca38d, - 0xeca38e, - 0xeca38f, - 0xeca390, - 0xeca391, - 0xeca392, - 0xeca393, - 0xeca394, - 0xeca395, - 0xeca396, - 0xeca397, - 0xeca398, - 0xeca399, - 0xeca39a, - 0xeca39b, - 0xeca39c, - 0xeca39d, - 0xeca39e, - 0xeca39f, - 0xeca3a0, - 0xeca3a1, - 0xeca3a2, - 0xeca3a3, - 0xeca3a4, - 0xeca3a5, - 0xeca3a6, - 0xeca3a7, - 0xeca3a8, - 0xeca3a9, - 0xeca3aa, - 0xeca3ab, - 0xeca3ac, - 0xeca3ad, - 0xeca3ae, - 0xeca3af, - 0xeca3b0, - 0xeca3b1, - 0xeca3b2, - 0xeca3b3, - 0xeca3b4, - 0xeca3b5, - 0xeca3b6, - 0xeca3b7, - 0xeca3b8, - 0xeca3b9, - 0xeca3ba, - 0xeca3bb, - 0xeca3bc, - 0xeca3bd, - 0xeca3be, - 0xeca3bf, - 0xeca480, - 0xeca481, - 0xeca482, - 0xeca483, - 0xeca484, - 0xeca485, - 0xeca486, - 0xeca487, - 0xeca488, - 0xeca489, - 0xeca48a, - 0xeca48b, - 0xeca48c, - 0xeca48d, - 0xeca48e, - 0xeca48f, - 0xeca490, - 0xeca491, - 0xeca492, - 0xeca493, - 0xeca494, - 0xeca495, - 0xeca496, - 0xeca497, - 0xeca498, - 0xeca499, - 0xeca49a, - 0xeca49b, - 0xeca49c, - 0xeca49d, - 0xeca49e, - 0xeca49f, - 0xeca4a0, - 0xeca4a1, - 0xeca4a2, - 0xeca4a3, - 0xeca4a4, - 0xeca4a5, - 0xeca4a6, - 0xeca4a7, - 0xeca4a8, - 0xeca4a9, - 0xeca4aa, - 0xeca4ab, - 0xeca4ac, - 0xeca4ad, - 0xeca4ae, - 0xeca4af, - 0xeca4b0, - 0xeca4b1, - 0xeca4b2, - 0xeca4b3, - 0xeca4b4, - 0xeca4b5, - 0xeca4b6, - 0xeca4b7, - 0xeca4b8, - 0xeca4b9, - 0xeca4ba, - 0xeca4bb, - 0xeca4bc, - 0xeca4bd, - 0xeca4be, - 0xeca4bf, - 0xeca580, - 0xeca581, - 0xeca582, - 0xeca583, - 0xeca584, - 0xeca585, - 0xeca586, - 0xeca587, - 0xeca588, - 0xeca589, - 0xeca58a, - 0xeca58b, - 0xeca58c, - 0xeca58d, - 0xeca58e, - 0xeca58f, - 0xeca590, - 0xeca591, - 0xeca592, - 0xeca593, - 0xeca594, - 0xeca595, - 0xeca596, - 0xeca597, - 0xeca598, - 0xeca599, - 0xeca59a, - 0xeca59b, - 0xeca59c, - 0xeca59d, - 0xeca59e, - 0xeca59f, - 0xeca5a0, - 0xeca5a1, - 0xeca5a2, - 0xeca5a3, - 0xeca5a4, - 0xeca5a5, - 0xeca5a6, - 0xeca5a7, - 0xeca5a8, - 0xeca5a9, - 0xeca5aa, - 0xeca5ab, - 0xeca5ac, - 0xeca5ad, - 0xeca5ae, - 0xeca5af, - 0xeca5b0, - 0xeca5b1, - 0xeca5b2, - 0xeca5b3, - 0xeca5b4, - 0xeca5b5, - 0xeca5b6, - 0xeca5b7, - 0xeca5b8, - 0xeca5b9, - 0xeca5ba, - 0xeca5bb, - 0xeca5bc, - 0xeca5bd, - 0xeca5be, - 0xeca5bf, - 0xeca680, - 0xeca681, - 0xeca682, - 0xeca683, - 0xeca684, - 0xeca685, - 0xeca686, - 0xeca687, - 0xeca688, - 0xeca689, - 0xeca68a, - 0xeca68b, - 0xeca68c, - 0xeca68d, - 0xeca68e, - 0xeca68f, - 0xeca690, - 0xeca691, - 0xeca692, - 0xeca693, - 0xeca694, - 0xeca695, - 0xeca696, - 0xeca697, - 0xeca698, - 0xeca699, - 0xeca69a, - 0xeca69b, - 0xeca69c, - 0xeca69d, - 0xeca69e, - 0xeca69f, - 0xeca6a0, - 0xeca6a1, - 0xeca6a2, - 0xeca6a3, - 0xeca6a4, - 0xeca6a5, - 0xeca6a6, - 0xeca6a7, - 0xeca6a8, - 0xeca6a9, - 0xeca6aa, - 0xeca6ab, - 0xeca6ac, - 0xeca6ad, - 0xeca6ae, - 0xeca6af, - 0xeca6b0, - 0xeca6b1, - 0xeca6b2, - 0xeca6b3, - 0xeca6b4, - 0xeca6b5, - 0xeca6b6, - 0xeca6b7, - 0xeca6b8, - 0xeca6b9, - 0xeca6ba, - 0xeca6bb, - 0xeca6bc, - 0xeca6bd, - 0xeca6be, - 0xeca6bf, - 0xeca780, - 0xeca781, - 0xeca782, - 0xeca783, - 0xeca784, - 0xeca785, - 0xeca786, - 0xeca787, - 0xeca788, - 0xeca789, - 0xeca78a, - 0xeca78b, - 0xeca78c, - 0xeca78d, - 0xeca78e, - 0xeca78f, - 0xeca790, - 0xeca791, - 0xeca792, - 0xeca793, - 0xeca794, - 0xeca795, - 0xeca796, - 0xeca797, - 0xeca798, - 0xeca799, - 0xeca79a, - 0xeca79b, - 0xeca79c, - 0xeca79d, - 0xeca79e, - 0xeca79f, - 0xeca7a0, - 0xeca7a1, - 0xeca7a2, - 0xeca7a3, - 0xeca7a4, - 0xeca7a5, - 0xeca7a6, - 0xeca7a7, - 0xeca7a8, - 0xeca7a9, - 0xeca7aa, - 0xeca7ab, - 0xeca7ac, - 0xeca7ad, - 0xeca7ae, - 0xeca7af, - 0xeca7b0, - 0xeca7b1, - 0xeca7b2, - 0xeca7b3, - 0xeca7b4, - 0xeca7b5, - 0xeca7b6, - 0xeca7b7, - 0xeca7b8, - 0xeca7b9, - 0xeca7ba, - 0xeca7bb, - 0xeca7bc, - 0xeca7bd, - 0xeca7be, - 0xeca7bf, - 0xeca880, - 0xeca881, - 0xeca882, - 0xeca883, - 0xeca884, - 0xeca885, - 0xeca886, - 0xeca887, - 0xeca888, - 0xeca889, - 0xeca88a, - 0xeca88b, - 0xeca88c, - 0xeca88d, - 0xeca88e, - 0xeca88f, - 0xeca890, - 0xeca891, - 0xeca892, - 0xeca893, - 0xeca894, - 0xeca895, - 0xeca896, - 0xeca897, - 0xeca898, - 0xeca899, - 0xeca89a, - 0xeca89b, - 0xeca89c, - 0xeca89d, - 0xeca89e, - 0xeca89f, - 0xeca8a0, - 0xeca8a1, - 0xeca8a2, - 0xeca8a3, - 0xeca8a4, - 0xeca8a5, - 0xeca8a6, - 0xeca8a7, - 0xeca8a8, - 0xeca8a9, - 0xeca8aa, - 0xeca8ab, - 0xeca8ac, - 0xeca8ad, - 0xeca8ae, - 0xeca8af, - 0xeca8b0, - 0xeca8b1, - 0xeca8b2, - 0xeca8b3, - 0xeca8b4, - 0xeca8b5, - 0xeca8b6, - 0xeca8b7, - 0xeca8b8, - 0xeca8b9, - 0xeca8ba, - 0xeca8bb, - 0xeca8bc, - 0xeca8bd, - 0xeca8be, - 0xeca8bf, - 0xeca980, - 0xeca981, - 0xeca982, - 0xeca983, - 0xeca984, - 0xeca985, - 0xeca986, - 0xeca987, - 0xeca988, - 0xeca989, - 0xeca98a, - 0xeca98b, - 0xeca98c, - 0xeca98d, - 0xeca98e, - 0xeca98f, - 0xeca990, - 0xeca991, - 0xeca992, - 0xeca993, - 0xeca994, - 0xeca995, - 0xeca996, - 0xeca997, - 0xeca998, - 0xeca999, - 0xeca99a, - 0xeca99b, - 0xeca99c, - 0xeca99d, - 0xeca99e, - 0xeca99f, - 0xeca9a0, - 0xeca9a1, - 0xeca9a2, - 0xeca9a3, - 0xeca9a4, - 0xeca9a5, - 0xeca9a6, - 0xeca9a7, - 0xeca9a8, - 0xeca9a9, - 0xeca9aa, - 0xeca9ab, - 0xeca9ac, - 0xeca9ad, - 0xeca9ae, - 0xeca9af, - 0xeca9b0, - 0xeca9b1, - 0xeca9b2, - 0xeca9b3, - 0xeca9b4, - 0xeca9b5, - 0xeca9b6, - 0xeca9b7, - 0xeca9b8, - 0xeca9b9, - 0xeca9ba, - 0xeca9bb, - 0xeca9bc, - 0xeca9bd, - 0xeca9be, - 0xeca9bf, - 0xecaa80, - 0xecaa81, - 0xecaa82, - 0xecaa83, - 0xecaa84, - 0xecaa85, - 0xecaa86, - 0xecaa87, - 0xecaa88, - 0xecaa89, - 0xecaa8a, - 0xecaa8b, - 0xecaa8c, - 0xecaa8d, - 0xecaa8e, - 0xecaa8f, - 0xecaa90, - 0xecaa91, - 0xecaa92, - 0xecaa93, - 0xecaa94, - 0xecaa95, - 0xecaa96, - 0xecaa97, - 0xecaa98, - 0xecaa99, - 0xecaa9a, - 0xecaa9b, - 0xecaa9c, - 0xecaa9d, - 0xecaa9e, - 0xecaa9f, - 0xecaaa0, - 0xecaaa1, - 0xecaaa2, - 0xecaaa3, - 0xecaaa4, - 0xecaaa5, - 0xecaaa6, - 0xecaaa7, - 0xecaaa8, - 0xecaaa9, - 0xecaaaa, - 0xecaaab, - 0xecaaac, - 0xecaaad, - 0xecaaae, - 0xecaaaf, - 0xecaab0, - 0xecaab1, - 0xecaab2, - 0xecaab3, - 0xecaab4, - 0xecaab5, - 0xecaab6, - 0xecaab7, - 0xecaab8, - 0xecaab9, - 0xecaaba, - 0xecaabb, - 0xecaabc, - 0xecaabd, - 0xecaabe, - 0xecaabf, - 0xecab80, - 0xecab81, - 0xecab82, - 0xecab83, - 0xecab84, - 0xecab85, - 0xecab86, - 0xecab87, - 0xecab88, - 0xecab89, - 0xecab8a, - 0xecab8b, - 0xecab8c, - 0xecab8d, - 0xecab8e, - 0xecab8f, - 0xecab90, - 0xecab91, - 0xecab92, - 0xecab93, - 0xecab94, - 0xecab95, - 0xecab96, - 0xecab97, - 0xecab98, - 0xecab99, - 0xecab9a, - 0xecab9b, - 0xecab9c, - 0xecab9d, - 0xecab9e, - 0xecab9f, - 0xecaba0, - 0xecaba1, - 0xecaba2, - 0xecaba3, - 0xecaba4, - 0xecaba5, - 0xecaba6, - 0xecaba7, - 0xecaba8, - 0xecaba9, - 0xecabaa, - 0xecabab, - 0xecabac, - 0xecabad, - 0xecabae, - 0xecabaf, - 0xecabb0, - 0xecabb1, - 0xecabb2, - 0xecabb3, - 0xecabb4, - 0xecabb5, - 0xecabb6, - 0xecabb7, - 0xecabb8, - 0xecabb9, - 0xecabba, - 0xecabbb, - 0xecabbc, - 0xecabbd, - 0xecabbe, - 0xecabbf, - 0xecac80, - 0xecac81, - 0xecac82, - 0xecac83, - 0xecac84, - 0xecac85, - 0xecac86, - 0xecac87, - 0xecac88, - 0xecac89, - 0xecac8a, - 0xecac8b, - 0xecac8c, - 0xecac8d, - 0xecac8e, - 0xecac8f, - 0xecac90, - 0xecac91, - 0xecac92, - 0xecac93, - 0xecac94, - 0xecac95, - 0xecac96, - 0xecac97, - 0xecac98, - 0xecac99, - 0xecac9a, - 0xecac9b, - 0xecac9c, - 0xecac9d, - 0xecac9e, - 0xecac9f, - 0xecaca0, - 0xecaca1, - 0xecaca2, - 0xecaca3, - 0xecaca4, - 0xecaca5, - 0xecaca6, - 0xecaca7, - 0xecaca8, - 0xecaca9, - 0xecacaa, - 0xecacab, - 0xecacac, - 0xecacad, - 0xecacae, - 0xecacaf, - 0xecacb0, - 0xecacb1, - 0xecacb2, - 0xecacb3, - 0xecacb4, - 0xecacb5, - 0xecacb6, - 0xecacb7, - 0xecacb8, - 0xecacb9, - 0xecacba, - 0xecacbb, - 0xecacbc, - 0xecacbd, - 0xecacbe, - 0xecacbf, - 0xecad80, - 0xecad81, - 0xecad82, - 0xecad83, - 0xecad84, - 0xecad85, - 0xecad86, - 0xecad87, - 0xecad88, - 0xecad89, - 0xecad8a, - 0xecad8b, - 0xecad8c, - 0xecad8d, - 0xecad8e, - 0xecad8f, - 0xecad90, - 0xecad91, - 0xecad92, - 0xecad93, - 0xecad94, - 0xecad95, - 0xecad96, - 0xecad97, - 0xecad98, - 0xecad99, - 0xecad9a, - 0xecad9b, - 0xecad9c, - 0xecad9d, - 0xecad9e, - 0xecad9f, - 0xecada0, - 0xecada1, - 0xecada2, - 0xecada3, - 0xecada4, - 0xecada5, - 0xecada6, - 0xecada7, - 0xecada8, - 0xecada9, - 0xecadaa, - 0xecadab, - 0xecadac, - 0xecadad, - 0xecadae, - 0xecadaf, - 0xecadb0, - 0xecadb1, - 0xecadb2, - 0xecadb3, - 0xecadb4, - 0xecadb5, - 0xecadb6, - 0xecadb7, - 0xecadb8, - 0xecadb9, - 0xecadba, - 0xecadbb, - 0xecadbc, - 0xecadbd, - 0xecadbe, - 0xecadbf, - 0xecae80, - 0xecae81, - 0xecae82, - 0xecae83, - 0xecae84, - 0xecae85, - 0xecae86, - 0xecae87, - 0xecae88, - 0xecae89, - 0xecae8a, - 0xecae8b, - 0xecae8c, - 0xecae8d, - 0xecae8e, - 0xecae8f, - 0xecae90, - 0xecae91, - 0xecae92, - 0xecae93, - 0xecae94, - 0xecae95, - 0xecae96, - 0xecae97, - 0xecae98, - 0xecae99, - 0xecae9a, - 0xecae9b, - 0xecae9c, - 0xecae9d, - 0xecae9e, - 0xecae9f, - 0xecaea0, - 0xecaea1, - 0xecaea2, - 0xecaea3, - 0xecaea4, - 0xecaea5, - 0xecaea6, - 0xecaea7, - 0xecaea8, - 0xecaea9, - 0xecaeaa, - 0xecaeab, - 0xecaeac, - 0xecaead, - 0xecaeae, - 0xecaeaf, - 0xecaeb0, - 0xecaeb1, - 0xecaeb2, - 0xecaeb3, - 0xecaeb4, - 0xecaeb5, - 0xecaeb6, - 0xecaeb7, - 0xecaeb8, - 0xecaeb9, - 0xecaeba, - 0xecaebb, - 0xecaebc, - 0xecaebd, - 0xecaebe, - 0xecaebf, - 0xecaf80, - 0xecaf81, - 0xecaf82, - 0xecaf83, - 0xecaf84, - 0xecaf85, - 0xecaf86, - 0xecaf87, - 0xecaf88, - 0xecaf89, - 0xecaf8a, - 0xecaf8b, - 0xecaf8c, - 0xecaf8d, - 0xecaf8e, - 0xecaf8f, - 0xecaf90, - 0xecaf91, - 0xecaf92, - 0xecaf93, - 0xecaf94, - 0xecaf95, - 0xecaf96, - 0xecaf97, - 0xecaf98, - 0xecaf99, - 0xecaf9a, - 0xecaf9b, - 0xecaf9c, - 0xecaf9d, - 0xecaf9e, - 0xecaf9f, - 0xecafa0, - 0xecafa1, - 0xecafa2, - 0xecafa3, - 0xecafa4, - 0xecafa5, - 0xecafa6, - 0xecafa7, - 0xecafa8, - 0xecafa9, - 0xecafaa, - 0xecafab, - 0xecafac, - 0xecafad, - 0xecafae, - 0xecafaf, - 0xecafb0, - 0xecafb1, - 0xecafb2, - 0xecafb3, - 0xecafb4, - 0xecafb5, - 0xecafb6, - 0xecafb7, - 0xecafb8, - 0xecafb9, - 0xecafba, - 0xecafbb, - 0xecafbc, - 0xecafbd, - 0xecafbe, - 0xecafbf, - 0xecb080, - 0xecb081, - 0xecb082, - 0xecb083, - 0xecb084, - 0xecb085, - 0xecb086, - 0xecb087, - 0xecb088, - 0xecb089, - 0xecb08a, - 0xecb08b, - 0xecb08c, - 0xecb08d, - 0xecb08e, - 0xecb08f, - 0xecb090, - 0xecb091, - 0xecb092, - 0xecb093, - 0xecb094, - 0xecb095, - 0xecb096, - 0xecb097, - 0xecb098, - 0xecb099, - 0xecb09a, - 0xecb09b, - 0xecb09c, - 0xecb09d, - 0xecb09e, - 0xecb09f, - 0xecb0a0, - 0xecb0a1, - 0xecb0a2, - 0xecb0a3, - 0xecb0a4, - 0xecb0a5, - 0xecb0a6, - 0xecb0a7, - 0xecb0a8, - 0xecb0a9, - 0xecb0aa, - 0xecb0ab, - 0xecb0ac, - 0xecb0ad, - 0xecb0ae, - 0xecb0af, - 0xecb0b0, - 0xecb0b1, - 0xecb0b2, - 0xecb0b3, - 0xecb0b4, - 0xecb0b5, - 0xecb0b6, - 0xecb0b7, - 0xecb0b8, - 0xecb0b9, - 0xecb0ba, - 0xecb0bb, - 0xecb0bc, - 0xecb0bd, - 0xecb0be, - 0xecb0bf, - 0xecb180, - 0xecb181, - 0xecb182, - 0xecb183, - 0xecb184, - 0xecb185, - 0xecb186, - 0xecb187, - 0xecb188, - 0xecb189, - 0xecb18a, - 0xecb18b, - 0xecb18c, - 0xecb18d, - 0xecb18e, - 0xecb18f, - 0xecb190, - 0xecb191, - 0xecb192, - 0xecb193, - 0xecb194, - 0xecb195, - 0xecb196, - 0xecb197, - 0xecb198, - 0xecb199, - 0xecb19a, - 0xecb19b, - 0xecb19c, - 0xecb19d, - 0xecb19e, - 0xecb19f, - 0xecb1a0, - 0xecb1a1, - 0xecb1a2, - 0xecb1a3, - 0xecb1a4, - 0xecb1a5, - 0xecb1a6, - 0xecb1a7, - 0xecb1a8, - 0xecb1a9, - 0xecb1aa, - 0xecb1ab, - 0xecb1ac, - 0xecb1ad, - 0xecb1ae, - 0xecb1af, - 0xecb1b0, - 0xecb1b1, - 0xecb1b2, - 0xecb1b3, - 0xecb1b4, - 0xecb1b5, - 0xecb1b6, - 0xecb1b7, - 0xecb1b8, - 0xecb1b9, - 0xecb1ba, - 0xecb1bb, - 0xecb1bc, - 0xecb1bd, - 0xecb1be, - 0xecb1bf, - 0xecb280, - 0xecb281, - 0xecb282, - 0xecb283, - 0xecb284, - 0xecb285, - 0xecb286, - 0xecb287, - 0xecb288, - 0xecb289, - 0xecb28a, - 0xecb28b, - 0xecb28c, - 0xecb28d, - 0xecb28e, - 0xecb28f, - 0xecb290, - 0xecb291, - 0xecb292, - 0xecb293, - 0xecb294, - 0xecb295, - 0xecb296, - 0xecb297, - 0xecb298, - 0xecb299, - 0xecb29a, - 0xecb29b, - 0xecb29c, - 0xecb29d, - 0xecb29e, - 0xecb29f, - 0xecb2a0, - 0xecb2a1, - 0xecb2a2, - 0xecb2a3, - 0xecb2a4, - 0xecb2a5, - 0xecb2a6, - 0xecb2a7, - 0xecb2a8, - 0xecb2a9, - 0xecb2aa, - 0xecb2ab, - 0xecb2ac, - 0xecb2ad, - 0xecb2ae, - 0xecb2af, - 0xecb2b0, - 0xecb2b1, - 0xecb2b2, - 0xecb2b3, - 0xecb2b4, - 0xecb2b5, - 0xecb2b6, - 0xecb2b7, - 0xecb2b8, - 0xecb2b9, - 0xecb2ba, - 0xecb2bb, - 0xecb2bc, - 0xecb2bd, - 0xecb2be, - 0xecb2bf, - 0xecb380, - 0xecb381, - 0xecb382, - 0xecb383, - 0xecb384, - 0xecb385, - 0xecb386, - 0xecb387, - 0xecb388, - 0xecb389, - 0xecb38a, - 0xecb38b, - 0xecb38c, - 0xecb38d, - 0xecb38e, - 0xecb38f, - 0xecb390, - 0xecb391, - 0xecb392, - 0xecb393, - 0xecb394, - 0xecb395, - 0xecb396, - 0xecb397, - 0xecb398, - 0xecb399, - 0xecb39a, - 0xecb39b, - 0xecb39c, - 0xecb39d, - 0xecb39e, - 0xecb39f, - 0xecb3a0, - 0xecb3a1, - 0xecb3a2, - 0xecb3a3, - 0xecb3a4, - 0xecb3a5, - 0xecb3a6, - 0xecb3a7, - 0xecb3a8, - 0xecb3a9, - 0xecb3aa, - 0xecb3ab, - 0xecb3ac, - 0xecb3ad, - 0xecb3ae, - 0xecb3af, - 0xecb3b0, - 0xecb3b1, - 0xecb3b2, - 0xecb3b3, - 0xecb3b4, - 0xecb3b5, - 0xecb3b6, - 0xecb3b7, - 0xecb3b8, - 0xecb3b9, - 0xecb3ba, - 0xecb3bb, - 0xecb3bc, - 0xecb3bd, - 0xecb3be, - 0xecb3bf, - 0xecb480, - 0xecb481, - 0xecb482, - 0xecb483, - 0xecb484, - 0xecb485, - 0xecb486, - 0xecb487, - 0xecb488, - 0xecb489, - 0xecb48a, - 0xecb48b, - 0xecb48c, - 0xecb48d, - 0xecb48e, - 0xecb48f, - 0xecb490, - 0xecb491, - 0xecb492, - 0xecb493, - 0xecb494, - 0xecb495, - 0xecb496, - 0xecb497, - 0xecb498, - 0xecb499, - 0xecb49a, - 0xecb49b, - 0xecb49c, - 0xecb49d, - 0xecb49e, - 0xecb49f, - 0xecb4a0, - 0xecb4a1, - 0xecb4a2, - 0xecb4a3, - 0xecb4a4, - 0xecb4a5, - 0xecb4a6, - 0xecb4a7, - 0xecb4a8, - 0xecb4a9, - 0xecb4aa, - 0xecb4ab, - 0xecb4ac, - 0xecb4ad, - 0xecb4ae, - 0xecb4af, - 0xecb4b0, - 0xecb4b1, - 0xecb4b2, - 0xecb4b3, - 0xecb4b4, - 0xecb4b5, - 0xecb4b6, - 0xecb4b7, - 0xecb4b8, - 0xecb4b9, - 0xecb4ba, - 0xecb4bb, - 0xecb4bc, - 0xecb4bd, - 0xecb4be, - 0xecb4bf, - 0xecb580, - 0xecb581, - 0xecb582, - 0xecb583, - 0xecb584, - 0xecb585, - 0xecb586, - 0xecb587, - 0xecb588, - 0xecb589, - 0xecb58a, - 0xecb58b, - 0xecb58c, - 0xecb58d, - 0xecb58e, - 0xecb58f, - 0xecb590, - 0xecb591, - 0xecb592, - 0xecb593, - 0xecb594, - 0xecb595, - 0xecb596, - 0xecb597, - 0xecb598, - 0xecb599, - 0xecb59a, - 0xecb59b, - 0xecb59c, - 0xecb59d, - 0xecb59e, - 0xecb59f, - 0xecb5a0, - 0xecb5a1, - 0xecb5a2, - 0xecb5a3, - 0xecb5a4, - 0xecb5a5, - 0xecb5a6, - 0xecb5a7, - 0xecb5a8, - 0xecb5a9, - 0xecb5aa, - 0xecb5ab, - 0xecb5ac, - 0xecb5ad, - 0xecb5ae, - 0xecb5af, - 0xecb5b0, - 0xecb5b1, - 0xecb5b2, - 0xecb5b3, - 0xecb5b4, - 0xecb5b5, - 0xecb5b6, - 0xecb5b7, - 0xecb5b8, - 0xecb5b9, - 0xecb5ba, - 0xecb5bb, - 0xecb5bc, - 0xecb5bd, - 0xecb5be, - 0xecb5bf, - 0xecb680, - 0xecb681, - 0xecb682, - 0xecb683, - 0xecb684, - 0xecb685, - 0xecb686, - 0xecb687, - 0xecb688, - 0xecb689, - 0xecb68a, - 0xecb68b, - 0xecb68c, - 0xecb68d, - 0xecb68e, - 0xecb68f, - 0xecb690, - 0xecb691, - 0xecb692, - 0xecb693, - 0xecb694, - 0xecb695, - 0xecb696, - 0xecb697, - 0xecb698, - 0xecb699, - 0xecb69a, - 0xecb69b, - 0xecb69c, - 0xecb69d, - 0xecb69e, - 0xecb69f, - 0xecb6a0, - 0xecb6a1, - 0xecb6a2, - 0xecb6a3, - 0xecb6a4, - 0xecb6a5, - 0xecb6a6, - 0xecb6a7, - 0xecb6a8, - 0xecb6a9, - 0xecb6aa, - 0xecb6ab, - 0xecb6ac, - 0xecb6ad, - 0xecb6ae, - 0xecb6af, - 0xecb6b0, - 0xecb6b1, - 0xecb6b2, - 0xecb6b3, - 0xecb6b4, - 0xecb6b5, - 0xecb6b6, - 0xecb6b7, - 0xecb6b8, - 0xecb6b9, - 0xecb6ba, - 0xecb6bb, - 0xecb6bc, - 0xecb6bd, - 0xecb6be, - 0xecb6bf, - 0xecb780, - 0xecb781, - 0xecb782, - 0xecb783, - 0xecb784, - 0xecb785, - 0xecb786, - 0xecb787, - 0xecb788, - 0xecb789, - 0xecb78a, - 0xecb78b, - 0xecb78c, - 0xecb78d, - 0xecb78e, - 0xecb78f, - 0xecb790, - 0xecb791, - 0xecb792, - 0xecb793, - 0xecb794, - 0xecb795, - 0xecb796, - 0xecb797, - 0xecb798, - 0xecb799, - 0xecb79a, - 0xecb79b, - 0xecb79c, - 0xecb79d, - 0xecb79e, - 0xecb79f, - 0xecb7a0, - 0xecb7a1, - 0xecb7a2, - 0xecb7a3, - 0xecb7a4, - 0xecb7a5, - 0xecb7a6, - 0xecb7a7, - 0xecb7a8, - 0xecb7a9, - 0xecb7aa, - 0xecb7ab, - 0xecb7ac, - 0xecb7ad, - 0xecb7ae, - 0xecb7af, - 0xecb7b0, - 0xecb7b1, - 0xecb7b2, - 0xecb7b3, - 0xecb7b4, - 0xecb7b5, - 0xecb7b6, - 0xecb7b7, - 0xecb7b8, - 0xecb7b9, - 0xecb7ba, - 0xecb7bb, - 0xecb7bc, - 0xecb7bd, - 0xecb7be, - 0xecb7bf, - 0xecb880, - 0xecb881, - 0xecb882, - 0xecb883, - 0xecb884, - 0xecb885, - 0xecb886, - 0xecb887, - 0xecb888, - 0xecb889, - 0xecb88a, - 0xecb88b, - 0xecb88c, - 0xecb88d, - 0xecb88e, - 0xecb88f, - 0xecb890, - 0xecb891, - 0xecb892, - 0xecb893, - 0xecb894, - 0xecb895, - 0xecb896, - 0xecb897, - 0xecb898, - 0xecb899, - 0xecb89a, - 0xecb89b, - 0xecb89c, - 0xecb89d, - 0xecb89e, - 0xecb89f, - 0xecb8a0, - 0xecb8a1, - 0xecb8a2, - 0xecb8a3, - 0xecb8a4, - 0xecb8a5, - 0xecb8a6, - 0xecb8a7, - 0xecb8a8, - 0xecb8a9, - 0xecb8aa, - 0xecb8ab, - 0xecb8ac, - 0xecb8ad, - 0xecb8ae, - 0xecb8af, - 0xecb8b0, - 0xecb8b1, - 0xecb8b2, - 0xecb8b3, - 0xecb8b4, - 0xecb8b5, - 0xecb8b6, - 0xecb8b7, - 0xecb8b8, - 0xecb8b9, - 0xecb8ba, - 0xecb8bb, - 0xecb8bc, - 0xecb8bd, - 0xecb8be, - 0xecb8bf, - 0xecb980, - 0xecb981, - 0xecb982, - 0xecb983, - 0xecb984, - 0xecb985, - 0xecb986, - 0xecb987, - 0xecb988, - 0xecb989, - 0xecb98a, - 0xecb98b, - 0xecb98c, - 0xecb98d, - 0xecb98e, - 0xecb98f, - 0xecb990, - 0xecb991, - 0xecb992, - 0xecb993, - 0xecb994, - 0xecb995, - 0xecb996, - 0xecb997, - 0xecb998, - 0xecb999, - 0xecb99a, - 0xecb99b, - 0xecb99c, - 0xecb99d, - 0xecb99e, - 0xecb99f, - 0xecb9a0, - 0xecb9a1, - 0xecb9a2, - 0xecb9a3, - 0xecb9a4, - 0xecb9a5, - 0xecb9a6, - 0xecb9a7, - 0xecb9a8, - 0xecb9a9, - 0xecb9aa, - 0xecb9ab, - 0xecb9ac, - 0xecb9ad, - 0xecb9ae, - 0xecb9af, - 0xecb9b0, - 0xecb9b1, - 0xecb9b2, - 0xecb9b3, - 0xecb9b4, - 0xecb9b5, - 0xecb9b6, - 0xecb9b7, - 0xecb9b8, - 0xecb9b9, - 0xecb9ba, - 0xecb9bb, - 0xecb9bc, - 0xecb9bd, - 0xecb9be, - 0xecb9bf, - 0xecba80, - 0xecba81, - 0xecba82, - 0xecba83, - 0xecba84, - 0xecba85, - 0xecba86, - 0xecba87, - 0xecba88, - 0xecba89, - 0xecba8a, - 0xecba8b, - 0xecba8c, - 0xecba8d, - 0xecba8e, - 0xecba8f, - 0xecba90, - 0xecba91, - 0xecba92, - 0xecba93, - 0xecba94, - 0xecba95, - 0xecba96, - 0xecba97, - 0xecba98, - 0xecba99, - 0xecba9a, - 0xecba9b, - 0xecba9c, - 0xecba9d, - 0xecba9e, - 0xecba9f, - 0xecbaa0, - 0xecbaa1, - 0xecbaa2, - 0xecbaa3, - 0xecbaa4, - 0xecbaa5, - 0xecbaa6, - 0xecbaa7, - 0xecbaa8, - 0xecbaa9, - 0xecbaaa, - 0xecbaab, - 0xecbaac, - 0xecbaad, - 0xecbaae, - 0xecbaaf, - 0xecbab0, - 0xecbab1, - 0xecbab2, - 0xecbab3, - 0xecbab4, - 0xecbab5, - 0xecbab6, - 0xecbab7, - 0xecbab8, - 0xecbab9, - 0xecbaba, - 0xecbabb, - 0xecbabc, - 0xecbabd, - 0xecbabe, - 0xecbabf, - 0xecbb80, - 0xecbb81, - 0xecbb82, - 0xecbb83, - 0xecbb84, - 0xecbb85, - 0xecbb86, - 0xecbb87, - 0xecbb88, - 0xecbb89, - 0xecbb8a, - 0xecbb8b, - 0xecbb8c, - 0xecbb8d, - 0xecbb8e, - 0xecbb8f, - 0xecbb90, - 0xecbb91, - 0xecbb92, - 0xecbb93, - 0xecbb94, - 0xecbb95, - 0xecbb96, - 0xecbb97, - 0xecbb98, - 0xecbb99, - 0xecbb9a, - 0xecbb9b, - 0xecbb9c, - 0xecbb9d, - 0xecbb9e, - 0xecbb9f, - 0xecbba0, - 0xecbba1, - 0xecbba2, - 0xecbba3, - 0xecbba4, - 0xecbba5, - 0xecbba6, - 0xecbba7, - 0xecbba8, - 0xecbba9, - 0xecbbaa, - 0xecbbab, - 0xecbbac, - 0xecbbad, - 0xecbbae, - 0xecbbaf, - 0xecbbb0, - 0xecbbb1, - 0xecbbb2, - 0xecbbb3, - 0xecbbb4, - 0xecbbb5, - 0xecbbb6, - 0xecbbb7, - 0xecbbb8, - 0xecbbb9, - 0xecbbba, - 0xecbbbb, - 0xecbbbc, - 0xecbbbd, - 0xecbbbe, - 0xecbbbf, - 0xecbc80, - 0xecbc81, - 0xecbc82, - 0xecbc83, - 0xecbc84, - 0xecbc85, - 0xecbc86, - 0xecbc87, - 0xecbc88, - 0xecbc89, - 0xecbc8a, - 0xecbc8b, - 0xecbc8c, - 0xecbc8d, - 0xecbc8e, - 0xecbc8f, - 0xecbc90, - 0xecbc91, - 0xecbc92, - 0xecbc93, - 0xecbc94, - 0xecbc95, - 0xecbc96, - 0xecbc97, - 0xecbc98, - 0xecbc99, - 0xecbc9a, - 0xecbc9b, - 0xecbc9c, - 0xecbc9d, - 0xecbc9e, - 0xecbc9f, - 0xecbca0, - 0xecbca1, - 0xecbca2, - 0xecbca3, - 0xecbca4, - 0xecbca5, - 0xecbca6, - 0xecbca7, - 0xecbca8, - 0xecbca9, - 0xecbcaa, - 0xecbcab, - 0xecbcac, - 0xecbcad, - 0xecbcae, - 0xecbcaf, - 0xecbcb0, - 0xecbcb1, - 0xecbcb2, - 0xecbcb3, - 0xecbcb4, - 0xecbcb5, - 0xecbcb6, - 0xecbcb7, - 0xecbcb8, - 0xecbcb9, - 0xecbcba, - 0xecbcbb, - 0xecbcbc, - 0xecbcbd, - 0xecbcbe, - 0xecbcbf, - 0xecbd80, - 0xecbd81, - 0xecbd82, - 0xecbd83, - 0xecbd84, - 0xecbd85, - 0xecbd86, - 0xecbd87, - 0xecbd88, - 0xecbd89, - 0xecbd8a, - 0xecbd8b, - 0xecbd8c, - 0xecbd8d, - 0xecbd8e, - 0xecbd8f, - 0xecbd90, - 0xecbd91, - 0xecbd92, - 0xecbd93, - 0xecbd94, - 0xecbd95, - 0xecbd96, - 0xecbd97, - 0xecbd98, - 0xecbd99, - 0xecbd9a, - 0xecbd9b, - 0xecbd9c, - 0xecbd9d, - 0xecbd9e, - 0xecbd9f, - 0xecbda0, - 0xecbda1, - 0xecbda2, - 0xecbda3, - 0xecbda4, - 0xecbda5, - 0xecbda6, - 0xecbda7, - 0xecbda8, - 0xecbda9, - 0xecbdaa, - 0xecbdab, - 0xecbdac, - 0xecbdad, - 0xecbdae, - 0xecbdaf, - 0xecbdb0, - 0xecbdb1, - 0xecbdb2, - 0xecbdb3, - 0xecbdb4, - 0xecbdb5, - 0xecbdb6, - 0xecbdb7, - 0xecbdb8, - 0xecbdb9, - 0xecbdba, - 0xecbdbb, - 0xecbdbc, - 0xecbdbd, - 0xecbdbe, - 0xecbdbf, - 0xecbe80, - 0xecbe81, - 0xecbe82, - 0xecbe83, - 0xecbe84, - 0xecbe85, - 0xecbe86, - 0xecbe87, - 0xecbe88, - 0xecbe89, - 0xecbe8a, - 0xecbe8b, - 0xecbe8c, - 0xecbe8d, - 0xecbe8e, - 0xecbe8f, - 0xecbe90, - 0xecbe91, - 0xecbe92, - 0xecbe93, - 0xecbe94, - 0xecbe95, - 0xecbe96, - 0xecbe97, - 0xecbe98, - 0xecbe99, - 0xecbe9a, - 0xecbe9b, - 0xecbe9c, - 0xecbe9d, - 0xecbe9e, - 0xecbe9f, - 0xecbea0, - 0xecbea1, - 0xecbea2, - 0xecbea3, - 0xecbea4, - 0xecbea5, - 0xecbea6, - 0xecbea7, - 0xecbea8, - 0xecbea9, - 0xecbeaa, - 0xecbeab, - 0xecbeac, - 0xecbead, - 0xecbeae, - 0xecbeaf, - 0xecbeb0, - 0xecbeb1, - 0xecbeb2, - 0xecbeb3, - 0xecbeb4, - 0xecbeb5, - 0xecbeb6, - 0xecbeb7, - 0xecbeb8, - 0xecbeb9, - 0xecbeba, - 0xecbebb, - 0xecbebc, - 0xecbebd, - 0xecbebe, - 0xecbebf, - 0xecbf80, - 0xecbf81, - 0xecbf82, - 0xecbf83, - 0xecbf84, - 0xecbf85, - 0xecbf86, - 0xecbf87, - 0xecbf88, - 0xecbf89, - 0xecbf8a, - 0xecbf8b, - 0xecbf8c, - 0xecbf8d, - 0xecbf8e, - 0xecbf8f, - 0xecbf90, - 0xecbf91, - 0xecbf92, - 0xecbf93, - 0xecbf94, - 0xecbf95, - 0xecbf96, - 0xecbf97, - 0xecbf98, - 0xecbf99, - 0xecbf9a, - 0xecbf9b, - 0xecbf9c, - 0xecbf9d, - 0xecbf9e, - 0xecbf9f, - 0xecbfa0, - 0xecbfa1, - 0xecbfa2, - 0xecbfa3, - 0xecbfa4, - 0xecbfa5, - 0xecbfa6, - 0xecbfa7, - 0xecbfa8, - 0xecbfa9, - 0xecbfaa, - 0xecbfab, - 0xecbfac, - 0xecbfad, - 0xecbfae, - 0xecbfaf, - 0xecbfb0, - 0xecbfb1, - 0xecbfb2, - 0xecbfb3, - 0xecbfb4, - 0xecbfb5, - 0xecbfb6, - 0xecbfb7, - 0xecbfb8, - 0xecbfb9, - 0xecbfba, - 0xecbfbb, - 0xecbfbc, - 0xecbfbd, - 0xecbfbe, - 0xecbfbf, - 0xed8080, - 0xed8081, - 0xed8082, - 0xed8083, - 0xed8084, - 0xed8085, - 0xed8086, - 0xed8087, - 0xed8088, - 0xed8089, - 0xed808a, - 0xed808b, - 0xed808c, - 0xed808d, - 0xed808e, - 0xed808f, - 0xed8090, - 0xed8091, - 0xed8092, - 0xed8093, - 0xed8094, - 0xed8095, - 0xed8096, - 0xed8097, - 0xed8098, - 0xed8099, - 0xed809a, - 0xed809b, - 0xed809c, - 0xed809d, - 0xed809e, - 0xed809f, - 0xed80a0, - 0xed80a1, - 0xed80a2, - 0xed80a3, - 0xed80a4, - 0xed80a5, - 0xed80a6, - 0xed80a7, - 0xed80a8, - 0xed80a9, - 0xed80aa, - 0xed80ab, - 0xed80ac, - 0xed80ad, - 0xed80ae, - 0xed80af, - 0xed80b0, - 0xed80b1, - 0xed80b2, - 0xed80b3, - 0xed80b4, - 0xed80b5, - 0xed80b6, - 0xed80b7, - 0xed80b8, - 0xed80b9, - 0xed80ba, - 0xed80bb, - 0xed80bc, - 0xed80bd, - 0xed80be, - 0xed80bf, - 0xed8180, - 0xed8181, - 0xed8182, - 0xed8183, - 0xed8184, - 0xed8185, - 0xed8186, - 0xed8187, - 0xed8188, - 0xed8189, - 0xed818a, - 0xed818b, - 0xed818c, - 0xed818d, - 0xed818e, - 0xed818f, - 0xed8190, - 0xed8191, - 0xed8192, - 0xed8193, - 0xed8194, - 0xed8195, - 0xed8196, - 0xed8197, - 0xed8198, - 0xed8199, - 0xed819a, - 0xed819b, - 0xed819c, - 0xed819d, - 0xed819e, - 0xed819f, - 0xed81a0, - 0xed81a1, - 0xed81a2, - 0xed81a3, - 0xed81a4, - 0xed81a5, - 0xed81a6, - 0xed81a7, - 0xed81a8, - 0xed81a9, - 0xed81aa, - 0xed81ab, - 0xed81ac, - 0xed81ad, - 0xed81ae, - 0xed81af, - 0xed81b0, - 0xed81b1, - 0xed81b2, - 0xed81b3, - 0xed81b4, - 0xed81b5, - 0xed81b6, - 0xed81b7, - 0xed81b8, - 0xed81b9, - 0xed81ba, - 0xed81bb, - 0xed81bc, - 0xed81bd, - 0xed81be, - 0xed81bf, - 0xed8280, - 0xed8281, - 0xed8282, - 0xed8283, - 0xed8284, - 0xed8285, - 0xed8286, - 0xed8287, - 0xed8288, - 0xed8289, - 0xed828a, - 0xed828b, - 0xed828c, - 0xed828d, - 0xed828e, - 0xed828f, - 0xed8290, - 0xed8291, - 0xed8292, - 0xed8293, - 0xed8294, - 0xed8295, - 0xed8296, - 0xed8297, - 0xed8298, - 0xed8299, - 0xed829a, - 0xed829b, - 0xed829c, - 0xed829d, - 0xed829e, - 0xed829f, - 0xed82a0, - 0xed82a1, - 0xed82a2, - 0xed82a3, - 0xed82a4, - 0xed82a5, - 0xed82a6, - 0xed82a7, - 0xed82a8, - 0xed82a9, - 0xed82aa, - 0xed82ab, - 0xed82ac, - 0xed82ad, - 0xed82ae, - 0xed82af, - 0xed82b0, - 0xed82b1, - 0xed82b2, - 0xed82b3, - 0xed82b4, - 0xed82b5, - 0xed82b6, - 0xed82b7, - 0xed82b8, - 0xed82b9, - 0xed82ba, - 0xed82bb, - 0xed82bc, - 0xed82bd, - 0xed82be, - 0xed82bf, - 0xed8380, - 0xed8381, - 0xed8382, - 0xed8383, - 0xed8384, - 0xed8385, - 0xed8386, - 0xed8387, - 0xed8388, - 0xed8389, - 0xed838a, - 0xed838b, - 0xed838c, - 0xed838d, - 0xed838e, - 0xed838f, - 0xed8390, - 0xed8391, - 0xed8392, - 0xed8393, - 0xed8394, - 0xed8395, - 0xed8396, - 0xed8397, - 0xed8398, - 0xed8399, - 0xed839a, - 0xed839b, - 0xed839c, - 0xed839d, - 0xed839e, - 0xed839f, - 0xed83a0, - 0xed83a1, - 0xed83a2, - 0xed83a3, - 0xed83a4, - 0xed83a5, - 0xed83a6, - 0xed83a7, - 0xed83a8, - 0xed83a9, - 0xed83aa, - 0xed83ab, - 0xed83ac, - 0xed83ad, - 0xed83ae, - 0xed83af, - 0xed83b0, - 0xed83b1, - 0xed83b2, - 0xed83b3, - 0xed83b4, - 0xed83b5, - 0xed83b6, - 0xed83b7, - 0xed83b8, - 0xed83b9, - 0xed83ba, - 0xed83bb, - 0xed83bc, - 0xed83bd, - 0xed83be, - 0xed83bf, - 0xed8480, - 0xed8481, - 0xed8482, - 0xed8483, - 0xed8484, - 0xed8485, - 0xed8486, - 0xed8487, - 0xed8488, - 0xed8489, - 0xed848a, - 0xed848b, - 0xed848c, - 0xed848d, - 0xed848e, - 0xed848f, - 0xed8490, - 0xed8491, - 0xed8492, - 0xed8493, - 0xed8494, - 0xed8495, - 0xed8496, - 0xed8497, - 0xed8498, - 0xed8499, - 0xed849a, - 0xed849b, - 0xed849c, - 0xed849d, - 0xed849e, - 0xed849f, - 0xed84a0, - 0xed84a1, - 0xed84a2, - 0xed84a3, - 0xed84a4, - 0xed84a5, - 0xed84a6, - 0xed84a7, - 0xed84a8, - 0xed84a9, - 0xed84aa, - 0xed84ab, - 0xed84ac, - 0xed84ad, - 0xed84ae, - 0xed84af, - 0xed84b0, - 0xed84b1, - 0xed84b2, - 0xed84b3, - 0xed84b4, - 0xed84b5, - 0xed84b6, - 0xed84b7, - 0xed84b8, - 0xed84b9, - 0xed84ba, - 0xed84bb, - 0xed84bc, - 0xed84bd, - 0xed84be, - 0xed84bf, - 0xed8580, - 0xed8581, - 0xed8582, - 0xed8583, - 0xed8584, - 0xed8585, - 0xed8586, - 0xed8587, - 0xed8588, - 0xed8589, - 0xed858a, - 0xed858b, - 0xed858c, - 0xed858d, - 0xed858e, - 0xed858f, - 0xed8590, - 0xed8591, - 0xed8592, - 0xed8593, - 0xed8594, - 0xed8595, - 0xed8596, - 0xed8597, - 0xed8598, - 0xed8599, - 0xed859a, - 0xed859b, - 0xed859c, - 0xed859d, - 0xed859e, - 0xed859f, - 0xed85a0, - 0xed85a1, - 0xed85a2, - 0xed85a3, - 0xed85a4, - 0xed85a5, - 0xed85a6, - 0xed85a7, - 0xed85a8, - 0xed85a9, - 0xed85aa, - 0xed85ab, - 0xed85ac, - 0xed85ad, - 0xed85ae, - 0xed85af, - 0xed85b0, - 0xed85b1, - 0xed85b2, - 0xed85b3, - 0xed85b4, - 0xed85b5, - 0xed85b6, - 0xed85b7, - 0xed85b8, - 0xed85b9, - 0xed85ba, - 0xed85bb, - 0xed85bc, - 0xed85bd, - 0xed85be, - 0xed85bf, - 0xed8680, - 0xed8681, - 0xed8682, - 0xed8683, - 0xed8684, - 0xed8685, - 0xed8686, - 0xed8687, - 0xed8688, - 0xed8689, - 0xed868a, - 0xed868b, - 0xed868c, - 0xed868d, - 0xed868e, - 0xed868f, - 0xed8690, - 0xed8691, - 0xed8692, - 0xed8693, - 0xed8694, - 0xed8695, - 0xed8696, - 0xed8697, - 0xed8698, - 0xed8699, - 0xed869a, - 0xed869b, - 0xed869c, - 0xed869d, - 0xed869e, - 0xed869f, - 0xed86a0, - 0xed86a1, - 0xed86a2, - 0xed86a3, - 0xed86a4, - 0xed86a5, - 0xed86a6, - 0xed86a7, - 0xed86a8, - 0xed86a9, - 0xed86aa, - 0xed86ab, - 0xed86ac, - 0xed86ad, - 0xed86ae, - 0xed86af, - 0xed86b0, - 0xed86b1, - 0xed86b2, - 0xed86b3, - 0xed86b4, - 0xed86b5, - 0xed86b6, - 0xed86b7, - 0xed86b8, - 0xed86b9, - 0xed86ba, - 0xed86bb, - 0xed86bc, - 0xed86bd, - 0xed86be, - 0xed86bf, - 0xed8780, - 0xed8781, - 0xed8782, - 0xed8783, - 0xed8784, - 0xed8785, - 0xed8786, - 0xed8787, - 0xed8788, - 0xed8789, - 0xed878a, - 0xed878b, - 0xed878c, - 0xed878d, - 0xed878e, - 0xed878f, - 0xed8790, - 0xed8791, - 0xed8792, - 0xed8793, - 0xed8794, - 0xed8795, - 0xed8796, - 0xed8797, - 0xed8798, - 0xed8799, - 0xed879a, - 0xed879b, - 0xed879c, - 0xed879d, - 0xed879e, - 0xed879f, - 0xed87a0, - 0xed87a1, - 0xed87a2, - 0xed87a3, - 0xed87a4, - 0xed87a5, - 0xed87a6, - 0xed87a7, - 0xed87a8, - 0xed87a9, - 0xed87aa, - 0xed87ab, - 0xed87ac, - 0xed87ad, - 0xed87ae, - 0xed87af, - 0xed87b0, - 0xed87b1, - 0xed87b2, - 0xed87b3, - 0xed87b4, - 0xed87b5, - 0xed87b6, - 0xed87b7, - 0xed87b8, - 0xed87b9, - 0xed87ba, - 0xed87bb, - 0xed87bc, - 0xed87bd, - 0xed87be, - 0xed87bf, - 0xed8880, - 0xed8881, - 0xed8882, - 0xed8883, - 0xed8884, - 0xed8885, - 0xed8886, - 0xed8887, - 0xed8888, - 0xed8889, - 0xed888a, - 0xed888b, - 0xed888c, - 0xed888d, - 0xed888e, - 0xed888f, - 0xed8890, - 0xed8891, - 0xed8892, - 0xed8893, - 0xed8894, - 0xed8895, - 0xed8896, - 0xed8897, - 0xed8898, - 0xed8899, - 0xed889a, - 0xed889b, - 0xed889c, - 0xed889d, - 0xed889e, - 0xed889f, - 0xed88a0, - 0xed88a1, - 0xed88a2, - 0xed88a3, - 0xed88a4, - 0xed88a5, - 0xed88a6, - 0xed88a7, - 0xed88a8, - 0xed88a9, - 0xed88aa, - 0xed88ab, - 0xed88ac, - 0xed88ad, - 0xed88ae, - 0xed88af, - 0xed88b0, - 0xed88b1, - 0xed88b2, - 0xed88b3, - 0xed88b4, - 0xed88b5, - 0xed88b6, - 0xed88b7, - 0xed88b8, - 0xed88b9, - 0xed88ba, - 0xed88bb, - 0xed88bc, - 0xed88bd, - 0xed88be, - 0xed88bf, - 0xed8980, - 0xed8981, - 0xed8982, - 0xed8983, - 0xed8984, - 0xed8985, - 0xed8986, - 0xed8987, - 0xed8988, - 0xed8989, - 0xed898a, - 0xed898b, - 0xed898c, - 0xed898d, - 0xed898e, - 0xed898f, - 0xed8990, - 0xed8991, - 0xed8992, - 0xed8993, - 0xed8994, - 0xed8995, - 0xed8996, - 0xed8997, - 0xed8998, - 0xed8999, - 0xed899a, - 0xed899b, - 0xed899c, - 0xed899d, - 0xed899e, - 0xed899f, - 0xed89a0, - 0xed89a1, - 0xed89a2, - 0xed89a3, - 0xed89a4, - 0xed89a5, - 0xed89a6, - 0xed89a7, - 0xed89a8, - 0xed89a9, - 0xed89aa, - 0xed89ab, - 0xed89ac, - 0xed89ad, - 0xed89ae, - 0xed89af, - 0xed89b0, - 0xed89b1, - 0xed89b2, - 0xed89b3, - 0xed89b4, - 0xed89b5, - 0xed89b6, - 0xed89b7, - 0xed89b8, - 0xed89b9, - 0xed89ba, - 0xed89bb, - 0xed89bc, - 0xed89bd, - 0xed89be, - 0xed89bf, - 0xed8a80, - 0xed8a81, - 0xed8a82, - 0xed8a83, - 0xed8a84, - 0xed8a85, - 0xed8a86, - 0xed8a87, - 0xed8a88, - 0xed8a89, - 0xed8a8a, - 0xed8a8b, - 0xed8a8c, - 0xed8a8d, - 0xed8a8e, - 0xed8a8f, - 0xed8a90, - 0xed8a91, - 0xed8a92, - 0xed8a93, - 0xed8a94, - 0xed8a95, - 0xed8a96, - 0xed8a97, - 0xed8a98, - 0xed8a99, - 0xed8a9a, - 0xed8a9b, - 0xed8a9c, - 0xed8a9d, - 0xed8a9e, - 0xed8a9f, - 0xed8aa0, - 0xed8aa1, - 0xed8aa2, - 0xed8aa3, - 0xed8aa4, - 0xed8aa5, - 0xed8aa6, - 0xed8aa7, - 0xed8aa8, - 0xed8aa9, - 0xed8aaa, - 0xed8aab, - 0xed8aac, - 0xed8aad, - 0xed8aae, - 0xed8aaf, - 0xed8ab0, - 0xed8ab1, - 0xed8ab2, - 0xed8ab3, - 0xed8ab4, - 0xed8ab5, - 0xed8ab6, - 0xed8ab7, - 0xed8ab8, - 0xed8ab9, - 0xed8aba, - 0xed8abb, - 0xed8abc, - 0xed8abd, - 0xed8abe, - 0xed8abf, - 0xed8b80, - 0xed8b81, - 0xed8b82, - 0xed8b83, - 0xed8b84, - 0xed8b85, - 0xed8b86, - 0xed8b87, - 0xed8b88, - 0xed8b89, - 0xed8b8a, - 0xed8b8b, - 0xed8b8c, - 0xed8b8d, - 0xed8b8e, - 0xed8b8f, - 0xed8b90, - 0xed8b91, - 0xed8b92, - 0xed8b93, - 0xed8b94, - 0xed8b95, - 0xed8b96, - 0xed8b97, - 0xed8b98, - 0xed8b99, - 0xed8b9a, - 0xed8b9b, - 0xed8b9c, - 0xed8b9d, - 0xed8b9e, - 0xed8b9f, - 0xed8ba0, - 0xed8ba1, - 0xed8ba2, - 0xed8ba3, - 0xed8ba4, - 0xed8ba5, - 0xed8ba6, - 0xed8ba7, - 0xed8ba8, - 0xed8ba9, - 0xed8baa, - 0xed8bab, - 0xed8bac, - 0xed8bad, - 0xed8bae, - 0xed8baf, - 0xed8bb0, - 0xed8bb1, - 0xed8bb2, - 0xed8bb3, - 0xed8bb4, - 0xed8bb5, - 0xed8bb6, - 0xed8bb7, - 0xed8bb8, - 0xed8bb9, - 0xed8bba, - 0xed8bbb, - 0xed8bbc, - 0xed8bbd, - 0xed8bbe, - 0xed8bbf, - 0xed8c80, - 0xed8c81, - 0xed8c82, - 0xed8c83, - 0xed8c84, - 0xed8c85, - 0xed8c86, - 0xed8c87, - 0xed8c88, - 0xed8c89, - 0xed8c8a, - 0xed8c8b, - 0xed8c8c, - 0xed8c8d, - 0xed8c8e, - 0xed8c8f, - 0xed8c90, - 0xed8c91, - 0xed8c92, - 0xed8c93, - 0xed8c94, - 0xed8c95, - 0xed8c96, - 0xed8c97, - 0xed8c98, - 0xed8c99, - 0xed8c9a, - 0xed8c9b, - 0xed8c9c, - 0xed8c9d, - 0xed8c9e, - 0xed8c9f, - 0xed8ca0, - 0xed8ca1, - 0xed8ca2, - 0xed8ca3, - 0xed8ca4, - 0xed8ca5, - 0xed8ca6, - 0xed8ca7, - 0xed8ca8, - 0xed8ca9, - 0xed8caa, - 0xed8cab, - 0xed8cac, - 0xed8cad, - 0xed8cae, - 0xed8caf, - 0xed8cb0, - 0xed8cb1, - 0xed8cb2, - 0xed8cb3, - 0xed8cb4, - 0xed8cb5, - 0xed8cb6, - 0xed8cb7, - 0xed8cb8, - 0xed8cb9, - 0xed8cba, - 0xed8cbb, - 0xed8cbc, - 0xed8cbd, - 0xed8cbe, - 0xed8cbf, - 0xed8d80, - 0xed8d81, - 0xed8d82, - 0xed8d83, - 0xed8d84, - 0xed8d85, - 0xed8d86, - 0xed8d87, - 0xed8d88, - 0xed8d89, - 0xed8d8a, - 0xed8d8b, - 0xed8d8c, - 0xed8d8d, - 0xed8d8e, - 0xed8d8f, - 0xed8d90, - 0xed8d91, - 0xed8d92, - 0xed8d93, - 0xed8d94, - 0xed8d95, - 0xed8d96, - 0xed8d97, - 0xed8d98, - 0xed8d99, - 0xed8d9a, - 0xed8d9b, - 0xed8d9c, - 0xed8d9d, - 0xed8d9e, - 0xed8d9f, - 0xed8da0, - 0xed8da1, - 0xed8da2, - 0xed8da3, - 0xed8da4, - 0xed8da5, - 0xed8da6, - 0xed8da7, - 0xed8da8, - 0xed8da9, - 0xed8daa, - 0xed8dab, - 0xed8dac, - 0xed8dad, - 0xed8dae, - 0xed8daf, - 0xed8db0, - 0xed8db1, - 0xed8db2, - 0xed8db3, - 0xed8db4, - 0xed8db5, - 0xed8db6, - 0xed8db7, - 0xed8db8, - 0xed8db9, - 0xed8dba, - 0xed8dbb, - 0xed8dbc, - 0xed8dbd, - 0xed8dbe, - 0xed8dbf, - 0xed8e80, - 0xed8e81, - 0xed8e82, - 0xed8e83, - 0xed8e84, - 0xed8e85, - 0xed8e86, - 0xed8e87, - 0xed8e88, - 0xed8e89, - 0xed8e8a, - 0xed8e8b, - 0xed8e8c, - 0xed8e8d, - 0xed8e8e, - 0xed8e8f, - 0xed8e90, - 0xed8e91, - 0xed8e92, - 0xed8e93, - 0xed8e94, - 0xed8e95, - 0xed8e96, - 0xed8e97, - 0xed8e98, - 0xed8e99, - 0xed8e9a, - 0xed8e9b, - 0xed8e9c, - 0xed8e9d, - 0xed8e9e, - 0xed8e9f, - 0xed8ea0, - 0xed8ea1, - 0xed8ea2, - 0xed8ea3, - 0xed8ea4, - 0xed8ea5, - 0xed8ea6, - 0xed8ea7, - 0xed8ea8, - 0xed8ea9, - 0xed8eaa, - 0xed8eab, - 0xed8eac, - 0xed8ead, - 0xed8eae, - 0xed8eaf, - 0xed8eb0, - 0xed8eb1, - 0xed8eb2, - 0xed8eb3, - 0xed8eb4, - 0xed8eb5, - 0xed8eb6, - 0xed8eb7, - 0xed8eb8, - 0xed8eb9, - 0xed8eba, - 0xed8ebb, - 0xed8ebc, - 0xed8ebd, - 0xed8ebe, - 0xed8ebf, - 0xed8f80, - 0xed8f81, - 0xed8f82, - 0xed8f83, - 0xed8f84, - 0xed8f85, - 0xed8f86, - 0xed8f87, - 0xed8f88, - 0xed8f89, - 0xed8f8a, - 0xed8f8b, - 0xed8f8c, - 0xed8f8d, - 0xed8f8e, - 0xed8f8f, - 0xed8f90, - 0xed8f91, - 0xed8f92, - 0xed8f93, - 0xed8f94, - 0xed8f95, - 0xed8f96, - 0xed8f97, - 0xed8f98, - 0xed8f99, - 0xed8f9a, - 0xed8f9b, - 0xed8f9c, - 0xed8f9d, - 0xed8f9e, - 0xed8f9f, - 0xed8fa0, - 0xed8fa1, - 0xed8fa2, - 0xed8fa3, - 0xed8fa4, - 0xed8fa5, - 0xed8fa6, - 0xed8fa7, - 0xed8fa8, - 0xed8fa9, - 0xed8faa, - 0xed8fab, - 0xed8fac, - 0xed8fad, - 0xed8fae, - 0xed8faf, - 0xed8fb0, - 0xed8fb1, - 0xed8fb2, - 0xed8fb3, - 0xed8fb4, - 0xed8fb5, - 0xed8fb6, - 0xed8fb7, - 0xed8fb8, - 0xed8fb9, - 0xed8fba, - 0xed8fbb, - 0xed8fbc, - 0xed8fbd, - 0xed8fbe, - 0xed8fbf, - 0xed9080, - 0xed9081, - 0xed9082, - 0xed9083, - 0xed9084, - 0xed9085, - 0xed9086, - 0xed9087, - 0xed9088, - 0xed9089, - 0xed908a, - 0xed908b, - 0xed908c, - 0xed908d, - 0xed908e, - 0xed908f, - 0xed9090, - 0xed9091, - 0xed9092, - 0xed9093, - 0xed9094, - 0xed9095, - 0xed9096, - 0xed9097, - 0xed9098, - 0xed9099, - 0xed909a, - 0xed909b, - 0xed909c, - 0xed909d, - 0xed909e, - 0xed909f, - 0xed90a0, - 0xed90a1, - 0xed90a2, - 0xed90a3, - 0xed90a4, - 0xed90a5, - 0xed90a6, - 0xed90a7, - 0xed90a8, - 0xed90a9, - 0xed90aa, - 0xed90ab, - 0xed90ac, - 0xed90ad, - 0xed90ae, - 0xed90af, - 0xed90b0, - 0xed90b1, - 0xed90b2, - 0xed90b3, - 0xed90b4, - 0xed90b5, - 0xed90b6, - 0xed90b7, - 0xed90b8, - 0xed90b9, - 0xed90ba, - 0xed90bb, - 0xed90bc, - 0xed90bd, - 0xed90be, - 0xed90bf, - 0xed9180, - 0xed9181, - 0xed9182, - 0xed9183, - 0xed9184, - 0xed9185, - 0xed9186, - 0xed9187, - 0xed9188, - 0xed9189, - 0xed918a, - 0xed918b, - 0xed918c, - 0xed918d, - 0xed918e, - 0xed918f, - 0xed9190, - 0xed9191, - 0xed9192, - 0xed9193, - 0xed9194, - 0xed9195, - 0xed9196, - 0xed9197, - 0xed9198, - 0xed9199, - 0xed919a, - 0xed919b, - 0xed919c, - 0xed919d, - 0xed919e, - 0xed919f, - 0xed91a0, - 0xed91a1, - 0xed91a2, - 0xed91a3, - 0xed91a4, - 0xed91a5, - 0xed91a6, - 0xed91a7, - 0xed91a8, - 0xed91a9, - 0xed91aa, - 0xed91ab, - 0xed91ac, - 0xed91ad, - 0xed91ae, - 0xed91af, - 0xed91b0, - 0xed91b1, - 0xed91b2, - 0xed91b3, - 0xed91b4, - 0xed91b5, - 0xed91b6, - 0xed91b7, - 0xed91b8, - 0xed91b9, - 0xed91ba, - 0xed91bb, - 0xed91bc, - 0xed91bd, - 0xed91be, - 0xed91bf, - 0xed9280, - 0xed9281, - 0xed9282, - 0xed9283, - 0xed9284, - 0xed9285, - 0xed9286, - 0xed9287, - 0xed9288, - 0xed9289, - 0xed928a, - 0xed928b, - 0xed928c, - 0xed928d, - 0xed928e, - 0xed928f, - 0xed9290, - 0xed9291, - 0xed9292, - 0xed9293, - 0xed9294, - 0xed9295, - 0xed9296, - 0xed9297, - 0xed9298, - 0xed9299, - 0xed929a, - 0xed929b, - 0xed929c, - 0xed929d, - 0xed929e, - 0xed929f, - 0xed92a0, - 0xed92a1, - 0xed92a2, - 0xed92a3, - 0xed92a4, - 0xed92a5, - 0xed92a6, - 0xed92a7, - 0xed92a8, - 0xed92a9, - 0xed92aa, - 0xed92ab, - 0xed92ac, - 0xed92ad, - 0xed92ae, - 0xed92af, - 0xed92b0, - 0xed92b1, - 0xed92b2, - 0xed92b3, - 0xed92b4, - 0xed92b5, - 0xed92b6, - 0xed92b7, - 0xed92b8, - 0xed92b9, - 0xed92ba, - 0xed92bb, - 0xed92bc, - 0xed92bd, - 0xed92be, - 0xed92bf, - 0xed9380, - 0xed9381, - 0xed9382, - 0xed9383, - 0xed9384, - 0xed9385, - 0xed9386, - 0xed9387, - 0xed9388, - 0xed9389, - 0xed938a, - 0xed938b, - 0xed938c, - 0xed938d, - 0xed938e, - 0xed938f, - 0xed9390, - 0xed9391, - 0xed9392, - 0xed9393, - 0xed9394, - 0xed9395, - 0xed9396, - 0xed9397, - 0xed9398, - 0xed9399, - 0xed939a, - 0xed939b, - 0xed939c, - 0xed939d, - 0xed939e, - 0xed939f, - 0xed93a0, - 0xed93a1, - 0xed93a2, - 0xed93a3, - 0xed93a4, - 0xed93a5, - 0xed93a6, - 0xed93a7, - 0xed93a8, - 0xed93a9, - 0xed93aa, - 0xed93ab, - 0xed93ac, - 0xed93ad, - 0xed93ae, - 0xed93af, - 0xed93b0, - 0xed93b1, - 0xed93b2, - 0xed93b3, - 0xed93b4, - 0xed93b5, - 0xed93b6, - 0xed93b7, - 0xed93b8, - 0xed93b9, - 0xed93ba, - 0xed93bb, - 0xed93bc, - 0xed93bd, - 0xed93be, - 0xed93bf, - 0xed9480, - 0xed9481, - 0xed9482, - 0xed9483, - 0xed9484, - 0xed9485, - 0xed9486, - 0xed9487, - 0xed9488, - 0xed9489, - 0xed948a, - 0xed948b, - 0xed948c, - 0xed948d, - 0xed948e, - 0xed948f, - 0xed9490, - 0xed9491, - 0xed9492, - 0xed9493, - 0xed9494, - 0xed9495, - 0xed9496, - 0xed9497, - 0xed9498, - 0xed9499, - 0xed949a, - 0xed949b, - 0xed949c, - 0xed949d, - 0xed949e, - 0xed949f, - 0xed94a0, - 0xed94a1, - 0xed94a2, - 0xed94a3, - 0xed94a4, - 0xed94a5, - 0xed94a6, - 0xed94a7, - 0xed94a8, - 0xed94a9, - 0xed94aa, - 0xed94ab, - 0xed94ac, - 0xed94ad, - 0xed94ae, - 0xed94af, - 0xed94b0, - 0xed94b1, - 0xed94b2, - 0xed94b3, - 0xed94b4, - 0xed94b5, - 0xed94b6, - 0xed94b7, - 0xed94b8, - 0xed94b9, - 0xed94ba, - 0xed94bb, - 0xed94bc, - 0xed94bd, - 0xed94be, - 0xed94bf, - 0xed9580, - 0xed9581, - 0xed9582, - 0xed9583, - 0xed9584, - 0xed9585, - 0xed9586, - 0xed9587, - 0xed9588, - 0xed9589, - 0xed958a, - 0xed958b, - 0xed958c, - 0xed958d, - 0xed958e, - 0xed958f, - 0xed9590, - 0xed9591, - 0xed9592, - 0xed9593, - 0xed9594, - 0xed9595, - 0xed9596, - 0xed9597, - 0xed9598, - 0xed9599, - 0xed959a, - 0xed959b, - 0xed959c, - 0xed959d, - 0xed959e, - 0xed959f, - 0xed95a0, - 0xed95a1, - 0xed95a2, - 0xed95a3, - 0xed95a4, - 0xed95a5, - 0xed95a6, - 0xed95a7, - 0xed95a8, - 0xed95a9, - 0xed95aa, - 0xed95ab, - 0xed95ac, - 0xed95ad, - 0xed95ae, - 0xed95af, - 0xed95b0, - 0xed95b1, - 0xed95b2, - 0xed95b3, - 0xed95b4, - 0xed95b5, - 0xed95b6, - 0xed95b7, - 0xed95b8, - 0xed95b9, - 0xed95ba, - 0xed95bb, - 0xed95bc, - 0xed95bd, - 0xed95be, - 0xed95bf, - 0xed9680, - 0xed9681, - 0xed9682, - 0xed9683, - 0xed9684, - 0xed9685, - 0xed9686, - 0xed9687, - 0xed9688, - 0xed9689, - 0xed968a, - 0xed968b, - 0xed968c, - 0xed968d, - 0xed968e, - 0xed968f, - 0xed9690, - 0xed9691, - 0xed9692, - 0xed9693, - 0xed9694, - 0xed9695, - 0xed9696, - 0xed9697, - 0xed9698, - 0xed9699, - 0xed969a, - 0xed969b, - 0xed969c, - 0xed969d, - 0xed969e, - 0xed969f, - 0xed96a0, - 0xed96a1, - 0xed96a2, - 0xed96a3, - 0xed96a4, - 0xed96a5, - 0xed96a6, - 0xed96a7, - 0xed96a8, - 0xed96a9, - 0xed96aa, - 0xed96ab, - 0xed96ac, - 0xed96ad, - 0xed96ae, - 0xed96af, - 0xed96b0, - 0xed96b1, - 0xed96b2, - 0xed96b3, - 0xed96b4, - 0xed96b5, - 0xed96b6, - 0xed96b7, - 0xed96b8, - 0xed96b9, - 0xed96ba, - 0xed96bb, - 0xed96bc, - 0xed96bd, - 0xed96be, - 0xed96bf, - 0xed9780, - 0xed9781, - 0xed9782, - 0xed9783, - 0xed9784, - 0xed9785, - 0xed9786, - 0xed9787, - 0xed9788, - 0xed9789, - 0xed978a, - 0xed978b, - 0xed978c, - 0xed978d, - 0xed978e, - 0xed978f, - 0xed9790, - 0xed9791, - 0xed9792, - 0xed9793, - 0xed9794, - 0xed9795, - 0xed9796, - 0xed9797, - 0xed9798, - 0xed9799, - 0xed979a, - 0xed979b, - 0xed979c, - 0xed979d, - 0xed979e, - 0xed979f, - 0xed97a0, - 0xed97a1, - 0xed97a2, - 0xed97a3, - 0xed97a4, - 0xed97a5, - 0xed97a6, - 0xed97a7, - 0xed97a8, - 0xed97a9, - 0xed97aa, - 0xed97ab, - 0xed97ac, - 0xed97ad, - 0xed97ae, - 0xed97af, - 0xed97b0, - 0xed97b1, - 0xed97b2, - 0xed97b3, - 0xed97b4, - 0xed97b5, - 0xed97b6, - 0xed97b7, - 0xed97b8, - 0xed97b9, - 0xed97ba, - 0xed97bb, - 0xed97bc, - 0xed97bd, - 0xed97be, - 0xed97bf, - 0xed9880, - 0xed9881, - 0xed9882, - 0xed9883, - 0xed9884, - 0xed9885, - 0xed9886, - 0xed9887, - 0xed9888, - 0xed9889, - 0xed988a, - 0xed988b, - 0xed988c, - 0xed988d, - 0xed988e, - 0xed988f, - 0xed9890, - 0xed9891, - 0xed9892, - 0xed9893, - 0xed9894, - 0xed9895, - 0xed9896, - 0xed9897, - 0xed9898, - 0xed9899, - 0xed989a, - 0xed989b, - 0xed989c, - 0xed989d, - 0xed989e, - 0xed989f, - 0xed98a0, - 0xed98a1, - 0xed98a2, - 0xed98a3, - 0xed98a4, - 0xed98a5, - 0xed98a6, - 0xed98a7, - 0xed98a8, - 0xed98a9, - 0xed98aa, - 0xed98ab, - 0xed98ac, - 0xed98ad, - 0xed98ae, - 0xed98af, - 0xed98b0, - 0xed98b1, - 0xed98b2, - 0xed98b3, - 0xed98b4, - 0xed98b5, - 0xed98b6, - 0xed98b7, - 0xed98b8, - 0xed98b9, - 0xed98ba, - 0xed98bb, - 0xed98bc, - 0xed98bd, - 0xed98be, - 0xed98bf, - 0xed9980, - 0xed9981, - 0xed9982, - 0xed9983, - 0xed9984, - 0xed9985, - 0xed9986, - 0xed9987, - 0xed9988, - 0xed9989, - 0xed998a, - 0xed998b, - 0xed998c, - 0xed998d, - 0xed998e, - 0xed998f, - 0xed9990, - 0xed9991, - 0xed9992, - 0xed9993, - 0xed9994, - 0xed9995, - 0xed9996, - 0xed9997, - 0xed9998, - 0xed9999, - 0xed999a, - 0xed999b, - 0xed999c, - 0xed999d, - 0xed999e, - 0xed999f, - 0xed99a0, - 0xed99a1, - 0xed99a2, - 0xed99a3, - 0xed99a4, - 0xed99a5, - 0xed99a6, - 0xed99a7, - 0xed99a8, - 0xed99a9, - 0xed99aa, - 0xed99ab, - 0xed99ac, - 0xed99ad, - 0xed99ae, - 0xed99af, - 0xed99b0, - 0xed99b1, - 0xed99b2, - 0xed99b3, - 0xed99b4, - 0xed99b5, - 0xed99b6, - 0xed99b7, - 0xed99b8, - 0xed99b9, - 0xed99ba, - 0xed99bb, - 0xed99bc, - 0xed99bd, - 0xed99be, - 0xed99bf, - 0xed9a80, - 0xed9a81, - 0xed9a82, - 0xed9a83, - 0xed9a84, - 0xed9a85, - 0xed9a86, - 0xed9a87, - 0xed9a88, - 0xed9a89, - 0xed9a8a, - 0xed9a8b, - 0xed9a8c, - 0xed9a8d, - 0xed9a8e, - 0xed9a8f, - 0xed9a90, - 0xed9a91, - 0xed9a92, - 0xed9a93, - 0xed9a94, - 0xed9a95, - 0xed9a96, - 0xed9a97, - 0xed9a98, - 0xed9a99, - 0xed9a9a, - 0xed9a9b, - 0xed9a9c, - 0xed9a9d, - 0xed9a9e, - 0xed9a9f, - 0xed9aa0, - 0xed9aa1, - 0xed9aa2, - 0xed9aa3, - 0xed9aa4, - 0xed9aa5, - 0xed9aa6, - 0xed9aa7, - 0xed9aa8, - 0xed9aa9, - 0xed9aaa, - 0xed9aab, - 0xed9aac, - 0xed9aad, - 0xed9aae, - 0xed9aaf, - 0xed9ab0, - 0xed9ab1, - 0xed9ab2, - 0xed9ab3, - 0xed9ab4, - 0xed9ab5, - 0xed9ab6, - 0xed9ab7, - 0xed9ab8, - 0xed9ab9, - 0xed9aba, - 0xed9abb, - 0xed9abc, - 0xed9abd, - 0xed9abe, - 0xed9abf, - 0xed9b80, - 0xed9b81, - 0xed9b82, - 0xed9b83, - 0xed9b84, - 0xed9b85, - 0xed9b86, - 0xed9b87, - 0xed9b88, - 0xed9b89, - 0xed9b8a, - 0xed9b8b, - 0xed9b8c, - 0xed9b8d, - 0xed9b8e, - 0xed9b8f, - 0xed9b90, - 0xed9b91, - 0xed9b92, - 0xed9b93, - 0xed9b94, - 0xed9b95, - 0xed9b96, - 0xed9b97, - 0xed9b98, - 0xed9b99, - 0xed9b9a, - 0xed9b9b, - 0xed9b9c, - 0xed9b9d, - 0xed9b9e, - 0xed9b9f, - 0xed9ba0, - 0xed9ba1, - 0xed9ba2, - 0xed9ba3, - 0xed9ba4, - 0xed9ba5, - 0xed9ba6, - 0xed9ba7, - 0xed9ba8, - 0xed9ba9, - 0xed9baa, - 0xed9bab, - 0xed9bac, - 0xed9bad, - 0xed9bae, - 0xed9baf, - 0xed9bb0, - 0xed9bb1, - 0xed9bb2, - 0xed9bb3, - 0xed9bb4, - 0xed9bb5, - 0xed9bb6, - 0xed9bb7, - 0xed9bb8, - 0xed9bb9, - 0xed9bba, - 0xed9bbb, - 0xed9bbc, - 0xed9bbd, - 0xed9bbe, - 0xed9bbf, - 0xed9c80, - 0xed9c81, - 0xed9c82, - 0xed9c83, - 0xed9c84, - 0xed9c85, - 0xed9c86, - 0xed9c87, - 0xed9c88, - 0xed9c89, - 0xed9c8a, - 0xed9c8b, - 0xed9c8c, - 0xed9c8d, - 0xed9c8e, - 0xed9c8f, - 0xed9c90, - 0xed9c91, - 0xed9c92, - 0xed9c93, - 0xed9c94, - 0xed9c95, - 0xed9c96, - 0xed9c97, - 0xed9c98, - 0xed9c99, - 0xed9c9a, - 0xed9c9b, - 0xed9c9c, - 0xed9c9d, - 0xed9c9e, - 0xed9c9f, - 0xed9ca0, - 0xed9ca1, - 0xed9ca2, - 0xed9ca3, - 0xed9ca4, - 0xed9ca5, - 0xed9ca6, - 0xed9ca7, - 0xed9ca8, - 0xed9ca9, - 0xed9caa, - 0xed9cab, - 0xed9cac, - 0xed9cad, - 0xed9cae, - 0xed9caf, - 0xed9cb0, - 0xed9cb1, - 0xed9cb2, - 0xed9cb3, - 0xed9cb4, - 0xed9cb5, - 0xed9cb6, - 0xed9cb7, - 0xed9cb8, - 0xed9cb9, - 0xed9cba, - 0xed9cbb, - 0xed9cbc, - 0xed9cbd, - 0xed9cbe, - 0xed9cbf, - 0xed9d80, - 0xed9d81, - 0xed9d82, - 0xed9d83, - 0xed9d84, - 0xed9d85, - 0xed9d86, - 0xed9d87, - 0xed9d88, - 0xed9d89, - 0xed9d8a, - 0xed9d8b, - 0xed9d8c, - 0xed9d8d, - 0xed9d8e, - 0xed9d8f, - 0xed9d90, - 0xed9d91, - 0xed9d92, - 0xed9d93, - 0xed9d94, - 0xed9d95, - 0xed9d96, - 0xed9d97, - 0xed9d98, - 0xed9d99, - 0xed9d9a, - 0xed9d9b, - 0xed9d9c, - 0xed9d9d, - 0xed9d9e, - 0xed9d9f, - 0xed9da0, - 0xed9da1, - 0xed9da2, - 0xed9da3, - 0xed9da4, - 0xed9da5, - 0xed9da6, - 0xed9da7, - 0xed9da8, - 0xed9da9, - 0xed9daa, - 0xed9dab, - 0xed9dac, - 0xed9dad, - 0xed9dae, - 0xed9daf, - 0xed9db0, - 0xed9db1, - 0xed9db2, - 0xed9db3, - 0xed9db4, - 0xed9db5, - 0xed9db6, - 0xed9db7, - 0xed9db8, - 0xed9db9, - 0xed9dba, - 0xed9dbb, - 0xed9dbc, - 0xed9dbd, - 0xed9dbe, - 0xed9dbf, - 0xed9e80, - 0xed9e81, - 0xed9e82, - 0xed9e83, - 0xed9e84, - 0xed9e85, - 0xed9e86, - 0xed9e87, - 0xed9e88, - 0xed9e89, - 0xed9e8a, - 0xed9e8b, - 0xed9e8c, - 0xed9e8d, - 0xed9e8e, - 0xed9e8f, - 0xed9e90, - 0xed9e91, - 0xed9e92, - 0xed9e93, - 0xed9e94, - 0xed9e95, - 0xed9e96, - 0xed9e97, - 0xed9e98, - 0xed9e99, - 0xed9e9a, - 0xed9e9b, - 0xed9e9c, - 0xed9e9d, - 0xed9e9e, - 0xed9e9f, - 0xed9ea0, - 0xed9ea1, - 0xed9ea2, - 0xed9ea3, - 0xed9ea4, - 0xed9ea5, - 0xed9ea6, - 0xed9ea7, - 0xed9ea8, - 0xed9ea9, - 0xed9eaa, - 0xed9eab, - 0xed9eac, - 0xed9ead, - 0xed9eae, - 0xed9eaf, - 0xed9eb0, - 0xed9eb1, - 0xed9eb2, - 0xed9eb3, - 0xed9eb4, - 0xed9eb5, - 0xed9eb6, - 0xed9eb7, - 0xed9eb8, - 0xed9eb9, - 0xed9eba, - 0xed9ebb, - 0xed9ebc, - 0xed9ebd, - 0xed9ebe, - 0xed9ebf, - 0xed9f80, - 0xed9f81, - 0xed9f82, - 0xed9f83, - 0xed9f84, - 0xed9f85, - 0xed9f86, - 0xed9f87, - 0xed9f88, - 0xed9f89, - 0xed9f8a, - 0xed9f8b, - 0xed9f8c, - 0xed9f8d, - 0xed9f8e, - 0xed9f8f, - 0xed9f90, - 0xed9f91, - 0xed9f92, - 0xed9f93, - 0xed9f94, - 0xed9f95, - 0xed9f96, - 0xed9f97, - 0xed9f98, - 0xed9f99, - 0xed9f9a, - 0xed9f9b, - 0xed9f9c, - 0xed9f9d, - 0xed9f9e, - 0xed9f9f, - 0xed9fa0, - 0xed9fa1, - 0xed9fa2, - 0xed9fa3, - 0xed9fa4, - 0xed9fa5, - 0xed9fa6, - 0xed9fa7, - 0xed9fa8, - 0xed9fa9, - 0xed9faa, - 0xed9fab, - 0xed9fac, - 0xed9fad, - 0xed9fae, - 0xed9faf, - 0xed9fb0, - 0xed9fb1, - 0xed9fb2, - 0xed9fb3, - 0xed9fb4, - 0xed9fb5, - 0xed9fb6, - 0xed9fb7, - 0xed9fb8, - 0xed9fb9, - 0xed9fba, - 0xed9fbb, - 0xed9fbc, - 0xed9fbd, - 0xed9fbe, - 0xed9fbf, - 0xee8080, - 0xee8081, - 0xee8082, - 0xee8083, - 0xee8084, - 0xee8085, - 0xee8086, - 0xee8087, - 0xee8088, - 0xee8089, - 0xee808a, - 0xee808b, - 0xee808c, - 0xee808d, - 0xee808e, - 0xee808f, - 0xee8090, - 0xee8091, - 0xee8092, - 0xee8093, - 0xee8094, - 0xee8095, - 0xee8096, - 0xee8097, - 0xee8098, - 0xee8099, - 0xee809a, - 0xee809b, - 0xee809c, - 0xee809d, - 0xee809e, - 0xee809f, - 0xee80a0, - 0xee80a1, - 0xee80a2, - 0xee80a3, - 0xee80a4, - 0xee80a5, - 0xee80a6, - 0xee80a7, - 0xee80a8, - 0xee80a9, - 0xee80aa, - 0xee80ab, - 0xee80ac, - 0xee80ad, - 0xee80ae, - 0xee80af, - 0xee80b0, - 0xee80b1, - 0xee80b2, - 0xee80b3, - 0xee80b4, - 0xee80b5, - 0xee80b6, - 0xee80b7, - 0xee80b8, - 0xee80b9, - 0xee80ba, - 0xee80bb, - 0xee80bc, - 0xee80bd, - 0xee80be, - 0xee80bf, - 0xee8180, - 0xee8181, - 0xee8182, - 0xee8183, - 0xee8184, - 0xee8185, - 0xee8186, - 0xee8187, - 0xee8188, - 0xee8189, - 0xee818a, - 0xee818b, - 0xee818c, - 0xee818d, - 0xee818e, - 0xee818f, - 0xee8190, - 0xee8191, - 0xee8192, - 0xee8193, - 0xee8194, - 0xee8195, - 0xee8196, - 0xee8197, - 0xee8198, - 0xee8199, - 0xee819a, - 0xee819b, - 0xee819c, - 0xee819d, - 0xee819e, - 0xee819f, - 0xee81a0, - 0xee81a1, - 0xee81a2, - 0xee81a3, - 0xee81a4, - 0xee81a5, - 0xee81a6, - 0xee81a7, - 0xee81a8, - 0xee81a9, - 0xee81aa, - 0xee81ab, - 0xee81ac, - 0xee81ad, - 0xee81ae, - 0xee81af, - 0xee81b0, - 0xee81b1, - 0xee81b2, - 0xee81b3, - 0xee81b4, - 0xee81b5, - 0xee81b6, - 0xee81b7, - 0xee81b8, - 0xee81b9, - 0xee81ba, - 0xee81bb, - 0xee81bc, - 0xee81bd, - 0xee81be, - 0xee81bf, - 0xee8280, - 0xee8281, - 0xee8282, - 0xee8283, - 0xee8284, - 0xee8285, - 0xee8286, - 0xee8287, - 0xee8288, - 0xee8289, - 0xee828a, - 0xee828b, - 0xee828c, - 0xee828d, - 0xee828e, - 0xee828f, - 0xee8290, - 0xee8291, - 0xee8292, - 0xee8293, - 0xee8294, - 0xee8295, - 0xee8296, - 0xee8297, - 0xee8298, - 0xee8299, - 0xee829a, - 0xee829b, - 0xee829c, - 0xee829d, - 0xee829e, - 0xee829f, - 0xee82a0, - 0xee82a1, - 0xee82a2, - 0xee82a3, - 0xee82a4, - 0xee82a5, - 0xee82a6, - 0xee82a7, - 0xee82a8, - 0xee82a9, - 0xee82aa, - 0xee82ab, - 0xee82ac, - 0xee82ad, - 0xee82ae, - 0xee82af, - 0xee82b0, - 0xee82b1, - 0xee82b2, - 0xee82b3, - 0xee82b4, - 0xee82b5, - 0xee82b6, - 0xee82b7, - 0xee82b8, - 0xee82b9, - 0xee82ba, - 0xee82bb, - 0xee82bc, - 0xee82bd, - 0xee82be, - 0xee82bf, - 0xee8380, - 0xee8381, - 0xee8382, - 0xee8383, - 0xee8384, - 0xee8385, - 0xee8386, - 0xee8387, - 0xee8388, - 0xee8389, - 0xee838a, - 0xee838b, - 0xee838c, - 0xee838d, - 0xee838e, - 0xee838f, - 0xee8390, - 0xee8391, - 0xee8392, - 0xee8393, - 0xee8394, - 0xee8395, - 0xee8396, - 0xee8397, - 0xee8398, - 0xee8399, - 0xee839a, - 0xee839b, - 0xee839c, - 0xee839d, - 0xee839e, - 0xee839f, - 0xee83a0, - 0xee83a1, - 0xee83a2, - 0xee83a3, - 0xee83a4, - 0xee83a5, - 0xee83a6, - 0xee83a7, - 0xee83a8, - 0xee83a9, - 0xee83aa, - 0xee83ab, - 0xee83ac, - 0xee83ad, - 0xee83ae, - 0xee83af, - 0xee83b0, - 0xee83b1, - 0xee83b2, - 0xee83b3, - 0xee83b4, - 0xee83b5, - 0xee83b6, - 0xee83b7, - 0xee83b8, - 0xee83b9, - 0xee83ba, - 0xee83bb, - 0xee83bc, - 0xee83bd, - 0xee83be, - 0xee83bf, - 0xee8480, - 0xee8481, - 0xee8482, - 0xee8483, - 0xee8484, - 0xee8485, - 0xee8486, - 0xee8487, - 0xee8488, - 0xee8489, - 0xee848a, - 0xee848b, - 0xee848c, - 0xee848d, - 0xee848e, - 0xee848f, - 0xee8490, - 0xee8491, - 0xee8492, - 0xee8493, - 0xee8494, - 0xee8495, - 0xee8496, - 0xee8497, - 0xee8498, - 0xee8499, - 0xee849a, - 0xee849b, - 0xee849c, - 0xee849d, - 0xee849e, - 0xee849f, - 0xee84a0, - 0xee84a1, - 0xee84a2, - 0xee84a3, - 0xee84a4, - 0xee84a5, - 0xee84a6, - 0xee84a7, - 0xee84a8, - 0xee84a9, - 0xee84aa, - 0xee84ab, - 0xee84ac, - 0xee84ad, - 0xee84ae, - 0xee84af, - 0xee84b0, - 0xee84b1, - 0xee84b2, - 0xee84b3, - 0xee84b4, - 0xee84b5, - 0xee84b6, - 0xee84b7, - 0xee84b8, - 0xee84b9, - 0xee84ba, - 0xee84bb, - 0xee84bc, - 0xee84bd, - 0xee84be, - 0xee84bf, - 0xee8580, - 0xee8581, - 0xee8582, - 0xee8583, - 0xee8584, - 0xee8585, - 0xee8586, - 0xee8587, - 0xee8588, - 0xee8589, - 0xee858a, - 0xee858b, - 0xee858c, - 0xee858d, - 0xee858e, - 0xee858f, - 0xee8590, - 0xee8591, - 0xee8592, - 0xee8593, - 0xee8594, - 0xee8595, - 0xee8596, - 0xee8597, - 0xee8598, - 0xee8599, - 0xee859a, - 0xee859b, - 0xee859c, - 0xee859d, - 0xee859e, - 0xee859f, - 0xee85a0, - 0xee85a1, - 0xee85a2, - 0xee85a3, - 0xee85a4, - 0xee85a5, - 0xee85a6, - 0xee85a7, - 0xee85a8, - 0xee85a9, - 0xee85aa, - 0xee85ab, - 0xee85ac, - 0xee85ad, - 0xee85ae, - 0xee85af, - 0xee85b0, - 0xee85b1, - 0xee85b2, - 0xee85b3, - 0xee85b4, - 0xee85b5, - 0xee85b6, - 0xee85b7, - 0xee85b8, - 0xee85b9, - 0xee85ba, - 0xee85bb, - 0xee85bc, - 0xee85bd, - 0xee85be, - 0xee85bf, - 0xee8680, - 0xee8681, - 0xee8682, - 0xee8683, - 0xee8684, - 0xee8685, - 0xee8686, - 0xee8687, - 0xee8688, - 0xee8689, - 0xee868a, - 0xee868b, - 0xee868c, - 0xee868d, - 0xee868e, - 0xee868f, - 0xee8690, - 0xee8691, - 0xee8692, - 0xee8693, - 0xee8694, - 0xee8695, - 0xee8696, - 0xee8697, - 0xee8698, - 0xee8699, - 0xee869a, - 0xee869b, - 0xee869c, - 0xee869d, - 0xee869e, - 0xee869f, - 0xee86a0, - 0xee86a1, - 0xee86a2, - 0xee86a3, - 0xee86a4, - 0xee86a5, - 0xee86a6, - 0xee86a7, - 0xee86a8, - 0xee86a9, - 0xee86aa, - 0xee86ab, - 0xee86ac, - 0xee86ad, - 0xee86ae, - 0xee86af, - 0xee86b0, - 0xee86b1, - 0xee86b2, - 0xee86b3, - 0xee86b4, - 0xee86b5, - 0xee86b6, - 0xee86b7, - 0xee86b8, - 0xee86b9, - 0xee86ba, - 0xee86bb, - 0xee86bc, - 0xee86bd, - 0xee86be, - 0xee86bf, - 0xee8780, - 0xee8781, - 0xee8782, - 0xee8783, - 0xee8784, - 0xee8785, - 0xee8786, - 0xee8787, - 0xee8788, - 0xee8789, - 0xee878a, - 0xee878b, - 0xee878c, - 0xee878d, - 0xee878e, - 0xee878f, - 0xee8790, - 0xee8791, - 0xee8792, - 0xee8793, - 0xee8794, - 0xee8795, - 0xee8796, - 0xee8797, - 0xee8798, - 0xee8799, - 0xee879a, - 0xee879b, - 0xee879c, - 0xee879d, - 0xee879e, - 0xee879f, - 0xee87a0, - 0xee87a1, - 0xee87a2, - 0xee87a3, - 0xee87a4, - 0xee87a5, - 0xee87a6, - 0xee87a7, - 0xee87a8, - 0xee87a9, - 0xee87aa, - 0xee87ab, - 0xee87ac, - 0xee87ad, - 0xee87ae, - 0xee87af, - 0xee87b0, - 0xee87b1, - 0xee87b2, - 0xee87b3, - 0xee87b4, - 0xee87b5, - 0xee87b6, - 0xee87b7, - 0xee87b8, - 0xee87b9, - 0xee87ba, - 0xee87bb, - 0xee87bc, - 0xee87bd, - 0xee87be, - 0xee87bf, - 0xee8880, - 0xee8881, - 0xee8882, - 0xee8883, - 0xee8884, - 0xee8885, - 0xee8886, - 0xee8887, - 0xee8888, - 0xee8889, - 0xee888a, - 0xee888b, - 0xee888c, - 0xee888d, - 0xee888e, - 0xee888f, - 0xee8890, - 0xee8891, - 0xee8892, - 0xee8893, - 0xee8894, - 0xee8895, - 0xee8896, - 0xee8897, - 0xee8898, - 0xee8899, - 0xee889a, - 0xee889b, - 0xee889c, - 0xee889d, - 0xee889e, - 0xee889f, - 0xee88a0, - 0xee88a1, - 0xee88a2, - 0xee88a3, - 0xee88a4, - 0xee88a5, - 0xee88a6, - 0xee88a7, - 0xee88a8, - 0xee88a9, - 0xee88aa, - 0xee88ab, - 0xee88ac, - 0xee88ad, - 0xee88ae, - 0xee88af, - 0xee88b0, - 0xee88b1, - 0xee88b2, - 0xee88b3, - 0xee88b4, - 0xee88b5, - 0xee88b6, - 0xee88b7, - 0xee88b8, - 0xee88b9, - 0xee88ba, - 0xee88bb, - 0xee88bc, - 0xee88bd, - 0xee88be, - 0xee88bf, - 0xee8980, - 0xee8981, - 0xee8982, - 0xee8983, - 0xee8984, - 0xee8985, - 0xee8986, - 0xee8987, - 0xee8988, - 0xee8989, - 0xee898a, - 0xee898b, - 0xee898c, - 0xee898d, - 0xee898e, - 0xee898f, - 0xee8990, - 0xee8991, - 0xee8992, - 0xee8993, - 0xee8994, - 0xee8995, - 0xee8996, - 0xee8997, - 0xee8998, - 0xee8999, - 0xee899a, - 0xee899b, - 0xee899c, - 0xee899d, - 0xee899e, - 0xee899f, - 0xee89a0, - 0xee89a1, - 0xee89a2, - 0xee89a3, - 0xee89a4, - 0xee89a5, - 0xee89a6, - 0xee89a7, - 0xee89a8, - 0xee89a9, - 0xee89aa, - 0xee89ab, - 0xee89ac, - 0xee89ad, - 0xee89ae, - 0xee89af, - 0xee89b0, - 0xee89b1, - 0xee89b2, - 0xee89b3, - 0xee89b4, - 0xee89b5, - 0xee89b6, - 0xee89b7, - 0xee89b8, - 0xee89b9, - 0xee89ba, - 0xee89bb, - 0xee89bc, - 0xee89bd, - 0xee89be, - 0xee89bf, - 0xee8a80, - 0xee8a81, - 0xee8a82, - 0xee8a83, - 0xee8a84, - 0xee8a85, - 0xee8a86, - 0xee8a87, - 0xee8a88, - 0xee8a89, - 0xee8a8a, - 0xee8a8b, - 0xee8a8c, - 0xee8a8d, - 0xee8a8e, - 0xee8a8f, - 0xee8a90, - 0xee8a91, - 0xee8a92, - 0xee8a93, - 0xee8a94, - 0xee8a95, - 0xee8a96, - 0xee8a97, - 0xee8a98, - 0xee8a99, - 0xee8a9a, - 0xee8a9b, - 0xee8a9c, - 0xee8a9d, - 0xee8a9e, - 0xee8a9f, - 0xee8aa0, - 0xee8aa1, - 0xee8aa2, - 0xee8aa3, - 0xee8aa4, - 0xee8aa5, - 0xee8aa6, - 0xee8aa7, - 0xee8aa8, - 0xee8aa9, - 0xee8aaa, - 0xee8aab, - 0xee8aac, - 0xee8aad, - 0xee8aae, - 0xee8aaf, - 0xee8ab0, - 0xee8ab1, - 0xee8ab2, - 0xee8ab3, - 0xee8ab4, - 0xee8ab5, - 0xee8ab6, - 0xee8ab7, - 0xee8ab8, - 0xee8ab9, - 0xee8aba, - 0xee8abb, - 0xee8abc, - 0xee8abd, - 0xee8abe, - 0xee8abf, - 0xee8b80, - 0xee8b81, - 0xee8b82, - 0xee8b83, - 0xee8b84, - 0xee8b85, - 0xee8b86, - 0xee8b87, - 0xee8b88, - 0xee8b89, - 0xee8b8a, - 0xee8b8b, - 0xee8b8c, - 0xee8b8d, - 0xee8b8e, - 0xee8b8f, - 0xee8b90, - 0xee8b91, - 0xee8b92, - 0xee8b93, - 0xee8b94, - 0xee8b95, - 0xee8b96, - 0xee8b97, - 0xee8b98, - 0xee8b99, - 0xee8b9a, - 0xee8b9b, - 0xee8b9c, - 0xee8b9d, - 0xee8b9e, - 0xee8b9f, - 0xee8ba0, - 0xee8ba1, - 0xee8ba2, - 0xee8ba3, - 0xee8ba4, - 0xee8ba5, - 0xee8ba6, - 0xee8ba7, - 0xee8ba8, - 0xee8ba9, - 0xee8baa, - 0xee8bab, - 0xee8bac, - 0xee8bad, - 0xee8bae, - 0xee8baf, - 0xee8bb0, - 0xee8bb1, - 0xee8bb2, - 0xee8bb3, - 0xee8bb4, - 0xee8bb5, - 0xee8bb6, - 0xee8bb7, - 0xee8bb8, - 0xee8bb9, - 0xee8bba, - 0xee8bbb, - 0xee8bbc, - 0xee8bbd, - 0xee8bbe, - 0xee8bbf, - 0xee8c80, - 0xee8c81, - 0xee8c82, - 0xee8c83, - 0xee8c84, - 0xee8c85, - 0xee8c86, - 0xee8c87, - 0xee8c88, - 0xee8c89, - 0xee8c8a, - 0xee8c8b, - 0xee8c8c, - 0xee8c8d, - 0xee8c8e, - 0xee8c8f, - 0xee8c90, - 0xee8c91, - 0xee8c92, - 0xee8c93, - 0xee8c94, - 0xee8c95, - 0xee8c96, - 0xee8c97, - 0xee8c98, - 0xee8c99, - 0xee8c9a, - 0xee8c9b, - 0xee8c9c, - 0xee8c9d, - 0xee8c9e, - 0xee8c9f, - 0xee8ca0, - 0xee8ca1, - 0xee8ca2, - 0xee8ca3, - 0xee8ca4, - 0xee8ca5, - 0xee8ca6, - 0xee8ca7, - 0xee8ca8, - 0xee8ca9, - 0xee8caa, - 0xee8cab, - 0xee8cac, - 0xee8cad, - 0xee8cae, - 0xee8caf, - 0xee8cb0, - 0xee8cb1, - 0xee8cb2, - 0xee8cb3, - 0xee8cb4, - 0xee8cb5, - 0xee8cb6, - 0xee8cb7, - 0xee8cb8, - 0xee8cb9, - 0xee8cba, - 0xee8cbb, - 0xee8cbc, - 0xee8cbd, - 0xee8cbe, - 0xee8cbf, - 0xee8d80, - 0xee8d81, - 0xee8d82, - 0xee8d83, - 0xee8d84, - 0xee8d85, - 0xee8d86, - 0xee8d87, - 0xee8d88, - 0xee8d89, - 0xee8d8a, - 0xee8d8b, - 0xee8d8c, - 0xee8d8d, - 0xee8d8e, - 0xee8d8f, - 0xee8d90, - 0xee8d91, - 0xee8d92, - 0xee8d93, - 0xee8d94, - 0xee8d95, - 0xee8d96, - 0xee8d97, - 0xee8d98, - 0xee8d99, - 0xee8d9a, - 0xee8d9b, - 0xee8d9c, - 0xee8d9d, - 0xee8d9e, - 0xee8d9f, - 0xee8da0, - 0xee8da1, - 0xee8da2, - 0xee8da3, - 0xee8da4, - 0xee8da5, - 0xee8da6, - 0xee8da7, - 0xee8da8, - 0xee8da9, - 0xee8daa, - 0xee8dab, - 0xee8dac, - 0xee8dad, - 0xee8dae, - 0xee8daf, - 0xee8db0, - 0xee8db1, - 0xee8db2, - 0xee8db3, - 0xee8db4, - 0xee8db5, - 0xee8db6, - 0xee8db7, - 0xee8db8, - 0xee8db9, - 0xee8dba, - 0xee8dbb, - 0xee8dbc, - 0xee8dbd, - 0xee8dbe, - 0xee8dbf, - 0xee8e80, - 0xee8e81, - 0xee8e82, - 0xee8e83, - 0xee8e84, - 0xee8e85, - 0xee8e86, - 0xee8e87, - 0xee8e88, - 0xee8e89, - 0xee8e8a, - 0xee8e8b, - 0xee8e8c, - 0xee8e8d, - 0xee8e8e, - 0xee8e8f, - 0xee8e90, - 0xee8e91, - 0xee8e92, - 0xee8e93, - 0xee8e94, - 0xee8e95, - 0xee8e96, - 0xee8e97, - 0xee8e98, - 0xee8e99, - 0xee8e9a, - 0xee8e9b, - 0xee8e9c, - 0xee8e9d, - 0xee8e9e, - 0xee8e9f, - 0xee8ea0, - 0xee8ea1, - 0xee8ea2, - 0xee8ea3, - 0xee8ea4, - 0xee8ea5, - 0xee8ea6, - 0xee8ea7, - 0xee8ea8, - 0xee8ea9, - 0xee8eaa, - 0xee8eab, - 0xee8eac, - 0xee8ead, - 0xee8eae, - 0xee8eaf, - 0xee8eb0, - 0xee8eb1, - 0xee8eb2, - 0xee8eb3, - 0xee8eb4, - 0xee8eb5, - 0xee8eb6, - 0xee8eb7, - 0xee8eb8, - 0xee8eb9, - 0xee8eba, - 0xee8ebb, - 0xee8ebc, - 0xee8ebd, - 0xee8ebe, - 0xee8ebf, - 0xee8f80, - 0xee8f81, - 0xee8f82, - 0xee8f83, - 0xee8f84, - 0xee8f85, - 0xee8f86, - 0xee8f87, - 0xee8f88, - 0xee8f89, - 0xee8f8a, - 0xee8f8b, - 0xee8f8c, - 0xee8f8d, - 0xee8f8e, - 0xee8f8f, - 0xee8f90, - 0xee8f91, - 0xee8f92, - 0xee8f93, - 0xee8f94, - 0xee8f95, - 0xee8f96, - 0xee8f97, - 0xee8f98, - 0xee8f99, - 0xee8f9a, - 0xee8f9b, - 0xee8f9c, - 0xee8f9d, - 0xee8f9e, - 0xee8f9f, - 0xee8fa0, - 0xee8fa1, - 0xee8fa2, - 0xee8fa3, - 0xee8fa4, - 0xee8fa5, - 0xee8fa6, - 0xee8fa7, - 0xee8fa8, - 0xee8fa9, - 0xee8faa, - 0xee8fab, - 0xee8fac, - 0xee8fad, - 0xee8fae, - 0xee8faf, - 0xee8fb0, - 0xee8fb1, - 0xee8fb2, - 0xee8fb3, - 0xee8fb4, - 0xee8fb5, - 0xee8fb6, - 0xee8fb7, - 0xee8fb8, - 0xee8fb9, - 0xee8fba, - 0xee8fbb, - 0xee8fbc, - 0xee8fbd, - 0xee8fbe, - 0xee8fbf, - 0xee9080, - 0xee9081, - 0xee9082, - 0xee9083, - 0xee9084, - 0xee9085, - 0xee9086, - 0xee9087, - 0xee9088, - 0xee9089, - 0xee908a, - 0xee908b, - 0xee908c, - 0xee908d, - 0xee908e, - 0xee908f, - 0xee9090, - 0xee9091, - 0xee9092, - 0xee9093, - 0xee9094, - 0xee9095, - 0xee9096, - 0xee9097, - 0xee9098, - 0xee9099, - 0xee909a, - 0xee909b, - 0xee909c, - 0xee909d, - 0xee909e, - 0xee909f, - 0xee90a0, - 0xee90a1, - 0xee90a2, - 0xee90a3, - 0xee90a4, - 0xee90a5, - 0xee90a6, - 0xee90a7, - 0xee90a8, - 0xee90a9, - 0xee90aa, - 0xee90ab, - 0xee90ac, - 0xee90ad, - 0xee90ae, - 0xee90af, - 0xee90b0, - 0xee90b1, - 0xee90b2, - 0xee90b3, - 0xee90b4, - 0xee90b5, - 0xee90b6, - 0xee90b7, - 0xee90b8, - 0xee90b9, - 0xee90ba, - 0xee90bb, - 0xee90bc, - 0xee90bd, - 0xee90be, - 0xee90bf, - 0xee9180, - 0xee9181, - 0xee9182, - 0xee9183, - 0xee9184, - 0xee9185, - 0xee9186, - 0xee9187, - 0xee9188, - 0xee9189, - 0xee918a, - 0xee918b, - 0xee918c, - 0xee918d, - 0xee918e, - 0xee918f, - 0xee9190, - 0xee9191, - 0xee9192, - 0xee9193, - 0xee9194, - 0xee9195, - 0xee9196, - 0xee9197, - 0xee9198, - 0xee9199, - 0xee919a, - 0xee919b, - 0xee919c, - 0xee919d, - 0xee919e, - 0xee919f, - 0xee91a0, - 0xee91a1, - 0xee91a2, - 0xee91a3, - 0xee91a4, - 0xee91a5, - 0xee91a6, - 0xee91a7, - 0xee91a8, - 0xee91a9, - 0xee91aa, - 0xee91ab, - 0xee91ac, - 0xee91ad, - 0xee91ae, - 0xee91af, - 0xee91b0, - 0xee91b1, - 0xee91b2, - 0xee91b3, - 0xee91b4, - 0xee91b5, - 0xee91b6, - 0xee91b7, - 0xee91b8, - 0xee91b9, - 0xee91ba, - 0xee91bb, - 0xee91bc, - 0xee91bd, - 0xee91be, - 0xee91bf, - 0xee9280, - 0xee9281, - 0xee9282, - 0xee9283, - 0xee9284, - 0xee9285, - 0xee9286, - 0xee9287, - 0xee9288, - 0xee9289, - 0xee928a, - 0xee928b, - 0xee928c, - 0xee928d, - 0xee928e, - 0xee928f, - 0xee9290, - 0xee9291, - 0xee9292, - 0xee9293, - 0xee9294, - 0xee9295, - 0xee9296, - 0xee9297, - 0xee9298, - 0xee9299, - 0xee929a, - 0xee929b, - 0xee929c, - 0xee929d, - 0xee929e, - 0xee929f, - 0xee92a0, - 0xee92a1, - 0xee92a2, - 0xee92a3, - 0xee92a4, - 0xee92a5, - 0xee92a6, - 0xee92a7, - 0xee92a8, - 0xee92a9, - 0xee92aa, - 0xee92ab, - 0xee92ac, - 0xee92ad, - 0xee92ae, - 0xee92af, - 0xee92b0, - 0xee92b1, - 0xee92b2, - 0xee92b3, - 0xee92b4, - 0xee92b5, - 0xee92b6, - 0xee92b7, - 0xee92b8, - 0xee92b9, - 0xee92ba, - 0xee92bb, - 0xee92bc, - 0xee92bd, - 0xee92be, - 0xee92bf, - 0xee9380, - 0xee9381, - 0xee9382, - 0xee9383, - 0xee9384, - 0xee9385, - 0xee9386, - 0xee9387, - 0xee9388, - 0xee9389, - 0xee938a, - 0xee938b, - 0xee938c, - 0xee938d, - 0xee938e, - 0xee938f, - 0xee9390, - 0xee9391, - 0xee9392, - 0xee9393, - 0xee9394, - 0xee9395, - 0xee9396, - 0xee9397, - 0xee9398, - 0xee9399, - 0xee939a, - 0xee939b, - 0xee939c, - 0xee939d, - 0xee939e, - 0xee939f, - 0xee93a0, - 0xee93a1, - 0xee93a2, - 0xee93a3, - 0xee93a4, - 0xee93a5, - 0xee93a6, - 0xee93a7, - 0xee93a8, - 0xee93a9, - 0xee93aa, - 0xee93ab, - 0xee93ac, - 0xee93ad, - 0xee93ae, - 0xee93af, - 0xee93b0, - 0xee93b1, - 0xee93b2, - 0xee93b3, - 0xee93b4, - 0xee93b5, - 0xee93b6, - 0xee93b7, - 0xee93b8, - 0xee93b9, - 0xee93ba, - 0xee93bb, - 0xee93bc, - 0xee93bd, - 0xee93be, - 0xee93bf, - 0xee9480, - 0xee9481, - 0xee9482, - 0xee9483, - 0xee9484, - 0xee9485, - 0xee9486, - 0xee9487, - 0xee9488, - 0xee9489, - 0xee948a, - 0xee948b, - 0xee948c, - 0xee948d, - 0xee948e, - 0xee948f, - 0xee9490, - 0xee9491, - 0xee9492, - 0xee9493, - 0xee9494, - 0xee9495, - 0xee9496, - 0xee9497, - 0xee9498, - 0xee9499, - 0xee949a, - 0xee949b, - 0xee949c, - 0xee949d, - 0xee949e, - 0xee949f, - 0xee94a0, - 0xee94a1, - 0xee94a2, - 0xee94a3, - 0xee94a4, - 0xee94a5, - 0xee94a6, - 0xee94a7, - 0xee94a8, - 0xee94a9, - 0xee94aa, - 0xee94ab, - 0xee94ac, - 0xee94ad, - 0xee94ae, - 0xee94af, - 0xee94b0, - 0xee94b1, - 0xee94b2, - 0xee94b3, - 0xee94b4, - 0xee94b5, - 0xee94b6, - 0xee94b7, - 0xee94b8, - 0xee94b9, - 0xee94ba, - 0xee94bb, - 0xee94bc, - 0xee94bd, - 0xee94be, - 0xee94bf, - 0xee9580, - 0xee9581, - 0xee9582, - 0xee9583, - 0xee9584, - 0xee9585, - 0xee9586, - 0xee9587, - 0xee9588, - 0xee9589, - 0xee958a, - 0xee958b, - 0xee958c, - 0xee958d, - 0xee958e, - 0xee958f, - 0xee9590, - 0xee9591, - 0xee9592, - 0xee9593, - 0xee9594, - 0xee9595, - 0xee9596, - 0xee9597, - 0xee9598, - 0xee9599, - 0xee959a, - 0xee959b, - 0xee959c, - 0xee959d, - 0xee959e, - 0xee959f, - 0xee95a0, - 0xee95a1, - 0xee95a2, - 0xee95a3, - 0xee95a4, - 0xee95a5, - 0xee95a6, - 0xee95a7, - 0xee95a8, - 0xee95a9, - 0xee95aa, - 0xee95ab, - 0xee95ac, - 0xee95ad, - 0xee95ae, - 0xee95af, - 0xee95b0, - 0xee95b1, - 0xee95b2, - 0xee95b3, - 0xee95b4, - 0xee95b5, - 0xee95b6, - 0xee95b7, - 0xee95b8, - 0xee95b9, - 0xee95ba, - 0xee95bb, - 0xee95bc, - 0xee95bd, - 0xee95be, - 0xee95bf, - 0xee9680, - 0xee9681, - 0xee9682, - 0xee9683, - 0xee9684, - 0xee9685, - 0xee9686, - 0xee9687, - 0xee9688, - 0xee9689, - 0xee968a, - 0xee968b, - 0xee968c, - 0xee968d, - 0xee968e, - 0xee968f, - 0xee9690, - 0xee9691, - 0xee9692, - 0xee9693, - 0xee9694, - 0xee9695, - 0xee9696, - 0xee9697, - 0xee9698, - 0xee9699, - 0xee969a, - 0xee969b, - 0xee969c, - 0xee969d, - 0xee969e, - 0xee969f, - 0xee96a0, - 0xee96a1, - 0xee96a2, - 0xee96a3, - 0xee96a4, - 0xee96a5, - 0xee96a6, - 0xee96a7, - 0xee96a8, - 0xee96a9, - 0xee96aa, - 0xee96ab, - 0xee96ac, - 0xee96ad, - 0xee96ae, - 0xee96af, - 0xee96b0, - 0xee96b1, - 0xee96b2, - 0xee96b3, - 0xee96b4, - 0xee96b5, - 0xee96b6, - 0xee96b7, - 0xee96b8, - 0xee96b9, - 0xee96ba, - 0xee96bb, - 0xee96bc, - 0xee96bd, - 0xee96be, - 0xee96bf, - 0xee9780, - 0xee9781, - 0xee9782, - 0xee9783, - 0xee9784, - 0xee9785, - 0xee9786, - 0xee9787, - 0xee9788, - 0xee9789, - 0xee978a, - 0xee978b, - 0xee978c, - 0xee978d, - 0xee978e, - 0xee978f, - 0xee9790, - 0xee9791, - 0xee9792, - 0xee9793, - 0xee9794, - 0xee9795, - 0xee9796, - 0xee9797, - 0xee9798, - 0xee9799, - 0xee979a, - 0xee979b, - 0xee979c, - 0xee979d, - 0xee979e, - 0xee979f, - 0xee97a0, - 0xee97a1, - 0xee97a2, - 0xee97a3, - 0xee97a4, - 0xee97a5, - 0xee97a6, - 0xee97a7, - 0xee97a8, - 0xee97a9, - 0xee97aa, - 0xee97ab, - 0xee97ac, - 0xee97ad, - 0xee97ae, - 0xee97af, - 0xee97b0, - 0xee97b1, - 0xee97b2, - 0xee97b3, - 0xee97b4, - 0xee97b5, - 0xee97b6, - 0xee97b7, - 0xee97b8, - 0xee97b9, - 0xee97ba, - 0xee97bb, - 0xee97bc, - 0xee97bd, - 0xee97be, - 0xee97bf, - 0xee9880, - 0xee9881, - 0xee9882, - 0xee9883, - 0xee9884, - 0xee9885, - 0xee9886, - 0xee9887, - 0xee9888, - 0xee9889, - 0xee988a, - 0xee988b, - 0xee988c, - 0xee988d, - 0xee988e, - 0xee988f, - 0xee9890, - 0xee9891, - 0xee9892, - 0xee9893, - 0xee9894, - 0xee9895, - 0xee9896, - 0xee9897, - 0xee9898, - 0xee9899, - 0xee989a, - 0xee989b, - 0xee989c, - 0xee989d, - 0xee989e, - 0xee989f, - 0xee98a0, - 0xee98a1, - 0xee98a2, - 0xee98a3, - 0xee98a4, - 0xee98a5, - 0xee98a6, - 0xee98a7, - 0xee98a8, - 0xee98a9, - 0xee98aa, - 0xee98ab, - 0xee98ac, - 0xee98ad, - 0xee98ae, - 0xee98af, - 0xee98b0, - 0xee98b1, - 0xee98b2, - 0xee98b3, - 0xee98b4, - 0xee98b5, - 0xee98b6, - 0xee98b7, - 0xee98b8, - 0xee98b9, - 0xee98ba, - 0xee98bb, - 0xee98bc, - 0xee98bd, - 0xee98be, - 0xee98bf, - 0xee9980, - 0xee9981, - 0xee9982, - 0xee9983, - 0xee9984, - 0xee9985, - 0xee9986, - 0xee9987, - 0xee9988, - 0xee9989, - 0xee998a, - 0xee998b, - 0xee998c, - 0xee998d, - 0xee998e, - 0xee998f, - 0xee9990, - 0xee9991, - 0xee9992, - 0xee9993, - 0xee9994, - 0xee9995, - 0xee9996, - 0xee9997, - 0xee9998, - 0xee9999, - 0xee999a, - 0xee999b, - 0xee999c, - 0xee999d, - 0xee999e, - 0xee999f, - 0xee99a0, - 0xee99a1, - 0xee99a2, - 0xee99a3, - 0xee99a4, - 0xee99a5, - 0xee99a6, - 0xee99a7, - 0xee99a8, - 0xee99a9, - 0xee99aa, - 0xee99ab, - 0xee99ac, - 0xee99ad, - 0xee99ae, - 0xee99af, - 0xee99b0, - 0xee99b1, - 0xee99b2, - 0xee99b3, - 0xee99b4, - 0xee99b5, - 0xee99b6, - 0xee99b7, - 0xee99b8, - 0xee99b9, - 0xee99ba, - 0xee99bb, - 0xee99bc, - 0xee99bd, - 0xee99be, - 0xee99bf, - 0xee9a80, - 0xee9a81, - 0xee9a82, - 0xee9a83, - 0xee9a84, - 0xee9a85, - 0xee9a86, - 0xee9a87, - 0xee9a88, - 0xee9a89, - 0xee9a8a, - 0xee9a8b, - 0xee9a8c, - 0xee9a8d, - 0xee9a8e, - 0xee9a8f, - 0xee9a90, - 0xee9a91, - 0xee9a92, - 0xee9a93, - 0xee9a94, - 0xee9a95, - 0xee9a96, - 0xee9a97, - 0xee9a98, - 0xee9a99, - 0xee9a9a, - 0xee9a9b, - 0xee9a9c, - 0xee9a9d, - 0xee9a9e, - 0xee9a9f, - 0xee9aa0, - 0xee9aa1, - 0xee9aa2, - 0xee9aa3, - 0xee9aa4, - 0xee9aa5, - 0xee9aa6, - 0xee9aa7, - 0xee9aa8, - 0xee9aa9, - 0xee9aaa, - 0xee9aab, - 0xee9aac, - 0xee9aad, - 0xee9aae, - 0xee9aaf, - 0xee9ab0, - 0xee9ab1, - 0xee9ab2, - 0xee9ab3, - 0xee9ab4, - 0xee9ab5, - 0xee9ab6, - 0xee9ab7, - 0xee9ab8, - 0xee9ab9, - 0xee9aba, - 0xee9abb, - 0xee9abc, - 0xee9abd, - 0xee9abe, - 0xee9abf, - 0xee9b80, - 0xee9b81, - 0xee9b82, - 0xee9b83, - 0xee9b84, - 0xee9b85, - 0xee9b86, - 0xee9b87, - 0xee9b88, - 0xee9b89, - 0xee9b8a, - 0xee9b8b, - 0xee9b8c, - 0xee9b8d, - 0xee9b8e, - 0xee9b8f, - 0xee9b90, - 0xee9b91, - 0xee9b92, - 0xee9b93, - 0xee9b94, - 0xee9b95, - 0xee9b96, - 0xee9b97, - 0xee9b98, - 0xee9b99, - 0xee9b9a, - 0xee9b9b, - 0xee9b9c, - 0xee9b9d, - 0xee9b9e, - 0xee9b9f, - 0xee9ba0, - 0xee9ba1, - 0xee9ba2, - 0xee9ba3, - 0xee9ba4, - 0xee9ba5, - 0xee9ba6, - 0xee9ba7, - 0xee9ba8, - 0xee9ba9, - 0xee9baa, - 0xee9bab, - 0xee9bac, - 0xee9bad, - 0xee9bae, - 0xee9baf, - 0xee9bb0, - 0xee9bb1, - 0xee9bb2, - 0xee9bb3, - 0xee9bb4, - 0xee9bb5, - 0xee9bb6, - 0xee9bb7, - 0xee9bb8, - 0xee9bb9, - 0xee9bba, - 0xee9bbb, - 0xee9bbc, - 0xee9bbd, - 0xee9bbe, - 0xee9bbf, - 0xee9c80, - 0xee9c81, - 0xee9c82, - 0xee9c83, - 0xee9c84, - 0xee9c85, - 0xee9c86, - 0xee9c87, - 0xee9c88, - 0xee9c89, - 0xee9c8a, - 0xee9c8b, - 0xee9c8c, - 0xee9c8d, - 0xee9c8e, - 0xee9c8f, - 0xee9c90, - 0xee9c91, - 0xee9c92, - 0xee9c93, - 0xee9c94, - 0xee9c95, - 0xee9c96, - 0xee9c97, - 0xee9c98, - 0xee9c99, - 0xee9c9a, - 0xee9c9b, - 0xee9c9c, - 0xee9c9d, - 0xee9c9e, - 0xee9c9f, - 0xee9ca0, - 0xee9ca1, - 0xee9ca2, - 0xee9ca3, - 0xee9ca4, - 0xee9ca5, - 0xee9ca6, - 0xee9ca7, - 0xee9ca8, - 0xee9ca9, - 0xee9caa, - 0xee9cab, - 0xee9cac, - 0xee9cad, - 0xee9cae, - 0xee9caf, - 0xee9cb0, - 0xee9cb1, - 0xee9cb2, - 0xee9cb3, - 0xee9cb4, - 0xee9cb5, - 0xee9cb6, - 0xee9cb7, - 0xee9cb8, - 0xee9cb9, - 0xee9cba, - 0xee9cbb, - 0xee9cbc, - 0xee9cbd, - 0xee9cbe, - 0xee9cbf, - 0xee9d80, - 0xee9d81, - 0xee9d82, - 0xee9d83, - 0xee9d84, - 0xee9d85, - 0xee9d86, - 0xee9d87, - 0xee9d88, - 0xee9d89, - 0xee9d8a, - 0xee9d8b, - 0xee9d8c, - 0xee9d8d, - 0xee9d8e, - 0xee9d8f, - 0xee9d90, - 0xee9d91, - 0xee9d92, - 0xee9d93, - 0xee9d94, - 0xee9d95, - 0xee9d96, - 0xee9d97, - 0xee9d98, - 0xee9d99, - 0xee9d9a, - 0xee9d9b, - 0xee9d9c, - 0xee9d9d, - 0xee9d9e, - 0xee9d9f, - 0xee9da0, - 0xee9da1, - 0xee9da2, - 0xee9da3, - 0xee9da4, - 0xee9da5, - 0xee9da6, - 0xee9da7, - 0xee9da8, - 0xee9da9, - 0xee9daa, - 0xee9dab, - 0xee9dac, - 0xee9dad, - 0xee9dae, - 0xee9daf, - 0xee9db0, - 0xee9db1, - 0xee9db2, - 0xee9db3, - 0xee9db4, - 0xee9db5, - 0xee9db6, - 0xee9db7, - 0xee9db8, - 0xee9db9, - 0xee9dba, - 0xee9dbb, - 0xee9dbc, - 0xee9dbd, - 0xee9dbe, - 0xee9dbf, - 0xee9e80, - 0xee9e81, - 0xee9e82, - 0xee9e83, - 0xee9e84, - 0xee9e85, - 0xee9e86, - 0xee9e87, - 0xee9e88, - 0xee9e89, - 0xee9e8a, - 0xee9e8b, - 0xee9e8c, - 0xee9e8d, - 0xee9e8e, - 0xee9e8f, - 0xee9e90, - 0xee9e91, - 0xee9e92, - 0xee9e93, - 0xee9e94, - 0xee9e95, - 0xee9e96, - 0xee9e97, - 0xee9e98, - 0xee9e99, - 0xee9e9a, - 0xee9e9b, - 0xee9e9c, - 0xee9e9d, - 0xee9e9e, - 0xee9e9f, - 0xee9ea0, - 0xee9ea1, - 0xee9ea2, - 0xee9ea3, - 0xee9ea4, - 0xee9ea5, - 0xee9ea6, - 0xee9ea7, - 0xee9ea8, - 0xee9ea9, - 0xee9eaa, - 0xee9eab, - 0xee9eac, - 0xee9ead, - 0xee9eae, - 0xee9eaf, - 0xee9eb0, - 0xee9eb1, - 0xee9eb2, - 0xee9eb3, - 0xee9eb4, - 0xee9eb5, - 0xee9eb6, - 0xee9eb7, - 0xee9eb8, - 0xee9eb9, - 0xee9eba, - 0xee9ebb, - 0xee9ebc, - 0xee9ebd, - 0xee9ebe, - 0xee9ebf, - 0xee9f80, - 0xee9f81, - 0xee9f82, - 0xee9f83, - 0xee9f84, - 0xee9f85, - 0xee9f86, - 0xee9f87, - 0xee9f88, - 0xee9f89, - 0xee9f8a, - 0xee9f8b, - 0xee9f8c, - 0xee9f8d, - 0xee9f8e, - 0xee9f8f, - 0xee9f90, - 0xee9f91, - 0xee9f92, - 0xee9f93, - 0xee9f94, - 0xee9f95, - 0xee9f96, - 0xee9f97, - 0xee9f98, - 0xee9f99, - 0xee9f9a, - 0xee9f9b, - 0xee9f9c, - 0xee9f9d, - 0xee9f9e, - 0xee9f9f, - 0xee9fa0, - 0xee9fa1, - 0xee9fa2, - 0xee9fa3, - 0xee9fa4, - 0xee9fa5, - 0xee9fa6, - 0xee9fa7, - 0xee9fa8, - 0xee9fa9, - 0xee9faa, - 0xee9fab, - 0xee9fac, - 0xee9fad, - 0xee9fae, - 0xee9faf, - 0xee9fb0, - 0xee9fb1, - 0xee9fb2, - 0xee9fb3, - 0xee9fb4, - 0xee9fb5, - 0xee9fb6, - 0xee9fb7, - 0xee9fb8, - 0xee9fb9, - 0xee9fba, - 0xee9fbb, - 0xee9fbc, - 0xee9fbd, - 0xee9fbe, - 0xee9fbf, - 0xeea080, - 0xeea081, - 0xeea082, - 0xeea083, - 0xeea084, - 0xeea085, - 0xeea086, - 0xeea087, - 0xeea088, - 0xeea089, - 0xeea08a, - 0xeea08b, - 0xeea08c, - 0xeea08d, - 0xeea08e, - 0xeea08f, - 0xeea090, - 0xeea091, - 0xeea092, - 0xeea093, - 0xeea094, - 0xeea095, - 0xeea096, - 0xeea097, - 0xeea098, - 0xeea099, - 0xeea09a, - 0xeea09b, - 0xeea09c, - 0xeea09d, - 0xeea09e, - 0xeea09f, - 0xeea0a0, - 0xeea0a1, - 0xeea0a2, - 0xeea0a3, - 0xeea0a4, - 0xeea0a5, - 0xeea0a6, - 0xeea0a7, - 0xeea0a8, - 0xeea0a9, - 0xeea0aa, - 0xeea0ab, - 0xeea0ac, - 0xeea0ad, - 0xeea0ae, - 0xeea0af, - 0xeea0b0, - 0xeea0b1, - 0xeea0b2, - 0xeea0b3, - 0xeea0b4, - 0xeea0b5, - 0xeea0b6, - 0xeea0b7, - 0xeea0b8, - 0xeea0b9, - 0xeea0ba, - 0xeea0bb, - 0xeea0bc, - 0xeea0bd, - 0xeea0be, - 0xeea0bf, - 0xeea180, - 0xeea181, - 0xeea182, - 0xeea183, - 0xeea184, - 0xeea185, - 0xeea186, - 0xeea187, - 0xeea188, - 0xeea189, - 0xeea18a, - 0xeea18b, - 0xeea18c, - 0xeea18d, - 0xeea18e, - 0xeea18f, - 0xeea190, - 0xeea191, - 0xeea192, - 0xeea193, - 0xeea194, - 0xeea195, - 0xeea196, - 0xeea197, - 0xeea198, - 0xeea199, - 0xeea19a, - 0xeea19b, - 0xeea19c, - 0xeea19d, - 0xeea19e, - 0xeea19f, - 0xeea1a0, - 0xeea1a1, - 0xeea1a2, - 0xeea1a3, - 0xeea1a4, - 0xeea1a5, - 0xeea1a6, - 0xeea1a7, - 0xeea1a8, - 0xeea1a9, - 0xeea1aa, - 0xeea1ab, - 0xeea1ac, - 0xeea1ad, - 0xeea1ae, - 0xeea1af, - 0xeea1b0, - 0xeea1b1, - 0xeea1b2, - 0xeea1b3, - 0xeea1b4, - 0xeea1b5, - 0xeea1b6, - 0xeea1b7, - 0xeea1b8, - 0xeea1b9, - 0xeea1ba, - 0xeea1bb, - 0xeea1bc, - 0xeea1bd, - 0xeea1be, - 0xeea1bf, - 0xeea280, - 0xeea281, - 0xeea282, - 0xeea283, - 0xeea284, - 0xeea285, - 0xeea286, - 0xeea287, - 0xeea288, - 0xeea289, - 0xeea28a, - 0xeea28b, - 0xeea28c, - 0xeea28d, - 0xeea28e, - 0xeea28f, - 0xeea290, - 0xeea291, - 0xeea292, - 0xeea293, - 0xeea294, - 0xeea295, - 0xeea296, - 0xeea297, - 0xeea298, - 0xeea299, - 0xeea29a, - 0xeea29b, - 0xeea29c, - 0xeea29d, - 0xeea29e, - 0xeea29f, - 0xeea2a0, - 0xeea2a1, - 0xeea2a2, - 0xeea2a3, - 0xeea2a4, - 0xeea2a5, - 0xeea2a6, - 0xeea2a7, - 0xeea2a8, - 0xeea2a9, - 0xeea2aa, - 0xeea2ab, - 0xeea2ac, - 0xeea2ad, - 0xeea2ae, - 0xeea2af, - 0xeea2b0, - 0xeea2b1, - 0xeea2b2, - 0xeea2b3, - 0xeea2b4, - 0xeea2b5, - 0xeea2b6, - 0xeea2b7, - 0xeea2b8, - 0xeea2b9, - 0xeea2ba, - 0xeea2bb, - 0xeea2bc, - 0xeea2bd, - 0xeea2be, - 0xeea2bf, - 0xeea380, - 0xeea381, - 0xeea382, - 0xeea383, - 0xeea384, - 0xeea385, - 0xeea386, - 0xeea387, - 0xeea388, - 0xeea389, - 0xeea38a, - 0xeea38b, - 0xeea38c, - 0xeea38d, - 0xeea38e, - 0xeea38f, - 0xeea390, - 0xeea391, - 0xeea392, - 0xeea393, - 0xeea394, - 0xeea395, - 0xeea396, - 0xeea397, - 0xeea398, - 0xeea399, - 0xeea39a, - 0xeea39b, - 0xeea39c, - 0xeea39d, - 0xeea39e, - 0xeea39f, - 0xeea3a0, - 0xeea3a1, - 0xeea3a2, - 0xeea3a3, - 0xeea3a4, - 0xeea3a5, - 0xeea3a6, - 0xeea3a7, - 0xeea3a8, - 0xeea3a9, - 0xeea3aa, - 0xeea3ab, - 0xeea3ac, - 0xeea3ad, - 0xeea3ae, - 0xeea3af, - 0xeea3b0, - 0xeea3b1, - 0xeea3b2, - 0xeea3b3, - 0xeea3b4, - 0xeea3b5, - 0xeea3b6, - 0xeea3b7, - 0xeea3b8, - 0xeea3b9, - 0xeea3ba, - 0xeea3bb, - 0xeea3bc, - 0xeea3bd, - 0xeea3be, - 0xeea3bf, - 0xeea480, - 0xeea481, - 0xeea482, - 0xeea483, - 0xeea484, - 0xeea485, - 0xeea486, - 0xeea487, - 0xeea488, - 0xeea489, - 0xeea48a, - 0xeea48b, - 0xeea48c, - 0xeea48d, - 0xeea48e, - 0xeea48f, - 0xeea490, - 0xeea491, - 0xeea492, - 0xeea493, - 0xeea494, - 0xeea495, - 0xeea496, - 0xeea497, - 0xeea498, - 0xeea499, - 0xeea49a, - 0xeea49b, - 0xeea49c, - 0xeea49d, - 0xeea49e, - 0xeea49f, - 0xeea4a0, - 0xeea4a1, - 0xeea4a2, - 0xeea4a3, - 0xeea4a4, - 0xeea4a5, - 0xeea4a6, - 0xeea4a7, - 0xeea4a8, - 0xeea4a9, - 0xeea4aa, - 0xeea4ab, - 0xeea4ac, - 0xeea4ad, - 0xeea4ae, - 0xeea4af, - 0xeea4b0, - 0xeea4b1, - 0xeea4b2, - 0xeea4b3, - 0xeea4b4, - 0xeea4b5, - 0xeea4b6, - 0xeea4b7, - 0xeea4b8, - 0xeea4b9, - 0xeea4ba, - 0xeea4bb, - 0xeea4bc, - 0xeea4bd, - 0xeea4be, - 0xeea4bf, - 0xeea580, - 0xeea581, - 0xeea582, - 0xeea583, - 0xeea584, - 0xeea585, - 0xeea586, - 0xeea587, - 0xeea588, - 0xeea589, - 0xeea58a, - 0xeea58b, - 0xeea58c, - 0xeea58d, - 0xeea58e, - 0xeea58f, - 0xeea590, - 0xeea591, - 0xeea592, - 0xeea593, - 0xeea594, - 0xeea595, - 0xeea596, - 0xeea597, - 0xeea598, - 0xeea599, - 0xeea59a, - 0xeea59b, - 0xeea59c, - 0xeea59d, - 0xeea59e, - 0xeea59f, - 0xeea5a0, - 0xeea5a1, - 0xeea5a2, - 0xeea5a3, - 0xeea5a4, - 0xeea5a5, - 0xeea5a6, - 0xeea5a7, - 0xeea5a8, - 0xeea5a9, - 0xeea5aa, - 0xeea5ab, - 0xeea5ac, - 0xeea5ad, - 0xeea5ae, - 0xeea5af, - 0xeea5b0, - 0xeea5b1, - 0xeea5b2, - 0xeea5b3, - 0xeea5b4, - 0xeea5b5, - 0xeea5b6, - 0xeea5b7, - 0xeea5b8, - 0xeea5b9, - 0xeea5ba, - 0xeea5bb, - 0xeea5bc, - 0xeea5bd, - 0xeea5be, - 0xeea5bf, - 0xeea680, - 0xeea681, - 0xeea682, - 0xeea683, - 0xeea684, - 0xeea685, - 0xeea686, - 0xeea687, - 0xeea688, - 0xeea689, - 0xeea68a, - 0xeea68b, - 0xeea68c, - 0xeea68d, - 0xeea68e, - 0xeea68f, - 0xeea690, - 0xeea691, - 0xeea692, - 0xeea693, - 0xeea694, - 0xeea695, - 0xeea696, - 0xeea697, - 0xeea698, - 0xeea699, - 0xeea69a, - 0xeea69b, - 0xeea69c, - 0xeea69d, - 0xeea69e, - 0xeea69f, - 0xeea6a0, - 0xeea6a1, - 0xeea6a2, - 0xeea6a3, - 0xeea6a4, - 0xeea6a5, - 0xeea6a6, - 0xeea6a7, - 0xeea6a8, - 0xeea6a9, - 0xeea6aa, - 0xeea6ab, - 0xeea6ac, - 0xeea6ad, - 0xeea6ae, - 0xeea6af, - 0xeea6b0, - 0xeea6b1, - 0xeea6b2, - 0xeea6b3, - 0xeea6b4, - 0xeea6b5, - 0xeea6b6, - 0xeea6b7, - 0xeea6b8, - 0xeea6b9, - 0xeea6ba, - 0xeea6bb, - 0xeea6bc, - 0xeea6bd, - 0xeea6be, - 0xeea6bf, - 0xeea780, - 0xeea781, - 0xeea782, - 0xeea783, - 0xeea784, - 0xeea785, - 0xeea786, - 0xeea787, - 0xeea788, - 0xeea789, - 0xeea78a, - 0xeea78b, - 0xeea78c, - 0xeea78d, - 0xeea78e, - 0xeea78f, - 0xeea790, - 0xeea791, - 0xeea792, - 0xeea793, - 0xeea794, - 0xeea795, - 0xeea796, - 0xeea797, - 0xeea798, - 0xeea799, - 0xeea79a, - 0xeea79b, - 0xeea79c, - 0xeea79d, - 0xeea79e, - 0xeea79f, - 0xeea7a0, - 0xeea7a1, - 0xeea7a2, - 0xeea7a3, - 0xeea7a4, - 0xeea7a5, - 0xeea7a6, - 0xeea7a7, - 0xeea7a8, - 0xeea7a9, - 0xeea7aa, - 0xeea7ab, - 0xeea7ac, - 0xeea7ad, - 0xeea7ae, - 0xeea7af, - 0xeea7b0, - 0xeea7b1, - 0xeea7b2, - 0xeea7b3, - 0xeea7b4, - 0xeea7b5, - 0xeea7b6, - 0xeea7b7, - 0xeea7b8, - 0xeea7b9, - 0xeea7ba, - 0xeea7bb, - 0xeea7bc, - 0xeea7bd, - 0xeea7be, - 0xeea7bf, - 0xeea880, - 0xeea881, - 0xeea882, - 0xeea883, - 0xeea884, - 0xeea885, - 0xeea886, - 0xeea887, - 0xeea888, - 0xeea889, - 0xeea88a, - 0xeea88b, - 0xeea88c, - 0xeea88d, - 0xeea88e, - 0xeea88f, - 0xeea890, - 0xeea891, - 0xeea892, - 0xeea893, - 0xeea894, - 0xeea895, - 0xeea896, - 0xeea897, - 0xeea898, - 0xeea899, - 0xeea89a, - 0xeea89b, - 0xeea89c, - 0xeea89d, - 0xeea89e, - 0xeea89f, - 0xeea8a0, - 0xeea8a1, - 0xeea8a2, - 0xeea8a3, - 0xeea8a4, - 0xeea8a5, - 0xeea8a6, - 0xeea8a7, - 0xeea8a8, - 0xeea8a9, - 0xeea8aa, - 0xeea8ab, - 0xeea8ac, - 0xeea8ad, - 0xeea8ae, - 0xeea8af, - 0xeea8b0, - 0xeea8b1, - 0xeea8b2, - 0xeea8b3, - 0xeea8b4, - 0xeea8b5, - 0xeea8b6, - 0xeea8b7, - 0xeea8b8, - 0xeea8b9, - 0xeea8ba, - 0xeea8bb, - 0xeea8bc, - 0xeea8bd, - 0xeea8be, - 0xeea8bf, - 0xeea980, - 0xeea981, - 0xeea982, - 0xeea983, - 0xeea984, - 0xeea985, - 0xeea986, - 0xeea987, - 0xeea988, - 0xeea989, - 0xeea98a, - 0xeea98b, - 0xeea98c, - 0xeea98d, - 0xeea98e, - 0xeea98f, - 0xeea990, - 0xeea991, - 0xeea992, - 0xeea993, - 0xeea994, - 0xeea995, - 0xeea996, - 0xeea997, - 0xeea998, - 0xeea999, - 0xeea99a, - 0xeea99b, - 0xeea99c, - 0xeea99d, - 0xeea99e, - 0xeea99f, - 0xeea9a0, - 0xeea9a1, - 0xeea9a2, - 0xeea9a3, - 0xeea9a4, - 0xeea9a5, - 0xeea9a6, - 0xeea9a7, - 0xeea9a8, - 0xeea9a9, - 0xeea9aa, - 0xeea9ab, - 0xeea9ac, - 0xeea9ad, - 0xeea9ae, - 0xeea9af, - 0xeea9b0, - 0xeea9b1, - 0xeea9b2, - 0xeea9b3, - 0xeea9b4, - 0xeea9b5, - 0xeea9b6, - 0xeea9b7, - 0xeea9b8, - 0xeea9b9, - 0xeea9ba, - 0xeea9bb, - 0xeea9bc, - 0xeea9bd, - 0xeea9be, - 0xeea9bf, - 0xeeaa80, - 0xeeaa81, - 0xeeaa82, - 0xeeaa83, - 0xeeaa84, - 0xeeaa85, - 0xeeaa86, - 0xeeaa87, - 0xeeaa88, - 0xeeaa89, - 0xeeaa8a, - 0xeeaa8b, - 0xeeaa8c, - 0xeeaa8d, - 0xeeaa8e, - 0xeeaa8f, - 0xeeaa90, - 0xeeaa91, - 0xeeaa92, - 0xeeaa93, - 0xeeaa94, - 0xeeaa95, - 0xeeaa96, - 0xeeaa97, - 0xeeaa98, - 0xeeaa99, - 0xeeaa9a, - 0xeeaa9b, - 0xeeaa9c, - 0xeeaa9d, - 0xeeaa9e, - 0xeeaa9f, - 0xeeaaa0, - 0xeeaaa1, - 0xeeaaa2, - 0xeeaaa3, - 0xeeaaa4, - 0xeeaaa5, - 0xeeaaa6, - 0xeeaaa7, - 0xeeaaa8, - 0xeeaaa9, - 0xeeaaaa, - 0xeeaaab, - 0xeeaaac, - 0xeeaaad, - 0xeeaaae, - 0xeeaaaf, - 0xeeaab0, - 0xeeaab1, - 0xeeaab2, - 0xeeaab3, - 0xeeaab4, - 0xeeaab5, - 0xeeaab6, - 0xeeaab7, - 0xeeaab8, - 0xeeaab9, - 0xeeaaba, - 0xeeaabb, - 0xeeaabc, - 0xeeaabd, - 0xeeaabe, - 0xeeaabf, - 0xeeab80, - 0xeeab81, - 0xeeab82, - 0xeeab83, - 0xeeab84, - 0xeeab85, - 0xeeab86, - 0xeeab87, - 0xeeab88, - 0xeeab89, - 0xeeab8a, - 0xeeab8b, - 0xeeab8c, - 0xeeab8d, - 0xeeab8e, - 0xeeab8f, - 0xeeab90, - 0xeeab91, - 0xeeab92, - 0xeeab93, - 0xeeab94, - 0xeeab95, - 0xeeab96, - 0xeeab97, - 0xeeab98, - 0xeeab99, - 0xeeab9a, - 0xeeab9b, - 0xeeab9c, - 0xeeab9d, - 0xeeab9e, - 0xeeab9f, - 0xeeaba0, - 0xeeaba1, - 0xeeaba2, - 0xeeaba3, - 0xeeaba4, - 0xeeaba5, - 0xeeaba6, - 0xeeaba7, - 0xeeaba8, - 0xeeaba9, - 0xeeabaa, - 0xeeabab, - 0xeeabac, - 0xeeabad, - 0xeeabae, - 0xeeabaf, - 0xeeabb0, - 0xeeabb1, - 0xeeabb2, - 0xeeabb3, - 0xeeabb4, - 0xeeabb5, - 0xeeabb6, - 0xeeabb7, - 0xeeabb8, - 0xeeabb9, - 0xeeabba, - 0xeeabbb, - 0xeeabbc, - 0xeeabbd, - 0xeeabbe, - 0xeeabbf, - 0xeeac80, - 0xeeac81, - 0xeeac82, - 0xeeac83, - 0xeeac84, - 0xeeac85, - 0xeeac86, - 0xeeac87, - 0xeeac88, - 0xeeac89, - 0xeeac8a, - 0xeeac8b, - 0xeeac8c, - 0xeeac8d, - 0xeeac8e, - 0xeeac8f, - 0xeeac90, - 0xeeac91, - 0xeeac92, - 0xeeac93, - 0xeeac94, - 0xeeac95, - 0xeeac96, - 0xeeac97, - 0xeeac98, - 0xeeac99, - 0xeeac9a, - 0xeeac9b, - 0xeeac9c, - 0xeeac9d, - 0xeeac9e, - 0xeeac9f, - 0xeeaca0, - 0xeeaca1, - 0xeeaca2, - 0xeeaca3, - 0xeeaca4, - 0xeeaca5, - 0xeeaca6, - 0xeeaca7, - 0xeeaca8, - 0xeeaca9, - 0xeeacaa, - 0xeeacab, - 0xeeacac, - 0xeeacad, - 0xeeacae, - 0xeeacaf, - 0xeeacb0, - 0xeeacb1, - 0xeeacb2, - 0xeeacb3, - 0xeeacb4, - 0xeeacb5, - 0xeeacb6, - 0xeeacb7, - 0xeeacb8, - 0xeeacb9, - 0xeeacba, - 0xeeacbb, - 0xeeacbc, - 0xeeacbd, - 0xeeacbe, - 0xeeacbf, - 0xeead80, - 0xeead81, - 0xeead82, - 0xeead83, - 0xeead84, - 0xeead85, - 0xeead86, - 0xeead87, - 0xeead88, - 0xeead89, - 0xeead8a, - 0xeead8b, - 0xeead8c, - 0xeead8d, - 0xeead8e, - 0xeead8f, - 0xeead90, - 0xeead91, - 0xeead92, - 0xeead93, - 0xeead94, - 0xeead95, - 0xeead96, - 0xeead97, - 0xeead98, - 0xeead99, - 0xeead9a, - 0xeead9b, - 0xeead9c, - 0xeead9d, - 0xeead9e, - 0xeead9f, - 0xeeada0, - 0xeeada1, - 0xeeada2, - 0xeeada3, - 0xeeada4, - 0xeeada5, - 0xeeada6, - 0xeeada7, - 0xeeada8, - 0xeeada9, - 0xeeadaa, - 0xeeadab, - 0xeeadac, - 0xeeadad, - 0xeeadae, - 0xeeadaf, - 0xeeadb0, - 0xeeadb1, - 0xeeadb2, - 0xeeadb3, - 0xeeadb4, - 0xeeadb5, - 0xeeadb6, - 0xeeadb7, - 0xeeadb8, - 0xeeadb9, - 0xeeadba, - 0xeeadbb, - 0xeeadbc, - 0xeeadbd, - 0xeeadbe, - 0xeeadbf, - 0xeeae80, - 0xeeae81, - 0xeeae82, - 0xeeae83, - 0xeeae84, - 0xeeae85, - 0xeeae86, - 0xeeae87, - 0xeeae88, - 0xeeae89, - 0xeeae8a, - 0xeeae8b, - 0xeeae8c, - 0xeeae8d, - 0xeeae8e, - 0xeeae8f, - 0xeeae90, - 0xeeae91, - 0xeeae92, - 0xeeae93, - 0xeeae94, - 0xeeae95, - 0xeeae96, - 0xeeae97, - 0xeeae98, - 0xeeae99, - 0xeeae9a, - 0xeeae9b, - 0xeeae9c, - 0xeeae9d, - 0xeeae9e, - 0xeeae9f, - 0xeeaea0, - 0xeeaea1, - 0xeeaea2, - 0xeeaea3, - 0xeeaea4, - 0xeeaea5, - 0xeeaea6, - 0xeeaea7, - 0xeeaea8, - 0xeeaea9, - 0xeeaeaa, - 0xeeaeab, - 0xeeaeac, - 0xeeaead, - 0xeeaeae, - 0xeeaeaf, - 0xeeaeb0, - 0xeeaeb1, - 0xeeaeb2, - 0xeeaeb3, - 0xeeaeb4, - 0xeeaeb5, - 0xeeaeb6, - 0xeeaeb7, - 0xeeaeb8, - 0xeeaeb9, - 0xeeaeba, - 0xeeaebb, - 0xeeaebc, - 0xeeaebd, - 0xeeaebe, - 0xeeaebf, - 0xeeaf80, - 0xeeaf81, - 0xeeaf82, - 0xeeaf83, - 0xeeaf84, - 0xeeaf85, - 0xeeaf86, - 0xeeaf87, - 0xeeaf88, - 0xeeaf89, - 0xeeaf8a, - 0xeeaf8b, - 0xeeaf8c, - 0xeeaf8d, - 0xeeaf8e, - 0xeeaf8f, - 0xeeaf90, - 0xeeaf91, - 0xeeaf92, - 0xeeaf93, - 0xeeaf94, - 0xeeaf95, - 0xeeaf96, - 0xeeaf97, - 0xeeaf98, - 0xeeaf99, - 0xeeaf9a, - 0xeeaf9b, - 0xeeaf9c, - 0xeeaf9d, - 0xeeaf9e, - 0xeeaf9f, - 0xeeafa0, - 0xeeafa1, - 0xeeafa2, - 0xeeafa3, - 0xeeafa4, - 0xeeafa5, - 0xeeafa6, - 0xeeafa7, - 0xeeafa8, - 0xeeafa9, - 0xeeafaa, - 0xeeafab, - 0xeeafac, - 0xeeafad, - 0xeeafae, - 0xeeafaf, - 0xeeafb0, - 0xeeafb1, - 0xeeafb2, - 0xeeafb3, - 0xeeafb4, - 0xeeafb5, - 0xeeafb6, - 0xeeafb7, - 0xeeafb8, - 0xeeafb9, - 0xeeafba, - 0xeeafbb, - 0xeeafbc, - 0xeeafbd, - 0xeeafbe, - 0xeeafbf, - 0xeeb080, - 0xeeb081, - 0xeeb082, - 0xeeb083, - 0xeeb084, - 0xeeb085, - 0xeeb086, - 0xeeb087, - 0xeeb088, - 0xeeb089, - 0xeeb08a, - 0xeeb08b, - 0xeeb08c, - 0xeeb08d, - 0xeeb08e, - 0xeeb08f, - 0xeeb090, - 0xeeb091, - 0xeeb092, - 0xeeb093, - 0xeeb094, - 0xeeb095, - 0xeeb096, - 0xeeb097, - 0xeeb098, - 0xeeb099, - 0xeeb09a, - 0xeeb09b, - 0xeeb09c, - 0xeeb09d, - 0xeeb09e, - 0xeeb09f, - 0xeeb0a0, - 0xeeb0a1, - 0xeeb0a2, - 0xeeb0a3, - 0xeeb0a4, - 0xeeb0a5, - 0xeeb0a6, - 0xeeb0a7, - 0xeeb0a8, - 0xeeb0a9, - 0xeeb0aa, - 0xeeb0ab, - 0xeeb0ac, - 0xeeb0ad, - 0xeeb0ae, - 0xeeb0af, - 0xeeb0b0, - 0xeeb0b1, - 0xeeb0b2, - 0xeeb0b3, - 0xeeb0b4, - 0xeeb0b5, - 0xeeb0b6, - 0xeeb0b7, - 0xeeb0b8, - 0xeeb0b9, - 0xeeb0ba, - 0xeeb0bb, - 0xeeb0bc, - 0xeeb0bd, - 0xeeb0be, - 0xeeb0bf, - 0xeeb180, - 0xeeb181, - 0xeeb182, - 0xeeb183, - 0xeeb184, - 0xeeb185, - 0xeeb186, - 0xeeb187, - 0xeeb188, - 0xeeb189, - 0xeeb18a, - 0xeeb18b, - 0xeeb18c, - 0xeeb18d, - 0xeeb18e, - 0xeeb18f, - 0xeeb190, - 0xeeb191, - 0xeeb192, - 0xeeb193, - 0xeeb194, - 0xeeb195, - 0xeeb196, - 0xeeb197, - 0xeeb198, - 0xeeb199, - 0xeeb19a, - 0xeeb19b, - 0xeeb19c, - 0xeeb19d, - 0xeeb19e, - 0xeeb19f, - 0xeeb1a0, - 0xeeb1a1, - 0xeeb1a2, - 0xeeb1a3, - 0xeeb1a4, - 0xeeb1a5, - 0xeeb1a6, - 0xeeb1a7, - 0xeeb1a8, - 0xeeb1a9, - 0xeeb1aa, - 0xeeb1ab, - 0xeeb1ac, - 0xeeb1ad, - 0xeeb1ae, - 0xeeb1af, - 0xeeb1b0, - 0xeeb1b1, - 0xeeb1b2, - 0xeeb1b3, - 0xeeb1b4, - 0xeeb1b5, - 0xeeb1b6, - 0xeeb1b7, - 0xeeb1b8, - 0xeeb1b9, - 0xeeb1ba, - 0xeeb1bb, - 0xeeb1bc, - 0xeeb1bd, - 0xeeb1be, - 0xeeb1bf, - 0xeeb280, - 0xeeb281, - 0xeeb282, - 0xeeb283, - 0xeeb284, - 0xeeb285, - 0xeeb286, - 0xeeb287, - 0xeeb288, - 0xeeb289, - 0xeeb28a, - 0xeeb28b, - 0xeeb28c, - 0xeeb28d, - 0xeeb28e, - 0xeeb28f, - 0xeeb290, - 0xeeb291, - 0xeeb292, - 0xeeb293, - 0xeeb294, - 0xeeb295, - 0xeeb296, - 0xeeb297, - 0xeeb298, - 0xeeb299, - 0xeeb29a, - 0xeeb29b, - 0xeeb29c, - 0xeeb29d, - 0xeeb29e, - 0xeeb29f, - 0xeeb2a0, - 0xeeb2a1, - 0xeeb2a2, - 0xeeb2a3, - 0xeeb2a4, - 0xeeb2a5, - 0xeeb2a6, - 0xeeb2a7, - 0xeeb2a8, - 0xeeb2a9, - 0xeeb2aa, - 0xeeb2ab, - 0xeeb2ac, - 0xeeb2ad, - 0xeeb2ae, - 0xeeb2af, - 0xeeb2b0, - 0xeeb2b1, - 0xeeb2b2, - 0xeeb2b3, - 0xeeb2b4, - 0xeeb2b5, - 0xeeb2b6, - 0xeeb2b7, - 0xeeb2b8, - 0xeeb2b9, - 0xeeb2ba, - 0xeeb2bb, - 0xeeb2bc, - 0xeeb2bd, - 0xeeb2be, - 0xeeb2bf, - 0xeeb380, - 0xeeb381, - 0xeeb382, - 0xeeb383, - 0xeeb384, - 0xeeb385, - 0xeeb386, - 0xeeb387, - 0xeeb388, - 0xeeb389, - 0xeeb38a, - 0xeeb38b, - 0xeeb38c, - 0xeeb38d, - 0xeeb38e, - 0xeeb38f, - 0xeeb390, - 0xeeb391, - 0xeeb392, - 0xeeb393, - 0xeeb394, - 0xeeb395, - 0xeeb396, - 0xeeb397, - 0xeeb398, - 0xeeb399, - 0xeeb39a, - 0xeeb39b, - 0xeeb39c, - 0xeeb39d, - 0xeeb39e, - 0xeeb39f, - 0xeeb3a0, - 0xeeb3a1, - 0xeeb3a2, - 0xeeb3a3, - 0xeeb3a4, - 0xeeb3a5, - 0xeeb3a6, - 0xeeb3a7, - 0xeeb3a8, - 0xeeb3a9, - 0xeeb3aa, - 0xeeb3ab, - 0xeeb3ac, - 0xeeb3ad, - 0xeeb3ae, - 0xeeb3af, - 0xeeb3b0, - 0xeeb3b1, - 0xeeb3b2, - 0xeeb3b3, - 0xeeb3b4, - 0xeeb3b5, - 0xeeb3b6, - 0xeeb3b7, - 0xeeb3b8, - 0xeeb3b9, - 0xeeb3ba, - 0xeeb3bb, - 0xeeb3bc, - 0xeeb3bd, - 0xeeb3be, - 0xeeb3bf, - 0xeeb480, - 0xeeb481, - 0xeeb482, - 0xeeb483, - 0xeeb484, - 0xeeb485, - 0xeeb486, - 0xeeb487, - 0xeeb488, - 0xeeb489, - 0xeeb48a, - 0xeeb48b, - 0xeeb48c, - 0xeeb48d, - 0xeeb48e, - 0xeeb48f, - 0xeeb490, - 0xeeb491, - 0xeeb492, - 0xeeb493, - 0xeeb494, - 0xeeb495, - 0xeeb496, - 0xeeb497, - 0xeeb498, - 0xeeb499, - 0xeeb49a, - 0xeeb49b, - 0xeeb49c, - 0xeeb49d, - 0xeeb49e, - 0xeeb49f, - 0xeeb4a0, - 0xeeb4a1, - 0xeeb4a2, - 0xeeb4a3, - 0xeeb4a4, - 0xeeb4a5, - 0xeeb4a6, - 0xeeb4a7, - 0xeeb4a8, - 0xeeb4a9, - 0xeeb4aa, - 0xeeb4ab, - 0xeeb4ac, - 0xeeb4ad, - 0xeeb4ae, - 0xeeb4af, - 0xeeb4b0, - 0xeeb4b1, - 0xeeb4b2, - 0xeeb4b3, - 0xeeb4b4, - 0xeeb4b5, - 0xeeb4b6, - 0xeeb4b7, - 0xeeb4b8, - 0xeeb4b9, - 0xeeb4ba, - 0xeeb4bb, - 0xeeb4bc, - 0xeeb4bd, - 0xeeb4be, - 0xeeb4bf, - 0xeeb580, - 0xeeb581, - 0xeeb582, - 0xeeb583, - 0xeeb584, - 0xeeb585, - 0xeeb586, - 0xeeb587, - 0xeeb588, - 0xeeb589, - 0xeeb58a, - 0xeeb58b, - 0xeeb58c, - 0xeeb58d, - 0xeeb58e, - 0xeeb58f, - 0xeeb590, - 0xeeb591, - 0xeeb592, - 0xeeb593, - 0xeeb594, - 0xeeb595, - 0xeeb596, - 0xeeb597, - 0xeeb598, - 0xeeb599, - 0xeeb59a, - 0xeeb59b, - 0xeeb59c, - 0xeeb59d, - 0xeeb59e, - 0xeeb59f, - 0xeeb5a0, - 0xeeb5a1, - 0xeeb5a2, - 0xeeb5a3, - 0xeeb5a4, - 0xeeb5a5, - 0xeeb5a6, - 0xeeb5a7, - 0xeeb5a8, - 0xeeb5a9, - 0xeeb5aa, - 0xeeb5ab, - 0xeeb5ac, - 0xeeb5ad, - 0xeeb5ae, - 0xeeb5af, - 0xeeb5b0, - 0xeeb5b1, - 0xeeb5b2, - 0xeeb5b3, - 0xeeb5b4, - 0xeeb5b5, - 0xeeb5b6, - 0xeeb5b7, - 0xeeb5b8, - 0xeeb5b9, - 0xeeb5ba, - 0xeeb5bb, - 0xeeb5bc, - 0xeeb5bd, - 0xeeb5be, - 0xeeb5bf, - 0xeeb680, - 0xeeb681, - 0xeeb682, - 0xeeb683, - 0xeeb684, - 0xeeb685, - 0xeeb686, - 0xeeb687, - 0xeeb688, - 0xeeb689, - 0xeeb68a, - 0xeeb68b, - 0xeeb68c, - 0xeeb68d, - 0xeeb68e, - 0xeeb68f, - 0xeeb690, - 0xeeb691, - 0xeeb692, - 0xeeb693, - 0xeeb694, - 0xeeb695, - 0xeeb696, - 0xeeb697, - 0xeeb698, - 0xeeb699, - 0xeeb69a, - 0xeeb69b, - 0xeeb69c, - 0xeeb69d, - 0xeeb69e, - 0xeeb69f, - 0xeeb6a0, - 0xeeb6a1, - 0xeeb6a2, - 0xeeb6a3, - 0xeeb6a4, - 0xeeb6a5, - 0xeeb6a6, - 0xeeb6a7, - 0xeeb6a8, - 0xeeb6a9, - 0xeeb6aa, - 0xeeb6ab, - 0xeeb6ac, - 0xeeb6ad, - 0xeeb6ae, - 0xeeb6af, - 0xeeb6b0, - 0xeeb6b1, - 0xeeb6b2, - 0xeeb6b3, - 0xeeb6b4, - 0xeeb6b5, - 0xeeb6b6, - 0xeeb6b7, - 0xeeb6b8, - 0xeeb6b9, - 0xeeb6ba, - 0xeeb6bb, - 0xeeb6bc, - 0xeeb6bd, - 0xeeb6be, - 0xeeb6bf, - 0xeeb780, - 0xeeb781, - 0xeeb782, - 0xeeb783, - 0xeeb784, - 0xeeb785, - 0xeeb786, - 0xeeb787, - 0xeeb788, - 0xeeb789, - 0xeeb78a, - 0xeeb78b, - 0xeeb78c, - 0xeeb78d, - 0xeeb78e, - 0xeeb78f, - 0xeeb790, - 0xeeb791, - 0xeeb792, - 0xeeb793, - 0xeeb794, - 0xeeb795, - 0xeeb796, - 0xeeb797, - 0xeeb798, - 0xeeb799, - 0xeeb79a, - 0xeeb79b, - 0xeeb79c, - 0xeeb79d, - 0xeeb79e, - 0xeeb79f, - 0xeeb7a0, - 0xeeb7a1, - 0xeeb7a2, - 0xeeb7a3, - 0xeeb7a4, - 0xeeb7a5, - 0xeeb7a6, - 0xeeb7a7, - 0xeeb7a8, - 0xeeb7a9, - 0xeeb7aa, - 0xeeb7ab, - 0xeeb7ac, - 0xeeb7ad, - 0xeeb7ae, - 0xeeb7af, - 0xeeb7b0, - 0xeeb7b1, - 0xeeb7b2, - 0xeeb7b3, - 0xeeb7b4, - 0xeeb7b5, - 0xeeb7b6, - 0xeeb7b7, - 0xeeb7b8, - 0xeeb7b9, - 0xeeb7ba, - 0xeeb7bb, - 0xeeb7bc, - 0xeeb7bd, - 0xeeb7be, - 0xeeb7bf, - 0xeeb880, - 0xeeb881, - 0xeeb882, - 0xeeb883, - 0xeeb884, - 0xeeb885, - 0xeeb886, - 0xeeb887, - 0xeeb888, - 0xeeb889, - 0xeeb88a, - 0xeeb88b, - 0xeeb88c, - 0xeeb88d, - 0xeeb88e, - 0xeeb88f, - 0xeeb890, - 0xeeb891, - 0xeeb892, - 0xeeb893, - 0xeeb894, - 0xeeb895, - 0xeeb896, - 0xeeb897, - 0xeeb898, - 0xeeb899, - 0xeeb89a, - 0xeeb89b, - 0xeeb89c, - 0xeeb89d, - 0xeeb89e, - 0xeeb89f, - 0xeeb8a0, - 0xeeb8a1, - 0xeeb8a2, - 0xeeb8a3, - 0xeeb8a4, - 0xeeb8a5, - 0xeeb8a6, - 0xeeb8a7, - 0xeeb8a8, - 0xeeb8a9, - 0xeeb8aa, - 0xeeb8ab, - 0xeeb8ac, - 0xeeb8ad, - 0xeeb8ae, - 0xeeb8af, - 0xeeb8b0, - 0xeeb8b1, - 0xeeb8b2, - 0xeeb8b3, - 0xeeb8b4, - 0xeeb8b5, - 0xeeb8b6, - 0xeeb8b7, - 0xeeb8b8, - 0xeeb8b9, - 0xeeb8ba, - 0xeeb8bb, - 0xeeb8bc, - 0xeeb8bd, - 0xeeb8be, - 0xeeb8bf, - 0xeeb980, - 0xeeb981, - 0xeeb982, - 0xeeb983, - 0xeeb984, - 0xeeb985, - 0xeeb986, - 0xeeb987, - 0xeeb988, - 0xeeb989, - 0xeeb98a, - 0xeeb98b, - 0xeeb98c, - 0xeeb98d, - 0xeeb98e, - 0xeeb98f, - 0xeeb990, - 0xeeb991, - 0xeeb992, - 0xeeb993, - 0xeeb994, - 0xeeb995, - 0xeeb996, - 0xeeb997, - 0xeeb998, - 0xeeb999, - 0xeeb99a, - 0xeeb99b, - 0xeeb99c, - 0xeeb99d, - 0xeeb99e, - 0xeeb99f, - 0xeeb9a0, - 0xeeb9a1, - 0xeeb9a2, - 0xeeb9a3, - 0xeeb9a4, - 0xeeb9a5, - 0xeeb9a6, - 0xeeb9a7, - 0xeeb9a8, - 0xeeb9a9, - 0xeeb9aa, - 0xeeb9ab, - 0xeeb9ac, - 0xeeb9ad, - 0xeeb9ae, - 0xeeb9af, - 0xeeb9b0, - 0xeeb9b1, - 0xeeb9b2, - 0xeeb9b3, - 0xeeb9b4, - 0xeeb9b5, - 0xeeb9b6, - 0xeeb9b7, - 0xeeb9b8, - 0xeeb9b9, - 0xeeb9ba, - 0xeeb9bb, - 0xeeb9bc, - 0xeeb9bd, - 0xeeb9be, - 0xeeb9bf, - 0xeeba80, - 0xeeba81, - 0xeeba82, - 0xeeba83, - 0xeeba84, - 0xeeba85, - 0xeeba86, - 0xeeba87, - 0xeeba88, - 0xeeba89, - 0xeeba8a, - 0xeeba8b, - 0xeeba8c, - 0xeeba8d, - 0xeeba8e, - 0xeeba8f, - 0xeeba90, - 0xeeba91, - 0xeeba92, - 0xeeba93, - 0xeeba94, - 0xeeba95, - 0xeeba96, - 0xeeba97, - 0xeeba98, - 0xeeba99, - 0xeeba9a, - 0xeeba9b, - 0xeeba9c, - 0xeeba9d, - 0xeeba9e, - 0xeeba9f, - 0xeebaa0, - 0xeebaa1, - 0xeebaa2, - 0xeebaa3, - 0xeebaa4, - 0xeebaa5, - 0xeebaa6, - 0xeebaa7, - 0xeebaa8, - 0xeebaa9, - 0xeebaaa, - 0xeebaab, - 0xeebaac, - 0xeebaad, - 0xeebaae, - 0xeebaaf, - 0xeebab0, - 0xeebab1, - 0xeebab2, - 0xeebab3, - 0xeebab4, - 0xeebab5, - 0xeebab6, - 0xeebab7, - 0xeebab8, - 0xeebab9, - 0xeebaba, - 0xeebabb, - 0xeebabc, - 0xeebabd, - 0xeebabe, - 0xeebabf, - 0xeebb80, - 0xeebb81, - 0xeebb82, - 0xeebb83, - 0xeebb84, - 0xeebb85, - 0xeebb86, - 0xeebb87, - 0xeebb88, - 0xeebb89, - 0xeebb8a, - 0xeebb8b, - 0xeebb8c, - 0xeebb8d, - 0xeebb8e, - 0xeebb8f, - 0xeebb90, - 0xeebb91, - 0xeebb92, - 0xeebb93, - 0xeebb94, - 0xeebb95, - 0xeebb96, - 0xeebb97, - 0xeebb98, - 0xeebb99, - 0xeebb9a, - 0xeebb9b, - 0xeebb9c, - 0xeebb9d, - 0xeebb9e, - 0xeebb9f, - 0xeebba0, - 0xeebba1, - 0xeebba2, - 0xeebba3, - 0xeebba4, - 0xeebba5, - 0xeebba6, - 0xeebba7, - 0xeebba8, - 0xeebba9, - 0xeebbaa, - 0xeebbab, - 0xeebbac, - 0xeebbad, - 0xeebbae, - 0xeebbaf, - 0xeebbb0, - 0xeebbb1, - 0xeebbb2, - 0xeebbb3, - 0xeebbb4, - 0xeebbb5, - 0xeebbb6, - 0xeebbb7, - 0xeebbb8, - 0xeebbb9, - 0xeebbba, - 0xeebbbb, - 0xeebbbc, - 0xeebbbd, - 0xeebbbe, - 0xeebbbf, - 0xeebc80, - 0xeebc81, - 0xeebc82, - 0xeebc83, - 0xeebc84, - 0xeebc85, - 0xeebc86, - 0xeebc87, - 0xeebc88, - 0xeebc89, - 0xeebc8a, - 0xeebc8b, - 0xeebc8c, - 0xeebc8d, - 0xeebc8e, - 0xeebc8f, - 0xeebc90, - 0xeebc91, - 0xeebc92, - 0xeebc93, - 0xeebc94, - 0xeebc95, - 0xeebc96, - 0xeebc97, - 0xeebc98, - 0xeebc99, - 0xeebc9a, - 0xeebc9b, - 0xeebc9c, - 0xeebc9d, - 0xeebc9e, - 0xeebc9f, - 0xeebca0, - 0xeebca1, - 0xeebca2, - 0xeebca3, - 0xeebca4, - 0xeebca5, - 0xeebca6, - 0xeebca7, - 0xeebca8, - 0xeebca9, - 0xeebcaa, - 0xeebcab, - 0xeebcac, - 0xeebcad, - 0xeebcae, - 0xeebcaf, - 0xeebcb0, - 0xeebcb1, - 0xeebcb2, - 0xeebcb3, - 0xeebcb4, - 0xeebcb5, - 0xeebcb6, - 0xeebcb7, - 0xeebcb8, - 0xeebcb9, - 0xeebcba, - 0xeebcbb, - 0xeebcbc, - 0xeebcbd, - 0xeebcbe, - 0xeebcbf, - 0xeebd80, - 0xeebd81, - 0xeebd82, - 0xeebd83, - 0xeebd84, - 0xeebd85, - 0xeebd86, - 0xeebd87, - 0xeebd88, - 0xeebd89, - 0xeebd8a, - 0xeebd8b, - 0xeebd8c, - 0xeebd8d, - 0xeebd8e, - 0xeebd8f, - 0xeebd90, - 0xeebd91, - 0xeebd92, - 0xeebd93, - 0xeebd94, - 0xeebd95, - 0xeebd96, - 0xeebd97, - 0xeebd98, - 0xeebd99, - 0xeebd9a, - 0xeebd9b, - 0xeebd9c, - 0xeebd9d, - 0xeebd9e, - 0xeebd9f, - 0xeebda0, - 0xeebda1, - 0xeebda2, - 0xeebda3, - 0xeebda4, - 0xeebda5, - 0xeebda6, - 0xeebda7, - 0xeebda8, - 0xeebda9, - 0xeebdaa, - 0xeebdab, - 0xeebdac, - 0xeebdad, - 0xeebdae, - 0xeebdaf, - 0xeebdb0, - 0xeebdb1, - 0xeebdb2, - 0xeebdb3, - 0xeebdb4, - 0xeebdb5, - 0xeebdb6, - 0xeebdb7, - 0xeebdb8, - 0xeebdb9, - 0xeebdba, - 0xeebdbb, - 0xeebdbc, - 0xeebdbd, - 0xeebdbe, - 0xeebdbf, - 0xeebe80, - 0xeebe81, - 0xeebe82, - 0xeebe83, - 0xeebe84, - 0xeebe85, - 0xeebe86, - 0xeebe87, - 0xeebe88, - 0xeebe89, - 0xeebe8a, - 0xeebe8b, - 0xeebe8c, - 0xeebe8d, - 0xeebe8e, - 0xeebe8f, - 0xeebe90, - 0xeebe91, - 0xeebe92, - 0xeebe93, - 0xeebe94, - 0xeebe95, - 0xeebe96, - 0xeebe97, - 0xeebe98, - 0xeebe99, - 0xeebe9a, - 0xeebe9b, - 0xeebe9c, - 0xeebe9d, - 0xeebe9e, - 0xeebe9f, - 0xeebea0, - 0xeebea1, - 0xeebea2, - 0xeebea3, - 0xeebea4, - 0xeebea5, - 0xeebea6, - 0xeebea7, - 0xeebea8, - 0xeebea9, - 0xeebeaa, - 0xeebeab, - 0xeebeac, - 0xeebead, - 0xeebeae, - 0xeebeaf, - 0xeebeb0, - 0xeebeb1, - 0xeebeb2, - 0xeebeb3, - 0xeebeb4, - 0xeebeb5, - 0xeebeb6, - 0xeebeb7, - 0xeebeb8, - 0xeebeb9, - 0xeebeba, - 0xeebebb, - 0xeebebc, - 0xeebebd, - 0xeebebe, - 0xeebebf, - 0xeebf80, - 0xeebf81, - 0xeebf82, - 0xeebf83, - 0xeebf84, - 0xeebf85, - 0xeebf86, - 0xeebf87, - 0xeebf88, - 0xeebf89, - 0xeebf8a, - 0xeebf8b, - 0xeebf8c, - 0xeebf8d, - 0xeebf8e, - 0xeebf8f, - 0xeebf90, - 0xeebf91, - 0xeebf92, - 0xeebf93, - 0xeebf94, - 0xeebf95, - 0xeebf96, - 0xeebf97, - 0xeebf98, - 0xeebf99, - 0xeebf9a, - 0xeebf9b, - 0xeebf9c, - 0xeebf9d, - 0xeebf9e, - 0xeebf9f, - 0xeebfa0, - 0xeebfa1, - 0xeebfa2, - 0xeebfa3, - 0xeebfa4, - 0xeebfa5, - 0xeebfa6, - 0xeebfa7, - 0xeebfa8, - 0xeebfa9, - 0xeebfaa, - 0xeebfab, - 0xeebfac, - 0xeebfad, - 0xeebfae, - 0xeebfaf, - 0xeebfb0, - 0xeebfb1, - 0xeebfb2, - 0xeebfb3, - 0xeebfb4, - 0xeebfb5, - 0xeebfb6, - 0xeebfb7, - 0xeebfb8, - 0xeebfb9, - 0xeebfba, - 0xeebfbb, - 0xeebfbc, - 0xeebfbd, - 0xeebfbe, - 0xeebfbf, - 0xef8080, - 0xef8081, - 0xef8082, - 0xef8083, - 0xef8084, - 0xef8085, - 0xef8086, - 0xef8087, - 0xef8088, - 0xef8089, - 0xef808a, - 0xef808b, - 0xef808c, - 0xef808d, - 0xef808e, - 0xef808f, - 0xef8090, - 0xef8091, - 0xef8092, - 0xef8093, - 0xef8094, - 0xef8095, - 0xef8096, - 0xef8097, - 0xef8098, - 0xef8099, - 0xef809a, - 0xef809b, - 0xef809c, - 0xef809d, - 0xef809e, - 0xef809f, - 0xef80a0, - 0xef80a1, - 0xef80a2, - 0xef80a3, - 0xef80a4, - 0xef80a5, - 0xef80a6, - 0xef80a7, - 0xef80a8, - 0xef80a9, - 0xef80aa, - 0xef80ab, - 0xef80ac, - 0xef80ad, - 0xef80ae, - 0xef80af, - 0xef80b0, - 0xef80b1, - 0xef80b2, - 0xef80b3, - 0xef80b4, - 0xef80b5, - 0xef80b6, - 0xef80b7, - 0xef80b8, - 0xef80b9, - 0xef80ba, - 0xef80bb, - 0xef80bc, - 0xef80bd, - 0xef80be, - 0xef80bf, - 0xef8180, - 0xef8181, - 0xef8182, - 0xef8183, - 0xef8184, - 0xef8185, - 0xef8186, - 0xef8187, - 0xef8188, - 0xef8189, - 0xef818a, - 0xef818b, - 0xef818c, - 0xef818d, - 0xef818e, - 0xef818f, - 0xef8190, - 0xef8191, - 0xef8192, - 0xef8193, - 0xef8194, - 0xef8195, - 0xef8196, - 0xef8197, - 0xef8198, - 0xef8199, - 0xef819a, - 0xef819b, - 0xef819c, - 0xef819d, - 0xef819e, - 0xef819f, - 0xef81a0, - 0xef81a1, - 0xef81a2, - 0xef81a3, - 0xef81a4, - 0xef81a5, - 0xef81a6, - 0xef81a7, - 0xef81a8, - 0xef81a9, - 0xef81aa, - 0xef81ab, - 0xef81ac, - 0xef81ad, - 0xef81ae, - 0xef81af, - 0xef81b0, - 0xef81b1, - 0xef81b2, - 0xef81b3, - 0xef81b4, - 0xef81b5, - 0xef81b6, - 0xef81b7, - 0xef81b8, - 0xef81b9, - 0xef81ba, - 0xef81bb, - 0xef81bc, - 0xef81bd, - 0xef81be, - 0xef81bf, - 0xef8280, - 0xef8281, - 0xef8282, - 0xef8283, - 0xef8284, - 0xef8285, - 0xef8286, - 0xef8287, - 0xef8288, - 0xef8289, - 0xef828a, - 0xef828b, - 0xef828c, - 0xef828d, - 0xef828e, - 0xef828f, - 0xef8290, - 0xef8291, - 0xef8292, - 0xef8293, - 0xef8294, - 0xef8295, - 0xef8296, - 0xef8297, - 0xef8298, - 0xef8299, - 0xef829a, - 0xef829b, - 0xef829c, - 0xef829d, - 0xef829e, - 0xef829f, - 0xef82a0, - 0xef82a1, - 0xef82a2, - 0xef82a3, - 0xef82a4, - 0xef82a5, - 0xef82a6, - 0xef82a7, - 0xef82a8, - 0xef82a9, - 0xef82aa, - 0xef82ab, - 0xef82ac, - 0xef82ad, - 0xef82ae, - 0xef82af, - 0xef82b0, - 0xef82b1, - 0xef82b2, - 0xef82b3, - 0xef82b4, - 0xef82b5, - 0xef82b6, - 0xef82b7, - 0xef82b8, - 0xef82b9, - 0xef82ba, - 0xef82bb, - 0xef82bc, - 0xef82bd, - 0xef82be, - 0xef82bf, - 0xef8380, - 0xef8381, - 0xef8382, - 0xef8383, - 0xef8384, - 0xef8385, - 0xef8386, - 0xef8387, - 0xef8388, - 0xef8389, - 0xef838a, - 0xef838b, - 0xef838c, - 0xef838d, - 0xef838e, - 0xef838f, - 0xef8390, - 0xef8391, - 0xef8392, - 0xef8393, - 0xef8394, - 0xef8395, - 0xef8396, - 0xef8397, - 0xef8398, - 0xef8399, - 0xef839a, - 0xef839b, - 0xef839c, - 0xef839d, - 0xef839e, - 0xef839f, - 0xef83a0, - 0xef83a1, - 0xef83a2, - 0xef83a3, - 0xef83a4, - 0xef83a5, - 0xef83a6, - 0xef83a7, - 0xef83a8, - 0xef83a9, - 0xef83aa, - 0xef83ab, - 0xef83ac, - 0xef83ad, - 0xef83ae, - 0xef83af, - 0xef83b0, - 0xef83b1, - 0xef83b2, - 0xef83b3, - 0xef83b4, - 0xef83b5, - 0xef83b6, - 0xef83b7, - 0xef83b8, - 0xef83b9, - 0xef83ba, - 0xef83bb, - 0xef83bc, - 0xef83bd, - 0xef83be, - 0xef83bf, - 0xef8480, - 0xef8481, - 0xef8482, - 0xef8483, - 0xef8484, - 0xef8485, - 0xef8486, - 0xef8487, - 0xef8488, - 0xef8489, - 0xef848a, - 0xef848b, - 0xef848c, - 0xef848d, - 0xef848e, - 0xef848f, - 0xef8490, - 0xef8491, - 0xef8492, - 0xef8493, - 0xef8494, - 0xef8495, - 0xef8496, - 0xef8497, - 0xef8498, - 0xef8499, - 0xef849a, - 0xef849b, - 0xef849c, - 0xef849d, - 0xef849e, - 0xef849f, - 0xef84a0, - 0xef84a1, - 0xef84a2, - 0xef84a3, - 0xef84a4, - 0xef84a5, - 0xef84a6, - 0xef84a7, - 0xef84a8, - 0xef84a9, - 0xef84aa, - 0xef84ab, - 0xef84ac, - 0xef84ad, - 0xef84ae, - 0xef84af, - 0xef84b0, - 0xef84b1, - 0xef84b2, - 0xef84b3, - 0xef84b4, - 0xef84b5, - 0xef84b6, - 0xef84b7, - 0xef84b8, - 0xef84b9, - 0xef84ba, - 0xef84bb, - 0xef84bc, - 0xef84bd, - 0xef84be, - 0xef84bf, - 0xef8580, - 0xef8581, - 0xef8582, - 0xef8583, - 0xef8584, - 0xef8585, - 0xef8586, - 0xef8587, - 0xef8588, - 0xef8589, - 0xef858a, - 0xef858b, - 0xef858c, - 0xef858d, - 0xef858e, - 0xef858f, - 0xef8590, - 0xef8591, - 0xef8592, - 0xef8593, - 0xef8594, - 0xef8595, - 0xef8596, - 0xef8597, - 0xef8598, - 0xef8599, - 0xef859a, - 0xef859b, - 0xef859c, - 0xef859d, - 0xef859e, - 0xef859f, - 0xef85a0, - 0xef85a1, - 0xef85a2, - 0xef85a3, - 0xef85a4, - 0xef85a5, - 0xef85a6, - 0xef85a7, - 0xef85a8, - 0xef85a9, - 0xef85aa, - 0xef85ab, - 0xef85ac, - 0xef85ad, - 0xef85ae, - 0xef85af, - 0xef85b0, - 0xef85b1, - 0xef85b2, - 0xef85b3, - 0xef85b4, - 0xef85b5, - 0xef85b6, - 0xef85b7, - 0xef85b8, - 0xef85b9, - 0xef85ba, - 0xef85bb, - 0xef85bc, - 0xef85bd, - 0xef85be, - 0xef85bf, - 0xef8680, - 0xef8681, - 0xef8682, - 0xef8683, - 0xef8684, - 0xef8685, - 0xef8686, - 0xef8687, - 0xef8688, - 0xef8689, - 0xef868a, - 0xef868b, - 0xef868c, - 0xef868d, - 0xef868e, - 0xef868f, - 0xef8690, - 0xef8691, - 0xef8692, - 0xef8693, - 0xef8694, - 0xef8695, - 0xef8696, - 0xef8697, - 0xef8698, - 0xef8699, - 0xef869a, - 0xef869b, - 0xef869c, - 0xef869d, - 0xef869e, - 0xef869f, - 0xef86a0, - 0xef86a1, - 0xef86a2, - 0xef86a3, - 0xef86a4, - 0xef86a5, - 0xef86a6, - 0xef86a7, - 0xef86a8, - 0xef86a9, - 0xef86aa, - 0xef86ab, - 0xef86ac, - 0xef86ad, - 0xef86ae, - 0xef86af, - 0xef86b0, - 0xef86b1, - 0xef86b2, - 0xef86b3, - 0xef86b4, - 0xef86b5, - 0xef86b6, - 0xef86b7, - 0xef86b8, - 0xef86b9, - 0xef86ba, - 0xef86bb, - 0xef86bc, - 0xef86bd, - 0xef86be, - 0xef86bf, - 0xef8780, - 0xef8781, - 0xef8782, - 0xef8783, - 0xef8784, - 0xef8785, - 0xef8786, - 0xef8787, - 0xef8788, - 0xef8789, - 0xef878a, - 0xef878b, - 0xef878c, - 0xef878d, - 0xef878e, - 0xef878f, - 0xef8790, - 0xef8791, - 0xef8792, - 0xef8793, - 0xef8794, - 0xef8795, - 0xef8796, - 0xef8797, - 0xef8798, - 0xef8799, - 0xef879a, - 0xef879b, - 0xef879c, - 0xef879d, - 0xef879e, - 0xef879f, - 0xef87a0, - 0xef87a1, - 0xef87a2, - 0xef87a3, - 0xef87a4, - 0xef87a5, - 0xef87a6, - 0xef87a7, - 0xef87a8, - 0xef87a9, - 0xef87aa, - 0xef87ab, - 0xef87ac, - 0xef87ad, - 0xef87ae, - 0xef87af, - 0xef87b0, - 0xef87b1, - 0xef87b2, - 0xef87b3, - 0xef87b4, - 0xef87b5, - 0xef87b6, - 0xef87b7, - 0xef87b8, - 0xef87b9, - 0xef87ba, - 0xef87bb, - 0xef87bc, - 0xef87bd, - 0xef87be, - 0xef87bf, - 0xef8880, - 0xef8881, - 0xef8882, - 0xef8883, - 0xef8884, - 0xef8885, - 0xef8886, - 0xef8887, - 0xef8888, - 0xef8889, - 0xef888a, - 0xef888b, - 0xef888c, - 0xef888d, - 0xef888e, - 0xef888f, - 0xef8890, - 0xef8891, - 0xef8892, - 0xef8893, - 0xef8894, - 0xef8895, - 0xef8896, - 0xef8897, - 0xef8898, - 0xef8899, - 0xef889a, - 0xef889b, - 0xef889c, - 0xef889d, - 0xef889e, - 0xef889f, - 0xef88a0, - 0xef88a1, - 0xef88a2, - 0xef88a3, - 0xef88a4, - 0xef88a5, - 0xef88a6, - 0xef88a7, - 0xef88a8, - 0xef88a9, - 0xef88aa, - 0xef88ab, - 0xef88ac, - 0xef88ad, - 0xef88ae, - 0xef88af, - 0xef88b0, - 0xef88b1, - 0xef88b2, - 0xef88b3, - 0xef88b4, - 0xef88b5, - 0xef88b6, - 0xef88b7, - 0xef88b8, - 0xef88b9, - 0xef88ba, - 0xef88bb, - 0xef88bc, - 0xef88bd, - 0xef88be, - 0xef88bf, - 0xef8980, - 0xef8981, - 0xef8982, - 0xef8983, - 0xef8984, - 0xef8985, - 0xef8986, - 0xef8987, - 0xef8988, - 0xef8989, - 0xef898a, - 0xef898b, - 0xef898c, - 0xef898d, - 0xef898e, - 0xef898f, - 0xef8990, - 0xef8991, - 0xef8992, - 0xef8993, - 0xef8994, - 0xef8995, - 0xef8996, - 0xef8997, - 0xef8998, - 0xef8999, - 0xef899a, - 0xef899b, - 0xef899c, - 0xef899d, - 0xef899e, - 0xef899f, - 0xef89a0, - 0xef89a1, - 0xef89a2, - 0xef89a3, - 0xef89a4, - 0xef89a5, - 0xef89a6, - 0xef89a7, - 0xef89a8, - 0xef89a9, - 0xef89aa, - 0xef89ab, - 0xef89ac, - 0xef89ad, - 0xef89ae, - 0xef89af, - 0xef89b0, - 0xef89b1, - 0xef89b2, - 0xef89b3, - 0xef89b4, - 0xef89b5, - 0xef89b6, - 0xef89b7, - 0xef89b8, - 0xef89b9, - 0xef89ba, - 0xef89bb, - 0xef89bc, - 0xef89bd, - 0xef89be, - 0xef89bf, - 0xef8a80, - 0xef8a81, - 0xef8a82, - 0xef8a83, - 0xef8a84, - 0xef8a85, - 0xef8a86, - 0xef8a87, - 0xef8a88, - 0xef8a89, - 0xef8a8a, - 0xef8a8b, - 0xef8a8c, - 0xef8a8d, - 0xef8a8e, - 0xef8a8f, - 0xef8a90, - 0xef8a91, - 0xef8a92, - 0xef8a93, - 0xef8a94, - 0xef8a95, - 0xef8a96, - 0xef8a97, - 0xef8a98, - 0xef8a99, - 0xef8a9a, - 0xef8a9b, - 0xef8a9c, - 0xef8a9d, - 0xef8a9e, - 0xef8a9f, - 0xef8aa0, - 0xef8aa1, - 0xef8aa2, - 0xef8aa3, - 0xef8aa4, - 0xef8aa5, - 0xef8aa6, - 0xef8aa7, - 0xef8aa8, - 0xef8aa9, - 0xef8aaa, - 0xef8aab, - 0xef8aac, - 0xef8aad, - 0xef8aae, - 0xef8aaf, - 0xef8ab0, - 0xef8ab1, - 0xef8ab2, - 0xef8ab3, - 0xef8ab4, - 0xef8ab5, - 0xef8ab6, - 0xef8ab7, - 0xef8ab8, - 0xef8ab9, - 0xef8aba, - 0xef8abb, - 0xef8abc, - 0xef8abd, - 0xef8abe, - 0xef8abf, - 0xef8b80, - 0xef8b81, - 0xef8b82, - 0xef8b83, - 0xef8b84, - 0xef8b85, - 0xef8b86, - 0xef8b87, - 0xef8b88, - 0xef8b89, - 0xef8b8a, - 0xef8b8b, - 0xef8b8c, - 0xef8b8d, - 0xef8b8e, - 0xef8b8f, - 0xef8b90, - 0xef8b91, - 0xef8b92, - 0xef8b93, - 0xef8b94, - 0xef8b95, - 0xef8b96, - 0xef8b97, - 0xef8b98, - 0xef8b99, - 0xef8b9a, - 0xef8b9b, - 0xef8b9c, - 0xef8b9d, - 0xef8b9e, - 0xef8b9f, - 0xef8ba0, - 0xef8ba1, - 0xef8ba2, - 0xef8ba3, - 0xef8ba4, - 0xef8ba5, - 0xef8ba6, - 0xef8ba7, - 0xef8ba8, - 0xef8ba9, - 0xef8baa, - 0xef8bab, - 0xef8bac, - 0xef8bad, - 0xef8bae, - 0xef8baf, - 0xef8bb0, - 0xef8bb1, - 0xef8bb2, - 0xef8bb3, - 0xef8bb4, - 0xef8bb5, - 0xef8bb6, - 0xef8bb7, - 0xef8bb8, - 0xef8bb9, - 0xef8bba, - 0xef8bbb, - 0xef8bbc, - 0xef8bbd, - 0xef8bbe, - 0xef8bbf, - 0xef8c80, - 0xef8c81, - 0xef8c82, - 0xef8c83, - 0xef8c84, - 0xef8c85, - 0xef8c86, - 0xef8c87, - 0xef8c88, - 0xef8c89, - 0xef8c8a, - 0xef8c8b, - 0xef8c8c, - 0xef8c8d, - 0xef8c8e, - 0xef8c8f, - 0xef8c90, - 0xef8c91, - 0xef8c92, - 0xef8c93, - 0xef8c94, - 0xef8c95, - 0xef8c96, - 0xef8c97, - 0xef8c98, - 0xef8c99, - 0xef8c9a, - 0xef8c9b, - 0xef8c9c, - 0xef8c9d, - 0xef8c9e, - 0xef8c9f, - 0xef8ca0, - 0xef8ca1, - 0xef8ca2, - 0xef8ca3, - 0xef8ca4, - 0xef8ca5, - 0xef8ca6, - 0xef8ca7, - 0xef8ca8, - 0xef8ca9, - 0xef8caa, - 0xef8cab, - 0xef8cac, - 0xef8cad, - 0xef8cae, - 0xef8caf, - 0xef8cb0, - 0xef8cb1, - 0xef8cb2, - 0xef8cb3, - 0xef8cb4, - 0xef8cb5, - 0xef8cb6, - 0xef8cb7, - 0xef8cb8, - 0xef8cb9, - 0xef8cba, - 0xef8cbb, - 0xef8cbc, - 0xef8cbd, - 0xef8cbe, - 0xef8cbf, - 0xef8d80, - 0xef8d81, - 0xef8d82, - 0xef8d83, - 0xef8d84, - 0xef8d85, - 0xef8d86, - 0xef8d87, - 0xef8d88, - 0xef8d89, - 0xef8d8a, - 0xef8d8b, - 0xef8d8c, - 0xef8d8d, - 0xef8d8e, - 0xef8d8f, - 0xef8d90, - 0xef8d91, - 0xef8d92, - 0xef8d93, - 0xef8d94, - 0xef8d95, - 0xef8d96, - 0xef8d97, - 0xef8d98, - 0xef8d99, - 0xef8d9a, - 0xef8d9b, - 0xef8d9c, - 0xef8d9d, - 0xef8d9e, - 0xef8d9f, - 0xef8da0, - 0xef8da1, - 0xef8da2, - 0xef8da3, - 0xef8da4, - 0xef8da5, - 0xef8da6, - 0xef8da7, - 0xef8da8, - 0xef8da9, - 0xef8daa, - 0xef8dab, - 0xef8dac, - 0xef8dad, - 0xef8dae, - 0xef8daf, - 0xef8db0, - 0xef8db1, - 0xef8db2, - 0xef8db3, - 0xef8db4, - 0xef8db5, - 0xef8db6, - 0xef8db7, - 0xef8db8, - 0xef8db9, - 0xef8dba, - 0xef8dbb, - 0xef8dbc, - 0xef8dbd, - 0xef8dbe, - 0xef8dbf, - 0xef8e80, - 0xef8e81, - 0xef8e82, - 0xef8e83, - 0xef8e84, - 0xef8e85, - 0xef8e86, - 0xef8e87, - 0xef8e88, - 0xef8e89, - 0xef8e8a, - 0xef8e8b, - 0xef8e8c, - 0xef8e8d, - 0xef8e8e, - 0xef8e8f, - 0xef8e90, - 0xef8e91, - 0xef8e92, - 0xef8e93, - 0xef8e94, - 0xef8e95, - 0xef8e96, - 0xef8e97, - 0xef8e98, - 0xef8e99, - 0xef8e9a, - 0xef8e9b, - 0xef8e9c, - 0xef8e9d, - 0xef8e9e, - 0xef8e9f, - 0xef8ea0, - 0xef8ea1, - 0xef8ea2, - 0xef8ea3, - 0xef8ea4, - 0xef8ea5, - 0xef8ea6, - 0xef8ea7, - 0xef8ea8, - 0xef8ea9, - 0xef8eaa, - 0xef8eab, - 0xef8eac, - 0xef8ead, - 0xef8eae, - 0xef8eaf, - 0xef8eb0, - 0xef8eb1, - 0xef8eb2, - 0xef8eb3, - 0xef8eb4, - 0xef8eb5, - 0xef8eb6, - 0xef8eb7, - 0xef8eb8, - 0xef8eb9, - 0xef8eba, - 0xef8ebb, - 0xef8ebc, - 0xef8ebd, - 0xef8ebe, - 0xef8ebf, - 0xef8f80, - 0xef8f81, - 0xef8f82, - 0xef8f83, - 0xef8f84, - 0xef8f85, - 0xef8f86, - 0xef8f87, - 0xef8f88, - 0xef8f89, - 0xef8f8a, - 0xef8f8b, - 0xef8f8c, - 0xef8f8d, - 0xef8f8e, - 0xef8f8f, - 0xef8f90, - 0xef8f91, - 0xef8f92, - 0xef8f93, - 0xef8f94, - 0xef8f95, - 0xef8f96, - 0xef8f97, - 0xef8f98, - 0xef8f99, - 0xef8f9a, - 0xef8f9b, - 0xef8f9c, - 0xef8f9d, - 0xef8f9e, - 0xef8f9f, - 0xef8fa0, - 0xef8fa1, - 0xef8fa2, - 0xef8fa3, - 0xef8fa4, - 0xef8fa5, - 0xef8fa6, - 0xef8fa7, - 0xef8fa8, - 0xef8fa9, - 0xef8faa, - 0xef8fab, - 0xef8fac, - 0xef8fad, - 0xef8fae, - 0xef8faf, - 0xef8fb0, - 0xef8fb1, - 0xef8fb2, - 0xef8fb3, - 0xef8fb4, - 0xef8fb5, - 0xef8fb6, - 0xef8fb7, - 0xef8fb8, - 0xef8fb9, - 0xef8fba, - 0xef8fbb, - 0xef8fbc, - 0xef8fbd, - 0xef8fbe, - 0xef8fbf, - 0xef9080, - 0xef9081, - 0xef9082, - 0xef9083, - 0xef9084, - 0xef9085, - 0xef9086, - 0xef9087, - 0xef9088, - 0xef9089, - 0xef908a, - 0xef908b, - 0xef908c, - 0xef908d, - 0xef908e, - 0xef908f, - 0xef9090, - 0xef9091, - 0xef9092, - 0xef9093, - 0xef9094, - 0xef9095, - 0xef9096, - 0xef9097, - 0xef9098, - 0xef9099, - 0xef909a, - 0xef909b, - 0xef909c, - 0xef909d, - 0xef909e, - 0xef909f, - 0xef90a0, - 0xef90a1, - 0xef90a2, - 0xef90a3, - 0xef90a4, - 0xef90a5, - 0xef90a6, - 0xef90a7, - 0xef90a8, - 0xef90a9, - 0xef90aa, - 0xef90ab, - 0xef90ac, - 0xef90ad, - 0xef90ae, - 0xef90af, - 0xef90b0, - 0xef90b1, - 0xef90b2, - 0xef90b3, - 0xef90b4, - 0xef90b5, - 0xef90b6, - 0xef90b7, - 0xef90b8, - 0xef90b9, - 0xef90ba, - 0xef90bb, - 0xef90bc, - 0xef90bd, - 0xef90be, - 0xef90bf, - 0xef9180, - 0xef9181, - 0xef9182, - 0xef9183, - 0xef9184, - 0xef9185, - 0xef9186, - 0xef9187, - 0xef9188, - 0xef9189, - 0xef918a, - 0xef918b, - 0xef918c, - 0xef918d, - 0xef918e, - 0xef918f, - 0xef9190, - 0xef9191, - 0xef9192, - 0xef9193, - 0xef9194, - 0xef9195, - 0xef9196, - 0xef9197, - 0xef9198, - 0xef9199, - 0xef919a, - 0xef919b, - 0xef919c, - 0xef919d, - 0xef919e, - 0xef919f, - 0xef91a0, - 0xef91a1, - 0xef91a2, - 0xef91a3, - 0xef91a4, - 0xef91a5, - 0xef91a6, - 0xef91a7, - 0xef91a8, - 0xef91a9, - 0xef91aa, - 0xef91ab, - 0xef91ac, - 0xef91ad, - 0xef91ae, - 0xef91af, - 0xef91b0, - 0xef91b1, - 0xef91b2, - 0xef91b3, - 0xef91b4, - 0xef91b5, - 0xef91b6, - 0xef91b7, - 0xef91b8, - 0xef91b9, - 0xef91ba, - 0xef91bb, - 0xef91bc, - 0xef91bd, - 0xef91be, - 0xef91bf, - 0xef9280, - 0xef9281, - 0xef9282, - 0xef9283, - 0xef9284, - 0xef9285, - 0xef9286, - 0xef9287, - 0xef9288, - 0xef9289, - 0xef928a, - 0xef928b, - 0xef928c, - 0xef928d, - 0xef928e, - 0xef928f, - 0xef9290, - 0xef9291, - 0xef9292, - 0xef9293, - 0xef9294, - 0xef9295, - 0xef9296, - 0xef9297, - 0xef9298, - 0xef9299, - 0xef929a, - 0xef929b, - 0xef929c, - 0xef929d, - 0xef929e, - 0xef929f, - 0xef92a0, - 0xef92a1, - 0xef92a2, - 0xef92a3, - 0xef92a4, - 0xef92a5, - 0xef92a6, - 0xef92a7, - 0xef92a8, - 0xef92a9, - 0xef92aa, - 0xef92ab, - 0xef92ac, - 0xef92ad, - 0xef92ae, - 0xef92af, - 0xef92b0, - 0xef92b1, - 0xef92b2, - 0xef92b3, - 0xef92b4, - 0xef92b5, - 0xef92b6, - 0xef92b7, - 0xef92b8, - 0xef92b9, - 0xef92ba, - 0xef92bb, - 0xef92bc, - 0xef92bd, - 0xef92be, - 0xef92bf, - 0xef9380, - 0xef9381, - 0xef9382, - 0xef9383, - 0xef9384, - 0xef9385, - 0xef9386, - 0xef9387, - 0xef9388, - 0xef9389, - 0xef938a, - 0xef938b, - 0xef938c, - 0xef938d, - 0xef938e, - 0xef938f, - 0xef9390, - 0xef9391, - 0xef9392, - 0xef9393, - 0xef9394, - 0xef9395, - 0xef9396, - 0xef9397, - 0xef9398, - 0xef9399, - 0xef939a, - 0xef939b, - 0xef939c, - 0xef939d, - 0xef939e, - 0xef939f, - 0xef93a0, - 0xef93a1, - 0xef93a2, - 0xef93a3, - 0xef93a4, - 0xef93a5, - 0xef93a6, - 0xef93a7, - 0xef93a8, - 0xef93a9, - 0xef93aa, - 0xef93ab, - 0xef93ac, - 0xef93ad, - 0xef93ae, - 0xef93af, - 0xef93b0, - 0xef93b1, - 0xef93b2, - 0xef93b3, - 0xef93b4, - 0xef93b5, - 0xef93b6, - 0xef93b7, - 0xef93b8, - 0xef93b9, - 0xef93ba, - 0xef93bb, - 0xef93bc, - 0xef93bd, - 0xef93be, - 0xef93bf, - 0xef9480, - 0xef9481, - 0xef9482, - 0xef9483, - 0xef9484, - 0xef9485, - 0xef9486, - 0xef9487, - 0xef9488, - 0xef9489, - 0xef948a, - 0xef948b, - 0xef948c, - 0xef948d, - 0xef948e, - 0xef948f, - 0xef9490, - 0xef9491, - 0xef9492, - 0xef9493, - 0xef9494, - 0xef9495, - 0xef9496, - 0xef9497, - 0xef9498, - 0xef9499, - 0xef949a, - 0xef949b, - 0xef949c, - 0xef949d, - 0xef949e, - 0xef949f, - 0xef94a0, - 0xef94a1, - 0xef94a2, - 0xef94a3, - 0xef94a4, - 0xef94a5, - 0xef94a6, - 0xef94a7, - 0xef94a8, - 0xef94a9, - 0xef94aa, - 0xef94ab, - 0xef94ac, - 0xef94ad, - 0xef94ae, - 0xef94af, - 0xef94b0, - 0xef94b1, - 0xef94b2, - 0xef94b3, - 0xef94b4, - 0xef94b5, - 0xef94b6, - 0xef94b7, - 0xef94b8, - 0xef94b9, - 0xef94ba, - 0xef94bb, - 0xef94bc, - 0xef94bd, - 0xef94be, - 0xef94bf, - 0xef9580, - 0xef9581, - 0xef9582, - 0xef9583, - 0xef9584, - 0xef9585, - 0xef9586, - 0xef9587, - 0xef9588, - 0xef9589, - 0xef958a, - 0xef958b, - 0xef958c, - 0xef958d, - 0xef958e, - 0xef958f, - 0xef9590, - 0xef9591, - 0xef9592, - 0xef9593, - 0xef9594, - 0xef9595, - 0xef9596, - 0xef9597, - 0xef9598, - 0xef9599, - 0xef959a, - 0xef959b, - 0xef959c, - 0xef959d, - 0xef959e, - 0xef959f, - 0xef95a0, - 0xef95a1, - 0xef95a2, - 0xef95a3, - 0xef95a4, - 0xef95a5, - 0xef95a6, - 0xef95a7, - 0xef95a8, - 0xef95a9, - 0xef95aa, - 0xef95ab, - 0xef95ac, - 0xef95ad, - 0xef95ae, - 0xef95af, - 0xef95b0, - 0xef95b1, - 0xef95b2, - 0xef95b3, - 0xef95b4, - 0xef95b5, - 0xef95b6, - 0xef95b7, - 0xef95b8, - 0xef95b9, - 0xef95ba, - 0xef95bb, - 0xef95bc, - 0xef95bd, - 0xef95be, - 0xef95bf, - 0xef9680, - 0xef9681, - 0xef9682, - 0xef9683, - 0xef9684, - 0xef9685, - 0xef9686, - 0xef9687, - 0xef9688, - 0xef9689, - 0xef968a, - 0xef968b, - 0xef968c, - 0xef968d, - 0xef968e, - 0xef968f, - 0xef9690, - 0xef9691, - 0xef9692, - 0xef9693, - 0xef9694, - 0xef9695, - 0xef9696, - 0xef9697, - 0xef9698, - 0xef9699, - 0xef969a, - 0xef969b, - 0xef969c, - 0xef969d, - 0xef969e, - 0xef969f, - 0xef96a0, - 0xef96a1, - 0xef96a2, - 0xef96a3, - 0xef96a4, - 0xef96a5, - 0xef96a6, - 0xef96a7, - 0xef96a8, - 0xef96a9, - 0xef96aa, - 0xef96ab, - 0xef96ac, - 0xef96ad, - 0xef96ae, - 0xef96af, - 0xef96b0, - 0xef96b1, - 0xef96b2, - 0xef96b3, - 0xef96b4, - 0xef96b5, - 0xef96b6, - 0xef96b7, - 0xef96b8, - 0xef96b9, - 0xef96ba, - 0xef96bb, - 0xef96bc, - 0xef96bd, - 0xef96be, - 0xef96bf, - 0xef9780, - 0xef9781, - 0xef9782, - 0xef9783, - 0xef9784, - 0xef9785, - 0xef9786, - 0xef9787, - 0xef9788, - 0xef9789, - 0xef978a, - 0xef978b, - 0xef978c, - 0xef978d, - 0xef978e, - 0xef978f, - 0xef9790, - 0xef9791, - 0xef9792, - 0xef9793, - 0xef9794, - 0xef9795, - 0xef9796, - 0xef9797, - 0xef9798, - 0xef9799, - 0xef979a, - 0xef979b, - 0xef979c, - 0xef979d, - 0xef979e, - 0xef979f, - 0xef97a0, - 0xef97a1, - 0xef97a2, - 0xef97a3, - 0xef97a4, - 0xef97a5, - 0xef97a6, - 0xef97a7, - 0xef97a8, - 0xef97a9, - 0xef97aa, - 0xef97ab, - 0xef97ac, - 0xef97ad, - 0xef97ae, - 0xef97af, - 0xef97b0, - 0xef97b1, - 0xef97b2, - 0xef97b3, - 0xef97b4, - 0xef97b5, - 0xef97b6, - 0xef97b7, - 0xef97b8, - 0xef97b9, - 0xef97ba, - 0xef97bb, - 0xef97bc, - 0xef97bd, - 0xef97be, - 0xef97bf, - 0xef9880, - 0xef9881, - 0xef9882, - 0xef9883, - 0xef9884, - 0xef9885, - 0xef9886, - 0xef9887, - 0xef9888, - 0xef9889, - 0xef988a, - 0xef988b, - 0xef988c, - 0xef988d, - 0xef988e, - 0xef988f, - 0xef9890, - 0xef9891, - 0xef9892, - 0xef9893, - 0xef9894, - 0xef9895, - 0xef9896, - 0xef9897, - 0xef9898, - 0xef9899, - 0xef989a, - 0xef989b, - 0xef989c, - 0xef989d, - 0xef989e, - 0xef989f, - 0xef98a0, - 0xef98a1, - 0xef98a2, - 0xef98a3, - 0xef98a4, - 0xef98a5, - 0xef98a6, - 0xef98a7, - 0xef98a8, - 0xef98a9, - 0xef98aa, - 0xef98ab, - 0xef98ac, - 0xef98ad, - 0xef98ae, - 0xef98af, - 0xef98b0, - 0xef98b1, - 0xef98b2, - 0xef98b3, - 0xef98b4, - 0xef98b5, - 0xef98b6, - 0xef98b7, - 0xef98b8, - 0xef98b9, - 0xef98ba, - 0xef98bb, - 0xef98bc, - 0xef98bd, - 0xef98be, - 0xef98bf, - 0xef9980, - 0xef9981, - 0xef9982, - 0xef9983, - 0xef9984, - 0xef9985, - 0xef9986, - 0xef9987, - 0xef9988, - 0xef9989, - 0xef998a, - 0xef998b, - 0xef998c, - 0xef998d, - 0xef998e, - 0xef998f, - 0xef9990, - 0xef9991, - 0xef9992, - 0xef9993, - 0xef9994, - 0xef9995, - 0xef9996, - 0xef9997, - 0xef9998, - 0xef9999, - 0xef999a, - 0xef999b, - 0xef999c, - 0xef999d, - 0xef999e, - 0xef999f, - 0xef99a0, - 0xef99a1, - 0xef99a2, - 0xef99a3, - 0xef99a4, - 0xef99a5, - 0xef99a6, - 0xef99a7, - 0xef99a8, - 0xef99a9, - 0xef99aa, - 0xef99ab, - 0xef99ac, - 0xef99ad, - 0xef99ae, - 0xef99af, - 0xef99b0, - 0xef99b1, - 0xef99b2, - 0xef99b3, - 0xef99b4, - 0xef99b5, - 0xef99b6, - 0xef99b7, - 0xef99b8, - 0xef99b9, - 0xef99ba, - 0xef99bb, - 0xef99bc, - 0xef99bd, - 0xef99be, - 0xef99bf, - 0xef9a80, - 0xef9a81, - 0xef9a82, - 0xef9a83, - 0xef9a84, - 0xef9a85, - 0xef9a86, - 0xef9a87, - 0xef9a88, - 0xef9a89, - 0xef9a8a, - 0xef9a8b, - 0xef9a8c, - 0xef9a8d, - 0xef9a8e, - 0xef9a8f, - 0xef9a90, - 0xef9a91, - 0xef9a92, - 0xef9a93, - 0xef9a94, - 0xef9a95, - 0xef9a96, - 0xef9a97, - 0xef9a98, - 0xef9a99, - 0xef9a9a, - 0xef9a9b, - 0xef9a9c, - 0xef9a9d, - 0xef9a9e, - 0xef9a9f, - 0xef9aa0, - 0xef9aa1, - 0xef9aa2, - 0xef9aa3, - 0xef9aa4, - 0xef9aa5, - 0xef9aa6, - 0xef9aa7, - 0xef9aa8, - 0xef9aa9, - 0xef9aaa, - 0xef9aab, - 0xef9aac, - 0xef9aad, - 0xef9aae, - 0xef9aaf, - 0xef9ab0, - 0xef9ab1, - 0xef9ab2, - 0xef9ab3, - 0xef9ab4, - 0xef9ab5, - 0xef9ab6, - 0xef9ab7, - 0xef9ab8, - 0xef9ab9, - 0xef9aba, - 0xef9abb, - 0xef9abc, - 0xef9abd, - 0xef9abe, - 0xef9abf, - 0xef9b80, - 0xef9b81, - 0xef9b82, - 0xef9b83, - 0xef9b84, - 0xef9b85, - 0xef9b86, - 0xef9b87, - 0xef9b88, - 0xef9b89, - 0xef9b8a, - 0xef9b8b, - 0xef9b8c, - 0xef9b8d, - 0xef9b8e, - 0xef9b8f, - 0xef9b90, - 0xef9b91, - 0xef9b92, - 0xef9b93, - 0xef9b94, - 0xef9b95, - 0xef9b96, - 0xef9b97, - 0xef9b98, - 0xef9b99, - 0xef9b9a, - 0xef9b9b, - 0xef9b9c, - 0xef9b9d, - 0xef9b9e, - 0xef9b9f, - 0xef9ba0, - 0xef9ba1, - 0xef9ba2, - 0xef9ba3, - 0xef9ba4, - 0xef9ba5, - 0xef9ba6, - 0xef9ba7, - 0xef9ba8, - 0xef9ba9, - 0xef9baa, - 0xef9bab, - 0xef9bac, - 0xef9bad, - 0xef9bae, - 0xef9baf, - 0xef9bb0, - 0xef9bb1, - 0xef9bb2, - 0xef9bb3, - 0xef9bb4, - 0xef9bb5, - 0xef9bb6, - 0xef9bb7, - 0xef9bb8, - 0xef9bb9, - 0xef9bba, - 0xef9bbb, - 0xef9bbc, - 0xef9bbd, - 0xef9bbe, - 0xef9bbf, - 0xef9c80, - 0xef9c81, - 0xef9c82, - 0xef9c83, - 0xef9c84, - 0xef9c85, - 0xef9c86, - 0xef9c87, - 0xef9c88, - 0xef9c89, - 0xef9c8a, - 0xef9c8b, - 0xef9c8c, - 0xef9c8d, - 0xef9c8e, - 0xef9c8f, - 0xef9c90, - 0xef9c91, - 0xef9c92, - 0xef9c93, - 0xef9c94, - 0xef9c95, - 0xef9c96, - 0xef9c97, - 0xef9c98, - 0xef9c99, - 0xef9c9a, - 0xef9c9b, - 0xef9c9c, - 0xef9c9d, - 0xef9c9e, - 0xef9c9f, - 0xef9ca0, - 0xef9ca1, - 0xef9ca2, - 0xef9ca3, - 0xef9ca4, - 0xef9ca5, - 0xef9ca6, - 0xef9ca7, - 0xef9ca8, - 0xef9ca9, - 0xef9caa, - 0xef9cab, - 0xef9cac, - 0xef9cad, - 0xef9cae, - 0xef9caf, - 0xef9cb0, - 0xef9cb1, - 0xef9cb2, - 0xef9cb3, - 0xef9cb4, - 0xef9cb5, - 0xef9cb6, - 0xef9cb7, - 0xef9cb8, - 0xef9cb9, - 0xef9cba, - 0xef9cbb, - 0xef9cbc, - 0xef9cbd, - 0xef9cbe, - 0xef9cbf, - 0xef9d80, - 0xef9d81, - 0xef9d82, - 0xef9d83, - 0xef9d84, - 0xef9d85, - 0xef9d86, - 0xef9d87, - 0xef9d88, - 0xef9d89, - 0xef9d8a, - 0xef9d8b, - 0xef9d8c, - 0xef9d8d, - 0xef9d8e, - 0xef9d8f, - 0xef9d90, - 0xef9d91, - 0xef9d92, - 0xef9d93, - 0xef9d94, - 0xef9d95, - 0xef9d96, - 0xef9d97, - 0xef9d98, - 0xef9d99, - 0xef9d9a, - 0xef9d9b, - 0xef9d9c, - 0xef9d9d, - 0xef9d9e, - 0xef9d9f, - 0xef9da0, - 0xef9da1, - 0xef9da2, - 0xef9da3, - 0xef9da4, - 0xef9da5, - 0xef9da6, - 0xef9da7, - 0xef9da8, - 0xef9da9, - 0xef9daa, - 0xef9dab, - 0xef9dac, - 0xef9dad, - 0xef9dae, - 0xef9daf, - 0xef9db0, - 0xef9db1, - 0xef9db2, - 0xef9db3, - 0xef9db4, - 0xef9db5, - 0xef9db6, - 0xef9db7, - 0xef9db8, - 0xef9db9, - 0xef9dba, - 0xef9dbb, - 0xef9dbc, - 0xef9dbd, - 0xef9dbe, - 0xef9dbf, - 0xef9e80, - 0xef9e81, - 0xef9e82, - 0xef9e83, - 0xef9e84, - 0xef9e85, - 0xef9e86, - 0xef9e87, - 0xef9e88, - 0xef9e89, - 0xef9e8a, - 0xef9e8b, - 0xef9e8c, - 0xef9e8d, - 0xef9e8e, - 0xef9e8f, - 0xef9e90, - 0xef9e91, - 0xef9e92, - 0xef9e93, - 0xef9e94, - 0xef9e95, - 0xef9e96, - 0xef9e97, - 0xef9e98, - 0xef9e99, - 0xef9e9a, - 0xef9e9b, - 0xef9e9c, - 0xef9e9d, - 0xef9e9e, - 0xef9e9f, - 0xef9ea0, - 0xef9ea1, - 0xef9ea2, - 0xef9ea3, - 0xef9ea4, - 0xef9ea5, - 0xef9ea6, - 0xef9ea7, - 0xef9ea8, - 0xef9ea9, - 0xef9eaa, - 0xef9eab, - 0xef9eac, - 0xef9ead, - 0xef9eae, - 0xef9eaf, - 0xef9eb0, - 0xef9eb1, - 0xef9eb2, - 0xef9eb3, - 0xef9eb4, - 0xef9eb5, - 0xef9eb6, - 0xef9eb7, - 0xef9eb8, - 0xef9eb9, - 0xef9eba, - 0xef9ebb, - 0xef9ebc, - 0xef9ebd, - 0xef9ebe, - 0xef9ebf, - 0xef9f80, - 0xef9f81, - 0xef9f82, - 0xef9f83, - 0xef9f84, - 0xef9f85, - 0xef9f86, - 0xef9f87, - 0xef9f88, - 0xef9f89, - 0xef9f8a, - 0xef9f8b, - 0xef9f8c, - 0xef9f8d, - 0xef9f8e, - 0xef9f8f, - 0xef9f90, - 0xef9f91, - 0xef9f92, - 0xef9f93, - 0xef9f94, - 0xef9f95, - 0xef9f96, - 0xef9f97, - 0xef9f98, - 0xef9f99, - 0xef9f9a, - 0xef9f9b, - 0xef9f9c, - 0xef9f9d, - 0xef9f9e, - 0xef9f9f, - 0xef9fa0, - 0xef9fa1, - 0xef9fa2, - 0xef9fa3, - 0xef9fa4, - 0xef9fa5, - 0xef9fa6, - 0xef9fa7, - 0xef9fa8, - 0xef9fa9, - 0xef9faa, - 0xef9fab, - 0xef9fac, - 0xef9fad, - 0xef9fae, - 0xef9faf, - 0xef9fb0, - 0xef9fb1, - 0xef9fb2, - 0xef9fb3, - 0xef9fb4, - 0xef9fb5, - 0xef9fb6, - 0xef9fb7, - 0xef9fb8, - 0xef9fb9, - 0xef9fba, - 0xef9fbb, - 0xef9fbc, - 0xef9fbd, - 0xef9fbe, - 0xef9fbf, - 0xefa080, - 0xefa081, - 0xefa082, - 0xefa083, - 0xefa084, - 0xefa085, - 0xefa086, - 0xefa087, - 0xefa088, - 0xefa089, - 0xefa08a, - 0xefa08b, - 0xefa08c, - 0xefa08d, - 0xefa08e, - 0xefa08f, - 0xefa090, - 0xefa091, - 0xefa092, - 0xefa093, - 0xefa094, - 0xefa095, - 0xefa096, - 0xefa097, - 0xefa098, - 0xefa099, - 0xefa09a, - 0xefa09b, - 0xefa09c, - 0xefa09d, - 0xefa09e, - 0xefa09f, - 0xefa0a0, - 0xefa0a1, - 0xefa0a2, - 0xefa0a3, - 0xefa0a4, - 0xefa0a5, - 0xefa0a6, - 0xefa0a7, - 0xefa0a8, - 0xefa0a9, - 0xefa0aa, - 0xefa0ab, - 0xefa0ac, - 0xefa0ad, - 0xefa0ae, - 0xefa0af, - 0xefa0b0, - 0xefa0b1, - 0xefa0b2, - 0xefa0b3, - 0xefa0b4, - 0xefa0b5, - 0xefa0b6, - 0xefa0b7, - 0xefa0b8, - 0xefa0b9, - 0xefa0ba, - 0xefa0bb, - 0xefa0bc, - 0xefa0bd, - 0xefa0be, - 0xefa0bf, - 0xefa180, - 0xefa181, - 0xefa182, - 0xefa183, - 0xefa184, - 0xefa185, - 0xefa186, - 0xefa187, - 0xefa188, - 0xefa189, - 0xefa18a, - 0xefa18b, - 0xefa18c, - 0xefa18d, - 0xefa18e, - 0xefa18f, - 0xefa190, - 0xefa191, - 0xefa192, - 0xefa193, - 0xefa194, - 0xefa195, - 0xefa196, - 0xefa197, - 0xefa198, - 0xefa199, - 0xefa19a, - 0xefa19b, - 0xefa19c, - 0xefa19d, - 0xefa19e, - 0xefa19f, - 0xefa1a0, - 0xefa1a1, - 0xefa1a2, - 0xefa1a3, - 0xefa1a4, - 0xefa1a5, - 0xefa1a6, - 0xefa1a7, - 0xefa1a8, - 0xefa1a9, - 0xefa1aa, - 0xefa1ab, - 0xefa1ac, - 0xefa1ad, - 0xefa1ae, - 0xefa1af, - 0xefa1b0, - 0xefa1b1, - 0xefa1b2, - 0xefa1b3, - 0xefa1b4, - 0xefa1b5, - 0xefa1b6, - 0xefa1b7, - 0xefa1b8, - 0xefa1b9, - 0xefa1ba, - 0xefa1bb, - 0xefa1bc, - 0xefa1bd, - 0xefa1be, - 0xefa1bf, - 0xefa280, - 0xefa281, - 0xefa282, - 0xefa283, - 0xefa284, - 0xefa285, - 0xefa286, - 0xefa287, - 0xefa288, - 0xefa289, - 0xefa28a, - 0xefa28b, - 0xefa28c, - 0xefa28d, - 0xefa28e, - 0xefa28f, - 0xefa290, - 0xefa291, - 0xefa292, - 0xefa293, - 0xefa294, - 0xefa295, - 0xefa296, - 0xefa297, - 0xefa298, - 0xefa299, - 0xefa29a, - 0xefa29b, - 0xefa29c, - 0xefa29d, - 0xefa29e, - 0xefa29f, - 0xefa2a0, - 0xefa2a1, - 0xefa2a2, - 0xefa2a3, - 0xefa2a4, - 0xefa2a5, - 0xefa2a6, - 0xefa2a7, - 0xefa2a8, - 0xefa2a9, - 0xefa2aa, - 0xefa2ab, - 0xefa2ac, - 0xefa2ad, - 0xefa2ae, - 0xefa2af, - 0xefa2b0, - 0xefa2b1, - 0xefa2b2, - 0xefa2b3, - 0xefa2b4, - 0xefa2b5, - 0xefa2b6, - 0xefa2b7, - 0xefa2b8, - 0xefa2b9, - 0xefa2ba, - 0xefa2bb, - 0xefa2bc, - 0xefa2bd, - 0xefa2be, - 0xefa2bf, - 0xefa380, - 0xefa381, - 0xefa382, - 0xefa383, - 0xefa384, - 0xefa385, - 0xefa386, - 0xefa387, - 0xefa388, - 0xefa389, - 0xefa38a, - 0xefa38b, - 0xefa38c, - 0xefa38d, - 0xefa38e, - 0xefa38f, - 0xefa390, - 0xefa391, - 0xefa392, - 0xefa393, - 0xefa394, - 0xefa395, - 0xefa396, - 0xefa397, - 0xefa398, - 0xefa399, - 0xefa39a, - 0xefa39b, - 0xefa39c, - 0xefa39d, - 0xefa39e, - 0xefa39f, - 0xefa3a0, - 0xefa3a1, - 0xefa3a2, - 0xefa3a3, - 0xefa3a4, - 0xefa3a5, - 0xefa3a6, - 0xefa3a7, - 0xefa3a8, - 0xefa3a9, - 0xefa3aa, - 0xefa3ab, - 0xefa3ac, - 0xefa3ad, - 0xefa3ae, - 0xefa3af, - 0xefa3b0, - 0xefa3b1, - 0xefa3b2, - 0xefa3b3, - 0xefa3b4, - 0xefa3b5, - 0xefa3b6, - 0xefa3b7, - 0xefa3b8, - 0xefa3b9, - 0xefa3ba, - 0xefa3bb, - 0xefa3bc, - 0xefa3bd, - 0xefa3be, - 0xefa3bf, - 0xefa480, - 0xefa481, - 0xefa482, - 0xefa483, - 0xefa484, - 0xefa485, - 0xefa486, - 0xefa487, - 0xefa488, - 0xefa489, - 0xefa48a, - 0xefa48b, - 0xefa48c, - 0xefa48d, - 0xefa48e, - 0xefa48f, - 0xefa490, - 0xefa491, - 0xefa492, - 0xefa493, - 0xefa494, - 0xefa495, - 0xefa496, - 0xefa497, - 0xefa498, - 0xefa499, - 0xefa49a, - 0xefa49b, - 0xefa49c, - 0xefa49d, - 0xefa49e, - 0xefa49f, - 0xefa4a0, - 0xefa4a1, - 0xefa4a2, - 0xefa4a3, - 0xefa4a4, - 0xefa4a5, - 0xefa4a6, - 0xefa4a7, - 0xefa4a8, - 0xefa4a9, - 0xefa4aa, - 0xefa4ab, - 0xefa4ac, - 0xefa4ad, - 0xefa4ae, - 0xefa4af, - 0xefa4b0, - 0xefa4b1, - 0xefa4b2, - 0xefa4b3, - 0xefa4b4, - 0xefa4b5, - 0xefa4b6, - 0xefa4b7, - 0xefa4b8, - 0xefa4b9, - 0xefa4ba, - 0xefa4bb, - 0xefa4bc, - 0xefa4bd, - 0xefa4be, - 0xefa4bf, - 0xefa580, - 0xefa581, - 0xefa582, - 0xefa583, - 0xefa584, - 0xefa585, - 0xefa586, - 0xefa587, - 0xefa588, - 0xefa589, - 0xefa58a, - 0xefa58b, - 0xefa58c, - 0xefa58d, - 0xefa58e, - 0xefa58f, - 0xefa590, - 0xefa591, - 0xefa592, - 0xefa593, - 0xefa594, - 0xefa595, - 0xefa596, - 0xefa597, - 0xefa598, - 0xefa599, - 0xefa59a, - 0xefa59b, - 0xefa59c, - 0xefa59d, - 0xefa59e, - 0xefa59f, - 0xefa5a0, - 0xefa5a1, - 0xefa5a2, - 0xefa5a3, - 0xefa5a4, - 0xefa5a5, - 0xefa5a6, - 0xefa5a7, - 0xefa5a8, - 0xefa5a9, - 0xefa5aa, - 0xefa5ab, - 0xefa5ac, - 0xefa5ad, - 0xefa5ae, - 0xefa5af, - 0xefa5b0, - 0xefa5b1, - 0xefa5b2, - 0xefa5b3, - 0xefa5b4, - 0xefa5b5, - 0xefa5b6, - 0xefa5b7, - 0xefa5b8, - 0xefa5b9, - 0xefa5ba, - 0xefa5bb, - 0xefa5bc, - 0xefa5bd, - 0xefa5be, - 0xefa5bf, - 0xefa680, - 0xefa681, - 0xefa682, - 0xefa683, - 0xefa684, - 0xefa685, - 0xefa686, - 0xefa687, - 0xefa688, - 0xefa689, - 0xefa68a, - 0xefa68b, - 0xefa68c, - 0xefa68d, - 0xefa68e, - 0xefa68f, - 0xefa690, - 0xefa691, - 0xefa692, - 0xefa693, - 0xefa694, - 0xefa695, - 0xefa696, - 0xefa697, - 0xefa698, - 0xefa699, - 0xefa69a, - 0xefa69b, - 0xefa69c, - 0xefa69d, - 0xefa69e, - 0xefa69f, - 0xefa6a0, - 0xefa6a1, - 0xefa6a2, - 0xefa6a3, - 0xefa6a4, - 0xefa6a5, - 0xefa6a6, - 0xefa6a7, - 0xefa6a8, - 0xefa6a9, - 0xefa6aa, - 0xefa6ab, - 0xefa6ac, - 0xefa6ad, - 0xefa6ae, - 0xefa6af, - 0xefa6b0, - 0xefa6b1, - 0xefa6b2, - 0xefa6b3, - 0xefa6b4, - 0xefa6b5, - 0xefa6b6, - 0xefa6b7, - 0xefa6b8, - 0xefa6b9, - 0xefa6ba, - 0xefa6bb, - 0xefa6bc, - 0xefa6bd, - 0xefa6be, - 0xefa6bf, - 0xefa780, - 0xefa781, - 0xefa782, - 0xefa783, - 0xefa784, - 0xefa785, - 0xefa786, - 0xefa787, - 0xefa788, - 0xefa789, - 0xefa78a, - 0xefa78b, - 0xefa78c, - 0xefa78d, - 0xefa78e, - 0xefa78f, - 0xefa790, - 0xefa791, - 0xefa792, - 0xefa793, - 0xefa794, - 0xefa795, - 0xefa796, - 0xefa797, - 0xefa798, - 0xefa799, - 0xefa79a, - 0xefa79b, - 0xefa79c, - 0xefa79d, - 0xefa79e, - 0xefa79f, - 0xefa7a0, - 0xefa7a1, - 0xefa7a2, - 0xefa7a3, - 0xefa7a4, - 0xefa7a5, - 0xefa7a6, - 0xefa7a7, - 0xefa7a8, - 0xefa7a9, - 0xefa7aa, - 0xefa7ab, - 0xefa7ac, - 0xefa7ad, - 0xefa7ae, - 0xefa7af, - 0xefa7b0, - 0xefa7b1, - 0xefa7b2, - 0xefa7b3, - 0xefa7b4, - 0xefa7b5, - 0xefa7b6, - 0xefa7b7, - 0xefa7b8, - 0xefa7b9, - 0xefa7ba, - 0xefa7bb, - 0xefa7bc, - 0xefa7bd, - 0xefa7be, - 0xefa7bf, - 0xefa880, - 0xefa881, - 0xefa882, - 0xefa883, - 0xefa884, - 0xefa885, - 0xefa886, - 0xefa887, - 0xefa888, - 0xefa889, - 0xefa88a, - 0xefa88b, - 0xefa88c, - 0xefa88d, - 0xefa88e, - 0xefa88f, - 0xefa890, - 0xefa891, - 0xefa892, - 0xefa893, - 0xefa894, - 0xefa895, - 0xefa896, - 0xefa897, - 0xefa898, - 0xefa899, - 0xefa89a, - 0xefa89b, - 0xefa89c, - 0xefa89d, - 0xefa89e, - 0xefa89f, - 0xefa8a0, - 0xefa8a1, - 0xefa8a2, - 0xefa8a3, - 0xefa8a4, - 0xefa8a5, - 0xefa8a6, - 0xefa8a7, - 0xefa8a8, - 0xefa8a9, - 0xefa8aa, - 0xefa8ab, - 0xefa8ac, - 0xefa8ad, - 0xefa8ae, - 0xefa8af, - 0xefa8b0, - 0xefa8b1, - 0xefa8b2, - 0xefa8b3, - 0xefa8b4, - 0xefa8b5, - 0xefa8b6, - 0xefa8b7, - 0xefa8b8, - 0xefa8b9, - 0xefa8ba, - 0xefa8bb, - 0xefa8bc, - 0xefa8bd, - 0xefa8be, - 0xefa8bf, - 0xefa980, - 0xefa981, - 0xefa982, - 0xefa983, - 0xefa984, - 0xefa985, - 0xefa986, - 0xefa987, - 0xefa988, - 0xefa989, - 0xefa98a, - 0xefa98b, - 0xefa98c, - 0xefa98d, - 0xefa98e, - 0xefa98f, - 0xefa990, - 0xefa991, - 0xefa992, - 0xefa993, - 0xefa994, - 0xefa995, - 0xefa996, - 0xefa997, - 0xefa998, - 0xefa999, - 0xefa99a, - 0xefa99b, - 0xefa99c, - 0xefa99d, - 0xefa99e, - 0xefa99f, - 0xefa9a0, - 0xefa9a1, - 0xefa9a2, - 0xefa9a3, - 0xefa9a4, - 0xefa9a5, - 0xefa9a6, - 0xefa9a7, - 0xefa9a8, - 0xefa9a9, - 0xefa9aa, - 0xefa9ab, - 0xefa9ac, - 0xefa9ad, - 0xefa9ae, - 0xefa9af, - 0xefa9b0, - 0xefa9b1, - 0xefa9b2, - 0xefa9b3, - 0xefa9b4, - 0xefa9b5, - 0xefa9b6, - 0xefa9b7, - 0xefa9b8, - 0xefa9b9, - 0xefa9ba, - 0xefa9bb, - 0xefa9bc, - 0xefa9bd, - 0xefa9be, - 0xefa9bf, - 0xefaa80, - 0xefaa81, - 0xefaa82, - 0xefaa83, - 0xefaa84, - 0xefaa85, - 0xefaa86, - 0xefaa87, - 0xefaa88, - 0xefaa89, - 0xefaa8a, - 0xefaa8b, - 0xefaa8c, - 0xefaa8d, - 0xefaa8e, - 0xefaa8f, - 0xefaa90, - 0xefaa91, - 0xefaa92, - 0xefaa93, - 0xefaa94, - 0xefaa95, - 0xefaa96, - 0xefaa97, - 0xefaa98, - 0xefaa99, - 0xefaa9a, - 0xefaa9b, - 0xefaa9c, - 0xefaa9d, - 0xefaa9e, - 0xefaa9f, - 0xefaaa0, - 0xefaaa1, - 0xefaaa2, - 0xefaaa3, - 0xefaaa4, - 0xefaaa5, - 0xefaaa6, - 0xefaaa7, - 0xefaaa8, - 0xefaaa9, - 0xefaaaa, - 0xefaaab, - 0xefaaac, - 0xefaaad, - 0xefaaae, - 0xefaaaf, - 0xefaab0, - 0xefaab1, - 0xefaab2, - 0xefaab3, - 0xefaab4, - 0xefaab5, - 0xefaab6, - 0xefaab7, - 0xefaab8, - 0xefaab9, - 0xefaaba, - 0xefaabb, - 0xefaabc, - 0xefaabd, - 0xefaabe, - 0xefaabf, - 0xefab80, - 0xefab81, - 0xefab82, - 0xefab83, - 0xefab84, - 0xefab85, - 0xefab86, - 0xefab87, - 0xefab88, - 0xefab89, - 0xefab8a, - 0xefab8b, - 0xefab8c, - 0xefab8d, - 0xefab8e, - 0xefab8f, - 0xefab90, - 0xefab91, - 0xefab92, - 0xefab93, - 0xefab94, - 0xefab95, - 0xefab96, - 0xefab97, - 0xefab98, - 0xefab99, - 0xefab9a, - 0xefab9b, - 0xefab9c, - 0xefab9d, - 0xefab9e, - 0xefab9f, - 0xefaba0, - 0xefaba1, - 0xefaba2, - 0xefaba3, - 0xefaba4, - 0xefaba5, - 0xefaba6, - 0xefaba7, - 0xefaba8, - 0xefaba9, - 0xefabaa, - 0xefabab, - 0xefabac, - 0xefabad, - 0xefabae, - 0xefabaf, - 0xefabb0, - 0xefabb1, - 0xefabb2, - 0xefabb3, - 0xefabb4, - 0xefabb5, - 0xefabb6, - 0xefabb7, - 0xefabb8, - 0xefabb9, - 0xefabba, - 0xefabbb, - 0xefabbc, - 0xefabbd, - 0xefabbe, - 0xefabbf, - 0xefac80, - 0xefac81, - 0xefac82, - 0xefac83, - 0xefac84, - 0xefac85, - 0xefac86, - 0xefac87, - 0xefac88, - 0xefac89, - 0xefac8a, - 0xefac8b, - 0xefac8c, - 0xefac8d, - 0xefac8e, - 0xefac8f, - 0xefac90, - 0xefac91, - 0xefac92, - 0xefac93, - 0xefac94, - 0xefac95, - 0xefac96, - 0xefac97, - 0xefac98, - 0xefac99, - 0xefac9a, - 0xefac9b, - 0xefac9c, - 0xefac9d, - 0xefac9e, - 0xefac9f, - 0xefaca0, - 0xefaca1, - 0xefaca2, - 0xefaca3, - 0xefaca4, - 0xefaca5, - 0xefaca6, - 0xefaca7, - 0xefaca8, - 0xefaca9, - 0xefacaa, - 0xefacab, - 0xefacac, - 0xefacad, - 0xefacae, - 0xefacaf, - 0xefacb0, - 0xefacb1, - 0xefacb2, - 0xefacb3, - 0xefacb4, - 0xefacb5, - 0xefacb6, - 0xefacb7, - 0xefacb8, - 0xefacb9, - 0xefacba, - 0xefacbb, - 0xefacbc, - 0xefacbd, - 0xefacbe, - 0xefacbf, - 0xefad80, - 0xefad81, - 0xefad82, - 0xefad83, - 0xefad84, - 0xefad85, - 0xefad86, - 0xefad87, - 0xefad88, - 0xefad89, - 0xefad8a, - 0xefad8b, - 0xefad8c, - 0xefad8d, - 0xefad8e, - 0xefad8f, - 0xefad90, - 0xefad91, - 0xefad92, - 0xefad93, - 0xefad94, - 0xefad95, - 0xefad96, - 0xefad97, - 0xefad98, - 0xefad99, - 0xefad9a, - 0xefad9b, - 0xefad9c, - 0xefad9d, - 0xefad9e, - 0xefad9f, - 0xefada0, - 0xefada1, - 0xefada2, - 0xefada3, - 0xefada4, - 0xefada5, - 0xefada6, - 0xefada7, - 0xefada8, - 0xefada9, - 0xefadaa, - 0xefadab, - 0xefadac, - 0xefadad, - 0xefadae, - 0xefadaf, - 0xefadb0, - 0xefadb1, - 0xefadb2, - 0xefadb3, - 0xefadb4, - 0xefadb5, - 0xefadb6, - 0xefadb7, - 0xefadb8, - 0xefadb9, - 0xefadba, - 0xefadbb, - 0xefadbc, - 0xefadbd, - 0xefadbe, - 0xefadbf, - 0xefae80, - 0xefae81, - 0xefae82, - 0xefae83, - 0xefae84, - 0xefae85, - 0xefae86, - 0xefae87, - 0xefae88, - 0xefae89, - 0xefae8a, - 0xefae8b, - 0xefae8c, - 0xefae8d, - 0xefae8e, - 0xefae8f, - 0xefae90, - 0xefae91, - 0xefae92, - 0xefae93, - 0xefae94, - 0xefae95, - 0xefae96, - 0xefae97, - 0xefae98, - 0xefae99, - 0xefae9a, - 0xefae9b, - 0xefae9c, - 0xefae9d, - 0xefae9e, - 0xefae9f, - 0xefaea0, - 0xefaea1, - 0xefaea2, - 0xefaea3, - 0xefaea4, - 0xefaea5, - 0xefaea6, - 0xefaea7, - 0xefaea8, - 0xefaea9, - 0xefaeaa, - 0xefaeab, - 0xefaeac, - 0xefaead, - 0xefaeae, - 0xefaeaf, - 0xefaeb0, - 0xefaeb1, - 0xefaeb2, - 0xefaeb3, - 0xefaeb4, - 0xefaeb5, - 0xefaeb6, - 0xefaeb7, - 0xefaeb8, - 0xefaeb9, - 0xefaeba, - 0xefaebb, - 0xefaebc, - 0xefaebd, - 0xefaebe, - 0xefaebf, - 0xefaf80, - 0xefaf81, - 0xefaf82, - 0xefaf83, - 0xefaf84, - 0xefaf85, - 0xefaf86, - 0xefaf87, - 0xefaf88, - 0xefaf89, - 0xefaf8a, - 0xefaf8b, - 0xefaf8c, - 0xefaf8d, - 0xefaf8e, - 0xefaf8f, - 0xefaf90, - 0xefaf91, - 0xefaf92, - 0xefaf93, - 0xefaf94, - 0xefaf95, - 0xefaf96, - 0xefaf97, - 0xefaf98, - 0xefaf99, - 0xefaf9a, - 0xefaf9b, - 0xefaf9c, - 0xefaf9d, - 0xefaf9e, - 0xefaf9f, - 0xefafa0, - 0xefafa1, - 0xefafa2, - 0xefafa3, - 0xefafa4, - 0xefafa5, - 0xefafa6, - 0xefafa7, - 0xefafa8, - 0xefafa9, - 0xefafaa, - 0xefafab, - 0xefafac, - 0xefafad, - 0xefafae, - 0xefafaf, - 0xefafb0, - 0xefafb1, - 0xefafb2, - 0xefafb3, - 0xefafb4, - 0xefafb5, - 0xefafb6, - 0xefafb7, - 0xefafb8, - 0xefafb9, - 0xefafba, - 0xefafbb, - 0xefafbc, - 0xefafbd, - 0xefafbe, - 0xefafbf, - 0xefb080, - 0xefb081, - 0xefb082, - 0xefb083, - 0xefb084, - 0xefb085, - 0xefb086, - 0xefb087, - 0xefb088, - 0xefb089, - 0xefb08a, - 0xefb08b, - 0xefb08c, - 0xefb08d, - 0xefb08e, - 0xefb08f, - 0xefb090, - 0xefb091, - 0xefb092, - 0xefb093, - 0xefb094, - 0xefb095, - 0xefb096, - 0xefb097, - 0xefb098, - 0xefb099, - 0xefb09a, - 0xefb09b, - 0xefb09c, - 0xefb09d, - 0xefb09e, - 0xefb09f, - 0xefb0a0, - 0xefb0a1, - 0xefb0a2, - 0xefb0a3, - 0xefb0a4, - 0xefb0a5, - 0xefb0a6, - 0xefb0a7, - 0xefb0a8, - 0xefb0a9, - 0xefb0aa, - 0xefb0ab, - 0xefb0ac, - 0xefb0ad, - 0xefb0ae, - 0xefb0af, - 0xefb0b0, - 0xefb0b1, - 0xefb0b2, - 0xefb0b3, - 0xefb0b4, - 0xefb0b5, - 0xefb0b6, - 0xefb0b7, - 0xefb0b8, - 0xefb0b9, - 0xefb0ba, - 0xefb0bb, - 0xefb0bc, - 0xefb0bd, - 0xefb0be, - 0xefb0bf, - 0xefb180, - 0xefb181, - 0xefb182, - 0xefb183, - 0xefb184, - 0xefb185, - 0xefb186, - 0xefb187, - 0xefb188, - 0xefb189, - 0xefb18a, - 0xefb18b, - 0xefb18c, - 0xefb18d, - 0xefb18e, - 0xefb18f, - 0xefb190, - 0xefb191, - 0xefb192, - 0xefb193, - 0xefb194, - 0xefb195, - 0xefb196, - 0xefb197, - 0xefb198, - 0xefb199, - 0xefb19a, - 0xefb19b, - 0xefb19c, - 0xefb19d, - 0xefb19e, - 0xefb19f, - 0xefb1a0, - 0xefb1a1, - 0xefb1a2, - 0xefb1a3, - 0xefb1a4, - 0xefb1a5, - 0xefb1a6, - 0xefb1a7, - 0xefb1a8, - 0xefb1a9, - 0xefb1aa, - 0xefb1ab, - 0xefb1ac, - 0xefb1ad, - 0xefb1ae, - 0xefb1af, - 0xefb1b0, - 0xefb1b1, - 0xefb1b2, - 0xefb1b3, - 0xefb1b4, - 0xefb1b5, - 0xefb1b6, - 0xefb1b7, - 0xefb1b8, - 0xefb1b9, - 0xefb1ba, - 0xefb1bb, - 0xefb1bc, - 0xefb1bd, - 0xefb1be, - 0xefb1bf, - 0xefb280, - 0xefb281, - 0xefb282, - 0xefb283, - 0xefb284, - 0xefb285, - 0xefb286, - 0xefb287, - 0xefb288, - 0xefb289, - 0xefb28a, - 0xefb28b, - 0xefb28c, - 0xefb28d, - 0xefb28e, - 0xefb28f, - 0xefb290, - 0xefb291, - 0xefb292, - 0xefb293, - 0xefb294, - 0xefb295, - 0xefb296, - 0xefb297, - 0xefb298, - 0xefb299, - 0xefb29a, - 0xefb29b, - 0xefb29c, - 0xefb29d, - 0xefb29e, - 0xefb29f, - 0xefb2a0, - 0xefb2a1, - 0xefb2a2, - 0xefb2a3, - 0xefb2a4, - 0xefb2a5, - 0xefb2a6, - 0xefb2a7, - 0xefb2a8, - 0xefb2a9, - 0xefb2aa, - 0xefb2ab, - 0xefb2ac, - 0xefb2ad, - 0xefb2ae, - 0xefb2af, - 0xefb2b0, - 0xefb2b1, - 0xefb2b2, - 0xefb2b3, - 0xefb2b4, - 0xefb2b5, - 0xefb2b6, - 0xefb2b7, - 0xefb2b8, - 0xefb2b9, - 0xefb2ba, - 0xefb2bb, - 0xefb2bc, - 0xefb2bd, - 0xefb2be, - 0xefb2bf, - 0xefb380, - 0xefb381, - 0xefb382, - 0xefb383, - 0xefb384, - 0xefb385, - 0xefb386, - 0xefb387, - 0xefb388, - 0xefb389, - 0xefb38a, - 0xefb38b, - 0xefb38c, - 0xefb38d, - 0xefb38e, - 0xefb38f, - 0xefb390, - 0xefb391, - 0xefb392, - 0xefb393, - 0xefb394, - 0xefb395, - 0xefb396, - 0xefb397, - 0xefb398, - 0xefb399, - 0xefb39a, - 0xefb39b, - 0xefb39c, - 0xefb39d, - 0xefb39e, - 0xefb39f, - 0xefb3a0, - 0xefb3a1, - 0xefb3a2, - 0xefb3a3, - 0xefb3a4, - 0xefb3a5, - 0xefb3a6, - 0xefb3a7, - 0xefb3a8, - 0xefb3a9, - 0xefb3aa, - 0xefb3ab, - 0xefb3ac, - 0xefb3ad, - 0xefb3ae, - 0xefb3af, - 0xefb3b0, - 0xefb3b1, - 0xefb3b2, - 0xefb3b3, - 0xefb3b4, - 0xefb3b5, - 0xefb3b6, - 0xefb3b7, - 0xefb3b8, - 0xefb3b9, - 0xefb3ba, - 0xefb3bb, - 0xefb3bc, - 0xefb3bd, - 0xefb3be, - 0xefb3bf, - 0xefb480, - 0xefb481, - 0xefb482, - 0xefb483, - 0xefb484, - 0xefb485, - 0xefb486, - 0xefb487, - 0xefb488, - 0xefb489, - 0xefb48a, - 0xefb48b, - 0xefb48c, - 0xefb48d, - 0xefb48e, - 0xefb48f, - 0xefb490, - 0xefb491, - 0xefb492, - 0xefb493, - 0xefb494, - 0xefb495, - 0xefb496, - 0xefb497, - 0xefb498, - 0xefb499, - 0xefb49a, - 0xefb49b, - 0xefb49c, - 0xefb49d, - 0xefb49e, - 0xefb49f, - 0xefb4a0, - 0xefb4a1, - 0xefb4a2, - 0xefb4a3, - 0xefb4a4, - 0xefb4a5, - 0xefb4a6, - 0xefb4a7, - 0xefb4a8, - 0xefb4a9, - 0xefb4aa, - 0xefb4ab, - 0xefb4ac, - 0xefb4ad, - 0xefb4ae, - 0xefb4af, - 0xefb4b0, - 0xefb4b1, - 0xefb4b2, - 0xefb4b3, - 0xefb4b4, - 0xefb4b5, - 0xefb4b6, - 0xefb4b7, - 0xefb4b8, - 0xefb4b9, - 0xefb4ba, - 0xefb4bb, - 0xefb4bc, - 0xefb4bd, - 0xefb4be, - 0xefb4bf, - 0xefb580, - 0xefb581, - 0xefb582, - 0xefb583, - 0xefb584, - 0xefb585, - 0xefb586, - 0xefb587, - 0xefb588, - 0xefb589, - 0xefb58a, - 0xefb58b, - 0xefb58c, - 0xefb58d, - 0xefb58e, - 0xefb58f, - 0xefb590, - 0xefb591, - 0xefb592, - 0xefb593, - 0xefb594, - 0xefb595, - 0xefb596, - 0xefb597, - 0xefb598, - 0xefb599, - 0xefb59a, - 0xefb59b, - 0xefb59c, - 0xefb59d, - 0xefb59e, - 0xefb59f, - 0xefb5a0, - 0xefb5a1, - 0xefb5a2, - 0xefb5a3, - 0xefb5a4, - 0xefb5a5, - 0xefb5a6, - 0xefb5a7, - 0xefb5a8, - 0xefb5a9, - 0xefb5aa, - 0xefb5ab, - 0xefb5ac, - 0xefb5ad, - 0xefb5ae, - 0xefb5af, - 0xefb5b0, - 0xefb5b1, - 0xefb5b2, - 0xefb5b3, - 0xefb5b4, - 0xefb5b5, - 0xefb5b6, - 0xefb5b7, - 0xefb5b8, - 0xefb5b9, - 0xefb5ba, - 0xefb5bb, - 0xefb5bc, - 0xefb5bd, - 0xefb5be, - 0xefb5bf, - 0xefb680, - 0xefb681, - 0xefb682, - 0xefb683, - 0xefb684, - 0xefb685, - 0xefb686, - 0xefb687, - 0xefb688, - 0xefb689, - 0xefb68a, - 0xefb68b, - 0xefb68c, - 0xefb68d, - 0xefb68e, - 0xefb68f, - 0xefb690, - 0xefb691, - 0xefb692, - 0xefb693, - 0xefb694, - 0xefb695, - 0xefb696, - 0xefb697, - 0xefb698, - 0xefb699, - 0xefb69a, - 0xefb69b, - 0xefb69c, - 0xefb69d, - 0xefb69e, - 0xefb69f, - 0xefb6a0, - 0xefb6a1, - 0xefb6a2, - 0xefb6a3, - 0xefb6a4, - 0xefb6a5, - 0xefb6a6, - 0xefb6a7, - 0xefb6a8, - 0xefb6a9, - 0xefb6aa, - 0xefb6ab, - 0xefb6ac, - 0xefb6ad, - 0xefb6ae, - 0xefb6af, - 0xefb6b0, - 0xefb6b1, - 0xefb6b2, - 0xefb6b3, - 0xefb6b4, - 0xefb6b5, - 0xefb6b6, - 0xefb6b7, - 0xefb6b8, - 0xefb6b9, - 0xefb6ba, - 0xefb6bb, - 0xefb6bc, - 0xefb6bd, - 0xefb6be, - 0xefb6bf, - 0xefb780, - 0xefb781, - 0xefb782, - 0xefb783, - 0xefb784, - 0xefb785, - 0xefb786, - 0xefb787, - 0xefb788, - 0xefb789, - 0xefb78a, - 0xefb78b, - 0xefb78c, - 0xefb78d, - 0xefb78e, - 0xefb78f, - 0xefb790, - 0xefb791, - 0xefb792, - 0xefb793, - 0xefb794, - 0xefb795, - 0xefb796, - 0xefb797, - 0xefb798, - 0xefb799, - 0xefb79a, - 0xefb79b, - 0xefb79c, - 0xefb79d, - 0xefb79e, - 0xefb79f, - 0xefb7a0, - 0xefb7a1, - 0xefb7a2, - 0xefb7a3, - 0xefb7a4, - 0xefb7a5, - 0xefb7a6, - 0xefb7a7, - 0xefb7a8, - 0xefb7a9, - 0xefb7aa, - 0xefb7ab, - 0xefb7ac, - 0xefb7ad, - 0xefb7ae, - 0xefb7af, - 0xefb7b0, - 0xefb7b1, - 0xefb7b2, - 0xefb7b3, - 0xefb7b4, - 0xefb7b5, - 0xefb7b6, - 0xefb7b7, - 0xefb7b8, - 0xefb7b9, - 0xefb7ba, - 0xefb7bb, - 0xefb7bc, - 0xefb7bd, - 0xefb7be, - 0xefb7bf, - 0xefb880, - 0xefb881, - 0xefb882, - 0xefb883, - 0xefb884, - 0xefb885, - 0xefb886, - 0xefb887, - 0xefb888, - 0xefb889, - 0xefb88a, - 0xefb88b, - 0xefb88c, - 0xefb88d, - 0xefb88e, - 0xefb88f, - 0xefb890, - 0xefb891, - 0xefb892, - 0xefb893, - 0xefb894, - 0xefb895, - 0xefb896, - 0xefb897, - 0xefb898, - 0xefb899, - 0xefb89a, - 0xefb89b, - 0xefb89c, - 0xefb89d, - 0xefb89e, - 0xefb89f, - 0xefb8a0, - 0xefb8a1, - 0xefb8a2, - 0xefb8a3, - 0xefb8a4, - 0xefb8a5, - 0xefb8a6, - 0xefb8a7, - 0xefb8a8, - 0xefb8a9, - 0xefb8aa, - 0xefb8ab, - 0xefb8ac, - 0xefb8ad, - 0xefb8ae, - 0xefb8af, - 0xefb8b0, - 0xefb8b1, - 0xefb8b2, - 0xefb8b3, - 0xefb8b4, - 0xefb8b5, - 0xefb8b6, - 0xefb8b7, - 0xefb8b8, - 0xefb8b9, - 0xefb8ba, - 0xefb8bb, - 0xefb8bc, - 0xefb8bd, - 0xefb8be, - 0xefb8bf, - 0xefb980, - 0xefb981, - 0xefb982, - 0xefb983, - 0xefb984, - 0xefb985, - 0xefb986, - 0xefb987, - 0xefb988, - 0xefb989, - 0xefb98a, - 0xefb98b, - 0xefb98c, - 0xefb98d, - 0xefb98e, - 0xefb98f, - 0xefb990, - 0xefb991, - 0xefb992, - 0xefb993, - 0xefb994, - 0xefb995, - 0xefb996, - 0xefb997, - 0xefb998, - 0xefb999, - 0xefb99a, - 0xefb99b, - 0xefb99c, - 0xefb99d, - 0xefb99e, - 0xefb99f, - 0xefb9a0, - 0xefb9a1, - 0xefb9a2, - 0xefb9a3, - 0xefb9a4, - 0xefb9a5, - 0xefb9a6, - 0xefb9a7, - 0xefb9a8, - 0xefb9a9, - 0xefb9aa, - 0xefb9ab, - 0xefb9ac, - 0xefb9ad, - 0xefb9ae, - 0xefb9af, - 0xefb9b0, - 0xefb9b1, - 0xefb9b2, - 0xefb9b3, - 0xefb9b4, - 0xefb9b5, - 0xefb9b6, - 0xefb9b7, - 0xefb9b8, - 0xefb9b9, - 0xefb9ba, - 0xefb9bb, - 0xefb9bc, - 0xefb9bd, - 0xefb9be, - 0xefb9bf, - 0xefba80, - 0xefba81, - 0xefba82, - 0xefba83, - 0xefba84, - 0xefba85, - 0xefba86, - 0xefba87, - 0xefba88, - 0xefba89, - 0xefba8a, - 0xefba8b, - 0xefba8c, - 0xefba8d, - 0xefba8e, - 0xefba8f, - 0xefba90, - 0xefba91, - 0xefba92, - 0xefba93, - 0xefba94, - 0xefba95, - 0xefba96, - 0xefba97, - 0xefba98, - 0xefba99, - 0xefba9a, - 0xefba9b, - 0xefba9c, - 0xefba9d, - 0xefba9e, - 0xefba9f, - 0xefbaa0, - 0xefbaa1, - 0xefbaa2, - 0xefbaa3, - 0xefbaa4, - 0xefbaa5, - 0xefbaa6, - 0xefbaa7, - 0xefbaa8, - 0xefbaa9, - 0xefbaaa, - 0xefbaab, - 0xefbaac, - 0xefbaad, - 0xefbaae, - 0xefbaaf, - 0xefbab0, - 0xefbab1, - 0xefbab2, - 0xefbab3, - 0xefbab4, - 0xefbab5, - 0xefbab6, - 0xefbab7, - 0xefbab8, - 0xefbab9, - 0xefbaba, - 0xefbabb, - 0xefbabc, - 0xefbabd, - 0xefbabe, - 0xefbabf, - 0xefbb80, - 0xefbb81, - 0xefbb82, - 0xefbb83, - 0xefbb84, - 0xefbb85, - 0xefbb86, - 0xefbb87, - 0xefbb88, - 0xefbb89, - 0xefbb8a, - 0xefbb8b, - 0xefbb8c, - 0xefbb8d, - 0xefbb8e, - 0xefbb8f, - 0xefbb90, - 0xefbb91, - 0xefbb92, - 0xefbb93, - 0xefbb94, - 0xefbb95, - 0xefbb96, - 0xefbb97, - 0xefbb98, - 0xefbb99, - 0xefbb9a, - 0xefbb9b, - 0xefbb9c, - 0xefbb9d, - 0xefbb9e, - 0xefbb9f, - 0xefbba0, - 0xefbba1, - 0xefbba2, - 0xefbba3, - 0xefbba4, - 0xefbba5, - 0xefbba6, - 0xefbba7, - 0xefbba8, - 0xefbba9, - 0xefbbaa, - 0xefbbab, - 0xefbbac, - 0xefbbad, - 0xefbbae, - 0xefbbaf, - 0xefbbb0, - 0xefbbb1, - 0xefbbb2, - 0xefbbb3, - 0xefbbb4, - 0xefbbb5, - 0xefbbb6, - 0xefbbb7, - 0xefbbb8, - 0xefbbb9, - 0xefbbba, - 0xefbbbb, - 0xefbbbc, - 0xefbbbd, - 0xefbbbe, - 0xefbbbf, - 0xefbc80, - 0xefbc81, - 0xefbc82, - 0xefbc83, - 0xefbc84, - 0xefbc85, - 0xefbc86, - 0xefbc87, - 0xefbc88, - 0xefbc89, - 0xefbc8a, - 0xefbc8b, - 0xefbc8c, - 0xefbc8d, - 0xefbc8e, - 0xefbc8f, - 0xefbc90, - 0xefbc91, - 0xefbc92, - 0xefbc93, - 0xefbc94, - 0xefbc95, - 0xefbc96, - 0xefbc97, - 0xefbc98, - 0xefbc99, - 0xefbc9a, - 0xefbc9b, - 0xefbc9c, - 0xefbc9d, - 0xefbc9e, - 0xefbc9f, - 0xefbca0, - 0xefbca1, - 0xefbca2, - 0xefbca3, - 0xefbca4, - 0xefbca5, - 0xefbca6, - 0xefbca7, - 0xefbca8, - 0xefbca9, - 0xefbcaa, - 0xefbcab, - 0xefbcac, - 0xefbcad, - 0xefbcae, - 0xefbcaf, - 0xefbcb0, - 0xefbcb1, - 0xefbcb2, - 0xefbcb3, - 0xefbcb4, - 0xefbcb5, - 0xefbcb6, - 0xefbcb7, - 0xefbcb8, - 0xefbcb9, - 0xefbcba, - 0xefbcbb, - 0xefbcbc, - 0xefbcbd, - 0xefbcbe, - 0xefbcbf, - 0xefbd80, - 0xefbd81, - 0xefbd82, - 0xefbd83, - 0xefbd84, - 0xefbd85, - 0xefbd86, - 0xefbd87, - 0xefbd88, - 0xefbd89, - 0xefbd8a, - 0xefbd8b, - 0xefbd8c, - 0xefbd8d, - 0xefbd8e, - 0xefbd8f, - 0xefbd90, - 0xefbd91, - 0xefbd92, - 0xefbd93, - 0xefbd94, - 0xefbd95, - 0xefbd96, - 0xefbd97, - 0xefbd98, - 0xefbd99, - 0xefbd9a, - 0xefbd9b, - 0xefbd9c, - 0xefbd9d, - 0xefbd9e, - 0xefbd9f, - 0xefbda0, - 0xefbda1, - 0xefbda2, - 0xefbda3, - 0xefbda4, - 0xefbda5, - 0xefbda6, - 0xefbda7, - 0xefbda8, - 0xefbda9, - 0xefbdaa, - 0xefbdab, - 0xefbdac, - 0xefbdad, - 0xefbdae, - 0xefbdaf, - 0xefbdb0, - 0xefbdb1, - 0xefbdb2, - 0xefbdb3, - 0xefbdb4, - 0xefbdb5, - 0xefbdb6, - 0xefbdb7, - 0xefbdb8, - 0xefbdb9, - 0xefbdba, - 0xefbdbb, - 0xefbdbc, - 0xefbdbd, - 0xefbdbe, - 0xefbdbf, - 0xefbe80, - 0xefbe81, - 0xefbe82, - 0xefbe83, - 0xefbe84, - 0xefbe85, - 0xefbe86, - 0xefbe87, - 0xefbe88, - 0xefbe89, - 0xefbe8a, - 0xefbe8b, - 0xefbe8c, - 0xefbe8d, - 0xefbe8e, - 0xefbe8f, - 0xefbe90, - 0xefbe91, - 0xefbe92, - 0xefbe93, - 0xefbe94, - 0xefbe95, - 0xefbe96, - 0xefbe97, - 0xefbe98, - 0xefbe99, - 0xefbe9a, - 0xefbe9b, - 0xefbe9c, - 0xefbe9d, - 0xefbe9e, - 0xefbe9f, - 0xefbea0, - 0xefbea1, - 0xefbea2, - 0xefbea3, - 0xefbea4, - 0xefbea5, - 0xefbea6, - 0xefbea7, - 0xefbea8, - 0xefbea9, - 0xefbeaa, - 0xefbeab, - 0xefbeac, - 0xefbead, - 0xefbeae, - 0xefbeaf, - 0xefbeb0, - 0xefbeb1, - 0xefbeb2, - 0xefbeb3, - 0xefbeb4, - 0xefbeb5, - 0xefbeb6, - 0xefbeb7, - 0xefbeb8, - 0xefbeb9, - 0xefbeba, - 0xefbebb, - 0xefbebc, - 0xefbebd, - 0xefbebe, - 0xefbebf, - 0xefbf80, - 0xefbf81, - 0xefbf82, - 0xefbf83, - 0xefbf84, - 0xefbf85, - 0xefbf86, - 0xefbf87, - 0xefbf88, - 0xefbf89, - 0xefbf8a, - 0xefbf8b, - 0xefbf8c, - 0xefbf8d, - 0xefbf8e, - 0xefbf8f, - 0xefbf90, - 0xefbf91, - 0xefbf92, - 0xefbf93, - 0xefbf94, - 0xefbf95, - 0xefbf96, - 0xefbf97, - 0xefbf98, - 0xefbf99, - 0xefbf9a, - 0xefbf9b, - 0xefbf9c, - 0xefbf9d, - 0xefbf9e, - 0xefbf9f, - 0xefbfa0, - 0xefbfa1, - 0xefbfa2, - 0xefbfa3, - 0xefbfa4, - 0xefbfa5, - 0xefbfa6, - 0xefbfa7, - 0xefbfa8, - 0xefbfa9, - 0xefbfaa, - 0xefbfab, - 0xefbfac, - 0xefbfad, - 0xefbfae, - 0xefbfaf, - 0xefbfb0, - 0xefbfb1, - 0xefbfb2, - 0xefbfb3, - 0xefbfb4, - 0xefbfb5, - 0xefbfb6, - 0xefbfb7, - 0xefbfb8, - 0xefbfb9, - 0xefbfba, - 0xefbfbb, - 0xefbfbc, - 0xefbfbd, - 0xefbfbe, - 0xefbfbf -}; diff -Nru fcitx-4.0.1/src/ui/AboutWindow.c fcitx-4.1.1/src/ui/AboutWindow.c --- fcitx-4.0.1/src/ui/AboutWindow.c 2010-12-17 04:19:51.000000000 +0000 +++ fcitx-4.1.1/src/ui/AboutWindow.c 1970-01-01 00:00:00.000000000 +0000 @@ -1,113 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2005 by Yunfan * - * yunfan_zg@163.com * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * - ***************************************************************************/ - -#include -#include -#include - -#include "core/fcitx.h" - -#include "ui/AboutWindow.h" -#include "ui/ui.h" -#include "core/xim.h" -#include "tools/configfile.h" - -extern Display *dpy; -extern int iScreen; - -int ABOUT_WINDOW_WIDTH; - -char AboutCaption[] = "关于 - FCITX"; -char AboutTitle[] = "小企鹅中文输入法"; -char AboutEmail[] = "yuking_net@sohu.com"; -char AboutCopyRight[] = "(c) 2005, Yuking"; -char strTitle[100]; - -AboutWindow aboutWindow; -extern Atom killAtom, windowTypeAtom, typeDialogAtom; -static void InitAboutWindowProperty (void); - -Bool CreateAboutWindow (void) -{ - int dwidth, dheight; - strcpy (strTitle, AboutTitle); - strcat (strTitle, " "); - strcat (strTitle, VERSION); - GetScreenSize(&dwidth, &dheight); - - aboutWindow.color.r = aboutWindow.color.g = aboutWindow.color.b = 220.0 / 256; - aboutWindow.fontColor.r = aboutWindow.fontColor.g = aboutWindow.fontColor.b = 0; - aboutWindow.fontSize = 11; - - ABOUT_WINDOW_WIDTH = StringWidth (strTitle, gs.font, aboutWindow.fontSize ) + 50; - aboutWindow.window = - XCreateSimpleWindow (dpy, DefaultRootWindow (dpy), (dwidth - ABOUT_WINDOW_WIDTH) / 2, (dheight - ABOUT_WINDOW_HEIGHT) / 2, ABOUT_WINDOW_WIDTH, ABOUT_WINDOW_HEIGHT, 0, WhitePixel (dpy, DefaultScreen (dpy)), WhitePixel (dpy, DefaultScreen (dpy))); - - aboutWindow.surface = cairo_xlib_surface_create(dpy, aboutWindow.window, DefaultVisual(dpy, iScreen), ABOUT_WINDOW_WIDTH, ABOUT_WINDOW_HEIGHT); - if (aboutWindow.window == None) - return False; - - InitAboutWindowProperty (); - XSelectInput (dpy, aboutWindow.window, ExposureMask | ButtonPressMask | ButtonReleaseMask | PointerMotionMask ); - - return True; -} - -void InitAboutWindowProperty (void) -{ - XSetTransientForHint (dpy, aboutWindow.window, DefaultRootWindow (dpy)); - - XChangeProperty (dpy, aboutWindow.window, windowTypeAtom, XA_ATOM, 32, PropModeReplace, (void *) &typeDialogAtom, 1); - - XSetWMProtocols (dpy, aboutWindow.window, &killAtom, 1); - - char *p; - - p = AboutCaption; - - XTextProperty tp; - Xutf8TextListToTextProperty(dpy, &p, 1, XUTF8StringStyle, &tp); - XSetWMName (dpy, aboutWindow.window, &tp); - XFree(tp.value); -} - -void DisplayAboutWindow (void) -{ - int dwidth, dheight; - GetScreenSize(&dwidth, &dheight); - XMapRaised (dpy, aboutWindow.window); - XMoveWindow (dpy, aboutWindow.window, (dwidth - ABOUT_WINDOW_WIDTH) / 2, (dheight - ABOUT_WINDOW_HEIGHT) / 2); -} - -void DrawAboutWindow (void) -{ - cairo_t *c = cairo_create(aboutWindow.surface); - cairo_set_source_rgb(c, aboutWindow.color.r, aboutWindow.color.g, aboutWindow.color.b); - cairo_set_operator(c, CAIRO_OPERATOR_SOURCE); - cairo_paint(c); - - OutputString (c, strTitle, gs.font, aboutWindow.fontSize, (ABOUT_WINDOW_WIDTH - StringWidth (strTitle, gs.font, aboutWindow.fontSize)) / 2, 6 + 30, &aboutWindow.fontColor); - - OutputString (c, AboutEmail, gs.font, aboutWindow.fontSize, (ABOUT_WINDOW_WIDTH - StringWidth (AboutEmail, gs.font, aboutWindow.fontSize)) / 2, 6 + 60, &aboutWindow.fontColor); - - OutputString (c, AboutCopyRight, gs.font, aboutWindow.fontSize, (ABOUT_WINDOW_WIDTH - StringWidth (AboutCopyRight, gs.font, aboutWindow.fontSize)) / 2, 6 + 80, &aboutWindow.fontColor); - - cairo_destroy(c); -} diff -Nru fcitx-4.0.1/src/ui/AboutWindow.h fcitx-4.1.1/src/ui/AboutWindow.h --- fcitx-4.0.1/src/ui/AboutWindow.h 2010-11-28 11:54:51.000000000 +0000 +++ fcitx-4.1.1/src/ui/AboutWindow.h 1970-01-01 00:00:00.000000000 +0000 @@ -1,48 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2005 by Yunfan * - * yunfan_zg@163.com * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * - ***************************************************************************/ - -/* A very simple About Window for FCITX */ - -#ifndef _ABOUT_WINDOW_H -#define _ABOUT_WINDOW_H - -#include -#include "ui/skin.h" - -#define ABOUT_WINDOW_HEIGHT 150 - -typedef struct AboutWindow -{ - Window window; - cairo_surface_t* surface; - ConfigColor color; - ConfigColor fontColor; - int width; - int fontSize; - Atom about_kill_atom; -} AboutWindow; - -extern AboutWindow aboutWindow; - -Bool CreateAboutWindow (void); -void DisplayAboutWindow (void); -void DrawAboutWindow (void); - -#endif diff -Nru fcitx-4.0.1/src/ui/cairostuff/cairostuff.c fcitx-4.1.1/src/ui/cairostuff/cairostuff.c --- fcitx-4.0.1/src/ui/cairostuff/cairostuff.c 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/ui/cairostuff/cairostuff.c 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,219 @@ +/*************************************************************************** + * Copyright (C) 2010~2011 by CSSlayer * + * wengxt@gmail.com * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +#include +#include "fcitx/fcitx.h" +#include "fcitx-utils/utf8.h" +#include "fcitx-config/fcitx-config.h" +#include "cairostuff.h" + +#ifdef _ENABLE_PANGO +#include +#endif + +int +StringWidth(const char *str, const char *font, int fontSize) +{ + if (!str || str[0] == 0) + return 0; + cairo_surface_t *surface = + cairo_image_surface_create(CAIRO_FORMAT_RGB24, 10, 10); + cairo_t *c = cairo_create(surface); + SetFontContext(c, font, fontSize); + + int width = 0; + StringSizeWithContext(c, str, &width, NULL); + ResetFontContext(); + + cairo_destroy(c); + cairo_surface_destroy(surface); + + return width; +} + +#ifdef _ENABLE_PANGO +void +StringSizeWithContextReal(cairo_t * c, PangoFontDescription* fontDesc, const char *str, int* w, int* h) +{ + if (!str || str[0] == 0) + { + if (w) *w= 0; + if (h) *h= 0; + return; + } + if (!utf8_check_string(str)) + { + if (w) *w= 0; + if (h) *h= 0; + + return; + } + + PangoLayout *layout = pango_cairo_create_layout (c); + pango_layout_set_text (layout, str, -1); + pango_layout_set_font_description (layout, fontDesc); + pango_layout_get_pixel_size(layout, w, h); + g_object_unref (layout); +} +#else + +void +StringSizeWithContextReal(cairo_t * c, const char *str, int* w, int* h) +{ + if (!str || str[0] == 0) + { + if (w) *w= 0; + if (h) *h= 0; + return; + } + if (!utf8_check_string(str)) + { + if (w) *w= 0; + if (h) *h= 0; + + return; + } + cairo_text_extents_t extents; + cairo_font_extents_t fontextents; + cairo_text_extents(c, str, &extents); + cairo_font_extents(c, &fontextents); + if (w) + *w = extents.x_advance; + if (h) + *h = fontextents.height; +} +#endif + +int +FontHeight(const char *font, int fontSize) +{ + cairo_surface_t *surface = + cairo_image_surface_create(CAIRO_FORMAT_RGB24, 10, 10); + cairo_t *c = cairo_create(surface); + + SetFontContext(c, font, fontSize); + int height = FontHeightWithContext(c); + ResetFontContext(); + + cairo_destroy(c); + cairo_surface_destroy(surface); + return height; +} + +#ifdef _ENABLE_PANGO +int +FontHeightWithContextReal(cairo_t* c, PangoFontDescription* fontDesc) +{ + FCITX_UNUSED(c); + int height; + + if (pango_font_description_get_size_is_absolute(fontDesc)) /* it must be this case */ + { + height = pango_font_description_get_size(fontDesc); + height /= PANGO_SCALE; + } + else + height = 0; + + return height; +} +#else + +int +FontHeightWithContextReal(cairo_t * c) +{ + cairo_matrix_t matrix; + cairo_get_font_matrix (c, &matrix); + + int height = matrix.xx; + return height; +} +#endif + +/* + * 以指定的颜色在窗口的指定位置输出字串 + */ +void +OutputString(cairo_t * c, const char *str, const char *font, int fontSize, int x, + int y, ConfigColor * color) +{ + if (!str || str[0] == 0) + return; + + cairo_save(c); + + cairo_set_source_rgb(c, color->r, color->g, color->b); + SetFontContext(c, font, fontSize); + OutputStringWithContext(c, str, x, y); + ResetFontContext(); + + cairo_restore(c); +} + +#ifdef _ENABLE_PANGO +void +OutputStringWithContextReal(cairo_t * c, PangoFontDescription* desc, const char *str, int x, int y) +{ + if (!str || str[0] == 0) + return; + if (!utf8_check_string(str)) + return; + cairo_save(c); + + PangoLayout *layout; + + layout = pango_cairo_create_layout (c); + pango_layout_set_text (layout, str, -1); + pango_layout_set_font_description (layout, desc); + cairo_move_to(c, x, y); + pango_cairo_show_layout (c, layout); + + cairo_restore(c); + g_object_unref (layout); +} +#else + +void +OutputStringWithContextReal(cairo_t * c, const char *str, int x, int y) +{ + if (!str || str[0] == 0) + return; + if (!utf8_check_string(str)) + return; + cairo_save(c); + int height = FontHeightWithContextReal(c); + cairo_move_to(c, x, y + height); + cairo_show_text(c, str); + cairo_restore(c); +} +#endif + + +#ifdef _ENABLE_PANGO +PangoFontDescription* GetPangoFontDescription(const char* font, int size) +{ + PangoFontDescription* desc; + desc = pango_font_description_new (); + pango_font_description_set_absolute_size(desc, size * PANGO_SCALE); + pango_font_description_set_family(desc, font); + return desc; +} +#endif +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/ui/cairostuff/cairostuff.h fcitx-4.1.1/src/ui/cairostuff/cairostuff.h --- fcitx-4.0.1/src/ui/cairostuff/cairostuff.h 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/ui/cairostuff/cairostuff.h 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,73 @@ +/*************************************************************************** + * Copyright (C) 2010~2011 by CSSlayer * + * wengxt@gmail.com * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ +#ifndef CAIROSTUFF_H +#define CAIROSTUFF_H + +#include "config.h" +#include + +int StringWidth(const char *str, const char *font, int fontSize); +void OutputString(cairo_t * c, const char *str, const char *font, int fontSize, int x, int y, ConfigColor * color); + +#ifdef _ENABLE_PANGO + +#include + +#define OutputStringWithContext(c,str,x,y) OutputStringWithContextReal(c, fontDesc, str, x, y) +#define StringSizeWithContext(c,str,w,h) StringSizeWithContextReal(c, fontDesc, str, w, h) +#define FontHeightWithContext(c) FontHeightWithContextReal(c, fontDesc) + +PangoFontDescription* GetPangoFontDescription(const char* font, int size); +void OutputStringWithContextReal(cairo_t * c, PangoFontDescription* desc, const char *str, int x, int y); +void StringSizeWithContextReal(cairo_t * c, PangoFontDescription* fontDesc, const char *str, int* x, int* h); +int FontHeightWithContextReal(cairo_t* c, PangoFontDescription* fontDesc); + +#define SetFontContext(context, fontname, size) \ + PangoFontDescription* fontDesc = GetPangoFontDescription(fontname, size) + +#define ResetFontContext() \ + do { \ + pango_font_description_free(fontDesc); \ + } while(0) + +#else + +#define OutputStringWithContext(c,str,x,y) OutputStringWithContextReal(c, str, x, y) +#define StringSizeWithContext(c,str,w,h) StringSizeWithContextReal(c, str, w, h) +#define FontHeightWithContext(c) FontHeightWithContextReal(c) + +void OutputStringWithContextReal(cairo_t * c, const char *str, int x, int y); +void StringSizeWithContextReal(cairo_t * c, const char *str, int* x, int* h); +int FontHeightWithContextReal(cairo_t* c); + +#define SetFontContext(context, fontname, size) \ + do { \ + cairo_select_font_face(context, fontname, \ + CAIRO_FONT_SLANT_NORMAL, \ + CAIRO_FONT_WEIGHT_NORMAL); \ + cairo_set_font_size(context, size); \ + } while (0) + +#define ResetFontContext() + +#endif + +#endif +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/ui/cairostuff/font.c fcitx-4.1.1/src/ui/cairostuff/font.c --- fcitx-4.0.1/src/ui/cairostuff/font.c 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/ui/cairostuff/font.c 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,116 @@ +/*************************************************************************** + * Copyright (C) 2010~2010 by CSSlayer * + * wengxt@gmail.com * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +#include "fcitx/fcitx.h" + +#ifndef _ENABLE_PANGO + +#include +#include +#include +#include +#include + +#include "fcitx/fcitx.h" +#include "fcitx-utils/utils.h" +#include "fcitx-utils/log.h" + +/** + * @brief Get Usable Font + * + * @param strUserLocale font language + * @param font input as a malloc-ed font name, out put as new malloc-ed font name. + * @return void + **/ +void GetValidFont(const char* strUserLocale, char **font) +{ + FcFontSet *fs = NULL; + FcPattern *pat = NULL; + FcObjectSet *os = NULL; + + if (!FcInit()) + { + FcitxLog(ERROR, _("Error: Load fontconfig failed")); + return; + } + char locale[3]; + + if (strUserLocale) + strncpy(locale, strUserLocale, 2); + else + strcpy(locale, "zh"); + locale[2]='\0'; +reloadfont: + if (strcmp(*font, "") == 0) + { + FcChar8 strpat[9]; + sprintf((char*)strpat, ":lang=%s", locale); + pat = FcNameParse(strpat); + } + else + { + pat = FcNameParse ((FcChar8*)(*font)); + } + + os = FcObjectSetBuild(FC_FAMILY, FC_STYLE, (char*)0); + fs = FcFontList(0, pat, os); + if (os) + FcObjectSetDestroy(os); + os = NULL; + + FcPatternDestroy(pat); + pat = NULL; + + if (!fs || fs->nfont <= 0) + goto nofont; + + FcChar8* family; + if (FcPatternGetString (fs->fonts[0], FC_FAMILY, 0, &family) != FcResultMatch) + goto nofont; + if (*font) + free(*font); + + *font = strdup((const char*) family); + + FcFontSetDestroy(fs); + + FcitxLog(INFO, _("your current font is: %s"), *font); + return; + +nofont: + if (strcmp(*font, "") != 0) + { + strcpy(*font, ""); + if (pat) + FcPatternDestroy(pat); + if (os) + FcObjectSetDestroy(os); + if (fs) + FcFontSetDestroy(fs); + + goto reloadfont; + } + + FcitxLog(FATAL, _("no valid font.")); + return; +} +#endif + +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/ui/cairostuff/font.h fcitx-4.1.1/src/ui/cairostuff/font.h --- fcitx-4.0.1/src/ui/cairostuff/font.h 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/ui/cairostuff/font.h 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,34 @@ +/*************************************************************************** + * Copyright (C) 2010~2010 by CSSlayer * + * wengxt@gmail.com * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +#ifndef _ENABLE_PANGO + +#ifndef FONT_H +#define FONT_H + +#include "fcitx/fcitx.h" + +void GetValidFont(const char* strUserLocale, char **font); + +#endif + +#endif + +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/ui/classic/AboutWindow.c fcitx-4.1.1/src/ui/classic/AboutWindow.c --- fcitx-4.0.1/src/ui/classic/AboutWindow.c 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/ui/classic/AboutWindow.c 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,156 @@ +/*************************************************************************** + * Copyright (C) 2005 by Yunfan * + * yunfan_zg@163.com * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +#include +#include +#include +#include + +#include "fcitx/fcitx.h" +#include "fcitx/module.h" +#include "fcitx-utils/utils.h" +#include "module/x11/x11stuff.h" + +#include "AboutWindow.h" +#include "classicui.h" + +int ABOUT_WINDOW_WIDTH; + +char AboutCaption[] = "关于 - FCITX"; +char AboutTitle[] = "小企鹅中文输入法"; +char AboutEmail[] = "yuking_net@sohu.com"; +char AboutCopyRight[] = "(c) 2005, Yuking"; +char strTitle[100]; + +static void InitAboutWindowProperty (AboutWindow* aboutWindow); +static boolean AboutWindowEventHandler(void *arg, XEvent* event); + +AboutWindow* CreateAboutWindow (FcitxClassicUI *classicui) +{ + AboutWindow *aboutWindow = fcitx_malloc0(sizeof(AboutWindow)); + Display* dpy = classicui->dpy; + int iScreen = classicui->iScreen; + int dwidth, dheight; + strcpy (strTitle, AboutTitle); + strcat (strTitle, " "); + strcat (strTitle, VERSION); + GetScreenSize(classicui, &dwidth, &dheight); + + aboutWindow->owner = classicui; + + aboutWindow->color.r = aboutWindow->color.g = aboutWindow->color.b = 220.0 / 256; + aboutWindow->fontColor.r = aboutWindow->fontColor.g = aboutWindow->fontColor.b = 0; + aboutWindow->fontSize = 11; + + ABOUT_WINDOW_WIDTH = StringWidth (strTitle, classicui->font, aboutWindow->fontSize ) + 50; + aboutWindow->window = + XCreateSimpleWindow (dpy, DefaultRootWindow (dpy), (dwidth - ABOUT_WINDOW_WIDTH) / 2, (dheight - ABOUT_WINDOW_HEIGHT) / 2, ABOUT_WINDOW_WIDTH, ABOUT_WINDOW_HEIGHT, 0, WhitePixel (dpy, DefaultScreen (dpy)), WhitePixel (dpy, DefaultScreen (dpy))); + + aboutWindow->surface = cairo_xlib_surface_create(dpy, aboutWindow->window, DefaultVisual(dpy, iScreen), ABOUT_WINDOW_WIDTH, ABOUT_WINDOW_HEIGHT); + if (aboutWindow->window == None) + return NULL; + + InitAboutWindowProperty (aboutWindow); + XSelectInput (dpy, aboutWindow->window, ExposureMask | ButtonPressMask | ButtonReleaseMask | PointerMotionMask ); + + FcitxModuleFunctionArg arg; + arg.args[0] = AboutWindowEventHandler; + arg.args[1] = aboutWindow; + InvokeFunction(classicui->owner, FCITX_X11, ADDXEVENTHANDLER, arg); + + return aboutWindow; +} + +boolean AboutWindowEventHandler(void *arg, XEvent* event) +{ + AboutWindow* aboutWindow = (AboutWindow*) arg; + if (event->type == ClientMessage + && event->xclient.data.l[0] == aboutWindow->owner->killAtom + && event->xclient.window == aboutWindow->window + ) + { + XUnmapWindow(aboutWindow->owner->dpy, aboutWindow->window); + return true; + } + + if (event->xany.window == aboutWindow->window) + { + switch (event->type) + { + case Expose: + DrawAboutWindow(aboutWindow); + break; + case ButtonRelease: + { + switch (event->xbutton.button) + { + case Button1: + XUnmapWindow(aboutWindow->owner->dpy, aboutWindow->window); + break; + } + } + break; + } + return true; + } + return false; +} + +void InitAboutWindowProperty (AboutWindow* aboutWindow) +{ + FcitxClassicUI *classicui = aboutWindow->owner; + Display* dpy = classicui->dpy; + XSetTransientForHint (dpy, aboutWindow->window, DefaultRootWindow (dpy)); + + ClassicUISetWindowProperty(classicui, aboutWindow->window, FCITX_WINDOW_DIALOG, AboutCaption); + + XSetWMProtocols (dpy, aboutWindow->window, &classicui->killAtom, 1); +} + +void DisplayAboutWindow (AboutWindow* aboutWindow) +{ + FcitxClassicUI *classicui = aboutWindow->owner; + Display* dpy = classicui->dpy; + int dwidth, dheight; + GetScreenSize(classicui, &dwidth, &dheight); + XMapRaised (dpy, aboutWindow->window); + XMoveWindow (dpy, aboutWindow->window, (dwidth - ABOUT_WINDOW_WIDTH) / 2, (dheight - ABOUT_WINDOW_HEIGHT) / 2); +} + + + +void DrawAboutWindow (AboutWindow* aboutWindow) +{ + FcitxClassicUI *classicui = aboutWindow->owner; + cairo_t *c = cairo_create(aboutWindow->surface); + cairo_set_source_rgb(c, aboutWindow->color.r, aboutWindow->color.g, aboutWindow->color.b); + cairo_set_operator(c, CAIRO_OPERATOR_SOURCE); + cairo_paint(c); + + OutputString (c, strTitle, classicui->font, aboutWindow->fontSize, (ABOUT_WINDOW_WIDTH - StringWidth (strTitle, classicui->font, aboutWindow->fontSize)) / 2, 6 + 30, &aboutWindow->fontColor); + + OutputString (c, AboutEmail, classicui->font, aboutWindow->fontSize, (ABOUT_WINDOW_WIDTH - StringWidth (AboutEmail, classicui->font, aboutWindow->fontSize)) / 2, 6 + 60, &aboutWindow->fontColor); + + OutputString (c, AboutCopyRight, classicui->font, aboutWindow->fontSize, (ABOUT_WINDOW_WIDTH - StringWidth (AboutCopyRight, classicui->font, aboutWindow->fontSize)) / 2, 6 + 80, &aboutWindow->fontColor); + + cairo_destroy(c); +} + +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/ui/classic/AboutWindow.h fcitx-4.1.1/src/ui/classic/AboutWindow.h --- fcitx-4.0.1/src/ui/classic/AboutWindow.h 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/ui/classic/AboutWindow.h 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,54 @@ +/*************************************************************************** + * Copyright (C) 2005 by Yunfan * + * yunfan_zg@163.com * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +/** + * @file AboutWindow.h + * @brief A very simple About Window for FCITX + * @author Yunfan yunfan_zg@163.com + */ + +#ifndef _ABOUT_WINDOW_H +#define _ABOUT_WINDOW_H + +#include +#include "skin.h" + +#define ABOUT_WINDOW_HEIGHT 150 +struct _FcitxClassicUI; +typedef struct _AboutWindow +{ + Window window; + cairo_surface_t* surface; + ConfigColor color; + ConfigColor fontColor; + int width; + int fontSize; + Atom about_kill_atom; + struct _FcitxClassicUI* owner; +} AboutWindow; + + +AboutWindow* CreateAboutWindow (struct _FcitxClassicUI *classicui); +void DisplayAboutWindow (AboutWindow* aboutWindow); +void DrawAboutWindow (AboutWindow* aboutWindow); + +#endif + +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/ui/classic/classicui.c fcitx-4.1.1/src/ui/classic/classicui.c --- fcitx-4.0.1/src/ui/classic/classicui.c 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/ui/classic/classicui.c 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,529 @@ +/*************************************************************************** + * Copyright (C) 2002~2005 by Yuking * + * yuking_net@sohu.com * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +#include +#include +#include +#include +#include +#include +#include +#include + + +#include "fcitx/fcitx.h" +#include "fcitx/ui.h" +#include "fcitx/module.h" +#include "module/x11/x11stuff.h" + +#include "classicui.h" +#include "classicuiinterface.h" +#include "fcitx-config/xdg.h" +#include "fcitx-utils/log.h" +#include "fcitx/instance.h" +#include "fcitx/frontend.h" +#include "InputWindow.h" +#include "MainWindow.h" +#include "TrayWindow.h" +#include "MenuWindow.h" +#include "AboutWindow.h" +#include "MessageWindow.h" +#include "fcitx/hook.h" +#include + +struct _FcitxSkin; +boolean MainMenuAction(FcitxUIMenu* menu, int index); + +static void* ClassicUICreate(FcitxInstance* instance); +static void ClassicUICloseInputWindow(void* arg); +static void ClassicUIShowInputWindow(void* arg); +static void ClassicUIMoveInputWindow(void* arg); +static void ClassicUIRegisterMenu(void *arg, FcitxUIMenu* menu); +static void ClassicUIUpdateStatus(void *arg, FcitxUIStatus* status); +static void ClassicUIRegisterStatus(void *arg, FcitxUIStatus* status); +static void ClassicUIOnInputFocus(void *arg); +static void ClassicUIOnInputUnFocus(void *arg); +static void ClassicUIOnTriggerOn(void *arg); +static void ClassicUIOnTriggerOff(void *arg); +static void ClassicUIDisplayMessage(void *arg, char *title, char **msg, int length); +static void ClassicUIInputReset(void *arg); +static void ReloadConfigClassicUI(void *arg); +static ConfigFileDesc* GetClassicUIDesc(); +static void ClassicUIMainWindowSizeHint(void *arg, int* x, int* y, int* w, int* h); + +static void* ClassicUILoadImage(void *arg, FcitxModuleFunctionArg args); +static void* ClassicUIGetKeyBoardFontColor(void* arg, FcitxModuleFunctionArg args); +static void* ClassicUIGetFont(void *arg, FcitxModuleFunctionArg args); + +FCITX_EXPORT_API +FcitxUI ui = { + ClassicUICreate, + ClassicUICloseInputWindow, + ClassicUIShowInputWindow, + ClassicUIMoveInputWindow, + ClassicUIUpdateStatus, + ClassicUIRegisterStatus, + ClassicUIRegisterMenu, + ClassicUIOnInputFocus, + ClassicUIOnInputUnFocus, + ClassicUIOnTriggerOn, + ClassicUIOnTriggerOff, + ClassicUIDisplayMessage, + ClassicUIMainWindowSizeHint, + ReloadConfigClassicUI +}; + +void* ClassicUICreate(FcitxInstance* instance) +{ + FcitxAddon* classicuiaddon = GetAddonByName(&instance->addons, FCITX_CLASSIC_UI_NAME); + FcitxModuleFunctionArg arg; + FcitxClassicUI* classicui = fcitx_malloc0(sizeof(FcitxClassicUI)); + classicui->owner = instance; + if (!LoadClassicUIConfig(classicui)) + { + free(classicui); + return NULL; + } + if (GetSkinDesc() == NULL) + { + free(classicui); + return NULL; + } + classicui->dpy = InvokeFunction(instance, FCITX_X11, GETDISPLAY, arg); + if (classicui->dpy == NULL) + { + free(classicui); + return NULL; + } + + if (LoadSkinConfig(&classicui->skin, &classicui->skinType)) + { + free(classicui); + return NULL; + } + + classicui->iScreen = DefaultScreen(classicui->dpy); + + classicui->protocolAtom = XInternAtom (classicui->dpy, "WM_PROTOCOLS", False); + classicui->killAtom = XInternAtom (classicui->dpy, "WM_DELETE_WINDOW", False); + + + InitSkinMenu(classicui); + RegisterMenu(instance, &classicui->skinMenu); + + /* Main Menu Initial */ + utarray_init(&classicui->mainMenu.shell, &menuICD); + AddMenuShell(&classicui->mainMenu, _("About Fcitx"), MENUTYPE_SIMPLE, NULL); + AddMenuShell(&classicui->mainMenu, _("Online Help"), MENUTYPE_SIMPLE, NULL); + AddMenuShell(&classicui->mainMenu, NULL, MENUTYPE_DIVLINE, NULL); + + FcitxUIMenu **menupp; + for (menupp = (FcitxUIMenu **) utarray_front(&instance->uimenus); + menupp != NULL; + menupp = (FcitxUIMenu **) utarray_next(&instance->uimenus, menupp) + ) + { + FcitxUIMenu * menup = *menupp; + if (!menup->isSubMenu) + AddMenuShell(&classicui->mainMenu, menup->name, MENUTYPE_SUBMENU, menup); + } + AddMenuShell(&classicui->mainMenu, NULL, MENUTYPE_DIVLINE, NULL); + AddMenuShell(&classicui->mainMenu, _("Configure"), MENUTYPE_SIMPLE, NULL); + AddMenuShell(&classicui->mainMenu, _("Exit"), MENUTYPE_SIMPLE, NULL); + classicui->mainMenu.MenuAction = MainMenuAction; + classicui->mainMenu.priv = classicui; + classicui->mainMenu.mark = -1; + + + classicui->inputWindow = CreateInputWindow(classicui); + classicui->mainWindow = CreateMainWindow(classicui); + classicui->trayWindow = CreateTrayWindow(classicui); + classicui->aboutWindow = CreateAboutWindow(classicui); + classicui->messageWindow = CreateMessageWindow(classicui); + classicui->mainMenuWindow = CreateMainMenuWindow(classicui); + + FcitxIMEventHook resethk; + resethk.arg = classicui; + resethk.func = ClassicUIInputReset; + RegisterResetInputHook(instance, resethk); + + DisplaySkin(classicui, classicui->skinType); + + /* ensure order ! */ + AddFunction(classicuiaddon, ClassicUILoadImage); + AddFunction(classicuiaddon, ClassicUIGetKeyBoardFontColor); + AddFunction(classicuiaddon, ClassicUIGetFont); + + return classicui; +} + +void ClassicUISetWindowProperty(FcitxClassicUI* classicui, Window window, FcitxXWindowType type, char *windowTitle) +{ + FcitxModuleFunctionArg arg; + arg.args[0] = &window; + arg.args[1] = &type; + arg.args[2] = windowTitle; + InvokeFunction(classicui->owner, FCITX_X11, SETWINDOWPROP, arg); +} + +static void ClassicUIInputReset(void *arg) +{ + FcitxClassicUI* classicui = (FcitxClassicUI*) arg; + DrawMainWindow(classicui->mainWindow); +} + +static void ClassicUICloseInputWindow(void *arg) +{ + FcitxClassicUI* classicui = (FcitxClassicUI*) arg; + CloseInputWindowInternal(classicui->inputWindow); +} + +static void ClassicUIShowInputWindow(void *arg) +{ + FcitxClassicUI* classicui = (FcitxClassicUI*) arg; + ShowInputWindowInternal(classicui->inputWindow); +} + +static void ClassicUIMoveInputWindow(void *arg) +{ + FcitxClassicUI* classicui = (FcitxClassicUI*) arg; + MoveInputWindowInternal(classicui->inputWindow); +} + +static void ClassicUIUpdateStatus(void *arg, FcitxUIStatus* status) +{ + FcitxClassicUI* classicui = (FcitxClassicUI*) arg; + DrawMainWindow(classicui->mainWindow); +} + +static void ClassicUIRegisterMenu(void *arg, FcitxUIMenu* menu) +{ + FcitxClassicUI* classicui = (FcitxClassicUI*) arg; + XlibMenu* xlibMenu = CreateXlibMenu(classicui); + menu->uipriv = xlibMenu; + xlibMenu->menushell = menu; +} + +static void ClassicUIRegisterStatus(void *arg, FcitxUIStatus* status) +{ + FcitxClassicUI* classicui = (FcitxClassicUI*) arg; + FcitxSkin* sc = &classicui->skin; + status->priv = fcitx_malloc0(sizeof(FcitxClassicUIStatus)); + char activename[PATH_MAX], inactivename[PATH_MAX]; + sprintf(activename, "%s_active.png", status->name); + sprintf(inactivename, "%s_inactive.png", status->name); + + LoadImage(sc, activename, false); + LoadImage(sc, inactivename, false); +} + +static void ClassicUIOnInputFocus(void *arg) +{ + FcitxClassicUI* classicui = (FcitxClassicUI*) arg; + FcitxInstance *instance = classicui->owner; + DrawMainWindow(classicui->mainWindow); + if (GetCurrentState(instance) == IS_ACTIVE) + { + ShowMainWindow(classicui->mainWindow); + } + DrawTrayWindow(classicui->trayWindow); +} + +static void ClassicUIOnInputUnFocus(void *arg) +{ + FcitxClassicUI* classicui = (FcitxClassicUI*) arg; + DrawMainWindow(classicui->mainWindow); + DrawTrayWindow(classicui->trayWindow); +} +Bool +IsWindowVisible(Display* dpy, Window window) +{ + XWindowAttributes attrs; + + XGetWindowAttributes(dpy, window, &attrs); + + if (attrs.map_state == IsUnmapped) + return False; + + return True; +} + +void ActivateWindow(Display *dpy, int iScreen, Window window) +{ + XEvent ev; + + memset(&ev, 0, sizeof(ev)); + + Atom _NET_ACTIVE_WINDOW = XInternAtom(dpy, "_NET_ACTIVE_WINDOW", False); + + ev.xclient.type = ClientMessage; + ev.xclient.window = window; + ev.xclient.message_type = _NET_ACTIVE_WINDOW; + ev.xclient.format = 32; + ev.xclient.data.l[0] = 1; + ev.xclient.data.l[1] = CurrentTime; + ev.xclient.data.l[2] = 0; + + XSendEvent(dpy, RootWindow(dpy, iScreen), False, SubstructureNotifyMask, &ev); + XSync(dpy, False); +} + +void GetScreenSize(FcitxClassicUI* classicui, int* width, int* height) +{ + FcitxModuleFunctionArg arg; + arg.args[0] = width; + arg.args[1] = height; + InvokeFunction(classicui->owner, FCITX_X11, GETSCREENSIZE, arg); +} + +CONFIG_DESC_DEFINE(GetClassicUIDesc, "fcitx-classic-ui.desc") + +boolean LoadClassicUIConfig(FcitxClassicUI* classicui) +{ + ConfigFileDesc* configDesc = GetClassicUIDesc(); + if (configDesc == NULL) + return false; + FILE *fp; + char *file; + fp = GetXDGFileUserWithPrefix("conf", "fcitx-classic-ui.config", "rt", &file); + FcitxLog(INFO, _("Load Config File %s"), file); + free(file); + if (!fp) { + if (errno == ENOENT) + SaveClassicUIConfig(classicui); + } + + ConfigFile *cfile = ParseConfigFileFp(fp, configDesc); + + FcitxClassicUIConfigBind(classicui, cfile, configDesc); + ConfigBindSync(&classicui->gconfig); + + if (fp) + fclose(fp); + return true; +} + +void SaveClassicUIConfig(FcitxClassicUI *classicui) +{ + ConfigFileDesc* configDesc = GetClassicUIDesc(); + char *file; + FILE *fp = GetXDGFileUserWithPrefix("conf", "fcitx-classic-ui.config", "wt", &file); + FcitxLog(INFO, "Save Config to %s", file); + SaveConfigFileFp(fp, &classicui->gconfig, configDesc); + free(file); + if (fp) + fclose(fp); +} + +boolean IsInRspArea(int x0, int y0, FcitxClassicUIStatus* status) +{ + return IsInBox(x0, y0, status->x, status->y, status->w, status->h); +} + +boolean +ClassicUIMouseClick(FcitxClassicUI* classicui, Window window, int *x, int *y) +{ + boolean bMoved = false; + FcitxModuleFunctionArg arg; + arg.args[0] = &window; + arg.args[1] = x; + arg.args[2] = y; + arg.args[3] = &bMoved; + InvokeFunction(classicui->owner, FCITX_X11, MOUSECLICK, arg); + + return bMoved; +} + +void ClassicUIOnTriggerOn(void* arg) +{ + FcitxClassicUI* classicui = (FcitxClassicUI*) arg; + FcitxInstance *instance = classicui->owner; + if (GetCurrentState(instance) == IS_ACTIVE) + { + DrawMainWindow(classicui->mainWindow); + ShowMainWindow(classicui->mainWindow); + } + DrawTrayWindow(classicui->trayWindow); +} + +void ClassicUIOnTriggerOff(void* arg) +{ + FcitxClassicUI* classicui = (FcitxClassicUI*) arg; + DrawMainWindow(classicui->mainWindow); + DrawTrayWindow(classicui->trayWindow); +} + +void ClassicUIDisplayMessage(void* arg, char* title, char** msg, int length) +{ + FcitxClassicUI* classicui = (FcitxClassicUI*) arg; + XMapRaised(classicui->dpy, classicui->messageWindow->window); + DrawMessageWindow(classicui->messageWindow, title, msg, length); +} + +boolean MainMenuAction(FcitxUIMenu* menu, int index) +{ + FcitxClassicUI* classicui = (FcitxClassicUI*) menu->priv; + int length = utarray_len(&menu->shell); + if (index == 0) + { + DisplayAboutWindow(classicui->mainWindow->owner->aboutWindow); + } + else if (index == 1) + { + pid_t id; + + id = fork(); + + if (id < 0) + FcitxLog(ERROR, _("Unable to create process")); + else if (id == 0) + { + id = fork(); + + if (id < 0) + { + FcitxLog(ERROR, _("Unable to create process")); + exit(1); + } + else if (id > 0) + exit(0); + else + { + execlp("xdg-open", "xdg-open", "http://fcitx.github.com/handbook/", NULL); + exit(0); + } + } + } + else if (index == length - 1) /* Exit */ + { + EndInstance(classicui->owner); + } + else if (index == length - 2) /* Configuration */ + { + pid_t id; + + id = fork(); + + if (id < 0) + FcitxLog(ERROR, _("Unable to create process")); + else if (id == 0) + { + id = fork(); + + if (id < 0) + { + FcitxLog(ERROR, _("Unable to create process")); + exit(1); + } + else if (id > 0) + exit(0); + else + { + execl(BINDIR "/fcitx-configtool", "fcitx-configtool", NULL); + exit(0); + } + } + } + return true; +} + +void +ClassicUIInitWindowAttribute(FcitxClassicUI* classicui, Visual ** vs, Colormap * cmap, + XSetWindowAttributes * attrib, + unsigned long *attribmask, int *depth) +{ + FcitxModuleFunctionArg arg; + arg.args[0] = vs; + arg.args[1] = cmap; + arg.args[2] = attrib; + arg.args[3] = attribmask; + arg.args[4] = depth; + InvokeFunction(classicui->owner, FCITX_X11, INITWINDOWATTR, arg); +} + +Visual * ClassicUIFindARGBVisual (FcitxClassicUI* classicui) +{ + FcitxModuleFunctionArg arg; + return InvokeFunction(classicui->owner, FCITX_X11, FINDARGBVISUAL, arg); +} + +void ClassicUIMainWindowSizeHint(void* arg, int* x, int* y, int* w, int* h) +{ + FcitxClassicUI* classicui = (FcitxClassicUI*) arg; + if (x) + { + *x = classicui->iMainWindowOffsetX; + } + if (y) + { + *y = classicui->iMainWindowOffsetY; + } + + XWindowAttributes attr; + XGetWindowAttributes(classicui->dpy, classicui->mainWindow->window, &attr); + if (w) + { + *w = attr.width; + } + if (h) + { + *h = attr.height; + } + +} + +void* ClassicUILoadImage(void *arg, FcitxModuleFunctionArg args) +{ + FcitxClassicUI* classicui = (FcitxClassicUI*) arg; + char *name = args.args[0]; + boolean *fallback = args.args[1]; + SkinImage* image = LoadImage(&classicui->skin, name, *fallback); + if (image == NULL) + return NULL; + else + return image->image; +} + +void* ClassicUIGetKeyBoardFontColor(void *arg, FcitxModuleFunctionArg args) +{ + FcitxClassicUI* classicui = (FcitxClassicUI*) arg; + return &classicui->skin.skinKeyboard.keyColor; +} + +void* ClassicUIGetFont(void *arg, FcitxModuleFunctionArg args) +{ + FcitxClassicUI* classicui = (FcitxClassicUI*) arg; + return &classicui->font; +} + +void ReloadConfigClassicUI(void* arg) +{ + FcitxClassicUI* classicui = (FcitxClassicUI*) arg; + LoadClassicUIConfig(classicui); + DisplaySkin(classicui, classicui->skinType); +} + +boolean WindowIsVisable(Display* dpy, Window window) +{ + XWindowAttributes attr; + XGetWindowAttributes(dpy, window, &attr); + return attr.map_state == IsViewable; +} +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/ui/classic/classicuiconfig.c fcitx-4.1.1/src/ui/classic/classicuiconfig.c --- fcitx-4.0.1/src/ui/classic/classicuiconfig.c 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/ui/classic/classicuiconfig.c 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,77 @@ +#include "fcitx-config/fcitx-config.h" +#include "classicui.h" + +static void FilterCopyUseTray(GenericConfig* config, ConfigGroup *group, ConfigOption *option, void *value, ConfigSync sync, void *filterArg); +static void FilterScreenSizeX(GenericConfig* config, ConfigGroup *group, ConfigOption *option, void *value, ConfigSync sync, void *filterArg); +static void FilterScreenSizeY(GenericConfig* config, ConfigGroup *group, ConfigOption *option, void *value, ConfigSync sync, void *filterArg); + +CONFIG_BINDING_BEGIN(FcitxClassicUI) +CONFIG_BINDING_REGISTER_WITH_FILTER("ClassicUI", "MainWindowOffsetX", iMainWindowOffsetX, FilterScreenSizeX) +CONFIG_BINDING_REGISTER_WITH_FILTER("ClassicUI", "MainWindowOffsetY", iMainWindowOffsetY, FilterScreenSizeY) +CONFIG_BINDING_REGISTER("ClassicUI", "Font", font) +CONFIG_BINDING_REGISTER("ClassicUI", "MenuFont", menuFont) +#ifndef _ENABLE_PANGO +CONFIG_BINDING_REGISTER("ClassicUI", "FontLocale", strUserLocale) +#endif +CONFIG_BINDING_REGISTER_WITH_FILTER("ClassicUI", "UseTray", bUseTrayIcon_, FilterCopyUseTray) +CONFIG_BINDING_REGISTER("ClassicUI", "SkinType", skinType) +CONFIG_BINDING_REGISTER("ClassicUI", "MainWindowHideMode", hideMainWindow) +CONFIG_BINDING_REGISTER("ClassicUI", "VerticalList", bVerticalList) +CONFIG_BINDING_END() + +void FilterCopyUseTray(GenericConfig* config, ConfigGroup *group, ConfigOption *option, void *value, ConfigSync sync, void *filterArg) { + static boolean firstRunOnUseTray = true; + FcitxClassicUI *classicui = (FcitxClassicUI*) config; + boolean *b = (boolean*)value; + if (sync == Raw2Value && b) + { + if (firstRunOnUseTray) + classicui->bUseTrayIcon = *b; + firstRunOnUseTray = false; + } +} + +static void FilterScreenSizeX(GenericConfig* config, ConfigGroup *group, ConfigOption *option, void *value, ConfigSync sync, void *filterArg) +{ + int* X = (int*) value; + FcitxClassicUI *classicui = (FcitxClassicUI*) config; + int width, height; + GetScreenSize(classicui, &width, &height); + + switch (sync) + { + case Raw2Value: + if (*X >= width) + *X = width - 10; + if (*X < 0) + *X = 0; + break; + case Value2Raw: + break; + } + +} + +static void FilterScreenSizeY(GenericConfig* config, ConfigGroup *group, ConfigOption *option, void *value, ConfigSync sync, void *filterArg) +{ + int* Y = (int*) value; + FcitxClassicUI *classicui = (FcitxClassicUI*) config; + int width, height; + GetScreenSize(classicui, &width, &height); + + switch (sync) + { + case Raw2Value: + if (*Y >= height) + *Y = height - 10; + if (*Y < 0) + *Y = 0; + break; + case Value2Raw: + break; + } + + +} + +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/ui/classic/classicui.h fcitx-4.1.1/src/ui/classic/classicui.h --- fcitx-4.0.1/src/ui/classic/classicui.h 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/ui/classic/classicui.h 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,104 @@ +/*************************************************************************** + * Copyright (C) 2002~2005 by Yuking * + * yuking_net@sohu.com * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ +#ifndef CLASSICUI_H +#define CLASSICUI_H + +#include "fcitx/fcitx.h" +#include "fcitx/ui.h" +#include "fcitx-config/fcitx-config.h" +#include "fcitx-utils/utarray.h" + +#include +#include +#include "ui/cairostuff/cairostuff.h" + +#ifdef _ENABLE_PANGO +#include +#endif + +#include "skin.h" +#include + +struct _MainWindow; +struct _AboutWindow; +struct _FcitxClassicUIStatus; + +typedef enum _HIDE_MAINWINDOW { + HM_SHOW = 0, + HM_AUTO = 1, + HM_HIDE = 2 +} HIDE_MAINWINDOW; + +/** + * @brief Config and Global State for Classic UI + **/ +typedef struct _FcitxClassicUI { + GenericConfig gconfig; + Display* dpy; + int iScreen; + Atom protocolAtom; + Atom killAtom; + struct _InputWindow* inputWindow; + struct _MainWindow* mainWindow; + struct _MessageWindow* messageWindow; + struct _TrayWindow* trayWindow; + struct _AboutWindow* aboutWindow; + FcitxUIMenu skinMenu; + + FcitxSkin skin; + UT_array skinBuf; + struct _FcitxInstance *owner; + + char* font; + char* menuFont; + char* strUserLocale; + boolean bUseTrayIcon; + boolean bUseTrayIcon_; + HIDE_MAINWINDOW hideMainWindow; + boolean bVerticalList; + char* skinType; + int iMainWindowOffsetX; + int iMainWindowOffsetY; + + UT_array status; + struct _XlibMenu* mainMenuWindow; + FcitxUIMenu mainMenu; +} FcitxClassicUI; + +void GetScreenSize(FcitxClassicUI* classicui, int* width, int* height); +void +ClassicUIInitWindowAttribute(FcitxClassicUI* classicui, Visual ** vs, Colormap * cmap, + XSetWindowAttributes * attrib, + unsigned long *attribmask, int *depth); +Visual * ClassicUIFindARGBVisual (FcitxClassicUI* classicui); +boolean ClassicUIMouseClick(FcitxClassicUI* classicui, Window window, int *x, int *y); +boolean IsInRspArea(int x0, int y0, struct _FcitxClassicUIStatus* status); +void ClassicUISetWindowProperty(FcitxClassicUI* classicui, Window window, FcitxXWindowType type, char *windowTitle); +void ActivateWindow(Display *dpy, int iScreen, Window window); +boolean LoadClassicUIConfig(FcitxClassicUI* classicui); +void SaveClassicUIConfig(FcitxClassicUI* classicui); +boolean WindowIsVisable(Display* dpy, Window window); + +#define GetPrivateStatus(status) ((FcitxClassicUIStatus*)(status)->priv) + +CONFIG_BINDING_DECLARE(FcitxClassicUI); +#endif + +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/ui/classic/classicuiinterface.h fcitx-4.1.1/src/ui/classic/classicuiinterface.h --- fcitx-4.0.1/src/ui/classic/classicuiinterface.h 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/ui/classic/classicuiinterface.h 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,36 @@ +/*************************************************************************** + * Copyright (C) 2010~2011 by CSSlayer * + * wengxt@gmail.com * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +#ifndef CLASSICUIINTERFACE_H +#define CLASSICUIINTERFACE_H + +#include +#include + +#define FCITX_CLASSIC_UI_NAME "fcitx-classic-ui" +#define FCITX_CLASSIC_UI_LOADIMAGE 0 +#define FCITX_CLASSIC_UI_LOADIMAGE_RETURNTYPE cairo_surface_t* +#define FCITX_CLASSIC_UI_GETKEYBOARDFONTCOLOR 1 +#define FCITX_CLASSIC_UI_GETKEYBOARDFONTCOLOR_RETURNTYPE ConfigColor * +#define FCITX_CLASSIC_UI_GETFONT 2 +#define FCITX_CLASSIC_UI_GETFONT_RETURNTYPE char** + +#endif +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/ui/classic/CMakeLists.txt fcitx-4.1.1/src/ui/classic/CMakeLists.txt --- fcitx-4.0.1/src/ui/classic/CMakeLists.txt 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/ui/classic/CMakeLists.txt 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,44 @@ +include_directories(${PROJECT_SOURCE_DIR}/src) +include_directories(${CAIRO_XLIB_INCLUDE_DIRS}) +link_directories(${CAIRO_XLIB_LIBRARY_DIRS}) + +if (_ENABLE_PANGO) + include_directories ( ${PANGOCAIRO_INCLUDE_DIRS} ) + link_directories(${PANGOCAIRO_LIBRARY_DIRS}) +else (_ENABLE_PANGO) + include_directories ( ${FONTCONFIG_INCLUDE_DIRS} ) + link_directories(${FONTCONFIG_LIBRARY_DIRS}) +endif (_ENABLE_PANGO) + +set(fcitx_classic_ui_SOURCES + classicui.c + classicuiconfig.c + InputWindow.c + MainWindow.c + MenuWindow.c + MessageWindow.c + AboutWindow.c + TrayWindow.c + tray.c + skinconfig.c + skin.c + ../cairostuff/font.c + ../cairostuff/cairostuff.c +) + +set(CLASSICUI_DESC_FILES + fcitx-classic-ui.desc + skin.desc +) + +fcitx_add_addon(fcitx-classic-ui ${fcitx_classic_ui_SOURCES}) +target_link_libraries( fcitx-classic-ui ${X11_LIBRARIES} ${CAIRO_XLIB_LIBRARIES} ) + +if (_ENABLE_PANGO) + target_link_libraries( fcitx-classic-ui ${PANGOCAIRO_LIBRARIES} ) +else (_ENABLE_PANGO) + target_link_libraries( fcitx-classic-ui ${FONTCONFIG_LIBRARIES} ) +endif (_ENABLE_PANGO) +fcitx_add_addon_header(classicui classicuiinterface.h) +fcitx_add_addon_conf_file(fcitx-classic-ui.conf) +fcitx_add_configdesc_file(${CLASSICUI_DESC_FILES}) \ No newline at end of file diff -Nru fcitx-4.0.1/src/ui/classic/fcitx-classic-ui.conf.in fcitx-4.1.1/src/ui/classic/fcitx-classic-ui.conf.in --- fcitx-4.0.1/src/ui/classic/fcitx-classic-ui.conf.in 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/ui/classic/fcitx-classic-ui.conf.in 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,10 @@ +[Addon] +Name=fcitx-classic-ui +_GeneralName=Classic +_Comment=Classic User Interface with Skin support +Category=UI +Enabled=True +Library=fcitx-classic-ui.so +Type=SharedLibrary +Dependency=fcitx-x11 +SubConfig=Skin:configfile:skin/*/fcitx_skin.conf:skin.desc,fcitx:domain diff -Nru fcitx-4.0.1/src/ui/classic/fcitx-classic-ui.desc fcitx-4.1.1/src/ui/classic/fcitx-classic-ui.desc --- fcitx-4.0.1/src/ui/classic/fcitx-classic-ui.desc 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/ui/classic/fcitx-classic-ui.desc 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,51 @@ +[ClassicUI/MainWindowOffsetX] +Description=Main Window Position X +Type=Integer +DefaultValue=500 + +[ClassicUI/MainWindowOffsetY] +Description=Main Window Position Y +Type=Integer +DefaultValue=40 + +[ClassicUI/Font] +Type=Font +DefaultValue= +Description=Font + +[ClassicUI/MenuFont] +Type=Font +DefaultValue= +Description=Menu Font + +[ClassicUI/FontLocale] +Type=String +DefaultValue=zh_CN.UTF-8 +Description=Font Locale to display + +[ClassicUI/UseTray] +Type=Boolean +DefaultValue=True +Description=Use System Tray Icon + +[ClassicUI/MainWindowHideMode] +Type=Enum +EnumCount=3 +Enum0=Show +Enum1=Auto +Enum2=Hide +DefaultValue=Auto +Description=Main Window Hide Mode + +[ClassicUI/VerticalList] +Type=Boolean +DefaultValue=False +Description=Vertical Candidate Word List + +[ClassicUI/SkinType] +Type=String +DefaultValue=default +Description=Skin Name + +[DescriptionFile] +LocaleDomain=fcitx diff -Nru fcitx-4.0.1/src/ui/classic/InputWindow.c fcitx-4.1.1/src/ui/classic/InputWindow.c --- fcitx-4.0.1/src/ui/classic/InputWindow.c 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/ui/classic/InputWindow.c 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,282 @@ +/*************************************************************************** + * Copyright (C) 2002~2005 by Yuking * + * yuking_net@sohu.com * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +#include +#include +#include +#include +#include + +#include "fcitx/ui.h" +#include "fcitx/module.h" +#include "fcitx/profile.h" +#include "fcitx/frontend.h" +#include "fcitx/configfile.h" +#include "fcitx/instance.h" +#include "fcitx-utils/utils.h" + +#include "InputWindow.h" +#include "classicui.h" +#include "skin.h" +#include "module/x11/x11stuff.h" +#include "MainWindow.h" +#include +#include +#include + +static boolean InputWindowEventHandler(void *arg, XEvent* event); +static void InitInputWindow(InputWindow* inputWindow); +static void ReloadInputWindow(void* arg, boolean enabled); + +void InitInputWindow(InputWindow* inputWindow) +{ + XSetWindowAttributes attrib; + unsigned long attribmask; + char strWindowName[]="Fcitx Input Window"; + int depth; + Colormap cmap; + Visual * vs; + FcitxClassicUI* classicui = inputWindow->owner; + int iScreen = classicui->iScreen; + Display* dpy = classicui->dpy; + FcitxSkin *sc = &classicui->skin; + inputWindow->window = None; + inputWindow->iInputWindowHeight = INPUTWND_HEIGHT; + inputWindow->iInputWindowWidth = INPUTWND_WIDTH; + inputWindow->iOffsetX = 0; + inputWindow->iOffsetY = 8; + inputWindow->dpy = dpy; + inputWindow->iScreen = iScreen; + inputWindow->skin = sc; + + SkinImage *back = LoadImage(sc, sc->skinInputBar.backImg, false); + + inputWindow->iInputWindowHeight= cairo_image_surface_get_height(back->image); + vs=ClassicUIFindARGBVisual (classicui); + ClassicUIInitWindowAttribute(classicui, &vs, &cmap, &attrib, &attribmask, &depth); + + inputWindow->window=XCreateWindow (dpy, + RootWindow(dpy, iScreen), + classicui->iMainWindowOffsetX, + classicui->iMainWindowOffsetY, + cairo_image_surface_get_width(back->image), + inputWindow->iInputWindowHeight, + 0, + depth,InputOutput, + vs,attribmask, + &attrib); + + inputWindow->cs_x_input_bar= cairo_xlib_surface_create( + dpy, + inputWindow->window, + vs, + cairo_image_surface_get_width(back->image), + cairo_image_surface_get_height(back->image)); + inputWindow->cs_input_bar=cairo_image_surface_create(CAIRO_FORMAT_ARGB32, + INPUT_BAR_MAX_WIDTH, + INPUT_BAR_MAX_HEIGHT); + + inputWindow->cs_input_back = cairo_surface_create_similar(inputWindow->cs_input_bar, + CAIRO_CONTENT_COLOR_ALPHA, + INPUT_BAR_MAX_WIDTH, + INPUT_BAR_MAX_HEIGHT); + + LoadInputMessage(sc, inputWindow, classicui->font); + XSelectInput (dpy, inputWindow->window, ButtonPressMask | ButtonReleaseMask | PointerMotionMask | ExposureMask); + + ClassicUISetWindowProperty(classicui, inputWindow->window, FCITX_WINDOW_DOCK, strWindowName); +} + +InputWindow* CreateInputWindow(FcitxClassicUI *classicui) +{ + InputWindow* inputWindow; + + + inputWindow = fcitx_malloc0(sizeof(InputWindow)); + inputWindow->owner = classicui; + InitInputWindow(inputWindow); + + FcitxModuleFunctionArg arg; + arg.args[0] = InputWindowEventHandler; + arg.args[1] = inputWindow; + InvokeFunction(classicui->owner, FCITX_X11, ADDXEVENTHANDLER, arg); + + arg.args[0] = ReloadInputWindow; + arg.args[1] = inputWindow; + InvokeFunction(classicui->owner, FCITX_X11, ADDCOMPOSITEHANDLER, arg); + + inputWindow->msgUp = InitMessages(); + inputWindow->msgDown = InitMessages(); + return inputWindow; +} + +boolean InputWindowEventHandler(void *arg, XEvent* event) +{ + InputWindow* inputWindow = arg; + if (event->xany.window == inputWindow->window) + { + switch (event->type) + { + case Expose: + DrawInputWindow(inputWindow); + break; + case ButtonPress: + switch (event->xbutton.button) { + case Button1: + { + SetMouseStatus(inputWindow->owner->mainWindow, NULL, RELEASE, RELEASE); + int x, + y; + x = event->xbutton.x; + y = event->xbutton.y; + ClassicUIMouseClick(inputWindow->owner, inputWindow->window, &x, &y); + + FcitxInputContext* ic = GetCurrentIC(inputWindow->owner->owner); + + if (ic) + SetWindowOffset(inputWindow->owner->owner, ic, x, y); + + DrawInputWindow(inputWindow); + } + break; + } + break; + } + return true; + } + return false; +} + +void DisplayInputWindow (InputWindow* inputWindow) +{ + FcitxLog(DEBUG, _("DISPLAY InputWindow")); + XMapRaised (inputWindow->dpy, inputWindow->window); +} + +void DrawInputWindow(InputWindow* inputWindow) +{ + int lastW = inputWindow->iInputWindowWidth, lastH = inputWindow->iInputWindowHeight; + int cursorPos = NewMessageToOldStyleMessage(inputWindow->owner->owner, inputWindow->msgUp, inputWindow->msgDown); + DrawInputBar(inputWindow->skin, inputWindow, cursorPos, inputWindow->msgUp, inputWindow->msgDown, &inputWindow->iInputWindowHeight ,&inputWindow->iInputWindowWidth); + + /* Resize Window will produce Expose Event, so there is no need to draw right now */ + if (lastW != inputWindow->iInputWindowWidth || lastH != inputWindow->iInputWindowHeight) + { + cairo_xlib_surface_set_size(inputWindow->cs_x_input_bar, + inputWindow->iInputWindowWidth, + inputWindow->iInputWindowHeight); + MoveInputWindowInternal(inputWindow); + XResizeWindow( + inputWindow->dpy, + inputWindow->window, + inputWindow->iInputWindowWidth, + inputWindow->iInputWindowHeight); + } + + cairo_t* c = cairo_create(inputWindow->cs_x_input_bar); + cairo_set_operator(c, CAIRO_OPERATOR_SOURCE); + cairo_set_source_surface(c, inputWindow->cs_input_bar, 0, 0); + cairo_rectangle(c, 0, 0, inputWindow->iInputWindowWidth, inputWindow->iInputWindowHeight); + cairo_clip(c); + cairo_paint(c); + cairo_destroy(c); + + XFlush(inputWindow->dpy); +} + +void MoveInputWindowInternal(InputWindow* inputWindow) +{ + int dwidth, dheight; + int x = 0, y = 0; + GetScreenSize(inputWindow->owner, &dwidth, &dheight); + + FcitxInputContext* ic = GetCurrentIC(inputWindow->owner->owner); + GetWindowPosition(inputWindow->owner->owner, ic, &x, &y); + + int iTempInputWindowX, iTempInputWindowY; + + if (x < 0) + iTempInputWindowX = 0; + else + iTempInputWindowX = x + inputWindow->iOffsetX; + + if (y < 0) + iTempInputWindowY = 0; + else + iTempInputWindowY = y + inputWindow->iOffsetY; + + if ((iTempInputWindowX + inputWindow->iInputWindowWidth) > dwidth) + iTempInputWindowX = dwidth - inputWindow->iInputWindowWidth; + + if ((iTempInputWindowY + inputWindow->iInputWindowHeight) > dheight) { + if ( iTempInputWindowY > dheight ) + iTempInputWindowY = dheight - inputWindow->iInputWindowHeight - 40; + else + iTempInputWindowY = iTempInputWindowY - inputWindow->iInputWindowHeight - 40; + } + XMoveWindow (inputWindow->dpy, inputWindow->window, iTempInputWindowX, iTempInputWindowY); +} + +void CloseInputWindowInternal(InputWindow* inputWindow) +{ + XUnmapWindow (inputWindow->dpy, inputWindow->window); +} + +void ReloadInputWindow(void* arg, boolean enabled) +{ + InputWindow* inputWindow = (InputWindow*) arg; + boolean visable = WindowIsVisable(inputWindow->dpy, inputWindow->window); + int i = 0; + cairo_destroy(inputWindow->c_back); + inputWindow->c_back = NULL; + + for ( i = 0 ; i < 7; i ++) + { + cairo_destroy(inputWindow->c_font[i]); + inputWindow->c_font[i] = NULL; + } + cairo_destroy(inputWindow->c_cursor); + inputWindow->c_cursor = NULL; + + cairo_surface_destroy(inputWindow->cs_input_bar); + cairo_surface_destroy(inputWindow->cs_input_back); + cairo_surface_destroy(inputWindow->cs_x_input_bar); + XDestroyWindow(inputWindow->dpy, inputWindow->window); + + inputWindow->cs_input_back = NULL; + inputWindow->cs_input_bar = NULL; + inputWindow->cs_x_input_bar = NULL; + inputWindow->window = None; + + InitInputWindow(inputWindow); + + if (visable) + ShowInputWindowInternal(inputWindow); +} + +void ShowInputWindowInternal(InputWindow* inputWindow) +{ + if (!WindowIsVisable(inputWindow->dpy, inputWindow->window)) + MoveInputWindowInternal(inputWindow); + XMapRaised(inputWindow->dpy, inputWindow->window); + DrawInputWindow(inputWindow); +} + +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/ui/classic/InputWindow.h fcitx-4.1.1/src/ui/classic/InputWindow.h --- fcitx-4.0.1/src/ui/classic/InputWindow.h 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/ui/classic/InputWindow.h 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,79 @@ +/*************************************************************************** + * Copyright (C) 2002~2005 by Yuking * + * yuking_net@sohu.com * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ +/** + * @file InputWindow.h + * @author Yuking yuking_net@sohu.com + * @date 2008-1-16 + * + * @brief Preedit Window for Input + * + */ + +#ifndef _INPUT_WINDOW_H +#define _INPUT_WINDOW_H + +#include +#include + +#include "fcitx/fcitx.h" + +#define ROUND_SIZE 80 +#define INPUTWND_WIDTH 50 +#define INPUTWND_HEIGHT 40 +#define INPUT_BAR_HMIN_WIDTH 320 +#define INPUT_BAR_VMIN_WIDTH 160 +#define INPUT_BAR_MAX_WIDTH 1000 +#define INPUT_BAR_MAX_HEIGHT 300 + +struct _FcitxSkin; +struct _FcitxClassicUI; + +typedef struct _InputWindow { + Window window; + + uint iInputWindowHeight; + uint iInputWindowWidth; + + //这两个变量是GTK+ OverTheSpot光标跟随的临时解决方案 + int iOffsetX; + int iOffsetY; + + cairo_surface_t* cs_x_input_bar; + cairo_surface_t *cs_input_bar; + cairo_surface_t *cs_input_back; + cairo_t *c_back, *c_cursor; + cairo_t *c_font[8]; + Display* dpy; + int iScreen; + Messages* msgUp; + Messages* msgDown; + struct _FcitxSkin* skin; + struct _FcitxClassicUI *owner; +} InputWindow; + +InputWindow* CreateInputWindow(struct _FcitxClassicUI* classicui); +void MoveInputWindowInternal(InputWindow* inputWindow); +void CloseInputWindowInternal(InputWindow* inputWindow); +void DrawInputWindow(InputWindow* inputWindow); +void ShowInputWindowInternal(InputWindow* inputWindow); + +#endif + +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/ui/classic/MainWindow.c fcitx-4.1.1/src/ui/classic/MainWindow.c --- fcitx-4.0.1/src/ui/classic/MainWindow.c 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/ui/classic/MainWindow.c 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,589 @@ +/*************************************************************************** + * Copyright (C) 2002~2005 by Yuking * + * yuking_net@sohu.com * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ +/** + * @file MainWindow.c + * @author Yuking yuking_net@sohu.com + * @date 2008-1-16 + * + * @brief 主窗口 + * + * + */ + +#include +#include +#include +#include +#include +#include + +#include "fcitx/frontend.h" +#include "fcitx/module.h" +#include "fcitx/instance.h" + +#include "MainWindow.h" +#include "fcitx-utils/log.h" +#include "module/x11/x11stuff.h" +#include "classicui.h" +#include "skin.h" +#include "AboutWindow.h" +#include "MenuWindow.h" +#include + +#define FCITX_MAX(a,b) ((a) > (b)?(a) : (b)) + +#define MAIN_BAR_MAX_WIDTH 400 +#define MAIN_BAR_MAX_HEIGHT 400 + +static boolean MainWindowEventHandler(void *arg, XEvent* event); +static void UpdateStatusGeometry(FcitxClassicUIStatus *privstat, SkinImage *image, int x, int y); +static void ReloadMainWindow(void* arg, boolean enabled); +static void InitMainWindow(MainWindow* mainWindow); + +void InitMainWindow(MainWindow* mainWindow) +{ + FcitxClassicUI* classicui = mainWindow->owner; + int depth; + Colormap cmap; + Visual * vs; + XSetWindowAttributes attrib; + unsigned long attribmask; + GC gc; + char strWindowName[] = "Fcitx Main Window"; + int swidth, sheight; + XGCValues xgv; + Display* dpy = classicui->dpy; + int iScreen = classicui->iScreen; + FcitxSkin *sc = &classicui->skin; + mainWindow->dpy = dpy; + + GetScreenSize(classicui, &swidth, &sheight); + SkinImage *back = LoadImage(sc, sc->skinMainBar.backImg, false); + + vs = ClassicUIFindARGBVisual(classicui); + + if (classicui->iMainWindowOffsetX + cairo_image_surface_get_width(back->image) > swidth ) + classicui->iMainWindowOffsetX = swidth - cairo_image_surface_get_width(back->image); + + if (classicui->iMainWindowOffsetY + cairo_image_surface_get_height(back->image) > sheight ) + classicui->iMainWindowOffsetY = sheight - cairo_image_surface_get_height(back->image); + + ClassicUIInitWindowAttribute(classicui, &vs, &cmap, &attrib, &attribmask, &depth); + mainWindow->window=XCreateWindow (dpy, + RootWindow(dpy, iScreen), + classicui->iMainWindowOffsetX, + classicui->iMainWindowOffsetY, + cairo_image_surface_get_width(back->image), + cairo_image_surface_get_height(back->image), + 0, depth,InputOutput, vs,attribmask, &attrib); + + if (mainWindow->window == None) + return; + + xgv.foreground = WhitePixel(dpy, iScreen); + mainWindow->pm_main_bar = XCreatePixmap( + dpy, + mainWindow->window, + MAIN_BAR_MAX_WIDTH, + MAIN_BAR_MAX_HEIGHT, + depth); + gc = XCreateGC(dpy,mainWindow->pm_main_bar, GCForeground, &xgv); + XFillRectangle(dpy, mainWindow->pm_main_bar, gc, 0, 0,cairo_image_surface_get_width(back->image), cairo_image_surface_get_height(back->image)); + mainWindow->cs_main_bar=cairo_xlib_surface_create( + dpy, + mainWindow->pm_main_bar, + vs, + MAIN_BAR_MAX_WIDTH, + MAIN_BAR_MAX_HEIGHT); + XFreeGC(dpy,gc); + + mainWindow->main_win_gc = XCreateGC( dpy, mainWindow->window, 0, NULL ); + XChangeWindowAttributes (dpy, mainWindow->window, attribmask, &attrib); + XSelectInput (dpy, mainWindow->window, ExposureMask | ButtonPressMask | ButtonReleaseMask | PointerMotionMask | LeaveWindowMask); + + ClassicUISetWindowProperty(classicui, mainWindow-> window, FCITX_WINDOW_DOCK, strWindowName); +} + +MainWindow* CreateMainWindow (FcitxClassicUI* classicui) +{ + MainWindow *mainWindow; + + mainWindow = fcitx_malloc0(sizeof(MainWindow)); + mainWindow->owner = classicui; + InitMainWindow(mainWindow); + + FcitxModuleFunctionArg arg; + arg.args[0] = MainWindowEventHandler; + arg.args[1] = mainWindow; + InvokeFunction(classicui->owner, FCITX_X11, ADDXEVENTHANDLER, arg); + + arg.args[0] = ReloadMainWindow; + arg.args[1] = mainWindow; + InvokeFunction(classicui->owner, FCITX_X11, ADDCOMPOSITEHANDLER, arg); + return mainWindow; +} + +void DisplayMainWindow (Display* dpy, MainWindow* mainWindow) +{ + FcitxLog(DEBUG, _("DISPLAY MainWindow")); + + if (!mainWindow->bMainWindowHidden) + XMapRaised (dpy, mainWindow->window); +} + +void DrawMainWindow (MainWindow* mainWindow) +{ + FcitxSkin *sc = &mainWindow->owner->skin; + FcitxInstance *instance = mainWindow->owner->owner; + cairo_t *c; + + if ( mainWindow->bMainWindowHidden ) + return; + + FcitxLog(DEBUG, _("DRAW MainWindow")); + + c=cairo_create(mainWindow->cs_main_bar); + //把背景清空 + cairo_save(c); + cairo_set_source_rgba(c, 0, 0, 0,0); + cairo_rectangle (c, 0, 0, SIZEX, SIZEY); + cairo_set_operator(c, CAIRO_OPERATOR_SOURCE); + cairo_fill(c); + cairo_restore(c); + + cairo_set_operator(c, CAIRO_OPERATOR_OVER); + + if (mainWindow->owner->hideMainWindow == HM_SHOW || (mainWindow->owner->hideMainWindow == HM_AUTO && (GetCurrentState(mainWindow->owner->owner) != IS_CLOSED))) + { + /* Check placement */ + if (utarray_len(&mainWindow->owner->skin.skinMainBar.skinPlacement) != 0) + { + SkinImage* back = LoadImage(sc, sc->skinMainBar.backImg, false); + if (back == NULL) + return; + int width = cairo_image_surface_get_width(back->image); + int height = cairo_image_surface_get_height(back->image); + XResizeWindow(mainWindow->dpy, mainWindow->window, width, height); + DrawResizableBackground(c, back->image, height, width, 0, 0, 0, 0, F_RESIZE, F_COPY); + + FcitxUIStatus* status; + for (status = (FcitxUIStatus*) utarray_front(&instance->uistats); + status != NULL; + status = (FcitxUIStatus*) utarray_next(&instance->uistats, status) + ) + { + FcitxClassicUIStatus* privstat = GetPrivateStatus(status); + if (privstat == NULL) + continue; + /* reset status */ + privstat->x = privstat->y = -1; + privstat->w = privstat->h = 0; + } + + SkinPlacement* sp; + for (sp = (SkinPlacement*) utarray_front(&sc->skinMainBar.skinPlacement); + sp != NULL; + sp = (SkinPlacement*) utarray_next(&sc->skinMainBar.skinPlacement, sp)) + { + if (strcmp(sp->name, "logo") == 0) + { + SkinImage* logo = LoadImage(sc, sc->skinMainBar.logo, false); + if (logo) + { + DrawImage(c, logo->image, sp->x, sp->y, mainWindow->logostat.mouse); + UpdateStatusGeometry( &mainWindow->logostat, logo, sp->x, sp->y); + } + } + else if (strcmp(sp->name, "im") == 0) + { + SkinImage* imicon = NULL; + if (GetCurrentState(instance) != IS_ACTIVE ) + imicon = LoadImage(sc, sc->skinMainBar.eng, false); + else + { + FcitxIM* im = GetCurrentIM(instance); + char path[PATH_MAX]; + snprintf(path, PATH_MAX, "%s.png", im->strIconName ); + imicon = LoadImage(sc, path, false); + if (imicon == NULL) + imicon = LoadImage(sc, sc->skinMainBar.active, false); + } + DrawImage(c, imicon->image, sp->x, sp->y, mainWindow->imiconstat.mouse); + UpdateStatusGeometry( &mainWindow->imiconstat, imicon, sp->x, sp->y); + } + else + { + status = GetUIStatus(instance, sp->name); + if (status) + { + FcitxClassicUIStatus* privstat = GetPrivateStatus(status); + if (privstat == NULL) + continue; + + boolean active = status->getCurrentStatus(status->arg); + char path[PATH_MAX]; + if (active) + snprintf(path, PATH_MAX, "%s_active.png", status->name ); + else + snprintf(path, PATH_MAX, "%s_inactive.png", status->name ); + SkinImage* statusicon = LoadImage(sc, path, false); + if (statusicon == NULL) + continue; + DrawImage(c, statusicon->image, sp->x, sp->y, privstat->mouse); + UpdateStatusGeometry( privstat, statusicon, sp->x, sp->y); + } + } + } + XCopyArea (mainWindow->dpy, mainWindow->pm_main_bar, mainWindow->window, mainWindow->main_win_gc, 0, 0, width, + height, 0, 0); + } + else + { + /* Only logo and input status is hard-code, other should be status */ + int currentX = sc->skinMainBar.marginLeft; + int height = 0; + SkinImage* back = LoadImage(sc, sc->skinMainBar.backImg, false); + SkinImage* logo = LoadImage(sc, sc->skinMainBar.logo, false); + SkinImage* imicon; + int imageheight; + if (logo) + { + currentX += cairo_image_surface_get_width(logo->image); + imageheight = cairo_image_surface_get_height(logo->image); + if (imageheight > height) + height = imageheight; + } + + if (GetCurrentState(instance) != IS_ACTIVE ) + imicon = LoadImage(sc, sc->skinMainBar.eng, false); + else + { + FcitxIM* im = GetCurrentIM(instance); + char path[PATH_MAX]; + snprintf(path, PATH_MAX, "%s.png", im->strIconName ); + imicon = LoadImage(sc, path, false); + if (imicon == NULL) + imicon = LoadImage(sc, sc->skinMainBar.active, false); + } + currentX += cairo_image_surface_get_width(imicon->image); + imageheight = cairo_image_surface_get_height(imicon->image); + if (imageheight > height) + height = imageheight; + + FcitxUIStatus* status; + for (status = (FcitxUIStatus*) utarray_front(&instance->uistats); + status != NULL; + status = (FcitxUIStatus*) utarray_next(&instance->uistats, status) + ) + { + boolean active = status->getCurrentStatus(status->arg); + char path[PATH_MAX]; + if (active) + snprintf(path, PATH_MAX, "%s_active.png", status->name ); + else + snprintf(path, PATH_MAX, "%s_inactive.png", status->name ); + SkinImage* statusicon = LoadImage(sc, path, false); + if (statusicon == NULL) + continue; + currentX += cairo_image_surface_get_width(statusicon->image); + imageheight = cairo_image_surface_get_height(statusicon->image); + if (imageheight > height) + height = imageheight; + } + + int width = currentX + sc->skinMainBar.marginRight; + height += sc->skinMainBar.marginTop + sc->skinMainBar.marginBottom; + + XResizeWindow(mainWindow->dpy, mainWindow->window, width, height); + DrawResizableBackground(c, + back->image, + height, + width, + sc->skinMainBar.marginLeft, + sc->skinMainBar.marginTop, + sc->skinMainBar.marginRight, + sc->skinMainBar.marginBottom, + sc->skinMainBar.fillV, + sc->skinMainBar.fillH + ); + + currentX = sc->skinMainBar.marginLeft; + if (logo) + { + DrawImage(c, logo->image, currentX, sc->skinMainBar.marginTop, mainWindow->logostat.mouse); + UpdateStatusGeometry( &mainWindow->logostat, logo, currentX, sc->skinMainBar.marginTop); + currentX += cairo_image_surface_get_width(logo->image); + } + DrawImage(c, imicon->image, currentX, sc->skinMainBar.marginTop, mainWindow->imiconstat.mouse); + UpdateStatusGeometry( &mainWindow->imiconstat, imicon, currentX, sc->skinMainBar.marginTop); + currentX += cairo_image_surface_get_width(imicon->image); + + for (status = (FcitxUIStatus*) utarray_front(&instance->uistats); + status != NULL; + status = (FcitxUIStatus*) utarray_next(&instance->uistats, status) + ) + { + FcitxClassicUIStatus* privstat = GetPrivateStatus(status); + if (privstat == NULL) + continue; + /* reset status */ + privstat->x = privstat->y = -1; + privstat->w = privstat->h = 0; + boolean active = status->getCurrentStatus(status->arg); + char path[PATH_MAX]; + if (active) + snprintf(path, PATH_MAX, "%s_active.png", status->name ); + else + snprintf(path, PATH_MAX, "%s_inactive.png", status->name ); + SkinImage* statusicon = LoadImage(sc, path, false); + if (statusicon == NULL) + continue; + DrawImage(c, statusicon->image, currentX, sc->skinMainBar.marginTop, privstat->mouse); + UpdateStatusGeometry(privstat, statusicon, currentX, sc->skinMainBar.marginTop); + currentX += cairo_image_surface_get_width(statusicon->image); + } + + XCopyArea (mainWindow->dpy, mainWindow->pm_main_bar, mainWindow->window, mainWindow->main_win_gc, 0, 0, width, + height, 0, 0); + } + } + else + XUnmapWindow (mainWindow->dpy, mainWindow->window); + + cairo_destroy(c); +} + +void ReloadMainWindow(void *arg, boolean enabled) +{ + MainWindow* mainWindow = (MainWindow*) arg; + boolean visable = WindowIsVisable(mainWindow->dpy, mainWindow->window); + cairo_surface_destroy(mainWindow->cs_main_bar); + XFreePixmap(mainWindow->dpy, mainWindow->pm_main_bar); + XFreeGC(mainWindow->dpy, mainWindow->main_win_gc); + XDestroyWindow(mainWindow->dpy, mainWindow->window); + + mainWindow->cs_main_bar = NULL; + mainWindow->pm_main_bar = None; + mainWindow->main_win_gc = NULL; + mainWindow->window = None; + + InitMainWindow(mainWindow); + + if (visable) + ShowMainWindow(mainWindow); +} + +void UpdateStatusGeometry(FcitxClassicUIStatus *privstat, SkinImage *image, int x, int y) +{ + privstat->x = x; + privstat->y = y; + privstat->w = cairo_image_surface_get_width(image->image); + privstat->h = cairo_image_surface_get_height(image->image); +} + +void ShowMainWindow(MainWindow* mainWindow) +{ + XMapRaised (mainWindow->dpy, mainWindow->window); +} + +void CloseMainWindow(MainWindow *mainWindow) +{ + XUnmapWindow (mainWindow->dpy, mainWindow->window); +} + +boolean SetMouseStatus(MainWindow *mainWindow, MouseE* mouseE, MouseE value, MouseE other) +{ + FcitxInstance *instance = mainWindow->owner->owner; + boolean changed = false; + if (mouseE != &mainWindow->logostat.mouse) + { + if (mainWindow->logostat.mouse != other) + { + changed = true; + mainWindow->logostat.mouse = other; + } + } + if (mouseE != &mainWindow->imiconstat.mouse) + { + if (mainWindow->imiconstat.mouse != other) + { + changed = true; + mainWindow->imiconstat.mouse = other; + } + } + FcitxUIStatus *status; + for (status = (FcitxUIStatus*) utarray_front(&instance->uistats); + status != NULL; + status = (FcitxUIStatus*) utarray_next(&instance->uistats, status) + ) + { + FcitxClassicUIStatus* privstat = GetPrivateStatus(status); + if (mouseE != &privstat->mouse) + { + if (privstat->mouse != other) + { + changed = true; + privstat->mouse = other; + } + } + } + if (mouseE != NULL && *mouseE != value) + { + changed = true; + *mouseE = value; + } + + return changed; +} + +boolean MainWindowEventHandler(void *arg, XEvent* event) +{ + MainWindow* mainWindow = arg; + FcitxInstance *instance = mainWindow->owner->owner; + FcitxClassicUI *classicui = mainWindow->owner; + MouseE *mouse; + + if (event->xany.window == mainWindow->window) + { + switch (event->type) + { + case Expose: + DrawMainWindow(mainWindow); + break; + case MotionNotify: + mouse = NULL; + if (IsInRspArea(event->xbutton.x, event->xbutton.y, &mainWindow->logostat)) { + mouse = &mainWindow->logostat.mouse; + } else if (IsInRspArea(event->xbutton.x, event->xbutton.y, &mainWindow->imiconstat)) { + mouse = &mainWindow->imiconstat.mouse; + } else { + FcitxUIStatus *status; + for (status = (FcitxUIStatus*) utarray_front(&instance->uistats); + status != NULL; + status = (FcitxUIStatus*) utarray_next(&instance->uistats, status) + ) + { + FcitxClassicUIStatus* privstat = GetPrivateStatus(status); + if (IsInRspArea(event->xbutton.x, event->xbutton.y, privstat)) + mouse = &privstat->mouse; + } + } + if (SetMouseStatus(mainWindow, mouse, MOTION, RELEASE)) + DrawMainWindow(mainWindow); + break; + case LeaveNotify: + if (SetMouseStatus(mainWindow, NULL, RELEASE, RELEASE)) + DrawMainWindow(mainWindow); + break; + case ButtonPress: + switch (event->xbutton.button) { + case Button1: + { + mouse = NULL; + if (IsInRspArea(event->xbutton.x, event->xbutton.y, &mainWindow->logostat)) { + mouse = &mainWindow->logostat.mouse; + + classicui->iMainWindowOffsetX = event->xbutton.x; + classicui->iMainWindowOffsetY = event->xbutton.y; + + if (!ClassicUIMouseClick(mainWindow->owner, mainWindow->window, &classicui->iMainWindowOffsetX, &classicui->iMainWindowOffsetY)) + { + if (GetCurrentState(instance) == IS_CLOSED) { + EnableIM(instance, GetCurrentIC(instance), false); + } + else { + CloseIM(instance, GetCurrentIC(instance)); + } + } + SaveClassicUIConfig(classicui); + } else if (IsInRspArea(event->xbutton.x, event->xbutton.y, &mainWindow->imiconstat)) { + mouse = &mainWindow->imiconstat.mouse; + SwitchIM(instance, -1); + } else { + FcitxUIStatus *status; + for (status = (FcitxUIStatus*) utarray_front(&instance->uistats); + status != NULL; + status = (FcitxUIStatus*) utarray_next(&instance->uistats, status) + ) + { + FcitxClassicUIStatus* privstat = GetPrivateStatus(status); + if (IsInRspArea(event->xbutton.x, event->xbutton.y, privstat)) + { + mouse = &privstat->mouse; + UpdateStatus(instance, status->name); + } + } + } + if (SetMouseStatus(mainWindow, mouse, PRESS, RELEASE)) + DrawMainWindow(mainWindow); + if (mouse == NULL) + { + classicui->iMainWindowOffsetX = event->xbutton.x; + classicui->iMainWindowOffsetY = event->xbutton.y; + ClassicUIMouseClick(mainWindow->owner, mainWindow->window, &classicui->iMainWindowOffsetX, &classicui->iMainWindowOffsetY); + SaveClassicUIConfig(classicui); + } + } + break; + case Button3: + { + XlibMenu *mainMenuWindow = classicui->mainMenuWindow; + unsigned int height; + int sheight; + XWindowAttributes attr; + GetMenuSize(mainMenuWindow); + GetScreenSize(classicui, NULL, &sheight); + XGetWindowAttributes(classicui->dpy, mainWindow->window, &attr); + height = attr.height; + + mainMenuWindow->iPosX = classicui->iMainWindowOffsetX; + mainMenuWindow->iPosY = + classicui->iMainWindowOffsetY + + height; + if ((mainMenuWindow->iPosY + mainMenuWindow->height) > + sheight) + mainMenuWindow->iPosY = classicui->iMainWindowOffsetY - 5 - mainMenuWindow->height; + + DrawXlibMenu(mainMenuWindow); + DisplayXlibMenu(mainMenuWindow); + + } + break; + + } + break; + case ButtonRelease: + switch (event->xbutton.button) { + case Button1: + if (SetMouseStatus(mainWindow, NULL, RELEASE, RELEASE)) + DrawMainWindow(mainWindow); + break; + case Button2: + DisplayAboutWindow(mainWindow->owner->aboutWindow); + break; + } + break; + } + return true; + } + return false; +} + +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/ui/classic/MainWindow.h fcitx-4.1.1/src/ui/classic/MainWindow.h --- fcitx-4.0.1/src/ui/classic/MainWindow.h 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/ui/classic/MainWindow.h 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,69 @@ +/*************************************************************************** + * Copyright (C) 2002~2005 by Yuking * + * yuking_net@sohu.com * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ +/** + * @file MainWindow.h + * @author Yuking yuking_net@sohu.com + * @date 2008-1-16 + * + * @brief 主窗口 + * + * + */ + +#ifndef _MAIN_WINDOW_H +#define _MAIN_WINDOW_H +#include +#include +#include "fcitx-config/fcitx-config.h" +#include "classicui.h" + +struct _FcitxSkin; +struct _FcitxClassicUI; + +typedef struct _FcitxClassicUIStatus { + MouseE mouse; + int x, y; + int w, h; +} FcitxClassicUIStatus; + +typedef struct _MainWindow +{ + Display* dpy; + Window window; + Pixmap pm_main_bar; + cairo_surface_t* cs_main_bar; + GC main_win_gc; + boolean bMainWindowHidden; + FcitxClassicUIStatus logostat; + FcitxClassicUIStatus imiconstat; + struct _FcitxSkin* skin; + + struct _FcitxClassicUI* owner; +} MainWindow; + +MainWindow* CreateMainWindow (struct _FcitxClassicUI* classicui); +void CloseMainWindow(MainWindow *mainWindow); +void DrawMainWindow (MainWindow* mainWindow); +void ShowMainWindow (MainWindow* mainWindow); +boolean SetMouseStatus(MainWindow *mainWindow, MouseE* mouseE, MouseE value, MouseE other); + +#endif + +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/ui/classic/MenuWindow.c fcitx-4.1.1/src/ui/classic/MenuWindow.c --- fcitx-4.0.1/src/ui/classic/MenuWindow.c 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/ui/classic/MenuWindow.c 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,576 @@ +/*************************************************************************** + * Copyright (C) 2009~2010 by t3swing * + * t3swing@sina.com * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ +#include +#include +#include +#include +#include +#include "fcitx-config/fcitx-config.h" +#include "fcitx-utils/log.h" +#include +#include "fcitx/ui.h" +#include "fcitx/module.h" +#include + +#include "skin.h" +#include "classicui.h" +#include "MenuWindow.h" +#include "fcitx/instance.h" +#include + +static boolean ReverseColor(XlibMenu * Menu,int shellIndex); +static void MenuMark(XlibMenu* menu, int y, int i); +static void DrawArrow(XlibMenu* menu, int line_y); +static void MoveSubMenu(XlibMenu *sub, XlibMenu *parent, int offseth); +static void DisplayText(XlibMenu * menu,int shellindex,int line_y); +static void DrawDivLine(XlibMenu * menu,int line_y); +static boolean MenuWindowEventHandler(void *arg, XEvent* event); +static int SelectShellIndex(XlibMenu * menu, int x, int y, int* offseth); +static void CloseAllMenuWindow(FcitxClassicUI *classicui); +static void CloseAllSubMenuWindow(XlibMenu *xlibMenu); +static void CloseOtherSubMenuWindow(XlibMenu *xlibMenu, XlibMenu* subMenu); +static boolean IsMouseInOtherMenu(XlibMenu *xlibMenu, int x, int y); +static void InitXlibMenu(XlibMenu* menu); +static void ReloadXlibMenu(void* arg, boolean enabled); + +#define GetMenuShell(m, i) ((MenuShell*) utarray_eltptr(&(m)->shell, (i))) + +void InitXlibMenu(XlibMenu* menu) +{ + FcitxClassicUI* classicui = menu->owner; + char strWindowName[]="Fcitx Menu Window"; + XSetWindowAttributes attrib; + unsigned long attribmask; + int depth; + Colormap cmap; + Visual * vs; + XGCValues xgv; + GC gc; + Display* dpy = classicui->dpy; + int iScreen = classicui->iScreen; + + vs=ClassicUIFindARGBVisual (classicui); + ClassicUIInitWindowAttribute(classicui, &vs, &cmap, &attrib, &attribmask, &depth); + + //开始只创建一个简单的窗口不做任何动作 + menu->menuWindow =XCreateWindow (dpy, + RootWindow (dpy, iScreen), + 0, 0, + MENU_WINDOW_WIDTH,MENU_WINDOW_HEIGHT, + 0, depth, InputOutput, + vs, attribmask, &attrib); + + if (menu->menuWindow == (Window) NULL) + return; + + XSetTransientForHint (dpy, menu->menuWindow, DefaultRootWindow (dpy)); + + menu->pixmap = XCreatePixmap(dpy, + menu->menuWindow, + MENU_WINDOW_WIDTH, + MENU_WINDOW_HEIGHT, + depth); + + xgv.foreground = WhitePixel(dpy, iScreen); + gc = XCreateGC(dpy, menu->pixmap, GCForeground, &xgv); + XFillRectangle( + dpy, + menu->pixmap, + gc, + 0, + 0, + MENU_WINDOW_WIDTH, + MENU_WINDOW_HEIGHT); + menu->menu_cs=cairo_xlib_surface_create(dpy, + menu->pixmap, + vs, + MENU_WINDOW_WIDTH,MENU_WINDOW_HEIGHT); + XFreeGC(dpy, gc); + + XSelectInput (dpy, menu->menuWindow, KeyPressMask | ExposureMask | ButtonPressMask | ButtonReleaseMask | PointerMotionMask | LeaveWindowMask | StructureNotifyMask ); + + ClassicUISetWindowProperty(classicui, menu->menuWindow, FCITX_WINDOW_MENU, strWindowName); + + menu->iPosX=100; + menu->iPosY=100; + menu->width=cairo_image_surface_get_height(menu->menu_cs); +} + + +XlibMenu* CreateMainMenuWindow(FcitxClassicUI *classicui) +{ + XlibMenu* menu = CreateXlibMenu(classicui); + menu->menushell = &classicui->mainMenu; + + return menu; +} + +boolean MenuWindowEventHandler(void *arg, XEvent* event) +{ + XlibMenu* menu = (XlibMenu*) arg; + if (event->xany.window == menu->menuWindow) + { + switch (event->type) + { + case MapNotify: + UpdateMenuShell(menu->menushell); + break; + case Expose: + DrawXlibMenu(menu); + break; + case LeaveNotify: + { + int x = event->xcrossing.x_root; + int y = event->xcrossing.y_root; + + if (!IsMouseInOtherMenu(menu, x, y)) + { + CloseAllSubMenuWindow(menu); + } + } + break; + case MotionNotify: + { + int offseth = 0; + GetMenuSize(menu); + int i=SelectShellIndex(menu, event->xmotion.x, event->xmotion.y, &offseth); + boolean flag = ReverseColor(menu,i); + MenuShell *shell = GetMenuShell(menu->menushell, i); + if (!flag) + { + DrawXlibMenu(menu); + + if (shell && shell->type == MENUTYPE_SUBMENU && shell->subMenu) + { + XlibMenu* subxlibmenu = (XlibMenu*) shell->subMenu->uipriv; + CloseOtherSubMenuWindow(menu, subxlibmenu); + MoveSubMenu(subxlibmenu, menu, offseth); + DrawXlibMenu(subxlibmenu); + XMapRaised(menu->owner->dpy, subxlibmenu->menuWindow); + } + } + if (shell == NULL) + CloseOtherSubMenuWindow(menu, NULL); + } + break; + case ButtonPress: + { + switch (event->xbutton.button) + { + case Button1: + { + int offseth; + int i=SelectShellIndex(menu, event->xmotion.x, event->xmotion.y, &offseth); + if (menu->menushell->MenuAction) + { + if (menu->menushell->MenuAction(menu->menushell, i)) + CloseAllMenuWindow(menu->owner); + } + } + break; + case Button3: + CloseAllMenuWindow(menu->owner); + break; + } + } + break; + } + return true; + } + return false; +} + +void CloseAllMenuWindow(FcitxClassicUI *classicui) +{ + FcitxInstance* instance = classicui->owner; + FcitxUIMenu** menupp; + for (menupp = (FcitxUIMenu **) utarray_front(&instance->uimenus); + menupp != NULL; + menupp = (FcitxUIMenu **) utarray_next(&instance->uimenus, menupp) + ) + { + XlibMenu* xlibMenu = (XlibMenu*) (*menupp)->uipriv; + XUnmapWindow(classicui->dpy, xlibMenu->menuWindow); + } + XUnmapWindow(classicui->dpy, classicui->mainMenuWindow->menuWindow); +} + +void CloseOtherSubMenuWindow(XlibMenu *xlibMenu, XlibMenu* subMenu) +{ + MenuShell *menu; + for (menu = (MenuShell *) utarray_front(&xlibMenu->menushell->shell); + menu != NULL; + menu = (MenuShell *) utarray_next(&xlibMenu->menushell->shell, menu) + ) + { + if (menu->type == MENUTYPE_SUBMENU && menu->subMenu && menu->subMenu->uipriv != subMenu) + { + CloseAllSubMenuWindow((XlibMenu *)menu->subMenu->uipriv); + } + } +} + +void CloseAllSubMenuWindow(XlibMenu *xlibMenu) +{ + MenuShell *menu; + for (menu = (MenuShell *) utarray_front(&xlibMenu->menushell->shell); + menu != NULL; + menu = (MenuShell *) utarray_next(&xlibMenu->menushell->shell, menu) + ) + { + if (menu->type == MENUTYPE_SUBMENU && menu->subMenu) + { + CloseAllSubMenuWindow((XlibMenu *)menu->subMenu->uipriv); + } + } + XUnmapWindow(xlibMenu->owner->dpy, xlibMenu->menuWindow); +} + +boolean IsMouseInOtherMenu(XlibMenu *xlibMenu, int x, int y) +{ + FcitxClassicUI *classicui = xlibMenu->owner; + FcitxInstance* instance = classicui->owner; + FcitxUIMenu** menupp; + for (menupp = (FcitxUIMenu **) utarray_front(&instance->uimenus); + menupp != NULL; + menupp = (FcitxUIMenu **) utarray_next(&instance->uimenus, menupp) + ) + { + + XlibMenu* otherXlibMenu = (XlibMenu*) (*menupp)->uipriv; + if (otherXlibMenu == xlibMenu) + continue; + XWindowAttributes attr; + XGetWindowAttributes(classicui->dpy, otherXlibMenu->menuWindow, &attr); + if (attr.map_state != IsUnmapped && + IsInBox(x, y, attr.x, attr.y, attr.width, attr.height)) + { + return true; + } + } + + XlibMenu* otherXlibMenu = classicui->mainMenuWindow; + if (otherXlibMenu == xlibMenu) + return false; + XWindowAttributes attr; + XGetWindowAttributes(classicui->dpy, otherXlibMenu->menuWindow, &attr); + if (attr.map_state != IsUnmapped && + IsInBox(x, y, attr.x, attr.y, attr.width, attr.height)) + { + return true; + } + return false; +} + +XlibMenu* CreateXlibMenu(FcitxClassicUI *classicui) +{ + XlibMenu *menu = fcitx_malloc0(sizeof(XlibMenu)); + menu->owner = classicui; + InitXlibMenu(menu); + + FcitxModuleFunctionArg arg; + arg.args[0] = MenuWindowEventHandler; + arg.args[1] = menu; + InvokeFunction(classicui->owner, FCITX_X11, ADDXEVENTHANDLER, arg); + + arg.args[0] = ReloadXlibMenu; + arg.args[1] = menu; + InvokeFunction(classicui->owner, FCITX_X11, ADDCOMPOSITEHANDLER, arg); + return menu; +} + +void GetMenuSize(XlibMenu * menu) +{ + int i=0; + int winheight=0; + int fontheight=0; + int menuwidth = 0; + FcitxSkin *sc = &menu->owner->skin; + + winheight = sc->skinMenu.marginTop + sc->skinMenu.marginBottom;//菜单头和尾都空8个pixel + fontheight= sc->skinFont.menuFontSize; + for (i=0;imenushell->shell);i++) + { + if ( GetMenuShell(menu->menushell, i)->type == MENUTYPE_SIMPLE || GetMenuShell(menu->menushell, i)->type == MENUTYPE_SUBMENU) + winheight += 6+fontheight; + else if ( GetMenuShell(menu->menushell, i)->type == MENUTYPE_DIVLINE) + winheight += 5; + + int width = StringWidth(GetMenuShell(menu->menushell, i)->tipstr, menu->owner->menuFont, sc->skinFont.menuFontSize); + if (width > menuwidth) + menuwidth = width; + } + menu->height = winheight; + menu->width = menuwidth + sc->skinMenu.marginLeft + sc->skinMenu.marginRight + 15 + 20; +} + +//根据Menu内容来绘制菜单内容 +void DrawXlibMenu(XlibMenu * menu) +{ + FcitxSkin *sc = &menu->owner->skin; + FcitxClassicUI *classicui = menu->owner; + Display* dpy = classicui->dpy; + GC gc = XCreateGC( dpy, menu->menuWindow, 0, NULL ); + int i=0; + int fontheight; + int iPosY = 0; + cairo_t* cr=cairo_create(menu->menu_cs); + SkinImage *background = LoadImage(sc, sc->skinMenu.backImg, false); + + fontheight= sc->skinFont.menuFontSize; + + GetMenuSize(menu); + + DrawResizableBackground(cr, background->image, menu->height, menu->width, + sc->skinMenu.marginLeft, + sc->skinMenu.marginTop, + sc->skinMenu.marginRight, + sc->skinMenu.marginBottom, + sc->skinMenu.fillV, + sc->skinMenu.fillH + ); + + cairo_destroy(cr); + + iPosY=sc->skinMenu.marginTop; + for (i=0;imenushell->shell);i++) + { + if ( GetMenuShell(menu->menushell, i)->type == MENUTYPE_SIMPLE || GetMenuShell(menu->menushell, i)->type == MENUTYPE_SUBMENU) + { + DisplayText( menu,i,iPosY); + if (menu->menushell->mark == i) + MenuMark(menu,iPosY,i); + + if (GetMenuShell(menu->menushell, i)->type == MENUTYPE_SUBMENU) + DrawArrow(menu, iPosY); + iPosY=iPosY+6+fontheight; + } + else if ( GetMenuShell(menu->menushell, i)->type == MENUTYPE_DIVLINE) + { + DrawDivLine(menu,iPosY); + iPosY+=5; + } + } + + XResizeWindow(dpy, menu->menuWindow, menu->width, menu->height); + XCopyArea (dpy, + menu->pixmap, + menu->menuWindow, + gc, + 0, + 0, + menu->width, + menu->height, 0, 0); + XFreeGC(dpy, gc); +} + +void DisplayXlibMenu(XlibMenu * menu) +{ + FcitxClassicUI *classicui = menu->owner; + Display* dpy = classicui->dpy; + XMapRaised (dpy, menu->menuWindow); + XMoveWindow(dpy, menu->menuWindow, menu->iPosX, menu->iPosY); +} + +void DrawDivLine(XlibMenu * menu,int line_y) +{ + FcitxSkin *sc = &menu->owner->skin; + int marginLeft = sc->skinMenu.marginLeft; + int marginRight = sc->skinMenu.marginRight; + cairo_t * cr; + cr=cairo_create(menu->menu_cs); + fcitx_cairo_set_color(cr, &sc->skinMenu.lineColor); + cairo_set_line_width (cr, 2); + cairo_move_to(cr, marginLeft + 3, line_y+3); + cairo_line_to(cr, menu->width - marginRight - 3, line_y+3); + cairo_stroke(cr); + cairo_destroy(cr); +} + +void MenuMark(XlibMenu * menu,int y,int i) +{ + FcitxSkin *sc = &menu->owner->skin; + int marginLeft = sc->skinMenu.marginLeft; + double size = (sc->skinFont.menuFontSize * 0.7 ) / 2; + cairo_t *cr; + cr = cairo_create(menu->menu_cs); + if (GetMenuShell(menu->menushell, i)->isselect == 0) + { + fcitx_cairo_set_color(cr, &sc->skinFont.menuFontColor[MENU_INACTIVE]); + } + else + { + fcitx_cairo_set_color(cr, &sc->skinFont.menuFontColor[MENU_ACTIVE]); + } + cairo_translate(cr, marginLeft + 7, y + (sc->skinFont.menuFontSize / 2.0) ); + cairo_arc(cr, 0, 0, size , 0., 2*M_PI); + cairo_fill(cr); + cairo_destroy(cr); +} + +/* +* 显示菜单上面的文字信息,只需要指定窗口,窗口宽度,需要显示文字的上边界,字体,显示的字符串和是否选择(选择后反色) +* 其他都固定,如背景和文字反色不反色的颜色,反色框和字的位置等 +*/ +void DisplayText(XlibMenu * menu,int shellindex,int line_y) +{ + FcitxSkin *sc = &menu->owner->skin; + int marginLeft = sc->skinMenu.marginLeft; + int marginRight = sc->skinMenu.marginRight; + cairo_t * cr; + cr=cairo_create(menu->menu_cs); + + SetFontContext(cr, menu->owner->menuFont, sc->skinFont.menuFontSize); + + if (GetMenuShell(menu->menushell, shellindex)->isselect ==0) + { + fcitx_cairo_set_color(cr, &sc->skinFont.menuFontColor[MENU_INACTIVE]); + + OutputStringWithContext(cr, GetMenuShell(menu->menushell, shellindex)->tipstr , 15 + marginLeft ,line_y); + } + else + { + cairo_set_operator(cr, CAIRO_OPERATOR_OVER); + fcitx_cairo_set_color(cr, &sc->skinMenu.activeColor); + cairo_rectangle (cr, marginLeft ,line_y, menu->width - marginRight - marginLeft,sc->skinFont.menuFontSize+4); + cairo_fill (cr); + + fcitx_cairo_set_color(cr, &sc->skinFont.menuFontColor[MENU_ACTIVE]); + OutputStringWithContext(cr, GetMenuShell(menu->menushell, shellindex)->tipstr , 15 + marginLeft ,line_y); + } + ResetFontContext(); + cairo_destroy(cr); +} + +void DrawArrow(XlibMenu *menu, int line_y) +{ + FcitxSkin *sc = &menu->owner->skin; + int marginRight = sc->skinMenu.marginRight; + cairo_t* cr=cairo_create(menu->menu_cs); + double size = sc->skinFont.menuFontSize * 0.4; + double offset = (sc->skinFont.menuFontSize - size) / 2; + cairo_move_to(cr,menu->width - marginRight - 1 - size, line_y + offset); + cairo_line_to(cr,menu->width - marginRight - 1 - size, line_y+size * 2 + offset); + cairo_line_to(cr,menu->width - marginRight - 1, line_y + size + offset ); + cairo_line_to(cr,menu->width - marginRight - 1 - size ,line_y + offset); + cairo_fill (cr); + cairo_destroy(cr); +} + +/** +*返回鼠标指向的菜单在menu中是第多少项 +*/ +int SelectShellIndex(XlibMenu * menu, int x, int y, int* offseth) +{ + FcitxSkin *sc = &menu->owner->skin; + int i; + int winheight=sc->skinMenu.marginTop; + int fontheight; + int marginLeft = sc->skinMenu.marginLeft; + + if (x < marginLeft) + return -1; + + fontheight= sc->skinFont.menuFontSize; + for (i=0;imenushell->shell);i++) + { + if (GetMenuShell(menu->menushell, i)->type == MENUTYPE_SIMPLE || GetMenuShell(menu->menushell, i)->type == MENUTYPE_SUBMENU) + { + if (y>winheight+1 && ymenushell, i)->type == MENUTYPE_DIVLINE) + winheight+=5; + } + return -1; +} + +boolean ReverseColor(XlibMenu * menu,int shellIndex) +{ + boolean flag = false; + int i; + + int last = -1; + + for (i=0;imenushell->shell);i++) + { + if (GetMenuShell(menu->menushell, i)->isselect) + last = i; + + GetMenuShell(menu->menushell, i)->isselect=0; + } + if (shellIndex == last) + flag = true; + if (shellIndex >=0 && shellIndex < utarray_len(&menu->menushell->shell)) + GetMenuShell(menu->menushell, shellIndex)->isselect = 1; + return flag; +} + +void ClearSelectFlag(XlibMenu * menu) +{ + int i; + for (i=0;i< utarray_len(&menu->menushell->shell);i++) + { + GetMenuShell(menu->menushell, i)->isselect=0; + } +} + +void ReloadXlibMenu(void* arg, boolean enabled) +{ + XlibMenu* menu = (XlibMenu*) arg; + boolean visable = WindowIsVisable(menu->owner->dpy, menu->menuWindow); + cairo_surface_destroy(menu->menu_cs); + XFreePixmap(menu->owner->dpy, menu->pixmap); + XDestroyWindow(menu->owner->dpy, menu->menuWindow); + + menu->menu_cs = NULL; + menu->pixmap = None; + menu->menuWindow = None; + + InitXlibMenu(menu); + if (visable) + XMapWindow(menu->owner->dpy, menu->menuWindow); +} + +void MoveSubMenu(XlibMenu *sub, XlibMenu *parent, int offseth) +{ + int dwidth, dheight; + FcitxSkin *sc = &parent->owner->skin; + GetScreenSize(parent->owner, &dwidth, &dheight); + UpdateMenuShell(sub->menushell); + GetMenuSize(sub); + sub->iPosX=parent->iPosX + parent->width - sc->skinMenu.marginRight - 4; + sub->iPosY=parent->iPosY + offseth - sc->skinMenu.marginTop; + + if ( sub->iPosX + sub->width > dwidth) + sub->iPosX=parent->iPosX - sub->width + sc->skinMenu.marginLeft + 4; + + if ( sub->iPosY + sub->height > dheight) + sub->iPosY = dheight - sub->height; + + XMoveWindow(parent->owner->dpy, sub->menuWindow, sub->iPosX, sub->iPosY); +} + +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/ui/classic/MenuWindow.h fcitx-4.1.1/src/ui/classic/MenuWindow.h --- fcitx-4.0.1/src/ui/classic/MenuWindow.h 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/ui/classic/MenuWindow.h 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,69 @@ +/*************************************************************************** + * Copyright (C) 2009~2010 by t3swing * + * t3swing@sina.com * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ +/* 鼠标点击logo图标的时候产生的窗口 */ + +#ifndef _MENUWINDOW_H_ +#define _MENUWINDOW_H_ + +#define MENU_WINDOW_WIDTH 200 +#define MENU_WINDOW_HEIGHT 400 + +#define IM_MENU_WINDOW_WIDTH 110 +#define IM_MENU_WINDOW_HEIGHT 300 + +#define SKIN_MENU_WINDOW_WIDTH 110 +#define SKIN_MENU_WINDOW_HEIGHT 300 + +#define VK_MENU_WINDOW_WIDTH 110 +#define VK_MENU_WINDOW_HEIGHT 300 +#include +#include "fcitx-utils/utarray.h" +#include +#include "fcitx-config/fcitx-config.h" + +struct _FcitxClassicUI; +struct _FcitxUIMenu; + +typedef struct _XlibMenu +{ + int iPosX; + int iPosY; + int width; + int height; + Window menuWindow; + Pixmap pixmap; + cairo_surface_t *menu_cs; + XColor bgcolor; + XColor bgselectcolor; + XColor charcolor; + XColor charselectcolor; + struct _FcitxUIMenu *menushell; + struct _FcitxClassicUI* owner; +} XlibMenu; + +XlibMenu* CreateMainMenuWindow(struct _FcitxClassicUI *classicui); +XlibMenu* CreateXlibMenu(struct _FcitxClassicUI* classicui); +void GetMenuSize(XlibMenu * menu); +void DrawXlibMenu(XlibMenu * menu); +void DisplayXlibMenu(XlibMenu * menu); + +#endif + +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/ui/classic/MessageWindow.c fcitx-4.1.1/src/ui/classic/MessageWindow.c --- fcitx-4.0.1/src/ui/classic/MessageWindow.c 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/ui/classic/MessageWindow.c 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,218 @@ +/*************************************************************************** + * Copyright (C) 2010~2010 by CSSlayer * + * wengxt@gmail.com * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +#include "fcitx/fcitx.h" + +#include "MessageWindow.h" +#include "fcitx-utils/log.h" + +#include + +#include +#include +#include +#include "classicui.h" +#include "fcitx/module.h" +#include +#include +#include "module/x11/x11stuff.h" +#include + + +#define MESSAGE_WINDOW_MARGIN 20 +#define MESSAGE_WINDOW_LINESPACE 2 +static void InitMessageWindowProperty (MessageWindow* messageWindow); +static boolean MessageWindowEventHandler(void *arg, XEvent* event); +static void DisplayMessageWindow (MessageWindow *messageWindow); + +MessageWindow* CreateMessageWindow (FcitxClassicUI * classicui) +{ + MessageWindow* messageWindow = fcitx_malloc0(sizeof(MessageWindow)); + Display *dpy = classicui->dpy; + int iScreen= classicui->iScreen; + messageWindow->owner = classicui; + + messageWindow->color.r = messageWindow->color.g = messageWindow->color.b = 220.0 / 256; + messageWindow->fontColor.r = messageWindow->fontColor.g = messageWindow->fontColor.b = 0; + messageWindow->fontSize = 15; + messageWindow->width = 1; + messageWindow->height = 1; + + messageWindow->window = + XCreateSimpleWindow (dpy, DefaultRootWindow (dpy), 0, 0, 1, 1, 0, WhitePixel (dpy, DefaultScreen (dpy)), WhitePixel (dpy, DefaultScreen (dpy))); + + messageWindow->surface = cairo_xlib_surface_create(dpy, messageWindow->window, DefaultVisual(dpy, iScreen), 1, 1); + if (messageWindow->window == None) + return False; + + InitMessageWindowProperty (messageWindow); + XSelectInput (dpy, messageWindow->window, ExposureMask | ButtonPressMask | ButtonReleaseMask | PointerMotionMask ); + + FcitxModuleFunctionArg arg; + arg.args[0] = MessageWindowEventHandler; + arg.args[1] = messageWindow; + InvokeFunction(classicui->owner, FCITX_X11, ADDXEVENTHANDLER, arg); + + return messageWindow; +} + +boolean MessageWindowEventHandler(void *arg, XEvent* event) +{ + MessageWindow* messageWindow = (MessageWindow*) arg; + if (event->type == ClientMessage + && event->xclient.data.l[0] == messageWindow->owner->killAtom + && event->xclient.window == messageWindow->window + ) + { + XUnmapWindow(messageWindow->owner->dpy, messageWindow->window); + return true; + } + + if (event->xany.window == messageWindow->window) + { + switch (event->type) + { + case Expose: + DrawMessageWindow(messageWindow, NULL, NULL, 0); + DisplayMessageWindow(messageWindow); + break; + case ButtonRelease: + { + switch (event->xbutton.button) + { + case Button1: + XUnmapWindow(messageWindow->owner->dpy, messageWindow->window); + break; + } + } + break; + } + return true; + } + return false; +} +void InitMessageWindowProperty (MessageWindow *messageWindow) +{ + FcitxClassicUI* classicui = messageWindow->owner; + Display *dpy = classicui->dpy; + XSetTransientForHint (dpy, messageWindow->window, DefaultRootWindow (dpy)); + + ClassicUISetWindowProperty(classicui, messageWindow->window, FCITX_WINDOW_DIALOG, "Fcitx - Message"); + + XSetWMProtocols(dpy, messageWindow->window, &classicui->killAtom, 1); +} + +void DisplayMessageWindow (MessageWindow *messageWindow) +{ + FcitxClassicUI* classicui = messageWindow->owner; + Display *dpy = classicui->dpy; + int dwidth, dheight; + GetScreenSize(classicui, &dwidth, &dheight); + XMapRaised (dpy, messageWindow->window); + XMoveWindow (dpy, messageWindow->window, (dwidth - messageWindow->width) / 2, (dheight - messageWindow->height) / 2); +} + +void DrawMessageWindow (MessageWindow* messageWindow, char *title, char **msg, int length) +{ + FcitxClassicUI* classicui = messageWindow->owner; + Display *dpy = classicui->dpy; + int i = 0; + if (title) + { + if (messageWindow->title) + free(messageWindow->title); + messageWindow->title = strdup(title); + } + else + if (!messageWindow->title) + return; + + title = messageWindow->title; + FcitxLog(DEBUG, "%s", title); + + XTextProperty tp; + Xutf8TextListToTextProperty(dpy, &title, 1, XUTF8StringStyle, &tp); + XSetWMName(dpy, messageWindow->window, &tp); + XFree(tp.value); + + if (msg) + { + if (messageWindow->msg) + { + for (i =0 ;ilength; i++) + free(messageWindow->msg[i]); + free(messageWindow->msg); + } + messageWindow->length = length; + messageWindow->msg = malloc(sizeof(char*) * length); + for (i = 0; i < messageWindow->length; i++) + messageWindow->msg[i] = strdup(msg[i]); + } + else + { + if (!messageWindow->msg) + return; + } + msg = messageWindow->msg; + length = messageWindow->length; + + if (!msg || length == 0) + return; + + messageWindow->height = MESSAGE_WINDOW_MARGIN * 2 + length *(messageWindow->fontSize + MESSAGE_WINDOW_LINESPACE); + messageWindow->width = 0; + + for (i = 0; i< length ;i ++) + { + int width = StringWidth(msg[i], classicui->font, messageWindow->fontSize); + if (width > messageWindow->width) + messageWindow->width = width; + } + + messageWindow->width += MESSAGE_WINDOW_MARGIN * 2; + XResizeWindow(dpy, messageWindow->window, messageWindow->width, messageWindow->height); + cairo_xlib_surface_set_size(messageWindow->surface, messageWindow->width,messageWindow->height); + + cairo_t *c = cairo_create(messageWindow->surface); + cairo_set_source_rgb(c, messageWindow->color.r, messageWindow->color.g, messageWindow->color.b); + cairo_set_operator(c, CAIRO_OPERATOR_SOURCE); + + SetFontContext(c, classicui->font, messageWindow->fontSize); + + cairo_paint(c); + + cairo_set_source_rgb(c, messageWindow->fontColor.r, messageWindow->fontColor.g, messageWindow->fontColor.b); + + int x, y; + x = MESSAGE_WINDOW_MARGIN; + y = MESSAGE_WINDOW_MARGIN; + for (i = 0; i< length ;i ++) + { + OutputStringWithContext(c, msg[i], x, y); + y += messageWindow->fontSize + MESSAGE_WINDOW_LINESPACE; + } + + ResetFontContext(); + cairo_destroy(c); + + ActivateWindow(dpy, classicui->iScreen, messageWindow->window); +} + +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/ui/classic/MessageWindow.h fcitx-4.1.1/src/ui/classic/MessageWindow.h --- fcitx-4.0.1/src/ui/classic/MessageWindow.h 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/ui/classic/MessageWindow.h 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,49 @@ +/*************************************************************************** + * Copyright (C) 2010 by CSSlayer + * wengxt@gmail.com * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +/* A very simple MessageBox for FCITX */ + +#ifndef _MESSAGE_WINDOW_H +#define _MESSAGE_WINDOW_H +#include +#include +#include "fcitx-config/fcitx-config.h" + +struct _FcitxClassicUI; + +typedef struct _MessageWindow +{ + Window window; + cairo_surface_t* surface; + ConfigColor color; + ConfigColor fontColor; + int height, width; + int fontSize; + char *title; + char **msg; + int length; + struct _FcitxClassicUI* owner; +} MessageWindow; + +MessageWindow* CreateMessageWindow (struct _FcitxClassicUI * classicui); +void DrawMessageWindow (MessageWindow* messageWindow, char *title, char **msg, int length); +#endif + +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/ui/classic/skin.c fcitx-4.1.1/src/ui/classic/skin.c --- fcitx-4.0.1/src/ui/classic/skin.c 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/ui/classic/skin.c 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,960 @@ +/*************************************************************************** + * Copyright (C) 2009~2010 by t3swing * + * t3swing@gmail.com * + * Copyright (C) 2009~2010 by Yuking * + * yuking_net@sohu.com * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +/** + * @file skin.c + * @author Yuking yuking_net@sohu.com t3swing t3swing@sina.com + * + * @date 2009-10-9 + * + * @brief 皮肤设置相关定义及初始化加载工作 + * + * + */ +#include +#include +#include +#include +#include +#include +#include + +#include "fcitx/fcitx.h" + +#include "fcitx-config/fcitx-config.h" +#include "fcitx-config/xdg.h" +#include "fcitx-utils/log.h" +#include "fcitx-utils/utarray.h" + +#include "classicui.h" +#include "skin.h" +#include "MenuWindow.h" +#include "InputWindow.h" +#include "MainWindow.h" +#include "TrayWindow.h" +#include "fcitx/ui.h" +#include "fcitx/frontend.h" +#include "fcitx-utils/utils.h" +#include "fcitx/instance.h" +#include "ui/cairostuff/font.h" +#include "fcitx/hook.h" +#include "fcitx/candidate.h" + +static const UT_icd place_icd = {sizeof(SkinPlacement), NULL, NULL, NULL }; + +static boolean SkinMenuAction(FcitxUIMenu* menu, int index); +static void UpdateSkinMenuShell(FcitxUIMenu* menu); +static void UnloadImage(FcitxSkin* skin); + +CONFIG_DESC_DEFINE(GetSkinDesc, "skin.desc") + +/** +@加载皮肤配置文件 +*/ +int LoadSkinConfig(FcitxSkin* sc, char** skinType) +{ + FILE *fp; + char buf[PATH_MAX]={0}; + boolean isreload = False; + int ret = 0; + if (sc->config.configFile) + { + utarray_done(&sc->skinMainBar.skinPlacement); + FreeConfigFile(sc->config.configFile); + free(sc->skinInfo.skinName); + free(sc->skinInfo.skinVersion); + free(sc->skinInfo.skinAuthor); + free(sc->skinInfo.skinDesc); + free(sc->skinMainBar.backImg); + free(sc->skinMainBar.logo); + free(sc->skinMainBar.eng); + free(sc->skinMainBar.active); + free(sc->skinMainBar.placement); + free(sc->skinInputBar.backImg); + free(sc->skinInputBar.backArrow); + free(sc->skinInputBar.forwardArrow); + free(sc->skinTrayIcon.active); + free(sc->skinTrayIcon.inactive); + free(sc->skinMenu.backImg); + free(sc->skinKeyboard.backImg); + UnloadImage(sc); + } + memset(sc, 0, sizeof(FcitxSkin)); + utarray_init(&sc->skinMainBar.skinPlacement, &place_icd); + +reload: + //获取配置文件的绝对路径 + { + if (!isreload) + { + snprintf(buf, PATH_MAX, "%s/fcitx_skin.conf", *skinType); + buf[PATH_MAX-1] ='\0'; + size_t len; + char ** path = GetXDGPath(&len, "XDG_CONFIG_HOME", ".config", PACKAGE "/skin" , DATADIR, PACKAGE "/skin" ); + + fp = GetXDGFile(buf, path, "r", len, NULL); + FreeXDGPath(path); + } + else + { + FcitxLog(INFO, PKGDATADIR "/skin/default/fcitx_skin.conf"); + fp = fopen( PKGDATADIR "/skin/default/fcitx_skin.conf", "r"); + } + } + + if (fp) + { + ConfigFile *cfile; + ConfigFileDesc* skinDesc = GetSkinDesc(); + if (sc->config.configFile == NULL) + { + cfile = ParseConfigFileFp(fp, skinDesc); + } + else + { + cfile = sc->config.configFile; + cfile = ParseIniFp(fp, cfile); + } + if (!cfile) + { + fclose(fp); + fp = NULL; + } + else + { + FcitxSkinConfigBind(sc, cfile, skinDesc); + ConfigBindSync((GenericConfig*)sc); + } + } + + if (!fp) + { + if (isreload) + { + FcitxLog(FATAL, _("Can not load default skin, is installion correct?")); + perror("fopen"); + ret = 1; // 如果安装目录里面也没有配置文件,那就只好告诉用户,无法运行了 + } + else { + perror("fopen"); + FcitxLog(WARNING, _("Can not load skin %s, return to default"), *skinType); + if (*skinType) + free(*skinType); + *skinType = strdup("default"); + isreload = true; + goto reload; + } + } + + if (fp) + fclose(fp); + sc->skinType = skinType; + + return ret; + +} + +SkinImage* LoadImage(FcitxSkin* sc, const char* name, boolean fallback) +{ + char buf[PATH_MAX]; + cairo_surface_t *png = NULL; + SkinImage *image = NULL; + + HASH_FIND_STR(sc->imageTable, name, image); + if (image != NULL) + return image; + if ( strlen(name) > 0 && strcmp( name ,"NONE") !=0) + { + char *skintype = strdup(*sc->skinType); + size_t len; + char ** path = GetXDGPath(&len, "XDG_CONFIG_HOME", ".config", PACKAGE "/skin" , DATADIR, PACKAGE "/skin" ); + char *filename; + while (True) { + snprintf(buf, PATH_MAX, "%s/%s", skintype, name); + buf[PATH_MAX-1] ='\0'; + + FILE* fp = GetXDGFile(buf, path, "r", len, &filename); + + Bool flagNoFile = (fp == NULL); + if (fp) + { + fclose(fp); + + png=cairo_image_surface_create_from_png(filename); + break; + } + if (flagNoFile && (!fallback || strcmp(skintype, "default") == 0)) + { + png = NULL; + break; + } + + free(filename); + free(skintype); + skintype = strdup("default"); + } + free(filename); + free(skintype); + FreeXDGPath(path); + } + + if (png != NULL) + { + image = fcitx_malloc0(sizeof(SkinImage)); + image->name = strdup(name); + image->image = png; + HASH_ADD_KEYPTR(hh, sc->imageTable, image->name, strlen(image->name), image); + return image; + } + return NULL; +} + +void DrawResizableBackground(cairo_t *c, + cairo_surface_t *background, + int height, + int width, + int marginLeft, + int marginTop, + int marginRight, + int marginBottom, + FillRule fillV, + FillRule fillH + ) +{ + int resizeHeight = cairo_image_surface_get_height(background) - marginTop - marginBottom; + int resizeWidth = cairo_image_surface_get_width(background) - marginLeft - marginRight; + + if (resizeHeight <= 0) + resizeHeight = 1; + + if (resizeWidth <= 0) + resizeWidth = 1; + cairo_save(c); + + cairo_set_operator(c, CAIRO_OPERATOR_SOURCE); + cairo_set_source_surface(c, background, 0, 0); + + + /* 九宫格 + * 7 8 9 + * 4 5 6 + * 1 2 3 + */ + + /* part 1 */ + cairo_save(c); + cairo_translate(c, 0, height - marginBottom); + cairo_set_source_surface(c, background, 0, -marginTop -resizeHeight); + cairo_rectangle (c, 0, 0, marginLeft, marginBottom); + cairo_clip(c); + cairo_paint(c); + cairo_restore(c); + + /* part 3 */ + cairo_save(c); + cairo_translate(c, width - marginRight, height - marginBottom); + cairo_set_source_surface(c, background, -marginLeft -resizeWidth, -marginTop -resizeHeight); + cairo_rectangle (c, 0, 0, marginRight, marginBottom); + cairo_clip(c); + cairo_paint(c); + cairo_restore(c); + + + /* part 7 */ + cairo_save(c); + cairo_rectangle (c, 0, 0, marginLeft, marginTop); + cairo_clip(c); + cairo_paint(c); + cairo_restore(c); + + /* part 9 */ + cairo_save(c); + cairo_translate(c, width - marginRight, 0); + cairo_set_source_surface(c, background, -marginLeft -resizeWidth, 0); + cairo_rectangle (c, 0, 0, marginRight, marginTop); + cairo_clip(c); + cairo_paint(c); + cairo_restore(c); + + /* part 2 & 8 */ + { + if ( fillH == F_COPY) + { + int repaint_times=(width - marginLeft - marginRight)/resizeWidth; + int remain_width=(width - marginLeft - marginRight)% resizeWidth; + int i=0; + + for (i=0;iskinInputBar.cursorColor; + + if (inputWindow->c_back) + { + cairo_destroy(inputWindow->c_back); + inputWindow->c_back = NULL; + } + + for (i = 0; i < 7 ; i ++) + { + if (inputWindow->c_font[i]) + { + cairo_destroy(inputWindow->c_font[i]); + inputWindow->c_font[i] = NULL; + } + } + inputWindow->c_font[7] = NULL; + if (inputWindow->c_cursor) + { + cairo_destroy(inputWindow->c_cursor); + inputWindow->c_cursor = NULL; + } + + //输入条背景图画笔 + inputWindow->c_back = cairo_create(inputWindow->cs_input_bar); + + for (i = 0; i < 7 ; i ++) + { + inputWindow->c_font[i] = cairo_create(inputWindow->cs_input_bar); + fcitx_cairo_set_color(inputWindow->c_font[i], &sc->skinFont.fontColor[i]); +#ifndef _ENABLE_PANGO + SetFontContext(inputWindow->c_font[i], font, sc->skinFont.fontSize); +#endif + } + inputWindow->c_font[7] = inputWindow->c_font[0]; + + //光标画笔 + inputWindow->c_cursor=cairo_create(inputWindow->cs_input_bar); + fcitx_cairo_set_color(inputWindow->c_cursor, &cursorColor); + cairo_set_line_width (inputWindow->c_cursor, 1); +} + +void DrawImage(cairo_t *c, cairo_surface_t * png, int x, int y, MouseE mouse) +{ + if (!png) + return; + + cairo_save(c); + + if (mouse == MOTION) + { + cairo_set_source_surface(c,png, x, y); + cairo_paint_with_alpha(c,0.7); + + } + else if (mouse == PRESS) + { + cairo_set_operator(c, CAIRO_OPERATOR_OVER); + cairo_translate(c, x+(int)(cairo_image_surface_get_width(png)*0.2/2), y+(int)(cairo_image_surface_get_height(png)*0.2/2)); + cairo_scale(c, 0.8, 0.8); + cairo_set_source_surface(c,png,0,0); + cairo_paint(c); + } + else //if( img.mouse == RELEASE) + { + cairo_set_source_surface(c,png, x, y); + cairo_paint(c); + } + + cairo_restore(c); +} + +void DrawInputBar(FcitxSkin* sc, InputWindow* inputWindow, int iCursorPos, Messages * msgup, Messages *msgdown ,unsigned int * iheight, unsigned int *iwidth) +{ + int i; + char *strUp[MAX_MESSAGE_COUNT]; + char *strDown[MAX_MESSAGE_COUNT]; + int posUpX[MAX_MESSAGE_COUNT], posUpY[MAX_MESSAGE_COUNT]; + int posDownX[MAX_MESSAGE_COUNT], posDownY[MAX_MESSAGE_COUNT]; + int oldHeight = *iheight, oldWidth = *iwidth; + int newHeight = 0, newWidth = 0; + int cursor_pos=0; + int inputWidth = 0, outputWidth = 0; + int outputHeight = 0; + cairo_t *c = NULL; + FcitxInputState* input = &inputWindow->owner->owner->input; + FcitxInstance* instance = inputWindow->owner->owner; + int iChar = iCursorPos; + int strWidth = 0, strHeight = 0; + + SkinImage *inputimg, *prev, *next; + inputimg = LoadImage(sc, sc->skinInputBar.backImg, false); + prev = LoadImage(sc, sc->skinInputBar.backArrow, false); + next = LoadImage(sc, sc->skinInputBar.forwardArrow, false); + + if (!IsMessageChanged(msgup) && !IsMessageChanged(msgdown)) + return; + + inputWidth = 0; +#ifdef _ENABLE_PANGO /* special case which only macro unable to handle */ + SetFontContext(dummy, inputWindow->owner->font, sc->skinFont.fontSize); +#endif + + for (i = 0; i < GetMessageCount(msgup) ; i++) + { + char *trans = ProcessOutputFilter(instance, GetMessageString(msgup, i)); + if (trans) + strUp[i] = trans; + else + strUp[i] = GetMessageString(msgup, i); + posUpX[i] = sc->skinInputBar.marginLeft + inputWidth; + + StringSizeWithContext(inputWindow->c_font[GetMessageType(msgup, i)], strUp[i], &strWidth, &strHeight); + + posUpY[i] = sc->skinInputBar.marginTop + sc->skinInputBar.iInputPos - strHeight; + inputWidth += strWidth; + if (input->bShowCursor) + { + int length = strlen(GetMessageString(msgup, i)); + if (iChar >= 0) + { + if (iChar < length) + { + char strTemp[MESSAGE_MAX_LENGTH]; + char *strGBKT = NULL; + strncpy(strTemp, strUp[i], iChar); + strTemp[iChar] = '\0'; + strGBKT = strTemp; + StringSizeWithContext(inputWindow->c_font[GetMessageType(msgup, i)], strGBKT, &strWidth, &strHeight); + cursor_pos= posUpX[i] + + strWidth + 2; + } + iChar -= length; + } + } + + } + + if (iChar >= 0) + cursor_pos = inputWidth + sc->skinInputBar.marginLeft; + + outputWidth = 0; + outputHeight = 0; + int currentX = 0; + for (i = 0; i < GetMessageCount(msgdown) ; i++) + { + char *trans = ProcessOutputFilter(instance, GetMessageString(msgdown, i)); + if (trans) + strDown[i] = trans; + else + strDown[i] = GetMessageString(msgdown, i); + + if (inputWindow->owner->bVerticalList) /* vertical */ + { + if (GetMessageType(msgdown, i) == MSG_INDEX) + { + if (currentX > outputWidth) + outputWidth = currentX; + if (i != 0) + { + outputHeight += sc->skinFont.fontSize + 2; + currentX = 0; + } + } + posDownX[i] = sc->skinInputBar.marginLeft + currentX; + StringSizeWithContext(inputWindow->c_font[GetMessageType(msgdown, i)], strDown[i], &strWidth, &strHeight); + currentX += strWidth; + posDownY[i] = sc->skinInputBar.marginTop + sc->skinInputBar.iOutputPos + outputHeight - strHeight; + } + else /* horizontal */ + { + posDownX[i] = sc->skinInputBar.marginLeft + outputWidth; + StringSizeWithContext(inputWindow->c_font[GetMessageType(msgdown, i)], strDown[i], &strWidth, &strHeight); + posDownY[i] = sc->skinInputBar.marginTop + sc->skinInputBar.iOutputPos - strHeight; + outputWidth += strWidth; + } + } + if (inputWindow->owner->bVerticalList && currentX > outputWidth) + outputWidth = currentX; + + newHeight = sc->skinInputBar.marginTop + sc->skinInputBar.iOutputPos + outputHeight + sc->skinInputBar.marginBottom; + + newWidth = (inputWidthskinInputBar.marginLeft+sc->skinInputBar.marginRight; + + /* round to ROUND_SIZE in order to decrease resize */ + newWidth = (newWidth / ROUND_SIZE) * ROUND_SIZE + ROUND_SIZE; + + //输入条长度应该比背景图长度要长,比最大长度要短 + newWidth=(newWidth>=INPUT_BAR_MAX_WIDTH)?INPUT_BAR_MAX_WIDTH:newWidth; + if (inputWindow->owner->bVerticalList) /* vertical */ + { + newWidth = (newWidth < INPUT_BAR_VMIN_WIDTH)?INPUT_BAR_VMIN_WIDTH:newWidth; + } + else + { + newWidth = (newWidth < INPUT_BAR_HMIN_WIDTH)?INPUT_BAR_HMIN_WIDTH:newWidth; + } + + *iwidth = newWidth; + *iheight = newHeight; + + if (oldHeight != newHeight || oldWidth != newWidth) + { + c=cairo_create(inputWindow->cs_input_back); + DrawResizableBackground(c, inputimg->image, newHeight, newWidth, + sc->skinInputBar.marginLeft, + sc->skinInputBar.marginTop, + sc->skinInputBar.marginRight, + sc->skinInputBar.marginBottom, + sc->skinInputBar.fillV, + sc->skinInputBar.fillH + ); + cairo_destroy(c); + } + + c = cairo_create(inputWindow->cs_input_bar); + cairo_set_source_surface(c, inputWindow->cs_input_back, 0, 0); + cairo_save(c); + cairo_rectangle (c, 0, 0, newWidth, newHeight); + cairo_set_operator(c, CAIRO_OPERATOR_SOURCE); + cairo_clip(c); + cairo_paint(c); + cairo_restore(c); + + cairo_set_operator(c, CAIRO_OPERATOR_OVER); + + + if (input->bShowCursor ) + { + //画向前向后箭头 + if (prev && next ) + { + cairo_set_source_surface(inputWindow->c_back, prev->image, + newWidth - sc->skinInputBar.iBackArrowX , + sc->skinInputBar.iBackArrowY); + if (CandidateWordHasPrev(input->candList)) + cairo_paint(inputWindow->c_back); + else + cairo_paint_with_alpha(inputWindow->c_back,0.5); + + //画向前箭头 + cairo_set_source_surface(inputWindow->c_back, next->image, + newWidth - sc->skinInputBar.iForwardArrowX , + sc->skinInputBar.iForwardArrowY); + if (CandidateWordHasNext(input->candList)) + cairo_paint(inputWindow->c_back); + else + cairo_paint_with_alpha(inputWindow->c_back,0.5); + } + } + + for (i = 0; i < GetMessageCount(msgup) ; i++) + { + OutputStringWithContext(inputWindow->c_font[GetMessageType(msgup, i)], strUp[i], posUpX[i], posUpY[i]); + if (strUp[i] != GetMessageString(msgup, i)) + free(strUp[i]); + } + + for (i = 0; i < GetMessageCount(msgdown) ; i++) + { + OutputStringWithContext(inputWindow->c_font[GetMessageType(msgdown, i)], strDown[i], posDownX[i], posDownY[i]); + if (strDown[i] != GetMessageString(msgdown, i)) + free(strDown[i]); + } + + ResetFontContext(); + + //画光标 + if (input->bShowCursor ) + { + cairo_move_to(inputWindow->c_cursor,cursor_pos,sc->skinInputBar.marginTop + sc->skinInputBar.iInputPos); + cairo_line_to(inputWindow->c_cursor,cursor_pos,sc->skinInputBar.marginTop + sc->skinInputBar.iInputPos - FontHeightWithContext(inputWindow->c_font[0]) - 4); + cairo_stroke(inputWindow->c_cursor); + } + + cairo_destroy(c); + SetMessageChanged(msgup, false); + SetMessageChanged(msgdown, false); +} + +void DisplaySkin(FcitxClassicUI* classicui, char * skinname) +{ + char *pivot = classicui->skinType; + classicui->skinType= strdup(skinname); + if (pivot) + free(pivot); + + if (LoadSkinConfig(&classicui->skin, &classicui->skinType)) + EndInstance(classicui->owner); + +#ifndef _ENABLE_PANGO + GetValidFont(classicui->strUserLocale, &classicui->font); + GetValidFont(classicui->strUserLocale, &classicui->menuFont); +#endif + + LoadInputMessage(&classicui->skin, classicui->inputWindow, classicui->font); + + DrawMainWindow (classicui->mainWindow); + DrawInputWindow (classicui->inputWindow); + DrawTrayWindow (classicui->trayWindow); + + SaveClassicUIConfig(classicui); +} + +void UnloadImage(FcitxSkin* skin) +{ + SkinImage *images = skin->imageTable; + while (images) + { + SkinImage* curimage = images; + HASH_DEL(images, curimage); + free(curimage->name); + cairo_surface_destroy(curimage->image); + free(curimage); + } + skin->imageTable = NULL; +} + +//图片文件加载函数完成 +/*-------------------------------------------------------------------------------------------------------------*/ +//skin目录下读入skin的文件夹名 + +void LoadSkinDirectory(FcitxClassicUI* classicui) +{ + UT_array* skinBuf = &classicui->skinBuf; + utarray_clear(skinBuf); + int i ; + DIR *dir; + struct dirent *drt; + struct stat fileStat; + size_t len; + char pathBuf[PATH_MAX]; + char **skinPath = GetXDGPath(&len, "XDG_CONFIG_HOME", ".config", PACKAGE "/skin" , DATADIR, PACKAGE "/skin" ); + for (i = 0; i< len; i++) + { + dir = opendir(skinPath[i]); + if (dir == NULL) + continue; + + while ((drt = readdir(dir)) != NULL) + { + if (strcmp(drt->d_name , ".") == 0 || strcmp(drt->d_name, "..") == 0) + continue; + sprintf(pathBuf,"%s/%s",skinPath[i],drt->d_name); + + if ( stat(pathBuf,&fileStat) == -1) + { + continue; + } + if ( fileStat.st_mode & S_IFDIR) + { + /* check duplicate name */ + int j = 0; + for (;ji;j++) + { + char **name = (char**) utarray_eltptr(skinBuf, j); + if (strcmp(*name, drt->d_name) == 0) + break; + } + if (j == skinBuf->i) + { + char *temp = drt->d_name; + utarray_push_back(skinBuf, &temp); + } + } + } + + closedir(dir); + } + + FreeXDGPath(skinPath); + + return; +} + +void InitSkinMenu(FcitxClassicUI* classicui) +{ + utarray_init(&classicui->skinBuf, &ut_str_icd); + strcpy(classicui->skinMenu.candStatusBind, "skin"); + strcpy(classicui->skinMenu.name, _("Skin")); + utarray_init(&classicui->skinMenu.shell, &menuICD); + + classicui->skinMenu.UpdateMenuShell = UpdateSkinMenuShell; + classicui->skinMenu.MenuAction = SkinMenuAction; + classicui->skinMenu.priv = classicui; + classicui->skinMenu.isSubMenu = false; +} + +boolean SkinMenuAction(FcitxUIMenu* menu, int index) +{ + FcitxClassicUI* classicui = (FcitxClassicUI*) menu->priv; + MenuShell* shell = (MenuShell*) utarray_eltptr(&menu->shell, index); + if (shell) + DisplaySkin(classicui, shell->tipstr); + return true; +} + +void UpdateSkinMenuShell(FcitxUIMenu* menu) +{ + FcitxClassicUI* classicui = (FcitxClassicUI*) menu->priv; + LoadSkinDirectory(classicui); + ClearMenuShell(menu); + char **s; + int i = 0; + + for ( s = (char**) utarray_front(&classicui->skinBuf); + s != NULL; + s = (char**) utarray_next(&classicui->skinBuf, s)) + { + if (strcmp(*s, classicui->skinType) == 0) + { + menu->mark = i; + } + AddMenuShell(menu, *s, MENUTYPE_SIMPLE, NULL); + i ++; + } + +} + +void ParsePlacement(UT_array* sps, char* placment) +{ + UT_array* array = SplitString(placment, ';'); + char** str; + utarray_clear(sps); + for (str = (char**) utarray_front(array); + str != NULL; + str = (char**) utarray_next(array, str)) + { + char* s = *str; + char* p = strchr(s, ':'); + if (p == NULL) + continue; + if ((strchr(s, ':') - s) > MAX_STATUS_NAME) + continue; + + int len = p - s; + SkinPlacement sp; + strncpy(sp.name, s, len); + sp.name[len] = '\0'; + int ret = sscanf(p+1, "%d,%d", &sp.x, &sp.y); + if (ret != 2) + continue; + utarray_push_back(sps, &sp); + } + + utarray_free(array); +} +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/ui/classic/skinconfig.c fcitx-4.1.1/src/ui/classic/skinconfig.c --- fcitx-4.0.1/src/ui/classic/skinconfig.c 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/ui/classic/skinconfig.c 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,104 @@ +/*************************************************************************** + * Copyright (C) 2010~2010 by t3swing * + * t3swing@gmail.com * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +#include "fcitx/fcitx.h" + +#include "skin.h" +#include "MenuWindow.h" +#include "fcitx-config/fcitx-config.h" +#include "fcitx/ui.h" + + +static void FilterPlacement(GenericConfig* config, ConfigGroup *group, ConfigOption *option, void* value, ConfigSync sync, void* arg); + +CONFIG_BINDING_BEGIN(FcitxSkin) +CONFIG_BINDING_REGISTER("SkinInfo","Name",skinInfo.skinName) +CONFIG_BINDING_REGISTER("SkinInfo","Version",skinInfo.skinVersion) +CONFIG_BINDING_REGISTER("SkinInfo","Author",skinInfo.skinAuthor) +CONFIG_BINDING_REGISTER("SkinInfo","Desc",skinInfo.skinDesc) + +CONFIG_BINDING_REGISTER("SkinFont","FontSize",skinFont.fontSize) +CONFIG_BINDING_REGISTER("SkinFont","MenuFontSize",skinFont.menuFontSize) +CONFIG_BINDING_REGISTER("SkinFont","TipColor",skinFont.fontColor[MSG_TIPS]) +CONFIG_BINDING_REGISTER("SkinFont","InputColor",skinFont.fontColor[MSG_INPUT]) +CONFIG_BINDING_REGISTER("SkinFont","IndexColor",skinFont.fontColor[MSG_INDEX]) +CONFIG_BINDING_REGISTER("SkinFont","UserPhraseColor",skinFont.fontColor[MSG_USERPHR]) +CONFIG_BINDING_REGISTER("SkinFont","FirstCandColor",skinFont.fontColor[MSG_FIRSTCAND]) +CONFIG_BINDING_REGISTER("SkinFont","CodeColor",skinFont.fontColor[MSG_CODE]) +CONFIG_BINDING_REGISTER("SkinFont","OtherColor",skinFont.fontColor[MSG_OTHER]) +CONFIG_BINDING_REGISTER("SkinFont","ActiveMenuColor",skinFont.menuFontColor[MENU_ACTIVE]) +CONFIG_BINDING_REGISTER("SkinFont","InactiveMenuColor",skinFont.menuFontColor[MENU_INACTIVE]) + +CONFIG_BINDING_REGISTER("SkinMainBar","BackImg",skinMainBar.backImg) +CONFIG_BINDING_REGISTER("SkinMainBar","Logo",skinMainBar.logo) +CONFIG_BINDING_REGISTER("SkinMainBar","Eng",skinMainBar.eng) +CONFIG_BINDING_REGISTER("SkinMainBar","Active",skinMainBar.active) +CONFIG_BINDING_REGISTER("SkinMainBar","MarginLeft", skinMainBar.marginLeft) +CONFIG_BINDING_REGISTER("SkinMainBar","MarginRight", skinMainBar.marginRight) +CONFIG_BINDING_REGISTER("SkinMainBar","MarginTop", skinMainBar.marginTop) +CONFIG_BINDING_REGISTER("SkinMainBar","MarginBottom", skinMainBar.marginBottom) +CONFIG_BINDING_REGISTER("SkinMainBar","FillVertical", skinMainBar.fillV) +CONFIG_BINDING_REGISTER("SkinMainBar","FillHorizontal", skinMainBar.fillH) +CONFIG_BINDING_REGISTER_WITH_FILTER("SkinMainBar","Placement", skinMainBar.placement, FilterPlacement) + +CONFIG_BINDING_REGISTER("SkinInputBar","BackImg",skinInputBar.backImg) +CONFIG_BINDING_REGISTER("SkinInputBar","MarginTop", skinInputBar.marginTop) +CONFIG_BINDING_REGISTER("SkinInputBar","MarginBottom", skinInputBar.marginBottom) +CONFIG_BINDING_REGISTER("SkinInputBar","MarginLeft", skinInputBar.marginLeft) +CONFIG_BINDING_REGISTER("SkinInputBar","MarginRight", skinInputBar.marginRight) +CONFIG_BINDING_REGISTER("SkinInputBar","CursorColor",skinInputBar.cursorColor) +CONFIG_BINDING_REGISTER("SkinInputBar","InputPos",skinInputBar.iInputPos) +CONFIG_BINDING_REGISTER("SkinInputBar","OutputPos",skinInputBar.iOutputPos) +CONFIG_BINDING_REGISTER("SkinInputBar","BackArrow",skinInputBar.backArrow) +CONFIG_BINDING_REGISTER("SkinInputBar","ForwardArrow",skinInputBar.forwardArrow) +CONFIG_BINDING_REGISTER("SkinInputBar","BackArrowX",skinInputBar.iBackArrowX) +CONFIG_BINDING_REGISTER("SkinInputBar","BackArrowY",skinInputBar.iBackArrowY) +CONFIG_BINDING_REGISTER("SkinInputBar","ForwardArrowX",skinInputBar.iForwardArrowX) +CONFIG_BINDING_REGISTER("SkinInputBar","ForwardArrowY",skinInputBar.iForwardArrowY) +CONFIG_BINDING_REGISTER("SkinInputBar","FillVertical", skinInputBar.fillV) +CONFIG_BINDING_REGISTER("SkinInputBar","FillHorizontal", skinInputBar.fillH) + +CONFIG_BINDING_REGISTER("SkinTrayIcon","Active",skinTrayIcon.active) +CONFIG_BINDING_REGISTER("SkinTrayIcon","Inactive",skinTrayIcon.inactive) + +CONFIG_BINDING_REGISTER("SkinMenu", "BackImg", skinMenu.backImg) +CONFIG_BINDING_REGISTER("SkinMenu", "MarginTop", skinMenu.marginTop) +CONFIG_BINDING_REGISTER("SkinMenu", "MarginBottom", skinMenu.marginBottom) +CONFIG_BINDING_REGISTER("SkinMenu", "MarginLeft", skinMenu.marginLeft) +CONFIG_BINDING_REGISTER("SkinMenu", "MarginRight", skinMenu.marginRight) +CONFIG_BINDING_REGISTER("SkinMenu", "ActiveColor", skinMenu.activeColor) +CONFIG_BINDING_REGISTER("SkinMenu", "LineColor", skinMenu.lineColor) +CONFIG_BINDING_REGISTER("SkinMenu","FillVertical", skinMenu.fillV) +CONFIG_BINDING_REGISTER("SkinMenu","FillHorizontal", skinMenu.fillH) + +CONFIG_BINDING_REGISTER("SkinKeyboard", "BackImg", skinKeyboard.backImg) +CONFIG_BINDING_REGISTER("SkinKeyboard", "KeyColor", skinKeyboard.keyColor) + +CONFIG_BINDING_END() + +void FilterPlacement(GenericConfig* config, ConfigGroup *group, ConfigOption *option, void* value, ConfigSync sync, void* arg) +{ + FcitxSkin* sc = (FcitxSkin*) config; + if (sync == Raw2Value) + { + ParsePlacement(&sc->skinMainBar.skinPlacement, *(char**) value); + } +} +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/ui/classic/skin.desc fcitx-4.1.1/src/ui/classic/skin.desc --- fcitx-4.0.1/src/ui/classic/skin.desc 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/ui/classic/skin.desc 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,250 @@ +[SkinInfo/Name] +Type=I18NString +Description=Skin Name + +[SkinInfo/Version] +Type=String +Description=Skin Version + +[SkinInfo/Author] +Type=String +Description=Skin Author + +[SkinInfo/Desc] +Type=I18NString +Description=Description of Skin + +[SkinFont/FontSize] +Type=Integer +Description=Input Font Size + +[SkinFont/MenuFontSize] +Type=Integer +Description=Menu Font Size +DefaultValue=15 + +[SkinFont/TipColor] +Type=Color +Description=Tip Message Color + +[SkinFont/InputColor] +Type=Color +Description=Input Message Color + +[SkinFont/IndexColor] +Type=Color +Description=Candidate Index Color + +[SkinFont/FirstCandColor] +Type=Color +Description=First Candidate Color + +[SkinFont/UserPhraseColor] +Type=Color +Description=User Phrase Color + +[SkinFont/CodeColor] +Type=Color +Description=Table Code Color + +[SkinFont/OtherColor] +Type=Color +Description=Other Color + +[SkinFont/ActiveMenuColor] +Type=Color +Description=Active Menu Item Character Color + +[SkinFont/InactiveMenuColor] +Type=Color +Description=Inactive Menu Item Character Color + +[SkinMainBar/BackImg] +Type=String +Description=Background Image + +[SkinMainBar/Logo] +Type=String +Description=Logo Icon + +[SkinMainBar/Eng] +Type=String +Description=English Mode Icon + +[SkinMainBar/Active] +Type=String +Description=Chinese Mode Icon + +[SkinMainBar/MarginLeft] +Type=Integer +Description=Resize Margin Left + +[SkinMainBar/MarginRight] +Type=Integer +Description=Resize Margin Right + +[SkinMainBar/MarginTop] +Type=Integer +Description=Resize Margin Top + +[SkinMainBar/MarginBottom] +Type=Integer +Description=Resize Margin Bottom + +[SkinMainBar/FillVertical] +Type=Enum +Description=Fill Background Vertical rule +EnumCount=2 +Enum0=Copy +Enum1=Resize +DefaultValue=Resize + +[SkinMainBar/FillHorizontal] +Type=Enum +Description=Fill Background Horizontal rule +EnumCount=2 +Enum0=Copy +Enum1=Resize +DefaultValue=Resize + +[SkinMainBar/Placement] +Type=String +Description=Special Icon position +DefaultValue= + +[SkinInputBar/BackImg] +Type=String +Description=Background Image + +[SkinInputBar/MarginLeft] +Type=Integer +Description=Resize Margin Left + +[SkinInputBar/MarginRight] +Type=Integer +Description=Resize Margin Right + +[SkinInputBar/MarginTop] +Type=Integer +Description=Resize Margin Top + +[SkinInputBar/MarginBottom] +Type=Integer +Description=Resize Margin Bottom + +[SkinInputBar/CursorColor] +Type=Color +Description=Color of Cursor + +[SkinInputBar/InputPos] +Type=Integer +Description=Left-down position of Input + +[SkinInputBar/OutputPos] +Type=Integer +Description=Left-down position of Output + +[SkinInputBar/BackArrow] +Type=String +Description=Prev Page Icon + +[SkinInputBar/ForwardArrow] +Type=String +Description=Next Page Icon + +[SkinInputBar/BackArrowX] +Type=Integer +Description=Prev Page Icon + +[SkinInputBar/BackArrowY] +Type=Integer +Description=Next Page Icon + +[SkinInputBar/ForwardArrowX] +Type=Integer +Description=Prev Page Icon + +[SkinInputBar/ForwardArrowY] +Type=Integer +Description=Next Page Icon + +[SkinInputBar/FillVertical] +Type=Enum +Description=Fill Background Vertical rule +EnumCount=2 +Enum0=Copy +Enum1=Resize +DefaultValue=Resize + +[SkinInputBar/FillHorizontal] +Type=Enum +Description=Fill Background Horizontal rule +EnumCount=2 +Enum0=Copy +Enum1=Resize +DefaultValue=Resize + +[SkinTrayIcon/Active] +Type=String +Description=Active Tray Icon + +[SkinTrayIcon/Inactive] +Type=String +Description=Inctive Tray Icon + +[SkinMenu/BackImg] +Type=String +Description=Background Image + +[SkinMenu/MarginTop] +Type=Integer +Description=Resize Margin Top + +[SkinMenu/MarginBottom] +Type=Integer +Description=Resize Margin Bottom + +[SkinMenu/MarginLeft] +Type=Integer +Description=Resize Margin Left + +[SkinMenu/MarginRight] +Type=Integer +Description=Resize Margin Right + +[SkinMenu/ActiveColor] +Type=Color +Description=Active Menu Color + +[SkinMenu/LineColor] +Type=Color +Description=Space Line Color + +[SkinMenu/FillVertical] +Type=Enum +Description=Fill Background Vertical rule +EnumCount=2 +Enum0=Copy +Enum1=Resize +DefaultValue=Resize + +[SkinMenu/FillHorizontal] +Type=Enum +Description=Fill Background Horizontal rule +EnumCount=2 +Enum0=Copy +Enum1=Resize +DefaultValue=Resize + +[SkinKeyboard/BackImg] +Type=String +Description=Virtual Keyboard Image +DefaultValue=keyboard.png + +[SkinKeyboard/KeyColor] +Type=Color +Description=Key Color On Virutal Keyboard +DefaultValue=0 0 0 + +[DescriptionFile] +LocaleDomain=fcitx diff -Nru fcitx-4.0.1/src/ui/classic/skin.h fcitx-4.1.1/src/ui/classic/skin.h --- fcitx-4.0.1/src/ui/classic/skin.h 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/ui/classic/skin.h 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,209 @@ +/*************************************************************************** + * Copyright (C) 2009-2010 by t3swing * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ +/** + * @file skin.h + * @author t3swing t3swing@sina.com + * + * @date 2009-10-9 + * + * @brief 皮肤设置相关定义及初始化加载工作 + * + * + */ + +#ifndef _SKIN_H +#define _SKIN_H + +#define SIZEX 800 +#define SIZEY 200 +#include "fcitx-utils/uthash.h" +#include +#include "fcitx-config/fcitx-config.h" +#include "fcitx/ui.h" + +struct _XlibMenu; +struct _InputWindow; +struct _Messages; +struct _FcitxClassicUI; + +typedef enum _FillRule +{ + F_COPY = 0, + F_RESIZE = 1 +} FillRule; + +typedef enum _MouseE +{ + RELEASE,//鼠标释放状态 + PRESS,//鼠标按下 + MOTION//鼠标停留 +} MouseE; + +typedef struct _SkinImage +{ + char *name; + cairo_surface_t *image; + UT_hash_handle hh; +} SkinImage; + +typedef struct _SkinInfo +{ + char *skinName; + char *skinVersion; + char *skinAuthor; + char *skinDesc; +} SkinInfo; + +typedef struct _SkinFont +{ + int fontSize; + int menuFontSize; + ConfigColor fontColor[7]; + ConfigColor menuFontColor[2]; +} SkinFont; + +typedef struct _SkinMenu +{ + char* backImg; + int marginTop; + int marginBottom; + int marginLeft; + int marginRight; + ConfigColor activeColor; + ConfigColor lineColor; + FillRule fillV; + FillRule fillH; +} SkinMenu; + +/** + * @brief The Main Window Skin description + **/ +typedef struct _SkinMainBar +{ + char* backImg; + char* logo; + char* eng; + char* active; + int marginTop; + int marginBottom; + int marginLeft; + int marginRight; + char *placement; + UT_array skinPlacement; + FillRule fillV; + FillRule fillH; +} SkinMainBar; + +typedef struct _SkinInputBar +{ + char* backImg; + ConfigColor cursorColor; + int marginTop; + int marginBottom; + int marginLeft; + int marginRight; + char* backArrow; + char* forwardArrow; + int iBackArrowX; + int iBackArrowY; + int iForwardArrowX; + int iForwardArrowY; + int iInputPos; + int iOutputPos; + FillRule fillV; + FillRule fillH; +} SkinInputBar; + +typedef struct _SkinPlacement +{ + char name[MAX_STATUS_NAME + 1]; + int x; + int y; + UT_hash_handle hh; +} SkinPlacement; + +/** + * @brief Tray Icon Image + **/ +typedef struct _SkinTrayIcon +{ + /** + * @brief Active Tray Icon Image + **/ + char* active; + + /** + * @brief Inactive Tray Icon Image + **/ + char* inactive; +} SkinTrayIcon; + +typedef struct _SkinKeyboard +{ + char* backImg; + ConfigColor keyColor; +} SkinKeyboard; + +/** +* 配置文件结构,方便处理,结构固定 +*/ +typedef struct _FcitxSkin +{ + GenericConfig config; + SkinInfo skinInfo; + SkinFont skinFont; + SkinMainBar skinMainBar; + SkinInputBar skinInputBar; + SkinTrayIcon skinTrayIcon; + SkinMenu skinMenu; + SkinKeyboard skinKeyboard; + + char** skinType; + + SkinImage* imageTable; +} FcitxSkin; + +ConfigFileDesc* GetSkinDesc(); +int LoadSkinConfig(FcitxSkin* sc, char** skinType); +void DrawImage(cairo_t* c, cairo_surface_t* png, int x, int y, MouseE mouse); +void DrawInputBar(FcitxSkin* sc, struct _InputWindow* inputWindow, int cursorPos, struct _Messages * msgup, struct _Messages *msgdown ,unsigned int * iheight, unsigned int *iwidth); +SkinImage* LoadImage(FcitxSkin* sc, const char* name, boolean fallback); +void LoadInputMessage(FcitxSkin* sc, struct _InputWindow* inputWindow, const char* font); +void InitSkinMenu(struct _FcitxClassicUI* classicui); +void DisplaySkin(struct _FcitxClassicUI* classicui, char * skinname); +void ParsePlacement(UT_array* sps, char* placment); +void DrawResizableBackground(cairo_t *c, + cairo_surface_t *background, + int height, + int width, + int marginLeft, + int marginTop, + int marginRight, + int marginBottom, + FillRule fillV, + FillRule fillH + ); +#define fcitx_cairo_set_color(c, color) cairo_set_source_rgb((c), (color)->r, (color)->g, (color)->b) + +CONFIG_BINDING_DECLARE(FcitxSkin); +#endif + + + +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/ui/classic/tray.c fcitx-4.1.1/src/ui/classic/tray.c --- fcitx-4.0.1/src/ui/classic/tray.c 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/ui/classic/tray.c 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,221 @@ +/*************************************************************************** + * Copyright (C) 2002~2010 by Yuking * + * yuking_net@sohu.com * + * Copyright (C) 2010~2010 by CSSlayer * + * wengxt@gmail.com * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +#include "fcitx/fcitx.h" + +#include +#include +#include +#include +#include +#include +#include + +#include "fcitx/fcitx.h" +#include "tray.h" +#include "TrayWindow.h" +#include "fcitx-utils/log.h" +#include +#include "classicui.h" + +#define MAX_SUPPORTED_XEMBED_VERSION 1 + +#define XEMBED_MAPPED (1 << 0) + +/* XEMBED messages */ +#define XEMBED_EMBEDDED_NOTIFY 0 +#define XEMBED_WINDOW_ACTIVATE 1 +#define XEMBED_WINDOW_DEACTIVATE 2 +#define XEMBED_REQUEST_FOCUS 3 +#define XEMBED_FOCUS_IN 4 +#define XEMBED_FOCUS_OUT 5 +#define XEMBED_FOCUS_NEXT 6 +#define XEMBED_FOCUS_PREV 7 +/* 8-9 were used for XEMBED_GRAB_KEY/XEMBED_UNGRAB_KEY */ +#define XEMBED_MODALITY_ON 10 +#define XEMBED_MODALITY_OFF 11 +#define XEMBED_REGISTER_ACCELERATOR 12 +#define XEMBED_UNREGISTER_ACCELERATOR 13 +#define XEMBED_ACTIVATE_ACCELERATOR 14 + +static int iTrappedErrorCode = 0; +static int (*hOldErrorHandler) (Display *d, XErrorEvent *e); + +/* static void tray_map_window (Display* dpy, Window win); */ + +static int +ErrorHandler(Display *display, + XErrorEvent *error) +{ + iTrappedErrorCode = error->error_code; + return 0; +} + +static void +TrapErrors(void) +{ + iTrappedErrorCode = 0; + hOldErrorHandler = XSetErrorHandler(ErrorHandler); +} + +static int +UntrapErrors(void) +{ + XSetErrorHandler(hOldErrorHandler); + return iTrappedErrorCode; +} + +int +InitTray(Display* dpy, TrayWindow* tray) +{ + char *atom_names[] = { + NULL, + "MANAGER", + "_NET_SYSTEM_TRAY_OPCODE", + "_NET_SYSTEM_TRAY_ORIENTATION", + "_NET_SYSTEM_TRAY_VISUAL" + }; + + asprintf(&atom_names[0], "_NET_SYSTEM_TRAY_S%d", tray->owner->iScreen); + + XInternAtoms (dpy, atom_names, 5, False, tray->atoms); + tray->size = 22; + + free(atom_names[0]); + + XWindowAttributes attr; + XGetWindowAttributes(dpy, DefaultRootWindow(dpy), &attr); + if ((attr.your_event_mask & StructureNotifyMask) != StructureNotifyMask) { + XSelectInput(dpy, DefaultRootWindow(dpy), attr.your_event_mask | StructureNotifyMask); // for MANAGER selection + } + return True; +} + +int +TrayFindDock(Display *dpy, TrayWindow* tray) +{ + if (tray->window == None) + { + tray->bTrayMapped = False; + return 0; + } + + XGrabServer (dpy); + + tray->dockWindow = XGetSelectionOwner(dpy, tray->atoms[ATOM_SELECTION]); + + if (tray->dockWindow != None) + XSelectInput(dpy, tray->dockWindow, + StructureNotifyMask|PropertyChangeMask); + + XUngrabServer (dpy); + XFlush (dpy); + + if (tray->dockWindow != None) { + TraySendOpcode(dpy, tray->dockWindow, tray, SYSTEM_TRAY_REQUEST_DOCK, tray->window, 0, 0); + tray->bTrayMapped = True; + return 1; + } + else + { + tray->bTrayMapped = False; + ReleaseTrayWindow(tray); + } + + return 0; +} + +void TraySendOpcode(Display* dpy, Window dock, TrayWindow* tray, + long message, long data1, long data2, long data3) +{ + XEvent ev; + + memset(&ev, 0, sizeof(ev)); + ev.xclient.type = ClientMessage; + ev.xclient.window = dock; + ev.xclient.message_type = tray->atoms[ATOM_SYSTEM_TRAY_OPCODE]; + ev.xclient.format = 32; + ev.xclient.data.l[0] = CurrentTime; + ev.xclient.data.l[1] = message; + ev.xclient.data.l[2] = data1; + ev.xclient.data.l[3] = data2; + ev.xclient.data.l[4] = data3; + + TrapErrors(); + XSendEvent(dpy, dock, False, NoEventMask, &ev); + XSync(dpy, False); + if (UntrapErrors()) { + FcitxLog(WARNING, _("X error %i on opcode send"), + iTrappedErrorCode ); + } +} + +XVisualInfo* TrayGetVisual(Display* dpy, TrayWindow* tray) +{ + if (tray->visual.visual) + { + return &tray->visual; + } + + tray->dockWindow = XGetSelectionOwner(dpy, tray->atoms[ATOM_SELECTION]); + + if (tray->dockWindow != None) { + Atom actual_type; + int actual_format; + unsigned long nitems, bytes_remaining; + unsigned char *data = 0; + int result = XGetWindowProperty(dpy, tray->dockWindow, tray->atoms[ATOM_VISUAL], 0, 1, + False, XA_VISUALID, &actual_type, + &actual_format, &nitems, &bytes_remaining, &data); + VisualID vid = 0; + if (result == Success && data && actual_type == XA_VISUALID && actual_format == 32 && + nitems == 1 && bytes_remaining == 0) + vid = *(VisualID*)data; + if (data) + XFree(data); + if (vid == 0) + return 0; + + uint mask = VisualIDMask; + XVisualInfo *vi, rvi; + int count; + rvi.visualid = vid; + vi = XGetVisualInfo(dpy, mask, &rvi, &count); + if (vi) { + tray->visual = vi[0]; + XFree((char*)vi); + } + if (tray->visual.depth != 32) + memset(&tray->visual, 0, sizeof(XVisualInfo)); + } + + return tray->visual.visual ? &tray->visual : 0; + +} + +Window TrayGetDock(Display* dpy, TrayWindow* tray) +{ + Window dock = XGetSelectionOwner(dpy, tray->atoms[ATOM_SELECTION]); + return dock; +} + +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/ui/classic/tray.h fcitx-4.1.1/src/ui/classic/tray.h --- fcitx-4.0.1/src/ui/classic/tray.h 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/ui/classic/tray.h 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,53 @@ +/*************************************************************************** + * Copyright (C) 2002~2010 by Yuking * + * yuking_net@sohu.com * + * Copyright (C) 2010~2010 by CSSlayer * + * wengxt@gmail.com * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +#include "fcitx/fcitx.h" + +#ifndef _TRAY_H_ +#define _TRAY_H_ + +#include "TrayWindow.h" + +int InitTray(Display* dpy, TrayWindow* win); +void TrayHandleClientMessage(Display *dpy, Window win, XEvent *an_event); +int TrayFindDock(Display *dpy, TrayWindow* tray); +XVisualInfo* TrayGetVisual(Display* dpy, TrayWindow* tray); +Window TrayGetDock(Display* dpy, TrayWindow* tray); +void TraySendOpcode( Display* dpy, Window dock, TrayWindow* tray, long message, + long data1, long data2, long data3 ); + +#define SYSTEM_TRAY_REQUEST_DOCK 0 +#define SYSTEM_TRAY_BEGIN_MESSAGE 1 +#define SYSTEM_TRAY_CANCEL_MESSAGE 2 + +#define TRAY_ICON_WIDTH 22 +#define TRAY_ICON_HEIGHT 22 + +#define ATOM_SELECTION 0 +#define ATOM_MANAGER 1 +#define ATOM_SYSTEM_TRAY_OPCODE 2 +#define ATOM_ORIENTATION 3 +#define ATOM_VISUAL 4 + +#endif + +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/ui/classic/TrayWindow.c fcitx-4.1.1/src/ui/classic/TrayWindow.c --- fcitx-4.0.1/src/ui/classic/TrayWindow.c 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/ui/classic/TrayWindow.c 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,292 @@ +/*************************************************************************** + * Copyright (C) 2002~2010 by Yuking * + * yuking_net@sohu.com * + * Copyright (C) 2010~2010 by CSSlayer * + * wengxt@gmail.com * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +#include "fcitx/fcitx.h" + +#include +#include +#include +#include +#include +#include + +#include "TrayWindow.h" +#include "tray.h" +#include "skin.h" +#include "classicui.h" +#include "module/x11/x11stuff.h" +#include "fcitx-utils/log.h" +#include "fcitx/frontend.h" +#include "fcitx/module.h" +#include "MenuWindow.h" +#include "fcitx/instance.h" +#include + +static boolean TrayEventHandler(void *arg, XEvent* event); + +void InitTrayWindow(TrayWindow *trayWindow) +{ + FcitxClassicUI *classicui = trayWindow->owner; + Display *dpy = classicui->dpy; + int iScreen = classicui->iScreen; + char strWindowName[]="Fcitx Tray Window"; + if ( !classicui->bUseTrayIcon ) + return; + + InitTray(dpy, trayWindow); + + XVisualInfo* vi = TrayGetVisual(dpy, trayWindow); + if (vi && vi->visual) { + Window p = DefaultRootWindow (dpy); + Colormap colormap = XCreateColormap(dpy, p, vi->visual, AllocNone); + XSetWindowAttributes wsa; + wsa.background_pixmap = 0; + wsa.colormap = colormap; + wsa.background_pixel = 0; + wsa.border_pixel = 0; + trayWindow->window = XCreateWindow(dpy, p, -1, -1, 1, 1, + 0, vi->depth, InputOutput, vi->visual, + CWBackPixmap|CWBackPixel|CWBorderPixel|CWColormap, &wsa); + } + else { + trayWindow->window = XCreateSimpleWindow (dpy, DefaultRootWindow(dpy), + -1, -1, 1, 1, 0, + BlackPixel (dpy, DefaultScreen (dpy)), + WhitePixel (dpy, DefaultScreen (dpy))); + XSetWindowBackgroundPixmap(dpy, trayWindow->window, ParentRelative); + } + if (trayWindow->window == (Window) NULL) + return; + + XSizeHints size_hints; + size_hints.flags = PWinGravity | PBaseSize; + size_hints.base_width = trayWindow->size; + size_hints.base_height = trayWindow->size; + XSetWMNormalHints(dpy, trayWindow->window, &size_hints); + + if (vi && vi->visual) + trayWindow->cs = cairo_xlib_surface_create(dpy, trayWindow->window, trayWindow->visual.visual, 200, 200); + else + { + Visual *target_visual = DefaultVisual (dpy, iScreen); + trayWindow->cs = cairo_xlib_surface_create(dpy, trayWindow->window, target_visual, 200, 200); + } + + XSelectInput (dpy, trayWindow->window, ExposureMask | KeyPressMask | + ButtonPressMask | ButtonReleaseMask | StructureNotifyMask + | EnterWindowMask | PointerMotionMask | LeaveWindowMask | VisibilityChangeMask); + + ClassicUISetWindowProperty(classicui, trayWindow->window, FCITX_WINDOW_DOCK, strWindowName); + + TrayFindDock(dpy, trayWindow); +} + +TrayWindow* CreateTrayWindow(FcitxClassicUI *classicui) { + TrayWindow *trayWindow = fcitx_malloc0(sizeof(TrayWindow)); + trayWindow->owner = classicui; + FcitxModuleFunctionArg arg; + arg.args[0] = TrayEventHandler; + arg.args[1] = trayWindow; + InvokeFunction(classicui->owner, FCITX_X11, ADDXEVENTHANDLER, arg); + InitTrayWindow(trayWindow); + return trayWindow; +} + +void ReleaseTrayWindow(TrayWindow *trayWindow) +{ + FcitxClassicUI *classicui = trayWindow->owner; + Display *dpy = classicui->dpy; + if (trayWindow->window == None) + return; + cairo_surface_destroy(trayWindow->cs); + XDestroyWindow(dpy, trayWindow->window); + trayWindow->window = None; +} + +void DrawTrayWindow(TrayWindow* trayWindow) { + FcitxClassicUI *classicui = trayWindow->owner; + FcitxSkin *sc = &classicui->skin; + Display *dpy = classicui->dpy; + SkinImage *image; + int f_state; + if ( !classicui->bUseTrayIcon ) + return; + + if (GetCurrentState(classicui->owner) == IS_ACTIVE) + f_state = ACTIVE_ICON; + else + f_state = INACTIVE_ICON; + cairo_t *c; + cairo_surface_t *png_surface ; + if (!trayWindow->bTrayMapped) + return; + + /* 画png */ + if (f_state) + { + image = LoadImage(sc, sc->skinTrayIcon.active, true); + } + else + { + image = LoadImage(sc, sc->skinTrayIcon.inactive, true); + } + if (image == NULL) + return; + png_surface = image->image; + + c=cairo_create(trayWindow->cs); + + XVisualInfo* vi = trayWindow->visual.visual ? &trayWindow->visual : NULL; + if (vi && vi->visual) + { + /* 清空窗口 */ + cairo_set_source_rgba(c, 0, 0, 0, 0); + cairo_set_operator(c, CAIRO_OPERATOR_SOURCE); + cairo_paint(c); + } + else + { + XClearArea (dpy, trayWindow->window, 0, 0, trayWindow->size, trayWindow->size, False); + } + + if ( png_surface) + { + cairo_scale(c, ((double) trayWindow->size) / cairo_image_surface_get_height(png_surface), ((double) trayWindow->size) / cairo_image_surface_get_width(png_surface)); + cairo_set_source_surface(c, png_surface, 0 , 0 ); + cairo_set_operator(c, CAIRO_OPERATOR_OVER); + cairo_paint_with_alpha(c,1); + } + + cairo_destroy(c); + +} + +boolean TrayEventHandler(void *arg, XEvent* event) +{ + TrayWindow *trayWindow = arg; + FcitxClassicUI *classicui = trayWindow->owner; + FcitxInstance* instance = classicui->owner; + Display *dpy = classicui->dpy; + if (!classicui->bUseTrayIcon) + return false; + switch (event->type) { + case ClientMessage: + if (event->xclient.message_type == trayWindow->atoms[ATOM_MANAGER] + && event->xclient.data.l[1] == trayWindow->atoms[ATOM_SELECTION]) + { + if (trayWindow->window == None) + InitTrayWindow(trayWindow); + TrayFindDock(dpy, trayWindow); + return true; + } + break; + + case Expose: + if (event->xexpose.window == trayWindow->window) { + DrawTrayWindow (trayWindow); + } + break; + case ConfigureNotify: + if (trayWindow->window == event->xconfigure.window) + { + int size = event->xconfigure.height; + if (size != trayWindow->size) + { + trayWindow->size = size; + XSizeHints size_hints; + size_hints.flags = PWinGravity | PBaseSize; + size_hints.base_width = trayWindow->size; + size_hints.base_height = trayWindow->size; + XSetWMNormalHints(dpy, trayWindow->window, &size_hints); + } + + DrawTrayWindow (trayWindow); + return true; + } + break; + case ButtonPress: + { + if (event->xbutton.window == trayWindow->window) + { + switch (event->xbutton.button) + { + case Button1: + if (GetCurrentState(instance) == IS_CLOSED) { + EnableIM(instance, GetCurrentIC(instance), false); + } + else { + CloseIM(instance, GetCurrentIC(instance)); + } + break; + case Button3: + { + XlibMenu *mainMenuWindow = classicui->mainMenuWindow; + int dwidth, dheight; + GetScreenSize(classicui, &dwidth, &dheight); + GetMenuSize(mainMenuWindow); + if (event->xbutton.x_root - event->xbutton.x + + mainMenuWindow->width >= dwidth) + mainMenuWindow->iPosX = dwidth - mainMenuWindow->width - event->xbutton.x; + else + mainMenuWindow->iPosX = + event->xbutton.x_root - event->xbutton.x; + + // 面板的高度是可以变动的,需要取得准确的面板高度,才能准确确定右键菜单位置。 + if (event->xbutton.y_root + mainMenuWindow->height - + event->xbutton.y >= dheight) + mainMenuWindow->iPosY = + dheight - mainMenuWindow->height - + event->xbutton.y - 15; + else + mainMenuWindow->iPosY = event->xbutton.y_root - event->xbutton.y + 25; // +sc.skin_tray_icon.active_img.height; + + DrawXlibMenu(mainMenuWindow); + DisplayXlibMenu(mainMenuWindow); + } + break; + } + return true; + } + } + break; + case DestroyNotify: + if (event->xdestroywindow.window == trayWindow->dockWindow) + { + trayWindow->dockWindow = None; + trayWindow->bTrayMapped = False; + ReleaseTrayWindow(trayWindow); + return true; + } + break; + + case ReparentNotify: + if (event->xreparent.parent == DefaultRootWindow(dpy) && event->xreparent.window == trayWindow->window) + { + trayWindow->bTrayMapped = False; + ReleaseTrayWindow(trayWindow); + return true; + } + break; + } + return false; +} +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/ui/classic/TrayWindow.h fcitx-4.1.1/src/ui/classic/TrayWindow.h --- fcitx-4.0.1/src/ui/classic/TrayWindow.h 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/ui/classic/TrayWindow.h 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,63 @@ +/*************************************************************************** + * Copyright (C) 2002~2010 by Yuking * + * yuking_net@sohu.com * + * Copyright (C) 2010~2010 by CSSlayer * + * wengxt@gmail.com * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +#include "fcitx/fcitx.h" + +#ifndef _TRAY_WINDOW_H +#define _TRAY_WINDOW_H + +#include +#include +#include +#include +#include +#include "fcitx-config/fcitx-config.h" +#include + +#define INACTIVE_ICON 0 +#define ACTIVE_ICON 1 +struct _FcitxClassicUI; + +typedef struct _TrayWindow { + Window window; + + XImage* icon[2]; + Pixmap picon[2]; + GC gc; + boolean bTrayMapped; + XVisualInfo visual; + Atom atoms[6]; + + cairo_surface_t *cs; + int size; + struct _FcitxClassicUI* owner; + Window dockWindow; +} TrayWindow; + +TrayWindow* CreateTrayWindow(struct _FcitxClassicUI *classicui); +void DrawTrayWindow(TrayWindow* trayWindow); +void DeInitTrayWindow(TrayWindow *f_tray); +void RedrawTrayWindow(TrayWindow* trayWindow); +void ReleaseTrayWindow(TrayWindow* trayWindow); +#endif + +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/ui/CMakeLists.txt fcitx-4.1.1/src/ui/CMakeLists.txt --- fcitx-4.0.1/src/ui/CMakeLists.txt 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/ui/CMakeLists.txt 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,7 @@ +if (_ENABLE_CAIRO) + add_subdirectory(classic) +endif (_ENABLE_CAIRO) + +if (_ENABLE_DBUS) + add_subdirectory(kimpanel) +endif (_ENABLE_DBUS) \ No newline at end of file diff -Nru fcitx-4.0.1/src/ui/font.c fcitx-4.1.1/src/ui/font.c --- fcitx-4.0.1/src/ui/font.c 2010-12-17 04:20:24.000000000 +0000 +++ fcitx-4.1.1/src/ui/font.c 1970-01-01 00:00:00.000000000 +0000 @@ -1,110 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2010~2010 by CSSlayer * - * wengxt@gmail.com * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * - ***************************************************************************/ - -#ifndef _ENABLE_PANGO - -#include -#include -#include -#include - -#include "core/fcitx.h" - -#include "ui/skin.h" -#include "tools/configfile.h" -#include "fcitx-config/cutils.h" - -void InitFont() -{ - if (!FcInit()) - { - FcitxLog(FATAL, _("Error: Load fontconfig failed")); - exit(1); - } -} - -void CreateFont() -{ - FcFontSet *fs = NULL; - FcPattern *pat = NULL; - FcObjectSet *os = NULL; - - char locale[3]; - - if (fc.strUserLocale[0]) - strncpy(locale, fc.strUserLocale, 2); - else - strcpy(locale, "zh"); - locale[2]='\0'; -reloadfont: - if (strcmp(gs.font, "") == 0) - { - FcChar8 strpat[9]; - sprintf((char*)strpat, ":lang=%s", locale); - pat = FcNameParse(strpat); - } - else - { - pat = FcNameParse ((FcChar8*)gs.font); - } - - os = FcObjectSetBuild(FC_FAMILY, FC_STYLE, (char*)0); - fs = FcFontList(0, pat, os); - if (os) - FcObjectSetDestroy(os); - os = NULL; - - FcPatternDestroy(pat); - pat = NULL; - - if (!fs || fs->nfont <= 0) - goto nofont; - - FcChar8* family; - if (FcPatternGetString (fs->fonts[0], FC_FAMILY, 0, &family) != FcResultMatch) - goto nofont; - if (gs.font) - free(gs.font); - - gs.font = strdup((const char*) family); - - FcFontSetDestroy(fs); - - FcitxLog(INFO, _("your current font is: %s"), gs.font); - return; - -nofont: - if (strcmp(gs.font, "") != 0) - { - strcpy(gs.font, ""); - if (pat) - FcPatternDestroy(pat); - if (os) - FcObjectSetDestroy(os); - if (fs) - FcFontSetDestroy(fs); - - goto reloadfont; - } - - FcitxLog(FATAL, _("no valid font.")); - exit(1); -} -#endif diff -Nru fcitx-4.0.1/src/ui/font.h fcitx-4.1.1/src/ui/font.h --- fcitx-4.0.1/src/ui/font.h 2010-11-28 11:54:51.000000000 +0000 +++ fcitx-4.1.1/src/ui/font.h 1970-01-01 00:00:00.000000000 +0000 @@ -1,33 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2010~2010 by CSSlayer * - * wengxt@gmail.com * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * - ***************************************************************************/ - -#ifndef _ENABLE_PANGO - -#ifndef FONT_H -#define FONT_H - -#include "core/fcitx.h" - -void InitFont(); -void CreateFont(); - -#endif - -#endif diff -Nru fcitx-4.0.1/src/ui/InputWindow.c fcitx-4.1.1/src/ui/InputWindow.c --- fcitx-4.0.1/src/ui/InputWindow.c 2010-12-17 04:19:25.000000000 +0000 +++ fcitx-4.1.1/src/ui/InputWindow.c 1970-01-01 00:00:00.000000000 +0000 @@ -1,409 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2002~2005 by Yuking * - * yuking_net@sohu.com * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * - ***************************************************************************/ - -#include -#include -#include -#include - -#include "core/fcitx.h" - -#include "ui/InputWindow.h" -#include "ui/ui.h" -#include "core/ime.h" - -#include "interface/DBus.h" -#include "skin.h" -#include "tools/profile.h" -#include "tools/configfile.h" -#include "fcitx-config/cutils.h" - -InputWindow inputWindow; -Messages messageUp; -Messages messageDown; -int iCursorPos = 0; - -extern Display *dpy; - -extern int iScreen; -//计算速度 -extern Bool bStartRecordType; -extern time_t timeStart; -extern uint iHZInputed; - -extern int iClientCursorX; -extern int iClientCursorY; - -#ifdef _DEBUG -extern char strXModifiers[]; -#endif - -#ifdef _ENABLE_RECORDING -extern FILE *fpRecord; -#endif -static void InitInputWindow(); - -void InitInputWindow() -{ - memset(&inputWindow, 0, sizeof(InputWindow)); - inputWindow.window = None; - inputWindow.iInputWindowHeight = INPUTWND_HEIGHT; - inputWindow.iInputWindowWidth = INPUTWND_WIDTH; - inputWindow.bShowPrev = False; - inputWindow.bShowNext = False; - inputWindow.bShowCursor = False; - inputWindow.iOffsetX = 0; - inputWindow.iOffsetY = 8; -} - -Bool CreateInputWindow (void) -{ - XSetWindowAttributes attrib; - unsigned long attribmask; - XTextProperty tp; - char strWindowName[]="Fcitx Input Window"; - int depth; - Colormap cmap; - Visual * vs; - int scr; - - InitInputWindow(); - - LoadInputBarImage(); - CalculateInputWindowHeight (); - scr=DefaultScreen(dpy); - vs=FindARGBVisual (dpy, scr); - InitWindowAttribute(&vs, &cmap, &attrib, &attribmask, &depth); - - inputWindow.window=XCreateWindow (dpy, - RootWindow(dpy, scr), - fcitxProfile.iInputWindowOffsetX, - fcitxProfile.iInputWindowOffsetY, - INPUT_BAR_MAX_LEN, - inputWindow.iInputWindowHeight, - 0, - depth,InputOutput, - vs,attribmask, - &attrib); - - if (mainWindow.window == None) - return False; - - inputWindow.pm_input_bar=XCreatePixmap( - dpy, - inputWindow.window, - INPUT_BAR_MAX_LEN, - inputWindow.iInputWindowHeight, - depth); - inputWindow.cs_input_bar=cairo_xlib_surface_create( - dpy, - inputWindow.pm_input_bar, - vs, - INPUT_BAR_MAX_LEN, - inputWindow.iInputWindowHeight); - - inputWindow.cs_input_back = cairo_surface_create_similar(inputWindow.cs_input_bar, - CAIRO_CONTENT_COLOR_ALPHA, - INPUT_BAR_MAX_LEN, - inputWindow.iInputWindowHeight); - - LoadInputMessage(); - XSelectInput (dpy, inputWindow.window, ButtonPressMask | ButtonReleaseMask | PointerMotionMask | ExposureMask); - - /* Set the name of the window */ - tp.value = (void *)strWindowName; - tp.encoding = XA_STRING; - tp.format = 16; - tp.nitems = strlen(strWindowName); - XSetWMName (dpy, inputWindow.window, &tp); - - return True; -} - -/* - * 根据字体的大小来调整窗口的高度 - */ -void CalculateInputWindowHeight (void) -{ - inputWindow.iInputWindowHeight=sc.skinInputBar.backImg.height; -} - -void DisplayInputWindow (void) -{ -#ifdef _DEBUG - FcitxLog(DEBUG, _("DISPLAY InputWindow")); -#endif - CalInputWindow(); - MoveInputWindow(); - if (MESSAGE_IS_NOT_EMPTY) - { - if (!fc.bUseDBus) - XMapRaised (dpy, inputWindow.window); -#ifdef _ENABLE_DBUS - else - updateMessages(); -#endif - } -} - -void ResetInputWindow (void) -{ - SetMessageCount(&messageUp, 0); - SetMessageCount(&messageDown, 0); -} - -void CalInputWindow (void) -{ - -#ifdef _DEBUG - FcitxLog(DEBUG, _("CAL InputWindow")); -#endif - - if (MESSAGE_IS_EMPTY) { - inputWindow.bShowCursor = False; - if (fc.bShowVersion) { - AddMessageAtLast(&messageUp, MSG_TIPS, "FCITX " VERSION); - } - - //显示打字速度 - if (bStartRecordType && fc.bShowUserSpeed) { - double timePassed; - - timePassed = difftime (time (NULL), timeStart); - if (((int) timePassed) == 0) - timePassed = 1.0; - - SetMessageCount(&messageDown, 0); - AddMessageAtLast(&messageDown, MSG_OTHER, "打字速度:"); - AddMessageAtLast(&messageDown, MSG_CODE, "%d", (int) (iHZInputed * 60 / timePassed)); - AddMessageAtLast(&messageDown, MSG_OTHER, "/分 用时:"); - AddMessageAtLast(&messageDown, MSG_CODE, "%d", (int) timePassed); - AddMessageAtLast(&messageDown, MSG_OTHER, "秒 字数:"); - AddMessageAtLast(&messageDown, MSG_CODE, "%u", iHZInputed); - } - } - -#ifdef _ENABLE_RECORDING - if ( fcitxProfile.bRecording && fpRecord ) { - if ( messageUp.msgCount > 0 ) { - if ( MESSAGE_TYPE_IS(LAST_MESSAGE(messageUp), MSG_RECORDING) ) - DecMessageCount(&messageUp); - } - AddMessageAtLast(&messageUp, MSG_RECORDING, "[记录模式]"); - } -#endif -} - -void DrawInputWindow(void) -{ - int lastW = inputWindow.iInputWindowWidth, lastH = inputWindow.iInputWindowHeight; - DrawInputBar(&messageUp, &messageDown ,&inputWindow.iInputWindowWidth); - - /* Resize Window will produce Expose Event, so there is no need to draw right now */ - if (lastW != inputWindow.iInputWindowWidth || lastH != inputWindow.iInputWindowHeight) - { - XResizeWindow( - dpy, - inputWindow.window, - inputWindow.iInputWindowWidth, - inputWindow.iInputWindowHeight); - MoveInputWindow(); - } - GC gc = XCreateGC( dpy, inputWindow.window, 0, NULL ); - XCopyArea (dpy, - inputWindow.pm_input_bar, - inputWindow.window, - gc, - 0, - 0, - inputWindow.iInputWindowWidth, - inputWindow.iInputWindowHeight, 0, 0); - XFreeGC(dpy, gc); -} - -void MoveInputWindow() -{ - int dwidth, dheight; - GetScreenSize(&dwidth, &dheight); - if (fcitxProfile.bTrackCursor) - { - Window window = None, dst; - int offset_x, offset_y; - if (CurrentIC) - { - if (CurrentIC->focus_win) - window = CurrentIC->focus_win; - else if(CurrentIC->client_win) - window = CurrentIC->client_win; - else - return; - - offset_x = CurrentIC->offset_x; - offset_y = CurrentIC->offset_y; - - if(offset_x < 0 || offset_y < 0) - { - - XWindowAttributes attr; - XGetWindowAttributes(dpy, window, &attr); - - offset_x = 0; - offset_y = attr.height; - } - - XTranslateCoordinates(dpy, window, RootWindow(dpy, iScreen), - offset_x, offset_y, - &iClientCursorX, &iClientCursorY, &dst); - } - - int iTempInputWindowX, iTempInputWindowY; - - if (iClientCursorX < 0) - iTempInputWindowX = 0; - else - iTempInputWindowX = iClientCursorX + inputWindow.iOffsetX; - - if (iClientCursorY < 0) - iTempInputWindowY = 0; - else - iTempInputWindowY = iClientCursorY + inputWindow.iOffsetY; - - if ((iTempInputWindowX + inputWindow.iInputWindowWidth) > dwidth) - iTempInputWindowX = dwidth - inputWindow.iInputWindowWidth; - - if ((iTempInputWindowY + inputWindow.iInputWindowHeight) > dheight) { - if ( iTempInputWindowY > dheight ) - iTempInputWindowY = dheight - 2 * inputWindow.iInputWindowHeight; - else - iTempInputWindowY = iTempInputWindowY - 2 * inputWindow.iInputWindowHeight; - } - - if (!fc.bUseDBus) - { - XMoveWindow (dpy, inputWindow.window, iTempInputWindowX, iTempInputWindowY); - } -#ifdef _ENABLE_DBUS - else - { - if (iClientCursorX < 0) - iTempInputWindowX = 0; - else - iTempInputWindowX = iClientCursorX + inputWindow.iOffsetX; - - if (iClientCursorY < 0) - iTempInputWindowY = 0; - else - iTempInputWindowY = iClientCursorY + inputWindow.iOffsetY; - - KIMUpdateSpotLocation(iTempInputWindowX, iTempInputWindowY); - } -#endif - } - else - { - if (fc.bCenterInputWindow) { - fcitxProfile.iInputWindowOffsetX = (dwidth - inputWindow.iInputWindowWidth) / 2; - if (fcitxProfile.iInputWindowOffsetX < 0) - fcitxProfile.iInputWindowOffsetX = 0; - } - - if (!fc.bUseDBus) - { - XMoveWindow (dpy, inputWindow.window, fcitxProfile.iInputWindowOffsetX, fcitxProfile.iInputWindowOffsetY); - } -#ifdef _ENABLE_DBUS - else - KIMUpdateSpotLocation(fcitxProfile.iInputWindowOffsetX, fcitxProfile.iInputWindowOffsetY); -#endif - } - -} - -void CloseInputWindow() -{ - XUnmapWindow (dpy, inputWindow.window); -#ifdef _ENABLE_DBUS - if (fc.bUseDBus) - { - KIMShowAux(False); - KIMShowPreedit(False); - KIMShowLookupTable(False); - } -#endif -} - -void AddMessageAtLast(Messages* message, MSG_TYPE type, char *fmt, ...) -{ - - if (message->msgCount < MAX_MESSAGE_COUNT) - { - va_list ap; - va_start(ap, fmt); - SetMessageV(message, message->msgCount, type, fmt, ap); - va_end(ap); - message->msgCount ++; - message->changed = True; - } -} - -void SetMessage(Messages* message, int position, MSG_TYPE type, char* fmt, ...) -{ - va_list ap; - va_start(ap, fmt); - SetMessageV(message, position, type, fmt, ap); - va_end(ap); -} - -void SetMessageV(Messages* message, int position, MSG_TYPE type,char* fmt, va_list ap) -{ - if (position < MAX_MESSAGE_COUNT) - { - vsnprintf(message->msg[position].strMsg, MESSAGE_MAX_LENGTH, fmt, ap); - message->msg[position].type = type; - message->changed = True; - } -} - -void MessageConcatLast(Messages* message, char* text) -{ - strncat(message->msg[message->msgCount - 1].strMsg, text, MESSAGE_MAX_LENGTH); - message->changed = True; -} - -void MessageConcat(Messages* message, int position, char* text) -{ - strncat(message->msg[position].strMsg, text, MESSAGE_MAX_LENGTH); - message->changed = True; -} - -void DestroyInputWindow() -{ - int i = 0; - cairo_destroy(inputWindow.c_back); - - for ( i = 0 ; i < 7; i ++) - cairo_destroy(inputWindow.c_font[i]); - cairo_destroy(inputWindow.c_cursor); - - cairo_surface_destroy(inputWindow.cs_input_bar); - cairo_surface_destroy(inputWindow.cs_input_back); - XFreePixmap(dpy, inputWindow.pm_input_bar); - XDestroyWindow(dpy, inputWindow.window); -} diff -Nru fcitx-4.0.1/src/ui/InputWindow.h fcitx-4.1.1/src/ui/InputWindow.h --- fcitx-4.0.1/src/ui/InputWindow.h 2010-11-28 11:54:51.000000000 +0000 +++ fcitx-4.1.1/src/ui/InputWindow.h 1970-01-01 00:00:00.000000000 +0000 @@ -1,141 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2002~2005 by Yuking * - * yuking_net@sohu.com * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * - ***************************************************************************/ -/** - * @file InputWindow.h - * @author Yuking yuking_net@sohu.com - * @date 2008-1-16 - * - * @brief 输入条窗口 - * - * - */ - -#ifndef _INPUT_WINDOW_H -#define _INPUT_WINDOW_H - -#include -#include -#include "IMdkit.h" -#include "tools/utf8.h" -#include - -#define INPUTWND_WIDTH 50 -#define INPUTWND_HEIGHT 40 - -/* #define INPUTWND_START_POS_UP 8 */ -#define INPUTWND_START_POS_DOWN 8 -#define MESSAGE_MAX_CHARNUM (150) //输入条上显示的最长字数 - -#define MESSAGE_MAX_LENGTH (MESSAGE_MAX_CHARNUM*UTF8_MAX_LENGTH) //输入条上显示的最长长度,以字符计 - -/* 将输入条上显示的内容分为以下几类 */ -#define MESSAGE_TYPE_COUNT 7 - -typedef enum { - MSG_TIPS = 0, //提示文本 - MSG_INPUT = 1, //用户的输入 - MSG_INDEX = 2, //候选字前面的序号 - MSG_FIRSTCAND = 3, //第一个候选字 - MSG_USERPHR = 4, //用户词组 - MSG_CODE = 5, //显示的编码 - MSG_OTHER = 6, //其它文本 -#ifdef _ENABLE_RECORDING - MSG_RECORDING = 7 //记录提示 -#endif -} MSG_TYPE; - -typedef struct { - char strMsg[MESSAGE_MAX_LENGTH + 1]; - MSG_TYPE type; -} MESSAGE; - -#define MAX_MESSAGE_COUNT 33 -typedef struct Messages { - MESSAGE msg[33]; - uint msgCount; - Bool changed; -} Messages; - -extern Messages messageUp; -extern Messages messageDown; - -typedef struct InputWindow { - Window window; - - uint iInputWindowHeight; - uint iInputWindowWidth; - Bool bShowPrev; - Bool bShowNext; - Bool bShowCursor; - - //这两个变量是GTK+ OverTheSpot光标跟随的临时解决方案 - ///* Issue 11: piaoairy: 为适应generic_config_integer(), 改INT8 为int */ - int iOffsetX; - int iOffsetY; - - Pixmap pm_input_bar; - - cairo_surface_t *cs_input_bar; - cairo_surface_t *cs_input_back; - cairo_t *c_back, *c_cursor; - cairo_t *c_font[8]; -} InputWindow; - -extern InputWindow inputWindow; -extern int iCursorPos; - -#define MESSAGE_IS_NOT_EMPTY (messageUp.msgCount || messageDown.msgCount) -#define MESSAGE_IS_EMPTY (!MESSAGE_IS_NOT_EMPTY) -#define MESSAGE_TYPE_IS(msg, t) ((msg).type == (t)) -#define LAST_MESSAGE(m) ((m).msg[(m).msgCount - 1]) -#define DecMessageCount(m) \ - do { \ - if ((m)->msgCount > 0) \ - ((m)->msgCount--); \ - (m)->changed = True; \ - } while(0) -#define SetMessageCount(m,s) \ - do { \ - if ((s) <= MAX_MESSAGE_COUNT && s >= 0) \ - ((m)->msgCount = (s)); \ - (m)->changed = True; \ - } while(0) - -Bool CreateInputWindow (void); -void DisplayInputWindow (void); -void DrawInputWindow (void); -void CalInputWindow (void); -void CalculateInputWindowHeight (void); -void DrawCursor (int iPos); -void DisplayMessageUp (void); -void DisplayMessageDown (void); -void ResetInputWindow (void); -void MoveInputWindow(); -void CloseInputWindow(void); - -void AddMessageAtLast(Messages* message, MSG_TYPE type, char *fmt, ...); -void SetMessage(Messages* message, int position, MSG_TYPE type, char* fmt, ...); -#define SetMessageText(m, p, fmt) SetMessage((m), (p), (m)->msg[(p)].type, (fmt)) -void MessageConcat(Messages* message, int position, char* text); -void MessageConcatLast(Messages* message, char* text); -void SetMessageV(Messages* message, int position, MSG_TYPE type, char* fmt, va_list ap); -void DestroyInputWindow(); - -#endif diff -Nru fcitx-4.0.1/src/ui/kimpanel/CMakeLists.txt fcitx-4.1.1/src/ui/kimpanel/CMakeLists.txt --- fcitx-4.0.1/src/ui/kimpanel/CMakeLists.txt 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/ui/kimpanel/CMakeLists.txt 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,11 @@ +include_directories(${PROJECT_SOURCE_DIR}/src) +include_directories(${DBUS_INCLUDE_DIRS}) +link_directories(${DBUS_LIBRARY_DIRS}) + +set(fcitx_kimpanel_ui_SOURCES + kimpanel.c +) + +fcitx_add_addon(fcitx-kimpanel-ui ${fcitx_kimpanel_ui_SOURCES}) +target_link_libraries( fcitx-kimpanel-ui ${DBUS_LIBRARIES}) +fcitx_add_addon_conf_file(fcitx-kimpanel-ui.conf) \ No newline at end of file diff -Nru fcitx-4.0.1/src/ui/kimpanel/fcitx-kimpanel-ui.conf.in fcitx-4.1.1/src/ui/kimpanel/fcitx-kimpanel-ui.conf.in --- fcitx-4.0.1/src/ui/kimpanel/fcitx-kimpanel-ui.conf.in 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/ui/kimpanel/fcitx-kimpanel-ui.conf.in 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,9 @@ +[Addon] +Name=fcitx-kimpanel-ui +_GeneralName=Kimpanel +_Comment=Kimpanel Support for Fcitx +Category=UI +Enabled=False +Library=fcitx-kimpanel-ui.so +Type=SharedLibrary +Dependency=fcitx-dbus \ No newline at end of file diff -Nru fcitx-4.0.1/src/ui/kimpanel/kimpanel.c fcitx-4.1.1/src/ui/kimpanel/kimpanel.c --- fcitx-4.0.1/src/ui/kimpanel/kimpanel.c 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/src/ui/kimpanel/kimpanel.c 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,1212 @@ +/*************************************************************************** + * Copyright (C) 2008~2010 by Zealot.Hoi * + * Copyright (C) 2010~2011 by CSSlayer * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "config.h" +#include "fcitx/ui.h" +#include "fcitx-utils/log.h" +#include +#include "module/dbus/dbusstuff.h" +#include "fcitx/instance.h" +#include "fcitx/module.h" +#include "fcitx/frontend.h" +#include "fcitx/hook.h" +#include "fcitx-utils/utils.h" +#include "fcitx/candidate.h" + +#define FCITX_KIMPANEL_INTERFACE "org.kde.kimpanel.inputmethod" +#define FCITX_KIMPANEL_PATH "/kimpanel" + +const char * kimpanel_introspection_xml = + "\n" + "\n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + "\n"; + +typedef struct _FcitxKimpanelUI +{ + FcitxInstance* owner; + DBusConnection* conn; + int iOffsetY; + int iOffsetX; + Messages* messageUp; + Messages* messageDown; + int iCursorPos; +} FcitxKimpanelUI; + +static void* KimpanelCreate(FcitxInstance* instance); +static void KimpanelCloseInputWindow(void* arg); +static void KimpanelShowInputWindow(void* arg); +static void KimpanelMoveInputWindow(void* arg); +static void KimpanelRegisterMenu(void *arg, FcitxUIMenu* menu); +static void KimpanelUpdateStatus(void *arg, FcitxUIStatus* status); +static void KimpanelRegisterStatus(void *arg, FcitxUIStatus* status); +static void KimpanelOnInputFocus(void *arg); +static void KimpanelOnInputUnFocus(void *arg); +static void KimpanelOnTriggerOn(void *arg); +static void KimpanelOnTriggerOff(void *arg); + +static void KimShowAux(FcitxKimpanelUI* kimpanel, boolean toShow); +static void KimShowPreedit(FcitxKimpanelUI* kimpanel, boolean toShow); +static void KimUpdateSpotLocation(FcitxKimpanelUI* kimpanel, int x, int y); +static void KimShowLookupTable(FcitxKimpanelUI* kimpanel, boolean toShow); +static void KimUpdateLookupTable(FcitxKimpanelUI* kimpanel, char *labels[], int nLabel, char *texts[], int nText, boolean has_prev, boolean has_next); +static void KimUpdatePreeditText(FcitxKimpanelUI* kimpanel, char *text); +static void KimUpdateAux(FcitxKimpanelUI* kimpanel, char *text); +static void KimUpdatePreeditCaret(FcitxKimpanelUI* kimpanel, int position); +static void KimEnable(FcitxKimpanelUI* kimpanel, boolean toEnable); +static void KimRegisterProperties(FcitxKimpanelUI* kimpanel, char *props[], int n); +static void KimUpdateProperty(FcitxKimpanelUI* kimpanel, char *prop); +static DBusHandlerResult KimpanelDBusEventHandler (DBusConnection *connection, DBusMessage *message, void *user_data); +static DBusHandlerResult KimpanelDBusFilter (DBusConnection *connection, DBusMessage *message, void *user_data); +static int CalKimCursorPos(FcitxKimpanelUI *kimpanel); +static void KimpanelInputReset(void *arg); +static char* Status2String(FcitxUIStatus* status); +static void KimpanelRegisterAllStatus(FcitxKimpanelUI* kimpanel); +static void KimpanelSetIMStatus(FcitxKimpanelUI* kimpanel); +static void KimExecMenu(FcitxKimpanelUI* kimpanel, char *props[],int n); + +FCITX_EXPORT_API +FcitxUI ui = { + KimpanelCreate, + KimpanelCloseInputWindow, + KimpanelShowInputWindow, + KimpanelMoveInputWindow, + KimpanelUpdateStatus, + KimpanelRegisterStatus, + KimpanelRegisterMenu, + KimpanelOnInputFocus, + KimpanelOnInputUnFocus, + KimpanelOnTriggerOn, + KimpanelOnTriggerOff, + NULL, + NULL, + NULL +}; + +void* KimpanelCreate(FcitxInstance* instance) +{ + FcitxKimpanelUI *kimpanel = fcitx_malloc0(sizeof(FcitxKimpanelUI)); + FcitxModuleFunctionArg arg; + + kimpanel->iCursorPos = 0; + kimpanel->owner = instance; + kimpanel->conn = InvokeFunction(instance, FCITX_DBUS, GETCONNECTION, arg); + + if (kimpanel->conn == NULL) + { + FcitxLog(ERROR, "DBus Not initialized"); + free(kimpanel); + return NULL; + } + + // add a rule to receive signals from kimpanel + DBusError err; + dbus_error_init(&err); + dbus_bus_add_match(kimpanel->conn, + "type='signal',interface='org.kde.impanel'", + &err); + dbus_connection_flush(kimpanel->conn); + if (dbus_error_is_set(&err)) { + FcitxLog(ERROR, "Match Error (%s)", err.message); + dbus_error_free(&err); + free(kimpanel); + return NULL; + } + + if (!dbus_connection_add_filter(kimpanel->conn, KimpanelDBusFilter, kimpanel, NULL)) + { + FcitxLog(ERROR, "No memory"); + dbus_error_free(&err); + free(kimpanel); + return NULL; + } + + DBusObjectPathVTable vtable = {NULL, &KimpanelDBusEventHandler, NULL, NULL, NULL, NULL }; + + dbus_connection_register_object_path(kimpanel->conn, FCITX_KIMPANEL_PATH, &vtable, kimpanel); + + kimpanel->messageUp = InitMessages(); + kimpanel->messageDown = InitMessages(); + + FcitxIMEventHook resethk; + resethk.arg = kimpanel; + resethk.func = KimpanelInputReset; + RegisterResetInputHook(instance, resethk); + + KimpanelRegisterAllStatus(kimpanel); + dbus_error_free(&err); + return kimpanel; +} + +void KimpanelRegisterAllStatus(FcitxKimpanelUI* kimpanel) +{ + FcitxInstance* instance = kimpanel->owner; + char **prop = fcitx_malloc0(sizeof(char*)*(2+utarray_len(&instance->uistats))); + asprintf(&prop[0], "/Fcitx/logo:%s:%s:%s", _("Fcitx"), "fcitx", _("Fcitx")); + asprintf(&prop[1], "/Fcitx/im:%s:%s:%s", _("Disabled"), "fcitx-eng", _("Input Method Disabled")); + + int count = 2; + + + UT_array* uistats = &instance->uistats; + FcitxUIStatus *status; + for ( status = (FcitxUIStatus *) utarray_front(uistats); + status != NULL; + status = (FcitxUIStatus *) utarray_next(uistats, status)) + { + prop[count] = Status2String(status); + count ++; + } + + KimRegisterProperties(kimpanel, prop, count); + + while (count --) + free(prop[count]); + + free(prop); +} + +void KimpanelSetIMStatus(FcitxKimpanelUI* kimpanel) +{ + FcitxInstance* instance = kimpanel->owner; + char* status = NULL; + char* icon; + char* imname; + char* description; + if (GetCurrentState(instance) != IS_ACTIVE ) + { + icon = "eng"; + imname = _("Disabled"); + description = _("Input Method Disabled"); + } + else + { + FcitxIM* im = GetCurrentIM(instance); + icon = im->strIconName; + imname = _(im->strName); + description = _(im->strName); + } + /* add fcitx- prefix */ + asprintf(&status, "/Fcitx/im:%s:fcitx-%s:%s", imname, icon, description ); + + KimUpdateProperty(kimpanel, status); + free(status); +} + +void KimpanelInputReset(void* arg) +{ + FcitxKimpanelUI* kimpanel = (FcitxKimpanelUI*) arg; + KimpanelSetIMStatus(kimpanel); +} + +void KimpanelOnInputFocus(void* arg) +{ + FcitxKimpanelUI* kimpanel = (FcitxKimpanelUI*) arg; + KimEnable(kimpanel, (GetCurrentState(kimpanel->owner) == IS_ACTIVE)); + KimpanelSetIMStatus(kimpanel); +} + +void KimpanelOnInputUnFocus(void* arg) +{ + FcitxKimpanelUI* kimpanel = (FcitxKimpanelUI*) arg; + KimEnable(kimpanel, (GetCurrentState(kimpanel->owner) == IS_ACTIVE)); + KimpanelSetIMStatus(kimpanel); +} + +void KimpanelOnTriggerOff(void* arg) +{ + FcitxKimpanelUI* kimpanel = (FcitxKimpanelUI*) arg; + KimEnable(kimpanel, false); + KimpanelSetIMStatus(kimpanel); +} + +void KimpanelOnTriggerOn(void* arg) +{ + FcitxKimpanelUI* kimpanel = (FcitxKimpanelUI*) arg; + KimEnable(kimpanel, true); + KimpanelSetIMStatus(kimpanel); +} + +void KimpanelCloseInputWindow(void* arg) +{ + FcitxKimpanelUI* kimpanel = (FcitxKimpanelUI*) arg; + FcitxLog(DEBUG, "KimpanelCloseInputWindow"); + /* why kimpanel sucks, there is not obvious method to close it */ + KimShowAux(kimpanel, false); + KimShowPreedit(kimpanel, false); + KimShowLookupTable(kimpanel, false); +} + +void KimpanelMoveInputWindow(void* arg) +{ + FcitxKimpanelUI* kimpanel = (FcitxKimpanelUI*) arg; + FcitxLog(DEBUG, "KimpanelMoveInputWindow"); + kimpanel->iOffsetX = 12; + kimpanel->iOffsetY = 0; + + int x = 0, y = 0; + + FcitxInputContext* ic = GetCurrentIC(kimpanel->owner); + GetWindowPosition(kimpanel->owner, ic, &x, &y); + + KimUpdateSpotLocation(kimpanel, x, y); +} + +void KimpanelRegisterMenu(void* arg, FcitxUIMenu* menu) +{ + return ; +} + +void KimpanelRegisterStatus(void* arg, FcitxUIStatus* status) +{ + FcitxKimpanelUI* kimpanel = (FcitxKimpanelUI*) arg; + KimpanelRegisterAllStatus(kimpanel); + return ; +} + +char* Status2String(FcitxUIStatus* status) +{ + char *result = NULL; + asprintf(&result, "/Fcitx/%s:%s:fcitx-%s-%s:%s", + status->name, + status->shortDescription, + status->name, + ((status->getCurrentStatus(status->arg)) ? "active": "inactive"), + status->longDescription + ); + + return result; +} + +void KimpanelShowInputWindow(void* arg) +{ + FcitxKimpanelUI* kimpanel = (FcitxKimpanelUI*) arg; + FcitxInstance* instance = kimpanel->owner; + FcitxInputState* input = &instance->input; + kimpanel->iCursorPos = NewMessageToOldStyleMessage(instance, kimpanel->messageUp, kimpanel->messageDown); + Messages* messageDown = kimpanel->messageDown; + Messages* messageUp = kimpanel->messageUp; + FcitxLog(DEBUG, "KimpanelShowInputWindow"); + + int n = GetMessageCount(messageDown); + int nLabels = 0; + int nTexts = 0; + char *label[33]; + char *text[33]; + char cmb[100] = ""; + int i; + + if (n) { + for (i=0;icandList),CandidateWordHasNext(input->candList)); + KimShowLookupTable(kimpanel, true); + } + for (i = 0; i < nTexts; i++) + free(text[i]); + for (i = 0; i < nLabels; i++) + free(label[i]); + } else { + KimUpdateLookupTable(kimpanel, NULL,0,NULL,0,CandidateWordHasPrev(input->candList),CandidateWordHasNext(input->candList)); + KimShowLookupTable(kimpanel, false); + } + + n = GetMessageCount(messageUp); + char aux[MESSAGE_MAX_LENGTH] = ""; + char empty[MESSAGE_MAX_LENGTH] = ""; + if (n) { + for (i=0;ibShowCursor) + { + KimUpdatePreeditText(kimpanel, aux); + KimUpdateAux(kimpanel, empty); + KimShowPreedit(kimpanel, true); + KimUpdatePreeditCaret(kimpanel, CalKimCursorPos(kimpanel)); + KimShowAux(kimpanel, false); + } + else { + KimUpdatePreeditText(kimpanel, empty); + KimUpdateAux(kimpanel, aux); + KimShowPreedit(kimpanel, false); + KimShowAux(kimpanel, true); + } + } else { + KimShowPreedit(kimpanel, false); + KimShowAux(kimpanel, false); + } + +} + +void KimpanelUpdateStatus(void* arg, FcitxUIStatus* status) +{ + FcitxKimpanelUI* kimpanel = (FcitxKimpanelUI*) arg; + char *prop = NULL; + prop = Status2String(status); + KimUpdateProperty(kimpanel, prop); + return ; +} + +static DBusHandlerResult KimpanelDBusEventHandler (DBusConnection *connection, DBusMessage *msg, void *arg) +{ + FcitxKimpanelUI* kimpanel = (FcitxKimpanelUI*) arg; + + if (dbus_message_is_method_call(msg, DBUS_INTERFACE_INTROSPECTABLE, "Introspect")) + { + DBusMessage *reply = dbus_message_new_method_return(msg); + + dbus_message_append_args(reply, DBUS_TYPE_STRING, &kimpanel_introspection_xml, DBUS_TYPE_INVALID); + dbus_connection_send (kimpanel->conn, reply, NULL); + dbus_message_unref (reply); + return DBUS_HANDLER_RESULT_HANDLED; + } + return DBUS_HANDLER_RESULT_NOT_YET_HANDLED; +} + +DBusHandlerResult KimpanelDBusFilter(DBusConnection* connection, DBusMessage* msg, void* user_data) +{ + FCITX_UNUSED(connection); + FcitxKimpanelUI* kimpanel = (FcitxKimpanelUI*) user_data; + FcitxInstance* instance = kimpanel->owner; + FcitxInputState* input = &kimpanel->owner->input; + int int0; + const char* s0 = NULL; + DBusError error; + dbus_error_init(&error); + if (dbus_message_is_signal(msg, "org.kde.impanel", "MovePreeditCaret")) { + FcitxLog(DEBUG, "MovePreeditCaret"); + dbus_message_get_args(msg, &error, DBUS_TYPE_INT32, &int0 ,DBUS_TYPE_INVALID); + return DBUS_HANDLER_RESULT_HANDLED; + } + else if (dbus_message_is_signal(msg, "org.kde.impanel", "SelectCandidate")) { + FcitxLog(DEBUG, "SelectCandidate: "); + if (dbus_message_get_args(msg, &error, DBUS_TYPE_INT32, &int0 ,DBUS_TYPE_INVALID)) + { + INPUT_RETURN_VALUE retVal; + retVal = CandidateWordChooseByIndex(input->candList, int0); + ProcessInputReturnValue(instance, retVal); + } + return DBUS_HANDLER_RESULT_HANDLED; + } + else if (dbus_message_is_signal(msg, "org.kde.impanel", "LookupTablePageUp")) { + FcitxLog(DEBUG, "LookupTablePageUp"); + if (CandidateWordPageCount(input->candList) != 0) + { + CandidateWordGoPrevPage(input->candList); + ProcessInputReturnValue(instance, IRV_DISPLAY_CANDWORDS); + } + return DBUS_HANDLER_RESULT_HANDLED; + } + else if (dbus_message_is_signal(msg, "org.kde.impanel", "LookupTablePageDown")) { + FcitxLog(DEBUG, "LookupTablePageDown"); + if (CandidateWordPageCount(input->candList) != 0) + { + CandidateWordGoNextPage(input->candList); + ProcessInputReturnValue(instance, IRV_DISPLAY_CANDWORDS); + } + return DBUS_HANDLER_RESULT_HANDLED; + } + else if (dbus_message_is_signal(msg, "org.kde.impanel", "TriggerProperty")) { + FcitxLog(DEBUG, "TriggerProperty: "); + if (dbus_message_get_args(msg, &error, DBUS_TYPE_STRING, &s0 ,DBUS_TYPE_INVALID)) + { + size_t len = strlen("/Fcitx/"); + if (strlen(s0) > len) + { + s0 += len; + if (strcmp("logo", s0) == 0) + { + if (GetCurrentState(instance) == IS_CLOSED) { + EnableIM(instance, GetCurrentIC(instance), false); + } + else { + CloseIM(instance, GetCurrentIC(instance)); + } + } + else if (strncmp("im/", s0, strlen("im/")) == 0) + { + s0 += strlen("im/"); + int index = atoi(s0); + SwitchIM(instance, index); + } + else if (strncmp("im", s0, strlen("im")) == 0) + { + UT_array* imes = &instance->imes; + FcitxIM* pim; + int index = 0; + size_t len = utarray_len(imes); + char **prop = fcitx_malloc0(len * sizeof(char*)); + for (pim = (FcitxIM *) utarray_front(imes); + pim != NULL; + pim = (FcitxIM *) utarray_next(imes, pim)) + { + asprintf(&prop[index], "/Fcitx/im/%d:%s:fcitx-%s:%s", index, _(pim->strName), pim->strIconName, _(pim->strName)); + index ++; + } + KimExecMenu(kimpanel, prop , len); + while (len -- ) + free(prop[len]); + } + else + UpdateStatus(instance, s0); + } + } + return DBUS_HANDLER_RESULT_HANDLED; + } + else if (dbus_message_is_signal(msg, "org.kde.impanel", "PanelCreated")) { + FcitxLog(DEBUG, "PanelCreated"); + + KimpanelRegisterAllStatus(kimpanel); + return DBUS_HANDLER_RESULT_HANDLED; + } + else if (dbus_message_is_signal(msg, "org.kde.impanel", "Exit")) { + FcitxLog(DEBUG, "Exit"); + EndInstance(instance); + return DBUS_HANDLER_RESULT_HANDLED; + } + if (dbus_message_is_signal(msg, "org.kde.impanel", "ReloadConfig")) { + FcitxLog(DEBUG, "ReloadConfig"); + ReloadConfig(instance); + return DBUS_HANDLER_RESULT_HANDLED; + } + + return DBUS_HANDLER_RESULT_NOT_YET_HANDLED; +} + + + +void KimExecDialog(FcitxKimpanelUI* kimpanel, char *prop) +{ + dbus_uint32_t serial = 0; // unique number to associate replies with requests + DBusMessage* msg; + + // create a signal and check for errors + msg = dbus_message_new_signal(FCITX_KIMPANEL_PATH, // object name of the signal + FCITX_KIMPANEL_INTERFACE, // interface name of the signal + "ExecDialog"); // name of the signal + if (NULL == msg) + { + FcitxLog(DEBUG, "Message Null"); + return; + } + + if (dbus_message_append_args(msg, DBUS_TYPE_STRING, &prop, DBUS_TYPE_INVALID)) { + dbus_connection_send(kimpanel->conn, msg, &serial); + } + + dbus_connection_flush(kimpanel->conn); + + // free the message + dbus_message_unref(msg); + +} + +void KimExecMenu(FcitxKimpanelUI* kimpanel, char *props[],int n) +{ + + dbus_uint32_t serial = 0; // unique number to associate replies with requests + DBusMessage* msg; + DBusMessageIter args; + + // create a signal and check for errors + msg = dbus_message_new_signal(FCITX_KIMPANEL_PATH, // object name of the signal + FCITX_KIMPANEL_INTERFACE, // interface name of the signal + "ExecMenu"); // name of the signal + if (NULL == msg) + { + FcitxLog(DEBUG, "Message Null"); + return; + } + + if (n == -1) { + n = 0; + while (*(props[n])!= 0) { + n++; + } + } + + int i; + // append arguments onto signal + dbus_message_iter_init_append(msg, &args); + DBusMessageIter sub; + dbus_message_iter_open_container(&args,DBUS_TYPE_ARRAY,"s",&sub); + for (i = 0; i < n; i++) { + if (!dbus_message_iter_append_basic(&sub, DBUS_TYPE_STRING, &props[i])) { + FcitxLog(DEBUG, "Out Of Memory!"); + } + } + dbus_message_iter_close_container(&args,&sub); + + // send the message and flush the connection + if (!dbus_connection_send(kimpanel->conn, msg, &serial)) { + FcitxLog(DEBUG, "Out Of Memory!"); + } + dbus_connection_flush(kimpanel->conn); + + // free the message + dbus_message_unref(msg); + +} + +void KimRegisterProperties(FcitxKimpanelUI* kimpanel, char *props[], int n) +{ + dbus_uint32_t serial = 0; // unique number to associate replies with requests + DBusMessage* msg; + DBusMessageIter args; + + // create a signal and check for errors + msg = dbus_message_new_signal(FCITX_KIMPANEL_PATH, // object name of the signal + FCITX_KIMPANEL_INTERFACE, // interface name of the signal + "RegisterProperties"); // name of the signal + if (NULL == msg) + { + FcitxLog(DEBUG, "Message Null"); + return; + } + + if (n == -1) { + n = 0; + while (*(props[n])!= 0) { + n++; + } + } + + int i; + // append arguments onto signal + dbus_message_iter_init_append(msg, &args); + DBusMessageIter sub; + dbus_message_iter_open_container(&args,DBUS_TYPE_ARRAY,"s",&sub); + for (i = 0; i < n; i++) { + if (!dbus_message_iter_append_basic(&sub, DBUS_TYPE_STRING, &props[i])) { + FcitxLog(DEBUG, "Out Of Memory!"); + } + } + dbus_message_iter_close_container(&args,&sub); + + // send the message and flush the connection + if (!dbus_connection_send(kimpanel->conn, msg, &serial)) { + FcitxLog(DEBUG, "Out Of Memory!"); + } + dbus_connection_flush(kimpanel->conn); + + // free the message + dbus_message_unref(msg); + +} + +void KimUpdateProperty(FcitxKimpanelUI* kimpanel, char *prop) +{ + + dbus_uint32_t serial = 0; // unique number to associate replies with requests + DBusMessage* msg; + DBusMessageIter args; + + // create a signal and check for errors + msg = dbus_message_new_signal(FCITX_KIMPANEL_PATH, // object name of the signal + FCITX_KIMPANEL_INTERFACE, // interface name of the signal + "UpdateProperty"); // name of the signal + if (NULL == msg) + { + FcitxLog(DEBUG, "Message Null"); + return; + } + + // append arguments onto signal + dbus_message_iter_init_append(msg, &args); + if (!dbus_message_iter_append_basic(&args, DBUS_TYPE_STRING, &prop)) { + FcitxLog(DEBUG, "Out Of Memory!"); + } + + // send the message and flush the connection + if (!dbus_connection_send(kimpanel->conn, msg, &serial)) { + FcitxLog(DEBUG, "Out Of Memory!"); + } + dbus_connection_flush(kimpanel->conn); + + // free the message + dbus_message_unref(msg); + +} + +void KimRemoveProperty(FcitxKimpanelUI* kimpanel, char *prop) +{ + + dbus_uint32_t serial = 0; // unique number to associate replies with requests + DBusMessage* msg; + DBusMessageIter args; + + // create a signal and check for errors + msg = dbus_message_new_signal(FCITX_KIMPANEL_PATH, // object name of the signal + FCITX_KIMPANEL_INTERFACE, // interface name of the signal + "RemoveProperty"); // name of the signal + if (NULL == msg) + { + FcitxLog(DEBUG, "Message Null"); + return; + } + + // append arguments onto signal + dbus_message_iter_init_append(msg, &args); + if (!dbus_message_iter_append_basic(&args, DBUS_TYPE_STRING, &prop)) { + FcitxLog(DEBUG, "Out Of Memory!"); + } + + // send the message and flush the connection + if (!dbus_connection_send(kimpanel->conn, msg, &serial)) { + FcitxLog(DEBUG, "Out Of Memory!"); + } + dbus_connection_flush(kimpanel->conn); + + // free the message + dbus_message_unref(msg); + +} + +void KimEnable(FcitxKimpanelUI* kimpanel, boolean toEnable) +{ + dbus_uint32_t serial = 0; // unique number to associate replies with requests + DBusMessage* msg; + DBusMessageIter args; + + // create a signal and check for errors + msg = dbus_message_new_signal(FCITX_KIMPANEL_PATH, // object name of the signal + FCITX_KIMPANEL_INTERFACE, // interface name of the signal + "Enable"); // name of the signal + if (NULL == msg) + { + FcitxLog(DEBUG, "Message Null"); + return; + } + + // append arguments onto signal + dbus_message_iter_init_append(msg, &args); + if (!dbus_message_iter_append_basic(&args, DBUS_TYPE_BOOLEAN, &toEnable)) { + FcitxLog(DEBUG, "Out Of Memory!"); + } + + // send the message and flush the connection + if (!dbus_connection_send(kimpanel->conn, msg, &serial)) { + FcitxLog(DEBUG, "Out Of Memory!"); + } + dbus_connection_flush(kimpanel->conn); + + // free the message + dbus_message_unref(msg); + +} + +void KimShowAux(FcitxKimpanelUI* kimpanel, boolean toShow) +{ + + dbus_uint32_t serial = 0; // unique number to associate replies with requests + DBusMessage* msg; + DBusMessageIter args; + + // create a signal and check for errors + msg = dbus_message_new_signal(FCITX_KIMPANEL_PATH, // object name of the signal + FCITX_KIMPANEL_INTERFACE, // interface name of the signal + "ShowAux"); // name of the signal + if (NULL == msg) + { + FcitxLog(DEBUG, "Message Null"); + return; + } + + // append arguments onto signal + dbus_message_iter_init_append(msg, &args); + if (!dbus_message_iter_append_basic(&args, DBUS_TYPE_BOOLEAN, &toShow)) { + FcitxLog(DEBUG, "Out Of Memory!"); + } + + // send the message and flush the connection + if (!dbus_connection_send(kimpanel->conn, msg, &serial)) { + FcitxLog(DEBUG, "Out Of Memory!"); + } + dbus_connection_flush(kimpanel->conn); + + // free the message + dbus_message_unref(msg); + +} + +void KimShowPreedit(FcitxKimpanelUI* kimpanel, boolean toShow) +{ + + dbus_uint32_t serial = 0; // unique number to associate replies with requests + DBusMessage* msg; + DBusMessageIter args; + + // create a signal and check for errors + msg = dbus_message_new_signal(FCITX_KIMPANEL_PATH, // object name of the signal + FCITX_KIMPANEL_INTERFACE, // interface name of the signal + "ShowPreedit"); // name of the signal + if (NULL == msg) + { + FcitxLog(DEBUG, "Message Null"); + return; + } + + // append arguments onto signal + dbus_message_iter_init_append(msg, &args); + if (!dbus_message_iter_append_basic(&args, DBUS_TYPE_BOOLEAN, &toShow)) { + FcitxLog(DEBUG, "Out Of Memory!"); + } + + // send the message and flush the connection + if (!dbus_connection_send(kimpanel->conn, msg, &serial)) { + FcitxLog(DEBUG, "Out Of Memory!"); + } + dbus_connection_flush(kimpanel->conn); + + // free the message + dbus_message_unref(msg); + +} + +void KimShowLookupTable(FcitxKimpanelUI* kimpanel, boolean toShow) +{ + + dbus_uint32_t serial = 0; // unique number to associate replies with requests + DBusMessage* msg; + DBusMessageIter args; + + // create a signal and check for errors + msg = dbus_message_new_signal(FCITX_KIMPANEL_PATH, // object name of the signal + FCITX_KIMPANEL_INTERFACE, // interface name of the signal + "ShowLookupTable"); // name of the signal + if (NULL == msg) + { + FcitxLog(DEBUG, "Message Null"); + return; + } + + // append arguments onto signal + dbus_message_iter_init_append(msg, &args); + if (!dbus_message_iter_append_basic(&args, DBUS_TYPE_BOOLEAN, &toShow)) { + FcitxLog(DEBUG, "Out Of Memory!"); + } + + // send the message and flush the connection + if (!dbus_connection_send(kimpanel->conn, msg, &serial)) { + FcitxLog(DEBUG, "Out Of Memory!"); + } + dbus_connection_flush(kimpanel->conn); + + // free the message + dbus_message_unref(msg); + +} + +void KimUpdateLookupTable(FcitxKimpanelUI* kimpanel, char *labels[], int nLabel, char *texts[], int nText, boolean has_prev, boolean has_next) +{ + + dbus_uint32_t serial = 0; // unique number to associate replies with requests + DBusMessage* msg; + DBusMessageIter args; + + // create a signal and check for errors + msg = dbus_message_new_signal(FCITX_KIMPANEL_PATH, // object name of the signal + FCITX_KIMPANEL_INTERFACE, // interface name of the signal + "UpdateLookupTable"); // name of the signal + if (NULL == msg) + { + FcitxLog(DEBUG, "Message Null"); + return; + } + + int i; + DBusMessageIter subLabel; + DBusMessageIter subText; + DBusMessageIter subAttrs; + // append arguments onto signal + dbus_message_iter_init_append(msg, &args); + dbus_message_iter_open_container(&args,DBUS_TYPE_ARRAY,"s",&subLabel); + for (i = 0; i < nLabel; i++) { + if (!dbus_message_iter_append_basic(&subLabel, DBUS_TYPE_STRING, &labels[i])) { + FcitxLog(DEBUG, "Out Of Memory!"); + } + } + dbus_message_iter_close_container(&args,&subLabel); + + dbus_message_iter_open_container(&args,DBUS_TYPE_ARRAY,"s",&subText); + for (i = 0; i < nText; i++) { + if (!dbus_message_iter_append_basic(&subText, DBUS_TYPE_STRING, &texts[i])) { + FcitxLog(DEBUG, "Out Of Memory!"); + } + } + dbus_message_iter_close_container(&args,&subText); + + char *attr = ""; + dbus_message_iter_open_container(&args,DBUS_TYPE_ARRAY,"s",&subAttrs); + for (i = 0; i < nLabel; i++) { + if (!dbus_message_iter_append_basic(&subAttrs, DBUS_TYPE_STRING, &attr)) { + FcitxLog(DEBUG, "Out Of Memory!"); + } + } + dbus_message_iter_close_container(&args,&subAttrs); + + dbus_message_iter_append_basic(&args, DBUS_TYPE_BOOLEAN, &has_prev); + dbus_message_iter_append_basic(&args, DBUS_TYPE_BOOLEAN, &has_next); + + // send the message and flush the connection + if (!dbus_connection_send(kimpanel->conn, msg, &serial)) { + FcitxLog(DEBUG, "Out Of Memory!"); + } + dbus_connection_flush(kimpanel->conn); + + // free the message + dbus_message_unref(msg); + +} + +void KimUpdatePreeditCaret(FcitxKimpanelUI* kimpanel, int position) +{ + + dbus_uint32_t serial = 0; // unique number to associate replies with requests + DBusMessage* msg; + DBusMessageIter args; + + // create a signal and check for errors + msg = dbus_message_new_signal(FCITX_KIMPANEL_PATH, // object name of the signal + FCITX_KIMPANEL_INTERFACE, // interface name of the signal + "UpdatePreeditCaret"); // name of the signal + if (NULL == msg) + { + FcitxLog(DEBUG, "Message Null"); + return; + } + + // append arguments onto signal + dbus_message_iter_init_append(msg, &args); + if (!dbus_message_iter_append_basic(&args, DBUS_TYPE_INT32, &position)) { + FcitxLog(DEBUG, "Out Of Memory!"); + } + + // send the message and flush the connection + if (!dbus_connection_send(kimpanel->conn, msg, &serial)) { + FcitxLog(DEBUG, "Out Of Memory!"); + } + dbus_connection_flush(kimpanel->conn); + + // free the message + dbus_message_unref(msg); + +} + +void KimUpdatePreeditText(FcitxKimpanelUI* kimpanel, char *text) +{ + + dbus_uint32_t serial = 0; // unique number to associate replies with requests + DBusMessage* msg; + DBusMessageIter args; + + // create a signal and check for errors + msg = dbus_message_new_signal(FCITX_KIMPANEL_PATH, // object name of the signal + FCITX_KIMPANEL_INTERFACE, // interface name of the signal + "UpdatePreeditText"); // name of the signal + if (NULL == msg) + { + FcitxLog(DEBUG, "Message Null"); + return; + } + + char *attr = ""; + // append arguments onto signal + dbus_message_iter_init_append(msg, &args); + if (!dbus_message_iter_append_basic(&args, DBUS_TYPE_STRING, &text)) { + FcitxLog(DEBUG, "Out Of Memory!"); + } + if (!dbus_message_iter_append_basic(&args, DBUS_TYPE_STRING, &attr)) { + FcitxLog(DEBUG, "Out Of Memory!"); + } + + // send the message and flush the connection + if (!dbus_connection_send(kimpanel->conn, msg, &serial)) { + FcitxLog(DEBUG, "Out Of Memory!"); + } + dbus_connection_flush(kimpanel->conn); + + // free the message + dbus_message_unref(msg); + +} + +void KimUpdateAux(FcitxKimpanelUI* kimpanel, char *text) +{ + + dbus_uint32_t serial = 0; // unique number to associate replies with requests + DBusMessage* msg; + DBusMessageIter args; + + // create a signal and check for errors + msg = dbus_message_new_signal(FCITX_KIMPANEL_PATH, // object name of the signal + FCITX_KIMPANEL_INTERFACE, // interface name of the signal + "UpdateAux"); // name of the signal + if (NULL == msg) + { + FcitxLog(DEBUG, "Message Null"); + return; + } + + char *attr = ""; + + // append arguments onto signal + dbus_message_iter_init_append(msg, &args); + if (!dbus_message_iter_append_basic(&args, DBUS_TYPE_STRING, &text)) { + FcitxLog(DEBUG, "Out Of Memory!"); + } + if (!dbus_message_iter_append_basic(&args, DBUS_TYPE_STRING, &attr)) { + FcitxLog(DEBUG, "Out Of Memory!"); + } + + // send the message and flush the connection + if (!dbus_connection_send(kimpanel->conn, msg, &serial)) { + FcitxLog(DEBUG, "Out Of Memory!"); + } + dbus_connection_flush(kimpanel->conn); + + // free the message + dbus_message_unref(msg); + +} + +void KimUpdateSpotLocation(FcitxKimpanelUI* kimpanel, int x, int y) +{ + + dbus_uint32_t serial = 0; // unique number to associate replies with requests + DBusMessage* msg; + DBusMessageIter args; + + // create a signal and check for errors + msg = dbus_message_new_signal(FCITX_KIMPANEL_PATH, // object name of the signal + FCITX_KIMPANEL_INTERFACE, // interface name of the signal + "UpdateSpotLocation"); // name of the signal + if (NULL == msg) + { + FcitxLog(DEBUG, "Message Null"); + return; + } + + // append arguments onto signal + dbus_message_iter_init_append(msg, &args); + if (!dbus_message_iter_append_basic(&args, DBUS_TYPE_INT32, &x)) { + FcitxLog(DEBUG, "Out Of Memory!"); + } + if (!dbus_message_iter_append_basic(&args, DBUS_TYPE_INT32, &y)) { + FcitxLog(DEBUG, "Out Of Memory!"); + } + + // send the message and flush the connection + if (!dbus_connection_send(kimpanel->conn, msg, &serial)) { + FcitxLog(DEBUG, "Out Of Memory!"); + } + dbus_connection_flush(kimpanel->conn); + + // free the message + dbus_message_unref(msg); + +} + +void KimUpdateScreen(FcitxKimpanelUI* kimpanel, int id) +{ + + dbus_uint32_t serial = 0; // unique number to associate replies with requests + DBusMessage* msg; + DBusMessageIter args; + + // create a signal and check for errors + msg = dbus_message_new_signal(FCITX_KIMPANEL_PATH, // object name of the signal + FCITX_KIMPANEL_INTERFACE, // interface name of the signal + "UpdateScreen"); // name of the signal + if (NULL == msg) + { + FcitxLog(DEBUG, "Message Null"); + return; + } + + // append arguments onto signal + dbus_message_iter_init_append(msg, &args); + if (!dbus_message_iter_append_basic(&args, DBUS_TYPE_INT32, &id)) { + FcitxLog(DEBUG, "Out Of Memory!"); + } + + // send the message and flush the connection + if (!dbus_connection_send(kimpanel->conn, msg, &serial)) { + FcitxLog(DEBUG, "Out Of Memory!"); + } + dbus_connection_flush(kimpanel->conn); + + // free the message + dbus_message_unref(msg); + +} + +int CalKimCursorPos(FcitxKimpanelUI *kimpanel) +{ + size_t i = 0; + int iChar; + int iCount = 0; + FcitxInputState* input = &kimpanel->owner->input; + Messages* messageUp = kimpanel->messageUp; + + const char *p1; + const char *pivot; + + iChar = kimpanel->iCursorPos; + + + for (i = 0; i < GetMessageCount(messageUp) ; i++) { + if (input->bShowCursor && iChar) { + p1 = pivot = GetMessageString(messageUp, i); + while (*p1 && p1 < pivot + iChar) { + p1 = p1 + utf8_char_len(p1); + iCount ++; + } + if (strlen (GetMessageString(messageUp, i)) > iChar) { + iChar = 0; + } + else { + iChar -= strlen (GetMessageString(messageUp, i)); + } + } + } + + return iCount; +} +// kate: indent-mode cstyle; space-indent on; indent-width 0; diff -Nru fcitx-4.0.1/src/ui/MainWindow.c fcitx-4.1.1/src/ui/MainWindow.c --- fcitx-4.0.1/src/ui/MainWindow.c 2010-12-17 04:19:37.000000000 +0000 +++ fcitx-4.1.1/src/ui/MainWindow.c 1970-01-01 00:00:00.000000000 +0000 @@ -1,214 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2002~2005 by Yuking * - * yuking_net@sohu.com * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * - ***************************************************************************/ -/** - * @file MainWindow.c - * @author Yuking yuking_net@sohu.com - * @date 2008-1-16 - * - * @brief 主窗口 - * - * - */ - -#include -#include -#include - -#include "core/fcitx.h" -#include "ui/ui.h" -#include "ui/skin.h" -#include "MainWindow.h" -#include "tools/profile.h" -#include "tools/configfile.h" -#include "fcitx-config/cutils.h" - -MainWindow mainWindow; - -Bool bMainWindow_Hiden = False; - -extern Display *dpy; -extern Bool bSP; -extern Bool bVK; - -extern unsigned char iCurrentVK; -extern int iScreen; - -static void InitMainWindow(); - -void InitMainWindow() -{ - memset(&mainWindow, 0, sizeof(MainWindow)); -} - -Bool CreateMainWindow (void) -{ - int depth; - Colormap cmap; - Visual * vs; - XSetWindowAttributes attrib; - unsigned long attribmask; - GC gc; - char strWindowName[] = "Fcitx Main Window"; - int swidth, sheight; - - GetScreenSize(&swidth, &sheight); - - InitMainWindow(); - - XGCValues xgv; - - LoadMainBarImage(); - - vs = FindARGBVisual(dpy, iScreen); - - if (fcitxProfile.iMainWindowOffsetX + sc.skinMainBar.backImg.width > swidth ) - fcitxProfile.iMainWindowOffsetX = swidth - sc.skinMainBar.backImg.width; - - if (fcitxProfile.iMainWindowOffsetY + sc.skinMainBar.backImg.height > sheight ) - fcitxProfile.iMainWindowOffsetY = sheight - sc.skinMainBar.backImg.height; - - InitWindowAttribute(&vs, &cmap, &attrib, &attribmask, &depth); - mainWindow.window=XCreateWindow (dpy, - RootWindow(dpy, iScreen), - fcitxProfile.iMainWindowOffsetX, - fcitxProfile.iMainWindowOffsetY, - sc.skinMainBar.backImg.width, - sc.skinMainBar.backImg.height, - 0, depth,InputOutput, vs,attribmask, &attrib); - - if (mainWindow.window == None) - return False; - - xgv.foreground = WhitePixel(dpy, iScreen); - mainWindow.pm_main_bar = XCreatePixmap( - dpy, - mainWindow.window, - sc.skinMainBar.backImg.width, - sc.skinMainBar.backImg.height, - depth); - gc = XCreateGC(dpy,mainWindow.pm_main_bar, GCForeground, &xgv); - XFillRectangle(dpy, mainWindow.pm_main_bar, gc, 0, 0,sc.skinMainBar.backImg.width, sc.skinMainBar.backImg.height); - mainWindow.cs_main_bar=cairo_xlib_surface_create( - dpy, - mainWindow.pm_main_bar, - vs, - sc.skinMainBar.backImg.width, - sc.skinMainBar.backImg.height); - XFreeGC(dpy,gc); - - mainWindow.main_win_gc = XCreateGC( dpy, mainWindow.window, 0, NULL ); - XChangeWindowAttributes (dpy, mainWindow.window, attribmask, &attrib); - XSelectInput (dpy, mainWindow.window, ExposureMask | ButtonPressMask | ButtonReleaseMask | PointerMotionMask | LeaveWindowMask); - - - XTextProperty tp; - /* Set the name of the window */ - tp.value = (void *)strWindowName; - tp.encoding = XA_STRING; - tp.format = 16; - tp.nitems = strlen(strWindowName); - XSetWMName (dpy, mainWindow.window, &tp); - - return True; -} - -void DisplayMainWindow (void) -{ -#ifdef _DEBUG - FcitxLog(DEBUG, _("DISPLAY MainWindow")); -#endif - - if (!bMainWindow_Hiden) - XMapRaised (dpy, mainWindow.window); -} - -void DrawMainWindow (void) -{ - INT8 iIndex = 0; - cairo_t *c; - Bool btmpPunc; - - if ( bMainWindow_Hiden ) - return; - - iIndex = IS_CLOSED; - - //中英标点符号咋就反了?修正 - btmpPunc=fcitxProfile.bChnPunc?False:True; -#ifdef _DEBUG - FcitxLog(DEBUG, _("DRAW MainWindow")); -#endif - //XResizeWindow(dpy, mainWindow, sc.skinMainBar.backImg.width, sc.skinMainBar.backImg.height); - - c=cairo_create(mainWindow.cs_main_bar); - //把背景清空 - cairo_set_source_rgba(c, 0, 0, 0,0); - cairo_rectangle (c, 0, 0, SIZEX, SIZEY); - cairo_set_operator(c, CAIRO_OPERATOR_SOURCE); - cairo_fill(c); - - cairo_set_operator(c, CAIRO_OPERATOR_OVER); - - if (fc.hideMainWindow == HM_SHOW || (fc.hideMainWindow == HM_AUTO && (GetCurrentState() != IS_CLOSED))) - { - // extern mouse_e ms_logo,ms_punc,ms_corner,ms_lx,ms_chs,ms_lock,ms_vk,ms_py; - DrawImage(&c, sc.skinMainBar.backImg,bar,RELEASE ); - DrawImage(&c, sc.skinMainBar.logo,logo,ms_logo); - DrawImage(&c, sc.skinMainBar.zhpunc,punc[btmpPunc],ms_punc); - DrawImage(&c, sc.skinMainBar.chs,chs_t[fcitxProfile.bUseGBKT],ms_chs); - DrawImage(&c, sc.skinMainBar.halfcorner,corner[fcitxProfile.bCorner],ms_corner); - DrawImage(&c, sc.skinMainBar.unlock,lock[fcitxProfile.bLocked],ms_lock); - DrawImage(&c, sc.skinMainBar.nolegend,lx[fcitxProfile.bUseLegend],ms_lx); - DrawImage(&c, sc.skinMainBar.novk,vk[bVK],ms_vk); - - iIndex = GetCurrentState(); - if ( iIndex == 1 || iIndex ==0 ) - { - //英文 - DrawImage(&c, sc.skinMainBar.eng,english,ms_py); - } - else - { - //默认码表显示 - if (im[gs.iIMIndex].icon) - DrawImage(&c, im[gs.iIMIndex].image, im[gs.iIMIndex].icon , ms_py); - else - { //如果非默认码表的内容,则临时加载png文件. - //暂时先不能自定义码表图片.其他码表统一用一种图片。 - DrawImage(&c, sc.skinMainBar.chn,otherim,ms_py); - } - - } - XCopyArea (dpy, mainWindow.pm_main_bar, mainWindow.window, mainWindow.main_win_gc, 0, 0, sc.skinMainBar.backImg.width,\ - sc.skinMainBar.backImg.height, 0, 0); - } - else - XUnmapWindow (dpy, mainWindow.window); - - cairo_destroy(c); -} - -void DestroyMainWindow() -{ - cairo_surface_destroy(mainWindow.cs_main_bar); - XFreePixmap(dpy, mainWindow.pm_main_bar); - XFreeGC(dpy, mainWindow.main_win_gc); - XDestroyWindow(dpy, mainWindow.window); -} diff -Nru fcitx-4.0.1/src/ui/MainWindow.h fcitx-4.1.1/src/ui/MainWindow.h --- fcitx-4.0.1/src/ui/MainWindow.h 2010-11-28 11:54:51.000000000 +0000 +++ fcitx-4.1.1/src/ui/MainWindow.h 1970-01-01 00:00:00.000000000 +0000 @@ -1,53 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2002~2005 by Yuking * - * yuking_net@sohu.com * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * - ***************************************************************************/ -/** - * @file MainWindow.h - * @author Yuking yuking_net@sohu.com - * @date 2008-1-16 - * - * @brief 主窗口 - * - * - */ - -#ifndef _MAIN_WINDOW_H -#define _MAIN_WINDOW_H - -#include "core/fcitx.h" - -#include -#include - -Bool CreateMainWindow (void); -void DisplayMainWindow (void); -void DrawMainWindow (void); -void ChangeLock (void); -void DestroyMainWindow(); - -typedef struct MainWindow -{ - Window window; - Pixmap pm_main_bar; - cairo_surface_t* cs_main_bar; - GC main_win_gc; -} MainWindow; -extern MainWindow mainWindow; - -#endif diff -Nru fcitx-4.0.1/src/ui/Makefile.am fcitx-4.1.1/src/ui/Makefile.am --- fcitx-4.0.1/src/ui/Makefile.am 2010-11-28 11:54:51.000000000 +0000 +++ fcitx-4.1.1/src/ui/Makefile.am 1970-01-01 00:00:00.000000000 +0000 @@ -1,21 +0,0 @@ -INCLUDES = \ - -I$(top_srcdir)/lib \ - -I$(top_srcdir)/src \ - @CAIRO_XLIB_CFLAGS@ \ - @DBUS_CFLAGS@ \ - @PANGOCAIRO_CFLAGS@ \ - $(NULL) -DEFS = -DPKGDATADIR=\"$(pkgdatadir)\" -DDATADIR=\"$(datadir)\" -DBINDIR=\"$(bindir)\" - -noinst_LIBRARIES=libui.a -libui_a_SOURCES= InputWindow.c InputWindow.h\ - MainWindow.c MainWindow.h \ - TrayWindow.c TrayWindow.h \ - MessageWindow.c MessageWindow.h \ - tray.c tray.h \ - AboutWindow.c AboutWindow.h \ - ui.c ui.h \ - skin.c skin.h \ - skinconfig.c \ - MenuWindow.c MenuWindow.h \ - font.c font.h diff -Nru fcitx-4.0.1/src/ui/Makefile.in fcitx-4.1.1/src/ui/Makefile.in --- fcitx-4.0.1/src/ui/Makefile.in 2010-12-17 04:26:31.000000000 +0000 +++ fcitx-4.1.1/src/ui/Makefile.in 1970-01-01 00:00:00.000000000 +0000 @@ -1,563 +0,0 @@ -# Makefile.in generated by automake 1.11.1 from Makefile.am. -# @configure_input@ - -# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, -# Inc. -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - -@SET_MAKE@ - -VPATH = @srcdir@ -pkgdatadir = $(datadir)/@PACKAGE@ -pkgincludedir = $(includedir)/@PACKAGE@ -pkglibdir = $(libdir)/@PACKAGE@ -pkglibexecdir = $(libexecdir)/@PACKAGE@ -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = @build@ -host_triplet = @host@ -subdir = src/ui -DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/configure.in -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -mkinstalldirs = $(install_sh) -d -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -CONFIG_CLEAN_VPATH_FILES = -LIBRARIES = $(noinst_LIBRARIES) -ARFLAGS = cru -AM_V_AR = $(am__v_AR_$(V)) -am__v_AR_ = $(am__v_AR_$(AM_DEFAULT_VERBOSITY)) -am__v_AR_0 = @echo " AR " $@; -AM_V_at = $(am__v_at_$(V)) -am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) -am__v_at_0 = @ -libui_a_AR = $(AR) $(ARFLAGS) -libui_a_LIBADD = -am_libui_a_OBJECTS = InputWindow.$(OBJEXT) MainWindow.$(OBJEXT) \ - TrayWindow.$(OBJEXT) MessageWindow.$(OBJEXT) tray.$(OBJEXT) \ - AboutWindow.$(OBJEXT) ui.$(OBJEXT) skin.$(OBJEXT) \ - skinconfig.$(OBJEXT) MenuWindow.$(OBJEXT) font.$(OBJEXT) -libui_a_OBJECTS = $(am_libui_a_OBJECTS) -DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles -am__mv = mv -f -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -AM_V_lt = $(am__v_lt_$(V)) -am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) -am__v_lt_0 = --silent -LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ - $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ - $(AM_CFLAGS) $(CFLAGS) -AM_V_CC = $(am__v_CC_$(V)) -am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) -am__v_CC_0 = @echo " CC " $@; -CCLD = $(CC) -LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -AM_V_CCLD = $(am__v_CCLD_$(V)) -am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) -am__v_CCLD_0 = @echo " CCLD " $@; -AM_V_GEN = $(am__v_GEN_$(V)) -am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) -am__v_GEN_0 = @echo " GEN " $@; -SOURCES = $(libui_a_SOURCES) -DIST_SOURCES = $(libui_a_SOURCES) -ETAGS = etags -CTAGS = ctags -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -ACLOCAL = @ACLOCAL@ -ALL_LINGUAS = @ALL_LINGUAS@ -AMTAR = @AMTAR@ -AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ -AR = @AR@ -AUTOCONF = @AUTOCONF@ -AUTOHEADER = @AUTOHEADER@ -AUTOMAKE = @AUTOMAKE@ -AWK = @AWK@ -CAIRO_XLIB_CFLAGS = @CAIRO_XLIB_CFLAGS@ -CAIRO_XLIB_LIBS = @CAIRO_XLIB_LIBS@ -CC = @CC@ -CCDEPMODE = @CCDEPMODE@ -CFLAGS = @CFLAGS@ -CPP = @CPP@ -CPPFLAGS = @CPPFLAGS@ -CYGPATH_W = @CYGPATH_W@ -DATADIRNAME = @DATADIRNAME@ -DBUS_CFLAGS = @DBUS_CFLAGS@ -DBUS_LIBS = @DBUS_LIBS@ -DEFS = -DPKGDATADIR=\"$(pkgdatadir)\" -DDATADIR=\"$(datadir)\" -DBINDIR=\"$(bindir)\" -DEPDIR = @DEPDIR@ -DLLTOOL = @DLLTOOL@ -DSYMUTIL = @DSYMUTIL@ -DUMPBIN = @DUMPBIN@ -ECHO_C = @ECHO_C@ -ECHO_N = @ECHO_N@ -ECHO_T = @ECHO_T@ -EGREP = @EGREP@ -EXEEXT = @EXEEXT@ -FGREP = @FGREP@ -FONTCONFIG_CFLAGS = @FONTCONFIG_CFLAGS@ -FONTCONFIG_LIBS = @FONTCONFIG_LIBS@ -GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ -GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ -GMSGFMT = @GMSGFMT@ -GMSGFMT_015 = @GMSGFMT_015@ -GREP = @GREP@ -HOST_LIBS = @HOST_LIBS@ -INCINTL = @INCINTL@ -INSTALL = @INSTALL@ -INSTALL_DATA = @INSTALL_DATA@ -INSTALL_PROGRAM = @INSTALL_PROGRAM@ -INSTALL_SCRIPT = @INSTALL_SCRIPT@ -INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ -INTLLIBS = @INTLLIBS@ -INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ -INTLTOOL_MERGE = @INTLTOOL_MERGE@ -INTLTOOL_PERL = @INTLTOOL_PERL@ -INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ -INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ -LD = @LD@ -LDFLAGS = @LDFLAGS@ -LIBICONV = @LIBICONV@ -LIBINTL = @LIBINTL@ -LIBOBJS = @LIBOBJS@ -LIBS = @LIBS@ -LIBTOOL = @LIBTOOL@ -LIPO = @LIPO@ -LN_S = @LN_S@ -LTLIBICONV = @LTLIBICONV@ -LTLIBINTL = @LTLIBINTL@ -LTLIBOBJS = @LTLIBOBJS@ -MAKEINFO = @MAKEINFO@ -MANIFEST_TOOL = @MANIFEST_TOOL@ -MD5SUM = @MD5SUM@ -MKDIR_P = @MKDIR_P@ -MSGFMT = @MSGFMT@ -MSGFMT_015 = @MSGFMT_015@ -MSGMERGE = @MSGMERGE@ -NM = @NM@ -NMEDIT = @NMEDIT@ -OBJDUMP = @OBJDUMP@ -OBJEXT = @OBJEXT@ -OTOOL = @OTOOL@ -OTOOL64 = @OTOOL64@ -PACKAGE = @PACKAGE@ -PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ -PACKAGE_NAME = @PACKAGE_NAME@ -PACKAGE_STRING = @PACKAGE_STRING@ -PACKAGE_TARNAME = @PACKAGE_TARNAME@ -PACKAGE_URL = @PACKAGE_URL@ -PACKAGE_VERSION = @PACKAGE_VERSION@ -PANGOCAIRO_CFLAGS = @PANGOCAIRO_CFLAGS@ -PANGOCAIRO_LIBS = @PANGOCAIRO_LIBS@ -PATH_SEPARATOR = @PATH_SEPARATOR@ -PKG_CONFIG = @PKG_CONFIG@ -PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ -PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ -POSUB = @POSUB@ -RANLIB = @RANLIB@ -SED = @SED@ -SET_MAKE = @SET_MAKE@ -SHELL = @SHELL@ -STRIP = @STRIP@ -TAR = @TAR@ -USE_NLS = @USE_NLS@ -VERSION = @VERSION@ -WGET = @WGET@ -XGETTEXT = @XGETTEXT@ -XGETTEXT_015 = @XGETTEXT_015@ -XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ -XMKMF = @XMKMF@ -XRENDER_CFLAGS = @XRENDER_CFLAGS@ -XRENDER_LIBS = @XRENDER_LIBS@ -X_CFLAGS = @X_CFLAGS@ -X_LIBS = @X_LIBS@ -abs_builddir = @abs_builddir@ -abs_srcdir = @abs_srcdir@ -abs_top_builddir = @abs_top_builddir@ -abs_top_srcdir = @abs_top_srcdir@ -ac_ct_AR = @ac_ct_AR@ -ac_ct_CC = @ac_ct_CC@ -ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ -am__include = @am__include@ -am__leading_dot = @am__leading_dot@ -am__quote = @am__quote@ -am__tar = @am__tar@ -am__untar = @am__untar@ -bindir = @bindir@ -build = @build@ -build_alias = @build_alias@ -build_cpu = @build_cpu@ -build_os = @build_os@ -build_vendor = @build_vendor@ -builddir = @builddir@ -datadir = @datadir@ -datarootdir = @datarootdir@ -docdir = @docdir@ -dvidir = @dvidir@ -exec_prefix = @exec_prefix@ -host = @host@ -host_alias = @host_alias@ -host_cpu = @host_cpu@ -host_os = @host_os@ -host_vendor = @host_vendor@ -htmldir = @htmldir@ -includedir = @includedir@ -infodir = @infodir@ -install_sh = @install_sh@ -libdir = @libdir@ -libexecdir = @libexecdir@ -localedir = @localedir@ -localstatedir = @localstatedir@ -mandir = @mandir@ -mkdir_p = @mkdir_p@ -oldincludedir = @oldincludedir@ -pdfdir = @pdfdir@ -prefix = @prefix@ -program_transform_name = @program_transform_name@ -psdir = @psdir@ -sbindir = @sbindir@ -sharedstatedir = @sharedstatedir@ -srcdir = @srcdir@ -sysconfdir = @sysconfdir@ -target_alias = @target_alias@ -top_build_prefix = @top_build_prefix@ -top_builddir = @top_builddir@ -top_srcdir = @top_srcdir@ -INCLUDES = \ - -I$(top_srcdir)/lib \ - -I$(top_srcdir)/src \ - @CAIRO_XLIB_CFLAGS@ \ - @DBUS_CFLAGS@ \ - @PANGOCAIRO_CFLAGS@ \ - $(NULL) - -noinst_LIBRARIES = libui.a -libui_a_SOURCES = InputWindow.c InputWindow.h\ - MainWindow.c MainWindow.h \ - TrayWindow.c TrayWindow.h \ - MessageWindow.c MessageWindow.h \ - tray.c tray.h \ - AboutWindow.c AboutWindow.h \ - ui.c ui.h \ - skin.c skin.h \ - skinconfig.c \ - MenuWindow.c MenuWindow.h \ - font.c font.h - -all: all-am - -.SUFFIXES: -.SUFFIXES: .c .lo .o .obj -$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ - && { if test -f $@; then exit 0; else break; fi; }; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/ui/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign src/ui/Makefile -.PRECIOUS: Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(am__aclocal_m4_deps): - -clean-noinstLIBRARIES: - -test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES) -libui.a: $(libui_a_OBJECTS) $(libui_a_DEPENDENCIES) - $(AM_V_at)-rm -f libui.a - $(AM_V_AR)$(libui_a_AR) libui.a $(libui_a_OBJECTS) $(libui_a_LIBADD) - $(AM_V_at)$(RANLIB) libui.a - -mostlyclean-compile: - -rm -f *.$(OBJEXT) - -distclean-compile: - -rm -f *.tab.c - -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/AboutWindow.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/InputWindow.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/MainWindow.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/MenuWindow.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/MessageWindow.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/TrayWindow.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/font.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/skin.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/skinconfig.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tray.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ui.Po@am__quote@ - -.c.o: -@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c $< - -.c.obj: -@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` - -.c.lo: -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs - -ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - mkid -fID $$unique -tags: TAGS - -TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - set x; \ - here=`pwd`; \ - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: CTAGS -CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d "$(distdir)/$$file"; then \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ - else \ - test -f "$(distdir)/$$file" \ - || cp -p $$d/$$file "$(distdir)/$$file" \ - || exit 1; \ - fi; \ - done -check-am: all-am -check: check-am -all-am: Makefile $(LIBRARIES) -installdirs: -install: install-am -install-exec: install-exec-am -install-data: install-data-am -uninstall: uninstall-am - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-am -install-strip: - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - `test -z '$(STRIP)' || \ - echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install -mostlyclean-generic: - -clean-generic: - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-am - -clean-am: clean-generic clean-libtool clean-noinstLIBRARIES \ - mostlyclean-am - -distclean: distclean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -distclean-am: clean-am distclean-compile distclean-generic \ - distclean-tags - -dvi: dvi-am - -dvi-am: - -html: html-am - -html-am: - -info: info-am - -info-am: - -install-data-am: - -install-dvi: install-dvi-am - -install-dvi-am: - -install-exec-am: - -install-html: install-html-am - -install-html-am: - -install-info: install-info-am - -install-info-am: - -install-man: - -install-pdf: install-pdf-am - -install-pdf-am: - -install-ps: install-ps-am - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-am - -mostlyclean-am: mostlyclean-compile mostlyclean-generic \ - mostlyclean-libtool - -pdf: pdf-am - -pdf-am: - -ps: ps-am - -ps-am: - -uninstall-am: - -.MAKE: install-am install-strip - -.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ - clean-libtool clean-noinstLIBRARIES ctags distclean \ - distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am html html-am info info-am \ - install install-am install-data install-data-am install-dvi \ - install-dvi-am install-exec install-exec-am install-html \ - install-html-am install-info install-info-am install-man \ - install-pdf install-pdf-am install-ps install-ps-am \ - install-strip installcheck installcheck-am installdirs \ - maintainer-clean maintainer-clean-generic mostlyclean \ - mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ - pdf pdf-am ps ps-am tags uninstall uninstall-am - - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff -Nru fcitx-4.0.1/src/ui/MenuWindow.c fcitx-4.1.1/src/ui/MenuWindow.c --- fcitx-4.0.1/src/ui/MenuWindow.c 2010-12-17 04:20:19.000000000 +0000 +++ fcitx-4.1.1/src/ui/MenuWindow.c 1970-01-01 00:00:00.000000000 +0000 @@ -1,558 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2009~2010 by t3swing * - * t3swing@sina.com * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * - ***************************************************************************/ -#include -#include -#include -#include - -#include "core/fcitx.h" -#include "ui/MenuWindow.h" -#include "ui/skin.h" -#include "im/special/vk.h" -#include "tools/configfile.h" - -extern unsigned char iVKCount; -extern int iScreen; -extern VKS vks[]; -extern Atom windowTypeAtom, typeMenuAtom; - -XlibMenu mainMenu,imMenu,vkMenu,skinMenu; -static void DestroyXlibMenu(XlibMenu *menu); -static Bool CreateMainMenuWindow(); -static Bool CreateImMenuWindow (void); -static Bool CreateSkinMenuWindow (void); -static Bool CreateVKMenuWindow(); -static Bool ReverseColor(XlibMenu * Menu,int shellIndex); -static void MenuMark(Display * dpy,XlibMenu * Menu,int y,int i); -static void DrawArrow(cairo_t *cr, XlibMenu *menu, int line_y); -static void InitMenuDefault(XlibMenu * Menu); -static void AddMenuShell(XlibMenu* menu,char * tips,int isselect,MenuShellType type); -static void MoveSubMenu(XlibMenu *sub, XlibMenu *parent, int offseth, int dwidth, int dheight); - -const static UT_icd menuICD = {sizeof(MenuShell), NULL, NULL, NULL}; - -#define GetMenuShell(m, i) ((MenuShell*) utarray_eltptr(&(m)->shell, (i))) - -void InitMenuDefault(XlibMenu * menu) -{ - menu->iPosX=100; - menu->iPosY=100; - menu->width=sc.skinMenu.backImg.width; - menu->font_size=sc.skinFont.menuFontSize; - strcpy(menu->font,gs.menuFont); - menu->mark=-1; - utarray_init(&menu->shell, &menuICD); -} - -void AddMenuShell(XlibMenu* menu,char * tips,int isselect,MenuShellType type) -{ - MenuShell shell; - strcpy(shell.tipstr,tips); - shell.isselect = isselect; - shell.type = type; - shell.next = 0; - - utarray_push_back(&menu->shell, &shell); -} - -int CreateXlibMenu(Display * dpy,XlibMenu * menu) -{ - char strWindowName[]="Fcitx Menu Window"; - XSetWindowAttributes attrib; - unsigned long attribmask; - int depth; - int scr; - Colormap cmap; - Visual * vs; - XGCValues xgv; - GC gc; - - scr=DefaultScreen(dpy); - vs=FindARGBVisual (dpy, scr); - InitWindowAttribute(&vs, &cmap, &attrib, &attribmask, &depth); - - //开始只创建一个简单的窗口不做任何动作 - menu->menuWindow =XCreateWindow (dpy, - RootWindow (dpy, scr), - 0, 0, - MENU_WINDOW_WIDTH,MENU_WINDOW_HEIGHT, - 0, depth, InputOutput, - vs, attribmask, &attrib); - - if (menu->menuWindow == (Window) NULL) - return False; - - XSetTransientForHint (dpy, menu->menuWindow, DefaultRootWindow (dpy)); - - XChangeProperty (dpy, menu->menuWindow, windowTypeAtom, XA_ATOM, 32, PropModeReplace, (void *) &typeMenuAtom, 1); - - menu->pixmap = XCreatePixmap(dpy, - menu->menuWindow, - MENU_WINDOW_WIDTH, - MENU_WINDOW_HEIGHT, - depth); - - xgv.foreground = WhitePixel(dpy, scr); - gc = XCreateGC(dpy, menu->pixmap, GCForeground, &xgv); - XFillRectangle( - dpy, - menu->pixmap, - gc, - 0, - 0, - INPUT_BAR_MAX_LEN, - inputWindow.iInputWindowHeight); - menu->menu_cs=cairo_xlib_surface_create(dpy, - menu->pixmap, - vs, - MENU_WINDOW_WIDTH,MENU_WINDOW_HEIGHT); - XFreeGC(dpy, gc); - - XSelectInput (dpy, menu->menuWindow, KeyPressMask | ExposureMask | ButtonPressMask | ButtonReleaseMask | PointerMotionMask | LeaveWindowMask ); - - XTextProperty tp; - /* Set the name of the window */ - tp.value = (void *)strWindowName; - tp.encoding = XA_STRING; - tp.format = 16; - tp.nitems = strlen(strWindowName); - XSetWMName (dpy, menu->menuWindow, &tp); - - return True; -} - -void GetMenuSize(Display * dpy,XlibMenu * menu) -{ - int i=0; - int winheight=0; - int fontheight=0; - int menuwidth = 0; - - winheight = sc.skinMenu.marginTop + sc.skinMenu.marginBottom;//菜单头和尾都空8个pixel - fontheight= menu->font_size; - for (i=0;ishell);i++) - { - if ( GetMenuShell(menu, i)->type == MENUSHELL) - winheight += 6+fontheight; - else if ( GetMenuShell(menu, i)->type == DIVLINE) - winheight += 5; - - int width = StringWidth(GetMenuShell(menu, i)->tipstr, menu->font, menu->font_size); - if (width > menuwidth) - menuwidth = width; - } - menu->height = winheight; - menu->width = menuwidth + sc.skinMenu.marginLeft + sc.skinMenu.marginRight + 15 + 20; -} - -//根据Menu内容来绘制菜单内容 -void DrawXlibMenu(Display * dpy,XlibMenu * menu) -{ - GC gc = XCreateGC( dpy, menu->menuWindow, 0, NULL ); - int i=0; - int fontheight; - int iPosY = 0; - - fontheight= menu->font_size; - - GetMenuSize(dpy,menu); - - DrawMenuBackground(menu); - - iPosY=sc.skinMenu.marginTop; - for (i=0;ishell);i++) - { - if ( GetMenuShell(menu, i)->type == MENUSHELL) - { - DisplayText( dpy,menu,i,iPosY); - if (menu->mark == i)//void menuMark(Display * dpy,xlibMenu * Menu,int y,int i) - MenuMark(dpy,menu,iPosY,i); - iPosY=iPosY+6+fontheight; - } - else if ( GetMenuShell(menu, i)->type == DIVLINE) - { - DrawDivLine(dpy,menu,iPosY); - iPosY+=5; - } - } - - XResizeWindow(dpy, menu->menuWindow, menu->width, menu->height); - XCopyArea (dpy, - menu->pixmap, - menu->menuWindow, - gc, - 0, - 0, - menu->width, - menu->height, 0, 0); - XFreeGC(dpy, gc); - -} - -void DisplayXlibMenu(Display * dpy,XlibMenu * menu) -{ - XMapRaised (dpy, menu->menuWindow); - XMoveWindow(dpy, menu->menuWindow, menu->iPosX, menu->iPosY); -} - -void DrawDivLine(Display * dpy,XlibMenu * Menu,int line_y) -{ - int marginLeft = sc.skinMenu.marginLeft; - int marginRight = sc.skinMenu.marginRight; - cairo_t * cr; - cr=cairo_create(Menu->menu_cs); - fcitx_cairo_set_color(cr, &sc.skinMenu.lineColor); - cairo_set_line_width (cr, 2); - cairo_move_to(cr, marginLeft + 3, line_y+3); - cairo_line_to(cr, Menu->width - marginRight - 3, line_y+3); - cairo_stroke(cr); - cairo_destroy(cr); -} - -void MenuMark(Display * dpy,XlibMenu * menu,int y,int i) -{ - int marginLeft = sc.skinMenu.marginLeft; - double size = (menu->font_size * 0.7 ) / 2; - cairo_t *cr; - cr = cairo_create(menu->menu_cs); - if (GetMenuShell(menu, i)->isselect == 0) - { - fcitx_cairo_set_color(cr, &sc.skinFont.menuFontColor[MENU_INACTIVE]); - } - else - { - fcitx_cairo_set_color(cr, &sc.skinFont.menuFontColor[MENU_ACTIVE]); - } - cairo_translate(cr, marginLeft + 7, y + (menu->font_size / 2.0) ); - cairo_arc(cr, 0, 0, size , 0., 2*M_PI); - cairo_fill(cr); - cairo_destroy(cr); -} - -/* -* 显示菜单上面的文字信息,只需要指定窗口,窗口宽度,需要显示文字的上边界,字体,显示的字符串和是否选择(选择后反色) -* 其他都固定,如背景和文字反色不反色的颜色,反色框和字的位置等 -*/ -void DisplayText(Display * dpy,XlibMenu * menu,int shellindex,int line_y) -{ - int marginLeft = sc.skinMenu.marginLeft; - int marginRight = sc.skinMenu.marginRight; - cairo_t * cr; - cr=cairo_create(menu->menu_cs); - - SetFontContext(cr, menu->font, menu->font_size); - - if (GetMenuShell(menu, shellindex)->isselect ==0) - { - fcitx_cairo_set_color(cr, &sc.skinFont.menuFontColor[MENU_INACTIVE]); - - OutputStringWithContext(cr, GetMenuShell(menu, shellindex)->tipstr , 15 + marginLeft ,line_y); - - if (GetMenuShell(menu, shellindex)->next == 1) - DrawArrow(cr, menu, line_y); - } - else - { - cairo_set_operator(cr, CAIRO_OPERATOR_OVER); - fcitx_cairo_set_color(cr, &sc.skinMenu.activeColor); - cairo_rectangle (cr, marginLeft ,line_y, menu->width - marginRight - marginLeft,menu->font_size+4); - cairo_fill (cr); - - fcitx_cairo_set_color(cr, &sc.skinFont.menuFontColor[MENU_ACTIVE]); - OutputStringWithContext(cr, GetMenuShell(menu, shellindex)->tipstr , 15 + marginLeft ,line_y); - - if (GetMenuShell(menu, shellindex)->next == 1) - DrawArrow(cr, menu, line_y); - } - ResetFontContext(); - cairo_destroy(cr); -} - -void DrawArrow(cairo_t *cr, XlibMenu *menu, int line_y) -{ - int marginRight = sc.skinMenu.marginRight; - double size = menu->font_size * 0.4; - double offset = (menu->font_size - size) / 2; - cairo_move_to(cr,menu->width - marginRight - 1 - size, line_y + offset); - cairo_line_to(cr,menu->width - marginRight - 1 - size, line_y+size * 2 + offset); - cairo_line_to(cr,menu->width - marginRight - 1, line_y + size + offset ); - cairo_line_to(cr,menu->width - marginRight - 1 - size ,line_y + offset); - cairo_fill (cr); -} - -/** -*返回鼠标指向的菜单在menu中是第多少项 -*/ -int SelectShellIndex(XlibMenu * menu, int x, int y, int* offseth) -{ - int i; - int winheight=sc.skinMenu.marginTop; - int fontheight; - int marginLeft = sc.skinMenu.marginLeft; - - if (x < marginLeft) - return -1; - - fontheight= menu->font_size; - for (i=0;ishell);i++) - { - if (GetMenuShell(menu, i)->type == MENUSHELL) - { - if (y>winheight+1 && ytype == DIVLINE) - winheight+=5; - } - return -1; -} - -Bool ReverseColor(XlibMenu * menu,int shellIndex) -{ - Bool flag = False; - int i; - - int last = -1; - - for (i=0;ishell);i++) - { - if (GetMenuShell(menu, i)->isselect) - last = i; - - GetMenuShell(menu, i)->isselect=0; - } - if (shellIndex == last) - flag = True; - if (shellIndex >=0 && shellIndex < utarray_len(&menu->shell)) - GetMenuShell(menu, shellIndex)->isselect = 1; - return flag; -} - -void ClearSelectFlag(XlibMenu * menu) -{ - int i; - for (i=0;i< utarray_len(&menu->shell);i++) - { - GetMenuShell(menu, i)->isselect=0; - } -} - - -//以上为菜单的简单封装,下面为对菜单的操作部分 -//========================================================================================= -//创建菜单窗口 -Bool CreateMenuWindow( ) -{ - LoadMenuImage(); - CreateMainMenuWindow(); - CreateImMenuWindow(); //创建输入法选择菜单窗口 - CreateSkinMenuWindow(); //创建皮肤选择菜单窗口 - CreateVKMenuWindow(); //创建软键盘布局选择菜单窗口 - return 0; -} - -void DestroyMenuWindow() -{ - DestroyXlibMenu(&mainMenu); - DestroyXlibMenu(&imMenu); - DestroyXlibMenu(&skinMenu); - DestroyXlibMenu(&vkMenu); -} - -void DestroyXlibMenu(XlibMenu *menu) -{ - cairo_surface_destroy(menu->menu_cs); - XFreePixmap(dpy, menu->pixmap); - XDestroyWindow(dpy, menu->menuWindow); - utarray_done(&menu->shell); -} - -Bool CreateMainMenuWindow() -{ - InitMenuDefault(&mainMenu); - AddMenuShell(&mainMenu,_("About Fcitx"),0,MENUSHELL); - AddMenuShell(&mainMenu,"",0,DIVLINE); - AddMenuShell(&mainMenu,_("Switch Skin"),0,MENUSHELL); - AddMenuShell(&mainMenu,_("Switch IM"),0,MENUSHELL); - AddMenuShell(&mainMenu,_("Switch VK"),0,MENUSHELL); - AddMenuShell(&mainMenu,"",0,DIVLINE); - AddMenuShell(&mainMenu,_("Fcitx Config ..."),0,MENUSHELL); - AddMenuShell(&mainMenu,_("Exit Fcitx"),0,MENUSHELL); - GetMenuShell(&mainMenu, 2)->next=1; - GetMenuShell(&mainMenu, 3)->next=1; - GetMenuShell(&mainMenu, 4)->next=1; - CreateXlibMenu(dpy,&mainMenu); - GetMenuSize(dpy, &mainMenu); - return 0; -} - -//创建输入法选择菜单窗口 -Bool CreateImMenuWindow() -{ - Bool ret; - - InitMenuDefault(&imMenu); - ret=CreateXlibMenu(dpy,&imMenu); - return ret; -} - -//创建皮肤选择菜单窗口,皮肤菜单由于在窗口创建之初,信息不全,菜单结构在菜单显示之前再填充 -Bool CreateSkinMenuWindow() -{ - Bool ret; - InitMenuDefault(&skinMenu); - ret=CreateXlibMenu(dpy,&skinMenu); - return ret; -} - -//创建软键盘布局选择菜单窗口 -Bool CreateVKMenuWindow() -{ - Bool ret; - int i; - InitMenuDefault(&vkMenu); - for(i = 0; i < iVKCount; i ++) - AddMenuShell(&vkMenu, vks[i].strName, 0, MENUSHELL); - - ret=CreateXlibMenu(dpy,&vkMenu); - return ret; - -} - -void MoveSubMenu(XlibMenu *sub, XlibMenu *parent, int offseth, int dwidth, int dheight) -{ - sub->iPosX=parent->iPosX + parent->width - sc.skinMenu.marginRight - 4; - sub->iPosY=parent->iPosY + offseth - sc.skinMenu.marginTop; - - if ( sub->iPosX + sub->width > dwidth) - sub->iPosX=parent->iPosX - sub->width + sc.skinMenu.marginLeft + 4; - - if ( sub->iPosY + sub->height > dheight) - sub->iPosY = dheight - sub->height; - - XMoveWindow(dpy, sub->menuWindow, sub->iPosX, sub->iPosY); -} - -//主菜单事件处理 -void MainMenuEvent(int x,int y) -{ - int i,j; - char tmpstr[64]={0}; - int dwidth, dheight; - int offseth; - GetScreenSize(&dwidth, &dheight); - i=SelectShellIndex(&mainMenu, x, y, &offseth); - Bool flag = ReverseColor(&mainMenu,i); - if (flag) - return; - - DrawXlibMenu( dpy,&mainMenu); - DisplayXlibMenu(dpy,&mainMenu); - - switch (i) - { - //显示皮肤菜单 - case 2: - utarray_clear(&skinMenu.shell); - for (j=0;ji;j++) - { - char **sskin = (char**)utarray_eltptr(skinBuf, j); - AddMenuShell(&skinMenu, *sskin, 0, MENUSHELL); - } - ClearSelectFlag(&skinMenu); - DrawXlibMenu(dpy,&skinMenu); - MoveSubMenu(&skinMenu, &mainMenu, offseth, dwidth, dheight); - DisplayXlibMenu(dpy,&skinMenu); - break; - case 3: - utarray_clear(&imMenu.shell); - for (i=0;iisselect == 0) - XUnmapWindow (dpy, skinMenu.menuWindow); - if (GetMenuShell(&mainMenu, 3)->isselect == 0) - XUnmapWindow (dpy, imMenu.menuWindow); - if (GetMenuShell(&mainMenu, 4)->isselect == 0) - XUnmapWindow (dpy, vkMenu.menuWindow); -} - -//输入法菜单事件处理 -void IMMenuEvent(int x,int y) -{ - int i; - i=SelectShellIndex(&imMenu,x, y, NULL); - - Bool flag = ReverseColor(&imMenu,i); - if (flag) - return; - DrawXlibMenu(dpy,&imMenu); - DisplayXlibMenu(dpy,&imMenu); -} - -//虚拟键盘菜单事件处理 -void VKMenuEvent(int x,int y) -{ - int i; - i=SelectShellIndex(&vkMenu,x, y, NULL); - Bool flag = ReverseColor(&vkMenu,i); - - if (flag) - return; - DrawXlibMenu(dpy,&vkMenu); - DisplayXlibMenu(dpy,&vkMenu); -} - -//皮肤菜单事件处理 -void SkinMenuEvent(int x,int y) -{ - int i; - i=SelectShellIndex(&skinMenu,x, y, NULL); - Bool flag = ReverseColor(&skinMenu,i); - if (flag) - return; - DrawXlibMenu(dpy,&skinMenu); - DisplayXlibMenu(dpy,&skinMenu); -} - diff -Nru fcitx-4.0.1/src/ui/MenuWindow.h fcitx-4.1.1/src/ui/MenuWindow.h --- fcitx-4.0.1/src/ui/MenuWindow.h 2010-11-28 11:54:51.000000000 +0000 +++ fcitx-4.1.1/src/ui/MenuWindow.h 1970-01-01 00:00:00.000000000 +0000 @@ -1,109 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2009~2010 by t3swing * - * t3swing@sina.com * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * - ***************************************************************************/ -/* 鼠标点击logo图标的时候产生的窗口 */ - -#ifndef _MENUWINDOW_H_ -#define _MENUWINDOW_H_ - -#include "ui.h" -#include "core/xim.h" -#include "core/ime.h" -#include "im/pinyin/PYFA.h" -#include "MainWindow.h" -#include "TrayWindow.h" -#include -#include -#include - -#define MENU_WINDOW_WIDTH 200 -#define MENU_WINDOW_HEIGHT 400 - -#define IM_MENU_WINDOW_WIDTH 110 -#define IM_MENU_WINDOW_HEIGHT 300 - -#define SKIN_MENU_WINDOW_WIDTH 110 -#define SKIN_MENU_WINDOW_HEIGHT 300 - -#define VK_MENU_WINDOW_WIDTH 110 -#define VK_MENU_WINDOW_HEIGHT 300 - -typedef enum MenuState -{ - MENU_ACTIVE = 0, - MENU_INACTIVE = 1 -} MenuState; - -typedef enum -{ - MENUSHELL, //暂时只有菜单项和分割线两种类型 - DIVLINE -} MenuShellType; - -//菜单项属性 -typedef struct -{ - char tipstr[24]; - int next;//下一级菜单 - int isselect; - MenuShellType type; -} MenuShell; - -typedef struct -{ - int iPosX; - int iPosY; - int width; - int height; - Window menuWindow; - Pixmap pixmap; - cairo_surface_t *menu_cs; - int mark; - int font_size; - XColor bgcolor; - XColor bgselectcolor; - char font[32]; - XColor charcolor; - XColor charselectcolor; - UT_array shell; -} XlibMenu; - -extern XlibMenu mainMenu,imMenu,vkMenu,skinMenu; -Bool CreateMenuWindow (void); -void InitMenuWindowColor (void); -void DisplayMenuWindow (void); -void DrawMenuWindow (void); -void GetMenuSize(Display * dpy,XlibMenu * Menu); - -Bool CreateMenuWindow (void); - -int CreateXlibMenu(Display * dpy,XlibMenu * Menu); -void DrawXlibMenu(Display * dpy,XlibMenu * Menu); -void DrawDivLine(Display * dpy,XlibMenu * Menu,int line_y); -void DisplayText(Display * dpy,XlibMenu * Menu,int shellindex,int line_y); -int SelectShellIndex(XlibMenu * Menu, int x, int y, int* offseth); -void DisplayXlibMenu(Display * dpy,XlibMenu * Menu); -void ClearSelectFlag(XlibMenu * Menu); -void MainMenuEvent(int x,int y); -void IMMenuEvent(int x,int y); -void VKMenuEvent(int x,int y); -void SkinMenuEvent(int x,int y); -void DestroyMenuWindow(); - -#endif diff -Nru fcitx-4.0.1/src/ui/MessageWindow.c fcitx-4.1.1/src/ui/MessageWindow.c --- fcitx-4.0.1/src/ui/MessageWindow.c 2010-12-17 04:19:47.000000000 +0000 +++ fcitx-4.1.1/src/ui/MessageWindow.c 1970-01-01 00:00:00.000000000 +0000 @@ -1,167 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2010~2010 by CSSlayer * - * wengxt@gmail.com * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * - ***************************************************************************/ - -#include "core/fcitx.h" - -#include "ui/MessageWindow.h" -#include "ui/ui.h" -#include "core/xim.h" -#include "tools/configfile.h" -#include "fcitx-config/cutils.h" - -#include - -#include -#include - -extern Display *dpy; -extern int iScreen; -extern Atom killAtom, windowTypeAtom, typeDialogAtom; - -MessageWindow messageWindow; - -#define MESSAGE_WINDOW_MARGIN 20 -#define MESSAGE_WINDOW_LINESPACE 2 -static void InitMessageWindowProperty (void); - -Bool CreateMessageWindow (void) -{ - memset(&messageWindow, 0, sizeof(MessageWindow)); - messageWindow.color.r = messageWindow.color.g = messageWindow.color.b = 220.0 / 256; - messageWindow.fontColor.r = messageWindow.fontColor.g = messageWindow.fontColor.b = 0; - messageWindow.fontSize = 15; - messageWindow.width = 1; - messageWindow.height = 1; - - messageWindow.window = - XCreateSimpleWindow (dpy, DefaultRootWindow (dpy), 0, 0, 1, 1, 0, WhitePixel (dpy, DefaultScreen (dpy)), WhitePixel (dpy, DefaultScreen (dpy))); - - messageWindow.surface = cairo_xlib_surface_create(dpy, messageWindow.window, DefaultVisual(dpy, iScreen), 1, 1); - if (messageWindow.window == None) - return False; - - InitMessageWindowProperty (); - XSelectInput (dpy, messageWindow.window, ExposureMask | ButtonPressMask | ButtonReleaseMask | PointerMotionMask ); - - return True; -} - -void InitMessageWindowProperty (void) -{ - XSetTransientForHint (dpy, messageWindow.window, DefaultRootWindow (dpy)); - - XChangeProperty (dpy, messageWindow.window, windowTypeAtom, XA_ATOM, 32, PropModeReplace, (void *) &typeDialogAtom, 1); - - XSetWMProtocols(dpy, messageWindow.window, &killAtom, 1); -} - -void DisplayMessageWindow (void) -{ - int dwidth, dheight; - GetScreenSize(&dwidth, &dheight); - XMapRaised (dpy, messageWindow.window); - XMoveWindow (dpy, messageWindow.window, (dwidth - messageWindow.width) / 2, (dheight - messageWindow.height) / 2); -} - -void DrawMessageWindow (char *title, char **msg, int length) -{ - int i = 0; - if (messageWindow.window == None) - CreateMessageWindow(); - if (title) - { - if (messageWindow.title) - free(messageWindow.title); - messageWindow.title = strdup(title); - } - else - if (!messageWindow.title) - return; - - title = messageWindow.title; - FcitxLog(INFO, "%s", title); - - XTextProperty tp; - Xutf8TextListToTextProperty(dpy, &title, 1, XUTF8StringStyle, &tp); - XSetWMName(dpy, messageWindow.window, &tp); - XFree(tp.value); - - if (msg) - { - if (messageWindow.msg) - { - for(i =0 ;i messageWindow.width) - messageWindow.width = width; - } - - messageWindow.width += MESSAGE_WINDOW_MARGIN * 2; - XResizeWindow(dpy, messageWindow.window, messageWindow.width, messageWindow.height); - cairo_xlib_surface_set_size(messageWindow.surface, messageWindow.width,messageWindow.height); - - cairo_t *c = cairo_create(messageWindow.surface); - cairo_set_source_rgb(c, messageWindow.color.r, messageWindow.color.g, messageWindow.color.b); - cairo_set_operator(c, CAIRO_OPERATOR_SOURCE); - - SetFontContext(c, gs.font, messageWindow.fontSize); - - cairo_paint(c); - - cairo_set_source_rgb(c, messageWindow.fontColor.r, messageWindow.fontColor.g, messageWindow.fontColor.b); - - int x, y; - x = MESSAGE_WINDOW_MARGIN; - y = MESSAGE_WINDOW_MARGIN; - for (i = 0; i< length ;i ++) - { - OutputStringWithContext(c, msg[i], x, y); - y += messageWindow.fontSize + MESSAGE_WINDOW_LINESPACE; - } - - ResetFontContext(); - cairo_destroy(c); - - ActiveWindow(dpy, messageWindow.window); -} diff -Nru fcitx-4.0.1/src/ui/MessageWindow.h fcitx-4.1.1/src/ui/MessageWindow.h --- fcitx-4.0.1/src/ui/MessageWindow.h 2010-11-28 11:54:51.000000000 +0000 +++ fcitx-4.1.1/src/ui/MessageWindow.h 1970-01-01 00:00:00.000000000 +0000 @@ -1,48 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2010 by CSSlayer - * wengxt@gmail.com * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * - ***************************************************************************/ - -/* A very simple MessageBox for FCITX */ - -#ifndef _MESSAGE_WINDOW_H -#define _MESSAGE_WINDOW_H - -#include -#include "ui/skin.h" - -typedef struct MessageWindow -{ - Window window; - cairo_surface_t* surface; - ConfigColor color; - ConfigColor fontColor; - int height, width; - int fontSize; - char *title; - char **msg; - int length; -} MessageWindow; - -extern MessageWindow messageWindow; - -Bool CreateMessageWindow (void); -void DisplayMessageWindow (void); -void DrawMessageWindow (char *title, char **msg, int length); - -#endif diff -Nru fcitx-4.0.1/src/ui/skin.c fcitx-4.1.1/src/ui/skin.c --- fcitx-4.0.1/src/ui/skin.c 2010-12-17 04:20:11.000000000 +0000 +++ fcitx-4.1.1/src/ui/skin.c 1970-01-01 00:00:00.000000000 +0000 @@ -1,1017 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2009~2010 by t3swing * - * t3swing@gmail.com * - * Copyright (C) 2009~2010 by Yuking * - * yuking_net@sohu.com * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * - ***************************************************************************/ - -/** - * @file skin.c - * @author Yuking yuking_net@sohu.com t3swing t3swing@sina.com - * - * @date 2009-10-9 - * - * @brief 皮肤设置相关定义及初始化加载工作 - * - * - */ -#include -#include - -#include "core/fcitx.h" -#include "tools/tools.h" -#include "ui/ui.h" -#include "ui/skin.h" -#include "fcitx-config/xdg.h" -#include "tools/configfile.h" -#include "tools/profile.h" -#include "fcitx-config/fcitx-config.h" -#include "fcitx-config/cutils.h" -#include "im/special/vk.h" -#ifdef _ENABLE_TRAY -#include "ui/TrayWindow.h" -#endif - -#define ROUND_SIZE 60 - -static int LoadImage(FcitxImage * img,cairo_surface_t ** png, Bool fallback); -static void DestroyAllImage(); -static ConfigFileDesc* GetSkinDesc(); - -//定义全局皮肤配置结构 -FcitxSkin sc; - -//指定皮肤类型 在config文件中配置 -//指定皮肤所在的文件夹 一般在/usr/share/fcitx/skin目录下面 -StringHashSet skinDir; - -cairo_surface_t * bar; -cairo_surface_t * logo; -cairo_surface_t * punc[2]; -cairo_surface_t * corner[2]; -cairo_surface_t * lx[2]; -cairo_surface_t * chs_t[2]; -cairo_surface_t * lock[2]; -cairo_surface_t * vk[2]; -cairo_surface_t * input; -cairo_surface_t * menuBack; -cairo_surface_t * prev; -cairo_surface_t * next; -cairo_surface_t * english; -cairo_surface_t * otherim; -cairo_surface_t * trayActive; -cairo_surface_t * trayInactive; -cairo_surface_t * keyBoard; - -//定义全局皮肤配置结构 -FcitxSkin sc; - -MouseE ms_logo,ms_punc,ms_corner,ms_lx,ms_chs,ms_lock,ms_vk,ms_py; -MouseE *msE[] = {&ms_logo, &ms_punc, &ms_corner, &ms_lx, &ms_chs, &ms_lock, &ms_vk, &ms_py}; -//指定皮肤类型 在config文件中配置 -//指定皮肤所在的文件夹 一般在/usr/share/fcitx/skin目录下面 -UT_array *skinBuf; -extern Display *dpy; -static ConfigFileDesc * fcitxSkinDesc = NULL; - -static ConfigFileDesc* GetSkinDesc() -{ - if (!fcitxSkinDesc) - { - FILE *tmpfp; - tmpfp = GetXDGFileData("skin.desc", "r", NULL); - fcitxSkinDesc = ParseConfigFileDescFp(tmpfp); - fclose(tmpfp); - } - - return fcitxSkinDesc; -} - - -/** -@加载皮肤配置文件 -*/ -int LoadSkinConfig() -{ - FILE *fp; - char buf[PATH_MAX]={0}; - Bool isreload = False; - if (sc.config.configFile) - { - FreeConfigFile(sc.config.configFile); - free(sc.skinInfo.skinName); - free(sc.skinInfo.skinVersion); - free(sc.skinInfo.skinAuthor); - free(sc.skinInfo.skinDesc); - } - memset(&sc, 0, sizeof(FcitxSkin)); - -reload: - //获取配置文件的绝对路径 - { - if (!isreload) - { - snprintf(buf, PATH_MAX, "%s/fcitx_skin.conf", fc.skinType); - buf[PATH_MAX-1] ='\0'; - size_t len; - char ** path = GetXDGPath(&len, "XDG_CONFIG_HOME", ".config", "fcitx/skin" , DATADIR, "fcitx/skin" ); - - fp = GetXDGFile(buf, path, "r", len, NULL); - FreeXDGPath(path); - } - else - fp = fopen(DATADIR "/fcitx/skin/default/fcitx_skin.conf", "r"); - } - - if (fp) - { - ConfigFile *cfile; - ConfigFileDesc* skinDesc = GetSkinDesc(); - if (sc.config.configFile == NULL) - { - cfile = ParseConfigFileFp(fp, skinDesc); - } - else - { - cfile = sc.config.configFile; - cfile = ParseIniFp(fp, cfile); - } - if (!cfile) - { - fclose(fp); - fp = NULL; - } - else - { - FcitxSkinConfigBind(&sc, cfile, skinDesc); - ConfigBindSync((GenericConfig*)&sc); - } - } - - if (!fp) - { - if (strcmp(fc.skinType, "default") == 0) - { - FcitxLog(FATAL, _("Can not load default skin, is installion correct?")); - perror("fopen"); - exit(1); // 如果安装目录里面也没有配置文件,那就只好告诉用户,无法运行了 - } - perror("fopen"); - FcitxLog(WARNING, _("Can not load skin %s, return to default"), fc.skinType); - if (fc.skinType) - free(fc.skinType); - fc.skinType = strdup("default"); - isreload = True; - goto reload; - } - - - fclose(fp); - - return 0; - -} - -int LoadImage(FcitxImage * img,cairo_surface_t ** png, Bool fallback) -{ - char buf[PATH_MAX]; - if ( strlen(img->img_name) > 0 && strcmp( img->img_name ,"NONE.img") !=0) - { - char *skintype = strdup(fc.skinType); - size_t len; - char ** path = GetXDGPath(&len, "XDG_CONFIG_HOME", ".config", "fcitx/skin" , DATADIR, "fcitx/skin" ); - char *name; - while (True) { - snprintf(buf, PATH_MAX, "%s/%s", skintype, img->img_name); - buf[PATH_MAX-1] ='\0'; - - FILE* fp = GetXDGFile(buf, path, "r", len, &name); - - Bool flagNoFile = (fp == NULL); - if (fp) - { - fclose(fp); - - *png=cairo_image_surface_create_from_png(name); - if ( img->width ==0 || img->height== 0) - { - img->width=cairo_image_surface_get_width(*png); - img->height=cairo_image_surface_get_height(*png); - img->response_w=img->width; - img->response_h=img->height; - } - break; - } - if (flagNoFile && (!fallback || strcmp(skintype, "default") == 0)) - { - *png = NULL; - break; - } - - free(name); - free(skintype); - skintype = strdup("default"); - } - free(name); - free(skintype); - FreeXDGPath(path); - } - return 0; -} - - -void LoadMainBarImage() -{ - LoadImage( &sc.skinMainBar.backImg, &bar , False); - LoadImage( &sc.skinMainBar.logo, &logo, False); - LoadImage( &sc.skinMainBar.zhpunc, &punc[0], False); - LoadImage( &sc.skinMainBar.enpunc, &punc[1], False); - LoadImage( &sc.skinMainBar.chs, &chs_t[0], False); - LoadImage( &sc.skinMainBar.cht, &chs_t[1], False); - LoadImage( &sc.skinMainBar.halfcorner, &corner[0], False); - LoadImage( &sc.skinMainBar.fullcorner, &corner[1], False); - LoadImage( &sc.skinMainBar.unlock, &lock[0], False); - LoadImage( &sc.skinMainBar.lock, &lock[1], False); - LoadImage( &sc.skinMainBar.nolegend, &lx[0], False); - LoadImage( &sc.skinMainBar.legend, &lx[1], False); - LoadImage( &sc.skinMainBar.novk, &vk[0], False); - LoadImage( &sc.skinMainBar.vk, &vk[1], False); - LoadImage( &sc.skinMainBar.eng, &english, False); - LoadImage( &sc.skinMainBar.chn, &otherim, False); - int i = 0; - for (; i < iIMCount; i ++) - { - im[i].image.position_x = sc.skinMainBar.chn.position_x; - im[i].image.position_y = sc.skinMainBar.chn.position_y; - im[i].image.response_x = sc.skinMainBar.chn.response_x; - im[i].image.response_y = sc.skinMainBar.chn.response_y; - im[i].image.response_w = sc.skinMainBar.chn.response_w; - im[i].image.response_h = sc.skinMainBar.chn.response_h; - LoadImage(&im[i].image, &im[i].icon, False); - } -} - -void LoadVKImage() -{ - LoadImage( &sc.skinKeyboard.backImg, &keyBoard, True); -} - -void DrawMenuBackground(XlibMenu * menu) -{ - int resizeHeight = sc.skinMenu.backImg.height - sc.skinMenu.marginTop - sc.skinMenu.marginBottom; - int resizeWidth = sc.skinMenu.backImg.width - sc.skinMenu.marginLeft - sc.skinMenu.marginRight; - int marginTop = sc.skinMenu.marginTop; - int marginBottom = sc.skinMenu.marginBottom; - int marginLeft = sc.skinMenu.marginLeft; - int marginRight = sc.skinMenu.marginRight; - - if (resizeHeight <= 0) - resizeHeight = 1; - - if (resizeWidth <= 0) - resizeWidth = 1; - - cairo_t *c = cairo_create(menu->menu_cs); - - cairo_set_operator(c, CAIRO_OPERATOR_SOURCE); - cairo_set_source_surface(c, menuBack, 0, 0); - - - /* 九宫格 - * 7 8 9 - * 4 5 6 - * 1 2 3 - */ - - /* part 1 */ - cairo_save(c); - cairo_translate(c, 0, menu->height - marginBottom); - cairo_set_source_surface(c, menuBack, 0, -marginTop -resizeHeight); - cairo_rectangle (c, 0, 0, marginLeft, marginBottom); - cairo_clip(c); - cairo_paint(c); - cairo_restore(c); - - /* part 3 */ - cairo_save(c); - cairo_translate(c, menu->width - marginRight, menu->height - marginBottom); - cairo_set_source_surface(c, menuBack, -marginLeft -resizeWidth, -marginTop -resizeHeight); - cairo_rectangle (c, 0, 0, marginRight, marginBottom); - cairo_clip(c); - cairo_paint(c); - cairo_restore(c); - - - /* part 7 */ - cairo_save(c); - cairo_rectangle (c, 0, 0, marginLeft, marginTop); - cairo_clip(c); - cairo_paint(c); - cairo_restore(c); - - /* part 9 */ - cairo_save(c); - cairo_translate(c, menu->width - marginRight, 0); - cairo_set_source_surface(c, menuBack, -marginLeft -resizeWidth, 0); - cairo_rectangle (c, 0, 0, marginRight, marginTop); - cairo_clip(c); - cairo_paint(c); - cairo_restore(c); - - /* part 2 & 8 */ - { - - if ( sc.skinMenu.resizeH == R_COPY) - { - int repaint_times=(menu->width - marginLeft - marginRight)/resizeWidth; - int remain_width=(menu->width - marginLeft - marginRight)% resizeWidth; - int i=0; - - for (i=0;iheight - marginBottom); - cairo_set_source_surface(c, menuBack, -marginLeft, -marginTop -resizeHeight); - cairo_rectangle (c,0,0,resizeWidth,marginBottom); - cairo_clip(c); - cairo_paint(c); - cairo_restore(c); - } - - if (remain_width != 0) - { - /* part 8 */ - cairo_save(c); - cairo_translate(c, marginLeft + repaint_times*resizeWidth, 0); - cairo_set_source_surface(c, menuBack, -marginLeft, 0); - cairo_rectangle (c,0,0,remain_width, marginTop); - cairo_clip(c); - cairo_paint(c); - cairo_restore(c); - - /* part 2 */ - cairo_save(c); - cairo_translate(c, marginLeft + repaint_times*resizeWidth, menu->height - marginBottom); - cairo_set_source_surface(c, menuBack, -marginLeft, -marginTop -resizeHeight); - cairo_rectangle (c,0,0,remain_width,marginBottom); - cairo_clip(c); - cairo_paint(c); - cairo_restore(c); - } - } - else if ( sc.skinMenu.resizeH == R_RESIZE) - { - cairo_save(c); - cairo_translate(c, marginLeft, 0); - cairo_scale(c, (double)(menu->width - marginLeft - marginRight)/(double)resizeWidth, 1); - cairo_set_source_surface(c, menuBack, -marginLeft, 0); - cairo_rectangle (c,0,0, resizeWidth, marginTop); - cairo_clip(c); - cairo_paint(c); - cairo_restore(c); - - cairo_save(c); - cairo_translate(c, marginLeft, menu->height - marginBottom); - cairo_scale(c, (double)(menu->width - marginLeft - marginRight)/(double)resizeWidth, 1); - cairo_set_source_surface(c, menuBack, -marginLeft, -marginTop -resizeHeight); - cairo_rectangle (c,0,0, resizeWidth, marginBottom); - cairo_clip(c); - cairo_paint(c); - cairo_restore(c); - } - } - - /* part 4 & 6 */ - { - - if ( sc.skinMenu.resizeV == R_COPY) - { - int repaint_times=(menu->height - marginTop - marginBottom)/resizeHeight; - int remain_height=(menu->height - marginTop - marginBottom)% resizeHeight; - int i=0; - - for (i=0;iwidth - marginRight, marginTop + i*resizeHeight); - cairo_set_source_surface(c, menuBack, -marginLeft -resizeWidth, -marginTop); - cairo_rectangle (c,0,0,marginRight,resizeHeight); - cairo_clip(c); - cairo_paint(c); - cairo_restore(c); - } - - if (remain_height != 0) - { - /* part 8 */ - cairo_save(c); - cairo_translate(c, 0, marginTop + repaint_times*resizeHeight); - cairo_set_source_surface(c, menuBack, 0, -marginTop); - cairo_rectangle (c,0,0, marginLeft, remain_height); - cairo_clip(c); - cairo_paint(c); - cairo_restore(c); - - /* part 2 */ - cairo_save(c); - cairo_translate(c, menu->width - marginRight, marginTop + repaint_times*resizeHeight); - cairo_set_source_surface(c, menuBack, -marginLeft -resizeWidth, -marginTop); - cairo_rectangle (c,0,0,marginRight, remain_height); - cairo_clip(c); - cairo_paint(c); - cairo_restore(c); - } - } - else if ( sc.skinMenu.resizeV == R_RESIZE) - { - cairo_save(c); - cairo_translate(c, 0, marginTop); - cairo_scale(c, 1, (double)(menu->height - marginTop - marginBottom)/(double)resizeHeight); - cairo_set_source_surface(c, menuBack, 0, -marginTop); - cairo_rectangle (c,0,0, marginLeft, resizeHeight); - cairo_clip(c); - cairo_paint(c); - cairo_restore(c); - - cairo_save(c); - cairo_translate(c, menu->width - marginRight, marginTop); - cairo_scale(c, 1, (double)(menu->height - marginTop - marginBottom)/(double)resizeHeight); - cairo_set_source_surface(c, menuBack, -marginLeft -resizeWidth, -marginTop); - cairo_rectangle (c,0,0, marginRight, resizeHeight); - cairo_clip(c); - cairo_paint(c); - cairo_restore(c); - } - } - - /* part 5 */ - { - int repaintH = 0, repaintV = 0; - int remainW = 0, remainH = 0; - double scaleX = 1.0, scaleY = 1.0; - - if (sc.skinMenu.resizeH == R_COPY) - { - repaintH = (menu->width - marginLeft - marginRight)/resizeWidth + 1; - remainW = (menu->width - marginLeft - marginRight)% resizeWidth; - } - else if (sc.skinMenu.resizeH == R_RESIZE) - { - repaintH = 1; - scaleX = (double)(menu->width - marginLeft - marginRight)/(double)resizeWidth; - } - - if (sc.skinMenu.resizeV == R_COPY) - { - repaintV = (menu->height - marginTop - marginBottom)/(double)resizeHeight + 1; - remainH = (menu->height - marginTop - marginBottom)%resizeHeight; - } - else if (sc.skinMenu.resizeV == R_RESIZE) - { - repaintV = 1; - scaleY = (double)(menu->height - marginTop - marginBottom)/(double)resizeHeight; - } - - - int i, j; - for (i = 0; i < repaintH; i ++) - { - for (j = 0; j < repaintV; j ++) - { - cairo_save(c); - cairo_translate(c, marginLeft + i * resizeWidth , marginTop + j * resizeHeight); - cairo_scale(c, scaleX, scaleY); - cairo_set_source_surface(c, menuBack, -marginLeft, -marginTop); - int w = resizeWidth,h = resizeHeight; - - if (sc.skinMenu.resizeV == R_COPY && j == repaintV - 1) - h = remainH; - - if (sc.skinMenu.resizeH == R_COPY && i == repaintH -1 ) - w = remainW; - - cairo_rectangle (c,0,0, w, h); - cairo_clip(c); - cairo_paint(c); - cairo_restore(c); - } - } - } - cairo_destroy(c); -} - -void LoadInputBarImage() -{ - LoadImage( &sc.skinInputBar.backImg, &input, False); - LoadImage( &sc.skinInputBar.backArrow, &prev, False); - LoadImage( &sc.skinInputBar.forwardArrow, &next, False); -} - -void LoadTrayImage() -{ - LoadImage( &sc.skinTrayIcon.active, &trayActive, False); - LoadImage( &sc.skinTrayIcon.inactive, &trayInactive, False); -} - -void LoadMenuImage() -{ - LoadImage( &sc.skinMenu.backImg, &menuBack, False); -} - -void DestroyImage(cairo_surface_t ** png) -{ - if (png != NULL) - cairo_surface_destroy(*png); - *png=NULL; -} - -void DestroyAllImage() -{ - DestroyImage(&bar); - DestroyImage(&logo); - DestroyImage(&punc[0]); - DestroyImage(&punc[1]); - DestroyImage(&corner[0]); - DestroyImage(&corner[1]); - DestroyImage(&lx[0]); - DestroyImage(&lx[1]); - DestroyImage(&chs_t[0]); - DestroyImage(&chs_t[1]); - DestroyImage(&lock[0]); - DestroyImage(&lock[1]); - DestroyImage(&vk[0]); - DestroyImage(&vk[1]); - DestroyImage(&english); - DestroyImage(&otherim); - - DestroyImage(&input); - DestroyImage(&prev); - DestroyImage(&next); - DestroyImage(&trayActive); - DestroyImage(&trayInactive); - - DestroyImage(&menuBack); - - DestroyImage(&keyBoard); - - int i = 0; - for (; i < iIMCount; i ++) - DestroyImage(&im[i].icon); -} - -/** -*输入条的绘制非常注重效率,画笔在绘图过程中不释放 -*/ -void LoadInputMessage() -{ - int i = 0; - int fontSize; - - fontSize=sc.skinFont.fontSize; - - ConfigColor cursorColor = sc.skinInputBar.cursorColor; - //输入条背景图画笔 - inputWindow.c_back = cairo_create(inputWindow.cs_input_bar); - - for (i = 0; i < 7 ; i ++) - { - inputWindow.c_font[i] = cairo_create(inputWindow.cs_input_bar); - fcitx_cairo_set_color(inputWindow.c_font[i], &sc.skinFont.fontColor[i]); -#ifndef _ENABLE_PANGO - SetFontContext(inputWindow.c_font[i], gs.font, sc.skinFont.fontSize); -#endif - } - inputWindow.c_font[7] = inputWindow.c_font[0]; - - //光标画笔 - inputWindow.c_cursor=cairo_create(inputWindow.cs_input_bar); - fcitx_cairo_set_color(inputWindow.c_cursor, &cursorColor); - cairo_set_line_width (inputWindow.c_cursor, 1); -} - -void DrawImage(cairo_t **c,FcitxImage img,cairo_surface_t * png,MouseE mouse) -{ - cairo_t * cr; - if ( strlen(img.img_name) == 0 || strcmp( img.img_name ,"NONE.img") ==0 || !png) - return; - - if (mouse == MOTION) - { - cairo_set_source_surface(*c,png, img.position_x, img.position_y); - cairo_paint_with_alpha(*c,0.7); - - } - else if (mouse == PRESS) - { - cr=cairo_create(mainWindow.cs_main_bar); - cairo_set_operator(cr, CAIRO_OPERATOR_OVER); - cairo_translate(cr, img.position_x+(int)(img.width*0.2/2), img.position_y+(int)(img.height*0.2/2)); - cairo_scale(cr, 0.8, 0.8); - cairo_set_source_surface(cr,png,0,0); - cairo_paint(cr); - cairo_destroy(cr); - } - else //if( img.mouse == RELEASE) - { - cairo_set_source_surface(*c,png, img.position_x, img.position_y); - cairo_paint(*c); - } -} - -void DrawInputBar(Messages * msgup, Messages *msgdown ,unsigned int * iwidth) -{ - int i; - Bool bUseGBKT = fcitxProfile.bUseGBKT; - char *strUp[MAX_MESSAGE_COUNT]; - char *strDown[MAX_MESSAGE_COUNT]; - int posUp[MAX_MESSAGE_COUNT]; - int posDown[MAX_MESSAGE_COUNT]; - int png_width,png_height; - int repaint_times=0,remain_width=0; - int input_bar_len=0, oldlen = *iwidth; - int resizePos=0; - int resizeWidth=0; - RESIZERULE flag=0; - int cursor_pos=0; - int up_len,down_len; - int iChar = iCursorPos; - cairo_t *c; - - if (!msgup->changed && !msgdown->changed) - return; - - resizePos=sc.skinInputBar.resizePos; - resizeWidth=(sc.skinInputBar.resizeWidth==0)?20:sc.skinInputBar.resizeWidth; - flag=sc.skinInputBar.resize; - up_len = 0; -#ifdef _ENABLE_PANGO /* special case which only macro unable to handle */ - SetFontContext(dummy, gs.font, sc.skinFont.fontSize); -#endif - - for (i = 0; i < msgup->msgCount ; i++) - { - if (bUseGBKT) - strUp[i] = ConvertGBKSimple2Tradition(msgup->msg[i].strMsg); - else - strUp[i] = msgup->msg[i].strMsg; - posUp[i] = sc.skinInputBar.layoutLeft + up_len; - - up_len += StringWidthWithContext(inputWindow.c_font[msgup->msg[i].type], strUp[i]); - if (inputWindow.bShowCursor) - { - int length = strlen(msgup->msg[i].strMsg); - if (iChar >= 0) - { - if (iChar < length) - { - char strTemp[MESSAGE_MAX_LENGTH]; - char *strGBKT = NULL; - strncpy(strTemp, msgup->msg[i].strMsg, iChar); - strTemp[iChar] = '\0'; - if (bUseGBKT) - strGBKT = ConvertGBKSimple2Tradition(strTemp); - else - strGBKT = strTemp; - cursor_pos= posUp[i] - + StringWidthWithContext(inputWindow.c_font[msgup->msg[i].type], strGBKT) + 2; - if (bUseGBKT) - free(strGBKT); - } - iChar -= length; - } - } - - } - - if (iChar >= 0) - cursor_pos = sc.skinInputBar.layoutLeft + up_len; - - down_len = 0; - for (i = 0; i < msgdown->msgCount ; i++) - { - if (bUseGBKT) - strDown[i] = ConvertGBKSimple2Tradition(msgdown->msg[i].strMsg); - else - strDown[i] = msgdown->msg[i].strMsg; - posDown[i] = sc.skinInputBar.layoutLeft + down_len; - down_len += StringWidthWithContext(inputWindow.c_font[msgdown->msg[i].type], strDown[i]); - } - - input_bar_len=(up_lensc.skinInputBar.backImg.width)?input_bar_len:sc.skinInputBar.backImg.width; - input_bar_len=(input_bar_len>=INPUT_BAR_MAX_LEN)?INPUT_BAR_MAX_LEN:input_bar_len; - *iwidth=input_bar_len; - - png_width=sc.skinInputBar.backImg.width; - png_height=sc.skinInputBar.backImg.height; - - //重绘的次数 - repaint_times=(input_bar_len - png_width)/resizeWidth+1; - //不够汇一次的剩余的长度 - remain_width=(input_bar_len - png_width)%resizeWidth; - - if (oldlen != input_bar_len) - { - c=cairo_create(inputWindow.cs_input_back); - - //把cr设定位png图像,并保存 - cairo_set_source_surface(c, input, 0, 0); - cairo_save(c); - - //画输入条第一部分(从开始到重复或者延伸段开始的位置) - cairo_set_operator(c, CAIRO_OPERATOR_SOURCE); - cairo_rectangle (c,0,0,resizePos,png_height); - cairo_clip(c); - cairo_paint(c); - - //再画输入条的第三部分(因为第二部分可变,最后处理会比较方便) - cairo_restore(c); - cairo_save(c); - cairo_set_operator(c, CAIRO_OPERATOR_SOURCE); - cairo_translate(c, input_bar_len-(png_width-resizePos-resizeWidth), 0); - cairo_set_source_surface(c, input, -resizePos-resizeWidth, 0); - cairo_rectangle (c,0,0,png_width-resizePos-resizeWidth,png_height); - cairo_clip(c); - cairo_paint(c); - - //画第二部分,智能变化有两种方式 - if ( flag == R_COPY) // - { - int i=0; - - //先把整段的都绘上去 - for (i=0;imsgCount ; i++) - { - OutputStringWithContext(inputWindow.c_font[msgup->msg[i].type], strUp[i], posUp[i], sc.skinInputBar.inputPos - sc.skinFont.fontSize); - if (bUseGBKT) free(strUp[i]); - } - - for (i = 0; i < msgdown->msgCount ; i++) - { - OutputStringWithContext(inputWindow.c_font[msgdown->msg[i].type], strDown[i], posDown[i], sc.skinInputBar.outputPos - sc.skinFont.fontSize); - if (bUseGBKT) free(strDown[i]); - } - - ResetFontContext(); - - //画光标 - if (inputWindow.bShowCursor ) - { - cairo_move_to(inputWindow.c_cursor,cursor_pos,sc.skinInputBar.inputPos+2); - cairo_line_to(inputWindow.c_cursor,cursor_pos,sc.skinInputBar.inputPos-sc.skinFont.fontSize); - cairo_stroke(inputWindow.c_cursor); - } - - cairo_destroy(c); - msgup->changed = False; - msgdown->changed = False; -} - -/* -*把鼠标状态初始化为某一种状态. -*/ -Bool SetMouseStatus(MouseE m, MouseE* e, MouseE s) -{ - Bool changed = False; - int i = 0; - for (i = 0 ;i < 8; i ++) - { - MouseE obj; - if (msE[i] == e) - obj = s; - else - obj = m; - - if (obj != *msE[i]) - changed = True; - - *msE[i] = obj; - } - - return changed; -} - - -void DisplaySkin(char * skinname) -{ - if (fc.bUseDBus) - return; - char *pivot = fc.skinType; - fc.skinType= strdup(skinname); - if (pivot) - free(pivot); - - XUnmapWindow (dpy, mainWindow.window); - CloseInputWindow(); - - DestroyAllImage(); - - DestroyMainWindow(); - DestroyInputWindow(); - DestroyMenuWindow(); - DestroyVKWindow(); - - LoadSkinConfig(); - - InitComposite(); - - CreateMainWindow (); - CreateInputWindow (); - - CreateMenuWindow(); - CreateVKWindow(); - - DrawMainWindow (); - DrawInputWindow (); -#ifdef _ENABLE_TRAY - LoadTrayImage(); - if (GetCurrentState() == IS_CHN) - DrawTrayWindow (ACTIVE_ICON, 0, 0, tray.size, tray.size ); - else - DrawTrayWindow (INACTIVE_ICON, 0, 0, tray.size, tray.size ); -#endif - - XMapRaised(dpy,mainWindow.window); -} - -//图片文件加载函数完成 -/*-------------------------------------------------------------------------------------------------------------*/ -//skin目录下读入skin的文件夹名 - -int LoadSkinDirectory() -{ - if (!skinBuf) - { - skinBuf = malloc(sizeof(UT_array)); - utarray_init(skinBuf, &ut_str_icd); - } - else - { - utarray_clear(skinBuf); - } - int i ; - DIR *dir; - struct dirent *drt; - struct stat fileStat; - size_t len; - char pathBuf[PATH_MAX]; - char **skinPath = GetXDGPath(&len, "XDG_CONFIG_HOME", ".config", "fcitx/skin" , DATADIR, "fcitx/skin" ); - for (i = 0; i< len; i++) - { - dir = opendir(skinPath[i]); - if (dir == NULL) - continue; - - while ((drt = readdir(dir)) != NULL) - { - if (strcmp(drt->d_name , ".") == 0 || strcmp(drt->d_name, "..") == 0) - continue; - sprintf(pathBuf,"%s/%s",skinPath[i],drt->d_name); - - if ( stat(pathBuf,&fileStat) == -1) - { - continue; - } - if ( fileStat.st_mode & S_IFDIR) - { - /* check duplicate name */ - int j = 0; - for (;ji;j++) - { - char **name = (char**) utarray_eltptr(skinBuf, j); - if (strcmp(*name, drt->d_name) == 0) - break; - } - if (j == skinBuf->i) - { - char *temp = drt->d_name; - utarray_push_back(skinBuf, &temp); - } - } - } - - closedir(dir); - } - - FreeXDGPath(skinPath); - - return 0; -} diff -Nru fcitx-4.0.1/src/ui/skinconfig.c fcitx-4.1.1/src/ui/skinconfig.c --- fcitx-4.0.1/src/ui/skinconfig.c 2010-12-06 07:52:12.000000000 +0000 +++ fcitx-4.1.1/src/ui/skinconfig.c 1970-01-01 00:00:00.000000000 +0000 @@ -1,90 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2010~2010 by t3swing * - * t3swing@gmail.com * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * - ***************************************************************************/ - -#include "core/fcitx.h" - -#include "ui/skin.h" -#include "ui/MenuWindow.h" -#include "fcitx-config/fcitx-config.h" - -CONFIG_BINDING_BEGIN(FcitxSkin); -CONFIG_BINDING_REGISTER("SkinInfo","Name",skinInfo.skinName); -CONFIG_BINDING_REGISTER("SkinInfo","Version",skinInfo.skinVersion); -CONFIG_BINDING_REGISTER("SkinInfo","Author",skinInfo.skinAuthor); -CONFIG_BINDING_REGISTER("SkinInfo","Desc",skinInfo.skinDesc); - -CONFIG_BINDING_REGISTER("SkinFont","FontSize",skinFont.fontSize); -CONFIG_BINDING_REGISTER("SkinFont","MenuFontSize",skinFont.menuFontSize); -CONFIG_BINDING_REGISTER("SkinFont","TipColor",skinFont.fontColor[MSG_TIPS]); -CONFIG_BINDING_REGISTER("SkinFont","InputColor",skinFont.fontColor[MSG_INPUT]); -CONFIG_BINDING_REGISTER("SkinFont","IndexColor",skinFont.fontColor[MSG_INDEX]); -CONFIG_BINDING_REGISTER("SkinFont","UserPhraseColor",skinFont.fontColor[MSG_USERPHR]); -CONFIG_BINDING_REGISTER("SkinFont","FirstCandColor",skinFont.fontColor[MSG_FIRSTCAND]); -CONFIG_BINDING_REGISTER("SkinFont","CodeColor",skinFont.fontColor[MSG_CODE]); -CONFIG_BINDING_REGISTER("SkinFont","OtherColor",skinFont.fontColor[MSG_OTHER]); -CONFIG_BINDING_REGISTER("SkinFont","ActiveMenuColor",skinFont.menuFontColor[MENU_ACTIVE]); -CONFIG_BINDING_REGISTER("SkinFont","InactiveMenuColor",skinFont.menuFontColor[MENU_INACTIVE]); - -CONFIG_BINDING_REGISTER("SkinMainBar","BackImg",skinMainBar.backImg); -CONFIG_BINDING_REGISTER("SkinMainBar","Logo",skinMainBar.logo); -CONFIG_BINDING_REGISTER("SkinMainBar","ZhPunc",skinMainBar.zhpunc); -CONFIG_BINDING_REGISTER("SkinMainBar","EnPunc",skinMainBar.enpunc); -CONFIG_BINDING_REGISTER("SkinMainBar","Chs",skinMainBar.chs); -CONFIG_BINDING_REGISTER("SkinMainBar","Cht",skinMainBar.cht); -CONFIG_BINDING_REGISTER("SkinMainBar","HalfCorner",skinMainBar.halfcorner); -CONFIG_BINDING_REGISTER("SkinMainBar","FullCorner",skinMainBar.fullcorner); -CONFIG_BINDING_REGISTER("SkinMainBar","Unlock",skinMainBar.unlock); -CONFIG_BINDING_REGISTER("SkinMainBar","Lock", skinMainBar.lock); -CONFIG_BINDING_REGISTER("SkinMainBar","Legend",skinMainBar.legend); -CONFIG_BINDING_REGISTER("SkinMainBar","NoLegend",skinMainBar.nolegend); -CONFIG_BINDING_REGISTER("SkinMainBar","VK",skinMainBar.vk); -CONFIG_BINDING_REGISTER("SkinMainBar","NoVK",skinMainBar.novk); -CONFIG_BINDING_REGISTER("SkinMainBar","Eng",skinMainBar.eng); -CONFIG_BINDING_REGISTER("SkinMainBar","Chn",skinMainBar.chn); -CONFIG_BINDING_REGISTER("SkinInputBar","BackImg",skinInputBar.backImg); -CONFIG_BINDING_REGISTER("SkinInputBar","Resize", skinInputBar.resize); -CONFIG_BINDING_REGISTER("SkinInputBar","ResizePos", skinInputBar.resizePos); -CONFIG_BINDING_REGISTER("SkinInputBar","ResizeWidth", skinInputBar.resizeWidth); -CONFIG_BINDING_REGISTER("SkinInputBar","InputPos", skinInputBar.inputPos); -CONFIG_BINDING_REGISTER("SkinInputBar","OutputPos",skinInputBar.outputPos); -CONFIG_BINDING_REGISTER("SkinInputBar","LayoutLeft", skinInputBar.layoutLeft); -CONFIG_BINDING_REGISTER("SkinInputBar","LayoutRight", skinInputBar.layoutRight); -CONFIG_BINDING_REGISTER("SkinInputBar","CursorColor",skinInputBar.cursorColor); -CONFIG_BINDING_REGISTER("SkinInputBar","BackArrow",skinInputBar.backArrow); -CONFIG_BINDING_REGISTER("SkinInputBar","ForwardArrow",skinInputBar.forwardArrow); - -CONFIG_BINDING_REGISTER("SkinTrayIcon","Active",skinTrayIcon.active); -CONFIG_BINDING_REGISTER("SkinTrayIcon","Inactive",skinTrayIcon.inactive); - -CONFIG_BINDING_REGISTER("SkinMenu", "BackImg", skinMenu.backImg); -CONFIG_BINDING_REGISTER("SkinMenu", "ResizeVertical", skinMenu.resizeV); -CONFIG_BINDING_REGISTER("SkinMenu", "ResizeHorizontal", skinMenu.resizeH); -CONFIG_BINDING_REGISTER("SkinMenu", "MarginTop", skinMenu.marginTop); -CONFIG_BINDING_REGISTER("SkinMenu", "MarginBottom", skinMenu.marginBottom); -CONFIG_BINDING_REGISTER("SkinMenu", "MarginLeft", skinMenu.marginLeft); -CONFIG_BINDING_REGISTER("SkinMenu", "MarginRight", skinMenu.marginRight); -CONFIG_BINDING_REGISTER("SkinMenu", "ActiveColor", skinMenu.activeColor); -CONFIG_BINDING_REGISTER("SkinMenu", "LineColor", skinMenu.lineColor); - -CONFIG_BINDING_REGISTER("SkinKeyboard", "BackImg", skinKeyboard.backImg); -CONFIG_BINDING_REGISTER("SkinKeyboard", "KeyColor", skinKeyboard.keyColor); - -CONFIG_BINDING_END() - diff -Nru fcitx-4.0.1/src/ui/skin.h fcitx-4.1.1/src/ui/skin.h --- fcitx-4.0.1/src/ui/skin.h 2010-12-15 22:54:56.000000000 +0000 +++ fcitx-4.1.1/src/ui/skin.h 1970-01-01 00:00:00.000000000 +0000 @@ -1,215 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2009-2010 by t3swing * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * - ***************************************************************************/ -/** - * @file skin.h - * @author t3swing t3swing@sina.com - * - * @date 2009-10-9 - * - * @brief 皮肤设置相关定义及初始化加载工作 - * - * - */ - -#ifndef _SKIN_H -#define _SKIN_H - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include "MainWindow.h" -#include "InputWindow.h" -#include "core/IC.h" -#include "core/ime.h" -#include "tools/utarray.h" -#include "ui/MenuWindow.h" - -#define SIZEX 800 -#define SIZEY 200 -//输入条最大长度(缓冲区大小由这个决定) -#define INPUT_BAR_MAX_LEN 1500 - -typedef enum -{ - R_COPY = 0, - R_RESIZE = 1, - R_FIX = 2 -} RESIZERULE; - -typedef struct -{ - char *skinName; - char *skinVersion; - char *skinAuthor; - char *skinDesc; -} SkinInfo; - -typedef struct -{ - int fontSize; - int menuFontSize; - ConfigColor fontColor[7]; - ConfigColor menuFontColor[2]; -} SkinFont; - -typedef struct -{ - FcitxImage backImg; - RESIZERULE resizeV; - RESIZERULE resizeH; - int marginTop; - int marginBottom; - int marginLeft; - int marginRight; - ConfigColor activeColor; - ConfigColor lineColor; -} SkinMenu; - -typedef struct -{ - FcitxImage backImg; - FcitxImage logo; - FcitxImage zhpunc; - FcitxImage enpunc; - FcitxImage chs; - FcitxImage cht; - FcitxImage halfcorner; - FcitxImage fullcorner; - FcitxImage unlock; - FcitxImage lock; - FcitxImage legend; - FcitxImage nolegend; - FcitxImage vk; - FcitxImage novk; - FcitxImage eng; - FcitxImage chn; -} SkinMainBar; - -typedef struct -{ - FcitxImage backImg; - RESIZERULE resize; - int resizePos; - int resizeWidth; - int inputPos; - int outputPos; - int layoutLeft; - int layoutRight; - ConfigColor cursorColor; - FcitxImage backArrow; - FcitxImage forwardArrow; -} SkinInputBar; - - -typedef struct -{ - FcitxImage active; - FcitxImage inactive; -} SkinTrayIcon; - -typedef struct -{ - FcitxImage backImg; - ConfigColor keyColor; -} SkinKeyboard; - -/** -* 配置文件结构,方便处理,结构固定 -*/ -typedef struct -{ - GenericConfig config; - SkinInfo skinInfo; - SkinFont skinFont; - SkinMainBar skinMainBar; - SkinInputBar skinInputBar; - SkinTrayIcon skinTrayIcon; - SkinMenu skinMenu; - SkinKeyboard skinKeyboard; -} FcitxSkin; - -extern cairo_surface_t * bar; -extern cairo_surface_t * logo; -extern cairo_surface_t * punc[2]; -extern cairo_surface_t * corner[2]; -extern cairo_surface_t * lx[2]; -extern cairo_surface_t * chs_t[2]; -extern cairo_surface_t * lock[2]; -extern cairo_surface_t * vk[2]; -extern cairo_surface_t * input; -extern cairo_surface_t * prev; -extern cairo_surface_t * next; -extern cairo_surface_t * english; -extern cairo_surface_t * pinyin; -extern cairo_surface_t * shuangpin; -extern cairo_surface_t * quwei; -extern cairo_surface_t * wubi; -extern cairo_surface_t * mix; -extern cairo_surface_t * erbi; -extern cairo_surface_t * cangji; -extern cairo_surface_t * wanfeng; -extern cairo_surface_t * bingchan; -extern cairo_surface_t * ziran; -extern cairo_surface_t * dianbao; -extern cairo_surface_t * otherim; -extern cairo_surface_t * trayActive; -extern cairo_surface_t * trayInactive; -extern cairo_surface_t * keyBoard; - -extern MouseE ms_logo,ms_punc,ms_corner,ms_lx,ms_chs,ms_lock,ms_vk,ms_py; - -extern Display *dpy; - -extern INT8 iIMCount; -extern IM *im; -extern FcitxSkin sc; -extern UT_array *skinBuf; - -void LoadMainBarImage(); -void LoadVKImage(); -void LoadTrayImage(); -void LoadMenuImage(); -void LoadInputBarImage(); -void LoadInputMessage(); -void DrawImage(cairo_t **c,FcitxImage img,cairo_surface_t * png,MouseE mouse); -void DestroyImage(cairo_surface_t ** png); -void DrawInputBar(Messages * msgup, Messages *msgdown ,unsigned int * iwidth); -void DrawMenuBackground(XlibMenu * menu); -Bool SetMouseStatus(MouseE m, MouseE* e, MouseE s); -/** - * 加载皮肤配置文件 - */ -int LoadSkinConfig(); - -void DisplayInputBar(int barlen); -void DisplaySkin(char * skinname); -int LoadSkinDirectory(); - -#define fcitx_cairo_set_color(c, color) cairo_set_source_rgb((c), (color)->r, (color)->g, (color)->b) - -CONFIG_BINDING_DECLARE(FcitxSkin); -#endif - - diff -Nru fcitx-4.0.1/src/ui/tray.c fcitx-4.1.1/src/ui/tray.c --- fcitx-4.0.1/src/ui/tray.c 2010-12-07 05:51:26.000000000 +0000 +++ fcitx-4.1.1/src/ui/tray.c 1970-01-01 00:00:00.000000000 +0000 @@ -1,228 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2002~2010 by Yuking * - * yuking_net@sohu.com * - * Copyright (C) 2010~2010 by CSSlayer * - * wengxt@gmail.com * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * - ***************************************************************************/ - -#include "core/fcitx.h" - -#ifdef _ENABLE_TRAY - -#include -#include -#include -#include -#include -#include -#include - -#include "core/fcitx.h" -#include "ui/tray.h" -#include "ui/TrayWindow.h" -#include "tools/tools.h" -#include "fcitx-config/cutils.h" - -#define MAX_SUPPORTED_XEMBED_VERSION 1 - -#define XEMBED_MAPPED (1 << 0) - -/* XEMBED messages */ -#define XEMBED_EMBEDDED_NOTIFY 0 -#define XEMBED_WINDOW_ACTIVATE 1 -#define XEMBED_WINDOW_DEACTIVATE 2 -#define XEMBED_REQUEST_FOCUS 3 -#define XEMBED_FOCUS_IN 4 -#define XEMBED_FOCUS_OUT 5 -#define XEMBED_FOCUS_NEXT 6 -#define XEMBED_FOCUS_PREV 7 -/* 8-9 were used for XEMBED_GRAB_KEY/XEMBED_UNGRAB_KEY */ -#define XEMBED_MODALITY_ON 10 -#define XEMBED_MODALITY_OFF 11 -#define XEMBED_REGISTER_ACCELERATOR 12 -#define XEMBED_UNREGISTER_ACCELERATOR 13 -#define XEMBED_ACTIVATE_ACCELERATOR 14 - -static int iTrappedErrorCode = 0; -static int (*hOldErrorHandler) (Display *d, XErrorEvent *e); - -extern int iScreen; - -/* static void tray_map_window (Display* dpy, Window win); */ - -static int -ErrorHandler(Display *display, - XErrorEvent *error) -{ - iTrappedErrorCode = error->error_code; - return 0; -} - -static void -TrapErrors(void) -{ - iTrappedErrorCode = 0; - hOldErrorHandler = XSetErrorHandler(ErrorHandler); -} - -static int -UntrapErrors(void) -{ - XSetErrorHandler(hOldErrorHandler); - return iTrappedErrorCode; -} - -int -InitTray(Display* dpy, TrayWindow* tray) -{ - static char *atom_names[] = { - NULL, - "MANAGER", - "_NET_SYSTEM_TRAY_OPCODE", - "_NET_SYSTEM_TRAY_ORIENTATION", - "_NET_SYSTEM_TRAY_VISUAL" - }; - memset(tray, 0, sizeof(TrayWindow)); - - atom_names[0] = strdup("_NET_SYSTEM_TRAY_S0"); - atom_names[0][17] += iScreen; - - XInternAtoms (dpy, atom_names, 5, False, tray->atoms); - tray->size = 22; - - XWindowAttributes attr; - XGetWindowAttributes(dpy, DefaultRootWindow(dpy), &attr); - if ((attr.your_event_mask & StructureNotifyMask) != StructureNotifyMask) { - XSelectInput(dpy, DefaultRootWindow(dpy), attr.your_event_mask | StructureNotifyMask); // for MANAGER selection - } - return True; -} - -int -TrayFindDock(Display *dpy, TrayWindow* tray) -{ - if (tray->window == None) - { - tray->bTrayMapped = False; - return 0; - } - - Window Dock; - - XGrabServer (dpy); - - Dock = XGetSelectionOwner(dpy, tray->atoms[ATOM_SELECTION]); - - if (Dock != None) - XSelectInput(dpy, Dock, - StructureNotifyMask|PropertyChangeMask); - - XUngrabServer (dpy); - XFlush (dpy); - - if (Dock != None) { - TraySendOpcode(dpy, Dock, tray, SYSTEM_TRAY_REQUEST_DOCK, tray->window, 0, 0); - tray->bTrayMapped = True; - return 1; - } - else - { - tray->bTrayMapped = False; - DestroyTrayWindow(); - } - - return 0; -} - -void TraySendOpcode(Display* dpy, Window dock, TrayWindow* tray, - long message, long data1, long data2, long data3) -{ - XEvent ev; - - memset(&ev, 0, sizeof(ev)); - ev.xclient.type = ClientMessage; - ev.xclient.window = dock; - ev.xclient.message_type = tray->atoms[ATOM_SYSTEM_TRAY_OPCODE]; - ev.xclient.format = 32; - ev.xclient.data.l[0] = CurrentTime; - ev.xclient.data.l[1] = message; - ev.xclient.data.l[2] = data1; - ev.xclient.data.l[3] = data2; - ev.xclient.data.l[4] = data3; - - TrapErrors(); - XSendEvent(dpy, dock, False, NoEventMask, &ev); - XSync(dpy, False); - if (UntrapErrors()) { - FcitxLog(WARNING, _("X error %i on opcode send"), - iTrappedErrorCode ); - } -} - -XVisualInfo* TrayGetVisual(Display* dpy, TrayWindow* tray) -{ - Window Dock; - - if (tray->visual.visual) - { - return &tray->visual; - } - - Dock = XGetSelectionOwner(dpy, tray->atoms[ATOM_SELECTION]); - - if (Dock != None) { - Atom actual_type; - int actual_format; - unsigned long nitems, bytes_remaining; - unsigned char *data = 0; - int result = XGetWindowProperty(dpy, Dock, tray->atoms[ATOM_VISUAL], 0, 1, - False, XA_VISUALID, &actual_type, - &actual_format, &nitems, &bytes_remaining, &data); - VisualID vid = 0; - if (result == Success && data && actual_type == XA_VISUALID && actual_format == 32 && - nitems == 1 && bytes_remaining == 0) - vid = *(VisualID*)data; - if (data) - XFree(data); - if (vid == 0) - return 0; - - uint mask = VisualIDMask; - XVisualInfo *vi, rvi; - int count; - rvi.visualid = vid; - vi = XGetVisualInfo(dpy, mask, &rvi, &count); - if (vi) { - tray->visual = vi[0]; - XFree((char*)vi); - } - if (tray->visual.depth != 32) - memset(&tray->visual, 0, sizeof(XVisualInfo)); - } - - return tray->visual.visual ? &tray->visual : 0; - -} - -Window TrayGetDock(Display* dpy, TrayWindow* tray) -{ - Window dock = XGetSelectionOwner(dpy, tray->atoms[ATOM_SELECTION]); - return dock; -} - -#endif diff -Nru fcitx-4.0.1/src/ui/tray.h fcitx-4.1.1/src/ui/tray.h --- fcitx-4.0.1/src/ui/tray.h 2010-11-28 11:54:51.000000000 +0000 +++ fcitx-4.1.1/src/ui/tray.h 1970-01-01 00:00:00.000000000 +0000 @@ -1,55 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2002~2010 by Yuking * - * yuking_net@sohu.com * - * Copyright (C) 2010~2010 by CSSlayer * - * wengxt@gmail.com * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * - ***************************************************************************/ - -#include "core/fcitx.h" - -#ifndef _TRAY_H_ -#define _TRAY_H_ - -#ifdef _ENABLE_TRAY - -#include "TrayWindow.h" - -int InitTray(Display* dpy, TrayWindow* win); -void TrayHandleClientMessage(Display *dpy, Window win, XEvent *an_event); -int TrayFindDock(Display *dpy, TrayWindow* tray); -XVisualInfo* TrayGetVisual(Display* dpy, TrayWindow* tray); -Window TrayGetDock(Display* dpy, TrayWindow* tray); -void TraySendOpcode( Display* dpy, Window dock, TrayWindow* tray, long message, - long data1, long data2, long data3 ); - -#define SYSTEM_TRAY_REQUEST_DOCK 0 -#define SYSTEM_TRAY_BEGIN_MESSAGE 1 -#define SYSTEM_TRAY_CANCEL_MESSAGE 2 - -#define TRAY_ICON_WIDTH 22 -#define TRAY_ICON_HEIGHT 22 - -#define ATOM_SELECTION 0 -#define ATOM_MANAGER 1 -#define ATOM_SYSTEM_TRAY_OPCODE 2 -#define ATOM_ORIENTATION 3 -#define ATOM_VISUAL 4 - -#endif - -#endif diff -Nru fcitx-4.0.1/src/ui/TrayWindow.c fcitx-4.1.1/src/ui/TrayWindow.c --- fcitx-4.0.1/src/ui/TrayWindow.c 2010-12-17 04:19:43.000000000 +0000 +++ fcitx-4.1.1/src/ui/TrayWindow.c 1970-01-01 00:00:00.000000000 +0000 @@ -1,222 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2002~2010 by Yuking * - * yuking_net@sohu.com * - * Copyright (C) 2010~2010 by CSSlayer * - * wengxt@gmail.com * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * - ***************************************************************************/ - -#include "core/fcitx.h" - -#ifdef _ENABLE_TRAY - -#include -#include -#include -#include -#include -#include - -#include "ui/TrayWindow.h" -#include "ui/tray.h" -#include "ui/skin.h" -#include "core/xim.h" -#include "tools/configfile.h" - -TrayWindow tray; - -extern Display *dpy; -extern int iScreen; - -Bool CreateTrayWindow() { - XTextProperty tp; - char strWindowName[]="Fcitx Tray Window"; - if ( !fc.bUseTrayIcon ) - return False; - - InitTray(dpy, &tray); - - XVisualInfo* vi = TrayGetVisual(dpy, &tray); - if (vi && vi->visual) { - Window p = DefaultRootWindow (dpy); - Colormap colormap = XCreateColormap(dpy, p, vi->visual, AllocNone); - XSetWindowAttributes wsa; - wsa.background_pixmap = 0; - wsa.colormap = colormap; - wsa.background_pixel = 0; - wsa.border_pixel = 0; - tray.window = XCreateWindow(dpy, p, -1, -1, 1, 1, - 0, vi->depth, InputOutput, vi->visual, - CWBackPixmap|CWBackPixel|CWBorderPixel|CWColormap, &wsa); - } - else { - tray.window = XCreateSimpleWindow (dpy, DefaultRootWindow(dpy), \ - -1, -1, 1, 1, 0, \ - BlackPixel (dpy, DefaultScreen (dpy)), \ - WhitePixel (dpy, DefaultScreen (dpy))); - XSetWindowBackgroundPixmap(dpy, tray.window, ParentRelative); - } - if (tray.window == (Window) NULL) - return False; - - LoadTrayImage(); - XSizeHints size_hints; - size_hints.flags = PWinGravity | PBaseSize; - size_hints.base_width = tray.size; - size_hints.base_height = tray.size; - XSetWMNormalHints(dpy, tray.window, &size_hints); - - //Set the name of the window - tp.value = (void *)strWindowName; - tp.encoding = XA_STRING; - tp.format = 16; - tp.nitems = strlen(strWindowName); - XSetWMName (dpy, tray.window, &tp); - - if (vi && vi->visual) - tray.cs = cairo_xlib_surface_create(dpy, tray.window, tray.visual.visual, 200, 200); - else - { - Visual *target_visual = DefaultVisual (dpy, iScreen); - tray.cs = cairo_xlib_surface_create(dpy, tray.window, target_visual, 200, 200); - } - - XSelectInput (dpy, tray.window, ExposureMask | KeyPressMask | \ - ButtonPressMask | ButtonReleaseMask | StructureNotifyMask \ - | EnterWindowMask | PointerMotionMask | LeaveWindowMask | VisibilityChangeMask); - return True; -} - -void DestroyTrayWindow() -{ - if (tray.window == None) - return; - cairo_surface_destroy(tray.cs); - XDestroyWindow(dpy, tray.window); - tray.window = None; -} - -void DrawTrayWindow(int f_state, int x, int y, int w, int h) { - if ( !fc.bUseTrayIcon ) - return; - - cairo_t *c; - cairo_surface_t *png_surface ; - FcitxImage* skinImg; - if (!tray.bTrayMapped) - return; - - /* 画png */ - if (f_state) - { - png_surface = trayActive; - skinImg = &sc.skinTrayIcon.active; - } - else - { - png_surface = trayInactive; - skinImg = &sc.skinTrayIcon.inactive; - } - - c=cairo_create(tray.cs); - - XVisualInfo* vi = tray.visual.visual ? &tray.visual : 0; - if (vi && vi->visual) - { - /* 清空窗口 */ - cairo_set_source_rgba(c, 0, 0, 0, 0); - cairo_set_operator(c, CAIRO_OPERATOR_SOURCE); - cairo_paint(c); - } - else - { - XClearArea (dpy, tray.window, x, y, w, h, False); - } - - if ( strlen(skinImg->img_name) != 0 && strcmp( skinImg->img_name ,"NONE.img") != 0) - { - cairo_scale(c, ((double) tray.size) / skinImg->height, ((double) tray.size) / skinImg->width); - cairo_set_source_surface(c, png_surface, x , y ); - cairo_set_operator(c, CAIRO_OPERATOR_OVER); - cairo_paint_with_alpha(c,1); - } - - cairo_destroy(c); - -} - -void TrayEventHandler(XEvent* event) -{ - if (!fc.bUseTrayIcon) - return; - switch (event->type) { - case ClientMessage: - if (event->xclient.message_type == tray.atoms[ATOM_MANAGER] - && event->xclient.data.l[1] == tray.atoms[ATOM_SELECTION]) - { - if (tray.window == None) - CreateTrayWindow(); - TrayFindDock(dpy, &tray); - } - break; - - case Expose: - if (event->xexpose.window == tray.window) { - if (GetCurrentState() == IS_CHN) - DrawTrayWindow (ACTIVE_ICON, 0, 0, tray.size, tray.size); - else - DrawTrayWindow (INACTIVE_ICON, 0, 0, tray.size, tray.size); - } - break; - case ConfigureNotify: - if (tray.window == event->xconfigure.window) - { - int size = event->xconfigure.height; - if (size != tray.size) - { - tray.size = size; - XSizeHints size_hints; - size_hints.flags = PWinGravity | PBaseSize; - size_hints.base_width = tray.size; - size_hints.base_height = tray.size; - XSetWMNormalHints(dpy, tray.window, &size_hints); - } - - if (GetCurrentState() == IS_CHN) - DrawTrayWindow (ACTIVE_ICON, 0, 0, tray.size, tray.size); - else - DrawTrayWindow (INACTIVE_ICON, 0, 0, tray.size, tray.size); - } - break; - - - case DestroyNotify: - tray.bTrayMapped = False; - DestroyTrayWindow(); - break; - - case ReparentNotify: - if (event->xreparent.parent == DefaultRootWindow(dpy) && event->xreparent.window == tray.window) - { - tray.bTrayMapped = False; - DestroyTrayWindow(); - } - break; - } -} - -#endif diff -Nru fcitx-4.0.1/src/ui/TrayWindow.h fcitx-4.1.1/src/ui/TrayWindow.h --- fcitx-4.0.1/src/ui/TrayWindow.h 2010-11-28 11:54:51.000000000 +0000 +++ fcitx-4.1.1/src/ui/TrayWindow.h 1970-01-01 00:00:00.000000000 +0000 @@ -1,63 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2002~2010 by Yuking * - * yuking_net@sohu.com * - * Copyright (C) 2010~2010 by CSSlayer * - * wengxt@gmail.com * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * - ***************************************************************************/ - -#include "core/fcitx.h" - -#ifndef _TRAY_WINDOW_H -#define _TRAY_WINDOW_H - -#ifdef _ENABLE_TRAY - -#include -#include -#include -#include - -#define INACTIVE_ICON 0 -#define ACTIVE_ICON 1 - -typedef struct TrayWindow { - Window window; - - XImage* icon[2]; - Pixmap picon[2]; - GC gc; - Bool bTrayMapped; - XVisualInfo visual; - Atom atoms[6]; - - cairo_surface_t *cs; - int size; -} TrayWindow; - -Bool CreateTrayWindow(); -void DrawTrayWindow(int f_state, int x, int y, int w, int h); -void DeInitTrayWindow(TrayWindow *f_tray); -void RedrawTrayWindow(void); -void TrayEventHandler(XEvent* event); -void DestroyTrayWindow(); - -extern TrayWindow tray; - -#endif - -#endif diff -Nru fcitx-4.0.1/src/ui/ui.c fcitx-4.1.1/src/ui/ui.c --- fcitx-4.0.1/src/ui/ui.c 2010-12-17 04:20:02.000000000 +0000 +++ fcitx-4.1.1/src/ui/ui.c 1970-01-01 00:00:00.000000000 +0000 @@ -1,1023 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2002~2005 by Yuking * - * yuking_net@sohu.com * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * - ***************************************************************************/ -#ifdef HAVE_CONFIG_H -#include -#endif - -#include "core/fcitx.h" - -#include -#include - -#include -#include -#include -#include - -#ifdef HAVE_MALLOC_H -#include -#endif -#include - -#include "ui/ui.h" -#include "core/xim.h" -#include "core/MyErrorsHandlers.h" -#include "ui/MainWindow.h" -#include "ui/MessageWindow.h" -#include "ui/InputWindow.h" -#include "ui/MenuWindow.h" -#include "im/special/vk.h" -#include "core/IC.h" -#include "tools/utf8.h" -#include "im/pinyin/sp.h" -#include "ui/AboutWindow.h" -#include "ui/TrayWindow.h" -#include "ui/skin.h" -#include "core/ime.h" -#include "tools/profile.h" -#include "tools/configfile.h" -#include "ui/AboutWindow.h" -#include "fcitx-config/cutils.h" - -Display *dpy; -int iScreen; -extern int iVKWindowX; -extern int iVKWindowY; -extern Window ximWindow; -extern VKWindow vkWindow; -extern Bool bMainWindow_Hiden; -unsigned char iCurrentVK; -extern Bool bVK; -extern Bool bIsDisplaying; - -Atom protocolAtom; -Atom killAtom; -Atom windowTypeAtom; -Atom typeMenuAtom; -Atom typeDialogAtom; -Atom compManagerAtom; -Window compManager; - -// added by yunfan -// ********************************** - -Bool -InitX(void) -{ - if ((dpy = XOpenDisplay ((char *) NULL)) == NULL) { - FcitxLog (ERROR, _("FCITX can only run under X")); - return False; - } - - SetMyXErrorHandler(); - iScreen = DefaultScreen(dpy); - - protocolAtom = XInternAtom (dpy, "WM_PROTOCOLS", False); - killAtom = XInternAtom (dpy, "WM_DELETE_WINDOW", False); - windowTypeAtom = XInternAtom (dpy, "_NET_WM_WINDOW_TYPE", False); - typeMenuAtom = XInternAtom (dpy, "_NET_WM_WINDOW_TYPE_MENU", False); - typeDialogAtom = XInternAtom (dpy, "_NET_WM_WINDOW_TYPE_DIALOG", False); - return True; -} - -/* - * 有关界面的消息都在这里处理 - * 有关tray重画的问题,此处的解决方案似乎很dirt - */ -void -MyXEventHandler(XEvent * event) -{ - int dwidth, dheight; - GetScreenSize(&dwidth, &dheight); - switch (event->type) { - case ConfigureNotify: -#ifdef _ENABLE_TRAY - TrayEventHandler(event); -#endif - break; - case ReparentNotify: -#ifdef _ENABLE_TRAY - TrayEventHandler(event); -#endif - break; - case ClientMessage: - if ((event->xclient.message_type == protocolAtom) - && ((Atom) event->xclient.data.l[0] == killAtom)) { - XUnmapWindow(dpy, event->xclient.window); - DrawMainWindow(); - } - else if (event->xclient.data.l[1] == compManagerAtom) - DisplaySkin(fc.skinType); -#ifdef _ENABLE_TRAY - else - TrayEventHandler(event); -#endif - break; - case Expose: -#ifdef _DEBUG - FcitxLog(DEBUG, _("XEvent--Expose")); -#endif - if (event->xexpose.count > 0) - break; - if (event->xexpose.window == mainWindow.window) - DrawMainWindow(); - else if (event->xexpose.window == vkWindow.window) - DrawVKWindow(); - else if (event->xexpose.window == inputWindow.window) - DrawInputWindow(); - else if (event->xexpose.window == mainMenu.menuWindow) - DrawXlibMenu(dpy, &mainMenu); - else if (event->xexpose.window == vkMenu.menuWindow) { - if (iCurrentVK >= 0) - vkMenu.mark = iCurrentVK; - DrawXlibMenu(dpy, &vkMenu); - } else if (event->xexpose.window == imMenu.menuWindow) { - if (gs.iIMIndex >= 0) - imMenu.mark = gs.iIMIndex; - DrawXlibMenu(dpy, &imMenu); - } else if (event->xexpose.window == skinMenu.menuWindow) { - int i = 0; - for (i = 0; - i < skinBuf->i ; - i ++) - { - char **s = (char**)utarray_eltptr(skinBuf, i); - if (strcmp(*s, fc.skinType) == 0) - { - skinMenu.mark = i; - break; - } - } - DrawXlibMenu(dpy, &skinMenu); - } -#ifdef _ENABLE_TRAY - else if (event->xexpose.window == tray.window) { - TrayEventHandler(event); - } -#endif - // added by yunfan - else if (event->xexpose.window == aboutWindow.window) - DrawAboutWindow(); - // ****************************** - else if (event->xexpose.window == messageWindow.window) - DrawMessageWindow(NULL, NULL, 0); - break; - case DestroyNotify: - if (event->xany.window == compManager) - DisplaySkin(fc.skinType); -#ifdef _ENABLE_TRAY - else - TrayEventHandler(event); -#endif - break; - case ButtonPress: - switch (event->xbutton.button) { - case Button1: - SetMouseStatus(RELEASE, NULL, 0); - if (event->xbutton.window == inputWindow.window) { - int x, - y; - x = event->xbutton.x; - y = event->xbutton.y; - MouseClick(&x, &y, inputWindow.window); - - if(!fcitxProfile.bTrackCursor) - { - fcitxProfile.iInputWindowOffsetX = x; - fcitxProfile.iInputWindowOffsetY = y; - } - - if (CurrentIC) - { - Window window = None, dst; - if (CurrentIC->focus_win) - window = CurrentIC->focus_win; - else if(CurrentIC->client_win) - window = CurrentIC->client_win; - - if (window != None) - { - XTranslateCoordinates(dpy, RootWindow(dpy, iScreen), window, - x, y, - &CurrentIC->offset_x, &CurrentIC->offset_y, - &dst - ); - } - } - DrawInputWindow(); - } else if (event->xbutton.window == mainWindow.window) { - - if (IsInRspArea - (event->xbutton.x, event->xbutton.y, - sc.skinMainBar.logo)) { - fcitxProfile.iMainWindowOffsetX = event->xbutton.x; - fcitxProfile.iMainWindowOffsetY = event->xbutton.y; - ms_logo = PRESS; - if (!MouseClick - (&fcitxProfile.iMainWindowOffsetX, &fcitxProfile.iMainWindowOffsetY, mainWindow.window)) { - if (GetCurrentState() != IS_CHN) { - SetIMState((GetCurrentState() == IS_ENG) ? False : True); - } - } - DrawMainWindow(); - -#ifdef _ENABLE_TRAY - if (GetCurrentState() == IS_CHN) - DrawTrayWindow(ACTIVE_ICON, 0, 0, tray.size, - tray.size); - else - DrawTrayWindow(INACTIVE_ICON, 0, 0, tray.size, - tray.size); -#endif - } else - if (IsInRspArea - (event->xbutton.x, event->xbutton.y, - sc.skinMainBar.zhpunc) - || IsInRspArea(event->xbutton.x, event->xbutton.y, - sc.skinMainBar. - enpunc)) { - ms_punc = PRESS; - } else - if (IsInRspArea - (event->xbutton.x, event->xbutton.y, - sc.skinMainBar.halfcorner) - || IsInRspArea(event->xbutton.x, event->xbutton.y, - sc.skinMainBar. - fullcorner)) { - ms_corner = PRESS; - } else - if (IsInRspArea - (event->xbutton.x, event->xbutton.y, - sc.skinMainBar.nolegend) - || IsInRspArea(event->xbutton.x, event->xbutton.y, - sc.skinMainBar. - legend)) { - ms_lx = PRESS; - } else - if (IsInRspArea - (event->xbutton.x, event->xbutton.y, - sc.skinMainBar.chs) - || IsInRspArea(event->xbutton.x, event->xbutton.y, - sc.skinMainBar. - cht)) { - ms_chs = PRESS; - } else - if (IsInRspArea - (event->xbutton.x, event->xbutton.y, - sc.skinMainBar.unlock) - || IsInRspArea(event->xbutton.x, event->xbutton.y, - sc.skinMainBar. - lock)) { - ms_lock = PRESS; - } else - if (IsInRspArea - (event->xbutton.x, event->xbutton.y, - sc.skinMainBar.novk) - || IsInRspArea(event->xbutton.x, event->xbutton.y, - sc.skinMainBar. - vk)) { - ms_vk = PRESS; - } else if (!fcitxProfile.bCorner - && IsInRspArea(event->xbutton.x, - event->xbutton.y, - sc.skinMainBar. - chs)) { - ms_py = PRESS; - } - DrawMainWindow(); - SetMouseStatus(RELEASE, NULL, 0); - } -#ifdef _ENABLE_TRAY - else if (event->xbutton.window == tray.window) { - SetIMState((GetCurrentState() == IS_ENG) ? False : True); - DrawMainWindow(); - if (GetCurrentState() == IS_CHN) - DrawTrayWindow(ACTIVE_ICON, 0, 0, tray.size, - tray.size); - else - DrawTrayWindow(INACTIVE_ICON, 0, 0, tray.size, - tray.size); - } -#endif - else if (event->xbutton.window == vkWindow.window) { - if (!VKMouseKey(event->xbutton.x, event->xbutton.y)) { - iVKWindowX = event->xbutton.x; - iVKWindowY = event->xbutton.y; - MouseClick(&iVKWindowX, &iVKWindowY, vkWindow.window); - DrawVKWindow(); - } - } - else if (event->xbutton.window == messageWindow.window) - { - XWithdrawWindow(dpy, messageWindow.window, iScreen); - } - // added by yunfan - else if (event->xbutton.window == aboutWindow.window) { - XWithdrawWindow(dpy, aboutWindow.window, iScreen); - DrawMainWindow(); - } else if (event->xbutton.window == mainMenu.menuWindow) { - int i; - i = SelectShellIndex(&mainMenu, event->xbutton.x, event->xbutton.y, NULL); - if (i == 0) { - DisplayAboutWindow(); - XUnmapWindow(dpy, mainMenu.menuWindow); - DrawMainWindow(); - } - // fcitx配置工具接口 - else if (i == 6) { - XUnmapWindow(dpy, mainMenu.menuWindow); - pid_t id; - - id = fork(); - - if (id < 0) - FcitxLog(ERROR, _("Unable to create process")); - else if (id == 0) - { - id = fork(); - - if (id < 0) - { - FcitxLog(ERROR, _("Unable to create process")); - exit(1); - } - else if (id > 0) - exit(0); - - execl(BINDIR "/fcitx-config", "fcitx-config", NULL); - - exit(0); - } - } else if (i == 7) { - CloseAllIM(); - exit(0); - } - } else if (event->xbutton.window == imMenu.menuWindow) { - int idx = SelectShellIndex(&imMenu, event->xbutton.x, event->xbutton.y, NULL); - if (idx >= 0) - { - SelectIM(idx); - ClearSelectFlag(&mainMenu); - XUnmapWindow(dpy, imMenu.menuWindow); - XUnmapWindow(dpy, mainMenu.menuWindow); - } - } else if (event->xbutton.window == skinMenu.menuWindow) { - // 皮肤切换在此进行 - int i; - i = SelectShellIndex(&skinMenu, event->xbutton.x, event->xbutton.y, NULL); - if (i >= 0) - { - char **sskin = (char**) utarray_eltptr(skinBuf, i); - if (strcmp(fc.skinType, *sskin) != 0) { - ClearSelectFlag(&mainMenu); - XUnmapWindow(dpy, mainMenu.menuWindow); - XUnmapWindow(dpy, vkMenu.menuWindow); - XUnmapWindow(dpy, imMenu.menuWindow); - XUnmapWindow(dpy, skinMenu.menuWindow); - DisplaySkin(*sskin); - SaveConfig(); - } - } - } else if (event->xbutton.window == vkMenu.menuWindow) { - int idx = SelectShellIndex(&vkMenu, event->xbutton.x, event->xbutton.y, NULL); - if (idx >= 0) - { - SelectVK(idx); - ClearSelectFlag(&mainMenu); - XUnmapWindow(dpy, mainMenu.menuWindow); - XUnmapWindow(dpy, vkMenu.menuWindow); - } - } - // **************************** - SaveProfile(); - break; - - case Button3: - - if (event->xbutton.window == mainMenu.menuWindow) { - ClearSelectFlag(&mainMenu); - XUnmapWindow(dpy, mainMenu.menuWindow); - XUnmapWindow(dpy, vkMenu.menuWindow); - XUnmapWindow(dpy, imMenu.menuWindow); - XUnmapWindow(dpy, skinMenu.menuWindow); - } -#ifdef _ENABLE_TRAY - else if (event->xbutton.window == tray.window) { - - LoadSkinDirectory(); - - if (event->xbutton.x_root - event->xbutton.x + - mainMenu.width >= dwidth) - mainMenu.iPosX = - dwidth - mainMenu.width - - event->xbutton.x; - else - mainMenu.iPosX = - event->xbutton.x_root - event->xbutton.x; - - // 面板的高度是可以变动的,需要取得准确的面板高度,才能准确确定右键菜单位置。 - if (event->xbutton.y_root + mainMenu.height - - event->xbutton.y >= dheight) - mainMenu.iPosY = - dheight - mainMenu.height - - event->xbutton.y - 15; - else - mainMenu.iPosY = event->xbutton.y_root - event->xbutton.y + 25; // +sc.skin_tray_icon.active_img.height; - - DrawXlibMenu(dpy, &mainMenu); - DisplayXlibMenu(dpy, &mainMenu); - } -#endif - else if (event->xbutton.window == mainWindow.window) { - LoadSkinDirectory(); - - mainMenu.iPosX = fcitxProfile.iMainWindowOffsetX; - mainMenu.iPosY = - fcitxProfile.iMainWindowOffsetY + - sc.skinMainBar.backImg.height + 5; - if ((mainMenu.iPosY + mainMenu.height) > - dheight) - mainMenu.iPosY = fcitxProfile.iMainWindowOffsetY - 5 - mainMenu.height; - - DrawXlibMenu(dpy, &mainMenu); - DisplayXlibMenu(dpy, &mainMenu); - } - break; - } - break; - case ButtonRelease: - if (event->xbutton.window == mainWindow.window) { - switch (event->xbutton.button) { - case Button1: - SetMouseStatus(RELEASE, NULL, 0); - if (IsInRspArea - (event->xbutton.x, event->xbutton.y, - sc.skinMainBar.logo)) - DrawMainWindow(); - else if (IsInRspArea - (event->xbutton.x, event->xbutton.y, - sc.skinMainBar.zhpunc) - || IsInRspArea(event->xbutton.x, event->xbutton.y, - sc.skinMainBar. - enpunc)) - ChangePunc(); - else if (IsInRspArea - (event->xbutton.x, event->xbutton.y, - sc.skinMainBar.halfcorner) - || IsInRspArea(event->xbutton.x, event->xbutton.y, - sc.skinMainBar. - fullcorner)) - ChangeCorner(); - else if (IsInRspArea - (event->xbutton.x, event->xbutton.y, - sc.skinMainBar.nolegend) - || IsInRspArea(event->xbutton.x, event->xbutton.y, - sc.skinMainBar. - legend)) - ChangeLegend(); - else if (IsInRspArea - (event->xbutton.x, event->xbutton.y, - sc.skinMainBar.chs) - || IsInRspArea(event->xbutton.x, event->xbutton.y, - sc.skinMainBar.cht)) - ChangeGBKT(); - else if (IsInRspArea - (event->xbutton.x, event->xbutton.y, - sc.skinMainBar.unlock) - || IsInRspArea(event->xbutton.x, event->xbutton.y, - sc.skinMainBar. - lock)) - ChangeLock(); - else if (IsInRspArea - (event->xbutton.x, event->xbutton.y, - sc.skinMainBar.novk) - || IsInRspArea(event->xbutton.x, event->xbutton.y, - sc.skinMainBar. - vk)) - SwitchVK(); - else if (!fcitxProfile.bCorner - && IsInRspArea(event->xbutton.x, event->xbutton.y, - sc.skinMainBar. - chn)) { - SwitchIM(-1); - } - - break; - - // added by yunfan - case Button2: - DisplayAboutWindow(); - break; - // ******************** - case Button3: - -#ifdef _ENABLE_TRAY - if (event->xbutton.window == tray.window) { - switch (event->xbutton.button) { - case Button1: - if (GetCurrentState() != IS_CHN) { - SetIMState(True); - DrawMainWindow(); - - DrawTrayWindow(ACTIVE_ICON, 0, 0, tray.size, - tray.size); - } else { - SetIMState(False); - DrawTrayWindow(INACTIVE_ICON, 0, 0, tray.size, - tray.size); - } - - break; - case Button2: - if (IsWindowVisible(mainWindow.window)) { - bMainWindow_Hiden = True; - XUnmapWindow(dpy, mainWindow.window); - } else { - bMainWindow_Hiden = False; - DisplayMainWindow(); - DrawMainWindow(); - } - break; - } - } -#endif - break; - } - } - break; - case FocusIn: - if (GetCurrentState() == IS_CHN) - DisplayInputWindow(); - if (fc.hideMainWindow != HM_HIDE) - XMapRaised(dpy, mainWindow.window); - break; - default: - break; - - case MotionNotify: - if (event->xany.window == mainWindow.window) { - MouseE *mouseOn = NULL; - if (IsInRspArea - (event->xbutton.x, event->xbutton.y, - sc.skinMainBar.logo)) { - mouseOn = &ms_logo; - } else - if (IsInRspArea - (event->xbutton.x, event->xbutton.y, - sc.skinMainBar.zhpunc) - || IsInRspArea(event->xbutton.x, event->xbutton.y, - sc.skinMainBar.enpunc)) { - mouseOn = &ms_punc; - } else - if (IsInRspArea - (event->xbutton.x, event->xbutton.y, - sc.skinMainBar.halfcorner) - || IsInRspArea(event->xbutton.x, event->xbutton.y, - sc.skinMainBar. - fullcorner)) { - mouseOn = &ms_corner; - } else - if (IsInRspArea - (event->xbutton.x, event->xbutton.y, - sc.skinMainBar.nolegend) - || IsInRspArea(event->xbutton.x, event->xbutton.y, - sc.skinMainBar.legend)) { - mouseOn = &ms_lx; - } else - if (IsInRspArea - (event->xbutton.x, event->xbutton.y, - sc.skinMainBar.chs) - || IsInRspArea(event->xbutton.x, event->xbutton.y, - sc.skinMainBar.cht)) { - mouseOn = &ms_chs; - } else - if (IsInRspArea - (event->xbutton.x, event->xbutton.y, - sc.skinMainBar.unlock) - || IsInRspArea(event->xbutton.x, event->xbutton.y, - sc.skinMainBar.lock)) { - mouseOn = &ms_lock; - } else - if (IsInRspArea - (event->xbutton.x, event->xbutton.y, - sc.skinMainBar.novk) - || IsInRspArea(event->xbutton.x, event->xbutton.y, - sc.skinMainBar.vk)) { - mouseOn = &ms_vk; - } else if (!fcitxProfile.bCorner - && IsInRspArea(event->xbutton.x, event->xbutton.y, - sc.skinMainBar. - chn)) { - mouseOn = &ms_py; - } - if (SetMouseStatus(RELEASE, mouseOn, MOTION)) - DrawMainWindow(); - } else if (event->xany.window == mainMenu.menuWindow) { - MainMenuEvent(event->xmotion.x, event->xmotion.y); - } else if (event->xany.window == imMenu.menuWindow) { - IMMenuEvent(event->xmotion.x, event->xmotion.y); - } else if (event->xany.window == vkMenu.menuWindow) { - VKMenuEvent(event->xmotion.x, event->xmotion.y); - } else if (event->xany.window == skinMenu.menuWindow) { - SkinMenuEvent(event->xmotion.x, event->xmotion.y); - } - break; - case LeaveNotify: - if (event->xcrossing.window == mainWindow.window) { - if (SetMouseStatus(RELEASE, NULL , 0)) - DrawMainWindow(); - } - if (event->xcrossing.window == mainMenu.menuWindow) { - int x = event->xcrossing.x_root; - int y = event->xcrossing.y_root; - XWindowAttributes attr; - int i; - Bool flag = False; - Window wins[3] = { vkMenu.menuWindow, skinMenu.menuWindow, imMenu.menuWindow }; - for (i = 0;i< 3; i++) - { - XGetWindowAttributes(dpy, wins[i], &attr); - if (attr.map_state != IsUnmapped && - IsInBox(x, y, attr.x, attr.y, attr.x + attr.width, attr.y + attr.height)) - { - flag = True; - break; - } - } - if (!flag) - { - ClearSelectFlag(&mainMenu); - XUnmapWindow(dpy, mainMenu.menuWindow); - XUnmapWindow(dpy, vkMenu.menuWindow); - XUnmapWindow(dpy, imMenu.menuWindow); - XUnmapWindow(dpy, skinMenu.menuWindow); - } - } - break; - } -} - -/* - * 判断鼠标点击处是否处于指定的区域内 - */ -Bool -IsInBox(int x0, int y0, int x1, int y1, int x2, int y2) -{ - if (x0 >= x1 && x0 <= x2 && y0 >= y1 && y0 <= y2) - return True; - - return False; -} - -Bool -IsInRspArea(int x0, int y0, FcitxImage img) -{ - return IsInBox(x0, y0, img.response_x, img.response_y, - img.response_x + img.response_w, - img.response_y + img.response_h); -} - -int -StringWidth(const char *str, const char *font, int fontSize) -{ - if (!str || str[0] == 0) - return 0; - cairo_surface_t *surface = - cairo_image_surface_create(CAIRO_FORMAT_RGB24, 10, 10); - cairo_t *c = cairo_create(surface); - SetFontContext(c, font, fontSize); - - int width = StringWidthWithContext(c, str); - ResetFontContext(); - - cairo_destroy(c); - cairo_surface_destroy(surface); - - return width; -} - -#ifdef _ENABLE_PANGO -int -StringWidthWithContextReal(cairo_t * c, PangoFontDescription* fontDesc, const char *str) -{ - if (!str || str[0] == 0) - return 0; - if (!utf8_check_string(str)) - return 0; - - int width; - PangoLayout *layout = pango_cairo_create_layout (c); - pango_layout_set_text (layout, str, -1); - pango_layout_set_font_description (layout, fontDesc); - pango_layout_get_pixel_size(layout, &width, NULL); - g_object_unref (layout); - - return width; -} -#else - -int -StringWidthWithContextReal(cairo_t * c, const char *str) -{ - if (!str || str[0] == 0) - return 0; - if (!utf8_check_string(str)) - return 0; - cairo_text_extents_t extents; - cairo_text_extents(c, str, &extents); - int width = extents.x_advance; - return width; -} -#endif - -int -FontHeight(const char *font) -{ - cairo_surface_t *surface = - cairo_image_surface_create(CAIRO_FORMAT_RGB24, 10, 10); - cairo_t *c = cairo_create(surface); - - SetFontContext(c, font, sc.skinFont.fontSize); - int height = FontHeightWithContext(c); - ResetFontContext(); - - cairo_destroy(c); - cairo_surface_destroy(surface); - return height; -} - -#ifdef _ENABLE_PANGO -int -FontHeightWithContextReal(cairo_t* c, PangoFontDescription* fontDesc) -{ - int height; - - if (pango_font_description_get_size_is_absolute(fontDesc)) /* it must be this case */ - { - height = pango_font_description_get_size(fontDesc); - height /= PANGO_SCALE; - } - else - height = 0; - - return height; -} -#else - -int -FontHeightWithContextReal(cairo_t * c) -{ - cairo_matrix_t matrix; - cairo_get_font_matrix (c, &matrix); - - int height = matrix.xx; - return height; -} -#endif - -/* - * 以指定的颜色在窗口的指定位置输出字串 - */ -void -OutputString(cairo_t * c, const char *str, const char *font, int fontSize, int x, - int y, ConfigColor * color) -{ - if (!str || str[0] == 0) - return; - - cairo_save(c); - - cairo_set_source_rgb(c, color->r, color->g, color->b); - SetFontContext(c, font, fontSize); - OutputStringWithContext(c, str, x, y); - ResetFontContext(); - - cairo_restore(c); -} - -#ifdef _ENABLE_PANGO -void -OutputStringWithContextReal(cairo_t * c, PangoFontDescription* desc, const char *str, int x, int y) -{ - if (!str || str[0] == 0) - return; - if (!utf8_check_string(str)) - return; - cairo_save(c); - - PangoLayout *layout; - - layout = pango_cairo_create_layout (c); - pango_layout_set_text (layout, str, -1); - pango_layout_set_font_description (layout, desc); - cairo_move_to(c, x, y); - pango_cairo_show_layout (c, layout); - - cairo_restore(c); - g_object_unref (layout); -} -#else - -void -OutputStringWithContextReal(cairo_t * c, const char *str, int x, int y) -{ - if (!str || str[0] == 0) - return; - if (!utf8_check_string(str)) - return; - cairo_save(c); - int height = FontHeightWithContextReal(c); - cairo_move_to(c, x, y + height); - cairo_show_text(c, str); - cairo_restore(c); -} -#endif - -Bool -IsWindowVisible(Window window) -{ - XWindowAttributes attrs; - - XGetWindowAttributes(dpy, window, &attrs); - - if (attrs.map_state == IsUnmapped) - return False; - - return True; -} - -Bool -MouseClick(int *x, int *y, Window window) -{ - XEvent evtGrabbed; - Bool bMoved = False; - - // To motion the window - while (1) { - XMaskEvent(dpy, - PointerMotionMask | ButtonReleaseMask | ButtonPressMask, - &evtGrabbed); - if (ButtonRelease == evtGrabbed.xany.type) { - if (Button1 == evtGrabbed.xbutton.button) - break; - } else if (MotionNotify == evtGrabbed.xany.type) { - static Time LastTime; - - if (evtGrabbed.xmotion.time - LastTime < 20) - continue; - - XMoveWindow(dpy, window, evtGrabbed.xmotion.x_root - *x, - evtGrabbed.xmotion.y_root - *y); - XRaiseWindow(dpy, window); - - bMoved = True; - LastTime = evtGrabbed.xmotion.time; - } - } - - *x = evtGrabbed.xmotion.x_root - *x; - *y = evtGrabbed.xmotion.y_root - *y; - - return bMoved; -} - -void -InitWindowAttribute(Visual ** vs, Colormap * cmap, - XSetWindowAttributes * attrib, - unsigned long *attribmask, int *depth) -{ - attrib->bit_gravity = NorthWestGravity; - attrib->backing_store = WhenMapped; - attrib->save_under = True; - if (*vs) { - *cmap = - XCreateColormap(dpy, RootWindow(dpy, iScreen), *vs, AllocNone); - - attrib->override_redirect = True; // False; - attrib->background_pixel = 0; - attrib->border_pixel = 0; - attrib->colormap = *cmap; - *attribmask = - (CWBackPixel | CWBorderPixel | CWOverrideRedirect | CWSaveUnder | - CWColormap | CWBitGravity | CWBackingStore); - *depth = 32; - } else { - *cmap = DefaultColormap(dpy, iScreen); - *vs = DefaultVisual(dpy, iScreen); - attrib->override_redirect = True; // False; - attrib->background_pixel = 0; - attrib->border_pixel = 0; - *attribmask = (CWBackPixel | CWBorderPixel | CWOverrideRedirect | CWSaveUnder - | CWBitGravity | CWBackingStore); - *depth = DefaultDepth(dpy, iScreen); - } -} - -void ActiveWindow(Display *dpy, Window window) -{ - XEvent ev; - - memset(&ev, 0, sizeof(ev)); - - Atom _NET_ACTIVE_WINDOW = XInternAtom(dpy, "_NET_ACTIVE_WINDOW", False); - - ev.xclient.type = ClientMessage; - ev.xclient.window = window; - ev.xclient.message_type = _NET_ACTIVE_WINDOW; - ev.xclient.format = 32; - ev.xclient.data.l[0] = 1; - ev.xclient.data.l[1] = CurrentTime; - ev.xclient.data.l[2] = 0; - - XSendEvent(dpy, RootWindow(dpy, iScreen), False, SubstructureNotifyMask, &ev); - XSync(dpy, False); -} - -void GetScreenSize(int *width, int *height) -{ - XWindowAttributes attrs; - if (XGetWindowAttributes(dpy, RootWindow(dpy, iScreen), &attrs) < 0) { - printf("ERROR\n"); - } - if (width != NULL) - (*width) = attrs.width; - if (height != NULL) - (*height) = attrs.height; -} - -void InitComposite() -{ - compManagerAtom = XInternAtom (dpy, "_NET_WM_CM_S0", False); - - compManager = XGetSelectionOwner(dpy, compManagerAtom); - - if (compManager) - { - XSetWindowAttributes attrs; - attrs.event_mask = StructureNotifyMask; - XChangeWindowAttributes (dpy, compManager, CWEventMask, &attrs); - } -} - -#ifdef _ENABLE_PANGO -PangoFontDescription* GetPangoFontDescription(const char* font, int size) -{ - PangoFontDescription* desc; - desc = pango_font_description_new (); - pango_font_description_set_absolute_size(desc, size * PANGO_SCALE); - pango_font_description_set_family(desc, font); - return desc; -} - -Visual * FindARGBVisual (Display *dpy, int scr) -{ - XVisualInfo *xvi; - XVisualInfo template; - int nvi; - int i; - XRenderPictFormat *format; - Visual *visual; - - if (compManager == None) - return NULL; - - template.screen = scr; - template.depth = 32; - template.class = TrueColor; - xvi = XGetVisualInfo (dpy, VisualScreenMask |VisualDepthMask |VisualClassMask,&template,&nvi); - if (!xvi) - return 0; - visual = 0; - for (i = 0; i < nvi; i++) - { - format = XRenderFindVisualFormat (dpy, xvi[i].visual); - if (format->type == PictTypeDirect && format->direct.alphaMask) - { - visual = xvi[i].visual; - break; - } - } - - XFree (xvi); - return visual; -} - - -#endif diff -Nru fcitx-4.0.1/src/ui/ui.h fcitx-4.1.1/src/ui/ui.h --- fcitx-4.0.1/src/ui/ui.h 2010-12-15 23:01:01.000000000 +0000 +++ fcitx-4.1.1/src/ui/ui.h 1970-01-01 00:00:00.000000000 +0000 @@ -1,91 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2002~2005 by Yuking * - * yuking_net@sohu.com * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * - ***************************************************************************/ -#ifndef _UI_H -#define _UI_H - -#include -#include - -#ifdef _ENABLE_PANGO -#include -#endif - -#include "core/fcitx.h" -#include "fcitx-config/fcitx-config.h" - -Bool InitX (void); -void MyXEventHandler (XEvent * event); - -void OutputString (cairo_t* c, const char *str, const char *font, int fontSize, int x, int y, ConfigColor* color); -int StringWidth (const char *str, const char *font, int fontSize); -int FontHeight (const char *font); - -Bool MouseClick (int *x, int *y, Window window); -Bool IsWindowVisible(Window window); -void InitWindowAttribute(Visual** vs, Colormap *cmap, XSetWindowAttributes *attrib, unsigned long *attribmask, int* depth); -void InitComposite(); -void ActiveWindow(Display *dpy, Window window); -void GetScreenSize(int *width, int *height); - -#ifdef _ENABLE_PANGO -#define OutputStringWithContext(c,str,x,y) OutputStringWithContextReal(c, fontDesc, str, x, y) -#define StringWidthWithContext(c,str) StringWidthWithContextReal(c, fontDesc, str) -#define FontHeightWithContext(c) FontHeightWithContextReal(c, fontDesc) - -PangoFontDescription* GetPangoFontDescription(const char* font, int size); -void OutputStringWithContextReal(cairo_t * c, PangoFontDescription* desc, const char *str, int x, int y); -int StringWidthWithContextReal(cairo_t * c, PangoFontDescription* fontDesc, const char *str); -int FontHeightWithContextReal(cairo_t* c, PangoFontDescription* fontDesc); - -#define SetFontContext(context, fontname, size) \ - PangoFontDescription* fontDesc = GetPangoFontDescription(fontname, size) - -#define ResetFontContext() \ - do { \ - pango_font_description_free(fontDesc); \ - } while(0) - -#else - -#define OutputStringWithContext(c,str,x,y) OutputStringWithContextReal(c, str, x, y) -#define StringWidthWithContext(c,str) StringWidthWithContextReal(c, str) -#define FontHeightWithContext(c) FontHeightWithContextReal(c) - -void OutputStringWithContextReal(cairo_t * c, const char *str, int x, int y); -int StringWidthWithContextReal(cairo_t * c, const char *str); -int FontHeightWithContextReal(cairo_t* c); - -#define SetFontContext(context, fontname, size) \ - do { \ - cairo_select_font_face(context, fontname, \ - CAIRO_FONT_SLANT_NORMAL, \ - CAIRO_FONT_WEIGHT_NORMAL); \ - cairo_set_font_size(context, size); \ - } while (0) - -#define ResetFontContext() - -#endif - -Bool IsInBox(int x0, int y0, int x1, int y1, int x2, int y2); -Bool IsInRspArea(int x0, int y0, FcitxImage img); -Visual * FindARGBVisual (Display *dpy, int scr); - -#endif diff -Nru fcitx-4.0.1/test/CMakeLists.txt fcitx-4.1.1/test/CMakeLists.txt --- fcitx-4.0.1/test/CMakeLists.txt 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/test/CMakeLists.txt 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,14 @@ +add_executable(testconfig testconfig.c) +target_link_libraries(testconfig fcitx-config) + +add_executable(testmessage testmessage.c) +target_link_libraries(testmessage fcitx-core) + +include_directories(${PROJECT_SOURCE_DIR}/src) +include_directories(${PROJECT_SOURCE_DIR}/src/lib) + +add_test(NAME testconfig + COMMAND testconfig ${CMAKE_CURRENT_SOURCE_DIR}/test.desc ${CMAKE_CURRENT_SOURCE_DIR}/test.conf ${CMAKE_CURRENT_BINARY_DIR}/test.conf) + +add_test(NAME testmessage + COMMAND testmessage) \ No newline at end of file diff -Nru fcitx-4.0.1/test/input_testcase.txt fcitx-4.1.1/test/input_testcase.txt --- fcitx-4.0.1/test/input_testcase.txt 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/test/input_testcase.txt 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,10 @@ +It's hard to give a test if GUI is involved, it's hard to confirm what whether a string is properly displayed +or not by only using code. So I'd like to record the test case that should works. + +Pinyin: + + +Table: +Wubi + +Wubipinyin \ No newline at end of file diff -Nru fcitx-4.0.1/test/Makefile.am fcitx-4.1.1/test/Makefile.am --- fcitx-4.0.1/test/Makefile.am 2010-11-28 11:55:00.000000000 +0000 +++ fcitx-4.1.1/test/Makefile.am 1970-01-01 00:00:00.000000000 +0000 @@ -1,22 +0,0 @@ -INCLUDES = \ - -I$(top_srcdir)/lib \ - -I$(top_srcdir)/src \ - @CAIRO_XLIB_CFLAGS@ \ - $(NULL) -DEFS = -DPKGDATADIR=\"$(pkgdatadir)\" - -EXTRA_DIST = $(tools_DATA) - -noinst_PROGRAMS = testpyfa -testpyfa_SOURCES = testpyfa.c - -testpyfa_LDADD = \ - ../src/im/pinyin/PYFA.o \ - ../src/fcitx-config/libfcitx-config.la \ - @INTLLIBS@ \ - $(NULL) - -all: test - -test: testpyfa - ./testpyfa || ( echo "PYFA has bug" ;exit 1 ) diff -Nru fcitx-4.0.1/test/Makefile.in fcitx-4.1.1/test/Makefile.in --- fcitx-4.0.1/test/Makefile.in 2010-12-17 04:26:31.000000000 +0000 +++ fcitx-4.1.1/test/Makefile.in 1970-01-01 00:00:00.000000000 +0000 @@ -1,550 +0,0 @@ -# Makefile.in generated by automake 1.11.1 from Makefile.am. -# @configure_input@ - -# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, -# Inc. -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - -@SET_MAKE@ - -VPATH = @srcdir@ -pkgdatadir = $(datadir)/@PACKAGE@ -pkgincludedir = $(includedir)/@PACKAGE@ -pkglibdir = $(libdir)/@PACKAGE@ -pkglibexecdir = $(libexecdir)/@PACKAGE@ -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = @build@ -host_triplet = @host@ -noinst_PROGRAMS = testpyfa$(EXEEXT) -subdir = test -DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/configure.in -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -mkinstalldirs = $(install_sh) -d -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -CONFIG_CLEAN_VPATH_FILES = -PROGRAMS = $(noinst_PROGRAMS) -am_testpyfa_OBJECTS = testpyfa.$(OBJEXT) -testpyfa_OBJECTS = $(am_testpyfa_OBJECTS) -testpyfa_DEPENDENCIES = ../src/im/pinyin/PYFA.o \ - ../src/fcitx-config/libfcitx-config.la -AM_V_lt = $(am__v_lt_$(V)) -am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) -am__v_lt_0 = --silent -DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles -am__mv = mv -f -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ - $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ - $(AM_CFLAGS) $(CFLAGS) -AM_V_CC = $(am__v_CC_$(V)) -am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) -am__v_CC_0 = @echo " CC " $@; -AM_V_at = $(am__v_at_$(V)) -am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) -am__v_at_0 = @ -CCLD = $(CC) -LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -AM_V_CCLD = $(am__v_CCLD_$(V)) -am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) -am__v_CCLD_0 = @echo " CCLD " $@; -AM_V_GEN = $(am__v_GEN_$(V)) -am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) -am__v_GEN_0 = @echo " GEN " $@; -SOURCES = $(testpyfa_SOURCES) -DIST_SOURCES = $(testpyfa_SOURCES) -ETAGS = etags -CTAGS = ctags -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -ACLOCAL = @ACLOCAL@ -ALL_LINGUAS = @ALL_LINGUAS@ -AMTAR = @AMTAR@ -AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ -AR = @AR@ -AUTOCONF = @AUTOCONF@ -AUTOHEADER = @AUTOHEADER@ -AUTOMAKE = @AUTOMAKE@ -AWK = @AWK@ -CAIRO_XLIB_CFLAGS = @CAIRO_XLIB_CFLAGS@ -CAIRO_XLIB_LIBS = @CAIRO_XLIB_LIBS@ -CC = @CC@ -CCDEPMODE = @CCDEPMODE@ -CFLAGS = @CFLAGS@ -CPP = @CPP@ -CPPFLAGS = @CPPFLAGS@ -CYGPATH_W = @CYGPATH_W@ -DATADIRNAME = @DATADIRNAME@ -DBUS_CFLAGS = @DBUS_CFLAGS@ -DBUS_LIBS = @DBUS_LIBS@ -DEFS = -DPKGDATADIR=\"$(pkgdatadir)\" -DEPDIR = @DEPDIR@ -DLLTOOL = @DLLTOOL@ -DSYMUTIL = @DSYMUTIL@ -DUMPBIN = @DUMPBIN@ -ECHO_C = @ECHO_C@ -ECHO_N = @ECHO_N@ -ECHO_T = @ECHO_T@ -EGREP = @EGREP@ -EXEEXT = @EXEEXT@ -FGREP = @FGREP@ -FONTCONFIG_CFLAGS = @FONTCONFIG_CFLAGS@ -FONTCONFIG_LIBS = @FONTCONFIG_LIBS@ -GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ -GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ -GMSGFMT = @GMSGFMT@ -GMSGFMT_015 = @GMSGFMT_015@ -GREP = @GREP@ -HOST_LIBS = @HOST_LIBS@ -INCINTL = @INCINTL@ -INSTALL = @INSTALL@ -INSTALL_DATA = @INSTALL_DATA@ -INSTALL_PROGRAM = @INSTALL_PROGRAM@ -INSTALL_SCRIPT = @INSTALL_SCRIPT@ -INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ -INTLLIBS = @INTLLIBS@ -INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ -INTLTOOL_MERGE = @INTLTOOL_MERGE@ -INTLTOOL_PERL = @INTLTOOL_PERL@ -INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ -INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ -LD = @LD@ -LDFLAGS = @LDFLAGS@ -LIBICONV = @LIBICONV@ -LIBINTL = @LIBINTL@ -LIBOBJS = @LIBOBJS@ -LIBS = @LIBS@ -LIBTOOL = @LIBTOOL@ -LIPO = @LIPO@ -LN_S = @LN_S@ -LTLIBICONV = @LTLIBICONV@ -LTLIBINTL = @LTLIBINTL@ -LTLIBOBJS = @LTLIBOBJS@ -MAKEINFO = @MAKEINFO@ -MANIFEST_TOOL = @MANIFEST_TOOL@ -MD5SUM = @MD5SUM@ -MKDIR_P = @MKDIR_P@ -MSGFMT = @MSGFMT@ -MSGFMT_015 = @MSGFMT_015@ -MSGMERGE = @MSGMERGE@ -NM = @NM@ -NMEDIT = @NMEDIT@ -OBJDUMP = @OBJDUMP@ -OBJEXT = @OBJEXT@ -OTOOL = @OTOOL@ -OTOOL64 = @OTOOL64@ -PACKAGE = @PACKAGE@ -PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ -PACKAGE_NAME = @PACKAGE_NAME@ -PACKAGE_STRING = @PACKAGE_STRING@ -PACKAGE_TARNAME = @PACKAGE_TARNAME@ -PACKAGE_URL = @PACKAGE_URL@ -PACKAGE_VERSION = @PACKAGE_VERSION@ -PANGOCAIRO_CFLAGS = @PANGOCAIRO_CFLAGS@ -PANGOCAIRO_LIBS = @PANGOCAIRO_LIBS@ -PATH_SEPARATOR = @PATH_SEPARATOR@ -PKG_CONFIG = @PKG_CONFIG@ -PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ -PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ -POSUB = @POSUB@ -RANLIB = @RANLIB@ -SED = @SED@ -SET_MAKE = @SET_MAKE@ -SHELL = @SHELL@ -STRIP = @STRIP@ -TAR = @TAR@ -USE_NLS = @USE_NLS@ -VERSION = @VERSION@ -WGET = @WGET@ -XGETTEXT = @XGETTEXT@ -XGETTEXT_015 = @XGETTEXT_015@ -XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ -XMKMF = @XMKMF@ -XRENDER_CFLAGS = @XRENDER_CFLAGS@ -XRENDER_LIBS = @XRENDER_LIBS@ -X_CFLAGS = @X_CFLAGS@ -X_LIBS = @X_LIBS@ -abs_builddir = @abs_builddir@ -abs_srcdir = @abs_srcdir@ -abs_top_builddir = @abs_top_builddir@ -abs_top_srcdir = @abs_top_srcdir@ -ac_ct_AR = @ac_ct_AR@ -ac_ct_CC = @ac_ct_CC@ -ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ -am__include = @am__include@ -am__leading_dot = @am__leading_dot@ -am__quote = @am__quote@ -am__tar = @am__tar@ -am__untar = @am__untar@ -bindir = @bindir@ -build = @build@ -build_alias = @build_alias@ -build_cpu = @build_cpu@ -build_os = @build_os@ -build_vendor = @build_vendor@ -builddir = @builddir@ -datadir = @datadir@ -datarootdir = @datarootdir@ -docdir = @docdir@ -dvidir = @dvidir@ -exec_prefix = @exec_prefix@ -host = @host@ -host_alias = @host_alias@ -host_cpu = @host_cpu@ -host_os = @host_os@ -host_vendor = @host_vendor@ -htmldir = @htmldir@ -includedir = @includedir@ -infodir = @infodir@ -install_sh = @install_sh@ -libdir = @libdir@ -libexecdir = @libexecdir@ -localedir = @localedir@ -localstatedir = @localstatedir@ -mandir = @mandir@ -mkdir_p = @mkdir_p@ -oldincludedir = @oldincludedir@ -pdfdir = @pdfdir@ -prefix = @prefix@ -program_transform_name = @program_transform_name@ -psdir = @psdir@ -sbindir = @sbindir@ -sharedstatedir = @sharedstatedir@ -srcdir = @srcdir@ -sysconfdir = @sysconfdir@ -target_alias = @target_alias@ -top_build_prefix = @top_build_prefix@ -top_builddir = @top_builddir@ -top_srcdir = @top_srcdir@ -INCLUDES = \ - -I$(top_srcdir)/lib \ - -I$(top_srcdir)/src \ - @CAIRO_XLIB_CFLAGS@ \ - $(NULL) - -EXTRA_DIST = $(tools_DATA) -testpyfa_SOURCES = testpyfa.c -testpyfa_LDADD = \ - ../src/im/pinyin/PYFA.o \ - ../src/fcitx-config/libfcitx-config.la \ - @INTLLIBS@ \ - $(NULL) - -all: all-am - -.SUFFIXES: -.SUFFIXES: .c .lo .o .obj -$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ - && { if test -f $@; then exit 0; else break; fi; }; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign test/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign test/Makefile -.PRECIOUS: Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(am__aclocal_m4_deps): - -clean-noinstPROGRAMS: - @list='$(noinst_PROGRAMS)'; test -n "$$list" || exit 0; \ - echo " rm -f" $$list; \ - rm -f $$list || exit $$?; \ - test -n "$(EXEEXT)" || exit 0; \ - list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ - echo " rm -f" $$list; \ - rm -f $$list -testpyfa$(EXEEXT): $(testpyfa_OBJECTS) $(testpyfa_DEPENDENCIES) - @rm -f testpyfa$(EXEEXT) - $(AM_V_CCLD)$(LINK) $(testpyfa_OBJECTS) $(testpyfa_LDADD) $(LIBS) - -mostlyclean-compile: - -rm -f *.$(OBJEXT) - -distclean-compile: - -rm -f *.tab.c - -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/testpyfa.Po@am__quote@ - -.c.o: -@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c $< - -.c.obj: -@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` - -.c.lo: -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs - -ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - mkid -fID $$unique -tags: TAGS - -TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - set x; \ - here=`pwd`; \ - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: CTAGS -CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d "$(distdir)/$$file"; then \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ - else \ - test -f "$(distdir)/$$file" \ - || cp -p $$d/$$file "$(distdir)/$$file" \ - || exit 1; \ - fi; \ - done -check-am: all-am -check: check-am -all-am: Makefile $(PROGRAMS) -installdirs: -install: install-am -install-exec: install-exec-am -install-data: install-data-am -uninstall: uninstall-am - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-am -install-strip: - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - `test -z '$(STRIP)' || \ - echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install -mostlyclean-generic: - -clean-generic: - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-am - -clean-am: clean-generic clean-libtool clean-noinstPROGRAMS \ - mostlyclean-am - -distclean: distclean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -distclean-am: clean-am distclean-compile distclean-generic \ - distclean-tags - -dvi: dvi-am - -dvi-am: - -html: html-am - -html-am: - -info: info-am - -info-am: - -install-data-am: - -install-dvi: install-dvi-am - -install-dvi-am: - -install-exec-am: - -install-html: install-html-am - -install-html-am: - -install-info: install-info-am - -install-info-am: - -install-man: - -install-pdf: install-pdf-am - -install-pdf-am: - -install-ps: install-ps-am - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-am - -mostlyclean-am: mostlyclean-compile mostlyclean-generic \ - mostlyclean-libtool - -pdf: pdf-am - -pdf-am: - -ps: ps-am - -ps-am: - -uninstall-am: - -.MAKE: install-am install-strip - -.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ - clean-libtool clean-noinstPROGRAMS ctags distclean \ - distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am html html-am info info-am \ - install install-am install-data install-data-am install-dvi \ - install-dvi-am install-exec install-exec-am install-html \ - install-html-am install-info install-info-am install-man \ - install-pdf install-pdf-am install-ps install-ps-am \ - install-strip installcheck installcheck-am installdirs \ - maintainer-clean maintainer-clean-generic mostlyclean \ - mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ - pdf pdf-am ps ps-am tags uninstall uninstall-am - - -all: test - -test: testpyfa - ./testpyfa || ( echo "PYFA has bug" ;exit 1 ) - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff -Nru fcitx-4.0.1/test/test.conf fcitx-4.1.1/test/test.conf --- fcitx-4.0.1/test/test.conf 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/test/test.conf 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,4 @@ +[Test] +Name=ABC +Name[A]=ABC +Name[B]=CDE \ No newline at end of file diff -Nru fcitx-4.0.1/test/testconfig.c fcitx-4.1.1/test/testconfig.c --- fcitx-4.0.1/test/testconfig.c 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/test/testconfig.c 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,15 @@ +#include "fcitx-config/fcitx-config.h" + + +int main(int argc, char* argv[]) +{ + if (argc <= 3) + return 1; + + + ConfigFileDesc* configDesc = ParseConfigFileDesc(argv[1]); + GenericConfig gc; + gc.configFile = ParseConfigFile(argv[2], configDesc); + SaveConfigFile(argv[3], &gc, configDesc); + return 0; +} diff -Nru fcitx-4.0.1/test/test.desc fcitx-4.1.1/test/test.desc --- fcitx-4.0.1/test/test.desc 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/test/test.desc 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,3 @@ +[Test/Name] +Type=I18NString +Description=Test Name \ No newline at end of file diff -Nru fcitx-4.0.1/test/testmessage.c fcitx-4.1.1/test/testmessage.c --- fcitx-4.0.1/test/testmessage.c 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/test/testmessage.c 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,31 @@ +#include "fcitx/instance.h" +#include + +int main() +{ + char* words[] = { "a", "b", "c" ,"d", "e" }; + char* extras[] = { "A", "B", "C" ,"D", "E" }; + FcitxInstance* instance = fcitx_malloc0(sizeof(FcitxInstance)); + instance->input.candList = CandidateWordInit(); + instance->config = fcitx_malloc0(sizeof(FcitxConfig)); + instance->config->bPointAfterNumber = true; + CandidateWord word; + word.callback = NULL; + word.owner = NULL; + word.priv = NULL; + int i = 0; + for (i = 0; i < 5; i ++) + { + word.strWord = strdup(words[i]); + word.strExtra = strdup(extras[i]); + CandidateWordAppend(instance->input.candList, &word); + } + + char* result = CandidateWordToCString(instance); + if (strcmp(result, "1.aA 2.bB 3.cC 4.dD 5.eE ") == 0) + { + return 0; + } + + return 1; +} \ No newline at end of file diff -Nru fcitx-4.0.1/test/testpyfa.c fcitx-4.1.1/test/testpyfa.c --- fcitx-4.0.1/test/testpyfa.c 2010-12-17 04:28:05.000000000 +0000 +++ fcitx-4.1.1/test/testpyfa.c 1970-01-01 00:00:00.000000000 +0000 @@ -1,37 +0,0 @@ -#include "core/fcitx.h" -#include "im/pinyin/PYFA.h" -#include "tools/configfile.h" -#include - -extern PYTABLE PYTable[]; -FcitxConfig fc; - -void Assert(Bool b) -{ - if (!b) - exit(1); -} - -int main() -{ - int i; - for (i = 0; PYTable[i].strPY[0] != '\0'; i++) { - size_t len = strlen(PYTable[i].strPY); - Assert(len <= 6); - if (PYTable[i].pMH == &fc.bMisstype ) - { - char strTemp[7]; - strcpy(strTemp, PYTable[i].strPY); - Assert(len > 2); - Assert(strTemp[len - 2] == 'g' && strTemp[len - 1] == 'n' ); - Assert(PYTable[i + 1].strPY[0] != '\0'); - Assert(strlen(PYTable[i + 1].strPY) == len); - - strcpy(strTemp, PYTable[i + 1].strPY); - Assert(strTemp[len - 2] == 'n' && strTemp[len - 1] == 'g' ); - Assert(strncmp(strTemp, PYTable[i].strPY, len - 2) == 0); - } - } - - return 0; -} diff -Nru fcitx-4.0.1/tools/CMakeLists.txt fcitx-4.1.1/tools/CMakeLists.txt --- fcitx-4.0.1/tools/CMakeLists.txt 1970-01-01 00:00:00.000000000 +0000 +++ fcitx-4.1.1/tools/CMakeLists.txt 2011-09-08 16:00:05.000000000 +0000 @@ -0,0 +1,62 @@ +include_directories(${PROJECT_SOURCE_DIR}/src/) +include_directories(${PROJECT_SOURCE_DIR}/src/lib/) +include_directories(${LIBICONV_INCLUDE_DIR}) + +set(createPYMB_SOURCES + createPYMB.c + ../src/im/pinyin/pyParser.c + ../src/im/pinyin/pyMapTable.c + ../src/im/pinyin/PYFA.c + ../src/im/pinyin/sp.c +) + +set(mb2org_SOURCES + mb2org.c + pyTools.c + ../src/im/pinyin/pyParser.c + ../src/im/pinyin/pyMapTable.c + ../src/im/pinyin/PYFA.c + ../src/im/pinyin/sp.c +) + +set(readPYBase_SOURCES + readPYBase.c + pyTools.c +) + +set(readPYMB_SOURCES + readPYMB.c + pyTools.c +) + +set(mb2txt_SOURCES + mb2txt.c +) + +set(txt2mb_SOURCES + txt2mb.c +) + +set(scel2org_SOURCES + scel2org.c +) + +add_executable(createPYMB ${createPYMB_SOURCES}) +add_executable(readPYBase ${readPYBase_SOURCES}) +add_executable(readPYMB ${readPYMB_SOURCES}) +add_executable(fcitx-remote fcitx-remote.c) +add_executable(mb2org ${mb2org_SOURCES}) +add_executable(mb2txt ${mb2txt_SOURCES}) +add_executable(txt2mb ${txt2mb_SOURCES}) +add_executable(scel2org ${scel2org_SOURCES}) + +target_link_libraries(createPYMB fcitx-config fcitx-utils) +target_link_libraries(readPYBase fcitx-config) +target_link_libraries(readPYMB fcitx-config) +target_link_libraries(mb2org fcitx-config) +target_link_libraries(mb2txt fcitx-config fcitx-utils) +target_link_libraries(txt2mb fcitx-config fcitx-utils) +target_link_libraries(fcitx-remote fcitx-utils) +target_link_libraries(scel2org ${LIBICONV_LIBRARIES}) + +install(TARGETS createPYMB readPYBase readPYMB fcitx-remote mb2org mb2txt txt2mb scel2org DESTINATION ${bindir}) diff -Nru fcitx-4.0.1/tools/createPYMB.c fcitx-4.1.1/tools/createPYMB.c --- fcitx-4.0.1/tools/createPYMB.c 2010-12-17 04:26:58.000000000 +0000 +++ fcitx-4.1.1/tools/createPYMB.c 2011-09-08 16:00:05.000000000 +0000 @@ -25,38 +25,45 @@ #include "im/pinyin/pyParser.h" #include "im/pinyin/pyMapTable.h" #include "im/pinyin/PYFA.h" -#include "tools/utf8.h" -#include "tools/configfile.h" +#include "fcitx-utils/utf8.h" +#include "im/pinyin/pyconfig.h" +#include -FcitxConfig fc; - -extern PYTABLE PYTable[]; +FcitxPinyinConfig pyconfig; FILE *fps, *fpt, *fp1, *fp2; -Bool bSingleHZMode = False; +boolean bSingleHZMode = false; -typedef struct _PY { +typedef struct _PY +{ char strPY[3]; char strHZ[UTF8_MAX_LENGTH+1]; + struct _PY *next, *prev; } _PyStruct; -typedef struct _PyPhrase { +typedef struct _PyPhrase +{ char *strPhrase; char *strMap; + struct _PyPhrase *next; unsigned int uIndex; } _PyPhrase; -typedef struct _PyBase { +typedef struct _PyBase +{ char strHZ[UTF8_MAX_LENGTH + 1]; + struct _PyPhrase *phrase; int iPhraseCount; unsigned int iIndex; } _PyBase; -typedef struct { +typedef struct +{ char strMap[3]; + struct _PyBase *pyBase; int iHZCount; //char *strMohu; @@ -69,73 +76,90 @@ static void Usage(); -Bool LoadPY (void) +boolean LoadPY(void) { FILE *fp; int i, j; int iSW;; - fp = fopen ("pybase.mb", "rb"); + fp = fopen("pybase.mb", "rb"); + if (!fp) - return False; + return false; - fread (&iPYFACount, sizeof (int), 1, fp); - PYFAList = (__PYFA *) malloc (sizeof (__PYFA) * iPYFACount); - for (i = 0; i < iPYFACount; i++) { - fread (PYFAList[i].strMap, sizeof (char) * 2, 1, fp); + fread(&iPYFACount, sizeof(int), 1, fp); + + PYFAList = (__PYFA *) malloc(sizeof(__PYFA) * iPYFACount); + + for (i = 0; i < iPYFACount; i++) + { + fread(PYFAList[i].strMap, sizeof(char) * 2, 1, fp); PYFAList[i].strMap[2] = '\0'; - fread (&(PYFAList[i].iHZCount), sizeof (int), 1, fp); - PYFAList[i].pyBase = (_PyBase *) malloc (sizeof (_PyBase) * PYFAList[i].iHZCount); - for (j = 0; j < PYFAList[i].iHZCount; j++) { - INT8 len; - fread (&len, sizeof (INT8) , 1, fp); - fread (PYFAList[i].pyBase[j].strHZ, sizeof (char) * len, 1, fp); + fread(&(PYFAList[i].iHZCount), sizeof(int), 1, fp); + PYFAList[i].pyBase = (_PyBase *) malloc(sizeof(_PyBase) * PYFAList[i].iHZCount); + + for (j = 0; j < PYFAList[i].iHZCount; j++) + { + int8_t len; + fread(&len, sizeof(int8_t) , 1, fp); + fread(PYFAList[i].pyBase[j].strHZ, sizeof(char) * len, 1, fp); PYFAList[i].pyBase[j].strHZ[len] = '\0'; - PYFAList[i].pyBase[j].phrase = (_PyPhrase *) malloc (sizeof (_PyPhrase)); + PYFAList[i].pyBase[j].phrase = (_PyPhrase *) malloc(sizeof(_PyPhrase)); PYFAList[i].pyBase[j].phrase->next = NULL; PYFAList[i].pyBase[j].iPhraseCount = 0; } } - fclose (fp); + fclose(fp); i = 0; - while (1) { + while (1) + { iSW = 0; - for (j = 0; j < iPYFACount; j++) { - if (i < PYFAList[j].iHZCount) { + + for (j = 0; j < iPYFACount; j++) + { + if (i < PYFAList[j].iHZCount) + { PYFAList[j].pyBase[i].iIndex = iAllCount--; iSW = 1; } } + if (!iSW) break; + i++; } - fp = fopen ("pybase.mb", "wb"); + fp = fopen("pybase.mb", "wb"); + if (!fp) - return False; + return false; + + fwrite(&iPYFACount, sizeof(int), 1, fp); - fwrite (&iPYFACount, sizeof (int), 1, fp); - for (i = 0; i < iPYFACount; i++) { - fwrite (PYFAList[i].strMap, sizeof (char) * 2, 1, fp); - fwrite (&(PYFAList[i].iHZCount), sizeof (int), 1, fp); - for (j = 0; j < PYFAList[i].iHZCount; j++) { - INT8 len = strlen(PYFAList[i].pyBase[j].strHZ); - fwrite (&len, sizeof(INT8), 1, fp); - fwrite (PYFAList[i].pyBase[j].strHZ, sizeof (char) * len, 1, fp); - fwrite (&(PYFAList[i].pyBase[j].iIndex), sizeof (int), 1, fp); + for (i = 0; i < iPYFACount; i++) + { + fwrite(PYFAList[i].strMap, sizeof(char) * 2, 1, fp); + fwrite(&(PYFAList[i].iHZCount), sizeof(int), 1, fp); + + for (j = 0; j < PYFAList[i].iHZCount; j++) + { + int8_t len = strlen(PYFAList[i].pyBase[j].strHZ); + fwrite(&len, sizeof(int8_t), 1, fp); + fwrite(PYFAList[i].pyBase[j].strHZ, sizeof(char) * len, 1, fp); + fwrite(&(PYFAList[i].pyBase[j].iIndex), sizeof(int), 1, fp); } } - fclose (fp); + fclose(fp); - return True; + return true; } -void CreatePYPhrase (void) +void CreatePYPhrase(void) { char strPY[256]; char strPhrase[256]; @@ -143,57 +167,82 @@ ParsePYStruct strTemp; int iIndex, i, s1, s2, j, k; _PyPhrase *phrase, *t, *tt; - FILE *f = fopen ("pyERROR", "wt"); - FILE *fg = fopen ("pyPhrase.ok", "wt"); + FILE *f = fopen("pyERROR", "wt"); + FILE *fg = fopen("pyPhrase.ok", "wt"); int kkk; unsigned int uIndex, uTemp; + FcitxPinyinConfig pyconfig; + + memset(&pyconfig, 0 , sizeof(pyconfig)); + InitMHPY(&pyconfig.MHPY_C, MHPY_C_TEMPLATE); + InitMHPY(&pyconfig.MHPY_S, MHPY_S_TEMPLATE); + InitPYTable(&pyconfig); s1 = 0; s2 = 0; uIndex = 0; - while (!feof (fpt)) { - printf("Reading Phrase: %d\r", s2+1); - fscanf (fpt, "%s", strPY); - fscanf (fpt, "%s\n", strPhrase); - if (strlen (strPhrase) < 3) + printf("Start Loading Phrase...\n"); + + while (!feof(fpt)) + { + fscanf(fpt, "%s", strPY); + fscanf(fpt, "%s\n", strPhrase); + + if (strlen(strPhrase) < 3) continue; - ParsePY (strPY, &strTemp, PY_PARSE_INPUT_SYSTEM, False); + ParsePY(&pyconfig, strPY, &strTemp, PY_PARSE_INPUT_SYSTEM, false); + s2++; + kkk = 0; - if (strTemp.iHZCount != utf8_strlen (strPhrase) || (strTemp.iMode & PARSE_ABBR)) { - fprintf (f, "%s %s\n", strPY, strPhrase); + + if (strTemp.iHZCount != utf8_strlen(strPhrase) || (strTemp.iMode & PARSE_ABBR)) + { + fprintf(f, "%s %s\n", strPY, strPhrase); continue; } strMap[0] = '\0'; + for (iIndex = 0; iIndex < strTemp.iHZCount; iIndex++) - strcat (strMap, strTemp.strMap[iIndex]); + strcat(strMap, strTemp.strMap[iIndex]); - for (iIndex = 0; iIndex < iPYFACount; iIndex++) { - if (!strncmp (PYFAList[iIndex].strMap, strMap, 2)) { - for (i = 0; i < PYFAList[iIndex].iHZCount; i++) { - if (!utf8_strncmp (PYFAList[iIndex].pyBase[i].strHZ, strPhrase, 1)) { + for (iIndex = 0; iIndex < iPYFACount; iIndex++) + { + if (!strncmp(PYFAList[iIndex].strMap, strMap, 2)) + { + for (i = 0; i < PYFAList[iIndex].iHZCount; i++) + { + if (!utf8_strncmp(PYFAList[iIndex].pyBase[i].strHZ, strPhrase, 1)) + { t = PYFAList[iIndex].pyBase[i].phrase; - for (j = 0; j < PYFAList[iIndex].pyBase[i].iPhraseCount; j++) { + + for (j = 0; j < PYFAList[iIndex].pyBase[i].iPhraseCount; j++) + { tt = t; t = t->next; - if (!strcmp (t->strMap, strMap + 2) && !strcmp (t->strPhrase, strPhrase + utf8_char_len(strPhrase))) { - printf ("\n\t%d: %s %s ----->deleted.\n", s2, strPY, strPhrase); + + if (!strcmp(t->strMap, strMap + 2) && !strcmp(t->strPhrase, strPhrase + utf8_char_len(strPhrase))) + { + printf("\n\t%d: %s %s ----->deleted.\n", s2, strPY, strPhrase); goto _next; } - if (strcmp (t->strMap, strMap + 2) > 0) { + + if (strcmp(t->strMap, strMap + 2) > 0) + { t = tt; break; } } - phrase = (_PyPhrase *) malloc (sizeof (_PyPhrase)); - phrase->strPhrase = (char *) malloc (sizeof (char) * (strlen (strPhrase) - utf8_char_len(strPhrase) + 1)); - phrase->strMap = (char *) malloc (sizeof (char) * ((strTemp.iHZCount - 1) * 2 + 1)); + phrase = (_PyPhrase *) malloc(sizeof(_PyPhrase)); + + phrase->strPhrase = (char *) malloc(sizeof(char) * (strlen(strPhrase) - utf8_char_len(strPhrase) + 1)); + phrase->strMap = (char *) malloc(sizeof(char) * ((strTemp.iHZCount - 1) * 2 + 1)); phrase->uIndex = uIndex++; - strcpy (phrase->strPhrase, strPhrase + utf8_char_len(strPhrase)); - strcpy (phrase->strMap, strMap + 2); + strcpy(phrase->strPhrase, strPhrase + utf8_char_len(strPhrase)); + strcpy(phrase->strMap, strMap + 2); tt = t->next; t->next = phrase; @@ -201,50 +250,61 @@ PYFAList[iIndex].pyBase[i].iPhraseCount++; s1++; kkk = 1; -_next: + + _next: ; } } } } + if (!kkk) - fprintf (f, "%s %s %s\n", strPY, strPhrase, (char *) (strTemp.strPYParsed)); + fprintf(f, "%s %s %s\n", strPY, strPhrase, (char *)(strTemp.strPYParsed)); else - fprintf (fg, "%s %s\n", strPY, strPhrase); + fprintf(fg, "%s %s\n", strPY, strPhrase); } - printf ("\n%d Phrases, %d Converted!\nWriting Phrase file ...", s2, s1); - for (i = 0; i < iPYFACount; i++) { - for (j = 0; j < PYFAList[i].iHZCount; j++) { + + printf("%d Phrases, %d Converted!\nWriting Phrase file ...", s2, s1); + + for (i = 0; i < iPYFACount; i++) + { + for (j = 0; j < PYFAList[i].iHZCount; j++) + { iIndex = PYFAList[i].pyBase[j].iPhraseCount; - if (iIndex) { - INT8 clen = strlen(PYFAList[i].pyBase[j].strHZ); - fwrite (&i, sizeof (int), 1, fp2); - fwrite (&clen, sizeof(INT8), 1, fp2); - fwrite (PYFAList[i].pyBase[j].strHZ, sizeof (char) * clen, 1, fp2); - fwrite (&iIndex, sizeof (int), 1, fp2); + if (iIndex) + { + int8_t clen = strlen(PYFAList[i].pyBase[j].strHZ); + fwrite(&i, sizeof(int), 1, fp2); + fwrite(&clen, sizeof(int8_t), 1, fp2); + fwrite(PYFAList[i].pyBase[j].strHZ, sizeof(char) * clen, 1, fp2); + + fwrite(&iIndex, sizeof(int), 1, fp2); t = PYFAList[i].pyBase[j].phrase->next; - for (k = 0; k < PYFAList[i].pyBase[j].iPhraseCount; k++) { + + for (k = 0; k < PYFAList[i].pyBase[j].iPhraseCount; k++) + { int slen = strlen(t->strPhrase); - iIndex = strlen (t->strMap); - fwrite (&iIndex, sizeof (int), 1, fp2); - fwrite (t->strMap, sizeof (char), iIndex, fp2); - fwrite (&slen, sizeof(int), 1, fp2); - fwrite (t->strPhrase, sizeof (char), strlen (t->strPhrase), fp2); + iIndex = strlen(t->strMap); + fwrite(&iIndex, sizeof(int), 1, fp2); + fwrite(t->strMap, sizeof(char), iIndex, fp2); + fwrite(&slen, sizeof(int), 1, fp2); + fwrite(t->strPhrase, sizeof(char), strlen(t->strPhrase), fp2); uTemp = uIndex - 1 - t->uIndex; - fwrite (&uTemp, sizeof (unsigned int), 1, fp2); + fwrite(&uTemp, sizeof(unsigned int), 1, fp2); t = t->next; } } } } - printf ("\nOK!\n"); - fclose (fp2); - fclose (fpt); + printf("\nOK!\n"); + + fclose(fp2); + fclose(fpt); } -void CreatePYBase (void) +void CreatePYBase(void) { _PyStruct *head, *pyList, *temp, *t; char strPY[7], strHZ[UTF8_MAX_LENGTH * 80 + 1], strMap[3]; @@ -253,121 +313,152 @@ int s = 0; int tt = 0; - head = (_PyStruct *) malloc (sizeof (_PyStruct)); + head = (_PyStruct *) malloc(sizeof(_PyStruct)); head->prev = head; head->next = head; iBaseCount = 0; - while (PYTable[iBaseCount].strPY[0] != '\0') + + while (PYTable_template[iBaseCount].strPY[0] != '\0') iBaseCount++; + for (iIndex = 0; iIndex < iBaseCount; iIndex++) YY[iIndex] = 0; + iIndex = 0; - while (!feof (fps)) { - fscanf (fps, "%s", strPY); - fscanf (fps, "%s\n", strHZ); + while (!feof(fps)) + { + fscanf(fps, "%s", strPY); + fscanf(fps, "%s\n", strHZ); - if (MapPY (strPY, strMap, PARSE_INPUT_SYSTEM)) { + if (MapPY(&pyconfig, strPY, strMap, PARSE_INPUT_SYSTEM)) + { for (i = 0; i < iBaseCount; i++) - if ((!strcmp (PYTable[i].strPY, strPY)) && PYTable[i].pMH == NULL) + if ((!strcmp(PYTable_template[i].strPY, strPY)) && PYTable_template[i].control == PYTABLE_NONE) YY[i] += 1; + iIndex++; + if (utf8_strlen(strHZ) > 1) { - INT8 charLen = utf8_char_len(strHZ); + int8_t charLen = utf8_char_len(strHZ); fprintf(stderr, "%s length is larger that 1, truncated to ", strHZ); strHZ[charLen] = '\0'; fprintf(stderr, "%s.\n", strHZ); } - temp = (_PyStruct *) malloc (sizeof (_PyStruct)); - strcpy (temp->strHZ, strHZ); - strcpy (temp->strPY, strMap); + temp = (_PyStruct *) malloc(sizeof(_PyStruct)); + + strcpy(temp->strHZ, strHZ); + strcpy(temp->strPY, strMap); pyList = head->prev; - while (pyList != head) { - if (strcmp (pyList->strPY, strMap) <= 0) + while (pyList != head) + { + if (strcmp(pyList->strPY, strMap) <= 0) break; + pyList = pyList->prev; } temp->next = pyList->next; + temp->prev = pyList; pyList->next->prev = temp; pyList->next = temp; } else - fprintf (stderr, "%s Error!!!!\n", strPY); + fprintf(stderr, "%s Error!!!!\n", strPY); } iCount = 0; - for (i = 0; i < iBaseCount; i++) { + + for (i = 0; i < iBaseCount; i++) + { if (YY[i]) iCount++; } - fwrite (&iCount, sizeof (int), 1, fp1); - printf ("Groups: %d\n", iCount); + fwrite(&iCount, sizeof(int), 1, fp1); + + printf("Groups: %d\n", iCount); iAllCount = iIndex; pyList = head->next; - strcpy (strPY, pyList->strPY); + strcpy(strPY, pyList->strPY); iCount = 0; t = pyList; - while (pyList != head) { - if (!strcmp (strPY, pyList->strPY)) { + while (pyList != head) + { + if (!strcmp(strPY, pyList->strPY)) + { iCount++; } - else { + else + { tt++; - fwrite (strPY, sizeof (char) * 2, 1, fp1); - fwrite (&iCount, sizeof (int), 1, fp1); - for (i = 0; i < iCount; i++) { - INT8 len = strlen(t->strHZ); - fwrite (&len, sizeof(INT8), 1, fp1); - fwrite (t->strHZ, sizeof (char) * len , 1, fp1); + fwrite(strPY, sizeof(char) * 2, 1, fp1); + fwrite(&iCount, sizeof(int), 1, fp1); + + for (i = 0; i < iCount; i++) + { + int8_t len = strlen(t->strHZ); + fwrite(&len, sizeof(int8_t), 1, fp1); + fwrite(t->strHZ, sizeof(char) * len , 1, fp1); t = t->next; } + s += iCount; + t = pyList; iCount = 1; - strcpy (strPY, pyList->strPY); + strcpy(strPY, pyList->strPY); } + pyList = pyList->next; } - fwrite (strPY, sizeof (char) * 2, 1, fp1); - fwrite (&iCount, sizeof (int), 1, fp1); - for (i = 0; i < iCount; i++) { - INT8 len = strlen(t->strHZ); - fwrite (&len, sizeof(INT8), 1, fp1); - fwrite (t->strHZ, sizeof (char) * len , 1, fp1); + + fwrite(strPY, sizeof(char) * 2, 1, fp1); + + fwrite(&iCount, sizeof(int), 1, fp1); + + for (i = 0; i < iCount; i++) + { + int8_t len = strlen(t->strHZ); + fwrite(&len, sizeof(int8_t), 1, fp1); + fwrite(t->strHZ, sizeof(char) * len , 1, fp1); t = t->next; } + s += iCount; - fclose (fp1); - fclose (fps); + fclose(fp1); + fclose(fps); } -int main (int argc, char *argv[]) +int main(int argc, char *argv[]) { if (argc != 3) { Usage(); exit(1); } - fps = fopen (argv[1], "rt"); - fpt = fopen (argv[2], "rt"); - fp1 = fopen ("pybase.mb", "wb"); - fp2 = fopen ("pyphrase.mb", "wb"); - if (fps && fpt && fp1 && fp2) { - CreatePYBase (); - LoadPY (); - CreatePYPhrase (); + + fps = fopen(argv[1], "rt"); + + fpt = fopen(argv[2], "rt"); + fp1 = fopen("pybase.mb", "wb"); + fp2 = fopen("pyphrase.mb", "wb"); + + if (fps && fpt && fp1 && fp2) + { + CreatePYBase(); + LoadPY(); + CreatePYPhrase(); } return 0; @@ -378,4 +469,4 @@ printf("Usage: createPYMB \n"); } -// vim: expandtab ts=4 sw=4 +// kate: indent-mode cstyle; space-indent on; indent-width 4; diff -Nru fcitx-4.0.1/tools/fcitx-remote.c fcitx-4.1.1/tools/fcitx-remote.c --- fcitx-4.0.1/tools/fcitx-remote.c 2010-11-28 11:55:00.000000000 +0000 +++ fcitx-4.1.1/tools/fcitx-remote.c 2011-09-08 16:00:05.000000000 +0000 @@ -18,7 +18,7 @@ * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ***************************************************************************/ -#ifdef HAVE_CONFIG_H +#ifdef FCITX_HAVE_CONFIG_H # include #endif @@ -30,35 +30,42 @@ #include #include #include -#include +#include #include #include #include -#include -#include "core/xim.h" +#include "fcitx/frontend.h" +#include "fcitx-utils/utils.h" int create_socket(const char *name) { - int fd; - int r; - struct sockaddr_un uds_addr; - - fd = socket(AF_UNIX, SOCK_STREAM, 0); - if (fd < 0) { - return fd; - } - - /* setup address struct */ - memset(&uds_addr, 0, sizeof(uds_addr)); - uds_addr.sun_family = AF_UNIX; - strcpy(uds_addr.sun_path, name); - - r = connect(fd, (struct sockaddr *)&uds_addr, sizeof(uds_addr)); - if (r < 0) { - return r; - } + int fd; + int r; - return fd; + struct sockaddr_un uds_addr; + + fd = socket(AF_UNIX, SOCK_STREAM, 0); + + if (fd < 0) + { + return fd; + } + + /* setup address struct */ + memset(&uds_addr, 0, sizeof(uds_addr)); + + uds_addr.sun_family = AF_UNIX; + + strcpy(uds_addr.sun_path, name); + + r = connect(fd, (struct sockaddr *) & uds_addr, sizeof(uds_addr)); + + if (r < 0) + { + return r; + } + + return fd; } void usage() @@ -68,67 +75,71 @@ "\t-o\t\topen input method\n" "\t-r\t\treload fcitx config\n" "\t[no option]\tdisplay fcitx state, %d for close, %d for english, %d for chinese\n" - "\t-h\t\tdisplay this help and exit\n", - IS_CLOSED, IS_ENG, IS_CHN); + "\t-h\t\tdisplay this help and exit\n", + IS_CLOSED, IS_ENG, IS_ACTIVE); } -int main ( int argc, char *argv[] ) +int main(int argc, char *argv[]) { char socketfile[PATH_MAX] = ""; - int socket_fd; + int socket_fd; int o = 0; - char c; - while((c = getopt(argc, argv, "chor")) != -1) { - switch (c) { - case 'o': + char c; + + while ((c = getopt(argc, argv, "chor")) != -1) + { + switch (c) + { + + case 'o': o = 1; o |= (1 << 16); break; + case 'c': o = 1; break; + case 'r': o = 2; break; + case 'h': + default: usage(); return 0; break; - } - } + } + } - Display *dpy = NULL; - if ((dpy = XOpenDisplay ((char *) NULL)) == NULL) { - fprintf (stderr, "Error: fcitx-remote can only run under X\n"); - fprintf (stderr, "Hint: If you running fcitx-remote from console, you may need to " - "set the $DISPLAY.\n"); + sprintf(socketfile, "/tmp/fcitx-socket-:%d", FcitxGetDisplayNumber()); + + socket_fd = create_socket(socketfile); + + if (socket_fd < 0) + { + fprintf(stderr, "Can't open socket %s: %s\n", socketfile, strerror(errno)); return 1; } - sprintf(socketfile, "/tmp/fcitx-socket-%s", DisplayString(dpy)); - - if (dpy) - XCloseDisplay(dpy); + if (o == 0) + { + write(socket_fd, &o, sizeof(o)); + int buf; + read(socket_fd, &buf, sizeof(buf)); + printf("%d\n", buf); + close(socket_fd); + } + else + { + write(socket_fd, &o, sizeof(o)); + close(socket_fd); + } - socket_fd = create_socket(socketfile); - if (socket_fd < 0) { - fprintf(stderr, "Can't open socket %s: %s\n", socketfile, strerror(errno)); - return 1; - } - - if (o == 0) { - write(socket_fd, &o, sizeof(o)); - int buf; - read(socket_fd, &buf, sizeof(buf)); - printf("%d\n", buf); - close(socket_fd); - } else { - write(socket_fd, &o, sizeof(o)); - close(socket_fd); - } + return 0; +} /* ---------- end of function main ---------- */ - return 0; -} /* ---------- end of function main ---------- */ +// kate: indent-mode cstyle; space-indent on; indent-width 4; diff -Nru fcitx-4.0.1/tools/Makefile.am fcitx-4.1.1/tools/Makefile.am --- fcitx-4.0.1/tools/Makefile.am 2010-11-28 11:55:00.000000000 +0000 +++ fcitx-4.1.1/tools/Makefile.am 1970-01-01 00:00:00.000000000 +0000 @@ -1,53 +0,0 @@ -INCLUDES = \ - -I$(top_srcdir)/lib \ - -I$(top_srcdir)/src \ - @CAIRO_XLIB_CFLAGS@ \ - $(NULL) -DEFS = -DPKGDATADIR=\"$(pkgdatadir)\" - -EXTRA_DIST = $(tools_DATA) - -bin_PROGRAMS = mb2txt txt2mb createPYMB readPYMB readPYBase mb2org fcitx-remote scel2org -scel2org_SOURCES = scel2org.c -readPYMB_SOURCES = pyTools.c pyTools.h readPYMB.c -readPYBase_SOURCES = pyTools.c pyTools.h readPYBase.c -fcitx_remote_SOURCES = fcitx-remote.c - -scel2org_LDADD = \ - @LIBICONV@ \ - $(NULL) - -fcitx_remote_LDADD = \ - @CAIRO_XLIB_LIBS@ \ - $(NULL) - -readPYBase_LDADD = \ - ../src/fcitx-config/libfcitx-config.la \ - @INTLLIBS@ \ - $(NULL) - -readPYMB_LDADD = \ - ../src/fcitx-config/libfcitx-config.la \ - @INTLLIBS@ \ - $(NULL) - -createPYMB_LDADD = \ - ../src/im/pinyin/pyParser.o \ - ../src/im/pinyin/pyMapTable.o \ - ../src/tools/utf8.o \ - ../src/im/pinyin/PYFA.o \ - ../src/im/pinyin/sp.o \ - ../src/fcitx-config/libfcitx-config.la \ - @INTLLIBS@ \ - $(NULL) -mb2org_LDADD = \ - ../src/im/pinyin/pyParser.o \ - ../src/im/pinyin/pyMapTable.o \ - ../src/im/pinyin/PYFA.o \ - ../src/im/pinyin/sp.o \ - pyTools.o \ - ../src/fcitx-config/libfcitx-config.la \ - @INTLLIBS@ \ - $(NULL) - -txt2mb_LDADD = ../src/tools/utf8.o diff -Nru fcitx-4.0.1/tools/Makefile.in fcitx-4.1.1/tools/Makefile.in --- fcitx-4.0.1/tools/Makefile.in 2010-12-17 04:26:31.000000000 +0000 +++ fcitx-4.1.1/tools/Makefile.in 1970-01-01 00:00:00.000000000 +0000 @@ -1,680 +0,0 @@ -# Makefile.in generated by automake 1.11.1 from Makefile.am. -# @configure_input@ - -# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, -# Inc. -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - -@SET_MAKE@ - -VPATH = @srcdir@ -pkgdatadir = $(datadir)/@PACKAGE@ -pkgincludedir = $(includedir)/@PACKAGE@ -pkglibdir = $(libdir)/@PACKAGE@ -pkglibexecdir = $(libexecdir)/@PACKAGE@ -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = @build@ -host_triplet = @host@ -bin_PROGRAMS = mb2txt$(EXEEXT) txt2mb$(EXEEXT) createPYMB$(EXEEXT) \ - readPYMB$(EXEEXT) readPYBase$(EXEEXT) mb2org$(EXEEXT) \ - fcitx-remote$(EXEEXT) scel2org$(EXEEXT) -subdir = tools -DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/configure.in -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -mkinstalldirs = $(install_sh) -d -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -CONFIG_CLEAN_VPATH_FILES = -am__installdirs = "$(DESTDIR)$(bindir)" -PROGRAMS = $(bin_PROGRAMS) -createPYMB_SOURCES = createPYMB.c -createPYMB_OBJECTS = createPYMB.$(OBJEXT) -createPYMB_DEPENDENCIES = ../src/im/pinyin/pyParser.o \ - ../src/im/pinyin/pyMapTable.o ../src/tools/utf8.o \ - ../src/im/pinyin/PYFA.o ../src/im/pinyin/sp.o \ - ../src/fcitx-config/libfcitx-config.la -AM_V_lt = $(am__v_lt_$(V)) -am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) -am__v_lt_0 = --silent -am_fcitx_remote_OBJECTS = fcitx-remote.$(OBJEXT) -fcitx_remote_OBJECTS = $(am_fcitx_remote_OBJECTS) -fcitx_remote_DEPENDENCIES = -mb2org_SOURCES = mb2org.c -mb2org_OBJECTS = mb2org.$(OBJEXT) -mb2org_DEPENDENCIES = ../src/im/pinyin/pyParser.o \ - ../src/im/pinyin/pyMapTable.o ../src/im/pinyin/PYFA.o \ - ../src/im/pinyin/sp.o pyTools.o \ - ../src/fcitx-config/libfcitx-config.la -mb2txt_SOURCES = mb2txt.c -mb2txt_OBJECTS = mb2txt.$(OBJEXT) -mb2txt_LDADD = $(LDADD) -am_readPYBase_OBJECTS = pyTools.$(OBJEXT) readPYBase.$(OBJEXT) -readPYBase_OBJECTS = $(am_readPYBase_OBJECTS) -readPYBase_DEPENDENCIES = ../src/fcitx-config/libfcitx-config.la -am_readPYMB_OBJECTS = pyTools.$(OBJEXT) readPYMB.$(OBJEXT) -readPYMB_OBJECTS = $(am_readPYMB_OBJECTS) -readPYMB_DEPENDENCIES = ../src/fcitx-config/libfcitx-config.la -am_scel2org_OBJECTS = scel2org.$(OBJEXT) -scel2org_OBJECTS = $(am_scel2org_OBJECTS) -scel2org_DEPENDENCIES = -txt2mb_SOURCES = txt2mb.c -txt2mb_OBJECTS = txt2mb.$(OBJEXT) -txt2mb_DEPENDENCIES = ../src/tools/utf8.o -DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles -am__mv = mv -f -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ - $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ - $(AM_CFLAGS) $(CFLAGS) -AM_V_CC = $(am__v_CC_$(V)) -am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) -am__v_CC_0 = @echo " CC " $@; -AM_V_at = $(am__v_at_$(V)) -am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) -am__v_at_0 = @ -CCLD = $(CC) -LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -AM_V_CCLD = $(am__v_CCLD_$(V)) -am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) -am__v_CCLD_0 = @echo " CCLD " $@; -AM_V_GEN = $(am__v_GEN_$(V)) -am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) -am__v_GEN_0 = @echo " GEN " $@; -SOURCES = createPYMB.c $(fcitx_remote_SOURCES) mb2org.c mb2txt.c \ - $(readPYBase_SOURCES) $(readPYMB_SOURCES) $(scel2org_SOURCES) \ - txt2mb.c -DIST_SOURCES = createPYMB.c $(fcitx_remote_SOURCES) mb2org.c mb2txt.c \ - $(readPYBase_SOURCES) $(readPYMB_SOURCES) $(scel2org_SOURCES) \ - txt2mb.c -ETAGS = etags -CTAGS = ctags -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -ACLOCAL = @ACLOCAL@ -ALL_LINGUAS = @ALL_LINGUAS@ -AMTAR = @AMTAR@ -AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ -AR = @AR@ -AUTOCONF = @AUTOCONF@ -AUTOHEADER = @AUTOHEADER@ -AUTOMAKE = @AUTOMAKE@ -AWK = @AWK@ -CAIRO_XLIB_CFLAGS = @CAIRO_XLIB_CFLAGS@ -CAIRO_XLIB_LIBS = @CAIRO_XLIB_LIBS@ -CC = @CC@ -CCDEPMODE = @CCDEPMODE@ -CFLAGS = @CFLAGS@ -CPP = @CPP@ -CPPFLAGS = @CPPFLAGS@ -CYGPATH_W = @CYGPATH_W@ -DATADIRNAME = @DATADIRNAME@ -DBUS_CFLAGS = @DBUS_CFLAGS@ -DBUS_LIBS = @DBUS_LIBS@ -DEFS = -DPKGDATADIR=\"$(pkgdatadir)\" -DEPDIR = @DEPDIR@ -DLLTOOL = @DLLTOOL@ -DSYMUTIL = @DSYMUTIL@ -DUMPBIN = @DUMPBIN@ -ECHO_C = @ECHO_C@ -ECHO_N = @ECHO_N@ -ECHO_T = @ECHO_T@ -EGREP = @EGREP@ -EXEEXT = @EXEEXT@ -FGREP = @FGREP@ -FONTCONFIG_CFLAGS = @FONTCONFIG_CFLAGS@ -FONTCONFIG_LIBS = @FONTCONFIG_LIBS@ -GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ -GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ -GMSGFMT = @GMSGFMT@ -GMSGFMT_015 = @GMSGFMT_015@ -GREP = @GREP@ -HOST_LIBS = @HOST_LIBS@ -INCINTL = @INCINTL@ -INSTALL = @INSTALL@ -INSTALL_DATA = @INSTALL_DATA@ -INSTALL_PROGRAM = @INSTALL_PROGRAM@ -INSTALL_SCRIPT = @INSTALL_SCRIPT@ -INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ -INTLLIBS = @INTLLIBS@ -INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ -INTLTOOL_MERGE = @INTLTOOL_MERGE@ -INTLTOOL_PERL = @INTLTOOL_PERL@ -INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ -INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ -LD = @LD@ -LDFLAGS = @LDFLAGS@ -LIBICONV = @LIBICONV@ -LIBINTL = @LIBINTL@ -LIBOBJS = @LIBOBJS@ -LIBS = @LIBS@ -LIBTOOL = @LIBTOOL@ -LIPO = @LIPO@ -LN_S = @LN_S@ -LTLIBICONV = @LTLIBICONV@ -LTLIBINTL = @LTLIBINTL@ -LTLIBOBJS = @LTLIBOBJS@ -MAKEINFO = @MAKEINFO@ -MANIFEST_TOOL = @MANIFEST_TOOL@ -MD5SUM = @MD5SUM@ -MKDIR_P = @MKDIR_P@ -MSGFMT = @MSGFMT@ -MSGFMT_015 = @MSGFMT_015@ -MSGMERGE = @MSGMERGE@ -NM = @NM@ -NMEDIT = @NMEDIT@ -OBJDUMP = @OBJDUMP@ -OBJEXT = @OBJEXT@ -OTOOL = @OTOOL@ -OTOOL64 = @OTOOL64@ -PACKAGE = @PACKAGE@ -PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ -PACKAGE_NAME = @PACKAGE_NAME@ -PACKAGE_STRING = @PACKAGE_STRING@ -PACKAGE_TARNAME = @PACKAGE_TARNAME@ -PACKAGE_URL = @PACKAGE_URL@ -PACKAGE_VERSION = @PACKAGE_VERSION@ -PANGOCAIRO_CFLAGS = @PANGOCAIRO_CFLAGS@ -PANGOCAIRO_LIBS = @PANGOCAIRO_LIBS@ -PATH_SEPARATOR = @PATH_SEPARATOR@ -PKG_CONFIG = @PKG_CONFIG@ -PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ -PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ -POSUB = @POSUB@ -RANLIB = @RANLIB@ -SED = @SED@ -SET_MAKE = @SET_MAKE@ -SHELL = @SHELL@ -STRIP = @STRIP@ -TAR = @TAR@ -USE_NLS = @USE_NLS@ -VERSION = @VERSION@ -WGET = @WGET@ -XGETTEXT = @XGETTEXT@ -XGETTEXT_015 = @XGETTEXT_015@ -XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ -XMKMF = @XMKMF@ -XRENDER_CFLAGS = @XRENDER_CFLAGS@ -XRENDER_LIBS = @XRENDER_LIBS@ -X_CFLAGS = @X_CFLAGS@ -X_LIBS = @X_LIBS@ -abs_builddir = @abs_builddir@ -abs_srcdir = @abs_srcdir@ -abs_top_builddir = @abs_top_builddir@ -abs_top_srcdir = @abs_top_srcdir@ -ac_ct_AR = @ac_ct_AR@ -ac_ct_CC = @ac_ct_CC@ -ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ -am__include = @am__include@ -am__leading_dot = @am__leading_dot@ -am__quote = @am__quote@ -am__tar = @am__tar@ -am__untar = @am__untar@ -bindir = @bindir@ -build = @build@ -build_alias = @build_alias@ -build_cpu = @build_cpu@ -build_os = @build_os@ -build_vendor = @build_vendor@ -builddir = @builddir@ -datadir = @datadir@ -datarootdir = @datarootdir@ -docdir = @docdir@ -dvidir = @dvidir@ -exec_prefix = @exec_prefix@ -host = @host@ -host_alias = @host_alias@ -host_cpu = @host_cpu@ -host_os = @host_os@ -host_vendor = @host_vendor@ -htmldir = @htmldir@ -includedir = @includedir@ -infodir = @infodir@ -install_sh = @install_sh@ -libdir = @libdir@ -libexecdir = @libexecdir@ -localedir = @localedir@ -localstatedir = @localstatedir@ -mandir = @mandir@ -mkdir_p = @mkdir_p@ -oldincludedir = @oldincludedir@ -pdfdir = @pdfdir@ -prefix = @prefix@ -program_transform_name = @program_transform_name@ -psdir = @psdir@ -sbindir = @sbindir@ -sharedstatedir = @sharedstatedir@ -srcdir = @srcdir@ -sysconfdir = @sysconfdir@ -target_alias = @target_alias@ -top_build_prefix = @top_build_prefix@ -top_builddir = @top_builddir@ -top_srcdir = @top_srcdir@ -INCLUDES = \ - -I$(top_srcdir)/lib \ - -I$(top_srcdir)/src \ - @CAIRO_XLIB_CFLAGS@ \ - $(NULL) - -EXTRA_DIST = $(tools_DATA) -scel2org_SOURCES = scel2org.c -readPYMB_SOURCES = pyTools.c pyTools.h readPYMB.c -readPYBase_SOURCES = pyTools.c pyTools.h readPYBase.c -fcitx_remote_SOURCES = fcitx-remote.c -scel2org_LDADD = \ - @LIBICONV@ \ - $(NULL) - -fcitx_remote_LDADD = \ - @CAIRO_XLIB_LIBS@ \ - $(NULL) - -readPYBase_LDADD = \ - ../src/fcitx-config/libfcitx-config.la \ - @INTLLIBS@ \ - $(NULL) - -readPYMB_LDADD = \ - ../src/fcitx-config/libfcitx-config.la \ - @INTLLIBS@ \ - $(NULL) - -createPYMB_LDADD = \ - ../src/im/pinyin/pyParser.o \ - ../src/im/pinyin/pyMapTable.o \ - ../src/tools/utf8.o \ - ../src/im/pinyin/PYFA.o \ - ../src/im/pinyin/sp.o \ - ../src/fcitx-config/libfcitx-config.la \ - @INTLLIBS@ \ - $(NULL) - -mb2org_LDADD = \ - ../src/im/pinyin/pyParser.o \ - ../src/im/pinyin/pyMapTable.o \ - ../src/im/pinyin/PYFA.o \ - ../src/im/pinyin/sp.o \ - pyTools.o \ - ../src/fcitx-config/libfcitx-config.la \ - @INTLLIBS@ \ - $(NULL) - -txt2mb_LDADD = ../src/tools/utf8.o -all: all-am - -.SUFFIXES: -.SUFFIXES: .c .lo .o .obj -$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ - && { if test -f $@; then exit 0; else break; fi; }; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign tools/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign tools/Makefile -.PRECIOUS: Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(am__aclocal_m4_deps): -install-binPROGRAMS: $(bin_PROGRAMS) - @$(NORMAL_INSTALL) - test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)" - @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ - for p in $$list; do echo "$$p $$p"; done | \ - sed 's/$(EXEEXT)$$//' | \ - while read p p1; do if test -f $$p || test -f $$p1; \ - then echo "$$p"; echo "$$p"; else :; fi; \ - done | \ - sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \ - -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ - sed 'N;N;N;s,\n, ,g' | \ - $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ - { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ - if ($$2 == $$4) files[d] = files[d] " " $$1; \ - else { print "f", $$3 "/" $$4, $$1; } } \ - END { for (d in files) print "f", d, files[d] }' | \ - while read type dir files; do \ - if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ - test -z "$$files" || { \ - echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ - $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ - } \ - ; done - -uninstall-binPROGRAMS: - @$(NORMAL_UNINSTALL) - @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ - files=`for p in $$list; do echo "$$p"; done | \ - sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ - -e 's/$$/$(EXEEXT)/' `; \ - test -n "$$list" || exit 0; \ - echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ - cd "$(DESTDIR)$(bindir)" && rm -f $$files - -clean-binPROGRAMS: - @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ - echo " rm -f" $$list; \ - rm -f $$list || exit $$?; \ - test -n "$(EXEEXT)" || exit 0; \ - list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ - echo " rm -f" $$list; \ - rm -f $$list -createPYMB$(EXEEXT): $(createPYMB_OBJECTS) $(createPYMB_DEPENDENCIES) - @rm -f createPYMB$(EXEEXT) - $(AM_V_CCLD)$(LINK) $(createPYMB_OBJECTS) $(createPYMB_LDADD) $(LIBS) -fcitx-remote$(EXEEXT): $(fcitx_remote_OBJECTS) $(fcitx_remote_DEPENDENCIES) - @rm -f fcitx-remote$(EXEEXT) - $(AM_V_CCLD)$(LINK) $(fcitx_remote_OBJECTS) $(fcitx_remote_LDADD) $(LIBS) -mb2org$(EXEEXT): $(mb2org_OBJECTS) $(mb2org_DEPENDENCIES) - @rm -f mb2org$(EXEEXT) - $(AM_V_CCLD)$(LINK) $(mb2org_OBJECTS) $(mb2org_LDADD) $(LIBS) -mb2txt$(EXEEXT): $(mb2txt_OBJECTS) $(mb2txt_DEPENDENCIES) - @rm -f mb2txt$(EXEEXT) - $(AM_V_CCLD)$(LINK) $(mb2txt_OBJECTS) $(mb2txt_LDADD) $(LIBS) -readPYBase$(EXEEXT): $(readPYBase_OBJECTS) $(readPYBase_DEPENDENCIES) - @rm -f readPYBase$(EXEEXT) - $(AM_V_CCLD)$(LINK) $(readPYBase_OBJECTS) $(readPYBase_LDADD) $(LIBS) -readPYMB$(EXEEXT): $(readPYMB_OBJECTS) $(readPYMB_DEPENDENCIES) - @rm -f readPYMB$(EXEEXT) - $(AM_V_CCLD)$(LINK) $(readPYMB_OBJECTS) $(readPYMB_LDADD) $(LIBS) -scel2org$(EXEEXT): $(scel2org_OBJECTS) $(scel2org_DEPENDENCIES) - @rm -f scel2org$(EXEEXT) - $(AM_V_CCLD)$(LINK) $(scel2org_OBJECTS) $(scel2org_LDADD) $(LIBS) -txt2mb$(EXEEXT): $(txt2mb_OBJECTS) $(txt2mb_DEPENDENCIES) - @rm -f txt2mb$(EXEEXT) - $(AM_V_CCLD)$(LINK) $(txt2mb_OBJECTS) $(txt2mb_LDADD) $(LIBS) - -mostlyclean-compile: - -rm -f *.$(OBJEXT) - -distclean-compile: - -rm -f *.tab.c - -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/createPYMB.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fcitx-remote.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mb2org.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mb2txt.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pyTools.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/readPYBase.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/readPYMB.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/scel2org.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/txt2mb.Po@am__quote@ - -.c.o: -@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c $< - -.c.obj: -@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` - -.c.lo: -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs - -ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - mkid -fID $$unique -tags: TAGS - -TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - set x; \ - here=`pwd`; \ - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: CTAGS -CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d "$(distdir)/$$file"; then \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ - else \ - test -f "$(distdir)/$$file" \ - || cp -p $$d/$$file "$(distdir)/$$file" \ - || exit 1; \ - fi; \ - done -check-am: all-am -check: check-am -all-am: Makefile $(PROGRAMS) -installdirs: - for dir in "$(DESTDIR)$(bindir)"; do \ - test -z "$$dir" || $(MKDIR_P) "$$dir"; \ - done -install: install-am -install-exec: install-exec-am -install-data: install-data-am -uninstall: uninstall-am - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-am -install-strip: - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - `test -z '$(STRIP)' || \ - echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install -mostlyclean-generic: - -clean-generic: - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-am - -clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am - -distclean: distclean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -distclean-am: clean-am distclean-compile distclean-generic \ - distclean-tags - -dvi: dvi-am - -dvi-am: - -html: html-am - -html-am: - -info: info-am - -info-am: - -install-data-am: - -install-dvi: install-dvi-am - -install-dvi-am: - -install-exec-am: install-binPROGRAMS - -install-html: install-html-am - -install-html-am: - -install-info: install-info-am - -install-info-am: - -install-man: - -install-pdf: install-pdf-am - -install-pdf-am: - -install-ps: install-ps-am - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-am - -mostlyclean-am: mostlyclean-compile mostlyclean-generic \ - mostlyclean-libtool - -pdf: pdf-am - -pdf-am: - -ps: ps-am - -ps-am: - -uninstall-am: uninstall-binPROGRAMS - -.MAKE: install-am install-strip - -.PHONY: CTAGS GTAGS all all-am check check-am clean clean-binPROGRAMS \ - clean-generic clean-libtool ctags distclean distclean-compile \ - distclean-generic distclean-libtool distclean-tags distdir dvi \ - dvi-am html html-am info info-am install install-am \ - install-binPROGRAMS install-data install-data-am install-dvi \ - install-dvi-am install-exec install-exec-am install-html \ - install-html-am install-info install-info-am install-man \ - install-pdf install-pdf-am install-ps install-ps-am \ - install-strip installcheck installcheck-am installdirs \ - maintainer-clean maintainer-clean-generic mostlyclean \ - mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ - pdf pdf-am ps ps-am tags uninstall uninstall-am \ - uninstall-binPROGRAMS - - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff -Nru fcitx-4.0.1/tools/mb2org.c fcitx-4.1.1/tools/mb2org.c --- fcitx-4.0.1/tools/mb2org.c 2010-12-17 04:27:39.000000000 +0000 +++ fcitx-4.1.1/tools/mb2org.c 2011-09-08 16:00:05.000000000 +0000 @@ -21,103 +21,119 @@ #include #include #include +#include #include "im/pinyin/pyParser.h" #include "im/pinyin/pyMapTable.h" #include "im/pinyin/PYFA.h" #include "im/pinyin/sp.h" #include "pyTools.h" -#include "tools/configfile.h" #include "fcitx-config/xdg.h" +#include "im/pinyin/pyconfig.h" +#include "im/pinyin/py.h" -FcitxConfig fc; +FcitxPinyinConfig pyconfig; /* Bad programming practice :( */ -Bool bSingleHZMode; +boolean bSingleHZMode; void usage(); char *HZToPY(struct _HZMap *, char []); int main(int argc, char **argv) { - FILE *fi, *fi2; - int i, j, k; - char *pyusrphrase_mb = NULL, *pybase_mb = NULL, *HZPY, tMap[3], tPY[10]; - struct _HZMap *HZMap; - struct _PYMB *PYMB; - char c; - Bool isUser = True; - - while((c = getopt(argc, argv, "f:b:sh")) != -1) - { - switch(c) - { - case 'f': - pyusrphrase_mb = strdup(optarg); - break; - case 'b': - pybase_mb = strdup(optarg); - break; - case 's': - isUser = False; - break; - case 'h': - default: - usage(); - } - } - - if (pyusrphrase_mb) - fi = fopen (pyusrphrase_mb , "r"); - else - fi = GetXDGFileUser( PY_USERPHRASE_FILE, "r" , &pyusrphrase_mb); - if (!fi) - { - perror("fopen"); - fprintf(stderr, "Can't open file `%s' for reading\n", pyusrphrase_mb); - exit(1); - } - free(pyusrphrase_mb); + FILE *fi, *fi2; + int i, j, k; + char *pyusrphrase_mb = NULL, *pybase_mb = NULL, *HZPY, tMap[3], tPY[10]; - if (pybase_mb) - fi2 = fopen (pybase_mb , "r"); - else - fi2 = GetXDGFileData(PY_BASE_FILE, "r", &pybase_mb); - if (!fi2) - { - perror("fopen"); - fprintf(stderr, "Can't open file `%s' for reading\n", pybase_mb); - exit(1); - } - free(pybase_mb); + struct _HZMap *HZMap; + + struct _PYMB *PYMB; + char c; + boolean isUser = true; + while ((c = getopt(argc, argv, "f:b:sh")) != -1) + { + switch (c) + { + + case 'f': + pyusrphrase_mb = strdup(optarg); + break; + + case 'b': + pybase_mb = strdup(optarg); + break; + + case 's': + isUser = false; + break; + + case 'h': + + default: + usage(); + } + } - LoadPYMB(fi, &PYMB, isUser); - LoadPYBase(fi2, &HZMap); + if (pyusrphrase_mb) + fi = fopen(pyusrphrase_mb , "r"); + else + fi = GetXDGFileUserWithPrefix("pinyin", PY_USERPHRASE_FILE, "r" , &pyusrphrase_mb); - for (i = 0; PYMB[i].HZ[0]; ++i) - { - for (j = 0; j < PYMB[i].UserPhraseCount; ++j) + if (!fi) { - HZPY = HZToPY(&(HZMap[PYMB[i].PYFAIndex]), PYMB[i].HZ); - printf("%s", HZPY); + perror("fopen"); + fprintf(stderr, "Can't open file `%s' for reading\n", pyusrphrase_mb); + exit(1); + } + + free(pyusrphrase_mb); - for (k = 0; k < PYMB[i].UserPhrase[j].Length / 2; ++k) - { - memcpy(tMap, PYMB[i].UserPhrase[j].Map + 2 * k, 2); - tMap[2] = '\0'; - tPY[0] = '\0'; - if (!MapToPY(tMap, tPY)) - strcpy(tPY, "'*"); - printf("'%s", tPY); - } - printf(" %s%s\n", PYMB[i].HZ, PYMB[i].UserPhrase[j].Phrase); + if (pybase_mb) + fi2 = fopen(pybase_mb , "r"); + else + fi2 = GetXDGFileWithPrefix("pinyin", PY_BASE_FILE, "r", &pybase_mb); - free(HZPY); + if (!fi2) + { + perror("fopen"); + fprintf(stderr, "Can't open file `%s' for reading\n", pybase_mb); + exit(1); } - } - return 0; + free(pybase_mb); + + + LoadPYMB(fi, &PYMB, isUser); + LoadPYBase(fi2, &HZMap); + + for (i = 0; PYMB[i].HZ[0]; ++i) + { + for (j = 0; j < PYMB[i].UserPhraseCount; ++j) + { + HZPY = HZToPY(&(HZMap[PYMB[i].PYFAIndex]), PYMB[i].HZ); + printf("%s", HZPY); + + for (k = 0; k < PYMB[i].UserPhrase[j].Length / 2; ++k) + { + memcpy(tMap, PYMB[i].UserPhrase[j].Map + 2 * k, 2); + tMap[2] = '\0'; + tPY[0] = '\0'; + + if (!MapToPY(tMap, tPY)) + strcpy(tPY, "'*"); + + printf("'%s", tPY); + } + + printf(" %s%s\n", PYMB[i].HZ, PYMB[i].UserPhrase[j].Phrase); + + free(HZPY); + } + } + + return 0; } /* @@ -127,48 +143,51 @@ char *HZToPY(struct _HZMap *pHZMap1, char* HZ) { - int i; - char Map[3], tPY[10]; + int i; + char Map[3], tPY[10]; - Map[0] = '\0'; - for (i = 0; i < pHZMap1->BaseCount; ++i) - if (strcmp(HZ, pHZMap1->HZ[i]) == 0) - { - strcpy(Map, pHZMap1->Map); - break; - } + Map[0] = '\0'; + + for (i = 0; i < pHZMap1->BaseCount; ++i) + if (strcmp(HZ, pHZMap1->HZ[i]) == 0) + { + strcpy(Map, pHZMap1->Map); + break; + } - if (!Map[0] || !MapToPY(Map, tPY)) - strcpy(tPY, "*"); + if (!Map[0] || !MapToPY(Map, tPY)) + strcpy(tPY, "*"); - return strdup(tPY); + return strdup(tPY); } void usage() { - puts( -"mb2org - Convert .mb file to .org file (SEE NOTES BELOW)\n" -"\n" -" usage: mb2org [OPTION]\n" -"\n" -" -f this is the .mb file to be decoded, usually this is\n" -" ~/.fcitx/" PY_USERPHRASE_FILE "\n" -" if not specified, defaults to\n" -" ~/.fcitx/" PY_USERPHRASE_FILE "\n" -" -b this is the pybase.mb file used to determine the\n" -" of the first character in HZ. Usually, this is\n" -" " PKGDATADIR "/data/" PY_BASE_FILE "\n" -" if not specified, defaults to\n" -" " PKGDATADIR "/data/" PY_BASE_FILE "\n" -" -s Is MB from user or from system (they have different format).\n" -" -h display this help\n" -"\n" -"NOTES:\n" -"1. If no match is found for a particular HZ, then the pinyin for that HZ\n" -" will be `*'.\n" -"2. Always check the produced output for errors.\n" - ); - exit(1); - return; + puts( + "mb2org - Convert .mb file to .org file (SEE NOTES BELOW)\n" + "\n" + " usage: mb2org [OPTION]\n" + "\n" + " -f this is the .mb file to be decoded, usually this is\n" + " ~/.fcitx/" PY_USERPHRASE_FILE "\n" + " if not specified, defaults to\n" + " ~/.fcitx/" PY_USERPHRASE_FILE "\n" + " -b this is the pybase.mb file used to determine the\n" + " of the first character in HZ. Usually, this is\n" + " " PKGDATADIR "/pinyin/" PY_BASE_FILE "\n" + " if not specified, defaults to\n" + " " PKGDATADIR "/pinyin/" PY_BASE_FILE "\n" + " -s Is MB from user or from system (they have different format).\n" + " -h display this help\n" + "\n" + "NOTES:\n" + "1. If no match is found for a particular HZ, then the pinyin for that HZ\n" + " will be `*'.\n" + "2. Always check the produced output for errors.\n" + ); + exit(1); + return; } + +// kate: indent-mode cstyle; space-indent on; indent-width 4; diff -Nru fcitx-4.0.1/tools/mb2txt.c fcitx-4.1.1/tools/mb2txt.c --- fcitx-4.0.1/tools/mb2txt.c 2010-12-14 14:23:09.000000000 +0000 +++ fcitx-4.1.1/tools/mb2txt.c 2011-09-08 16:00:05.000000000 +0000 @@ -17,12 +17,9 @@ * Free Software Foundation, Inc., * * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ***************************************************************************/ -#ifdef HAVE_CONFIG_H +#ifdef FCITX_HAVE_CONFIG_H #include #endif - -#include "../src/core/internalVersion.c" - #include #include #include @@ -32,17 +29,22 @@ #endif #define MAX_CODE_LENGTH 30 -typedef struct _RULE_RULE { + +typedef struct _RULE_RULE +{ unsigned char iFlag; // 1 --> 正序 0 --> 逆序 unsigned char iWhich; //第几个字 unsigned char iIndex; //第几个编码 } RULE_RULE; -typedef struct _RULE { + +typedef struct _RULE +{ unsigned char iWords; //多少个字 unsigned char iFlag; //1 --> 大于等于iWords 0 --> 等于iWords RULE_RULE *rule; } RULE; -int main (int argc, char *argv[]) + +int main(int argc, char *argv[]) { char strCode[100]; char strHZ[100]; @@ -55,93 +57,122 @@ unsigned char iPYLen; char iVersion = 0; - if (argc != 2) { - printf ("\nUsage: mb2txt \n\n"); - exit (1); + if (argc != 2) + { + printf("\nUsage: mb2txt \n\n"); + exit(1); } - fpDict = fopen (argv[1], "rb"); - if (!fpDict) { - printf ("\nCan not read source file!\n\n"); - exit (2); + fpDict = fopen(argv[1], "rb"); + + if (!fpDict) + { + printf("\nCan not read source file!\n\n"); + exit(2); } //先读取码表的信息 - fread (&iTemp, sizeof (unsigned int), 1, fpDict); - if (iTemp == 0) { - fread (&iVersion, sizeof (char), 1, fpDict); - printf (";fcitx 版本 0x%02x 码表文件\n", iVersion); - fread (&iTemp, sizeof (unsigned int), 1, fpDict); + fread(&iTemp, sizeof(unsigned int), 1, fpDict); + + if (iTemp == 0) + { + fread(&iVersion, sizeof(char), 1, fpDict); + printf(";fcitx 版本 0x%02x 码表文件\n", iVersion); + fread(&iTemp, sizeof(unsigned int), 1, fpDict); } else - printf (";fcitx 版本 0x02 码表文件\n"); + printf(";fcitx 版本 0x02 码表文件\n"); + + fread(strCode, sizeof(char), iTemp + 1, fpDict); + + printf("键码=%s\n", strCode); + + fread(&iLen, sizeof(unsigned char), 1, fpDict); - fread (strCode, sizeof (char), iTemp + 1, fpDict); - printf ("键码=%s\n", strCode); - fread (&iLen, sizeof (unsigned char), 1, fpDict); - printf ("码长=%d\n", iLen); - - if (iVersion) { - fread (&iPYLen, sizeof (unsigned char), 1, fpDict); - if (iPYLen) { - printf ("拼音=@\n"); - printf ("拼音长度=%d\n", iPYLen); + printf("码长=%d\n", iLen); + + if (iVersion) + { + fread(&iPYLen, sizeof(unsigned char), 1, fpDict); + + if (iPYLen) + { + printf("拼音=@\n"); + printf("拼音长度=%d\n", iPYLen); } } - fread (&iTemp, sizeof (unsigned int), 1, fpDict); - fread (strCode, sizeof (char), iTemp + 1, fpDict); + fread(&iTemp, sizeof(unsigned int), 1, fpDict); + + fread(strCode, sizeof(char), iTemp + 1, fpDict); + if (iTemp) - printf ("规避字符=%s\n", strCode); + printf("规避字符=%s\n", strCode); + + fread(&iRule, sizeof(unsigned char), 1, fpDict); + + if (iRule) + { + //表示有组词规则 + printf("[组词规则]\n"); + + for (i = 0; i < iLen - 1; i++) + { + fread(&iRule, sizeof(unsigned char), 1, fpDict); + printf("%c", (iRule) ? 'a' : 'e'); + fread(&iRule, sizeof(unsigned char), 1, fpDict); + printf("%d=", iRule); + + for (iTemp = 0; iTemp < iLen; iTemp++) + { + fread(&iRule, sizeof(unsigned char), 1, fpDict); + printf("%c", (iRule) ? 'p' : 'n'); + fread(&iRule, sizeof(unsigned char), 1, fpDict); + printf("%d", iRule); + fread(&iRule, sizeof(unsigned char), 1, fpDict); + printf("%d", iRule); - fread (&iRule, sizeof (unsigned char), 1, fpDict); - if (iRule) { //表示有组词规则 - printf ("[组词规则]\n"); - for (i = 0; i < iLen - 1; i++) { - fread (&iRule, sizeof (unsigned char), 1, fpDict); - printf ("%c", (iRule) ? 'a' : 'e'); - fread (&iRule, sizeof (unsigned char), 1, fpDict); - printf ("%d=", iRule); - for (iTemp = 0; iTemp < iLen; iTemp++) { - fread (&iRule, sizeof (unsigned char), 1, fpDict); - printf ("%c", (iRule) ? 'p' : 'n'); - fread (&iRule, sizeof (unsigned char), 1, fpDict); - printf ("%d", iRule); - fread (&iRule, sizeof (unsigned char), 1, fpDict); - printf ("%d", iRule); if (iTemp != (iLen - 1)) - printf ("+"); + printf("+"); } - printf ("\n"); + + printf("\n"); } } - printf ("[数据]\n"); - fread (&j, sizeof (unsigned int), 1, fpDict); + printf("[数据]\n"); + + fread(&j, sizeof(unsigned int), 1, fpDict); if (iVersion) iLen = iPYLen; - for (i = 0; i < j; i++) { - fread (strCode, sizeof (char), iLen + 1, fpDict); - fread (&iTemp, sizeof (unsigned int), 1, fpDict); - fread (strHZ, sizeof (unsigned char), iTemp, fpDict); + for (i = 0; i < j; i++) + { + fread(strCode, sizeof(char), iLen + 1, fpDict); + fread(&iTemp, sizeof(unsigned int), 1, fpDict); + fread(strHZ, sizeof(unsigned char), iTemp, fpDict); + + if (iVersion) + { + fread(&iRule, sizeof(unsigned char), 1, fpDict); - if (iVersion) { - fread (&iRule, sizeof (unsigned char), 1, fpDict); if (iRule) - printf ("@%s %s\n", strCode, strHZ); + printf("@%s %s\n", strCode, strHZ); else - printf ("%s %s\n", strCode, strHZ); + printf("%s %s\n", strCode, strHZ); } else - printf ("%s %s\n", strCode, strHZ); + printf("%s %s\n", strCode, strHZ); - fread (&iTemp, sizeof (unsigned int), 1, fpDict); - fread (&iTemp, sizeof (unsigned int), 1, fpDict); + fread(&iTemp, sizeof(unsigned int), 1, fpDict); + + fread(&iTemp, sizeof(unsigned int), 1, fpDict); } - fclose (fpDict); + fclose(fpDict); return 0; } + +// kate: indent-mode cstyle; space-indent on; indent-width 4; diff -Nru fcitx-4.0.1/tools/pyTools.c fcitx-4.1.1/tools/pyTools.c --- fcitx-4.0.1/tools/pyTools.c 2010-11-28 11:55:00.000000000 +0000 +++ fcitx-4.1.1/tools/pyTools.c 2011-09-08 16:00:05.000000000 +0000 @@ -21,122 +21,138 @@ #include #include #include -#include +#include #include "pyTools.h" void LoadPYMB(FILE *fi, struct _PYMB **pPYMB, int isUser) { - struct _PYMB *PYMB; - int i, j, r, n, t; - /* Is there a way to avoid reading the whole file twice? */ + struct _PYMB *PYMB; + int i, j, r, n, t; - /* First Pass: Determine the size of the PYMB array to be created */ + /* Is there a way to avoid reading the whole file twice? */ - n = 0; - while (1) - { - INT8 clen; - r = fread(&t, sizeof (int), 1, fi); - if (!r) - break; - ++n; - - fread(&clen, sizeof (INT8), 1, fi); - fseek(fi, sizeof (char) * clen, SEEK_CUR); - fread(&t, sizeof(int), 1, fi); - - for (i = 0; i < t; ++i) - { - int iLen; - fread(&iLen, sizeof(int), 1, fi); - fseek(fi , sizeof(char) * iLen, SEEK_CUR); - fread(&iLen, sizeof(int), 1, fi); - fseek(fi , sizeof(char) * iLen, SEEK_CUR); - fread(&iLen, sizeof(int), 1, fi); - if (isUser) - fread(&iLen, sizeof(int), 1, fi); - } - } - - /* Second Pass: Actually read the data */ - - fseek(fi, 0, SEEK_SET); - - *pPYMB = PYMB = malloc(sizeof (*PYMB) * (n + 1)); - - for (i = 0; i < n; ++i) - { - r = fread(&(PYMB[i].PYFAIndex), sizeof (int), 1, fi); - - INT8 clen; - fread(&clen, sizeof (INT8), 1, fi); - fread(PYMB[i].HZ, sizeof (char) * clen, 1, fi); - PYMB[i].HZ[clen] = '\0'; + /* First Pass: Determine the size of the PYMB array to be created */ - fread(&(PYMB[i].UserPhraseCount), sizeof (int), 1, fi); - PYMB[i].UserPhrase = malloc(sizeof(*(PYMB[i].UserPhrase)) * PYMB[i].UserPhraseCount); + n = 0; -#define PU(i,j) (PYMB[(i)].UserPhrase[(j)]) - for (j = 0; j < PYMB[i].UserPhraseCount; ++j) + while (1) { - fread(&(PU(i,j).Length), sizeof (int), 1, fi); + int8_t clen; + r = fread(&t, sizeof(int), 1, fi); + + if (!r) + break; + + ++n; + + fread(&clen, sizeof(int8_t), 1, fi); + + fseek(fi, sizeof(char) * clen, SEEK_CUR); + + fread(&t, sizeof(int), 1, fi); + + for (i = 0; i < t; ++i) + { + int iLen; + fread(&iLen, sizeof(int), 1, fi); + fseek(fi , sizeof(char) * iLen, SEEK_CUR); + fread(&iLen, sizeof(int), 1, fi); + fseek(fi , sizeof(char) * iLen, SEEK_CUR); + fread(&iLen, sizeof(int), 1, fi); - PU(i,j).Map = malloc(sizeof (char) * PU(i,j).Length + 1); - fread(PU(i,j).Map, sizeof (char) * PU(i,j).Length, 1, fi); - PU(i,j).Map[PU(i,j).Length] = '\0'; - - int iLen; - fread(&iLen, sizeof (int), 1, fi); - PU(i,j).Phrase = malloc(sizeof (char) * iLen + 1); - fread(PU(i,j).Phrase, sizeof (char) * iLen, 1, fi); - PU(i,j).Phrase[iLen] = '\0'; - - fread(&(PU(i,j).Index), sizeof (int), 1, fi); - - if (isUser) - fread(&(PU(i,j).Hit), sizeof (int), 1, fi); - else - PU(i,j).Hit = 0; + if (isUser) + fread(&iLen, sizeof(int), 1, fi); + } } + + /* Second Pass: Actually read the data */ + + fseek(fi, 0, SEEK_SET); + + *pPYMB = PYMB = malloc(sizeof(*PYMB) * (n + 1)); + + for (i = 0; i < n; ++i) + { + r = fread(&(PYMB[i].PYFAIndex), sizeof(int), 1, fi); + + int8_t clen; + fread(&clen, sizeof(int8_t), 1, fi); + fread(PYMB[i].HZ, sizeof(char) * clen, 1, fi); + PYMB[i].HZ[clen] = '\0'; + + fread(&(PYMB[i].UserPhraseCount), sizeof(int), 1, fi); + PYMB[i].UserPhrase = malloc(sizeof(*(PYMB[i].UserPhrase)) * PYMB[i].UserPhraseCount); + +#define PU(i,j) (PYMB[(i)].UserPhrase[(j)]) + + for (j = 0; j < PYMB[i].UserPhraseCount; ++j) + { + fread(&(PU(i, j).Length), sizeof(int), 1, fi); + + PU(i, j).Map = malloc(sizeof(char) * PU(i, j).Length + 1); + fread(PU(i, j).Map, sizeof(char) * PU(i, j).Length, 1, fi); + PU(i, j).Map[PU(i,j).Length] = '\0'; + + int iLen; + fread(&iLen, sizeof(int), 1, fi); + PU(i, j).Phrase = malloc(sizeof(char) * iLen + 1); + fread(PU(i, j).Phrase, sizeof(char) * iLen, 1, fi); + PU(i, j).Phrase[iLen] = '\0'; + + fread(&(PU(i, j).Index), sizeof(int), 1, fi); + + if (isUser) + fread(&(PU(i, j).Hit), sizeof(int), 1, fi); + else + PU(i, j).Hit = 0; + } + #undef PU - } - PYMB[n].HZ[0] = '\0'; + } + + PYMB[n].HZ[0] = '\0'; - return; + return; } int LoadPYBase(FILE *fi, struct _HZMap **pHZMap) { - int i, j, r, PYFACount; - struct _HZMap *HZMap; + int i, j, r, PYFACount; - r = fread(&PYFACount, sizeof (int), 1, fi); - if (!r) - return 0; - - *pHZMap = HZMap = malloc(sizeof (*HZMap) * (PYFACount + 1)); - for (i = 0; i < PYFACount; ++i) - { - fread(HZMap[i].Map, sizeof(char) * 2, 1, fi); - HZMap[i].Map[2] = '\0'; - - fread(&(HZMap[i].BaseCount), sizeof (int), 1, fi); - HZMap[i].HZ = malloc(sizeof(char *) * HZMap[i].BaseCount); - HZMap[i].Index = malloc(sizeof (int) * HZMap[i].BaseCount); + struct _HZMap *HZMap; - for (j = 0; j < HZMap[i].BaseCount; ++j) + r = fread(&PYFACount, sizeof(int), 1, fi); + + if (!r) + return 0; + + *pHZMap = HZMap = malloc(sizeof(*HZMap) * (PYFACount + 1)); + + for (i = 0; i < PYFACount; ++i) { - INT8 clen; - fread(&clen, sizeof(INT8), 1, fi); - HZMap[i].HZ[j] = malloc(sizeof(char) *( clen + 1)); - fread(HZMap[i].HZ[j], sizeof(char) * clen, 1, fi); - HZMap[i].HZ[j][clen] = '\0'; - fread(&HZMap[i].Index[j], sizeof (int), 1, fi); + fread(HZMap[i].Map, sizeof(char) * 2, 1, fi); + HZMap[i].Map[2] = '\0'; + + fread(&(HZMap[i].BaseCount), sizeof(int), 1, fi); + HZMap[i].HZ = malloc(sizeof(char *) * HZMap[i].BaseCount); + HZMap[i].Index = malloc(sizeof(int) * HZMap[i].BaseCount); + + for (j = 0; j < HZMap[i].BaseCount; ++j) + { + int8_t clen; + fread(&clen, sizeof(int8_t), 1, fi); + HZMap[i].HZ[j] = malloc(sizeof(char) * (clen + 1)); + fread(HZMap[i].HZ[j], sizeof(char) * clen, 1, fi); + HZMap[i].HZ[j][clen] = '\0'; + fread(&HZMap[i].Index[j], sizeof(int), 1, fi); + } } - } - HZMap[i].Map[0] = '\0'; - return PYFACount; + HZMap[i].Map[0] = '\0'; + + return PYFACount; } + +// kate: indent-mode cstyle; space-indent on; indent-width 4; diff -Nru fcitx-4.0.1/tools/pyTools.h fcitx-4.1.1/tools/pyTools.h --- fcitx-4.0.1/tools/pyTools.h 2010-11-28 11:55:00.000000000 +0000 +++ fcitx-4.1.1/tools/pyTools.h 2011-09-08 16:00:05.000000000 +0000 @@ -21,29 +21,34 @@ #ifndef _PY_TOOLS_H #define _PY_TOOLS_H -#include "tools/utf8.h" +#include "fcitx-utils/utf8.h" + +/** + * @brief Code table for Pinyin + **/ struct _PYMB { - int PYFAIndex; - char HZ[UTF8_MAX_LENGTH + 1]; - int UserPhraseCount; - struct - { - int Length; - char *Map; - char *Phrase; - int Index; - int Hit; - } *UserPhrase; + int PYFAIndex; + char HZ[UTF8_MAX_LENGTH + 1]; + int UserPhraseCount; + + struct + { + int Length; + char *Map; + char *Phrase; + int Index; + int Hit; + } *UserPhrase; }; struct _HZMap { - char Map[3]; - int BaseCount; - char **HZ; - int *Index; + char Map[3]; + int BaseCount; + char **HZ; + int *Index; }; int LoadPYBase(FILE *, struct _HZMap **); @@ -51,3 +56,5 @@ #endif /* _PY_TOOLS_H */ + +// kate: indent-mode cstyle; space-indent on; indent-width 4; diff -Nru fcitx-4.0.1/tools/readPYBase.c fcitx-4.1.1/tools/readPYBase.c --- fcitx-4.0.1/tools/readPYBase.c 2010-11-28 11:55:00.000000000 +0000 +++ fcitx-4.1.1/tools/readPYBase.c 2011-09-08 16:00:05.000000000 +0000 @@ -19,6 +19,8 @@ ***************************************************************************/ #include +#include +#include #include "im/pinyin/py.h" #include "pyTools.h" @@ -28,79 +30,93 @@ int main(int argc, char **argv) { - FILE *fi; - int i, PYFACount; - char *pybase_mb = NULL; - struct _HZMap *HZMap; - char c; - - while((c = getopt(argc, argv, "b:h")) != -1) - { - switch(c) - { - case 'b': - pybase_mb = strdup(optarg); - break; - case 'h': - default: - usage(); - } - } - - if (pybase_mb) - fi = fopen (pybase_mb , "r"); - else - fi = GetXDGFileData(PY_BASE_FILE, "r", &pybase_mb); - if (!fi) - { - perror("fopen"); - fprintf(stderr, "Can't open file `%s' for reading\n", pybase_mb); - exit(1); - } - free(pybase_mb); + FILE *fi; + int i, PYFACount; + char *pybase_mb = NULL; - PYFACount = LoadPYBase(fi, &HZMap); - if (PYFACount > 0) - { -#if 0 - for (i = 0; i < PYFACount; ++i) + struct _HZMap *HZMap; + char c; + + while ((c = getopt(argc, argv, "b:h")) != -1) { - printf("%s: ", HZMap[i].Map); - fwrite(HZMap[i].HZ, 2, HZMap[i].BaseCount, stdout); - printf("\n\n"); + switch (c) + { + + case 'b': + pybase_mb = strdup(optarg); + break; + + case 'h': + + default: + usage(); + } } -#else - for (i = 0; i < PYFACount; ++i) + + if (pybase_mb) + fi = fopen(pybase_mb , "r"); + else + fi = GetXDGFileWithPrefix("pinyin", PY_BASE_FILE, "r", &pybase_mb); + + if (!fi) { - int j; - printf("%s: HZ Index\n", HZMap[i].Map); - for (j = 0; j < HZMap[i].BaseCount; ++j) - { - printf("\t%s %5d", HZMap[i].HZ[j],HZMap[i].Index[j]); - } - printf("\n"); + perror("fopen"); + fprintf(stderr, "Can't open file `%s' for reading\n", pybase_mb); + exit(1); } + + free(pybase_mb); + + PYFACount = LoadPYBase(fi, &HZMap); + + if (PYFACount > 0) + { +#if 0 + + for (i = 0; i < PYFACount; ++i) + { + printf("%s: ", HZMap[i].Map); + fwrite(HZMap[i].HZ, 2, HZMap[i].BaseCount, stdout); + printf("\n\n"); + } + +#else + for (i = 0; i < PYFACount; ++i) + { + int j; + printf("%s: HZ Index\n", HZMap[i].Map); + + for (j = 0; j < HZMap[i].BaseCount; ++j) + { + printf("\t%s %5d", HZMap[i].HZ[j], HZMap[i].Index[j]); + } + + printf("\n"); + } + #endif - } + } - return 0; + return 0; } void usage() { - puts( -"readPYBase - read pybase.mb file and display its contents\n" -"\n" -" usage: readPYBase [OPTION]\n" -"\n" -" -b full path to the file, usually\n" -" " PKGDATADIR "/data/" PY_BASE_FILE "\n" -" if not specified, defaults to\n" -" " PKGDATADIR "/data/" PY_BASE_FILE "\n" -" -h display this help\n" -"\n" - ); - exit(1); - return; + puts( + "readPYBase - read pybase.mb file and display its contents\n" + "\n" + " usage: readPYBase [OPTION]\n" + "\n" + " -b full path to the file, usually\n" + " " PKGDATADIR "/pinyin/" PY_BASE_FILE "\n" + " if not specified, defaults to\n" + " " PKGDATADIR "/pinyin/" PY_BASE_FILE "\n" + " -h display this help\n" + "\n" + ); + exit(1); + return; } + +// kate: indent-mode cstyle; space-indent on; indent-width 4; diff -Nru fcitx-4.0.1/tools/readPYMB.c fcitx-4.1.1/tools/readPYMB.c --- fcitx-4.0.1/tools/readPYMB.c 2010-11-28 11:55:00.000000000 +0000 +++ fcitx-4.1.1/tools/readPYMB.c 2011-09-08 16:00:05.000000000 +0000 @@ -20,6 +20,8 @@ #include #include +#include +#include #include "im/pinyin/py.h" #include "pyTools.h" @@ -29,81 +31,91 @@ int main(int argc, char **argv) { - FILE *fi; - int i, j; - char *pyusrphrase_mb = NULL; - struct _PYMB *PYMB; - Bool isUser = True; - char c; - - while((c = getopt(argc, argv, "f:sh")) != -1) - { - switch(c) - { - case 'f': - pyusrphrase_mb = strdup(optarg); - break; - case 's': - isUser = False; - break; - case 'h': - default: - usage(); - } - } - - if (pyusrphrase_mb) - fi = fopen(pyusrphrase_mb, "r"); - else - fi = GetXDGFileUser( PY_USERPHRASE_FILE, "r" , &pyusrphrase_mb); - if (!fi) - { - perror("fopen"); - fprintf(stderr, "Can't open file `%s' for reading\n", pyusrphrase_mb); - exit(1); - } - free(pyusrphrase_mb); + FILE *fi; + int i, j; + char *pyusrphrase_mb = NULL; + + struct _PYMB *PYMB; + boolean isUser = true; + char c; + + while ((c = getopt(argc, argv, "f:sh")) != -1) + { + switch (c) + { + + case 'f': + pyusrphrase_mb = strdup(optarg); + break; + + case 's': + isUser = false; + break; + + case 'h': + + default: + usage(); + } + } + + if (pyusrphrase_mb) + fi = fopen(pyusrphrase_mb, "r"); + else + fi = GetXDGFileUserWithPrefix("pinyin", PY_USERPHRASE_FILE, "r" , &pyusrphrase_mb); - LoadPYMB(fi, &PYMB, isUser); + if (!fi) + { + perror("fopen"); + fprintf(stderr, "Can't open file `%s' for reading\n", pyusrphrase_mb); + exit(1); + } + + free(pyusrphrase_mb); - for (i = 0; PYMB[i].HZ[0]; ++i) - { - printf("PYFAIndex: %d\n", PYMB[i].PYFAIndex); - printf("HZ: %s\n", PYMB[i].HZ); - printf("UserPhraseCount: %d\n", PYMB[i].UserPhraseCount); + LoadPYMB(fi, &PYMB, isUser); - for (j = 0; j < PYMB[i].UserPhraseCount; ++j) + for (i = 0; PYMB[i].HZ[0]; ++i) { - printf("+-Length: %d\n", PYMB[i].UserPhrase[j].Length); - printf("| Map: %s\n", PYMB[i].UserPhrase[j].Map); - printf("| Phrase: %s\n", PYMB[i].UserPhrase[j].Phrase); - printf("| Index: %d\n", PYMB[i].UserPhrase[j].Index); - printf("| Hit: %d\n", PYMB[i].UserPhrase[j].Hit); + printf("PYFAIndex: %d\n", PYMB[i].PYFAIndex); + printf("HZ: %s\n", PYMB[i].HZ); + printf("UserPhraseCount: %d\n", PYMB[i].UserPhraseCount); + + for (j = 0; j < PYMB[i].UserPhraseCount; ++j) + { + printf("+-Length: %d\n", PYMB[i].UserPhrase[j].Length); + printf("| Map: %s\n", PYMB[i].UserPhrase[j].Map); + printf("| Phrase: %s\n", PYMB[i].UserPhrase[j].Phrase); + printf("| Index: %d\n", PYMB[i].UserPhrase[j].Index); + printf("| Hit: %d\n", PYMB[i].UserPhrase[j].Hit); + } + + printf("\n"); } - printf("\n"); - } - return 0; + return 0; } void usage() { - puts( -"readPYMB - read data from a pinyin .mb file and display its meaning\n" -"\n" -" usage: readPYMB [OPTION]\n" -"\n" -" -f MB (MaBiao) file to be read, usually this is\n" -" ~/.config/fcitx/" PY_USERPHRASE_FILE "\n" -" if not specified, defaults to\n" -" ~/.config/fcitx/" PY_USERPHRASE_FILE "\n" -" -s Is MB from user or from system (they have different format).\n" -" -h display this help\n" -"\n" -" The MB file can either be a user's MB file (~/.config/fcitx/pyuserphrase.mb),\n" -" or the system phrase pinyin MB file (/usr/share/fcitx/data/pyphrase.mb.\n" - ); - exit(1); - return; + puts( + "readPYMB - read data from a pinyin .mb file and display its meaning\n" + "\n" + " usage: readPYMB [OPTION]\n" + "\n" + " -f MB (MaBiao) file to be read, usually this is\n" + " ~/.config/fcitx/" PY_USERPHRASE_FILE "\n" + " if not specified, defaults to\n" + " ~/.config/fcitx/" PY_USERPHRASE_FILE "\n" + " -s Is MB from user or from system (they have different format).\n" + " -h display this help\n" + "\n" + " The MB file can either be a user's MB file (~/.config/fcitx/pyuserphrase.mb),\n" + " or the system phrase pinyin MB file (/usr/share/fcitx/pinyin/pyphrase.mb.\n" + ); + exit(1); + return; } + +// kate: indent-mode cstyle; space-indent on; indent-width 4; diff -Nru fcitx-4.0.1/tools/scel2org.c fcitx-4.1.1/tools/scel2org.c --- fcitx-4.0.1/tools/scel2org.c 2010-11-28 11:55:00.000000000 +0000 +++ fcitx-4.1.1/tools/scel2org.c 2011-09-08 16:00:05.000000000 +0000 @@ -23,7 +23,7 @@ #include #include -#include "tools/utarray.h" +#include "fcitx-utils/utarray.h" #define HEADER_SIZE 12 #define BUFLEN 0x1000 @@ -36,52 +36,59 @@ #define PINYIN_SIZE 4 -char header_str[HEADER_SIZE] = { '\x40', '\x15', '\0', '\0', '\x44', '\x43', '\x53' ,'\x01' ,'\x01', '\0', '\0', '\0'}; +char header_str[HEADER_SIZE] = { '\x40', '\x15', '\0', '\0', '\x44', '\x43', '\x53' , '\x01' , '\x01', '\0', '\0', '\0'}; char pinyin_str[PINYIN_SIZE] = { '\x9d', '\x01', '\0', '\0' }; iconv_t conv; -typedef struct ScelPinyin { +typedef struct _ScelPinyin +{ char pinyin[10]; } ScelPinyin; -UT_icd py_icd = { sizeof(ScelPinyin), NULL, NULL}; +UT_icd py_icd = { sizeof(ScelPinyin), NULL, NULL, NULL}; static void usage(); void usage() { puts( -"scel2org - Convert .scel file to .org file (SEE NOTES BELOW)\n" -"\n" -" usage: scel2org [OPTION] [scel file]\n" -"\n" -" -o specify the output file, if not specified, the output will\n" -" be stdout.\n" -" -h display this help.\n" -"\n" -"NOTES:\n" -" Always check the produced output for errors.\n" + "scel2org - Convert .scel file to .org file (SEE NOTES BELOW)\n" + "\n" + " usage: scel2org [OPTION] [scel file]\n" + "\n" + " -o specify the output file, if not specified, the output will\n" + " be stdout.\n" + " -h display this help.\n" + "\n" + "NOTES:\n" + " Always check the produced output for errors.\n" ); exit(1); } -int main (int argc, char **argv) +int main(int argc, char **argv) { FILE *fout = stdout; char c; while ((c = getopt(argc, argv, "o:h")) != -1) { - switch(c) + switch (c) { - case 'o': - fout = fopen(optarg, "w"); - if (!fout) - fprintf(stderr, "can not open %s\n", optarg); - break; - case 'h': - default: - usage(); - break; + + case 'o': + fout = fopen(optarg, "w"); + + if (!fout) + fprintf(stderr, "can not open %s\n", optarg); + + break; + + case 'h': + + default: + usage(); + + break; } } @@ -91,6 +98,7 @@ FILE *fp = fopen(argv[optind], "r"); char buf[BUFLEN], bufout[BUFLEN]; + size_t count = fread(buf, 1, HEADER_SIZE, fp); if (count < HEADER_SIZE || memcmp(buf, header_str, HEADER_SIZE) != 0) @@ -135,6 +143,7 @@ } UT_array* pys = malloc(sizeof(UT_array)); + utarray_init(pys, &py_icd); for (; ;) @@ -166,27 +175,34 @@ short count; short wordcount; fread(&symcount, 1, sizeof(short), fp); + if (feof(fp)) break; + fread(&count, 1, sizeof(short), fp); short pyindex[10]; + wordcount = count / 2; + fread(pyindex, wordcount, sizeof(short), fp); int s; + for (s = 0; s < symcount ; s++) { ScelPinyin *py = (ScelPinyin*) utarray_eltptr(pys, pyindex[0]); fprintf(fout, "%s", py->pinyin); int i; + for (i = 1 ; i < wordcount ; i ++) { py = (ScelPinyin*) utarray_eltptr(pys, pyindex[i]); fprintf(fout, "\'%s", py->pinyin); } - + memset(buf, 0, sizeof(buf)); + memset(bufout, 0, sizeof(bufout)); fread(&count, 1, sizeof(short), fp); fread(buf, count, sizeof(char), fp); @@ -196,12 +212,16 @@ outlen = BUFLEN; iconv(conv, &in, &inlen, &out, &outlen); fprintf(fout, " %s\n", bufout); - + fread(&count, 1, sizeof(short), fp); fread(buf, count, sizeof(char), fp); } } + fclose(fout); + fclose(fp); return 0; } + +// kate: indent-mode cstyle; space-indent on; indent-width 4; diff -Nru fcitx-4.0.1/tools/txt2mb.c fcitx-4.1.1/tools/txt2mb.c --- fcitx-4.0.1/tools/txt2mb.c 2010-12-14 14:23:38.000000000 +0000 +++ fcitx-4.1.1/tools/txt2mb.c 2011-09-08 16:00:05.000000000 +0000 @@ -17,7 +17,7 @@ * Free Software Foundation, Inc., * * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ***************************************************************************/ -#ifdef HAVE_CONFIG_H +#ifdef FCITX_HAVE_CONFIG_H #include #endif #include @@ -27,13 +27,9 @@ #include #endif -#include "tools/utf8.h" -#include "../src/core/internalVersion.c" - -typedef int Bool; - -#define True 1 -#define False 0 +#include "fcitx-utils/utf8.h" +#include "fcitx/fcitx.h" +#include "fcitx-config/fcitx-config.h" #define STR_KEYCODE 0 #define STR_CODELEN 1 @@ -59,23 +55,28 @@ char strIgnoreChars[100] = "\0"; char cPinyinKey = '\0'; -typedef struct _RECORD { +typedef struct _RECORD +{ char *strCode; char *strHZ; - INT8 bPinyin; + int8_t bPinyin; + struct _RECORD *next; + struct _RECORD *prev; unsigned int iHit; unsigned int iIndex; } RECORD; -typedef struct _RULE_RULE { +typedef struct _RULE_RULE +{ unsigned char iFlag; // 1 --> 正序 0 --> 逆序 unsigned char iWhich; //第几个字 unsigned char iIndex; //第几个编码 } RULE_RULE; -typedef struct _RULE { +typedef struct _RULE +{ unsigned char iWords; //多少个字 unsigned char iFlag; //1 --> 大于等于iWords 0 --> 等于iWords RULE_RULE *rule; @@ -84,35 +85,42 @@ void InitStrLength() { int i; - for (i=0;i \n\n"); - exit (1); + if (argc != 3) + { + printf("\nUsage: txt2mb \n\n"); + exit(1); } - fpDict = fopen (argv[1], "rt"); - if (!fpDict) { - printf ("\nCan not read source file!\n\n"); - exit (2); + fpDict = fopen(argv[1], "rt"); + + if (!fpDict) + { + printf("\nCan not read source file!\n\n"); + exit(2); } InitStrLength(); - head = (RECORD *) malloc (sizeof (RECORD)); + + head = (RECORD *) malloc(sizeof(RECORD)); head->next = head; head->prev = head; current = head; bRule = 0; l = 0; - for (;;) { + + for (;;) + { l++; - if (!fgets (strCode, 100, fpDict)) + + if (!fgets(strCode, 100, fpDict)) break; - i = strlen (strCode) - 1; + i = strlen(strCode) - 1; + while ((i >= 0) && (strCode[i] == ' ' || strCode[i] == '\n' || strCode[i] == '\r')) strCode[i--] = '\0'; pstr = strCode; + if (*pstr == ' ') pstr++; + if (pstr[0] == '#') continue; - if (strstr (pstr, strConst[STR_KEYCODE])) { + if (strstr(pstr, strConst[STR_KEYCODE])) + { pstr += strLength[STR_KEYCODE]; - strcpy (strInputCode, pstr); + strcpy(strInputCode, pstr); } - else if (strstr (pstr, strConst[STR_CODELEN])) { - pstr += strLength[STR_CODELEN]; - iCodeLength = atoi (pstr); - if (iCodeLength > MAX_CODE_LENGTH) + else + if (strstr(pstr, strConst[STR_CODELEN])) { - iCodeLength = MAX_CODE_LENGTH; - printf("Max Code Length is %d\n", MAX_CODE_LENGTH); + pstr += strLength[STR_CODELEN]; + iCodeLength = atoi(pstr); + + if (iCodeLength > MAX_CODE_LENGTH) + { + iCodeLength = MAX_CODE_LENGTH; + printf("Max Code Length is %d\n", MAX_CODE_LENGTH); + } } - } - else if (strstr (pstr, strConst[STR_IGNORECHAR])) { - pstr += strLength[STR_IGNORECHAR]; - strcpy (strIgnoreChars, pstr); - } - else if (strstr (pstr, strConst[STR_PINYIN])) { - pstr += strLength[STR_PINYIN]; - while (*pstr == ' ') - pstr++; - cPinyinKey = *pstr; - } - else if (strstr (pstr, strConst[STR_PINYINLEN])) { - pstr += strLength[STR_PINYINLEN]; - iPYCodeLength = atoi (pstr); - } + else + if (strstr(pstr, strConst[STR_IGNORECHAR])) + { + pstr += strLength[STR_IGNORECHAR]; + strcpy(strIgnoreChars, pstr); + } + else + if (strstr(pstr, strConst[STR_PINYIN])) + { + pstr += strLength[STR_PINYIN]; - else if (strstr (pstr, strConst[STR_DATA])) - break; - else if (strstr (pstr, strConst[STR_RULE])) { - bRule = 1; - break; - } - } + while (*pstr == ' ') + pstr++; - if (iCodeLength <= 0 || !strInputCode[0]) { - printf ("Source File Format Error!\n"); - exit (1); + cPinyinKey = *pstr; + } + else + if (strstr(pstr, strConst[STR_PINYINLEN])) + { + pstr += strLength[STR_PINYINLEN]; + iPYCodeLength = atoi(pstr); + } + + else + if (strstr(pstr, strConst[STR_DATA])) + break; + else + if (strstr(pstr, strConst[STR_RULE])) + { + bRule = 1; + break; + } + } + + if (iCodeLength <= 0 || !strInputCode[0]) + { + printf("Source File Format Error!\n"); + exit(1); } - if (bRule) { + if (bRule) + { /* * 组词规则数应该比键码长度小1 */ - rule = (RULE *) malloc (sizeof (RULE) * (iCodeLength - 1)); + rule = (RULE *) malloc(sizeof(RULE) * (iCodeLength - 1)); - for (iTemp = 0; iTemp < (iCodeLength - 1); iTemp++) { + for (iTemp = 0; iTemp < (iCodeLength - 1); iTemp++) + { l++; - if (!fgets (strCode, 100, fpDict)) + + if (!fgets(strCode, 100, fpDict)) break; - rule[iTemp].rule = (RULE_RULE *) malloc (sizeof (RULE_RULE) * iCodeLength); + rule[iTemp].rule = (RULE_RULE *) malloc(sizeof(RULE_RULE) * iCodeLength); + + i = strlen(strCode) - 1; - i = strlen (strCode) - 1; while ((i >= 0) && (strCode[i] == ' ' || strCode[i] == '\n' || strCode[i] == '\r')) strCode[i--] = '\0'; pstr = strCode; + if (*pstr == ' ') pstr++; + if (pstr[0] == '#') continue; - if (strstr (pstr, strConst[STR_DATA])) + if (strstr(pstr, strConst[STR_DATA])) break; - switch (*pstr) { + switch (*pstr) + { + case 'e': + case 'E': rule[iTemp].iFlag = 0; break; + case 'a': + case 'A': rule[iTemp].iFlag = 1; break; + default: - printf ("2 Phrase rules are not suitable!\n"); - printf ("\t\t%s\n", strCode); - exit (1); + printf("2 Phrase rules are not suitable!\n"); + printf("\t\t%s\n", strCode); + exit(1); } + pstr++; + p = pstr; + while (*p && *p != '=') p++; - if (!(*p)) { - printf ("3 Phrase rules are not suitable!\n"); - printf ("\t\t%s\n", strCode); - exit (1); + + if (!(*p)) + { + printf("3 Phrase rules are not suitable!\n"); + printf("\t\t%s\n", strCode); + exit(1); } - strncpy (strTemp, pstr, p - pstr); + + strncpy(strTemp, pstr, p - pstr); + strTemp[p - pstr] = '\0'; - rule[iTemp].iWords = atoi (strTemp); + rule[iTemp].iWords = atoi(strTemp); p++; - for (i = 0; i < iCodeLength; i++) { + for (i = 0; i < iCodeLength; i++) + { while (*p == ' ') p++; - switch (*p) { + switch (*p) + { + case 'p': + case 'P': rule[iTemp].rule[i].iFlag = 1; break; + case 'n': + case 'N': rule[iTemp].rule[i].iFlag = 0; break; + default: - printf ("4 Phrase rules are not suitable!\n"); - printf ("\t\t%s\n", strCode); - exit (1); + printf("4 Phrase rules are not suitable!\n"); + printf("\t\t%s\n", strCode); + exit(1); } p++; @@ -289,11 +349,14 @@ while (*p == ' ') p++; - if (i != (iCodeLength - 1)) { - if (*p != '+') { - printf ("5 Phrase rules are not suitable!\n"); - printf ("\t\t%s %d\n", strCode, iCodeLength); - exit (1); + + if (i != (iCodeLength - 1)) + { + if (*p != '+') + { + printf("5 Phrase rules are not suitable!\n"); + printf("\t\t%s %d\n", strCode, iCodeLength); + exit(1); } p++; @@ -301,27 +364,33 @@ } } - if (iTemp != iCodeLength - 1) { - printf ("6 Phrase rules are not suitable!\n"); - exit (1); + if (iTemp != iCodeLength - 1) + { + printf("6 Phrase rules are not suitable!\n"); + exit(1); } - for (iTemp = 0; iTemp < (iCodeLength - 1); iTemp++) { + for (iTemp = 0; iTemp < (iCodeLength - 1); iTemp++) + { l++; - if (!fgets (strCode, 100, fpDict)) + + if (!fgets(strCode, 100, fpDict)) break; - i = strlen (strCode) - 1; + i = strlen(strCode) - 1; + while ((i >= 0) && (strCode[i] == ' ' || strCode[i] == '\n' || strCode[i] == '\r')) strCode[i--] = '\0'; pstr = strCode; + if (*pstr == ' ') pstr++; + if (pstr[0] == '#') continue; - if (strstr (pstr, strConst[STR_DATA])) + if (strstr(pstr, strConst[STR_DATA])) break; } } @@ -329,144 +398,185 @@ if (iPYCodeLength < iCodeLength) iPYCodeLength = iCodeLength; - if (!strstr (pstr, strConst[STR_DATA])) { - printf ("Source File Format Error!\n"); - exit (1); + if (!strstr(pstr, strConst[STR_DATA])) + { + printf("Source File Format Error!\n"); + exit(1); } - for (;;) { + for (;;) + { l++; - if (EOF == fscanf (fpDict, "%s %s\n", strCode, strHZ)) + + if (EOF == fscanf(fpDict, "%s %s\n", strCode, strHZ)) break; - if (!IsValidCode (strCode[0])) { - printf ("Invalid Format: Line-%d %s %s\n", l, strCode, strHZ); + if (!IsValidCode(strCode[0])) + { + printf("Invalid Format: Line-%d %s %s\n", l, strCode, strHZ); - exit (1); + exit(1); } - if (((strCode[0] != cPinyinKey) && (strlen (strCode) > iCodeLength)) || ((strCode[0] == cPinyinKey) && (strlen (strCode) > (iPYCodeLength + 1)))) + if (((strCode[0] != cPinyinKey) && (strlen(strCode) > iCodeLength)) || ((strCode[0] == cPinyinKey) && (strlen(strCode) > (iPYCodeLength + 1)))) { printf("Delete: %s %s, Too long\n", strCode, strHZ); continue; } - if (utf8_strlen (strHZ) > PHRASE_MAX_LENGTH) //最长词组长度为10个汉字 + if (utf8_strlen(strHZ) > PHRASE_MAX_LENGTH) //最长词组长度为10个汉字 { printf("Delete: %s %s, Too long\n", strCode, strHZ); continue; } - bPY = False; - if (strCode[0] == cPinyinKey) { - size_t length = strlen(strCode); - memmove (strCode, strCode + 1, length); - bPY = True; + bPY = false; + + pstr = strCode; + + if (strCode[0] == cPinyinKey) + { + pstr ++; + bPY = true; } //查找是否重复 temp = current; - if (temp != head) { - if (strcmp (temp->strCode, strCode) >= 0) { - while (temp != head && strcmp (temp->strCode, strCode) >= 0) { - if (!strcmp (temp->strHZ, strHZ) && !strcmp (temp->strCode, strCode)) { - printf ("Delete: %s %s\n", strCode, strHZ); + + if (temp != head) + { + if (strcmp(temp->strCode, pstr) >= 0) + { + while (temp != head && strcmp(temp->strCode, pstr) >= 0) + { + if (!strcmp(temp->strHZ, strHZ) && !strcmp(temp->strCode, pstr)) + { + printf("Delete: %s %s\n", pstr, strHZ); goto _next; } + temp = temp->prev; } if (temp == head) temp = temp->next; - while (temp != head && strcmp (temp->strCode, strCode) <= 0) + while (temp != head && strcmp(temp->strCode, pstr) <= 0) temp = temp->next; } - else { - while (temp != head && strcmp (temp->strCode, strCode) <= 0) { - if (!strcmp (temp->strHZ, strHZ) && !strcmp (temp->strCode, strCode)) { - printf ("Delete: %s %s\n", strCode, strHZ); + else + { + while (temp != head && strcmp(temp->strCode, pstr) <= 0) + { + if (!strcmp(temp->strHZ, strHZ) && !strcmp(temp->strCode, pstr)) + { + printf("Delete: %s %s\n", pstr, strHZ); goto _next; } + temp = temp->next; } } } //插在temp的前面 - newRec = (RECORD *) malloc (sizeof (RECORD)); - newRec->strCode = (char *) malloc (sizeof (char) * (iPYCodeLength + 1)); - newRec->strHZ = (char *) malloc (sizeof (char) * strlen (strHZ) + 1); - strcpy (newRec->strCode, strCode); - strcpy (newRec->strHZ, strHZ); + newRec = (RECORD *) malloc(sizeof(RECORD)); + + newRec->strCode = (char *) malloc(sizeof(char) * (iPYCodeLength + 1)); + + newRec->strHZ = (char *) malloc(sizeof(char) * strlen(strHZ) + 1); + + strcpy(newRec->strCode, pstr); + + strcpy(newRec->strHZ, strHZ); + newRec->bPinyin = bPY; + newRec->iHit = 0; + newRec->iIndex = 0; temp->prev->next = newRec; + newRec->next = temp; + newRec->prev = temp->prev; + temp->prev = newRec; current = newRec; s++; -_next: + + _next: continue; } - fclose (fpDict); + fclose(fpDict); - printf ("\nReading %d records.\n\n", s); + printf("\nReading %d records.\n\n", s); - fpNew = fopen (argv[2], "wb"); - if (!fpNew) { - printf ("\nCan not create target file!\n\n"); - exit (3); + fpNew = fopen(argv[2], "wb"); + + if (!fpNew) + { + printf("\nCan not create target file!\n\n"); + exit(3); } + int8_t iInternalVersion = INTERNAL_VERSION; + //写入版本号--如果第一个字为0,表示后面那个字节为版本号 iTemp = 0; - fwrite (&iTemp, sizeof (unsigned int), 1, fpDict); - fwrite (&iInternalVersion, sizeof (INT8), 1, fpDict); + fwrite(&iTemp, sizeof(unsigned int), 1, fpDict); + fwrite(&iInternalVersion, sizeof(int8_t), 1, fpDict); - iTemp = (unsigned int) strlen (strInputCode); - fwrite (&iTemp, sizeof (unsigned int), 1, fpNew); - fwrite (strInputCode, sizeof (char), iTemp + 1, fpNew); - fwrite (&iCodeLength, sizeof (unsigned char), 1, fpNew); - fwrite (&iPYCodeLength, sizeof (unsigned char), 1, fpNew); - iTemp = (unsigned int) strlen (strIgnoreChars); - fwrite (&iTemp, sizeof (unsigned int), 1, fpNew); - fwrite (strIgnoreChars, sizeof (char), iTemp + 1, fpNew); - - fwrite (&bRule, sizeof (unsigned char), 1, fpNew); - if (bRule) { - for (i = 0; i < iCodeLength - 1; i++) { - fwrite (&(rule[i].iFlag), sizeof (unsigned char), 1, fpNew); - fwrite (&(rule[i].iWords), sizeof (unsigned char), 1, fpNew); - for (iTemp = 0; iTemp < iCodeLength; iTemp++) { - fwrite (&(rule[i].rule[iTemp].iFlag), sizeof (unsigned char), 1, fpNew); - fwrite (&(rule[i].rule[iTemp].iWhich), sizeof (unsigned char), 1, fpNew); - fwrite (&(rule[i].rule[iTemp].iIndex), sizeof (unsigned char), 1, fpNew); + iTemp = (unsigned int) strlen(strInputCode); + fwrite(&iTemp, sizeof(unsigned int), 1, fpNew); + fwrite(strInputCode, sizeof(char), iTemp + 1, fpNew); + fwrite(&iCodeLength, sizeof(unsigned char), 1, fpNew); + fwrite(&iPYCodeLength, sizeof(unsigned char), 1, fpNew); + iTemp = (unsigned int) strlen(strIgnoreChars); + fwrite(&iTemp, sizeof(unsigned int), 1, fpNew); + fwrite(strIgnoreChars, sizeof(char), iTemp + 1, fpNew); + + fwrite(&bRule, sizeof(unsigned char), 1, fpNew); + + if (bRule) + { + for (i = 0; i < iCodeLength - 1; i++) + { + fwrite(&(rule[i].iFlag), sizeof(unsigned char), 1, fpNew); + fwrite(&(rule[i].iWords), sizeof(unsigned char), 1, fpNew); + + for (iTemp = 0; iTemp < iCodeLength; iTemp++) + { + fwrite(&(rule[i].rule[iTemp].iFlag), sizeof(unsigned char), 1, fpNew); + fwrite(&(rule[i].rule[iTemp].iWhich), sizeof(unsigned char), 1, fpNew); + fwrite(&(rule[i].rule[iTemp].iIndex), sizeof(unsigned char), 1, fpNew); } } } - fwrite (&s, sizeof (unsigned int), 1, fpNew); + fwrite(&s, sizeof(unsigned int), 1, fpNew); + current = head->next; - while (current != head) { - fwrite (current->strCode, sizeof (char), iPYCodeLength + 1, fpNew); - s = strlen (current->strHZ) + 1; - fwrite (&s, sizeof (unsigned int), 1, fpNew); - fwrite (current->strHZ, sizeof (char), s, fpNew); - fwrite (&(current->bPinyin), sizeof (char), 1, fpDict); - fwrite (&(current->iHit), sizeof (unsigned int), 1, fpNew); - fwrite (&(current->iIndex), sizeof (unsigned int), 1, fpNew); + while (current != head) + { + fwrite(current->strCode, sizeof(char), iPYCodeLength + 1, fpNew); + s = strlen(current->strHZ) + 1; + fwrite(&s, sizeof(unsigned int), 1, fpNew); + fwrite(current->strHZ, sizeof(char), s, fpNew); + fwrite(&(current->bPinyin), sizeof(char), 1, fpDict); + fwrite(&(current->iHit), sizeof(unsigned int), 1, fpNew); + fwrite(&(current->iIndex), sizeof(unsigned int), 1, fpNew); current = current->next; } - fclose (fpNew); + + fclose(fpNew); return 0; } -// vim: sw=4 sts=4 et tw=100 + +// kate: indent-mode cstyle; space-indent on; indent-width 4;